@gooday_corp/gooday-api-client 4.6.17 → 4.6.26
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 +1309 -82
- 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/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/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 +276 -3
- package/docs/RSVPV2MutualAvailabilityApi.md +163 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SocialMedia.md +8 -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
|
|
@@ -4734,7 +4845,8 @@ export const CreateRSVPEventV2DTOThemeEnum = {
|
|
|
4734
4845
|
Sunset: 'Sunset',
|
|
4735
4846
|
Beige: 'Beige',
|
|
4736
4847
|
Black: 'Black',
|
|
4737
|
-
Red: 'Red'
|
|
4848
|
+
Red: 'Red',
|
|
4849
|
+
White: 'White'
|
|
4738
4850
|
} as const;
|
|
4739
4851
|
|
|
4740
4852
|
export type CreateRSVPEventV2DTOThemeEnum = typeof CreateRSVPEventV2DTOThemeEnum[keyof typeof CreateRSVPEventV2DTOThemeEnum];
|
|
@@ -5228,6 +5340,12 @@ export interface DiscountV2DTO {
|
|
|
5228
5340
|
* @memberof DiscountV2DTO
|
|
5229
5341
|
*/
|
|
5230
5342
|
'percentage': number;
|
|
5343
|
+
/**
|
|
5344
|
+
*
|
|
5345
|
+
* @type {number}
|
|
5346
|
+
* @memberof DiscountV2DTO
|
|
5347
|
+
*/
|
|
5348
|
+
'maxRedemptions'?: number;
|
|
5231
5349
|
}
|
|
5232
5350
|
/**
|
|
5233
5351
|
*
|
|
@@ -7119,6 +7237,74 @@ export interface InviteRSVPArrayDTO {
|
|
|
7119
7237
|
*/
|
|
7120
7238
|
'invites': Array<InviteRSVPDTO>;
|
|
7121
7239
|
}
|
|
7240
|
+
/**
|
|
7241
|
+
*
|
|
7242
|
+
* @export
|
|
7243
|
+
* @interface InviteRSVPCreatedDTO
|
|
7244
|
+
*/
|
|
7245
|
+
export interface InviteRSVPCreatedDTO {
|
|
7246
|
+
/**
|
|
7247
|
+
*
|
|
7248
|
+
* @type {string}
|
|
7249
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7250
|
+
*/
|
|
7251
|
+
'id': string;
|
|
7252
|
+
/**
|
|
7253
|
+
*
|
|
7254
|
+
* @type {string}
|
|
7255
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7256
|
+
*/
|
|
7257
|
+
'user'?: string;
|
|
7258
|
+
/**
|
|
7259
|
+
*
|
|
7260
|
+
* @type {string}
|
|
7261
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7262
|
+
*/
|
|
7263
|
+
'contact'?: string;
|
|
7264
|
+
/**
|
|
7265
|
+
*
|
|
7266
|
+
* @type {string}
|
|
7267
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7268
|
+
*/
|
|
7269
|
+
'business'?: string;
|
|
7270
|
+
/**
|
|
7271
|
+
*
|
|
7272
|
+
* @type {string}
|
|
7273
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7274
|
+
*/
|
|
7275
|
+
'email'?: string;
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @type {string}
|
|
7279
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7280
|
+
*/
|
|
7281
|
+
'mobileNumber'?: string;
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {string}
|
|
7285
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7286
|
+
*/
|
|
7287
|
+
'status'?: InviteRSVPCreatedDTOStatusEnum;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {boolean}
|
|
7291
|
+
* @memberof InviteRSVPCreatedDTO
|
|
7292
|
+
*/
|
|
7293
|
+
'isInvited'?: boolean;
|
|
7294
|
+
}
|
|
7295
|
+
|
|
7296
|
+
export const InviteRSVPCreatedDTOStatusEnum = {
|
|
7297
|
+
Invited: 'INVITED',
|
|
7298
|
+
Going: 'GOING',
|
|
7299
|
+
NotGoing: 'NOT_GOING',
|
|
7300
|
+
Maybe: 'MAYBE',
|
|
7301
|
+
CheckedIn: 'CHECKED_IN',
|
|
7302
|
+
Cancelled: 'CANCELLED',
|
|
7303
|
+
Pending: 'PENDING'
|
|
7304
|
+
} as const;
|
|
7305
|
+
|
|
7306
|
+
export type InviteRSVPCreatedDTOStatusEnum = typeof InviteRSVPCreatedDTOStatusEnum[keyof typeof InviteRSVPCreatedDTOStatusEnum];
|
|
7307
|
+
|
|
7122
7308
|
/**
|
|
7123
7309
|
*
|
|
7124
7310
|
* @export
|
|
@@ -7174,6 +7360,118 @@ export interface InviteRSVPDTO {
|
|
|
7174
7360
|
*/
|
|
7175
7361
|
'profile'?: string;
|
|
7176
7362
|
}
|
|
7363
|
+
/**
|
|
7364
|
+
*
|
|
7365
|
+
* @export
|
|
7366
|
+
* @interface InviteRSVPResponseDTO
|
|
7367
|
+
*/
|
|
7368
|
+
export interface InviteRSVPResponseDTO {
|
|
7369
|
+
/**
|
|
7370
|
+
* statusCode
|
|
7371
|
+
* @type {number}
|
|
7372
|
+
* @memberof InviteRSVPResponseDTO
|
|
7373
|
+
*/
|
|
7374
|
+
'statusCode': number;
|
|
7375
|
+
/**
|
|
7376
|
+
* Response message
|
|
7377
|
+
* @type {string}
|
|
7378
|
+
* @memberof InviteRSVPResponseDTO
|
|
7379
|
+
*/
|
|
7380
|
+
'message': string;
|
|
7381
|
+
/**
|
|
7382
|
+
* Result details for invite processing
|
|
7383
|
+
* @type {InviteRSVPResultDTO}
|
|
7384
|
+
* @memberof InviteRSVPResponseDTO
|
|
7385
|
+
*/
|
|
7386
|
+
'data': InviteRSVPResultDTO;
|
|
7387
|
+
}
|
|
7388
|
+
/**
|
|
7389
|
+
*
|
|
7390
|
+
* @export
|
|
7391
|
+
* @interface InviteRSVPResultDTO
|
|
7392
|
+
*/
|
|
7393
|
+
export interface InviteRSVPResultDTO {
|
|
7394
|
+
/**
|
|
7395
|
+
*
|
|
7396
|
+
* @type {Array<InviteRSVPCreatedDTO>}
|
|
7397
|
+
* @memberof InviteRSVPResultDTO
|
|
7398
|
+
*/
|
|
7399
|
+
'created': Array<InviteRSVPCreatedDTO>;
|
|
7400
|
+
/**
|
|
7401
|
+
*
|
|
7402
|
+
* @type {Array<InviteRSVPSkippedDTO>}
|
|
7403
|
+
* @memberof InviteRSVPResultDTO
|
|
7404
|
+
*/
|
|
7405
|
+
'skipped': Array<InviteRSVPSkippedDTO>;
|
|
7406
|
+
}
|
|
7407
|
+
/**
|
|
7408
|
+
*
|
|
7409
|
+
* @export
|
|
7410
|
+
* @interface InviteRSVPSkippedDTO
|
|
7411
|
+
*/
|
|
7412
|
+
export interface InviteRSVPSkippedDTO {
|
|
7413
|
+
/**
|
|
7414
|
+
*
|
|
7415
|
+
* @type {InviteRSVPDTO}
|
|
7416
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7417
|
+
*/
|
|
7418
|
+
'invite': InviteRSVPDTO;
|
|
7419
|
+
/**
|
|
7420
|
+
*
|
|
7421
|
+
* @type {string}
|
|
7422
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7423
|
+
*/
|
|
7424
|
+
'reason': string;
|
|
7425
|
+
/**
|
|
7426
|
+
*
|
|
7427
|
+
* @type {InviteRSVPSkippedExistingDTO}
|
|
7428
|
+
* @memberof InviteRSVPSkippedDTO
|
|
7429
|
+
*/
|
|
7430
|
+
'existing'?: InviteRSVPSkippedExistingDTO;
|
|
7431
|
+
}
|
|
7432
|
+
/**
|
|
7433
|
+
*
|
|
7434
|
+
* @export
|
|
7435
|
+
* @interface InviteRSVPSkippedExistingDTO
|
|
7436
|
+
*/
|
|
7437
|
+
export interface InviteRSVPSkippedExistingDTO {
|
|
7438
|
+
/**
|
|
7439
|
+
*
|
|
7440
|
+
* @type {string}
|
|
7441
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7442
|
+
*/
|
|
7443
|
+
'id': string;
|
|
7444
|
+
/**
|
|
7445
|
+
*
|
|
7446
|
+
* @type {string}
|
|
7447
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7448
|
+
*/
|
|
7449
|
+
'user'?: string;
|
|
7450
|
+
/**
|
|
7451
|
+
*
|
|
7452
|
+
* @type {string}
|
|
7453
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7454
|
+
*/
|
|
7455
|
+
'contact'?: string;
|
|
7456
|
+
/**
|
|
7457
|
+
*
|
|
7458
|
+
* @type {string}
|
|
7459
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7460
|
+
*/
|
|
7461
|
+
'business'?: string;
|
|
7462
|
+
/**
|
|
7463
|
+
*
|
|
7464
|
+
* @type {string}
|
|
7465
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7466
|
+
*/
|
|
7467
|
+
'email'?: string;
|
|
7468
|
+
/**
|
|
7469
|
+
*
|
|
7470
|
+
* @type {string}
|
|
7471
|
+
* @memberof InviteRSVPSkippedExistingDTO
|
|
7472
|
+
*/
|
|
7473
|
+
'mobileNumber'?: string;
|
|
7474
|
+
}
|
|
7177
7475
|
/**
|
|
7178
7476
|
*
|
|
7179
7477
|
* @export
|
|
@@ -7518,44 +7816,166 @@ export interface MicrosoftCalendarAccessDTO {
|
|
|
7518
7816
|
/**
|
|
7519
7817
|
*
|
|
7520
7818
|
* @export
|
|
7521
|
-
* @interface
|
|
7819
|
+
* @interface MutualAvailabilityInviteeDTO
|
|
7522
7820
|
*/
|
|
7523
|
-
export interface
|
|
7821
|
+
export interface MutualAvailabilityInviteeDTO {
|
|
7524
7822
|
/**
|
|
7525
7823
|
*
|
|
7526
7824
|
* @type {string}
|
|
7527
|
-
* @memberof
|
|
7825
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7528
7826
|
*/
|
|
7529
|
-
'
|
|
7827
|
+
'email'?: string;
|
|
7530
7828
|
/**
|
|
7531
7829
|
*
|
|
7532
7830
|
* @type {string}
|
|
7533
|
-
* @memberof
|
|
7831
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7534
7832
|
*/
|
|
7535
|
-
'
|
|
7833
|
+
'firstName'?: string;
|
|
7536
7834
|
/**
|
|
7537
7835
|
*
|
|
7538
7836
|
* @type {string}
|
|
7539
|
-
* @memberof
|
|
7837
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7838
|
+
*/
|
|
7839
|
+
'lastName'?: string;
|
|
7840
|
+
/**
|
|
7841
|
+
*
|
|
7842
|
+
* @type {string}
|
|
7843
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7844
|
+
*/
|
|
7845
|
+
'mobileNumber'?: string;
|
|
7846
|
+
/**
|
|
7847
|
+
*
|
|
7848
|
+
* @type {string}
|
|
7849
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7540
7850
|
*/
|
|
7541
7851
|
'user'?: string;
|
|
7542
7852
|
/**
|
|
7543
7853
|
*
|
|
7544
|
-
* @type {
|
|
7545
|
-
* @memberof
|
|
7854
|
+
* @type {string}
|
|
7855
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7546
7856
|
*/
|
|
7547
|
-
'
|
|
7857
|
+
'contact'?: string;
|
|
7548
7858
|
/**
|
|
7549
7859
|
*
|
|
7550
|
-
* @type {
|
|
7551
|
-
* @memberof
|
|
7860
|
+
* @type {string}
|
|
7861
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7552
7862
|
*/
|
|
7553
|
-
'
|
|
7863
|
+
'business'?: string;
|
|
7864
|
+
/**
|
|
7865
|
+
*
|
|
7866
|
+
* @type {string}
|
|
7867
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7868
|
+
*/
|
|
7869
|
+
'profile'?: string;
|
|
7870
|
+
/**
|
|
7871
|
+
*
|
|
7872
|
+
* @type {string}
|
|
7873
|
+
* @memberof MutualAvailabilityInviteeDTO
|
|
7874
|
+
*/
|
|
7875
|
+
'code'?: string;
|
|
7554
7876
|
}
|
|
7555
7877
|
/**
|
|
7556
7878
|
*
|
|
7557
7879
|
* @export
|
|
7558
|
-
* @interface
|
|
7880
|
+
* @interface MutualAvailabilityRecurrenceDTO
|
|
7881
|
+
*/
|
|
7882
|
+
export interface MutualAvailabilityRecurrenceDTO {
|
|
7883
|
+
/**
|
|
7884
|
+
*
|
|
7885
|
+
* @type {string}
|
|
7886
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7887
|
+
*/
|
|
7888
|
+
'repeat': MutualAvailabilityRecurrenceDTORepeatEnum;
|
|
7889
|
+
/**
|
|
7890
|
+
* Recurrence end date (the \"Until\" date in the UI)
|
|
7891
|
+
* @type {string}
|
|
7892
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7893
|
+
*/
|
|
7894
|
+
'recurrenceEndDate'?: string;
|
|
7895
|
+
/**
|
|
7896
|
+
* Comma-separated days of week, e.g. \"MO,WE,FR\" (used for WEEKLY)
|
|
7897
|
+
* @type {string}
|
|
7898
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7899
|
+
*/
|
|
7900
|
+
'byDay'?: string;
|
|
7901
|
+
/**
|
|
7902
|
+
* Comma-separated days of month, e.g. \"1,15\" (used for MONTHLY)
|
|
7903
|
+
* @type {string}
|
|
7904
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7905
|
+
*/
|
|
7906
|
+
'byMonthDay'?: string;
|
|
7907
|
+
/**
|
|
7908
|
+
* Comma-separated months of year 1-12 (used for YEARLY)
|
|
7909
|
+
* @type {string}
|
|
7910
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7911
|
+
*/
|
|
7912
|
+
'byMonth'?: string;
|
|
7913
|
+
/**
|
|
7914
|
+
*
|
|
7915
|
+
* @type {string}
|
|
7916
|
+
* @memberof MutualAvailabilityRecurrenceDTO
|
|
7917
|
+
*/
|
|
7918
|
+
'repeatBy'?: MutualAvailabilityRecurrenceDTORepeatByEnum;
|
|
7919
|
+
}
|
|
7920
|
+
|
|
7921
|
+
export const MutualAvailabilityRecurrenceDTORepeatEnum = {
|
|
7922
|
+
None: 'NONE',
|
|
7923
|
+
Daily: 'DAILY',
|
|
7924
|
+
Weekly: 'WEEKLY',
|
|
7925
|
+
Monthly: 'MONTHLY',
|
|
7926
|
+
Year: 'YEAR'
|
|
7927
|
+
} as const;
|
|
7928
|
+
|
|
7929
|
+
export type MutualAvailabilityRecurrenceDTORepeatEnum = typeof MutualAvailabilityRecurrenceDTORepeatEnum[keyof typeof MutualAvailabilityRecurrenceDTORepeatEnum];
|
|
7930
|
+
export const MutualAvailabilityRecurrenceDTORepeatByEnum = {
|
|
7931
|
+
RepeatByDay: 'repeat_by_day',
|
|
7932
|
+
RepeatByWeekMonth: 'repeat_by_week_month',
|
|
7933
|
+
RepeatByLastWeekMonth: 'repeat_by_last_week_month'
|
|
7934
|
+
} as const;
|
|
7935
|
+
|
|
7936
|
+
export type MutualAvailabilityRecurrenceDTORepeatByEnum = typeof MutualAvailabilityRecurrenceDTORepeatByEnum[keyof typeof MutualAvailabilityRecurrenceDTORepeatByEnum];
|
|
7937
|
+
|
|
7938
|
+
/**
|
|
7939
|
+
*
|
|
7940
|
+
* @export
|
|
7941
|
+
* @interface MutualFindFriendRequestPayload
|
|
7942
|
+
*/
|
|
7943
|
+
export interface MutualFindFriendRequestPayload {
|
|
7944
|
+
/**
|
|
7945
|
+
*
|
|
7946
|
+
* @type {string}
|
|
7947
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7948
|
+
*/
|
|
7949
|
+
'query'?: string;
|
|
7950
|
+
/**
|
|
7951
|
+
*
|
|
7952
|
+
* @type {string}
|
|
7953
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7954
|
+
*/
|
|
7955
|
+
'calendar'?: string;
|
|
7956
|
+
/**
|
|
7957
|
+
*
|
|
7958
|
+
* @type {string}
|
|
7959
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7960
|
+
*/
|
|
7961
|
+
'user'?: string;
|
|
7962
|
+
/**
|
|
7963
|
+
*
|
|
7964
|
+
* @type {number}
|
|
7965
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7966
|
+
*/
|
|
7967
|
+
'page': number;
|
|
7968
|
+
/**
|
|
7969
|
+
*
|
|
7970
|
+
* @type {number}
|
|
7971
|
+
* @memberof MutualFindFriendRequestPayload
|
|
7972
|
+
*/
|
|
7973
|
+
'pageSize': number;
|
|
7974
|
+
}
|
|
7975
|
+
/**
|
|
7976
|
+
*
|
|
7977
|
+
* @export
|
|
7978
|
+
* @interface MutualFriendDTO
|
|
7559
7979
|
*/
|
|
7560
7980
|
export interface MutualFriendDTO {
|
|
7561
7981
|
/**
|
|
@@ -7735,6 +8155,12 @@ export interface NotificationCountDTO {
|
|
|
7735
8155
|
* @memberof NotificationCountDTO
|
|
7736
8156
|
*/
|
|
7737
8157
|
'category': Array<NotificationCountDTOCategoryEnum>;
|
|
8158
|
+
/**
|
|
8159
|
+
*
|
|
8160
|
+
* @type {string}
|
|
8161
|
+
* @memberof NotificationCountDTO
|
|
8162
|
+
*/
|
|
8163
|
+
'targetAudience'?: NotificationCountDTOTargetAudienceEnum;
|
|
7738
8164
|
}
|
|
7739
8165
|
|
|
7740
8166
|
export const NotificationCountDTOCategoryEnum = {
|
|
@@ -7748,6 +8174,12 @@ export const NotificationCountDTOCategoryEnum = {
|
|
|
7748
8174
|
} as const;
|
|
7749
8175
|
|
|
7750
8176
|
export type NotificationCountDTOCategoryEnum = typeof NotificationCountDTOCategoryEnum[keyof typeof NotificationCountDTOCategoryEnum];
|
|
8177
|
+
export const NotificationCountDTOTargetAudienceEnum = {
|
|
8178
|
+
Mobile: 'MOBILE',
|
|
8179
|
+
Dashboard: 'DASHBOARD'
|
|
8180
|
+
} as const;
|
|
8181
|
+
|
|
8182
|
+
export type NotificationCountDTOTargetAudienceEnum = typeof NotificationCountDTOTargetAudienceEnum[keyof typeof NotificationCountDTOTargetAudienceEnum];
|
|
7751
8183
|
|
|
7752
8184
|
/**
|
|
7753
8185
|
*
|
|
@@ -7885,7 +8317,10 @@ export const NotificationEntityTypeEnum = {
|
|
|
7885
8317
|
DailyBriefing: 'DAILY_BRIEFING',
|
|
7886
8318
|
Reminders: 'REMINDERS',
|
|
7887
8319
|
CollaboratorAddedCalendar: 'COLLABORATOR_ADDED_CALENDAR',
|
|
7888
|
-
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT'
|
|
8320
|
+
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT',
|
|
8321
|
+
RsvpEventJoin: 'RSVP_EVENT_JOIN',
|
|
8322
|
+
RsvpEventCancel: 'RSVP_EVENT_CANCEL',
|
|
8323
|
+
EventBlast: 'EVENT_BLAST'
|
|
7889
8324
|
} as const;
|
|
7890
8325
|
|
|
7891
8326
|
export type NotificationEntityTypeEnum = typeof NotificationEntityTypeEnum[keyof typeof NotificationEntityTypeEnum];
|
|
@@ -9021,6 +9456,19 @@ export interface PromoCodeResponseDTO {
|
|
|
9021
9456
|
*/
|
|
9022
9457
|
'data': string;
|
|
9023
9458
|
}
|
|
9459
|
+
/**
|
|
9460
|
+
*
|
|
9461
|
+
* @export
|
|
9462
|
+
* @interface RSVPBookingCheckResponseDTO
|
|
9463
|
+
*/
|
|
9464
|
+
export interface RSVPBookingCheckResponseDTO {
|
|
9465
|
+
/**
|
|
9466
|
+
* Whether the user has already booked this RSVP event
|
|
9467
|
+
* @type {boolean}
|
|
9468
|
+
* @memberof RSVPBookingCheckResponseDTO
|
|
9469
|
+
*/
|
|
9470
|
+
'alreadyBooked': boolean;
|
|
9471
|
+
}
|
|
9024
9472
|
/**
|
|
9025
9473
|
*
|
|
9026
9474
|
* @export
|
|
@@ -10550,6 +10998,30 @@ export interface SocialMedia {
|
|
|
10550
10998
|
* @memberof SocialMedia
|
|
10551
10999
|
*/
|
|
10552
11000
|
'link'?: string;
|
|
11001
|
+
/**
|
|
11002
|
+
*
|
|
11003
|
+
* @type {string}
|
|
11004
|
+
* @memberof SocialMedia
|
|
11005
|
+
*/
|
|
11006
|
+
'instagram'?: string;
|
|
11007
|
+
/**
|
|
11008
|
+
*
|
|
11009
|
+
* @type {string}
|
|
11010
|
+
* @memberof SocialMedia
|
|
11011
|
+
*/
|
|
11012
|
+
'facebook'?: string;
|
|
11013
|
+
/**
|
|
11014
|
+
*
|
|
11015
|
+
* @type {string}
|
|
11016
|
+
* @memberof SocialMedia
|
|
11017
|
+
*/
|
|
11018
|
+
'tiktok'?: string;
|
|
11019
|
+
/**
|
|
11020
|
+
*
|
|
11021
|
+
* @type {string}
|
|
11022
|
+
* @memberof SocialMedia
|
|
11023
|
+
*/
|
|
11024
|
+
'twitter'?: string;
|
|
10553
11025
|
}
|
|
10554
11026
|
/**
|
|
10555
11027
|
*
|
|
@@ -11490,7 +11962,8 @@ export const UpdateRSVPEventV2DTOThemeEnum = {
|
|
|
11490
11962
|
Sunset: 'Sunset',
|
|
11491
11963
|
Beige: 'Beige',
|
|
11492
11964
|
Black: 'Black',
|
|
11493
|
-
Red: 'Red'
|
|
11965
|
+
Red: 'Red',
|
|
11966
|
+
White: 'White'
|
|
11494
11967
|
} as const;
|
|
11495
11968
|
|
|
11496
11969
|
export type UpdateRSVPEventV2DTOThemeEnum = typeof UpdateRSVPEventV2DTOThemeEnum[keyof typeof UpdateRSVPEventV2DTOThemeEnum];
|
|
@@ -15404,6 +15877,41 @@ export const BookingApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
15404
15877
|
options: localVarRequestOptions,
|
|
15405
15878
|
};
|
|
15406
15879
|
},
|
|
15880
|
+
/**
|
|
15881
|
+
*
|
|
15882
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
15883
|
+
* @param {*} [options] Override http request option.
|
|
15884
|
+
* @throws {RequiredError}
|
|
15885
|
+
*/
|
|
15886
|
+
bookingControllerCheckRSVPBooking: async (checkRSVPBookingPayload: CheckRSVPBookingPayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15887
|
+
// verify required parameter 'checkRSVPBookingPayload' is not null or undefined
|
|
15888
|
+
assertParamExists('bookingControllerCheckRSVPBooking', 'checkRSVPBookingPayload', checkRSVPBookingPayload)
|
|
15889
|
+
const localVarPath = `/v1/booking/rsvp-booking/check`;
|
|
15890
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15891
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15892
|
+
let baseOptions;
|
|
15893
|
+
if (configuration) {
|
|
15894
|
+
baseOptions = configuration.baseOptions;
|
|
15895
|
+
}
|
|
15896
|
+
|
|
15897
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
15898
|
+
const localVarHeaderParameter = {} as any;
|
|
15899
|
+
const localVarQueryParameter = {} as any;
|
|
15900
|
+
|
|
15901
|
+
|
|
15902
|
+
|
|
15903
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
15904
|
+
|
|
15905
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15906
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15907
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
15908
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkRSVPBookingPayload, localVarRequestOptions, configuration)
|
|
15909
|
+
|
|
15910
|
+
return {
|
|
15911
|
+
url: toPathString(localVarUrlObj),
|
|
15912
|
+
options: localVarRequestOptions,
|
|
15913
|
+
};
|
|
15914
|
+
},
|
|
15407
15915
|
/**
|
|
15408
15916
|
*
|
|
15409
15917
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16166,6 +16674,18 @@ export const BookingApiFp = function(configuration?: Configuration) {
|
|
|
16166
16674
|
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingControllerCancelBooking']?.[localVarOperationServerIndex]?.url;
|
|
16167
16675
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16168
16676
|
},
|
|
16677
|
+
/**
|
|
16678
|
+
*
|
|
16679
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
16680
|
+
* @param {*} [options] Override http request option.
|
|
16681
|
+
* @throws {RequiredError}
|
|
16682
|
+
*/
|
|
16683
|
+
async bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPBookingCheckResponseDTO>> {
|
|
16684
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options);
|
|
16685
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
16686
|
+
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingControllerCheckRSVPBooking']?.[localVarOperationServerIndex]?.url;
|
|
16687
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16688
|
+
},
|
|
16169
16689
|
/**
|
|
16170
16690
|
*
|
|
16171
16691
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16440,6 +16960,15 @@ export const BookingApiFactory = function (configuration?: Configuration, basePa
|
|
|
16440
16960
|
bookingControllerCancelBooking(cancelBookingDTO: CancelBookingDTO, options?: RawAxiosRequestConfig): AxiosPromise<CancelBookingResponseDTO> {
|
|
16441
16961
|
return localVarFp.bookingControllerCancelBooking(cancelBookingDTO, options).then((request) => request(axios, basePath));
|
|
16442
16962
|
},
|
|
16963
|
+
/**
|
|
16964
|
+
*
|
|
16965
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
16966
|
+
* @param {*} [options] Override http request option.
|
|
16967
|
+
* @throws {RequiredError}
|
|
16968
|
+
*/
|
|
16969
|
+
bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig): AxiosPromise<RSVPBookingCheckResponseDTO> {
|
|
16970
|
+
return localVarFp.bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options).then((request) => request(axios, basePath));
|
|
16971
|
+
},
|
|
16443
16972
|
/**
|
|
16444
16973
|
*
|
|
16445
16974
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -16670,6 +17199,17 @@ export class BookingApi extends BaseAPI {
|
|
|
16670
17199
|
return BookingApiFp(this.configuration).bookingControllerCancelBooking(cancelBookingDTO, options).then((request) => request(this.axios, this.basePath));
|
|
16671
17200
|
}
|
|
16672
17201
|
|
|
17202
|
+
/**
|
|
17203
|
+
*
|
|
17204
|
+
* @param {CheckRSVPBookingPayload} checkRSVPBookingPayload
|
|
17205
|
+
* @param {*} [options] Override http request option.
|
|
17206
|
+
* @throws {RequiredError}
|
|
17207
|
+
* @memberof BookingApi
|
|
17208
|
+
*/
|
|
17209
|
+
public bookingControllerCheckRSVPBooking(checkRSVPBookingPayload: CheckRSVPBookingPayload, options?: RawAxiosRequestConfig) {
|
|
17210
|
+
return BookingApiFp(this.configuration).bookingControllerCheckRSVPBooking(checkRSVPBookingPayload, options).then((request) => request(this.axios, this.basePath));
|
|
17211
|
+
}
|
|
17212
|
+
|
|
16673
17213
|
/**
|
|
16674
17214
|
*
|
|
16675
17215
|
* @param {CreateBookingPayload} createBookingPayload
|
|
@@ -25096,10 +25636,11 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
|
25096
25636
|
* @param {number} page
|
|
25097
25637
|
* @param {number} pageSize
|
|
25098
25638
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25639
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25099
25640
|
* @param {*} [options] Override http request option.
|
|
25100
25641
|
* @throws {RequiredError}
|
|
25101
25642
|
*/
|
|
25102
|
-
notificationControllerGetNotification: async (page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25643
|
+
notificationControllerGetNotification: async (page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25103
25644
|
// verify required parameter 'page' is not null or undefined
|
|
25104
25645
|
assertParamExists('notificationControllerGetNotification', 'page', page)
|
|
25105
25646
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -25134,6 +25675,10 @@ export const NotificationApiAxiosParamCreator = function (configuration?: Config
|
|
|
25134
25675
|
localVarQueryParameter['category'] = category;
|
|
25135
25676
|
}
|
|
25136
25677
|
|
|
25678
|
+
if (targetAudience !== undefined) {
|
|
25679
|
+
localVarQueryParameter['targetAudience'] = targetAudience;
|
|
25680
|
+
}
|
|
25681
|
+
|
|
25137
25682
|
|
|
25138
25683
|
|
|
25139
25684
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -25322,11 +25867,12 @@ export const NotificationApiFp = function(configuration?: Configuration) {
|
|
|
25322
25867
|
* @param {number} page
|
|
25323
25868
|
* @param {number} pageSize
|
|
25324
25869
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25870
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25325
25871
|
* @param {*} [options] Override http request option.
|
|
25326
25872
|
* @throws {RequiredError}
|
|
25327
25873
|
*/
|
|
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);
|
|
25874
|
+
async notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetNotificationDTO>> {
|
|
25875
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.notificationControllerGetNotification(page, pageSize, category, targetAudience, options);
|
|
25330
25876
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
25331
25877
|
const localVarOperationServerBasePath = operationServerMap['NotificationApi.notificationControllerGetNotification']?.[localVarOperationServerIndex]?.url;
|
|
25332
25878
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -25402,11 +25948,12 @@ export const NotificationApiFactory = function (configuration?: Configuration, b
|
|
|
25402
25948
|
* @param {number} page
|
|
25403
25949
|
* @param {number} pageSize
|
|
25404
25950
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
25951
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25405
25952
|
* @param {*} [options] Override http request option.
|
|
25406
25953
|
* @throws {RequiredError}
|
|
25407
25954
|
*/
|
|
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));
|
|
25955
|
+
notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig): AxiosPromise<GetNotificationDTO> {
|
|
25956
|
+
return localVarFp.notificationControllerGetNotification(page, pageSize, category, targetAudience, options).then((request) => request(axios, basePath));
|
|
25410
25957
|
},
|
|
25411
25958
|
/**
|
|
25412
25959
|
*
|
|
@@ -25469,12 +26016,13 @@ export class NotificationApi extends BaseAPI {
|
|
|
25469
26016
|
* @param {number} page
|
|
25470
26017
|
* @param {number} pageSize
|
|
25471
26018
|
* @param {Array<NotificationControllerGetNotificationCategoryEnum>} category
|
|
26019
|
+
* @param {NotificationControllerGetNotificationTargetAudienceEnum} [targetAudience]
|
|
25472
26020
|
* @param {*} [options] Override http request option.
|
|
25473
26021
|
* @throws {RequiredError}
|
|
25474
26022
|
* @memberof NotificationApi
|
|
25475
26023
|
*/
|
|
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));
|
|
26024
|
+
public notificationControllerGetNotification(page: number, pageSize: number, category: Array<NotificationControllerGetNotificationCategoryEnum>, targetAudience?: NotificationControllerGetNotificationTargetAudienceEnum, options?: RawAxiosRequestConfig) {
|
|
26025
|
+
return NotificationApiFp(this.configuration).notificationControllerGetNotification(page, pageSize, category, targetAudience, options).then((request) => request(this.axios, this.basePath));
|
|
25478
26026
|
}
|
|
25479
26027
|
|
|
25480
26028
|
/**
|
|
@@ -25534,6 +26082,14 @@ export const NotificationControllerGetNotificationCategoryEnum = {
|
|
|
25534
26082
|
General: 'GENERAL'
|
|
25535
26083
|
} as const;
|
|
25536
26084
|
export type NotificationControllerGetNotificationCategoryEnum = typeof NotificationControllerGetNotificationCategoryEnum[keyof typeof NotificationControllerGetNotificationCategoryEnum];
|
|
26085
|
+
/**
|
|
26086
|
+
* @export
|
|
26087
|
+
*/
|
|
26088
|
+
export const NotificationControllerGetNotificationTargetAudienceEnum = {
|
|
26089
|
+
Mobile: 'MOBILE',
|
|
26090
|
+
Dashboard: 'DASHBOARD'
|
|
26091
|
+
} as const;
|
|
26092
|
+
export type NotificationControllerGetNotificationTargetAudienceEnum = typeof NotificationControllerGetNotificationTargetAudienceEnum[keyof typeof NotificationControllerGetNotificationTargetAudienceEnum];
|
|
25537
26093
|
|
|
25538
26094
|
|
|
25539
26095
|
/**
|
|
@@ -28992,18 +29548,19 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28992
29548
|
},
|
|
28993
29549
|
/**
|
|
28994
29550
|
*
|
|
28995
|
-
* @param {
|
|
28996
|
-
* @param {number}
|
|
28997
|
-
* @param {
|
|
28998
|
-
* @param {
|
|
29551
|
+
* @param {number} page
|
|
29552
|
+
* @param {number} pageSize
|
|
29553
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
29554
|
+
* @param {string} [search]
|
|
28999
29555
|
* @param {*} [options] Override http request option.
|
|
29000
29556
|
* @throws {RequiredError}
|
|
29001
29557
|
*/
|
|
29002
|
-
|
|
29003
|
-
// verify required parameter '
|
|
29004
|
-
assertParamExists('
|
|
29005
|
-
|
|
29006
|
-
|
|
29558
|
+
rSVPV2ControllerGetAssociatedEvents: async (page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29559
|
+
// verify required parameter 'page' is not null or undefined
|
|
29560
|
+
assertParamExists('rSVPV2ControllerGetAssociatedEvents', 'page', page)
|
|
29561
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
29562
|
+
assertParamExists('rSVPV2ControllerGetAssociatedEvents', 'pageSize', pageSize)
|
|
29563
|
+
const localVarPath = `/v1/rsvp/v2/associated-events`;
|
|
29007
29564
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29008
29565
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29009
29566
|
let baseOptions;
|
|
@@ -29015,6 +29572,10 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29015
29572
|
const localVarHeaderParameter = {} as any;
|
|
29016
29573
|
const localVarQueryParameter = {} as any;
|
|
29017
29574
|
|
|
29575
|
+
// authentication bearer required
|
|
29576
|
+
// http bearer authentication required
|
|
29577
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29578
|
+
|
|
29018
29579
|
if (page !== undefined) {
|
|
29019
29580
|
localVarQueryParameter['page'] = page;
|
|
29020
29581
|
}
|
|
@@ -29023,8 +29584,12 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29023
29584
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
29024
29585
|
}
|
|
29025
29586
|
|
|
29026
|
-
if (
|
|
29027
|
-
localVarQueryParameter['
|
|
29587
|
+
if (filter !== undefined) {
|
|
29588
|
+
localVarQueryParameter['filter'] = filter;
|
|
29589
|
+
}
|
|
29590
|
+
|
|
29591
|
+
if (search !== undefined) {
|
|
29592
|
+
localVarQueryParameter['search'] = search;
|
|
29028
29593
|
}
|
|
29029
29594
|
|
|
29030
29595
|
|
|
@@ -29040,15 +29605,11 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29040
29605
|
},
|
|
29041
29606
|
/**
|
|
29042
29607
|
*
|
|
29043
|
-
* @param {string} id
|
|
29044
29608
|
* @param {*} [options] Override http request option.
|
|
29045
29609
|
* @throws {RequiredError}
|
|
29046
29610
|
*/
|
|
29047
|
-
|
|
29048
|
-
|
|
29049
|
-
assertParamExists('rSVPV2ControllerGetEventById', 'id', id)
|
|
29050
|
-
const localVarPath = `/v1/rsvp/v2/events/{id}`
|
|
29051
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29611
|
+
rSVPV2ControllerGetAssociatedEventsCount: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29612
|
+
const localVarPath = `/v1/rsvp/v2/associated-events/count`;
|
|
29052
29613
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29053
29614
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29054
29615
|
let baseOptions;
|
|
@@ -29060,6 +29621,10 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29060
29621
|
const localVarHeaderParameter = {} as any;
|
|
29061
29622
|
const localVarQueryParameter = {} as any;
|
|
29062
29623
|
|
|
29624
|
+
// authentication bearer required
|
|
29625
|
+
// http bearer authentication required
|
|
29626
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29627
|
+
|
|
29063
29628
|
|
|
29064
29629
|
|
|
29065
29630
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -29073,26 +29638,18 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29073
29638
|
},
|
|
29074
29639
|
/**
|
|
29075
29640
|
*
|
|
29076
|
-
* @param {string}
|
|
29077
|
-
* @param {number} page
|
|
29078
|
-
* @param {number} pageSize
|
|
29079
|
-
* @param {
|
|
29080
|
-
* @param {string} [venue]
|
|
29081
|
-
* @param {number} [lat]
|
|
29082
|
-
* @param {number} [lng]
|
|
29083
|
-
* @param {number} [distance]
|
|
29641
|
+
* @param {string} id
|
|
29642
|
+
* @param {number} [page]
|
|
29643
|
+
* @param {number} [pageSize]
|
|
29644
|
+
* @param {boolean} [isInvited]
|
|
29084
29645
|
* @param {*} [options] Override http request option.
|
|
29085
29646
|
* @throws {RequiredError}
|
|
29086
29647
|
*/
|
|
29087
|
-
|
|
29088
|
-
// verify required parameter '
|
|
29089
|
-
assertParamExists('
|
|
29090
|
-
|
|
29091
|
-
|
|
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)));
|
|
29648
|
+
rSVPV2ControllerGetAttendees: async (id: string, page?: number, pageSize?: number, isInvited?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29649
|
+
// verify required parameter 'id' is not null or undefined
|
|
29650
|
+
assertParamExists('rSVPV2ControllerGetAttendees', 'id', id)
|
|
29651
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/attendees`
|
|
29652
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
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;
|
|
@@ -29112,24 +29669,8 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29112
29669
|
localVarQueryParameter['pageSize'] = pageSize;
|
|
29113
29670
|
}
|
|
29114
29671
|
|
|
29115
|
-
if (
|
|
29116
|
-
localVarQueryParameter['
|
|
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;
|
|
29672
|
+
if (isInvited !== undefined) {
|
|
29673
|
+
localVarQueryParameter['isInvited'] = isInvited;
|
|
29133
29674
|
}
|
|
29134
29675
|
|
|
29135
29676
|
|
|
@@ -29145,9 +29686,161 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29145
29686
|
},
|
|
29146
29687
|
/**
|
|
29147
29688
|
*
|
|
29148
|
-
* @param {string}
|
|
29149
|
-
* @param {number} page
|
|
29150
|
-
* @param {number} pageSize
|
|
29689
|
+
* @param {string} id
|
|
29690
|
+
* @param {number} [page]
|
|
29691
|
+
* @param {number} [pageSize]
|
|
29692
|
+
* @param {*} [options] Override http request option.
|
|
29693
|
+
* @throws {RequiredError}
|
|
29694
|
+
*/
|
|
29695
|
+
rSVPV2ControllerGetBlasts: async (id: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29696
|
+
// verify required parameter 'id' is not null or undefined
|
|
29697
|
+
assertParamExists('rSVPV2ControllerGetBlasts', 'id', id)
|
|
29698
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/blasts`
|
|
29699
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29700
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29701
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29702
|
+
let baseOptions;
|
|
29703
|
+
if (configuration) {
|
|
29704
|
+
baseOptions = configuration.baseOptions;
|
|
29705
|
+
}
|
|
29706
|
+
|
|
29707
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29708
|
+
const localVarHeaderParameter = {} as any;
|
|
29709
|
+
const localVarQueryParameter = {} as any;
|
|
29710
|
+
|
|
29711
|
+
// authentication bearer required
|
|
29712
|
+
// http bearer authentication required
|
|
29713
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29714
|
+
|
|
29715
|
+
if (page !== undefined) {
|
|
29716
|
+
localVarQueryParameter['page'] = page;
|
|
29717
|
+
}
|
|
29718
|
+
|
|
29719
|
+
if (pageSize !== undefined) {
|
|
29720
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29721
|
+
}
|
|
29722
|
+
|
|
29723
|
+
|
|
29724
|
+
|
|
29725
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29726
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29727
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29728
|
+
|
|
29729
|
+
return {
|
|
29730
|
+
url: toPathString(localVarUrlObj),
|
|
29731
|
+
options: localVarRequestOptions,
|
|
29732
|
+
};
|
|
29733
|
+
},
|
|
29734
|
+
/**
|
|
29735
|
+
*
|
|
29736
|
+
* @param {string} id
|
|
29737
|
+
* @param {*} [options] Override http request option.
|
|
29738
|
+
* @throws {RequiredError}
|
|
29739
|
+
*/
|
|
29740
|
+
rSVPV2ControllerGetEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29741
|
+
// verify required parameter 'id' is not null or undefined
|
|
29742
|
+
assertParamExists('rSVPV2ControllerGetEventById', 'id', id)
|
|
29743
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}`
|
|
29744
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
29745
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29746
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29747
|
+
let baseOptions;
|
|
29748
|
+
if (configuration) {
|
|
29749
|
+
baseOptions = configuration.baseOptions;
|
|
29750
|
+
}
|
|
29751
|
+
|
|
29752
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29753
|
+
const localVarHeaderParameter = {} as any;
|
|
29754
|
+
const localVarQueryParameter = {} as any;
|
|
29755
|
+
|
|
29756
|
+
|
|
29757
|
+
|
|
29758
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29759
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29760
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29761
|
+
|
|
29762
|
+
return {
|
|
29763
|
+
url: toPathString(localVarUrlObj),
|
|
29764
|
+
options: localVarRequestOptions,
|
|
29765
|
+
};
|
|
29766
|
+
},
|
|
29767
|
+
/**
|
|
29768
|
+
*
|
|
29769
|
+
* @param {string} businessId
|
|
29770
|
+
* @param {number} page
|
|
29771
|
+
* @param {number} pageSize
|
|
29772
|
+
* @param {string} [search]
|
|
29773
|
+
* @param {string} [venue]
|
|
29774
|
+
* @param {number} [lat]
|
|
29775
|
+
* @param {number} [lng]
|
|
29776
|
+
* @param {number} [distance]
|
|
29777
|
+
* @param {*} [options] Override http request option.
|
|
29778
|
+
* @throws {RequiredError}
|
|
29779
|
+
*/
|
|
29780
|
+
rSVPV2ControllerGetEventsByBusiness: async (businessId: string, page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29781
|
+
// verify required parameter 'businessId' is not null or undefined
|
|
29782
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'businessId', businessId)
|
|
29783
|
+
// verify required parameter 'page' is not null or undefined
|
|
29784
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'page', page)
|
|
29785
|
+
// verify required parameter 'pageSize' is not null or undefined
|
|
29786
|
+
assertParamExists('rSVPV2ControllerGetEventsByBusiness', 'pageSize', pageSize)
|
|
29787
|
+
const localVarPath = `/v1/rsvp/v2/events/business/{businessId}`
|
|
29788
|
+
.replace(`{${"businessId"}}`, encodeURIComponent(String(businessId)));
|
|
29789
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29790
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29791
|
+
let baseOptions;
|
|
29792
|
+
if (configuration) {
|
|
29793
|
+
baseOptions = configuration.baseOptions;
|
|
29794
|
+
}
|
|
29795
|
+
|
|
29796
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29797
|
+
const localVarHeaderParameter = {} as any;
|
|
29798
|
+
const localVarQueryParameter = {} as any;
|
|
29799
|
+
|
|
29800
|
+
if (page !== undefined) {
|
|
29801
|
+
localVarQueryParameter['page'] = page;
|
|
29802
|
+
}
|
|
29803
|
+
|
|
29804
|
+
if (pageSize !== undefined) {
|
|
29805
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29806
|
+
}
|
|
29807
|
+
|
|
29808
|
+
if (search !== undefined) {
|
|
29809
|
+
localVarQueryParameter['search'] = search;
|
|
29810
|
+
}
|
|
29811
|
+
|
|
29812
|
+
if (venue !== undefined) {
|
|
29813
|
+
localVarQueryParameter['venue'] = venue;
|
|
29814
|
+
}
|
|
29815
|
+
|
|
29816
|
+
if (lat !== undefined) {
|
|
29817
|
+
localVarQueryParameter['lat'] = lat;
|
|
29818
|
+
}
|
|
29819
|
+
|
|
29820
|
+
if (lng !== undefined) {
|
|
29821
|
+
localVarQueryParameter['lng'] = lng;
|
|
29822
|
+
}
|
|
29823
|
+
|
|
29824
|
+
if (distance !== undefined) {
|
|
29825
|
+
localVarQueryParameter['distance'] = distance;
|
|
29826
|
+
}
|
|
29827
|
+
|
|
29828
|
+
|
|
29829
|
+
|
|
29830
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29831
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29832
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29833
|
+
|
|
29834
|
+
return {
|
|
29835
|
+
url: toPathString(localVarUrlObj),
|
|
29836
|
+
options: localVarRequestOptions,
|
|
29837
|
+
};
|
|
29838
|
+
},
|
|
29839
|
+
/**
|
|
29840
|
+
*
|
|
29841
|
+
* @param {string} venueId
|
|
29842
|
+
* @param {number} page
|
|
29843
|
+
* @param {number} pageSize
|
|
29151
29844
|
* @param {string} [search]
|
|
29152
29845
|
* @param {string} [venue]
|
|
29153
29846
|
* @param {number} [lat]
|
|
@@ -29206,6 +29899,54 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29206
29899
|
|
|
29207
29900
|
|
|
29208
29901
|
|
|
29902
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29903
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29904
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29905
|
+
|
|
29906
|
+
return {
|
|
29907
|
+
url: toPathString(localVarUrlObj),
|
|
29908
|
+
options: localVarRequestOptions,
|
|
29909
|
+
};
|
|
29910
|
+
},
|
|
29911
|
+
/**
|
|
29912
|
+
*
|
|
29913
|
+
* @param {number} [page]
|
|
29914
|
+
* @param {number} [pageSize]
|
|
29915
|
+
* @param {string} [search]
|
|
29916
|
+
* @param {*} [options] Override http request option.
|
|
29917
|
+
* @throws {RequiredError}
|
|
29918
|
+
*/
|
|
29919
|
+
rSVPV2ControllerGetFavoriteRSVPEvents: async (page?: number, pageSize?: number, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29920
|
+
const localVarPath = `/v1/rsvp/v2/event/favorites`;
|
|
29921
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29922
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29923
|
+
let baseOptions;
|
|
29924
|
+
if (configuration) {
|
|
29925
|
+
baseOptions = configuration.baseOptions;
|
|
29926
|
+
}
|
|
29927
|
+
|
|
29928
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
29929
|
+
const localVarHeaderParameter = {} as any;
|
|
29930
|
+
const localVarQueryParameter = {} as any;
|
|
29931
|
+
|
|
29932
|
+
// authentication bearer required
|
|
29933
|
+
// http bearer authentication required
|
|
29934
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29935
|
+
|
|
29936
|
+
if (page !== undefined) {
|
|
29937
|
+
localVarQueryParameter['page'] = page;
|
|
29938
|
+
}
|
|
29939
|
+
|
|
29940
|
+
if (pageSize !== undefined) {
|
|
29941
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
29942
|
+
}
|
|
29943
|
+
|
|
29944
|
+
if (search !== undefined) {
|
|
29945
|
+
localVarQueryParameter['search'] = search;
|
|
29946
|
+
}
|
|
29947
|
+
|
|
29948
|
+
|
|
29949
|
+
|
|
29209
29950
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29210
29951
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29211
29952
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -29620,6 +30361,49 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29620
30361
|
options: localVarRequestOptions,
|
|
29621
30362
|
};
|
|
29622
30363
|
},
|
|
30364
|
+
/**
|
|
30365
|
+
*
|
|
30366
|
+
* @param {string} id
|
|
30367
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
30368
|
+
* @param {*} [options] Override http request option.
|
|
30369
|
+
* @throws {RequiredError}
|
|
30370
|
+
*/
|
|
30371
|
+
rSVPV2ControllerSendBlast: async (id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30372
|
+
// verify required parameter 'id' is not null or undefined
|
|
30373
|
+
assertParamExists('rSVPV2ControllerSendBlast', 'id', id)
|
|
30374
|
+
// verify required parameter 'createRSVPBlastDTO' is not null or undefined
|
|
30375
|
+
assertParamExists('rSVPV2ControllerSendBlast', 'createRSVPBlastDTO', createRSVPBlastDTO)
|
|
30376
|
+
const localVarPath = `/v1/rsvp/v2/events/{id}/blasts`
|
|
30377
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
30378
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30379
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
30380
|
+
let baseOptions;
|
|
30381
|
+
if (configuration) {
|
|
30382
|
+
baseOptions = configuration.baseOptions;
|
|
30383
|
+
}
|
|
30384
|
+
|
|
30385
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
30386
|
+
const localVarHeaderParameter = {} as any;
|
|
30387
|
+
const localVarQueryParameter = {} as any;
|
|
30388
|
+
|
|
30389
|
+
// authentication bearer required
|
|
30390
|
+
// http bearer authentication required
|
|
30391
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
30392
|
+
|
|
30393
|
+
|
|
30394
|
+
|
|
30395
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
30396
|
+
|
|
30397
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
30398
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
30399
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
30400
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createRSVPBlastDTO, localVarRequestOptions, configuration)
|
|
30401
|
+
|
|
30402
|
+
return {
|
|
30403
|
+
url: toPathString(localVarUrlObj),
|
|
30404
|
+
options: localVarRequestOptions,
|
|
30405
|
+
};
|
|
30406
|
+
},
|
|
29623
30407
|
/**
|
|
29624
30408
|
*
|
|
29625
30409
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -29848,6 +30632,32 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29848
30632
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerFavoriteRSVPEventById']?.[localVarOperationServerIndex]?.url;
|
|
29849
30633
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29850
30634
|
},
|
|
30635
|
+
/**
|
|
30636
|
+
*
|
|
30637
|
+
* @param {number} page
|
|
30638
|
+
* @param {number} pageSize
|
|
30639
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
30640
|
+
* @param {string} [search]
|
|
30641
|
+
* @param {*} [options] Override http request option.
|
|
30642
|
+
* @throws {RequiredError}
|
|
30643
|
+
*/
|
|
30644
|
+
async rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30645
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options);
|
|
30646
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30647
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetAssociatedEvents']?.[localVarOperationServerIndex]?.url;
|
|
30648
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30649
|
+
},
|
|
30650
|
+
/**
|
|
30651
|
+
*
|
|
30652
|
+
* @param {*} [options] Override http request option.
|
|
30653
|
+
* @throws {RequiredError}
|
|
30654
|
+
*/
|
|
30655
|
+
async rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30656
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetAssociatedEventsCount(options);
|
|
30657
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30658
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetAssociatedEventsCount']?.[localVarOperationServerIndex]?.url;
|
|
30659
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30660
|
+
},
|
|
29851
30661
|
/**
|
|
29852
30662
|
*
|
|
29853
30663
|
* @param {string} id
|
|
@@ -29866,10 +30676,24 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29866
30676
|
/**
|
|
29867
30677
|
*
|
|
29868
30678
|
* @param {string} id
|
|
30679
|
+
* @param {number} [page]
|
|
30680
|
+
* @param {number} [pageSize]
|
|
29869
30681
|
* @param {*} [options] Override http request option.
|
|
29870
30682
|
* @throws {RequiredError}
|
|
29871
30683
|
*/
|
|
29872
|
-
async
|
|
30684
|
+
async rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30685
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetBlasts(id, page, pageSize, options);
|
|
30686
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30687
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetBlasts']?.[localVarOperationServerIndex]?.url;
|
|
30688
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30689
|
+
},
|
|
30690
|
+
/**
|
|
30691
|
+
*
|
|
30692
|
+
* @param {string} id
|
|
30693
|
+
* @param {*} [options] Override http request option.
|
|
30694
|
+
* @throws {RequiredError}
|
|
30695
|
+
*/
|
|
30696
|
+
async rSVPV2ControllerGetEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
29873
30697
|
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetEventById(id, options);
|
|
29874
30698
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29875
30699
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetEventById']?.[localVarOperationServerIndex]?.url;
|
|
@@ -29913,6 +30737,20 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29913
30737
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetEventsByVenue']?.[localVarOperationServerIndex]?.url;
|
|
29914
30738
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29915
30739
|
},
|
|
30740
|
+
/**
|
|
30741
|
+
*
|
|
30742
|
+
* @param {number} [page]
|
|
30743
|
+
* @param {number} [pageSize]
|
|
30744
|
+
* @param {string} [search]
|
|
30745
|
+
* @param {*} [options] Override http request option.
|
|
30746
|
+
* @throws {RequiredError}
|
|
30747
|
+
*/
|
|
30748
|
+
async rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30749
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options);
|
|
30750
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30751
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerGetFavoriteRSVPEvents']?.[localVarOperationServerIndex]?.url;
|
|
30752
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30753
|
+
},
|
|
29916
30754
|
/**
|
|
29917
30755
|
*
|
|
29918
30756
|
* @param {number} page
|
|
@@ -29986,7 +30824,7 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29986
30824
|
* @param {*} [options] Override http request option.
|
|
29987
30825
|
* @throws {RequiredError}
|
|
29988
30826
|
*/
|
|
29989
|
-
async rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
30827
|
+
async rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteRSVPResponseDTO>> {
|
|
29990
30828
|
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerInvite(id, inviteRSVPArrayDTO, options);
|
|
29991
30829
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29992
30830
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerInvite']?.[localVarOperationServerIndex]?.url;
|
|
@@ -30029,6 +30867,19 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
30029
30867
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerRsvpFavorites']?.[localVarOperationServerIndex]?.url;
|
|
30030
30868
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30031
30869
|
},
|
|
30870
|
+
/**
|
|
30871
|
+
*
|
|
30872
|
+
* @param {string} id
|
|
30873
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
30874
|
+
* @param {*} [options] Override http request option.
|
|
30875
|
+
* @throws {RequiredError}
|
|
30876
|
+
*/
|
|
30877
|
+
async rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
30878
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options);
|
|
30879
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30880
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerSendBlast']?.[localVarOperationServerIndex]?.url;
|
|
30881
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30882
|
+
},
|
|
30032
30883
|
/**
|
|
30033
30884
|
*
|
|
30034
30885
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30150,6 +31001,26 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30150
31001
|
rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteResponsedDTO> {
|
|
30151
31002
|
return localVarFp.rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(axios, basePath));
|
|
30152
31003
|
},
|
|
31004
|
+
/**
|
|
31005
|
+
*
|
|
31006
|
+
* @param {number} page
|
|
31007
|
+
* @param {number} pageSize
|
|
31008
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
31009
|
+
* @param {string} [search]
|
|
31010
|
+
* @param {*} [options] Override http request option.
|
|
31011
|
+
* @throws {RequiredError}
|
|
31012
|
+
*/
|
|
31013
|
+
rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31014
|
+
return localVarFp.rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options).then((request) => request(axios, basePath));
|
|
31015
|
+
},
|
|
31016
|
+
/**
|
|
31017
|
+
*
|
|
31018
|
+
* @param {*} [options] Override http request option.
|
|
31019
|
+
* @throws {RequiredError}
|
|
31020
|
+
*/
|
|
31021
|
+
rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31022
|
+
return localVarFp.rSVPV2ControllerGetAssociatedEventsCount(options).then((request) => request(axios, basePath));
|
|
31023
|
+
},
|
|
30153
31024
|
/**
|
|
30154
31025
|
*
|
|
30155
31026
|
* @param {string} id
|
|
@@ -30162,6 +31033,17 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30162
31033
|
rSVPV2ControllerGetAttendees(id: string, page?: number, pageSize?: number, isInvited?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30163
31034
|
return localVarFp.rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options).then((request) => request(axios, basePath));
|
|
30164
31035
|
},
|
|
31036
|
+
/**
|
|
31037
|
+
*
|
|
31038
|
+
* @param {string} id
|
|
31039
|
+
* @param {number} [page]
|
|
31040
|
+
* @param {number} [pageSize]
|
|
31041
|
+
* @param {*} [options] Override http request option.
|
|
31042
|
+
* @throws {RequiredError}
|
|
31043
|
+
*/
|
|
31044
|
+
rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31045
|
+
return localVarFp.rSVPV2ControllerGetBlasts(id, page, pageSize, options).then((request) => request(axios, basePath));
|
|
31046
|
+
},
|
|
30165
31047
|
/**
|
|
30166
31048
|
*
|
|
30167
31049
|
* @param {string} id
|
|
@@ -30203,6 +31085,17 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30203
31085
|
rSVPV2ControllerGetEventsByVenue(venueId: string, page: number, pageSize: number, search?: string, venue?: string, lat?: number, lng?: number, distance?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30204
31086
|
return localVarFp.rSVPV2ControllerGetEventsByVenue(venueId, page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(axios, basePath));
|
|
30205
31087
|
},
|
|
31088
|
+
/**
|
|
31089
|
+
*
|
|
31090
|
+
* @param {number} [page]
|
|
31091
|
+
* @param {number} [pageSize]
|
|
31092
|
+
* @param {string} [search]
|
|
31093
|
+
* @param {*} [options] Override http request option.
|
|
31094
|
+
* @throws {RequiredError}
|
|
31095
|
+
*/
|
|
31096
|
+
rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31097
|
+
return localVarFp.rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options).then((request) => request(axios, basePath));
|
|
31098
|
+
},
|
|
30206
31099
|
/**
|
|
30207
31100
|
*
|
|
30208
31101
|
* @param {number} page
|
|
@@ -30264,7 +31157,7 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30264
31157
|
* @param {*} [options] Override http request option.
|
|
30265
31158
|
* @throws {RequiredError}
|
|
30266
31159
|
*/
|
|
30267
|
-
rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
31160
|
+
rSVPV2ControllerInvite(id: string, inviteRSVPArrayDTO: InviteRSVPArrayDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteRSVPResponseDTO> {
|
|
30268
31161
|
return localVarFp.rSVPV2ControllerInvite(id, inviteRSVPArrayDTO, options).then((request) => request(axios, basePath));
|
|
30269
31162
|
},
|
|
30270
31163
|
/**
|
|
@@ -30295,6 +31188,16 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30295
31188
|
rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoritedDTO> {
|
|
30296
31189
|
return localVarFp.rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
|
|
30297
31190
|
},
|
|
31191
|
+
/**
|
|
31192
|
+
*
|
|
31193
|
+
* @param {string} id
|
|
31194
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
31195
|
+
* @param {*} [options] Override http request option.
|
|
31196
|
+
* @throws {RequiredError}
|
|
31197
|
+
*/
|
|
31198
|
+
rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31199
|
+
return localVarFp.rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options).then((request) => request(axios, basePath));
|
|
31200
|
+
},
|
|
30298
31201
|
/**
|
|
30299
31202
|
*
|
|
30300
31203
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30423,6 +31326,30 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30423
31326
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(this.axios, this.basePath));
|
|
30424
31327
|
}
|
|
30425
31328
|
|
|
31329
|
+
/**
|
|
31330
|
+
*
|
|
31331
|
+
* @param {number} page
|
|
31332
|
+
* @param {number} pageSize
|
|
31333
|
+
* @param {RSVPV2ControllerGetAssociatedEventsFilterEnum} [filter]
|
|
31334
|
+
* @param {string} [search]
|
|
31335
|
+
* @param {*} [options] Override http request option.
|
|
31336
|
+
* @throws {RequiredError}
|
|
31337
|
+
* @memberof RSVPV2Api
|
|
31338
|
+
*/
|
|
31339
|
+
public rSVPV2ControllerGetAssociatedEvents(page: number, pageSize: number, filter?: RSVPV2ControllerGetAssociatedEventsFilterEnum, search?: string, options?: RawAxiosRequestConfig) {
|
|
31340
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAssociatedEvents(page, pageSize, filter, search, options).then((request) => request(this.axios, this.basePath));
|
|
31341
|
+
}
|
|
31342
|
+
|
|
31343
|
+
/**
|
|
31344
|
+
*
|
|
31345
|
+
* @param {*} [options] Override http request option.
|
|
31346
|
+
* @throws {RequiredError}
|
|
31347
|
+
* @memberof RSVPV2Api
|
|
31348
|
+
*/
|
|
31349
|
+
public rSVPV2ControllerGetAssociatedEventsCount(options?: RawAxiosRequestConfig) {
|
|
31350
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAssociatedEventsCount(options).then((request) => request(this.axios, this.basePath));
|
|
31351
|
+
}
|
|
31352
|
+
|
|
30426
31353
|
/**
|
|
30427
31354
|
*
|
|
30428
31355
|
* @param {string} id
|
|
@@ -30437,6 +31364,19 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30437
31364
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetAttendees(id, page, pageSize, isInvited, options).then((request) => request(this.axios, this.basePath));
|
|
30438
31365
|
}
|
|
30439
31366
|
|
|
31367
|
+
/**
|
|
31368
|
+
*
|
|
31369
|
+
* @param {string} id
|
|
31370
|
+
* @param {number} [page]
|
|
31371
|
+
* @param {number} [pageSize]
|
|
31372
|
+
* @param {*} [options] Override http request option.
|
|
31373
|
+
* @throws {RequiredError}
|
|
31374
|
+
* @memberof RSVPV2Api
|
|
31375
|
+
*/
|
|
31376
|
+
public rSVPV2ControllerGetBlasts(id: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) {
|
|
31377
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetBlasts(id, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
31378
|
+
}
|
|
31379
|
+
|
|
30440
31380
|
/**
|
|
30441
31381
|
*
|
|
30442
31382
|
* @param {string} id
|
|
@@ -30484,6 +31424,19 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30484
31424
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetEventsByVenue(venueId, page, pageSize, search, venue, lat, lng, distance, options).then((request) => request(this.axios, this.basePath));
|
|
30485
31425
|
}
|
|
30486
31426
|
|
|
31427
|
+
/**
|
|
31428
|
+
*
|
|
31429
|
+
* @param {number} [page]
|
|
31430
|
+
* @param {number} [pageSize]
|
|
31431
|
+
* @param {string} [search]
|
|
31432
|
+
* @param {*} [options] Override http request option.
|
|
31433
|
+
* @throws {RequiredError}
|
|
31434
|
+
* @memberof RSVPV2Api
|
|
31435
|
+
*/
|
|
31436
|
+
public rSVPV2ControllerGetFavoriteRSVPEvents(page?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig) {
|
|
31437
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerGetFavoriteRSVPEvents(page, pageSize, search, options).then((request) => request(this.axios, this.basePath));
|
|
31438
|
+
}
|
|
31439
|
+
|
|
30487
31440
|
/**
|
|
30488
31441
|
*
|
|
30489
31442
|
* @param {number} page
|
|
@@ -30592,6 +31545,18 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30592
31545
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30593
31546
|
}
|
|
30594
31547
|
|
|
31548
|
+
/**
|
|
31549
|
+
*
|
|
31550
|
+
* @param {string} id
|
|
31551
|
+
* @param {CreateRSVPBlastDTO} createRSVPBlastDTO
|
|
31552
|
+
* @param {*} [options] Override http request option.
|
|
31553
|
+
* @throws {RequiredError}
|
|
31554
|
+
* @memberof RSVPV2Api
|
|
31555
|
+
*/
|
|
31556
|
+
public rSVPV2ControllerSendBlast(id: string, createRSVPBlastDTO: CreateRSVPBlastDTO, options?: RawAxiosRequestConfig) {
|
|
31557
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerSendBlast(id, createRSVPBlastDTO, options).then((request) => request(this.axios, this.basePath));
|
|
31558
|
+
}
|
|
31559
|
+
|
|
30595
31560
|
/**
|
|
30596
31561
|
*
|
|
30597
31562
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30628,6 +31593,268 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30628
31593
|
}
|
|
30629
31594
|
}
|
|
30630
31595
|
|
|
31596
|
+
/**
|
|
31597
|
+
* @export
|
|
31598
|
+
*/
|
|
31599
|
+
export const RSVPV2ControllerGetAssociatedEventsFilterEnum = {
|
|
31600
|
+
Upcoming: 'upcoming',
|
|
31601
|
+
Past: 'past',
|
|
31602
|
+
Declined: 'declined',
|
|
31603
|
+
All: 'all'
|
|
31604
|
+
} as const;
|
|
31605
|
+
export type RSVPV2ControllerGetAssociatedEventsFilterEnum = typeof RSVPV2ControllerGetAssociatedEventsFilterEnum[keyof typeof RSVPV2ControllerGetAssociatedEventsFilterEnum];
|
|
31606
|
+
|
|
31607
|
+
|
|
31608
|
+
/**
|
|
31609
|
+
* RSVPV2MutualAvailabilityApi - axios parameter creator
|
|
31610
|
+
* @export
|
|
31611
|
+
*/
|
|
31612
|
+
export const RSVPV2MutualAvailabilityApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
31613
|
+
return {
|
|
31614
|
+
/**
|
|
31615
|
+
*
|
|
31616
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31617
|
+
* @param {*} [options] Override http request option.
|
|
31618
|
+
* @throws {RequiredError}
|
|
31619
|
+
*/
|
|
31620
|
+
mutualAvailabilityControllerCheckMutualAvailability: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31621
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
31622
|
+
assertParamExists('mutualAvailabilityControllerCheckMutualAvailability', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
31623
|
+
const localVarPath = `/v2/rsvp/mutual-availability/check`;
|
|
31624
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31625
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31626
|
+
let baseOptions;
|
|
31627
|
+
if (configuration) {
|
|
31628
|
+
baseOptions = configuration.baseOptions;
|
|
31629
|
+
}
|
|
31630
|
+
|
|
31631
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
31632
|
+
const localVarHeaderParameter = {} as any;
|
|
31633
|
+
const localVarQueryParameter = {} as any;
|
|
31634
|
+
|
|
31635
|
+
// authentication bearer required
|
|
31636
|
+
// http bearer authentication required
|
|
31637
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
31638
|
+
|
|
31639
|
+
|
|
31640
|
+
|
|
31641
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
31642
|
+
|
|
31643
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31644
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31645
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
31646
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
31647
|
+
|
|
31648
|
+
return {
|
|
31649
|
+
url: toPathString(localVarUrlObj),
|
|
31650
|
+
options: localVarRequestOptions,
|
|
31651
|
+
};
|
|
31652
|
+
},
|
|
31653
|
+
/**
|
|
31654
|
+
*
|
|
31655
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31656
|
+
* @param {*} [options] Override http request option.
|
|
31657
|
+
* @throws {RequiredError}
|
|
31658
|
+
*/
|
|
31659
|
+
mutualAvailabilityControllerFindMoreAvailableTimes: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31660
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
31661
|
+
assertParamExists('mutualAvailabilityControllerFindMoreAvailableTimes', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
31662
|
+
const localVarPath = `/v2/rsvp/mutual-availability/more-times`;
|
|
31663
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31664
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31665
|
+
let baseOptions;
|
|
31666
|
+
if (configuration) {
|
|
31667
|
+
baseOptions = configuration.baseOptions;
|
|
31668
|
+
}
|
|
31669
|
+
|
|
31670
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
31671
|
+
const localVarHeaderParameter = {} as any;
|
|
31672
|
+
const localVarQueryParameter = {} as any;
|
|
31673
|
+
|
|
31674
|
+
// authentication bearer required
|
|
31675
|
+
// http bearer authentication required
|
|
31676
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
31677
|
+
|
|
31678
|
+
|
|
31679
|
+
|
|
31680
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
31681
|
+
|
|
31682
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31683
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31684
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
31685
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
31686
|
+
|
|
31687
|
+
return {
|
|
31688
|
+
url: toPathString(localVarUrlObj),
|
|
31689
|
+
options: localVarRequestOptions,
|
|
31690
|
+
};
|
|
31691
|
+
},
|
|
31692
|
+
/**
|
|
31693
|
+
*
|
|
31694
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31695
|
+
* @param {*} [options] Override http request option.
|
|
31696
|
+
* @throws {RequiredError}
|
|
31697
|
+
*/
|
|
31698
|
+
mutualAvailabilityControllerGetAvailabilityDetails: async (checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
31699
|
+
// verify required parameter 'checkMutualAvailabilityPayloadDTO' is not null or undefined
|
|
31700
|
+
assertParamExists('mutualAvailabilityControllerGetAvailabilityDetails', 'checkMutualAvailabilityPayloadDTO', checkMutualAvailabilityPayloadDTO)
|
|
31701
|
+
const localVarPath = `/v2/rsvp/mutual-availability/details`;
|
|
31702
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
31703
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
31704
|
+
let baseOptions;
|
|
31705
|
+
if (configuration) {
|
|
31706
|
+
baseOptions = configuration.baseOptions;
|
|
31707
|
+
}
|
|
31708
|
+
|
|
31709
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
31710
|
+
const localVarHeaderParameter = {} as any;
|
|
31711
|
+
const localVarQueryParameter = {} as any;
|
|
31712
|
+
|
|
31713
|
+
// authentication bearer required
|
|
31714
|
+
// http bearer authentication required
|
|
31715
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
31716
|
+
|
|
31717
|
+
|
|
31718
|
+
|
|
31719
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
31720
|
+
|
|
31721
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
31722
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
31723
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
31724
|
+
localVarRequestOptions.data = serializeDataIfNeeded(checkMutualAvailabilityPayloadDTO, localVarRequestOptions, configuration)
|
|
31725
|
+
|
|
31726
|
+
return {
|
|
31727
|
+
url: toPathString(localVarUrlObj),
|
|
31728
|
+
options: localVarRequestOptions,
|
|
31729
|
+
};
|
|
31730
|
+
},
|
|
31731
|
+
}
|
|
31732
|
+
};
|
|
31733
|
+
|
|
31734
|
+
/**
|
|
31735
|
+
* RSVPV2MutualAvailabilityApi - functional programming interface
|
|
31736
|
+
* @export
|
|
31737
|
+
*/
|
|
31738
|
+
export const RSVPV2MutualAvailabilityApiFp = function(configuration?: Configuration) {
|
|
31739
|
+
const localVarAxiosParamCreator = RSVPV2MutualAvailabilityApiAxiosParamCreator(configuration)
|
|
31740
|
+
return {
|
|
31741
|
+
/**
|
|
31742
|
+
*
|
|
31743
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31744
|
+
* @param {*} [options] Override http request option.
|
|
31745
|
+
* @throws {RequiredError}
|
|
31746
|
+
*/
|
|
31747
|
+
async mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31748
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options);
|
|
31749
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31750
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerCheckMutualAvailability']?.[localVarOperationServerIndex]?.url;
|
|
31751
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31752
|
+
},
|
|
31753
|
+
/**
|
|
31754
|
+
*
|
|
31755
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31756
|
+
* @param {*} [options] Override http request option.
|
|
31757
|
+
* @throws {RequiredError}
|
|
31758
|
+
*/
|
|
31759
|
+
async mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31760
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options);
|
|
31761
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31762
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerFindMoreAvailableTimes']?.[localVarOperationServerIndex]?.url;
|
|
31763
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31764
|
+
},
|
|
31765
|
+
/**
|
|
31766
|
+
*
|
|
31767
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31768
|
+
* @param {*} [options] Override http request option.
|
|
31769
|
+
* @throws {RequiredError}
|
|
31770
|
+
*/
|
|
31771
|
+
async mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
31772
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options);
|
|
31773
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
31774
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2MutualAvailabilityApi.mutualAvailabilityControllerGetAvailabilityDetails']?.[localVarOperationServerIndex]?.url;
|
|
31775
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
31776
|
+
},
|
|
31777
|
+
}
|
|
31778
|
+
};
|
|
31779
|
+
|
|
31780
|
+
/**
|
|
31781
|
+
* RSVPV2MutualAvailabilityApi - factory interface
|
|
31782
|
+
* @export
|
|
31783
|
+
*/
|
|
31784
|
+
export const RSVPV2MutualAvailabilityApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
31785
|
+
const localVarFp = RSVPV2MutualAvailabilityApiFp(configuration)
|
|
31786
|
+
return {
|
|
31787
|
+
/**
|
|
31788
|
+
*
|
|
31789
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31790
|
+
* @param {*} [options] Override http request option.
|
|
31791
|
+
* @throws {RequiredError}
|
|
31792
|
+
*/
|
|
31793
|
+
mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31794
|
+
return localVarFp.mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
31795
|
+
},
|
|
31796
|
+
/**
|
|
31797
|
+
*
|
|
31798
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31799
|
+
* @param {*} [options] Override http request option.
|
|
31800
|
+
* @throws {RequiredError}
|
|
31801
|
+
*/
|
|
31802
|
+
mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31803
|
+
return localVarFp.mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
31804
|
+
},
|
|
31805
|
+
/**
|
|
31806
|
+
*
|
|
31807
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31808
|
+
* @param {*} [options] Override http request option.
|
|
31809
|
+
* @throws {RequiredError}
|
|
31810
|
+
*/
|
|
31811
|
+
mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
31812
|
+
return localVarFp.mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options).then((request) => request(axios, basePath));
|
|
31813
|
+
},
|
|
31814
|
+
};
|
|
31815
|
+
};
|
|
31816
|
+
|
|
31817
|
+
/**
|
|
31818
|
+
* RSVPV2MutualAvailabilityApi - object-oriented interface
|
|
31819
|
+
* @export
|
|
31820
|
+
* @class RSVPV2MutualAvailabilityApi
|
|
31821
|
+
* @extends {BaseAPI}
|
|
31822
|
+
*/
|
|
31823
|
+
export class RSVPV2MutualAvailabilityApi extends BaseAPI {
|
|
31824
|
+
/**
|
|
31825
|
+
*
|
|
31826
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31827
|
+
* @param {*} [options] Override http request option.
|
|
31828
|
+
* @throws {RequiredError}
|
|
31829
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
31830
|
+
*/
|
|
31831
|
+
public mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
31832
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
31833
|
+
}
|
|
31834
|
+
|
|
31835
|
+
/**
|
|
31836
|
+
*
|
|
31837
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31838
|
+
* @param {*} [options] Override http request option.
|
|
31839
|
+
* @throws {RequiredError}
|
|
31840
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
31841
|
+
*/
|
|
31842
|
+
public mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
31843
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
31844
|
+
}
|
|
31845
|
+
|
|
31846
|
+
/**
|
|
31847
|
+
*
|
|
31848
|
+
* @param {CheckMutualAvailabilityPayloadDTO} checkMutualAvailabilityPayloadDTO
|
|
31849
|
+
* @param {*} [options] Override http request option.
|
|
31850
|
+
* @throws {RequiredError}
|
|
31851
|
+
* @memberof RSVPV2MutualAvailabilityApi
|
|
31852
|
+
*/
|
|
31853
|
+
public mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO, options?: RawAxiosRequestConfig) {
|
|
31854
|
+
return RSVPV2MutualAvailabilityApiFp(this.configuration).mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
31855
|
+
}
|
|
31856
|
+
}
|
|
31857
|
+
|
|
30631
31858
|
|
|
30632
31859
|
|
|
30633
31860
|
/**
|