@tennac-booking/sdk 1.0.265 → 1.0.267

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.
@@ -133,6 +133,7 @@ docs/ClubSettingsStaffApi.md
133
133
  docs/ClubSubscriberSummaryResponse.md
134
134
  docs/ClubSubscriptions.md
135
135
  docs/ClubSummary.md
136
+ docs/ClubType.md
136
137
  docs/ClubUserCountResponse.md
137
138
  docs/ClubsApi.md
138
139
  docs/ClubsManagerApi.md
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.265
1
+ ## @tennac-booking/sdk@1.0.267
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.265 --save
39
+ npm install @tennac-booking/sdk@1.0.267 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -448,6 +448,7 @@ Class | Method | HTTP request | Description
448
448
  - [ClubSubscriberSummaryResponse](docs/ClubSubscriberSummaryResponse.md)
449
449
  - [ClubSubscriptions](docs/ClubSubscriptions.md)
450
450
  - [ClubSummary](docs/ClubSummary.md)
451
+ - [ClubType](docs/ClubType.md)
451
452
  - [ClubUserCountResponse](docs/ClubUserCountResponse.md)
452
453
  - [ComingEventsPageResponse](docs/ComingEventsPageResponse.md)
453
454
  - [CompleteRegisterRequestBody](docs/CompleteRegisterRequestBody.md)
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2252,16 +2252,16 @@ export interface ClientSubscription {
2252
2252
  'status': string;
2253
2253
  /**
2254
2254
  *
2255
- * @type {number}
2255
+ * @type {string}
2256
2256
  * @memberof ClientSubscription
2257
2257
  */
2258
- 'currentPeriodStart': number;
2258
+ 'currentPeriodStart': string;
2259
2259
  /**
2260
2260
  *
2261
- * @type {number}
2261
+ * @type {string}
2262
2262
  * @memberof ClientSubscription
2263
2263
  */
2264
- 'currentPeriodEnd': number;
2264
+ 'currentPeriodEnd': string;
2265
2265
  /**
2266
2266
  *
2267
2267
  * @type {boolean}
@@ -2282,16 +2282,16 @@ export interface ClientSubscription {
2282
2282
  'price'?: ClientSubscriptionPrice | null;
2283
2283
  /**
2284
2284
  *
2285
- * @type {number}
2285
+ * @type {string}
2286
2286
  * @memberof ClientSubscription
2287
2287
  */
2288
- 'dueDate'?: number | null;
2288
+ 'dueDate'?: string | null;
2289
2289
  /**
2290
2290
  *
2291
- * @type {number}
2291
+ * @type {string}
2292
2292
  * @memberof ClientSubscription
2293
2293
  */
2294
- 'nextPaymentDate'?: number | null;
2294
+ 'nextPaymentDate'?: string | null;
2295
2295
  /**
2296
2296
  *
2297
2297
  * @type {ClientSubscriptionPaymentMethod}
@@ -3195,6 +3195,12 @@ export interface ClubPageResponse {
3195
3195
  * @memberof ClubPageResponse
3196
3196
  */
3197
3197
  'isActive': boolean;
3198
+ /**
3199
+ *
3200
+ * @type {ClubType}
3201
+ * @memberof ClubPageResponse
3202
+ */
3203
+ 'clubType'?: ClubType;
3198
3204
  /**
3199
3205
  * Indique si le club utilise la fonctionnalité de paiement
3200
3206
  * @type {boolean}
@@ -3310,6 +3316,8 @@ export interface ClubPageResponse {
3310
3316
  */
3311
3317
  'updatedAt'?: ClubResponseUpdatedAt;
3312
3318
  }
3319
+
3320
+
3313
3321
  /**
3314
3322
  * Statut du client dans le club (si l\'utilisateur est connecte)
3315
3323
  * @export
@@ -4251,6 +4259,12 @@ export interface ClubResponse {
4251
4259
  * @memberof ClubResponse
4252
4260
  */
4253
4261
  'isActive': boolean;
4262
+ /**
4263
+ *
4264
+ * @type {ClubType}
4265
+ * @memberof ClubResponse
4266
+ */
4267
+ 'clubType'?: ClubType;
4254
4268
  /**
4255
4269
  * Indique si le club utilise la fonctionnalité de paiement
4256
4270
  * @type {boolean}
@@ -4348,6 +4362,8 @@ export interface ClubResponse {
4348
4362
  */
4349
4363
  'updatedAt'?: ClubResponseUpdatedAt;
4350
4364
  }
4365
+
4366
+
4351
4367
  /**
4352
4368
  * Date de création
4353
4369
  * @export
@@ -4605,6 +4621,20 @@ export interface ClubSummary {
4605
4621
  */
4606
4622
  'tags'?: Array<string>;
4607
4623
  }
4624
+ /**
4625
+ *
4626
+ * @export
4627
+ * @enum {string}
4628
+ */
4629
+
4630
+ export const ClubType = {
4631
+ Public: 'public',
4632
+ School: 'school'
4633
+ } as const;
4634
+
4635
+ export type ClubType = typeof ClubType[keyof typeof ClubType];
4636
+
4637
+
4608
4638
  /**
4609
4639
  *
4610
4640
  * @export
@@ -7152,6 +7182,18 @@ export interface EventDetailResponse {
7152
7182
  * @memberof EventDetailResponse
7153
7183
  */
7154
7184
  'myPaymentLink'?: string | null;
