@gooday_corp/gooday-api-client 3.3.9 → 4.1.17

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/docs/UsersApi.md CHANGED
@@ -8,6 +8,7 @@ All URIs are relative to *http://localhost:8080*
8
8
  |[**usersControllerAddToWaitingList**](#userscontrolleraddtowaitinglist) | **POST** /v1/user/joining-list | |
9
9
  |[**usersControllerDeactivateAccount**](#userscontrollerdeactivateaccount) | **DELETE** /v1/user/deactivate | |
10
10
  |[**usersControllerFindFriendConfirmedVenueList**](#userscontrollerfindfriendconfirmedvenuelist) | **GET** /v1/user/venue/favorites/user | |
11
+ |[**usersControllerFindUsers**](#userscontrollerfindusers) | **GET** /v1/user/users | |
11
12
  |[**usersControllerGetMe**](#userscontrollergetme) | **GET** /v1/user/me | |
12
13
  |[**usersControllerGetUser**](#userscontrollergetuser) | **POST** /v1/user/get-user | |
13
14
  |[**usersControllerOnBoarded**](#userscontrolleronboarded) | **POST** /v1/user/onboarding | |
@@ -198,6 +199,62 @@ const { status, data } = await apiInstance.usersControllerFindFriendConfirmedVen
198
199
  - **Accept**: application/json
199
200
 
200
201
 
202
+ ### HTTP response details
203
+ | Status code | Description | Response headers |
204
+ |-------------|-------------|------------------|
205
+ |**200** | | - |
206
+
207
+ [[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)
208
+
209
+ # **usersControllerFindUsers**
210
+ > FindUsersResponseDTO usersControllerFindUsers()
211
+
212
+
213
+ ### Example
214
+
215
+ ```typescript
216
+ import {
217
+ UsersApi,
218
+ Configuration
219
+ } from './api';
220
+
221
+ const configuration = new Configuration();
222
+ const apiInstance = new UsersApi(configuration);
223
+
224
+ let page: number; // (default to undefined)
225
+ let pageSize: number; // (default to undefined)
226
+ let query: string; // (optional) (default to undefined)
227
+
228
+ const { status, data } = await apiInstance.usersControllerFindUsers(
229
+ page,
230
+ pageSize,
231
+ query
232
+ );
233
+ ```
234
+
235
+ ### Parameters
236
+
237
+ |Name | Type | Description | Notes|
238
+ |------------- | ------------- | ------------- | -------------|
239
+ | **page** | [**number**] | | defaults to undefined|
240
+ | **pageSize** | [**number**] | | defaults to undefined|
241
+ | **query** | [**string**] | | (optional) defaults to undefined|
242
+
243
+
244
+ ### Return type
245
+
246
+ **FindUsersResponseDTO**
247
+
248
+ ### Authorization
249
+
250
+ [bearer](../README.md#bearer)
251
+
252
+ ### HTTP request headers
253
+
254
+ - **Content-Type**: Not defined
255
+ - **Accept**: application/json
256
+
257
+
201
258
  ### HTTP response details
202
259
  | Status code | Description | Response headers |
203
260
  |-------------|-------------|------------------|
@@ -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-22T14:31:19+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-09-22T15:31:19+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-11-18T12:27:32+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-11-18T13:27:32+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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "3.3.9",
3
+ "version": "4.1.17",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},