@otr-app/shared-backend-generated-client 2.3.74 → 2.3.75

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.
Files changed (71) hide show
  1. package/dist/angular/.openapi-generator/FILES +11 -18
  2. package/dist/angular/api/api.ts +3 -5
  3. package/dist/angular/api/caseController.service.ts +5 -5
  4. package/dist/angular/api.module.ts +1 -2
  5. package/dist/angular/model/addActionToCaseResponse.ts +2 -2
  6. package/dist/angular/model/createCitationResponse.ts +2 -2
  7. package/dist/angular/model/deleteCitationResponse.ts +2 -2
  8. package/dist/angular/model/getCaseFromCitationResponse.ts +2 -2
  9. package/dist/angular/model/getCaseResponse.ts +2 -2
  10. package/dist/angular/model/getCitationResponse.ts +2 -2
  11. package/dist/angular/model/getCitationsResponse.ts +2 -2
  12. package/dist/angular/model/getClientCasesResponse.ts +4 -4
  13. package/dist/angular/model/getDeclinedCasesResponse.ts +2 -2
  14. package/dist/angular/model/getInvalidCasesWithStripeChargeResponse.ts +2 -2
  15. package/dist/angular/model/getPendingCasesResponse.ts +2 -2
  16. package/dist/angular/model/getUserCasesResponse.ts +4 -4
  17. package/dist/angular/model/matchInnerCaseModel.ts +1 -1
  18. package/dist/angular/model/models.ts +10 -16
  19. package/dist/angular/model/violationModel.ts +6 -10
  20. package/dist/otrBackendService.js +0 -36
  21. package/dist/otrBackendService.min.js +1 -1
  22. package/dist/typescript/api/CaseControllerApi.d.ts +1 -1
  23. package/dist/typescript/api/CaseControllerApi.ts +1 -1
  24. package/dist/typescript/api/TrafficViolationControllerApi.ts +224 -0
  25. package/dist/typescript/api/api.d.ts +3 -5
  26. package/dist/typescript/api/api.js +3 -5
  27. package/dist/typescript/api/api.ts +3 -5
  28. package/dist/typescript/api.module.js +2 -3
  29. package/dist/typescript/api.module.ts +1 -2
  30. package/dist/typescript/model/AddActionToCaseResponse.d.ts +1 -1
  31. package/dist/typescript/model/AddActionToCaseResponse.ts +1 -1
  32. package/dist/typescript/model/CaseDomain.ts +96 -0
  33. package/dist/typescript/model/CaseDomainReq.ts +96 -0
  34. package/dist/typescript/model/CaseDomainRes.ts +96 -0
  35. package/dist/typescript/model/CitationDomain.ts +126 -0
  36. package/dist/typescript/model/CitationDomainReq.ts +126 -0
  37. package/dist/typescript/model/CitationDomainRes.ts +126 -0
  38. package/dist/typescript/model/CreateCitationResponse.d.ts +1 -1
  39. package/dist/typescript/model/CreateCitationResponse.ts +1 -1
  40. package/dist/typescript/model/DeleteCitationResponse.d.ts +1 -1
  41. package/dist/typescript/model/DeleteCitationResponse.ts +1 -1
  42. package/dist/typescript/model/GetCaseFromCitationResponse.d.ts +1 -1
  43. package/dist/typescript/model/GetCaseFromCitationResponse.ts +1 -1
  44. package/dist/typescript/model/GetCaseResponse.d.ts +1 -1
  45. package/dist/typescript/model/GetCaseResponse.ts +1 -1
  46. package/dist/typescript/model/GetCitationResponse.d.ts +1 -1
  47. package/dist/typescript/model/GetCitationResponse.ts +1 -1
  48. package/dist/typescript/model/GetCitationsResponse.d.ts +1 -1
  49. package/dist/typescript/model/GetCitationsResponse.ts +1 -1
  50. package/dist/typescript/model/GetClientCasesResponse.d.ts +2 -2
  51. package/dist/typescript/model/GetClientCasesResponse.ts +2 -2
  52. package/dist/typescript/model/GetDeclinedCasesResponse.d.ts +1 -1
  53. package/dist/typescript/model/GetDeclinedCasesResponse.ts +1 -1
  54. package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.d.ts +1 -1
  55. package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.ts +1 -1
  56. package/dist/typescript/model/GetPendingCasesResponse.d.ts +1 -1
  57. package/dist/typescript/model/GetPendingCasesResponse.ts +1 -1
  58. package/dist/typescript/model/GetUserCasesResponse.d.ts +2 -2
  59. package/dist/typescript/model/GetUserCasesResponse.ts +2 -2
  60. package/dist/typescript/model/LawfirmCaseDomain.ts +47 -0
  61. package/dist/typescript/model/LawfirmCaseDomainReq.ts +47 -0
  62. package/dist/typescript/model/LawfirmCaseDomainRes.ts +47 -0
  63. package/dist/typescript/model/MatchInnerCaseModel.d.ts +1 -1
  64. package/dist/typescript/model/MatchInnerCaseModel.ts +1 -1
  65. package/dist/typescript/model/TrafficViolationTypeDomain.ts +87 -0
  66. package/dist/typescript/model/ViolationModel.d.ts +5 -9
  67. package/dist/typescript/model/ViolationModel.ts +5 -9
  68. package/dist/typescript/model/models.d.ts +10 -16
  69. package/dist/typescript/model/models.js +10 -16
  70. package/dist/typescript/model/models.ts +10 -16
  71. package/package.json +1 -1
