@gooday_corp/gooday-api-client 1.3.43 → 1.3.44

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.
@@ -157,8 +157,9 @@ docs/HistoryApi.md
157
157
  docs/HistoryEntity.md
158
158
  docs/HistoryPayloadDTO.md
159
159
  docs/HistoryResponseDTO.md
160
- docs/HomeFeedEListResponseDTO.md
161
160
  docs/HomeFeedEntity.md
161
+ docs/HomeFeedListResponse.md
162
+ docs/HomeFeedListResponseDTO.md
162
163
  docs/IntegrationApi.md
163
164
  docs/IntegrationEntity.md
164
165
  docs/IntegrationResponse.md
package/api.ts CHANGED
@@ -4734,25 +4734,6 @@ export interface HistoryResponseDTO {
4734
4734
  */
4735
4735
  'data': HistoryEntity;
4736
4736
  }
4737
- /**
4738
- *
4739
- * @export
4740
- * @interface HomeFeedEListResponseDTO
4741
- */
4742
- export interface HomeFeedEListResponseDTO {
4743
- /**
4744
- * statusCode
4745
- * @type {number}
4746
- * @memberof HomeFeedEListResponseDTO
4747
- */
4748
- 'statusCode': number;
4749
- /**
4750
- *
4751
- * @type {Array<HomeFeedEntity>}
4752
- * @memberof HomeFeedEListResponseDTO
4753
- */
4754
- 'data': Array<HomeFeedEntity>;
4755
- }
4756
4737
  /**
4757
4738
  *
4758
4739
  * @export
@@ -4778,6 +4759,44 @@ export interface HomeFeedEntity {
4778
4759
  */
4779
4760
  'type': string;
4780
4761
  }
4762
+ /**
4763
+ *
4764
+ * @export
4765
+ * @interface HomeFeedListResponse
4766
+ */
4767
+ export interface HomeFeedListResponse {
4768
+ /**
4769
+ *
4770
+ * @type {string}
4771
+ * @memberof HomeFeedListResponse
4772
+ */
4773
+ 'title': string;
4774
+ /**
4775
+ *
4776
+ * @type {Array<HomeFeedEntity>}
4777
+ * @memberof HomeFeedListResponse
4778
+ */
4779
+ 'data': Array<HomeFeedEntity>;
4780
+ }
4781
+ /**
4782
+ *
4783
+ * @export
4784
+ * @interface HomeFeedListResponseDTO
4785
+ */
4786
+ export interface HomeFeedListResponseDTO {
4787
+ /**
4788
+ * statusCode
4789
+ * @type {number}
4790
+ * @memberof HomeFeedListResponseDTO
4791
+ */
4792
+ 'statusCode': number;
4793
+ /**
4794
+ *
4795
+ * @type {Array<HomeFeedListResponse>}
4796
+ * @memberof HomeFeedListResponseDTO
4797
+ */
4798
+ 'data': Array<HomeFeedListResponse>;
4799
+ }
4781
4800
  /**
4782
4801
  *
4783
4802
  * @export
@@ -8936,7 +8955,7 @@ export const AIApiFp = function(configuration?: Configuration) {
8936
8955
  * @param {*} [options] Override http request option.
8937
8956
  * @throws {RequiredError}
8938
8957
  */
8939
- async assistantControllerGenerateHomeFeed(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HomeFeedEListResponseDTO>> {
8958
+ async assistantControllerGenerateHomeFeed(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HomeFeedListResponseDTO>> {
8940
8959
  const localVarAxiosArgs = await localVarAxiosParamCreator.assistantControllerGenerateHomeFeed(options);
8941
8960
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
8942
8961
  const localVarOperationServerBasePath = operationServerMap['AIApi.assistantControllerGenerateHomeFeed']?.[localVarOperationServerIndex]?.url;
@@ -8989,7 +9008,7 @@ export const AIApiFactory = function (configuration?: Configuration, basePath?:
8989
9008
  * @param {*} [options] Override http request option.
8990
9009
  * @throws {RequiredError}
8991
9010
  */
8992
- assistantControllerGenerateHomeFeed(options?: RawAxiosRequestConfig): AxiosPromise<HomeFeedEListResponseDTO> {
9011
+ assistantControllerGenerateHomeFeed(options?: RawAxiosRequestConfig): AxiosPromise<HomeFeedListResponseDTO> {
8993
9012
  return localVarFp.assistantControllerGenerateHomeFeed(options).then((request) => request(axios, basePath));
8994
9013
  },
8995
9014
  /**
package/docs/AIApi.md CHANGED
@@ -63,7 +63,7 @@ const { status, data } = await apiInstance.assistantControllerAiSuggestionList(
63
63
  [[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)
64
64
 
65
65
  # **assistantControllerGenerateHomeFeed**
66
- > HomeFeedEListResponseDTO assistantControllerGenerateHomeFeed()
66
+ > HomeFeedListResponseDTO assistantControllerGenerateHomeFeed()
67
67
 
68
68
 
69
69
  ### Example
@@ -86,7 +86,7 @@ This endpoint does not have any parameters.
86
86
 
87
87
  ### Return type
88
88
 
89
- **HomeFeedEListResponseDTO**
89
+ **HomeFeedListResponseDTO**
90
90
 
91
91
  ### Authorization
92
92
 
@@ -6,7 +6,7 @@
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-05-05T14:32:04+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-05T14:42:12+05:30]
10
10
  **from** | **string** | | [optional] [default to undefined]
11
11
  **to** | **string** | | [optional] [default to undefined]
12
12
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -1,20 +1,20 @@
1
- # HomeFeedEListResponseDTO
1
+ # HomeFeedListResponse
2
2
 
3
3
 
4
4
  ## Properties
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **statusCode** | **number** | statusCode | [default to undefined]
8
+ **title** | **string** | | [default to undefined]
9
9
  **data** | [**Array&lt;HomeFeedEntity&gt;**](HomeFeedEntity.md) | | [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
13
13
  ```typescript
14
- import { HomeFeedEListResponseDTO } from './api';
14
+ import { HomeFeedListResponse } from './api';
15
15
 
16
- const instance: HomeFeedEListResponseDTO = {
17
- statusCode,
16
+ const instance: HomeFeedListResponse = {
17
+ title,
18
18
  data,
19
19
  };
20
20
  ```
@@ -0,0 +1,22 @@
1
+ # HomeFeedListResponseDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | [**Array&lt;HomeFeedListResponse&gt;**](HomeFeedListResponse.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { HomeFeedListResponseDTO } from './api';
15
+
16
+ const instance: HomeFeedListResponseDTO = {
17
+ statusCode,
18
+ data,
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)
@@ -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-05-05T14:32:04+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-05T14:42:12+05:30]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
 
@@ -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-05-05T14:32:04+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-05T15:32:04+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-05T14:42:12+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-05T15:42:12+05:30]
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": "1.3.43",
3
+ "version": "1.3.44",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},