@otr-app/shared-backend-generated-client 2.3.188 → 2.3.189

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.
@@ -101,6 +101,7 @@ export declare class ConsoleListControllerApi {
101
101
  * @summary listBillingSubscribers
102
102
  * @param billingInterval billingInterval
103
103
  * @param billingSubscriptionStatus billingSubscriptionStatus
104
+ * @param coveredSubscriptionsOnly coveredSubscriptionsOnly
104
105
  * @param endDate endDate
105
106
  * @param length length
106
107
  * @param page page
@@ -112,7 +113,7 @@ export declare class ConsoleListControllerApi {
112
113
  * @param subscriberName subscriberName
113
114
  * @param timeZoneId timeZoneId
114
115
  */
115
- listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
116
+ listBillingSubscribersUsingGET(billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingSubscribersResponse>;
116
117
  /**
117
118
  *
118
119
  * @summary listLawfirmLeads
@@ -353,6 +353,7 @@ var ConsoleListControllerApi = /** @class */ (function () {
353
353
  * @summary listBillingSubscribers
354
354
  * @param billingInterval billingInterval
355
355
  * @param billingSubscriptionStatus billingSubscriptionStatus
356
+ * @param coveredSubscriptionsOnly coveredSubscriptionsOnly
356
357
  * @param endDate endDate
357
358
  * @param length length
358
359
  * @param page page
@@ -364,7 +365,7 @@ var ConsoleListControllerApi = /** @class */ (function () {
364
365
  * @param subscriberName subscriberName
365
366
  * @param timeZoneId timeZoneId
366
367
  */
367
- ConsoleListControllerApi.prototype.listBillingSubscribersUsingGET = function (billingInterval, billingSubscriptionStatus, endDate, length, page, planName, shouldIncludeSubscribers, sortBy, sortOrder, startDate, subscriberName, timeZoneId, extraHttpRequestParams) {
368
+ ConsoleListControllerApi.prototype.listBillingSubscribersUsingGET = function (billingInterval, billingSubscriptionStatus, coveredSubscriptionsOnly, endDate, length, page, planName, shouldIncludeSubscribers, sortBy, sortOrder, startDate, subscriberName, timeZoneId, extraHttpRequestParams) {
368
369
  var localVarPath = this.basePath + '/api/v1/billing/subscribers';
369
370
  var queryParameters = {};
370
371
  var headerParams = Object.assign({}, this.defaultHeaders);
@@ -374,6 +375,9 @@ var ConsoleListControllerApi = /** @class */ (function () {
374
375
  if (billingSubscriptionStatus !== undefined) {
375
376
  queryParameters['billingSubscriptionStatus'] = billingSubscriptionStatus;
376
377
  }
378
+ if (coveredSubscriptionsOnly !== undefined) {
379
+ queryParameters['coveredSubscriptionsOnly'] = coveredSubscriptionsOnly;
380
+ }
377
381
  if (endDate !== undefined) {
378
382
  queryParameters['endDate'] = endDate;
379
383
  }
@@ -408,6 +408,7 @@ export class ConsoleListControllerApi {
408
408
  * @summary listBillingSubscribers
409
409
  * @param billingInterval billingInterval
410
410
  * @param billingSubscriptionStatus billingSubscriptionStatus
411
+ * @param coveredSubscriptionsOnly coveredSubscriptionsOnly
411
412
  * @param endDate endDate
412
413
  * @param length length
413
414
  * @param page page
@@ -419,7 +420,7 @@ export class ConsoleListControllerApi {
419
420
  * @param subscriberName subscriberName
420
421
  * @param timeZoneId timeZoneId
421
422
  */
422
- public listBillingSubscribersUsingGET (billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.ListBillingSubscribersResponse> {
423
+ public listBillingSubscribersUsingGET (billingInterval?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY' | 'YEARLY', billingSubscriptionStatus?: 'ACTIVE' | 'CANCELED' | 'INCOMPLETE' | 'INCOMPLETE_EXPIRED' | 'IN_TRIAL_PERIOD' | 'PAST_DUE' | 'UNKNOWN' | 'UNPAID', coveredSubscriptionsOnly?: boolean, endDate?: string, length?: number, page?: number, planName?: string, shouldIncludeSubscribers?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, subscriberName?: string, timeZoneId?: string, extraHttpRequestParams?: any ) : ng.IHttpPromise<models.ListBillingSubscribersResponse> {
423
424
  const localVarPath = this.basePath + '/api/v1/billing/subscribers';
424
425
 
425
426
  let queryParameters: any = {};
@@ -432,6 +433,10 @@ export class ConsoleListControllerApi {
432
433
  queryParameters['billingSubscriptionStatus'] = billingSubscriptionStatus;
433
434
  }
434
435
 
436
+ if (coveredSubscriptionsOnly !== undefined) {
437
+ queryParameters['coveredSubscriptionsOnly'] = coveredSubscriptionsOnly;
438
+ }
439
+
435
440
  if (endDate !== undefined) {
436
441
  queryParameters['endDate'] = endDate;
437
442
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.188",
3
+ "version": "2.3.189",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"