@tennac-booking/sdk 1.0.197 → 1.0.199

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.
@@ -125,6 +125,7 @@ docs/ContactApi.md
125
125
  docs/ContactRequestBody.md
126
126
  docs/ContactSuccessResponse.md
127
127
  docs/CourtBookingShareItem.md
128
+ docs/CourtEnvironment.md
128
129
  docs/CourtInfo.md
129
130
  docs/CourtResponse.md
130
131
  docs/CourtStatus.md
package/README.md CHANGED
@@ -399,6 +399,7 @@ Class | Method | HTTP request | Description
399
399
  - [ContactRequestBody](docs/ContactRequestBody.md)
400
400
  - [ContactSuccessResponse](docs/ContactSuccessResponse.md)
401
401
  - [CourtBookingShareItem](docs/CourtBookingShareItem.md)
402
+ - [CourtEnvironment](docs/CourtEnvironment.md)
402
403
  - [CourtInfo](docs/CourtInfo.md)
403
404
  - [CourtResponse](docs/CourtResponse.md)
404
405
  - [CourtStatus](docs/CourtStatus.md)
package/api.ts CHANGED
@@ -3576,17 +3576,23 @@ export interface ClubResponse {
3576
3576
  */
3577
3577
  'courtsCount'?: number;
3578
3578
  /**
3579
- * Types de surfaces disponibles sur les terrains du club
3580
- * @type {Array<SurfaceType>}
3579
+ * Construct a type with a set of properties K of type T
3580
+ * @type {{ [key: string]: number; }}
3581
3581
  * @memberof ClubResponse
3582
3582
  */
3583
- 'surfaces'?: Array<SurfaceType>;
3583
+ 'courtsCountBySport'?: { [key: string]: number; };
3584
3584
  /**
3585
- * Types d\'environnements des terrains (indoor/outdoor)
3586
- * @type {Array<string>}
3585
+ * Construct a type with a set of properties K of type T
3586
+ * @type {{ [key: string]: Array<SurfaceType>; }}
3587
3587
  * @memberof ClubResponse
3588
3588
  */
3589
- 'indoorOutdoor'?: Array<ClubResponseIndoorOutdoorEnum>;
3589
+ 'surfacesBySport'?: { [key: string]: Array<SurfaceType>; };
3590
+ /**
3591
+ * Construct a type with a set of properties K of type T
3592
+ * @type {{ [key: string]: Array<CourtEnvironment>; }}
3593
+ * @memberof ClubResponse
3594
+ */
3595
+ 'indoorOutdoorBySport'?: { [key: string]: Array<CourtEnvironment>; };
3590
3596
  /**
3591
3597
  * Autoriser plusieurs réservations en même temps
3592
3598
  * @type {boolean}
@@ -3624,14 +3630,6 @@ export interface ClubResponse {
3624
3630
  */
3625
3631
  'updatedAt'?: ClubResponseUpdatedAt;
3626
3632
  }
3627
-
3628
- export const ClubResponseIndoorOutdoorEnum = {
3629
- Indoor: 'indoor',
3630
- Outdoor: 'outdoor'
3631
- } as const;
3632
-
3633
- export type ClubResponseIndoorOutdoorEnum = typeof ClubResponseIndoorOutdoorEnum[keyof typeof ClubResponseIndoorOutdoorEnum];
3634
-
3635
3633
  /**
3636
3634
  * Date de création
3637
3635
  * @export
@@ -4053,6 +4051,20 @@ export interface CourtBookingShareItem {
4053
4051
  */
4054
4052
  'totalBookings': number;
4055
4053
  }
4054
+ /**
4055
+ *
4056
+ * @export
4057
+ * @enum {string}
4058
+ */
4059
+
4060
+ export const CourtEnvironment = {
4061
+ Indoor: 'indoor',
4062
+ Outdoor: 'outdoor'
4063
+ } as const;
4064
+
4065
+ export type CourtEnvironment = typeof CourtEnvironment[keyof typeof CourtEnvironment];
4066
+
4067
+
4056
4068
  /**
4057
4069
  *
4058
4070
  * @export
package/dist/api.d.ts CHANGED
@@ -3527,17 +3527,29 @@ export interface ClubResponse {
3527
3527
  */
3528
3528
  'courtsCount'?: number;
3529
3529
  /**
3530
- * Types de surfaces disponibles sur les terrains du club
3531
- * @type {Array<SurfaceType>}
3530
+ * Construct a type with a set of properties K of type T
3531
+ * @type {{ [key: string]: number; }}
3532
3532
  * @memberof ClubResponse
3533
3533
  */
3534
- 'surfaces'?: Array<SurfaceType>;
3534
+ 'courtsCountBySport'?: {
3535
+ [key: string]: number;
3536
+ };
3535
3537
  /**
3536
- * Types d\'environnements des terrains (indoor/outdoor)
3537
- * @type {Array<string>}
3538
+ * Construct a type with a set of properties K of type T
3539
+ * @type {{ [key: string]: Array<SurfaceType>; }}
3538
3540
  * @memberof ClubResponse
3539
3541
  */
