@otr-app/shared-backend-generated-client 2.3.215 → 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.
Files changed (44) hide show
  1. package/dist/angular/.openapi-generator/FILES +9 -0
  2. package/dist/angular/api/dashboardController.service.ts +216 -0
  3. package/dist/angular/model/aggregates.ts +23 -0
  4. package/dist/angular/model/cancellationAggregates.ts +23 -0
  5. package/dist/angular/model/case.ts +10 -10
  6. package/dist/angular/model/getUserRegistrationsRequest.ts +3 -0
  7. package/dist/angular/model/lawfirm.ts +80 -0
  8. package/dist/angular/model/listCaseBookingsRequest.ts +20 -0
  9. package/dist/angular/model/listCaseBookingsResponse.ts +20 -0
  10. package/dist/angular/model/listCaseCancellationsRequest.ts +20 -0
  11. package/dist/angular/model/listCaseCancellationsResponse.ts +20 -0
  12. package/dist/angular/model/listCitationsRequest.ts +1 -0
  13. package/dist/angular/model/listLawfirmsEngagedRequest.ts +20 -0
  14. package/dist/angular/model/listLawfirmsEngagedResponse.ts +20 -0
  15. package/dist/angular/model/models.ts +9 -0
  16. package/dist/otrBackendService.js +111 -0
  17. package/dist/otrBackendService.min.js +6 -6
  18. package/dist/typescript/api/DashboardControllerApi.d.ts +18 -0
  19. package/dist/typescript/api/DashboardControllerApi.js +75 -0
  20. package/dist/typescript/model/Aggregates.d.ts +20 -0
  21. package/dist/typescript/model/Aggregates.js +13 -0
  22. package/dist/typescript/model/CancellationAggregates.d.ts +20 -0
  23. package/dist/typescript/model/CancellationAggregates.js +13 -0
  24. package/dist/typescript/model/Case.d.ts +10 -9
  25. package/dist/typescript/model/Case.js +0 -7
  26. package/dist/typescript/model/GetUserRegistrationsRequest.d.ts +3 -0
  27. package/dist/typescript/model/Lawfirm.d.ts +75 -0
  28. package/dist/typescript/model/Lawfirm.js +71 -0
  29. package/dist/typescript/model/ListCaseBookingsRequest.d.ts +17 -0
  30. package/dist/typescript/model/ListCaseBookingsRequest.js +13 -0
  31. package/dist/typescript/model/ListCaseBookingsResponse.d.ts +16 -0
  32. package/dist/typescript/model/ListCaseBookingsResponse.js +13 -0
  33. package/dist/typescript/model/ListCaseCancellationsRequest.d.ts +17 -0
  34. package/dist/typescript/model/ListCaseCancellationsRequest.js +13 -0
  35. package/dist/typescript/model/ListCaseCancellationsResponse.d.ts +16 -0
  36. package/dist/typescript/model/ListCaseCancellationsResponse.js +13 -0
  37. package/dist/typescript/model/ListCitationsRequest.d.ts +1 -0
  38. package/dist/typescript/model/ListLawfirmsEngagedRequest.d.ts +17 -0
  39. package/dist/typescript/model/ListLawfirmsEngagedRequest.js +13 -0
  40. package/dist/typescript/model/ListLawfirmsEngagedResponse.d.ts +16 -0
  41. package/dist/typescript/model/ListLawfirmsEngagedResponse.js +13 -0
  42. package/dist/typescript/model/models.d.ts +9 -0
  43. package/dist/typescript/model/models.js +9 -0
  44. package/package.json +1 -1
