@gooday_corp/gooday-api-client 4.5.96 → 4.5.98

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.
@@ -154,6 +154,7 @@ docs/DeleteUsersResponseDTO.md
154
154
  docs/DeviceAddResponse.md
155
155
  docs/DeviceApi.md
156
156
  docs/DeviceEntity.md
157
+ docs/DiscountV2DTO.md
157
158
  docs/EmployeesSizeEntity.md
158
159
  docs/EmployeesSizeListResponse.md
159
160
  docs/EventCalendarSharedPayload.md
@@ -368,6 +369,7 @@ docs/TwilioMobileOTPPayloadDTO.md
368
369
  docs/TwilioMobileOTPResponseDTO.md
369
370
  docs/UndoPayloadDTO.md
370
371
  docs/UndoResponseDTO.md
372
+ docs/UpdateRSVPEventV2DTO.md
371
373
  docs/UpdateRSVPStatusDTO.md
372
374
  docs/UpdateTaskPayload.md
373
375
  docs/UpdateTodoPayload.md
package/api.ts CHANGED
@@ -4598,17 +4598,35 @@ export interface CreateRSVPEventV2DTO {
4598
4598
  */
4599
4599
  'repeat'?: CreateRSVPEventV2DTORepeatEnum;
4600
4600
  /**
4601
- *
4601
+ * Recurrence pattern string (RFC 5545)
4602
4602
  * @type {string}
4603
4603
  * @memberof CreateRSVPEventV2DTO
4604
4604
  */
4605
4605
  'pattern'?: string;
4606
4606
  /**
4607
- *
4607
+ * The method used to determine recurrence
4608
4608
  * @type {string}
4609
4609
  * @memberof CreateRSVPEventV2DTO
4610
4610
  */
4611
4611
  'repeatBy'?: CreateRSVPEventV2DTORepeatByEnum;
4612
+ /**
4613
+ * Comma-separated days of the week (e.g., MO,WE,FR)
4614
+ * @type {string}
4615
+ * @memberof CreateRSVPEventV2DTO
4616
+ */
4617
+ 'byDay'?: string;
4618
+ /**
4619
+ * Comma-separated days of the month (e.g., 1,15,31)
4620
+ * @type {string}
4621
+ * @memberof CreateRSVPEventV2DTO
4622
+ */
4623
+ 'byMonthDay'?: string;
4624
+ /**
4625
+ * Comma-separated months of the year (1-12)
4626
+ * @type {string}
4627
+ * @memberof CreateRSVPEventV2DTO
4628
+ */
4629
+ 'byMonth'?: string;
4612
4630
  /**
4613
4631
  *
4614
4632
  * @type {Array<HostV2DTO>}
@@ -4621,6 +4639,12 @@ export interface CreateRSVPEventV2DTO {
4621
4639
  * @memberof CreateRSVPEventV2DTO
4622
4640
  */
4623
4641
  'invites'?: Array<InviteRSVPDTO>;
4642
+ /**
4643
+ *
4644
+ * @type {Array<DiscountV2DTO>}
4645
+ * @memberof CreateRSVPEventV2DTO
4646
+ */
4647
+ 'discounts'?: Array<DiscountV2DTO>;
4624
4648
  }
4625
4649
 
4626
4650
  export const CreateRSVPEventV2DTOTypeEnum = {
@@ -5113,6 +5137,25 @@ export interface DeviceEntity {
5113
5137
  */
5114
5138
  'status': string;
5115
5139
  }
5140
+ /**
5141
+ *
5142
+ * @export
5143
+ * @interface DiscountV2DTO
5144
+ */
5145
+ export interface DiscountV2DTO {
5146
+ /**
5147
+ *
5148
+ * @type {string}
5149
+ * @memberof DiscountV2DTO
5150
+ */
5151
+ 'name': string;
5152
+ /**
5153
+ *
5154
+ * @type {number}
5155
+ * @memberof DiscountV2DTO
5156
+ */
5157
+ 'percentage': number;
5158
+ }
5116
5159
  /**
5117
5160
  *
5118
5161
  * @export
@@ -11057,6 +11100,235 @@ export interface UndoResponseDTO {
11057
11100
  */
11058
11101
  'message': string;
11059
11102
  }
