@tennac-booking/sdk 1.0.138 → 1.0.139
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 +6 -3
- package/dist/api.d.ts +5 -2
- package/dist/api.js +4 -1
- package/dist/esm/api.d.ts +5 -2
- package/dist/esm/api.js +4 -1
- package/docs/CheckInEventParticipantsRequest.md +2 -2
- package/docs/SurfaceType.md +6 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1450,10 +1450,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
|
|
|
1450
1450
|
export interface CheckInEventParticipantsRequest {
|
|
1451
1451
|
/**
|
|
1452
1452
|
*
|
|
1453
|
-
* @type {
|
|
1453
|
+
* @type {string}
|
|
1454
1454
|
* @memberof CheckInEventParticipantsRequest
|
|
1455
1455
|
*/
|
|
1456
|
-
'
|
|
1456
|
+
'playerId': string;
|
|
1457
1457
|
}
|
|
1458
1458
|
/**
|
|
1459
1459
|
*
|
|
@@ -9462,7 +9462,10 @@ export interface SubscriptionPlanResponse {
|
|
|
9462
9462
|
export const SurfaceType = {
|
|
9463
9463
|
Clay: 'clay',
|
|
9464
9464
|
Grass: 'grass',
|
|
9465
|
-
Hard: 'hard'
|
|
9465
|
+
Hard: 'hard',
|
|
9466
|
+
Turf: 'turf',
|
|
9467
|
+
Carpet: 'carpet',
|
|
9468
|
+
Wooden: 'wooden'
|
|
9466
9469
|
} as const;
|
|
9467
9470
|
|
|
9468
9471
|
export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
|
package/dist/api.d.ts
CHANGED
|
@@ -1413,10 +1413,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
|
|
|
1413
1413
|
export interface CheckInEventParticipantsRequest {
|
|
1414
1414
|
/**
|
|
1415
1415
|
*
|
|
1416
|
-
* @type {
|
|
1416
|
+
* @type {string}
|
|
1417
1417
|
* @memberof CheckInEventParticipantsRequest
|
|
1418
1418
|
*/
|
|
1419
|
-
'
|
|
1419
|
+
'playerId': string;
|
|
1420
1420
|
}
|
|
1421
1421
|
/**
|
|
1422
1422
|
*
|
|
@@ -9295,6 +9295,9 @@ export declare const SurfaceType: {
|
|
|
9295
9295
|
readonly Clay: "clay";
|
|
9296
9296
|
readonly Grass: "grass";
|
|
9297
9297
|
readonly Hard: "hard";
|
|
9298
|
+
readonly Turf: "turf";
|
|
9299
|
+
readonly Carpet: "carpet";
|
|
9300
|
+
readonly Wooden: "wooden";
|
|
9298
9301
|
};
|
|
9299
9302
|
export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
|
|
9300
9303
|
/**
|
package/dist/api.js
CHANGED
|
@@ -306,7 +306,10 @@ exports.StaffBookingPaymentState = {
|
|
|
306
306
|
exports.SurfaceType = {
|
|
307
307
|
Clay: 'clay',
|
|
308
308
|
Grass: 'grass',
|
|
309
|
-
Hard: 'hard'
|
|
309
|
+
Hard: 'hard',
|
|
310
|
+
Turf: 'turf',
|
|
311
|
+
Carpet: 'carpet',
|
|
312
|
+
Wooden: 'wooden'
|
|
310
313
|
};
|
|
311
314
|
exports.UpdateClubMemberRequestRoleEnum = {
|
|
312
315
|
Admin: 'admin',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1413,10 +1413,10 @@ export interface CheckInEventParticipants200ResponseInvoicesInner {
|
|
|
1413
1413
|
export interface CheckInEventParticipantsRequest {
|
|
1414
1414
|
/**
|
|
1415
1415
|
*
|
|
1416
|
-
* @type {
|
|
1416
|
+
* @type {string}
|
|
1417
1417
|
* @memberof CheckInEventParticipantsRequest
|
|
1418
1418
|
*/
|
|
1419
|
-
'
|
|
1419
|
+
'playerId': string;
|
|
1420
1420
|
}
|
|
1421
1421
|
/**
|
|
1422
1422
|
*
|
|
@@ -9295,6 +9295,9 @@ export declare const SurfaceType: {
|
|
|
9295
9295
|
readonly Clay: "clay";
|
|
9296
9296
|
readonly Grass: "grass";
|
|
9297
9297
|
readonly Hard: "hard";
|
|
9298
|
+
readonly Turf: "turf";
|
|
9299
|
+
readonly Carpet: "carpet";
|
|
9300
|
+
readonly Wooden: "wooden";
|
|
9298
9301
|
};
|
|
9299
9302
|
export type SurfaceType = typeof SurfaceType[keyof typeof SurfaceType];
|
|
9300
9303
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -300,7 +300,10 @@ export const StaffBookingPaymentState = {
|
|
|
300
300
|
export const SurfaceType = {
|
|
301
301
|
Clay: 'clay',
|
|
302
302
|
Grass: 'grass',
|
|
303
|
-
Hard: 'hard'
|
|
303
|
+
Hard: 'hard',
|
|
304
|
+
Turf: 'turf',
|
|
305
|
+
Carpet: 'carpet',
|
|
306
|
+
Wooden: 'wooden'
|
|
304
307
|
};
|
|
305
308
|
export const UpdateClubMemberRequestRoleEnum = {
|
|
306
309
|
Admin: 'admin',
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**
|
|
8
|
+
**playerId** | **string** | | [default to undefined]
|
|
9
9
|
|
|
10
10
|
## Example
|
|
11
11
|
|
|
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
import { CheckInEventParticipantsRequest } from '@tennac-booking/sdk';
|
|
14
14
|
|
|
15
15
|
const instance: CheckInEventParticipantsRequest = {
|
|
16
|
-
|
|
16
|
+
playerId,
|
|
17
17
|
};
|
|
18
18
|
```
|
|
19
19
|
|
package/docs/SurfaceType.md
CHANGED
|
@@ -9,4 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
* `Hard` (value: `'hard'`)
|
|
11
11
|
|
|
12
|
+
* `Turf` (value: `'turf'`)
|
|
13
|
+
|
|
14
|
+
* `Carpet` (value: `'carpet'`)
|
|
15
|
+
|
|
16
|
+
* `Wooden` (value: `'wooden'`)
|
|
17
|
+
|
|
12
18
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|