@tennac-booking/sdk 1.0.51 → 1.0.53

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.
@@ -141,6 +141,7 @@ docs/PasswordResetRequestBody.md
141
141
  docs/PaymentMethod.md
142
142
  docs/PaymentMethodSetupResponse.md
143
143
  docs/PaymentStatus.md
144
+ docs/PickIUserLocationExcludeKeyofIUserLocationType.md
144
145
  docs/PlayerWithPaymentMethod.md
145
146
  docs/PriceResponse.md
146
147
  docs/ProfilePictureResponse.md
@@ -197,6 +198,7 @@ docs/UpdateUserCityRequestBody.md
197
198
  docs/UpdateUserDescriptionRequestBody.md
198
199
  docs/UpdateUserRequestBody.md
199
200
  docs/UpdateUserRequestBodyLevelBySportsInner.md
201
+ docs/UpdateUserRequestBodyLocation.md
200
202
  docs/UserBookingItem.md
201
203
  docs/UserBookingsApi.md
202
204
  docs/UserClubCourtsApi.md
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.50
1
+ ## @tennac-booking/sdk@1.0.53
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.50 --save
39
+ npm install @tennac-booking/sdk@1.0.53 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -277,6 +277,7 @@ Class | Method | HTTP request | Description
277
277
  - [PaymentMethod](docs/PaymentMethod.md)
278
278
  - [PaymentMethodSetupResponse](docs/PaymentMethodSetupResponse.md)
279
279
  - [PaymentStatus](docs/PaymentStatus.md)
280
+ - [PickIUserLocationExcludeKeyofIUserLocationType](docs/PickIUserLocationExcludeKeyofIUserLocationType.md)
280
281
  - [PlayerWithPaymentMethod](docs/PlayerWithPaymentMethod.md)
281
282
  - [PriceResponse](docs/PriceResponse.md)
282
283
  - [ProfilePictureResponse](docs/ProfilePictureResponse.md)
@@ -328,6 +329,7 @@ Class | Method | HTTP request | Description
328
329
  - [UpdateUserDescriptionRequestBody](docs/UpdateUserDescriptionRequestBody.md)
329
330
  - [UpdateUserRequestBody](docs/UpdateUserRequestBody.md)
330
331
  - [UpdateUserRequestBodyLevelBySportsInner](docs/UpdateUserRequestBodyLevelBySportsInner.md)
332
+ - [UpdateUserRequestBodyLocation](docs/UpdateUserRequestBodyLocation.md)
331
333
  - [UserBookingItem](docs/UserBookingItem.md)
332
334
  - [UserInfoStaff](docs/UserInfoStaff.md)
