@otr-app/shared-backend-generated-client 2.3.253 → 2.3.254

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.
@@ -219,6 +219,7 @@ model/caseModelReq.ts
219
219
  model/caseModelRes.ts
220
220
  model/caseNotesDomain.ts
221
221
  model/caseOutcomeModel.ts
222
+ model/casePaymentBreakdownItemModel.ts
222
223
  model/casePaymentDomain.ts
223
224
  model/casePaymentModel.ts
224
225
  model/caseStatusDetailsResponse.ts
@@ -0,0 +1,42 @@
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
+
13
+
14
+ export interface CasePaymentBreakdownItemModel {
15
+ amount?: number;
16
+ friendlyTitle?: string;
17
+ type?: CasePaymentBreakdownItemModel.TypeEnum;
18
+ }
19
+ export namespace CasePaymentBreakdownItemModel {
20
+ export type TypeEnum = 'ACCIDENT_FEE' | 'BASE_LEGAL_FEE' | 'BOND_FEE' | 'BOOKING_FEE' | 'CDL_FEE' | 'COURT_FEE' | 'DISPUTE_FEE' | 'FINE_PAYMENT' | 'FTA_FEE' | 'INITIAL_SUBSCRIPTION_FEE' | 'LATE_FEE' | 'MBG_REFUND' | 'MVS_FEE' | 'OTHER' | 'OTR_CREDIT' | 'PAYMENT_PLAN_SERVICE_FEE' | 'WARRANT_FEE';
21
+ export const TypeEnum = {
22
+ AccidentFee: 'ACCIDENT_FEE' as TypeEnum,
23
+ BaseLegalFee: 'BASE_LEGAL_FEE' as TypeEnum,
24
+ BondFee: 'BOND_FEE' as TypeEnum,
25
+ BookingFee: 'BOOKING_FEE' as TypeEnum,
26
+ CdlFee: 'CDL_FEE' as TypeEnum,
27
+ CourtFee: 'COURT_FEE' as TypeEnum,
28
+ DisputeFee: 'DISPUTE_FEE' as TypeEnum,
29
+ FinePayment: 'FINE_PAYMENT' as TypeEnum,
30
+ FtaFee: 'FTA_FEE' as TypeEnum,
31
+ InitialSubscriptionFee: 'INITIAL_SUBSCRIPTION_FEE' as TypeEnum,
32
+ LateFee: 'LATE_FEE' as TypeEnum,
33
+ MbgRefund: 'MBG_REFUND' as TypeEnum,
34
+ MvsFee: 'MVS_FEE' as TypeEnum,
35
+ Other: 'OTHER' as TypeEnum,
36
+ OtrCredit: 'OTR_CREDIT' as TypeEnum,
37
+ PaymentPlanServiceFee: 'PAYMENT_PLAN_SERVICE_FEE' as TypeEnum,
38
+ WarrantFee: 'WARRANT_FEE' as TypeEnum
39
+ };
40
+ }
41
+
42
+
@@ -9,11 +9,13 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { CasePaymentBreakdownItemModel } from './casePaymentBreakdownItemModel';
12
13
 
13
14
 
14
15
  export interface CasePaymentModel {
15
16
  dueDate?: string;
16
17
  dueNow?: boolean;
17
18
  feeAmount?: number;
19
+ items?: Array<CasePaymentBreakdownItemModel>;
18
20
  }
19
21
 
@@ -98,6 +98,7 @@ export * from './caseModelReq';
98
98
  export * from './caseModelRes';
99
99
  export * from './caseNotesDomain';
100
100
  export * from './caseOutcomeModel';
101
+ export * from './casePaymentBreakdownItemModel';
101
102
  export * from './casePaymentDomain';
102
103
  export * from './casePaymentModel';
103
104
  export * from './caseStatusDetailsResponse';
