@otr-app/shared-backend-generated-client 2.5.44 → 2.5.45

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.
@@ -16,6 +16,7 @@ import { DashboardCaseCountsDto } from './dashboardCaseCountsDto';
16
16
  export interface ListDashboardCasesResponse {
17
17
  cases?: Array<DashboardCaseModel>;
18
18
  counts?: DashboardCaseCountsDto;
19
+ filteredCaseCount?: number;
19
20
  previousPageToken?: string;
20
21
  totalCaseCount?: number;
21
22
  }
@@ -13,6 +13,7 @@ import * as models from './models';
13
13
  export interface ListDashboardCasesResponse {
14
14
  "cases"?: Array<models.DashboardCaseModel>;
15
15
  "counts"?: models.DashboardCaseCountsDto;
16
+ "filteredCaseCount"?: number;
16
17
  "previousPageToken"?: string;
17
18
  "totalCaseCount"?: number;
18
19
  }
@@ -28,6 +28,12 @@ export interface ListDashboardCasesResponse {
28
28
  * @memberof ListDashboardCasesResponse
29
29
  */
30
30
  counts?: DashboardCaseCountsDto;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof ListDashboardCasesResponse
35
+ */
36
+ filteredCaseCount?: number;
31
37
  /**
32
38
  *
33
39
  * @type {string}
@@ -23,6 +23,7 @@ export function ListDashboardCasesResponseFromJSONTyped(json, ignoreDiscriminato
23
23
  return {
24
24
  'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(DashboardCaseModelFromJSON)),
25
25
  'counts': !exists(json, 'counts') ? undefined : DashboardCaseCountsDtoFromJSON(json['counts']),
26
+ 'filteredCaseCount': !exists(json, 'filteredCaseCount') ? undefined : json['filteredCaseCount'],
26
27
  'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
27
28
  'totalCaseCount': !exists(json, 'totalCaseCount') ? undefined : json['totalCaseCount'],
28
29
  };
@@ -37,6 +38,7 @@ export function ListDashboardCasesResponseToJSON(value) {
37
38
  return {
38
39
  'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
39
40
  'counts': DashboardCaseCountsDtoToJSON(value.counts),
41
+ 'filteredCaseCount': value.filteredCaseCount,
40
42
  'previousPageToken': value.previousPageToken,
41
43
  'totalCaseCount': value.totalCaseCount,
42
44
  };
@@ -12725,6 +12725,8 @@ export interface components {
12725
12725
  ListDashboardCasesResponse: {
12726
12726
  cases?: components["schemas"]["DashboardCaseModel"][];
12727
12727
  counts?: components["schemas"]["DashboardCaseCountsDto"];
12728
+ /** Format: int32 */
12729
+ filteredCaseCount?: number;
12728
12730
  previousPageToken?: string;
12729
12731
  /** Format: int32 */
12730
12732
  totalCaseCount?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.44",
3
+ "version": "2.5.45",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"