333
335
  - [UserProfileResponse](docs/UserProfileResponse.md)
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3358,12 +3358,6 @@ export interface IUserAttributes {
3358
3358
  * @memberof IUserAttributes
3359
3359
  */
3360
3360
  'description'?: string;
3361
- /**
3362
- *
3363
- * @type {string}
3364
- * @memberof IUserAttributes
3365
- */
3366
- 'city'?: string;
3367
3361
  /**
3368
3362
  *
3369
3363
  * @type {boolean}
@@ -4131,6 +4125,85 @@ export const PaymentStatusInvoiceStatusEnum = {
4131
4125
 
4132
4126
  export type PaymentStatusInvoiceStatusEnum = typeof PaymentStatusInvoiceStatusEnum[keyof typeof PaymentStatusInvoiceStatusEnum];
4133
4127
 
4128
+ /**
4129
+ * From T, pick a set of properties whose keys are in the union K
4130
+ * @export
4131
+ * @interface PickIUserLocationExcludeKeyofIUserLocationType
4132
+ */
4133
+ export interface PickIUserLocationExcludeKeyofIUserLocationType {
4134
+ /**
4135
+ *
4136
+ * @type {Array<number>}
4137
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4138
+ */
4139
+ 'coordinates': Array<number>;
4140
+ /**
4141
+ *
4142
+ * @type {string}
4143
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4144
+ */
4145
+ 'mapboxId'?: string;
4146
+ /**
4147
+ *
4148
+ * @type {Array<string>}
4149
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4150
+ */
4151
+ 'mapboxPlaceType'?: Array<string>;
4152
+ /**
4153
+ *
4154
+ * @type {string}
4155
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4156
+ */
4157
+ 'mapboxPlaceName'?: string;
4158
+ /**
4159
+ *
4160
+ * @type {string}
4161
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4162
+ */
4163
+ 'mapboxAddress'?: string;
4164
+ /**
4165
+ *
4166
+ * @type {Array<{ [key: string]: any; }>}
4167
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4168
+ */
4169
+ 'mapboxContext'?: Array<{ [key: string]: any; }>;
4170
+ /**
4171
+ * Construct a type with a set of properties K of type T
4172
+ * @type {{ [key: string]: any; }}
4173
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4174
+ */
4175
+ 'mapboxRaw'?: { [key: string]: any; };
4176
+ /**
4177
+ *
4178
+ * @type {string}
4179
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4180
+ */
4181
+ 'city'?: string;
4182
+ /**
4183
+ *
4184
+ * @type {string}
4185
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4186
+ */
4187
+ 'country'?: string;
4188
+ /**
4189
+ *
4190
+ * @type {string}
4191
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4192
+ */
4193
+ 'postalCode'?: string;
4194
+ /**
4195
+ *
4196
+ * @type {string}
4197
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4198
+ */
4199
+ 'state'?: string;
4200
+ /**
4201
+ *
4202
+ * @type {string}
4203
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4204
+ */
4205
+ 'address'?: string;
4206
+ }
4134
4207
  /**
4135
4208
  *
4136
4209
  * @export
@@ -5028,12 +5101,6 @@ export interface StaffUserProfileResponse {
5028
5101
  * @memberof StaffUserProfileResponse
5029
5102
  */
5030
5103
  'description'?: string;
5031
- /**
5032
- *
5033
- * @type {string}
5034
- * @memberof StaffUserProfileResponse
5035
- */
5036
- 'city'?: string;
5037
5104
  /**
5038
5105
  *
5039
5106
  * @type {boolean}
@@ -5790,10 +5857,10 @@ export interface UpdateUserRequestBody {
5790
5857
  'description'?: string;
5791
5858
  /**
5792
5859
  *
5793
- * @type {string}
5860
+ * @type {UpdateUserRequestBodyLocation}
5794
5861
  * @memberof UpdateUserRequestBody
5795
5862
  */
5796
- 'city'?: string;
5863
+ 'location'?: UpdateUserRequestBodyLocation;
5797
5864
  }
5798
5865
  /**
5799
5866
  *
@@ -5814,6 +5881,98 @@ export interface UpdateUserRequestBodyLevelBySportsInner {
5814
5881
  */
5815
5882
  'sport': string;
5816
5883
  }
5884
+ /**
5885
+ *
5886
+ * @export
5887
+ * @interface UpdateUserRequestBodyLocation
5888
+ */
5889
+ export interface UpdateUserRequestBodyLocation {
5890
+ /**
5891
+ *
5892
+ * @type {Array<number>}
5893
+ * @memberof UpdateUserRequestBodyLocation
5894
+ */
5895
+ 'coordinates': Array<number>;
5896
+ /**
5897
+ *
5898
+ * @type {string}
5899
+ * @memberof UpdateUserRequestBodyLocation
5900
+ */
5901
+ 'mapboxId'?: string;
5902
+ /**
5903
+ *
5904
+ * @type {Array<string>}
5905
+ * @memberof UpdateUserRequestBodyLocation
5906
+ */
5907
+ 'mapboxPlaceType'?: Array<string>;
5908
+ /**
5909
+ *
5910
+ * @type {string}
5911
+ * @memberof UpdateUserRequestBodyLocation
5912
+ */
5913
+ 'mapboxPlaceName'?: string;
5914
+ /**
5915
+ *
5916
+ * @type {string}
5917
+ * @memberof UpdateUserRequestBodyLocation
5918
+ */
5919
+ 'mapboxAddress'?: string;
5920
+ /**
5921
+ *
5922
+ * @type {Array<{ [key: string]: any; }>}
5923
+ * @memberof UpdateUserRequestBodyLocation
5924
+ */
5925
+ 'mapboxContext'?: Array<{ [key: string]: any; }>;
5926
+ /**
5927
+ * Construct a type with a set of properties K of type T
5928
+ * @type {{ [key: string]: object; }}
5929
+ * @memberof UpdateUserRequestBodyLocation
5930
+ */
5931
+ 'mapboxRaw'?: { [key: string]: object; };
5932
+ /**
5933
+ *
5934
+ * @type {string}
5935
+ * @memberof UpdateUserRequestBodyLocation
5936
+ */
5937
+ 'city'?: string;
5938
+ /**
5939
+ *
5940
+ * @type {string}
5941
+ * @memberof UpdateUserRequestBodyLocation
5942
+ */
5943
+ 'country'?: string;
5944
+ /**
5945
+ *
5946
+ * @type {string}
5947
+ * @memberof UpdateUserRequestBodyLocation
5948
+ */
5949
+ 'postalCode'?: string;
5950
+ /**
5951
+ *
5952
+ * @type {string}
5953
+ * @memberof UpdateUserRequestBodyLocation
5954
+ */
5955
+ 'state'?: string;
5956
+ /**
5957
+ *
5958
+ * @type {string}
5959
+ * @memberof UpdateUserRequestBodyLocation
5960
+ */
5961
+ 'address'?: string;
5962
+ /**
5963
+ *
5964
+ * @type {string}
5965
+ * @memberof UpdateUserRequestBodyLocation
5966
+ */
5967
+ 'type'?: UpdateUserRequestBodyLocationTypeEnum;
5968
+ }
5969
+
5970
+ export const UpdateUserRequestBodyLocationTypeEnum = {
5971
+ Point: 'Point'
5972
+ } as const;
5973
+
5974
+ export type UpdateUserRequestBodyLocationTypeEnum = typeof UpdateUserRequestBodyLocationTypeEnum[keyof typeof UpdateUserRequestBodyLocationTypeEnum];
5975
+
5817
5976
  /**
5818
5977
  *
5819
5978
  * @export
@@ -6138,12 +6297,6 @@ export interface UserProfileResponse {
6138
6297
  * @memberof UserProfileResponse
6139
6298
  */
