@otr-app/shared-backend-generated-client 2.2.69 → 2.2.71
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/FeedbackAttachmentModel.d.ts +15 -0
- package/dist/typescript/model/FeedbackAttachmentModel.js +13 -0
- package/dist/typescript/model/FeedbackDomain.d.ts +2 -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,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
|
+
export interface FeedbackAttachmentModel {
|
|
13
|
+
"base64data"?: string;
|
|
14
|
+
"contentType"?: string;
|
|
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 });
|
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface FeedbackDomain {
|
|
13
14
|
"appVersion"?: string;
|
|
15
|
+
"attachments"?: Array<models.FeedbackAttachmentModel>;
|
|
14
16
|
"body"?: string;
|
|
15
17
|
"device"?: string;
|
|
16
18
|
"subject"?: string;
|
|
@@ -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';
|
|
@@ -169,6 +170,7 @@ export * from './EnableViolationsForLawfirmRequest';
|
|
|
169
170
|
export * from './EnableViolationsForLawfirmResponse';
|
|
170
171
|
export * from './EstimateInsuranceSavingsRequest';
|
|
171
172
|
export * from './EstimateInsuranceSavingsResponse';
|
|
173
|
+
export * from './FeedbackAttachmentModel';
|
|
172
174
|
export * from './FeedbackDomain';
|
|
173
175
|
export * from './FinancialTransaction';
|
|
174
176
|
export * from './FindChargeDisputesResponse';
|
|
@@ -354,6 +356,7 @@ export * from './LineItemModel';
|
|
|
354
356
|
export * from './LineItemRequest';
|
|
355
357
|
export * from './ListAgentBookingsResponse';
|
|
356
358
|
export * from './ListBillingProductsResponse';
|
|
359
|
+
export * from './ListBillingSubscribersResponse';
|
|
357
360
|
export * from './ListBillingSubscriptionsResponse';
|
|
358
361
|
export * from './ListContactTimelineResponse';
|
|
359
362
|
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);
|
|
@@ -181,6 +182,7 @@ __exportStar(require("./EnableViolationsForLawfirmRequest"), exports);
|
|
|
181
182
|
__exportStar(require("./EnableViolationsForLawfirmResponse"), exports);
|
|
182
183
|
__exportStar(require("./EstimateInsuranceSavingsRequest"), exports);
|
|
183
184
|
__exportStar(require("./EstimateInsuranceSavingsResponse"), exports);
|
|
185
|
+
__exportStar(require("./FeedbackAttachmentModel"), exports);
|
|
184
186
|
__exportStar(require("./FeedbackDomain"), exports);
|
|
185
187
|
__exportStar(require("./FinancialTransaction"), exports);
|
|
186
188
|
__exportStar(require("./FindChargeDisputesResponse"), exports);
|
|
@@ -366,6 +368,7 @@ __exportStar(require("./LineItemModel"), exports);
|
|
|
366
368
|
__exportStar(require("./LineItemRequest"), exports);
|
|
367
369
|
__exportStar(require("./ListAgentBookingsResponse"), exports);
|
|
368
370
|
__exportStar(require("./ListBillingProductsResponse"), exports);
|
|
371
|
+
__exportStar(require("./ListBillingSubscribersResponse"), exports);
|
|
369
372
|
__exportStar(require("./ListBillingSubscriptionsResponse"), exports);
|
|
370
373
|
__exportStar(require("./ListContactTimelineResponse"), exports);
|
|
371
374
|
__exportStar(require("./ListCostItemsForCustomerResponse"), exports);
|