@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.
@@ -17,5 +17,6 @@ export interface ListDashboardCasesResponse {
17
17
  cases?: Array<DashboardCaseModel>;
18
18
  counts?: DashboardCaseCountsDto;
19
19
  previousPageToken?: string;
20
+ totalCaseCount?: number;
20
21
  }
21
22
 
@@ -14,4 +14,5 @@ export interface ListDashboardCasesResponse {
14
14
  "cases"?: Array<models.DashboardCaseModel>;
15
15
  "counts"?: models.DashboardCaseCountsDto;
16
16
  "previousPageToken"?: string;
17
+ "totalCaseCount"?: number;
17
18
  }
@@ -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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.41",
3
+ "version": "2.5.43",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"