6140
6299
  'description'?: string;
6141
- /**
6142
- *
6143
- * @type {string}
6144
- * @memberof UserProfileResponse
6145
- */
6146
- 'city'?: string;
6147
6300
  /**
6148
6301
  *
6149
6302
  * @type {boolean}
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3301,12 +3301,6 @@ export interface IUserAttributes {
3301
3301
  * @memberof IUserAttributes
3302
3302
  */
3303
3303
  'description'?: string;
3304
- /**
3305
- *
3306
- * @type {string}
3307
- * @memberof IUserAttributes
3308
- */
3309
- 'city'?: string;
3310
3304
  /**
3311
3305
  *
3312
3306
  * @type {boolean}
@@ -4055,6 +4049,89 @@ export declare const PaymentStatusInvoiceStatusEnum: {
4055
4049
  readonly Canceled: "canceled";
4056
4050
  };
4057
4051
  export type PaymentStatusInvoiceStatusEnum = typeof PaymentStatusInvoiceStatusEnum[keyof typeof PaymentStatusInvoiceStatusEnum];
4052
+ /**
4053
+ * From T, pick a set of properties whose keys are in the union K
4054
+ * @export
4055
+ * @interface PickIUserLocationExcludeKeyofIUserLocationType
4056
+ */
4057
+ export interface PickIUserLocationExcludeKeyofIUserLocationType {
4058
+ /**
4059
+ *
4060
+ * @type {Array<number>}
4061
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4062
+ */
4063
+ 'coordinates': Array<number>;
4064
+ /**
4065
+ *
4066
+ * @type {string}
4067
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4068
+ */
4069
+ 'mapboxId'?: string;
4070
+ /**
4071
+ *
4072
+ * @type {Array<string>}
4073
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4074
+ */
4075
+ 'mapboxPlaceType'?: Array<string>;
4076
+ /**
4077
+ *
4078
+ * @type {string}
4079
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4080
+ */
4081
+ 'mapboxPlaceName'?: string;
4082
+ /**
4083
+ *
4084
+ * @type {string}
4085
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4086
+ */
4087
+ 'mapboxAddress'?: string;
4088
+ /**
4089
+ *
4090
+ * @type {Array<{ [key: string]: any; }>}
4091
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4092
+ */
4093
+ 'mapboxContext'?: Array<{
4094
+ [key: string]: any;
4095
+ }>;
4096
+ /**
4097
+ * Construct a type with a set of properties K of type T
4098
+ * @type {{ [key: string]: any; }}
4099
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4100
+ */
4101
+ 'mapboxRaw'?: {
4102
+ [key: string]: any;
4103
+ };
4104
+ /**
4105
+ *
4106
+ * @type {string}
4107
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4108
+ */
4109
+ 'city'?: string;
4110
+ /**
4111
+ *
4112
+ * @type {string}
4113
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4114
+ */
4115
+ 'country'?: string;
4116
+ /**
4117
+ *
4118
+ * @type {string}
4119
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4120
+ */
4121
+ 'postalCode'?: string;
4122
+ /**
4123
+ *
4124
+ * @type {string}
4125
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4126
+ */
4127
+ 'state'?: string;
4128
+ /**
4129
+ *
4130
+ * @type {string}
4131
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4132
+ */
4133
+ 'address'?: string;
4134
+ }
4058
4135
  /**
4059
4136
  *
4060
4137
  * @export
@@ -4950,12 +5027,6 @@ export interface StaffUserProfileResponse {
4950
5027
  * @memberof StaffUserProfileResponse
4951
5028
  */
