@otr-app/shared-backend-generated-client 2.5.152 → 2.5.154

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.
Files changed (29) hide show
  1. package/dist/angular/.openapi-generator/FILES +2 -0
  2. package/dist/angular/api/lawfirmController.service.ts +12 -4
  3. package/dist/angular/model/caseCounterStatusCounts.ts +19 -0
  4. package/dist/angular/model/caseStatusCounts.ts +20 -0
  5. package/dist/angular/model/getLawfirmCaseStatsResponse.ts +8 -0
  6. package/dist/angular/model/models.ts +2 -0
  7. package/dist/otrBackendService.js +6 -1
  8. package/dist/otrBackendService.min.js +3 -3
  9. package/dist/typescript/api/LawfirmControllerApi.d.ts +2 -1
  10. package/dist/typescript/api/LawfirmControllerApi.js +5 -1
  11. package/dist/typescript/model/CaseCounterStatusCounts.d.ts +16 -0
  12. package/dist/typescript/model/CaseCounterStatusCounts.js +12 -0
  13. package/dist/typescript/model/CaseStatusCounts.d.ts +17 -0
  14. package/dist/typescript/model/CaseStatusCounts.js +12 -0
  15. package/dist/typescript/model/GetLawfirmCaseStatsResponse.d.ts +7 -0
  16. package/dist/typescript/model/models.d.ts +2 -0
  17. package/dist/typescript/model/models.js +2 -0
  18. package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +1 -0
  19. package/dist/typescript-fetch/apis/LawfirmControllerApi.js +3 -0
  20. package/dist/typescript-fetch/models/CaseCounterStatusCounts.d.ts +39 -0
  21. package/dist/typescript-fetch/models/CaseCounterStatusCounts.js +40 -0
  22. package/dist/typescript-fetch/models/CaseStatusCounts.d.ts +45 -0
  23. package/dist/typescript-fetch/models/CaseStatusCounts.js +42 -0
  24. package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.d.ts +37 -0
  25. package/dist/typescript-fetch/models/GetLawfirmCaseStatsResponse.js +13 -0
  26. package/dist/typescript-fetch/models/index.d.ts +2 -0
  27. package/dist/typescript-fetch/models/index.js +2 -0
  28. package/dist/typescript-open-api/otr-backend.d.ts +34 -1
  29. package/package.json +1 -1
