@tennac-booking/sdk 1.0.216 → 1.0.217
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 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/NotificationPreview.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -8528,6 +8528,12 @@ export interface NotificationPreview {
|
|
|
8528
8528
|
* @memberof NotificationPreview
|
|
8529
8529
|
*/
|
|
8530
8530
|
'clubName'?: string;
|
|
8531
|
+
/**
|
|
8532
|
+
*
|
|
8533
|
+
* @type {string}
|
|
8534
|
+
* @memberof NotificationPreview
|
|
8535
|
+
*/
|
|
8536
|
+
'clubPicture'?: string;
|
|
8531
8537
|
/**
|
|
8532
8538
|
*
|
|
8533
8539
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -8404,6 +8404,12 @@ export interface NotificationPreview {
|
|
|
8404
8404
|
* @memberof NotificationPreview
|
|
8405
8405
|
*/
|
|
8406
8406
|
'clubName'?: string;
|
|
8407
|
+
/**
|
|
8408
|
+
*
|
|
8409
|
+
* @type {string}
|
|
8410
|
+
* @memberof NotificationPreview
|
|
8411
|
+
*/
|
|
8412
|
+
'clubPicture'?: string;
|
|
8407
8413
|
/**
|
|
8408
8414
|
*
|
|
8409
8415
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -8404,6 +8404,12 @@ export interface NotificationPreview {
|
|
|
8404
8404
|
* @memberof NotificationPreview
|
|
8405
8405
|
*/
|
|
8406
8406
|
'clubName'?: string;
|
|
8407
|
+
/**
|
|
8408
|
+
*
|
|
8409
|
+
* @type {string}
|
|
8410
|
+
* @memberof NotificationPreview
|
|
8411
|
+
*/
|
|
8412
|
+
'clubPicture'?: string;
|
|
8407
8413
|
/**
|
|
8408
8414
|
*
|
|
8409
8415
|
* @type {string}
|
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**eventBookingId** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**clubId** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**clubName** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**clubPicture** | **string** | | [optional] [default to undefined]
|
|
13
14
|
**courtName** | **string** | | [optional] [default to undefined]
|
|
14
15
|
**eventName** | **string** | | [optional] [default to undefined]
|
|
15
16
|
**startDate** | **string** | | [optional] [default to undefined]
|
|
@@ -37,6 +38,7 @@ const instance: NotificationPreview = {
|
|
|
37
38
|
eventBookingId,
|
|
38
39
|
clubId,
|
|
39
40
|
clubName,
|
|
41
|
+
clubPicture,
|
|
40
42
|
courtName,
|
|
41
43
|
eventName,
|
|
42
44
|
startDate,
|