@tennac-booking/sdk 1.0.54 → 1.0.55
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 -2
- package/README.md +6 -4
- package/api.ts +304 -77
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +306 -82
- package/dist/api.js +7 -4
- 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 +306 -82
- package/dist/esm/api.js +4 -1
- 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/ClubSummary.md +28 -0
- package/docs/FavoriteClubsResponse.md +1 -1
- package/docs/FavoritePlayersResponse.md +1 -1
- package/docs/PlayerSummary.md +40 -0
- package/docs/PublicUserProfileResponse.md +44 -0
- package/docs/UserLocationSummary.md +44 -0
- package/docs/UserProfileResponse.md +2 -2
- package/docs/UsersApi.md +6 -6
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/FrequentClub.md +0 -24
- package/docs/FrequentPlayer.md +0 -28
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* booking_api
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.54
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1724,6 +1724,43 @@ export interface ClubStaffResponse {
|
|
|
1724
1724
|
*/
|
|
1725
1725
|
'updatedAt'?: string;
|
|
1726
1726
|
}
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @export
|
|
1730
|
+
* @interface ClubSummary
|
|
1731
|
+
*/
|
|
1732
|
+
export interface ClubSummary {
|
|
1733
|
+
/**
|
|
1734
|
+
*
|
|
1735
|
+
* @type {string}
|
|
1736
|
+
* @memberof ClubSummary
|
|
1737
|
+
*/
|
|
1738
|
+
'id': string;
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof ClubSummary
|
|
1743
|
+
*/
|
|
1744
|
+
'name': string;
|
|
1745
|
+
/**
|
|
1746
|
+
*
|
|
1747
|
+
* @type {string}
|
|
1748
|
+
* @memberof ClubSummary
|
|
1749
|
+
*/
|
|
1750
|
+
'address'?: string | null;
|
|
1751
|
+
/**
|
|
1752
|
+
*
|
|
1753
|
+
* @type {UserLocationSummary}
|
|
1754
|
+
* @memberof ClubSummary
|
|
1755
|
+
*/
|
|
1756
|
+
'location': UserLocationSummary | null;
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @type {number}
|
|
1760
|
+
* @memberof ClubSummary
|
|
1761
|
+
*/
|
|
1762
|
+
'visitCount'?: number;
|
|
1763
|
+
}
|
|
1727
1764
|
/**
|
|
1728
1765
|
*
|
|
1729
1766
|
* @export
|
|
@@ -2657,12 +2694,10 @@ export interface FavoriteClubRequestBody {
|
|
|
2657
2694
|
export interface FavoriteClubsResponse {
|
|
2658
2695
|
/**
|
|
2659
2696
|
*
|
|
2660
|
-
* @type {Array<
|
|
2697
|
+
* @type {Array<ClubSummary>}
|
|
2661
2698
|
* @memberof FavoriteClubsResponse
|
|
2662
2699
|
*/
|
|
2663
|
-
'favoriteClubs': Array<
|
|
2664
|
-
[key: string]: any;
|
|
2665
|
-
}>;
|
|
2700
|
+
'favoriteClubs': Array<ClubSummary>;
|
|
2666
2701
|
}
|
|
2667
2702
|
/**
|
|
2668
2703
|
*
|
|
@@ -2704,72 +2739,10 @@ export interface FavoritePlayerRequestBody {
|
|
|
2704
2739
|
export interface FavoritePlayersResponse {
|
|
2705
2740
|
/**
|
|
2706
2741
|
*
|
|
2707
|
-
* @type {Array<
|
|
2742
|
+
* @type {Array<PlayerSummary>}
|
|
2708
2743
|
* @memberof FavoritePlayersResponse
|
|
2709
2744
|
*/
|
|
2710
|
-
'favoriteUsers': Array<
|
|
2711
|
-
}
|
|
2712
|
-
/**
|
|
2713
|
-
*
|
|
2714
|
-
* @export
|
|
2715
|
-
* @interface FrequentClub
|
|
2716
|
-
*/
|
|
2717
|
-
export interface FrequentClub {
|
|
2718
|
-
/**
|
|
2719
|
-
*
|
|
2720
|
-
* @type {string}
|
|
2721
|
-
* @memberof FrequentClub
|
|
2722
|
-
*/
|
|
2723
|
-
'clubId': string;
|
|
2724
|
-
/**
|
|
2725
|
-
*
|
|
2726
|
-
* @type {string}
|
|
2727
|
-
* @memberof FrequentClub
|
|
2728
|
-
*/
|
|
2729
|
-
'name': string;
|
|
2730
|
-
/**
|
|
2731
|
-
*
|
|
2732
|
-
* @type {number}
|
|
2733
|
-
* @memberof FrequentClub
|
|
2734
|
-
*/
|
|
2735
|
-
'visitCount': number;
|
|
2736
|
-
}
|
|
2737
|
-
/**
|
|
2738
|
-
*
|
|
2739
|
-
* @export
|
|
2740
|
-
* @interface FrequentPlayer
|
|
2741
|
-
*/
|
|
2742
|
-
export interface FrequentPlayer {
|
|
2743
|
-
/**
|
|
2744
|
-
*
|
|
2745
|
-
* @type {string}
|
|
2746
|
-
* @memberof FrequentPlayer
|
|
2747
|
-
*/
|
|
2748
|
-
'userId': string;
|
|
2749
|
-
/**
|
|
2750
|
-
*
|
|
2751
|
-
* @type {string}
|
|
2752
|
-
* @memberof FrequentPlayer
|
|
2753
|
-
*/
|
|
2754
|
-
'firstName': string;
|
|
2755
|
-
/**
|
|
2756
|
-
*
|
|
2757
|
-
* @type {string}
|
|
2758
|
-
* @memberof FrequentPlayer
|
|
2759
|
-
*/
|
|
2760
|
-
'lastName': string;
|
|
2761
|
-
/**
|
|
2762
|
-
*
|
|
2763
|
-
* @type {string}
|
|
2764
|
-
* @memberof FrequentPlayer
|
|
2765
|
-
*/
|
|
2766
|
-
'profilePicture'?: string;
|
|
2767
|
-
/**
|
|
2768
|
-
*
|
|
2769
|
-
* @type {number}
|
|
2770
|
-
* @memberof FrequentPlayer
|
|
2771
|
-
*/
|
|
2772
|
-
'playCount': number;
|
|
2745
|
+
'favoriteUsers': Array<PlayerSummary>;
|
|
2773
2746
|
}
|
|
2774
2747
|
/**
|
|
2775
2748
|
*
|
|
@@ -4132,6 +4105,79 @@ export interface PickIUserLocationExcludeKeyofIUserLocationType {
|
|
|
4132
4105
|
*/
|
|
4133
4106
|
'address'?: string;
|
|
4134
4107
|
}
|
|
4108
|
+
/**
|
|
4109
|
+
*
|
|
4110
|
+
* @export
|
|
4111
|
+
* @interface PlayerSummary
|
|
4112
|
+
*/
|
|
4113
|
+
export interface PlayerSummary {
|
|
4114
|
+
/**
|
|
4115
|
+
*
|
|
4116
|
+
* @type {string}
|
|
4117
|
+
* @memberof PlayerSummary
|
|
4118
|
+
*/
|
|
4119
|
+
'id': string;
|
|
4120
|
+
/**
|
|
4121
|
+
*
|
|
4122
|
+
* @type {string}
|
|
4123
|
+
* @memberof PlayerSummary
|
|
4124
|
+
*/
|
|
4125
|
+
'username'?: string | null;
|
|
4126
|
+
/**
|
|
4127
|
+
*
|
|
4128
|
+
* @type {string}
|
|
4129
|
+
* @memberof PlayerSummary
|
|
4130
|
+
*/
|
|
4131
|
+
'firstName': string;
|
|
4132
|
+
/**
|
|
4133
|
+
*
|
|
4134
|
+
* @type {string}
|
|
4135
|
+
* @memberof PlayerSummary
|
|
4136
|
+
*/
|
|
4137
|
+
'lastName': string;
|
|
4138
|
+
/**
|
|
4139
|
+
*
|
|
4140
|
+
* @type {string}
|
|
4141
|
+
* @memberof PlayerSummary
|
|
4142
|
+
*/
|
|
4143
|
+
'profilePicture'?: string | null;
|
|
4144
|
+
/**
|
|
4145
|
+
*
|
|
4146
|
+
* @type {Gender}
|
|
4147
|
+
* @memberof PlayerSummary
|
|
4148
|
+
*/
|
|
4149
|
+
'gender'?: Gender;
|
|
4150
|
+
/**
|
|
4151
|
+
*
|
|
4152
|
+
* @type {Array<LevelBySportEntry>}
|
|
4153
|
+
* @memberof PlayerSummary
|
|
4154
|
+
*/
|
|
4155
|
+
'levelBySports'?: Array<LevelBySportEntry>;
|
|
4156
|
+
/**
|
|
4157
|
+
*
|
|
4158
|
+
* @type {UserLocationSummary}
|
|
4159
|
+
* @memberof PlayerSummary
|
|
4160
|
+
*/
|
|
4161
|
+
'location': UserLocationSummary | null;
|
|
4162
|
+
/**
|
|
4163
|
+
*
|
|
4164
|
+
* @type {boolean}
|
|
4165
|
+
* @memberof PlayerSummary
|
|
4166
|
+
*/
|
|
4167
|
+
'sharedClubs': boolean;
|
|
4168
|
+
/**
|
|
4169
|
+
*
|
|
4170
|
+
* @type {string}
|
|
4171
|
+
* @memberof PlayerSummary
|
|
4172
|
+
*/
|
|
4173
|
+
'lastPlayedAt'?: string;
|
|
4174
|
+
/**
|
|
4175
|
+
*
|
|
4176
|
+
* @type {number}
|
|
4177
|
+
* @memberof PlayerSummary
|
|
4178
|
+
*/
|
|
4179
|
+
'playCount'?: number;
|
|
4180
|
+
}
|
|
4135
4181
|
/**
|
|
4136
4182
|
*
|
|
4137
4183
|
* @export
|
|
@@ -4398,6 +4444,91 @@ export interface PublicClubUserLevelBySportsInner {
|
|
|
4398
4444
|
*/
|
|
4399
4445
|
'level'?: string;
|
|
4400
4446
|
}
|
|
4447
|
+
/**
|
|
4448
|
+
*
|
|
4449
|
+
* @export
|
|
4450
|
+
* @interface PublicUserProfileResponse
|
|
4451
|
+
*/
|
|
4452
|
+
export interface PublicUserProfileResponse {
|
|
4453
|
+
/**
|
|
4454
|
+
*
|
|
4455
|
+
* @type {string}
|
|
4456
|
+
* @memberof PublicUserProfileResponse
|
|
4457
|
+
*/
|
|
4458
|
+
'id': string;
|
|
4459
|
+
/**
|
|
4460
|
+
*
|
|
4461
|
+
* @type {string}
|
|
4462
|
+
* @memberof PublicUserProfileResponse
|
|
4463
|
+
*/
|
|
4464
|
+
'username'?: string | null;
|
|
4465
|
+
/**
|
|
4466
|
+
*
|
|
4467
|
+
* @type {string}
|
|
4468
|
+
* @memberof PublicUserProfileResponse
|
|
4469
|
+
*/
|
|
4470
|
+
'firstName': string;
|
|
4471
|
+
/**
|
|
4472
|
+
*
|
|
4473
|
+
* @type {string}
|
|
4474
|
+
* @memberof PublicUserProfileResponse
|
|
4475
|
+
*/
|
|
4476
|
+
'lastName': string;
|
|
4477
|
+
/**
|
|
4478
|
+
*
|
|
4479
|
+
* @type {string}
|
|
4480
|
+
* @memberof PublicUserProfileResponse
|
|
4481
|
+
*/
|
|
4482
|
+
'email': string;
|
|
4483
|
+
/**
|
|
4484
|
+
*
|
|
4485
|
+
* @type {boolean}
|
|
4486
|
+
* @memberof PublicUserProfileResponse
|
|
4487
|
+
*/
|
|
4488
|
+
'isAccountVerified': boolean;
|
|
4489
|
+
/**
|
|
4490
|
+
*
|
|
4491
|
+
* @type {UserLocationSummary}
|
|
4492
|
+
* @memberof PublicUserProfileResponse
|
|
4493
|
+
*/
|
|
4494
|
+
'location': UserLocationSummary | null;
|
|
4495
|
+
/**
|
|
4496
|
+
*
|
|
4497
|
+
* @type {string}
|
|
4498
|
+
* @memberof PublicUserProfileResponse
|
|
4499
|
+
*/
|
|
4500
|
+
'createdAt': string;
|
|
4501
|
+
/**
|
|
4502
|
+
*
|
|
4503
|
+
* @type {string}
|
|
4504
|
+
* @memberof PublicUserProfileResponse
|
|
4505
|
+
*/
|
|
4506
|
+
'profilePicture'?: string | null;
|
|
4507
|
+
/**
|
|
4508
|
+
*
|
|
4509
|
+
* @type {Array<LevelBySportEntry>}
|
|
4510
|
+
* @memberof PublicUserProfileResponse
|
|
4511
|
+
*/
|
|
4512
|
+
'levelBySports'?: Array<LevelBySportEntry>;
|
|
4513
|
+
/**
|
|
4514
|
+
*
|
|
4515
|
+
* @type {string}
|
|
4516
|
+
* @memberof PublicUserProfileResponse
|
|
4517
|
+
*/
|
|
4518
|
+
'description'?: string | null;
|
|
4519
|
+
/**
|
|
4520
|
+
*
|
|
4521
|
+
* @type {Array<ClubSummary>}
|
|
4522
|
+
* @memberof PublicUserProfileResponse
|
|
4523
|
+
*/
|
|
4524
|
+
'frequentlyVisitedClubs': Array<ClubSummary>;
|
|
4525
|
+
/**
|
|
4526
|
+
*
|
|
4527
|
+
* @type {Array<PlayerSummary>}
|
|
4528
|
+
* @memberof PublicUserProfileResponse
|
|
4529
|
+
*/
|
|
4530
|
+
'recentlyPlayedWith': Array<PlayerSummary>;
|
|
4531
|
+
}
|
|
4401
4532
|
/**
|
|
4402
4533
|
*
|
|
4403
4534
|
* @export
|
|
@@ -6063,6 +6194,99 @@ export interface UserInfoStaff {
|
|
|
6063
6194
|
*/
|
|
6064
6195
|
'profilePicture'?: string;
|
|
6065
6196
|
}
|
|
6197
|
+
/**
|
|
6198
|
+
*
|
|
6199
|
+
* @export
|
|
6200
|
+
* @interface UserLocationSummary
|
|
6201
|
+
*/
|
|
6202
|
+
export interface UserLocationSummary {
|
|
6203
|
+
/**
|
|
6204
|
+
*
|
|
6205
|
+
* @type {string}
|
|
6206
|
+
* @memberof UserLocationSummary
|
|
6207
|
+
*/
|
|
6208
|
+
'type': UserLocationSummaryTypeEnum;
|
|
6209
|
+
/**
|
|
6210
|
+
*
|
|
6211
|
+
* @type {Array<number>}
|
|
6212
|
+
* @memberof UserLocationSummary
|
|
6213
|
+
*/
|
|
6214
|
+
'coordinates': Array<number>;
|
|
6215
|
+
/**
|
|
6216
|
+
*
|
|
6217
|
+
* @type {string}
|
|
6218
|
+
* @memberof UserLocationSummary
|
|
6219
|
+
*/
|
|
6220
|
+
'mapboxId'?: string;
|
|
6221
|
+
/**
|
|
6222
|
+
*
|
|
6223
|
+
* @type {Array<string>}
|
|
6224
|
+
* @memberof UserLocationSummary
|
|
6225
|
+
*/
|
|
6226
|
+
'mapboxPlaceType'?: Array<string>;
|
|
6227
|
+
/**
|
|
6228
|
+
*
|
|
6229
|
+
* @type {string}
|
|
6230
|
+
* @memberof UserLocationSummary
|
|
6231
|
+
*/
|
|
6232
|
+
'mapboxPlaceName'?: string;
|
|
6233
|
+
/**
|
|
6234
|
+
*
|
|
6235
|
+
* @type {string}
|
|
6236
|
+
* @memberof UserLocationSummary
|
|
6237
|
+
*/
|
|
6238
|
+
'mapboxAddress'?: string;
|
|
6239
|
+
/**
|
|
6240
|
+
*
|
|
6241
|
+
* @type {Array<{ [key: string]: any; }>}
|
|
6242
|
+
* @memberof UserLocationSummary
|
|
6243
|
+
*/
|
|
6244
|
+
'mapboxContext'?: Array<{
|
|
6245
|
+
[key: string]: any;
|
|
6246
|
+
}>;
|
|
6247
|
+
/**
|
|
6248
|
+
* Construct a type with a set of properties K of type T
|
|
6249
|
+
* @type {{ [key: string]: object; }}
|
|
6250
|
+
* @memberof UserLocationSummary
|
|
6251
|
+
*/
|
|
6252
|
+
'mapboxRaw'?: {
|
|
6253
|
+
[key: string]: object;
|
|
6254
|
+
};
|
|
6255
|
+
/**
|
|
6256
|
+
*
|
|
6257
|
+
* @type {string}
|
|
6258
|
+
* @memberof UserLocationSummary
|
|
6259
|
+
*/
|
|
6260
|
+
'city'?: string;
|
|
6261
|
+
/**
|
|
6262
|
+
*
|
|
6263
|
+
* @type {string}
|
|
6264
|
+
* @memberof UserLocationSummary
|
|
6265
|
+
*/
|
|
6266
|
+
'country'?: string;
|
|
6267
|
+
/**
|
|
6268
|
+
*
|
|
6269
|
+
* @type {string}
|
|
6270
|
+
* @memberof UserLocationSummary
|
|
6271
|
+
*/
|
|
6272
|
+
'postalCode'?: string;
|
|
6273
|
+
/**
|
|
6274
|
+
*
|
|
6275
|
+
* @type {string}
|
|
6276
|
+
* @memberof UserLocationSummary
|
|
6277
|
+
*/
|
|
6278
|
+
'state'?: string;
|
|
6279
|
+
/**
|
|
6280
|
+
*
|
|
6281
|
+
* @type {string}
|
|
6282
|
+
* @memberof UserLocationSummary
|
|
6283
|
+
*/
|
|
6284
|
+
'address'?: string;
|
|
6285
|
+
}
|
|
6286
|
+
export declare const UserLocationSummaryTypeEnum: {
|
|
6287
|
+
readonly Point: "Point";
|
|
6288
|
+
};
|
|
6289
|
+
export type UserLocationSummaryTypeEnum = typeof UserLocationSummaryTypeEnum[keyof typeof UserLocationSummaryTypeEnum];
|
|
6066
6290
|
/**
|
|
6067
6291
|
*
|
|
6068
6292
|
* @export
|
|
@@ -6247,16 +6471,16 @@ export interface UserProfileResponse {
|
|
|
6247
6471
|
'subscriptionsCount'?: number;
|
|
6248
6472
|
/**
|
|
6249
6473
|
*
|
|
6250
|
-
* @type {Array<
|
|
6474
|
+
* @type {Array<ClubSummary>}
|
|
6251
6475
|
* @memberof UserProfileResponse
|
|
6252
6476
|
*/
|
|
6253
|
-
'frequentlyVisitedClubs'?: Array<
|
|
6477
|
+
'frequentlyVisitedClubs'?: Array<ClubSummary>;
|
|
6254
6478
|
/**
|
|
6255
6479
|
*
|
|
6256
|
-
* @type {Array<
|
|
6480
|
+
* @type {Array<PlayerSummary>}
|
|
6257
6481
|
* @memberof UserProfileResponse
|
|
6258
6482
|
*/
|
|
6259
|
-
'frequentlyPlayedWith'?: Array<
|
|
6483
|
+
'frequentlyPlayedWith'?: Array<PlayerSummary>;
|
|
6260
6484
|
/**
|
|
6261
6485
|
* Construct a type with a set of properties K of type T
|
|
6262
6486
|
* @type {{ [key: string]: any; }}
|
|
@@ -10139,13 +10363,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
10139
10363
|
* @param {*} [options] Override http request option.
|
|
10140
10364
|
* @throws {RequiredError}
|
|
10141
10365
|
*/
|
|
10142
|
-
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
10366
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PlayerSummary>>>;
|
|
10143
10367
|
/**
|
|
10144
10368
|
*
|
|
10145
10369
|
* @param {*} [options] Override http request option.
|
|
10146
10370
|
* @throws {RequiredError}
|
|
10147
10371
|
*/
|
|
10148
|
-
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
10372
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ClubSummary>>>;
|
|
10149
10373
|
/**
|
|
10150
10374
|
*
|
|
10151
10375
|
* @param {*} [options] Override http request option.
|
|
@@ -10210,7 +10434,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
10210
10434
|
* @param {*} [options] Override http request option.
|
|
10211
10435
|
* @throws {RequiredError}
|
|
10212
10436
|
*/
|
|
10213
|
-
getUserProfileById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
10437
|
+
getUserProfileById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PublicUserProfileResponse>>;
|
|
10214
10438
|
/**
|
|
10215
10439
|
*
|
|
10216
10440
|
* @param {string} id
|
|
@@ -10416,13 +10640,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
10416
10640
|
* @param {*} [options] Override http request option.
|
|
10417
10641
|
* @throws {RequiredError}
|
|
10418
10642
|
*/
|
|
10419
|
-
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
10643
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): AxiosPromise<Array<PlayerSummary>>;
|
|
10420
10644
|
/**
|
|
10421
10645
|
*
|
|
10422
10646
|
* @param {*} [options] Override http request option.
|
|
10423
10647
|
* @throws {RequiredError}
|
|
10424
10648
|
*/
|
|
10425
|
-
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
10649
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClubSummary>>;
|
|
10426
10650
|
/**
|
|
10427
10651
|
*
|
|
10428
10652
|
* @param {*} [options] Override http request option.
|
|
@@ -10478,7 +10702,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
10478
10702
|
* @param {*} [options] Override http request option.
|
|
10479
10703
|
* @throws {RequiredError}
|
|
10480
10704
|
*/
|
|
10481
|
-
getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
10705
|
+
getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PublicUserProfileResponse>;
|
|
10482
10706
|
/**
|
|
10483
10707
|
*
|
|
10484
10708
|
* @param {UsersApiGetUserProfileStaffRequest} requestParameters Request parameters.
|
|
@@ -11139,14 +11363,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
11139
11363
|
* @throws {RequiredError}
|
|
11140
11364
|
* @memberof UsersApi
|
|
11141
11365
|
*/
|
|
11142
|
-
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11366
|
+
getFrequentlyPlayedWith(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerSummary[], any, {}>>;
|
|
11143
11367
|
/**
|
|
11144
11368
|
*
|
|
11145
11369
|
* @param {*} [options] Override http request option.
|
|
11146
11370
|
* @throws {RequiredError}
|
|
11147
11371
|
* @memberof UsersApi
|
|
11148
11372
|
*/
|
|
11149
|
-
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11373
|
+
getFrequentlyVisitedClub(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClubSummary[], any, {}>>;
|
|
11150
11374
|
/**
|
|
11151
11375
|
*
|
|
11152
11376
|
* @param {*} [options] Override http request option.
|
|
@@ -11209,7 +11433,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
11209
11433
|
* @throws {RequiredError}
|
|
11210
11434
|
* @memberof UsersApi
|
|
11211
11435
|
*/
|
|
11212
|
-
getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11436
|
+
getUserProfileById(requestParameters: UsersApiGetUserProfileByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicUserProfileResponse, any, {}>>;
|
|
11213
11437
|
/**
|
|
11214
11438
|
*
|
|
11215
11439
|
* @param {UsersApiGetUserProfileStaffRequest} requestParameters Request parameters.
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* booking_api
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.54
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,9 +22,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserClubsApi = exports.UserClubsApiFactory = exports.UserClubsApiFp = exports.UserClubsApiAxiosParamCreator = exports.UserClubSportsApi = exports.UserClubSportsApiFactory = exports.UserClubSportsApiFp = exports.UserClubSportsApiAxiosParamCreator = exports.UserClubSlotsApi = exports.UserClubSlotsApiFactory = exports.UserClubSlotsApiFp = exports.UserClubSlotsApiAxiosParamCreator = exports.UserClubCourtsApi = exports.UserClubCourtsApiFactory = exports.UserClubCourtsApiFp = exports.UserClubCourtsApiAxiosParamCreator = exports.UserBookingsApi = exports.UserBookingsApiFactory = exports.UserBookingsApiFp = exports.UserBookingsApiAxiosParamCreator = exports.StaffEventsApi = exports.StaffEventsApiFactory = void 0;
|
|
25
|
+
exports.EventsApiFactory = exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.DiagnosticsApi = exports.DiagnosticsApiFactory = exports.DiagnosticsApiFp = exports.DiagnosticsApiAxiosParamCreator = exports.ClubsApi = exports.ClubsApiFactory = exports.ClubsApiFp = exports.ClubsApiAxiosParamCreator = exports.GetInvoicesStatusEnum = exports.ClubAnalyticsApi = exports.ClubAnalyticsApiFactory = exports.ClubAnalyticsApiFp = exports.ClubAnalyticsApiAxiosParamCreator = exports.BookingsApi = exports.BookingsApiFactory = exports.BookingsApiFp = exports.BookingsApiAxiosParamCreator = exports.UserLocationSummaryTypeEnum = exports.UserBookingItemBookingStatusEnum = exports.UserBookingItemMyPaymentStatusEnum = exports.UpdateUserRequestBodyLocationTypeEnum = exports.UpdateCourtRequestSurfaceEnum = exports.UpdateCourtRequestStatusEnum = exports.SubscriptionResponseStatusEnum = exports.StripeStatus = exports.PaymentStatusInvoiceStatusEnum = exports.PaymentMethod = exports.NoShowFeeResponseCaptureResultsInnerStatusEnum = exports.NoShowFeeResponseCaptureResultsInnerTypeEnum = exports.ManagerCancelBookingResponseBookingStatusEnum = exports.LocationTypeEnum = exports.InvoicesResponseInvoicesInnerStatusEnum = exports.IUserLocationTypeEnum = exports.Gender = exports.EventBookingStatusEnum = exports.DiagnosticsResponseStatusEnum = exports.CreatePriceRequestIntervalEnum = exports.CourtWithNameResponseSurfaceEnum = exports.CourtStatus = exports.CourtResponseSurfaceEnum = exports.CourtResponseStatusEnum = exports.ClubMemberRoleEnum = exports.CancelBookingResponseBookingStatusEnum = exports.BookingStatus = exports.BookingPopulatedPaymentByPlayersStatusInnerInvoicesInnerStatusEnum = exports.BookingPopulatedStatusEnum = exports.BookingPaymentStatusResponsePaymentStatusInnerPaymentMethodEnum = void 0;
|
|
26
|
+
exports.StaffEventsApiAxiosParamCreator = exports.StaffClubsApi = exports.StaffClubsApiFactory = exports.StaffClubsApiFp = exports.StaffClubsApiAxiosParamCreator = exports.StaffClubBookingsApi = exports.StaffClubBookingsApiFactory = exports.StaffClubBookingsApiFp = exports.StaffClubBookingsApiAxiosParamCreator = exports.StaffClubAnalyticsApi = exports.StaffClubAnalyticsApiFactory = exports.StaffClubAnalyticsApiFp = exports.StaffClubAnalyticsApiAxiosParamCreator = exports.StaffBookingsApi = exports.StaffBookingsApiFactory = exports.StaffBookingsApiFp = exports.StaffBookingsApiAxiosParamCreator = exports.ManagerSportsApi = exports.ManagerSportsApiFactory = exports.ManagerSportsApiFp = exports.ManagerSportsApiAxiosParamCreator = exports.ManagerEventsApi = exports.ManagerEventsApiFactory = exports.ManagerEventsApiFp = exports.ManagerEventsApiAxiosParamCreator = exports.ManagerClubsApi = exports.ManagerClubsApiFactory = exports.ManagerClubsApiFp = exports.ManagerClubsApiAxiosParamCreator = exports.ManagerClubSubscriptionsApi = exports.ManagerClubSubscriptionsApiFactory = exports.ManagerClubSubscriptionsApiFp = exports.ManagerClubSubscriptionsApiAxiosParamCreator = exports.ManagerClubSlotsApi = exports.ManagerClubSlotsApiFactory = exports.ManagerClubSlotsApiFp = exports.ManagerClubSlotsApiAxiosParamCreator = exports.ManagerClubRolesApi = exports.ManagerClubRolesApiFactory = exports.ManagerClubRolesApiFp = exports.ManagerClubRolesApiAxiosParamCreator = exports.ManagerClubCourtsApi = exports.ManagerClubCourtsApiFactory = exports.ManagerClubCourtsApiFp = exports.ManagerClubCourtsApiAxiosParamCreator = exports.ManagerBookingsApi = exports.ManagerBookingsApiFactory = exports.ManagerBookingsApiFp = exports.ManagerBookingsApiAxiosParamCreator = exports.EventsApi = void 0;
|
|
27
|
+
exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserClubsApi = exports.UserClubsApiFactory = exports.UserClubsApiFp = exports.UserClubsApiAxiosParamCreator = exports.UserClubSportsApi = exports.UserClubSportsApiFactory = exports.UserClubSportsApiFp = exports.UserClubSportsApiAxiosParamCreator = exports.UserClubSlotsApi = exports.UserClubSlotsApiFactory = exports.UserClubSlotsApiFp = exports.UserClubSlotsApiAxiosParamCreator = exports.UserClubCourtsApi = exports.UserClubCourtsApiFactory = exports.UserClubCourtsApiFp = exports.UserClubCourtsApiAxiosParamCreator = exports.UserBookingsApi = exports.UserBookingsApiFactory = exports.UserBookingsApiFp = exports.UserBookingsApiAxiosParamCreator = exports.StaffEventsApi = exports.StaffEventsApiFactory = exports.StaffEventsApiFp = void 0;
|
|
28
28
|
const axios_1 = require("axios");
|
|
29
29
|
// Some imports not used depending on template conditions
|
|
30
30
|
// @ts-ignore
|
|
@@ -192,6 +192,9 @@ exports.UserBookingItemBookingStatusEnum = {
|
|
|
192
192
|
Cancelled: 'cancelled',
|
|
193
193
|
Pending: 'pending'
|
|
194
194
|
};
|
|
195
|
+
exports.UserLocationSummaryTypeEnum = {
|
|
196
|
+
Point: 'Point'
|
|
197
|
+
};
|
|
195
198
|
/**
|
|
196
199
|
* BookingsApi - axios parameter creator
|
|
197
200
|
* @export
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* booking_api
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.54
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* booking_api
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.54
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* booking_api
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.54
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* booking_api
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.54
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* booking_api
|
|
3
3
|
* API for managing pickle ball games and players
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.
|
|
5
|
+
* The version of the OpenAPI document: 1.0.54
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* booking_api
|
|
6
6
|
* API for managing pickle ball games and players
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.54
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|