@otr-app/shared-backend-generated-client 2.5.47 → 2.5.48
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
|
@@ -14,6 +14,7 @@ export interface ListDashboardCasesResponse {
|
|
|
14
14
|
"cases"?: Array<models.DashboardCaseModel>;
|
|
15
15
|
"counts"?: models.DashboardCaseCountsDto;
|
|
16
16
|
"filteredCaseCount"?: number;
|
|
17
|
+
"needsAttentionCaseCount"?: number;
|
|
17
18
|
"previousPageToken"?: string;
|
|
18
19
|
"totalCaseCount"?: number;
|
|
19
20
|
}
|
|
@@ -34,6 +34,12 @@ export interface ListDashboardCasesResponse {
|
|
|
34
34
|
* @memberof ListDashboardCasesResponse
|
|
35
35
|
*/
|
|
36
36
|
filteredCaseCount?: number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListDashboardCasesResponse
|
|
41
|
+
*/
|
|
42
|
+
needsAttentionCaseCount?: number;
|
|
37
43
|
/**
|
|
38
44
|
*
|
|
39
45
|
* @type {string}
|
|
@@ -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
|
'filteredCaseCount': !exists(json, 'filteredCaseCount') ? undefined : json['filteredCaseCount'],
|
|
27
|
+
'needsAttentionCaseCount': !exists(json, 'needsAttentionCaseCount') ? undefined : json['needsAttentionCaseCount'],
|
|
27
28
|
'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
|
|
28
29
|
'totalCaseCount': !exists(json, 'totalCaseCount') ? undefined : json['totalCaseCount'],
|
|
29
30
|
};
|
|
@@ -39,6 +40,7 @@ export function ListDashboardCasesResponseToJSON(value) {
|
|
|
39
40
|
'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
|
|
40
41
|
'counts': DashboardCaseCountsDtoToJSON(value.counts),
|
|
41
42
|
'filteredCaseCount': value.filteredCaseCount,
|
|
43
|
+
'needsAttentionCaseCount': value.needsAttentionCaseCount,
|
|
42
44
|
'previousPageToken': value.previousPageToken,
|
|
43
45
|
'totalCaseCount': value.totalCaseCount,
|
|
44
46
|
};
|
|
@@ -12747,6 +12747,8 @@ export interface components {
|
|
|
12747
12747
|
counts?: components["schemas"]["DashboardCaseCountsDto"];
|
|
12748
12748
|
/** Format: int32 */
|
|
12749
12749
|
filteredCaseCount?: number;
|
|
12750
|
+
/** Format: int32 */
|
|
12751
|
+
needsAttentionCaseCount?: number;
|
|
12750
12752
|
previousPageToken?: string;
|
|
12751
12753
|
/** Format: int32 */
|
|
12752
12754
|
totalCaseCount?: number;
|