@@ -30,6 +30,18 @@ export declare class DashboardControllerApi {
30
30
  * @param request request
31
31
  */
32
32
  getUserRegistrationsUsingPOST(request: models.GetUserRegistrationsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetUserRegistrationsResponse>;
33
+ /**
34
+ *
35
+ * @summary listCaseBookings
36
+ * @param request request
37
+ */
38
+ listCaseBookingsUsingPOST(request: models.ListCaseBookingsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListCaseBookingsResponse>;
39
+ /**
40
+ *
41
+ * @summary listCaseCancellations
42
+ * @param request request
43
+ */
44
+ listCaseCancellationsUsingPOST(request: models.ListCaseCancellationsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListCaseCancellationsResponse>;
33
45
  /**
34
46
  *
35
47
  * @summary listCitations
@@ -54,6 +66,12 @@ export declare class DashboardControllerApi {
54
66
  * @param graphRequest graphRequest
55
67
  */
56
68
  listExpensesUsingPOST(graphRequest: models.GraphRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.SqlResponse>;
69
+ /**
70
+ *
71
+ * @summary listLawfirmsEngaged
72
+ * @param request request
73
+ */
74
+ listLawfirmsEngagedUsingPOST(request: models.ListLawfirmsEngagedRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmsEngagedResponse>;
57
75
  /**
58
76
  *
59
77
  * @summary listLawyerLeads
@@ -73,6 +73,56 @@ var DashboardControllerApi = /** @class */ (function () {
73
73
  }
74
74
  return this.$http(httpRequestParams);
75
75
  };
76
+ /**
77
+ *
78
+ * @summary listCaseBookings
79
+ * @param request request
80
+ */
81
+ DashboardControllerApi.prototype.listCaseBookingsUsingPOST = function (request, extraHttpRequestParams) {
82
+ var localVarPath = this.basePath + '/api/v1/console/bookings2';
83
+ var queryParameters = {};
84
+ var headerParams = Object.assign({}, this.defaultHeaders);
85
+ // verify required parameter 'request' is not null or undefined
86
+ if (request === null || request === undefined) {
87
+ throw new Error('Required parameter request was null or undefined when calling listCaseBookingsUsingPOST.');
88
+ }
89
+ var httpRequestParams = {
90
+ method: 'POST',
91
+ url: localVarPath,
92
+ data: request,
93
+ params: queryParameters,
94
+ headers: headerParams
95
+ };
96
+ if (extraHttpRequestParams) {
97
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
98
+ }
99
+ return this.$http(httpRequestParams);
100
+ };
101
+ /**
102
+ *
103
+ * @summary listCaseCancellations
104
+ * @param request request
105
+ */
106
+ DashboardControllerApi.prototype.listCaseCancellationsUsingPOST = function (request, extraHttpRequestParams) {
107
+ var localVarPath = this.basePath + '/api/v1/console/cancellations';
108
+ var queryParameters = {};
109
+ var headerParams = Object.assign({}, this.defaultHeaders);
110
+ // verify required parameter 'request' is not null or undefined
111
+ if (request === null || request === undefined) {
112
+ throw new Error('Required parameter request was null or undefined when calling listCaseCancellationsUsingPOST.');
113
+ }
114
+ var httpRequestParams = {
115
+ method: 'POST',
116
+ url: localVarPath,
117
+ data: request,
118
+ params: queryParameters,
119
+ headers: headerParams
120
+ };
121
+ if (extraHttpRequestParams) {
122
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
123
+ }
124
+ return this.$http(httpRequestParams);
125
+ };
76
126
  /**
77
127
  *
78
128
  * @summary listCitations
@@ -173,6 +223,31 @@ var DashboardControllerApi = /** @class */ (function () {
173
223
  }
174
224
  return this.$http(httpRequestParams);
175
225
  };
226
+ /**
227
+ *
228
+ * @summary listLawfirmsEngaged
229
+ * @param request request
230
+ */
231
+ DashboardControllerApi.prototype.listLawfirmsEngagedUsingPOST = function (request, extraHttpRequestParams) {
232
+ var localVarPath = this.basePath + '/api/v1/console/lawfirm-engagement';
233
+ var queryParameters = {};
234
+ var headerParams = Object.assign({}, this.defaultHeaders);
235
+ // verify required parameter 'request' is not null or undefined
236
+ if (request === null || request === undefined) {
237
+ throw new Error('Required parameter request was null or undefined when calling listLawfirmsEngagedUsingPOST.');
238
+ }
239
+ var httpRequestParams = {
240
+ method: 'POST',
241
+ url: localVarPath,
242
+ data: request,
243
+ params: queryParameters,
244
+ headers: headerParams
245
+ };
246
+ if (extraHttpRequestParams) {
247
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
248
+ }
249
+ return this.$http(httpRequestParams);
250
+ };
176
251
  /**
177
252
  *
178
253
  * @summary listLawyerLeads
@@ -0,0 +1,20 @@
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 Aggregates {
14
+ "caseCount"?: number;
15
+ "endDate"?: string;
16
+ "revenue"?: number;
17
+ "startDate"?: string;
18
+ "transactionVolume"?: number;
19
+ "zoneId"?: models.ZoneId;
20
+ }
@@ -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,20 @@
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 CancellationAggregates {
14
+ "caseCancellationCount"?: number;
15
+ "endDate"?: string;
16
+ "revenue"?: number;
17
+ "startDate"?: string;
18
+ "transactionVolume"?: number;
19
+ "zoneId"?: models.ZoneId;
20
+ }
@@ -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 });
@@ -11,13 +11,20 @@
11
11
  */
12
12
  import * as models from './models';
13
13
  export interface Case {
14
+ "bookingDate"?: string;
14
15
  "bookingDateUtc"?: models.Timestamp;
15
16
  "caseId"?: string;
16
17
  "caseStatus"?: Case.CaseStatusEnum;
17
- "caseSubtotal"?: number;
18
- "otrReferralFee"?: number;
18
+ "clientTotalCost"?: number;
19
+ "lawfirmId"?: number;
20
+ "lawfirmName"?: string;
21
+ "numPayments"?: number;
22
+ "otrPercent"?: number;
23
+ "otrRevenue"?: number;
19
24
  "state"?: Case.StateEnum;
20
- "statusCategory"?: Case.StatusCategoryEnum;
25
+ "userFirstName"?: string;
26
+ "userId"?: number;
27
+ "userLastName"?: string;
21
28
  }
22
29
  export declare namespace Case {
23
30
  enum CaseStatusEnum {
@@ -112,10 +119,4 @@ export declare namespace Case {
112
119
  WV,
113
120
  WY
114
121
  }
115
- enum StatusCategoryEnum {
116
- ACTIVE,
117
- CANCELLED,
118
- RESOLVED,
119
- UNCONFIRMED
120
- }
121
122
  }
@@ -108,11 +108,4 @@ var Case;
108
108
  StateEnum[StateEnum["WV"] = 'WV'] = "WV";
109
109
  StateEnum[StateEnum["WY"] = 'WY'] = "WY";
110
110
  })(StateEnum = Case.StateEnum || (Case.StateEnum = {}));
111
- var StatusCategoryEnum;
112
- (function (StatusCategoryEnum) {
113
- StatusCategoryEnum[StatusCategoryEnum["ACTIVE"] = 'ACTIVE'] = "ACTIVE";
114
- StatusCategoryEnum[StatusCategoryEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
115
- StatusCategoryEnum[StatusCategoryEnum["RESOLVED"] = 'RESOLVED'] = "RESOLVED";
116
- StatusCategoryEnum[StatusCategoryEnum["UNCONFIRMED"] = 'UNCONFIRMED'] = "UNCONFIRMED";
117
- })(StatusCategoryEnum = Case.StatusCategoryEnum || (Case.StatusCategoryEnum = {}));
118
111
  })(Case = exports.Case || (exports.Case = {}));
@@ -11,6 +11,9 @@
11
11
  */
12
12
  export interface GetUserRegistrationsRequest {
13
13
  "endDate"?: string;
14
+ "includeDataRecords"?: boolean;
15
+ "length"?: number;
16
+ "page"?: number;
14
17
  "startDate"?: string;
15
18
  "timeZoneId"?: string;
16
19
  }
@@ -0,0 +1,75 @@
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 Lawfirm {
13
+ "caseCount"?: number;
14
+ "lawfirmId"?: number;
15
+ "lawfirmName"?: string;
16
+ "otrPercent"?: number;
17
+ "otrRevenue"?: number;
18
+ "state"?: Lawfirm.StateEnum;
19
+ "transactionVolume"?: number;
20
+ }
21
+ export declare namespace Lawfirm {
22
+ enum StateEnum {
23
+ AK,
24
+ AL,
25
+ AR,
26
+ AZ,
27
+ CA,
28
+ CO,
29
+ CT,
30
+ DC,
31
+ DE,
32
+ FL,
33
+ GA,
34
+ HI,
35
+ IA,
36
+ ID,
37
+ IL,
38
+ IN,
39
+ KS,
40
+ KY,
41
+ LA,
42
+ MA,
43
+ MD,
44
+ ME,
45
+ MI,
46
+ MN,
47
+ MO,
48
+ MS,
49
+ MT,
50
+ NC,
51
+ ND,
52
+ NE,
53
+ NH,
54
+ NJ,
55
+ NM,
56
+ NV,
57
+ NY,
58
+ OH,
59
+ OK,
60
+ OR,
61
+ PA,
62
+ RI,
63
+ SC,
64
+ SD,
65
+ TN,
66
+ TX,
67
+ UT,
68
+ VA,
69
+ VT,
70
+ WA,
71
+ WI,
72
+ WV,
73
+ WY
74
+ }
75
+ }
@@ -0,0 +1,71 @@
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 });
14
+ exports.Lawfirm = void 0;
15
+ var Lawfirm;
16
+ (function (Lawfirm) {
17
+ var StateEnum;
18
+ (function (StateEnum) {
19
+ StateEnum[StateEnum["AK"] = 'AK'] = "AK";
20
+ StateEnum[StateEnum["AL"] = 'AL'] = "AL";
21
+ StateEnum[StateEnum["AR"] = 'AR'] = "AR";
22
+ StateEnum[StateEnum["AZ"] = 'AZ'] = "AZ";
23
+ StateEnum[StateEnum["CA"] = 'CA'] = "CA";
24
+ StateEnum[StateEnum["CO"] = 'CO'] = "CO";
25
+ StateEnum[StateEnum["CT"] = 'CT'] = "CT";
26
+ StateEnum[StateEnum["DC"] = 'DC'] = "DC";
27
+ StateEnum[StateEnum["DE"] = 'DE'] = "DE";
28
+ StateEnum[StateEnum["FL"] = 'FL'] = "FL";
29
+ StateEnum[StateEnum["GA"] = 'GA'] = "GA";
30
+ StateEnum[StateEnum["HI"] = 'HI'] = "HI";
31
+ StateEnum[StateEnum["IA"] = 'IA'] = "IA";
32
+ StateEnum[StateEnum["ID"] = 'ID'] = "ID";
33
+ StateEnum[StateEnum["IL"] = 'IL'] = "IL";
34
+ StateEnum[StateEnum["IN"] = 'IN'] = "IN";
35
+ StateEnum[StateEnum["KS"] = 'KS'] = "KS";
36
+ StateEnum[StateEnum["KY"] = 'KY'] = "KY";
37
+ StateEnum[StateEnum["LA"] = 'LA'] = "LA";
38
+ StateEnum[StateEnum["MA"] = 'MA'] = "MA";
39
+ StateEnum[StateEnum["MD"] = 'MD'] = "MD";
40
+ StateEnum[StateEnum["ME"] = 'ME'] = "ME";
41
+ StateEnum[StateEnum["MI"] = 'MI'] = "MI";
42
+ StateEnum[StateEnum["MN"] = 'MN'] = "MN";
43
+ StateEnum[StateEnum["MO"] = 'MO'] = "MO";
44
+ StateEnum[StateEnum["MS"] = 'MS'] = "MS";
45
+ StateEnum[StateEnum["MT"] = 'MT'] = "MT";
46
+ StateEnum[StateEnum["NC"] = 'NC'] = "NC";
47
+ StateEnum[StateEnum["ND"] = 'ND'] = "ND";
48
+ StateEnum[StateEnum["NE"] = 'NE'] = "NE";
49
+ StateEnum[StateEnum["NH"] = 'NH'] = "NH";
50
+ StateEnum[StateEnum["NJ"] = 'NJ'] = "NJ";
51
+ StateEnum[StateEnum["NM"] = 'NM'] = "NM";
52
+ StateEnum[StateEnum["NV"] = 'NV'] = "NV";
53
+ StateEnum[StateEnum["NY"] = 'NY'] = "NY";
54
+ StateEnum[StateEnum["OH"] = 'OH'] = "OH";
55
+ StateEnum[StateEnum["OK"] = 'OK'] = "OK";
56
+ StateEnum[StateEnum["OR"] = 'OR'] = "OR";
57
+ StateEnum[StateEnum["PA"] = 'PA'] = "PA";
58
+ StateEnum[StateEnum["RI"] = 'RI'] = "RI";
59
+ StateEnum[StateEnum["SC"] = 'SC'] = "SC";
60
+ StateEnum[StateEnum["SD"] = 'SD'] = "SD";
61
+ StateEnum[StateEnum["TN"] = 'TN'] = "TN";
62
+ StateEnum[StateEnum["TX"] = 'TX'] = "TX";
63
+ StateEnum[StateEnum["UT"] = 'UT'] = "UT";
64
+ StateEnum[StateEnum["VA"] = 'VA'] = "VA";
65
+ StateEnum[StateEnum["VT"] = 'VT'] = "VT";
66
+ StateEnum[StateEnum["WA"] = 'WA'] = "WA";
67
+ StateEnum[StateEnum["WI"] = 'WI'] = "WI";
68
+ StateEnum[StateEnum["WV"] = 'WV'] = "WV";
69
+ StateEnum[StateEnum["WY"] = 'WY'] = "WY";
70
+ })(StateEnum = Lawfirm.StateEnum || (Lawfirm.StateEnum = {}));
71
+ })(Lawfirm = exports.Lawfirm || (exports.Lawfirm = {}));
@@ -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 ListCaseBookingsRequest {
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 ListCaseBookingsResponse {
14
+ "aggregates"?: models.Aggregates;
15
+ "cases"?: 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 });
@@ -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 ListCaseCancellationsRequest {
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 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 });
@@ -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';