@gooday_corp/gooday-api-client 4.5.71 → 4.5.73

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.
@@ -115,6 +115,8 @@ docs/CategoryListResponse.md
115
115
  docs/ChannelCreateMultipleUsersPayload.md
116
116
  docs/ChannelCreatePayload.md
117
117
  docs/ChatChannelCreateResponseDTO.md
118
+ docs/ChatChannelRole.md
119
+ docs/ChatChannelRolePayloadDTO.md
118
120
  docs/ChatMessagingApi.md
119
121
  docs/ChatResponseDTO.md
120
122
  docs/ContactDTO.md
@@ -1 +1 @@
1
- 7.19.0
1
+ 7.20.0
package/api.ts CHANGED
@@ -990,6 +990,10 @@ export interface BusinessOnBoardingDTO {
990
990
  * Business Category
991
991
  */
992
992
  'businessCategory'?: string;
993
+ /**
994
+ * Business Category
995
+ */
996
+ 'businessCategoryCustom'?: string;
993
997
  /**
994
998
  * Assistant ID
995
999
  */
@@ -1730,6 +1734,14 @@ export interface ChatChannelCreateResponseDTO {
1730
1734
  'statusCode': number;
1731
1735
  'cid': string;
1732
1736
  }
1737
+ export interface ChatChannelRole {
1738
+ 'user_id': string;
1739
+ 'channel_role': string;
1740
+ }
1741
+ export interface ChatChannelRolePayloadDTO {
1742
+ 'users': Array<ChatChannelRole>;
1743
+ 'channelId': string;
1744
+ }
1733
1745
  export interface ChatResponseDTO {
1734
1746
  /**
1735
1747
  * statusCode
@@ -3894,6 +3906,7 @@ export interface RSVPEvenPayloadDTO {
3894
3906
  */
3895
3907
  'venue'?: string;
3896
3908
  'tags'?: Array<string>;
3909
+ 'tagAdd'?: string;
3897
3910
  'hideLocation'?: boolean;
3898
3911
  'hostBy': string;
3899
3912
  'hostImage': string;
@@ -4352,6 +4365,10 @@ export interface SignupDto {
4352
4365
  * User Profile Name
4353
4366
  */
4354
4367
  'password': string;
4368
+ /**
4369
+ * Phone No
4370
+ */
4371
+ 'mobileNumber'?: string;
4355
4372
  'planId'?: string;
4356
4373
  'isApp'?: boolean;
4357
4374
  }
@@ -4486,7 +4503,8 @@ export interface TagPayloadDTO {
4486
4503
  export const TagPayloadDTOCategoryEnum = {
4487
4504
  Booking: 'BOOKING',
4488
4505
  Customer: 'CUSTOMER',
4489
- Gooday: 'GOODAY'
4506
+ Gooday: 'GOODAY',
4507
+ Web: 'WEB'
4490
4508
  } as const;
4491
4509
 
4492
4510
  export type TagPayloadDTOCategoryEnum = typeof TagPayloadDTOCategoryEnum[keyof typeof TagPayloadDTOCategoryEnum];
@@ -4525,7 +4543,8 @@ export interface TagUpdatePayloadDTO {
4525
4543
  export const TagUpdatePayloadDTOCategoryEnum = {
4526
4544
  Booking: 'BOOKING',
4527
4545
  Customer: 'CUSTOMER',
4528
- Gooday: 'GOODAY'
4546
+ Gooday: 'GOODAY',
4547
+ Web: 'WEB'
4529
4548
  } as const;
4530
4549
 
4531
4550
  export type TagUpdatePayloadDTOCategoryEnum = typeof TagUpdatePayloadDTOCategoryEnum[keyof typeof TagUpdatePayloadDTOCategoryEnum];
@@ -4557,7 +4576,8 @@ export interface TagsResponse {
4557
4576
  export const TagsResponseCategoryEnum = {
4558
4577
  Booking: 'BOOKING',
4559
4578
  Customer: 'CUSTOMER',
4560
- Gooday: 'GOODAY'
4579
+ Gooday: 'GOODAY',
4580
+ Web: 'WEB'
4561
4581
  } as const;
4562
4582
 
4563
4583
  export type TagsResponseCategoryEnum = typeof TagsResponseCategoryEnum[keyof typeof TagsResponseCategoryEnum];
@@ -12479,6 +12499,44 @@ export const ChatMessagingApiAxiosParamCreator = function (configuration?: Confi
12479
12499
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
12480
12500
  localVarRequestOptions.data = serializeDataIfNeeded(channelCreateMultipleUsersPayload, localVarRequestOptions, configuration)
12481
12501
 
12502
+ return {
12503
+ url: toPathString(localVarUrlObj),
12504
+ options: localVarRequestOptions,
12505
+ };
12506
+ },
12507
+ /**
12508
+ *
12509
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12510
+ * @param {*} [options] Override http request option.
12511
+ * @throws {RequiredError}
12512
+ */
12513
+ chatControllerRoleUpdate: async (chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12514
+ // verify required parameter 'chatChannelRolePayloadDTO' is not null or undefined
12515
+ assertParamExists('chatControllerRoleUpdate', 'chatChannelRolePayloadDTO', chatChannelRolePayloadDTO)
12516
+ const localVarPath = `/v1/chat-messaging/user/role`;
12517
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
12518
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
12519
+ let baseOptions;
12520
+ if (configuration) {
12521
+ baseOptions = configuration.baseOptions;
12522
+ }
12523
+
12524
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
12525
+ const localVarHeaderParameter = {} as any;
12526
+ const localVarQueryParameter = {} as any;
12527
+
12528
+ // authentication bearer required
12529
+ // http bearer authentication required
12530
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
12531
+
12532
+ localVarHeaderParameter['Content-Type'] = 'application/json';
12533
+ localVarHeaderParameter['Accept'] = 'application/json';
12534
+
12535
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
12536
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
12537
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
12538
+ localVarRequestOptions.data = serializeDataIfNeeded(chatChannelRolePayloadDTO, localVarRequestOptions, configuration)
12539
+
12482
12540
  return {
12483
12541
  url: toPathString(localVarUrlObj),
12484
12542
  options: localVarRequestOptions,
@@ -12529,6 +12587,18 @@ export const ChatMessagingApiFp = function(configuration?: Configuration) {
12529
12587
  const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerCreateUsers']?.[localVarOperationServerIndex]?.url;
12530
12588
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12531
12589
  },
12590
+ /**
12591
+ *
12592
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12593
+ * @param {*} [options] Override http request option.
12594
+ * @throws {RequiredError}
12595
+ */
12596
+ async chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatResponseDTO>> {
12597
+ const localVarAxiosArgs = await localVarAxiosParamCreator.chatControllerRoleUpdate(chatChannelRolePayloadDTO, options);
12598
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
12599
+ const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerRoleUpdate']?.[localVarOperationServerIndex]?.url;
12600
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12601
+ },
12532
12602
  }
12533
12603
  };
12534
12604
 
@@ -12565,6 +12635,15 @@ export const ChatMessagingApiFactory = function (configuration?: Configuration,
12565
12635
  chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
12566
12636
  return localVarFp.chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(axios, basePath));
12567
12637
  },
12638
+ /**
12639
+ *
12640
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12641
+ * @param {*} [options] Override http request option.
12642
+ * @throws {RequiredError}
12643
+ */
12644
+ chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
12645
+ return localVarFp.chatControllerRoleUpdate(chatChannelRolePayloadDTO, options).then((request) => request(axios, basePath));
12646
+ },
12568
12647
  };
12569
12648
  };
12570
12649
 
@@ -12601,6 +12680,16 @@ export class ChatMessagingApi extends BaseAPI {
12601
12680
  public chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig) {
12602
12681
  return ChatMessagingApiFp(this.configuration).chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(this.axios, this.basePath));
12603
12682
  }
12683
+
12684
+ /**
12685
+ *
12686
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12687
+ * @param {*} [options] Override http request option.
12688
+ * @throws {RequiredError}
12689
+ */
12690
+ public chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig) {
12691
+ return ChatMessagingApiFp(this.configuration).chatControllerRoleUpdate(chatChannelRolePayloadDTO, options).then((request) => request(this.axios, this.basePath));
12692
+ }
12604
12693
  }
12605
12694
 
12606
12695
 
@@ -20352,13 +20441,15 @@ export class TagsApi extends BaseAPI {
20352
20441
  export const TagsControllerFindTagsCategoryEnum = {
20353
20442
  Booking: 'BOOKING',
20354
20443
  Customer: 'CUSTOMER',
20355
- Gooday: 'GOODAY'
20444
+ Gooday: 'GOODAY',
20445
+ Web: 'WEB'
20356
20446
  } as const;
20357
20447
  export type TagsControllerFindTagsCategoryEnum = typeof TagsControllerFindTagsCategoryEnum[keyof typeof TagsControllerFindTagsCategoryEnum];
20358
20448
  export const TagsControllerGetTagsCategoryEnum = {
20359
20449
  Booking: 'BOOKING',
20360
20450
  Customer: 'CUSTOMER',
20361
- Gooday: 'GOODAY'
20451
+ Gooday: 'GOODAY',
20452
+ Web: 'WEB'
20362
20453
  } as const;
20363
20454
  export type TagsControllerGetTagsCategoryEnum = typeof TagsControllerGetTagsCategoryEnum[keyof typeof TagsControllerGetTagsCategoryEnum];
20364
20455
 
package/common.ts CHANGED
@@ -96,7 +96,8 @@ export const setSearchParams = function (url: URL, ...objects: any[]) {
96
96
  * This function will run for every key-value pair encountered by JSON.stringify while traversing an object.
97
97
  * Converting a set to a string will return an empty object, so an intermediate conversion to an array is required.
98
98
  */
99
- export const replaceWithSerializableTypeIfNeeded = function(key: any, value: any) {
99
+ // @ts-ignore
100
+ export const replaceWithSerializableTypeIfNeeded = function(key: string, value: any) {
100
101
  if (value instanceof Set) {
101
102
  return Array.from(value);
102
103
  } else {
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **businessCountry** | **string** | Business Country | [optional] [default to undefined]
14
14
  **businessType** | **string** | Business Type | [optional] [default to undefined]
15
15
  **businessCategory** | **string** | Business Category | [optional] [default to undefined]
16
+ **businessCategoryCustom** | **string** | Business Category | [optional] [default to undefined]
16
17
  **assistant** | **string** | Assistant ID | [optional] [default to undefined]
17
18
  **cancellationDuration** | **string** | | [optional] [default to undefined]
18
19
 
@@ -30,6 +31,7 @@ const instance: BusinessOnBoardingDTO = {
30
31
  businessCountry,
31
32
  businessType,
32
33
  businessCategory,
34
+ businessCategoryCustom,
33
35
  assistant,
34
36
  cancellationDuration,
35
37
  };
@@ -0,0 +1,22 @@
1
+ # ChatChannelRole
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **user_id** | **string** | | [default to undefined]
9
+ **channel_role** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ChatChannelRole } from './api';
15
+
16
+ const instance: ChatChannelRole = {
17
+ user_id,
18
+ channel_role,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # ChatChannelRolePayloadDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **users** | [**Array&lt;ChatChannelRole&gt;**](ChatChannelRole.md) | | [default to undefined]
9
+ **channelId** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ChatChannelRolePayloadDTO } from './api';
15
+
16
+ const instance: ChatChannelRolePayloadDTO = {
17
+ users,
18
+ channelId,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -7,6 +7,7 @@ All URIs are relative to *http://localhost:8080*
7
7
  |[**chatControllerChannelCreate**](#chatcontrollerchannelcreate) | **POST** /v1/chat-messaging | |
8
8
  |[**chatControllerChannelCreateMultipleUsers**](#chatcontrollerchannelcreatemultipleusers) | **POST** /v1/chat-messaging/multiple-members | |
9
9
  |[**chatControllerCreateUsers**](#chatcontrollercreateusers) | **POST** /v1/chat-messaging/add-users | |
10
+ |[**chatControllerRoleUpdate**](#chatcontrollerroleupdate) | **PUT** /v1/chat-messaging/user/role | |
10
11
 
11
12
  # **chatControllerChannelCreate**
12
13
  > ChatChannelCreateResponseDTO chatControllerChannelCreate(channelCreatePayload)
@@ -161,3 +162,54 @@ const { status, data } = await apiInstance.chatControllerCreateUsers(
161
162
 
162
163
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
163
164
 
165
+ # **chatControllerRoleUpdate**
166
+ > ChatResponseDTO chatControllerRoleUpdate(chatChannelRolePayloadDTO)
167
+
168
+
169
+ ### Example
170
+
171
+ ```typescript
172
+ import {
173
+ ChatMessagingApi,
174
+ Configuration,
175
+ ChatChannelRolePayloadDTO
176
+ } from './api';
177
+
178
+ const configuration = new Configuration();
179
+ const apiInstance = new ChatMessagingApi(configuration);
180
+
181
+ let chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO; //
182
+
183
+ const { status, data } = await apiInstance.chatControllerRoleUpdate(
184
+ chatChannelRolePayloadDTO
185
+ );
186
+ ```
187
+
188
+ ### Parameters
189
+
190
+ |Name | Type | Description | Notes|
191
+ |------------- | ------------- | ------------- | -------------|
192
+ | **chatChannelRolePayloadDTO** | **ChatChannelRolePayloadDTO**| | |
193
+
194
+
195
+ ### Return type
196
+
197
+ **ChatResponseDTO**
198
+
199
+ ### Authorization
200
+
201
+ [bearer](../README.md#bearer)
202
+
203
+ ### HTTP request headers
204
+
205
+ - **Content-Type**: application/json
206
+ - **Accept**: application/json
207
+
208
+
209
+ ### HTTP response details
210
+ | Status code | Description | Response headers |
211
+ |-------------|-------------|------------------|
212
+ |**200** | | - |
213
+
214
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
215
+
@@ -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 2026-02-04T08:15:01Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-02-04T08:15:01Z]
9
+ **date** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-02-24T05:36:38Z]
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]
@@ -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
- **startDate** | **string** | The start date of the booking | [default to 2026-02-04T08:15:01Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-02-04T08:15:01Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
11
11
  **note** | **string** | Notes attached with booking | [optional] [default to undefined]
12
12
  **occasion** | **string** | Occasion id | [optional] [default to undefined]
13
13
  **calendar** | **Array&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -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
- **startDate** | **string** | The start date of the booking | [default to 2026-02-04T08:15:01Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-02-04T08:15:01Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
11
11
  **note** | **string** | Notes attached with booking | [optional] [default to undefined]
12
12
  **occasion** | **string** | Occasion id | [optional] [default to undefined]
13
13
  **calendar** | **Array&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  **whatsOnId** | **string** | Event ID | [optional] [default to undefined]
9
9
  **serviceId** | **string** | Service ID | [optional] [default to undefined]
10
10
  **rsvpId** | **string** | RSVP ID | [optional] [default to undefined]
11
- **startDate** | **string** | The start date of the booking | [optional] [default to 2026-02-04T08:14:58Z]
12
- **endDate** | **string** | The end date of the booking | [optional] [default to 2026-02-04T08:14:58Z]
11
+ **startDate** | **string** | The start date of the booking | [optional] [default to 2026-02-24T05:36:36Z]
12
+ **endDate** | **string** | The end date of the booking | [optional] [default to 2026-02-24T05:36:36Z]
13
13
  **discountId** | **string** | Discount ID | [optional] [default to undefined]
14
14
  **selectedStaff** | **string** | Staff ID | [optional] [default to undefined]
15
15
  **quantity** | **number** | | [optional] [default to 0]
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
24
24
  **emailTemplate** | **string** | Email template | [optional] [default to undefined]
25
25
  **venue** | **string** | Business venue | [optional] [default to undefined]
26
26
  **tags** | **Array&lt;string&gt;** | | [optional] [default to undefined]
27
+ **tagAdd** | **string** | | [optional] [default to undefined]
27
28
  **hideLocation** | **boolean** | | [optional] [default to undefined]
28
29
  **hostBy** | **string** | | [default to undefined]
29
30
  **hostImage** | **string** | | [default to undefined]
@@ -62,6 +63,7 @@ const instance: RSVPEvenPayloadDTO = {
62
63
  emailTemplate,
63
64
  venue,
64
65
  tags,
66
+ tagAdd,
65
67
  hideLocation,
66
68
  hostBy,
67
69
  hostImage,
@@ -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 2026-02-04T08:15:01Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-02-24T05:36:38Z]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
  **notes** | **string** | | [optional] [default to undefined]
package/docs/SignupDto.md CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **email** | **string** | The email of the user | [default to undefined]
9
9
  **password** | **string** | User Profile Name | [default to undefined]
10
+ **mobileNumber** | **string** | Phone No | [optional] [default to undefined]
10
11
  **planId** | **string** | | [optional] [default to undefined]
11
12
  **isApp** | **boolean** | | [optional] [default to true]
12
13
 
@@ -18,6 +19,7 @@ import { SignupDto } from './api';
18
19
  const instance: SignupDto = {
19
20
  email,
20
21
  password,
22
+ mobileNumber,
21
23
  planId,
22
24
  isApp,
23
25
  };
package/docs/TagsApi.md CHANGED
@@ -130,7 +130,7 @@ const apiInstance = new TagsApi(configuration);
130
130
  let page: number; // (default to undefined)
131
131
  let pageSize: number; // (default to undefined)
132
132
  let venue: Array<string>; // (optional) (default to undefined)
133
- let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>; // (optional) (default to undefined)
133
+ let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>; // (optional) (default to undefined)
134
134
 
135
135
  const { status, data } = await apiInstance.tagsControllerFindTags(
136
136
  page,
@@ -147,7 +147,7 @@ const { status, data } = await apiInstance.tagsControllerFindTags(
147
147
  | **page** | [**number**] | | defaults to undefined|
148
148
  | **pageSize** | [**number**] | | defaults to undefined|
149
149
  | **venue** | **Array&lt;string&gt;** | | (optional) defaults to undefined|
150
- | **category** | **Array<&#39;BOOKING&#39; &#124; &#39;CUSTOMER&#39; &#124; &#39;GOODAY&#39;>** | | (optional) defaults to undefined|
150
+ | **category** | **Array<&#39;BOOKING&#39; &#124; &#39;CUSTOMER&#39; &#124; &#39;GOODAY&#39; &#124; &#39;WEB&#39;>** | | (optional) defaults to undefined|
151
151
 
152
152
 
153
153
  ### Return type
@@ -189,7 +189,7 @@ const apiInstance = new TagsApi(configuration);
189
189
  let page: number; // (default to undefined)
190
190
  let pageSize: number; // (default to undefined)
191
191
  let venue: Array<string>; // (optional) (default to undefined)
192
- let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>; // (optional) (default to undefined)
192
+ let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>; // (optional) (default to undefined)
193
193
 
194
194
  const { status, data } = await apiInstance.tagsControllerGetTags(
195
195
  page,
@@ -206,7 +206,7 @@ const { status, data } = await apiInstance.tagsControllerGetTags(
206
206
  | **page** | [**number**] | | defaults to undefined|
207
207
  | **pageSize** | [**number**] | | defaults to undefined|
208
208
  | **venue** | **Array&lt;string&gt;** | | (optional) defaults to undefined|
209
- | **category** | **Array<&#39;BOOKING&#39; &#124; &#39;CUSTOMER&#39; &#124; &#39;GOODAY&#39;>** | | (optional) defaults to undefined|
209
+ | **category** | **Array<&#39;BOOKING&#39; &#124; &#39;CUSTOMER&#39; &#124; &#39;GOODAY&#39; &#124; &#39;WEB&#39;>** | | (optional) defaults to undefined|
210
210
 
211
211
 
212
212
  ### Return type
@@ -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 2026-02-04T08:15:01Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-02-04T09:15:01Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-02-24T05:36:38Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-02-24T06:36:38Z]
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&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "4.5.71",
3
+ "version": "4.5.73",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},