@gooday_corp/gooday-api-client 4.5.71 → 4.5.72

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
package/api.ts CHANGED
@@ -1730,6 +1730,14 @@ export interface ChatChannelCreateResponseDTO {
1730
1730
  'statusCode': number;
1731
1731
  'cid': string;
1732
1732
  }
1733
+ export interface ChatChannelRole {
1734
+ 'user_id': string;
1735
+ 'channel_role': string;
1736
+ }
1737
+ export interface ChatChannelRolePayloadDTO {
1738
+ 'users': Array<ChatChannelRole>;
1739
+ 'channelId': string;
1740
+ }
1733
1741
  export interface ChatResponseDTO {
1734
1742
  /**
1735
1743
  * statusCode
@@ -3894,6 +3902,7 @@ export interface RSVPEvenPayloadDTO {
3894
3902
  */
3895
3903
  'venue'?: string;
3896
3904
  'tags'?: Array<string>;
3905
+ 'tagAdd'?: string;
3897
3906
  'hideLocation'?: boolean;
3898
3907
  'hostBy': string;
3899
3908
  'hostImage': string;
@@ -4486,7 +4495,8 @@ export interface TagPayloadDTO {
4486
4495
  export const TagPayloadDTOCategoryEnum = {
4487
4496
  Booking: 'BOOKING',
4488
4497
  Customer: 'CUSTOMER',
4489
- Gooday: 'GOODAY'
4498
+ Gooday: 'GOODAY',
4499
+ Web: 'WEB'
4490
4500
  } as const;
4491
4501
 
4492
4502
  export type TagPayloadDTOCategoryEnum = typeof TagPayloadDTOCategoryEnum[keyof typeof TagPayloadDTOCategoryEnum];
@@ -4525,7 +4535,8 @@ export interface TagUpdatePayloadDTO {
4525
4535
  export const TagUpdatePayloadDTOCategoryEnum = {
4526
4536
  Booking: 'BOOKING',
4527
4537
  Customer: 'CUSTOMER',
4528
- Gooday: 'GOODAY'
4538
+ Gooday: 'GOODAY',
4539
+ Web: 'WEB'
4529
4540
  } as const;
4530
4541
 
4531
4542
  export type TagUpdatePayloadDTOCategoryEnum = typeof TagUpdatePayloadDTOCategoryEnum[keyof typeof TagUpdatePayloadDTOCategoryEnum];
@@ -4557,7 +4568,8 @@ export interface TagsResponse {
4557
4568
  export const TagsResponseCategoryEnum = {
4558
4569
  Booking: 'BOOKING',
4559
4570
  Customer: 'CUSTOMER',
4560
- Gooday: 'GOODAY'
4571
+ Gooday: 'GOODAY',
4572
+ Web: 'WEB'
4561
4573
  } as const;
4562
4574
 
4563
4575
  export type TagsResponseCategoryEnum = typeof TagsResponseCategoryEnum[keyof typeof TagsResponseCategoryEnum];
@@ -12479,6 +12491,44 @@ export const ChatMessagingApiAxiosParamCreator = function (configuration?: Confi
12479
12491
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
12480
12492
  localVarRequestOptions.data = serializeDataIfNeeded(channelCreateMultipleUsersPayload, localVarRequestOptions, configuration)
12481
12493
 
12494
+ return {
12495
+ url: toPathString(localVarUrlObj),
12496
+ options: localVarRequestOptions,
12497
+ };
12498
+ },
12499
+ /**
12500
+ *
12501
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12502
+ * @param {*} [options] Override http request option.
12503
+ * @throws {RequiredError}
12504
+ */
12505
+ chatControllerRoleUpdate: async (chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12506
+ // verify required parameter 'chatChannelRolePayloadDTO' is not null or undefined
12507
+ assertParamExists('chatControllerRoleUpdate', 'chatChannelRolePayloadDTO', chatChannelRolePayloadDTO)
12508
+ const localVarPath = `/v1/chat-messaging/user/role`;
12509
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
12510
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
12511
+ let baseOptions;
12512
+ if (configuration) {
12513
+ baseOptions = configuration.baseOptions;
12514
+ }
12515
+
12516
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
12517
+ const localVarHeaderParameter = {} as any;
12518
+ const localVarQueryParameter = {} as any;
12519
+
12520
+ // authentication bearer required
12521
+ // http bearer authentication required
12522
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
12523
+
12524
+ localVarHeaderParameter['Content-Type'] = 'application/json';
12525
+ localVarHeaderParameter['Accept'] = 'application/json';
12526
+
12527
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
12528
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
12529
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
12530
+ localVarRequestOptions.data = serializeDataIfNeeded(chatChannelRolePayloadDTO, localVarRequestOptions, configuration)
12531
+
12482
12532
  return {
12483
12533
  url: toPathString(localVarUrlObj),
12484
12534
  options: localVarRequestOptions,
@@ -12529,6 +12579,18 @@ export const ChatMessagingApiFp = function(configuration?: Configuration) {
12529
12579
  const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerCreateUsers']?.[localVarOperationServerIndex]?.url;
12530
12580
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12531
12581
  },
12582
+ /**
12583
+ *
12584
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12585
+ * @param {*} [options] Override http request option.
12586
+ * @throws {RequiredError}
12587
+ */
12588
+ async chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatResponseDTO>> {
12589
+ const localVarAxiosArgs = await localVarAxiosParamCreator.chatControllerRoleUpdate(chatChannelRolePayloadDTO, options);
12590
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
12591
+ const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerRoleUpdate']?.[localVarOperationServerIndex]?.url;
12592
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
12593
+ },
12532
12594
  }
12533
12595
  };
12534
12596
 
@@ -12565,6 +12627,15 @@ export const ChatMessagingApiFactory = function (configuration?: Configuration,
12565
12627
  chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
12566
12628
  return localVarFp.chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(axios, basePath));
12567
12629
  },
12630
+ /**
12631
+ *
12632
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12633
+ * @param {*} [options] Override http request option.
12634
+ * @throws {RequiredError}
12635
+ */
12636
+ chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
12637
+ return localVarFp.chatControllerRoleUpdate(chatChannelRolePayloadDTO, options).then((request) => request(axios, basePath));
12638
+ },
12568
12639
  };
12569
12640
  };
12570
12641
 
@@ -12601,6 +12672,16 @@ export class ChatMessagingApi extends BaseAPI {
12601
12672
  public chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig) {
12602
12673
  return ChatMessagingApiFp(this.configuration).chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(this.axios, this.basePath));
12603
12674
  }
12675
+
12676
+ /**
12677
+ *
12678
+ * @param {ChatChannelRolePayloadDTO} chatChannelRolePayloadDTO
12679
+ * @param {*} [options] Override http request option.
12680
+ * @throws {RequiredError}
12681
+ */
12682
+ public chatControllerRoleUpdate(chatChannelRolePayloadDTO: ChatChannelRolePayloadDTO, options?: RawAxiosRequestConfig) {
12683
+ return ChatMessagingApiFp(this.configuration).chatControllerRoleUpdate(chatChannelRolePayloadDTO, options).then((request) => request(this.axios, this.basePath));
12684
+ }
12604
12685
  }
12605
12686
 
12606
12687
 
@@ -20352,13 +20433,15 @@ export class TagsApi extends BaseAPI {
20352
20433
  export const TagsControllerFindTagsCategoryEnum = {
20353
20434
  Booking: 'BOOKING',
20354
20435
  Customer: 'CUSTOMER',
20355
- Gooday: 'GOODAY'
20436
+ Gooday: 'GOODAY',
20437
+ Web: 'WEB'
20356
20438
  } as const;
20357
20439
  export type TagsControllerFindTagsCategoryEnum = typeof TagsControllerFindTagsCategoryEnum[keyof typeof TagsControllerFindTagsCategoryEnum];
20358
20440
  export const TagsControllerGetTagsCategoryEnum = {
20359
20441
  Booking: 'BOOKING',
20360
20442
  Customer: 'CUSTOMER',
20361
- Gooday: 'GOODAY'
20443
+ Gooday: 'GOODAY',
20444
+ Web: 'WEB'
20362
20445
  } as const;
20363
20446
  export type TagsControllerGetTagsCategoryEnum = typeof TagsControllerGetTagsCategoryEnum[keyof typeof TagsControllerGetTagsCategoryEnum];
20364
20447
 
@@ -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-06T13:05:49Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-02-06T13:05:49Z]
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-06T13:05:49Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-06T13:05:49Z]
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-06T13:05:49Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-06T13:05:49Z]
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-06T13:05:47Z]
12
+ **endDate** | **string** | The end date of the booking | [optional] [default to 2026-02-06T13:05:47Z]
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-06T13:05:49Z]
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/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-06T13:05:49Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-02-06T14:05:49Z]
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.72",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},