@gooday_corp/gooday-api-client 4.6.0 → 4.6.3

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.
@@ -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
  */
@@ -3902,6 +3906,7 @@ export interface RSVPEvenPayloadDTO {
3902
3906
  */
3903
3907
  'venue'?: string;
3904
3908
  'tags'?: Array<string>;
3909
+ 'tagAdd'?: string;
3905
3910
  'hideLocation'?: boolean;
3906
3911
  'hostBy': string;
3907
3912
  'hostImage': string;
@@ -4360,6 +4365,10 @@ export interface SignupDto {
4360
4365
  * User Profile Name
4361
4366
  */
4362
4367
  'password': string;
4368
+ /**
4369
+ * Phone No
4370
+ */
4371
+ 'mobileNumber'?: string;
4363
4372
  'planId'?: string;
4364
4373
  'isApp'?: boolean;
4365
4374
  }
@@ -4494,7 +4503,8 @@ export interface TagPayloadDTO {
4494
4503
  export const TagPayloadDTOCategoryEnum = {
4495
4504
  Booking: 'BOOKING',
4496
4505
  Customer: 'CUSTOMER',
4497
- Gooday: 'GOODAY'
4506
+ Gooday: 'GOODAY',
4507
+ Web: 'WEB'
4498
4508
  } as const;
4499
4509
 
4500
4510
  export type TagPayloadDTOCategoryEnum = typeof TagPayloadDTOCategoryEnum[keyof typeof TagPayloadDTOCategoryEnum];
@@ -4533,7 +4543,8 @@ export interface TagUpdatePayloadDTO {
4533
4543
  export const TagUpdatePayloadDTOCategoryEnum = {
4534
4544
  Booking: 'BOOKING',
4535
4545
  Customer: 'CUSTOMER',
4536
- Gooday: 'GOODAY'
4546
+ Gooday: 'GOODAY',
4547
+ Web: 'WEB'
4537
4548
  } as const;
4538
4549
 
4539
4550
  export type TagUpdatePayloadDTOCategoryEnum = typeof TagUpdatePayloadDTOCategoryEnum[keyof typeof TagUpdatePayloadDTOCategoryEnum];
@@ -4565,7 +4576,8 @@ export interface TagsResponse {
4565
4576
  export const TagsResponseCategoryEnum = {
4566
4577
  Booking: 'BOOKING',
4567
4578
  Customer: 'CUSTOMER',
4568
- Gooday: 'GOODAY'
4579
+ Gooday: 'GOODAY',
4580
+ Web: 'WEB'
4569
4581
  } as const;
4570
4582
 
4571
4583
  export type TagsResponseCategoryEnum = typeof TagsResponseCategoryEnum[keyof typeof TagsResponseCategoryEnum];
@@ -18890,6 +18902,40 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18890
18902
  options: localVarRequestOptions,
18891
18903
  };
18892
18904
  },
18905
+ /**
18906
+ *
18907
+ * @param {RSVPEventFindDTO} rSVPEventFindDTO
18908
+ * @param {*} [options] Override http request option.
18909
+ * @throws {RequiredError}
18910
+ */
18911
+ rSVPControllerHostEvents: async (rSVPEventFindDTO: RSVPEventFindDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18912
+ // verify required parameter 'rSVPEventFindDTO' is not null or undefined
18913
+ assertParamExists('rSVPControllerHostEvents', 'rSVPEventFindDTO', rSVPEventFindDTO)
18914
+ const localVarPath = `/v1/rsvp/host/events`;
18915
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18916
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18917
+ let baseOptions;
18918
+ if (configuration) {
18919
+ baseOptions = configuration.baseOptions;
18920
+ }
18921
+
18922
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
18923
+ const localVarHeaderParameter = {} as any;
18924
+ const localVarQueryParameter = {} as any;
18925
+
18926
+ localVarHeaderParameter['Content-Type'] = 'application/json';
18927
+ localVarHeaderParameter['Accept'] = 'application/json';
18928
+
18929
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18930
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18931
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18932
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFindDTO, localVarRequestOptions, configuration)
18933
+
18934
+ return {
18935
+ url: toPathString(localVarUrlObj),
18936
+ options: localVarRequestOptions,
18937
+ };
18938
+ },
18893
18939
  /**
18894
18940
  *
18895
18941
  * @param {string} id
@@ -19245,6 +19291,18 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
19245
19291
  const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerFavoriteRSVPEventById']?.[localVarOperationServerIndex]?.url;
19246
19292
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
19247
19293
  },
19294
+ /**
19295
+ *
19296
+ * @param {RSVPEventFindDTO} rSVPEventFindDTO
19297
+ * @param {*} [options] Override http request option.
19298
+ * @throws {RequiredError}
19299
+ */
19300
+ async rSVPControllerHostEvents(rSVPEventFindDTO: RSVPEventFindDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventResponseDTO>> {
19301
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerHostEvents(rSVPEventFindDTO, options);
19302
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19303
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerHostEvents']?.[localVarOperationServerIndex]?.url;
19304
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
19305
+ },
19248
19306
  /**
19249
19307
  *
19250
19308
  * @param {string} id
@@ -19396,6 +19454,15 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
19396
19454
  rSVPControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteResponsedDTO> {
19397
19455
  return localVarFp.rSVPControllerFavoriteRSVPEventById(id, options).then((request) => request(axios, basePath));
19398
19456
  },
19457
+ /**
19458
+ *
19459
+ * @param {RSVPEventFindDTO} rSVPEventFindDTO
19460
+ * @param {*} [options] Override http request option.
19461
+ * @throws {RequiredError}
19462
+ */
19463
+ rSVPControllerHostEvents(rSVPEventFindDTO: RSVPEventFindDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
19464
+ return localVarFp.rSVPControllerHostEvents(rSVPEventFindDTO, options).then((request) => request(axios, basePath));
19465
+ },
19399
19466
  /**
19400
19467
  *
19401
19468
  * @param {string} id
@@ -19526,6 +19593,16 @@ export class RSVPEventApi extends BaseAPI {
19526
19593
  return RSVPEventApiFp(this.configuration).rSVPControllerFavoriteRSVPEventById(id, options).then((request) => request(this.axios, this.basePath));
19527
19594
  }
19528
19595
 
19596
+ /**
19597
+ *
19598
+ * @param {RSVPEventFindDTO} rSVPEventFindDTO
19599
+ * @param {*} [options] Override http request option.
19600
+ * @throws {RequiredError}
19601
+ */
19602
+ public rSVPControllerHostEvents(rSVPEventFindDTO: RSVPEventFindDTO, options?: RawAxiosRequestConfig) {
19603
+ return RSVPEventApiFp(this.configuration).rSVPControllerHostEvents(rSVPEventFindDTO, options).then((request) => request(this.axios, this.basePath));
19604
+ }
19605
+
19529
19606
  /**
19530
19607
  *
19531
19608
  * @param {string} id
@@ -20429,13 +20506,15 @@ export class TagsApi extends BaseAPI {
20429
20506
  export const TagsControllerFindTagsCategoryEnum = {
20430
20507
  Booking: 'BOOKING',
20431
20508
  Customer: 'CUSTOMER',
20432
- Gooday: 'GOODAY'
20509
+ Gooday: 'GOODAY',
20510
+ Web: 'WEB'
20433
20511
  } as const;
20434
20512
  export type TagsControllerFindTagsCategoryEnum = typeof TagsControllerFindTagsCategoryEnum[keyof typeof TagsControllerFindTagsCategoryEnum];
20435
20513
  export const TagsControllerGetTagsCategoryEnum = {
20436
20514
  Booking: 'BOOKING',
20437
20515
  Customer: 'CUSTOMER',
20438
- Gooday: 'GOODAY'
20516
+ Gooday: 'GOODAY',
20517
+ Web: 'WEB'
20439
20518
  } as const;
20440
20519
  export type TagsControllerGetTagsCategoryEnum = typeof TagsControllerGetTagsCategoryEnum[keyof typeof TagsControllerGetTagsCategoryEnum];
20441
20520
 
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
  };
@@ -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-05T10:41:08Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-02-05T10:41:08Z]
9
+ **date** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-02-27T14:36:04Z]
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-05T10:41:08Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-02-05T10:41:08Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
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-05T10:41:08Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-02-05T10:41:08Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
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-05T10:41:06Z]
12
- **endDate** | **string** | The end date of the booking | [optional] [default to 2026-02-05T10:41:06Z]
11
+ **startDate** | **string** | The start date of the booking | [optional] [default to 2026-02-27T14:36:02Z]
12
+ **endDate** | **string** | The end date of the booking | [optional] [default to 2026-02-27T14:36:02Z]
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,
@@ -9,6 +9,7 @@ All URIs are relative to *http://localhost:8080*
9
9
  |[**rSVPControllerDeleteRSVPEvent**](#rsvpcontrollerdeletersvpevent) | **DELETE** /v1/rsvp | |
10
10
  |[**rSVPControllerDeleteRSVPFavorites**](#rsvpcontrollerdeletersvpfavorites) | **DELETE** /v1/rsvp/event/unfavorite | |
11
11
  |[**rSVPControllerFavoriteRSVPEventById**](#rsvpcontrollerfavoritersvpeventbyid) | **GET** /v1/rsvp/favoriteId/{id} | |
12
+ |[**rSVPControllerHostEvents**](#rsvpcontrollerhostevents) | **POST** /v1/rsvp/host/events | |
12
13
  |[**rSVPControllerReminderEventCalendar**](#rsvpcontrollerremindereventcalendar) | **PUT** /v1/rsvp/remindar/{id} | |
13
14
  |[**rSVPControllerRsvpEventById**](#rsvpcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
14
15
  |[**rSVPControllerRsvpEvents**](#rsvpcontrollerrsvpevents) | **POST** /v1/rsvp/rsvp/event | |
@@ -264,6 +265,57 @@ const { status, data } = await apiInstance.rSVPControllerFavoriteRSVPEventById(
264
265
  - **Accept**: application/json
265
266
 
266
267
 
268
+ ### HTTP response details
269
+ | Status code | Description | Response headers |
270
+ |-------------|-------------|------------------|
271
+ |**200** | | - |
272
+
273
+ [[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)
274
+
275
+ # **rSVPControllerHostEvents**
276
+ > RSVPEventResponseDTO rSVPControllerHostEvents(rSVPEventFindDTO)
277
+
278
+
279
+ ### Example
280
+
281
+ ```typescript
282
+ import {
283
+ RSVPEventApi,
284
+ Configuration,
285
+ RSVPEventFindDTO
286
+ } from './api';
287
+
288
+ const configuration = new Configuration();
289
+ const apiInstance = new RSVPEventApi(configuration);
290
+
291
+ let rSVPEventFindDTO: RSVPEventFindDTO; //
292
+
293
+ const { status, data } = await apiInstance.rSVPControllerHostEvents(
294
+ rSVPEventFindDTO
295
+ );
296
+ ```
297
+
298
+ ### Parameters
299
+
300
+ |Name | Type | Description | Notes|
301
+ |------------- | ------------- | ------------- | -------------|
302
+ | **rSVPEventFindDTO** | **RSVPEventFindDTO**| | |
303
+
304
+
305
+ ### Return type
306
+
307
+ **RSVPEventResponseDTO**
308
+
309
+ ### Authorization
310
+
311
+ No authorization required
312
+
313
+ ### HTTP request headers
314
+
315
+ - **Content-Type**: application/json
316
+ - **Accept**: application/json
317
+
318
+
267
319
  ### HTTP response details
268
320
  | Status code | Description | Response headers |
269
321
  |-------------|-------------|------------------|
@@ -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-05T10:41:08Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-02-27T14:36:04Z]
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-05T10:41:08Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-02-05T11:41:08Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-02-27T14:36:04Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-02-27T15:36:04Z]
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.6.0",
3
+ "version": "4.6.3",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},