@otr-app/shared-backend-generated-client 2.5.155 → 2.5.156
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/getLawfirmCaseStatsResponse.ts +1 -0
- package/dist/typescript/model/GetLawfirmCaseStatsResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -60,6 +60,12 @@ export interface GetLawfirmCaseStatsResponse {
|
|
|
60
60
|
* @memberof GetLawfirmCaseStatsResponse
|
|
61
61
|
*/
|
|
62
62
|
numResolvedCases?: number;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof GetLawfirmCaseStatsResponse
|
|
67
|
+
*/
|
|
68
|
+
numStarred?: number;
|
|
63
69
|
/**
|
|
64
70
|
*
|
|
65
71
|
* @type {number}
|
|
@@ -28,6 +28,7 @@ export function GetLawfirmCaseStatsResponseFromJSONTyped(json, ignoreDiscriminat
|
|
|
28
28
|
'numNoCourtDate': !exists(json, 'numNoCourtDate') ? undefined : json['numNoCourtDate'],
|
|
29
29
|
'numPastCourtDate': !exists(json, 'numPastCourtDate') ? undefined : json['numPastCourtDate'],
|
|
30
30
|
'numResolvedCases': !exists(json, 'numResolvedCases') ? undefined : json['numResolvedCases'],
|
|
31
|
+
'numStarred': !exists(json, 'numStarred') ? undefined : json['numStarred'],
|
|
31
32
|
'numSupportedState': !exists(json, 'numSupportedState') ? undefined : json['numSupportedState'],
|
|
32
33
|
'numUnread': !exists(json, 'numUnread') ? undefined : json['numUnread'],
|
|
33
34
|
'successRate': !exists(json, 'successRate') ? undefined : json['successRate'],
|
|
@@ -48,6 +49,7 @@ export function GetLawfirmCaseStatsResponseToJSON(value) {
|
|
|
48
49
|
'numNoCourtDate': value.numNoCourtDate,
|
|
49
50
|
'numPastCourtDate': value.numPastCourtDate,
|
|
50
51
|
'numResolvedCases': value.numResolvedCases,
|
|
52
|
+
'numStarred': value.numStarred,
|
|
51
53
|
'numSupportedState': value.numSupportedState,
|
|
52
54
|
'numUnread': value.numUnread,
|
|
53
55
|
'successRate': value.successRate,
|
|
@@ -11262,6 +11262,8 @@ export interface components {
|
|
|
11262
11262
|
/** Format: int32 */
|
|
11263
11263
|
numResolvedCases?: number;
|
|
11264
11264
|
/** Format: int32 */
|
|
11265
|
+
numStarred?: number;
|
|
11266
|
+
/** Format: int32 */
|
|
11265
11267
|
numSupportedState?: number;
|
|
11266
11268
|
/** Format: int32 */
|
|
11267
11269
|
numUnread?: number;
|