7185
+ /**
7186
+ *
7187
+ * @type {string}
7188
+ * @memberof EventDetailResponse
7189
+ */
7190
+ 'paymentUrl'?: string | null;
7191
+ /**
7192
+ *
7193
+ * @type {string}
7194
+ * @memberof EventDetailResponse
7195
+ */
7196
+ 'paymentInvoiceId'?: string | null;
7155
7197
  /**
7156
7198
  *
7157
7199
  * @type {string}
@@ -10779,6 +10821,8 @@ export const NotificationType = {
10779
10821
  EventCancelled: 'event_cancelled',
10780
10822
  OpenBookingJoined: 'open_booking_joined',
10781
10823
  OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
10824
+ OpenBookingLeft: 'open_booking_left',
10825
+ OpenBookingCompleted: 'open_booking_completed',
10782
10826
  WaitlistSpotAvailable: 'waitlist_spot_available',
10783
10827
  WaitlistConfirmed: 'waitlist_confirmed',
10784
10828
  SubscriptionConfirmed: 'subscription_confirmed',
@@ -12493,6 +12537,18 @@ export interface PublishEventResponse {
12493
12537
  * @memberof PublishEventResponse
12494
12538
  */
12495
12539
  'myPaymentLink'?: string;
12540
+ /**
12541
+ *
12542
+ * @type {string}
12543
+ * @memberof PublishEventResponse
12544
+ */
12545
+ 'paymentUrl'?: string | null;
12546
+ /**
12547
+ *
12548
+ * @type {string}
12549
+ * @memberof PublishEventResponse
12550
+ */
12551
+ 'paymentInvoiceId'?: string | null;
12496
12552
  }
12497
12553
  /**
12498
12554
  *
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2205,16 +2205,16 @@ export interface ClientSubscription {
2205
2205
  'status': string;
2206
2206
  /**
2207
2207
  *
2208
- * @type {number}
2208
+ * @type {string}
2209
2209
  * @memberof ClientSubscription
2210
2210
  */
2211
- 'currentPeriodStart': number;
2211
+ 'currentPeriodStart': string;
2212
2212
  /**
2213
2213
  *
2214
- * @type {number}
2214
+ * @type {string}
2215
2215
  * @memberof ClientSubscription
2216
2216
  */
2217
- 'currentPeriodEnd': number;
2217
+ 'currentPeriodEnd': string;
2218
2218
  /**
2219
2219
  *
2220
2220
  * @type {boolean}
@@ -2235,16 +2235,16 @@ export interface ClientSubscription {
2235
2235
  'price'?: ClientSubscriptionPrice | null;
2236
2236
  /**
2237
2237
  *
2238
- * @type {number}
2238
+ * @type {string}
2239
2239
  * @memberof ClientSubscription
2240
2240
  */
2241
- 'dueDate'?: number | null;
2241
+ 'dueDate'?: string | null;
2242
2242
  /**
2243
2243
  *
2244
- * @type {number}
2244
+ * @type {string}
2245
2245
  * @memberof ClientSubscription
2246
2246
  */
2247
- 'nextPaymentDate'?: number | null;
2247
+ 'nextPaymentDate'?: string | null;
2248
2248
  /**
2249
2249
  *
2250
2250
  * @type {ClientSubscriptionPaymentMethod}
@@ -3139,6 +3139,12 @@ export interface ClubPageResponse {
3139
3139
  * @memberof ClubPageResponse
3140
3140
  */
3141
3141
  'isActive': boolean;
3142
+ /**
3143
+ *
3144
+ * @type {ClubType}
3145
+ * @memberof ClubPageResponse
3146
+ */
3147
+ 'clubType'?: ClubType;
3142
3148
  /**
3143
3149
  * Indique si le club utilise la fonctionnalité de paiement
3144
3150
  * @type {boolean}
@@ -4209,6 +4215,12 @@ export interface ClubResponse {
4209
4215
  * @memberof ClubResponse
4210
4216
  */
4211
4217
  'isActive': boolean;
4218
+ /**
4219
+ *
4220
+ * @type {ClubType}
4221
+ * @memberof ClubResponse
4222
+ */
4223
+ 'clubType'?: ClubType;
4212
4224
  /**
4213
4225
  * Indique si le club utilise la fonctionnalité de paiement
4214
4226
  * @type {boolean}
@@ -4568,6 +4580,16 @@ export interface ClubSummary {
4568
4580
  */
4569
4581
  'tags'?: Array<string>;
4570
4582
  }
4583
+ /**
4584
+ *
4585
+ * @export
4586
+ * @enum {string}
4587
+ */
4588
+ export declare const ClubType: {
4589
+ readonly Public: "public";
4590
+ readonly School: "school";
4591
+ };
4592
+ export type ClubType = typeof ClubType[keyof typeof ClubType];
4571
4593
  /**
4572
4594
  *
4573
4595
  * @export
@@ -7055,6 +7077,18 @@ export interface EventDetailResponse {
7055
7077
  * @memberof EventDetailResponse
7056
7078
  */
7057
7079
  'myPaymentLink'?: string | null;
