@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.
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.2.56",
3
+ "version": "2.2.57",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"