@otr-app/shared-backend-generated-client 2.5.46 → 2.5.47

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,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,4 +14,5 @@ export interface TransferCaseRequest {
14
14
  "ignoreCapturedCharges"?: boolean;
15
15
  "maxOtrCreditInCents"?: number;
16
16
  "receivingLawfirmId"?: number;
17
+ "shouldHandlePaymentsManually"?: boolean;
17
18
  }
@@ -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
  }
@@ -15398,6 +15398,7 @@ export interface components {
15398
15398
  maxOtrCreditInCents?: number;
15399
15399
  /** Format: int64 */
15400
15400
  receivingLawfirmId?: number;
15401
+ shouldHandlePaymentsManually?: boolean;
15401
15402
  };
15402
15403
  /** USStateDomain */
15403
15404
  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.47",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"