@otr-app/shared-backend-generated-client 2.3.74 → 2.3.76
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/angular/.openapi-generator/FILES +11 -18
- package/dist/angular/api/api.ts +3 -5
- package/dist/angular/api/caseController.service.ts +5 -5
- package/dist/angular/api/dashboardController.service.ts +0 -136
- package/dist/angular/api.module.ts +1 -2
- package/dist/angular/model/addActionToCaseResponse.ts +2 -2
- package/dist/angular/model/createCitationResponse.ts +2 -2
- package/dist/angular/model/deleteCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseFromCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseResponse.ts +2 -2
- package/dist/angular/model/getCitationResponse.ts +2 -2
- package/dist/angular/model/getCitationsResponse.ts +2 -2
- package/dist/angular/model/getClientCasesResponse.ts +4 -4
- package/dist/angular/model/getDeclinedCasesResponse.ts +2 -2
- package/dist/angular/model/getInvalidCasesWithStripeChargeResponse.ts +2 -2
- package/dist/angular/model/getPendingCasesResponse.ts +2 -2
- package/dist/angular/model/getUserCasesResponse.ts +4 -4
- package/dist/angular/model/matchInnerCaseModel.ts +1 -1
- package/dist/angular/model/models.ts +10 -16
- package/dist/angular/model/violationModel.ts +6 -10
- package/dist/otrBackendService.js +0 -110
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/CaseControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseControllerApi.ts +1 -1
- package/dist/typescript/api/DashboardControllerApi.d.ts +0 -12
- package/dist/typescript/api/DashboardControllerApi.js +0 -50
- package/dist/typescript/api/DashboardControllerApi.ts +0 -58
- package/dist/typescript/api/TrafficViolationControllerApi.ts +224 -0
- package/dist/typescript/api/api.d.ts +3 -5
- package/dist/typescript/api/api.js +3 -5
- package/dist/typescript/api/api.ts +3 -5
- package/dist/typescript/api.module.js +2 -3
- package/dist/typescript/api.module.ts +1 -2
- package/dist/typescript/model/AddActionToCaseResponse.d.ts +1 -1
- package/dist/typescript/model/AddActionToCaseResponse.ts +1 -1
- package/dist/typescript/model/CaseDomain.ts +96 -0
- package/dist/typescript/model/CaseDomainReq.ts +96 -0
- package/dist/typescript/model/CaseDomainRes.ts +96 -0
- package/dist/typescript/model/CitationDomain.ts +126 -0
- package/dist/typescript/model/CitationDomainReq.ts +126 -0
- package/dist/typescript/model/CitationDomainRes.ts +126 -0
- package/dist/typescript/model/CreateCitationResponse.d.ts +1 -1
- package/dist/typescript/model/CreateCitationResponse.ts +1 -1
- package/dist/typescript/model/DeleteCitationResponse.d.ts +1 -1
- package/dist/typescript/model/DeleteCitationResponse.ts +1 -1
- package/dist/typescript/model/GetCaseFromCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseFromCitationResponse.ts +1 -1
- package/dist/typescript/model/GetCaseResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseResponse.ts +1 -1
- package/dist/typescript/model/GetCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationResponse.ts +1 -1
- package/dist/typescript/model/GetCitationsResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationsResponse.ts +1 -1
- package/dist/typescript/model/GetClientCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetClientCasesResponse.ts +2 -2
- package/dist/typescript/model/GetDeclinedCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetDeclinedCasesResponse.ts +1 -1
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.d.ts +1 -1
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.ts +1 -1
- package/dist/typescript/model/GetPendingCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetPendingCasesResponse.ts +1 -1
- package/dist/typescript/model/GetUserCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetUserCasesResponse.ts +2 -2
- package/dist/typescript/model/LawfirmCaseDomain.ts +47 -0
- package/dist/typescript/model/LawfirmCaseDomainReq.ts +47 -0
- package/dist/typescript/model/LawfirmCaseDomainRes.ts +47 -0
- package/dist/typescript/model/MatchInnerCaseModel.d.ts +1 -1
- package/dist/typescript/model/MatchInnerCaseModel.ts +1 -1
- package/dist/typescript/model/TrafficViolationTypeDomain.ts +87 -0
- package/dist/typescript/model/ViolationModel.d.ts +5 -9
- package/dist/typescript/model/ViolationModel.ts +5 -9
- package/dist/typescript/model/models.d.ts +10 -16
- package/dist/typescript/model/models.js +10 -16
- package/dist/typescript/model/models.ts +10 -16
- package/package.json +1 -1
|
@@ -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 './
|
|
355
|
-
export * from './
|
|
356
|
-
export * from './
|
|
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';
|