@gooday_corp/gooday-api-client 1.5.28 → 1.5.30
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
CHANGED
|
@@ -3125,13 +3125,33 @@ export interface CategoryEntity {
|
|
|
3125
3125
|
* @memberof CategoryEntity
|
|
3126
3126
|
*/
|
|
3127
3127
|
'image': string;
|
|
3128
|
+
/**
|
|
3129
|
+
*
|
|
3130
|
+
* @type {string}
|
|
3131
|
+
* @memberof CategoryEntity
|
|
3132
|
+
*/
|
|
3133
|
+
'orderBy': string;
|
|
3128
3134
|
/**
|
|
3129
3135
|
* Unique identifier or reference of the business Type
|
|
3130
3136
|
* @type {string}
|
|
3131
3137
|
* @memberof CategoryEntity
|
|
3132
3138
|
*/
|
|
3133
3139
|
'businessTypeId': string;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @type {string}
|
|
3143
|
+
* @memberof CategoryEntity
|
|
3144
|
+
*/
|
|
3145
|
+
'variant': CategoryEntityVariantEnum;
|
|
3134
3146
|
}
|
|
3147
|
+
|
|
3148
|
+
export const CategoryEntityVariantEnum = {
|
|
3149
|
+
Dark: 'dark',
|
|
3150
|
+
Light: 'light'
|
|
3151
|
+
} as const;
|
|
3152
|
+
|
|
3153
|
+
export type CategoryEntityVariantEnum = typeof CategoryEntityVariantEnum[keyof typeof CategoryEntityVariantEnum];
|
|
3154
|
+
|
|
3135
3155
|
/**
|
|
3136
3156
|
*
|
|
3137
3157
|
* @export
|
package/docs/CategoryEntity.md
CHANGED
|
@@ -8,7 +8,9 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**_id** | **string** | Unique identifier for the category | [default to undefined]
|
|
9
9
|
**name** | **string** | name of the category | [default to undefined]
|
|
10
10
|
**image** | **string** | Image of category | [default to undefined]
|
|
11
|
+
**orderBy** | **string** | | [default to undefined]
|
|
11
12
|
**businessTypeId** | **string** | Unique identifier or reference of the business Type | [default to undefined]
|
|
13
|
+
**variant** | **string** | | [default to undefined]
|
|
12
14
|
|
|
13
15
|
## Example
|
|
14
16
|
|
|
@@ -19,7 +21,9 @@ const instance: CategoryEntity = {
|
|
|
19
21
|
_id,
|
|
20
22
|
name,
|
|
21
23
|
image,
|
|
24
|
+
orderBy,
|
|
22
25
|
businessTypeId,
|
|
26
|
+
variant,
|
|
23
27
|
};
|
|
24
28
|
```
|
|
25
29
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | The title of the booking | [default to 'Default Booking Title']
|
|
9
|
-
**date** | **string** | The start date of the booking | [default to 2025-07-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-07-21T13:58:46Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-21T13:58:46Z]
|
|
11
11
|
**from** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**to** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**venue** | **string** | The venue of the booking | [default to undefined]
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**date** | **string** | The start date of the booking | [default to 2025-07-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-07-21T13:58:46Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**startDate** | **string** | The start date of the waitlist | [default to 2025-07-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-07-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-07-21T13:58:47Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-07-21T14:58:47Z]
|
|
10
10
|
**venue** | **string** | The venue of the waitlist | [default to undefined]
|
|
11
11
|
**business** | **string** | The business associated with the waitlist | [default to undefined]
|
|
12
12
|
**collaborators** | [**Array<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|