@tennac-booking/sdk 1.0.36 → 1.0.37
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 +0 -2
- package/README.md +2 -3
- package/api.ts +5 -78
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +5 -78
- package/dist/api.js +1 -1
- 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 +5 -78
- package/dist/esm/api.js +1 -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/Club.md +1 -1
- package/docs/ClubResponse.md +1 -1
- package/docs/UserResponse.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
|
-
.openapi-generator-ignore
|
|
4
3
|
README.md
|
|
5
4
|
api.ts
|
|
6
5
|
base.ts
|
|
@@ -32,7 +31,6 @@ docs/StripeLink.md
|
|
|
32
31
|
docs/StripeStatus.md
|
|
33
32
|
docs/SubscriptionPlan.md
|
|
34
33
|
docs/SubscriptionResponse.md
|
|
35
|
-
docs/User.md
|
|
36
34
|
docs/UserResponse.md
|
|
37
35
|
docs/UserResponseFrequentlyPlayedWithInner.md
|
|
38
36
|
docs/UserResponseFrequentlyVisitedClubsInner.md
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.37
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @tennac-booking/sdk@1.0.
|
|
39
|
+
npm install @tennac-booking/sdk@1.0.37 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -81,7 +81,6 @@ Class | Method | HTTP request | Description
|
|
|
81
81
|
- [StripeStatus](docs/StripeStatus.md)
|
|
82
82
|
- [SubscriptionPlan](docs/SubscriptionPlan.md)
|
|
83
83
|
- [SubscriptionResponse](docs/SubscriptionResponse.md)
|
|
84
|
-
- [User](docs/User.md)
|
|
85
84
|
- [UserResponse](docs/UserResponse.md)
|
|
86
85
|
- [UserResponseFrequentlyPlayedWithInner](docs/UserResponseFrequentlyPlayedWithInner.md)
|
|
87
86
|
- [UserResponseFrequentlyVisitedClubsInner](docs/UserResponseFrequentlyVisitedClubsInner.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -180,7 +180,7 @@ export interface Club {
|
|
|
180
180
|
* @type {Location}
|
|
181
181
|
* @memberof Club
|
|
182
182
|
*/
|
|
183
|
-
'location'
|
|
183
|
+
'location': Location;
|
|
184
184
|
/**
|
|
185
185
|
*
|
|
186
186
|
* @type {string}
|
|
@@ -272,7 +272,7 @@ export interface ClubResponse {
|
|
|
272
272
|
* @type {Location}
|
|
273
273
|
* @memberof ClubResponse
|
|
274
274
|
*/
|
|
275
|
-
'location'
|
|
275
|
+
'location': Location;
|
|
276
276
|
/**
|
|
277
277
|
*
|
|
278
278
|
* @type {string}
|
|
@@ -1142,79 +1142,6 @@ export const SubscriptionResponseStatusEnum = {
|
|
|
1142
1142
|
|
|
1143
1143
|
export type SubscriptionResponseStatusEnum = typeof SubscriptionResponseStatusEnum[keyof typeof SubscriptionResponseStatusEnum];
|
|
1144
1144
|
|
|
1145
|
-
/**
|
|
1146
|
-
*
|
|
1147
|
-
* @export
|
|
1148
|
-
* @interface User
|
|
1149
|
-
*/
|
|
1150
|
-
export interface User {
|
|
1151
|
-
/**
|
|
1152
|
-
*
|
|
1153
|
-
* @type {string}
|
|
1154
|
-
* @memberof User
|
|
1155
|
-
*/
|
|
1156
|
-
'username'?: string;
|
|
1157
|
-
/**
|
|
1158
|
-
*
|
|
1159
|
-
* @type {string}
|
|
1160
|
-
* @memberof User
|
|
1161
|
-
*/
|
|
1162
|
-
'firstName': string;
|
|
1163
|
-
/**
|
|
1164
|
-
*
|
|
1165
|
-
* @type {string}
|
|
1166
|
-
* @memberof User
|
|
1167
|
-
*/
|
|
1168
|
-
'lastName': string;
|
|
1169
|
-
/**
|
|
1170
|
-
*
|
|
1171
|
-
* @type {string}
|
|
1172
|
-
* @memberof User
|
|
1173
|
-
*/
|
|
1174
|
-
'email': string;
|
|
1175
|
-
/**
|
|
1176
|
-
*
|
|
1177
|
-
* @type {boolean}
|
|
1178
|
-
* @memberof User
|
|
1179
|
-
*/
|
|
1180
|
-
'isAccountVerified'?: boolean;
|
|
1181
|
-
/**
|
|
1182
|
-
*
|
|
1183
|
-
* @type {string}
|
|
1184
|
-
* @memberof User
|
|
1185
|
-
*/
|
|
1186
|
-
'level'?: string;
|
|
1187
|
-
/**
|
|
1188
|
-
*
|
|
1189
|
-
* @type {string}
|
|
1190
|
-
* @memberof User
|
|
1191
|
-
*/
|
|
1192
|
-
'stripeCustomerId'?: string;
|
|
1193
|
-
/**
|
|
1194
|
-
*
|
|
1195
|
-
* @type {string}
|
|
1196
|
-
* @memberof User
|
|
1197
|
-
*/
|
|
1198
|
-
'phone'?: string;
|
|
1199
|
-
/**
|
|
1200
|
-
*
|
|
1201
|
-
* @type {string}
|
|
1202
|
-
* @memberof User
|
|
1203
|
-
*/
|
|
1204
|
-
'password': string;
|
|
1205
|
-
/**
|
|
1206
|
-
*
|
|
1207
|
-
* @type {string}
|
|
1208
|
-
* @memberof User
|
|
1209
|
-
*/
|
|
1210
|
-
'profilePicture'?: string;
|
|
1211
|
-
/**
|
|
1212
|
-
*
|
|
1213
|
-
* @type {boolean}
|
|
1214
|
-
* @memberof User
|
|
1215
|
-
*/
|
|
1216
|
-
'isAdmin'?: boolean;
|
|
1217
|
-
}
|
|
1218
1145
|
/**
|
|
1219
1146
|
*
|
|
1220
1147
|
* @export
|
|
@@ -1361,10 +1288,10 @@ export interface UserResponse {
|
|
|
1361
1288
|
'description'?: string;
|
|
1362
1289
|
/**
|
|
1363
1290
|
*
|
|
1364
|
-
* @type {
|
|
1291
|
+
* @type {Location}
|
|
1365
1292
|
* @memberof UserResponse
|
|
1366
1293
|
*/
|
|
1367
|
-
'
|
|
1294
|
+
'location'?: Location;
|
|
1368
1295
|
/**
|
|
1369
1296
|
*
|
|
1370
1297
|
* @type {boolean}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -160,7 +160,7 @@ export interface Club {
|
|
|
160
160
|
* @type {Location}
|
|
161
161
|
* @memberof Club
|
|
162
162
|
*/
|
|
163
|
-
'location'
|
|
163
|
+
'location': Location;
|
|
164
164
|
/**
|
|
165
165
|
*
|
|
166
166
|
* @type {string}
|
|
@@ -252,7 +252,7 @@ export interface ClubResponse {
|
|
|
252
252
|
* @type {Location}
|
|
253
253
|
* @memberof ClubResponse
|
|
254
254
|
*/
|
|
255
|
-
'location'
|
|
255
|
+
'location': Location;
|
|
256
256
|
/**
|
|
257
257
|
*
|
|
258
258
|
* @type {string}
|
|
@@ -1097,79 +1097,6 @@ export declare const SubscriptionResponseStatusEnum: {
|
|
|
1097
1097
|
readonly Unpaid: "unpaid";
|
|
1098
1098
|
};
|
|
1099
1099
|
export type SubscriptionResponseStatusEnum = typeof SubscriptionResponseStatusEnum[keyof typeof SubscriptionResponseStatusEnum];
|
|
1100
|
-
/**
|
|
1101
|
-
*
|
|
1102
|
-
* @export
|
|
1103
|
-
* @interface User
|
|
1104
|
-
*/
|
|
1105
|
-
export interface User {
|
|
1106
|
-
/**
|
|
1107
|
-
*
|
|
1108
|
-
* @type {string}
|
|
1109
|
-
* @memberof User
|
|
1110
|
-
*/
|
|
1111
|
-
'username'?: string;
|
|
1112
|
-
/**
|
|
1113
|
-
*
|
|
1114
|
-
* @type {string}
|
|
1115
|
-
* @memberof User
|
|
1116
|
-
*/
|
|
1117
|
-
'firstName': string;
|
|
1118
|
-
/**
|
|
1119
|
-
*
|
|
1120
|
-
* @type {string}
|
|
1121
|
-
* @memberof User
|
|
1122
|
-
*/
|
|
1123
|
-
'lastName': string;
|
|
1124
|
-
/**
|
|
1125
|
-
*
|
|
1126
|
-
* @type {string}
|
|
1127
|
-
* @memberof User
|
|
1128
|
-
*/
|
|
1129
|
-
'email': string;
|
|
1130
|
-
/**
|
|
1131
|
-
*
|
|
1132
|
-
* @type {boolean}
|
|
1133
|
-
* @memberof User
|
|
1134
|
-
*/
|
|
1135
|
-
'isAccountVerified'?: boolean;
|
|
1136
|
-
/**
|
|
1137
|
-
*
|
|
1138
|
-
* @type {string}
|
|
1139
|
-
* @memberof User
|
|
1140
|
-
*/
|
|
1141
|
-
'level'?: string;
|
|
1142
|
-
/**
|
|
1143
|
-
*
|
|
1144
|
-
* @type {string}
|
|
1145
|
-
* @memberof User
|
|
1146
|
-
*/
|
|
1147
|
-
'stripeCustomerId'?: string;
|
|
1148
|
-
/**
|
|
1149
|
-
*
|
|
1150
|
-
* @type {string}
|
|
1151
|
-
* @memberof User
|
|
1152
|
-
*/
|
|
1153
|
-
'phone'?: string;
|
|
1154
|
-
/**
|
|
1155
|
-
*
|
|
1156
|
-
* @type {string}
|
|
1157
|
-
* @memberof User
|
|
1158
|
-
*/
|
|
1159
|
-
'password': string;
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @type {string}
|
|
1163
|
-
* @memberof User
|
|
1164
|
-
*/
|
|
1165
|
-
'profilePicture'?: string;
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @type {boolean}
|
|
1169
|
-
* @memberof User
|
|
1170
|
-
*/
|
|
1171
|
-
'isAdmin'?: boolean;
|
|
1172
|
-
}
|
|
1173
1100
|
/**
|
|
1174
1101
|
*
|
|
1175
1102
|
* @export
|
|
@@ -1316,10 +1243,10 @@ export interface UserResponse {
|
|
|
1316
1243
|
'description'?: string;
|
|
1317
1244
|
/**
|
|
1318
1245
|
*
|
|
1319
|
-
* @type {
|
|
1246
|
+
* @type {Location}
|
|
1320
1247
|
* @memberof UserResponse
|
|
1321
1248
|
*/
|
|
1322
|
-
'
|
|
1249
|
+
'location'?: Location;
|
|
1323
1250
|
/**
|
|
1324
1251
|
*
|
|
1325
1252
|
* @type {boolean}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pandook 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.37
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
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
|
* Pandook 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.37
|
|
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
|
* Pandook 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.37
|
|
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
|
* Pandook 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.37
|
|
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
|
* Pandook 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.37
|
|
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
|
* Pandook 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.37
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -160,7 +160,7 @@ export interface Club {
|
|
|
160
160
|
* @type {Location}
|
|
161
161
|
* @memberof Club
|
|
162
162
|
*/
|
|
163
|
-
'location'
|
|
163
|
+
'location': Location;
|
|
164
164
|
/**
|
|
165
165
|
*
|
|
166
166
|
* @type {string}
|
|
@@ -252,7 +252,7 @@ export interface ClubResponse {
|
|
|
252
252
|
* @type {Location}
|
|
253
253
|
* @memberof ClubResponse
|
|
254
254
|
*/
|
|
255
|
-
'location'
|
|
255
|
+
'location': Location;
|
|
256
256
|
/**
|
|
257
257
|
*
|
|
258
258
|
* @type {string}
|
|
@@ -1097,79 +1097,6 @@ export declare const SubscriptionResponseStatusEnum: {
|
|
|
1097
1097
|
readonly Unpaid: "unpaid";
|
|
1098
1098
|
};
|
|
1099
1099
|
export type SubscriptionResponseStatusEnum = typeof SubscriptionResponseStatusEnum[keyof typeof SubscriptionResponseStatusEnum];
|
|
1100
|
-
/**
|
|
1101
|
-
*
|
|
1102
|
-
* @export
|
|
1103
|
-
* @interface User
|
|
1104
|
-
*/
|
|
1105
|
-
export interface User {
|
|
1106
|
-
/**
|
|
1107
|
-
*
|
|
1108
|
-
* @type {string}
|
|
1109
|
-
* @memberof User
|
|
1110
|
-
*/
|
|
1111
|
-
'username'?: string;
|
|
1112
|
-
/**
|
|
1113
|
-
*
|
|
1114
|
-
* @type {string}
|
|
1115
|
-
* @memberof User
|
|
1116
|
-
*/
|
|
1117
|
-
'firstName': string;
|
|
1118
|
-
/**
|
|
1119
|
-
*
|
|
1120
|
-
* @type {string}
|
|
1121
|
-
* @memberof User
|
|
1122
|
-
*/
|
|
1123
|
-
'lastName': string;
|
|
1124
|
-
/**
|
|
1125
|
-
*
|
|
1126
|
-
* @type {string}
|
|
1127
|
-
* @memberof User
|
|
1128
|
-
*/
|
|
1129
|
-
'email': string;
|
|
1130
|
-
/**
|
|
1131
|
-
*
|
|
1132
|
-
* @type {boolean}
|
|
1133
|
-
* @memberof User
|
|
1134
|
-
*/
|
|
1135
|
-
'isAccountVerified'?: boolean;
|
|
1136
|
-
/**
|
|
1137
|
-
*
|
|
1138
|
-
* @type {string}
|
|
1139
|
-
* @memberof User
|
|
1140
|
-
*/
|
|
1141
|
-
'level'?: string;
|
|
1142
|
-
/**
|
|
1143
|
-
*
|
|
1144
|
-
* @type {string}
|
|
1145
|
-
* @memberof User
|
|
1146
|
-
*/
|
|
1147
|
-
'stripeCustomerId'?: string;
|
|
1148
|
-
/**
|
|
1149
|
-
*
|
|
1150
|
-
* @type {string}
|
|
1151
|
-
* @memberof User
|
|
1152
|
-
*/
|
|
1153
|
-
'phone'?: string;
|
|
1154
|
-
/**
|
|
1155
|
-
*
|
|
1156
|
-
* @type {string}
|
|
1157
|
-
* @memberof User
|
|
1158
|
-
*/
|
|
1159
|
-
'password': string;
|
|
1160
|
-
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @type {string}
|
|
1163
|
-
* @memberof User
|
|
1164
|
-
*/
|
|
1165
|
-
'profilePicture'?: string;
|
|
1166
|
-
/**
|
|
1167
|
-
*
|
|
1168
|
-
* @type {boolean}
|
|
1169
|
-
* @memberof User
|
|
1170
|
-
*/
|
|
1171
|
-
'isAdmin'?: boolean;
|
|
1172
|
-
}
|
|
1173
1100
|
/**
|
|
1174
1101
|
*
|
|
1175
1102
|
* @export
|
|
@@ -1316,10 +1243,10 @@ export interface UserResponse {
|
|
|
1316
1243
|
'description'?: string;
|
|
1317
1244
|
/**
|
|
1318
1245
|
*
|
|
1319
|
-
* @type {
|
|
1246
|
+
* @type {Location}
|
|
1320
1247
|
* @memberof UserResponse
|
|
1321
1248
|
*/
|
|
1322
|
-
'
|
|
1249
|
+
'location'?: Location;
|
|
1323
1250
|
/**
|
|
1324
1251
|
*
|
|
1325
1252
|
* @type {boolean}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pandook 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.37
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Pandook 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.37
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/Club.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
-
**location** | [**Location**](Location.md) | | [
|
|
10
|
+
**location** | [**Location**](Location.md) | | [default to undefined]
|
|
11
11
|
**phone** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**email** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**websiteUrl** | **string** | | [optional] [default to undefined]
|
package/docs/ClubResponse.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
-
**location** | [**Location**](Location.md) | | [
|
|
10
|
+
**location** | [**Location**](Location.md) | | [default to undefined]
|
|
11
11
|
**phone** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**email** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**websiteUrl** | **string** | | [optional] [default to undefined]
|
package/docs/UserResponse.md
CHANGED
|
@@ -28,7 +28,7 @@ Name | Type | Description | Notes
|
|
|
28
28
|
**setupIntentId** | **string** | | [optional] [default to undefined]
|
|
29
29
|
**favoriteClubs** | **Array<string>** | | [optional] [default to undefined]
|
|
30
30
|
**description** | **string** | | [optional] [default to undefined]
|
|
31
|
-
**
|
|
31
|
+
**location** | [**Location**](Location.md) | | [optional] [default to undefined]
|
|
32
32
|
**isProfileVisible** | **boolean** | | [default to undefined]
|
|
33
33
|
**favoritePlayers** | **Array<string>** | | [optional] [default to undefined]
|
|
34
34
|
**upcomingBookingsCount** | **number** | | [optional] [default to undefined]
|
|
@@ -65,7 +65,7 @@ const instance: UserResponse = {
|
|
|
65
65
|
setupIntentId,
|
|
66
66
|
favoriteClubs,
|
|
67
67
|
description,
|
|
68
|
-
|
|
68
|
+
location,
|
|
69
69
|
isProfileVisible,
|
|
70
70
|
favoritePlayers,
|
|
71
71
|
upcomingBookingsCount,
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pandook API
|
|
5
5
|
* API for managing pickle ball games and players
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.
|
|
7
|
+
* The version of the OpenAPI document: 1.0.37
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|