3540
- 'indoorOutdoor'?: Array<ClubResponseIndoorOutdoorEnum>;
3542
+ 'surfacesBySport'?: {
3543
+ [key: string]: Array<SurfaceType>;
3544
+ };
3545
+ /**
3546
+ * Construct a type with a set of properties K of type T
3547
+ * @type {{ [key: string]: Array<CourtEnvironment>; }}
3548
+ * @memberof ClubResponse
3549
+ */
3550
+ 'indoorOutdoorBySport'?: {
3551
+ [key: string]: Array<CourtEnvironment>;
3552
+ };
3541
3553
  /**
3542
3554
  * Autoriser plusieurs réservations en même temps
3543
3555
  * @type {boolean}
@@ -3575,11 +3587,6 @@ export interface ClubResponse {
3575
3587
  */
3576
3588
  'updatedAt'?: ClubResponseUpdatedAt;
3577
3589
  }
3578
- export declare const ClubResponseIndoorOutdoorEnum: {
3579
- readonly Indoor: "indoor";
3580
- readonly Outdoor: "outdoor";
3581
- };
3582
- export type ClubResponseIndoorOutdoorEnum = typeof ClubResponseIndoorOutdoorEnum[keyof typeof ClubResponseIndoorOutdoorEnum];
3583
3590
  /**
3584
3591
  * Date de création
3585
3592
  * @export
@@ -3996,6 +4003,16 @@ export interface CourtBookingShareItem {
3996
4003
  */
3997
4004
  'totalBookings': number;
3998
4005
  }
4006
+ /**
4007
+ *
4008
+ * @export
4009
+ * @enum {string}
4010
+ */
4011
+ export declare const CourtEnvironment: {
4012
+ readonly Indoor: "indoor";
4013
+ readonly Outdoor: "outdoor";
4014
+ };
4015
+ export type CourtEnvironment = typeof CourtEnvironment[keyof typeof CourtEnvironment];
3999
4016
  /**
4000
4017
  *
4001
4018
  * @export
package/dist/api.js CHANGED
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- 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.ClubResponseIndoorOutdoorEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingSummaryUserParticipationStatusEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
25
+ 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.CourtEnvironment = exports.ClubRoleResponseRoleEnum = exports.ClientOnboardingRequestBodyClubTypeEnum = exports.CaptureResultStatusEnum = exports.CaptureResultTypeEnum = exports.BookingSummaryUserParticipationStatusEnum = exports.BookingStatus = exports.BookingInvoicePaymentStatus = exports.BookingHistoryPopulatedPerformedByTypeEnum = void 0;
26
26
  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 = exports.UpdateEventRequestVisibilityTypeEnum = void 0;
27
27
  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 = exports.ClubCustomerStaffApi = void 0;
28
28
  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 = exports.EventsStaffApi = void 0;
@@ -85,15 +85,20 @@ exports.ClientOnboardingRequestBodyClubTypeEnum = {
85
85
  Public: 'public',
86
86
  School: 'school'
87
87
  };
88
- exports.ClubResponseIndoorOutdoorEnum = {
89
- Indoor: 'indoor',
90
- Outdoor: 'outdoor'
91
- };
92
88
  exports.ClubRoleResponseRoleEnum = {
93
89
  Admin: 'admin',
94
90
  Manager: 'manager',
95
91
  Staff: 'staff'
96
92
  };
93
+ /**
94
+ *
95
+ * @export
96
+ * @enum {string}
97
+ */
98
+ exports.CourtEnvironment = {
99
+ Indoor: 'indoor',
100
+ Outdoor: 'outdoor'
101
+ };
97
102
  /**
98
103
  *
99
104
  * @export
package/dist/esm/api.d.ts CHANGED
@@ -3527,17 +3527,29 @@ export interface ClubResponse {
3527
3527
  */
3528
3528
  'courtsCount'?: number;
3529
3529
  /**
3530
- * Types de surfaces disponibles sur les terrains du club
3531
- * @type {Array<SurfaceType>}
3530
+ * Construct a type with a set of properties K of type T
3531
+ * @type {{ [key: string]: number; }}
3532
3532
  * @memberof ClubResponse
3533
3533
  */
3534
- 'surfaces'?: Array<SurfaceType>;
3534
+ 'courtsCountBySport'?: {
3535
+ [key: string]: number;
3536
+ };
3535
3537
  /**
3536
- * Types d\'environnements des terrains (indoor/outdoor)
3537
- * @type {Array<string>}
3538
+ * Construct a type with a set of properties K of type T
3539
+ * @type {{ [key: string]: Array<SurfaceType>; }}
3538
3540
  * @memberof ClubResponse
3539
3541
  */
