@otr-app/shared-backend-generated-client 2.5.46 → 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.
@@ -17,6 +17,7 @@ export interface ListDashboardCasesResponse {
17
17
  cases?: Array<DashboardCaseModel>;
18
18
  counts?: DashboardCaseCountsDto;
19
19
  filteredCaseCount?: number;
20
+ needsAttentionCaseCount?: number;
20
21
  previousPageToken?: string;
21
22
  totalCaseCount?: number;
22
23
  }
@@ -16,5 +16,6 @@ export interface TransferCaseRequest {
16
16
  ignoreCapturedCharges?: boolean;
17
17
  maxOtrCreditInCents?: number;
18
18
  receivingLawfirmId?: number;
19
+ shouldHandlePaymentsManually?: boolean;
19
20
  }
20
21
 
@@ -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
  }
@@ -14,4 +14,5 @@ export interface TransferCaseRequest {
14
14
  "ignoreCapturedCharges"?: boolean;
15
15
  "maxOtrCreditInCents"?: number;
16
16
  "receivingLawfirmId"?: number;
17
+ "shouldHandlePaymentsManually"?: boolean;
17
18
  }
@@ -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
  };
@@ -39,6 +39,12 @@ export interface TransferCaseRequest {
39
39
  * @memberof TransferCaseRequest
40
40
  */
41
41
  receivingLawfirmId?: number;
42
+ /**
43
+ *
44
+ * @type {boolean}
45
+ * @memberof TransferCaseRequest
46
+ */
47
+ shouldHandlePaymentsManually?: boolean;
42
48
  }
43
49
  export declare function TransferCaseRequestFromJSON(json: any): TransferCaseRequest;
44
50
  export declare function TransferCaseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferCaseRequest;
@@ -24,6 +24,7 @@ export function TransferCaseRequestFromJSONTyped(json, ignoreDiscriminator) {
24
24
  'ignoreCapturedCharges': !exists(json, 'ignoreCapturedCharges') ? undefined : json['ignoreCapturedCharges'],
25
25
  'maxOtrCreditInCents': !exists(json, 'maxOtrCreditInCents') ? undefined : json['maxOtrCreditInCents'],
26
26
  'receivingLawfirmId': !exists(json, 'receivingLawfirmId') ? undefined : json['receivingLawfirmId'],
27
+ 'shouldHandlePaymentsManually': !exists(json, 'shouldHandlePaymentsManually') ? undefined : json['shouldHandlePaymentsManually'],
27
28
  };
28
29
  }
29
30
  export function TransferCaseRequestToJSON(value) {
@@ -38,5 +39,6 @@ export function TransferCaseRequestToJSON(value) {
38
39
  'ignoreCapturedCharges': value.ignoreCapturedCharges,
39
40
  'maxOtrCreditInCents': value.maxOtrCreditInCents,
40
41
  'receivingLawfirmId': value.receivingLawfirmId,
42
+ 'shouldHandlePaymentsManually': value.shouldHandlePaymentsManually,
41
43
  };
42
44
  }
@@ -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;
@@ -15398,6 +15400,7 @@ export interface components {
15398
15400
  maxOtrCreditInCents?: number;
15399
15401
  /** Format: int64 */
15400
15402
  receivingLawfirmId?: number;
15403
+ shouldHandlePaymentsManually?: boolean;
15401
15404
  };
15402
15405
  /** USStateDomain */
15403
15406
  USStateDomain: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.46",
3
+ "version": "2.5.48",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"