@gooday_corp/gooday-api-client 4.6.1 → 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 (48) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/api.ts +20693 -10064
  4. package/base.ts +24 -0
  5. package/common.ts +38 -15
  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/ConfirmRSVPV2PaymentDTO.md +20 -0
  11. package/docs/CreateBookingPayload.md +2 -2
  12. package/docs/CreateRSVPCollaboratorPayload.md +32 -0
  13. package/docs/CreateRSVPEventBookingPayload.md +2 -2
  14. package/docs/CreateRSVPEventV2DTO.md +94 -0
  15. package/docs/CreateWalkInBookingPayload.md +2 -2
  16. package/docs/DiscountV2DTO.md +22 -0
  17. package/docs/HashtagPayloadDTO.md +22 -0
  18. package/docs/HashtagResponseDTO.md +22 -0
  19. package/docs/HashtagUpdatePayloadDTO.md +24 -0
  20. package/docs/HashtagsApi.md +327 -0
  21. package/docs/HashtagsResponse.md +24 -0
  22. package/docs/HashtagsResponseDTO.md +22 -0
  23. package/docs/HostV2DTO.md +22 -0
  24. package/docs/InviteRSVPArrayDTO.md +20 -0
  25. package/docs/InviteRSVPDTO.md +34 -0
  26. package/docs/JoinRSVPEventDTO.md +34 -0
  27. package/docs/PaymentDetailsPayload.md +2 -2
  28. package/docs/PlansApi.md +44 -0
  29. package/docs/PromoCodeResponseDTO.md +2 -0
  30. package/docs/RSVPEvenPayloadDTO.md +8 -0
  31. package/docs/RSVPEventApi.md +1 -1
  32. package/docs/RSVPEventEntity.md +6 -0
  33. package/docs/RSVPEventFindDTO.md +6 -2
  34. package/docs/RSVPEventFindV2DTO.md +32 -0
  35. package/docs/RSVPEventLocationDTO.md +2 -2
  36. package/docs/RSVPEventMetaDTO.md +1 -1
  37. package/docs/RSVPEventMetaDataDTO.md +2 -0
  38. package/docs/RSVPV2Api.md +1054 -0
  39. package/docs/RejectBookingInvitePayload.md +3 -1
  40. package/docs/RescheduleBookingPayload.md +1 -1
  41. package/docs/SetupRSVPV2PaymentDTO.md +20 -0
  42. package/docs/UpdateRSVPEventV2DTO.md +94 -0
  43. package/docs/UpdateRSVPStatusDTO.md +20 -0
  44. package/docs/UserEntity.md +2 -0
  45. package/docs/WaitlistPayloadDTO.md +2 -2
  46. package/docs/WhatsOnLocationDTO.md +3 -3
  47. package/docs/WhatsOnLocationMetaDTO.md +1 -1
  48. package/package.json +1 -1
@@ -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