@@ -0,0 +1,37 @@
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 CasePaymentBreakdownItemModel {
13
+ "amount"?: number;
14
+ "friendlyTitle"?: string;
15
+ "type"?: CasePaymentBreakdownItemModel.TypeEnum;
16
+ }
17
+ export declare namespace CasePaymentBreakdownItemModel {
18
+ enum TypeEnum {
19
+ ACCIDENTFEE,
20
+ BASELEGALFEE,
21
+ BONDFEE,
22
+ BOOKINGFEE,
23
+ CDLFEE,
24
+ COURTFEE,
25
+ DISPUTEFEE,
26
+ FINEPAYMENT,
27
+ FTAFEE,
28
+ INITIALSUBSCRIPTIONFEE,
29
+ LATEFEE,
30
+ MBGREFUND,
31
+ MVSFEE,
32
+ OTHER,
33
+ OTRCREDIT,
34
+ PAYMENTPLANSERVICEFEE,
35
+ WARRANTFEE
36
+ }
37
+ }
@@ -0,0 +1,37 @@
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.CasePaymentBreakdownItemModel = void 0;
15
+ var CasePaymentBreakdownItemModel;
16
+ (function (CasePaymentBreakdownItemModel) {
17
+ var TypeEnum;
18
+ (function (TypeEnum) {
19
+ TypeEnum[TypeEnum["ACCIDENTFEE"] = 'ACCIDENT_FEE'] = "ACCIDENTFEE";
20
+ TypeEnum[TypeEnum["BASELEGALFEE"] = 'BASE_LEGAL_FEE'] = "BASELEGALFEE";
21
+ TypeEnum[TypeEnum["BONDFEE"] = 'BOND_FEE'] = "BONDFEE";
22
+ TypeEnum[TypeEnum["BOOKINGFEE"] = 'BOOKING_FEE'] = "BOOKINGFEE";
23
+ TypeEnum[TypeEnum["CDLFEE"] = 'CDL_FEE'] = "CDLFEE";
24
+ TypeEnum[TypeEnum["COURTFEE"] = 'COURT_FEE'] = "COURTFEE";
25
+ TypeEnum[TypeEnum["DISPUTEFEE"] = 'DISPUTE_FEE'] = "DISPUTEFEE";
26
+ TypeEnum[TypeEnum["FINEPAYMENT"] = 'FINE_PAYMENT'] = "FINEPAYMENT";
27
+ TypeEnum[TypeEnum["FTAFEE"] = 'FTA_FEE'] = "FTAFEE";
28
+ TypeEnum[TypeEnum["INITIALSUBSCRIPTIONFEE"] = 'INITIAL_SUBSCRIPTION_FEE'] = "INITIALSUBSCRIPTIONFEE";
29
+ TypeEnum[TypeEnum["LATEFEE"] = 'LATE_FEE'] = "LATEFEE";
30
+ TypeEnum[TypeEnum["MBGREFUND"] = 'MBG_REFUND'] = "MBGREFUND";
31
+ TypeEnum[TypeEnum["MVSFEE"] = 'MVS_FEE'] = "MVSFEE";
32
+ TypeEnum[TypeEnum["OTHER"] = 'OTHER'] = "OTHER";
33
+ TypeEnum[TypeEnum["OTRCREDIT"] = 'OTR_CREDIT'] = "OTRCREDIT";
34
+ TypeEnum[TypeEnum["PAYMENTPLANSERVICEFEE"] = 'PAYMENT_PLAN_SERVICE_FEE'] = "PAYMENTPLANSERVICEFEE";
35
+ TypeEnum[TypeEnum["WARRANTFEE"] = 'WARRANT_FEE'] = "WARRANTFEE";
36
+ })(TypeEnum = CasePaymentBreakdownItemModel.TypeEnum || (CasePaymentBreakdownItemModel.TypeEnum = {}));
37
+ })(CasePaymentBreakdownItemModel = exports.CasePaymentBreakdownItemModel || (exports.CasePaymentBreakdownItemModel = {}));
@@ -9,8 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import * as models from './models';
12
13
  export interface CasePaymentModel {
13
14
  "dueDate"?: string;
14
15
  "dueNow"?: boolean;
15
16
  "feeAmount"?: number;
17
+ "items"?: Array<models.CasePaymentBreakdownItemModel>;
16
18
  }
@@ -98,6 +98,7 @@ export * from './CaseModelReq';
98
98
  export * from './CaseModelRes';
99
99
  export * from './CaseNotesDomain';
100
100
  export * from './CaseOutcomeModel';
101
+ export * from './CasePaymentBreakdownItemModel';
101
102
  export * from './CasePaymentDomain';
102
103
  export * from './CasePaymentModel';
103
104
  export * from './CaseStatusDetailsResponse';
@@ -110,6 +110,7 @@ __exportStar(require("./CaseModelReq"), exports);
110
110
  __exportStar(require("./CaseModelRes"), exports);
111
111
  __exportStar(require("./CaseNotesDomain"), exports);
112
112
  __exportStar(require("./CaseOutcomeModel"), exports);
113
+ __exportStar(require("./CasePaymentBreakdownItemModel"), exports);
113
114
  __exportStar(require("./CasePaymentDomain"), exports);
114
115
  __exportStar(require("./CasePaymentModel"), exports);
115
116
  __exportStar(require("./CaseStatusDetailsResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.253",
3
+ "version": "2.3.254",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"