@otr-app/shared-backend-generated-client 2.2.68 → 2.2.70
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/otrBackendService.js +39 -0
- package/dist/otrBackendService.min.js +6 -6
- package/dist/typescript/api/ConsoleListControllerApi.d.ts +7 -0
- package/dist/typescript/api/ConsoleListControllerApi.js +27 -0
- package/dist/typescript/model/BillingSubscriberModel.d.ts +20 -0
- package/dist/typescript/model/BillingSubscriberModel.js +13 -0
- package/dist/typescript/model/DashboardAuthorModel.d.ts +16 -0
- package/dist/typescript/model/DashboardAuthorModel.js +13 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
- package/dist/typescript/model/ListBillingSubscribersResponse.d.ts +15 -0
- package/dist/typescript/model/ListBillingSubscribersResponse.js +13 -0
- package/dist/typescript/model/models.d.ts +3 -0
- package/dist/typescript/model/models.js +3 -0
- package/package.json +1 -1
|
@@ -90,6 +90,13 @@ export declare class ConsoleListControllerApi {
|
|
|
90
90
|
* @param request request
|
|
91
91
|
*/
|
|
92
92
|
getPendingTicketReviewsUsingPOST(request: models.GetPendingTicketReviewsRequest, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetPendingTicketReviewsResponse>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @summary listBillingSubscribers
|
|
96
|
+
* @param length length
|
|
97
|
+
* @param page page
|
|
98
|
+
*/
|
|
99
|
+
listBillingSubscribersUsingGET(length?: number, page?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
|
|
93
100
|
/**
|
|
94
101
|
*
|
|
95
102
|
* @summary listLawfirmLeads
|
|
@@ -323,6 +323,33 @@ var ConsoleListControllerApi = /** @class */ (function () {
|
|
|
323
323
|
}
|
|
324
324
|
return this.$http(httpRequestParams);
|
|
325
325
|
};
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @summary listBillingSubscribers
|
|
329
|
+
* @param length length
|
|
330
|
+
* @param page page
|
|
331
|
+
*/
|
|
332
|
+
ConsoleListControllerApi.prototype.listBillingSubscribersUsingGET = function (length, page, extraHttpRequestParams) {
|
|
333
|
+
var localVarPath = this.basePath + '/api/v1/billing/subscribers';
|
|
334
|
+
var queryParameters = {};
|
|
335
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
336
|
+
if (length !== undefined) {
|
|
337
|
+
queryParameters['length'] = length;
|
|
338
|
+
}
|
|
339
|
+
if (page !== undefined) {
|
|
340
|
+
queryParameters['page'] = page;
|
|
341
|
+
}
|
|
342
|
+
var httpRequestParams = {
|
|
343
|
+
method: 'GET',
|
|
344
|
+
url: localVarPath,
|
|
345
|
+
params: queryParameters,
|
|
346
|
+
headers: headerParams
|
|
347
|
+
};
|
|
348
|
+
if (extraHttpRequestParams) {
|
|
349
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
350
|
+
}
|
|
351
|
+
return this.$http(httpRequestParams);
|
|
352
|
+
};
|
|
326
353
|
/**
|
|
327
354
|
*
|
|
328
355
|
* @summary listLawfirmLeads
|
|
@@ -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 BillingSubscriberModel {
|
|
14
|
+
"emailAddress"?: string;
|
|
15
|
+
"firstName"?: string;
|
|
16
|
+
"lastName"?: string;
|
|
17
|
+
"subscriptions"?: Array<models.BillingSubscriptionModel>;
|
|
18
|
+
"totalUsage"?: number;
|
|
19
|
+
"userId"?: number;
|
|
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,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
|
+
export interface DashboardAuthorModel {
|
|
13
|
+
"authorFirstName"?: string;
|
|
14
|
+
"authorLastName"?: string;
|
|
15
|
+
"profilePictureUrl"?: string;
|
|
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,15 @@
|
|
|
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 ListBillingSubscribersResponse {
|
|
14
|
+
"subscribers"?: Array<models.BillingSubscriberModel>;
|
|
15
|
+
}
|
|
@@ -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 });
|
|
@@ -47,6 +47,7 @@ export * from './BackfillLawfirmTransactionRecordsResponse';
|
|
|
47
47
|
export * from './BillingInvoiceModel';
|
|
48
48
|
export * from './BillingPriceModel';
|
|
49
49
|
export * from './BillingProductModel';
|
|
50
|
+
export * from './BillingSubscriberModel';
|
|
50
51
|
export * from './BillingSubscriptionItemModel';
|
|
51
52
|
export * from './BillingSubscriptionModel';
|
|
52
53
|
export * from './BillingUpcomingInvoiceModel';
|
|
@@ -138,6 +139,7 @@ export * from './CustomerReview';
|
|
|
138
139
|
export * from './CustomerServiceAgentBookingDomain';
|
|
139
140
|
export * from './CustomerServiceAgentDomain';
|
|
140
141
|
export * from './DashboardAddressModel';
|
|
142
|
+
export * from './DashboardAuthorModel';
|
|
141
143
|
export * from './DashboardCaseModel';
|
|
142
144
|
export * from './DashboardCitationModel';
|
|
143
145
|
export * from './DashboardCourtModel';
|
|
@@ -353,6 +355,7 @@ export * from './LineItemModel';
|
|
|
353
355
|
export * from './LineItemRequest';
|
|
354
356
|
export * from './ListAgentBookingsResponse';
|
|
355
357
|
export * from './ListBillingProductsResponse';
|
|
358
|
+
export * from './ListBillingSubscribersResponse';
|
|
356
359
|
export * from './ListBillingSubscriptionsResponse';
|
|
357
360
|
export * from './ListContactTimelineResponse';
|
|
358
361
|
export * from './ListCostItemsForCustomerResponse';
|
|
@@ -59,6 +59,7 @@ __exportStar(require("./BackfillLawfirmTransactionRecordsResponse"), exports);
|
|
|
59
59
|
__exportStar(require("./BillingInvoiceModel"), exports);
|
|
60
60
|
__exportStar(require("./BillingPriceModel"), exports);
|
|
61
61
|
__exportStar(require("./BillingProductModel"), exports);
|
|
62
|
+
__exportStar(require("./BillingSubscriberModel"), exports);
|
|
62
63
|
__exportStar(require("./BillingSubscriptionItemModel"), exports);
|
|
63
64
|
__exportStar(require("./BillingSubscriptionModel"), exports);
|
|
64
65
|
__exportStar(require("./BillingUpcomingInvoiceModel"), exports);
|
|
@@ -150,6 +151,7 @@ __exportStar(require("./CustomerReview"), exports);
|
|
|
150
151
|
__exportStar(require("./CustomerServiceAgentBookingDomain"), exports);
|
|
151
152
|
__exportStar(require("./CustomerServiceAgentDomain"), exports);
|
|
152
153
|
__exportStar(require("./DashboardAddressModel"), exports);
|
|
154
|
+
__exportStar(require("./DashboardAuthorModel"), exports);
|
|
153
155
|
__exportStar(require("./DashboardCaseModel"), exports);
|
|
154
156
|
__exportStar(require("./DashboardCitationModel"), exports);
|
|
155
157
|
__exportStar(require("./DashboardCourtModel"), exports);
|
|
@@ -365,6 +367,7 @@ __exportStar(require("./LineItemModel"), exports);
|
|
|
365
367
|
__exportStar(require("./LineItemRequest"), exports);
|
|
366
368
|
__exportStar(require("./ListAgentBookingsResponse"), exports);
|
|
367
369
|
__exportStar(require("./ListBillingProductsResponse"), exports);
|
|
370
|
+
__exportStar(require("./ListBillingSubscribersResponse"), exports);
|
|
368
371
|
__exportStar(require("./ListBillingSubscriptionsResponse"), exports);
|
|
369
372
|
__exportStar(require("./ListContactTimelineResponse"), exports);
|
|
370
373
|
__exportStar(require("./ListCostItemsForCustomerResponse"), exports);
|