@otr-app/shared-backend-generated-client 2.3.103 → 2.3.104

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.
@@ -533,6 +533,7 @@ model/lostCaseWithTransferNotReversed.ts
533
533
  model/markActionAsDeletedResponse.ts
534
534
  model/markCaseAsResolvedRequest.ts
535
535
  model/markCaseAsResolvedResponse.ts
536
+ model/matchCaseLineItemModel.ts
536
537
  model/matchCaseResponse.ts
537
538
  model/matchCaseViolationPenaltyModel.ts
538
539
  model/matchCitationModel.ts
@@ -780,6 +781,7 @@ model/violationPenaltyResponse.ts
780
781
  model/violationResponse.ts
781
782
  model/workflowCaseModel.ts
782
783
  model/workflowCitationModel.ts
784
+ model/workflowLineItemModel.ts
783
785
  model/workflowViolationModel.ts
784
786
  model/workflowViolationPenaltyModel.ts
785
787
  model/zoneId.ts
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { WorkflowLineItemModel } from './workflowLineItemModel';
12
13
 
13
14
 
14
15
  export interface LegalServiceModel {
@@ -21,6 +22,7 @@ export interface LegalServiceModel {
21
22
  legalServiceName?: string;
22
23
  legalServiceType?: LegalServiceModel.LegalServiceTypeEnum;
23
24
  legalVertical?: LegalServiceModel.LegalVerticalEnum;
25
+ lineItems?: Array<WorkflowLineItemModel>;
24
26
  matchExpirationDateUtc?: string;
25
27
  obfuscatedPictureUrl?: string;
26
28
  profilePictureUrl?: string;
@@ -0,0 +1,48 @@
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 MatchCaseLineItemModel {
15
+ additionalDescription?: string;
16
+ lawfirmCaseId?: number;
17
+ lineItemFeeInCents?: number;
18
+ lineItemType?: MatchCaseLineItemModel.LineItemTypeEnum;
19
+ recipient?: MatchCaseLineItemModel.RecipientEnum;
20
+ }
21
+ export namespace MatchCaseLineItemModel {
22
+ export type LineItemTypeEnum = 'ACCIDENT_FEE' | 'BASE_LEGAL_FEE' | 'BOND_FEE' | 'BOOKING_FEE' | 'CDL_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';
23
+ export const LineItemTypeEnum = {
24
+ AccidentFee: 'ACCIDENT_FEE' as LineItemTypeEnum,
25
+ BaseLegalFee: 'BASE_LEGAL_FEE' as LineItemTypeEnum,
26
+ BondFee: 'BOND_FEE' as LineItemTypeEnum,
27
+ BookingFee: 'BOOKING_FEE' as LineItemTypeEnum,
28
+ CdlFee: 'CDL_FEE' as LineItemTypeEnum,
29
+ DisputeFee: 'DISPUTE_FEE' as LineItemTypeEnum,
30
+ FinePayment: 'FINE_PAYMENT' as LineItemTypeEnum,
31
+ FtaFee: 'FTA_FEE' as LineItemTypeEnum,
32
+ InitialSubscriptionFee: 'INITIAL_SUBSCRIPTION_FEE' as LineItemTypeEnum,
33
+ LateFee: 'LATE_FEE' as LineItemTypeEnum,
34
+ MbgRefund: 'MBG_REFUND' as LineItemTypeEnum,
35
+ MvsFee: 'MVS_FEE' as LineItemTypeEnum,
36
+ Other: 'OTHER' as LineItemTypeEnum,
37
+ OtrCredit: 'OTR_CREDIT' as LineItemTypeEnum,
38
+ PaymentPlanServiceFee: 'PAYMENT_PLAN_SERVICE_FEE' as LineItemTypeEnum,
39
+ WarrantFee: 'WARRANT_FEE' as LineItemTypeEnum
40
+ };
41
+ export type RecipientEnum = 'LAWFIRM' | 'OTR';
42
+ export const RecipientEnum = {
43
+ Lawfirm: 'LAWFIRM' as RecipientEnum,
44
+ Otr: 'OTR' as RecipientEnum
45
+ };
46
+ }
47
+
48
+
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { MatchCaseLineItemModel } from './matchCaseLineItemModel';
12
13
 
13
14
 
14
15
  export interface MatchLegalServiceModel {
@@ -21,6 +22,7 @@ export interface MatchLegalServiceModel {
21
22
  legalServiceName?: string;
22
23
  legalServiceType?: MatchLegalServiceModel.LegalServiceTypeEnum;
23
24
  legalVertical?: MatchLegalServiceModel.LegalVerticalEnum;
25
+ lineItems?: Array<MatchCaseLineItemModel>;
24
26
  matchExpirationDateUtc?: string;
25
27
  obfuscatedPictureUrl?: string;
26
28
  profilePictureUrl?: string;
@@ -423,6 +423,7 @@ export * from './lostCaseWithTransferNotReversed';
423
423
  export * from './markActionAsDeletedResponse';
424
424
  export * from './markCaseAsResolvedRequest';
425
425
  export * from './markCaseAsResolvedResponse';
426
+ export * from './matchCaseLineItemModel';
426
427
  export * from './matchCaseResponse';
427
428
  export * from './matchCaseViolationPenaltyModel';
428
429
  export * from './matchCitationModel';
@@ -669,6 +670,7 @@ export * from './violationPenaltyResponse';
669
670
  export * from './violationResponse';
670
671
  export * from './workflowCaseModel';
671
672
  export * from './workflowCitationModel';
673
+ export * from './workflowLineItemModel';
672
674
  export * from './workflowViolationModel';
673
675
  export * from './workflowViolationPenaltyModel';
674
676
  export * from './zoneId';
@@ -0,0 +1,48 @@
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 WorkflowLineItemModel {
15
+ additionalDescription?: string;
16
+ lawfirmCaseId?: number;
17
+ lineItemFeeInCents?: number;
18
+ lineItemType?: WorkflowLineItemModel.LineItemTypeEnum;
19
+ recipient?: WorkflowLineItemModel.RecipientEnum;
20
+ }
21
+ export namespace WorkflowLineItemModel {
22
+ export type LineItemTypeEnum = 'ACCIDENT_FEE' | 'BASE_LEGAL_FEE' | 'BOND_FEE' | 'BOOKING_FEE' | 'CDL_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';
23
+ export const LineItemTypeEnum = {
24
+ AccidentFee: 'ACCIDENT_FEE' as LineItemTypeEnum,
25
+ BaseLegalFee: 'BASE_LEGAL_FEE' as LineItemTypeEnum,
26
+ BondFee: 'BOND_FEE' as LineItemTypeEnum,
27
+ BookingFee: 'BOOKING_FEE' as LineItemTypeEnum,
28
+ CdlFee: 'CDL_FEE' as LineItemTypeEnum,
29
+ DisputeFee: 'DISPUTE_FEE' as LineItemTypeEnum,
30
+ FinePayment: 'FINE_PAYMENT' as LineItemTypeEnum,
31
+ FtaFee: 'FTA_FEE' as LineItemTypeEnum,
32
+ InitialSubscriptionFee: 'INITIAL_SUBSCRIPTION_FEE' as LineItemTypeEnum,
33
+ LateFee: 'LATE_FEE' as LineItemTypeEnum,
34
+ MbgRefund: 'MBG_REFUND' as LineItemTypeEnum,
35
+ MvsFee: 'MVS_FEE' as LineItemTypeEnum,
36
+ Other: 'OTHER' as LineItemTypeEnum,
37
+ OtrCredit: 'OTR_CREDIT' as LineItemTypeEnum,
38
+ PaymentPlanServiceFee: 'PAYMENT_PLAN_SERVICE_FEE' as LineItemTypeEnum,
39
+ WarrantFee: 'WARRANT_FEE' as LineItemTypeEnum
40
+ };
41
+ export type RecipientEnum = 'LAWFIRM' | 'OTR';
42
+ export const RecipientEnum = {
43
+ Lawfirm: 'LAWFIRM' as RecipientEnum,
44
+ Otr: 'OTR' as RecipientEnum
45
+ };
46
+ }
47
+
48
+
@@ -9,6 +9,7 @@
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 LegalServiceModel {
13
14
  "chanceOfSuccess"?: number;
14
15
  "isSelected"?: boolean;
@@ -19,6 +20,7 @@ export interface LegalServiceModel {
19
20
  "legalServiceName"?: string;
20
21
  "legalServiceType"?: LegalServiceModel.LegalServiceTypeEnum;
21
22
  "legalVertical"?: LegalServiceModel.LegalVerticalEnum;
23
+ "lineItems"?: Array<models.WorkflowLineItemModel>;
22
24
  "matchExpirationDateUtc"?: string;
23
25
  "obfuscatedPictureUrl"?: string;
24
26
  "profilePictureUrl"?: string;
@@ -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
+ export interface MatchCaseLineItemModel {
13
+ "additionalDescription"?: string;
14
+ "lawfirmCaseId"?: number;
15
+ "lineItemFeeInCents"?: number;
16
+ "lineItemType"?: MatchCaseLineItemModel.LineItemTypeEnum;
17
+ "recipient"?: MatchCaseLineItemModel.RecipientEnum;
18
+ }
19
+ export declare namespace MatchCaseLineItemModel {
20
+ enum LineItemTypeEnum {
21
+ ACCIDENTFEE,
22
+ BASELEGALFEE,
23
+ BONDFEE,
24
+ BOOKINGFEE,
25
+ CDLFEE,
26
+ DISPUTEFEE,
27
+ FINEPAYMENT,
28
+ FTAFEE,
29
+ INITIALSUBSCRIPTIONFEE,
30
+ LATEFEE,
31
+ MBGREFUND,
32
+ MVSFEE,
33
+ OTHER,
34
+ OTRCREDIT,
35
+ PAYMENTPLANSERVICEFEE,
36
+ WARRANTFEE
37
+ }
38
+ enum RecipientEnum {
39
+ LAWFIRM,
40
+ OTR
41
+ }
42
+ }
@@ -0,0 +1,41 @@
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.MatchCaseLineItemModel = void 0;
15
+ var MatchCaseLineItemModel;
16
+ (function (MatchCaseLineItemModel) {
17
+ var LineItemTypeEnum;
18
+ (function (LineItemTypeEnum) {
19
+ LineItemTypeEnum[LineItemTypeEnum["ACCIDENTFEE"] = 'ACCIDENT_FEE'] = "ACCIDENTFEE";
20
+ LineItemTypeEnum[LineItemTypeEnum["BASELEGALFEE"] = 'BASE_LEGAL_FEE'] = "BASELEGALFEE";
21
+ LineItemTypeEnum[LineItemTypeEnum["BONDFEE"] = 'BOND_FEE'] = "BONDFEE";
22
+ LineItemTypeEnum[LineItemTypeEnum["BOOKINGFEE"] = 'BOOKING_FEE'] = "BOOKINGFEE";
23
+ LineItemTypeEnum[LineItemTypeEnum["CDLFEE"] = 'CDL_FEE'] = "CDLFEE";
24
+ LineItemTypeEnum[LineItemTypeEnum["DISPUTEFEE"] = 'DISPUTE_FEE'] = "DISPUTEFEE";
25
+ LineItemTypeEnum[LineItemTypeEnum["FINEPAYMENT"] = 'FINE_PAYMENT'] = "FINEPAYMENT";
26
+ LineItemTypeEnum[LineItemTypeEnum["FTAFEE"] = 'FTA_FEE'] = "FTAFEE";
27
+ LineItemTypeEnum[LineItemTypeEnum["INITIALSUBSCRIPTIONFEE"] = 'INITIAL_SUBSCRIPTION_FEE'] = "INITIALSUBSCRIPTIONFEE";
28
+ LineItemTypeEnum[LineItemTypeEnum["LATEFEE"] = 'LATE_FEE'] = "LATEFEE";
29
+ LineItemTypeEnum[LineItemTypeEnum["MBGREFUND"] = 'MBG_REFUND'] = "MBGREFUND";
30
+ LineItemTypeEnum[LineItemTypeEnum["MVSFEE"] = 'MVS_FEE'] = "MVSFEE";
31
+ LineItemTypeEnum[LineItemTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
32
+ LineItemTypeEnum[LineItemTypeEnum["OTRCREDIT"] = 'OTR_CREDIT'] = "OTRCREDIT";
33
+ LineItemTypeEnum[LineItemTypeEnum["PAYMENTPLANSERVICEFEE"] = 'PAYMENT_PLAN_SERVICE_FEE'] = "PAYMENTPLANSERVICEFEE";
34
+ LineItemTypeEnum[LineItemTypeEnum["WARRANTFEE"] = 'WARRANT_FEE'] = "WARRANTFEE";
35
+ })(LineItemTypeEnum = MatchCaseLineItemModel.LineItemTypeEnum || (MatchCaseLineItemModel.LineItemTypeEnum = {}));
36
+ var RecipientEnum;
37
+ (function (RecipientEnum) {
38
+ RecipientEnum[RecipientEnum["LAWFIRM"] = 'LAWFIRM'] = "LAWFIRM";
39
+ RecipientEnum[RecipientEnum["OTR"] = 'OTR'] = "OTR";
40
+ })(RecipientEnum = MatchCaseLineItemModel.RecipientEnum || (MatchCaseLineItemModel.RecipientEnum = {}));
41
+ })(MatchCaseLineItemModel = exports.MatchCaseLineItemModel || (exports.MatchCaseLineItemModel = {}));
@@ -9,6 +9,7 @@
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 MatchLegalServiceModel {
13
14
  "chanceOfSuccess"?: number;
14
15
  "isSelected"?: boolean;
@@ -19,6 +20,7 @@ export interface MatchLegalServiceModel {
19
20
  "legalServiceName"?: string;
20
21
  "legalServiceType"?: MatchLegalServiceModel.LegalServiceTypeEnum;
21
22
  "legalVertical"?: MatchLegalServiceModel.LegalVerticalEnum;
23
+ "lineItems"?: Array<models.MatchCaseLineItemModel>;
22
24
  "matchExpirationDateUtc"?: string;
23
25
  "obfuscatedPictureUrl"?: string;
24
26
  "profilePictureUrl"?: string;
@@ -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
+ export interface WorkflowLineItemModel {
13
+ "additionalDescription"?: string;
14
+ "lawfirmCaseId"?: number;
15
+ "lineItemFeeInCents"?: number;
16
+ "lineItemType"?: WorkflowLineItemModel.LineItemTypeEnum;
17
+ "recipient"?: WorkflowLineItemModel.RecipientEnum;
18
+ }
19
+ export declare namespace WorkflowLineItemModel {
20
+ enum LineItemTypeEnum {
21
+ ACCIDENTFEE,
22
+ BASELEGALFEE,
23
+ BONDFEE,
24
+ BOOKINGFEE,
25
+ CDLFEE,
26
+ DISPUTEFEE,
27
+ FINEPAYMENT,
28
+ FTAFEE,
29
+ INITIALSUBSCRIPTIONFEE,
30
+ LATEFEE,
31
+ MBGREFUND,
32
+ MVSFEE,
33
+ OTHER,
34
+ OTRCREDIT,
35
+ PAYMENTPLANSERVICEFEE,
36
+ WARRANTFEE
37
+ }
38
+ enum RecipientEnum {
39
+ LAWFIRM,
40
+ OTR
41
+ }
42
+ }
@@ -0,0 +1,41 @@
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.WorkflowLineItemModel = void 0;
15
+ var WorkflowLineItemModel;
16
+ (function (WorkflowLineItemModel) {
17
+ var LineItemTypeEnum;
18
+ (function (LineItemTypeEnum) {
19
+ LineItemTypeEnum[LineItemTypeEnum["ACCIDENTFEE"] = 'ACCIDENT_FEE'] = "ACCIDENTFEE";
20
+ LineItemTypeEnum[LineItemTypeEnum["BASELEGALFEE"] = 'BASE_LEGAL_FEE'] = "BASELEGALFEE";
21
+ LineItemTypeEnum[LineItemTypeEnum["BONDFEE"] = 'BOND_FEE'] = "BONDFEE";
22
+ LineItemTypeEnum[LineItemTypeEnum["BOOKINGFEE"] = 'BOOKING_FEE'] = "BOOKINGFEE";
23
+ LineItemTypeEnum[LineItemTypeEnum["CDLFEE"] = 'CDL_FEE'] = "CDLFEE";
24
+ LineItemTypeEnum[LineItemTypeEnum["DISPUTEFEE"] = 'DISPUTE_FEE'] = "DISPUTEFEE";
25
+ LineItemTypeEnum[LineItemTypeEnum["FINEPAYMENT"] = 'FINE_PAYMENT'] = "FINEPAYMENT";
26
+ LineItemTypeEnum[LineItemTypeEnum["FTAFEE"] = 'FTA_FEE'] = "FTAFEE";
27
+ LineItemTypeEnum[LineItemTypeEnum["INITIALSUBSCRIPTIONFEE"] = 'INITIAL_SUBSCRIPTION_FEE'] = "INITIALSUBSCRIPTIONFEE";
28
+ LineItemTypeEnum[LineItemTypeEnum["LATEFEE"] = 'LATE_FEE'] = "LATEFEE";
29
+ LineItemTypeEnum[LineItemTypeEnum["MBGREFUND"] = 'MBG_REFUND'] = "MBGREFUND";
30
+ LineItemTypeEnum[LineItemTypeEnum["MVSFEE"] = 'MVS_FEE'] = "MVSFEE";
31
+ LineItemTypeEnum[LineItemTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
32
+ LineItemTypeEnum[LineItemTypeEnum["OTRCREDIT"] = 'OTR_CREDIT'] = "OTRCREDIT";
33
+ LineItemTypeEnum[LineItemTypeEnum["PAYMENTPLANSERVICEFEE"] = 'PAYMENT_PLAN_SERVICE_FEE'] = "PAYMENTPLANSERVICEFEE";
34
+ LineItemTypeEnum[LineItemTypeEnum["WARRANTFEE"] = 'WARRANT_FEE'] = "WARRANTFEE";
35
+ })(LineItemTypeEnum = WorkflowLineItemModel.LineItemTypeEnum || (WorkflowLineItemModel.LineItemTypeEnum = {}));
36
+ var RecipientEnum;
37
+ (function (RecipientEnum) {
38
+ RecipientEnum[RecipientEnum["LAWFIRM"] = 'LAWFIRM'] = "LAWFIRM";
39
+ RecipientEnum[RecipientEnum["OTR"] = 'OTR'] = "OTR";
40
+ })(RecipientEnum = WorkflowLineItemModel.RecipientEnum || (WorkflowLineItemModel.RecipientEnum = {}));
41
+ })(WorkflowLineItemModel = exports.WorkflowLineItemModel || (exports.WorkflowLineItemModel = {}));
@@ -423,6 +423,7 @@ export * from './LostCaseWithTransferNotReversed';
423
423
  export * from './MarkActionAsDeletedResponse';
424
424
  export * from './MarkCaseAsResolvedRequest';
425
425
  export * from './MarkCaseAsResolvedResponse';
426
+ export * from './MatchCaseLineItemModel';
426
427
  export * from './MatchCaseResponse';
427
428
  export * from './MatchCaseViolationPenaltyModel';
428
429
  export * from './MatchCitationModel';
@@ -669,6 +670,7 @@ export * from './ViolationPenaltyResponse';
669
670
  export * from './ViolationResponse';
670
671
  export * from './WorkflowCaseModel';
671
672
  export * from './WorkflowCitationModel';
673
+ export * from './WorkflowLineItemModel';
672
674
  export * from './WorkflowViolationModel';
673
675
  export * from './WorkflowViolationPenaltyModel';
674
676
  export * from './ZoneId';
@@ -435,6 +435,7 @@ __exportStar(require("./LostCaseWithTransferNotReversed"), exports);
435
435
  __exportStar(require("./MarkActionAsDeletedResponse"), exports);
436
436
  __exportStar(require("./MarkCaseAsResolvedRequest"), exports);
437
437
  __exportStar(require("./MarkCaseAsResolvedResponse"), exports);
438
+ __exportStar(require("./MatchCaseLineItemModel"), exports);
438
439
  __exportStar(require("./MatchCaseResponse"), exports);
439
440
  __exportStar(require("./MatchCaseViolationPenaltyModel"), exports);
440
441
  __exportStar(require("./MatchCitationModel"), exports);
@@ -681,6 +682,7 @@ __exportStar(require("./ViolationPenaltyResponse"), exports);
681
682
  __exportStar(require("./ViolationResponse"), exports);
682
683
  __exportStar(require("./WorkflowCaseModel"), exports);
683
684
  __exportStar(require("./WorkflowCitationModel"), exports);
685
+ __exportStar(require("./WorkflowLineItemModel"), exports);
684
686
  __exportStar(require("./WorkflowViolationModel"), exports);
685
687
  __exportStar(require("./WorkflowViolationPenaltyModel"), exports);
686
688
  __exportStar(require("./ZoneId"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.103",
3
+ "version": "2.3.104",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"