4952
5029
  'description'?: string;
4953
- /**
4954
- *
4955
- * @type {string}
4956
- * @memberof StaffUserProfileResponse
4957
- */
4958
- 'city'?: string;
4959
5030
  /**
4960
5031
  *
4961
5032
  * @type {boolean}
@@ -5705,10 +5776,10 @@ export interface UpdateUserRequestBody {
5705
5776
  'description'?: string;
5706
5777
  /**
5707
5778
  *
5708
- * @type {string}
5779
+ * @type {UpdateUserRequestBodyLocation}
5709
5780
  * @memberof UpdateUserRequestBody
5710
5781
  */
5711
- 'city'?: string;
5782
+ 'location'?: UpdateUserRequestBodyLocation;
5712
5783
  }
5713
5784
  /**
5714
5785
  *
@@ -5729,6 +5800,99 @@ export interface UpdateUserRequestBodyLevelBySportsInner {
5729
5800
  */
5730
5801
  'sport': string;
5731
5802
  }
5803
+ /**
5804
+ *
5805
+ * @export
5806
+ * @interface UpdateUserRequestBodyLocation
5807
+ */
5808
+ export interface UpdateUserRequestBodyLocation {
5809
+ /**
5810
+ *
5811
+ * @type {Array<number>}
5812
+ * @memberof UpdateUserRequestBodyLocation
5813
+ */
5814
+ 'coordinates': Array<number>;
5815
+ /**
5816
+ *
5817
+ * @type {string}
5818
+ * @memberof UpdateUserRequestBodyLocation
5819
+ */
5820
+ 'mapboxId'?: string;
5821
+ /**
5822
+ *
5823
+ * @type {Array<string>}
5824
+ * @memberof UpdateUserRequestBodyLocation
5825
+ */
5826
+ 'mapboxPlaceType'?: Array<string>;
5827
+ /**
5828
+ *
5829
+ * @type {string}
5830
+ * @memberof UpdateUserRequestBodyLocation
5831
+ */
5832
+ 'mapboxPlaceName'?: string;
5833
+ /**
5834
+ *
5835
+ * @type {string}
5836
+ * @memberof UpdateUserRequestBodyLocation
5837
+ */
5838
+ 'mapboxAddress'?: string;
5839
+ /**
5840
+ *
5841
+ * @type {Array<{ [key: string]: any; }>}
5842
+ * @memberof UpdateUserRequestBodyLocation
5843
+ */
5844
+ 'mapboxContext'?: Array<{
5845
+ [key: string]: any;
5846
+ }>;
5847
+ /**
5848
+ * Construct a type with a set of properties K of type T
5849
+ * @type {{ [key: string]: object; }}
5850
+ * @memberof UpdateUserRequestBodyLocation
5851
+ */
5852
+ 'mapboxRaw'?: {
5853
+ [key: string]: object;
5854
+ };
5855
+ /**
5856
+ *
5857
+ * @type {string}
5858
+ * @memberof UpdateUserRequestBodyLocation
5859
+ */
5860
+ 'city'?: string;
5861
+ /**
5862
+ *
5863
+ * @type {string}
5864
+ * @memberof UpdateUserRequestBodyLocation
5865
+ */
5866
+ 'country'?: string;
5867
+ /**
5868
+ *
5869
+ * @type {string}
5870
+ * @memberof UpdateUserRequestBodyLocation
5871
+ */
5872
+ 'postalCode'?: string;
5873
+ /**
5874
+ *
5875
+ * @type {string}
5876
+ * @memberof UpdateUserRequestBodyLocation
5877
+ */
5878
+ 'state'?: string;
5879
+ /**
5880
+ *
5881
+ * @type {string}
5882
+ * @memberof UpdateUserRequestBodyLocation
5883
+ */
5884
+ 'address'?: string;
5885
+ /**
5886
+ *
5887
+ * @type {string}
5888
+ * @memberof UpdateUserRequestBodyLocation
5889
+ */
5890
+ 'type'?: UpdateUserRequestBodyLocationTypeEnum;
5891
+ }
5892
+ export declare const UpdateUserRequestBodyLocationTypeEnum: {
5893
+ readonly Point: "Point";
5894
+ };
5895
+ export type UpdateUserRequestBodyLocationTypeEnum = typeof UpdateUserRequestBodyLocationTypeEnum[keyof typeof UpdateUserRequestBodyLocationTypeEnum];
5732
5896
  /**
5733
5897
  *
5734
5898
  * @export
@@ -6049,12 +6213,6 @@ export interface UserProfileResponse {
6049
6213
  * @memberof UserProfileResponse
6050
6214
  */
