@otr-app/shared-backend-generated-client 2.5.41 → 2.5.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/angular/model/listDashboardCasesResponse.ts +1 -0
- package/dist/typescript/model/ListDashboardCasesResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -34,6 +34,12 @@ export interface ListDashboardCasesResponse {
|
|
|
34
34
|
* @memberof ListDashboardCasesResponse
|
|
35
35
|
*/
|
|
36
36
|
previousPageToken?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListDashboardCasesResponse
|
|
41
|
+
*/
|
|
42
|
+
totalCaseCount?: number;
|
|
37
43
|
}
|
|
38
44
|
export declare function ListDashboardCasesResponseFromJSON(json: any): ListDashboardCasesResponse;
|
|
39
45
|
export declare function ListDashboardCasesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListDashboardCasesResponse;
|
|
@@ -24,6 +24,7 @@ export function ListDashboardCasesResponseFromJSONTyped(json, ignoreDiscriminato
|
|
|
24
24
|
'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(DashboardCaseModelFromJSON)),
|
|
25
25
|
'counts': !exists(json, 'counts') ? undefined : DashboardCaseCountsDtoFromJSON(json['counts']),
|
|
26
26
|
'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
|
|
27
|
+
'totalCaseCount': !exists(json, 'totalCaseCount') ? undefined : json['totalCaseCount'],
|
|
27
28
|
};
|
|
28
29
|
}
|
|
29
30
|
export function ListDashboardCasesResponseToJSON(value) {
|
|
@@ -37,5 +38,6 @@ export function ListDashboardCasesResponseToJSON(value) {
|
|
|
37
38
|
'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
|
|
38
39
|
'counts': DashboardCaseCountsDtoToJSON(value.counts),
|
|
39
40
|
'previousPageToken': value.previousPageToken,
|
|
41
|
+
'totalCaseCount': value.totalCaseCount,
|
|
40
42
|
};
|
|
41
43
|
}
|
|
@@ -12726,6 +12726,8 @@ export interface components {
|
|
|
12726
12726
|
cases?: components["schemas"]["DashboardCaseModel"][];
|
|
12727
12727
|
counts?: components["schemas"]["DashboardCaseCountsDto"];
|
|
12728
12728
|
previousPageToken?: string;
|
|
12729
|
+
/** Format: int32 */
|
|
12730
|
+
totalCaseCount?: number;
|
|
12729
12731
|
};
|
|
12730
12732
|
/** ListEligibleStatusResponse */
|
|
12731
12733
|
ListEligibleStatusResponse: {
|