@otr-app/shared-backend-generated-client 2.3.214 → 2.3.216
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 +9 -0
- package/dist/angular/api/auditLawfirmEventsController.service.ts +4 -4
- package/dist/angular/api/citationAuditController.service.ts +4 -4
- package/dist/angular/api/dashboardController.service.ts +216 -0
- package/dist/angular/api/userAuditController.service.ts +4 -4
- package/dist/angular/model/aggregates.ts +23 -0
- package/dist/angular/model/cancellationAggregates.ts +23 -0
- package/dist/angular/model/case.ts +10 -10
- package/dist/angular/model/citationAuditEventModel.ts +2 -1
- package/dist/angular/model/getUserRegistrationsRequest.ts +3 -0
- package/dist/angular/model/lawfirm.ts +80 -0
- package/dist/angular/model/lawfirmAuditEventModel.ts +2 -1
- package/dist/angular/model/listCaseBookingsRequest.ts +20 -0
- package/dist/angular/model/listCaseBookingsResponse.ts +20 -0
- package/dist/angular/model/listCaseCancellationsRequest.ts +20 -0
- package/dist/angular/model/listCaseCancellationsResponse.ts +20 -0
- package/dist/angular/model/listCitationsRequest.ts +1 -0
- package/dist/angular/model/listLawfirmsEngagedRequest.ts +20 -0
- package/dist/angular/model/listLawfirmsEngagedResponse.ts +20 -0
- package/dist/angular/model/models.ts +9 -0
- package/dist/angular/model/userAuditEventModel.ts +4 -2
- package/dist/otrBackendService.js +111 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
- package/dist/typescript/api/CitationAuditControllerApi.d.ts +1 -1
- package/dist/typescript/api/DashboardControllerApi.d.ts +18 -0
- package/dist/typescript/api/DashboardControllerApi.js +75 -0
- package/dist/typescript/api/UserAuditControllerApi.d.ts +1 -1
- package/dist/typescript/model/Aggregates.d.ts +20 -0
- package/dist/typescript/model/Aggregates.js +13 -0
- package/dist/typescript/model/CancellationAggregates.d.ts +20 -0
- package/dist/typescript/model/CancellationAggregates.js +13 -0
- package/dist/typescript/model/Case.d.ts +10 -9
- package/dist/typescript/model/Case.js +0 -7
- package/dist/typescript/model/CitationAuditEventModel.d.ts +1 -0
- package/dist/typescript/model/CitationAuditEventModel.js +1 -0
- package/dist/typescript/model/GetUserRegistrationsRequest.d.ts +3 -0
- package/dist/typescript/model/Lawfirm.d.ts +75 -0
- package/dist/typescript/model/Lawfirm.js +71 -0
- package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
- package/dist/typescript/model/ListCaseBookingsRequest.d.ts +17 -0
- package/dist/typescript/model/ListCaseBookingsRequest.js +13 -0
- package/dist/typescript/model/ListCaseBookingsResponse.d.ts +16 -0
- package/dist/typescript/model/ListCaseBookingsResponse.js +13 -0
- package/dist/typescript/model/ListCaseCancellationsRequest.d.ts +17 -0
- package/dist/typescript/model/ListCaseCancellationsRequest.js +13 -0
- package/dist/typescript/model/ListCaseCancellationsResponse.d.ts +16 -0
- package/dist/typescript/model/ListCaseCancellationsResponse.js +13 -0
- package/dist/typescript/model/ListCitationsRequest.d.ts +1 -0
- package/dist/typescript/model/ListLawfirmsEngagedRequest.d.ts +17 -0
- package/dist/typescript/model/ListLawfirmsEngagedRequest.js +13 -0
- package/dist/typescript/model/ListLawfirmsEngagedResponse.d.ts +16 -0
- package/dist/typescript/model/ListLawfirmsEngagedResponse.js +13 -0
- package/dist/typescript/model/UserAuditEventModel.d.ts +2 -0
- package/dist/typescript/model/UserAuditEventModel.js +2 -0
- package/dist/typescript/model/models.d.ts +9 -0
- package/dist/typescript/model/models.js +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
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 ListLawfirmsEngagedRequest {
|
|
13
|
+
"endDate"?: string;
|
|
14
|
+
"includeDataRecords"?: boolean;
|
|
15
|
+
"startDate"?: string;
|
|
16
|
+
"timeZoneId"?: string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 });
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import * as models from './models';
|
|
13
|
+
export interface ListLawfirmsEngagedResponse {
|
|
14
|
+
"aggregates"?: models.Aggregates;
|
|
15
|
+
"lawfirms"?: Array<models.Lawfirm>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 });
|
|
@@ -61,6 +61,7 @@ export declare namespace UserAuditEventModel {
|
|
|
61
61
|
CASEDECLINE,
|
|
62
62
|
CASEMATCH,
|
|
63
63
|
CASEPAYMENTDELETED,
|
|
64
|
+
CASEPAYMENTRESCHEDULED,
|
|
64
65
|
CASERESOLVE,
|
|
65
66
|
CASESTATUS,
|
|
66
67
|
CASETRANSFER,
|
|
@@ -126,6 +127,7 @@ export declare namespace UserAuditEventModel {
|
|
|
126
127
|
CASEDECLINE,
|
|
127
128
|
CASEMATCH,
|
|
128
129
|
CASEPAYMENTDELETED,
|
|
130
|
+
CASEPAYMENTRESCHEDULED,
|
|
129
131
|
CASERESOLVE,
|
|
130
132
|
CASESTATUS,
|
|
131
133
|
CASETRANSFER,
|
|
@@ -52,6 +52,7 @@ var UserAuditEventModel;
|
|
|
52
52
|
EventEnum[EventEnum["CASEDECLINE"] = 'CASE_DECLINE'] = "CASEDECLINE";
|
|
53
53
|
EventEnum[EventEnum["CASEMATCH"] = 'CASE_MATCH'] = "CASEMATCH";
|
|
54
54
|
EventEnum[EventEnum["CASEPAYMENTDELETED"] = 'CASE_PAYMENT_DELETED'] = "CASEPAYMENTDELETED";
|
|
55
|
+
EventEnum[EventEnum["CASEPAYMENTRESCHEDULED"] = 'CASE_PAYMENT_RESCHEDULED'] = "CASEPAYMENTRESCHEDULED";
|
|
55
56
|
EventEnum[EventEnum["CASERESOLVE"] = 'CASE_RESOLVE'] = "CASERESOLVE";
|
|
56
57
|
EventEnum[EventEnum["CASESTATUS"] = 'CASE_STATUS'] = "CASESTATUS";
|
|
57
58
|
EventEnum[EventEnum["CASETRANSFER"] = 'CASE_TRANSFER'] = "CASETRANSFER";
|
|
@@ -118,6 +119,7 @@ var UserAuditEventModel;
|
|
|
118
119
|
EventTypeEnum[EventTypeEnum["CASEDECLINE"] = 'CASE_DECLINE'] = "CASEDECLINE";
|
|
119
120
|
EventTypeEnum[EventTypeEnum["CASEMATCH"] = 'CASE_MATCH'] = "CASEMATCH";
|
|
120
121
|
EventTypeEnum[EventTypeEnum["CASEPAYMENTDELETED"] = 'CASE_PAYMENT_DELETED'] = "CASEPAYMENTDELETED";
|
|
122
|
+
EventTypeEnum[EventTypeEnum["CASEPAYMENTRESCHEDULED"] = 'CASE_PAYMENT_RESCHEDULED'] = "CASEPAYMENTRESCHEDULED";
|
|
121
123
|
EventTypeEnum[EventTypeEnum["CASERESOLVE"] = 'CASE_RESOLVE'] = "CASERESOLVE";
|
|
122
124
|
EventTypeEnum[EventTypeEnum["CASESTATUS"] = 'CASE_STATUS'] = "CASESTATUS";
|
|
123
125
|
EventTypeEnum[EventTypeEnum["CASETRANSFER"] = 'CASE_TRANSFER'] = "CASETRANSFER";
|
|
@@ -35,6 +35,7 @@ export * from './AgentBookingsSummary';
|
|
|
35
35
|
export * from './AggregateBySource';
|
|
36
36
|
export * from './AggregateRatingMetrics';
|
|
37
37
|
export * from './AggregateReferralCredit';
|
|
38
|
+
export * from './Aggregates';
|
|
38
39
|
export * from './Alert';
|
|
39
40
|
export * from './AlertNotificationResponse';
|
|
40
41
|
export * from './AnonymousTicketUploadModel';
|
|
@@ -71,6 +72,7 @@ export * from './CancelCaseRequest';
|
|
|
71
72
|
export * from './CancelationDetails';
|
|
72
73
|
export * from './CancelationDetailsReq';
|
|
73
74
|
export * from './CancelationDetailsRes';
|
|
75
|
+
export * from './CancellationAggregates';
|
|
74
76
|
export * from './CaptureChargeFromCasePaymentRequest';
|
|
75
77
|
export * from './Case';
|
|
76
78
|
export * from './CaseActionDomain';
|
|
@@ -392,6 +394,7 @@ export * from './InviteLawyerToLawfirmRequest';
|
|
|
392
394
|
export * from './IsRefundEligibleResponse';
|
|
393
395
|
export * from './IsUserLoggedInResponse';
|
|
394
396
|
export * from './LastLoginDateModel';
|
|
397
|
+
export * from './Lawfirm';
|
|
395
398
|
export * from './LawfirmAuditEventModel';
|
|
396
399
|
export * from './LawfirmBankPayoutModel';
|
|
397
400
|
export * from './LawfirmBookingSummary';
|
|
@@ -433,6 +436,10 @@ export * from './ListBillingProductsResponse';
|
|
|
433
436
|
export * from './ListBillingSubscribersResponse';
|
|
434
437
|
export * from './ListBillingSubscriptionModel';
|
|
435
438
|
export * from './ListBillingSubscriptionsResponse';
|
|
439
|
+
export * from './ListCaseBookingsRequest';
|
|
440
|
+
export * from './ListCaseBookingsResponse';
|
|
441
|
+
export * from './ListCaseCancellationsRequest';
|
|
442
|
+
export * from './ListCaseCancellationsResponse';
|
|
436
443
|
export * from './ListCitationAuditEventsResponse';
|
|
437
444
|
export * from './ListCitationsRequest';
|
|
438
445
|
export * from './ListCitationsResponse';
|
|
@@ -447,6 +454,8 @@ export * from './ListLawfirmStorefrontsResponse';
|
|
|
447
454
|
export * from './ListLawfirmSurchargeModel';
|
|
448
455
|
export * from './ListLawfirmSurchargeTypeModel';
|
|
449
456
|
export * from './ListLawfirmSurchargesResponse';
|
|
457
|
+
export * from './ListLawfirmsEngagedRequest';
|
|
458
|
+
export * from './ListLawfirmsEngagedResponse';
|
|
450
459
|
export * from './ListNotesResponse';
|
|
451
460
|
export * from './ListPhoneCallsCountModel';
|
|
452
461
|
export * from './ListPhoneCallsModel';
|
|
@@ -47,6 +47,7 @@ __exportStar(require("./AgentBookingsSummary"), exports);
|
|
|
47
47
|
__exportStar(require("./AggregateBySource"), exports);
|
|
48
48
|
__exportStar(require("./AggregateRatingMetrics"), exports);
|
|
49
49
|
__exportStar(require("./AggregateReferralCredit"), exports);
|
|
50
|
+
__exportStar(require("./Aggregates"), exports);
|
|
50
51
|
__exportStar(require("./Alert"), exports);
|
|
51
52
|
__exportStar(require("./AlertNotificationResponse"), exports);
|
|
52
53
|
__exportStar(require("./AnonymousTicketUploadModel"), exports);
|
|
@@ -83,6 +84,7 @@ __exportStar(require("./CancelCaseRequest"), exports);
|
|
|
83
84
|
__exportStar(require("./CancelationDetails"), exports);
|
|
84
85
|
__exportStar(require("./CancelationDetailsReq"), exports);
|
|
85
86
|
__exportStar(require("./CancelationDetailsRes"), exports);
|
|
87
|
+
__exportStar(require("./CancellationAggregates"), exports);
|
|
86
88
|
__exportStar(require("./CaptureChargeFromCasePaymentRequest"), exports);
|
|
87
89
|
__exportStar(require("./Case"), exports);
|
|
88
90
|
__exportStar(require("./CaseActionDomain"), exports);
|
|
@@ -404,6 +406,7 @@ __exportStar(require("./InviteLawyerToLawfirmRequest"), exports);
|
|
|
404
406
|
__exportStar(require("./IsRefundEligibleResponse"), exports);
|
|
405
407
|
__exportStar(require("./IsUserLoggedInResponse"), exports);
|
|
406
408
|
__exportStar(require("./LastLoginDateModel"), exports);
|
|
409
|
+
__exportStar(require("./Lawfirm"), exports);
|
|
407
410
|
__exportStar(require("./LawfirmAuditEventModel"), exports);
|
|
408
411
|
__exportStar(require("./LawfirmBankPayoutModel"), exports);
|
|
409
412
|
__exportStar(require("./LawfirmBookingSummary"), exports);
|
|
@@ -445,6 +448,10 @@ __exportStar(require("./ListBillingProductsResponse"), exports);
|
|
|
445
448
|
__exportStar(require("./ListBillingSubscribersResponse"), exports);
|
|
446
449
|
__exportStar(require("./ListBillingSubscriptionModel"), exports);
|
|
447
450
|
__exportStar(require("./ListBillingSubscriptionsResponse"), exports);
|
|
451
|
+
__exportStar(require("./ListCaseBookingsRequest"), exports);
|
|
452
|
+
__exportStar(require("./ListCaseBookingsResponse"), exports);
|
|
453
|
+
__exportStar(require("./ListCaseCancellationsRequest"), exports);
|
|
454
|
+
__exportStar(require("./ListCaseCancellationsResponse"), exports);
|
|
448
455
|
__exportStar(require("./ListCitationAuditEventsResponse"), exports);
|
|
449
456
|
__exportStar(require("./ListCitationsRequest"), exports);
|
|
450
457
|
__exportStar(require("./ListCitationsResponse"), exports);
|
|
@@ -459,6 +466,8 @@ __exportStar(require("./ListLawfirmStorefrontsResponse"), exports);
|
|
|
459
466
|
__exportStar(require("./ListLawfirmSurchargeModel"), exports);
|
|
460
467
|
__exportStar(require("./ListLawfirmSurchargeTypeModel"), exports);
|
|
461
468
|
__exportStar(require("./ListLawfirmSurchargesResponse"), exports);
|
|
469
|
+
__exportStar(require("./ListLawfirmsEngagedRequest"), exports);
|
|
470
|
+
__exportStar(require("./ListLawfirmsEngagedResponse"), exports);
|
|
462
471
|
__exportStar(require("./ListNotesResponse"), exports);
|
|
463
472
|
__exportStar(require("./ListPhoneCallsCountModel"), exports);
|
|
464
473
|
__exportStar(require("./ListPhoneCallsModel"), exports);
|