@gooday_corp/gooday-api-client 4.6.0 → 4.6.2

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.
Files changed (51) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/api.ts +12703 -1995
  4. package/base.ts +24 -0
  5. package/common.ts +38 -14
  6. package/configuration.ts +18 -24
  7. package/docs/AcceptBookingInvitePayload.md +3 -1
  8. package/docs/BookingPaymentCreateResponse.md +4 -0
  9. package/docs/BusinessApi.md +103 -9
  10. package/docs/BusinessOnBoardingDTO.md +2 -0
  11. package/docs/ConfirmRSVPV2PaymentDTO.md +20 -0
  12. package/docs/CreateBookingPayload.md +2 -2
  13. package/docs/CreateRSVPCollaboratorPayload.md +32 -0
  14. package/docs/CreateRSVPEventBookingPayload.md +2 -2
  15. package/docs/CreateRSVPEventV2DTO.md +94 -0
  16. package/docs/CreateWalkInBookingPayload.md +2 -2
  17. package/docs/DiscountV2DTO.md +22 -0
  18. package/docs/HashtagPayloadDTO.md +22 -0
  19. package/docs/HashtagResponseDTO.md +22 -0
  20. package/docs/HashtagUpdatePayloadDTO.md +24 -0
  21. package/docs/HashtagsApi.md +327 -0
  22. package/docs/HashtagsResponse.md +24 -0
  23. package/docs/HashtagsResponseDTO.md +22 -0
  24. package/docs/HostV2DTO.md +22 -0
  25. package/docs/InviteRSVPArrayDTO.md +20 -0
  26. package/docs/InviteRSVPDTO.md +34 -0
  27. package/docs/JoinRSVPEventDTO.md +34 -0
  28. package/docs/PaymentDetailsPayload.md +2 -2
  29. package/docs/PlansApi.md +44 -0
  30. package/docs/PromoCodeResponseDTO.md +2 -0
  31. package/docs/RSVPEvenPayloadDTO.md +10 -0
  32. package/docs/RSVPEventApi.md +52 -0
  33. package/docs/RSVPEventEntity.md +6 -0
  34. package/docs/RSVPEventFindDTO.md +6 -2
  35. package/docs/RSVPEventFindV2DTO.md +32 -0
  36. package/docs/RSVPEventLocationDTO.md +2 -2
  37. package/docs/RSVPEventMetaDTO.md +1 -1
  38. package/docs/RSVPEventMetaDataDTO.md +2 -0
  39. package/docs/RSVPV2Api.md +1054 -0
  40. package/docs/RejectBookingInvitePayload.md +3 -1
  41. package/docs/RescheduleBookingPayload.md +1 -1
  42. package/docs/SetupRSVPV2PaymentDTO.md +20 -0
  43. package/docs/SignupDto.md +2 -0
  44. package/docs/TagsApi.md +4 -4
  45. package/docs/UpdateRSVPEventV2DTO.md +94 -0
  46. package/docs/UpdateRSVPStatusDTO.md +20 -0
  47. package/docs/UserEntity.md +2 -0
  48. package/docs/WaitlistPayloadDTO.md +2 -2
  49. package/docs/WhatsOnLocationDTO.md +3 -3
  50. package/docs/WhatsOnLocationMetaDTO.md +1 -1
  51. package/package.json +1 -1
@@ -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
+ [bearer](../README.md#bearer)
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
  |-------------|-------------|------------------|
@@ -40,6 +40,9 @@ Name | Type | Description | Notes
40
40
  **discounts** | **Array<object>** | | [optional] [default to undefined]
41
41
  **reminder** | **boolean** | | [optional] [default to undefined]
42
42
  **calendar** | **boolean** | | [optional] [default to undefined]
43
+ **collaborators** | [**Array<CreateRSVPCollaboratorPayload>**](CreateRSVPCollaboratorPayload.md) | The list of collaborators associated with the booking | [optional] [default to undefined]
44
+ **theme** | **string** | | [optional] [default to undefined]
45
+ **hideGuestCount** | **boolean** | | [optional] [default to undefined]
43
46
 
44
47
  ## Example
45
48
 
@@ -82,6 +85,9 @@ const instance: RSVPEventEntity = {
82
85
  discounts,
83
86
  reminder,
84
87
  calendar,
88
+ collaborators,
89
+ theme,
90
+ hideGuestCount,
85
91
  };
86
92
  ```
87
93
 
@@ -10,7 +10,9 @@ Name | Type | Description | Notes
10
10
  **search** | **string** | | [optional] [default to undefined]
11
11
  **venue** | **string** | | [optional] [default to undefined]
12
12
  **type** | **Array<string>** | | [optional] [default to undefined]
13
- **location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
13
+ **lat** | **number** | | [optional] [default to undefined]
14
+ **lng** | **number** | | [optional] [default to undefined]
15
+ **distance** | **number** | | [optional] [default to undefined]
14
16
 
15
17
  ## Example
16
18
 
@@ -23,7 +25,9 @@ const instance: RSVPEventFindDTO = {
23
25
  search,
24
26
  venue,
25
27
  type,
26
- location,
28
+ lat,
29
+ lng,
30
+ distance,
27
31
  };
28
32
  ```
29
33
 
@@ -0,0 +1,32 @@
1
+ # RSVPEventFindV2DTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **page** | **number** | | [default to undefined]
9
+ **pageSize** | **number** | | [default to undefined]
10
+ **search** | **string** | | [optional] [default to undefined]
11
+ **venue** | **string** | | [optional] [default to undefined]
12
+ **lat** | **number** | | [optional] [default to undefined]
13
+ **lng** | **number** | | [optional] [default to undefined]
14
+ **distance** | **number** | | [optional] [default to undefined]
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import { RSVPEventFindV2DTO } from './api';
20
+
21
+ const instance: RSVPEventFindV2DTO = {
22
+ page,
23
+ pageSize,
24
+ search,
25
+ venue,
26
+ lat,
27
+ lng,
28
+ distance,
29
+ };
30
+ ```
31
+
32
+ [[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,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **type** | **string** | | [default to undefined]
9
- **coordinates** | **Array<number>** | | [default to undefined]
8
+ **type** | **string** | | [optional] [default to undefined]
9
+ **coordinates** | **Array<number>** | | [optional] [default to undefined]
10
10
  **distance** | **string** | Optional distance from a reference point. | [optional] [default to undefined]
11
11
  **meta** | [**RSVPEventMetaDTO**](RSVPEventMetaDTO.md) | Meta information about the location. | [optional] [default to undefined]
12
12
 
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **formattedAddress** | **string** | | [optional] [default to undefined]
9
- **shortFormattedAddress** | **string** | | [default to undefined]
9
+ **shortFormattedAddress** | **string** | | [optional] [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **firstName** | **string** | | [default to undefined]
10
10
  **lastName** | **string** | | [default to undefined]
11
11
  **mobileNumber** | **string** | | [default to undefined]
12
+ **code** | **string** | | [default to undefined]
12
13
 
13
14
  ## Example
14
15
 
@@ -20,6 +21,7 @@ const instance: RSVPEventMetaDataDTO = {
20
21
  firstName,
21
22
  lastName,
22
23
  mobileNumber,
24
+ code,
23
25
  };
24
26
  ```
25
27