@otr-app/shared-backend-generated-client 2.2.56 → 2.2.57
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/typescript/model/CaseDomain.d.ts +1 -0
- package/dist/typescript/model/CaseDomainReq.d.ts +1 -0
- package/dist/typescript/model/CaseDomainRes.d.ts +1 -0
- package/dist/typescript/model/PaymentPlanTypeModel.d.ts +22 -0
- package/dist/typescript/model/PaymentPlanTypeModel.js +23 -0
- package/dist/typescript/model/PaymentPlanTypeModelReq.d.ts +22 -0
- package/dist/typescript/model/PaymentPlanTypeModelReq.js +23 -0
- package/dist/typescript/model/PaymentPlanTypeModelRes.d.ts +22 -0
- package/dist/typescript/model/PaymentPlanTypeModelRes.js +23 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/package.json +1 -1
|
@@ -31,6 +31,7 @@ export interface CaseDomain {
|
|
|
31
31
|
"isPointSystemState"?: boolean;
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseDomain;
|
|
33
33
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
34
|
+
"paymentPlanTypeModel"?: models.PaymentPlanTypeModel;
|
|
34
35
|
"referralCode"?: string;
|
|
35
36
|
"refundEligibility"?: CaseDomain.RefundEligibilityEnum;
|
|
36
37
|
"resolutionSummary"?: string;
|
|
@@ -31,6 +31,7 @@ export interface CaseDomainReq {
|
|
|
31
31
|
"isPointSystemState"?: boolean;
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseDomainReq;
|
|
33
33
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
34
|
+
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelReq;
|
|
34
35
|
"referralCode"?: string;
|
|
35
36
|
"refundEligibility"?: CaseDomainReq.RefundEligibilityEnum;
|
|
36
37
|
"resolutionSummary"?: string;
|
|
@@ -31,6 +31,7 @@ export interface CaseDomainRes {
|
|
|
31
31
|
"isPointSystemState"?: boolean;
|
|
32
32
|
"lawfirmCaseDecision"?: models.LawfirmCaseDomainRes;
|
|
33
33
|
"letterOfEngagement"?: models.LetterOfEngagement;
|
|
34
|
+
"paymentPlanTypeModel"?: models.PaymentPlanTypeModelRes;
|
|
34
35
|
"referralCode"?: string;
|
|
35
36
|
"refundEligibility"?: CaseDomainRes.RefundEligibilityEnum;
|
|
36
37
|
"resolutionSummary"?: string;
|
|
@@ -0,0 +1,22 @@
|
|
|
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 PaymentPlanTypeModel {
|
|
13
|
+
"paymentPlanId"?: number;
|
|
14
|
+
"paymentPlanType"?: PaymentPlanTypeModel.PaymentPlanTypeEnum;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace PaymentPlanTypeModel {
|
|
17
|
+
enum PaymentPlanTypeEnum {
|
|
18
|
+
ALLUPFRONT,
|
|
19
|
+
THREEPAYMENTSHALFFIRST,
|
|
20
|
+
TWOPAYMENTSMONTHLY
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.PaymentPlanTypeModel = void 0;
|
|
15
|
+
var PaymentPlanTypeModel;
|
|
16
|
+
(function (PaymentPlanTypeModel) {
|
|
17
|
+
var PaymentPlanTypeEnum;
|
|
18
|
+
(function (PaymentPlanTypeEnum) {
|
|
19
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["ALLUPFRONT"] = 'ALL_UPFRONT'] = "ALLUPFRONT";
|
|
20
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["THREEPAYMENTSHALFFIRST"] = 'THREE_PAYMENTS_HALF_FIRST'] = "THREEPAYMENTSHALFFIRST";
|
|
21
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["TWOPAYMENTSMONTHLY"] = 'TWO_PAYMENTS_MONTHLY'] = "TWOPAYMENTSMONTHLY";
|
|
22
|
+
})(PaymentPlanTypeEnum = PaymentPlanTypeModel.PaymentPlanTypeEnum || (PaymentPlanTypeModel.PaymentPlanTypeEnum = {}));
|
|
23
|
+
})(PaymentPlanTypeModel = exports.PaymentPlanTypeModel || (exports.PaymentPlanTypeModel = {}));
|
|
@@ -0,0 +1,22 @@
|
|
|
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 PaymentPlanTypeModelReq {
|
|
13
|
+
"paymentPlanId"?: number;
|
|
14
|
+
"paymentPlanType"?: PaymentPlanTypeModelReq.PaymentPlanTypeEnum;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace PaymentPlanTypeModelReq {
|
|
17
|
+
enum PaymentPlanTypeEnum {
|
|
18
|
+
ALLUPFRONT,
|
|
19
|
+
THREEPAYMENTSHALFFIRST,
|
|
20
|
+
TWOPAYMENTSMONTHLY
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.PaymentPlanTypeModelReq = void 0;
|
|
15
|
+
var PaymentPlanTypeModelReq;
|
|
16
|
+
(function (PaymentPlanTypeModelReq) {
|
|
17
|
+
var PaymentPlanTypeEnum;
|
|
18
|
+
(function (PaymentPlanTypeEnum) {
|
|
19
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["ALLUPFRONT"] = 'ALL_UPFRONT'] = "ALLUPFRONT";
|
|
20
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["THREEPAYMENTSHALFFIRST"] = 'THREE_PAYMENTS_HALF_FIRST'] = "THREEPAYMENTSHALFFIRST";
|
|
21
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["TWOPAYMENTSMONTHLY"] = 'TWO_PAYMENTS_MONTHLY'] = "TWOPAYMENTSMONTHLY";
|
|
22
|
+
})(PaymentPlanTypeEnum = PaymentPlanTypeModelReq.PaymentPlanTypeEnum || (PaymentPlanTypeModelReq.PaymentPlanTypeEnum = {}));
|
|
23
|
+
})(PaymentPlanTypeModelReq = exports.PaymentPlanTypeModelReq || (exports.PaymentPlanTypeModelReq = {}));
|
|
@@ -0,0 +1,22 @@
|
|
|
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 PaymentPlanTypeModelRes {
|
|
13
|
+
"paymentPlanId"?: number;
|
|
14
|
+
"paymentPlanType"?: PaymentPlanTypeModelRes.PaymentPlanTypeEnum;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace PaymentPlanTypeModelRes {
|
|
17
|
+
enum PaymentPlanTypeEnum {
|
|
18
|
+
ALLUPFRONT,
|
|
19
|
+
THREEPAYMENTSHALFFIRST,
|
|
20
|
+
TWOPAYMENTSMONTHLY
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.PaymentPlanTypeModelRes = void 0;
|
|
15
|
+
var PaymentPlanTypeModelRes;
|
|
16
|
+
(function (PaymentPlanTypeModelRes) {
|
|
17
|
+
var PaymentPlanTypeEnum;
|
|
18
|
+
(function (PaymentPlanTypeEnum) {
|
|
19
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["ALLUPFRONT"] = 'ALL_UPFRONT'] = "ALLUPFRONT";
|
|
20
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["THREEPAYMENTSHALFFIRST"] = 'THREE_PAYMENTS_HALF_FIRST'] = "THREEPAYMENTSHALFFIRST";
|
|
21
|
+
PaymentPlanTypeEnum[PaymentPlanTypeEnum["TWOPAYMENTSMONTHLY"] = 'TWO_PAYMENTS_MONTHLY'] = "TWOPAYMENTSMONTHLY";
|
|
22
|
+
})(PaymentPlanTypeEnum = PaymentPlanTypeModelRes.PaymentPlanTypeEnum || (PaymentPlanTypeModelRes.PaymentPlanTypeEnum = {}));
|
|
23
|
+
})(PaymentPlanTypeModelRes = exports.PaymentPlanTypeModelRes || (exports.PaymentPlanTypeModelRes = {}));
|
|
@@ -399,6 +399,9 @@ export * from './NoteDomain';
|
|
|
399
399
|
export * from './NotificationEvent';
|
|
400
400
|
export * from './NotificationEvents';
|
|
401
401
|
export * from './OutgoingContactDomain';
|
|
402
|
+
export * from './PaymentPlanTypeModel';
|
|
403
|
+
export * from './PaymentPlanTypeModelReq';
|
|
404
|
+
export * from './PaymentPlanTypeModelRes';
|
|
402
405
|
export * from './Penalty';
|
|
403
406
|
export * from './PenaltyModel';
|
|
404
407
|
export * from './PenaltyRequest';
|
|
@@ -411,6 +411,9 @@ __exportStar(require("./NoteDomain"), exports);
|
|
|
411
411
|
__exportStar(require("./NotificationEvent"), exports);
|
|
412
412
|
__exportStar(require("./NotificationEvents"), exports);
|
|
413
413
|
__exportStar(require("./OutgoingContactDomain"), exports);
|
|
414
|
+
__exportStar(require("./PaymentPlanTypeModel"), exports);
|
|
415
|
+
__exportStar(require("./PaymentPlanTypeModelReq"), exports);
|
|
416
|
+
__exportStar(require("./PaymentPlanTypeModelRes"), exports);
|
|
414
417
|
__exportStar(require("./Penalty"), exports);
|
|
415
418
|
__exportStar(require("./PenaltyModel"), exports);
|
|
416
419
|
__exportStar(require("./PenaltyRequest"), exports);
|