@tennac-booking/sdk 1.0.62 → 1.0.64
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 +4 -1
- package/README.md +9 -3
- package/api.ts +514 -95
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +400 -96
- package/dist/api.js +189 -5
- 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 +400 -96
- package/dist/esm/api.js +188 -4
- 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/AddOrganizationRequest.md +22 -0
- package/docs/ClubsApi.md +46 -0
- package/docs/GetClubsWithVerificationDomains200ResponseInner.md +26 -0
- package/docs/IUserAttributes.md +10 -0
- package/docs/IUserAttributesOrganizationsInner.md +28 -0
- package/docs/RegisterRequestBody.md +6 -0
- package/docs/{UpdateUserRequestBodyLocation.md → RegisterRequestBodyLocation.md} +3 -3
- package/docs/StaffUserProfileResponse.md +10 -0
- package/docs/UpdateUserRequestBody.md +1 -1
- package/docs/UserProfileResponse.md +10 -0
- package/docs/UsersApi.md +104 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/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.63
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -63,6 +63,25 @@ export interface AddClubMemberRequest {
|
|
|
63
63
|
*/
|
|
64
64
|
'rights'?: Array<string>;
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @export
|
|
69
|
+
* @interface AddOrganizationRequest
|
|
70
|
+
*/
|
|
71
|
+
export interface AddOrganizationRequest {
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof AddOrganizationRequest
|
|
76
|
+
*/
|
|
77
|
+
'organizationEmail'?: string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof AddOrganizationRequest
|
|
82
|
+
*/
|
|
83
|
+
'organizationId'?: string;
|
|
84
|
+
}
|
|
66
85
|
/**
|
|
67
86
|
*
|
|
68
87
|
* @export
|
|
@@ -2406,6 +2425,37 @@ export interface GetClubUsersById200Response {
|
|
|
2406
2425
|
*/
|
|
2407
2426
|
'users': Array<any>;
|
|
2408
2427
|
}
|
|
2428
|
+
/**
|
|
2429
|
+
*
|
|
2430
|
+
* @export
|
|
2431
|
+
* @interface GetClubsWithVerificationDomains200ResponseInner
|
|
2432
|
+
*/
|
|
2433
|
+
export interface GetClubsWithVerificationDomains200ResponseInner {
|
|
2434
|
+
/**
|
|
2435
|
+
*
|
|
2436
|
+
* @type {Array<string>}
|
|
2437
|
+
* @memberof GetClubsWithVerificationDomains200ResponseInner
|
|
2438
|
+
*/
|
|
2439
|
+
'allowedEmailDomains': Array<string>;
|
|
2440
|
+
/**
|
|
2441
|
+
*
|
|
2442
|
+
* @type {string}
|
|
2443
|
+
* @memberof GetClubsWithVerificationDomains200ResponseInner
|
|
2444
|
+
*/
|
|
2445
|
+
'address'?: string | null;
|
|
2446
|
+
/**
|
|
2447
|
+
*
|
|
2448
|
+
* @type {string}
|
|
2449
|
+
* @memberof GetClubsWithVerificationDomains200ResponseInner
|
|
2450
|
+
*/
|
|
2451
|
+
'name': string;
|
|
2452
|
+
/**
|
|
2453
|
+
*
|
|
2454
|
+
* @type {string}
|
|
2455
|
+
* @memberof GetClubsWithVerificationDomains200ResponseInner
|
|
2456
|
+
*/
|
|
2457
|
+
'clubId': string;
|
|
2458
|
+
}
|
|
2409
2459
|
/**
|
|
2410
2460
|
*
|
|
2411
2461
|
* @export
|
|
@@ -2775,6 +2825,36 @@ export interface IUserAttributes {
|
|
|
2775
2825
|
* @memberof IUserAttributes
|
|
2776
2826
|
*/
|
|
2777
2827
|
'profilePicture'?: string;
|
|
2828
|
+
/**
|
|
2829
|
+
*
|
|
2830
|
+
* @type {string}
|
|
2831
|
+
* @memberof IUserAttributes
|
|
2832
|
+
*/
|
|
2833
|
+
'resetPasswordToken'?: string;
|
|
2834
|
+
/**
|
|
2835
|
+
*
|
|
2836
|
+
* @type {string}
|
|
2837
|
+
* @memberof IUserAttributes
|
|
2838
|
+
*/
|
|
2839
|
+
'resetPasswordExpires'?: string;
|
|
2840
|
+
/**
|
|
2841
|
+
*
|
|
2842
|
+
* @type {string}
|
|
2843
|
+
* @memberof IUserAttributes
|
|
2844
|
+
*/
|
|
2845
|
+
'emailVerificationToken'?: string;
|
|
2846
|
+
/**
|
|
2847
|
+
*
|
|
2848
|
+
* @type {string}
|
|
2849
|
+
* @memberof IUserAttributes
|
|
2850
|
+
*/
|
|
2851
|
+
'emailVerificationExpires'?: string;
|
|
2852
|
+
/**
|
|
2853
|
+
*
|
|
2854
|
+
* @type {Array<IUserAttributesOrganizationsInner>}
|
|
2855
|
+
* @memberof IUserAttributes
|
|
2856
|
+
*/
|
|
2857
|
+
'organizations'?: Array<IUserAttributesOrganizationsInner>;
|
|
2778
2858
|
/**
|
|
2779
2859
|
*
|
|
2780
2860
|
* @type {boolean}
|
|
@@ -2856,6 +2936,43 @@ export interface IUserAttributes {
|
|
|
2856
2936
|
[key: string]: any;
|
|
2857
2937
|
};
|
|
2858
2938
|
}
|
|
2939
|
+
/**
|
|
2940
|
+
*
|
|
2941
|
+
* @export
|
|
2942
|
+
* @interface IUserAttributesOrganizationsInner
|
|
2943
|
+
*/
|
|
2944
|
+
export interface IUserAttributesOrganizationsInner {
|
|
2945
|
+
/**
|
|
2946
|
+
*
|
|
2947
|
+
* @type {string}
|
|
2948
|
+
* @memberof IUserAttributesOrganizationsInner
|
|
2949
|
+
*/
|
|
2950
|
+
'verificationExpires'?: string;
|
|
2951
|
+
/**
|
|
2952
|
+
*
|
|
2953
|
+
* @type {string}
|
|
2954
|
+
* @memberof IUserAttributesOrganizationsInner
|
|
2955
|
+
*/
|
|
2956
|
+
'verificationToken'?: string;
|
|
2957
|
+
/**
|
|
2958
|
+
*
|
|
2959
|
+
* @type {boolean}
|
|
2960
|
+
* @memberof IUserAttributesOrganizationsInner
|
|
2961
|
+
*/
|
|
2962
|
+
'verified'?: boolean;
|
|
2963
|
+
/**
|
|
2964
|
+
*
|
|
2965
|
+
* @type {string}
|
|
2966
|
+
* @memberof IUserAttributesOrganizationsInner
|
|
2967
|
+
*/
|
|
2968
|
+
'orgEmail': string;
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @type {string}
|
|
2972
|
+
* @memberof IUserAttributesOrganizationsInner
|
|
2973
|
+
*/
|
|
2974
|
+
'clubId': string;
|
|
2975
|
+
}
|
|
2859
2976
|
/**
|
|
2860
2977
|
*
|
|
2861
2978
|
* @export
|
|
@@ -3926,7 +4043,118 @@ export interface RegisterRequestBody {
|
|
|
3926
4043
|
* @memberof RegisterRequestBody
|
|
3927
4044
|
*/
|
|
3928
4045
|
'profilePicture'?: string;
|
|
4046
|
+
/**
|
|
4047
|
+
*
|
|
4048
|
+
* @type {RegisterRequestBodyLocation}
|
|
4049
|
+
* @memberof RegisterRequestBody
|
|
4050
|
+
*/
|
|
4051
|
+
'location'?: RegisterRequestBodyLocation;
|
|
4052
|
+
/**
|
|
4053
|
+
*
|
|
4054
|
+
* @type {string}
|
|
4055
|
+
* @memberof RegisterRequestBody
|
|
4056
|
+
*/
|
|
4057
|
+
'organizationId'?: string;
|
|
4058
|
+
/**
|
|
4059
|
+
*
|
|
4060
|
+
* @type {string}
|
|
4061
|
+
* @memberof RegisterRequestBody
|
|
4062
|
+
*/
|
|
4063
|
+
'organizationEmail'?: string;
|
|
4064
|
+
}
|
|
4065
|
+
/**
|
|
4066
|
+
*
|
|
4067
|
+
* @export
|
|
4068
|
+
* @interface RegisterRequestBodyLocation
|
|
4069
|
+
*/
|
|
4070
|
+
export interface RegisterRequestBodyLocation {
|
|
4071
|
+
/**
|
|
4072
|
+
*
|
|
4073
|
+
* @type {Array<number>}
|
|
4074
|
+
* @memberof RegisterRequestBodyLocation
|
|
4075
|
+
*/
|
|
4076
|
+
'coordinates': Array<number>;
|
|
4077
|
+
/**
|
|
4078
|
+
*
|
|
4079
|
+
* @type {string}
|
|
4080
|
+
* @memberof RegisterRequestBodyLocation
|
|
4081
|
+
*/
|
|
4082
|
+
'mapboxId'?: string;
|
|
4083
|
+
/**
|
|
4084
|
+
*
|
|
4085
|
+
* @type {Array<string>}
|
|
4086
|
+
* @memberof RegisterRequestBodyLocation
|
|
4087
|
+
*/
|
|
4088
|
+
'mapboxPlaceType'?: Array<string>;
|
|
4089
|
+
/**
|
|
4090
|
+
*
|
|
4091
|
+
* @type {string}
|
|
4092
|
+
* @memberof RegisterRequestBodyLocation
|
|
4093
|
+
*/
|
|
4094
|
+
'mapboxPlaceName'?: string;
|
|
4095
|
+
/**
|
|
4096
|
+
*
|
|
4097
|
+
* @type {string}
|
|
4098
|
+
* @memberof RegisterRequestBodyLocation
|
|
4099
|
+
*/
|
|
4100
|
+
'mapboxAddress'?: string;
|
|
4101
|
+
/**
|
|
4102
|
+
*
|
|
4103
|
+
* @type {Array<{ [key: string]: any; }>}
|
|
4104
|
+
* @memberof RegisterRequestBodyLocation
|
|
4105
|
+
*/
|
|
4106
|
+
'mapboxContext'?: Array<{
|
|
4107
|
+
[key: string]: any;
|
|
4108
|
+
}>;
|
|
4109
|
+
/**
|
|
4110
|
+
* Construct a type with a set of properties K of type T
|
|
4111
|
+
* @type {{ [key: string]: object; }}
|
|
4112
|
+
* @memberof RegisterRequestBodyLocation
|
|
4113
|
+
*/
|
|
4114
|
+
'mapboxRaw'?: {
|
|
4115
|
+
[key: string]: object;
|
|
4116
|
+
};
|
|
4117
|
+
/**
|
|
4118
|
+
*
|
|
4119
|
+
* @type {string}
|
|
4120
|
+
* @memberof RegisterRequestBodyLocation
|
|
4121
|
+
*/
|
|
4122
|
+
'city'?: string;
|
|
4123
|
+
/**
|
|
4124
|
+
*
|
|
4125
|
+
* @type {string}
|
|
4126
|
+
* @memberof RegisterRequestBodyLocation
|
|
4127
|
+
*/
|
|
4128
|
+
'country'?: string;
|
|
4129
|
+
/**
|
|
4130
|
+
*
|
|
4131
|
+
* @type {string}
|
|
4132
|
+
* @memberof RegisterRequestBodyLocation
|
|
4133
|
+
*/
|
|
4134
|
+
'postalCode'?: string;
|
|
4135
|
+
/**
|
|
4136
|
+
*
|
|
4137
|
+
* @type {string}
|
|
4138
|
+
* @memberof RegisterRequestBodyLocation
|
|
4139
|
+
*/
|
|
4140
|
+
'state'?: string;
|
|
4141
|
+
/**
|
|
4142
|
+
*
|
|
4143
|
+
* @type {string}
|
|
4144
|
+
* @memberof RegisterRequestBodyLocation
|
|
4145
|
+
*/
|
|
4146
|
+
'address'?: string;
|
|
4147
|
+
/**
|
|
4148
|
+
*
|
|
4149
|
+
* @type {string}
|
|
4150
|
+
* @memberof RegisterRequestBodyLocation
|
|
4151
|
+
*/
|
|
4152
|
+
'type'?: RegisterRequestBodyLocationTypeEnum;
|
|
3929
4153
|
}
|
|
4154
|
+
export declare const RegisterRequestBodyLocationTypeEnum: {
|
|
4155
|
+
readonly Point: "Point";
|
|
4156
|
+
};
|
|
4157
|
+
export type RegisterRequestBodyLocationTypeEnum = typeof RegisterRequestBodyLocationTypeEnum[keyof typeof RegisterRequestBodyLocationTypeEnum];
|
|
3930
4158
|
/**
|
|
3931
4159
|
*
|
|
3932
4160
|
* @export
|
|
@@ -4272,6 +4500,36 @@ export interface StaffUserProfileResponse {
|
|
|
4272
4500
|
* @memberof StaffUserProfileResponse
|
|
4273
4501
|
*/
|
|
4274
4502
|
'profilePicture'?: string;
|
|
4503
|
+
/**
|
|
4504
|
+
*
|
|
4505
|
+
* @type {string}
|
|
4506
|
+
* @memberof StaffUserProfileResponse
|
|
4507
|
+
*/
|
|
4508
|
+
'resetPasswordToken'?: string;
|
|
4509
|
+
/**
|
|
4510
|
+
*
|
|
4511
|
+
* @type {string}
|
|
4512
|
+
* @memberof StaffUserProfileResponse
|
|
4513
|
+
*/
|
|
4514
|
+
'resetPasswordExpires'?: string;
|
|
4515
|
+
/**
|
|
4516
|
+
*
|
|
4517
|
+
* @type {string}
|
|
4518
|
+
* @memberof StaffUserProfileResponse
|
|
4519
|
+
*/
|
|
4520
|
+
'emailVerificationToken'?: string;
|
|
4521
|
+
/**
|
|
4522
|
+
*
|
|
4523
|
+
* @type {string}
|
|
4524
|
+
* @memberof StaffUserProfileResponse
|
|
4525
|
+
*/
|
|
4526
|
+
'emailVerificationExpires'?: string;
|
|
4527
|
+
/**
|
|
4528
|
+
*
|
|
4529
|
+
* @type {Array<IUserAttributesOrganizationsInner>}
|
|
4530
|
+
* @memberof StaffUserProfileResponse
|
|
4531
|
+
*/
|
|
4532
|
+
'organizations'?: Array<IUserAttributesOrganizationsInner>;
|
|
4275
4533
|
/**
|
|
4276
4534
|
*
|
|
4277
4535
|
* @type {boolean}
|
|
@@ -6029,10 +6287,10 @@ export interface UpdateUserRequestBody {
|
|
|
6029
6287
|
'description'?: string;
|
|
6030
6288
|
/**
|
|
6031
6289
|
*
|
|
6032
|
-
* @type {
|
|
6290
|
+
* @type {RegisterRequestBodyLocation}
|
|
6033
6291
|
* @memberof UpdateUserRequestBody
|
|
6034
6292
|
*/
|
|
6035
|
-
'location'?:
|
|
6293
|
+
'location'?: RegisterRequestBodyLocation;
|
|
6036
6294
|
}
|
|
6037
6295
|
/**
|
|
6038
6296
|
*
|
|
@@ -6053,99 +6311,6 @@ export interface UpdateUserRequestBodyLevelBySportsInner {
|
|
|
6053
6311
|
*/
|
|
6054
6312
|
'sport': string;
|
|
6055
6313
|
}
|
|
6056
|
-
/**
|
|
6057
|
-
*
|
|
6058
|
-
* @export
|
|
6059
|
-
* @interface UpdateUserRequestBodyLocation
|
|
6060
|
-
*/
|
|
6061
|
-
export interface UpdateUserRequestBodyLocation {
|
|
6062
|
-
/**
|
|
6063
|
-
*
|
|
6064
|
-
* @type {Array<number>}
|
|
6065
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6066
|
-
*/
|
|
6067
|
-
'coordinates': Array<number>;
|
|
6068
|
-
/**
|
|
6069
|
-
*
|
|
6070
|
-
* @type {string}
|
|
6071
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6072
|
-
*/
|
|
6073
|
-
'mapboxId'?: string;
|
|
6074
|
-
/**
|
|
6075
|
-
*
|
|
6076
|
-
* @type {Array<string>}
|
|
6077
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6078
|
-
*/
|
|
6079
|
-
'mapboxPlaceType'?: Array<string>;
|
|
6080
|
-
/**
|
|
6081
|
-
*
|
|
6082
|
-
* @type {string}
|
|
6083
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6084
|
-
*/
|
|
6085
|
-
'mapboxPlaceName'?: string;
|
|
6086
|
-
/**
|
|
6087
|
-
*
|
|
6088
|
-
* @type {string}
|
|
6089
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6090
|
-
*/
|
|
6091
|
-
'mapboxAddress'?: string;
|
|
6092
|
-
/**
|
|
6093
|
-
*
|
|
6094
|
-
* @type {Array<{ [key: string]: any; }>}
|
|
6095
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6096
|
-
*/
|
|
6097
|
-
'mapboxContext'?: Array<{
|
|
6098
|
-
[key: string]: any;
|
|
6099
|
-
}>;
|
|
6100
|
-
/**
|
|
6101
|
-
* Construct a type with a set of properties K of type T
|
|
6102
|
-
* @type {{ [key: string]: object; }}
|
|
6103
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6104
|
-
*/
|
|
6105
|
-
'mapboxRaw'?: {
|
|
6106
|
-
[key: string]: object;
|
|
6107
|
-
};
|
|
6108
|
-
/**
|
|
6109
|
-
*
|
|
6110
|
-
* @type {string}
|
|
6111
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6112
|
-
*/
|
|
6113
|
-
'city'?: string;
|
|
6114
|
-
/**
|
|
6115
|
-
*
|
|
6116
|
-
* @type {string}
|
|
6117
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6118
|
-
*/
|
|
6119
|
-
'country'?: string;
|
|
6120
|
-
/**
|
|
6121
|
-
*
|
|
6122
|
-
* @type {string}
|
|
6123
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6124
|
-
*/
|
|
6125
|
-
'postalCode'?: string;
|
|
6126
|
-
/**
|
|
6127
|
-
*
|
|
6128
|
-
* @type {string}
|
|
6129
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6130
|
-
*/
|
|
6131
|
-
'state'?: string;
|
|
6132
|
-
/**
|
|
6133
|
-
*
|
|
6134
|
-
* @type {string}
|
|
6135
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6136
|
-
*/
|
|
6137
|
-
'address'?: string;
|
|
6138
|
-
/**
|
|
6139
|
-
*
|
|
6140
|
-
* @type {string}
|
|
6141
|
-
* @memberof UpdateUserRequestBodyLocation
|
|
6142
|
-
*/
|
|
6143
|
-
'type'?: UpdateUserRequestBodyLocationTypeEnum;
|
|
6144
|
-
}
|
|
6145
|
-
export declare const UpdateUserRequestBodyLocationTypeEnum: {
|
|
6146
|
-
readonly Point: "Point";
|
|
6147
|
-
};
|
|
6148
|
-
export type UpdateUserRequestBodyLocationTypeEnum = typeof UpdateUserRequestBodyLocationTypeEnum[keyof typeof UpdateUserRequestBodyLocationTypeEnum];
|
|
6149
6314
|
/**
|
|
6150
6315
|
*
|
|
6151
6316
|
* @export
|
|
@@ -6433,6 +6598,36 @@ export interface UserProfileResponse {
|
|
|
6433
6598
|
* @memberof UserProfileResponse
|
|
6434
6599
|
*/
|
|
6435
6600
|
'profilePicture'?: string;
|
|
6601
|
+
/**
|
|
6602
|
+
*
|
|
6603
|
+
* @type {string}
|
|
6604
|
+
* @memberof UserProfileResponse
|
|
6605
|
+
*/
|
|
6606
|
+
'resetPasswordToken'?: string;
|
|
6607
|
+
/**
|
|
6608
|
+
*
|
|
6609
|
+
* @type {string}
|
|
6610
|
+
* @memberof UserProfileResponse
|
|
6611
|
+
*/
|
|
6612
|
+
'resetPasswordExpires'?: string;
|
|
6613
|
+
/**
|
|
6614
|
+
*
|
|
6615
|
+
* @type {string}
|
|
6616
|
+
* @memberof UserProfileResponse
|
|
6617
|
+
*/
|
|
6618
|
+
'emailVerificationToken'?: string;
|
|
6619
|
+
/**
|
|
6620
|
+
*
|
|
6621
|
+
* @type {string}
|
|
6622
|
+
* @memberof UserProfileResponse
|
|
6623
|
+
*/
|
|
6624
|
+
'emailVerificationExpires'?: string;
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @type {Array<IUserAttributesOrganizationsInner>}
|
|
6628
|
+
* @memberof UserProfileResponse
|
|
6629
|
+
*/
|
|
6630
|
+
'organizations'?: Array<IUserAttributesOrganizationsInner>;
|
|
6436
6631
|
/**
|
|
6437
6632
|
*
|
|
6438
6633
|
* @type {boolean}
|
|
@@ -8153,6 +8348,12 @@ export declare const ClubsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8153
8348
|
* @throws {RequiredError}
|
|
8154
8349
|
*/
|
|
8155
8350
|
getClubUsersById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8351
|
+
/**
|
|
8352
|
+
* Récupère la liste des clubs qui ont des domaines d\'email pour vérification Accessible sans token
|
|
8353
|
+
* @param {*} [options] Override http request option.
|
|
8354
|
+
* @throws {RequiredError}
|
|
8355
|
+
*/
|
|
8356
|
+
getClubsWithVerificationDomains: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8156
8357
|
/**
|
|
8157
8358
|
*
|
|
8158
8359
|
* @param {string} id
|
|
@@ -8237,6 +8438,12 @@ export declare const ClubsApiFp: (configuration?: Configuration) => {
|
|
|
8237
8438
|
* @throws {RequiredError}
|
|
8238
8439
|
*/
|
|
8239
8440
|
getClubUsersById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClubUsersById200Response>>;
|
|
8441
|
+
/**
|
|
8442
|
+
* Récupère la liste des clubs qui ont des domaines d\'email pour vérification Accessible sans token
|
|
8443
|
+
* @param {*} [options] Override http request option.
|
|
8444
|
+
* @throws {RequiredError}
|
|
8445
|
+
*/
|
|
8446
|
+
getClubsWithVerificationDomains(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetClubsWithVerificationDomains200ResponseInner>>>;
|
|
8240
8447
|
/**
|
|
8241
8448
|
*
|
|
8242
8449
|
* @param {string} id
|
|
@@ -8318,6 +8525,12 @@ export declare const ClubsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8318
8525
|
* @throws {RequiredError}
|
|
8319
8526
|
*/
|
|
8320
8527
|
getClubUsersById(requestParameters: ClubsApiGetClubUsersByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetClubUsersById200Response>;
|
|
8528
|
+
/**
|
|
8529
|
+
* Récupère la liste des clubs qui ont des domaines d\'email pour vérification Accessible sans token
|
|
8530
|
+
* @param {*} [options] Override http request option.
|
|
8531
|
+
* @throws {RequiredError}
|
|
8532
|
+
*/
|
|
8533
|
+
getClubsWithVerificationDomains(options?: RawAxiosRequestConfig): AxiosPromise<Array<GetClubsWithVerificationDomains200ResponseInner>>;
|
|
8321
8534
|
/**
|
|
8322
8535
|
*
|
|
8323
8536
|
* @param {ClubsApiGetCourtsByClubAndSportByIdRequest} requestParameters Request parameters.
|
|
@@ -8535,6 +8748,13 @@ export declare class ClubsApi extends BaseAPI {
|
|
|
8535
8748
|
* @memberof ClubsApi
|
|
8536
8749
|
*/
|
|
8537
8750
|
getClubUsersById(requestParameters: ClubsApiGetClubUsersByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubUsersById200Response, any, {}>>;
|
|
8751
|
+
/**
|
|
8752
|
+
* Récupère la liste des clubs qui ont des domaines d\'email pour vérification Accessible sans token
|
|
8753
|
+
* @param {*} [options] Override http request option.
|
|
8754
|
+
* @throws {RequiredError}
|
|
8755
|
+
* @memberof ClubsApi
|
|
8756
|
+
*/
|
|
8757
|
+
getClubsWithVerificationDomains(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClubsWithVerificationDomains200ResponseInner[], any, {}>>;
|
|
8538
8758
|
/**
|
|
8539
8759
|
*
|
|
8540
8760
|
* @param {ClubsApiGetCourtsByClubAndSportByIdRequest} requestParameters Request parameters.
|
|
@@ -10708,6 +10928,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10708
10928
|
* @throws {RequiredError}
|
|
10709
10929
|
*/
|
|
10710
10930
|
addFavoritePlayer: (favoritePlayerRequestBody: FavoritePlayerRequestBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10931
|
+
/**
|
|
10932
|
+
*
|
|
10933
|
+
* @param {AddOrganizationRequest} addOrganizationRequest
|
|
10934
|
+
* @param {*} [options] Override http request option.
|
|
10935
|
+
* @throws {RequiredError}
|
|
10936
|
+
*/
|
|
10937
|
+
addOrganization: (addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10711
10938
|
/**
|
|
10712
10939
|
*
|
|
10713
10940
|
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
@@ -10927,6 +11154,13 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
10927
11154
|
* @throws {RequiredError}
|
|
10928
11155
|
*/
|
|
10929
11156
|
verifyEmail: (verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11157
|
+
/**
|
|
11158
|
+
*
|
|
11159
|
+
* @param {VerifyEmailRequest} verifyEmailRequest
|
|
11160
|
+
* @param {*} [options] Override http request option.
|
|
11161
|
+
* @throws {RequiredError}
|
|
11162
|
+
*/
|
|
11163
|
+
verifyOrganization: (verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10930
11164
|
};
|
|
10931
11165
|
/**
|
|
10932
11166
|
* UsersApi - functional programming interface
|
|
@@ -10947,6 +11181,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
10947
11181
|
* @throws {RequiredError}
|
|
10948
11182
|
*/
|
|
10949
11183
|
addFavoritePlayer(favoritePlayerRequestBody: FavoritePlayerRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FavoritePlayerMutationResponse>>;
|
|
11184
|
+
/**
|
|
11185
|
+
*
|
|
11186
|
+
* @param {AddOrganizationRequest} addOrganizationRequest
|
|
11187
|
+
* @param {*} [options] Override http request option.
|
|
11188
|
+
* @throws {RequiredError}
|
|
11189
|
+
*/
|
|
11190
|
+
addOrganization(addOrganizationRequest: AddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
10950
11191
|
/**
|
|
10951
11192
|
*
|
|
10952
11193
|
* @param {AddPaymentMethodRequestBody} addPaymentMethodRequestBody
|
|
@@ -11174,6 +11415,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
11174
11415
|
* @throws {RequiredError}
|
|
11175
11416
|
*/
|
|
11176
11417
|
verifyEmail(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
11418
|
+
/**
|
|
11419
|
+
*
|
|
11420
|
+
* @param {VerifyEmailRequest} verifyEmailRequest
|
|
11421
|
+
* @param {*} [options] Override http request option.
|
|
11422
|
+
* @throws {RequiredError}
|
|
11423
|
+
*/
|
|
11424
|
+
verifyOrganization(verifyEmailRequest: VerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestPasswordReset200Response>>;
|
|
11177
11425
|
};
|
|
11178
11426
|
/**
|
|
11179
11427
|
* UsersApi - factory interface
|
|
@@ -11194,6 +11442,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
11194
11442
|
* @throws {RequiredError}
|
|
11195
11443
|
*/
|
|
11196
11444
|
addFavoritePlayer(requestParameters: UsersApiAddFavoritePlayerRequest, options?: RawAxiosRequestConfig): AxiosPromise<FavoritePlayerMutationResponse>;
|
|
11445
|
+
/**
|
|
11446
|
+
*
|
|
11447
|
+
* @param {UsersApiAddOrganizationRequest} requestParameters Request parameters.
|
|
11448
|
+
* @param {*} [options] Override http request option.
|
|
11449
|
+
* @throws {RequiredError}
|
|
11450
|
+
*/
|
|
11451
|
+
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
11197
11452
|
/**
|
|
11198
11453
|
*
|
|
11199
11454
|
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
@@ -11412,6 +11667,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
11412
11667
|
* @throws {RequiredError}
|
|
11413
11668
|
*/
|
|
11414
11669
|
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
11670
|
+
/**
|
|
11671
|
+
*
|
|
11672
|
+
* @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
|
|
11673
|
+
* @param {*} [options] Override http request option.
|
|
11674
|
+
* @throws {RequiredError}
|
|
11675
|
+
*/
|
|
11676
|
+
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestPasswordReset200Response>;
|
|
11415
11677
|
};
|
|
11416
11678
|
/**
|
|
11417
11679
|
* Request parameters for addFavoriteClub operation in UsersApi.
|
|
@@ -11439,6 +11701,19 @@ export interface UsersApiAddFavoritePlayerRequest {
|
|
|
11439
11701
|
*/
|
|
11440
11702
|
readonly favoritePlayerRequestBody: FavoritePlayerRequestBody;
|
|
11441
11703
|
}
|
|
11704
|
+
/**
|
|
11705
|
+
* Request parameters for addOrganization operation in UsersApi.
|
|
11706
|
+
* @export
|
|
11707
|
+
* @interface UsersApiAddOrganizationRequest
|
|
11708
|
+
*/
|
|
11709
|
+
export interface UsersApiAddOrganizationRequest {
|
|
11710
|
+
/**
|
|
11711
|
+
*
|
|
11712
|
+
* @type {AddOrganizationRequest}
|
|
11713
|
+
* @memberof UsersApiAddOrganization
|
|
11714
|
+
*/
|
|
11715
|
+
readonly addOrganizationRequest: AddOrganizationRequest;
|
|
11716
|
+
}
|
|
11442
11717
|
/**
|
|
11443
11718
|
* Request parameters for addPaymentMethodSetup operation in UsersApi.
|
|
11444
11719
|
* @export
|
|
@@ -11805,6 +12080,19 @@ export interface UsersApiVerifyEmailRequest {
|
|
|
11805
12080
|
*/
|
|
11806
12081
|
readonly verifyEmailRequest: VerifyEmailRequest;
|
|
11807
12082
|
}
|
|
12083
|
+
/**
|
|
12084
|
+
* Request parameters for verifyOrganization operation in UsersApi.
|
|
12085
|
+
* @export
|
|
12086
|
+
* @interface UsersApiVerifyOrganizationRequest
|
|
12087
|
+
*/
|
|
12088
|
+
export interface UsersApiVerifyOrganizationRequest {
|
|
12089
|
+
/**
|
|
12090
|
+
*
|
|
12091
|
+
* @type {VerifyEmailRequest}
|
|
12092
|
+
* @memberof UsersApiVerifyOrganization
|
|
12093
|
+
*/
|
|
12094
|
+
readonly verifyEmailRequest: VerifyEmailRequest;
|
|
12095
|
+
}
|
|
11808
12096
|
/**
|
|
11809
12097
|
* UsersApi - object-oriented interface
|
|
11810
12098
|
* @export
|
|
@@ -11828,6 +12116,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
11828
12116
|
* @memberof UsersApi
|
|
11829
12117
|
*/
|
|
11830
12118
|
addFavoritePlayer(requestParameters: UsersApiAddFavoritePlayerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FavoritePlayerMutationResponse, any, {}>>;
|
|
12119
|
+
/**
|
|
12120
|
+
*
|
|
12121
|
+
* @param {UsersApiAddOrganizationRequest} requestParameters Request parameters.
|
|
12122
|
+
* @param {*} [options] Override http request option.
|
|
12123
|
+
* @throws {RequiredError}
|
|
12124
|
+
* @memberof UsersApi
|
|
12125
|
+
*/
|
|
12126
|
+
addOrganization(requestParameters: UsersApiAddOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
|
|
11831
12127
|
/**
|
|
11832
12128
|
*
|
|
11833
12129
|
* @param {UsersApiAddPaymentMethodSetupRequest} requestParameters Request parameters.
|
|
@@ -12077,4 +12373,12 @@ export declare class UsersApi extends BaseAPI {
|
|
|
12077
12373
|
* @memberof UsersApi
|
|
12078
12374
|
*/
|
|
12079
12375
|
verifyEmail(requestParameters: UsersApiVerifyEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
|
|
12376
|
+
/**
|
|
12377
|
+
*
|
|
12378
|
+
* @param {UsersApiVerifyOrganizationRequest} requestParameters Request parameters.
|
|
12379
|
+
* @param {*} [options] Override http request option.
|
|
12380
|
+
* @throws {RequiredError}
|
|
12381
|
+
* @memberof UsersApi
|
|
12382
|
+
*/
|
|
12383
|
+
verifyOrganization(requestParameters: UsersApiVerifyOrganizationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestPasswordReset200Response, any, {}>>;
|
|
12080
12384
|
}
|