@@ -13,8 +13,8 @@
13
13
  import * as models from './models';
14
14
 
15
15
  export interface GetUserCasesResponse {
16
- "cases"?: Array<models.CaseModel>;
17
- "citations"?: Array<models.CitationModel>;
16
+ "cases"?: Array<models.CaseDomain>;
17
+ "citations"?: Array<models.CitationDomain>;
18
18
  "numBookings"?: number;
19
19
  "numCitationUploads"?: number;
20
20
  }
@@ -0,0 +1,47 @@
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
+ import * as models from './models';
14
+
15
+ export interface LawfirmCaseDomain {
16
+ "caseDecisionStatus"?: LawfirmCaseDomain.CaseDecisionStatusEnum;
17
+ "clientDeclineTicket"?: models.FreshDeskTicket;
18
+ "declineReason"?: string;
19
+ "lawfirmCaseId"?: number;
20
+ "lawfirmDecisionDateUtc"?: models.Timestamp;
21
+ "lawfirmDeclineTicket"?: models.FreshDeskTicket;
22
+ "lawfirmId"?: number;
23
+ "lawfirmName"?: string;
24
+ "lawfirmPrimaryEmail"?: string;
25
+ "lawfirmReceiptDateUtc"?: models.Timestamp;
26
+ "matchExpirationDateUtc"?: string;
27
+ "obfuscatedPictureUrl"?: string;
28
+ "profilePictureUrl"?: string;
29
+ "refundOwner"?: LawfirmCaseDomain.RefundOwnerEnum;
30
+ }
31
+
32
+ export namespace LawfirmCaseDomain {
33
+ export enum CaseDecisionStatusEnum {
34
+ ACCEPTED = <any> 'ACCEPTED',
35
+ CREATED = <any> 'CREATED',
36
+ DECLINED = <any> 'DECLINED',
37
+ EXPIRED = <any> 'EXPIRED',
38
+ PENDING = <any> 'PENDING',
39
+ REMATCHED = <any> 'REMATCHED',
40
+ REMATCHEDREFERRAL = <any> 'REMATCHED_REFERRAL'
41
+ }
42
+ export enum RefundOwnerEnum {
43
+ LAWFIRM = <any> 'LAWFIRM',
44
+ NONE = <any> 'NONE',
45
+ OTR = <any> 'OTR'
46
+ }
47
+ }
@@ -0,0 +1,47 @@
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
+ import * as models from './models';
14
+
15
+ export interface LawfirmCaseDomainReq {
16
+ "caseDecisionStatus"?: LawfirmCaseDomainReq.CaseDecisionStatusEnum;
17
+ "clientDeclineTicket"?: models.FreshDeskTicketReq;
18
+ "declineReason"?: string;
19
+ "lawfirmCaseId"?: number;
20
+ "lawfirmDecisionDateUtc"?: models.TimestampReq;
21
+ "lawfirmDeclineTicket"?: models.FreshDeskTicketReq;
22
+ "lawfirmId"?: number;
23
+ "lawfirmName"?: string;
24
+ "lawfirmPrimaryEmail"?: string;
25
+ "lawfirmReceiptDateUtc"?: models.TimestampReq;
26
+ "matchExpirationDateUtc"?: string;
27
+ "obfuscatedPictureUrl"?: string;
28
+ "profilePictureUrl"?: string;
29
+ "refundOwner"?: LawfirmCaseDomainReq.RefundOwnerEnum;
30
+ }
31
+
32
+ export namespace LawfirmCaseDomainReq {
33
+ export enum CaseDecisionStatusEnum {
34
+ ACCEPTED = <any> 'ACCEPTED',
35
+ CREATED = <any> 'CREATED',
36
+ DECLINED = <any> 'DECLINED',
37
+ EXPIRED = <any> 'EXPIRED',
38
+ PENDING = <any> 'PENDING',
39
+ REMATCHED = <any> 'REMATCHED',
40
+ REMATCHEDREFERRAL = <any> 'REMATCHED_REFERRAL'
41
+ }
42
+ export enum RefundOwnerEnum {
43
+ LAWFIRM = <any> 'LAWFIRM',
44
+ NONE = <any> 'NONE',
45
+ OTR = <any> 'OTR'
46
+ }
47
+ }
@@ -0,0 +1,47 @@
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
+ import * as models from './models';
14
+
15
+ export interface LawfirmCaseDomainRes {
16
+ "caseDecisionStatus"?: LawfirmCaseDomainRes.CaseDecisionStatusEnum;
17
+ "clientDeclineTicket"?: models.FreshDeskTicketRes;
18
+ "declineReason"?: string;
19
+ "lawfirmCaseId"?: number;
20
+ "lawfirmDecisionDateUtc"?: models.TimestampRes;
21
+ "lawfirmDeclineTicket"?: models.FreshDeskTicketRes;
22
+ "lawfirmId"?: number;
23
+ "lawfirmName"?: string;
24
+ "lawfirmPrimaryEmail"?: string;
25
+ "lawfirmReceiptDateUtc"?: models.TimestampRes;
26
+ "matchExpirationDateUtc"?: string;
27
+ "obfuscatedPictureUrl"?: string;
28
+ "profilePictureUrl"?: string;
29
+ "refundOwner"?: LawfirmCaseDomainRes.RefundOwnerEnum;
30
+ }
31
+
32
+ export namespace LawfirmCaseDomainRes {
33
+ export enum CaseDecisionStatusEnum {
34
+ ACCEPTED = <any> 'ACCEPTED',
35
+ CREATED = <any> 'CREATED',
36
+ DECLINED = <any> 'DECLINED',
37
+ EXPIRED = <any> 'EXPIRED',
38
+ PENDING = <any> 'PENDING',
39
+ REMATCHED = <any> 'REMATCHED',
40
+ REMATCHEDREFERRAL = <any> 'REMATCHED_REFERRAL'
41
+ }
42
+ export enum RefundOwnerEnum {
43
+ LAWFIRM = <any> 'LAWFIRM',
44
+ NONE = <any> 'NONE',
45
+ OTR = <any> 'OTR'
46
+ }
47
+ }
@@ -13,7 +13,7 @@ import * as models from './models';
13
13
  export interface MatchInnerCaseModel {
14
14
  "caseId"?: string;
15
15
  "citation"?: models.MatchCitationModel;
16
- "isLawfirmCodeApplied"?: boolean;
16
+ "lawfirmCodeApplied"?: boolean;
17
17
  "legalServices"?: Array<models.MatchLegalServiceModel>;
18
18
  "maxPenalties"?: Array<models.MatchCaseViolationPenaltyModel>;
19
19
  "referralCodeOwner"?: MatchInnerCaseModel.ReferralCodeOwnerEnum;
@@ -15,7 +15,7 @@ import * as models from './models';
15
15
  export interface MatchInnerCaseModel {
16
16
  "caseId"?: string;
17
17
  "citation"?: models.MatchCitationModel;
18
- "isLawfirmCodeApplied"?: boolean;
18
+ "lawfirmCodeApplied"?: boolean;
19
19
  "legalServices"?: Array<models.MatchLegalServiceModel>;
20
20
  "maxPenalties"?: Array<models.MatchCaseViolationPenaltyModel>;
21
21
  "referralCodeOwner"?: MatchInnerCaseModel.ReferralCodeOwnerEnum;
@@ -0,0 +1,87 @@
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
+ import * as models from './models';
14
+
15
+ export interface TrafficViolationTypeDomain {
16
+ "insuranceIncreasePercent"?: number;
17
+ "isMovingViolation"?: boolean;
18
+ "penalties"?: Array<models.PenaltyModel>;
19
+ "trafficViolationDesc"?: string;
20
+ "trafficViolationTypeId"?: number;
21
+ "userFriendlyName"?: string;
22
+ "userFriendlyShortForm"?: string;
23
+ "violationClassification"?: TrafficViolationTypeDomain.ViolationClassificationEnum;
24
+ "violationCode"?: string;
25
+ }
26
+
27
+ export namespace TrafficViolationTypeDomain {
28
+ export enum ViolationClassificationEnum {
29
+ CLASS1FELONY = <any> 'CLASS_1_FELONY',
30
+ CLASS1MISDEMEANOR = <any> 'CLASS_1_MISDEMEANOR',
31
+ CLASS2FELONY = <any> 'CLASS_2_FELONY',
32
+ CLASS2MISDEMEANOR = <any> 'CLASS_2_MISDEMEANOR',
33
+ CLASS3FELONY = <any> 'CLASS_3_FELONY',
34
+ CLASS3MISDEMEANOR = <any> 'CLASS_3_MISDEMEANOR',
35
+ CLASS4FELONY = <any> 'CLASS_4_FELONY',
36
+ CLASS4MISDEMEANOR = <any> 'CLASS_4_MISDEMEANOR',
37
+ CLASS5FELONY = <any> 'CLASS_5_FELONY',
38
+ CLASS6FELONY = <any> 'CLASS_6_FELONY',
39
+ CLASSA1MISDEMEANOR = <any> 'CLASS_A1_MISDEMEANOR',
40
+ CLASSAFELONY = <any> 'CLASS_A_FELONY',
41
+ CLASSAINFRACTION = <any> 'CLASS_A_INFRACTION',
42
+ CLASSAMISDEMEANOR = <any> 'CLASS_A_MISDEMEANOR',
43
+ CLASSAVIOLATION = <any> 'CLASS_A_VIOLATION',
44
+ CLASSBFELONY = <any> 'CLASS_B_FELONY',
45
+ CLASSBINFRACTION = <any> 'CLASS_B_INFRACTION',
46
+ CLASSBMISDEMEANOR = <any> 'CLASS_B_MISDEMEANOR',
47
+ CLASSBVIOLATION = <any> 'CLASS_B_VIOLATION',
48
+ CLASSCFELONY = <any> 'CLASS_C_FELONY',
49
+ CLASSCINFRACTION = <any> 'CLASS_C_INFRACTION',
50
+ CLASSCMISDEMEANOR = <any> 'CLASS_C_MISDEMEANOR',
51
+ CLASSCVIOLATION = <any> 'CLASS_C_VIOLATION',
52
+ CLASSDFELONY = <any> 'CLASS_D_FELONY',
53
+ CLASSDMISDEMEANOR = <any> 'CLASS_D_MISDEMEANOR',
54
+ CLASSDVIOLATION = <any> 'CLASS_D_VIOLATION',
55
+ CLASSEFELONY = <any> 'CLASS_E_FELONY',
56
+ CLASSFFELONY = <any> 'CLASS_F_FELONY',
57
+ CLASSHFELONY = <any> 'CLASS_H_FELONY',
58
+ DISORDERLYPERSONSOFFENSE = <any> 'DISORDERLY_PERSONS_OFFENSE',
59
+ FELONY = <any> 'FELONY',
60
+ FELONY1STDEGREE = <any> 'FELONY_1ST_DEGREE',
61
+ FELONY2NDDEGREE = <any> 'FELONY_2ND_DEGREE',
62
+ FELONY3RDDEGREE = <any> 'FELONY_3RD_DEGREE',
63
+ FELONY4THDEGREE = <any> 'FELONY_4TH_DEGREE',
64
+ FELONY5THDEGREE = <any> 'FELONY_5TH_DEGREE',
65
+ GROSSMISDEMEANOR = <any> 'GROSS_MISDEMEANOR',
66
+ HIGHANDAGGRAVATEDMISDEMEANOR = <any> 'HIGH_AND_AGGRAVATED_MISDEMEANOR',
67
+ INFRACTION = <any> 'INFRACTION',
68
+ LEVEL4FELONY = <any> 'LEVEL_4_FELONY',
69
+ LEVEL5FELONY = <any> 'LEVEL_5_FELONY',
70
+ LEVEL6FELONY = <any> 'LEVEL_6_FELONY',
71
+ MINORMISDEMEANOR = <any> 'MINOR_MISDEMEANOR',
72
+ MISDEMEANOR = <any> 'MISDEMEANOR',
73
+ MISDEMEANOR1STDEGREE = <any> 'MISDEMEANOR_1ST_DEGREE',
74
+ MISDEMEANOR2NDDEGREE = <any> 'MISDEMEANOR_2ND_DEGREE',
75
+ MISDEMEANOR3RDDEGREE = <any> 'MISDEMEANOR_3RD_DEGREE',
76
+ MISDEMEANOR4THDEGREE = <any> 'MISDEMEANOR_4TH_DEGREE',
77
+ MISDEMEANORWITHREFUND = <any> 'MISDEMEANOR_WITH_REFUND',
78
+ NONMOVING = <any> 'NON_MOVING',
79
+ NONREPORTABLE = <any> 'NON_REPORTABLE',
80
+ PETTYMISDEMEANOR = <any> 'PETTY_MISDEMEANOR',
81
+ QUASICRIMINAL = <any> 'QUASI_CRIMINAL',
82
+ SUMMARYOFFENSE = <any> 'SUMMARY_OFFENSE',
83
+ SUMMARYOFFENSENOREFUND = <any> 'SUMMARY_OFFENSE_NO_REFUND',
84
+ WOBBLERTOFELONY = <any> 'WOBBLER_TO_FELONY',
85
+ WOBBLERTOMISDEMEANOR = <any> 'WOBBLER_TO_MISDEMEANOR'
86
+ }
87
+ }
@@ -11,17 +11,13 @@
11
11
  */
12
12
  import * as models from './models';
13
13
  export interface ViolationModel {
14
- "insuranceIncreasePercent"?: number;
15
- "isCriminal"?: boolean;
16
- "isMovingViolation"?: boolean;
17
- "isWobblerToCriminal"?: boolean;
18
- "penalties"?: Array<models.ViolationPenaltyModel>;
19
- "userFriendlyName"?: string;
20
- "userFriendlyShortForm"?: string;
14
+ "criminal"?: boolean;
15
+ "penalties"?: Array<models.MatchCaseViolationPenaltyModel>;
16
+ "trafficViolationDesc"?: string;
17
+ "trafficViolationTypeId"?: number;
21
18
  "violationClassification"?: ViolationModel.ViolationClassificationEnum;
22
19
  "violationCode"?: string;
23
- "violationDesc"?: string;
24
- "violationTypeId"?: number;
20
+ "wobblerToCriminal"?: boolean;
25
21
  }
26
22
  export declare namespace ViolationModel {
27
23
  enum ViolationClassificationEnum {
@@ -13,17 +13,13 @@
13
13
  import * as models from './models';
14
14
 
15
15
  export interface ViolationModel {
16
- "insuranceIncreasePercent"?: number;
17
- "isCriminal"?: boolean;
18
- "isMovingViolation"?: boolean;
19
- "isWobblerToCriminal"?: boolean;
20
- "penalties"?: Array<models.ViolationPenaltyModel>;
21
- "userFriendlyName"?: string;
22
- "userFriendlyShortForm"?: string;
16
+ "criminal"?: boolean;
17
+ "penalties"?: Array<models.MatchCaseViolationPenaltyModel>;
18
+ "trafficViolationDesc"?: string;
19
+ "trafficViolationTypeId"?: number;
23
20
  "violationClassification"?: ViolationModel.ViolationClassificationEnum;
24
21
  "violationCode"?: string;
25
- "violationDesc"?: string;
26
- "violationTypeId"?: number;
22
+ "wobblerToCriminal"?: boolean;
27
23
  }
28
24
 
29
25
  export namespace ViolationModel {
@@ -73,13 +73,13 @@ export * from './CaseAlert';
73
73
  export * from './CaseBookingsStats';
74
74
  export * from './CaseChargeResponsePojo';
75
75
  export * from './CaseCreationRequest';
76
+ export * from './CaseDomain';
77
+ export * from './CaseDomainReq';
78
+ export * from './CaseDomainRes';
76
79
  export * from './CaseLineItemDomainReq';
77
80
  export * from './CaseLineItemDomainRes';
78
81
  export * from './CaseLineItemsSummary';
79
82
  export * from './CaseMessageDomain';
80
- export * from './CaseModel';
81
- export * from './CaseModelReq';
82
- export * from './CaseModelRes';
83
83
  export * from './CaseNotesDomain';
84
84
  export * from './CasePaymentDomain';
85
85
  export * from './CasePaymentModel';
@@ -94,10 +94,10 @@ export * from './ChangeUserPasswordRequest';
94
94
  export * from './ChargeFeeToLawfirmRequest';
95
95
  export * from './ChargeFeeToLawfirmResponse';
96
96
  export * from './CitationAuditEventModel';
97
+ export * from './CitationDomain';
98
+ export * from './CitationDomainReq';
99
+ export * from './CitationDomainRes';
97
100
  export * from './CitationInputRequest';
98
- export * from './CitationModel';
99
- export * from './CitationModelReq';
100
- export * from './CitationModelRes';
101
101
  export * from './CitationViolationModel';
102
102
  export * from './CitationWithMissingCourt';
103
103
  export * from './CitationWithMissingFields';
@@ -351,9 +351,9 @@ export * from './LastLoginDateModel';
351
351
  export * from './LawfirmAuditEventModel';
352
352
  export * from './LawfirmBookingSummary';
353
353
  export * from './LawfirmCaseDocument';
354
- export * from './LawfirmCaseModel';
355
- export * from './LawfirmCaseModelReq';
356
- export * from './LawfirmCaseModelRes';
354
+ export * from './LawfirmCaseDomain';
355
+ export * from './LawfirmCaseDomainReq';
356
+ export * from './LawfirmCaseDomainRes';
357
357
  export * from './LawfirmCourtCoverageDomain';
358
358
  export * from './LawfirmCoverageRecord';
359
359
  export * from './LawfirmDocument';
@@ -377,7 +377,6 @@ export * from './LawyerInviteByTokenModel';
377
377
  export * from './LawyerInviteModel';
378
378
  export * from './LawyerLicenseModel';
379
379
  export * from './LawyerModel';
380
- export * from './LegalServiceModel';
381
380
  export * from './LetterOfEngagement';
382
381
  export * from './LineItem';
383
382
  export * from './LineItemModel';
@@ -589,6 +588,7 @@ export * from './Timestamp';
589
588
  export * from './TimestampReq';
590
589
  export * from './TimestampRes';
591
590
  export * from './TrafficViolationInputRequest';
591
+ export * from './TrafficViolationTypeDomain';
592
592
  export * from './TransferCaseRequest';
593
593
  export * from './USStateDomain';
594
594
  export * from './UpdateAddress';
@@ -656,14 +656,8 @@ export * from './ViolationClassificationModel';
656
656
  export * from './ViolationInput';
657
657
  export * from './ViolationInputRequest';
658
658
  export * from './ViolationModel';
659
- export * from './ViolationPenaltyModel';
660
659
  export * from './ViolationPenaltyResponse';
661
660
  export * from './ViolationResponse';
662
- export * from './WorkflowCaseModel';
663
- export * from './WorkflowCitationModel';
664
- export * from './WorkflowStateResponse';
665
- export * from './WorkflowViolationModel';
666
- export * from './WorkflowViolationPenaltyModel';
667
661
  export * from './ZoneId';
668
662
  export * from './ZoneOffset';
669
663
  export * from './ZoneOffsetTransition';
@@ -85,13 +85,13 @@ __exportStar(require("./CaseAlert"), exports);
85
85
  __exportStar(require("./CaseBookingsStats"), exports);
86
86
  __exportStar(require("./CaseChargeResponsePojo"), exports);
87
87
  __exportStar(require("./CaseCreationRequest"), exports);
88
+ __exportStar(require("./CaseDomain"), exports);
89
+ __exportStar(require("./CaseDomainReq"), exports);
90
+ __exportStar(require("./CaseDomainRes"), exports);
88
91
  __exportStar(require("./CaseLineItemDomainReq"), exports);
89
92
  __exportStar(require("./CaseLineItemDomainRes"), exports);
90
93
  __exportStar(require("./CaseLineItemsSummary"), exports);
91
94
  __exportStar(require("./CaseMessageDomain"), exports);
92
- __exportStar(require("./CaseModel"), exports);
93
- __exportStar(require("./CaseModelReq"), exports);
94
- __exportStar(require("./CaseModelRes"), exports);
95
95
  __exportStar(require("./CaseNotesDomain"), exports);
96
96
  __exportStar(require("./CasePaymentDomain"), exports);
97
97
  __exportStar(require("./CasePaymentModel"), exports);
@@ -106,10 +106,10 @@ __exportStar(require("./ChangeUserPasswordRequest"), exports);
106
106
  __exportStar(require("./ChargeFeeToLawfirmRequest"), exports);
107
107
  __exportStar(require("./ChargeFeeToLawfirmResponse"), exports);
108
108
  __exportStar(require("./CitationAuditEventModel"), exports);
109
+ __exportStar(require("./CitationDomain"), exports);
110
+ __exportStar(require("./CitationDomainReq"), exports);
111
+ __exportStar(require("./CitationDomainRes"), exports);
109
112
  __exportStar(require("./CitationInputRequest"), exports);
110
- __exportStar(require("./CitationModel"), exports);
111
- __exportStar(require("./CitationModelReq"), exports);
112
- __exportStar(require("./CitationModelRes"), exports);
113
113
  __exportStar(require("./CitationViolationModel"), exports);
114
114
  __exportStar(require("./CitationWithMissingCourt"), exports);
115
115
  __exportStar(require("./CitationWithMissingFields"), exports);
@@ -363,9 +363,9 @@ __exportStar(require("./LastLoginDateModel"), exports);
363
363
  __exportStar(require("./LawfirmAuditEventModel"), exports);
364
364
  __exportStar(require("./LawfirmBookingSummary"), exports);
365
365
  __exportStar(require("./LawfirmCaseDocument"), exports);
366
- __exportStar(require("./LawfirmCaseModel"), exports);
367
- __exportStar(require("./LawfirmCaseModelReq"), exports);
368
- __exportStar(require("./LawfirmCaseModelRes"), exports);
366
+ __exportStar(require("./LawfirmCaseDomain"), exports);
367
+ __exportStar(require("./LawfirmCaseDomainReq"), exports);
368
+ __exportStar(require("./LawfirmCaseDomainRes"), exports);
369
369
  __exportStar(require("./LawfirmCourtCoverageDomain"), exports);
370
370
  __exportStar(require("./LawfirmCoverageRecord"), exports);
371
371
  __exportStar(require("./LawfirmDocument"), exports);
@@ -389,7 +389,6 @@ __exportStar(require("./LawyerInviteByTokenModel"), exports);
389
389
  __exportStar(require("./LawyerInviteModel"), exports);
390
390
  __exportStar(require("./LawyerLicenseModel"), exports);
391
391
  __exportStar(require("./LawyerModel"), exports);
392
- __exportStar(require("./LegalServiceModel"), exports);
393
392
  __exportStar(require("./LetterOfEngagement"), exports);
394
393
  __exportStar(require("./LineItem"), exports);
395
394
  __exportStar(require("./LineItemModel"), exports);
@@ -601,6 +600,7 @@ __exportStar(require("./Timestamp"), exports);
601
600
  __exportStar(require("./TimestampReq"), exports);
602
601
  __exportStar(require("./TimestampRes"), exports);
603
602
  __exportStar(require("./TrafficViolationInputRequest"), exports);
603
+ __exportStar(require("./TrafficViolationTypeDomain"), exports);
604
604
  __exportStar(require("./TransferCaseRequest"), exports);
605
605
  __exportStar(require("./USStateDomain"), exports);
606
606
  __exportStar(require("./UpdateAddress"), exports);
@@ -668,14 +668,8 @@ __exportStar(require("./ViolationClassificationModel"), exports);
668
668
  __exportStar(require("./ViolationInput"), exports);
669
669
  __exportStar(require("./ViolationInputRequest"), exports);
670
670
  __exportStar(require("./ViolationModel"), exports);
671
- __exportStar(require("./ViolationPenaltyModel"), exports);
672
671
  __exportStar(require("./ViolationPenaltyResponse"), exports);
673
672
  __exportStar(require("./ViolationResponse"), exports);
674
- __exportStar(require("./WorkflowCaseModel"), exports);
675
- __exportStar(require("./WorkflowCitationModel"), exports);
676
- __exportStar(require("./WorkflowStateResponse"), exports);
677
- __exportStar(require("./WorkflowViolationModel"), exports);
678
- __exportStar(require("./WorkflowViolationPenaltyModel"), exports);
679
673
  __exportStar(require("./ZoneId"), exports);
680
674
  __exportStar(require("./ZoneOffset"), exports);
681
675
  __exportStar(require("./ZoneOffsetTransition"), exports);
@@ -73,13 +73,13 @@ export * from './CaseAlert';
73
73
  export * from './CaseBookingsStats';
74
74
  export * from './CaseChargeResponsePojo';
75
75
  export * from './CaseCreationRequest';
76
+ export * from './CaseDomain';
77
+ export * from './CaseDomainReq';
78
+ export * from './CaseDomainRes';
76
79
  export * from './CaseLineItemDomainReq';
77
80
  export * from './CaseLineItemDomainRes';
78
81
  export * from './CaseLineItemsSummary';
79
82
  export * from './CaseMessageDomain';
80
- export * from './CaseModel';
81
- export * from './CaseModelReq';
82
- export * from './CaseModelRes';
83
83
  export * from './CaseNotesDomain';
84
84
  export * from './CasePaymentDomain';
85
85
  export * from './CasePaymentModel';
@@ -94,10 +94,10 @@ export * from './ChangeUserPasswordRequest';
94
94
  export * from './ChargeFeeToLawfirmRequest';
95
95
  export * from './ChargeFeeToLawfirmResponse';
96
96
  export * from './CitationAuditEventModel';
97
+ export * from './CitationDomain';
98
+ export * from './CitationDomainReq';
99
+ export * from './CitationDomainRes';
97
100
  export * from './CitationInputRequest';
98
- export * from './CitationModel';
99
- export * from './CitationModelReq';
100
- export * from './CitationModelRes';
101
101
  export * from './CitationViolationModel';
102
102
  export * from './CitationWithMissingCourt';
103
103
  export * from './CitationWithMissingFields';
@@ -351,9 +351,9 @@ export * from './LastLoginDateModel';
351
351
  export * from './LawfirmAuditEventModel';
352
352
  export * from './LawfirmBookingSummary';
353
353
  export * from './LawfirmCaseDocument';
354
- export * from './LawfirmCaseModel';
355
- export * from './LawfirmCaseModelReq';
356
- export * from './LawfirmCaseModelRes';
354
+ export * from './LawfirmCaseDomain';
355
+ export * from './LawfirmCaseDomainReq';
356
+ export * from './LawfirmCaseDomainRes';
357
357
  export * from './LawfirmCourtCoverageDomain';
358
358
  export * from './LawfirmCoverageRecord';
359
359
  export * from './LawfirmDocument';
@@ -377,7 +377,6 @@ export * from './LawyerInviteByTokenModel';
377
377
  export * from './LawyerInviteModel';
378
378
  export * from './LawyerLicenseModel';
379
379
  export * from './LawyerModel';
380
- export * from './LegalServiceModel';
381
380
  export * from './LetterOfEngagement';
382
381
  export * from './LineItem';
383
382
  export * from './LineItemModel';
@@ -589,6 +588,7 @@ export * from './Timestamp';
589
588
  export * from './TimestampReq';
590
589
  export * from './TimestampRes';
591
590
  export * from './TrafficViolationInputRequest';
591
+ export * from './TrafficViolationTypeDomain';
592
592
  export * from './TransferCaseRequest';
593
593
  export * from './USStateDomain';
594
594
  export * from './UpdateAddress';
@@ -656,14 +656,8 @@ export * from './ViolationClassificationModel';
656
656
  export * from './ViolationInput';
657
657
  export * from './ViolationInputRequest';
658
658
  export * from './ViolationModel';
659
- export * from './ViolationPenaltyModel';
660
659
  export * from './ViolationPenaltyResponse';
661
660
  export * from './ViolationResponse';
662
- export * from './WorkflowCaseModel';
663
- export * from './WorkflowCitationModel';
664
- export * from './WorkflowStateResponse';
665
- export * from './WorkflowViolationModel';
666
- export * from './WorkflowViolationPenaltyModel';
667
661
  export * from './ZoneId';
668
662
  export * from './ZoneOffset';
669
663
  export * from './ZoneOffsetTransition';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.74",
3
+ "version": "2.3.75",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"