6051
6215
  'description'?: string;
6052
- /**
6053
- *
6054
- * @type {string}
6055
- * @memberof UserProfileResponse
6056
- */
6057
- 'city'?: string;
6058
6216
  /**
6059
6217
  *
6060
6218
  * @type {boolean}
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.50
8
+ * The version of the OpenAPI document: 1.0.53
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.ManagerBookingsApiAxiosParamCreator = exports.EventsApi = 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.UserBookingItemBookingStatusEnum = exports.UserBookingItemMyPaymentStatusEnum = 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.StaffEventsApiFactory = exports.StaffEventsApiFp = 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 = 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 = void 0;
25
+ exports.EventsApi = 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.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.StaffEventsApiFp = 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 = 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 = void 0;
28
28
  const axios_1 = require("axios");
29
29
  // Some imports not used depending on template conditions
30
30
  // @ts-ignore
@@ -179,6 +179,9 @@ exports.UpdateCourtRequestSurfaceEnum = {
179
179
  Grass: 'grass',
180
180
  Hard: 'hard'
181
181
  };
182
+ exports.UpdateUserRequestBodyLocationTypeEnum = {
183
+ Point: 'Point'
184
+ };
182
185
  exports.UserBookingItemMyPaymentStatusEnum = {
183
186
  Paid: 'paid',
184
187
  Pending: 'pending',
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.50
5
+ * The version of the OpenAPI document: 1.0.53
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.50
8
+ * The version of the OpenAPI document: 1.0.53
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.50
5
+ * The version of the OpenAPI document: 1.0.53
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.50
8
+ * The version of the OpenAPI document: 1.0.53
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.50
5
+ * The version of the OpenAPI document: 1.0.53
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.50
8
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3301,12 +3301,6 @@ export interface IUserAttributes {
3301
3301
  * @memberof IUserAttributes
3302
3302
  */
3303
3303
  'description'?: string;
3304
- /**
3305
- *
3306
- * @type {string}
3307
- * @memberof IUserAttributes
3308
- */
3309
- 'city'?: string;
3310
3304
  /**
3311
3305
  *
3312
3306
  * @type {boolean}
@@ -4055,6 +4049,89 @@ export declare const PaymentStatusInvoiceStatusEnum: {
4055
4049
  readonly Canceled: "canceled";
4056
4050
  };
4057
4051
  export type PaymentStatusInvoiceStatusEnum = typeof PaymentStatusInvoiceStatusEnum[keyof typeof PaymentStatusInvoiceStatusEnum];
4052
+ /**
4053
+ * From T, pick a set of properties whose keys are in the union K
4054
+ * @export
4055
+ * @interface PickIUserLocationExcludeKeyofIUserLocationType
4056
+ */
4057
+ export interface PickIUserLocationExcludeKeyofIUserLocationType {
4058
+ /**
4059
+ *
4060
+ * @type {Array<number>}
4061
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4062
+ */
4063
+ 'coordinates': Array<number>;
4064
+ /**
4065
+ *
4066
+ * @type {string}
4067
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4068
+ */
4069
+ 'mapboxId'?: string;
4070
+ /**
4071
+ *
4072
+ * @type {Array<string>}
4073
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4074
+ */
4075
+ 'mapboxPlaceType'?: Array<string>;
4076
+ /**
4077
+ *
4078
+ * @type {string}
4079
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4080
+ */
4081
+ 'mapboxPlaceName'?: string;
4082
+ /**
4083
+ *
4084
+ * @type {string}
4085
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4086
+ */
4087
+ 'mapboxAddress'?: string;
4088
+ /**
4089
+ *
4090
+ * @type {Array<{ [key: string]: any; }>}
4091
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4092
+ */
4093
+ 'mapboxContext'?: Array<{
4094
+ [key: string]: any;
4095
+ }>;
4096
+ /**
4097
+ * Construct a type with a set of properties K of type T
4098
+ * @type {{ [key: string]: any; }}
4099
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4100
+ */
4101
+ 'mapboxRaw'?: {
4102
+ [key: string]: any;
4103
+ };
4104
+ /**
4105
+ *
4106
+ * @type {string}
4107
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4108
+ */
4109
+ 'city'?: string;
4110
+ /**
4111
+ *
4112
+ * @type {string}
4113
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4114
+ */
4115
+ 'country'?: string;
4116
+ /**
4117
+ *
4118
+ * @type {string}
4119
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4120
+ */
4121
+ 'postalCode'?: string;
4122
+ /**
4123
+ *
4124
+ * @type {string}
4125
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4126
+ */
4127
+ 'state'?: string;
4128
+ /**
4129
+ *
4130
+ * @type {string}
4131
+ * @memberof PickIUserLocationExcludeKeyofIUserLocationType
4132
+ */
4133
+ 'address'?: string;
4134
+ }
4058
4135
  /**
4059
4136
  *
4060
4137
  * @export
@@ -4950,12 +5027,6 @@ export interface StaffUserProfileResponse {
4950
5027
  * @memberof StaffUserProfileResponse
4951
5028
  */