11103
+ /**
11104
+ *
11105
+ * @export
11106
+ * @interface UpdateRSVPEventV2DTO
11107
+ */
11108
+ export interface UpdateRSVPEventV2DTO {
11109
+ /**
11110
+ *
11111
+ * @type {string}
11112
+ * @memberof UpdateRSVPEventV2DTO
11113
+ */
11114
+ 'title'?: string;
11115
+ /**
11116
+ *
11117
+ * @type {string}
11118
+ * @memberof UpdateRSVPEventV2DTO
11119
+ */
11120
+ 'description'?: string;
11121
+ /**
11122
+ *
11123
+ * @type {string}
11124
+ * @memberof UpdateRSVPEventV2DTO
11125
+ */
11126
+ 'photo'?: string;
11127
+ /**
11128
+ *
11129
+ * @type {Array<string>}
11130
+ * @memberof UpdateRSVPEventV2DTO
11131
+ */
11132
+ 'tags'?: Array<string>;
11133
+ /**
11134
+ *
11135
+ * @type {number}
11136
+ * @memberof UpdateRSVPEventV2DTO
11137
+ */
11138
+ 'totalCapacity'?: number;
11139
+ /**
11140
+ *
11141
+ * @type {number}
11142
+ * @memberof UpdateRSVPEventV2DTO
11143
+ */
11144
+ 'costPerPerson'?: number;
11145
+ /**
11146
+ *
11147
+ * @type {string}
11148
+ * @memberof UpdateRSVPEventV2DTO
11149
+ */
11150
+ 'currency'?: string;
11151
+ /**
11152
+ *
11153
+ * @type {string}
11154
+ * @memberof UpdateRSVPEventV2DTO
11155
+ */
11156
+ 'type'?: UpdateRSVPEventV2DTOTypeEnum;
11157
+ /**
11158
+ *
11159
+ * @type {string}
11160
+ * @memberof UpdateRSVPEventV2DTO
11161
+ */
11162
+ 'venue'?: string;
11163
+ /**
11164
+ *
11165
+ * @type {string}
11166
+ * @memberof UpdateRSVPEventV2DTO
11167
+ */
11168
+ 'business'?: string;
11169
+ /**
11170
+ *
11171
+ * @type {string}
11172
+ * @memberof UpdateRSVPEventV2DTO
11173
+ */
11174
+ 'timezone'?: string;
11175
+ /**
11176
+ *
11177
+ * @type {string}
11178
+ * @memberof UpdateRSVPEventV2DTO
11179
+ */
11180
+ 'theme'?: UpdateRSVPEventV2DTOThemeEnum;
11181
+ /**
11182
+ *
11183
+ * @type {string}
11184
+ * @memberof UpdateRSVPEventV2DTO
11185
+ */
11186
+ 'externalTicketingLink'?: string;
11187
+ /**
11188
+ *
11189
+ * @type {Array<string>}
11190
+ * @memberof UpdateRSVPEventV2DTO
11191
+ */
11192
+ 'otherLinks'?: Array<string>;
11193
+ /**
11194
+ *
11195
+ * @type {boolean}
11196
+ * @memberof UpdateRSVPEventV2DTO
11197
+ */
11198
+ 'hideGuestCount'?: boolean;
11199
+ /**
11200
+ *
11201
+ * @type {boolean}
11202
+ * @memberof UpdateRSVPEventV2DTO
11203
+ */
11204
+ 'hideLocation'?: boolean;
11205
+ /**
11206
+ *
11207
+ * @type {object}
11208
+ * @memberof UpdateRSVPEventV2DTO
11209
+ */
11210
+ 'location'?: object;
11211
+ /**
11212
+ *
11213
+ * @type {boolean}
11214
+ * @memberof UpdateRSVPEventV2DTO
11215
+ */
11216
+ 'isRecurring'?: boolean;
11217
+ /**
11218
+ *
11219
+ * @type {number}
11220
+ * @memberof UpdateRSVPEventV2DTO
11221
+ */
11222
+ 'duration'?: number;
11223
+ /**
11224
+ *
11225
+ * @type {string}
11226
+ * @memberof UpdateRSVPEventV2DTO
11227
+ */
11228
+ 'startDate'?: string;
11229
+ /**
11230
+ *
11231
+ * @type {string}
11232
+ * @memberof UpdateRSVPEventV2DTO
11233
+ */
11234
+ 'endDate'?: string;
11235
+ /**
11236
+ *
11237
+ * @type {string}
11238
+ * @memberof UpdateRSVPEventV2DTO
11239
+ */
11240
+ 'recurrenceEndDate'?: string;
11241
+ /**
11242
+ *
11243
+ * @type {string}
11244
+ * @memberof UpdateRSVPEventV2DTO
11245
+ */
11246
+ 'repeat'?: UpdateRSVPEventV2DTORepeatEnum;
11247
+ /**
11248
+ * Recurrence pattern string (RFC 5545)
11249
+ * @type {string}
11250
+ * @memberof UpdateRSVPEventV2DTO
11251
+ */
11252
+ 'pattern'?: string;
11253
+ /**
11254
+ * The method used to determine recurrence
11255
+ * @type {string}
11256
+ * @memberof UpdateRSVPEventV2DTO
11257
+ */
11258
+ 'repeatBy'?: UpdateRSVPEventV2DTORepeatByEnum;
11259
+ /**
11260
+ * Comma-separated days of the week (e.g., MO,WE,FR)
11261
+ * @type {string}
11262
+ * @memberof UpdateRSVPEventV2DTO
11263
+ */
11264
+ 'byDay'?: string;
11265
+ /**
11266
+ * Comma-separated days of the month (e.g., 1,15,31)
11267
+ * @type {string}
11268
+ * @memberof UpdateRSVPEventV2DTO
11269
+ */
11270
+ 'byMonthDay'?: string;
11271
+ /**
11272
+ * Comma-separated months of the year (1-12)
11273
+ * @type {string}
11274
+ * @memberof UpdateRSVPEventV2DTO
11275
+ */
11276
+ 'byMonth'?: string;
11277
+ /**
11278
+ *
11279
+ * @type {Array<HostV2DTO>}
11280
+ * @memberof UpdateRSVPEventV2DTO
11281
+ */
11282
+ 'hosts'?: Array<HostV2DTO>;
11283
+ /**
11284
+ *
11285
+ * @type {Array<InviteRSVPDTO>}
11286
+ * @memberof UpdateRSVPEventV2DTO
11287
+ */
11288
+ 'invites'?: Array<InviteRSVPDTO>;
11289
+ /**
11290
+ *
11291
+ * @type {Array<DiscountV2DTO>}
11292
+ * @memberof UpdateRSVPEventV2DTO
11293
+ */
11294
+ 'discounts'?: Array<DiscountV2DTO>;
11295
+ }
11296
+
11297
+ export const UpdateRSVPEventV2DTOTypeEnum = {
11298
+ Public: 'PUBLIC',
11299
+ Private: 'PRIVATE'
11300
+ } as const;
11301
+
11302
+ export type UpdateRSVPEventV2DTOTypeEnum = typeof UpdateRSVPEventV2DTOTypeEnum[keyof typeof UpdateRSVPEventV2DTOTypeEnum];
11303
+ export const UpdateRSVPEventV2DTOThemeEnum = {
11304
+ Blue: 'Blue',
11305
+ Pink: 'Pink',
11306
+ Green: 'Green',
11307
+ Purple: 'Purple',
11308
+ Sunset: 'Sunset',
11309
+ Beige: 'Beige',
11310
+ Black: 'Black',
11311
+ Red: 'Red'
11312
+ } as const;
11313
+
11314
+ export type UpdateRSVPEventV2DTOThemeEnum = typeof UpdateRSVPEventV2DTOThemeEnum[keyof typeof UpdateRSVPEventV2DTOThemeEnum];
11315
+ export const UpdateRSVPEventV2DTORepeatEnum = {
11316
+ None: 'NONE',
11317
+ Daily: 'DAILY',
11318
+ Weekly: 'WEEKLY',
11319
+ Monthly: 'MONTHLY',
11320
+ Year: 'YEAR'
11321
+ } as const;
11322
+
11323
+ export type UpdateRSVPEventV2DTORepeatEnum = typeof UpdateRSVPEventV2DTORepeatEnum[keyof typeof UpdateRSVPEventV2DTORepeatEnum];
11324
+ export const UpdateRSVPEventV2DTORepeatByEnum = {
11325
+ RepeatByDay: 'repeat_by_day',
11326
+ RepeatByWeekMonth: 'repeat_by_week_month',
11327
+ RepeatByLastWeekMonth: 'repeat_by_last_week_month'
11328
+ } as const;
11329
+
11330
+ export type UpdateRSVPEventV2DTORepeatByEnum = typeof UpdateRSVPEventV2DTORepeatByEnum[keyof typeof UpdateRSVPEventV2DTORepeatByEnum];
11331
+
11060
11332
  /**
11061
11333
  *
11062
11334
  * @export
@@ -11325,6 +11597,12 @@ export interface UserEntity {
11325
11597
  * @memberof UserEntity
11326
11598
  */
11327
11599
  'isMobileVerified'?: boolean;
11600
+ /**
11601
+ *
11602
+ * @type {string}
11603
+ * @memberof UserEntity
11604
+ */
11605
+ 'accountId'?: string;
11328
11606
  }
11329
11607
 
11330
11608
  export const UserEntityRoleEnum = {
@@ -28468,6 +28746,49 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
28468
28746
  options: localVarRequestOptions,
28469
28747
  };
28470
28748
  },
28749
+ /**
28750
+ *
28751
+ * @param {string} id
28752
+ * @param {UpdateRSVPEventV2DTO} updateRSVPEventV2DTO
28753
+ * @param {*} [options] Override http request option.
28754
+ * @throws {RequiredError}
28755
+ */
28756
+ rSVPV2ControllerUpdateEvent: async (id: string, updateRSVPEventV2DTO: UpdateRSVPEventV2DTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
28757
+ // verify required parameter 'id' is not null or undefined
28758
+ assertParamExists('rSVPV2ControllerUpdateEvent', 'id', id)
28759
+ // verify required parameter 'updateRSVPEventV2DTO' is not null or undefined
28760
+ assertParamExists('rSVPV2ControllerUpdateEvent', 'updateRSVPEventV2DTO', updateRSVPEventV2DTO)
28761
+ const localVarPath = `/v1/rsvp/v2/events/{id}`
28762
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
28763
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
28764
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
28765
+ let baseOptions;
28766
+ if (configuration) {
28767
+ baseOptions = configuration.baseOptions;
28768
+ }
28769
+
28770
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
28771
+ const localVarHeaderParameter = {} as any;
28772
+ const localVarQueryParameter = {} as any;
28773
+
28774
+ // authentication bearer required
28775
+ // http bearer authentication required
28776
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
28777
+
28778
+
28779
+
28780
+ localVarHeaderParameter['Content-Type'] = 'application/json';
28781
+
28782
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
28783
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
28784
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
28785
+ localVarRequestOptions.data = serializeDataIfNeeded(updateRSVPEventV2DTO, localVarRequestOptions, configuration)
28786
+
28787
+ return {
28788
+ url: toPathString(localVarUrlObj),
28789
+ options: localVarRequestOptions,
28790
+ };
28791
+ },
28471
28792
  /**
28472
28793
  *
28473
28794
  * @param {string} id
@@ -28640,6 +28961,19 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
28640
28961
  const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerSetupPayment']?.[localVarOperationServerIndex]?.url;
28641
28962
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
28642
28963
  },
28964
+ /**
28965
+ *
28966
+ * @param {string} id
28967
+ * @param {UpdateRSVPEventV2DTO} updateRSVPEventV2DTO
28968
+ * @param {*} [options] Override http request option.
28969
+ * @throws {RequiredError}
28970
+ */
28971
+ async rSVPV2ControllerUpdateEvent(id: string, updateRSVPEventV2DTO: UpdateRSVPEventV2DTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
28972
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerUpdateEvent(id, updateRSVPEventV2DTO, options);
28973
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
28974
+ const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerUpdateEvent']?.[localVarOperationServerIndex]?.url;
28975
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
28976
+ },
28643
28977
  /**
28644
28978
  *
28645
28979
  * @param {string} id
@@ -28755,6 +29089,16 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
28755
29089
  rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO: SetupRSVPV2PaymentDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
28756
29090
  return localVarFp.rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO, options).then((request) => request(axios, basePath));
28757
29091
  },
29092
+ /**
29093
+ *
29094
+ * @param {string} id
29095
+ * @param {UpdateRSVPEventV2DTO} updateRSVPEventV2DTO
29096
+ * @param {*} [options] Override http request option.
29097
+ * @throws {RequiredError}
29098
+ */
29099
+ rSVPV2ControllerUpdateEvent(id: string, updateRSVPEventV2DTO: UpdateRSVPEventV2DTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
29100
+ return localVarFp.rSVPV2ControllerUpdateEvent(id, updateRSVPEventV2DTO, options).then((request) => request(axios, basePath));
29101
+ },
28758
29102
  /**
28759
29103
  *
28760
29104
  * @param {string} id
@@ -28885,6 +29229,18 @@ export class RSVPV2Api extends BaseAPI {
28885
29229
  return RSVPV2ApiFp(this.configuration).rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO, options).then((request) => request(this.axios, this.basePath));
28886
29230
  }
28887
29231
 
29232
+ /**
29233
+ *
29234
+ * @param {string} id
29235
+ * @param {UpdateRSVPEventV2DTO} updateRSVPEventV2DTO
29236
+ * @param {*} [options] Override http request option.
29237
+ * @throws {RequiredError}
29238
+ * @memberof RSVPV2Api
29239
+ */
29240
+ public rSVPV2ControllerUpdateEvent(id: string, updateRSVPEventV2DTO: UpdateRSVPEventV2DTO, options?: RawAxiosRequestConfig) {
29241
+ return RSVPV2ApiFp(this.configuration).rSVPV2ControllerUpdateEvent(id, updateRSVPEventV2DTO, options).then((request) => request(this.axios, this.basePath));
29242
+ }
29243
+
28888
29244
  /**
28889
29245
  *
28890
29246
  * @param {string} id
@@ -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 2026-04-09T06:57:23Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T06:57:23Z]
9
+ **date** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T07:49: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]
@@ -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 2026-04-09T06:57:23Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-04-09T06:57:23Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
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&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -28,10 +28,14 @@ Name | Type | Description | Notes
28
28
  **endDate** | **string** | | [default to undefined]
29
29
  **recurrenceEndDate** | **string** | | [optional] [default to undefined]
30
30
  **repeat** | **string** | | [optional] [default to undefined]
31
- **pattern** | **string** | | [optional] [default to undefined]
32
- **repeatBy** | **string** | | [optional] [default to undefined]
31
+ **pattern** | **string** | Recurrence pattern string (RFC 5545) | [optional] [default to undefined]
32
+ **repeatBy** | **string** | The method used to determine recurrence | [optional] [default to undefined]
33
+ **byDay** | **string** | Comma-separated days of the week (e.g., MO,WE,FR) | [optional] [default to undefined]
34
+ **byMonthDay** | **string** | Comma-separated days of the month (e.g., 1,15,31) | [optional] [default to undefined]
35
+ **byMonth** | **string** | Comma-separated months of the year (1-12) | [optional] [default to undefined]
33
36
  **hosts** | [**Array&lt;HostV2DTO&gt;**](HostV2DTO.md) | | [optional] [default to undefined]
34
37
  **invites** | [**Array&lt;InviteRSVPDTO&gt;**](InviteRSVPDTO.md) | | [optional] [default to undefined]
38
+ **discounts** | [**Array&lt;DiscountV2DTO&gt;**](DiscountV2DTO.md) | | [optional] [default to undefined]
35
39
 
36
40
  ## Example
37
41
 
@@ -64,8 +68,12 @@ const instance: CreateRSVPEventV2DTO = {
64
68
  repeat,
65
69
  pattern,
66
70
  repeatBy,
71
+ byDay,
72
+ byMonthDay,
73
+ byMonth,
67
74
  hosts,
68
75
  invites,
76
+ discounts,
69
77
  };
70
78
  ```
71
79
 
@@ -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 2026-04-09T06:57:23Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-04-09T06:57:23Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
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&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -0,0 +1,22 @@
1
+ # DiscountV2DTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | | [default to undefined]
9
+ **percentage** | **number** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { DiscountV2DTO } from './api';
15
+
16
+ const instance: DiscountV2DTO = {
17
+ name,
18
+ percentage,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  **whatsOnId** | **string** | Event ID | [optional] [default to undefined]
9
9
  **serviceId** | **string** | Service ID | [optional] [default to undefined]
10
10
  **rsvpId** | **string** | RSVP ID | [optional] [default to undefined]
11
- **startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T06:57:21Z]
12
- **endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-09T06:57:21Z]
11
+ **startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T07:49:38Z]
12
+ **endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-09T07:49:38Z]
13
13
  **discountId** | **string** | Discount ID | [optional] [default to undefined]
14
14
  **selectedStaff** | **string** | Staff ID | [optional] [default to undefined]
15
15
  **quantity** | **number** | | [optional] [default to 0]
package/docs/RSVPV2Api.md CHANGED
@@ -13,6 +13,7 @@ All URIs are relative to *http://localhost:8080*
13
13
  |[**rSVPV2ControllerInvite**](#rsvpv2controllerinvite) | **POST** /v1/rsvp/v2/events/{id}/invite | |
14
14
  |[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
15
15
  |[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
16
+ |[**rSVPV2ControllerUpdateEvent**](#rsvpv2controllerupdateevent) | **PUT** /v1/rsvp/v2/events/{id} | |
16
17
  |[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
17
18
 
18
19
  # **rSVPV2ControllerConfirmPayment**
@@ -503,6 +504,60 @@ No authorization required
503
504
 
504
505
  [[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)
505
506
 
507
+ # **rSVPV2ControllerUpdateEvent**
508
+ > rSVPV2ControllerUpdateEvent(updateRSVPEventV2DTO)
509
+
510
+
511
+ ### Example
512
+
513
+ ```typescript
514
+ import {
515
+ RSVPV2Api,
516
+ Configuration,
517
+ UpdateRSVPEventV2DTO
518
+ } from './api';
519
+
520
+ const configuration = new Configuration();
521
+ const apiInstance = new RSVPV2Api(configuration);
522
+
523
+ let id: string; // (default to undefined)
524
+ let updateRSVPEventV2DTO: UpdateRSVPEventV2DTO; //
525
+
526
+ const { status, data } = await apiInstance.rSVPV2ControllerUpdateEvent(
527
+ id,
528
+ updateRSVPEventV2DTO
529
+ );
530
+ ```
531
+
532
+ ### Parameters
533
+
534
+ |Name | Type | Description | Notes|
535
+ |------------- | ------------- | ------------- | -------------|
536
+ | **updateRSVPEventV2DTO** | **UpdateRSVPEventV2DTO**| | |
537
+ | **id** | [**string**] | | defaults to undefined|
538
+
539
+
540
+ ### Return type
541
+
542
+ void (empty response body)
543
+
544
+ ### Authorization
545
+
546
+ [bearer](../README.md#bearer)
547
+
548
+ ### HTTP request headers
549
+
550
+ - **Content-Type**: application/json
551
+ - **Accept**: Not defined
552
+
553
+
554
+ ### HTTP response details
555
+ | Status code | Description | Response headers |
556
+ |-------------|-------------|------------------|
557
+ |**200** | Update an existing RSVP event | - |
558
+
559
+ [[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)
560
+
506
561
  # **rSVPV2ControllerUpdateStatus**
507
562
  > rSVPV2ControllerUpdateStatus(updateRSVPStatusDTO)
508
563
 
@@ -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 2026-04-09T06:57:23Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-04-09T07:49: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]
@@ -0,0 +1,80 @@
1
+ # UpdateRSVPEventV2DTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **title** | **string** | | [optional] [default to undefined]
9
+ **description** | **string** | | [optional] [default to undefined]
10
+ **photo** | **string** | | [optional] [default to undefined]
11
+ **tags** | **Array&lt;string&gt;** | | [optional] [default to undefined]
12
+ **totalCapacity** | **number** | | [optional] [default to undefined]
13
+ **costPerPerson** | **number** | | [optional] [default to undefined]
14
+ **currency** | **string** | | [optional] [default to undefined]
15
+ **type** | **string** | | [optional] [default to undefined]
16
+ **venue** | **string** | | [optional] [default to undefined]
17
+ **business** | **string** | | [optional] [default to undefined]
18
+ **timezone** | **string** | | [optional] [default to undefined]
19
+ **theme** | **string** | | [optional] [default to undefined]
20
+ **externalTicketingLink** | **string** | | [optional] [default to undefined]
21
+ **otherLinks** | **Array&lt;string&gt;** | | [optional] [default to undefined]
22
+ **hideGuestCount** | **boolean** | | [optional] [default to undefined]
23
+ **hideLocation** | **boolean** | | [optional] [default to undefined]
24
+ **location** | **object** | | [optional] [default to undefined]
25
+ **isRecurring** | **boolean** | | [optional] [default to undefined]
26
+ **duration** | **number** | | [optional] [default to undefined]
27
+ **startDate** | **string** | | [optional] [default to undefined]
28
+ **endDate** | **string** | | [optional] [default to undefined]
29
+ **recurrenceEndDate** | **string** | | [optional] [default to undefined]
30
+ **repeat** | **string** | | [optional] [default to undefined]
31
+ **pattern** | **string** | Recurrence pattern string (RFC 5545) | [optional] [default to undefined]
32
+ **repeatBy** | **string** | The method used to determine recurrence | [optional] [default to undefined]
33
+ **byDay** | **string** | Comma-separated days of the week (e.g., MO,WE,FR) | [optional] [default to undefined]
34
+ **byMonthDay** | **string** | Comma-separated days of the month (e.g., 1,15,31) | [optional] [default to undefined]
35
+ **byMonth** | **string** | Comma-separated months of the year (1-12) | [optional] [default to undefined]
36
+ **hosts** | [**Array&lt;HostV2DTO&gt;**](HostV2DTO.md) | | [optional] [default to undefined]
37
+ **invites** | [**Array&lt;InviteRSVPDTO&gt;**](InviteRSVPDTO.md) | | [optional] [default to undefined]
38
+ **discounts** | [**Array&lt;DiscountV2DTO&gt;**](DiscountV2DTO.md) | | [optional] [default to undefined]
39
+
40
+ ## Example
41
+
42
+ ```typescript
43
+ import { UpdateRSVPEventV2DTO } from './api';
44
+
45
+ const instance: UpdateRSVPEventV2DTO = {
46
+ title,
47
+ description,
48
+ photo,
49
+ tags,
50
+ totalCapacity,
51
+ costPerPerson,
52
+ currency,
53
+ type,
54
+ venue,
55
+ business,
56
+ timezone,
57
+ theme,
58
+ externalTicketingLink,
59
+ otherLinks,
60
+ hideGuestCount,
61
+ hideLocation,
62
+ location,
63
+ isRecurring,
64
+ duration,
65
+ startDate,
66
+ endDate,
67
+ recurrenceEndDate,
68
+ repeat,
69
+ pattern,
70
+ repeatBy,
71
+ byDay,
72
+ byMonthDay,
73
+ byMonth,
74
+ hosts,
75
+ invites,
76
+ discounts,
77
+ };
78
+ ```
79
+
80
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -38,6 +38,7 @@ Name | Type | Description | Notes
38
38
  **timezone** | **string** | | [optional] [default to undefined]
39
39
  **chatToken** | **string** | | [optional] [default to undefined]
40
40
  **isMobileVerified** | **boolean** | | [optional] [default to undefined]
41
+ **accountId** | **string** | | [optional] [default to undefined]
41
42
 
42
43
  ## Example
43
44
 
@@ -78,6 +79,7 @@ const instance: UserEntity = {
78
79
  timezone,
79
80
  chatToken,
80
81
  isMobileVerified,
82
+ accountId,
81
83
  };
82
84
  ```
83
85
 
@@ -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 2026-04-09T06:57:23Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-04-09T07:57:23Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-04-09T07:49:40Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-04-09T08:49: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": "4.5.96",
3
+ "version": "4.5.98",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},