@gooday_corp/gooday-api-client 1.1.9 → 1.1.10-alpha
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/api.ts +455 -98
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -195,12 +195,6 @@ export interface BusinessEntity {
|
|
|
195
195
|
* @memberof BusinessEntity
|
|
196
196
|
*/
|
|
197
197
|
'venues'?: Array<object>;
|
|
198
|
-
/**
|
|
199
|
-
* Business Verification Document
|
|
200
|
-
* @type {string}
|
|
201
|
-
* @memberof BusinessEntity
|
|
202
|
-
*/
|
|
203
|
-
'verificationDoc'?: string;
|
|
204
198
|
/**
|
|
205
199
|
* Business Type
|
|
206
200
|
* @type {string}
|
|
@@ -208,39 +202,32 @@ export interface BusinessEntity {
|
|
|
208
202
|
*/
|
|
209
203
|
'businessType'?: string;
|
|
210
204
|
/**
|
|
211
|
-
*
|
|
212
|
-
* @type {Array<string>}
|
|
213
|
-
* @memberof BusinessEntity
|
|
214
|
-
*/
|
|
215
|
-
'businessCategory'?: Array<string>;
|
|
216
|
-
/**
|
|
217
|
-
* Business Employee
|
|
205
|
+
* User Id
|
|
218
206
|
* @type {string}
|
|
219
207
|
* @memberof BusinessEntity
|
|
220
208
|
*/
|
|
221
|
-
'
|
|
209
|
+
'userId'?: string;
|
|
222
210
|
/**
|
|
223
|
-
* Business
|
|
211
|
+
* Business Category
|
|
224
212
|
* @type {string}
|
|
225
213
|
* @memberof BusinessEntity
|
|
226
214
|
*/
|
|
227
|
-
'
|
|
215
|
+
'businessCategory'?: string;
|
|
228
216
|
/**
|
|
229
|
-
* Business
|
|
217
|
+
* Business verification status
|
|
230
218
|
* @type {string}
|
|
231
219
|
* @memberof BusinessEntity
|
|
232
220
|
*/
|
|
233
|
-
'
|
|
221
|
+
'status': BusinessEntityStatusEnum;
|
|
234
222
|
}
|
|
235
223
|
|
|
236
|
-
export const
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
Completed: 'completed'
|
|
224
|
+
export const BusinessEntityStatusEnum = {
|
|
225
|
+
Verified: 'VERIFIED',
|
|
226
|
+
Pending: 'PENDING',
|
|
227
|
+
QuoteRequested: 'QUOTE_REQUESTED'
|
|
241
228
|
} as const;
|
|
242
229
|
|
|
243
|
-
export type
|
|
230
|
+
export type BusinessEntityStatusEnum = typeof BusinessEntityStatusEnum[keyof typeof BusinessEntityStatusEnum];
|
|
244
231
|
|
|
245
232
|
/**
|
|
246
233
|
*
|
|
@@ -259,13 +246,7 @@ export interface BusinessOnBoardingDTO {
|
|
|
259
246
|
* @type {Array<BusinessVenueDTO>}
|
|
260
247
|
* @memberof BusinessOnBoardingDTO
|
|
261
248
|
*/
|
|
262
|
-
'
|
|
263
|
-
/**
|
|
264
|
-
*
|
|
265
|
-
* @type {string}
|
|
266
|
-
* @memberof BusinessOnBoardingDTO
|
|
267
|
-
*/
|
|
268
|
-
'verificationDoc'?: string;
|
|
249
|
+
'venues'?: Array<BusinessVenueDTO>;
|
|
269
250
|
/**
|
|
270
251
|
* Business policies
|
|
271
252
|
* @type {string}
|
|
@@ -298,28 +279,16 @@ export interface BusinessOnBoardingDTO {
|
|
|
298
279
|
'businessType'?: string;
|
|
299
280
|
/**
|
|
300
281
|
* Business Category
|
|
301
|
-
* @type {Array<string>}
|
|
302
|
-
* @memberof BusinessOnBoardingDTO
|
|
303
|
-
*/
|
|
304
|
-
'businessCategory'?: Array<string>;
|
|
305
|
-
/**
|
|
306
|
-
* Business Employee
|
|
307
282
|
* @type {string}
|
|
308
283
|
* @memberof BusinessOnBoardingDTO
|
|
309
284
|
*/
|
|
310
|
-
'
|
|
285
|
+
'businessCategory'?: string;
|
|
311
286
|
/**
|
|
312
287
|
* Assistant ID
|
|
313
288
|
* @type {string}
|
|
314
289
|
* @memberof BusinessOnBoardingDTO
|
|
315
290
|
*/
|
|
316
291
|
'assistant'?: string;
|
|
317
|
-
/**
|
|
318
|
-
* Business Type
|
|
319
|
-
* @type {string}
|
|
320
|
-
* @memberof BusinessOnBoardingDTO
|
|
321
|
-
*/
|
|
322
|
-
'priceRange'?: string;
|
|
323
292
|
}
|
|
324
293
|
/**
|
|
325
294
|
*
|
|
@@ -482,32 +451,16 @@ export interface BusinessVerificationResponse {
|
|
|
482
451
|
/**
|
|
483
452
|
*
|
|
484
453
|
* @export
|
|
485
|
-
* @interface
|
|
454
|
+
* @interface CalendarAccessDTO
|
|
486
455
|
*/
|
|
487
|
-
export interface
|
|
456
|
+
export interface CalendarAccessDTO {
|
|
488
457
|
/**
|
|
489
|
-
*
|
|
458
|
+
* authorizationCode
|
|
490
459
|
* @type {string}
|
|
491
|
-
* @memberof
|
|
460
|
+
* @memberof CalendarAccessDTO
|
|
492
461
|
*/
|
|
493
|
-
'
|
|
494
|
-
/**
|
|
495
|
-
* Business Account Confirmation
|
|
496
|
-
* @type {string}
|
|
497
|
-
* @memberof BusinessVerifiedDTO
|
|
498
|
-
*/
|
|
499
|
-
'isVerifiedFromAdmin'?: BusinessVerifiedDTOIsVerifiedFromAdminEnum;
|
|
462
|
+
'authorizationCode': string;
|
|
500
463
|
}
|
|
501
|
-
|
|
502
|
-
export const BusinessVerifiedDTOIsVerifiedFromAdminEnum = {
|
|
503
|
-
ApplicationSubmitted: 'application_submitted',
|
|
504
|
-
UnderVerification: 'under_verification',
|
|
505
|
-
PaymentProcessing: 'payment_processing',
|
|
506
|
-
Completed: 'completed'
|
|
507
|
-
} as const;
|
|
508
|
-
|
|
509
|
-
export type BusinessVerifiedDTOIsVerifiedFromAdminEnum = typeof BusinessVerifiedDTOIsVerifiedFromAdminEnum[keyof typeof BusinessVerifiedDTOIsVerifiedFromAdminEnum];
|
|
510
|
-
|
|
511
464
|
/**
|
|
512
465
|
*
|
|
513
466
|
* @export
|
|
@@ -552,6 +505,43 @@ export interface CategoryListResponse {
|
|
|
552
505
|
*/
|
|
553
506
|
'data': Array<CategoryEntity>;
|
|
554
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
*
|
|
510
|
+
* @export
|
|
511
|
+
* @interface CreatePaymentLinkDTO
|
|
512
|
+
*/
|
|
513
|
+
export interface CreatePaymentLinkDTO {
|
|
514
|
+
/**
|
|
515
|
+
* Currency in which the payment is made
|
|
516
|
+
* @type {string}
|
|
517
|
+
* @memberof CreatePaymentLinkDTO
|
|
518
|
+
*/
|
|
519
|
+
'currency': string;
|
|
520
|
+
/**
|
|
521
|
+
* Recurring interval for the payment
|
|
522
|
+
* @type {string}
|
|
523
|
+
* @memberof CreatePaymentLinkDTO
|
|
524
|
+
*/
|
|
525
|
+
'interval': string;
|
|
526
|
+
/**
|
|
527
|
+
* Amount to be charged in the smallest currency unit (e.g., cents for USD)
|
|
528
|
+
* @type {number}
|
|
529
|
+
* @memberof CreatePaymentLinkDTO
|
|
530
|
+
*/
|
|
531
|
+
'amount': number;
|
|
532
|
+
/**
|
|
533
|
+
* Name of the product or service for which payment is being made
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof CreatePaymentLinkDTO
|
|
536
|
+
*/
|
|
537
|
+
'name': string;
|
|
538
|
+
/**
|
|
539
|
+
* User Id
|
|
540
|
+
* @type {string}
|
|
541
|
+
* @memberof CreatePaymentLinkDTO
|
|
542
|
+
*/
|
|
543
|
+
'user': string;
|
|
544
|
+
}
|
|
555
545
|
/**
|
|
556
546
|
*
|
|
557
547
|
* @export
|
|
@@ -773,6 +763,70 @@ export interface GoogleVerificationPayloadDTO {
|
|
|
773
763
|
*/
|
|
774
764
|
'token': string;
|
|
775
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
*
|
|
768
|
+
* @export
|
|
769
|
+
* @interface IntegrationEntity
|
|
770
|
+
*/
|
|
771
|
+
export interface IntegrationEntity {
|
|
772
|
+
/**
|
|
773
|
+
* Unique identifier for the user
|
|
774
|
+
* @type {string}
|
|
775
|
+
* @memberof IntegrationEntity
|
|
776
|
+
*/
|
|
777
|
+
'user': string;
|
|
778
|
+
/**
|
|
779
|
+
* Status of the Integration
|
|
780
|
+
* @type {boolean}
|
|
781
|
+
* @memberof IntegrationEntity
|
|
782
|
+
*/
|
|
783
|
+
'isActive': boolean;
|
|
784
|
+
/**
|
|
785
|
+
* refreshToken
|
|
786
|
+
* @type {string}
|
|
787
|
+
* @memberof IntegrationEntity
|
|
788
|
+
*/
|
|
789
|
+
'refreshToken': string;
|
|
790
|
+
/**
|
|
791
|
+
* Token
|
|
792
|
+
* @type {string}
|
|
793
|
+
* @memberof IntegrationEntity
|
|
794
|
+
*/
|
|
795
|
+
'token': string;
|
|
796
|
+
/**
|
|
797
|
+
* Unique identifier for the user
|
|
798
|
+
* @type {string}
|
|
799
|
+
* @memberof IntegrationEntity
|
|
800
|
+
*/
|
|
801
|
+
'integrationType': IntegrationEntityIntegrationTypeEnum;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
export const IntegrationEntityIntegrationTypeEnum = {
|
|
805
|
+
Google: 'google',
|
|
806
|
+
Microsoft: 'microsoft'
|
|
807
|
+
} as const;
|
|
808
|
+
|
|
809
|
+
export type IntegrationEntityIntegrationTypeEnum = typeof IntegrationEntityIntegrationTypeEnum[keyof typeof IntegrationEntityIntegrationTypeEnum];
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
*
|
|
813
|
+
* @export
|
|
814
|
+
* @interface IntegrationResponse
|
|
815
|
+
*/
|
|
816
|
+
export interface IntegrationResponse {
|
|
817
|
+
/**
|
|
818
|
+
* Status code of the response
|
|
819
|
+
* @type {number}
|
|
820
|
+
* @memberof IntegrationResponse
|
|
821
|
+
*/
|
|
822
|
+
'statusCode': number;
|
|
823
|
+
/**
|
|
824
|
+
* Integration response
|
|
825
|
+
* @type {IntegrationEntity}
|
|
826
|
+
* @memberof IntegrationResponse
|
|
827
|
+
*/
|
|
828
|
+
'data': IntegrationEntity;
|
|
829
|
+
}
|
|
776
830
|
/**
|
|
777
831
|
*
|
|
778
832
|
* @export
|
|
@@ -2326,14 +2380,11 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2326
2380
|
},
|
|
2327
2381
|
/**
|
|
2328
2382
|
*
|
|
2329
|
-
* @param {BusinessVerifiedDTO} businessVerifiedDTO
|
|
2330
2383
|
* @param {*} [options] Override http request option.
|
|
2331
2384
|
* @throws {RequiredError}
|
|
2332
2385
|
*/
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
assertParamExists('businessControllerBusinessVerified', 'businessVerifiedDTO', businessVerifiedDTO)
|
|
2336
|
-
const localVarPath = `/v1/business/verified`;
|
|
2386
|
+
businessControllerGetMe: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2387
|
+
const localVarPath = `/v1/business/me`;
|
|
2337
2388
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2338
2389
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2339
2390
|
let baseOptions;
|
|
@@ -2341,7 +2392,7 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2341
2392
|
baseOptions = configuration.baseOptions;
|
|
2342
2393
|
}
|
|
2343
2394
|
|
|
2344
|
-
const localVarRequestOptions = { method: '
|
|
2395
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
2345
2396
|
const localVarHeaderParameter = {} as any;
|
|
2346
2397
|
const localVarQueryParameter = {} as any;
|
|
2347
2398
|
|
|
@@ -2351,12 +2402,9 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2351
2402
|
|
|
2352
2403
|
|
|
2353
2404
|
|
|
2354
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2355
|
-
|
|
2356
2405
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2357
2406
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2358
2407
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2359
|
-
localVarRequestOptions.data = serializeDataIfNeeded(businessVerifiedDTO, localVarRequestOptions, configuration)
|
|
2360
2408
|
|
|
2361
2409
|
return {
|
|
2362
2410
|
url: toPathString(localVarUrlObj),
|
|
@@ -2368,8 +2416,8 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2368
2416
|
* @param {*} [options] Override http request option.
|
|
2369
2417
|
* @throws {RequiredError}
|
|
2370
2418
|
*/
|
|
2371
|
-
|
|
2372
|
-
const localVarPath = `/
|
|
2419
|
+
businessControllerListBusinesses: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2420
|
+
const localVarPath = `/business`;
|
|
2373
2421
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2374
2422
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2375
2423
|
let baseOptions;
|
|
@@ -2381,10 +2429,6 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
2381
2429
|
const localVarHeaderParameter = {} as any;
|
|
2382
2430
|
const localVarQueryParameter = {} as any;
|
|
2383
2431
|
|
|
2384
|
-
// authentication bearer required
|
|
2385
|
-
// http bearer authentication required
|
|
2386
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2387
|
-
|
|
2388
2432
|
|
|
2389
2433
|
|
|
2390
2434
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2556,14 +2600,13 @@ export const BusinessApiFp = function(configuration?: Configuration) {
|
|
|
2556
2600
|
},
|
|
2557
2601
|
/**
|
|
2558
2602
|
*
|
|
2559
|
-
* @param {BusinessVerifiedDTO} businessVerifiedDTO
|
|
2560
2603
|
* @param {*} [options] Override http request option.
|
|
2561
2604
|
* @throws {RequiredError}
|
|
2562
2605
|
*/
|
|
2563
|
-
async
|
|
2564
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
2606
|
+
async businessControllerGetMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BusinessOnBoardingResponseDTO>> {
|
|
2607
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.businessControllerGetMe(options);
|
|
2565
2608
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2566
|
-
const localVarOperationServerBasePath = operationServerMap['BusinessApi.
|
|
2609
|
+
const localVarOperationServerBasePath = operationServerMap['BusinessApi.businessControllerGetMe']?.[localVarOperationServerIndex]?.url;
|
|
2567
2610
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2568
2611
|
},
|
|
2569
2612
|
/**
|
|
@@ -2571,10 +2614,10 @@ export const BusinessApiFp = function(configuration?: Configuration) {
|
|
|
2571
2614
|
* @param {*} [options] Override http request option.
|
|
2572
2615
|
* @throws {RequiredError}
|
|
2573
2616
|
*/
|
|
2574
|
-
async
|
|
2575
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
2617
|
+
async businessControllerListBusinesses(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
2618
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.businessControllerListBusinesses(options);
|
|
2576
2619
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2577
|
-
const localVarOperationServerBasePath = operationServerMap['BusinessApi.
|
|
2620
|
+
const localVarOperationServerBasePath = operationServerMap['BusinessApi.businessControllerListBusinesses']?.[localVarOperationServerIndex]?.url;
|
|
2578
2621
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2579
2622
|
},
|
|
2580
2623
|
/**
|
|
@@ -2643,20 +2686,19 @@ export const BusinessApiFactory = function (configuration?: Configuration, baseP
|
|
|
2643
2686
|
},
|
|
2644
2687
|
/**
|
|
2645
2688
|
*
|
|
2646
|
-
* @param {BusinessVerifiedDTO} businessVerifiedDTO
|
|
2647
2689
|
* @param {*} [options] Override http request option.
|
|
2648
2690
|
* @throws {RequiredError}
|
|
2649
2691
|
*/
|
|
2650
|
-
|
|
2651
|
-
return localVarFp.
|
|
2692
|
+
businessControllerGetMe(options?: RawAxiosRequestConfig): AxiosPromise<BusinessOnBoardingResponseDTO> {
|
|
2693
|
+
return localVarFp.businessControllerGetMe(options).then((request) => request(axios, basePath));
|
|
2652
2694
|
},
|
|
2653
2695
|
/**
|
|
2654
2696
|
*
|
|
2655
2697
|
* @param {*} [options] Override http request option.
|
|
2656
2698
|
* @throws {RequiredError}
|
|
2657
2699
|
*/
|
|
2658
|
-
|
|
2659
|
-
return localVarFp.
|
|
2700
|
+
businessControllerListBusinesses(options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
2701
|
+
return localVarFp.businessControllerListBusinesses(options).then((request) => request(axios, basePath));
|
|
2660
2702
|
},
|
|
2661
2703
|
/**
|
|
2662
2704
|
*
|
|
@@ -2714,13 +2756,12 @@ export class BusinessApi extends BaseAPI {
|
|
|
2714
2756
|
|
|
2715
2757
|
/**
|
|
2716
2758
|
*
|
|
2717
|
-
* @param {BusinessVerifiedDTO} businessVerifiedDTO
|
|
2718
2759
|
* @param {*} [options] Override http request option.
|
|
2719
2760
|
* @throws {RequiredError}
|
|
2720
2761
|
* @memberof BusinessApi
|
|
2721
2762
|
*/
|
|
2722
|
-
public
|
|
2723
|
-
return BusinessApiFp(this.configuration).
|
|
2763
|
+
public businessControllerGetMe(options?: RawAxiosRequestConfig) {
|
|
2764
|
+
return BusinessApiFp(this.configuration).businessControllerGetMe(options).then((request) => request(this.axios, this.basePath));
|
|
2724
2765
|
}
|
|
2725
2766
|
|
|
2726
2767
|
/**
|
|
@@ -2729,8 +2770,8 @@ export class BusinessApi extends BaseAPI {
|
|
|
2729
2770
|
* @throws {RequiredError}
|
|
2730
2771
|
* @memberof BusinessApi
|
|
2731
2772
|
*/
|
|
2732
|
-
public
|
|
2733
|
-
return BusinessApiFp(this.configuration).
|
|
2773
|
+
public businessControllerListBusinesses(options?: RawAxiosRequestConfig) {
|
|
2774
|
+
return BusinessApiFp(this.configuration).businessControllerListBusinesses(options).then((request) => request(this.axios, this.basePath));
|
|
2734
2775
|
}
|
|
2735
2776
|
|
|
2736
2777
|
/**
|
|
@@ -3211,6 +3252,187 @@ export class GoalsApi extends BaseAPI {
|
|
|
3211
3252
|
|
|
3212
3253
|
|
|
3213
3254
|
|
|
3255
|
+
/**
|
|
3256
|
+
* IntegrationApi - axios parameter creator
|
|
3257
|
+
* @export
|
|
3258
|
+
*/
|
|
3259
|
+
export const IntegrationApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3260
|
+
return {
|
|
3261
|
+
/**
|
|
3262
|
+
*
|
|
3263
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3264
|
+
* @param {*} [options] Override http request option.
|
|
3265
|
+
* @throws {RequiredError}
|
|
3266
|
+
*/
|
|
3267
|
+
integrationControllerGoogleCalendarAccess: async (calendarAccessDTO: CalendarAccessDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3268
|
+
// verify required parameter 'calendarAccessDTO' is not null or undefined
|
|
3269
|
+
assertParamExists('integrationControllerGoogleCalendarAccess', 'calendarAccessDTO', calendarAccessDTO)
|
|
3270
|
+
const localVarPath = `/v1/calendar/google`;
|
|
3271
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3272
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3273
|
+
let baseOptions;
|
|
3274
|
+
if (configuration) {
|
|
3275
|
+
baseOptions = configuration.baseOptions;
|
|
3276
|
+
}
|
|
3277
|
+
|
|
3278
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3279
|
+
const localVarHeaderParameter = {} as any;
|
|
3280
|
+
const localVarQueryParameter = {} as any;
|
|
3281
|
+
|
|
3282
|
+
// authentication bearer required
|
|
3283
|
+
// http bearer authentication required
|
|
3284
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3285
|
+
|
|
3286
|
+
|
|
3287
|
+
|
|
3288
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3289
|
+
|
|
3290
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3291
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3292
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3293
|
+
localVarRequestOptions.data = serializeDataIfNeeded(calendarAccessDTO, localVarRequestOptions, configuration)
|
|
3294
|
+
|
|
3295
|
+
return {
|
|
3296
|
+
url: toPathString(localVarUrlObj),
|
|
3297
|
+
options: localVarRequestOptions,
|
|
3298
|
+
};
|
|
3299
|
+
},
|
|
3300
|
+
/**
|
|
3301
|
+
*
|
|
3302
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3303
|
+
* @param {*} [options] Override http request option.
|
|
3304
|
+
* @throws {RequiredError}
|
|
3305
|
+
*/
|
|
3306
|
+
integrationControllerMicrosoftCalendar: async (calendarAccessDTO: CalendarAccessDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3307
|
+
// verify required parameter 'calendarAccessDTO' is not null or undefined
|
|
3308
|
+
assertParamExists('integrationControllerMicrosoftCalendar', 'calendarAccessDTO', calendarAccessDTO)
|
|
3309
|
+
const localVarPath = `/v1/calendar/microsoft`;
|
|
3310
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3311
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3312
|
+
let baseOptions;
|
|
3313
|
+
if (configuration) {
|
|
3314
|
+
baseOptions = configuration.baseOptions;
|
|
3315
|
+
}
|
|
3316
|
+
|
|
3317
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3318
|
+
const localVarHeaderParameter = {} as any;
|
|
3319
|
+
const localVarQueryParameter = {} as any;
|
|
3320
|
+
|
|
3321
|
+
// authentication bearer required
|
|
3322
|
+
// http bearer authentication required
|
|
3323
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
3324
|
+
|
|
3325
|
+
|
|
3326
|
+
|
|
3327
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3328
|
+
|
|
3329
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3330
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3331
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3332
|
+
localVarRequestOptions.data = serializeDataIfNeeded(calendarAccessDTO, localVarRequestOptions, configuration)
|
|
3333
|
+
|
|
3334
|
+
return {
|
|
3335
|
+
url: toPathString(localVarUrlObj),
|
|
3336
|
+
options: localVarRequestOptions,
|
|
3337
|
+
};
|
|
3338
|
+
},
|
|
3339
|
+
}
|
|
3340
|
+
};
|
|
3341
|
+
|
|
3342
|
+
/**
|
|
3343
|
+
* IntegrationApi - functional programming interface
|
|
3344
|
+
* @export
|
|
3345
|
+
*/
|
|
3346
|
+
export const IntegrationApiFp = function(configuration?: Configuration) {
|
|
3347
|
+
const localVarAxiosParamCreator = IntegrationApiAxiosParamCreator(configuration)
|
|
3348
|
+
return {
|
|
3349
|
+
/**
|
|
3350
|
+
*
|
|
3351
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3352
|
+
* @param {*} [options] Override http request option.
|
|
3353
|
+
* @throws {RequiredError}
|
|
3354
|
+
*/
|
|
3355
|
+
async integrationControllerGoogleCalendarAccess(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationResponse>> {
|
|
3356
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerGoogleCalendarAccess(calendarAccessDTO, options);
|
|
3357
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3358
|
+
const localVarOperationServerBasePath = operationServerMap['IntegrationApi.integrationControllerGoogleCalendarAccess']?.[localVarOperationServerIndex]?.url;
|
|
3359
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3360
|
+
},
|
|
3361
|
+
/**
|
|
3362
|
+
*
|
|
3363
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3364
|
+
* @param {*} [options] Override http request option.
|
|
3365
|
+
* @throws {RequiredError}
|
|
3366
|
+
*/
|
|
3367
|
+
async integrationControllerMicrosoftCalendar(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationResponse>> {
|
|
3368
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerMicrosoftCalendar(calendarAccessDTO, options);
|
|
3369
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3370
|
+
const localVarOperationServerBasePath = operationServerMap['IntegrationApi.integrationControllerMicrosoftCalendar']?.[localVarOperationServerIndex]?.url;
|
|
3371
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3372
|
+
},
|
|
3373
|
+
}
|
|
3374
|
+
};
|
|
3375
|
+
|
|
3376
|
+
/**
|
|
3377
|
+
* IntegrationApi - factory interface
|
|
3378
|
+
* @export
|
|
3379
|
+
*/
|
|
3380
|
+
export const IntegrationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3381
|
+
const localVarFp = IntegrationApiFp(configuration)
|
|
3382
|
+
return {
|
|
3383
|
+
/**
|
|
3384
|
+
*
|
|
3385
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3386
|
+
* @param {*} [options] Override http request option.
|
|
3387
|
+
* @throws {RequiredError}
|
|
3388
|
+
*/
|
|
3389
|
+
integrationControllerGoogleCalendarAccess(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationResponse> {
|
|
3390
|
+
return localVarFp.integrationControllerGoogleCalendarAccess(calendarAccessDTO, options).then((request) => request(axios, basePath));
|
|
3391
|
+
},
|
|
3392
|
+
/**
|
|
3393
|
+
*
|
|
3394
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3395
|
+
* @param {*} [options] Override http request option.
|
|
3396
|
+
* @throws {RequiredError}
|
|
3397
|
+
*/
|
|
3398
|
+
integrationControllerMicrosoftCalendar(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationResponse> {
|
|
3399
|
+
return localVarFp.integrationControllerMicrosoftCalendar(calendarAccessDTO, options).then((request) => request(axios, basePath));
|
|
3400
|
+
},
|
|
3401
|
+
};
|
|
3402
|
+
};
|
|
3403
|
+
|
|
3404
|
+
/**
|
|
3405
|
+
* IntegrationApi - object-oriented interface
|
|
3406
|
+
* @export
|
|
3407
|
+
* @class IntegrationApi
|
|
3408
|
+
* @extends {BaseAPI}
|
|
3409
|
+
*/
|
|
3410
|
+
export class IntegrationApi extends BaseAPI {
|
|
3411
|
+
/**
|
|
3412
|
+
*
|
|
3413
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3414
|
+
* @param {*} [options] Override http request option.
|
|
3415
|
+
* @throws {RequiredError}
|
|
3416
|
+
* @memberof IntegrationApi
|
|
3417
|
+
*/
|
|
3418
|
+
public integrationControllerGoogleCalendarAccess(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig) {
|
|
3419
|
+
return IntegrationApiFp(this.configuration).integrationControllerGoogleCalendarAccess(calendarAccessDTO, options).then((request) => request(this.axios, this.basePath));
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
/**
|
|
3423
|
+
*
|
|
3424
|
+
* @param {CalendarAccessDTO} calendarAccessDTO
|
|
3425
|
+
* @param {*} [options] Override http request option.
|
|
3426
|
+
* @throws {RequiredError}
|
|
3427
|
+
* @memberof IntegrationApi
|
|
3428
|
+
*/
|
|
3429
|
+
public integrationControllerMicrosoftCalendar(calendarAccessDTO: CalendarAccessDTO, options?: RawAxiosRequestConfig) {
|
|
3430
|
+
return IntegrationApiFp(this.configuration).integrationControllerMicrosoftCalendar(calendarAccessDTO, options).then((request) => request(this.axios, this.basePath));
|
|
3431
|
+
}
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
|
|
3435
|
+
|
|
3214
3436
|
/**
|
|
3215
3437
|
* OAuthApi - axios parameter creator
|
|
3216
3438
|
* @export
|
|
@@ -3390,13 +3612,48 @@ export class OAuthApi extends BaseAPI {
|
|
|
3390
3612
|
*/
|
|
3391
3613
|
export const PlansApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
3392
3614
|
return {
|
|
3615
|
+
/**
|
|
3616
|
+
*
|
|
3617
|
+
* @param {CreatePaymentLinkDTO} createPaymentLinkDTO
|
|
3618
|
+
* @param {*} [options] Override http request option.
|
|
3619
|
+
* @throws {RequiredError}
|
|
3620
|
+
*/
|
|
3621
|
+
paymentControllerCreatePaymentLink: async (createPaymentLinkDTO: CreatePaymentLinkDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3622
|
+
// verify required parameter 'createPaymentLinkDTO' is not null or undefined
|
|
3623
|
+
assertParamExists('paymentControllerCreatePaymentLink', 'createPaymentLinkDTO', createPaymentLinkDTO)
|
|
3624
|
+
const localVarPath = `/v1/payment/payment-link`;
|
|
3625
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3626
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3627
|
+
let baseOptions;
|
|
3628
|
+
if (configuration) {
|
|
3629
|
+
baseOptions = configuration.baseOptions;
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3633
|
+
const localVarHeaderParameter = {} as any;
|
|
3634
|
+
const localVarQueryParameter = {} as any;
|
|
3635
|
+
|
|
3636
|
+
|
|
3637
|
+
|
|
3638
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3639
|
+
|
|
3640
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3641
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3642
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3643
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createPaymentLinkDTO, localVarRequestOptions, configuration)
|
|
3644
|
+
|
|
3645
|
+
return {
|
|
3646
|
+
url: toPathString(localVarUrlObj),
|
|
3647
|
+
options: localVarRequestOptions,
|
|
3648
|
+
};
|
|
3649
|
+
},
|
|
3393
3650
|
/**
|
|
3394
3651
|
*
|
|
3395
3652
|
* @param {*} [options] Override http request option.
|
|
3396
3653
|
* @throws {RequiredError}
|
|
3397
3654
|
*/
|
|
3398
3655
|
paymentControllerGetPlans: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3399
|
-
const localVarPath = `/v1/plans`;
|
|
3656
|
+
const localVarPath = `/v1/payment/plans`;
|
|
3400
3657
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3401
3658
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3402
3659
|
let baseOptions;
|
|
@@ -3410,6 +3667,42 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3410
3667
|
|
|
3411
3668
|
|
|
3412
3669
|
|
|
3670
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3671
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3672
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3673
|
+
|
|
3674
|
+
return {
|
|
3675
|
+
url: toPathString(localVarUrlObj),
|
|
3676
|
+
options: localVarRequestOptions,
|
|
3677
|
+
};
|
|
3678
|
+
},
|
|
3679
|
+
/**
|
|
3680
|
+
*
|
|
3681
|
+
* @param {string} stripeSignature
|
|
3682
|
+
* @param {*} [options] Override http request option.
|
|
3683
|
+
* @throws {RequiredError}
|
|
3684
|
+
*/
|
|
3685
|
+
paymentControllerStripeWebhook: async (stripeSignature: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3686
|
+
// verify required parameter 'stripeSignature' is not null or undefined
|
|
3687
|
+
assertParamExists('paymentControllerStripeWebhook', 'stripeSignature', stripeSignature)
|
|
3688
|
+
const localVarPath = `/v1/payment/stripe-webhook`;
|
|
3689
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3690
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3691
|
+
let baseOptions;
|
|
3692
|
+
if (configuration) {
|
|
3693
|
+
baseOptions = configuration.baseOptions;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3697
|
+
const localVarHeaderParameter = {} as any;
|
|
3698
|
+
const localVarQueryParameter = {} as any;
|
|
3699
|
+
|
|
3700
|
+
if (stripeSignature != null) {
|
|
3701
|
+
localVarHeaderParameter['stripe-signature'] = String(stripeSignature);
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
|
|
3705
|
+
|
|
3413
3706
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3414
3707
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3415
3708
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3429,6 +3722,18 @@ export const PlansApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3429
3722
|
export const PlansApiFp = function(configuration?: Configuration) {
|
|
3430
3723
|
const localVarAxiosParamCreator = PlansApiAxiosParamCreator(configuration)
|
|
3431
3724
|
return {
|
|
3725
|
+
/**
|
|
3726
|
+
*
|
|
3727
|
+
* @param {CreatePaymentLinkDTO} createPaymentLinkDTO
|
|
3728
|
+
* @param {*} [options] Override http request option.
|
|
3729
|
+
* @throws {RequiredError}
|
|
3730
|
+
*/
|
|
3731
|
+
async paymentControllerCreatePaymentLink(createPaymentLinkDTO: CreatePaymentLinkDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
3732
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.paymentControllerCreatePaymentLink(createPaymentLinkDTO, options);
|
|
3733
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3734
|
+
const localVarOperationServerBasePath = operationServerMap['PlansApi.paymentControllerCreatePaymentLink']?.[localVarOperationServerIndex]?.url;
|
|
3735
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3736
|
+
},
|
|
3432
3737
|
/**
|
|
3433
3738
|
*
|
|
3434
3739
|
* @param {*} [options] Override http request option.
|
|
@@ -3440,6 +3745,18 @@ export const PlansApiFp = function(configuration?: Configuration) {
|
|
|
3440
3745
|
const localVarOperationServerBasePath = operationServerMap['PlansApi.paymentControllerGetPlans']?.[localVarOperationServerIndex]?.url;
|
|
3441
3746
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3442
3747
|
},
|
|
3748
|
+
/**
|
|
3749
|
+
*
|
|
3750
|
+
* @param {string} stripeSignature
|
|
3751
|
+
* @param {*} [options] Override http request option.
|
|
3752
|
+
* @throws {RequiredError}
|
|
3753
|
+
*/
|
|
3754
|
+
async paymentControllerStripeWebhook(stripeSignature: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
3755
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.paymentControllerStripeWebhook(stripeSignature, options);
|
|
3756
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3757
|
+
const localVarOperationServerBasePath = operationServerMap['PlansApi.paymentControllerStripeWebhook']?.[localVarOperationServerIndex]?.url;
|
|
3758
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
3759
|
+
},
|
|
3443
3760
|
}
|
|
3444
3761
|
};
|
|
3445
3762
|
|
|
@@ -3450,6 +3767,15 @@ export const PlansApiFp = function(configuration?: Configuration) {
|
|
|
3450
3767
|
export const PlansApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
3451
3768
|
const localVarFp = PlansApiFp(configuration)
|
|
3452
3769
|
return {
|
|
3770
|
+
/**
|
|
3771
|
+
*
|
|
3772
|
+
* @param {CreatePaymentLinkDTO} createPaymentLinkDTO
|
|
3773
|
+
* @param {*} [options] Override http request option.
|
|
3774
|
+
* @throws {RequiredError}
|
|
3775
|
+
*/
|
|
3776
|
+
paymentControllerCreatePaymentLink(createPaymentLinkDTO: CreatePaymentLinkDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3777
|
+
return localVarFp.paymentControllerCreatePaymentLink(createPaymentLinkDTO, options).then((request) => request(axios, basePath));
|
|
3778
|
+
},
|
|
3453
3779
|
/**
|
|
3454
3780
|
*
|
|
3455
3781
|
* @param {*} [options] Override http request option.
|
|
@@ -3458,6 +3784,15 @@ export const PlansApiFactory = function (configuration?: Configuration, basePath
|
|
|
3458
3784
|
paymentControllerGetPlans(options?: RawAxiosRequestConfig): AxiosPromise<PlanResponseDTO> {
|
|
3459
3785
|
return localVarFp.paymentControllerGetPlans(options).then((request) => request(axios, basePath));
|
|
3460
3786
|
},
|
|
3787
|
+
/**
|
|
3788
|
+
*
|
|
3789
|
+
* @param {string} stripeSignature
|
|
3790
|
+
* @param {*} [options] Override http request option.
|
|
3791
|
+
* @throws {RequiredError}
|
|
3792
|
+
*/
|
|
3793
|
+
paymentControllerStripeWebhook(stripeSignature: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
3794
|
+
return localVarFp.paymentControllerStripeWebhook(stripeSignature, options).then((request) => request(axios, basePath));
|
|
3795
|
+
},
|
|
3461
3796
|
};
|
|
3462
3797
|
};
|
|
3463
3798
|
|
|
@@ -3468,6 +3803,17 @@ export const PlansApiFactory = function (configuration?: Configuration, basePath
|
|
|
3468
3803
|
* @extends {BaseAPI}
|
|
3469
3804
|
*/
|
|
3470
3805
|
export class PlansApi extends BaseAPI {
|
|
3806
|
+
/**
|
|
3807
|
+
*
|
|
3808
|
+
* @param {CreatePaymentLinkDTO} createPaymentLinkDTO
|
|
3809
|
+
* @param {*} [options] Override http request option.
|
|
3810
|
+
* @throws {RequiredError}
|
|
3811
|
+
* @memberof PlansApi
|
|
3812
|
+
*/
|
|
3813
|
+
public paymentControllerCreatePaymentLink(createPaymentLinkDTO: CreatePaymentLinkDTO, options?: RawAxiosRequestConfig) {
|
|
3814
|
+
return PlansApiFp(this.configuration).paymentControllerCreatePaymentLink(createPaymentLinkDTO, options).then((request) => request(this.axios, this.basePath));
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3471
3817
|
/**
|
|
3472
3818
|
*
|
|
3473
3819
|
* @param {*} [options] Override http request option.
|
|
@@ -3477,6 +3823,17 @@ export class PlansApi extends BaseAPI {
|
|
|
3477
3823
|
public paymentControllerGetPlans(options?: RawAxiosRequestConfig) {
|
|
3478
3824
|
return PlansApiFp(this.configuration).paymentControllerGetPlans(options).then((request) => request(this.axios, this.basePath));
|
|
3479
3825
|
}
|
|
3826
|
+
|
|
3827
|
+
/**
|
|
3828
|
+
*
|
|
3829
|
+
* @param {string} stripeSignature
|
|
3830
|
+
* @param {*} [options] Override http request option.
|
|
3831
|
+
* @throws {RequiredError}
|
|
3832
|
+
* @memberof PlansApi
|
|
3833
|
+
*/
|
|
3834
|
+
public paymentControllerStripeWebhook(stripeSignature: string, options?: RawAxiosRequestConfig) {
|
|
3835
|
+
return PlansApiFp(this.configuration).paymentControllerStripeWebhook(stripeSignature, options).then((request) => request(this.axios, this.basePath));
|
|
3836
|
+
}
|
|
3480
3837
|
}
|
|
3481
3838
|
|
|
3482
3839
|
|