@tennac-booking/sdk 1.0.72 → 1.0.74
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/.openapi-generator/FILES +1 -6
- package/README.md +3 -11
- package/api.ts +132 -482
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +86 -353
- package/dist/api.js +95 -200
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +86 -353
- package/dist/esm/api.js +90 -199
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BookingInfo.md +2 -2
- package/docs/ClubSettingsResponse.md +0 -2
- package/docs/CreateBookingRequest.md +2 -2
- package/docs/IUserAttributes.md +2 -12
- package/docs/SportsPublicApi.md +53 -0
- package/docs/StaffUserProfileResponse.md +2 -12
- package/docs/SubscribeRequestBody.md +2 -0
- package/docs/UserProfileResponse.md +4 -12
- package/docs/UsersApi.md +0 -156
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/AddPaymentMethodRequestBody.md +0 -20
- package/docs/ConfirmPaymentMethodRequestBody.md +0 -20
- package/docs/ConfirmPaymentMethodResponse.md +0 -22
- package/docs/PaymentMethodSetupResponse.md +0 -24
- package/docs/SetupPaymentMethodRequestBody.md +0 -20
- package/docs/SetupPaymentMethodResponse.md +0 -24
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* openapi.json
|
|
3
3
|
* Pandook API Documentation
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.74
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -82,19 +82,6 @@ export interface AddOrganizationRequest {
|
|
|
82
82
|
*/
|
|
83
83
|
'organizationId'?: string;
|
|
84
84
|
}
|
|
85
|
-
/**
|
|
86
|
-
*
|
|
87
|
-
* @export
|
|
88
|
-
* @interface AddPaymentMethodRequestBody
|
|
89
|
-
*/
|
|
90
|
-
export interface AddPaymentMethodRequestBody {
|
|
91
|
-
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {string}
|
|
94
|
-
* @memberof AddPaymentMethodRequestBody
|
|
95
|
-
*/
|
|
96
|
-
'paymentMethodId': string;
|
|
97
|
-
}
|
|
98
85
|
/**
|
|
99
86
|
*
|
|
100
87
|
* @export
|
|
@@ -348,10 +335,10 @@ export interface BookingInfo {
|
|
|
348
335
|
'totalPrice': number;
|
|
349
336
|
/**
|
|
350
337
|
* ID du créneau
|
|
351
|
-
* @type {string}
|
|
338
|
+
* @type {Array<string>}
|
|
352
339
|
* @memberof BookingInfo
|
|
353
340
|
*/
|
|
354
|
-
'
|
|
341
|
+
'slotIds': Array<string>;
|
|
355
342
|
/**
|
|
356
343
|
* Indique si le créateur paie pour tous
|
|
357
344
|
* @type {boolean}
|
|
@@ -1365,12 +1352,6 @@ export interface ClubSettingsResponse {
|
|
|
1365
1352
|
* @memberof ClubSettingsResponse
|
|
1366
1353
|
*/
|
|
1367
1354
|
'maxWeeklyBookings': number;
|
|
1368
|
-
/**
|
|
1369
|
-
* Autoriser plusieurs réservations en même temps
|
|
1370
|
-
* @type {boolean}
|
|
1371
|
-
* @memberof ClubSettingsResponse
|
|
1372
|
-
*/
|
|
1373
|
-
'allowMultipleBookingsAtTheSameTime': boolean;
|
|
1374
1355
|
/**
|
|
1375
1356
|
* Limite de réservations simultanées
|
|
1376
1357
|
* @type {number}
|
|
@@ -1495,38 +1476,6 @@ export interface ClubUserCountResponse {
|
|
|
1495
1476
|
*/
|
|
1496
1477
|
'count': number;
|
|
1497
1478
|
}
|
|
1498
|
-
/**
|
|
1499
|
-
*
|
|
1500
|
-
* @export
|
|
1501
|
-
* @interface ConfirmPaymentMethodRequestBody
|
|
1502
|
-
*/
|
|
1503
|
-
export interface ConfirmPaymentMethodRequestBody {
|
|
1504
|
-
/**
|
|
1505
|
-
*
|
|
1506
|
-
* @type {string}
|
|
1507
|
-
* @memberof ConfirmPaymentMethodRequestBody
|
|
1508
|
-
*/
|
|
1509
|
-
'setupIntentId': string;
|
|
1510
|
-
}
|
|
1511
|
-
/**
|
|
1512
|
-
*
|
|
1513
|
-
* @export
|
|
1514
|
-
* @interface ConfirmPaymentMethodResponse
|
|
1515
|
-
*/
|
|
1516
|
-
export interface ConfirmPaymentMethodResponse {
|
|
1517
|
-
/**
|
|
1518
|
-
*
|
|
1519
|
-
* @type {string}
|
|
1520
|
-
* @memberof ConfirmPaymentMethodResponse
|
|
1521
|
-
*/
|
|
1522
|
-
'message': string;
|
|
1523
|
-
/**
|
|
1524
|
-
*
|
|
1525
|
-
* @type {string}
|
|
1526
|
-
* @memberof ConfirmPaymentMethodResponse
|
|
1527
|
-
*/
|
|
1528
|
-
'paymentMethodId'?: string | null;
|
|
1529
|
-
}
|
|
1530
1479
|
/**
|
|
1531
1480
|
*
|
|
1532
1481
|
* @export
|
|
@@ -1685,10 +1634,10 @@ export type CourtStatus = typeof CourtStatus[keyof typeof CourtStatus];
|
|
|
1685
1634
|
export interface CreateBookingRequest {
|
|
1686
1635
|
/**
|
|
1687
1636
|
* ID du créneau à réserver
|
|
1688
|
-
* @type {string}
|
|
1637
|
+
* @type {Array<string>}
|
|
1689
1638
|
* @memberof CreateBookingRequest
|
|
1690
1639
|
*/
|
|
1691
|
-
'
|
|
1640
|
+
'slotIds': Array<string>;
|
|
1692
1641
|
/**
|
|
1693
1642
|
* Liste des joueurs avec leurs méthodes de paiement
|
|
1694
1643
|
* @type {Array<PlayerWithPaymentMethod>}
|
|
@@ -3111,24 +3060,12 @@ export interface IUserAttributes {
|
|
|
3111
3060
|
* @memberof IUserAttributes
|
|
3112
3061
|
*/
|
|
3113
3062
|
'isAccountVerified': boolean;
|
|
3114
|
-
/**
|
|
3115
|
-
*
|
|
3116
|
-
* @type {boolean}
|
|
3117
|
-
* @memberof IUserAttributes
|
|
3118
|
-
*/
|
|
3119
|
-
'isCreditCardRegistered'?: boolean;
|
|
3120
3063
|
/**
|
|
3121
3064
|
*
|
|
3122
3065
|
* @type {Array<ILevelBySports>}
|
|
3123
3066
|
* @memberof IUserAttributes
|
|
3124
3067
|
*/
|
|
3125
3068
|
'levelBySports'?: Array<ILevelBySports>;
|
|
3126
|
-
/**
|
|
3127
|
-
*
|
|
3128
|
-
* @type {string}
|
|
3129
|
-
* @memberof IUserAttributes
|
|
3130
|
-
*/
|
|
3131
|
-
'stripeCustomerId'?: string;
|
|
3132
3069
|
/**
|
|
3133
3070
|
*
|
|
3134
3071
|
* @type {string}
|
|
@@ -3201,30 +3138,6 @@ export interface IUserAttributes {
|
|
|
3201
3138
|
* @memberof IUserAttributes
|
|
3202
3139
|
*/
|
|
3203
3140
|
'isLevelCertified'?: boolean;
|
|
3204
|
-
/**
|
|
3205
|
-
*
|
|
3206
|
-
* @type {Array<string>}
|
|
3207
|
-
* @memberof IUserAttributes
|
|
3208
|
-
*/
|
|
3209
|
-
'paymentMethods'?: Array<string>;
|
|
3210
|
-
/**
|
|
3211
|
-
*
|
|
3212
|
-
* @type {string}
|
|
3213
|
-
* @memberof IUserAttributes
|
|
3214
|
-
*/
|
|
3215
|
-
'defaultPaymentMethodId'?: string;
|
|
3216
|
-
/**
|
|
3217
|
-
*
|
|
3218
|
-
* @type {boolean}
|
|
3219
|
-
* @memberof IUserAttributes
|
|
3220
|
-
*/
|
|
3221
|
-
'paymentMethodSetupCompleted': boolean;
|
|
3222
|
-
/**
|
|
3223
|
-
*
|
|
3224
|
-
* @type {string}
|
|
3225
|
-
* @memberof IUserAttributes
|
|
3226
|
-
*/
|
|
3227
|
-
'setupIntentId'?: string;
|
|
3228
3141
|
/**
|
|
3229
3142
|
*
|
|
3230
3143
|
* @type {Array<string>}
|
|
@@ -3257,6 +3170,12 @@ export interface IUserAttributes {
|
|
|
3257
3170
|
'sports'?: {
|
|
3258
3171
|
[key: string]: any;
|
|
3259
3172
|
};
|
|
3173
|
+
/**
|
|
3174
|
+
*
|
|
3175
|
+
* @type {string}
|
|
3176
|
+
* @memberof IUserAttributes
|
|
3177
|
+
*/
|
|
3178
|
+
'stripeCustomerId'?: string;
|
|
3260
3179
|
}
|
|
3261
3180
|
/**
|
|
3262
3181
|
*
|
|
@@ -3883,31 +3802,6 @@ export declare const PaymentMethod: {
|
|
|
3883
3802
|
readonly Free: "free";
|
|
3884
3803
|
};
|
|
3885
3804
|
export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
|
|
3886
|
-
/**
|
|
3887
|
-
*
|
|
3888
|
-
* @export
|
|
3889
|
-
* @interface PaymentMethodSetupResponse
|
|
3890
|
-
*/
|
|
3891
|
-
export interface PaymentMethodSetupResponse {
|
|
3892
|
-
/**
|
|
3893
|
-
*
|
|
3894
|
-
* @type {string}
|
|
3895
|
-
* @memberof PaymentMethodSetupResponse
|
|
3896
|
-
*/
|
|
3897
|
-
'message': string;
|
|
3898
|
-
/**
|
|
3899
|
-
*
|
|
3900
|
-
* @type {Array<string>}
|
|
3901
|
-
* @memberof PaymentMethodSetupResponse
|
|
3902
|
-
*/
|
|
3903
|
-
'paymentMethods': Array<string>;
|
|
3904
|
-
/**
|
|
3905
|
-
*
|
|
3906
|
-
* @type {string}
|
|
3907
|
-
* @memberof PaymentMethodSetupResponse
|
|
3908
|
-
*/
|
|
3909
|
-
'defaultPaymentMethodId'?: string | null;
|
|
3910
|
-
}
|
|
3911
3805
|
/**
|
|
3912
3806
|
* From T, pick a set of properties whose keys are in the union K
|
|
3913
3807
|
* @export
|
|
@@ -4886,44 +4780,6 @@ export interface ResetPasswordRequest {
|
|
|
4886
4780
|
*/
|
|
4887
4781
|
'token'?: string;
|
|
4888
4782
|
}
|
|
4889
|
-
/**
|
|
4890
|
-
*
|
|
4891
|
-
* @export
|
|
4892
|
-
* @interface SetupPaymentMethodRequestBody
|
|
4893
|
-
*/
|
|
4894
|
-
export interface SetupPaymentMethodRequestBody {
|
|
4895
|
-
/**
|
|
4896
|
-
*
|
|
4897
|
-
* @type {string}
|
|
4898
|
-
* @memberof SetupPaymentMethodRequestBody
|
|
4899
|
-
*/
|
|
4900
|
-
'clubId': string;
|
|
4901
|
-
}
|
|
4902
|
-
/**
|
|
4903
|
-
*
|
|
4904
|
-
* @export
|
|
4905
|
-
* @interface SetupPaymentMethodResponse
|
|
4906
|
-
*/
|
|
4907
|
-
export interface SetupPaymentMethodResponse {
|
|
4908
|
-
/**
|
|
4909
|
-
*
|
|
4910
|
-
* @type {string}
|
|
4911
|
-
* @memberof SetupPaymentMethodResponse
|
|
4912
|
-
*/
|
|
4913
|
-
'setupIntentId': string;
|
|
4914
|
-
/**
|
|
4915
|
-
*
|
|
4916
|
-
* @type {string}
|
|
4917
|
-
* @memberof SetupPaymentMethodResponse
|
|
4918
|
-
*/
|
|
4919
|
-
'clientSecret': string;
|
|
4920
|
-
/**
|
|
4921
|
-
*
|
|
4922
|
-
* @type {string}
|
|
4923
|
-
* @memberof SetupPaymentMethodResponse
|
|
4924
|
-
*/
|
|
4925
|
-
'message': string;
|
|
4926
|
-
}
|
|
4927
4783
|
/**
|
|
4928
4784
|
*
|
|
4929
4785
|
* @export
|
|
@@ -5194,24 +5050,12 @@ export interface StaffUserProfileResponse {
|
|
|
5194
5050
|
* @memberof StaffUserProfileResponse
|
|
5195
5051
|
*/
|
|
5196
5052
|
'isAccountVerified': boolean;
|
|
5197
|
-
/**
|
|
5198
|
-
*
|
|
5199
|
-
* @type {boolean}
|
|
5200
|
-
* @memberof StaffUserProfileResponse
|
|
5201
|
-
*/
|
|
5202
|
-
'isCreditCardRegistered'?: boolean;
|
|
5203
5053
|
/**
|
|
5204
5054
|
*
|
|
5205
5055
|
* @type {Array<ILevelBySports>}
|
|
5206
5056
|
* @memberof StaffUserProfileResponse
|
|
5207
5057
|
*/
|
|
5208
5058
|
'levelBySports'?: Array<ILevelBySports>;
|
|
5209
|
-
/**
|
|
5210
|
-
*
|
|
5211
|
-
* @type {string}
|
|
5212
|
-
* @memberof StaffUserProfileResponse
|
|
5213
|
-
*/
|
|
5214
|
-
'stripeCustomerId'?: string;
|
|
5215
5059
|
/**
|
|
5216
5060
|
*
|
|
5217
5061
|
* @type {string}
|
|
@@ -5284,30 +5128,6 @@ export interface StaffUserProfileResponse {
|
|
|
5284
5128
|
* @memberof StaffUserProfileResponse
|
|
5285
5129
|
*/
|
|
5286
5130
|
'isLevelCertified'?: boolean;
|
|
5287
|
-
/**
|
|
5288
|
-
*
|
|
5289
|
-
* @type {Array<string>}
|
|
5290
|
-
* @memberof StaffUserProfileResponse
|
|
5291
|
-
*/
|
|
5292
|
-
'paymentMethods'?: Array<string>;
|
|
5293
|
-
/**
|
|
5294
|
-
*
|
|
5295
|
-
* @type {string}
|
|
5296
|
-
* @memberof StaffUserProfileResponse
|
|
5297
|
-
*/
|
|
5298
|
-
'defaultPaymentMethodId'?: string;
|
|
5299
|
-
/**
|
|
5300
|
-
*
|
|
5301
|
-
* @type {boolean}
|
|
5302
|
-
* @memberof StaffUserProfileResponse
|
|
5303
|
-
*/
|
|
5304
|
-
'paymentMethodSetupCompleted': boolean;
|
|
5305
|
-
/**
|
|
5306
|
-
*
|
|
5307
|
-
* @type {string}
|
|
5308
|
-
* @memberof StaffUserProfileResponse
|
|
5309
|
-
*/
|
|
5310
|
-
'setupIntentId'?: string;
|
|
5311
5131
|
/**
|
|
5312
5132
|
*
|
|
5313
5133
|
* @type {Array<string>}
|
|
@@ -5340,6 +5160,12 @@ export interface StaffUserProfileResponse {
|
|
|
5340
5160
|
'sports'?: {
|
|
5341
5161
|
[key: string]: any;
|
|
5342
5162
|
};
|
|
5163
|
+
/**
|
|
5164
|
+
*
|
|
5165
|
+
* @type {string}
|
|
5166
|
+
* @memberof StaffUserProfileResponse
|
|
5167
|
+
*/
|
|
5168
|
+
'stripeCustomerId'?: string;
|
|
5343
5169
|
/**
|
|
5344
5170
|
*
|
|
5345
5171
|
* @type {boolean}
|
|
@@ -6583,6 +6409,12 @@ export interface SubscribeRequestBody {
|
|
|
6583
6409
|
* @memberof SubscribeRequestBody
|
|
6584
6410
|
*/
|
|
6585
6411
|
'priceId': string;
|
|
6412
|
+
/**
|
|
6413
|
+
*
|
|
6414
|
+
* @type {boolean}
|
|
6415
|
+
* @memberof SubscribeRequestBody
|
|
6416
|
+
*/
|
|
6417
|
+
'useDefaultPaymentMethod'?: boolean;
|
|
6586
6418
|
}
|
|
6587
6419
|
/**
|
|
6588
6420
|
*
|
|
@@ -7529,24 +7361,12 @@ export interface UserProfileResponse {
|
|
|
7529
7361
|
* @memberof UserProfileResponse
|
|
7530
7362
|
*/
|
|
7531
7363
|
'isAccountVerified': boolean;
|
|
7532
|
-
/**
|
|
7533
|
-
*
|
|
7534
|
-
* @type {boolean}
|
|
7535
|
-
* @memberof UserProfileResponse
|
|
7536
|
-
*/
|
|
7537
|
-
'isCreditCardRegistered'?: boolean;
|
|
7538
7364
|
/**
|
|
7539
7365
|
*
|
|
7540
7366
|
* @type {Array<ILevelBySports>}
|
|
7541
7367
|
* @memberof UserProfileResponse
|
|
7542
7368
|
*/
|
|
7543
7369
|
'levelBySports'?: Array<ILevelBySports>;
|
|
7544
|
-
/**
|
|
7545
|
-
*
|
|
7546
|
-
* @type {string}
|
|
7547
|
-
* @memberof UserProfileResponse
|
|
7548
|
-
*/
|
|
7549
|
-
'stripeCustomerId'?: string;
|
|
7550
7370
|
/**
|
|
7551
7371
|
*
|
|
7552
7372
|
* @type {string}
|
|
@@ -7619,30 +7439,6 @@ export interface UserProfileResponse {
|
|
|
7619
7439
|
* @memberof UserProfileResponse
|
|
7620
7440
|
*/
|
|
7621
7441
|
'isLevelCertified'?: boolean;
|
|
7622
|
-
/**
|
|
7623
|
-
*
|
|
7624
|
-
* @type {Array<string>}
|
|
7625
|
-
* @memberof UserProfileResponse
|
|
7626
|
-
*/
|
|
7627
|
-
'paymentMethods'?: Array<string>;
|
|
7628
|
-
/**
|
|
7629
|
-
*
|
|
7630
|
-
* @type {string}
|
|
7631
|
-
* @memberof UserProfileResponse
|
|
7632
|
-
*/
|
|
7633
|
-
'defaultPaymentMethodId'?: string;
|
|
7634
|
-
/**
|
|
7635
|
-
*
|
|
7636
|
-
* @type {boolean}
|
|
7637
|
-
* @memberof UserProfileResponse
|
|
7638
|
-
*/
|
|
7639
|
-
'paymentMethodSetupCompleted': boolean;
|
|
7640
|
-
/**
|
|
7641
|
-
*
|
|
7642
|
-
* @type {string}
|
|
7643
|
-
* @memberof UserProfileResponse
|
|
7644
|
-
*/
|
|
7645
|
-
'setupIntentId'?: string;
|
|
7646
7442
|
/**
|
|
7647
7443
|
*
|
|
7648
7444
|
* @type {Array<string>}
|
|
@@ -7675,6 +7471,12 @@ export interface UserProfileResponse {
|
|
|
7675
7471
|
'sports'?: {
|
|
7676
7472
|
[key: string]: any;
|
|
7677
7473
|
};
|
|
7474
|
+
/**
|
|
7475
|
+
*
|
|
7476
|
+
* @type {string}
|
|
7477
|
+
* @memberof UserProfileResponse
|
|
7478
|
+
*/
|
|
7479
|
+
'stripeCustomerId'?: string;
|
|
7678
7480
|
/**
|
|
7679
7481
|
*
|
|
7680
7482
|
* @type {number}
|
|
@@ -7713,6 +7515,12 @@ export interface UserProfileResponse {
|
|
|
7713
7515
|
'stripeLinks'?: {
|
|
7714
7516
|
[key: string]: any;
|
|
7715
7517
|
};
|
|
7518
|
+
/**
|
|
7519
|
+
*
|
|
7520
|
+
* @type {Array<SportResponse>}
|
|
7521
|
+
* @memberof UserProfileResponse
|
|
7522
|
+
*/
|
|
7523
|
+
'verifiedSports'?: Array<SportResponse>;
|
|
7716
7524
|
}
|
|
7717
7525
|
/**
|
|
7718
7526
|
*
|
|
@@ -11698,6 +11506,57 @@ export declare class SportsManagerApi extends BaseAPI {
|
|
|
11698
11506
|
*/
|
|
11699
11507
|
updateSport(requestParameters: SportsManagerApiUpdateSportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse, any>>;
|
|
11700
11508
|
}
|
|
11509
|
+
/**
|
|
11510
|
+
* SportsPublicApi - axios parameter creator
|
|
11511
|
+
* @export
|
|
11512
|
+
*/
|
|
11513
|
+
export declare const SportsPublicApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11514
|
+
/**
|
|
11515
|
+
* Récupère tous les sports vérifiés, accessibles publiquement
|
|
11516
|
+
* @param {*} [options] Override http request option.
|
|
11517
|
+
* @throws {RequiredError}
|
|
11518
|
+
*/
|
|
11519
|
+
getVerifiedSports: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11520
|
+
};
|
|
11521
|
+
/**
|
|
11522
|
+
* SportsPublicApi - functional programming interface
|
|
11523
|
+
* @export
|
|
11524
|
+
*/
|
|
11525
|
+
export declare const SportsPublicApiFp: (configuration?: Configuration) => {
|
|
11526
|
+
/**
|
|
11527
|
+
* Récupère tous les sports vérifiés, accessibles publiquement
|
|
11528
|
+
* @param {*} [options] Override http request option.
|
|
11529
|
+
* @throws {RequiredError}
|
|
11530
|
+
*/
|
|
11531
|
+
getVerifiedSports(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SportResponse>>>;
|
|
11532
|
+
};
|
|
11533
|
+
/**
|
|
11534
|
+
* SportsPublicApi - factory interface
|
|
11535
|
+
* @export
|
|
11536
|
+
*/
|
|
11537
|
+
export declare const SportsPublicApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11538
|
+
/**
|
|
11539
|
+
* Récupère tous les sports vérifiés, accessibles publiquement
|
|
11540
|
+
* @param {*} [options] Override http request option.
|
|
11541
|
+
* @throws {RequiredError}
|
|
11542
|
+
*/
|
|
11543
|
+
getVerifiedSports(options?: RawAxiosRequestConfig): AxiosPromise<Array<SportResponse>>;
|
|
11544
|
+
};
|
|
11545
|
+
/**
|
|
11546
|
+
* SportsPublicApi - object-oriented interface
|
|
11547
|
+
* @export
|
|
11548
|
+
* @class SportsPublicApi
|
|
11549
|
+
* @extends {BaseAPI}
|
|
11550
|
+
*/
|
|
11551
|
+
export declare class SportsPublicApi extends BaseAPI {
|
|
11552
|
+
/**
|
|
11553
|
+
* Récupère tous les sports vérifiés, accessibles publiquement
|
|
11554
|
+
* @param {*} [options] Override http request option.
|
|
11555
|
+
* @throws {RequiredError}
|
|
11556
|
+
* @memberof SportsPublicApi
|
|
11557
|
+
*/
|
|
11558
|
+
getVerifiedSports(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SportResponse[], any>>;
|
|
11559
|
+
}
|
|
11701
11560
|
/**
|
|
11702
11561
|
* SportsStaffApi - axios parameter creator
|
|
11703
11562
|
* @export
|
|
@@ -12239,13 +12098,6 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12239
12098
|
* @throws {RequiredError}
|
|
12240
12099
|
*/
|
|
12241
12100
|
addOrganization: (addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12242
|
-
/**
|
|
12243
|
-
*
|
|
12244
|
-
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
12245
|
-
* @param {*} [options] Override http request option.
|
|
12246
|
-
* @throws {RequiredError}
|
|
12247
|
-
*/
|
|
12248
|
-
addPaymentMethodSetup: (addPaymentMethodRequestBody: AddPaymentMethodRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12249
12101
|
/**
|
|
12250
12102
|
*
|
|
12251
12103
|
* @param {ChangePasswordRequestBody} changePasswordRequestBody
|
|
@@ -12253,13 +12105,6 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12253
12105
|
* @throws {RequiredError}
|
|
12254
12106
|
*/
|
|
12255
12107
|
changePassword: (changePasswordRequestBody: ChangePasswordRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12256
|
-
/**
|
|
12257
|
-
*
|
|
12258
|
-
* @param {ConfirmPaymentMethodRequestBody} confirmPaymentMethodRequestBody
|
|
12259
|
-
* @param {*} [options] Override http request option.
|
|
12260
|
-
* @throws {RequiredError}
|
|
12261
|
-
*/
|
|
12262
|
-
confirmPaymentMethodSetup: (confirmPaymentMethodRequestBody: ConfirmPaymentMethodRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12263
12108
|
/**
|
|
12264
12109
|
*
|
|
12265
12110
|
* @param {*} [options] Override http request option.
|
|
@@ -12438,13 +12283,6 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
12438
12283
|
* @throws {RequiredError}
|
|
12439
12284
|
*/
|
|
12440
12285
|
resetPassword: (resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12441
|
-
/**
|
|
12442
|
-
*
|
|
12443
|
-
* @param {SetupPaymentMethodRequestBody} setupPaymentMethodRequestBody
|
|
12444
|
-
* @param {*} [options] Override http request option.
|
|
12445
|
-
* @throws {RequiredError}
|
|
12446
|
-
*/
|
|
12447
|
-
setupOffSessionPaymentMethod: (setupPaymentMethodRequestBody: SetupPaymentMethodRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12448
12286
|
/**
|
|
12449
12287
|
*
|
|
12450
12288
|
* @param {GoogleAuthRequestBody} googleAuthRequestBody
|
|
@@ -12521,13 +12359,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
12521
12359
|
* @throws {RequiredError}
|
|
12522
12360
|
*/
|
|
12523
12361
|
addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
12524
|
-
/**
|
|
12525
|
-
*
|
|
12526
|
-
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
12527
|
-
* @param {*} [options] Override http request option.
|
|
12528
|
-
* @throws {RequiredError}
|
|
12529
|
-
*/
|
|
12530
|
-
addPaymentMethodSetup(addPaymentMethodRequestBody: AddPaymentMethodRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentMethodSetupResponse>>;
|
|
12531
12362
|
/**
|
|
12532
12363
|
*
|
|
12533
12364
|
* @param {ChangePasswordRequestBody} changePasswordRequestBody
|
|
@@ -12535,13 +12366,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
12535
12366
|
* @throws {RequiredError}
|
|
12536
12367
|
*/
|
|
12537
12368
|
changePassword(changePasswordRequestBody: ChangePasswordRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangePasswordResponse>>;
|
|
12538
|
-
/**
|
|
12539
|
-
*
|
|
12540
|
-
* @param {ConfirmPaymentMethodRequestBody} confirmPaymentMethodRequestBody
|
|
12541
|
-
* @param {*} [options] Override http request option.
|
|
12542
|
-
* @throws {RequiredError}
|
|
12543
|
-
*/
|
|
12544
|
-
confirmPaymentMethodSetup(confirmPaymentMethodRequestBody: ConfirmPaymentMethodRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfirmPaymentMethodResponse>>;
|
|
12545
12369
|
/**
|
|
12546
12370
|
*
|
|
12547
12371
|
* @param {*} [options] Override http request option.
|
|
@@ -12728,13 +12552,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
12728
12552
|
* @throws {RequiredError}
|
|
12729
12553
|
*/
|
|
12730
12554
|
resetPassword(resetPasswordRequest: ResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
12731
|
-
/**
|
|
12732
|
-
*
|
|
12733
|
-
* @param {SetupPaymentMethodRequestBody} setupPaymentMethodRequestBody
|
|
12734
|
-
* @param {*} [options] Override http request option.
|
|
12735
|
-
* @throws {RequiredError}
|
|
12736
|
-
*/
|
|
12737
|
-
setupOffSessionPaymentMethod(setupPaymentMethodRequestBody: SetupPaymentMethodRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupPaymentMethodResponse>>;
|
|
12738
12555
|
/**
|
|
12739
12556
|
*
|
|
12740
12557
|
* @param {GoogleAuthRequestBody} googleAuthRequestBody
|
|
@@ -12811,13 +12628,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
12811
12628
|
* @throws {RequiredError}
|
|
12812
12629
|
*/
|
|
12813
12630
|
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
12814
|
-
/**
|
|
12815
|
-
*
|
|
12816
|
-
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
12817
|
-
* @param {*} [options] Override http request option.
|
|
12818
|
-
* @throws {RequiredError}
|
|
12819
|
-
*/
|
|
12820
|
-
addPaymentMethodSetup(requestParameters: UsersApiAddPaymentMethodSetupRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentMethodSetupResponse>;
|
|
12821
12631
|
/**
|
|
12822
12632
|
*
|
|
12823
12633
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -12825,13 +12635,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
12825
12635
|
* @throws {RequiredError}
|
|
12826
12636
|
*/
|
|
12827
12637
|
changePassword(requestParameters: UsersApiChangePasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<ChangePasswordResponse>;
|
|
12828
|
-
/**
|
|
12829
|
-
*
|
|
12830
|
-
* @param {UsersApiConfirmPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
12831
|
-
* @param {*} [options] Override http request option.
|
|
12832
|
-
* @throws {RequiredError}
|
|
12833
|
-
*/
|
|
12834
|
-
confirmPaymentMethodSetup(requestParameters: UsersApiConfirmPaymentMethodSetupRequest, options?: RawAxiosRequestConfig): AxiosPromise<ConfirmPaymentMethodResponse>;
|
|
12835
12638
|
/**
|
|
12836
12639
|
*
|
|
12837
12640
|
* @param {*} [options] Override http request option.
|
|
@@ -13000,13 +12803,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13000
12803
|
* @throws {RequiredError}
|
|
13001
12804
|
*/
|
|
13002
12805
|
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
13003
|
-
/**
|
|
13004
|
-
*
|
|
13005
|
-
* @param {UsersApiSetupOffSessionPaymentMethodRequest} requestParameters Request parameters.
|
|
13006
|
-
* @param {*} [options] Override http request option.
|
|
13007
|
-
* @throws {RequiredError}
|
|
13008
|
-
*/
|
|
13009
|
-
setupOffSessionPaymentMethod(requestParameters: UsersApiSetupOffSessionPaymentMethodRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetupPaymentMethodResponse>;
|
|
13010
12806
|
/**
|
|
13011
12807
|
*
|
|
13012
12808
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|
|
@@ -13096,19 +12892,6 @@ export interface UsersApiAddOrganizationRequest {
|
|
|
13096
12892
|
*/
|
|
13097
12893
|
readonly addOrganizationRequest: AddOrganizationRequest;
|
|
13098
12894
|
}
|
|
13099
|
-
/**
|
|
13100
|
-
* Request parameters for addPaymentMethodSetup operation in UsersApi.
|
|
13101
|
-
* @export
|
|
13102
|
-
* @interface UsersApiAddPaymentMethodSetupRequest
|
|
13103
|
-
*/
|
|
13104
|
-
export interface UsersApiAddPaymentMethodSetupRequest {
|
|
13105
|
-
/**
|
|
13106
|
-
*
|
|
13107
|
-
* @type {AddPaymentMethodRequestBody}
|
|
13108
|
-
* @memberof UsersApiAddPaymentMethodSetup
|
|
13109
|
-
*/
|
|
13110
|
-
readonly addPaymentMethodRequestBody: AddPaymentMethodRequestBody;
|
|
13111
|
-
}
|
|
13112
12895
|
/**
|
|
13113
12896
|
* Request parameters for changePassword operation in UsersApi.
|
|
13114
12897
|
* @export
|
|
@@ -13122,19 +12905,6 @@ export interface UsersApiChangePasswordRequest {
|
|
|
13122
12905
|
*/
|
|
13123
12906
|
readonly changePasswordRequestBody: ChangePasswordRequestBody;
|
|
13124
12907
|
}
|
|
13125
|
-
/**
|
|
13126
|
-
* Request parameters for confirmPaymentMethodSetup operation in UsersApi.
|
|
13127
|
-
* @export
|
|
13128
|
-
* @interface UsersApiConfirmPaymentMethodSetupRequest
|
|
13129
|
-
*/
|
|
13130
|
-
export interface UsersApiConfirmPaymentMethodSetupRequest {
|
|
13131
|
-
/**
|
|
13132
|
-
*
|
|
13133
|
-
* @type {ConfirmPaymentMethodRequestBody}
|
|
13134
|
-
* @memberof UsersApiConfirmPaymentMethodSetup
|
|
13135
|
-
*/
|
|
13136
|
-
readonly confirmPaymentMethodRequestBody: ConfirmPaymentMethodRequestBody;
|
|
13137
|
-
}
|
|
13138
12908
|
/**
|
|
13139
12909
|
* Request parameters for getBookingDetail operation in UsersApi.
|
|
13140
12910
|
* @export
|
|
@@ -13451,19 +13221,6 @@ export interface UsersApiResetPasswordRequest {
|
|
|
13451
13221
|
*/
|
|
13452
13222
|
readonly resetPasswordRequest: ResetPasswordRequest;
|
|
13453
13223
|
}
|
|
13454
|
-
/**
|
|
13455
|
-
* Request parameters for setupOffSessionPaymentMethod operation in UsersApi.
|
|
13456
|
-
* @export
|
|
13457
|
-
* @interface UsersApiSetupOffSessionPaymentMethodRequest
|
|
13458
|
-
*/
|
|
13459
|
-
export interface UsersApiSetupOffSessionPaymentMethodRequest {
|
|
13460
|
-
/**
|
|
13461
|
-
*
|
|
13462
|
-
* @type {SetupPaymentMethodRequestBody}
|
|
13463
|
-
* @memberof UsersApiSetupOffSessionPaymentMethod
|
|
13464
|
-
*/
|
|
13465
|
-
readonly setupPaymentMethodRequestBody: SetupPaymentMethodRequestBody;
|
|
13466
|
-
}
|
|
13467
13224
|
/**
|
|
13468
13225
|
* Request parameters for signInOrSignUpWithGoogle operation in UsersApi.
|
|
13469
13226
|
* @export
|
|
@@ -13586,14 +13343,6 @@ export declare class UsersApi extends BaseAPI {
|
|
|
13586
13343
|
* @memberof UsersApi
|
|
13587
13344
|
*/
|
|
13588
13345
|
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any>>;
|
|
13589
|
-
/**
|
|
13590
|
-
*
|
|
13591
|
-
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
13592
|
-
* @param {*} [options] Override http request option.
|
|
13593
|
-
* @throws {RequiredError}
|
|
13594
|
-
* @memberof UsersApi
|
|
13595
|
-
*/
|
|
13596
|
-
addPaymentMethodSetup(requestParameters: UsersApiAddPaymentMethodSetupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodSetupResponse, any>>;
|
|
13597
13346
|
/**
|
|
13598
13347
|
*
|
|
13599
13348
|
* @param {UsersApiChangePasswordRequest} requestParameters Request parameters.
|
|
@@ -13602,14 +13351,6 @@ export declare class UsersApi extends BaseAPI {
|
|
|
13602
13351
|
* @memberof UsersApi
|
|
13603
13352
|
*/
|
|
13604
13353
|
changePassword(requestParameters: UsersApiChangePasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangePasswordResponse, any>>;
|
|
13605
|
-
/**
|
|
13606
|
-
*
|
|
13607
|
-
* @param {UsersApiConfirmPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
13608
|
-
* @param {*} [options] Override http request option.
|
|
13609
|
-
* @throws {RequiredError}
|
|
13610
|
-
* @memberof UsersApi
|
|
13611
|
-
*/
|
|
13612
|
-
confirmPaymentMethodSetup(requestParameters: UsersApiConfirmPaymentMethodSetupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfirmPaymentMethodResponse, any>>;
|
|
13613
13354
|
/**
|
|
13614
13355
|
*
|
|
13615
13356
|
* @param {*} [options] Override http request option.
|
|
@@ -13802,14 +13543,6 @@ export declare class UsersApi extends BaseAPI {
|
|
|
13802
13543
|
* @memberof UsersApi
|
|
13803
13544
|
*/
|
|
13804
13545
|
resetPassword(requestParameters: UsersApiResetPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any>>;
|
|
13805
|
-
/**
|
|
13806
|
-
*
|
|
13807
|
-
* @param {UsersApiSetupOffSessionPaymentMethodRequest} requestParameters Request parameters.
|
|
13808
|
-
* @param {*} [options] Override http request option.
|
|
13809
|
-
* @throws {RequiredError}
|
|
13810
|
-
* @memberof UsersApi
|
|
13811
|
-
*/
|
|
13812
|
-
setupOffSessionPaymentMethod(requestParameters: UsersApiSetupOffSessionPaymentMethodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SetupPaymentMethodResponse, any>>;
|
|
13813
13546
|
/**
|
|
13814
13547
|
*
|
|
13815
13548
|
* @param {UsersApiSignInOrSignUpWithGoogleRequest} requestParameters Request parameters.
|