@@ -97,8 +97,9 @@ export declare class LawfirmControllerApi {
97
97
  *
98
98
  * @summary getLawfirmCaseStats
99
99
  * @param lawfirmId lawfirmId
100
+ * @param includeExtendedCounts includeExtendedCounts
100
101
  */
101
- getLawfirmCaseStatsUsingGET(lawfirmId: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmCaseStatsResponse>;
102
+ getLawfirmCaseStatsUsingGET(lawfirmId: number, includeExtendedCounts?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmCaseStatsResponse>;
102
103
  /**
103
104
  *
104
105
  * @summary getLawfirmJobTitles
@@ -342,8 +342,9 @@ export class LawfirmControllerApi {
342
342
  *
343
343
  * @summary getLawfirmCaseStats
344
344
  * @param lawfirmId lawfirmId
345
+ * @param includeExtendedCounts includeExtendedCounts
345
346
  */
346
- getLawfirmCaseStatsUsingGET(lawfirmId, extraHttpRequestParams) {
347
+ getLawfirmCaseStatsUsingGET(lawfirmId, includeExtendedCounts, extraHttpRequestParams) {
347
348
  const localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/cases/stats'
348
349
  .replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
349
350
  let queryParameters = {};
@@ -352,6 +353,9 @@ export class LawfirmControllerApi {
352
353
  if (lawfirmId === null || lawfirmId === undefined) {
353
354
  throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmCaseStatsUsingGET.');
354
355
  }
356
+ if (includeExtendedCounts !== undefined) {
357
+ queryParameters['includeExtendedCounts'] = includeExtendedCounts;
358
+ }
355
359
  let httpRequestParams = {
356
360
  method: 'GET',
357
361
  url: localVarPath,
@@ -0,0 +1,16 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface CaseCounterStatusCounts {
13
+ "numAccepted"?: number;
14
+ "numDeclined"?: number;
15
+ "numPending"?: number;
16
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export {};
@@ -0,0 +1,17 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface CaseStatusCounts {
13
+ "numActive"?: number;
14
+ "numCancelled"?: number;
15
+ "numCancelledByDate"?: number;
16
+ "numResolved"?: number;
17
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export {};
@@ -9,11 +9,18 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import * as models from './models';
12
13
  export interface GetLawfirmCaseStatsResponse {
13
14
  "caseCountByStatusMap"?: {
14
15
  [key: string]: number;
15
16
  };
17
+ "caseCounterStatusCounts"?: models.CaseCounterStatusCounts;
18
+ "caseStatusCounts"?: models.CaseStatusCounts;
16
19
  "numBookedCases"?: number;
20
+ "numNoCourtDate"?: number;
21
+ "numPastCourtDate"?: number;
17
22
  "numResolvedCases"?: number;
23
+ "numSupportedState"?: number;
24
+ "numUnread"?: number;
18
25
  "successRate"?: number;
19
26
  }
@@ -94,6 +94,7 @@ export * from './CaseChargeResponsePojo';
94
94
  export * from './CaseCounterOfferModel';
95
95
  export * from './CaseCounterOption';
96
96
  export * from './CaseCounterOptionModel';
97
+ export * from './CaseCounterStatusCounts';
97
98
  export * from './CaseCreationRequest';
98
99
  export * from './CaseDeclineCategory';
99
100
  export * from './CaseDeclineCategoryReasonsModel';
@@ -111,6 +112,7 @@ export * from './CaseOutcomeModel';
111
112
  export * from './CasePaymentBreakdownItemModel';
112
113
  export * from './CasePaymentDomain';
113
114
  export * from './CasePaymentModel';
115
+ export * from './CaseStatusCounts';
114
116
  export * from './CaseStatusDetailsResponse';
115
117
  export * from './CaseStatusDomain';
116
118
  export * from './CaseSummaryDomain';
@@ -94,6 +94,7 @@ export * from './CaseChargeResponsePojo';
94
94
  export * from './CaseCounterOfferModel';
95
95
  export * from './CaseCounterOption';
96
96
  export * from './CaseCounterOptionModel';
97
+ export * from './CaseCounterStatusCounts';
97
98
  export * from './CaseCreationRequest';
98
99
  export * from './CaseDeclineCategory';
99
100
  export * from './CaseDeclineCategoryReasonsModel';
@@ -111,6 +112,7 @@ export * from './CaseOutcomeModel';
111
112
  export * from './CasePaymentBreakdownItemModel';
112
113
  export * from './CasePaymentDomain';
113
114
  export * from './CasePaymentModel';
115
+ export * from './CaseStatusCounts';
114
116
  export * from './CaseStatusDetailsResponse';
115
117
  export * from './CaseStatusDomain';
116
118
  export * from './CaseSummaryDomain';
@@ -57,6 +57,7 @@ export interface GetLawfirmByUrlUsingGETRequest {
57
57
  }
58
58
  export interface GetLawfirmCaseStatsUsingGETRequest {
59
59
  lawfirmId: number;
60
+ includeExtendedCounts?: boolean;
60
61
  }
61
62
  export interface GetLawfirmLawyersUsingGETRequest {
62
63
  lawfirmId: number;
@@ -368,6 +368,9 @@ export class LawfirmControllerApi extends runtime.BaseAPI {
368
368
  throw new runtime.RequiredError('lawfirmId', 'Required parameter requestParameters.lawfirmId was null or undefined when calling getLawfirmCaseStatsUsingGET.');
369
369
  }
370
370
  const queryParameters = {};
371
+ if (requestParameters.includeExtendedCounts !== undefined) {
372
+ queryParameters['includeExtendedCounts'] = requestParameters.includeExtendedCounts;
373
+ }
371
374
  const headerParameters = {};
372
375
  const response = yield this.request({
373
376
  path: `/api/v1/lawfirms/{lawfirmId}/cases/stats`.replace(`{${"lawfirmId"}}`, encodeURIComponent(String(requestParameters.lawfirmId))),
@@ -0,0 +1,39 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CaseCounterStatusCounts
16
+ */
17
+ export interface CaseCounterStatusCounts {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof CaseCounterStatusCounts
22
+ */
23
+ numAccepted?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CaseCounterStatusCounts
28
+ */
29
+ numDeclined?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof CaseCounterStatusCounts
34
+ */
35
+ numPending?: number;
36
+ }
37
+ export declare function CaseCounterStatusCountsFromJSON(json: any): CaseCounterStatusCounts;
38
+ export declare function CaseCounterStatusCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseCounterStatusCounts;
39
+ export declare function CaseCounterStatusCountsToJSON(value?: CaseCounterStatusCounts | null): any;
@@ -0,0 +1,40 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function CaseCounterStatusCountsFromJSON(json) {
16
+ return CaseCounterStatusCountsFromJSONTyped(json, false);
17
+ }
18
+ export function CaseCounterStatusCountsFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'numAccepted': !exists(json, 'numAccepted') ? undefined : json['numAccepted'],
24
+ 'numDeclined': !exists(json, 'numDeclined') ? undefined : json['numDeclined'],
25
+ 'numPending': !exists(json, 'numPending') ? undefined : json['numPending'],
26
+ };
27
+ }
28
+ export function CaseCounterStatusCountsToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'numAccepted': value.numAccepted,
37
+ 'numDeclined': value.numDeclined,
38
+ 'numPending': value.numPending,
39
+ };
40
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CaseStatusCounts
16
+ */
17
+ export interface CaseStatusCounts {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof CaseStatusCounts
22
+ */
23
+ numActive?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CaseStatusCounts
28
+ */
29
+ numCancelled?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof CaseStatusCounts
34
+ */
35
+ numCancelledByDate?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof CaseStatusCounts
40
+ */
41
+ numResolved?: number;
42
+ }
43
+ export declare function CaseStatusCountsFromJSON(json: any): CaseStatusCounts;
44
+ export declare function CaseStatusCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaseStatusCounts;
45
+ export declare function CaseStatusCountsToJSON(value?: CaseStatusCounts | null): any;
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function CaseStatusCountsFromJSON(json) {
16
+ return CaseStatusCountsFromJSONTyped(json, false);
17
+ }
18
+ export function CaseStatusCountsFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'numActive': !exists(json, 'numActive') ? undefined : json['numActive'],
24
+ 'numCancelled': !exists(json, 'numCancelled') ? undefined : json['numCancelled'],
25
+ 'numCancelledByDate': !exists(json, 'numCancelledByDate') ? undefined : json['numCancelledByDate'],
26
+ 'numResolved': !exists(json, 'numResolved') ? undefined : json['numResolved'],
27
+ };
28
+ }
29
+ export function CaseStatusCountsToJSON(value) {
30
+ if (value === undefined) {
31
+ return undefined;
32
+ }
33
+ if (value === null) {
34
+ return null;
35
+ }
36
+ return {
37
+ 'numActive': value.numActive,
38
+ 'numCancelled': value.numCancelled,
39
+ 'numCancelledByDate': value.numCancelledByDate,
40
+ 'numResolved': value.numResolved,
41
+ };
42
+ }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { CaseCounterStatusCounts, CaseStatusCounts } from './';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -23,18 +24,54 @@ export interface GetLawfirmCaseStatsResponse {
23
24
  caseCountByStatusMap?: {
24
25
  [key: string]: number;
25
26
  };
27
+ /**
28
+ *
29
+ * @type {CaseCounterStatusCounts}
30
+ * @memberof GetLawfirmCaseStatsResponse
31
+ */
32
+ caseCounterStatusCounts?: CaseCounterStatusCounts;
33
+ /**
34
+ *
35
+ * @type {CaseStatusCounts}
36
+ * @memberof GetLawfirmCaseStatsResponse
37
+ */
38
+ caseStatusCounts?: CaseStatusCounts;
26
39
  /**
27
40
  *
28
41
  * @type {number}
29
42
  * @memberof GetLawfirmCaseStatsResponse
30
43
  */
31
44
  numBookedCases?: number;
45
+ /**
46
+ *
47
+ * @type {number}
48
+ * @memberof GetLawfirmCaseStatsResponse
49
+ */
50
+ numNoCourtDate?: number;
51
+ /**
52
+ *
53
+ * @type {number}
54
+ * @memberof GetLawfirmCaseStatsResponse
55
+ */
56
+ numPastCourtDate?: number;
32
57
  /**
33
58
  *
34
59
  * @type {number}
35
60
  * @memberof GetLawfirmCaseStatsResponse
36
61
  */
37
62
  numResolvedCases?: number;
63
+ /**
64
+ *
65
+ * @type {number}
66
+ * @memberof GetLawfirmCaseStatsResponse
67
+ */
68
+ numSupportedState?: number;
69
+ /**
70
+ *
71
+ * @type {number}
72
+ * @memberof GetLawfirmCaseStatsResponse
73
+ */
74
+ numUnread?: number;
38
75
  /**
39
76
  *
40
77
  * @type {number}
@@ -12,6 +12,7 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  import { exists } from '../runtime';
15
+ import { CaseCounterStatusCountsFromJSON, CaseCounterStatusCountsToJSON, CaseStatusCountsFromJSON, CaseStatusCountsToJSON, } from './';
15
16
  export function GetLawfirmCaseStatsResponseFromJSON(json) {
16
17
  return GetLawfirmCaseStatsResponseFromJSONTyped(json, false);
17
18
  }
@@ -21,8 +22,14 @@ export function GetLawfirmCaseStatsResponseFromJSONTyped(json, ignoreDiscriminat
21
22
  }
22
23
  return {
23
24
  'caseCountByStatusMap': !exists(json, 'caseCountByStatusMap') ? undefined : json['caseCountByStatusMap'],
25
+ 'caseCounterStatusCounts': !exists(json, 'caseCounterStatusCounts') ? undefined : CaseCounterStatusCountsFromJSON(json['caseCounterStatusCounts']),
26
+ 'caseStatusCounts': !exists(json, 'caseStatusCounts') ? undefined : CaseStatusCountsFromJSON(json['caseStatusCounts']),
24
27
  'numBookedCases': !exists(json, 'numBookedCases') ? undefined : json['numBookedCases'],
28
+ 'numNoCourtDate': !exists(json, 'numNoCourtDate') ? undefined : json['numNoCourtDate'],
29
+ 'numPastCourtDate': !exists(json, 'numPastCourtDate') ? undefined : json['numPastCourtDate'],
25
30
  'numResolvedCases': !exists(json, 'numResolvedCases') ? undefined : json['numResolvedCases'],
31
+ 'numSupportedState': !exists(json, 'numSupportedState') ? undefined : json['numSupportedState'],
32
+ 'numUnread': !exists(json, 'numUnread') ? undefined : json['numUnread'],
26
33
  'successRate': !exists(json, 'successRate') ? undefined : json['successRate'],
27
34
  };
28
35
  }
@@ -35,8 +42,14 @@ export function GetLawfirmCaseStatsResponseToJSON(value) {
35
42
  }
36
43
  return {
37
44
  'caseCountByStatusMap': value.caseCountByStatusMap,
45
+ 'caseCounterStatusCounts': CaseCounterStatusCountsToJSON(value.caseCounterStatusCounts),
46
+ 'caseStatusCounts': CaseStatusCountsToJSON(value.caseStatusCounts),
38
47
  'numBookedCases': value.numBookedCases,
48
+ 'numNoCourtDate': value.numNoCourtDate,
49
+ 'numPastCourtDate': value.numPastCourtDate,
39
50
  'numResolvedCases': value.numResolvedCases,
51
+ 'numSupportedState': value.numSupportedState,
52
+ 'numUnread': value.numUnread,
40
53
  'successRate': value.successRate,
41
54
  };
42
55
  }
@@ -94,6 +94,7 @@ export * from './CaseChargeResponsePojo';
94
94
  export * from './CaseCounterOfferModel';
95
95
  export * from './CaseCounterOption';
96
96
  export * from './CaseCounterOptionModel';
97
+ export * from './CaseCounterStatusCounts';
97
98
  export * from './CaseCreationRequest';
98
99
  export * from './CaseDeclineCategory';
99
100
  export * from './CaseDeclineCategoryReasonsModel';
@@ -111,6 +112,7 @@ export * from './CaseOutcomeModel';
111
112
  export * from './CasePaymentBreakdownItemModel';
112
113
  export * from './CasePaymentDomain';
113
114
  export * from './CasePaymentModel';
115
+ export * from './CaseStatusCounts';
114
116
  export * from './CaseStatusDetailsResponse';
115
117
  export * from './CaseStatusDomain';
116
118
  export * from './CaseSummaryDomain';
@@ -94,6 +94,7 @@ export * from './CaseChargeResponsePojo';
94
94
  export * from './CaseCounterOfferModel';
95
95
  export * from './CaseCounterOption';
96
96
  export * from './CaseCounterOptionModel';
97
+ export * from './CaseCounterStatusCounts';
97
98
  export * from './CaseCreationRequest';
98
99
  export * from './CaseDeclineCategory';
99
100
  export * from './CaseDeclineCategoryReasonsModel';
@@ -111,6 +112,7 @@ export * from './CaseOutcomeModel';
111
112
  export * from './CasePaymentBreakdownItemModel';
112
113
  export * from './CasePaymentDomain';
113
114
  export * from './CasePaymentModel';
115
+ export * from './CaseStatusCounts';
114
116
  export * from './CaseStatusDetailsResponse';
115
117
  export * from './CaseStatusDomain';
116
118
  export * from './CaseSummaryDomain';
@@ -8400,6 +8400,15 @@ export interface components {
8400
8400
  type?: CaseCounterOptionModelType;
8401
8401
  value?: string;
8402
8402
  };
8403
+ /** CaseCounterStatusCounts */
8404
+ CaseCounterStatusCounts: {
8405
+ /** Format: int32 */
8406
+ numAccepted?: number;
8407
+ /** Format: int32 */
8408
+ numDeclined?: number;
8409
+ /** Format: int32 */
8410
+ numPending?: number;
8411
+ };
8403
8412
  /** CaseCreationRequest */
8404
8413
  CaseCreationRequest: {
8405
8414
  /** Format: date-time */
@@ -8792,6 +8801,17 @@ export interface components {
8792
8801
  feeAmount?: number;
8793
8802
  items?: components["schemas"]["CasePaymentBreakdownItemModel"][];
8794
8803
  };
8804
+ /** CaseStatusCounts */
8805
+ CaseStatusCounts: {
8806
+ /** Format: int32 */
8807
+ numActive?: number;
8808
+ /** Format: int32 */
8809
+ numCancelled?: number;
8810
+ /** Format: int32 */
8811
+ numCancelledByDate?: number;
8812
+ /** Format: int32 */
8813
+ numResolved?: number;
8814
+ };
8795
8815
  /** CaseStatusDetailsResponse */
8796
8816
  CaseStatusDetailsResponse: {
8797
8817
  /** @enum {string} */
@@ -11231,11 +11251,21 @@ export interface components {
11231
11251
  caseCountByStatusMap?: {
11232
11252
  [key: string]: number;
11233
11253
  };
11254
+ caseCounterStatusCounts?: components["schemas"]["CaseCounterStatusCounts"];
11255
+ caseStatusCounts?: components["schemas"]["CaseStatusCounts"];
11234
11256
  /** Format: int32 */
11235
11257
  numBookedCases?: number;
11236
11258
  /** Format: int32 */
11259
+ numNoCourtDate?: number;
11260
+ /** Format: int32 */
11261
+ numPastCourtDate?: number;
11262
+ /** Format: int32 */
11237
11263
  numResolvedCases?: number;
11238
11264
  /** Format: int32 */
11265
+ numSupportedState?: number;
11266
+ /** Format: int32 */
11267
+ numUnread?: number;
11268
+ /** Format: int32 */
11239
11269
  successRate?: number;
11240
11270
  };
11241
11271
  /** GetLawfirmCoverageReportResponse */
@@ -28761,7 +28791,10 @@ export interface operations {
28761
28791
  };
28762
28792
  getLawfirmCaseStatsUsingGET: {
28763
28793
  parameters: {
28764
- query?: never;
28794
+ query?: {
28795
+ /** @description includeExtendedCounts */
28796
+ includeExtendedCounts?: boolean;
28797
+ };
28765
28798
  header?: never;
28766
28799
  path: {
28767
28800
  /** @description lawfirmId */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.152",
3
+ "version": "2.5.154",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"