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": {
"$ref": "#/definitions/repo.LocationSummary"
},
"totalPrice": {
"type": "number"
},
"updatedAt": {
"type": "string"
}
@ -2646,6 +2649,9 @@
},
"total": {
"type": "integer"
},
"totalPrice": {
"type": "number"
}
}
},

View file

@ -2408,6 +2408,9 @@
"parent": {
"$ref": "#/definitions/repo.LocationSummary"
},
"totalPrice": {
"type": "number"
},
"updatedAt": {
"type": "string"
}
@ -2646,6 +2649,9 @@
},
"total": {
"type": "integer"
},
"totalPrice": {
"type": "number"
}
}
},

View file

@ -221,6 +221,7 @@ export interface LocationOut {
id: string;
name: string;
parent: LocationSummary;
totalPrice: number;
updatedAt: Date | string;
}
@ -318,6 +319,7 @@ export interface PaginationResultItemSummary {
page: number;
pageSize: number;
total: number;
totalPrice: number;
}
export interface TotalsByOrganizer {