@otr-app/shared-backend-generated-client 2.5.85 → 2.5.86
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/angular/api/recurringBillingController.service.ts +7 -7
- package/dist/otrBackendService.js +6 -8
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/RecurringBillingControllerApi.d.ts +2 -2
- package/dist/typescript/api/RecurringBillingControllerApi.js +4 -4
- package/dist/typescript-fetch/apis/RecurringBillingControllerApi.d.ts +3 -4
- package/dist/typescript-fetch/apis/RecurringBillingControllerApi.js +6 -7
- package/dist/typescript-open-api/otr-backend.d.ts +10 -7
- package/dist/typescript-open-api/otr-backend.js +9 -5
- package/package.json +1 -1
|
@@ -44,10 +44,10 @@ export declare class RecurringBillingControllerApi {
|
|
|
44
44
|
* @param active active
|
|
45
45
|
* @param audience audience
|
|
46
46
|
* @param limit limit
|
|
47
|
-
* @param
|
|
47
|
+
* @param promoOfferCampaign promoOfferCampaign
|
|
48
48
|
* @param userId userId
|
|
49
49
|
*/
|
|
50
|
-
listBillingProductsUsingGET(active?: boolean, audience?: string, limit?: number,
|
|
50
|
+
listBillingProductsUsingGET(active?: boolean, audience?: string, limit?: number, promoOfferCampaign?: 'FALL_2025_OFFER', userId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListBillingProductsResponse>;
|
|
51
51
|
/**
|
|
52
52
|
*
|
|
53
53
|
* @summary listBillingSubscriptions
|
|
@@ -117,10 +117,10 @@ export class RecurringBillingControllerApi {
|
|
|
117
117
|
* @param active active
|
|
118
118
|
* @param audience audience
|
|
119
119
|
* @param limit limit
|
|
120
|
-
* @param
|
|
120
|
+
* @param promoOfferCampaign promoOfferCampaign
|
|
121
121
|
* @param userId userId
|
|
122
122
|
*/
|
|
123
|
-
listBillingProductsUsingGET(active, audience, limit,
|
|
123
|
+
listBillingProductsUsingGET(active, audience, limit, promoOfferCampaign, userId, extraHttpRequestParams) {
|
|
124
124
|
const localVarPath = this.basePath + '/api/v1/billing/products';
|
|
125
125
|
let queryParameters = {};
|
|
126
126
|
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -133,8 +133,8 @@ export class RecurringBillingControllerApi {
|
|
|
133
133
|
if (limit !== undefined) {
|
|
134
134
|
queryParameters['limit'] = limit;
|
|
135
135
|
}
|
|
136
|
-
if (
|
|
137
|
-
queryParameters['
|
|
136
|
+
if (promoOfferCampaign !== undefined) {
|
|
137
|
+
queryParameters['promoOfferCampaign'] = promoOfferCampaign;
|
|
138
138
|
}
|
|
139
139
|
if (userId !== undefined) {
|
|
140
140
|
queryParameters['userId'] = userId;
|
|
@@ -27,7 +27,7 @@ export interface ListBillingProductsUsingGETRequest {
|
|
|
27
27
|
active?: boolean;
|
|
28
28
|
audience?: string;
|
|
29
29
|
limit?: number;
|
|
30
|
-
|
|
30
|
+
promoOfferCampaign?: ListBillingProductsUsingGETPromoOfferCampaignEnum;
|
|
31
31
|
userId?: string;
|
|
32
32
|
}
|
|
33
33
|
export interface ListBillingSubscriptionsUsingGETRequest {
|
|
@@ -109,7 +109,6 @@ export declare class RecurringBillingControllerApi extends runtime.BaseAPI {
|
|
|
109
109
|
* @export
|
|
110
110
|
* @enum {string}
|
|
111
111
|
*/
|
|
112
|
-
export declare enum
|
|
113
|
-
|
|
114
|
-
_2MYEARLYUPFRONT = "TRIAL_2M_YEARLY_UPFRONT"
|
|
112
|
+
export declare enum ListBillingProductsUsingGETPromoOfferCampaignEnum {
|
|
113
|
+
FALL2025OFFER = "FALL_2025_OFFER"
|
|
115
114
|
}
|
|
@@ -135,8 +135,8 @@ export class RecurringBillingControllerApi extends runtime.BaseAPI {
|
|
|
135
135
|
if (requestParameters.limit !== undefined) {
|
|
136
136
|
queryParameters['limit'] = requestParameters.limit;
|
|
137
137
|
}
|
|
138
|
-
if (requestParameters.
|
|
139
|
-
queryParameters['
|
|
138
|
+
if (requestParameters.promoOfferCampaign !== undefined) {
|
|
139
|
+
queryParameters['promoOfferCampaign'] = requestParameters.promoOfferCampaign;
|
|
140
140
|
}
|
|
141
141
|
if (requestParameters.userId !== undefined) {
|
|
142
142
|
queryParameters['userId'] = requestParameters.userId;
|
|
@@ -265,8 +265,7 @@ export class RecurringBillingControllerApi extends runtime.BaseAPI {
|
|
|
265
265
|
* @export
|
|
266
266
|
* @enum {string}
|
|
267
267
|
*/
|
|
268
|
-
export var
|
|
269
|
-
(function (
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
})(ListBillingProductsUsingGETPromoOfferTypeEnum || (ListBillingProductsUsingGETPromoOfferTypeEnum = {}));
|
|
268
|
+
export var ListBillingProductsUsingGETPromoOfferCampaignEnum;
|
|
269
|
+
(function (ListBillingProductsUsingGETPromoOfferCampaignEnum) {
|
|
270
|
+
ListBillingProductsUsingGETPromoOfferCampaignEnum["FALL2025OFFER"] = "FALL_2025_OFFER";
|
|
271
|
+
})(ListBillingProductsUsingGETPromoOfferCampaignEnum || (ListBillingProductsUsingGETPromoOfferCampaignEnum = {}));
|
|
@@ -9536,7 +9536,7 @@ export interface components {
|
|
|
9536
9536
|
priceIds?: string[];
|
|
9537
9537
|
productId?: string;
|
|
9538
9538
|
/** @enum {string} */
|
|
9539
|
-
promoOfferType?:
|
|
9539
|
+
promoOfferType?: CreateBillingSubscriptionRequestPromoOfferType;
|
|
9540
9540
|
/** Format: date */
|
|
9541
9541
|
trialEndDate?: string;
|
|
9542
9542
|
};
|
|
@@ -14199,7 +14199,7 @@ export interface components {
|
|
|
14199
14199
|
/** @enum {string} */
|
|
14200
14200
|
interval?: PathsApiV1CasesCaseIdCustomerCostGetParametersQueryPeriod;
|
|
14201
14201
|
/** @enum {string} */
|
|
14202
|
-
offerType?:
|
|
14202
|
+
offerType?: CreateBillingSubscriptionRequestPromoOfferType;
|
|
14203
14203
|
};
|
|
14204
14204
|
/** SaveCaseNotesRequest */
|
|
14205
14205
|
SaveCaseNotesRequest: {
|
|
@@ -33296,8 +33296,8 @@ export interface operations {
|
|
|
33296
33296
|
audience?: string;
|
|
33297
33297
|
/** @description userId */
|
|
33298
33298
|
userId?: string;
|
|
33299
|
-
/** @description
|
|
33300
|
-
|
|
33299
|
+
/** @description promoOfferCampaign */
|
|
33300
|
+
promoOfferCampaign?: PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign;
|
|
33301
33301
|
};
|
|
33302
33302
|
header?: never;
|
|
33303
33303
|
path?: never;
|
|
@@ -40524,9 +40524,8 @@ export declare enum PathsApiV2NotesSearchGetParametersQueryNoteType {
|
|
|
40524
40524
|
PHONE_LEAD = "PHONE_LEAD",
|
|
40525
40525
|
USER = "USER"
|
|
40526
40526
|
}
|
|
40527
|
-
export declare enum
|
|
40528
|
-
|
|
40529
|
-
TRIAL_2M_YEARLY_UPFRONT = "TRIAL_2M_YEARLY_UPFRONT"
|
|
40527
|
+
export declare enum PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign {
|
|
40528
|
+
FALL_2025_OFFER = "FALL_2025_OFFER"
|
|
40530
40529
|
}
|
|
40531
40530
|
export declare enum PathsApiV1ReferralsSourcesGetParametersQueryFlavor {
|
|
40532
40531
|
ALL = "ALL",
|
|
@@ -40847,6 +40846,10 @@ export declare enum CreateBillingSubscriptionRequestInitialSubscriptionFlow {
|
|
|
40847
40846
|
FASTLANE_TEEN_FLOW = "FASTLANE_TEEN_FLOW",
|
|
40848
40847
|
HOME_PAGE_BANNER = "HOME_PAGE_BANNER"
|
|
40849
40848
|
}
|
|
40849
|
+
export declare enum CreateBillingSubscriptionRequestPromoOfferType {
|
|
40850
|
+
TRIAL_1M_MONTHLY = "TRIAL_1M_MONTHLY",
|
|
40851
|
+
TRIAL_2M_YEARLY_UPFRONT = "TRIAL_2M_YEARLY_UPFRONT"
|
|
40852
|
+
}
|
|
40850
40853
|
export declare enum CreateLawfirmModelLawfirmPaymentModel {
|
|
40851
40854
|
DESTINATION_ACCOUNT = "DESTINATION_ACCOUNT",
|
|
40852
40855
|
SEPARATE_CHARGE = "SEPARATE_CHARGE",
|
|
@@ -428,11 +428,10 @@ export var PathsApiV2NotesSearchGetParametersQueryNoteType;
|
|
|
428
428
|
PathsApiV2NotesSearchGetParametersQueryNoteType["PHONE_LEAD"] = "PHONE_LEAD";
|
|
429
429
|
PathsApiV2NotesSearchGetParametersQueryNoteType["USER"] = "USER";
|
|
430
430
|
})(PathsApiV2NotesSearchGetParametersQueryNoteType || (PathsApiV2NotesSearchGetParametersQueryNoteType = {}));
|
|
431
|
-
export var
|
|
432
|
-
(function (
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
})(PathsApiV1BillingProductsGetParametersQueryPromoOfferType || (PathsApiV1BillingProductsGetParametersQueryPromoOfferType = {}));
|
|
431
|
+
export var PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign;
|
|
432
|
+
(function (PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign) {
|
|
433
|
+
PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign["FALL_2025_OFFER"] = "FALL_2025_OFFER";
|
|
434
|
+
})(PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign || (PathsApiV1BillingProductsGetParametersQueryPromoOfferCampaign = {}));
|
|
436
435
|
export var PathsApiV1ReferralsSourcesGetParametersQueryFlavor;
|
|
437
436
|
(function (PathsApiV1ReferralsSourcesGetParametersQueryFlavor) {
|
|
438
437
|
PathsApiV1ReferralsSourcesGetParametersQueryFlavor["ALL"] = "ALL";
|
|
@@ -793,6 +792,11 @@ export var CreateBillingSubscriptionRequestInitialSubscriptionFlow;
|
|
|
793
792
|
CreateBillingSubscriptionRequestInitialSubscriptionFlow["FASTLANE_TEEN_FLOW"] = "FASTLANE_TEEN_FLOW";
|
|
794
793
|
CreateBillingSubscriptionRequestInitialSubscriptionFlow["HOME_PAGE_BANNER"] = "HOME_PAGE_BANNER";
|
|
795
794
|
})(CreateBillingSubscriptionRequestInitialSubscriptionFlow || (CreateBillingSubscriptionRequestInitialSubscriptionFlow = {}));
|
|
795
|
+
export var CreateBillingSubscriptionRequestPromoOfferType;
|
|
796
|
+
(function (CreateBillingSubscriptionRequestPromoOfferType) {
|
|
797
|
+
CreateBillingSubscriptionRequestPromoOfferType["TRIAL_1M_MONTHLY"] = "TRIAL_1M_MONTHLY";
|
|
798
|
+
CreateBillingSubscriptionRequestPromoOfferType["TRIAL_2M_YEARLY_UPFRONT"] = "TRIAL_2M_YEARLY_UPFRONT";
|
|
799
|
+
})(CreateBillingSubscriptionRequestPromoOfferType || (CreateBillingSubscriptionRequestPromoOfferType = {}));
|
|
796
800
|
export var CreateLawfirmModelLawfirmPaymentModel;
|
|
797
801
|
(function (CreateLawfirmModelLawfirmPaymentModel) {
|
|
798
802
|
CreateLawfirmModelLawfirmPaymentModel["DESTINATION_ACCOUNT"] = "DESTINATION_ACCOUNT";
|