mirror of
https://github.com/hay-kot/homebox.git
synced 2024-12-19 05:26:31 +00:00
Update API docs
This commit is contained in:
parent
94c57cfd3d
commit
026660da8c
3 changed files with 14 additions and 0 deletions
|
@ -2408,6 +2408,9 @@
|
||||||
"parent": {
|
"parent": {
|
||||||
"$ref": "#/definitions/repo.LocationSummary"
|
"$ref": "#/definitions/repo.LocationSummary"
|
||||||
},
|
},
|
||||||
|
"totalPrice": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
"updatedAt": {
|
"updatedAt": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
@ -2646,6 +2649,9 @@
|
||||||
},
|
},
|
||||||
"total": {
|
"total": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"totalPrice": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -2408,6 +2408,9 @@
|
||||||
"parent": {
|
"parent": {
|
||||||
"$ref": "#/definitions/repo.LocationSummary"
|
"$ref": "#/definitions/repo.LocationSummary"
|
||||||
},
|
},
|
||||||
|
"totalPrice": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
"updatedAt": {
|
"updatedAt": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
@ -2646,6 +2649,9 @@
|
||||||
},
|
},
|
||||||
"total": {
|
"total": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"totalPrice": {
|
||||||
|
"type": "number"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -221,6 +221,7 @@ export interface LocationOut {
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
parent: LocationSummary;
|
parent: LocationSummary;
|
||||||
|
totalPrice: number;
|
||||||
updatedAt: Date | string;
|
updatedAt: Date | string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -318,6 +319,7 @@ export interface PaginationResultItemSummary {
|
||||||
page: number;
|
page: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number;
|
total: number;
|
||||||
|
totalPrice: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TotalsByOrganizer {
|
export interface TotalsByOrganizer {
|
||||||
|
|
Loading…
Reference in a new issue