@gooday_corp/gooday-api-client 1.3.65 → 1.3.66
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/.openapi-generator/FILES +4 -0
- package/api.ts +80 -4
- package/docs/BusinessApi.md +2 -2
- package/docs/BusinessVenueListResponse.md +22 -0
- package/docs/BusinessVenueListResponseDTO.md +22 -0
- package/docs/CreateBookingPayload.md +1 -1
- package/docs/FriendsApi.md +2 -2
- package/docs/FriendsList.md +22 -0
- package/docs/FriendsListDTO.md +22 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -71,6 +71,8 @@ docs/BusinessTypeListResponse.md
|
|
|
71
71
|
docs/BusinessUnFavoriteResponse.md
|
|
72
72
|
docs/BusinessVenueDTO.md
|
|
73
73
|
docs/BusinessVenueDetailsEntity.md
|
|
74
|
+
docs/BusinessVenueListResponse.md
|
|
75
|
+
docs/BusinessVenueListResponseDTO.md
|
|
74
76
|
docs/BusinessVenueResponseDTO.md
|
|
75
77
|
docs/BusinessVenueTimingPayload.md
|
|
76
78
|
docs/BusinessVerificationEntity.md
|
|
@@ -143,6 +145,8 @@ docs/ForgotPasswordPayloadDTO.md
|
|
|
143
145
|
docs/ForgotPasswordResponseDTO.md
|
|
144
146
|
docs/FriendsApi.md
|
|
145
147
|
docs/FriendsDTO.md
|
|
148
|
+
docs/FriendsList.md
|
|
149
|
+
docs/FriendsListDTO.md
|
|
146
150
|
docs/FriendsResponseDTO.md
|
|
147
151
|
docs/FriendshipStatusCheck.md
|
|
148
152
|
docs/FriendshipStatusDTO.md
|
package/api.ts
CHANGED
|
@@ -2298,6 +2298,44 @@ export interface BusinessVenueDetailsEntity {
|
|
|
2298
2298
|
*/
|
|
2299
2299
|
'favoriteCount': number;
|
|
2300
2300
|
}
|
|
2301
|
+
/**
|
|
2302
|
+
*
|
|
2303
|
+
* @export
|
|
2304
|
+
* @interface BusinessVenueListResponse
|
|
2305
|
+
*/
|
|
2306
|
+
export interface BusinessVenueListResponse {
|
|
2307
|
+
/**
|
|
2308
|
+
* Business verification
|
|
2309
|
+
* @type {Array<BusinessVenueDetailsEntity>}
|
|
2310
|
+
* @memberof BusinessVenueListResponse
|
|
2311
|
+
*/
|
|
2312
|
+
'data': Array<BusinessVenueDetailsEntity>;
|
|
2313
|
+
/**
|
|
2314
|
+
*
|
|
2315
|
+
* @type {number}
|
|
2316
|
+
* @memberof BusinessVenueListResponse
|
|
2317
|
+
*/
|
|
2318
|
+
'totalCount': number;
|
|
2319
|
+
}
|
|
2320
|
+
/**
|
|
2321
|
+
*
|
|
2322
|
+
* @export
|
|
2323
|
+
* @interface BusinessVenueListResponseDTO
|
|
2324
|
+
*/
|
|
2325
|
+
export interface BusinessVenueListResponseDTO {
|
|
2326
|
+
/**
|
|
2327
|
+
* statusCode
|
|
2328
|
+
* @type {number}
|
|
2329
|
+
* @memberof BusinessVenueListResponseDTO
|
|
2330
|
+
*/
|
|
2331
|
+
'statusCode': number;
|
|
2332
|
+
/**
|
|
2333
|
+
*
|
|
2334
|
+
* @type {BusinessVenueListResponse}
|
|
2335
|
+
* @memberof BusinessVenueListResponseDTO
|
|
2336
|
+
*/
|
|
2337
|
+
'data': BusinessVenueListResponse;
|
|
2338
|
+
}
|
|
2301
2339
|
/**
|
|
2302
2340
|
*
|
|
2303
2341
|
* @export
|
|
@@ -4438,6 +4476,44 @@ export interface FriendsDTO {
|
|
|
4438
4476
|
*/
|
|
4439
4477
|
'data': Array<UserEntity>;
|
|
4440
4478
|
}
|
|
4479
|
+
/**
|
|
4480
|
+
*
|
|
4481
|
+
* @export
|
|
4482
|
+
* @interface FriendsList
|
|
4483
|
+
*/
|
|
4484
|
+
export interface FriendsList {
|
|
4485
|
+
/**
|
|
4486
|
+
* User
|
|
4487
|
+
* @type {Array<UserEntity>}
|
|
4488
|
+
* @memberof FriendsList
|
|
4489
|
+
*/
|
|
4490
|
+
'data': Array<UserEntity>;
|
|
4491
|
+
/**
|
|
4492
|
+
*
|
|
4493
|
+
* @type {number}
|
|
4494
|
+
* @memberof FriendsList
|
|
4495
|
+
*/
|
|
4496
|
+
'totalCount': number;
|
|
4497
|
+
}
|
|
4498
|
+
/**
|
|
4499
|
+
*
|
|
4500
|
+
* @export
|
|
4501
|
+
* @interface FriendsListDTO
|
|
4502
|
+
*/
|
|
4503
|
+
export interface FriendsListDTO {
|
|
4504
|
+
/**
|
|
4505
|
+
* statusCode
|
|
4506
|
+
* @type {number}
|
|
4507
|
+
* @memberof FriendsListDTO
|
|
4508
|
+
*/
|
|
4509
|
+
'statusCode': number;
|
|
4510
|
+
/**
|
|
4511
|
+
* User
|
|
4512
|
+
* @type {FriendsList}
|
|
4513
|
+
* @memberof FriendsListDTO
|
|
4514
|
+
*/
|
|
4515
|
+
'data': FriendsList;
|
|
4516
|
+
}
|
|
4441
4517
|
/**
|
|
4442
4518
|
*
|
|
4443
4519
|
* @export
|
|
@@ -13421,7 +13497,7 @@ export const BusinessApiFp = function(configuration?: Configuration) {
|
|
|
13421
13497
|
* @param {*} [options] Override http request option.
|
|
13422
13498
|
* @throws {RequiredError}
|
|
13423
13499
|
*/
|
|
13424
|
-
async businessTypeControllerGetBusinessVenue(getBusinessVenueDto: GetBusinessVenueDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
13500
|
+
async businessTypeControllerGetBusinessVenue(getBusinessVenueDto: GetBusinessVenueDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BusinessVenueListResponseDTO>> {
|
|
13425
13501
|
const localVarAxiosArgs = await localVarAxiosParamCreator.businessTypeControllerGetBusinessVenue(getBusinessVenueDto, options);
|
|
13426
13502
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13427
13503
|
const localVarOperationServerBasePath = operationServerMap['BusinessApi.businessTypeControllerGetBusinessVenue']?.[localVarOperationServerIndex]?.url;
|
|
@@ -13718,7 +13794,7 @@ export const BusinessApiFactory = function (configuration?: Configuration, baseP
|
|
|
13718
13794
|
* @param {*} [options] Override http request option.
|
|
13719
13795
|
* @throws {RequiredError}
|
|
13720
13796
|
*/
|
|
13721
|
-
businessTypeControllerGetBusinessVenue(getBusinessVenueDto: GetBusinessVenueDto, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
13797
|
+
businessTypeControllerGetBusinessVenue(getBusinessVenueDto: GetBusinessVenueDto, options?: RawAxiosRequestConfig): AxiosPromise<BusinessVenueListResponseDTO> {
|
|
13722
13798
|
return localVarFp.businessTypeControllerGetBusinessVenue(getBusinessVenueDto, options).then((request) => request(axios, basePath));
|
|
13723
13799
|
},
|
|
13724
13800
|
/**
|
|
@@ -16687,7 +16763,7 @@ export const FriendsApiFp = function(configuration?: Configuration) {
|
|
|
16687
16763
|
* @param {*} [options] Override http request option.
|
|
16688
16764
|
* @throws {RequiredError}
|
|
16689
16765
|
*/
|
|
16690
|
-
async friendControllerFindFriends(page: number, pageSize: number, query?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
16766
|
+
async friendControllerFindFriends(page: number, pageSize: number, query?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FriendsListDTO>> {
|
|
16691
16767
|
const localVarAxiosArgs = await localVarAxiosParamCreator.friendControllerFindFriends(page, pageSize, query, options);
|
|
16692
16768
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16693
16769
|
const localVarOperationServerBasePath = operationServerMap['FriendsApi.friendControllerFindFriends']?.[localVarOperationServerIndex]?.url;
|
|
@@ -16835,7 +16911,7 @@ export const FriendsApiFactory = function (configuration?: Configuration, basePa
|
|
|
16835
16911
|
* @param {*} [options] Override http request option.
|
|
16836
16912
|
* @throws {RequiredError}
|
|
16837
16913
|
*/
|
|
16838
|
-
friendControllerFindFriends(page: number, pageSize: number, query?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
16914
|
+
friendControllerFindFriends(page: number, pageSize: number, query?: string, options?: RawAxiosRequestConfig): AxiosPromise<FriendsListDTO> {
|
|
16839
16915
|
return localVarFp.friendControllerFindFriends(page, pageSize, query, options).then((request) => request(axios, basePath));
|
|
16840
16916
|
},
|
|
16841
16917
|
/**
|
package/docs/BusinessApi.md
CHANGED
|
@@ -784,7 +784,7 @@ No authorization required
|
|
|
784
784
|
[[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)
|
|
785
785
|
|
|
786
786
|
# **businessTypeControllerGetBusinessVenue**
|
|
787
|
-
>
|
|
787
|
+
> BusinessVenueListResponseDTO businessTypeControllerGetBusinessVenue(getBusinessVenueDto)
|
|
788
788
|
|
|
789
789
|
|
|
790
790
|
### Example
|
|
@@ -815,7 +815,7 @@ const { status, data } = await apiInstance.businessTypeControllerGetBusinessVenu
|
|
|
815
815
|
|
|
816
816
|
### Return type
|
|
817
817
|
|
|
818
|
-
**
|
|
818
|
+
**BusinessVenueListResponseDTO**
|
|
819
819
|
|
|
820
820
|
### Authorization
|
|
821
821
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# BusinessVenueListResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<BusinessVenueDetailsEntity>**](BusinessVenueDetailsEntity.md) | Business verification | [default to undefined]
|
|
9
|
+
**totalCount** | **number** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { BusinessVenueListResponse } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: BusinessVenueListResponse = {
|
|
17
|
+
data,
|
|
18
|
+
totalCount,
|
|
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
|
+
# BusinessVenueListResponseDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
9
|
+
**data** | [**BusinessVenueListResponse**](BusinessVenueListResponse.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { BusinessVenueListResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: BusinessVenueListResponseDTO = {
|
|
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)
|
|
@@ -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-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-16T17:13:46+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]
|
package/docs/FriendsApi.md
CHANGED
|
@@ -171,7 +171,7 @@ const { status, data } = await apiInstance.friendControllerDeclineFriendRequest(
|
|
|
171
171
|
[[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)
|
|
172
172
|
|
|
173
173
|
# **friendControllerFindFriends**
|
|
174
|
-
>
|
|
174
|
+
> FriendsListDTO friendControllerFindFriends()
|
|
175
175
|
|
|
176
176
|
|
|
177
177
|
### Example
|
|
@@ -207,7 +207,7 @@ const { status, data } = await apiInstance.friendControllerFindFriends(
|
|
|
207
207
|
|
|
208
208
|
### Return type
|
|
209
209
|
|
|
210
|
-
**
|
|
210
|
+
**FriendsListDTO**
|
|
211
211
|
|
|
212
212
|
### Authorization
|
|
213
213
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FriendsList
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<UserEntity>**](UserEntity.md) | User | [default to undefined]
|
|
9
|
+
**totalCount** | **number** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { FriendsList } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: FriendsList = {
|
|
17
|
+
data,
|
|
18
|
+
totalCount,
|
|
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
|
+
# FriendsListDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
9
|
+
**data** | [**FriendsList**](FriendsList.md) | User | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { FriendsListDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: FriendsListDTO = {
|
|
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-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-16T17:13:46+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-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-05-16T17:13:46+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-16T18:13:46+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<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|