@wix/events 1.0.352 → 1.0.353
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/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +222 -142
- package/type-bundles/index.bundle.d.ts +222 -142
- package/type-bundles/meta.bundle.d.ts +73 -1
|
@@ -14471,6 +14471,41 @@ interface CancelRsvpGuestsCheckInResponse$1 {
|
|
|
14471
14471
|
/** Updated RSVP. */
|
|
14472
14472
|
rsvp?: Rsvp$1;
|
|
14473
14473
|
}
|
|
14474
|
+
interface ListRsvpSummaryRequest$1 {
|
|
14475
|
+
/** Event ID. */
|
|
14476
|
+
eventId: string[] | null;
|
|
14477
|
+
}
|
|
14478
|
+
interface ListRsvpSummaryResponse$1 {
|
|
14479
|
+
/** Rsvp summaries. */
|
|
14480
|
+
summaries?: V2RsvpSummary$1[];
|
|
14481
|
+
}
|
|
14482
|
+
interface V2RsvpSummary$1 {
|
|
14483
|
+
/**
|
|
14484
|
+
* Event id.
|
|
14485
|
+
* @readonly
|
|
14486
|
+
*/
|
|
14487
|
+
eventId?: string | null;
|
|
14488
|
+
/**
|
|
14489
|
+
* Yes count.
|
|
14490
|
+
* @readonly
|
|
14491
|
+
*/
|
|
14492
|
+
yesGuestCount?: number | null;
|
|
14493
|
+
/**
|
|
14494
|
+
* No count.
|
|
14495
|
+
* @readonly
|
|
14496
|
+
*/
|
|
14497
|
+
noGuestCount?: number | null;
|
|
14498
|
+
/**
|
|
14499
|
+
* Waitlist count.
|
|
14500
|
+
* @readonly
|
|
14501
|
+
*/
|
|
14502
|
+
waitlistGuestCount?: number | null;
|
|
14503
|
+
/**
|
|
14504
|
+
* Total rsvp count.
|
|
14505
|
+
* @readonly
|
|
14506
|
+
*/
|
|
14507
|
+
totalRsvpCount?: number | null;
|
|
14508
|
+
}
|
|
14474
14509
|
interface CommonStreetAddressNonNullableFields$5 {
|
|
14475
14510
|
number: string;
|
|
14476
14511
|
name: string;
|
|
@@ -15436,6 +15471,41 @@ interface CancelRsvpGuestsCheckInResponse {
|
|
|
15436
15471
|
/** Updated RSVP. */
|
|
15437
15472
|
rsvp?: Rsvp;
|
|
15438
15473
|
}
|
|
15474
|
+
interface ListRsvpSummaryRequest {
|
|
15475
|
+
/** Event ID. */
|
|
15476
|
+
eventId: string[] | null;
|
|
15477
|
+
}
|
|
15478
|
+
interface ListRsvpSummaryResponse {
|
|
15479
|
+
/** Rsvp summaries. */
|
|
15480
|
+
summaries?: V2RsvpSummary[];
|
|
15481
|
+
}
|
|
15482
|
+
interface V2RsvpSummary {
|
|
15483
|
+
/**
|
|
15484
|
+
* Event id.
|
|
15485
|
+
* @readonly
|
|
15486
|
+
*/
|
|
15487
|
+
eventId?: string | null;
|
|
15488
|
+
/**
|
|
15489
|
+
* Yes count.
|
|
15490
|
+
* @readonly
|
|
15491
|
+
*/
|
|
15492
|
+
yesGuestCount?: number | null;
|
|
15493
|
+
/**
|
|
15494
|
+
* No count.
|
|
15495
|
+
* @readonly
|
|
15496
|
+
*/
|
|
15497
|
+
noGuestCount?: number | null;
|
|
15498
|
+
/**
|
|
15499
|
+
* Waitlist count.
|
|
15500
|
+
* @readonly
|
|
15501
|
+
*/
|
|
15502
|
+
waitlistGuestCount?: number | null;
|
|
15503
|
+
/**
|
|
15504
|
+
* Total rsvp count.
|
|
15505
|
+
* @readonly
|
|
15506
|
+
*/
|
|
15507
|
+
totalRsvpCount?: number | null;
|
|
15508
|
+
}
|
|
15439
15509
|
interface CommonStreetAddressNonNullableFields$4 {
|
|
15440
15510
|
number: string;
|
|
15441
15511
|
name: string;
|
|
@@ -15604,6 +15674,7 @@ declare function checkInRsvpGuests(): __PublicMethodMetaInfo$2<'POST', {
|
|
|
15604
15674
|
declare function cancelRsvpGuestsCheckIn(): __PublicMethodMetaInfo$2<'POST', {
|
|
15605
15675
|
rsvpId: string;
|
|
15606
15676
|
}, CancelRsvpGuestsCheckInRequest, CancelRsvpGuestsCheckInRequest$1, CancelRsvpGuestsCheckInResponse & CancelRsvpGuestsCheckInResponseNonNullableFields, CancelRsvpGuestsCheckInResponse$1 & CancelRsvpGuestsCheckInResponseNonNullableFields$1>;
|
|
15677
|
+
declare function listRsvpSummary(): __PublicMethodMetaInfo$2<'GET', {}, ListRsvpSummaryRequest, ListRsvpSummaryRequest$1, ListRsvpSummaryResponse, ListRsvpSummaryResponse$1>;
|
|
15607
15678
|
|
|
15608
15679
|
declare const meta$2_bulkDeleteRsvpsByFilter: typeof bulkDeleteRsvpsByFilter;
|
|
15609
15680
|
declare const meta$2_bulkUpdateRsvp: typeof bulkUpdateRsvp;
|
|
@@ -15613,11 +15684,12 @@ declare const meta$2_countRsvps: typeof countRsvps;
|
|
|
15613
15684
|
declare const meta$2_createRsvp: typeof createRsvp;
|
|
15614
15685
|
declare const meta$2_deleteRsvp: typeof deleteRsvp;
|
|
15615
15686
|
declare const meta$2_getRsvp: typeof getRsvp;
|
|
15687
|
+
declare const meta$2_listRsvpSummary: typeof listRsvpSummary;
|
|
15616
15688
|
declare const meta$2_queryRsvps: typeof queryRsvps;
|
|
15617
15689
|
declare const meta$2_searchRsvps: typeof searchRsvps;
|
|
15618
15690
|
declare const meta$2_updateRsvp: typeof updateRsvp;
|
|
15619
15691
|
declare namespace meta$2 {
|
|
15620
|
-
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_bulkDeleteRsvpsByFilter as bulkDeleteRsvpsByFilter, meta$2_bulkUpdateRsvp as bulkUpdateRsvp, meta$2_cancelRsvpGuestsCheckIn as cancelRsvpGuestsCheckIn, meta$2_checkInRsvpGuests as checkInRsvpGuests, meta$2_countRsvps as countRsvps, meta$2_createRsvp as createRsvp, meta$2_deleteRsvp as deleteRsvp, meta$2_getRsvp as getRsvp, meta$2_queryRsvps as queryRsvps, meta$2_searchRsvps as searchRsvps, meta$2_updateRsvp as updateRsvp };
|
|
15692
|
+
export { type __PublicMethodMetaInfo$2 as __PublicMethodMetaInfo, meta$2_bulkDeleteRsvpsByFilter as bulkDeleteRsvpsByFilter, meta$2_bulkUpdateRsvp as bulkUpdateRsvp, meta$2_cancelRsvpGuestsCheckIn as cancelRsvpGuestsCheckIn, meta$2_checkInRsvpGuests as checkInRsvpGuests, meta$2_countRsvps as countRsvps, meta$2_createRsvp as createRsvp, meta$2_deleteRsvp as deleteRsvp, meta$2_getRsvp as getRsvp, meta$2_listRsvpSummary as listRsvpSummary, meta$2_queryRsvps as queryRsvps, meta$2_searchRsvps as searchRsvps, meta$2_updateRsvp as updateRsvp };
|
|
15621
15693
|
}
|
|
15622
15694
|
|
|
15623
15695
|
interface V3Event$1 {
|