@gooday_corp/gooday-api-client 1.4.5 → 1.4.9

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
@@ -2929,13 +2929,13 @@ export interface CalendarSharedPayload {
2929
2929
  * @type {string}
2930
2930
  * @memberof CalendarSharedPayload
2931
2931
  */
2932
- 'bookingId': string;
2932
+ 'bookingId'?: string;
2933
2933
  /**
2934
2934
  * Calendar associated with the booking
2935
2935
  * @type {Array<string>}
2936
2936
  * @memberof CalendarSharedPayload
2937
2937
  */
2938
- 'calendars': Array<string>;
2938
+ 'calendars'?: Array<string>;
2939
2939
  }
2940
2940
  /**
2941
2941
  *
@@ -11784,7 +11784,7 @@ export const BookingApiAxiosParamCreator = function (configuration?: Configurati
11784
11784
  baseOptions = configuration.baseOptions;
11785
11785
  }
11786
11786
 
11787
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
11787
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
11788
11788
  const localVarHeaderParameter = {} as any;
11789
11789
  const localVarQueryParameter = {} as any;
11790
11790
 
@@ -7,7 +7,7 @@ All URIs are relative to *http://localhost:8080*
7
7
  |[**bookingControllerAcceptBookingInvite**](#bookingcontrolleracceptbookinginvite) | **POST** /v1/booking/accept | |
8
8
  |[**bookingControllerBookingCollaboratorDetail**](#bookingcontrollerbookingcollaboratordetail) | **GET** /v1/booking/collaborator-details/{id} | |
9
9
  |[**bookingControllerBookingConfirmation**](#bookingcontrollerbookingconfirmation) | **POST** /v1/booking/confirmation | |
10
- |[**bookingControllerCalendarInvites**](#bookingcontrollercalendarinvites) | **PUT** /v1/booking/calendar-shared | |
10
+ |[**bookingControllerCalendarInvites**](#bookingcontrollercalendarinvites) | **POST** /v1/booking/calendar-shared | |
11
11
  |[**bookingControllerCancelBooking**](#bookingcontrollercancelbooking) | **POST** /v1/booking/cancel-booking | |
12
12
  |[**bookingControllerCreateBooking**](#bookingcontrollercreatebooking) | **POST** /v1/booking | |
13
13
  |[**bookingControllerGetBooking**](#bookingcontrollergetbooking) | **GET** /v1/booking/{id} | |
@@ -5,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **bookingId** | **string** | ID of the booking | [default to undefined]
9
- **calendars** | **Array&lt;string&gt;** | Calendar associated with the booking | [default to undefined]
8
+ **bookingId** | **string** | ID of the booking | [optional] [default to undefined]
9
+ **calendars** | **Array&lt;string&gt;** | Calendar associated with the booking | [optional] [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -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-07-02T18:06:47+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-02T18:06:47+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-07-02T15:03:40Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-02T15:03:40Z]
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]
@@ -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-07-02T18:06:47+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-07-02T15:03:40Z]
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-07-02T18:06:47+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-07-02T19:06:47+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-07-02T15:03:40Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-07-02T16:03:40Z]
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&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](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": "1.4.5",
3
+ "version": "1.4.9",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},