@tennac-booking/sdk 1.0.308 → 1.0.309
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -1
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/CreateGuestBookingRequest.md +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/api.ts
CHANGED
|
@@ -5973,6 +5973,12 @@ export interface CreateGuestBookingRequest {
|
|
|
5973
5973
|
* @memberof CreateGuestBookingRequest
|
|
5974
5974
|
*/
|
|
5975
5975
|
'slotIds': Array<string>;
|
|
5976
|
+
/**
|
|
5977
|
+
* Nombre total de joueurs (incluant invités non enregistrés). Défaut: 1
|
|
5978
|
+
* @type {number}
|
|
5979
|
+
* @memberof CreateGuestBookingRequest
|
|
5980
|
+
*/
|
|
5981
|
+
'playersCount'?: number;
|
|
5976
5982
|
/**
|
|
5977
5983
|
* Prénom de l\'invité
|
|
5978
5984
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -5886,6 +5886,12 @@ export interface CreateGuestBookingRequest {
|
|
|
5886
5886
|
* @memberof CreateGuestBookingRequest
|
|
5887
5887
|
*/
|
|
5888
5888
|
'slotIds': Array<string>;
|
|
5889
|
+
/**
|
|
5890
|
+
* Nombre total de joueurs (incluant invités non enregistrés). Défaut: 1
|
|
5891
|
+
* @type {number}
|
|
5892
|
+
* @memberof CreateGuestBookingRequest
|
|
5893
|
+
*/
|
|
5894
|
+
'playersCount'?: number;
|
|
5889
5895
|
/**
|
|
5890
5896
|
* Prénom de l\'invité
|
|
5891
5897
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -5886,6 +5886,12 @@ export interface CreateGuestBookingRequest {
|
|
|
5886
5886
|
* @memberof CreateGuestBookingRequest
|
|
5887
5887
|
*/
|
|
5888
5888
|
'slotIds': Array<string>;
|
|
5889
|
+
/**
|
|
5890
|
+
* Nombre total de joueurs (incluant invités non enregistrés). Défaut: 1
|
|
5891
|
+
* @type {number}
|
|
5892
|
+
* @memberof CreateGuestBookingRequest
|
|
5893
|
+
*/
|
|
5894
|
+
'playersCount'?: number;
|
|
5889
5895
|
/**
|
|
5890
5896
|
* Prénom de l\'invité
|
|
5891
5897
|
* @type {string}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**slotIds** | **Array<string>** | ID du créneau à réserver | [default to undefined]
|
|
9
|
+
**playersCount** | **number** | Nombre total de joueurs (incluant invités non enregistrés). Défaut: 1 | [optional] [default to undefined]
|
|
9
10
|
**firstName** | **string** | Prénom de l\'invité | [default to undefined]
|
|
10
11
|
**lastName** | **string** | Nom de famille de l\'invité | [default to undefined]
|
|
11
12
|
**email** | **string** | Email de l\'invité | [default to undefined]
|
|
@@ -20,6 +21,7 @@ import { CreateGuestBookingRequest } from '@tennac-booking/sdk';
|
|
|
20
21
|
|
|
21
22
|
const instance: CreateGuestBookingRequest = {
|
|
22
23
|
slotIds,
|
|
24
|
+
playersCount,
|
|
23
25
|
firstName,
|
|
24
26
|
lastName,
|
|
25
27
|
email,
|