@gooday_corp/gooday-api-client 4.6.18 → 4.6.28
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/.openapi-generator/FILES +12 -0
- package/api.ts +2182 -270
- package/docs/BookingApi.md +52 -0
- package/docs/BusinessDetailsPayloadDTO.md +8 -0
- package/docs/CheckMutualAvailabilityPayloadDTO.md +26 -0
- package/docs/CheckRSVPBookingPayload.md +26 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPBlastDTO.md +24 -0
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateRSVPEventV2DTO.md +2 -0
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/DiscountV2DTO.md +2 -0
- package/docs/InviteRSVPCreatedDTO.md +34 -0
- package/docs/InviteRSVPResponseDTO.md +24 -0
- package/docs/InviteRSVPResultDTO.md +22 -0
- package/docs/InviteRSVPSkippedDTO.md +24 -0
- package/docs/InviteRSVPSkippedExistingDTO.md +30 -0
- package/docs/JoinRSVPEventDTO.md +2 -0
- package/docs/MutualAvailabilityInviteeDTO.md +36 -0
- package/docs/MutualAvailabilityRecurrenceDTO.md +30 -0
- package/docs/NotificationApi.md +4 -1
- package/docs/NotificationCountDTO.md +2 -0
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/RSVPBookingCheckResponseDTO.md +20 -0
- package/docs/RSVPV2Api.md +826 -81
- package/docs/RSVPV2MutualAvailabilityApi.md +163 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SocialMedia.md +8 -0
- package/docs/UpdateRSVPEventV2DTO.md +2 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1665,6 +1665,30 @@ export interface BusinessDetailsPayloadDTO {
|
|
|
1665
1665
|
* @memberof BusinessDetailsPayloadDTO
|
|
1666
1666
|
*/
|
|
1667
1667
|
'bookingFee'?: number;
|
|
1668
|
+
/**
|
|
1669
|
+
*
|
|
1670
|
+
* @type {string}
|
|
1671
|
+
* @memberof BusinessDetailsPayloadDTO
|
|
1672
|
+
*/
|
|
1673
|
+
'firstName'?: string;
|
|
1674
|
+
/**
|
|
1675
|
+
*
|
|
1676
|
+
* @type {string}
|
|
1677
|
+
* @memberof BusinessDetailsPayloadDTO
|
|
1678
|
+
*/
|
|
1679
|
+
'lastName'?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
*
|
|
1682
|
+
* @type {string}
|
|
1683
|
+
* @memberof BusinessDetailsPayloadDTO
|
|
1684
|
+
*/
|
|
1685
|
+
'phone'?: string;
|
|
1686
|
+
/**
|
|
1687
|
+
* User avatar/logo image URL
|
|
1688
|
+
* @type {string}
|
|
1689
|
+
* @memberof BusinessDetailsPayloadDTO
|
|
1690
|
+
*/
|
|
1691
|
+
'profile'?: string;
|
|
1668
1692
|
}
|
|
1669
1693
|
/**
|
|
1670
1694
|
*
|
|
@@ -3636,6 +3660,68 @@ export interface ChatResponseDTO {
|
|
|
3636
3660
|
*/
|
|
3637
3661
|
'success': boolean;
|
|
3638
3662
|
}
|
|
3663
|
+
/**
|
|
3664
|
+
*
|
|
3665
|
+
* @export
|
|
3666
|
+
* @interface CheckMutualAvailabilityPayloadDTO
|
|
3667
|
+
*/
|
|
3668
|
+
export interface CheckMutualAvailabilityPayloadDTO {
|
|
3669
|
+
/**
|
|
3670
|
+
*
|
|
3671
|
+
* @type {string}
|
|
3672
|
+
* @memberof CheckMutualAvailabilityPayloadDTO
|
|
3673
|
+
*/
|
|
3674
|
+
'startDateTime': string;
|
|
3675
|
+
/**
|
|
3676
|
+
*
|
|
3677
|
+
* @type {string}
|
|
3678
|
+
* @memberof CheckMutualAvailabilityPayloadDTO
|
|
3679
|
+
*/
|
|
3680
|
+
'endDateTime': string;
|
|
3681
|
+
/**
|
|
3682
|
+
*
|
|
3683
|
+
* @type {Array<MutualAvailabilityInviteeDTO>}
|
|
3684
|
+
* @memberof CheckMutualAvailabilityPayloadDTO
|
|
3685
|
+
*/
|
|
3686
|
+
'invitees': Array<MutualAvailabilityInviteeDTO>;
|
|
3687
|
+
/**
|
|
3688
|
+
* Optional recurrence payload. Omit for one-off events. When present, availability is still evaluated only for the FIRST occurrence (startDateTime/endDateTime) — see mutually-available-times.md, Section 7, for rationale. The Recommended Fix search will respect this recurrence pattern when searching for an alternative time.
|
|
3689
|
+
* @type {MutualAvailabilityRecurrenceDTO}
|
|
3690
|
+
* @memberof CheckMutualAvailabilityPayloadDTO
|
|
3691
|
+
*/
|
|
3692
|
+
'recurrence'?: MutualAvailabilityRecurrenceDTO;
|
|
3693
|
+
}
|
|
3694
|
+
/**
|
|
3695
|
+
*
|
|
3696
|
+
* @export
|
|
3697
|
+
* @interface CheckRSVPBookingPayload
|
|
3698
|
+
*/
|
|
3699
|
+
export interface CheckRSVPBookingPayload {
|
|
3700
|
+
/**
|
|
3701
|
+
* The RSVP event identifier
|
|
3702
|
+
* @type {string}
|
|
3703
|
+
* @memberof CheckRSVPBookingPayload
|
|
3704
|
+
*/
|
|
3705
|
+
'rsvpId': string;
|
|
3706
|
+
/**
|
|
3707
|
+
* The start date of the RSVP booking
|
|
3708
|
+
* @type {string}
|
|
3709
|
+
* @memberof CheckRSVPBookingPayload
|
|
3710
|
+
*/
|
|
3711
|
+
'startDate': string;
|
|
3712
|
+
/**
|
|
3713
|
+
* The end date of the RSVP booking
|
|
3714
|
+
* @type {string}
|
|
3715
|
+
* @memberof CheckRSVPBookingPayload
|
|
3716
|
+
*/
|
|
3717
|
+
'endDate': string;
|
|
3718
|
+
/**
|
|
3719
|
+
* Created details for the booking
|
|
3720
|
+
* @type {CreateBookingCollaboratorPayload}
|
|
3721
|
+
* @memberof CheckRSVPBookingPayload
|
|
3722
|
+
*/
|
|
3723
|
+
'createdDetails': CreateBookingCollaboratorPayload;
|
|
3724
|
+
}
|
|
3639
3725
|
/**
|
|
3640
3726
|
*
|
|
3641
3727
|
* @export
|
|
@@ -4288,6 +4374,31 @@ export interface CreatePaymentLinkDTO {
|
|
|
4288
4374
|
*/
|
|
4289
4375
|
'productID': string;
|
|
4290
4376
|
}
|
|
4377
|
+
/**
|
|
4378
|
+
*
|
|
4379
|
+
* @export
|
|
4380
|
+
* @interface CreateRSVPBlastDTO
|
|
4381
|
+
*/
|
|
4382
|
+
export interface CreateRSVPBlastDTO {
|
|
4383
|
+
/**
|
|
4384
|
+
*
|
|
4385
|
+
* @type {string}
|
|
4386
|
+
* @memberof CreateRSVPBlastDTO
|
|
4387
|
+
*/
|
|
4388
|
+
'message': string;
|
|
4389
|
+
/**
|
|
4390
|
+
*
|
|
4391
|
+
* @type {Array<string>}
|
|
4392
|
+
* @memberof CreateRSVPBlastDTO
|
|
4393
|
+
*/
|
|
4394
|
+
'recipients': Array<string>;
|
|
4395
|
+
/**
|
|
4396
|
+
*
|
|
4397
|
+
* @type {Array<string>}
|
|
4398
|
+
* @memberof CreateRSVPBlastDTO
|
|
4399
|
+
*/
|
|
4400
|
+
'channels'?: Array<string>;
|
|
4401
|
+
}
|
|
4291
4402
|
/**
|
|
4292
4403
|
*
|
|
4293
4404
|
* @export
|
|
@@ -4718,6 +4829,12 @@ export interface CreateRSVPEventV2DTO {
|
|
|
4718
4829
|
* @memberof CreateRSVPEventV2DTO
|
|
4719
4830
|
*/
|
|
4720
4831
|
'emailTemplate'?: string;
|
|
4832
|
+
/**
|
|
4833
|
+
*
|
|
4834
|
+
* @type {boolean}
|
|
4835
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4836
|
+
*/
|
|
4837
|
+
'requireApproval'?: boolean;
|
|
4721
4838
|
}
|
|
4722
4839
|
|
|
4723
4840
|
export const CreateRSVPEventV2DTOTypeEnum = {
|
|
@@ -4734,7 +4851,8 @@ export const CreateRSVPEventV2DTOThemeEnum = {
|
|
|
4734
4851
|
Sunset: 'Sunset',
|
|
4735
4852
|
Beige: 'Beige',
|
|
4736
4853
|
Black: 'Black',
|
|
4737
|
-
Red: 'Red'
|
|
4854
|
+
Red: 'Red',
|
|
4855
|
+
White: 'White'
|
|
4738
4856
|
} as const;
|
|
4739
4857
|
|
|
4740
4858
|
export type CreateRSVPEventV2DTOThemeEnum = typeof CreateRSVPEventV2DTOThemeEnum[keyof typeof CreateRSVPEventV2DTOThemeEnum];
|
|
@@ -5228,6 +5346,12 @@ export interface DiscountV2DTO {
|
|
|
5228
5346
|
* @memberof DiscountV2DTO
|
|
5229
5347
|
*/
|
|
5230
5348
|
'percentage': number;
|
|
5349
|
+
/**
|
|
5350
|
+
*
|
|
5351
|
+
* @type {number}
|
|
5352
|
+
* @memberof DiscountV2DTO
|
|
5353
|
+
*/
|
|
5354
|
+
'maxRedemptions'?: number;
|
|
5231
5355
|
}
|
|
5232
5356
|
/**
|
|
5233
5357
|
*
|
|
@@ -7119,6 +7243,74 @@ export interface InviteRSVPArrayDTO {
|
|
|
7119
7243
|
*/
|
|
7120
7244
|
'invites': Array<InviteRSVPDTO>;
|
|
7121
7245
|
}
|
|
7246
|
+
/**
|
|
7247
|
+
*
|
|
7248
|
+
* @export
|
|
7249
|
+
* @interface InviteRSVPCreatedDTO
|
|
7250
|
+
*/
|
|
7251
|
+
export interface InviteRSVPCreatedDTO {
|
|
7252
|
+
/**
|
|
7253
|
+
*
|
|
7254
|
+
* @type {string}
|
|
7255
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7256
|
+
*/
|
|
7257
|
+
'id': string;
|
|
7258
|
+
/**
|
|
7259
|
+
*
|
|
7260
|
+
* @type {string}
|
|
7261
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7262
|
+
*/
|
|
7263
|
+
'user'?: string;
|
|
7264
|
+
/**
|
|
7265
|
+
*
|
|
7266
|
+
* @type {string}
|
|
7267
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7268
|
+
*/
|
|
7269
|
+
'contact'?: string;
|
|
7270
|
+
/**
|
|
7271
|
+
*
|
|
7272
|
+
* @type {string}
|
|
7273
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7274
|
+
*/
|
|
7275
|
+
'business'?: string;
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @type {string}
|
|
7279
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7280
|
+
*/
|
|
7281
|
+
'email'?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {string}
|
|
7285
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7286
|
+
*/
|
|
7287
|
+
'mobileNumber'?: string;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {string}
|
|
7291
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7292
|
+
*/
|
|
7293
|
+
'status'?: InviteRSVPCreatedDTOStatusEnum;
|
|
7294
|
+
/**
|
|
7295
|
+
*
|
|
7296
|
+
* @type {boolean}
|
|
7297
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7298
|
+
*/
|
|
7299
|
+
'isInvited'?: boolean;
|
|
7300
|
+
}
|
|
7301
|
+
|
|
7302
|
+
export const InviteRSVPCreatedDTOStatusEnum = {
|
|
7303
|
+
Invited: 'INVITED',
|
|
7304
|
+
Going: 'GOING',
|
|
7305
|
+
NotGoing: 'NOT_GOING',
|
|
7306
|
+
Maybe: 'MAYBE',
|
|
7307
|
+
CheckedIn: 'CHECKED_IN',
|
|
7308
|
+
Cancelled: 'CANCELLED',
|
|
7309
|
+
Pending: 'PENDING'
|
|
7310
|
+
} as const;
|
|
7311
|
+
|
|
7312
|
+
export type InviteRSVPCreatedDTOStatusEnum = typeof InviteRSVPCreatedDTOStatusEnum[keyof typeof InviteRSVPCreatedDTOStatusEnum];
|
|
7313
|
+
|
|
7122
7314
|
/**
|
|
7123
7315
|
*
|
|
7124
7316
|
* @export
|
|
@@ -7174,6 +7366,118 @@ export interface InviteRSVPDTO {
|
|
|
7174
7366
|
*/
|
|
7175
7367
|
'profile'?: string;
|
|
7176
7368
|
}
|
|
7369
|
+
/**
|
|
7370
|
+
*
|
|
7371
|
+
* @export
|
|
7372
|
+
* @interface InviteRSVPResponseDTO
|
|
7373
|
+
*/
|
|
7374
|
+
export interface InviteRSVPResponseDTO {
|
|
7375
|
+
/**
|
|
7376
|
+
* statusCode
|
|
7377
|
+
* @type {number}
|
|
7378
|
+
* @memberof InviteRSVPResponseDTO
|
|
7379
|
+
*/
|
|
7380
|
+
'statusCode': number;
|
|
7381
|
+
/**
|
|
7382
|
+
* Response message
|
|
7383
|
+
* @type {string}
|
|
7384
|
+
* @memberof InviteRSVPResponseDTO
|
|
7385
|
+
*/
|
|
7386
|
+
'message': string;
|
|
7387
|
+
/**
|
|
7388
|
+
* Result details for invite processing
|
|
7389
|
+
* @type {InviteRSVPResultDTO}
|
|
7390
|
+
* @memberof InviteRSVPResponseDTO
|
|
7391
|
+
*/
|
|
7392
|
+
'data': InviteRSVPResultDTO;
|
|
7393
|
+
}
|
|
7394
|
+
/**
|
|
7395
|
+
*
|
|
7396
|
+
* @export
|
|
7397
|
+
* @interface InviteRSVPResultDTO
|
|
7398
|
+
*/
|
|
7399
|
+
export interface InviteRSVPResultDTO {
|
|
7400
|
+
/**
|
|
7401
|
+
*
|
|
7402
|
+
* @type {Array<InviteRSVPCreatedDTO>}
|
|
7403
|
+
* @memberof InviteRSVPResultDTO
|
|
7404
|
+
*/
|
|
7405
|
+
'created': Array<InviteRSVPCreatedDTO>;
|
|
7406
|
+
/**
|
|
7407
|
+
*
|
|
7408
|
+
* @type {Array<InviteRSVPSkippedDTO>}
|
|
7409
|
+
* @memberof InviteRSVPResultDTO
|
|
7410
|
+
*/
|
|
7411
|
+
'skipped': Array<InviteRSVPSkippedDTO>;
|
|
7412
|
+
}
|
|
7413
|
+
/**
|
|
7414
|
+
*
|
|
7415
|
+
* @export
|
|
7416
|
+
* @interface InviteRSVPSkippedDTO
|
|
7417
|
+
*/
|
|
7418
|
+
export interface InviteRSVPSkippedDTO {
|
|
7419
|
+
/**
|
|
7420
|
+
*
|
|
7421
|
+
* @type {InviteRSVPDTO}
|
|
7422
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7423
|
+
*/
|
|
7424
|
+
'invite': InviteRSVPDTO;
|
|
7425
|
+
/**
|
|
7426
|
+
*
|
|
7427
|
+
* @type {string}
|
|
7428
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7429
|
+
*/
|
|
7430
|
+
'reason': string;
|
|
7431
|
+
/**
|
|
7432
|
+
*
|
|
7433
|
+
* @type {InviteRSVPSkippedExistingDTO}
|
|
7434
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7435
|
+
*/
|
|
7436
|
+
'existing'?: InviteRSVPSkippedExistingDTO;
|
|
7437
|
+
}
|
|
7438
|
+
/**
|
|
7439
|
+
*
|
|
7440
|
+
* @export
|
|
7441
|
+
* @interface InviteRSVPSkippedExistingDTO
|
|
7442
|
+
*/
|
|
7443
|
+
export interface InviteRSVPSkippedExistingDTO {
|
|
7444
|
+
/**
|
|
7445
|
+
*
|
|
7446
|
+
* @type {string}
|
|
7447
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7448
|
+
*/
|
|
7449
|
+
'id': string;
|
|
7450
|
+
/**
|
|
7451
|
+
*
|
|
7452
|
+
* @type {string}
|
|
7453
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7454
|
+
*/
|
|
7455
|
+
'user'?: string;
|
|
7456
|
+
/**
|
|
7457
|
+
*
|
|
7458
|
+
* @type {string}
|
|
7459
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7460
|
+
*/
|
|
7461
|
+
'contact'?: string;
|
|
7462
|
+
/**
|
|
7463
|
+
*
|
|
7464
|
+
* @type {string}
|
|
7465
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7466
|
+
*/
|
|
7467
|
+
'business'?: string;
|
|
7468
|
+
/**
|
|
7469
|
+
*
|
|
7470
|
+
* @type {string}
|
|
7471
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7472
|
+
*/
|
|
7473
|
+
'email'?: string;
|
|
7474
|
+
/**
|
|
7475
|
+
*
|
|
7476
|
+
* @type {string}
|
|
7477
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7478
|
+
*/
|
|
7479
|
+
'mobileNumber'?: string;
|
|
7480
|
+
}
|
|
7177
7481
|
/**
|
|
7178
7482
|
*
|
|
7179
7483
|
* @export
|
|
@@ -7228,6 +7532,12 @@ export interface JoinRSVPEventDTO {
|
|
|
7228
7532
|
* @memberof JoinRSVPEventDTO
|
|
7229
7533
|
*/
|
|
7230
7534
|
'others'?: Array<InviteRSVPDTO>;
|
|
7535
|
+
/**
|
|
7536
|
+
*
|
|
7537
|
+
* @type {string}
|
|
7538
|
+
* @memberof JoinRSVPEventDTO
|
|
7539
|
+
*/
|
|
7540
|
+
'notes'?: string;
|
|
7231
7541
|
}
|
|
7232
7542
|
/**
|
|
7233
7543
|
*
|
|
@@ -7518,48 +7828,170 @@ export interface MicrosoftCalendarAccessDTO {
|
|
|
7518
7828
|
/**
|
|
7519
7829
|
*
|
|
7520
7830
|
* @export
|
|
7521
|
-
* @interface
|
|
7831
|
+
* @interface MutualAvailabilityInviteeDTO
|
|
7522
7832
|
*/
|
|
7523
|
-
export interface
|
|
7833
|
+
export interface MutualAvailabilityInviteeDTO {
|
|
7524
7834
|
/**
|
|
7525
7835
|
*
|
|
7526
7836
|
* @type {string}
|
|
7527
|
-
* @memberof
|
|
7837
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7528
7838
|
*/
|
|
7529
|
-
'
|
|
7839
|
+
'email'?: string;
|
|
7530
7840
|
/**
|
|
7531
7841
|
*
|
|
7532
7842
|
* @type {string}
|
|
7533
|
-
* @memberof
|
|
7843
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7534
7844
|
*/
|
|
7535
|
-
'
|
|
7845
|
+
'firstName'?: string;
|
|
7536
7846
|
/**
|
|
7537
7847
|
*
|
|
7538
7848
|
* @type {string}
|
|
7539
|
-
* @memberof
|
|
7849
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7540
7850
|
*/
|
|
7541
|
-
'
|
|
7851
|
+
'lastName'?: string;
|
|
7542
7852
|
/**
|
|
7543
7853
|
*
|
|
7544
|
-
* @type {
|
|
7545
|
-
* @memberof
|
|
7854
|
+
* @type {string}
|
|
7855
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7546
7856
|
*/
|
|
7547
|
-
'
|
|
7857
|
+
'mobileNumber'?: string;
|
|
7548
7858
|
/**
|
|
7549
7859
|
*
|
|
7550
|
-
* @type {
|
|
7551
|
-
* @memberof
|
|
7860
|
+
* @type {string}
|
|
7861
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7552
7862
|
*/
|
|
7553
|
-
'
|
|
7554
|
-
}
|
|
7555
|
-
/**
|
|
7556
|
-
*
|
|
7557
|
-
* @export
|
|
7558
|
-
* @interface MutualFriendDTO
|
|
7559
|
-
*/
|
|
7560
|
-
export interface MutualFriendDTO {
|
|
7863
|
+
'user'?: string;
|
|
7561
7864
|
/**
|
|
7562
|
-
*
|
|
7865
|
+
*
|
|
7866
|
+
* @type {string}
|
|
7867
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7868
|
+
*/
|
|
7869
|
+
'contact'?: string;
|
|
7870
|
+
/**
|
|
7871
|
+
*
|
|
7872
|
+
* @type {string}
|
|
7873
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7874
|
+
*/
|
|
7875
|
+
'business'?: string;
|
|
7876
|
+
/**
|
|
7877
|
+
*
|
|
7878
|
+
* @type {string}
|
|
7879
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7880
|
+
*/
|
|
7881
|
+
'profile'?: string;
|
|
7882
|
+
/**
|
|
7883
|
+
*
|
|
7884
|
+
* @type {string}
|
|
7885
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7886
|
+
*/
|
|
7887
|
+
'code'?: string;
|
|
7888
|
+
}
|
|
7889
|
+
/**
|
|
7890
|
+
*
|
|
7891
|
+
* @export
|
|
7892
|
+
* @interface MutualAvailabilityRecurrenceDTO
|
|
7893
|
+
*/
|
|
7894
|
+
export interface MutualAvailabilityRecurrenceDTO {
|
|
7895
|
+
/**
|
|
7896
|
+
*
|
|
7897
|
+
* @type {string}
|
|
7898
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7899
|
+
*/
|
|
7900
|
+
'repeat': MutualAvailabilityRecurrenceDTORepeatEnum;
|
|
7901
|
+
/**
|
|
7902
|
+
* Recurrence end date (the \"Until\" date in the UI)
|
|
7903
|
+
* @type {string}
|
|
7904
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7905
|
+
*/
|
|
7906
|
+
'recurrenceEndDate'?: string;
|
|
7907
|
+
/**
|
|
7908
|
+
* Comma-separated days of week, e.g. \"MO,WE,FR\" (used for WEEKLY)
|
|
7909
|
+
* @type {string}
|
|
7910
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7911
|
+
*/
|
|
7912
|
+
'byDay'?: string;
|
|
7913
|
+
/**
|
|
7914
|
+
* Comma-separated days of month, e.g. \"1,15\" (used for MONTHLY)
|
|
7915
|
+
* @type {string}
|
|
7916
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7917
|
+
*/
|
|
7918
|
+
'byMonthDay'?: string;
|
|
7919
|
+
/**
|
|
7920
|
+
* Comma-separated months of year 1-12 (used for YEARLY)
|
|
7921
|
+
* @type {string}
|
|
7922
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7923
|
+
*/
|
|
7924
|
+
'byMonth'?: string;
|
|
7925
|
+
/**
|
|
7926
|
+
*
|
|
7927
|
+
* @type {string}
|
|
7928
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7929
|
+
*/
|
|
7930
|
+
'repeatBy'?: MutualAvailabilityRecurrenceDTORepeatByEnum;
|
|
7931
|
+
}
|
|
7932
|
+
|
|
7933
|
+
export const MutualAvailabilityRecurrenceDTORepeatEnum = {
|
|
7934
|
+
None: 'NONE',
|
|
7935
|
+
Daily: 'DAILY',
|
|
7936
|
+
Weekly: 'WEEKLY',
|
|
7937
|
+
Monthly: 'MONTHLY',
|
|
7938
|
+
Year: 'YEAR'
|
|
7939
|
+
} as const;
|
|
7940
|
+
|
|
7941
|
+
export type MutualAvailabilityRecurrenceDTORepeatEnum = typeof MutualAvailabilityRecurrenceDTORepeatEnum[keyof typeof MutualAvailabilityRecurrenceDTORepeatEnum];
|
|
7942
|
+
export const MutualAvailabilityRecurrenceDTORepeatByEnum = {
|
|
7943
|
+
RepeatByDay: 'repeat_by_day',
|
|
7944
|
+
RepeatByWeekMonth: 'repeat_by_week_month',
|
|
7945
|
+
RepeatByLastWeekMonth: 'repeat_by_last_week_month'
|
|
7946
|
+
} as const;
|
|
7947
|
+
|
|
7948
|
+
export type MutualAvailabilityRecurrenceDTORepeatByEnum = typeof MutualAvailabilityRecurrenceDTORepeatByEnum[keyof typeof MutualAvailabilityRecurrenceDTORepeatByEnum];
|
|
7949
|
+
|
|
7950
|
+
/**
|
|
7951
|
+
*
|
|
7952
|
+
* @export
|
|
7953
|
+
* @interface MutualFindFriendRequestPayload
|
|
7954
|
+
*/
|
|
7955
|
+
export interface MutualFindFriendRequestPayload {
|
|
7956
|
+
/**
|
|
7957
|
+
*
|
|
7958
|
+
* @type {string}
|
|
7959
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7960
|
+
*/
|
|
7961
|
+
'query'?: string;
|
|
7962
|
+
/**
|
|
7963
|
+
*
|
|
7964
|
+
* @type {string}
|
|
7965
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7966
|
+
*/
|
|
7967
|
+
'calendar'?: string;
|
|
7968
|
+
/**
|
|
7969
|
+
*
|
|
7970
|
+
* @type {string}
|
|
7971
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7972
|
+
*/
|
|
7973
|
+
'user'?: string;
|
|
7974
|
+
/**
|
|
7975
|
+
*
|
|
7976
|
+
* @type {number}
|
|
7977
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7978
|
+
*/
|
|
7979
|
+
'page': number;
|
|
7980
|
+
/**
|
|
7981
|
+
*
|
|
7982
|
+
* @type {number}
|
|
7983
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7984
|
+
*/
|
|
7985
|
+
'pageSize': number;
|
|
7986
|
+
}
|
|
7987
|
+
/**
|
|
7988
|
+
*
|
|
7989
|
+
* @export
|
|
7990
|
+
* @interface MutualFriendDTO
|
|
7991
|
+
*/
|
|
7992
|
+
export interface MutualFriendDTO {
|
|
7993
|
+
/**
|
|
7994
|
+
* statusCode
|
|
7563
7995
|
* @type {number}
|
|
7564
7996
|
* @memberof MutualFriendDTO
|
|
7565
7997
|
*/
|
|
@@ -7735,6 +8167,12 @@ export interface NotificationCountDTO {
|
|
|
7735
8167
|
* @memberof NotificationCountDTO
|
|
7736
8168
|
*/
|
|
7737
8169
|
'category': Array<NotificationCountDTOCategoryEnum>;
|
|
8170
|
+
/**
|
|
8171
|
+
*
|
|
8172
|
+
* @type {string}
|
|
8173
|
+
* @memberof NotificationCountDTO
|
|
8174
|
+
*/
|
|
8175
|
+
'targetAudience'?: NotificationCountDTOTargetAudienceEnum;
|
|
7738
8176
|
}
|
|
7739
8177
|
|
|
7740
8178
|
export const NotificationCountDTOCategoryEnum = {
|
|
@@ -7748,6 +8186,12 @@ export const NotificationCountDTOCategoryEnum = {
|
|
|
7748
8186
|
} as const;
|
|
7749
8187
|
|
|
7750
8188
|
export type NotificationCountDTOCategoryEnum = typeof NotificationCountDTOCategoryEnum[keyof typeof NotificationCountDTOCategoryEnum];
|
|
8189
|
+
export const NotificationCountDTOTargetAudienceEnum = {
|
|
8190
|
+
Mobile: 'MOBILE',
|
|
8191
|
+
Dashboard: 'DASHBOARD'
|
|
8192
|
+
} as const;
|
|
8193
|
+
|
|
8194
|
+
export type NotificationCountDTOTargetAudienceEnum = typeof NotificationCountDTOTargetAudienceEnum[keyof typeof NotificationCountDTOTargetAudienceEnum];
|
|
7751
8195
|
|
|
7752
8196
|
/**
|
|
7753
8197
|
*
|
|
@@ -7885,7 +8329,14 @@ export const NotificationEntityTypeEnum = {
|
|
|
7885
8329
|
DailyBriefing: 'DAILY_BRIEFING',
|
|
7886
8330
|
Reminders: 'REMINDERS',
|
|
7887
8331
|
CollaboratorAddedCalendar: 'COLLABORATOR_ADDED_CALENDAR',
|
|
7888
|
-
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT'
|
|
8332
|
+
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT',
|
|
8333
|
+
RsvpEventJoin: 'RSVP_EVENT_JOIN',
|
|
8334
|
+
RsvpEventCancel: 'RSVP_EVENT_CANCEL',
|
|
8335
|
+
EventBlast: 'EVENT_BLAST',
|
|
8336
|
+
RsvpJoinRequestNew: 'RSVP_JOIN_REQUEST_NEW',
|
|
8337
|
+
RsvpJoinRequestApproved: 'RSVP_JOIN_REQUEST_APPROVED',
|
|
8338
|
+
RsvpJoinRequestDeclined: 'RSVP_JOIN_REQUEST_DECLINED',
|
|
8339
|
+
RsvpJoinRequestProposed: 'RSVP_JOIN_REQUEST_PROPOSED'
|
|
7889
8340
|
} as const;
|
|
7890
8341
|
|
|
7891
8342
|
export type NotificationEntityTypeEnum = typeof NotificationEntityTypeEnum[keyof typeof NotificationEntityTypeEnum];
|
|
@@ -9021,6 +9472,19 @@ export interface PromoCodeResponseDTO {
|
|
|
9021
9472
|
*/
|
|
9022
9473
|
'data': string;
|
|
9023
9474
|
}
|
|
9475
|
+
/**
|
|
9476
|
+
*
|
|
9477
|
+
* @export
|
|
9478
|
+
* @interface RSVPBookingCheckResponseDTO
|
|
9479
|
+
*/
|
|
9480
|
+
export interface RSVPBookingCheckResponseDTO {
|
|
9481
|
+
/**
|
|
9482
|
+
* Whether the user has already booked this RSVP event
|
|
9483
|
+
* @type {boolean}
|
|
9484
|
+
* @memberof RSVPBookingCheckResponseDTO
|
|
9485
|
+
*/
|
|
9486
|
+
'alreadyBooked': boolean;
|
|
9487
|
+
}
|
|
9024
9488
|
/**
|
|
9025
9489
|
*
|
|
9026
9490
|
* @export
|
|
@@ -10550,6 +11014,30 @@ export interface SocialMedia {
|
|
|
10550
11014
|
* @memberof SocialMedia
|
|
10551
11015
|
*/
|
|
10552
11016
|
'link'?: string;
|
|
11017
|
+
/**
|
|
11018
|
+
*
|
|
11019
|
+
* @type {string}
|
|
11020
|
+
* @memberof SocialMedia
|
|
11021
|
+
*/
|
|
11022
|
+
'instagram'?: string;
|
|
11023
|
+
/**
|
|
11024
|
+
*
|
|
11025
|
+
* @type {string}
|
|
11026
|
+
* @memberof SocialMedia
|
|
11027
|
+
*/
|
|
11028
|
+
'facebook'?: string;
|
|
11029
|
+
/**
|
|
11030
|
+
*
|
|
11031
|
+
* @type {string}
|
|
11032
|
+
* @memberof SocialMedia
|
|
11033
|
+
*/
|
|
11034
|
+
'tiktok'?: string;
|
|
11035
|
+
/**
|
|
11036
|
+
*
|
|
11037
|
+
* @type {string}
|
|
11038
|
+
* @memberof SocialMedia
|
|
11039
|
+
*/
|
|
11040
|
+
'twitter'?: string;
|
|
10553
11041
|
}
|
|
10554
11042
|
/**
|
|
10555
11043
|
*
|
|
@@ -11474,6 +11962,12 @@ export interface UpdateRSVPEventV2DTO {
|
|
|
11474
11962
|
* @memberof UpdateRSVPEventV2DTO
|
|
11475
11963
|
*/
|
|
11476
11964
|
'emailTemplate'?: string;
|
|
11965
|
+
/**
|
|
11966
|
+
*
|
|
11967
|
+
* @type {boolean}
|
|
11968
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11969
|
+
*/
|
|
11970
|
+
'requireApproval'?: boolean;
|
|
11477
11971
|
}
|
|
11478
11972
|
|
|
11479
11973
|
export const UpdateRSVPEventV2DTOTypeEnum = {
|
|
@@ -11490,7 +11984,8 @@ export const UpdateRSVPEventV2DTOThemeEnum = {
|
|
|
11490
11984
|
Sunset: 'Sunset',
|
|
11491
11985
|
Beige: 'Beige',
|
|
11492
11986
|
Black: 'Black',
|
|
11493
|
-
Red: 'Red'
|
|
11987
|
+
Red: 'Red',
|
|
11988
|
+
White: 'White'
|
|
11494
11989
|
} as const;
|
|
11495
11990
|
|
|
11496
11991
|
export type UpdateRSVPEventV2DTOThemeEnum = typeof UpdateRSVPEventV2DTOThemeEnum[keyof typeof UpdateRSVPEventV2DTOThemeEnum];
|
|
@@ -15404,6 +15899,41 @@ export const BookingApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15404
15899
|
options: localVarRequestOptions,
|
|
15405
15900
|
};
|
|
15406
15901
|
},
|
|
15902
|
+
/**
|
|
15903
|
+
*
|
|
15904
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
15905
|
+
* @param {*} [options] Override http request option.
|
|
15906
|
+
* @throws {RequiredError}
|
|
15907
|
+
*/
|
|
15908
|
+
bookingControllerCheckRSVPBooking: async (checkRSVPBookingPayload: CheckRSVPBookingPayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15909
|
+
// verify required parameter 'checkRSVPBookingPayload' is not null or undefined
|
|
15910
|
+
assertParamExists('bookingControllerCheckRSVPBooking', 'checkRSVPBookingPayload', checkRSVPBookingPayload)
|
|
15911
|
+
const localVarPath = `/v1/booking/rsvp-booking/check`;
|
|
15912
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15913
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15914
|
+
let baseOptions;
|
|
15915
|
+
if (configuration) {
|
|
15916
|
+
baseOptions = configuration.baseOptions;
|
|
15917
|
+
}
|
|
15918
|
+
|
|
15919
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
15920
|
+
const localVarHeaderParameter = {} as any;
|
|
15921
|
+
const localVarQueryParameter = {} as any;
|
|
15922
|
+
|
|
15923
|
+
|
|
15924
|
+
|
|
15925
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15926
|
+
|
|
15927
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15928
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15929
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
15930
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkRSVPBookingPayload, localVarRequestOptions, configuration)
|
|
15931
|
+
|
|
15932
|
+
return {
|
|
15933
|
+
url: toPathString(localVarUrlObj),
|
|
15934
|
+
options: localVarRequestOptions,
|
|
15935
|
+
};
|
|
15936
|
+
},
|
|
15407
15937
|
/**
|
|
15408
15938
|
*
|
|
15409
15939
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16166,6 +16696,18 @@ export const BookingApiFp = function(configuration?: Configuration) {
|
|
|
16166
16696
|
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingControllerCancelBooking']?.[localVarOperationServerIndex]?.url;
|
|
16167
16697
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16168
16698
|
},
|
|
16699
|
+
/**
|
|
16700
|
+
*
|
|
16701
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
16702
|
+
* @param {*} [options] Override http request option.
|
|
16703
|
+
* @throws {RequiredError}
|
|
16704
|
+
*/
|
|
16705
|
+
async bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPBookingCheckResponseDTO>> {
|
|
16706
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options);
|
|
16707
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16708
|
+
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingControllerCheckRSVPBooking']?.[localVarOperationServerIndex]?.url;
|
|
16709
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16710
|
+
},
|
|
16169
16711
|
/**
|
|
16170
16712
|
*
|
|
16171
16713
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16440,6 +16982,15 @@ export const BookingApiFactory = function (configuration?: Configuration, basePa
|
|
|
16440
16982
|
bookingControllerCancelBooking(cancelBookingDTO: CancelBookingDTO, options?: RawAxiosRequestConfig): AxiosPromise<CancelBookingResponseDTO> {
|
|
16441
16983
|
return localVarFp.bookingControllerCancelBooking(cancelBookingDTO, options).then((request) => request(axios, basePath));
|
|
16442
16984
|
},
|
|
16985
|
+
/**
|
|
16986
|
+
*
|
|
16987
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
16988
|
+
* @param {*} [options] Override http request option.
|
|
16989
|
+
* @throws {RequiredError}
|
|
16990
|
+
*/
|
|
16991
|
+
bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig): AxiosPromise<RSVPBookingCheckResponseDTO> {
|
|
16992
|
+
return localVarFp.bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options).then((request) => request(axios, basePath));
|
|
16993
|
+
},
|
|
16443
16994
|
/**
|
|
16444
16995
|
*
|
|
16445
16996
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16670,6 +17221,17 @@ export class BookingApi extends BaseAPI {
|
|
|
16670
17221
|
return BookingApiFp(this.configuration).bookingControllerCancelBooking(cancelBookingDTO, options).then((request) => request(this.axios, this.basePath));
|
|
16671
17222
|
}
|
|
16672
17223
|
|
|
17224
|
+
/**
|
|
17225
|
+
*
|
|
17226
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
17227
|
+
* @param {*} [options] Override http request option.
|
|
17228
|
+
* @throws {RequiredError}
|
|
17229
|
+
* @memberof BookingApi
|
|
17230
|
+
*/
|
|
17231
|
+
public bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig) {
|
|
17232
|
+
return BookingApiFp(this.configuration).bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options).then((request) => request(this.axios, this.basePath));
|
|
17233
|
+
}
|
|
17234
|
+
|
|
16673
17235
|
/**
|
|
16674
17236
|
*
|
|
16675
17237
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -25096,10 +25658,11 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
|
25096
25658
|
* @param {number} page
|
|
25097
25659
|
* @param {number} pageSize
|
|
25098
25660
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25661
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25099
25662
|
* @param {*} [options] Override http request option.
|
|
25100
25663
|
* @throws {RequiredError}
|
|
25101
25664
|
*/
|
|
25102
|
-
notificationControllerGetNotification: async (page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25665
|
+
notificationControllerGetNotification: async (page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25103
25666
|
// verify required parameter 'page' is not null or undefined
|
|
25104
25667
|
assertParamExists('notificationControllerGetNotification', 'page', page)
|
|
25105
25668
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -25134,6 +25697,10 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
|
25134
25697
|
localVarQueryParameter['category'] = category;
|
|
25135
25698
|
}
|
|
25136
25699
|
|
|
25700
|
+
if (targetAudience !== undefined) {
|
|
25701
|
+
localVarQueryParameter['targetAudience'] = targetAudience;
|
|
25702
|
+
}
|
|
25703
|
+
|
|
25137
25704
|
|
|
25138
25705
|
|
|
25139
25706
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25322,11 +25889,12 @@ export const NotificationApiFp = function(configuration?: Configuration) {
|
|
|
25322
25889
|
* @param {number} page
|
|
25323
25890
|
* @param {number} pageSize
|
|
25324
25891
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25892
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25325
25893
|
* @param {*} [options] Override http request option.
|
|
25326
25894
|
* @throws {RequiredError}
|
|
25327
25895
|
*/
|
|
25328
|
-
async notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetNotificationDTO>> {
|
|
25329
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.notificationControllerGetNotification(page, pageSize, category, options);
|
|
25896
|
+
async notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetNotificationDTO>> {
|
|
25897
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.notificationControllerGetNotification(page, pageSize, category, targetAudience, options);
|
|
25330
25898
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
25331
25899
|
const localVarOperationServerBasePath = operationServerMap['NotificationApi.notificationControllerGetNotification']?.[localVarOperationServerIndex]?.url;
|
|
25332
25900
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -25402,11 +25970,12 @@ export const NotificationApiFactory = function (configuration?: Configuration, b
|
|
|
25402
25970
|
* @param {number} page
|
|
25403
25971
|
* @param {number} pageSize
|
|
25404
25972
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25973
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25405
25974
|
* @param {*} [options] Override http request option.
|
|
25406
25975
|
* @throws {RequiredError}
|
|
25407
25976
|
*/
|
|
25408
|
-
notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, options?: RawAxiosRequestConfig): AxiosPromise<GetNotificationDTO> {
|
|
25409
|
-
return localVarFp.notificationControllerGetNotification(page, pageSize, category, options).then((request) => request(axios, basePath));
|
|
25977
|
+
notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig): AxiosPromise<GetNotificationDTO> {
|
|
25978
|
+
return localVarFp.notificationControllerGetNotification(page, pageSize, category, targetAudience, options).then((request) => request(axios, basePath));
|
|
25410
25979
|
},
|
|
25411
25980
|
/**
|
|
25412
25981
|
*
|
|
@@ -25469,12 +26038,13 @@ export class NotificationApi extends BaseAPI {
|
|
|
25469
26038
|
* @param {number} page
|
|
25470
26039
|
* @param {number} pageSize
|
|
25471
26040
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
26041
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25472
26042
|
* @param {*} [options] Override http request option.
|
|
25473
26043
|
* @throws {RequiredError}
|
|
25474
26044
|
* @memberof NotificationApi
|
|
25475
26045
|
*/
|
|
25476
|
-
public notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, options?: RawAxiosRequestConfig) {
|
|
25477
|
-
return NotificationApiFp(this.configuration).notificationControllerGetNotification(page, pageSize, category, options).then((request) => request(this.axios, this.basePath));
|
|
26046
|
+
public notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig) {
|
|
26047
|
+
return NotificationApiFp(this.configuration).notificationControllerGetNotification(page, pageSize, category, targetAudience, options).then((request) => request(this.axios, this.basePath));
|
|
25478
26048
|
}
|
|
25479
26049
|
|
|
25480
26050
|
/**
|
|
@@ -25534,6 +26104,14 @@ export const NotificationControllerGetNotificationCategoryEnum = {
|
|
|
25534
26104
|
General: 'GENERAL'
|
|
25535
26105
|
} as const;
|
|
25536
26106
|
export type NotificationControllerGetNotificationCategoryEnum = typeof NotificationControllerGetNotificationCategoryEnum[keyof typeof NotificationControllerGetNotificationCategoryEnum];
|
|
26107
|
+
/**
|
|
26108
|
+
* @export
|
|
26109
|
+
*/
|
|
26110
|
+
export const NotificationControllerGetNotificationTargetAudienceEnum = {
|
|
26111
|
+
Mobile: 'MOBILE',
|
|
26112
|
+
Dashboard: 'DASHBOARD'
|
|
26113
|
+
} as const;
|
|
26114
|
+
export type NotificationControllerGetNotificationTargetAudienceEnum = typeof NotificationControllerGetNotificationTargetAudienceEnum[keyof typeof NotificationControllerGetNotificationTargetAudienceEnum];
|
|
25537
26115
|
|
|
25538
26116
|
|
|
25539
26117
|
/**
|
|
@@ -28695,15 +29273,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28695
29273
|
return {
|
|
28696
29274
|
/**
|
|
28697
29275
|
*
|
|
28698
|
-
* @param {string}
|
|
29276
|
+
* @param {string} requestId
|
|
28699
29277
|
* @param {*} [options] Override http request option.
|
|
28700
29278
|
* @throws {RequiredError}
|
|
28701
29279
|
*/
|
|
28702
|
-
|
|
28703
|
-
// verify required parameter '
|
|
28704
|
-
assertParamExists('
|
|
28705
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
28706
|
-
.replace(`{${"
|
|
29280
|
+
rSVPV2ControllerAcceptProposal: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29281
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
29282
|
+
assertParamExists('rSVPV2ControllerAcceptProposal', 'requestId', requestId)
|
|
29283
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/accept`
|
|
29284
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
28707
29285
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28708
29286
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28709
29287
|
let baseOptions;
|
|
@@ -28711,10 +29289,14 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28711
29289
|
baseOptions = configuration.baseOptions;
|
|
28712
29290
|
}
|
|
28713
29291
|
|
|
28714
|
-
const localVarRequestOptions = { method: '
|
|
29292
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
28715
29293
|
const localVarHeaderParameter = {} as any;
|
|
28716
29294
|
const localVarQueryParameter = {} as any;
|
|
28717
29295
|
|
|
29296
|
+
// authentication bearer required
|
|
29297
|
+
// http bearer authentication required
|
|
29298
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29299
|
+
|
|
28718
29300
|
|
|
28719
29301
|
|
|
28720
29302
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28729,14 +29311,13 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28729
29311
|
/**
|
|
28730
29312
|
*
|
|
28731
29313
|
* @param {string} id
|
|
28732
|
-
* @param {number} [attendees] Number of attendees to check for
|
|
28733
29314
|
* @param {*} [options] Override http request option.
|
|
28734
29315
|
* @throws {RequiredError}
|
|
28735
29316
|
*/
|
|
28736
|
-
|
|
29317
|
+
rSVPV2ControllerAddEventCalendar: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28737
29318
|
// verify required parameter 'id' is not null or undefined
|
|
28738
|
-
assertParamExists('
|
|
28739
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29319
|
+
assertParamExists('rSVPV2ControllerAddEventCalendar', 'id', id)
|
|
29320
|
+
const localVarPath = `/v1/rsvp/v2/calendar/{id}`
|
|
28740
29321
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
28741
29322
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28742
29323
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -28745,14 +29326,10 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28745
29326
|
baseOptions = configuration.baseOptions;
|
|
28746
29327
|
}
|
|
28747
29328
|
|
|
28748
|
-
const localVarRequestOptions = { method: '
|
|
29329
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
28749
29330
|
const localVarHeaderParameter = {} as any;
|
|
28750
29331
|
const localVarQueryParameter = {} as any;
|
|
28751
29332
|
|
|
28752
|
-
if (attendees !== undefined) {
|
|
28753
|
-
localVarQueryParameter['attendees'] = attendees;
|
|
28754
|
-
}
|
|
28755
|
-
|
|
28756
29333
|
|
|
28757
29334
|
|
|
28758
29335
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -28766,14 +29343,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28766
29343
|
},
|
|
28767
29344
|
/**
|
|
28768
29345
|
*
|
|
28769
|
-
* @param {
|
|
29346
|
+
* @param {string} requestId
|
|
28770
29347
|
* @param {*} [options] Override http request option.
|
|
28771
29348
|
* @throws {RequiredError}
|
|
28772
29349
|
*/
|
|
28773
|
-
|
|
28774
|
-
// verify required parameter '
|
|
28775
|
-
assertParamExists('
|
|
28776
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29350
|
+
rSVPV2ControllerApproveRequest: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29351
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
29352
|
+
assertParamExists('rSVPV2ControllerApproveRequest', 'requestId', requestId)
|
|
29353
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/approve`
|
|
29354
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
28777
29355
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28778
29356
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28779
29357
|
let baseOptions;
|
|
@@ -28785,14 +29363,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28785
29363
|
const localVarHeaderParameter = {} as any;
|
|
28786
29364
|
const localVarQueryParameter = {} as any;
|
|
28787
29365
|
|
|
29366
|
+
// authentication bearer required
|
|
29367
|
+
// http bearer authentication required
|
|
29368
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
28788
29369
|
|
|
28789
|
-
|
|
28790
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
28791
29370
|
|
|
29371
|
+
|
|
28792
29372
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28793
29373
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28794
29374
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28795
|
-
localVarRequestOptions.data = serializeDataIfNeeded(confirmRSVPV2PaymentDTO, localVarRequestOptions, configuration)
|
|
28796
29375
|
|
|
28797
29376
|
return {
|
|
28798
29377
|
url: toPathString(localVarUrlObj),
|
|
@@ -28801,14 +29380,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28801
29380
|
},
|
|
28802
29381
|
/**
|
|
28803
29382
|
*
|
|
28804
|
-
* @param {
|
|
29383
|
+
* @param {string} requestId
|
|
28805
29384
|
* @param {*} [options] Override http request option.
|
|
28806
29385
|
* @throws {RequiredError}
|
|
28807
29386
|
*/
|
|
28808
|
-
|
|
28809
|
-
// verify required parameter '
|
|
28810
|
-
assertParamExists('
|
|
28811
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29387
|
+
rSVPV2ControllerCancelRequest: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29388
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
29389
|
+
assertParamExists('rSVPV2ControllerCancelRequest', 'requestId', requestId)
|
|
29390
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/cancel`
|
|
29391
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
28812
29392
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28813
29393
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28814
29394
|
let baseOptions;
|
|
@@ -28826,12 +29406,9 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28826
29406
|
|
|
28827
29407
|
|
|
28828
29408
|
|
|
28829
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
28830
|
-
|
|
28831
29409
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28832
29410
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28833
29411
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28834
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createRSVPEventV2DTO, localVarRequestOptions, configuration)
|
|
28835
29412
|
|
|
28836
29413
|
return {
|
|
28837
29414
|
url: toPathString(localVarUrlObj),
|
|
@@ -28841,14 +29418,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28841
29418
|
/**
|
|
28842
29419
|
*
|
|
28843
29420
|
* @param {string} id
|
|
29421
|
+
* @param {number} [attendees] Number of attendees to check for
|
|
28844
29422
|
* @param {*} [options] Override http request option.
|
|
28845
29423
|
* @throws {RequiredError}
|
|
28846
29424
|
*/
|
|
28847
|
-
|
|
29425
|
+
rSVPV2ControllerCheckAvailability: async (id: string, attendees?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28848
29426
|
// verify required parameter 'id' is not null or undefined
|
|
28849
|
-
assertParamExists('
|
|
28850
|
-
const localVarPath = `/v1/rsvp/v2/events/{id}`
|
|
28851
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29427
|
+
assertParamExists('rSVPV2ControllerCheckAvailability', 'id', id)
|
|
29428
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/availability`
|
|
29429
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
28852
29430
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28853
29431
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28854
29432
|
let baseOptions;
|
|
@@ -28856,13 +29434,13 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28856
29434
|
baseOptions = configuration.baseOptions;
|
|
28857
29435
|
}
|
|
28858
29436
|
|
|
28859
|
-
const localVarRequestOptions = { method: '
|
|
29437
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
28860
29438
|
const localVarHeaderParameter = {} as any;
|
|
28861
29439
|
const localVarQueryParameter = {} as any;
|
|
28862
29440
|
|
|
28863
|
-
|
|
28864
|
-
|
|
28865
|
-
|
|
29441
|
+
if (attendees !== undefined) {
|
|
29442
|
+
localVarQueryParameter['attendees'] = attendees;
|
|
29443
|
+
}
|
|
28866
29444
|
|
|
28867
29445
|
|
|
28868
29446
|
|
|
@@ -28877,14 +29455,14 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28877
29455
|
},
|
|
28878
29456
|
/**
|
|
28879
29457
|
*
|
|
28880
|
-
* @param {
|
|
29458
|
+
* @param {ConfirmRSVPV2PaymentDTO} confirmRSVPV2PaymentDTO
|
|
28881
29459
|
* @param {*} [options] Override http request option.
|
|
28882
29460
|
* @throws {RequiredError}
|
|
28883
29461
|
*/
|
|
28884
|
-
|
|
28885
|
-
// verify required parameter '
|
|
28886
|
-
assertParamExists('
|
|
28887
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29462
|
+
rSVPV2ControllerConfirmPayment: async (confirmRSVPV2PaymentDTO: ConfirmRSVPV2PaymentDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29463
|
+
// verify required parameter 'confirmRSVPV2PaymentDTO' is not null or undefined
|
|
29464
|
+
assertParamExists('rSVPV2ControllerConfirmPayment', 'confirmRSVPV2PaymentDTO', confirmRSVPV2PaymentDTO)
|
|
29465
|
+
const localVarPath = `/v1/rsvp/v2/attendees/payment/confirm`;
|
|
28888
29466
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28889
29467
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28890
29468
|
let baseOptions;
|
|
@@ -28892,14 +29470,10 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28892
29470
|
baseOptions = configuration.baseOptions;
|
|
28893
29471
|
}
|
|
28894
29472
|
|
|
28895
|
-
const localVarRequestOptions = { method: '
|
|
29473
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
28896
29474
|
const localVarHeaderParameter = {} as any;
|
|
28897
29475
|
const localVarQueryParameter = {} as any;
|
|
28898
29476
|
|
|
28899
|
-
// authentication bearer required
|
|
28900
|
-
// http bearer authentication required
|
|
28901
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
28902
|
-
|
|
28903
29477
|
|
|
28904
29478
|
|
|
28905
29479
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -28907,7 +29481,7 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28907
29481
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28908
29482
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28909
29483
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28910
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
29484
|
+
localVarRequestOptions.data = serializeDataIfNeeded(confirmRSVPV2PaymentDTO, localVarRequestOptions, configuration)
|
|
28911
29485
|
|
|
28912
29486
|
return {
|
|
28913
29487
|
url: toPathString(localVarUrlObj),
|
|
@@ -28916,14 +29490,14 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28916
29490
|
},
|
|
28917
29491
|
/**
|
|
28918
29492
|
*
|
|
28919
|
-
* @param {
|
|
29493
|
+
* @param {CreateRSVPEventV2DTO} createRSVPEventV2DTO
|
|
28920
29494
|
* @param {*} [options] Override http request option.
|
|
28921
29495
|
* @throws {RequiredError}
|
|
28922
29496
|
*/
|
|
28923
|
-
|
|
28924
|
-
// verify required parameter '
|
|
28925
|
-
assertParamExists('
|
|
28926
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29497
|
+
rSVPV2ControllerCreateEvent: async (createRSVPEventV2DTO: CreateRSVPEventV2DTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29498
|
+
// verify required parameter 'createRSVPEventV2DTO' is not null or undefined
|
|
29499
|
+
assertParamExists('rSVPV2ControllerCreateEvent', 'createRSVPEventV2DTO', createRSVPEventV2DTO)
|
|
29500
|
+
const localVarPath = `/v1/rsvp/v2/events`;
|
|
28927
29501
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28928
29502
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28929
29503
|
let baseOptions;
|
|
@@ -28931,7 +29505,7 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28931
29505
|
baseOptions = configuration.baseOptions;
|
|
28932
29506
|
}
|
|
28933
29507
|
|
|
28934
|
-
const localVarRequestOptions = { method: '
|
|
29508
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
28935
29509
|
const localVarHeaderParameter = {} as any;
|
|
28936
29510
|
const localVarQueryParameter = {} as any;
|
|
28937
29511
|
|
|
@@ -28946,7 +29520,7 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28946
29520
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28947
29521
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28948
29522
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28949
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
29523
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createRSVPEventV2DTO, localVarRequestOptions, configuration)
|
|
28950
29524
|
|
|
28951
29525
|
return {
|
|
28952
29526
|
url: toPathString(localVarUrlObj),
|
|
@@ -28955,15 +29529,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28955
29529
|
},
|
|
28956
29530
|
/**
|
|
28957
29531
|
*
|
|
28958
|
-
* @param {string}
|
|
29532
|
+
* @param {string} requestId
|
|
28959
29533
|
* @param {*} [options] Override http request option.
|
|
28960
29534
|
* @throws {RequiredError}
|
|
28961
29535
|
*/
|
|
28962
|
-
|
|
28963
|
-
// verify required parameter '
|
|
28964
|
-
assertParamExists('
|
|
28965
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
28966
|
-
.replace(`{${"
|
|
29536
|
+
rSVPV2ControllerDeclineRequest: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29537
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
29538
|
+
assertParamExists('rSVPV2ControllerDeclineRequest', 'requestId', requestId)
|
|
29539
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/decline`
|
|
29540
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
28967
29541
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28968
29542
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28969
29543
|
let baseOptions;
|
|
@@ -28971,7 +29545,7 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28971
29545
|
baseOptions = configuration.baseOptions;
|
|
28972
29546
|
}
|
|
28973
29547
|
|
|
28974
|
-
const localVarRequestOptions = { method: '
|
|
29548
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
28975
29549
|
const localVarHeaderParameter = {} as any;
|
|
28976
29550
|
const localVarQueryParameter = {} as any;
|
|
28977
29551
|
|
|
@@ -28993,16 +29567,13 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28993
29567
|
/**
|
|
28994
29568
|
*
|
|
28995
29569
|
* @param {string} id
|
|
28996
|
-
* @param {number} [page]
|
|
28997
|
-
* @param {number} [pageSize]
|
|
28998
|
-
* @param {boolean} [isInvited]
|
|
28999
29570
|
* @param {*} [options] Override http request option.
|
|
29000
29571
|
* @throws {RequiredError}
|
|
29001
29572
|
*/
|
|
29002
|
-
|
|
29573
|
+
rSVPV2ControllerDeleteEvent: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29003
29574
|
// verify required parameter 'id' is not null or undefined
|
|
29004
|
-
assertParamExists('
|
|
29005
|
-
const localVarPath = `/v1/rsvp/v2/events/{id}
|
|
29575
|
+
assertParamExists('rSVPV2ControllerDeleteEvent', 'id', id)
|
|
29576
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}`
|
|
29006
29577
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29007
29578
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29008
29579
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -29011,21 +29582,13 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29011
29582
|
baseOptions = configuration.baseOptions;
|
|
29012
29583
|
}
|
|
29013
29584
|
|
|
29014
|
-
const localVarRequestOptions = { method: '
|
|
29585
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
29015
29586
|
const localVarHeaderParameter = {} as any;
|
|
29016
29587
|
const localVarQueryParameter = {} as any;
|
|
29017
29588
|
|
|
29018
|
-
|
|
29019
|
-
|
|
29020
|
-
|
|
29021
|
-
|
|
29022
|
-
if (pageSize !== undefined) {
|
|
29023
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
29024
|
-
}
|
|
29025
|
-
|
|
29026
|
-
if (isInvited !== undefined) {
|
|
29027
|
-
localVarQueryParameter['isInvited'] = isInvited;
|
|
29028
|
-
}
|
|
29589
|
+
// authentication bearer required
|
|
29590
|
+
// http bearer authentication required
|
|
29591
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29029
29592
|
|
|
29030
29593
|
|
|
29031
29594
|
|
|
@@ -29040,15 +29603,14 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29040
29603
|
},
|
|
29041
29604
|
/**
|
|
29042
29605
|
*
|
|
29043
|
-
* @param {
|
|
29606
|
+
* @param {RSVPEventDeleteDTO} rSVPEventDeleteDTO
|
|
29044
29607
|
* @param {*} [options] Override http request option.
|
|
29045
29608
|
* @throws {RequiredError}
|
|
29046
29609
|
*/
|
|
29047
|
-
|
|
29048
|
-
// verify required parameter '
|
|
29049
|
-
assertParamExists('
|
|
29050
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29051
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29610
|
+
rSVPV2ControllerDeleteEventSuperAdmin: async (rSVPEventDeleteDTO: RSVPEventDeleteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29611
|
+
// verify required parameter 'rSVPEventDeleteDTO' is not null or undefined
|
|
29612
|
+
assertParamExists('rSVPV2ControllerDeleteEventSuperAdmin', 'rSVPEventDeleteDTO', rSVPEventDeleteDTO)
|
|
29613
|
+
const localVarPath = `/v1/rsvp/v2/super-admin/rsvp`;
|
|
29052
29614
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29053
29615
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29054
29616
|
let baseOptions;
|
|
@@ -29056,15 +29618,22 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29056
29618
|
baseOptions = configuration.baseOptions;
|
|
29057
29619
|
}
|
|
29058
29620
|
|
|
29059
|
-
const localVarRequestOptions = { method: '
|
|
29621
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
29060
29622
|
const localVarHeaderParameter = {} as any;
|
|
29061
29623
|
const localVarQueryParameter = {} as any;
|
|
29062
29624
|
|
|
29625
|
+
// authentication bearer required
|
|
29626
|
+
// http bearer authentication required
|
|
29627
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29628
|
+
|
|
29063
29629
|
|
|
29064
29630
|
|
|
29631
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
29632
|
+
|
|
29065
29633
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29066
29634
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29067
29635
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29636
|
+
localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventDeleteDTO, localVarRequestOptions, configuration)
|
|
29068
29637
|
|
|
29069
29638
|
return {
|
|
29070
29639
|
url: toPathString(localVarUrlObj),
|
|
@@ -29073,26 +29642,14 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29073
29642
|
},
|
|
29074
29643
|
/**
|
|
29075
29644
|
*
|
|
29076
|
-
* @param {
|
|
29077
|
-
* @param {number} page
|
|
29078
|
-
* @param {number} pageSize
|
|
29079
|
-
* @param {string} [search]
|
|
29080
|
-
* @param {string} [venue]
|
|
29081
|
-
* @param {number} [lat]
|
|
29082
|
-
* @param {number} [lng]
|
|
29083
|
-
* @param {number} [distance]
|
|
29645
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
29084
29646
|
* @param {*} [options] Override http request option.
|
|
29085
29647
|
* @throws {RequiredError}
|
|
29086
29648
|
*/
|
|
29087
|
-
|
|
29088
|
-
// verify required parameter '
|
|
29089
|
-
assertParamExists('
|
|
29090
|
-
|
|
29091
|
-
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'page', page)
|
|
29092
|
-
// verify required parameter 'pageSize' is not null or undefined
|
|
29093
|
-
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'pageSize', pageSize)
|
|
29094
|
-
const localVarPath = `/v1/rsvp/v2/events/business/{businessId}`
|
|
29095
|
-
.replace(`{${"businessId"}}`, encodeURIComponent(String(businessId)));
|
|
29649
|
+
rSVPV2ControllerDeleteRSVPFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29650
|
+
// verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
|
|
29651
|
+
assertParamExists('rSVPV2ControllerDeleteRSVPFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
|
|
29652
|
+
const localVarPath = `/v1/rsvp/v2/event/unfavorite`;
|
|
29096
29653
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29097
29654
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29098
29655
|
let baseOptions;
|
|
@@ -29100,43 +29657,22 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29100
29657
|
baseOptions = configuration.baseOptions;
|
|
29101
29658
|
}
|
|
29102
29659
|
|
|
29103
|
-
const localVarRequestOptions = { method: '
|
|
29660
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
29104
29661
|
const localVarHeaderParameter = {} as any;
|
|
29105
29662
|
const localVarQueryParameter = {} as any;
|
|
29106
29663
|
|
|
29107
|
-
|
|
29108
|
-
|
|
29109
|
-
|
|
29110
|
-
|
|
29111
|
-
if (pageSize !== undefined) {
|
|
29112
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
29113
|
-
}
|
|
29114
|
-
|
|
29115
|
-
if (search !== undefined) {
|
|
29116
|
-
localVarQueryParameter['search'] = search;
|
|
29117
|
-
}
|
|
29118
|
-
|
|
29119
|
-
if (venue !== undefined) {
|
|
29120
|
-
localVarQueryParameter['venue'] = venue;
|
|
29121
|
-
}
|
|
29122
|
-
|
|
29123
|
-
if (lat !== undefined) {
|
|
29124
|
-
localVarQueryParameter['lat'] = lat;
|
|
29125
|
-
}
|
|
29126
|
-
|
|
29127
|
-
if (lng !== undefined) {
|
|
29128
|
-
localVarQueryParameter['lng'] = lng;
|
|
29129
|
-
}
|
|
29130
|
-
|
|
29131
|
-
if (distance !== undefined) {
|
|
29132
|
-
localVarQueryParameter['distance'] = distance;
|
|
29133
|
-
}
|
|
29664
|
+
// authentication bearer required
|
|
29665
|
+
// http bearer authentication required
|
|
29666
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29134
29667
|
|
|
29135
29668
|
|
|
29136
29669
|
|
|
29670
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
29671
|
+
|
|
29137
29672
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29138
29673
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29139
29674
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29675
|
+
localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
|
|
29140
29676
|
|
|
29141
29677
|
return {
|
|
29142
29678
|
url: toPathString(localVarUrlObj),
|
|
@@ -29145,26 +29681,15 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29145
29681
|
},
|
|
29146
29682
|
/**
|
|
29147
29683
|
*
|
|
29148
|
-
* @param {string}
|
|
29149
|
-
* @param {number} page
|
|
29150
|
-
* @param {number} pageSize
|
|
29151
|
-
* @param {string} [search]
|
|
29152
|
-
* @param {string} [venue]
|
|
29153
|
-
* @param {number} [lat]
|
|
29154
|
-
* @param {number} [lng]
|
|
29155
|
-
* @param {number} [distance]
|
|
29684
|
+
* @param {string} id
|
|
29156
29685
|
* @param {*} [options] Override http request option.
|
|
29157
29686
|
* @throws {RequiredError}
|
|
29158
29687
|
*/
|
|
29159
|
-
|
|
29160
|
-
// verify required parameter '
|
|
29161
|
-
assertParamExists('
|
|
29162
|
-
|
|
29163
|
-
|
|
29164
|
-
// verify required parameter 'pageSize' is not null or undefined
|
|
29165
|
-
assertParamExists('rSVPV2ControllerGetEventsByVenue', 'pageSize', pageSize)
|
|
29166
|
-
const localVarPath = `/v1/rsvp/v2/events/venue/{venueId}`
|
|
29167
|
-
.replace(`{${"venueId"}}`, encodeURIComponent(String(venueId)));
|
|
29688
|
+
rSVPV2ControllerFavoriteRSVPEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29689
|
+
// verify required parameter 'id' is not null or undefined
|
|
29690
|
+
assertParamExists('rSVPV2ControllerFavoriteRSVPEventById', 'id', id)
|
|
29691
|
+
const localVarPath = `/v1/rsvp/v2/favoriteId/{id}`
|
|
29692
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29168
29693
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29169
29694
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29170
29695
|
let baseOptions;
|
|
@@ -29176,33 +29701,9 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29176
29701
|
const localVarHeaderParameter = {} as any;
|
|
29177
29702
|
const localVarQueryParameter = {} as any;
|
|
29178
29703
|
|
|
29179
|
-
|
|
29180
|
-
|
|
29181
|
-
|
|
29182
|
-
|
|
29183
|
-
if (pageSize !== undefined) {
|
|
29184
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
29185
|
-
}
|
|
29186
|
-
|
|
29187
|
-
if (search !== undefined) {
|
|
29188
|
-
localVarQueryParameter['search'] = search;
|
|
29189
|
-
}
|
|
29190
|
-
|
|
29191
|
-
if (venue !== undefined) {
|
|
29192
|
-
localVarQueryParameter['venue'] = venue;
|
|
29193
|
-
}
|
|
29194
|
-
|
|
29195
|
-
if (lat !== undefined) {
|
|
29196
|
-
localVarQueryParameter['lat'] = lat;
|
|
29197
|
-
}
|
|
29198
|
-
|
|
29199
|
-
if (lng !== undefined) {
|
|
29200
|
-
localVarQueryParameter['lng'] = lng;
|
|
29201
|
-
}
|
|
29202
|
-
|
|
29203
|
-
if (distance !== undefined) {
|
|
29204
|
-
localVarQueryParameter['distance'] = distance;
|
|
29205
|
-
}
|
|
29704
|
+
// authentication bearer required
|
|
29705
|
+
// http bearer authentication required
|
|
29706
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29206
29707
|
|
|
29207
29708
|
|
|
29208
29709
|
|
|
@@ -29219,20 +29720,17 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29219
29720
|
*
|
|
29220
29721
|
* @param {number} page
|
|
29221
29722
|
* @param {number} pageSize
|
|
29723
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
29222
29724
|
* @param {string} [search]
|
|
29223
|
-
* @param {string} [venue]
|
|
29224
|
-
* @param {number} [lat]
|
|
29225
|
-
* @param {number} [lng]
|
|
29226
|
-
* @param {number} [distance]
|
|
29227
29725
|
* @param {*} [options] Override http request option.
|
|
29228
29726
|
* @throws {RequiredError}
|
|
29229
29727
|
*/
|
|
29230
|
-
|
|
29728
|
+
rSVPV2ControllerGetAssociatedEvents: async (page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29231
29729
|
// verify required parameter 'page' is not null or undefined
|
|
29232
|
-
assertParamExists('
|
|
29730
|
+
assertParamExists('rSVPV2ControllerGetAssociatedEvents', 'page', page)
|
|
29233
29731
|
// verify required parameter 'pageSize' is not null or undefined
|
|
29234
|
-
assertParamExists('
|
|
29235
|
-
const localVarPath = `/v1/rsvp/v2/
|
|
29732
|
+
assertParamExists('rSVPV2ControllerGetAssociatedEvents', 'pageSize', pageSize)
|
|
29733
|
+
const localVarPath = `/v1/rsvp/v2/associated-events`;
|
|
29236
29734
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29237
29735
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29238
29736
|
let baseOptions;
|
|
@@ -29256,24 +29754,12 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29256
29754
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
29257
29755
|
}
|
|
29258
29756
|
|
|
29259
|
-
if (
|
|
29260
|
-
localVarQueryParameter['
|
|
29261
|
-
}
|
|
29262
|
-
|
|
29263
|
-
if (venue !== undefined) {
|
|
29264
|
-
localVarQueryParameter['venue'] = venue;
|
|
29265
|
-
}
|
|
29266
|
-
|
|
29267
|
-
if (lat !== undefined) {
|
|
29268
|
-
localVarQueryParameter['lat'] = lat;
|
|
29269
|
-
}
|
|
29270
|
-
|
|
29271
|
-
if (lng !== undefined) {
|
|
29272
|
-
localVarQueryParameter['lng'] = lng;
|
|
29757
|
+
if (filter !== undefined) {
|
|
29758
|
+
localVarQueryParameter['filter'] = filter;
|
|
29273
29759
|
}
|
|
29274
29760
|
|
|
29275
|
-
if (
|
|
29276
|
-
localVarQueryParameter['
|
|
29761
|
+
if (search !== undefined) {
|
|
29762
|
+
localVarQueryParameter['search'] = search;
|
|
29277
29763
|
}
|
|
29278
29764
|
|
|
29279
29765
|
|
|
@@ -29289,22 +29775,11 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29289
29775
|
},
|
|
29290
29776
|
/**
|
|
29291
29777
|
*
|
|
29292
|
-
* @param {number} page
|
|
29293
|
-
* @param {number} pageSize
|
|
29294
|
-
* @param {string} [search]
|
|
29295
|
-
* @param {string} [venue]
|
|
29296
|
-
* @param {number} [lat]
|
|
29297
|
-
* @param {number} [lng]
|
|
29298
|
-
* @param {number} [distance]
|
|
29299
29778
|
* @param {*} [options] Override http request option.
|
|
29300
29779
|
* @throws {RequiredError}
|
|
29301
29780
|
*/
|
|
29302
|
-
|
|
29303
|
-
|
|
29304
|
-
assertParamExists('rSVPV2ControllerGetMyEvents', 'page', page)
|
|
29305
|
-
// verify required parameter 'pageSize' is not null or undefined
|
|
29306
|
-
assertParamExists('rSVPV2ControllerGetMyEvents', 'pageSize', pageSize)
|
|
29307
|
-
const localVarPath = `/v1/rsvp/v2/my/events`;
|
|
29781
|
+
rSVPV2ControllerGetAssociatedEventsCount: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29782
|
+
const localVarPath = `/v1/rsvp/v2/associated-events/count`;
|
|
29308
29783
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29309
29784
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29310
29785
|
let baseOptions;
|
|
@@ -29320,15 +29795,498 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29320
29795
|
// http bearer authentication required
|
|
29321
29796
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29322
29797
|
|
|
29323
|
-
if (page !== undefined) {
|
|
29324
|
-
localVarQueryParameter['page'] = page;
|
|
29325
|
-
}
|
|
29326
29798
|
|
|
29327
|
-
|
|
29328
|
-
|
|
29329
|
-
}
|
|
29799
|
+
|
|
29800
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29801
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29802
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29330
29803
|
|
|
29331
|
-
|
|
29804
|
+
return {
|
|
29805
|
+
url: toPathString(localVarUrlObj),
|
|
29806
|
+
options: localVarRequestOptions,
|
|
29807
|
+
};
|
|
29808
|
+
},
|
|
29809
|
+
/**
|
|
29810
|
+
*
|
|
29811
|
+
* @param {string} id
|
|
29812
|
+
* @param {number} [page]
|
|
29813
|
+
* @param {number} [pageSize]
|
|
29814
|
+
* @param {boolean} [isInvited]
|
|
29815
|
+
* @param {*} [options] Override http request option.
|
|
29816
|
+
* @throws {RequiredError}
|
|
29817
|
+
*/
|
|
29818
|
+
rSVPV2ControllerGetAttendees: async (id: string, page?: number, pageSize?: number, isInvited?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29819
|
+
// verify required parameter 'id' is not null or undefined
|
|
29820
|
+
assertParamExists('rSVPV2ControllerGetAttendees', 'id', id)
|
|
29821
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/attendees`
|
|
29822
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29823
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29824
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29825
|
+
let baseOptions;
|
|
29826
|
+
if (configuration) {
|
|
29827
|
+
baseOptions = configuration.baseOptions;
|
|
29828
|
+
}
|
|
29829
|
+
|
|
29830
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29831
|
+
const localVarHeaderParameter = {} as any;
|
|
29832
|
+
const localVarQueryParameter = {} as any;
|
|
29833
|
+
|
|
29834
|
+
if (page !== undefined) {
|
|
29835
|
+
localVarQueryParameter['page'] = page;
|
|
29836
|
+
}
|
|
29837
|
+
|
|
29838
|
+
if (pageSize !== undefined) {
|
|
29839
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29840
|
+
}
|
|
29841
|
+
|
|
29842
|
+
if (isInvited !== undefined) {
|
|
29843
|
+
localVarQueryParameter['isInvited'] = isInvited;
|
|
29844
|
+
}
|
|
29845
|
+
|
|
29846
|
+
|
|
29847
|
+
|
|
29848
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29849
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29850
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29851
|
+
|
|
29852
|
+
return {
|
|
29853
|
+
url: toPathString(localVarUrlObj),
|
|
29854
|
+
options: localVarRequestOptions,
|
|
29855
|
+
};
|
|
29856
|
+
},
|
|
29857
|
+
/**
|
|
29858
|
+
*
|
|
29859
|
+
* @param {string} id
|
|
29860
|
+
* @param {number} [page]
|
|
29861
|
+
* @param {number} [pageSize]
|
|
29862
|
+
* @param {*} [options] Override http request option.
|
|
29863
|
+
* @throws {RequiredError}
|
|
29864
|
+
*/
|
|
29865
|
+
rSVPV2ControllerGetBlasts: async (id: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29866
|
+
// verify required parameter 'id' is not null or undefined
|
|
29867
|
+
assertParamExists('rSVPV2ControllerGetBlasts', 'id', id)
|
|
29868
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/blasts`
|
|
29869
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29870
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29871
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29872
|
+
let baseOptions;
|
|
29873
|
+
if (configuration) {
|
|
29874
|
+
baseOptions = configuration.baseOptions;
|
|
29875
|
+
}
|
|
29876
|
+
|
|
29877
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29878
|
+
const localVarHeaderParameter = {} as any;
|
|
29879
|
+
const localVarQueryParameter = {} as any;
|
|
29880
|
+
|
|
29881
|
+
// authentication bearer required
|
|
29882
|
+
// http bearer authentication required
|
|
29883
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29884
|
+
|
|
29885
|
+
if (page !== undefined) {
|
|
29886
|
+
localVarQueryParameter['page'] = page;
|
|
29887
|
+
}
|
|
29888
|
+
|
|
29889
|
+
if (pageSize !== undefined) {
|
|
29890
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29891
|
+
}
|
|
29892
|
+
|
|
29893
|
+
|
|
29894
|
+
|
|
29895
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29896
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29897
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29898
|
+
|
|
29899
|
+
return {
|
|
29900
|
+
url: toPathString(localVarUrlObj),
|
|
29901
|
+
options: localVarRequestOptions,
|
|
29902
|
+
};
|
|
29903
|
+
},
|
|
29904
|
+
/**
|
|
29905
|
+
*
|
|
29906
|
+
* @param {number} page
|
|
29907
|
+
* @param {number} pageSize
|
|
29908
|
+
* @param {*} [options] Override http request option.
|
|
29909
|
+
* @throws {RequiredError}
|
|
29910
|
+
*/
|
|
29911
|
+
rSVPV2ControllerGetDashboardRequests: async (page: number, pageSize: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29912
|
+
// verify required parameter 'page' is not null or undefined
|
|
29913
|
+
assertParamExists('rSVPV2ControllerGetDashboardRequests', 'page', page)
|
|
29914
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
29915
|
+
assertParamExists('rSVPV2ControllerGetDashboardRequests', 'pageSize', pageSize)
|
|
29916
|
+
const localVarPath = `/v1/rsvp/v2/dashboard/approval-requests`;
|
|
29917
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29918
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29919
|
+
let baseOptions;
|
|
29920
|
+
if (configuration) {
|
|
29921
|
+
baseOptions = configuration.baseOptions;
|
|
29922
|
+
}
|
|
29923
|
+
|
|
29924
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29925
|
+
const localVarHeaderParameter = {} as any;
|
|
29926
|
+
const localVarQueryParameter = {} as any;
|
|
29927
|
+
|
|
29928
|
+
// authentication bearer required
|
|
29929
|
+
// http bearer authentication required
|
|
29930
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29931
|
+
|
|
29932
|
+
if (page !== undefined) {
|
|
29933
|
+
localVarQueryParameter['page'] = page;
|
|
29934
|
+
}
|
|
29935
|
+
|
|
29936
|
+
if (pageSize !== undefined) {
|
|
29937
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29938
|
+
}
|
|
29939
|
+
|
|
29940
|
+
|
|
29941
|
+
|
|
29942
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29943
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29944
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29945
|
+
|
|
29946
|
+
return {
|
|
29947
|
+
url: toPathString(localVarUrlObj),
|
|
29948
|
+
options: localVarRequestOptions,
|
|
29949
|
+
};
|
|
29950
|
+
},
|
|
29951
|
+
/**
|
|
29952
|
+
*
|
|
29953
|
+
* @param {string} id
|
|
29954
|
+
* @param {*} [options] Override http request option.
|
|
29955
|
+
* @throws {RequiredError}
|
|
29956
|
+
*/
|
|
29957
|
+
rSVPV2ControllerGetEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29958
|
+
// verify required parameter 'id' is not null or undefined
|
|
29959
|
+
assertParamExists('rSVPV2ControllerGetEventById', 'id', id)
|
|
29960
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}`
|
|
29961
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29962
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29963
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29964
|
+
let baseOptions;
|
|
29965
|
+
if (configuration) {
|
|
29966
|
+
baseOptions = configuration.baseOptions;
|
|
29967
|
+
}
|
|
29968
|
+
|
|
29969
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29970
|
+
const localVarHeaderParameter = {} as any;
|
|
29971
|
+
const localVarQueryParameter = {} as any;
|
|
29972
|
+
|
|
29973
|
+
|
|
29974
|
+
|
|
29975
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29976
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29977
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29978
|
+
|
|
29979
|
+
return {
|
|
29980
|
+
url: toPathString(localVarUrlObj),
|
|
29981
|
+
options: localVarRequestOptions,
|
|
29982
|
+
};
|
|
29983
|
+
},
|
|
29984
|
+
/**
|
|
29985
|
+
*
|
|
29986
|
+
* @param {string} businessId
|
|
29987
|
+
* @param {number} page
|
|
29988
|
+
* @param {number} pageSize
|
|
29989
|
+
* @param {string} [search]
|
|
29990
|
+
* @param {string} [venue]
|
|
29991
|
+
* @param {number} [lat]
|
|
29992
|
+
* @param {number} [lng]
|
|
29993
|
+
* @param {number} [distance]
|
|
29994
|
+
* @param {*} [options] Override http request option.
|
|
29995
|
+
* @throws {RequiredError}
|
|
29996
|
+
*/
|
|
29997
|
+
rSVPV2ControllerGetEventsByBusiness: async (businessId: string, page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29998
|
+
// verify required parameter 'businessId' is not null or undefined
|
|
29999
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'businessId', businessId)
|
|
30000
|
+
// verify required parameter 'page' is not null or undefined
|
|
30001
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'page', page)
|
|
30002
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
30003
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'pageSize', pageSize)
|
|
30004
|
+
const localVarPath = `/v1/rsvp/v2/events/business/{businessId}`
|
|
30005
|
+
.replace(`{${"businessId"}}`, encodeURIComponent(String(businessId)));
|
|
30006
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30007
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30008
|
+
let baseOptions;
|
|
30009
|
+
if (configuration) {
|
|
30010
|
+
baseOptions = configuration.baseOptions;
|
|
30011
|
+
}
|
|
30012
|
+
|
|
30013
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30014
|
+
const localVarHeaderParameter = {} as any;
|
|
30015
|
+
const localVarQueryParameter = {} as any;
|
|
30016
|
+
|
|
30017
|
+
if (page !== undefined) {
|
|
30018
|
+
localVarQueryParameter['page'] = page;
|
|
30019
|
+
}
|
|
30020
|
+
|
|
30021
|
+
if (pageSize !== undefined) {
|
|
30022
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30023
|
+
}
|
|
30024
|
+
|
|
30025
|
+
if (search !== undefined) {
|
|
30026
|
+
localVarQueryParameter['search'] = search;
|
|
30027
|
+
}
|
|
30028
|
+
|
|
30029
|
+
if (venue !== undefined) {
|
|
30030
|
+
localVarQueryParameter['venue'] = venue;
|
|
30031
|
+
}
|
|
30032
|
+
|
|
30033
|
+
if (lat !== undefined) {
|
|
30034
|
+
localVarQueryParameter['lat'] = lat;
|
|
30035
|
+
}
|
|
30036
|
+
|
|
30037
|
+
if (lng !== undefined) {
|
|
30038
|
+
localVarQueryParameter['lng'] = lng;
|
|
30039
|
+
}
|
|
30040
|
+
|
|
30041
|
+
if (distance !== undefined) {
|
|
30042
|
+
localVarQueryParameter['distance'] = distance;
|
|
30043
|
+
}
|
|
30044
|
+
|
|
30045
|
+
|
|
30046
|
+
|
|
30047
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30048
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30049
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30050
|
+
|
|
30051
|
+
return {
|
|
30052
|
+
url: toPathString(localVarUrlObj),
|
|
30053
|
+
options: localVarRequestOptions,
|
|
30054
|
+
};
|
|
30055
|
+
},
|
|
30056
|
+
/**
|
|
30057
|
+
*
|
|
30058
|
+
* @param {string} venueId
|
|
30059
|
+
* @param {number} page
|
|
30060
|
+
* @param {number} pageSize
|
|
30061
|
+
* @param {string} [search]
|
|
30062
|
+
* @param {string} [venue]
|
|
30063
|
+
* @param {number} [lat]
|
|
30064
|
+
* @param {number} [lng]
|
|
30065
|
+
* @param {number} [distance]
|
|
30066
|
+
* @param {*} [options] Override http request option.
|
|
30067
|
+
* @throws {RequiredError}
|
|
30068
|
+
*/
|
|
30069
|
+
rSVPV2ControllerGetEventsByVenue: async (venueId: string, page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30070
|
+
// verify required parameter 'venueId' is not null or undefined
|
|
30071
|
+
assertParamExists('rSVPV2ControllerGetEventsByVenue', 'venueId', venueId)
|
|
30072
|
+
// verify required parameter 'page' is not null or undefined
|
|
30073
|
+
assertParamExists('rSVPV2ControllerGetEventsByVenue', 'page', page)
|
|
30074
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
30075
|
+
assertParamExists('rSVPV2ControllerGetEventsByVenue', 'pageSize', pageSize)
|
|
30076
|
+
const localVarPath = `/v1/rsvp/v2/events/venue/{venueId}`
|
|
30077
|
+
.replace(`{${"venueId"}}`, encodeURIComponent(String(venueId)));
|
|
30078
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30079
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30080
|
+
let baseOptions;
|
|
30081
|
+
if (configuration) {
|
|
30082
|
+
baseOptions = configuration.baseOptions;
|
|
30083
|
+
}
|
|
30084
|
+
|
|
30085
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30086
|
+
const localVarHeaderParameter = {} as any;
|
|
30087
|
+
const localVarQueryParameter = {} as any;
|
|
30088
|
+
|
|
30089
|
+
if (page !== undefined) {
|
|
30090
|
+
localVarQueryParameter['page'] = page;
|
|
30091
|
+
}
|
|
30092
|
+
|
|
30093
|
+
if (pageSize !== undefined) {
|
|
30094
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30095
|
+
}
|
|
30096
|
+
|
|
30097
|
+
if (search !== undefined) {
|
|
30098
|
+
localVarQueryParameter['search'] = search;
|
|
30099
|
+
}
|
|
30100
|
+
|
|
30101
|
+
if (venue !== undefined) {
|
|
30102
|
+
localVarQueryParameter['venue'] = venue;
|
|
30103
|
+
}
|
|
30104
|
+
|
|
30105
|
+
if (lat !== undefined) {
|
|
30106
|
+
localVarQueryParameter['lat'] = lat;
|
|
30107
|
+
}
|
|
30108
|
+
|
|
30109
|
+
if (lng !== undefined) {
|
|
30110
|
+
localVarQueryParameter['lng'] = lng;
|
|
30111
|
+
}
|
|
30112
|
+
|
|
30113
|
+
if (distance !== undefined) {
|
|
30114
|
+
localVarQueryParameter['distance'] = distance;
|
|
30115
|
+
}
|
|
30116
|
+
|
|
30117
|
+
|
|
30118
|
+
|
|
30119
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30120
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30121
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30122
|
+
|
|
30123
|
+
return {
|
|
30124
|
+
url: toPathString(localVarUrlObj),
|
|
30125
|
+
options: localVarRequestOptions,
|
|
30126
|
+
};
|
|
30127
|
+
},
|
|
30128
|
+
/**
|
|
30129
|
+
*
|
|
30130
|
+
* @param {number} [page]
|
|
30131
|
+
* @param {number} [pageSize]
|
|
30132
|
+
* @param {string} [search]
|
|
30133
|
+
* @param {*} [options] Override http request option.
|
|
30134
|
+
* @throws {RequiredError}
|
|
30135
|
+
*/
|
|
30136
|
+
rSVPV2ControllerGetFavoriteRSVPEvents: async (page?: number, pageSize?: number, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30137
|
+
const localVarPath = `/v1/rsvp/v2/event/favorites`;
|
|
30138
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30139
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30140
|
+
let baseOptions;
|
|
30141
|
+
if (configuration) {
|
|
30142
|
+
baseOptions = configuration.baseOptions;
|
|
30143
|
+
}
|
|
30144
|
+
|
|
30145
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30146
|
+
const localVarHeaderParameter = {} as any;
|
|
30147
|
+
const localVarQueryParameter = {} as any;
|
|
30148
|
+
|
|
30149
|
+
// authentication bearer required
|
|
30150
|
+
// http bearer authentication required
|
|
30151
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30152
|
+
|
|
30153
|
+
if (page !== undefined) {
|
|
30154
|
+
localVarQueryParameter['page'] = page;
|
|
30155
|
+
}
|
|
30156
|
+
|
|
30157
|
+
if (pageSize !== undefined) {
|
|
30158
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30159
|
+
}
|
|
30160
|
+
|
|
30161
|
+
if (search !== undefined) {
|
|
30162
|
+
localVarQueryParameter['search'] = search;
|
|
30163
|
+
}
|
|
30164
|
+
|
|
30165
|
+
|
|
30166
|
+
|
|
30167
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30168
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30169
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30170
|
+
|
|
30171
|
+
return {
|
|
30172
|
+
url: toPathString(localVarUrlObj),
|
|
30173
|
+
options: localVarRequestOptions,
|
|
30174
|
+
};
|
|
30175
|
+
},
|
|
30176
|
+
/**
|
|
30177
|
+
*
|
|
30178
|
+
* @param {number} page
|
|
30179
|
+
* @param {number} pageSize
|
|
30180
|
+
* @param {string} [search]
|
|
30181
|
+
* @param {string} [venue]
|
|
30182
|
+
* @param {number} [lat]
|
|
30183
|
+
* @param {number} [lng]
|
|
30184
|
+
* @param {number} [distance]
|
|
30185
|
+
* @param {*} [options] Override http request option.
|
|
30186
|
+
* @throws {RequiredError}
|
|
30187
|
+
*/
|
|
30188
|
+
rSVPV2ControllerGetHostEvents: async (page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30189
|
+
// verify required parameter 'page' is not null or undefined
|
|
30190
|
+
assertParamExists('rSVPV2ControllerGetHostEvents', 'page', page)
|
|
30191
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
30192
|
+
assertParamExists('rSVPV2ControllerGetHostEvents', 'pageSize', pageSize)
|
|
30193
|
+
const localVarPath = `/v1/rsvp/v2/host/events`;
|
|
30194
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30195
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30196
|
+
let baseOptions;
|
|
30197
|
+
if (configuration) {
|
|
30198
|
+
baseOptions = configuration.baseOptions;
|
|
30199
|
+
}
|
|
30200
|
+
|
|
30201
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30202
|
+
const localVarHeaderParameter = {} as any;
|
|
30203
|
+
const localVarQueryParameter = {} as any;
|
|
30204
|
+
|
|
30205
|
+
// authentication bearer required
|
|
30206
|
+
// http bearer authentication required
|
|
30207
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30208
|
+
|
|
30209
|
+
if (page !== undefined) {
|
|
30210
|
+
localVarQueryParameter['page'] = page;
|
|
30211
|
+
}
|
|
30212
|
+
|
|
30213
|
+
if (pageSize !== undefined) {
|
|
30214
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30215
|
+
}
|
|
30216
|
+
|
|
30217
|
+
if (search !== undefined) {
|
|
30218
|
+
localVarQueryParameter['search'] = search;
|
|
30219
|
+
}
|
|
30220
|
+
|
|
30221
|
+
if (venue !== undefined) {
|
|
30222
|
+
localVarQueryParameter['venue'] = venue;
|
|
30223
|
+
}
|
|
30224
|
+
|
|
30225
|
+
if (lat !== undefined) {
|
|
30226
|
+
localVarQueryParameter['lat'] = lat;
|
|
30227
|
+
}
|
|
30228
|
+
|
|
30229
|
+
if (lng !== undefined) {
|
|
30230
|
+
localVarQueryParameter['lng'] = lng;
|
|
30231
|
+
}
|
|
30232
|
+
|
|
30233
|
+
if (distance !== undefined) {
|
|
30234
|
+
localVarQueryParameter['distance'] = distance;
|
|
30235
|
+
}
|
|
30236
|
+
|
|
30237
|
+
|
|
30238
|
+
|
|
30239
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30240
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30241
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30242
|
+
|
|
30243
|
+
return {
|
|
30244
|
+
url: toPathString(localVarUrlObj),
|
|
30245
|
+
options: localVarRequestOptions,
|
|
30246
|
+
};
|
|
30247
|
+
},
|
|
30248
|
+
/**
|
|
30249
|
+
*
|
|
30250
|
+
* @param {number} page
|
|
30251
|
+
* @param {number} pageSize
|
|
30252
|
+
* @param {string} [search]
|
|
30253
|
+
* @param {string} [venue]
|
|
30254
|
+
* @param {number} [lat]
|
|
30255
|
+
* @param {number} [lng]
|
|
30256
|
+
* @param {number} [distance]
|
|
30257
|
+
* @param {*} [options] Override http request option.
|
|
30258
|
+
* @throws {RequiredError}
|
|
30259
|
+
*/
|
|
30260
|
+
rSVPV2ControllerGetMyEvents: async (page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30261
|
+
// verify required parameter 'page' is not null or undefined
|
|
30262
|
+
assertParamExists('rSVPV2ControllerGetMyEvents', 'page', page)
|
|
30263
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
30264
|
+
assertParamExists('rSVPV2ControllerGetMyEvents', 'pageSize', pageSize)
|
|
30265
|
+
const localVarPath = `/v1/rsvp/v2/my/events`;
|
|
30266
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30267
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30268
|
+
let baseOptions;
|
|
30269
|
+
if (configuration) {
|
|
30270
|
+
baseOptions = configuration.baseOptions;
|
|
30271
|
+
}
|
|
30272
|
+
|
|
30273
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30274
|
+
const localVarHeaderParameter = {} as any;
|
|
30275
|
+
const localVarQueryParameter = {} as any;
|
|
30276
|
+
|
|
30277
|
+
// authentication bearer required
|
|
30278
|
+
// http bearer authentication required
|
|
30279
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30280
|
+
|
|
30281
|
+
if (page !== undefined) {
|
|
30282
|
+
localVarQueryParameter['page'] = page;
|
|
30283
|
+
}
|
|
30284
|
+
|
|
30285
|
+
if (pageSize !== undefined) {
|
|
30286
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30287
|
+
}
|
|
30288
|
+
|
|
30289
|
+
if (search !== undefined) {
|
|
29332
30290
|
localVarQueryParameter['search'] = search;
|
|
29333
30291
|
}
|
|
29334
30292
|
|
|
@@ -29418,6 +30376,57 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29418
30376
|
|
|
29419
30377
|
|
|
29420
30378
|
|
|
30379
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30380
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30381
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30382
|
+
|
|
30383
|
+
return {
|
|
30384
|
+
url: toPathString(localVarUrlObj),
|
|
30385
|
+
options: localVarRequestOptions,
|
|
30386
|
+
};
|
|
30387
|
+
},
|
|
30388
|
+
/**
|
|
30389
|
+
*
|
|
30390
|
+
* @param {string} id
|
|
30391
|
+
* @param {number} page
|
|
30392
|
+
* @param {number} pageSize
|
|
30393
|
+
* @param {*} [options] Override http request option.
|
|
30394
|
+
* @throws {RequiredError}
|
|
30395
|
+
*/
|
|
30396
|
+
rSVPV2ControllerGetPendingRequests: async (id: string, page: number, pageSize: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30397
|
+
// verify required parameter 'id' is not null or undefined
|
|
30398
|
+
assertParamExists('rSVPV2ControllerGetPendingRequests', 'id', id)
|
|
30399
|
+
// verify required parameter 'page' is not null or undefined
|
|
30400
|
+
assertParamExists('rSVPV2ControllerGetPendingRequests', 'page', page)
|
|
30401
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
30402
|
+
assertParamExists('rSVPV2ControllerGetPendingRequests', 'pageSize', pageSize)
|
|
30403
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/requests/pending`
|
|
30404
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
30405
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30406
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30407
|
+
let baseOptions;
|
|
30408
|
+
if (configuration) {
|
|
30409
|
+
baseOptions = configuration.baseOptions;
|
|
30410
|
+
}
|
|
30411
|
+
|
|
30412
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
30413
|
+
const localVarHeaderParameter = {} as any;
|
|
30414
|
+
const localVarQueryParameter = {} as any;
|
|
30415
|
+
|
|
30416
|
+
// authentication bearer required
|
|
30417
|
+
// http bearer authentication required
|
|
30418
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30419
|
+
|
|
30420
|
+
if (page !== undefined) {
|
|
30421
|
+
localVarQueryParameter['page'] = page;
|
|
30422
|
+
}
|
|
30423
|
+
|
|
30424
|
+
if (pageSize !== undefined) {
|
|
30425
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
30426
|
+
}
|
|
30427
|
+
|
|
30428
|
+
|
|
30429
|
+
|
|
29421
30430
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29422
30431
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29423
30432
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -29548,6 +30557,80 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29548
30557
|
options: localVarRequestOptions,
|
|
29549
30558
|
};
|
|
29550
30559
|
},
|
|
30560
|
+
/**
|
|
30561
|
+
*
|
|
30562
|
+
* @param {string} requestId
|
|
30563
|
+
* @param {*} [options] Override http request option.
|
|
30564
|
+
* @throws {RequiredError}
|
|
30565
|
+
*/
|
|
30566
|
+
rSVPV2ControllerProposeTime: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30567
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
30568
|
+
assertParamExists('rSVPV2ControllerProposeTime', 'requestId', requestId)
|
|
30569
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/propose`
|
|
30570
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
30571
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30572
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30573
|
+
let baseOptions;
|
|
30574
|
+
if (configuration) {
|
|
30575
|
+
baseOptions = configuration.baseOptions;
|
|
30576
|
+
}
|
|
30577
|
+
|
|
30578
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
30579
|
+
const localVarHeaderParameter = {} as any;
|
|
30580
|
+
const localVarQueryParameter = {} as any;
|
|
30581
|
+
|
|
30582
|
+
// authentication bearer required
|
|
30583
|
+
// http bearer authentication required
|
|
30584
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30585
|
+
|
|
30586
|
+
|
|
30587
|
+
|
|
30588
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30589
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30590
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30591
|
+
|
|
30592
|
+
return {
|
|
30593
|
+
url: toPathString(localVarUrlObj),
|
|
30594
|
+
options: localVarRequestOptions,
|
|
30595
|
+
};
|
|
30596
|
+
},
|
|
30597
|
+
/**
|
|
30598
|
+
*
|
|
30599
|
+
* @param {string} requestId
|
|
30600
|
+
* @param {*} [options] Override http request option.
|
|
30601
|
+
* @throws {RequiredError}
|
|
30602
|
+
*/
|
|
30603
|
+
rSVPV2ControllerRejectProposal: async (requestId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30604
|
+
// verify required parameter 'requestId' is not null or undefined
|
|
30605
|
+
assertParamExists('rSVPV2ControllerRejectProposal', 'requestId', requestId)
|
|
30606
|
+
const localVarPath = `/v1/rsvp/v2/requests/{requestId}/reject`
|
|
30607
|
+
.replace(`{${"requestId"}}`, encodeURIComponent(String(requestId)));
|
|
30608
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30609
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30610
|
+
let baseOptions;
|
|
30611
|
+
if (configuration) {
|
|
30612
|
+
baseOptions = configuration.baseOptions;
|
|
30613
|
+
}
|
|
30614
|
+
|
|
30615
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
30616
|
+
const localVarHeaderParameter = {} as any;
|
|
30617
|
+
const localVarQueryParameter = {} as any;
|
|
30618
|
+
|
|
30619
|
+
// authentication bearer required
|
|
30620
|
+
// http bearer authentication required
|
|
30621
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30622
|
+
|
|
30623
|
+
|
|
30624
|
+
|
|
30625
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30626
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30627
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30628
|
+
|
|
30629
|
+
return {
|
|
30630
|
+
url: toPathString(localVarUrlObj),
|
|
30631
|
+
options: localVarRequestOptions,
|
|
30632
|
+
};
|
|
30633
|
+
},
|
|
29551
30634
|
/**
|
|
29552
30635
|
*
|
|
29553
30636
|
* @param {string} id
|
|
@@ -29581,6 +30664,49 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29581
30664
|
options: localVarRequestOptions,
|
|
29582
30665
|
};
|
|
29583
30666
|
},
|
|
30667
|
+
/**
|
|
30668
|
+
*
|
|
30669
|
+
* @param {string} id
|
|
30670
|
+
* @param {JoinRSVPEventDTO} joinRSVPEventDTO
|
|
30671
|
+
* @param {*} [options] Override http request option.
|
|
30672
|
+
* @throws {RequiredError}
|
|
30673
|
+
*/
|
|
30674
|
+
rSVPV2ControllerRequestToJoin: async (id: string, joinRSVPEventDTO: JoinRSVPEventDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30675
|
+
// verify required parameter 'id' is not null or undefined
|
|
30676
|
+
assertParamExists('rSVPV2ControllerRequestToJoin', 'id', id)
|
|
30677
|
+
// verify required parameter 'joinRSVPEventDTO' is not null or undefined
|
|
30678
|
+
assertParamExists('rSVPV2ControllerRequestToJoin', 'joinRSVPEventDTO', joinRSVPEventDTO)
|
|
30679
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/request`
|
|
30680
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
30681
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30682
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30683
|
+
let baseOptions;
|
|
30684
|
+
if (configuration) {
|
|
30685
|
+
baseOptions = configuration.baseOptions;
|
|
30686
|
+
}
|
|
30687
|
+
|
|
30688
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
30689
|
+
const localVarHeaderParameter = {} as any;
|
|
30690
|
+
const localVarQueryParameter = {} as any;
|
|
30691
|
+
|
|
30692
|
+
// authentication bearer required
|
|
30693
|
+
// http bearer authentication required
|
|
30694
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30695
|
+
|
|
30696
|
+
|
|
30697
|
+
|
|
30698
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
30699
|
+
|
|
30700
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30701
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30702
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30703
|
+
localVarRequestOptions.data = serializeDataIfNeeded(joinRSVPEventDTO, localVarRequestOptions, configuration)
|
|
30704
|
+
|
|
30705
|
+
return {
|
|
30706
|
+
url: toPathString(localVarUrlObj),
|
|
30707
|
+
options: localVarRequestOptions,
|
|
30708
|
+
};
|
|
30709
|
+
},
|
|
29584
30710
|
/**
|
|
29585
30711
|
*
|
|
29586
30712
|
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
@@ -29620,6 +30746,49 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29620
30746
|
options: localVarRequestOptions,
|
|
29621
30747
|
};
|
|
29622
30748
|
},
|
|
30749
|
+
/**
|
|
30750
|
+
*
|
|
30751
|
+
* @param {string} id
|
|
30752
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
30753
|
+
* @param {*} [options] Override http request option.
|
|
30754
|
+
* @throws {RequiredError}
|
|
30755
|
+
*/
|
|
30756
|
+
rSVPV2ControllerSendBlast: async (id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30757
|
+
// verify required parameter 'id' is not null or undefined
|
|
30758
|
+
assertParamExists('rSVPV2ControllerSendBlast', 'id', id)
|
|
30759
|
+
// verify required parameter 'createRSVPBlastDTO' is not null or undefined
|
|
30760
|
+
assertParamExists('rSVPV2ControllerSendBlast', 'createRSVPBlastDTO', createRSVPBlastDTO)
|
|
30761
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/blasts`
|
|
30762
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
30763
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30764
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30765
|
+
let baseOptions;
|
|
30766
|
+
if (configuration) {
|
|
30767
|
+
baseOptions = configuration.baseOptions;
|
|
30768
|
+
}
|
|
30769
|
+
|
|
30770
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
30771
|
+
const localVarHeaderParameter = {} as any;
|
|
30772
|
+
const localVarQueryParameter = {} as any;
|
|
30773
|
+
|
|
30774
|
+
// authentication bearer required
|
|
30775
|
+
// http bearer authentication required
|
|
30776
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30777
|
+
|
|
30778
|
+
|
|
30779
|
+
|
|
30780
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
30781
|
+
|
|
30782
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30783
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30784
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30785
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createRSVPBlastDTO, localVarRequestOptions, configuration)
|
|
30786
|
+
|
|
30787
|
+
return {
|
|
30788
|
+
url: toPathString(localVarUrlObj),
|
|
30789
|
+
options: localVarRequestOptions,
|
|
30790
|
+
};
|
|
30791
|
+
},
|
|
29623
30792
|
/**
|
|
29624
30793
|
*
|
|
29625
30794
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -29751,6 +30920,18 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29751
30920
|
export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
29752
30921
|
const localVarAxiosParamCreator = RSVPV2ApiAxiosParamCreator(configuration)
|
|
29753
30922
|
return {
|
|
30923
|
+
/**
|
|
30924
|
+
*
|
|
30925
|
+
* @param {string} requestId
|
|
30926
|
+
* @param {*} [options] Override http request option.
|
|
30927
|
+
* @throws {RequiredError}
|
|
30928
|
+
*/
|
|
30929
|
+
async rSVPV2ControllerAcceptProposal(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30930
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerAcceptProposal(requestId, options);
|
|
30931
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30932
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerAcceptProposal']?.[localVarOperationServerIndex]?.url;
|
|
30933
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30934
|
+
},
|
|
29754
30935
|
/**
|
|
29755
30936
|
*
|
|
29756
30937
|
* @param {string} id
|
|
@@ -29763,6 +30944,30 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29763
30944
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerAddEventCalendar']?.[localVarOperationServerIndex]?.url;
|
|
29764
30945
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29765
30946
|
},
|
|
30947
|
+
/**
|
|
30948
|
+
*
|
|
30949
|
+
* @param {string} requestId
|
|
30950
|
+
* @param {*} [options] Override http request option.
|
|
30951
|
+
* @throws {RequiredError}
|
|
30952
|
+
*/
|
|
30953
|
+
async rSVPV2ControllerApproveRequest(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30954
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerApproveRequest(requestId, options);
|
|
30955
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30956
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerApproveRequest']?.[localVarOperationServerIndex]?.url;
|
|
30957
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30958
|
+
},
|
|
30959
|
+
/**
|
|
30960
|
+
*
|
|
30961
|
+
* @param {string} requestId
|
|
30962
|
+
* @param {*} [options] Override http request option.
|
|
30963
|
+
* @throws {RequiredError}
|
|
30964
|
+
*/
|
|
30965
|
+
async rSVPV2ControllerCancelRequest(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30966
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerCancelRequest(requestId, options);
|
|
30967
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30968
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerCancelRequest']?.[localVarOperationServerIndex]?.url;
|
|
30969
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30970
|
+
},
|
|
29766
30971
|
/**
|
|
29767
30972
|
*
|
|
29768
30973
|
* @param {string} id
|
|
@@ -29800,6 +31005,18 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29800
31005
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerCreateEvent']?.[localVarOperationServerIndex]?.url;
|
|
29801
31006
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29802
31007
|
},
|
|
31008
|
+
/**
|
|
31009
|
+
*
|
|
31010
|
+
* @param {string} requestId
|
|
31011
|
+
* @param {*} [options] Override http request option.
|
|
31012
|
+
* @throws {RequiredError}
|
|
31013
|
+
*/
|
|
31014
|
+
async rSVPV2ControllerDeclineRequest(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31015
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerDeclineRequest(requestId, options);
|
|
31016
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31017
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerDeclineRequest']?.[localVarOperationServerIndex]?.url;
|
|
31018
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31019
|
+
},
|
|
29803
31020
|
/**
|
|
29804
31021
|
*
|
|
29805
31022
|
* @param {string} id
|
|
@@ -29826,26 +31043,67 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29826
31043
|
},
|
|
29827
31044
|
/**
|
|
29828
31045
|
*
|
|
29829
|
-
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
31046
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
31047
|
+
* @param {*} [options] Override http request option.
|
|
31048
|
+
* @throws {RequiredError}
|
|
31049
|
+
*/
|
|
31050
|
+
async rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
|
|
31051
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options);
|
|
31052
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31053
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerDeleteRSVPFavorites']?.[localVarOperationServerIndex]?.url;
|
|
31054
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31055
|
+
},
|
|
31056
|
+
/**
|
|
31057
|
+
*
|
|
31058
|
+
* @param {string} id
|
|
31059
|
+
* @param {*} [options] Override http request option.
|
|
31060
|
+
* @throws {RequiredError}
|
|
31061
|
+
*/
|
|
31062
|
+
async rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteResponsedDTO>> {
|
|
31063
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerFavoriteRSVPEventById(id, options);
|
|
31064
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31065
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerFavoriteRSVPEventById']?.[localVarOperationServerIndex]?.url;
|
|
31066
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31067
|
+
},
|
|
31068
|
+
/**
|
|
31069
|
+
*
|
|
31070
|
+
* @param {number} page
|
|
31071
|
+
* @param {number} pageSize
|
|
31072
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
31073
|
+
* @param {string} [search]
|
|
31074
|
+
* @param {*} [options] Override http request option.
|
|
31075
|
+
* @throws {RequiredError}
|
|
31076
|
+
*/
|
|
31077
|
+
async rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31078
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options);
|
|
31079
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31080
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetAssociatedEvents']?.[localVarOperationServerIndex]?.url;
|
|
31081
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31082
|
+
},
|
|
31083
|
+
/**
|
|
31084
|
+
*
|
|
29830
31085
|
* @param {*} [options] Override http request option.
|
|
29831
31086
|
* @throws {RequiredError}
|
|
29832
31087
|
*/
|
|
29833
|
-
async
|
|
29834
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
31088
|
+
async rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31089
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetAssociatedEventsCount(options);
|
|
29835
31090
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29836
|
-
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.
|
|
31091
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetAssociatedEventsCount']?.[localVarOperationServerIndex]?.url;
|
|
29837
31092
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29838
31093
|
},
|
|
29839
31094
|
/**
|
|
29840
31095
|
*
|
|
29841
31096
|
* @param {string} id
|
|
31097
|
+
* @param {number} [page]
|
|
31098
|
+
* @param {number} [pageSize]
|
|
31099
|
+
* @param {boolean} [isInvited]
|
|
29842
31100
|
* @param {*} [options] Override http request option.
|
|
29843
31101
|
* @throws {RequiredError}
|
|
29844
31102
|
*/
|
|
29845
|
-
async
|
|
29846
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
31103
|
+
async rSVPV2ControllerGetAttendees(id: string, page?: number, pageSize?: number, isInvited?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31104
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options);
|
|
29847
31105
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29848
|
-
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.
|
|
31106
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetAttendees']?.[localVarOperationServerIndex]?.url;
|
|
29849
31107
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29850
31108
|
},
|
|
29851
31109
|
/**
|
|
@@ -29853,14 +31111,26 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29853
31111
|
* @param {string} id
|
|
29854
31112
|
* @param {number} [page]
|
|
29855
31113
|
* @param {number} [pageSize]
|
|
29856
|
-
* @param {boolean} [isInvited]
|
|
29857
31114
|
* @param {*} [options] Override http request option.
|
|
29858
31115
|
* @throws {RequiredError}
|
|
29859
31116
|
*/
|
|
29860
|
-
async
|
|
29861
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
31117
|
+
async rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31118
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetBlasts(id, page, pageSize, options);
|
|
29862
31119
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29863
|
-
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.
|
|
31120
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetBlasts']?.[localVarOperationServerIndex]?.url;
|
|
31121
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31122
|
+
},
|
|
31123
|
+
/**
|
|
31124
|
+
*
|
|
31125
|
+
* @param {number} page
|
|
31126
|
+
* @param {number} pageSize
|
|
31127
|
+
* @param {*} [options] Override http request option.
|
|
31128
|
+
* @throws {RequiredError}
|
|
31129
|
+
*/
|
|
31130
|
+
async rSVPV2ControllerGetDashboardRequests(page: number, pageSize: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31131
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetDashboardRequests(page, pageSize, options);
|
|
31132
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31133
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetDashboardRequests']?.[localVarOperationServerIndex]?.url;
|
|
29864
31134
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29865
31135
|
},
|
|
29866
31136
|
/**
|
|
@@ -29913,6 +31183,20 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29913
31183
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetEventsByVenue']?.[localVarOperationServerIndex]?.url;
|
|
29914
31184
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29915
31185
|
},
|
|
31186
|
+
/**
|
|
31187
|
+
*
|
|
31188
|
+
* @param {number} [page]
|
|
31189
|
+
* @param {number} [pageSize]
|
|
31190
|
+
* @param {string} [search]
|
|
31191
|
+
* @param {*} [options] Override http request option.
|
|
31192
|
+
* @throws {RequiredError}
|
|
31193
|
+
*/
|
|
31194
|
+
async rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31195
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options);
|
|
31196
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31197
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetFavoriteRSVPEvents']?.[localVarOperationServerIndex]?.url;
|
|
31198
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31199
|
+
},
|
|
29916
31200
|
/**
|
|
29917
31201
|
*
|
|
29918
31202
|
* @param {number} page
|
|
@@ -29967,6 +31251,20 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29967
31251
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetNearbyPublicEvents']?.[localVarOperationServerIndex]?.url;
|
|
29968
31252
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29969
31253
|
},
|
|
31254
|
+
/**
|
|
31255
|
+
*
|
|
31256
|
+
* @param {string} id
|
|
31257
|
+
* @param {number} page
|
|
31258
|
+
* @param {number} pageSize
|
|
31259
|
+
* @param {*} [options] Override http request option.
|
|
31260
|
+
* @throws {RequiredError}
|
|
31261
|
+
*/
|
|
31262
|
+
async rSVPV2ControllerGetPendingRequests(id: string, page: number, pageSize: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31263
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetPendingRequests(id, page, pageSize, options);
|
|
31264
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31265
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetPendingRequests']?.[localVarOperationServerIndex]?.url;
|
|
31266
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31267
|
+
},
|
|
29970
31268
|
/**
|
|
29971
31269
|
*
|
|
29972
31270
|
* @param {RSVPEventFindV2DTO} rSVPEventFindV2DTO
|
|
@@ -29986,7 +31284,7 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29986
31284
|
* @param {*} [options] Override http request option.
|
|
29987
31285
|
* @throws {RequiredError}
|
|
29988
31286
|
*/
|
|
29989
|
-
async rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
31287
|
+
async rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteRSVPResponseDTO>> {
|
|
29990
31288
|
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerInvite(id, inviteRSVPArrayDTO, options);
|
|
29991
31289
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29992
31290
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerInvite']?.[localVarOperationServerIndex]?.url;
|
|
@@ -30005,6 +31303,30 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
30005
31303
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerJoinEvent']?.[localVarOperationServerIndex]?.url;
|
|
30006
31304
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30007
31305
|
},
|
|
31306
|
+
/**
|
|
31307
|
+
*
|
|
31308
|
+
* @param {string} requestId
|
|
31309
|
+
* @param {*} [options] Override http request option.
|
|
31310
|
+
* @throws {RequiredError}
|
|
31311
|
+
*/
|
|
31312
|
+
async rSVPV2ControllerProposeTime(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31313
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerProposeTime(requestId, options);
|
|
31314
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31315
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerProposeTime']?.[localVarOperationServerIndex]?.url;
|
|
31316
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31317
|
+
},
|
|
31318
|
+
/**
|
|
31319
|
+
*
|
|
31320
|
+
* @param {string} requestId
|
|
31321
|
+
* @param {*} [options] Override http request option.
|
|
31322
|
+
* @throws {RequiredError}
|
|
31323
|
+
*/
|
|
31324
|
+
async rSVPV2ControllerRejectProposal(requestId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31325
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerRejectProposal(requestId, options);
|
|
31326
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31327
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerRejectProposal']?.[localVarOperationServerIndex]?.url;
|
|
31328
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31329
|
+
},
|
|
30008
31330
|
/**
|
|
30009
31331
|
*
|
|
30010
31332
|
* @param {string} id
|
|
@@ -30017,6 +31339,19 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
30017
31339
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerReminderEventCalendar']?.[localVarOperationServerIndex]?.url;
|
|
30018
31340
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30019
31341
|
},
|
|
31342
|
+
/**
|
|
31343
|
+
*
|
|
31344
|
+
* @param {string} id
|
|
31345
|
+
* @param {JoinRSVPEventDTO} joinRSVPEventDTO
|
|
31346
|
+
* @param {*} [options] Override http request option.
|
|
31347
|
+
* @throws {RequiredError}
|
|
31348
|
+
*/
|
|
31349
|
+
async rSVPV2ControllerRequestToJoin(id: string, joinRSVPEventDTO: JoinRSVPEventDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31350
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerRequestToJoin(id, joinRSVPEventDTO, options);
|
|
31351
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31352
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerRequestToJoin']?.[localVarOperationServerIndex]?.url;
|
|
31353
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31354
|
+
},
|
|
30020
31355
|
/**
|
|
30021
31356
|
*
|
|
30022
31357
|
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
@@ -30029,6 +31364,19 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
30029
31364
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerRsvpFavorites']?.[localVarOperationServerIndex]?.url;
|
|
30030
31365
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30031
31366
|
},
|
|
31367
|
+
/**
|
|
31368
|
+
*
|
|
31369
|
+
* @param {string} id
|
|
31370
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
31371
|
+
* @param {*} [options] Override http request option.
|
|
31372
|
+
* @throws {RequiredError}
|
|
31373
|
+
*/
|
|
31374
|
+
async rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31375
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options);
|
|
31376
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31377
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerSendBlast']?.[localVarOperationServerIndex]?.url;
|
|
31378
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31379
|
+
},
|
|
30032
31380
|
/**
|
|
30033
31381
|
*
|
|
30034
31382
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30077,6 +31425,15 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
30077
31425
|
export const RSVPV2ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
30078
31426
|
const localVarFp = RSVPV2ApiFp(configuration)
|
|
30079
31427
|
return {
|
|
31428
|
+
/**
|
|
31429
|
+
*
|
|
31430
|
+
* @param {string} requestId
|
|
31431
|
+
* @param {*} [options] Override http request option.
|
|
31432
|
+
* @throws {RequiredError}
|
|
31433
|
+
*/
|
|
31434
|
+
rSVPV2ControllerAcceptProposal(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31435
|
+
return localVarFp.rSVPV2ControllerAcceptProposal(requestId, options).then((request) => request(axios, basePath));
|
|
31436
|
+
},
|
|
30080
31437
|
/**
|
|
30081
31438
|
*
|
|
30082
31439
|
* @param {string} id
|
|
@@ -30086,6 +31443,24 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30086
31443
|
rSVPV2ControllerAddEventCalendar(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30087
31444
|
return localVarFp.rSVPV2ControllerAddEventCalendar(id, options).then((request) => request(axios, basePath));
|
|
30088
31445
|
},
|
|
31446
|
+
/**
|
|
31447
|
+
*
|
|
31448
|
+
* @param {string} requestId
|
|
31449
|
+
* @param {*} [options] Override http request option.
|
|
31450
|
+
* @throws {RequiredError}
|
|
31451
|
+
*/
|
|
31452
|
+
rSVPV2ControllerApproveRequest(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31453
|
+
return localVarFp.rSVPV2ControllerApproveRequest(requestId, options).then((request) => request(axios, basePath));
|
|
31454
|
+
},
|
|
31455
|
+
/**
|
|
31456
|
+
*
|
|
31457
|
+
* @param {string} requestId
|
|
31458
|
+
* @param {*} [options] Override http request option.
|
|
31459
|
+
* @throws {RequiredError}
|
|
31460
|
+
*/
|
|
31461
|
+
rSVPV2ControllerCancelRequest(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31462
|
+
return localVarFp.rSVPV2ControllerCancelRequest(requestId, options).then((request) => request(axios, basePath));
|
|
31463
|
+
},
|
|
30089
31464
|
/**
|
|
30090
31465
|
*
|
|
30091
31466
|
* @param {string} id
|
|
@@ -30114,6 +31489,15 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30114
31489
|
rSVPV2ControllerCreateEvent(createRSVPEventV2DTO: CreateRSVPEventV2DTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30115
31490
|
return localVarFp.rSVPV2ControllerCreateEvent(createRSVPEventV2DTO, options).then((request) => request(axios, basePath));
|
|
30116
31491
|
},
|
|
31492
|
+
/**
|
|
31493
|
+
*
|
|
31494
|
+
* @param {string} requestId
|
|
31495
|
+
* @param {*} [options] Override http request option.
|
|
31496
|
+
* @throws {RequiredError}
|
|
31497
|
+
*/
|
|
31498
|
+
rSVPV2ControllerDeclineRequest(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31499
|
+
return localVarFp.rSVPV2ControllerDeclineRequest(requestId, options).then((request) => request(axios, basePath));
|
|
31500
|
+
},
|
|
30117
31501
|
/**
|
|
30118
31502
|
*
|
|
30119
31503
|
* @param {string} id
|
|
@@ -30150,6 +31534,26 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30150
31534
|
rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteResponsedDTO> {
|
|
30151
31535
|
return localVarFp.rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(axios, basePath));
|
|
30152
31536
|
},
|
|
31537
|
+
/**
|
|
31538
|
+
*
|
|
31539
|
+
* @param {number} page
|
|
31540
|
+
* @param {number} pageSize
|
|
31541
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
31542
|
+
* @param {string} [search]
|
|
31543
|
+
* @param {*} [options] Override http request option.
|
|
31544
|
+
* @throws {RequiredError}
|
|
31545
|
+
*/
|
|
31546
|
+
rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31547
|
+
return localVarFp.rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options).then((request) => request(axios, basePath));
|
|
31548
|
+
},
|
|
31549
|
+
/**
|
|
31550
|
+
*
|
|
31551
|
+
* @param {*} [options] Override http request option.
|
|
31552
|
+
* @throws {RequiredError}
|
|
31553
|
+
*/
|
|
31554
|
+
rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31555
|
+
return localVarFp.rSVPV2ControllerGetAssociatedEventsCount(options).then((request) => request(axios, basePath));
|
|
31556
|
+
},
|
|
30153
31557
|
/**
|
|
30154
31558
|
*
|
|
30155
31559
|
* @param {string} id
|
|
@@ -30162,6 +31566,27 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30162
31566
|
rSVPV2ControllerGetAttendees(id: string, page?: number, pageSize?: number, isInvited?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30163
31567
|
return localVarFp.rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options).then((request) => request(axios, basePath));
|
|
30164
31568
|
},
|
|
31569
|
+
/**
|
|
31570
|
+
*
|
|
31571
|
+
* @param {string} id
|
|
31572
|
+
* @param {number} [page]
|
|
31573
|
+
* @param {number} [pageSize]
|
|
31574
|
+
* @param {*} [options] Override http request option.
|
|
31575
|
+
* @throws {RequiredError}
|
|
31576
|
+
*/
|
|
31577
|
+
rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31578
|
+
return localVarFp.rSVPV2ControllerGetBlasts(id, page, pageSize, options).then((request) => request(axios, basePath));
|
|
31579
|
+
},
|
|
31580
|
+
/**
|
|
31581
|
+
*
|
|
31582
|
+
* @param {number} page
|
|
31583
|
+
* @param {number} pageSize
|
|
31584
|
+
* @param {*} [options] Override http request option.
|
|
31585
|
+
* @throws {RequiredError}
|
|
31586
|
+
*/
|
|
31587
|
+
rSVPV2ControllerGetDashboardRequests(page: number, pageSize: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31588
|
+
return localVarFp.rSVPV2ControllerGetDashboardRequests(page, pageSize, options).then((request) => request(axios, basePath));
|
|
31589
|
+
},
|
|
30165
31590
|
/**
|
|
30166
31591
|
*
|
|
30167
31592
|
* @param {string} id
|
|
@@ -30203,6 +31628,17 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30203
31628
|
rSVPV2ControllerGetEventsByVenue(venueId: string, page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30204
31629
|
return localVarFp.rSVPV2ControllerGetEventsByVenue(venueId, page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(axios, basePath));
|
|
30205
31630
|
},
|
|
31631
|
+
/**
|
|
31632
|
+
*
|
|
31633
|
+
* @param {number} [page]
|
|
31634
|
+
* @param {number} [pageSize]
|
|
31635
|
+
* @param {string} [search]
|
|
31636
|
+
* @param {*} [options] Override http request option.
|
|
31637
|
+
* @throws {RequiredError}
|
|
31638
|
+
*/
|
|
31639
|
+
rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31640
|
+
return localVarFp.rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options).then((request) => request(axios, basePath));
|
|
31641
|
+
},
|
|
30206
31642
|
/**
|
|
30207
31643
|
*
|
|
30208
31644
|
* @param {number} page
|
|
@@ -30248,6 +31684,17 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30248
31684
|
rSVPV2ControllerGetNearbyPublicEvents(page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30249
31685
|
return localVarFp.rSVPV2ControllerGetNearbyPublicEvents(page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(axios, basePath));
|
|
30250
31686
|
},
|
|
31687
|
+
/**
|
|
31688
|
+
*
|
|
31689
|
+
* @param {string} id
|
|
31690
|
+
* @param {number} page
|
|
31691
|
+
* @param {number} pageSize
|
|
31692
|
+
* @param {*} [options] Override http request option.
|
|
31693
|
+
* @throws {RequiredError}
|
|
31694
|
+
*/
|
|
31695
|
+
rSVPV2ControllerGetPendingRequests(id: string, page: number, pageSize: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31696
|
+
return localVarFp.rSVPV2ControllerGetPendingRequests(id, page, pageSize, options).then((request) => request(axios, basePath));
|
|
31697
|
+
},
|
|
30251
31698
|
/**
|
|
30252
31699
|
*
|
|
30253
31700
|
* @param {RSVPEventFindV2DTO} rSVPEventFindV2DTO
|
|
@@ -30264,7 +31711,7 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30264
31711
|
* @param {*} [options] Override http request option.
|
|
30265
31712
|
* @throws {RequiredError}
|
|
30266
31713
|
*/
|
|
30267
|
-
rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31714
|
+
rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteRSVPResponseDTO> {
|
|
30268
31715
|
return localVarFp.rSVPV2ControllerInvite(id, inviteRSVPArrayDTO, options).then((request) => request(axios, basePath));
|
|
30269
31716
|
},
|
|
30270
31717
|
/**
|
|
@@ -30277,6 +31724,24 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30277
31724
|
rSVPV2ControllerJoinEvent(id: string, joinRSVPEventDTO: JoinRSVPEventDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30278
31725
|
return localVarFp.rSVPV2ControllerJoinEvent(id, joinRSVPEventDTO, options).then((request) => request(axios, basePath));
|
|
30279
31726
|
},
|
|
31727
|
+
/**
|
|
31728
|
+
*
|
|
31729
|
+
* @param {string} requestId
|
|
31730
|
+
* @param {*} [options] Override http request option.
|
|
31731
|
+
* @throws {RequiredError}
|
|
31732
|
+
*/
|
|
31733
|
+
rSVPV2ControllerProposeTime(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31734
|
+
return localVarFp.rSVPV2ControllerProposeTime(requestId, options).then((request) => request(axios, basePath));
|
|
31735
|
+
},
|
|
31736
|
+
/**
|
|
31737
|
+
*
|
|
31738
|
+
* @param {string} requestId
|
|
31739
|
+
* @param {*} [options] Override http request option.
|
|
31740
|
+
* @throws {RequiredError}
|
|
31741
|
+
*/
|
|
31742
|
+
rSVPV2ControllerRejectProposal(requestId: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31743
|
+
return localVarFp.rSVPV2ControllerRejectProposal(requestId, options).then((request) => request(axios, basePath));
|
|
31744
|
+
},
|
|
30280
31745
|
/**
|
|
30281
31746
|
*
|
|
30282
31747
|
* @param {string} id
|
|
@@ -30286,6 +31751,16 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30286
31751
|
rSVPV2ControllerReminderEventCalendar(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30287
31752
|
return localVarFp.rSVPV2ControllerReminderEventCalendar(id, options).then((request) => request(axios, basePath));
|
|
30288
31753
|
},
|
|
31754
|
+
/**
|
|
31755
|
+
*
|
|
31756
|
+
* @param {string} id
|
|
31757
|
+
* @param {JoinRSVPEventDTO} joinRSVPEventDTO
|
|
31758
|
+
* @param {*} [options] Override http request option.
|
|
31759
|
+
* @throws {RequiredError}
|
|
31760
|
+
*/
|
|
31761
|
+
rSVPV2ControllerRequestToJoin(id: string, joinRSVPEventDTO: JoinRSVPEventDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31762
|
+
return localVarFp.rSVPV2ControllerRequestToJoin(id, joinRSVPEventDTO, options).then((request) => request(axios, basePath));
|
|
31763
|
+
},
|
|
30289
31764
|
/**
|
|
30290
31765
|
*
|
|
30291
31766
|
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
@@ -30295,6 +31770,16 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30295
31770
|
rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoritedDTO> {
|
|
30296
31771
|
return localVarFp.rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
|
|
30297
31772
|
},
|
|
31773
|
+
/**
|
|
31774
|
+
*
|
|
31775
|
+
* @param {string} id
|
|
31776
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
31777
|
+
* @param {*} [options] Override http request option.
|
|
31778
|
+
* @throws {RequiredError}
|
|
31779
|
+
*/
|
|
31780
|
+
rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31781
|
+
return localVarFp.rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options).then((request) => request(axios, basePath));
|
|
31782
|
+
},
|
|
30298
31783
|
/**
|
|
30299
31784
|
*
|
|
30300
31785
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30334,6 +31819,17 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30334
31819
|
* @extends {BaseAPI}
|
|
30335
31820
|
*/
|
|
30336
31821
|
export class RSVPV2Api extends BaseAPI {
|
|
31822
|
+
/**
|
|
31823
|
+
*
|
|
31824
|
+
* @param {string} requestId
|
|
31825
|
+
* @param {*} [options] Override http request option.
|
|
31826
|
+
* @throws {RequiredError}
|
|
31827
|
+
* @memberof RSVPV2Api
|
|
31828
|
+
*/
|
|
31829
|
+
public rSVPV2ControllerAcceptProposal(requestId: string, options?: RawAxiosRequestConfig) {
|
|
31830
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerAcceptProposal(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
31831
|
+
}
|
|
31832
|
+
|
|
30337
31833
|
/**
|
|
30338
31834
|
*
|
|
30339
31835
|
* @param {string} id
|
|
@@ -30345,6 +31841,28 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30345
31841
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerAddEventCalendar(id, options).then((request) => request(this.axios, this.basePath));
|
|
30346
31842
|
}
|
|
30347
31843
|
|
|
31844
|
+
/**
|
|
31845
|
+
*
|
|
31846
|
+
* @param {string} requestId
|
|
31847
|
+
* @param {*} [options] Override http request option.
|
|
31848
|
+
* @throws {RequiredError}
|
|
31849
|
+
* @memberof RSVPV2Api
|
|
31850
|
+
*/
|
|
31851
|
+
public rSVPV2ControllerApproveRequest(requestId: string, options?: RawAxiosRequestConfig) {
|
|
31852
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerApproveRequest(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
31853
|
+
}
|
|
31854
|
+
|
|
31855
|
+
/**
|
|
31856
|
+
*
|
|
31857
|
+
* @param {string} requestId
|
|
31858
|
+
* @param {*} [options] Override http request option.
|
|
31859
|
+
* @throws {RequiredError}
|
|
31860
|
+
* @memberof RSVPV2Api
|
|
31861
|
+
*/
|
|
31862
|
+
public rSVPV2ControllerCancelRequest(requestId: string, options?: RawAxiosRequestConfig) {
|
|
31863
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerCancelRequest(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
31864
|
+
}
|
|
31865
|
+
|
|
30348
31866
|
/**
|
|
30349
31867
|
*
|
|
30350
31868
|
* @param {string} id
|
|
@@ -30379,6 +31897,17 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30379
31897
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerCreateEvent(createRSVPEventV2DTO, options).then((request) => request(this.axios, this.basePath));
|
|
30380
31898
|
}
|
|
30381
31899
|
|
|
31900
|
+
/**
|
|
31901
|
+
*
|
|
31902
|
+
* @param {string} requestId
|
|
31903
|
+
* @param {*} [options] Override http request option.
|
|
31904
|
+
* @throws {RequiredError}
|
|
31905
|
+
* @memberof RSVPV2Api
|
|
31906
|
+
*/
|
|
31907
|
+
public rSVPV2ControllerDeclineRequest(requestId: string, options?: RawAxiosRequestConfig) {
|
|
31908
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerDeclineRequest(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
31909
|
+
}
|
|
31910
|
+
|
|
30382
31911
|
/**
|
|
30383
31912
|
*
|
|
30384
31913
|
* @param {string} id
|
|
@@ -30423,6 +31952,30 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30423
31952
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(this.axios, this.basePath));
|
|
30424
31953
|
}
|
|
30425
31954
|
|
|
31955
|
+
/**
|
|
31956
|
+
*
|
|
31957
|
+
* @param {number} page
|
|
31958
|
+
* @param {number} pageSize
|
|
31959
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
31960
|
+
* @param {string} [search]
|
|
31961
|
+
* @param {*} [options] Override http request option.
|
|
31962
|
+
* @throws {RequiredError}
|
|
31963
|
+
* @memberof RSVPV2Api
|
|
31964
|
+
*/
|
|
31965
|
+
public rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig) {
|
|
31966
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options).then((request) => request(this.axios, this.basePath));
|
|
31967
|
+
}
|
|
31968
|
+
|
|
31969
|
+
/**
|
|
31970
|
+
*
|
|
31971
|
+
* @param {*} [options] Override http request option.
|
|
31972
|
+
* @throws {RequiredError}
|
|
31973
|
+
* @memberof RSVPV2Api
|
|
31974
|
+
*/
|
|
31975
|
+
public rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig) {
|
|
31976
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAssociatedEventsCount(options).then((request) => request(this.axios, this.basePath));
|
|
31977
|
+
}
|
|
31978
|
+
|
|
30426
31979
|
/**
|
|
30427
31980
|
*
|
|
30428
31981
|
* @param {string} id
|
|
@@ -30433,8 +31986,33 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30433
31986
|
* @throws {RequiredError}
|
|
30434
31987
|
* @memberof RSVPV2Api
|
|
30435
31988
|
*/
|
|
30436
|
-
public rSVPV2ControllerGetAttendees(id: string, page?: number, pageSize?: number, isInvited?: boolean, options?: RawAxiosRequestConfig) {
|
|
30437
|
-
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options).then((request) => request(this.axios, this.basePath));
|
|
31989
|
+
public rSVPV2ControllerGetAttendees(id: string, page?: number, pageSize?: number, isInvited?: boolean, options?: RawAxiosRequestConfig) {
|
|
31990
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options).then((request) => request(this.axios, this.basePath));
|
|
31991
|
+
}
|
|
31992
|
+
|
|
31993
|
+
/**
|
|
31994
|
+
*
|
|
31995
|
+
* @param {string} id
|
|
31996
|
+
* @param {number} [page]
|
|
31997
|
+
* @param {number} [pageSize]
|
|
31998
|
+
* @param {*} [options] Override http request option.
|
|
31999
|
+
* @throws {RequiredError}
|
|
32000
|
+
* @memberof RSVPV2Api
|
|
32001
|
+
*/
|
|
32002
|
+
public rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
32003
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetBlasts(id, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
32004
|
+
}
|
|
32005
|
+
|
|
32006
|
+
/**
|
|
32007
|
+
*
|
|
32008
|
+
* @param {number} page
|
|
32009
|
+
* @param {number} pageSize
|
|
32010
|
+
* @param {*} [options] Override http request option.
|
|
32011
|
+
* @throws {RequiredError}
|
|
32012
|
+
* @memberof RSVPV2Api
|
|
32013
|
+
*/
|
|
32014
|
+
public rSVPV2ControllerGetDashboardRequests(page: number, pageSize: number, options?: RawAxiosRequestConfig) {
|
|
32015
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetDashboardRequests(page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
30438
32016
|
}
|
|
30439
32017
|
|
|
30440
32018
|
/**
|
|
@@ -30484,6 +32062,19 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30484
32062
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetEventsByVenue(venueId, page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(this.axios, this.basePath));
|
|
30485
32063
|
}
|
|
30486
32064
|
|
|
32065
|
+
/**
|
|
32066
|
+
*
|
|
32067
|
+
* @param {number} [page]
|
|
32068
|
+
* @param {number} [pageSize]
|
|
32069
|
+
* @param {string} [search]
|
|
32070
|
+
* @param {*} [options] Override http request option.
|
|
32071
|
+
* @throws {RequiredError}
|
|
32072
|
+
* @memberof RSVPV2Api
|
|
32073
|
+
*/
|
|
32074
|
+
public rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) {
|
|
32075
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options).then((request) => request(this.axios, this.basePath));
|
|
32076
|
+
}
|
|
32077
|
+
|
|
30487
32078
|
/**
|
|
30488
32079
|
*
|
|
30489
32080
|
* @param {number} page
|
|
@@ -30535,6 +32126,19 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30535
32126
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetNearbyPublicEvents(page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(this.axios, this.basePath));
|
|
30536
32127
|
}
|
|
30537
32128
|
|
|
32129
|
+
/**
|
|
32130
|
+
*
|
|
32131
|
+
* @param {string} id
|
|
32132
|
+
* @param {number} page
|
|
32133
|
+
* @param {number} pageSize
|
|
32134
|
+
* @param {*} [options] Override http request option.
|
|
32135
|
+
* @throws {RequiredError}
|
|
32136
|
+
* @memberof RSVPV2Api
|
|
32137
|
+
*/
|
|
32138
|
+
public rSVPV2ControllerGetPendingRequests(id: string, page: number, pageSize: number, options?: RawAxiosRequestConfig) {
|
|
32139
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetPendingRequests(id, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
32140
|
+
}
|
|
32141
|
+
|
|
30538
32142
|
/**
|
|
30539
32143
|
*
|
|
30540
32144
|
* @param {RSVPEventFindV2DTO} rSVPEventFindV2DTO
|
|
@@ -30570,6 +32174,28 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30570
32174
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerJoinEvent(id, joinRSVPEventDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30571
32175
|
}
|
|
30572
32176
|
|
|
32177
|
+
/**
|
|
32178
|
+
*
|
|
32179
|
+
* @param {string} requestId
|
|
32180
|
+
* @param {*} [options] Override http request option.
|
|
32181
|
+
* @throws {RequiredError}
|
|
32182
|
+
* @memberof RSVPV2Api
|
|
32183
|
+
*/
|
|
32184
|
+
public rSVPV2ControllerProposeTime(requestId: string, options?: RawAxiosRequestConfig) {
|
|
32185
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerProposeTime(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
32186
|
+
}
|
|
32187
|
+
|
|
32188
|
+
/**
|
|
32189
|
+
*
|
|
32190
|
+
* @param {string} requestId
|
|
32191
|
+
* @param {*} [options] Override http request option.
|
|
32192
|
+
* @throws {RequiredError}
|
|
32193
|
+
* @memberof RSVPV2Api
|
|
32194
|
+
*/
|
|
32195
|
+
public rSVPV2ControllerRejectProposal(requestId: string, options?: RawAxiosRequestConfig) {
|
|
32196
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerRejectProposal(requestId, options).then((request) => request(this.axios, this.basePath));
|
|
32197
|
+
}
|
|
32198
|
+
|
|
30573
32199
|
/**
|
|
30574
32200
|
*
|
|
30575
32201
|
* @param {string} id
|
|
@@ -30581,6 +32207,18 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30581
32207
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerReminderEventCalendar(id, options).then((request) => request(this.axios, this.basePath));
|
|
30582
32208
|
}
|
|
30583
32209
|
|
|
32210
|
+
/**
|
|
32211
|
+
*
|
|
32212
|
+
* @param {string} id
|
|
32213
|
+
* @param {JoinRSVPEventDTO} joinRSVPEventDTO
|
|
32214
|
+
* @param {*} [options] Override http request option.
|
|
32215
|
+
* @throws {RequiredError}
|
|
32216
|
+
* @memberof RSVPV2Api
|
|
32217
|
+
*/
|
|
32218
|
+
public rSVPV2ControllerRequestToJoin(id: string, joinRSVPEventDTO: JoinRSVPEventDTO, options?: RawAxiosRequestConfig) {
|
|
32219
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerRequestToJoin(id, joinRSVPEventDTO, options).then((request) => request(this.axios, this.basePath));
|
|
32220
|
+
}
|
|
32221
|
+
|
|
30584
32222
|
/**
|
|
30585
32223
|
*
|
|
30586
32224
|
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
@@ -30592,6 +32230,18 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30592
32230
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30593
32231
|
}
|
|
30594
32232
|
|
|
32233
|
+
/**
|
|
32234
|
+
*
|
|
32235
|
+
* @param {string} id
|
|
32236
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
32237
|
+
* @param {*} [options] Override http request option.
|
|
32238
|
+
* @throws {RequiredError}
|
|
32239
|
+
* @memberof RSVPV2Api
|
|
32240
|
+
*/
|
|
32241
|
+
public rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig) {
|
|
32242
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options).then((request) => request(this.axios, this.basePath));
|
|
32243
|
+
}
|
|
32244
|
+
|
|
30595
32245
|
/**
|
|
30596
32246
|
*
|
|
30597
32247
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30628,6 +32278,268 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30628
32278
|
}
|
|
30629
32279
|
}
|
|
30630
32280
|
|
|
32281
|
+
/**
|
|
32282
|
+
* @export
|
|
32283
|
+
*/
|
|
32284
|
+
export const RSVPV2ControllerGetAssociatedEventsFilterEnum = {
|
|
32285
|
+
Upcoming: 'upcoming',
|
|
32286
|
+
Past: 'past',
|
|
32287
|
+
Declined: 'declined',
|
|
32288
|
+
All: 'all'
|
|
32289
|
+
} as const;
|
|
32290
|
+
export type RSVPV2ControllerGetAssociatedEventsFilterEnum = typeof RSVPV2ControllerGetAssociatedEventsFilterEnum[keyof typeof RSVPV2ControllerGetAssociatedEventsFilterEnum];
|
|
32291
|
+
|
|
32292
|
+
|
|
32293
|
+
/**
|
|
32294
|
+
* RSVPV2MutualAvailabilityApi - axios parameter creator
|
|
32295
|
+
* @export
|
|
32296
|
+
*/
|
|
32297
|
+
export const RSVPV2MutualAvailabilityApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32298
|
+
return {
|
|
32299
|
+
/**
|
|
32300
|
+
*
|
|
32301
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32302
|
+
* @param {*} [options] Override http request option.
|
|
32303
|
+
* @throws {RequiredError}
|
|
32304
|
+
*/
|
|
32305
|
+
mutualAvailabilityControllerCheckMutualAvailability: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32306
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
32307
|
+
assertParamExists('mutualAvailabilityControllerCheckMutualAvailability', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
32308
|
+
const localVarPath = `/v2/rsvp/mutual-availability/check`;
|
|
32309
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32310
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32311
|
+
let baseOptions;
|
|
32312
|
+
if (configuration) {
|
|
32313
|
+
baseOptions = configuration.baseOptions;
|
|
32314
|
+
}
|
|
32315
|
+
|
|
32316
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
32317
|
+
const localVarHeaderParameter = {} as any;
|
|
32318
|
+
const localVarQueryParameter = {} as any;
|
|
32319
|
+
|
|
32320
|
+
// authentication bearer required
|
|
32321
|
+
// http bearer authentication required
|
|
32322
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32323
|
+
|
|
32324
|
+
|
|
32325
|
+
|
|
32326
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
32327
|
+
|
|
32328
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32329
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32330
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32331
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
32332
|
+
|
|
32333
|
+
return {
|
|
32334
|
+
url: toPathString(localVarUrlObj),
|
|
32335
|
+
options: localVarRequestOptions,
|
|
32336
|
+
};
|
|
32337
|
+
},
|
|
32338
|
+
/**
|
|
32339
|
+
*
|
|
32340
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32341
|
+
* @param {*} [options] Override http request option.
|
|
32342
|
+
* @throws {RequiredError}
|
|
32343
|
+
*/
|
|
32344
|
+
mutualAvailabilityControllerFindMoreAvailableTimes: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32345
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
32346
|
+
assertParamExists('mutualAvailabilityControllerFindMoreAvailableTimes', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
32347
|
+
const localVarPath = `/v2/rsvp/mutual-availability/more-times`;
|
|
32348
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32349
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32350
|
+
let baseOptions;
|
|
32351
|
+
if (configuration) {
|
|
32352
|
+
baseOptions = configuration.baseOptions;
|
|
32353
|
+
}
|
|
32354
|
+
|
|
32355
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
32356
|
+
const localVarHeaderParameter = {} as any;
|
|
32357
|
+
const localVarQueryParameter = {} as any;
|
|
32358
|
+
|
|
32359
|
+
// authentication bearer required
|
|
32360
|
+
// http bearer authentication required
|
|
32361
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32362
|
+
|
|
32363
|
+
|
|
32364
|
+
|
|
32365
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
32366
|
+
|
|
32367
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32368
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32369
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32370
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
32371
|
+
|
|
32372
|
+
return {
|
|
32373
|
+
url: toPathString(localVarUrlObj),
|
|
32374
|
+
options: localVarRequestOptions,
|
|
32375
|
+
};
|
|
32376
|
+
},
|
|
32377
|
+
/**
|
|
32378
|
+
*
|
|
32379
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32380
|
+
* @param {*} [options] Override http request option.
|
|
32381
|
+
* @throws {RequiredError}
|
|
32382
|
+
*/
|
|
32383
|
+
mutualAvailabilityControllerGetAvailabilityDetails: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32384
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
32385
|
+
assertParamExists('mutualAvailabilityControllerGetAvailabilityDetails', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
32386
|
+
const localVarPath = `/v2/rsvp/mutual-availability/details`;
|
|
32387
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
32388
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
32389
|
+
let baseOptions;
|
|
32390
|
+
if (configuration) {
|
|
32391
|
+
baseOptions = configuration.baseOptions;
|
|
32392
|
+
}
|
|
32393
|
+
|
|
32394
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
32395
|
+
const localVarHeaderParameter = {} as any;
|
|
32396
|
+
const localVarQueryParameter = {} as any;
|
|
32397
|
+
|
|
32398
|
+
// authentication bearer required
|
|
32399
|
+
// http bearer authentication required
|
|
32400
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
32401
|
+
|
|
32402
|
+
|
|
32403
|
+
|
|
32404
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
32405
|
+
|
|
32406
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
32407
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32408
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
32409
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
32410
|
+
|
|
32411
|
+
return {
|
|
32412
|
+
url: toPathString(localVarUrlObj),
|
|
32413
|
+
options: localVarRequestOptions,
|
|
32414
|
+
};
|
|
32415
|
+
},
|
|
32416
|
+
}
|
|
32417
|
+
};
|
|
32418
|
+
|
|
32419
|
+
/**
|
|
32420
|
+
* RSVPV2MutualAvailabilityApi - functional programming interface
|
|
32421
|
+
* @export
|
|
32422
|
+
*/
|
|
32423
|
+
export const RSVPV2MutualAvailabilityApiFp = function(configuration?: Configuration) {
|
|
32424
|
+
const localVarAxiosParamCreator = RSVPV2MutualAvailabilityApiAxiosParamCreator(configuration)
|
|
32425
|
+
return {
|
|
32426
|
+
/**
|
|
32427
|
+
*
|
|
32428
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32429
|
+
* @param {*} [options] Override http request option.
|
|
32430
|
+
* @throws {RequiredError}
|
|
32431
|
+
*/
|
|
32432
|
+
async mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
32433
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options);
|
|
32434
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32435
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerCheckMutualAvailability']?.[localVarOperationServerIndex]?.url;
|
|
32436
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32437
|
+
},
|
|
32438
|
+
/**
|
|
32439
|
+
*
|
|
32440
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32441
|
+
* @param {*} [options] Override http request option.
|
|
32442
|
+
* @throws {RequiredError}
|
|
32443
|
+
*/
|
|
32444
|
+
async mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
32445
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options);
|
|
32446
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32447
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerFindMoreAvailableTimes']?.[localVarOperationServerIndex]?.url;
|
|
32448
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32449
|
+
},
|
|
32450
|
+
/**
|
|
32451
|
+
*
|
|
32452
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32453
|
+
* @param {*} [options] Override http request option.
|
|
32454
|
+
* @throws {RequiredError}
|
|
32455
|
+
*/
|
|
32456
|
+
async mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
32457
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options);
|
|
32458
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
32459
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerGetAvailabilityDetails']?.[localVarOperationServerIndex]?.url;
|
|
32460
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
32461
|
+
},
|
|
32462
|
+
}
|
|
32463
|
+
};
|
|
32464
|
+
|
|
32465
|
+
/**
|
|
32466
|
+
* RSVPV2MutualAvailabilityApi - factory interface
|
|
32467
|
+
* @export
|
|
32468
|
+
*/
|
|
32469
|
+
export const RSVPV2MutualAvailabilityApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
32470
|
+
const localVarFp = RSVPV2MutualAvailabilityApiFp(configuration)
|
|
32471
|
+
return {
|
|
32472
|
+
/**
|
|
32473
|
+
*
|
|
32474
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32475
|
+
* @param {*} [options] Override http request option.
|
|
32476
|
+
* @throws {RequiredError}
|
|
32477
|
+
*/
|
|
32478
|
+
mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
32479
|
+
return localVarFp.mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
32480
|
+
},
|
|
32481
|
+
/**
|
|
32482
|
+
*
|
|
32483
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32484
|
+
* @param {*} [options] Override http request option.
|
|
32485
|
+
* @throws {RequiredError}
|
|
32486
|
+
*/
|
|
32487
|
+
mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
32488
|
+
return localVarFp.mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
32489
|
+
},
|
|
32490
|
+
/**
|
|
32491
|
+
*
|
|
32492
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32493
|
+
* @param {*} [options] Override http request option.
|
|
32494
|
+
* @throws {RequiredError}
|
|
32495
|
+
*/
|
|
32496
|
+
mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
32497
|
+
return localVarFp.mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
32498
|
+
},
|
|
32499
|
+
};
|
|
32500
|
+
};
|
|
32501
|
+
|
|
32502
|
+
/**
|
|
32503
|
+
* RSVPV2MutualAvailabilityApi - object-oriented interface
|
|
32504
|
+
* @export
|
|
32505
|
+
* @class RSVPV2MutualAvailabilityApi
|
|
32506
|
+
* @extends {BaseAPI}
|
|
32507
|
+
*/
|
|
32508
|
+
export class RSVPV2MutualAvailabilityApi extends BaseAPI {
|
|
32509
|
+
/**
|
|
32510
|
+
*
|
|
32511
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32512
|
+
* @param {*} [options] Override http request option.
|
|
32513
|
+
* @throws {RequiredError}
|
|
32514
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
32515
|
+
*/
|
|
32516
|
+
public mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
32517
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
32518
|
+
}
|
|
32519
|
+
|
|
32520
|
+
/**
|
|
32521
|
+
*
|
|
32522
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32523
|
+
* @param {*} [options] Override http request option.
|
|
32524
|
+
* @throws {RequiredError}
|
|
32525
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
32526
|
+
*/
|
|
32527
|
+
public mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
32528
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
32529
|
+
}
|
|
32530
|
+
|
|
32531
|
+
/**
|
|
32532
|
+
*
|
|
32533
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
32534
|
+
* @param {*} [options] Override http request option.
|
|
32535
|
+
* @throws {RequiredError}
|
|
32536
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
32537
|
+
*/
|
|
32538
|
+
public mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
32539
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
32540
|
+
}
|
|
32541
|
+
}
|
|
32542
|
+
|
|
30631
32543
|
|
|
30632
32544
|
|
|
30633
32545
|
/**
|