Update API docs

This commit is contained in:
Jack Bailey 2024-01-31 12:03:58 +00:00
parent 94c57cfd3d
commit 026660da8c
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

View file

@ -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"
} }
} }
}, },

View file

@ -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"
} }
} }
}, },

View file

@ -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 {