7080
+ /**
7081
+ *
7082
+ * @type {string}
7083
+ * @memberof EventDetailResponse
7084
+ */
7085
+ 'paymentUrl'?: string | null;
7086
+ /**
7087
+ *
7088
+ * @type {string}
7089
+ * @memberof EventDetailResponse
7090
+ */
7091
+ 'paymentInvoiceId'?: string | null;
7058
7092
  /**
7059
7093
  *
7060
7094
  * @type {string}
@@ -10637,6 +10671,8 @@ export declare const NotificationType: {
10637
10671
  readonly EventCancelled: "event_cancelled";
10638
10672
  readonly OpenBookingJoined: "open_booking_joined";
10639
10673
  readonly OpenBookingJoinConfirmed: "open_booking_join_confirmed";
10674
+ readonly OpenBookingLeft: "open_booking_left";
10675
+ readonly OpenBookingCompleted: "open_booking_completed";
10640
10676
  readonly WaitlistSpotAvailable: "waitlist_spot_available";
10641
10677
  readonly WaitlistConfirmed: "waitlist_confirmed";
10642
10678
  readonly SubscriptionConfirmed: "subscription_confirmed";
@@ -12301,6 +12337,18 @@ export interface PublishEventResponse {
12301
12337
  * @memberof PublishEventResponse
12302
12338
  */
12303
12339
  'myPaymentLink'?: string;
12340
+ /**
12341
+ *
12342
+ * @type {string}
12343
+ * @memberof PublishEventResponse
12344
+ */
12345
+ 'paymentUrl'?: string | null;
12346
+ /**
12347
+ *
12348
+ * @type {string}
12349
+ * @memberof PublishEventResponse
12350
+ */
12351
+ 'paymentInvoiceId'?: string | null;
12304
12352
  }
12305
12353
  /**
12306
12354
  *
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * openapi.json
6
6
  * Pandook API Documentation
7
7
  *
8
- * The version of the OpenAPI document: 1.0.265
8
+ * The version of the OpenAPI document: 1.0.267
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,11 +13,11 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.SportKey = exports.RegisterRequestBodyLocationTypeEnum = exports.RecurringDefinitionResponseRecurringTypeEnum = exports.QuickReservationCourtType = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentStatus = exports.PaymentProviderType = exports.PaymentMethod = exports.ParticipationType = exports.PartialPublicAccessSettingsPaymentModeEnum = exports.OnboardingStatusResponseCurrentStepEnum = exports.NotificationType = exports.NotificationTargetPreviewTypeEnum = exports.NotificationActorType = exports.InvoiceStatusSETUPSUCCESS = exports.InvoiceStatusSETUPPENDING = exports.InvoiceStatus = exports.ImageContextType = exports.IUserLocationTypeEnum = exports.IUserAttributesCreatedFromEnum = exports.Gender = exports.EventResponseVisibilityTypeEnum = exports.EventResponseParticipationTypeEnum = exports.EventResponseRecurringTypeEnum = exports.EventResponseTypeEnum = exports.EventBookingStatus = exports.EventBookingDetailSummaryUserParticipationStatusEnum = exports.EventBookingDetailEventSummaryParticipationTypeEnum = exports.EventBookingDetailEventSummaryRecurringTypeEnum = exports.EventBookingDetailEventSummaryTypeEnum = exports.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CreateActualityRequestDiffusionModeEnum = exports.CourtStatus = exports.CourtEnvironment = exports.ClubRoleResponseRoleEnum = exports.ClubOnboardingActionConnectAccountStatusEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingSummaryUserParticipationStatusEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
17
- exports.ClubAnalyticsStaffApiAxiosParamCreator = exports.ClubAnalyticsApi = exports.ClubAnalyticsApiFactory = exports.ClubAnalyticsApiFp = exports.ClubAnalyticsApiAxiosParamCreator = exports.ClientApi = exports.ClientApiFactory = exports.ClientApiFp = exports.ClientApiAxiosParamCreator = exports.BookingsUserApi = exports.BookingsUserApiFactory = exports.BookingsUserApiFp = exports.BookingsUserApiAxiosParamCreator = exports.BookingsStaffApi = exports.BookingsStaffApiFactory = exports.BookingsStaffApiFp = exports.BookingsStaffApiAxiosParamCreator = exports.BookingsManagerApi = exports.BookingsManagerApiFactory = exports.BookingsManagerApiFp = exports.BookingsManagerApiAxiosParamCreator = exports.BookingsApi = exports.BookingsApiFactory = exports.BookingsApiFp = exports.BookingsApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.WeekdayKey = exports.WaitListResponseTargetTypeEnum = exports.WaitListEntryWithPlayerTargetTypeEnum = exports.VisibilityType = exports.UserProfileResponseCreatedFromEnum = exports.UserLocationSummaryTypeEnum = exports.UpdateRecurringDefinitionRequestRecurringTypeEnum = exports.UpdateRecurringDefinitionRequestParticipationTypeEnum = exports.UpdateRecurringDefinitionRequestTypeEnum = exports.UpdateRecurringDefinitionRequestVisibilityTypeEnum = exports.UpdateEventRequestVisibilityTypeEnum = exports.UpdateEventRequestParticipationTypeEnum = exports.UpdateEventRequestRecurringTypeEnum = exports.UpdateEventRequestTypeEnum = exports.UpdateClubRoleRequestRoleEnum = exports.UpdateClubMemberRequestRoleEnum = exports.TrendDirection = exports.SurfaceType = exports.SupportedLanguage = exports.StaffUserProfileResponseCreatedFromEnum = exports.StaffBookingPaymentState = void 0;
18
- exports.EventsApiFactory = exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ContactApi = exports.ContactApiFactory = exports.ContactApiFp = exports.ContactApiAxiosParamCreator = exports.ClubsStaffApi = exports.ClubsStaffApiFactory = exports.ClubsStaffApiFp = exports.ClubsStaffApiAxiosParamCreator = exports.ClubsManagerApi = exports.ClubsManagerApiFactory = exports.ClubsManagerApiFp = exports.ClubsManagerApiAxiosParamCreator = exports.ClubsApi = exports.ClubsApiFactory = exports.ClubsApiFp = exports.ClubsApiAxiosParamCreator = exports.ClubSettingsStaffApi = exports.ClubSettingsStaffApiFactory = exports.ClubSettingsStaffApiFp = exports.ClubSettingsStaffApiAxiosParamCreator = exports.ClubSettingsManagerApi = exports.ClubSettingsManagerApiFactory = exports.ClubSettingsManagerApiFp = exports.ClubSettingsManagerApiAxiosParamCreator = exports.ClubRolesStaffApi = exports.ClubRolesStaffApiFactory = exports.ClubRolesStaffApiFp = exports.ClubRolesStaffApiAxiosParamCreator = exports.ClubRolesManagerApi = exports.ClubRolesManagerApiFactory = exports.ClubRolesManagerApiFp = exports.ClubRolesManagerApiAxiosParamCreator = exports.ClubCustomerStaffApi = exports.ClubCustomerStaffApiFactory = exports.ClubCustomerStaffApiFp = exports.ClubCustomerStaffApiAxiosParamCreator = exports.ClubCustomerMeApi = exports.ClubCustomerMeApiFactory = exports.ClubCustomerMeApiFp = exports.ClubCustomerMeApiAxiosParamCreator = exports.ClubAnalyticsStaffApi = exports.ClubAnalyticsStaffApiFactory = exports.ClubAnalyticsStaffApiFp = void 0;
19
- exports.SubscriptionsPublicApiAxiosParamCreator = exports.SubscriptionsMobileApi = exports.SubscriptionsMobileApiFactory = exports.SubscriptionsMobileApiFp = exports.SubscriptionsMobileApiAxiosParamCreator = exports.SubscriptionsManagerApi = exports.SubscriptionsManagerApiFactory = exports.SubscriptionsManagerApiFp = exports.SubscriptionsManagerApiAxiosParamCreator = exports.SportsPublicApi = exports.SportsPublicApiFactory = exports.SportsPublicApiFp = exports.SportsPublicApiAxiosParamCreator = exports.SportsManagerApi = exports.SportsManagerApiFactory = exports.SportsManagerApiFp = exports.SportsManagerApiAxiosParamCreator = exports.PublicEmailApi = exports.PublicEmailApiFactory = exports.PublicEmailApiFp = exports.PublicEmailApiAxiosParamCreator = exports.PaymentsStaffApi = exports.PaymentsStaffApiFactory = exports.PaymentsStaffApiFp = exports.PaymentsStaffApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.ImagesApi = exports.ImagesApiFactory = exports.ImagesApiFp = exports.ImagesApiAxiosParamCreator = exports.GetWeeklyEventsTypeEnum = exports.GetWeeklyEventsVisibilityTypeEnum = exports.GetMonthlyEventsTypeEnum = exports.GetMonthlyEventsVisibilityTypeEnum = exports.GetDailyEventsTypeEnum = exports.GetDailyEventsVisibilityTypeEnum = exports.EventsStaffApi = exports.EventsStaffApiFactory = exports.EventsStaffApiFp = exports.EventsStaffApiAxiosParamCreator = exports.EventsManagerApi = exports.EventsManagerApiFactory = exports.EventsManagerApiFp = exports.EventsManagerApiAxiosParamCreator = exports.GetPublishedEventsByClubIdTypeEnum = exports.GetPublishedEventsByClubIdVisibilityTypeEnum = exports.EventsApi = void 0;
20
- exports.WaitListStaffApi = exports.WaitListStaffApiFactory = exports.WaitListStaffApiFp = exports.WaitListStaffApiAxiosParamCreator = exports.WaitListApi = exports.WaitListApiFactory = exports.WaitListApiFp = exports.WaitListApiAxiosParamCreator = exports.GetUserBookingsTimeFilterEnum = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SumUpManagerApi = exports.SumUpManagerApiFactory = exports.SumUpManagerApiFp = exports.SumUpManagerApiAxiosParamCreator = exports.SumUpApi = exports.SumUpApiFactory = exports.SumUpApiFp = exports.SumUpApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = void 0;
16
+ exports.RegisterRequestBodyLocationTypeEnum = exports.RecurringDefinitionResponseRecurringTypeEnum = exports.QuickReservationCourtType = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentStatus = exports.PaymentProviderType = exports.PaymentMethod = exports.ParticipationType = exports.PartialPublicAccessSettingsPaymentModeEnum = exports.OnboardingStatusResponseCurrentStepEnum = exports.NotificationType = exports.NotificationTargetPreviewTypeEnum = exports.NotificationActorType = exports.InvoiceStatusSETUPSUCCESS = exports.InvoiceStatusSETUPPENDING = exports.InvoiceStatus = exports.ImageContextType = exports.IUserLocationTypeEnum = exports.IUserAttributesCreatedFromEnum = exports.Gender = exports.EventResponseVisibilityTypeEnum = exports.EventResponseParticipationTypeEnum = exports.EventResponseRecurringTypeEnum = exports.EventResponseTypeEnum = exports.EventBookingStatus = exports.EventBookingDetailSummaryUserParticipationStatusEnum = exports.EventBookingDetailEventSummaryParticipationTypeEnum = exports.EventBookingDetailEventSummaryRecurringTypeEnum = exports.EventBookingDetailEventSummaryTypeEnum = exports.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CreateActualityRequestDiffusionModeEnum = exports.CourtStatus = exports.CourtEnvironment = exports.ClubType = exports.ClubRoleResponseRoleEnum = exports.ClubOnboardingActionConnectAccountStatusEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingSummaryUserParticipationStatusEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
17
+ exports.ClubAnalyticsApi = exports.ClubAnalyticsApiFactory = exports.ClubAnalyticsApiFp = exports.ClubAnalyticsApiAxiosParamCreator = exports.ClientApi = exports.ClientApiFactory = exports.ClientApiFp = exports.ClientApiAxiosParamCreator = exports.BookingsUserApi = exports.BookingsUserApiFactory = exports.BookingsUserApiFp = exports.BookingsUserApiAxiosParamCreator = exports.BookingsStaffApi = exports.BookingsStaffApiFactory = exports.BookingsStaffApiFp = exports.BookingsStaffApiAxiosParamCreator = exports.BookingsManagerApi = exports.BookingsManagerApiFactory = exports.BookingsManagerApiFp = exports.BookingsManagerApiAxiosParamCreator = exports.BookingsApi = exports.BookingsApiFactory = exports.BookingsApiFp = exports.BookingsApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.WeekdayKey = exports.WaitListResponseTargetTypeEnum = exports.WaitListEntryWithPlayerTargetTypeEnum = exports.VisibilityType = exports.UserProfileResponseCreatedFromEnum = exports.UserLocationSummaryTypeEnum = exports.UpdateRecurringDefinitionRequestRecurringTypeEnum = exports.UpdateRecurringDefinitionRequestParticipationTypeEnum = exports.UpdateRecurringDefinitionRequestTypeEnum = exports.UpdateRecurringDefinitionRequestVisibilityTypeEnum = exports.UpdateEventRequestVisibilityTypeEnum = exports.UpdateEventRequestParticipationTypeEnum = exports.UpdateEventRequestRecurringTypeEnum = exports.UpdateEventRequestTypeEnum = exports.UpdateClubRoleRequestRoleEnum = exports.UpdateClubMemberRequestRoleEnum = exports.TrendDirection = exports.SurfaceType = exports.SupportedLanguage = exports.StaffUserProfileResponseCreatedFromEnum = exports.StaffBookingPaymentState = exports.SportKey = void 0;
18
+ exports.EventsApiFp = exports.EventsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ContactApi = exports.ContactApiFactory = exports.ContactApiFp = exports.ContactApiAxiosParamCreator = exports.ClubsStaffApi = exports.ClubsStaffApiFactory = exports.ClubsStaffApiFp = exports.ClubsStaffApiAxiosParamCreator = exports.ClubsManagerApi = exports.ClubsManagerApiFactory = exports.ClubsManagerApiFp = exports.ClubsManagerApiAxiosParamCreator = exports.ClubsApi = exports.ClubsApiFactory = exports.ClubsApiFp = exports.ClubsApiAxiosParamCreator = exports.ClubSettingsStaffApi = exports.ClubSettingsStaffApiFactory = exports.ClubSettingsStaffApiFp = exports.ClubSettingsStaffApiAxiosParamCreator = exports.ClubSettingsManagerApi = exports.ClubSettingsManagerApiFactory = exports.ClubSettingsManagerApiFp = exports.ClubSettingsManagerApiAxiosParamCreator = exports.ClubRolesStaffApi = exports.ClubRolesStaffApiFactory = exports.ClubRolesStaffApiFp = exports.ClubRolesStaffApiAxiosParamCreator = exports.ClubRolesManagerApi = exports.ClubRolesManagerApiFactory = exports.ClubRolesManagerApiFp = exports.ClubRolesManagerApiAxiosParamCreator = exports.ClubCustomerStaffApi = exports.ClubCustomerStaffApiFactory = exports.ClubCustomerStaffApiFp = exports.ClubCustomerStaffApiAxiosParamCreator = exports.ClubCustomerMeApi = exports.ClubCustomerMeApiFactory = exports.ClubCustomerMeApiFp = exports.ClubCustomerMeApiAxiosParamCreator = exports.ClubAnalyticsStaffApi = exports.ClubAnalyticsStaffApiFactory = exports.ClubAnalyticsStaffApiFp = exports.ClubAnalyticsStaffApiAxiosParamCreator = void 0;
19
+ exports.SubscriptionsMobileApi = exports.SubscriptionsMobileApiFactory = exports.SubscriptionsMobileApiFp = exports.SubscriptionsMobileApiAxiosParamCreator = exports.SubscriptionsManagerApi = exports.SubscriptionsManagerApiFactory = exports.SubscriptionsManagerApiFp = exports.SubscriptionsManagerApiAxiosParamCreator = exports.SportsPublicApi = exports.SportsPublicApiFactory = exports.SportsPublicApiFp = exports.SportsPublicApiAxiosParamCreator = exports.SportsManagerApi = exports.SportsManagerApiFactory = exports.SportsManagerApiFp = exports.SportsManagerApiAxiosParamCreator = exports.PublicEmailApi = exports.PublicEmailApiFactory = exports.PublicEmailApiFp = exports.PublicEmailApiAxiosParamCreator = exports.PaymentsStaffApi = exports.PaymentsStaffApiFactory = exports.PaymentsStaffApiFp = exports.PaymentsStaffApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.ImagesApi = exports.ImagesApiFactory = exports.ImagesApiFp = exports.ImagesApiAxiosParamCreator = exports.GetWeeklyEventsTypeEnum = exports.GetWeeklyEventsVisibilityTypeEnum = exports.GetMonthlyEventsTypeEnum = exports.GetMonthlyEventsVisibilityTypeEnum = exports.GetDailyEventsTypeEnum = exports.GetDailyEventsVisibilityTypeEnum = exports.EventsStaffApi = exports.EventsStaffApiFactory = exports.EventsStaffApiFp = exports.EventsStaffApiAxiosParamCreator = exports.EventsManagerApi = exports.EventsManagerApiFactory = exports.EventsManagerApiFp = exports.EventsManagerApiAxiosParamCreator = exports.GetPublishedEventsByClubIdTypeEnum = exports.GetPublishedEventsByClubIdVisibilityTypeEnum = exports.EventsApi = exports.EventsApiFactory = void 0;
20
+ exports.WaitListStaffApi = exports.WaitListStaffApiFactory = exports.WaitListStaffApiFp = exports.WaitListStaffApiAxiosParamCreator = exports.WaitListApi = exports.WaitListApiFactory = exports.WaitListApiFp = exports.WaitListApiAxiosParamCreator = exports.GetUserBookingsTimeFilterEnum = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SumUpManagerApi = exports.SumUpManagerApiFactory = exports.SumUpManagerApiFp = exports.SumUpManagerApiAxiosParamCreator = exports.SumUpApi = exports.SumUpApiFactory = exports.SumUpApiFp = exports.SumUpApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = exports.SubscriptionsPublicApiAxiosParamCreator = void 0;
21
21
  const axios_1 = require("axios");
22
22
  // Some imports not used depending on template conditions
23
23
  // @ts-ignore
@@ -86,6 +86,15 @@ exports.ClubRoleResponseRoleEnum = {
86
86
  Manager: 'manager',
87
87
  Staff: 'staff'
88
88
  };
89
+ /**
90
+ *
91
+ * @export
92
+ * @enum {string}
93
+ */
94
+ exports.ClubType = {
95
+ Public: 'public',
96
+ School: 'school'
97
+ };
89
98
  /**
90
99
  *
91
100
  * @export
@@ -297,6 +306,8 @@ exports.NotificationType = {
297
306
  EventCancelled: 'event_cancelled',
298
307
  OpenBookingJoined: 'open_booking_joined',
299
308
  OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
309
+ OpenBookingLeft: 'open_booking_left',
310
+ OpenBookingCompleted: 'open_booking_completed',
300
311
  WaitlistSpotAvailable: 'waitlist_spot_available',
301
312
  WaitlistConfirmed: 'waitlist_confirmed',
302
313
  SubscriptionConfirmed: 'subscription_confirmed',
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
6
6
  * Pandook API Documentation
7
7
  *
8
- * The version of the OpenAPI document: 1.0.265
8
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
6
6
  * Pandook API Documentation
7
7
  *
8
- * The version of the OpenAPI document: 1.0.265
8
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
6
6
  * Pandook API Documentation
7
7
  *
8
- * The version of the OpenAPI document: 1.0.265
8
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2205,16 +2205,16 @@ export interface ClientSubscription {
2205
2205
  'status': string;
2206
2206
  /**
2207
2207
  *
2208
- * @type {number}
2208
+ * @type {string}
2209
2209
  * @memberof ClientSubscription
2210
2210
  */
2211
- 'currentPeriodStart': number;
2211
+ 'currentPeriodStart': string;
2212
2212
  /**
2213
2213
  *
2214
- * @type {number}
2214
+ * @type {string}
2215
2215
  * @memberof ClientSubscription
2216
2216
  */
2217
- 'currentPeriodEnd': number;
2217
+ 'currentPeriodEnd': string;
2218
2218
  /**
2219
2219
  *
2220
2220
  * @type {boolean}
@@ -2235,16 +2235,16 @@ export interface ClientSubscription {
2235
2235
  'price'?: ClientSubscriptionPrice | null;
2236
2236
  /**
2237
2237
  *
2238
- * @type {number}
2238
+ * @type {string}
2239
2239
  * @memberof ClientSubscription
2240
2240
  */
2241
- 'dueDate'?: number | null;
2241
+ 'dueDate'?: string | null;
2242
2242
  /**
2243
2243
  *
2244
- * @type {number}
2244
+ * @type {string}
2245
2245
  * @memberof ClientSubscription
2246
2246
  */
2247
- 'nextPaymentDate'?: number | null;
2247
+ 'nextPaymentDate'?: string | null;
2248
2248
  /**
2249
2249
  *
2250
2250
  * @type {ClientSubscriptionPaymentMethod}
@@ -3139,6 +3139,12 @@ export interface ClubPageResponse {
3139
3139
  * @memberof ClubPageResponse
3140
3140
  */
3141
3141
  'isActive': boolean;
3142
+ /**
3143
+ *
3144
+ * @type {ClubType}
3145
+ * @memberof ClubPageResponse
3146
+ */
3147
+ 'clubType'?: ClubType;
3142
3148
  /**
3143
3149
  * Indique si le club utilise la fonctionnalité de paiement
3144
3150
  * @type {boolean}
@@ -4209,6 +4215,12 @@ export interface ClubResponse {
4209
4215
  * @memberof ClubResponse
4210
4216
  */
4211
4217
  'isActive': boolean;
4218
+ /**
4219
+ *
4220
+ * @type {ClubType}
4221
+ * @memberof ClubResponse
4222
+ */
4223
+ 'clubType'?: ClubType;
4212
4224
  /**
4213
4225
  * Indique si le club utilise la fonctionnalité de paiement
4214
4226
  * @type {boolean}
@@ -4568,6 +4580,16 @@ export interface ClubSummary {
4568
4580
  */
4569
4581
  'tags'?: Array<string>;
4570
4582
  }
4583
+ /**
4584
+ *
4585
+ * @export
4586
+ * @enum {string}
4587
+ */
4588
+ export declare const ClubType: {
4589
+ readonly Public: "public";
4590
+ readonly School: "school";
4591
+ };
4592
+ export type ClubType = typeof ClubType[keyof typeof ClubType];
4571
4593
  /**
4572
4594
  *
4573
4595
  * @export
@@ -7055,6 +7077,18 @@ export interface EventDetailResponse {
7055
7077
  * @memberof EventDetailResponse
7056
7078
  */
7057
7079
  'myPaymentLink'?: string | null;
7080
+ /**
7081
+ *
7082
+ * @type {string}
7083
+ * @memberof EventDetailResponse
7084
+ */
7085
+ 'paymentUrl'?: string | null;
7086
+ /**
7087
+ *
7088
+ * @type {string}
7089
+ * @memberof EventDetailResponse
7090
+ */
7091
+ 'paymentInvoiceId'?: string | null;
7058
7092
  /**
7059
7093
  *
7060
7094
  * @type {string}
@@ -10637,6 +10671,8 @@ export declare const NotificationType: {
10637
10671
  readonly EventCancelled: "event_cancelled";
10638
10672
  readonly OpenBookingJoined: "open_booking_joined";
10639
10673
  readonly OpenBookingJoinConfirmed: "open_booking_join_confirmed";
10674
+ readonly OpenBookingLeft: "open_booking_left";
10675
+ readonly OpenBookingCompleted: "open_booking_completed";
10640
10676
  readonly WaitlistSpotAvailable: "waitlist_spot_available";
10641
10677
  readonly WaitlistConfirmed: "waitlist_confirmed";
10642
10678
  readonly SubscriptionConfirmed: "subscription_confirmed";
@@ -12301,6 +12337,18 @@ export interface PublishEventResponse {
12301
12337
  * @memberof PublishEventResponse
12302
12338
  */
12303
12339
  'myPaymentLink'?: string;
12340
+ /**
12341
+ *
12342
+ * @type {string}
12343
+ * @memberof PublishEventResponse
12344
+ */
12345
+ 'paymentUrl'?: string | null;
12346
+ /**
12347
+ *
12348
+ * @type {string}
12349
+ * @memberof PublishEventResponse
12350
+ */
12351
+ 'paymentInvoiceId'?: string | null;
12304
12352
  }
12305
12353
  /**
12306
12354
  *
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -79,6 +79,15 @@ export const ClubRoleResponseRoleEnum = {
79
79
  Manager: 'manager',
80
80
  Staff: 'staff'
81
81
  };
82
+ /**
83
+ *
84
+ * @export
85
+ * @enum {string}
86
+ */
87
+ export const ClubType = {
88
+ Public: 'public',
89
+ School: 'school'
90
+ };
82
91
  /**
83
92
  *
84
93
  * @export
@@ -290,6 +299,8 @@ export const NotificationType = {
290
299
  EventCancelled: 'event_cancelled',
291
300
  OpenBookingJoined: 'open_booking_joined',
292
301
  OpenBookingJoinConfirmed: 'open_booking_join_confirmed',
302
+ OpenBookingLeft: 'open_booking_left',
303
+ OpenBookingCompleted: 'open_booking_completed',
293
304
  WaitlistSpotAvailable: 'waitlist_spot_available',
294
305
  WaitlistConfirmed: 'waitlist_confirmed',
295
306
  SubscriptionConfirmed: 'subscription_confirmed',
@@ -2,7 +2,7 @@
2
2
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.265
5
+ * The version of the OpenAPI document: 1.0.267
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
  * openapi.json
6
6
  * Pandook API Documentation
7
7
  *
8
- * The version of the OpenAPI document: 1.0.265
8
+ * The version of the OpenAPI document: 1.0.267
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -8,13 +8,13 @@ Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **id** | **string** | | [default to undefined]
10
10
  **status** | **string** | | [default to undefined]
11
- **currentPeriodStart** | **number** | | [default to undefined]
12
- **currentPeriodEnd** | **number** | | [default to undefined]
11
+ **currentPeriodStart** | **string** | | [default to undefined]
12
+ **currentPeriodEnd** | **string** | | [default to undefined]
13
13
  **cancelAtPeriodEnd** | **boolean** | | [default to undefined]
14
14
  **items** | [**Array&lt;ClientSubscriptionItem&gt;**](ClientSubscriptionItem.md) | | [default to undefined]
15
15
  **price** | [**ClientSubscriptionPrice**](ClientSubscriptionPrice.md) | | [optional] [default to undefined]
16
- **dueDate** | **number** | | [optional] [default to undefined]
17
- **nextPaymentDate** | **number** | | [optional] [default to undefined]
16
+ **dueDate** | **string** | | [optional] [default to undefined]
17
+ **nextPaymentDate** | **string** | | [optional] [default to undefined]
18
18
  **paymentMethod** | [**ClientSubscriptionPaymentMethod**](ClientSubscriptionPaymentMethod.md) | | [optional] [default to undefined]
19
19
 
20
20
  ## Example
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **picture** | **string** | URL de l\&#39;image du club | [optional] [default to undefined]
15
15
  **location** | [**ClubResponseLocation**](ClubResponseLocation.md) | | [optional] [default to undefined]
16
16
  **isActive** | **boolean** | Statut d\&#39;activation du club | [default to undefined]
17
+ **clubType** | [**ClubType**](ClubType.md) | | [optional] [default to undefined]
17
18
  **paymentFeature** | **boolean** | Indique si le club utilise la fonctionnalité de paiement | [optional] [default to undefined]
18
19
  **hasActiveSubscriptions** | **boolean** | Indique si le club propose au moins un abonnement actif | [default to undefined]
19
20
  **isNoShowEnabled** | **boolean** | Indique si la fonctionnalité \&quot;no show\&quot; est activée | [optional] [default to undefined]
@@ -49,6 +50,7 @@ const instance: ClubPageResponse = {
49
50
  picture,
50
51
  location,
51
52
  isActive,
53
+ clubType,
52
54
  paymentFeature,
53
55
  hasActiveSubscriptions,
54
56
  isNoShowEnabled,
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
16
16
  **logo** | **string** | URL du logo du club (alias de picture) | [optional] [default to undefined]
17
17
  **location** | [**ClubResponseLocation**](ClubResponseLocation.md) | | [optional] [default to undefined]
18
18
  **isActive** | **boolean** | Statut d\&#39;activation du club | [default to undefined]
19
+ **clubType** | [**ClubType**](ClubType.md) | | [optional] [default to undefined]
19
20
  **paymentFeature** | **boolean** | Indique si le club utilise la fonctionnalité de paiement | [optional] [default to undefined]
20
21
  **stripeAccountId** | **string** | ID du compte Stripe du club | [optional] [default to undefined]
21
22
  **clubDashBoardUrl** | **string** | URL du dashboard Stripe du club | [optional] [default to undefined]
@@ -50,6 +51,7 @@ const instance: ClubResponse = {
50
51
  logo,
51
52
  location,
52
53
  isActive,
54
+ clubType,
53
55
  paymentFeature,
54
56
  stripeAccountId,
55
57
  clubDashBoardUrl,
@@ -0,0 +1,10 @@
1
+ # ClubType
2
+
3
+
4
+ ## Enum
5
+
6
+ * `Public` (value: `'public'`)
7
+
8
+ * `School` (value: `'school'`)
9
+
10
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
17
17
  **sponsors** | [**Array&lt;EventDetailSponsor&gt;**](EventDetailSponsor.md) | | [optional] [default to undefined]
18
18
  **needsToSetupPaymentMethod** | **boolean** | | [optional] [default to undefined]
19
19
  **myPaymentLink** | **string** | | [optional] [default to undefined]
20
+ **paymentUrl** | **string** | | [optional] [default to undefined]
21
+ **paymentInvoiceId** | **string** | | [optional] [default to undefined]
20
22
  **setupNoShowPaymentUrl** | **string** | | [optional] [default to undefined]
21
23
  **userBooking** | [**EventBookingResponse**](EventBookingResponse.md) | | [optional] [default to undefined]
22
24
 
@@ -38,6 +40,8 @@ const instance: EventDetailResponse = {
38
40
  sponsors,
39
41
  needsToSetupPaymentMethod,
40
42
  myPaymentLink,
43
+ paymentUrl,
44
+ paymentInvoiceId,
41
45
  setupNoShowPaymentUrl,
42
46
  userBooking,
43
47
  };
@@ -27,6 +27,10 @@
27
27
 
28
28
  * `OpenBookingJoinConfirmed` (value: `'open_booking_join_confirmed'`)
29
29
 
30
+ * `OpenBookingLeft` (value: `'open_booking_left'`)
31
+
32
+ * `OpenBookingCompleted` (value: `'open_booking_completed'`)
33
+
30
34
  * `WaitlistSpotAvailable` (value: `'waitlist_spot_available'`)
31
35
 
32
36
  * `WaitlistConfirmed` (value: `'waitlist_confirmed'`)
@@ -10,6 +10,8 @@ Name | Type | Description | Notes
10
10
  **userBooking** | [**EventBookingResponse**](EventBookingResponse.md) | | [optional] [default to undefined]
11
11
  **needsToSetupPaymentMethod** | **boolean** | | [optional] [default to undefined]
12
12
  **myPaymentLink** | **string** | | [optional] [default to undefined]
13
+ **paymentUrl** | **string** | | [optional] [default to undefined]
14
+ **paymentInvoiceId** | **string** | | [optional] [default to undefined]
13
15
 
14
16
  ## Example
15
17
 
@@ -22,6 +24,8 @@ const instance: PublishEventResponse = {
22
24
  userBooking,
23
25
  needsToSetupPaymentMethod,
24
26
  myPaymentLink,
27
+ paymentUrl,
28
+ paymentInvoiceId,
25
29
  };
26
30
  ```
27
31
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.265
7
+ * The version of the OpenAPI document: 1.0.267
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.265",
3
+ "version": "1.0.267",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {