@otr-app/shared-backend-generated-client 2.3.215 → 2.3.217

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 (59) hide show
  1. package/dist/angular/.openapi-generator/FILES +9 -0
  2. package/dist/angular/api/auditLawfirmEventsController.service.ts +4 -4
  3. package/dist/angular/api/citationAuditController.service.ts +4 -4
  4. package/dist/angular/api/dashboardController.service.ts +216 -0
  5. package/dist/angular/api/userAuditController.service.ts +4 -4
  6. package/dist/angular/model/aggregates.ts +23 -0
  7. package/dist/angular/model/cancellationAggregates.ts +23 -0
  8. package/dist/angular/model/case.ts +31 -10
  9. package/dist/angular/model/citationAuditEventModel.ts +2 -1
  10. package/dist/angular/model/getUserRegistrationsRequest.ts +3 -0
  11. package/dist/angular/model/lawfirm.ts +80 -0
  12. package/dist/angular/model/lawfirmAuditEventModel.ts +2 -1
  13. package/dist/angular/model/listCaseBookingsRequest.ts +20 -0
  14. package/dist/angular/model/listCaseBookingsResponse.ts +20 -0
  15. package/dist/angular/model/listCaseCancellationsRequest.ts +20 -0
  16. package/dist/angular/model/listCaseCancellationsResponse.ts +20 -0
  17. package/dist/angular/model/listCitationsRequest.ts +1 -0
  18. package/dist/angular/model/listLawfirmsEngagedRequest.ts +20 -0
  19. package/dist/angular/model/listLawfirmsEngagedResponse.ts +20 -0
  20. package/dist/angular/model/models.ts +9 -0
  21. package/dist/angular/model/userAuditEventModel.ts +4 -2
  22. package/dist/otrBackendService.js +111 -0
  23. package/dist/otrBackendService.min.js +6 -6
  24. package/dist/typescript/api/AuditLawfirmEventsControllerApi.d.ts +1 -1
  25. package/dist/typescript/api/CitationAuditControllerApi.d.ts +1 -1
  26. package/dist/typescript/api/DashboardControllerApi.d.ts +18 -0
  27. package/dist/typescript/api/DashboardControllerApi.js +75 -0
  28. package/dist/typescript/api/UserAuditControllerApi.d.ts +1 -1
  29. package/dist/typescript/model/Aggregates.d.ts +20 -0
  30. package/dist/typescript/model/Aggregates.js +13 -0
  31. package/dist/typescript/model/CancellationAggregates.d.ts +20 -0
  32. package/dist/typescript/model/CancellationAggregates.js +13 -0
  33. package/dist/typescript/model/Case.d.ts +29 -9
  34. package/dist/typescript/model/Case.js +18 -7
  35. package/dist/typescript/model/CitationAuditEventModel.d.ts +1 -0
  36. package/dist/typescript/model/CitationAuditEventModel.js +1 -0
  37. package/dist/typescript/model/GetUserRegistrationsRequest.d.ts +3 -0
  38. package/dist/typescript/model/Lawfirm.d.ts +75 -0
  39. package/dist/typescript/model/Lawfirm.js +71 -0
  40. package/dist/typescript/model/LawfirmAuditEventModel.d.ts +1 -0
  41. package/dist/typescript/model/LawfirmAuditEventModel.js +1 -0
  42. package/dist/typescript/model/ListCaseBookingsRequest.d.ts +17 -0
  43. package/dist/typescript/model/ListCaseBookingsRequest.js +13 -0
  44. package/dist/typescript/model/ListCaseBookingsResponse.d.ts +16 -0
  45. package/dist/typescript/model/ListCaseBookingsResponse.js +13 -0
  46. package/dist/typescript/model/ListCaseCancellationsRequest.d.ts +17 -0
  47. package/dist/typescript/model/ListCaseCancellationsRequest.js +13 -0
  48. package/dist/typescript/model/ListCaseCancellationsResponse.d.ts +16 -0
  49. package/dist/typescript/model/ListCaseCancellationsResponse.js +13 -0
  50. package/dist/typescript/model/ListCitationsRequest.d.ts +1 -0
  51. package/dist/typescript/model/ListLawfirmsEngagedRequest.d.ts +17 -0
  52. package/dist/typescript/model/ListLawfirmsEngagedRequest.js +13 -0
  53. package/dist/typescript/model/ListLawfirmsEngagedResponse.d.ts +16 -0
  54. package/dist/typescript/model/ListLawfirmsEngagedResponse.js +13 -0
  55. package/dist/typescript/model/UserAuditEventModel.d.ts +2 -0
  56. package/dist/typescript/model/UserAuditEventModel.js +2 -0
  57. package/dist/typescript/model/models.d.ts +9 -0
  58. package/dist/typescript/model/models.js +9 -0
  59. package/package.json +1 -1