3540
- 'indoorOutdoor'?: Array<ClubResponseIndoorOutdoorEnum>;
3542
+ 'surfacesBySport'?: {
3543
+ [key: string]: Array<SurfaceType>;
3544
+ };
3545
+ /**
3546
+ * Construct a type with a set of properties K of type T
3547
+ * @type {{ [key: string]: Array<CourtEnvironment>; }}
3548
+ * @memberof ClubResponse
3549
+ */
3550
+ 'indoorOutdoorBySport'?: {
3551
+ [key: string]: Array<CourtEnvironment>;
3552
+ };
3541
3553
  /**
3542
3554
  * Autoriser plusieurs réservations en même temps
3543
3555
  * @type {boolean}
@@ -3575,11 +3587,6 @@ export interface ClubResponse {
3575
3587
  */
3576
3588
  'updatedAt'?: ClubResponseUpdatedAt;
3577
3589
  }
3578
- export declare const ClubResponseIndoorOutdoorEnum: {
3579
- readonly Indoor: "indoor";
3580
- readonly Outdoor: "outdoor";
3581
- };
3582
- export type ClubResponseIndoorOutdoorEnum = typeof ClubResponseIndoorOutdoorEnum[keyof typeof ClubResponseIndoorOutdoorEnum];
3583
3590
  /**
3584
3591
  * Date de création
3585
3592
  * @export
@@ -3996,6 +4003,16 @@ export interface CourtBookingShareItem {
3996
4003
  */
3997
4004
  'totalBookings': number;
3998
4005
  }
4006
+ /**
4007
+ *
4008
+ * @export
4009
+ * @enum {string}
4010
+ */
4011
+ export declare const CourtEnvironment: {
4012
+ readonly Indoor: "indoor";
4013
+ readonly Outdoor: "outdoor";
4014
+ };
4015
+ export type CourtEnvironment = typeof CourtEnvironment[keyof typeof CourtEnvironment];
3999
4016
  /**
4000
4017
  *
4001
4018
  * @export
package/dist/esm/api.js CHANGED
@@ -78,15 +78,20 @@ export const ClientOnboardingRequestBodyClubTypeEnum = {
78
78
  Public: 'public',
79
79
  School: 'school'
80
80
  };
81
- export const ClubResponseIndoorOutdoorEnum = {
82
- Indoor: 'indoor',
83
- Outdoor: 'outdoor'
84
- };
85
81
  export const ClubRoleResponseRoleEnum = {
86
82
  Admin: 'admin',
87
83
  Manager: 'manager',
88
84
  Staff: 'staff'
89
85
  };
86
+ /**
87
+ *
88
+ * @export
89
+ * @enum {string}
90
+ */
91
+ export const CourtEnvironment = {
92
+ Indoor: 'indoor',
93
+ Outdoor: 'outdoor'
94
+ };
90
95
  /**
91
96
  *
92
97
  * @export
@@ -21,8 +21,9 @@ Name | Type | Description | Notes
21
21
  **isNoShowEnabled** | **boolean** | Indique si la fonctionnalité \&quot;no show\&quot; est activée | [optional] [default to undefined]
22
22
  **sports** | **Array&lt;string&gt;** | Liste des sports proposés par le club (identifiés par leur clé) | [optional] [default to undefined]
23
23
  **courtsCount** | **number** | Nombre total de terrains du club | [optional] [default to undefined]
24
- **surfaces** | [**Array&lt;SurfaceType&gt;**](SurfaceType.md) | Types de surfaces disponibles sur les terrains du club | [optional] [default to undefined]
25
- **indoorOutdoor** | **Array&lt;string&gt;** | Types d\&#39;environnements des terrains (indoor/outdoor) | [optional] [default to undefined]
24
+ **courtsCountBySport** | **{ [key: string]: number; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
25
+ **surfacesBySport** | **{ [key: string]: Array&lt;SurfaceType&gt;; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
26
+ **indoorOutdoorBySport** | **{ [key: string]: Array&lt;CourtEnvironment&gt;; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
26
27
  **allowMultipleBookingsAtTheSameTime** | **boolean** | Autoriser plusieurs réservations en même temps | [optional] [default to undefined]
27
28
  **maxSlotsPerBooking** | **number** | | [optional] [default to undefined]
28
29
  **cancellationLimitHours** | **number** | Limite d\&#39;annulation en heures | [optional] [default to undefined]
@@ -52,8 +53,9 @@ const instance: ClubResponse = {
52
53
  isNoShowEnabled,
53
54
  sports,
54
55
  courtsCount,
55
- surfaces,
56
- indoorOutdoor,
56
+ courtsCountBySport,
57
+ surfacesBySport,
58
+ indoorOutdoorBySport,
57
59
  allowMultipleBookingsAtTheSameTime,
58
60
  maxSlotsPerBooking,
59
61
  cancellationLimitHours,
@@ -0,0 +1,10 @@
1
+ # CourtEnvironment
2
+
3
+
4
+ ## Enum
5
+
6
+ * `Indoor` (value: `'indoor'`)
7
+
8
+ * `Outdoor` (value: `'outdoor'`)
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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.197",
3
+ "version": "1.0.199",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {