@tennac-booking/sdk 1.0.192 → 1.0.193
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/api.ts +24 -0
- package/dist/api.d.ts +24 -0
- package/dist/esm/api.d.ts +24 -0
- package/docs/BookingPopulated.md +8 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -867,6 +867,30 @@ export interface BookingPopulated {
|
|
|
867
867
|
* @memberof BookingPopulated
|
|
868
868
|
*/
|
|
869
869
|
'cancellationReason'?: string;
|
|
870
|
+
/**
|
|
871
|
+
*
|
|
872
|
+
* @type {boolean}
|
|
873
|
+
* @memberof BookingPopulated
|
|
874
|
+
*/
|
|
875
|
+
'isOpen': boolean;
|
|
876
|
+
/**
|
|
877
|
+
*
|
|
878
|
+
* @type {string}
|
|
879
|
+
* @memberof BookingPopulated
|
|
880
|
+
*/
|
|
881
|
+
'description'?: string;
|
|
882
|
+
/**
|
|
883
|
+
*
|
|
884
|
+
* @type {string}
|
|
885
|
+
* @memberof BookingPopulated
|
|
886
|
+
*/
|
|
887
|
+
'minLevel'?: string;
|
|
888
|
+
/**
|
|
889
|
+
*
|
|
890
|
+
* @type {number}
|
|
891
|
+
* @memberof BookingPopulated
|
|
892
|
+
*/
|
|
893
|
+
'maxPlayers'?: number;
|
|
870
894
|
}
|
|
871
895
|
|
|
872
896
|
|
package/dist/api.d.ts
CHANGED
|
@@ -842,6 +842,30 @@ export interface BookingPopulated {
|
|
|
842
842
|
* @memberof BookingPopulated
|
|
843
843
|
*/
|
|
844
844
|
'cancellationReason'?: string;
|
|
845
|
+
/**
|
|
846
|
+
*
|
|
847
|
+
* @type {boolean}
|
|
848
|
+
* @memberof BookingPopulated
|
|
849
|
+
*/
|
|
850
|
+
'isOpen': boolean;
|
|
851
|
+
/**
|
|
852
|
+
*
|
|
853
|
+
* @type {string}
|
|
854
|
+
* @memberof BookingPopulated
|
|
855
|
+
*/
|
|
856
|
+
'description'?: string;
|
|
857
|
+
/**
|
|
858
|
+
*
|
|
859
|
+
* @type {string}
|
|
860
|
+
* @memberof BookingPopulated
|
|
861
|
+
*/
|
|
862
|
+
'minLevel'?: string;
|
|
863
|
+
/**
|
|
864
|
+
*
|
|
865
|
+
* @type {number}
|
|
866
|
+
* @memberof BookingPopulated
|
|
867
|
+
*/
|
|
868
|
+
'maxPlayers'?: number;
|
|
845
869
|
}
|
|
846
870
|
/**
|
|
847
871
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -842,6 +842,30 @@ export interface BookingPopulated {
|
|
|
842
842
|
* @memberof BookingPopulated
|
|
843
843
|
*/
|
|
844
844
|
'cancellationReason'?: string;
|
|
845
|
+
/**
|
|
846
|
+
*
|
|
847
|
+
* @type {boolean}
|
|
848
|
+
* @memberof BookingPopulated
|
|
849
|
+
*/
|
|
850
|
+
'isOpen': boolean;
|
|
851
|
+
/**
|
|
852
|
+
*
|
|
853
|
+
* @type {string}
|
|
854
|
+
* @memberof BookingPopulated
|
|
855
|
+
*/
|
|
856
|
+
'description'?: string;
|
|
857
|
+
/**
|
|
858
|
+
*
|
|
859
|
+
* @type {string}
|
|
860
|
+
* @memberof BookingPopulated
|
|
861
|
+
*/
|
|
862
|
+
'minLevel'?: string;
|
|
863
|
+
/**
|
|
864
|
+
*
|
|
865
|
+
* @type {number}
|
|
866
|
+
* @memberof BookingPopulated
|
|
867
|
+
*/
|
|
868
|
+
'maxPlayers'?: number;
|
|
845
869
|
}
|
|
846
870
|
/**
|
|
847
871
|
*
|
package/docs/BookingPopulated.md
CHANGED
|
@@ -21,6 +21,10 @@ Name | Type | Description | Notes
|
|
|
21
21
|
**cancelledByManager** | **boolean** | | [optional] [default to undefined]
|
|
22
22
|
**cancelledBy** | **string** | | [optional] [default to undefined]
|
|
23
23
|
**cancellationReason** | **string** | | [optional] [default to undefined]
|
|
24
|
+
**isOpen** | **boolean** | | [default to undefined]
|
|
25
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
26
|
+
**minLevel** | **string** | | [optional] [default to undefined]
|
|
27
|
+
**maxPlayers** | **number** | | [optional] [default to undefined]
|
|
24
28
|
|
|
25
29
|
## Example
|
|
26
30
|
|
|
@@ -44,6 +48,10 @@ const instance: BookingPopulated = {
|
|
|
44
48
|
cancelledByManager,
|
|
45
49
|
cancelledBy,
|
|
46
50
|
cancellationReason,
|
|
51
|
+
isOpen,
|
|
52
|
+
description,
|
|
53
|
+
minLevel,
|
|
54
|
+
maxPlayers,
|
|
47
55
|
};
|
|
48
56
|
```
|
|
49
57
|
|