@@ -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 ListCaseCancellationsResponse {
14
+ "cancellationAggregates"?: models.CancellationAggregates;
15
+ "cancellations"?: Array<models.Case>;
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 });
@@ -20,6 +20,7 @@ export interface ListCitationsRequest {
20
20
  "hasAccident"?: boolean;
21
21
  "hasCase"?: boolean;
22
22
  "hasPhoto"?: boolean;
23
+ "includeDataRecords"?: boolean;
23
24
  "length"?: number;
24
25
  "page"?: number;
25
26
  "sortMap"?: {
@@ -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 });
@@ -86,6 +86,7 @@ export declare namespace UserAuditEventModel {
86
86
  LAWFIRMTRANSFERREVERSED,
87
87
  LINEITEMADDED,
88
88
  LINEITEMDELETED,
89
+ LINEITEMUPDATED,
89
90
  MBGELIGIBILITYCHANGED,
90
91
  NAMECHANGED,
91
92
  OCRTEXTEXTRACTED,
@@ -152,6 +153,7 @@ export declare namespace UserAuditEventModel {
152
153
  LAWFIRMTRANSFERREVERSED,
153
154
  LINEITEMADDED,
154
155
  LINEITEMDELETED,
156
+ LINEITEMUPDATED,
155
157
  MBGELIGIBILITYCHANGED,
156
158
  NAMECHANGED,
157
159
  OCRTEXTEXTRACTED,
@@ -77,6 +77,7 @@ var UserAuditEventModel;
77
77
  EventEnum[EventEnum["LAWFIRMTRANSFERREVERSED"] = 'LAWFIRM_TRANSFER_REVERSED'] = "LAWFIRMTRANSFERREVERSED";
78
78
  EventEnum[EventEnum["LINEITEMADDED"] = 'LINE_ITEM_ADDED'] = "LINEITEMADDED";
79
79
  EventEnum[EventEnum["LINEITEMDELETED"] = 'LINE_ITEM_DELETED'] = "LINEITEMDELETED";
80
+ EventEnum[EventEnum["LINEITEMUPDATED"] = 'LINE_ITEM_UPDATED'] = "LINEITEMUPDATED";
80
81
  EventEnum[EventEnum["MBGELIGIBILITYCHANGED"] = 'MBG_ELIGIBILITY_CHANGED'] = "MBGELIGIBILITYCHANGED";
81
82
  EventEnum[EventEnum["NAMECHANGED"] = 'NAME_CHANGED'] = "NAMECHANGED";
82
83
  EventEnum[EventEnum["OCRTEXTEXTRACTED"] = 'OCR_TEXT_EXTRACTED'] = "OCRTEXTEXTRACTED";
@@ -144,6 +145,7 @@ var UserAuditEventModel;
144
145
  EventTypeEnum[EventTypeEnum["LAWFIRMTRANSFERREVERSED"] = 'LAWFIRM_TRANSFER_REVERSED'] = "LAWFIRMTRANSFERREVERSED";
145
146
  EventTypeEnum[EventTypeEnum["LINEITEMADDED"] = 'LINE_ITEM_ADDED'] = "LINEITEMADDED";
146
147
  EventTypeEnum[EventTypeEnum["LINEITEMDELETED"] = 'LINE_ITEM_DELETED'] = "LINEITEMDELETED";
148
+ EventTypeEnum[EventTypeEnum["LINEITEMUPDATED"] = 'LINE_ITEM_UPDATED'] = "LINEITEMUPDATED";
147
149
  EventTypeEnum[EventTypeEnum["MBGELIGIBILITYCHANGED"] = 'MBG_ELIGIBILITY_CHANGED'] = "MBGELIGIBILITYCHANGED";
148
150
  EventTypeEnum[EventTypeEnum["NAMECHANGED"] = 'NAME_CHANGED'] = "NAMECHANGED";
149
151
  EventTypeEnum[EventTypeEnum["OCRTEXTEXTRACTED"] = 'OCR_TEXT_EXTRACTED'] = "OCRTEXTEXTRACTED";
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.215",
3
+ "version": "2.3.217",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"