@gooday_corp/gooday-api-client 3.3.9 → 3.4.0
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/api.ts
CHANGED
|
@@ -20880,15 +20880,17 @@ export const LocationApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
20880
20880
|
*
|
|
20881
20881
|
* @param {string} place
|
|
20882
20882
|
* @param {string} label
|
|
20883
|
-
* @param {string}
|
|
20883
|
+
* @param {string} searchText
|
|
20884
20884
|
* @param {*} [options] Override http request option.
|
|
20885
20885
|
* @throws {RequiredError}
|
|
20886
20886
|
*/
|
|
20887
|
-
locationControllerFetchCoordinates: async (place: string, label: string, searchText
|
|
20887
|
+
locationControllerFetchCoordinates: async (place: string, label: string, searchText: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20888
20888
|
// verify required parameter 'place' is not null or undefined
|
|
20889
20889
|
assertParamExists('locationControllerFetchCoordinates', 'place', place)
|
|
20890
20890
|
// verify required parameter 'label' is not null or undefined
|
|
20891
20891
|
assertParamExists('locationControllerFetchCoordinates', 'label', label)
|
|
20892
|
+
// verify required parameter 'searchText' is not null or undefined
|
|
20893
|
+
assertParamExists('locationControllerFetchCoordinates', 'searchText', searchText)
|
|
20892
20894
|
const localVarPath = `/v1/locations-coordinates`;
|
|
20893
20895
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20894
20896
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -20964,15 +20966,17 @@ export const LocationApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
20964
20966
|
*
|
|
20965
20967
|
* @param {string} place
|
|
20966
20968
|
* @param {string} label
|
|
20967
|
-
* @param {string}
|
|
20969
|
+
* @param {string} searchText
|
|
20968
20970
|
* @param {*} [options] Override http request option.
|
|
20969
20971
|
* @throws {RequiredError}
|
|
20970
20972
|
*/
|
|
20971
|
-
locationControllerGetCoordinateToBusiness: async (place: string, label: string, searchText
|
|
20973
|
+
locationControllerGetCoordinateToBusiness: async (place: string, label: string, searchText: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
20972
20974
|
// verify required parameter 'place' is not null or undefined
|
|
20973
20975
|
assertParamExists('locationControllerGetCoordinateToBusiness', 'place', place)
|
|
20974
20976
|
// verify required parameter 'label' is not null or undefined
|
|
20975
20977
|
assertParamExists('locationControllerGetCoordinateToBusiness', 'label', label)
|
|
20978
|
+
// verify required parameter 'searchText' is not null or undefined
|
|
20979
|
+
assertParamExists('locationControllerGetCoordinateToBusiness', 'searchText', searchText)
|
|
20976
20980
|
const localVarPath = `/v1/locations-coordinates-to-business`;
|
|
20977
20981
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20978
20982
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -21022,11 +21026,11 @@ export const LocationApiFp = function(configuration?: Configuration) {
|
|
|
21022
21026
|
*
|
|
21023
21027
|
* @param {string} place
|
|
21024
21028
|
* @param {string} label
|
|
21025
|
-
* @param {string}
|
|
21029
|
+
* @param {string} searchText
|
|
21026
21030
|
* @param {*} [options] Override http request option.
|
|
21027
21031
|
* @throws {RequiredError}
|
|
21028
21032
|
*/
|
|
21029
|
-
async locationControllerFetchCoordinates(place: string, label: string, searchText
|
|
21033
|
+
async locationControllerFetchCoordinates(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LocationCoordinatesResponse>> {
|
|
21030
21034
|
const localVarAxiosArgs = await localVarAxiosParamCreator.locationControllerFetchCoordinates(place, label, searchText, options);
|
|
21031
21035
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
21032
21036
|
const localVarOperationServerBasePath = operationServerMap['LocationApi.locationControllerFetchCoordinates']?.[localVarOperationServerIndex]?.url;
|
|
@@ -21048,11 +21052,11 @@ export const LocationApiFp = function(configuration?: Configuration) {
|
|
|
21048
21052
|
*
|
|
21049
21053
|
* @param {string} place
|
|
21050
21054
|
* @param {string} label
|
|
21051
|
-
* @param {string}
|
|
21055
|
+
* @param {string} searchText
|
|
21052
21056
|
* @param {*} [options] Override http request option.
|
|
21053
21057
|
* @throws {RequiredError}
|
|
21054
21058
|
*/
|
|
21055
|
-
async locationControllerGetCoordinateToBusiness(place: string, label: string, searchText
|
|
21059
|
+
async locationControllerGetCoordinateToBusiness(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LocationCoordinatesResponseDTO>> {
|
|
21056
21060
|
const localVarAxiosArgs = await localVarAxiosParamCreator.locationControllerGetCoordinateToBusiness(place, label, searchText, options);
|
|
21057
21061
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
21058
21062
|
const localVarOperationServerBasePath = operationServerMap['LocationApi.locationControllerGetCoordinateToBusiness']?.[localVarOperationServerIndex]?.url;
|
|
@@ -21072,11 +21076,11 @@ export const LocationApiFactory = function (configuration?: Configuration, baseP
|
|
|
21072
21076
|
*
|
|
21073
21077
|
* @param {string} place
|
|
21074
21078
|
* @param {string} label
|
|
21075
|
-
* @param {string}
|
|
21079
|
+
* @param {string} searchText
|
|
21076
21080
|
* @param {*} [options] Override http request option.
|
|
21077
21081
|
* @throws {RequiredError}
|
|
21078
21082
|
*/
|
|
21079
|
-
locationControllerFetchCoordinates(place: string, label: string, searchText
|
|
21083
|
+
locationControllerFetchCoordinates(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig): AxiosPromise<LocationCoordinatesResponse> {
|
|
21080
21084
|
return localVarFp.locationControllerFetchCoordinates(place, label, searchText, options).then((request) => request(axios, basePath));
|
|
21081
21085
|
},
|
|
21082
21086
|
/**
|
|
@@ -21092,11 +21096,11 @@ export const LocationApiFactory = function (configuration?: Configuration, baseP
|
|
|
21092
21096
|
*
|
|
21093
21097
|
* @param {string} place
|
|
21094
21098
|
* @param {string} label
|
|
21095
|
-
* @param {string}
|
|
21099
|
+
* @param {string} searchText
|
|
21096
21100
|
* @param {*} [options] Override http request option.
|
|
21097
21101
|
* @throws {RequiredError}
|
|
21098
21102
|
*/
|
|
21099
|
-
locationControllerGetCoordinateToBusiness(place: string, label: string, searchText
|
|
21103
|
+
locationControllerGetCoordinateToBusiness(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig): AxiosPromise<LocationCoordinatesResponseDTO> {
|
|
21100
21104
|
return localVarFp.locationControllerGetCoordinateToBusiness(place, label, searchText, options).then((request) => request(axios, basePath));
|
|
21101
21105
|
},
|
|
21102
21106
|
};
|
|
@@ -21113,12 +21117,12 @@ export class LocationApi extends BaseAPI {
|
|
|
21113
21117
|
*
|
|
21114
21118
|
* @param {string} place
|
|
21115
21119
|
* @param {string} label
|
|
21116
|
-
* @param {string}
|
|
21120
|
+
* @param {string} searchText
|
|
21117
21121
|
* @param {*} [options] Override http request option.
|
|
21118
21122
|
* @throws {RequiredError}
|
|
21119
21123
|
* @memberof LocationApi
|
|
21120
21124
|
*/
|
|
21121
|
-
public locationControllerFetchCoordinates(place: string, label: string, searchText
|
|
21125
|
+
public locationControllerFetchCoordinates(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig) {
|
|
21122
21126
|
return LocationApiFp(this.configuration).locationControllerFetchCoordinates(place, label, searchText, options).then((request) => request(this.axios, this.basePath));
|
|
21123
21127
|
}
|
|
21124
21128
|
|
|
@@ -21137,12 +21141,12 @@ export class LocationApi extends BaseAPI {
|
|
|
21137
21141
|
*
|
|
21138
21142
|
* @param {string} place
|
|
21139
21143
|
* @param {string} label
|
|
21140
|
-
* @param {string}
|
|
21144
|
+
* @param {string} searchText
|
|
21141
21145
|
* @param {*} [options] Override http request option.
|
|
21142
21146
|
* @throws {RequiredError}
|
|
21143
21147
|
* @memberof LocationApi
|
|
21144
21148
|
*/
|
|
21145
|
-
public locationControllerGetCoordinateToBusiness(place: string, label: string, searchText
|
|
21149
|
+
public locationControllerGetCoordinateToBusiness(place: string, label: string, searchText: string, options?: RawAxiosRequestConfig) {
|
|
21146
21150
|
return LocationApiFp(this.configuration).locationControllerGetCoordinateToBusiness(place, label, searchText, options).then((request) => request(this.axios, this.basePath));
|
|
21147
21151
|
}
|
|
21148
21152
|
}
|
|
@@ -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 2025-09-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-09-22T16:00:07+05:30]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-22T16:00:07+05:30]
|
|
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 2025-09-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2025-09-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2025-09-22T16:00:07+05:30]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2025-09-22T16:00:07+05:30]
|
|
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<string>** | Calendar attached with booking | [optional] [default to undefined]
|
package/docs/LocationApi.md
CHANGED
|
@@ -25,7 +25,7 @@ const apiInstance = new LocationApi(configuration);
|
|
|
25
25
|
|
|
26
26
|
let place: string; // (default to undefined)
|
|
27
27
|
let label: string; // (default to undefined)
|
|
28
|
-
let searchText: string; // (
|
|
28
|
+
let searchText: string; // (default to undefined)
|
|
29
29
|
|
|
30
30
|
const { status, data } = await apiInstance.locationControllerFetchCoordinates(
|
|
31
31
|
place,
|
|
@@ -40,7 +40,7 @@ const { status, data } = await apiInstance.locationControllerFetchCoordinates(
|
|
|
40
40
|
|------------- | ------------- | ------------- | -------------|
|
|
41
41
|
| **place** | [**string**] | | defaults to undefined|
|
|
42
42
|
| **label** | [**string**] | | defaults to undefined|
|
|
43
|
-
| **searchText** | [**string**] | |
|
|
43
|
+
| **searchText** | [**string**] | | defaults to undefined|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
### Return type
|
|
@@ -131,7 +131,7 @@ const apiInstance = new LocationApi(configuration);
|
|
|
131
131
|
|
|
132
132
|
let place: string; // (default to undefined)
|
|
133
133
|
let label: string; // (default to undefined)
|
|
134
|
-
let searchText: string; // (
|
|
134
|
+
let searchText: string; // (default to undefined)
|
|
135
135
|
|
|
136
136
|
const { status, data } = await apiInstance.locationControllerGetCoordinateToBusiness(
|
|
137
137
|
place,
|
|
@@ -146,7 +146,7 @@ const { status, data } = await apiInstance.locationControllerGetCoordinateToBusi
|
|
|
146
146
|
|------------- | ------------- | ------------- | -------------|
|
|
147
147
|
| **place** | [**string**] | | defaults to undefined|
|
|
148
148
|
| **label** | [**string**] | | defaults to undefined|
|
|
149
|
-
| **searchText** | [**string**] | |
|
|
149
|
+
| **searchText** | [**string**] | | defaults to undefined|
|
|
150
150
|
|
|
151
151
|
|
|
152
152
|
### Return type
|
|
@@ -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-09-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-09-22T16:00:07+05:30]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -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-09-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-09-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-09-22T16:00:07+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-09-22T17:00:07+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]
|