@tennac-booking/sdk 1.0.166 → 1.0.168
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/ImageContext.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6867,6 +6867,12 @@ export interface ImageContext {
|
|
|
6867
6867
|
* @memberof ImageContext
|
|
6868
6868
|
*/
|
|
6869
6869
|
'clubId'?: string;
|
|
6870
|
+
/**
|
|
6871
|
+
*
|
|
6872
|
+
* @type {string}
|
|
6873
|
+
* @memberof ImageContext
|
|
6874
|
+
*/
|
|
6875
|
+
'sponsorName'?: string;
|
|
6870
6876
|
/**
|
|
6871
6877
|
*
|
|
6872
6878
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6757,6 +6757,12 @@ export interface ImageContext {
|
|
|
6757
6757
|
* @memberof ImageContext
|
|
6758
6758
|
*/
|
|
6759
6759
|
'clubId'?: string;
|
|
6760
|
+
/**
|
|
6761
|
+
*
|
|
6762
|
+
* @type {string}
|
|
6763
|
+
* @memberof ImageContext
|
|
6764
|
+
*/
|
|
6765
|
+
'sponsorName'?: string;
|
|
6760
6766
|
/**
|
|
6761
6767
|
*
|
|
6762
6768
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -6757,6 +6757,12 @@ export interface ImageContext {
|
|
|
6757
6757
|
* @memberof ImageContext
|
|
6758
6758
|
*/
|
|
6759
6759
|
'clubId'?: string;
|
|
6760
|
+
/**
|
|
6761
|
+
*
|
|
6762
|
+
* @type {string}
|
|
6763
|
+
* @memberof ImageContext
|
|
6764
|
+
*/
|
|
6765
|
+
'sponsorName'?: string;
|
|
6760
6766
|
/**
|
|
6761
6767
|
*
|
|
6762
6768
|
* @type {string}
|
package/docs/ImageContext.md
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**entityId** | **string** | | [default to undefined]
|
|
10
10
|
**userId** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**clubId** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**sponsorName** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**sportId** | **string** | | [optional] [default to undefined]
|
|
13
14
|
**eventId** | **string** | | [optional] [default to undefined]
|
|
14
15
|
|
|
@@ -22,6 +23,7 @@ const instance: ImageContext = {
|
|
|
22
23
|
entityId,
|
|
23
24
|
userId,
|
|
24
25
|
clubId,
|
|
26
|
+
sponsorName,
|
|
25
27
|
sportId,
|
|
26
28
|
eventId,
|
|
27
29
|
};
|