@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.
- package/dist/angular/model/transferCaseRequest.ts +1 -0
- package/dist/typescript/model/TransferCaseRequest.d.ts +1 -0
- package/dist/typescript-fetch/models/TransferCaseRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/TransferCaseRequest.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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: {
|