4952
5029
  'description'?: string;
4953
- /**
4954
- *
4955
- * @type {string}
4956
- * @memberof StaffUserProfileResponse
4957
- */
4958
- 'city'?: string;
4959
5030
  /**
4960
5031
  *
4961
5032
  * @type {boolean}
@@ -5705,10 +5776,10 @@ export interface UpdateUserRequestBody {
5705
5776
  'description'?: string;
5706
5777
  /**
5707
5778
  *
5708
- * @type {string}
5779
+ * @type {UpdateUserRequestBodyLocation}
5709
5780
  * @memberof UpdateUserRequestBody
5710
5781
  */
5711
- 'city'?: string;
5782
+ 'location'?: UpdateUserRequestBodyLocation;
5712
5783
  }
5713
5784
  /**
5714
5785
  *
@@ -5729,6 +5800,99 @@ export interface UpdateUserRequestBodyLevelBySportsInner {
5729
5800
  */
5730
5801
  'sport': string;
5731
5802
  }
5803
+ /**
5804
+ *
5805
+ * @export
5806
+ * @interface UpdateUserRequestBodyLocation
5807
+ */
5808
+ export interface UpdateUserRequestBodyLocation {
5809
+ /**
5810
+ *
5811
+ * @type {Array<number>}
5812
+ * @memberof UpdateUserRequestBodyLocation
5813
+ */
5814
+ 'coordinates': Array<number>;
5815
+ /**
5816
+ *
5817
+ * @type {string}
5818
+ * @memberof UpdateUserRequestBodyLocation
5819
+ */
5820
+ 'mapboxId'?: string;
5821
+ /**
5822
+ *
5823
+ * @type {Array<string>}
5824
+ * @memberof UpdateUserRequestBodyLocation
5825
+ */
5826
+ 'mapboxPlaceType'?: Array<string>;
5827
+ /**
5828
+ *
5829
+ * @type {string}
5830
+ * @memberof UpdateUserRequestBodyLocation
5831
+ */
5832
+ 'mapboxPlaceName'?: string;
5833
+ /**
5834
+ *
5835
+ * @type {string}
5836
+ * @memberof UpdateUserRequestBodyLocation
5837
+ */
5838
+ 'mapboxAddress'?: string;
5839
+ /**
5840
+ *
5841
+ * @type {Array<{ [key: string]: any; }>}
5842
+ * @memberof UpdateUserRequestBodyLocation
5843
+ */
5844
+ 'mapboxContext'?: Array<{
5845
+ [key: string]: any;
5846
+ }>;
5847
+ /**
5848
+ * Construct a type with a set of properties K of type T
5849
+ * @type {{ [key: string]: object; }}
5850
+ * @memberof UpdateUserRequestBodyLocation
5851
+ */
5852
+ 'mapboxRaw'?: {
5853
+ [key: string]: object;
5854
+ };
5855
+ /**
5856
+ *
5857
+ * @type {string}
5858
+ * @memberof UpdateUserRequestBodyLocation
5859
+ */
5860
+ 'city'?: string;
5861
+ /**
5862
+ *
5863
+ * @type {string}
5864
+ * @memberof UpdateUserRequestBodyLocation
5865
+ */
5866
+ 'country'?: string;
5867
+ /**
5868
+ *
5869
+ * @type {string}
5870
+ * @memberof UpdateUserRequestBodyLocation
5871
+ */
5872
+ 'postalCode'?: string;
5873
+ /**
5874
+ *
5875
+ * @type {string}
5876
+ * @memberof UpdateUserRequestBodyLocation
5877
+ */
5878
+ 'state'?: string;
5879
+ /**
5880
+ *
5881
+ * @type {string}
5882
+ * @memberof UpdateUserRequestBodyLocation
5883
+ */
5884
+ 'address'?: string;
5885
+ /**
5886
+ *
5887
+ * @type {string}
5888
+ * @memberof UpdateUserRequestBodyLocation
5889
+ */
5890
+ 'type'?: UpdateUserRequestBodyLocationTypeEnum;
5891
+ }
5892
+ export declare const UpdateUserRequestBodyLocationTypeEnum: {
5893
+ readonly Point: "Point";
5894
+ };
5895
+ export type UpdateUserRequestBodyLocationTypeEnum = typeof UpdateUserRequestBodyLocationTypeEnum[keyof typeof UpdateUserRequestBodyLocationTypeEnum];
5732
5896
  /**
5733
5897
  *
5734
5898
  * @export
@@ -6049,12 +6213,6 @@ export interface UserProfileResponse {
6049
6213
  * @memberof UserProfileResponse
6050
6214
  */
6051
6215
  'description'?: string;
6052
- /**
6053
- *
6054
- * @type {string}
6055
- * @memberof UserProfileResponse
6056
- */
6057
- 'city'?: string;
6058
6216
  /**
6059
6217
  *
6060
6218
  * @type {boolean}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -174,6 +174,9 @@ export const UpdateCourtRequestSurfaceEnum = {
174
174
  Grass: 'grass',
175
175
  Hard: 'hard'
176
176
  };
177
+ export const UpdateUserRequestBodyLocationTypeEnum = {
178
+ Point: 'Point'
179
+ };
177
180
  export const UserBookingItemMyPaymentStatusEnum = {
178
181
  Paid: 'paid',
179
182
  Pending: 'pending',
@@ -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.50
5
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
3
3
  * API for managing pickle ball games and players
4
4
  *
5
- * The version of the OpenAPI document: 1.0.50
5
+ * The version of the OpenAPI document: 1.0.53
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
  * booking_api
6
6
  * API for managing pickle ball games and players
7
7
  *
8
- * The version of the OpenAPI document: 1.0.50
8
+ * The version of the OpenAPI document: 1.0.53
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,7 +29,6 @@ Name | Type | Description | Notes
29
29
  **setupIntentId** | **string** | | [optional] [default to undefined]
30
30
  **favoriteClubs** | **Array&lt;string&gt;** | | [optional] [default to undefined]
31
31
  **description** | **string** | | [optional] [default to undefined]
32
- **city** | **string** | | [optional] [default to undefined]
33
32
  **isProfileVisible** | **boolean** | | [default to undefined]
34
33
  **favoritePlayers** | **Array&lt;string&gt;** | | [optional] [default to undefined]
35
34
  **sports** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
@@ -64,7 +63,6 @@ const instance: IUserAttributes = {
64
63
  setupIntentId,
65
64
  favoriteClubs,
66
65
  description,
67
- city,
68
66
  isProfileVisible,
69
67
  favoritePlayers,
70
68
  sports,
@@ -0,0 +1,43 @@
1
+ # PickIUserLocationExcludeKeyofIUserLocationType
2
+
3
+ From T, pick a set of properties whose keys are in the union K
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **coordinates** | **Array&lt;number&gt;** | | [default to undefined]
10
+ **mapboxId** | **string** | | [optional] [default to undefined]
11
+ **mapboxPlaceType** | **Array&lt;string&gt;** | | [optional] [default to undefined]
12
+ **mapboxPlaceName** | **string** | | [optional] [default to undefined]
13
+ **mapboxAddress** | **string** | | [optional] [default to undefined]
14
+ **mapboxContext** | **Array&lt;{ [key: string]: any; }&gt;** | | [optional] [default to undefined]
15
+ **mapboxRaw** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
16
+ **city** | **string** | | [optional] [default to undefined]
17
+ **country** | **string** | | [optional] [default to undefined]
18
+ **postalCode** | **string** | | [optional] [default to undefined]
19
+ **state** | **string** | | [optional] [default to undefined]
20
+ **address** | **string** | | [optional] [default to undefined]
21
+
22
+ ## Example
23
+
24
+ ```typescript
25
+ import { PickIUserLocationExcludeKeyofIUserLocationType } from '@tennac-booking/sdk';
26
+
27
+ const instance: PickIUserLocationExcludeKeyofIUserLocationType = {
28
+ coordinates,
29
+ mapboxId,
30
+ mapboxPlaceType,
31
+ mapboxPlaceName,
32
+ mapboxAddress,
33
+ mapboxContext,
34
+ mapboxRaw,
35
+ city,
36
+ country,
37
+ postalCode,
38
+ state,
39
+ address,
40
+ };
41
+ ```
42
+
43
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -29,7 +29,6 @@ Name | Type | Description | Notes
29
29
  **setupIntentId** | **string** | | [optional] [default to undefined]
30
30
  **favoriteClubs** | **Array&lt;string&gt;** | | [optional] [default to undefined]
31
31
  **description** | **string** | | [optional] [default to undefined]
32
- **city** | **string** | | [optional] [default to undefined]
33
32
  **isProfileVisible** | **boolean** | | [default to undefined]
34
33
  **favoritePlayers** | **Array&lt;string&gt;** | | [optional] [default to undefined]
35
34
  **sports** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
@@ -66,7 +65,6 @@ const instance: StaffUserProfileResponse = {
66
65
  setupIntentId,
67
66
  favoriteClubs,
68
67
  description,
69
- city,
70
68
  isProfileVisible,
71
69
  favoritePlayers,
72
70
  sports,
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
14
14
  **levelBySports** | [**Array&lt;UpdateUserRequestBodyLevelBySportsInner&gt;**](UpdateUserRequestBodyLevelBySportsInner.md) | | [optional] [default to undefined]
15
15
  **isProfileVisible** | **boolean** | | [optional] [default to undefined]
16
16
  **description** | **string** | | [optional] [default to undefined]
17
- **city** | **string** | | [optional] [default to undefined]
17
+ **location** | [**UpdateUserRequestBodyLocation**](UpdateUserRequestBodyLocation.md) | | [optional] [default to undefined]
18
18
 
19
19
  ## Example
20
20
 
@@ -31,7 +31,7 @@ const instance: UpdateUserRequestBody = {
31
31
  levelBySports,
32
32
  isProfileVisible,
33
33
  description,
34
- city,
34
+ location,
35
35
  };
36
36
  ```
37
37
 
@@ -0,0 +1,44 @@
1
+ # UpdateUserRequestBodyLocation
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **coordinates** | **Array&lt;number&gt;** | | [default to undefined]
9
+ **mapboxId** | **string** | | [optional] [default to undefined]
10
+ **mapboxPlaceType** | **Array&lt;string&gt;** | | [optional] [default to undefined]
11
+ **mapboxPlaceName** | **string** | | [optional] [default to undefined]
12
+ **mapboxAddress** | **string** | | [optional] [default to undefined]
13
+ **mapboxContext** | **Array&lt;{ [key: string]: any; }&gt;** | | [optional] [default to undefined]
14
+ **mapboxRaw** | **{ [key: string]: object; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
15
+ **city** | **string** | | [optional] [default to undefined]
16
+ **country** | **string** | | [optional] [default to undefined]
17
+ **postalCode** | **string** | | [optional] [default to undefined]
18
+ **state** | **string** | | [optional] [default to undefined]
19
+ **address** | **string** | | [optional] [default to undefined]
20
+ **type** | **string** | | [optional] [default to undefined]
21
+
22
+ ## Example
23
+
24
+ ```typescript
25
+ import { UpdateUserRequestBodyLocation } from '@tennac-booking/sdk';
26
+
27
+ const instance: UpdateUserRequestBodyLocation = {
28
+ coordinates,
29
+ mapboxId,
30
+ mapboxPlaceType,
31
+ mapboxPlaceName,
32
+ mapboxAddress,
33
+ mapboxContext,
34
+ mapboxRaw,
35
+ city,
36
+ country,
37
+ postalCode,
38
+ state,
39
+ address,
40
+ type,
41
+ };
42
+ ```
43
+
44
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -29,7 +29,6 @@ Name | Type | Description | Notes
29
29
  **setupIntentId** | **string** | | [optional] [default to undefined]
30
30
  **favoriteClubs** | **Array&lt;string&gt;** | | [optional] [default to undefined]
31
31
  **description** | **string** | | [optional] [default to undefined]
32
- **city** | **string** | | [optional] [default to undefined]
33
32
  **isProfileVisible** | **boolean** | | [default to undefined]
34
33
  **favoritePlayers** | **Array&lt;string&gt;** | | [optional] [default to undefined]
35
34
  **sports** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
@@ -69,7 +68,6 @@ const instance: UserProfileResponse = {
69
68
  setupIntentId,
70
69
  favoriteClubs,
71
70
  description,
72
- city,
73
71
  isProfileVisible,
74
72
  favoritePlayers,
75
73
  sports,
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * booking_api
5
5
  * API for managing pickle ball games and players
6
6
  *
7
- * The version of the OpenAPI document: 1.0.50
7
+ * The version of the OpenAPI document: 1.0.53
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {