@tennac-booking/sdk 1.0.194 → 1.0.196

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.185
1
+ ## @tennac-booking/sdk@1.0.195
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.185 --save
39
+ npm install @tennac-booking/sdk@1.0.195 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -215,6 +215,7 @@ Class | Method | HTTP request | Description
215
215
  *JobsApi* | [**health**](docs/JobsApi.md#health) | **GET** /api/jobs/health | Health check pour les jobs
216
216
  *JobsApi* | [**maintainSlots**](docs/JobsApi.md#maintainslots) | **GET** /api/jobs/maintain-slots | Génère les créneaux futurs et nettoie les anciens
217
217
  *JobsApi* | [**releaseOldBookings**](docs/JobsApi.md#releaseoldbookings) | **GET** /api/jobs/release-old-bookings | Libère les anciennes réservations terminées
218
+ *JobsApi* | [**sendBookingReminders**](docs/JobsApi.md#sendbookingreminders) | **GET** /api/jobs/send-booking-reminders | Envoie des emails de rappel 24h avant les réservations et événements
218
219
  *PublicEmailApi* | [**authEmailExists**](docs/PublicEmailApi.md#authemailexists) | **POST** /api/public-email/auth-email-exists |
219
220
  *PublicEmailApi* | [**requestPublicEmailVerificationCode**](docs/PublicEmailApi.md#requestpublicemailverificationcode) | **POST** /api/public-email/request-verification-code |
220
221
  *PublicEmailApi* | [**verifyCode**](docs/PublicEmailApi.md#verifycode) | **POST** /api/public-email/verify-code |
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.185
7
+ * The version of the OpenAPI document: 1.0.195
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1375,8 +1375,27 @@ export interface BookingSummary {
1375
1375
  * @memberof BookingSummary
1376
1376
  */
1377
1377
  'players': Array<BookingPlayerPaymentSummary>;
1378
+ /**
1379
+ *
1380
+ * @type {string}
1381
+ * @memberof BookingSummary
1382
+ */
1383
+ 'userParticipationStatus'?: BookingSummaryUserParticipationStatusEnum;
1384
+ /**
1385
+ *
1386
+ * @type {number}
1387
+ * @memberof BookingSummary
1388
+ */
1389
+ 'waitListPosition'?: number | null;
1378
1390
  }
1379
1391
 
1392
+ export const BookingSummaryUserParticipationStatusEnum = {
1393
+ Participant: 'participant',
1394
+ WaitingJoinPayment: 'waitingJoinPayment',
1395
+ Waitlist: 'waitlist'
1396
+ } as const;
1397
+
1398
+ export type BookingSummaryUserParticipationStatusEnum = typeof BookingSummaryUserParticipationStatusEnum[keyof typeof BookingSummaryUserParticipationStatusEnum];
1380
1399
 
1381
1400
  /**
1382
1401
  *
@@ -3550,12 +3569,6 @@ export interface ClubResponse {
3550
3569
  * @memberof ClubResponse
3551
3570
  */
3552
3571
  'allowMultipleBookingsAtTheSameTime'?: boolean | null;
3553
- /**
3554
- * Limite de réservations simultanées (même créneau)
3555
- * @type {number}
3556
- * @memberof ClubResponse
3557
- */
3558
- 'sameTimeBookingsLimit'?: number | null;
3559
3572
  /**
3560
3573
  *
3561
3574
  * @type {number}
@@ -5437,6 +5450,12 @@ export interface EventBookingDetailSummary {
5437
5450
  * @memberof EventBookingDetailSummary
5438
5451
  */
5439
5452
  'waitListPosition'?: number | null;
5453
+ /**
5454
+ * Statut de participation de l\'utilisateur pour cet event booking
5455
+ * @type {string}
5456
+ * @memberof EventBookingDetailSummary
5457
+ */
5458
+ 'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
5440
5459
  /**
5441
5460
  *
5442
5461
  * @type {string}
@@ -5451,6 +5470,13 @@ export interface EventBookingDetailSummary {
5451
5470
  'updatedAt': string;
5452
5471
  }
5453
5472
 
5473
+ export const EventBookingDetailSummaryUserParticipationStatusEnum = {
5474
+ Participant: 'participant',
5475
+ WaitingJoinPayment: 'waitingJoinPayment',
5476
+ Waitlist: 'waitlist'
5477
+ } as const;
5478
+
5479
+ export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
5454
5480
 
5455
5481
  /**
5456
5482
  *
@@ -6276,6 +6302,12 @@ export interface GetClubUsersById200Response {
6276
6302
  * @interface GetClubsWithVerificationDomains200ResponseInner
6277
6303
  */
6278
6304
  export interface GetClubsWithVerificationDomains200ResponseInner {
6305
+ /**
6306
+ *
6307
+ * @type {string}
6308
+ * @memberof GetClubsWithVerificationDomains200ResponseInner
6309
+ */
6310
+ 'logo'?: string | null;
6279
6311
  /**
6280
6312
  *
6281
6313
  * @type {Array<string>}
@@ -8230,12 +8262,6 @@ export interface MyClubInfosResponse {
8230
8262
  * @memberof MyClubInfosResponse
8231
8263
  */
8232
8264
  'remainingBookings': number;
8233
- /**
8234
- *
8235
- * @type {number}
8236
- * @memberof MyClubInfosResponse
8237
- */
8238
- 'sameTimeBookingsLimit'?: number;
8239
8265
  /**
8240
8266
  *
8241
8267
  * @type {number}
@@ -29046,6 +29072,36 @@ export const JobsApiAxiosParamCreator = function (configuration?: Configuration)
29046
29072
 
29047
29073
 
29048
29074
 
29075
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
29076
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
29077
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
29078
+
29079
+ return {
29080
+ url: toPathString(localVarUrlObj),
29081
+ options: localVarRequestOptions,
29082
+ };
29083
+ },
29084
+ /**
29085
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
29086
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
29087
+ * @param {*} [options] Override http request option.
29088
+ * @throws {RequiredError}
29089
+ */
29090
+ sendBookingReminders: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
29091
+ const localVarPath = `/api/jobs/send-booking-reminders`;
29092
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
29093
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
29094
+ let baseOptions;
29095
+ if (configuration) {
29096
+ baseOptions = configuration.baseOptions;
29097
+ }
29098
+
29099
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
29100
+ const localVarHeaderParameter = {} as any;
29101
+ const localVarQueryParameter = {} as any;
29102
+
29103
+
29104
+
29049
29105
  setSearchParams(localVarUrlObj, localVarQueryParameter);
29050
29106
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
29051
29107
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -29149,6 +29205,18 @@ export const JobsApiFp = function(configuration?: Configuration) {
29149
29205
  const localVarOperationServerBasePath = operationServerMap['JobsApi.releaseOldBookings']?.[localVarOperationServerIndex]?.url;
29150
29206
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
29151
29207
  },
29208
+ /**
29209
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
29210
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
29211
+ * @param {*} [options] Override http request option.
29212
+ * @throws {RequiredError}
29213
+ */
29214
+ async sendBookingReminders(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResult>> {
29215
+ const localVarAxiosArgs = await localVarAxiosParamCreator.sendBookingReminders(options);
29216
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
29217
+ const localVarOperationServerBasePath = operationServerMap['JobsApi.sendBookingReminders']?.[localVarOperationServerIndex]?.url;
29218
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
29219
+ },
29152
29220
  }
29153
29221
  };
29154
29222
 
@@ -29222,6 +29290,15 @@ export const JobsApiFactory = function (configuration?: Configuration, basePath?
29222
29290
  releaseOldBookings(options?: RawAxiosRequestConfig): AxiosPromise<JobResult> {
29223
29291
  return localVarFp.releaseOldBookings(options).then((request) => request(axios, basePath));
29224
29292
  },
29293
+ /**
29294
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
29295
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
29296
+ * @param {*} [options] Override http request option.
29297
+ * @throws {RequiredError}
29298
+ */
29299
+ sendBookingReminders(options?: RawAxiosRequestConfig): AxiosPromise<JobResult> {
29300
+ return localVarFp.sendBookingReminders(options).then((request) => request(axios, basePath));
29301
+ },
29225
29302
  };
29226
29303
  };
29227
29304
 
@@ -29308,6 +29385,17 @@ export class JobsApi extends BaseAPI {
29308
29385
  public releaseOldBookings(options?: RawAxiosRequestConfig) {
29309
29386
  return JobsApiFp(this.configuration).releaseOldBookings(options).then((request) => request(this.axios, this.basePath));
29310
29387
  }
29388
+
29389
+ /**
29390
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
29391
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
29392
+ * @param {*} [options] Override http request option.
29393
+ * @throws {RequiredError}
29394
+ * @memberof JobsApi
29395
+ */
29396
+ public sendBookingReminders(options?: RawAxiosRequestConfig) {
29397
+ return JobsApiFp(this.configuration).sendBookingReminders(options).then((request) => request(this.axios, this.basePath));
29398
+ }
29311
29399
  }
29312
29400
 
29313
29401
 
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1346,7 +1346,25 @@ export interface BookingSummary {
1346
1346
  * @memberof BookingSummary
1347
1347
  */
1348
1348
  'players': Array<BookingPlayerPaymentSummary>;
1349
+ /**
1350
+ *
1351
+ * @type {string}
1352
+ * @memberof BookingSummary
1353
+ */
1354
+ 'userParticipationStatus'?: BookingSummaryUserParticipationStatusEnum;
1355
+ /**
1356
+ *
1357
+ * @type {number}
1358
+ * @memberof BookingSummary
1359
+ */
1360
+ 'waitListPosition'?: number | null;
1349
1361
  }
1362
+ export declare const BookingSummaryUserParticipationStatusEnum: {
1363
+ readonly Participant: "participant";
1364
+ readonly WaitingJoinPayment: "waitingJoinPayment";
1365
+ readonly Waitlist: "waitlist";
1366
+ };
1367
+ export type BookingSummaryUserParticipationStatusEnum = typeof BookingSummaryUserParticipationStatusEnum[keyof typeof BookingSummaryUserParticipationStatusEnum];
1350
1368
  /**
1351
1369
  *
1352
1370
  * @export
@@ -3502,12 +3520,6 @@ export interface ClubResponse {
3502
3520
  * @memberof ClubResponse
3503
3521
  */
3504
3522
  'allowMultipleBookingsAtTheSameTime'?: boolean | null;
3505
- /**
3506
- * Limite de réservations simultanées (même créneau)
3507
- * @type {number}
3508
- * @memberof ClubResponse
3509
- */
3510
- 'sameTimeBookingsLimit'?: number | null;
3511
3523
  /**
3512
3524
  *
3513
3525
  * @type {number}
@@ -5348,6 +5360,12 @@ export interface EventBookingDetailSummary {
5348
5360
  * @memberof EventBookingDetailSummary
5349
5361
  */
5350
5362
  'waitListPosition'?: number | null;
5363
+ /**
5364
+ * Statut de participation de l\'utilisateur pour cet event booking
5365
+ * @type {string}
5366
+ * @memberof EventBookingDetailSummary
5367
+ */
5368
+ 'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
5351
5369
  /**
5352
5370
  *
5353
5371
  * @type {string}
@@ -5361,6 +5379,12 @@ export interface EventBookingDetailSummary {
5361
5379
  */
5362
5380
  'updatedAt': string;
5363
5381
  }
5382
+ export declare const EventBookingDetailSummaryUserParticipationStatusEnum: {
5383
+ readonly Participant: "participant";
5384
+ readonly WaitingJoinPayment: "waitingJoinPayment";
5385
+ readonly Waitlist: "waitlist";
5386
+ };
5387
+ export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
5364
5388
  /**
5365
5389
  *
5366
5390
  * @export
@@ -6167,6 +6191,12 @@ export interface GetClubUsersById200Response {
6167
6191
  * @interface GetClubsWithVerificationDomains200ResponseInner
6168
6192
  */
6169
6193
  export interface GetClubsWithVerificationDomains200ResponseInner {
6194
+ /**
6195
+ *
6196
+ * @type {string}
6197
+ * @memberof GetClubsWithVerificationDomains200ResponseInner
6198
+ */
6199
+ 'logo'?: string | null;
6170
6200
  /**
6171
6201
  *
6172
6202
  * @type {Array<string>}
@@ -8096,12 +8126,6 @@ export interface MyClubInfosResponse {
8096
8126
  * @memberof MyClubInfosResponse
8097
8127
  */
8098
8128
  'remainingBookings': number;
8099
- /**
8100
- *
8101
- * @type {number}
8102
- * @memberof MyClubInfosResponse
8103
- */
8104
- 'sameTimeBookingsLimit'?: number;
8105
8129
  /**
8106
8130
  *
8107
8131
  * @type {number}
@@ -21645,6 +21669,13 @@ export declare const JobsApiAxiosParamCreator: (configuration?: Configuration) =
21645
21669
  * @throws {RequiredError}
21646
21670
  */
21647
21671
  releaseOldBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21672
+ /**
21673
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21674
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21675
+ * @param {*} [options] Override http request option.
21676
+ * @throws {RequiredError}
21677
+ */
21678
+ sendBookingReminders: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21648
21679
  };
21649
21680
  /**
21650
21681
  * JobsApi - functional programming interface
@@ -21700,6 +21731,13 @@ export declare const JobsApiFp: (configuration?: Configuration) => {
21700
21731
  * @throws {RequiredError}
21701
21732
  */
21702
21733
  releaseOldBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResult>>;
21734
+ /**
21735
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21736
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21737
+ * @param {*} [options] Override http request option.
21738
+ * @throws {RequiredError}
21739
+ */
21740
+ sendBookingReminders(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResult>>;
21703
21741
  };
21704
21742
  /**
21705
21743
  * JobsApi - factory interface
@@ -21755,6 +21793,13 @@ export declare const JobsApiFactory: (configuration?: Configuration, basePath?:
21755
21793
  * @throws {RequiredError}
21756
21794
  */
21757
21795
  releaseOldBookings(options?: RawAxiosRequestConfig): AxiosPromise<JobResult>;
21796
+ /**
21797
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21798
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21799
+ * @param {*} [options] Override http request option.
21800
+ * @throws {RequiredError}
21801
+ */
21802
+ sendBookingReminders(options?: RawAxiosRequestConfig): AxiosPromise<JobResult>;
21758
21803
  };
21759
21804
  /**
21760
21805
  * JobsApi - object-oriented interface
@@ -21819,6 +21864,14 @@ export declare class JobsApi extends BaseAPI {
21819
21864
  * @memberof JobsApi
21820
21865
  */
21821
21866
  releaseOldBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JobResult, any, {}>>;
21867
+ /**
21868
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21869
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21870
+ * @param {*} [options] Override http request option.
21871
+ * @throws {RequiredError}
21872
+ * @memberof JobsApi
21873
+ */
21874
+ sendBookingReminders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JobResult, any, {}>>;
21822
21875
  }
21823
21876
  /**
21824
21877
  * PublicEmailApi - axios parameter creator
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.185
8
+ * The version of the OpenAPI document: 1.0.195
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,11 +22,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- 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 = exports.RegisterRequestBodyLocationTypeEnum = exports.RecurringDefinitionResponseRecurringTypeEnum = exports.QuickReservationCourtType = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentMethod = exports.ParticipationType = exports.PartialPublicAccessSettingsPaymentModeEnum = 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.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CreateActualityRequestDiffusionModeEnum = exports.CourtStatus = exports.ClubRoleResponseRoleEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
26
- 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 = 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 = void 0;
27
- 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 = 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 = void 0;
28
- exports.WaitListApiFp = exports.WaitListApiAxiosParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = exports.SubscriptionsPublicApiAxiosParamCreator = 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.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.ImagesApi = exports.ImagesApiFactory = exports.ImagesApiFp = exports.ImagesApiAxiosParamCreator = exports.GetWeeklyEventsTypeEnum = exports.GetWeeklyEventsVisibilityTypeEnum = exports.GetMonthlyEventsTypeEnum = exports.GetMonthlyEventsVisibilityTypeEnum = void 0;
29
- exports.WaitListStaffApi = exports.WaitListStaffApiFactory = exports.WaitListStaffApiFp = exports.WaitListStaffApiAxiosParamCreator = exports.WaitListApi = exports.WaitListApiFactory = void 0;
25
+ exports.UpdateEventRequestVisibilityTypeEnum = exports.UpdateEventRequestParticipationTypeEnum = exports.UpdateEventRequestRecurringTypeEnum = exports.UpdateEventRequestTypeEnum = exports.UpdateClubRoleRequestRoleEnum = exports.UpdateClubMemberRequestRoleEnum = exports.TrendDirection = exports.SurfaceType = exports.SupportedLanguage = exports.StaffUserProfileResponseCreatedFromEnum = exports.StaffBookingPaymentState = exports.SportKey = exports.RegisterRequestBodyLocationTypeEnum = exports.RecurringDefinitionResponseRecurringTypeEnum = exports.QuickReservationCourtType = exports.PublicAccessSettingsPaymentModeEnum = exports.PlayerCategoryId = exports.PlanInterval = exports.PaymentMethod = exports.ParticipationType = exports.PartialPublicAccessSettingsPaymentModeEnum = 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.DiscountType = exports.CreateEventRequestVisibilityTypeEnum = exports.CreateEventRequestParticipationTypeEnum = exports.CreateEventRequestRecurringTypeEnum = exports.CreateEventRequestTypeEnum = exports.CreateClubRoleRequestRoleEnum = exports.CreateActualityRequestDiffusionModeEnum = exports.CourtStatus = exports.ClubRoleResponseRoleEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingSummaryUserParticipationStatusEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
26
+ exports.ClubCustomerStaffApi = exports.ClubCustomerStaffApiFactory = exports.ClubCustomerStaffApiFp = exports.ClubCustomerStaffApiAxiosParamCreator = exports.ClubCustomerMeApi = exports.ClubCustomerMeApiFactory = exports.ClubCustomerMeApiFp = exports.ClubCustomerMeApiAxiosParamCreator = exports.ClubAnalyticsStaffApi = exports.ClubAnalyticsStaffApiFactory = exports.ClubAnalyticsStaffApiFp = 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 = void 0;
27
+ exports.EventsStaffApi = exports.EventsStaffApiFactory = exports.EventsStaffApiFp = exports.EventsStaffApiAxiosParamCreator = exports.EventsManagerApi = exports.EventsManagerApiFactory = exports.EventsManagerApiFp = exports.EventsManagerApiAxiosParamCreator = exports.GetPublishedEventsByClubIdTypeEnum = exports.GetPublishedEventsByClubIdVisibilityTypeEnum = exports.EventsApi = 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 = void 0;
28
+ exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.SubscriptionsUserApi = exports.SubscriptionsUserApiFactory = exports.SubscriptionsUserApiFp = exports.SubscriptionsUserApiAxiosParamCreator = exports.SubscriptionsStaffApi = exports.SubscriptionsStaffApiFactory = exports.SubscriptionsStaffApiFp = exports.SubscriptionsStaffApiAxiosParamCreator = exports.SubscriptionsPublicApi = exports.SubscriptionsPublicApiFactory = exports.SubscriptionsPublicApiFp = exports.SubscriptionsPublicApiAxiosParamCreator = 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.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 = void 0;
29
+ exports.WaitListStaffApi = exports.WaitListStaffApiFactory = exports.WaitListStaffApiFp = exports.WaitListStaffApiAxiosParamCreator = exports.WaitListApi = exports.WaitListApiFactory = exports.WaitListApiFp = exports.WaitListApiAxiosParamCreator = void 0;
30
30
  const axios_1 = require("axios");
31
31
  // Some imports not used depending on template conditions
32
32
  // @ts-ignore
@@ -68,6 +68,11 @@ exports.BookingStatus = {
68
68
  Canceled: 'canceled',
69
69
  NoShow: 'no-show'
70
70
  };
71
+ exports.BookingSummaryUserParticipationStatusEnum = {
72
+ Participant: 'participant',
73
+ WaitingJoinPayment: 'waitingJoinPayment',
74
+ Waitlist: 'waitlist'
75
+ };
71
76
  exports.CaptureResultTypeEnum = {
72
77
  CreatorPayment: 'creator_payment',
73
78
  PlayerPayment: 'player_payment'
@@ -134,6 +139,11 @@ exports.DiscountType = {
134
139
  Percentage: 'percentage',
135
140
  OffPeak: 'off_peak'
136
141
  };
142
+ exports.EventBookingDetailSummaryUserParticipationStatusEnum = {
143
+ Participant: 'participant',
144
+ WaitingJoinPayment: 'waitingJoinPayment',
145
+ Waitlist: 'waitlist'
146
+ };
137
147
  /**
138
148
  *
139
149
  * @export
@@ -11911,6 +11921,31 @@ const JobsApiAxiosParamCreator = function (configuration) {
11911
11921
  options: localVarRequestOptions,
11912
11922
  };
11913
11923
  }),
11924
+ /**
11925
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
11926
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
11927
+ * @param {*} [options] Override http request option.
11928
+ * @throws {RequiredError}
11929
+ */
11930
+ sendBookingReminders: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
11931
+ const localVarPath = `/api/jobs/send-booking-reminders`;
11932
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11933
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
11934
+ let baseOptions;
11935
+ if (configuration) {
11936
+ baseOptions = configuration.baseOptions;
11937
+ }
11938
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
11939
+ const localVarHeaderParameter = {};
11940
+ const localVarQueryParameter = {};
11941
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
11942
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11943
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
11944
+ return {
11945
+ url: (0, common_1.toPathString)(localVarUrlObj),
11946
+ options: localVarRequestOptions,
11947
+ };
11948
+ }),
11914
11949
  };
11915
11950
  };
11916
11951
  exports.JobsApiAxiosParamCreator = JobsApiAxiosParamCreator;
@@ -12026,6 +12061,21 @@ const JobsApiFp = function (configuration) {
12026
12061
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12027
12062
  });
12028
12063
  },
12064
+ /**
12065
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
12066
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
12067
+ * @param {*} [options] Override http request option.
12068
+ * @throws {RequiredError}
12069
+ */
12070
+ sendBookingReminders(options) {
12071
+ return __awaiter(this, void 0, void 0, function* () {
12072
+ var _a, _b, _c;
12073
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.sendBookingReminders(options);
12074
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
12075
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['JobsApi.sendBookingReminders']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
12076
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12077
+ });
12078
+ },
12029
12079
  };
12030
12080
  };
12031
12081
  exports.JobsApiFp = JobsApiFp;
@@ -12099,6 +12149,15 @@ const JobsApiFactory = function (configuration, basePath, axios) {
12099
12149
  releaseOldBookings(options) {
12100
12150
  return localVarFp.releaseOldBookings(options).then((request) => request(axios, basePath));
12101
12151
  },
12152
+ /**
12153
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
12154
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
12155
+ * @param {*} [options] Override http request option.
12156
+ * @throws {RequiredError}
12157
+ */
12158
+ sendBookingReminders(options) {
12159
+ return localVarFp.sendBookingReminders(options).then((request) => request(axios, basePath));
12160
+ },
12102
12161
  };
12103
12162
  };
12104
12163
  exports.JobsApiFactory = JobsApiFactory;
@@ -12179,6 +12238,16 @@ class JobsApi extends base_1.BaseAPI {
12179
12238
  releaseOldBookings(options) {
12180
12239
  return (0, exports.JobsApiFp)(this.configuration).releaseOldBookings(options).then((request) => request(this.axios, this.basePath));
12181
12240
  }
12241
+ /**
12242
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
12243
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
12244
+ * @param {*} [options] Override http request option.
12245
+ * @throws {RequiredError}
12246
+ * @memberof JobsApi
12247
+ */
12248
+ sendBookingReminders(options) {
12249
+ return (0, exports.JobsApiFp)(this.configuration).sendBookingReminders(options).then((request) => request(this.axios, this.basePath));
12250
+ }
12182
12251
  }
12183
12252
  exports.JobsApi = JobsApi;
12184
12253
  /**
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
8
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
8
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
8
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1346,7 +1346,25 @@ export interface BookingSummary {
1346
1346
  * @memberof BookingSummary
1347
1347
  */
1348
1348
  'players': Array<BookingPlayerPaymentSummary>;
1349
+ /**
1350
+ *
1351
+ * @type {string}
1352
+ * @memberof BookingSummary
1353
+ */
1354
+ 'userParticipationStatus'?: BookingSummaryUserParticipationStatusEnum;
1355
+ /**
1356
+ *
1357
+ * @type {number}
1358
+ * @memberof BookingSummary
1359
+ */
1360
+ 'waitListPosition'?: number | null;
1349
1361
  }
1362
+ export declare const BookingSummaryUserParticipationStatusEnum: {
1363
+ readonly Participant: "participant";
1364
+ readonly WaitingJoinPayment: "waitingJoinPayment";
1365
+ readonly Waitlist: "waitlist";
1366
+ };
1367
+ export type BookingSummaryUserParticipationStatusEnum = typeof BookingSummaryUserParticipationStatusEnum[keyof typeof BookingSummaryUserParticipationStatusEnum];
1350
1368
  /**
1351
1369
  *
1352
1370
  * @export
@@ -3502,12 +3520,6 @@ export interface ClubResponse {
3502
3520
  * @memberof ClubResponse
3503
3521
  */
3504
3522
  'allowMultipleBookingsAtTheSameTime'?: boolean | null;
3505
- /**
3506
- * Limite de réservations simultanées (même créneau)
3507
- * @type {number}
3508
- * @memberof ClubResponse
3509
- */
3510
- 'sameTimeBookingsLimit'?: number | null;
3511
3523
  /**
3512
3524
  *
3513
3525
  * @type {number}
@@ -5348,6 +5360,12 @@ export interface EventBookingDetailSummary {
5348
5360
  * @memberof EventBookingDetailSummary
5349
5361
  */
5350
5362
  'waitListPosition'?: number | null;
5363
+ /**
5364
+ * Statut de participation de l\'utilisateur pour cet event booking
5365
+ * @type {string}
5366
+ * @memberof EventBookingDetailSummary
5367
+ */
5368
+ 'userParticipationStatus'?: EventBookingDetailSummaryUserParticipationStatusEnum;
5351
5369
  /**
5352
5370
  *
5353
5371
  * @type {string}
@@ -5361,6 +5379,12 @@ export interface EventBookingDetailSummary {
5361
5379
  */
5362
5380
  'updatedAt': string;
5363
5381
  }
5382
+ export declare const EventBookingDetailSummaryUserParticipationStatusEnum: {
5383
+ readonly Participant: "participant";
5384
+ readonly WaitingJoinPayment: "waitingJoinPayment";
5385
+ readonly Waitlist: "waitlist";
5386
+ };
5387
+ export type EventBookingDetailSummaryUserParticipationStatusEnum = typeof EventBookingDetailSummaryUserParticipationStatusEnum[keyof typeof EventBookingDetailSummaryUserParticipationStatusEnum];
5364
5388
  /**
5365
5389
  *
5366
5390
  * @export
@@ -6167,6 +6191,12 @@ export interface GetClubUsersById200Response {
6167
6191
  * @interface GetClubsWithVerificationDomains200ResponseInner
6168
6192
  */
6169
6193
  export interface GetClubsWithVerificationDomains200ResponseInner {
6194
+ /**
6195
+ *
6196
+ * @type {string}
6197
+ * @memberof GetClubsWithVerificationDomains200ResponseInner
6198
+ */
6199
+ 'logo'?: string | null;
6170
6200
  /**
6171
6201
  *
6172
6202
  * @type {Array<string>}
@@ -8096,12 +8126,6 @@ export interface MyClubInfosResponse {
8096
8126
  * @memberof MyClubInfosResponse
8097
8127
  */
8098
8128
  'remainingBookings': number;
8099
- /**
8100
- *
8101
- * @type {number}
8102
- * @memberof MyClubInfosResponse
8103
- */
8104
- 'sameTimeBookingsLimit'?: number;
8105
8129
  /**
8106
8130
  *
8107
8131
  * @type {number}
@@ -21645,6 +21669,13 @@ export declare const JobsApiAxiosParamCreator: (configuration?: Configuration) =
21645
21669
  * @throws {RequiredError}
21646
21670
  */
21647
21671
  releaseOldBookings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21672
+ /**
21673
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21674
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21675
+ * @param {*} [options] Override http request option.
21676
+ * @throws {RequiredError}
21677
+ */
21678
+ sendBookingReminders: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21648
21679
  };
21649
21680
  /**
21650
21681
  * JobsApi - functional programming interface
@@ -21700,6 +21731,13 @@ export declare const JobsApiFp: (configuration?: Configuration) => {
21700
21731
  * @throws {RequiredError}
21701
21732
  */
21702
21733
  releaseOldBookings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResult>>;
21734
+ /**
21735
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21736
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21737
+ * @param {*} [options] Override http request option.
21738
+ * @throws {RequiredError}
21739
+ */
21740
+ sendBookingReminders(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResult>>;
21703
21741
  };
21704
21742
  /**
21705
21743
  * JobsApi - factory interface
@@ -21755,6 +21793,13 @@ export declare const JobsApiFactory: (configuration?: Configuration, basePath?:
21755
21793
  * @throws {RequiredError}
21756
21794
  */
21757
21795
  releaseOldBookings(options?: RawAxiosRequestConfig): AxiosPromise<JobResult>;
21796
+ /**
21797
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21798
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21799
+ * @param {*} [options] Override http request option.
21800
+ * @throws {RequiredError}
21801
+ */
21802
+ sendBookingReminders(options?: RawAxiosRequestConfig): AxiosPromise<JobResult>;
21758
21803
  };
21759
21804
  /**
21760
21805
  * JobsApi - object-oriented interface
@@ -21819,6 +21864,14 @@ export declare class JobsApi extends BaseAPI {
21819
21864
  * @memberof JobsApi
21820
21865
  */
21821
21866
  releaseOldBookings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JobResult, any, {}>>;
21867
+ /**
21868
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
21869
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
21870
+ * @param {*} [options] Override http request option.
21871
+ * @throws {RequiredError}
21872
+ * @memberof JobsApi
21873
+ */
21874
+ sendBookingReminders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JobResult, any, {}>>;
21822
21875
  }
21823
21876
  /**
21824
21877
  * PublicEmailApi - axios parameter creator
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.185
7
+ * The version of the OpenAPI document: 1.0.195
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -61,6 +61,11 @@ export const BookingStatus = {
61
61
  Canceled: 'canceled',
62
62
  NoShow: 'no-show'
63
63
  };
64
+ export const BookingSummaryUserParticipationStatusEnum = {
65
+ Participant: 'participant',
66
+ WaitingJoinPayment: 'waitingJoinPayment',
67
+ Waitlist: 'waitlist'
68
+ };
64
69
  export const CaptureResultTypeEnum = {
65
70
  CreatorPayment: 'creator_payment',
66
71
  PlayerPayment: 'player_payment'
@@ -127,6 +132,11 @@ export const DiscountType = {
127
132
  Percentage: 'percentage',
128
133
  OffPeak: 'off_peak'
129
134
  };
135
+ export const EventBookingDetailSummaryUserParticipationStatusEnum = {
136
+ Participant: 'participant',
137
+ WaitingJoinPayment: 'waitingJoinPayment',
138
+ Waitlist: 'waitlist'
139
+ };
130
140
  /**
131
141
  *
132
142
  * @export
@@ -11812,6 +11822,31 @@ export const JobsApiAxiosParamCreator = function (configuration) {
11812
11822
  options: localVarRequestOptions,
11813
11823
  };
11814
11824
  }),
11825
+ /**
11826
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
11827
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
11828
+ * @param {*} [options] Override http request option.
11829
+ * @throws {RequiredError}
11830
+ */
11831
+ sendBookingReminders: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
11832
+ const localVarPath = `/api/jobs/send-booking-reminders`;
11833
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11834
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11835
+ let baseOptions;
11836
+ if (configuration) {
11837
+ baseOptions = configuration.baseOptions;
11838
+ }
11839
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
11840
+ const localVarHeaderParameter = {};
11841
+ const localVarQueryParameter = {};
11842
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
11843
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11844
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
11845
+ return {
11846
+ url: toPathString(localVarUrlObj),
11847
+ options: localVarRequestOptions,
11848
+ };
11849
+ }),
11815
11850
  };
11816
11851
  };
11817
11852
  /**
@@ -11926,6 +11961,21 @@ export const JobsApiFp = function (configuration) {
11926
11961
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11927
11962
  });
11928
11963
  },
11964
+ /**
11965
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
11966
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
11967
+ * @param {*} [options] Override http request option.
11968
+ * @throws {RequiredError}
11969
+ */
11970
+ sendBookingReminders(options) {
11971
+ return __awaiter(this, void 0, void 0, function* () {
11972
+ var _a, _b, _c;
11973
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.sendBookingReminders(options);
11974
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
11975
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['JobsApi.sendBookingReminders']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
11976
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11977
+ });
11978
+ },
11929
11979
  };
11930
11980
  };
11931
11981
  /**
@@ -11998,6 +12048,15 @@ export const JobsApiFactory = function (configuration, basePath, axios) {
11998
12048
  releaseOldBookings(options) {
11999
12049
  return localVarFp.releaseOldBookings(options).then((request) => request(axios, basePath));
12000
12050
  },
12051
+ /**
12052
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
12053
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
12054
+ * @param {*} [options] Override http request option.
12055
+ * @throws {RequiredError}
12056
+ */
12057
+ sendBookingReminders(options) {
12058
+ return localVarFp.sendBookingReminders(options).then((request) => request(axios, basePath));
12059
+ },
12001
12060
  };
12002
12061
  };
12003
12062
  /**
@@ -12077,6 +12136,16 @@ export class JobsApi extends BaseAPI {
12077
12136
  releaseOldBookings(options) {
12078
12137
  return JobsApiFp(this.configuration).releaseOldBookings(options).then((request) => request(this.axios, this.basePath));
12079
12138
  }
12139
+ /**
12140
+ * Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
12141
+ * @summary Envoie des emails de rappel 24h avant les réservations et événements
12142
+ * @param {*} [options] Override http request option.
12143
+ * @throws {RequiredError}
12144
+ * @memberof JobsApi
12145
+ */
12146
+ sendBookingReminders(options) {
12147
+ return JobsApiFp(this.configuration).sendBookingReminders(options).then((request) => request(this.axios, this.basePath));
12148
+ }
12080
12149
  }
12081
12150
  /**
12082
12151
  * PublicEmailApi - axios parameter creator
@@ -2,7 +2,7 @@
2
2
  * openapi.json
3
3
  * Pandook API Documentation
4
4
  *
5
- * The version of the OpenAPI document: 1.0.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.185
5
+ * The version of the OpenAPI document: 1.0.195
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.185
8
+ * The version of the OpenAPI document: 1.0.195
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -52,6 +52,8 @@ Name | Type | Description | Notes
52
52
  **court** | [**BookingCourtInfo**](BookingCourtInfo.md) | | [optional] [default to undefined]
53
53
  **sport** | [**BookingSportInfo**](BookingSportInfo.md) | | [optional] [default to undefined]
54
54
  **players** | [**Array&lt;BookingPlayerPaymentSummary&gt;**](BookingPlayerPaymentSummary.md) | | [default to undefined]
55
+ **userParticipationStatus** | **string** | | [optional] [default to undefined]
56
+ **waitListPosition** | **number** | | [optional] [default to undefined]
55
57
 
56
58
  ## Example
57
59
 
@@ -106,6 +108,8 @@ const instance: BookingSummary = {
106
108
  court,
107
109
  sport,
108
110
  players,
111
+ userParticipationStatus,
112
+ waitListPosition,
109
113
  };
110
114
  ```
111
115
 
@@ -20,7 +20,6 @@ Name | Type | Description | Notes
20
20
  **isNoShowEnabled** | **boolean** | Indique si la fonctionnalité \&quot;no show\&quot; est activée | [optional] [default to undefined]
21
21
  **sports** | **Array&lt;string&gt;** | Liste des sports proposés par le club (identifiés par leur clé) | [optional] [default to undefined]
22
22
  **allowMultipleBookingsAtTheSameTime** | **boolean** | Autoriser plusieurs réservations en même temps | [optional] [default to undefined]
23
- **sameTimeBookingsLimit** | **number** | Limite de réservations simultanées (même créneau) | [optional] [default to undefined]
24
23
  **maxSlotsPerBooking** | **number** | | [optional] [default to undefined]
25
24
  **cancellationLimitHours** | **number** | Limite d\&#39;annulation en heures | [optional] [default to undefined]
26
25
  **maxWeeklyBookings** | **number** | Nombre maximum de réservations par semaine | [optional] [default to undefined]
@@ -48,7 +47,6 @@ const instance: ClubResponse = {
48
47
  isNoShowEnabled,
49
48
  sports,
50
49
  allowMultipleBookingsAtTheSameTime,
51
- sameTimeBookingsLimit,
52
50
  maxSlotsPerBooking,
53
51
  cancellationLimitHours,
54
52
  maxWeeklyBookings,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **limitSetupDate** | **string** | | [optional] [default to undefined]
16
16
  **limitCancellationDate** | **string** | | [optional] [default to undefined]
17
17
  **waitListPosition** | **number** | Position dans la file d\&#39;attente si l\&#39;utilisateur est en waitlist pour cet événement | [optional] [default to undefined]
18
+ **userParticipationStatus** | **string** | Statut de participation de l\&#39;utilisateur pour cet event booking | [optional] [default to undefined]
18
19
  **createdAt** | **string** | | [default to undefined]
19
20
  **updatedAt** | **string** | | [default to undefined]
20
21
 
@@ -34,6 +35,7 @@ const instance: EventBookingDetailSummary = {
34
35
  limitSetupDate,
35
36
  limitCancellationDate,
36
37
  waitListPosition,
38
+ userParticipationStatus,
37
39
  createdAt,
38
40
  updatedAt,
39
41
  };
@@ -5,6 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
+ **logo** | **string** | | [optional] [default to undefined]
8
9
  **allowedEmailDomains** | **Array&lt;string&gt;** | | [default to undefined]
9
10
  **address** | **string** | | [optional] [default to undefined]
10
11
  **name** | **string** | | [default to undefined]
@@ -16,6 +17,7 @@ Name | Type | Description | Notes
16
17
  import { GetClubsWithVerificationDomains200ResponseInner } from '@tennac-booking/sdk';
17
18
 
18
19
  const instance: GetClubsWithVerificationDomains200ResponseInner = {
20
+ logo,
19
21
  allowedEmailDomains,
20
22
  address,
21
23
  name,
package/docs/JobsApi.md CHANGED
@@ -11,6 +11,7 @@ All URIs are relative to *http://localhost*
11
11
  |[**health**](#health) | **GET** /api/jobs/health | Health check pour les jobs|
12
12
  |[**maintainSlots**](#maintainslots) | **GET** /api/jobs/maintain-slots | Génère les créneaux futurs et nettoie les anciens|
13
13
  |[**releaseOldBookings**](#releaseoldbookings) | **GET** /api/jobs/release-old-bookings | Libère les anciennes réservations terminées|
14
+ |[**sendBookingReminders**](#sendbookingreminders) | **GET** /api/jobs/send-booking-reminders | Envoie des emails de rappel 24h avant les réservations et événements|
14
15
 
15
16
  # **captureExpiringAuthorizations**
16
17
  > JobResult captureExpiringAuthorizations()
@@ -320,3 +321,47 @@ No authorization required
320
321
 
321
322
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
322
323
 
324
+ # **sendBookingReminders**
325
+ > JobResult sendBookingReminders()
326
+
327
+ Job: Envoyer les rappels de réservation et d\'événements Fréquence recommandée: Toutes les heures
328
+
329
+ ### Example
330
+
331
+ ```typescript
332
+ import {
333
+ JobsApi,
334
+ Configuration
335
+ } from '@tennac-booking/sdk';
336
+
337
+ const configuration = new Configuration();
338
+ const apiInstance = new JobsApi(configuration);
339
+
340
+ const { status, data } = await apiInstance.sendBookingReminders();
341
+ ```
342
+
343
+ ### Parameters
344
+ This endpoint does not have any parameters.
345
+
346
+
347
+ ### Return type
348
+
349
+ **JobResult**
350
+
351
+ ### Authorization
352
+
353
+ No authorization required
354
+
355
+ ### HTTP request headers
356
+
357
+ - **Content-Type**: Not defined
358
+ - **Accept**: application/json
359
+
360
+
361
+ ### HTTP response details
362
+ | Status code | Description | Response headers |
363
+ |-------------|-------------|------------------|
364
+ |**200** | Job executed successfully | - |
365
+
366
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
367
+
@@ -6,7 +6,6 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **remainingBookings** | **number** | | [default to undefined]
9
- **sameTimeBookingsLimit** | **number** | | [optional] [default to undefined]
10
9
  **availableCredit** | **number** | | [default to undefined]
11
10
  **subscriptionPlans** | **Array&lt;any&gt;** | | [optional] [default to undefined]
12
11
 
@@ -17,7 +16,6 @@ import { MyClubInfosResponse } from '@tennac-booking/sdk';
17
16
 
18
17
  const instance: MyClubInfosResponse = {
19
18
  remainingBookings,
20
- sameTimeBookingsLimit,
21
19
  availableCredit,
22
20
  subscriptionPlans,
23
21
  };
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.185
7
+ * The version of the OpenAPI document: 1.0.195
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.194",
3
+ "version": "1.0.196",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {