@otr-app/shared-backend-generated-client 2.3.124 → 2.3.126
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 -2
- package/dist/angular/api/api.ts +5 -3
- package/dist/angular/api/auditLogController.service.ts +170 -0
- package/dist/angular/api/watchlistsController.service.ts +243 -0
- package/dist/angular/api.module.ts +2 -1
- package/dist/angular/model/addressEntity.ts +47 -0
- package/dist/angular/model/auditLog.ts +29 -0
- package/dist/angular/model/caseItem.ts +65 -0
- package/dist/angular/model/citationAuditLog.ts +35 -0
- package/dist/angular/model/countyEntity.ts +76 -0
- package/dist/angular/model/courtEntity.ts +42 -0
- package/dist/angular/model/getCitationAuditLogsResponse.ts +19 -0
- package/dist/angular/model/lawfirmItem.ts +78 -0
- package/dist/angular/model/listUserWatchlistsResponse.ts +3 -2
- package/dist/angular/model/models.ts +9 -1
- package/dist/angular/model/userItem.ts +20 -0
- package/dist/angular/model/watchlistItemsModel.ts +13 -1
- package/dist/otrBackendService.js +54 -0
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/AuditLogControllerApi.d.ts +30 -0
- package/dist/typescript/api/AuditLogControllerApi.js +66 -0
- package/dist/typescript/api/AuditLogControllerApi.ts +73 -0
- package/dist/typescript/api/WatchlistsControllerApi.d.ts +37 -0
- package/dist/typescript/api/WatchlistsControllerApi.js +97 -0
- package/dist/typescript/api/WatchlistsControllerApi.ts +109 -0
- package/dist/typescript/api/api.d.ts +5 -3
- package/dist/typescript/api/api.js +5 -3
- package/dist/typescript/api/api.ts +5 -3
- package/dist/typescript/api.module.js +2 -1
- package/dist/typescript/api.module.ts +2 -1
- package/dist/typescript/model/AddressEntity.d.ts +42 -0
- package/dist/typescript/model/AddressEntity.js +30 -0
- package/dist/typescript/model/AddressEntity.ts +45 -0
- package/dist/typescript/model/AuditLog.d.ts +24 -0
- package/dist/typescript/model/AuditLog.js +22 -0
- package/dist/typescript/model/AuditLog.ts +28 -0
- package/dist/typescript/model/CaseItem.d.ts +60 -0
- package/dist/typescript/model/CaseItem.js +57 -0
- package/dist/typescript/model/CaseItem.ts +63 -0
- package/dist/typescript/model/CitationAuditLog.d.ts +29 -0
- package/dist/typescript/model/CitationAuditLog.js +26 -0
- package/dist/typescript/model/CitationAuditLog.ts +32 -0
- package/dist/typescript/model/CountyEntity.d.ts +71 -0
- package/dist/typescript/model/CountyEntity.js +71 -0
- package/dist/typescript/model/CountyEntity.ts +75 -0
- package/dist/typescript/model/CourtEntity.d.ts +36 -0
- package/dist/typescript/model/CourtEntity.js +28 -0
- package/dist/typescript/model/CourtEntity.ts +39 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.d.ts +16 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.js +13 -0
- package/dist/typescript/model/GetCitationAuditLogsResponse.ts +19 -0
- package/dist/typescript/model/LawfirmItem.d.ts +73 -0
- package/dist/typescript/model/LawfirmItem.js +71 -0
- package/dist/typescript/model/LawfirmItem.ts +77 -0
- package/dist/typescript/model/ListUserWatchlistsResponse.d.ts +2 -1
- package/dist/typescript/model/ListUserWatchlistsResponse.ts +2 -1
- package/dist/typescript/model/UserItem.d.ts +17 -0
- package/dist/typescript/model/UserItem.js +13 -0
- package/dist/typescript/model/UserItem.ts +21 -0
- package/dist/typescript/model/WatchlistItemsModel.d.ts +10 -1
- package/dist/typescript/model/WatchlistItemsModel.js +6 -0
- package/dist/typescript/model/WatchlistItemsModel.ts +9 -1
- package/dist/typescript/model/models.d.ts +9 -1
- package/dist/typescript/model/models.js +9 -1
- package/dist/typescript/model/models.ts +9 -1
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ export * from './AddViolationsToCitationRequest';
|
|
|
27
27
|
export * from './AddressDomain';
|
|
28
28
|
export * from './AddressDomainReq';
|
|
29
29
|
export * from './AddressDomainRes';
|
|
30
|
+
export * from './AddressEntity';
|
|
30
31
|
export * from './AgentBookingStats';
|
|
31
32
|
export * from './AgentBookingsSummary';
|
|
32
33
|
export * from './AggregateBySource';
|
|
@@ -39,6 +40,7 @@ export * from './AppEventCreateRequest';
|
|
|
39
40
|
export * from './AppearanceAttorneyDomain';
|
|
40
41
|
export * from './AppleLoginRequest';
|
|
41
42
|
export * from './AssignCitationOwnerRequest';
|
|
43
|
+
export * from './AuditLog';
|
|
42
44
|
export * from './AuthorModel';
|
|
43
45
|
export * from './AuthorizeChargeForCasePaymentRequest';
|
|
44
46
|
export * from './AuthorizeChargeForCasePaymentResponse';
|
|
@@ -74,6 +76,7 @@ export * from './CaseAlert';
|
|
|
74
76
|
export * from './CaseBookingsStats';
|
|
75
77
|
export * from './CaseChargeResponsePojo';
|
|
76
78
|
export * from './CaseCreationRequest';
|
|
79
|
+
export * from './CaseItem';
|
|
77
80
|
export * from './CaseLineItemDomainReq';
|
|
78
81
|
export * from './CaseLineItemDomainRes';
|
|
79
82
|
export * from './CaseLineItemsSummary';
|
|
@@ -99,6 +102,7 @@ export * from './ChangeUserPasswordRequest';
|
|
|
99
102
|
export * from './ChargeFeeToLawfirmRequest';
|
|
100
103
|
export * from './ChargeFeeToLawfirmResponse';
|
|
101
104
|
export * from './CitationAuditEventModel';
|
|
105
|
+
export * from './CitationAuditLog';
|
|
102
106
|
export * from './CitationInputRequest';
|
|
103
107
|
export * from './CitationModel';
|
|
104
108
|
export * from './CitationModelReq';
|
|
@@ -119,12 +123,14 @@ export * from './ConvertPdfToImageResponse';
|
|
|
119
123
|
export * from './CountryDomain';
|
|
120
124
|
export * from './CountryRegion';
|
|
121
125
|
export * from './CountyDomain';
|
|
126
|
+
export * from './CountyEntity';
|
|
122
127
|
export * from './CourtCoverageCountyRecord';
|
|
123
128
|
export * from './CourtCoverageRecord';
|
|
124
129
|
export * from './CourtCoverageStateRecord';
|
|
125
130
|
export * from './CourtDomain';
|
|
126
131
|
export * from './CourtDomainReq';
|
|
127
132
|
export * from './CourtDomainRes';
|
|
133
|
+
export * from './CourtEntity';
|
|
128
134
|
export * from './CourtInputRequest';
|
|
129
135
|
export * from './CourtResponseModel';
|
|
130
136
|
export * from './CoverageToRemove';
|
|
@@ -235,6 +241,7 @@ export * from './GetCasesWithCoverageObtainedResponse';
|
|
|
235
241
|
export * from './GetCasesWithMissingLawfirmPayoutsResponse';
|
|
236
242
|
export * from './GetCasesWithOverduePaymentsResponse';
|
|
237
243
|
export * from './GetCasesWithUncapturedChargesRequest';
|
|
244
|
+
export * from './GetCitationAuditLogsResponse';
|
|
238
245
|
export * from './GetCitationPhoneLeadsRequest';
|
|
239
246
|
export * from './GetCitationPhoneLeadsResponse';
|
|
240
247
|
export * from './GetCitationResponse';
|
|
@@ -368,6 +375,7 @@ export * from './LawfirmDocumentTemplate';
|
|
|
368
375
|
export * from './LawfirmDocumentTemplateResponse';
|
|
369
376
|
export * from './LawfirmFeeDomain';
|
|
370
377
|
export * from './LawfirmInboxMessageDomain';
|
|
378
|
+
export * from './LawfirmItem';
|
|
371
379
|
export * from './LawfirmLeadDomain';
|
|
372
380
|
export * from './LawfirmPayoutDomain';
|
|
373
381
|
export * from './LawfirmPictureRequest';
|
|
@@ -648,6 +656,7 @@ export * from './UserDetails';
|
|
|
648
656
|
export * from './UserDomain';
|
|
649
657
|
export * from './UserDomainReq';
|
|
650
658
|
export * from './UserDomainRes';
|
|
659
|
+
export * from './UserItem';
|
|
651
660
|
export * from './UserRefLinkDomain';
|
|
652
661
|
export * from './UserReferralSourceTypeModel';
|
|
653
662
|
export * from './UserRegistrationStats';
|
|
@@ -657,7 +666,6 @@ export * from './UserSubscriptionPlanModelReq';
|
|
|
657
666
|
export * from './UserSubscriptionPlanModelRes';
|
|
658
667
|
export * from './UserToContact';
|
|
659
668
|
export * from './UserWatchlistsModel';
|
|
660
|
-
export * from './UserWatchlistsResponseModel';
|
|
661
669
|
export * from './ValidateDirectMailRequest';
|
|
662
670
|
export * from './ValidateDirectMailResponse';
|
|
663
671
|
export * from './ValidateUserEmailResponse';
|