@wix/auto_sdk_events_guests 1.0.50 → 1.0.52
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/build/cjs/index.js +3 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +11 -21
- package/build/cjs/index.typings.js +3 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -18
- package/build/cjs/meta.js +0 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +3 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +11 -21
- package/build/es/index.typings.mjs +3 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -18
- package/build/es/meta.mjs +0 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +3 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +11 -21
- package/build/internal/cjs/index.typings.js +3 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -18
- package/build/internal/cjs/meta.js +0 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +3 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +11 -21
- package/build/internal/es/index.typings.mjs +3 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -18
- package/build/internal/es/meta.mjs +0 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -441,15 +441,13 @@ interface Location {
|
|
|
441
441
|
locationTbd?: boolean | null;
|
|
442
442
|
}
|
|
443
443
|
declare enum LocationType {
|
|
444
|
-
/** Unknown location type. */
|
|
445
|
-
UNKNOWN_LOCATION = "UNKNOWN_LOCATION",
|
|
446
444
|
/** Event is on-site at a specific physical location. */
|
|
447
445
|
VENUE = "VENUE",
|
|
448
446
|
/** Event is online, such as a virtual video conference. */
|
|
449
447
|
ONLINE = "ONLINE"
|
|
450
448
|
}
|
|
451
449
|
/** @enumType */
|
|
452
|
-
type LocationTypeWithLiterals = LocationType | '
|
|
450
|
+
type LocationTypeWithLiterals = LocationType | 'VENUE' | 'ONLINE';
|
|
453
451
|
/** Physical address */
|
|
454
452
|
interface CommonAddress extends CommonAddressStreetOneOf {
|
|
455
453
|
/** Street address. */
|
|
@@ -594,8 +592,6 @@ interface DateAndTimeSettings {
|
|
|
594
592
|
formatted?: Formatted;
|
|
595
593
|
}
|
|
596
594
|
declare enum RecurrenceStatusStatus {
|
|
597
|
-
/** Unknown recurrance status. */
|
|
598
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
599
595
|
/** Event happens only once and can last multiple days. */
|
|
600
596
|
ONE_TIME = "ONE_TIME",
|
|
601
597
|
/** A series of events that repeat. */
|
|
@@ -608,7 +604,7 @@ declare enum RecurrenceStatusStatus {
|
|
|
608
604
|
RECURRING_RECENTLY_CANCELED = "RECURRING_RECENTLY_CANCELED"
|
|
609
605
|
}
|
|
610
606
|
/** @enumType */
|
|
611
|
-
type RecurrenceStatusStatusWithLiterals = RecurrenceStatusStatus | '
|
|
607
|
+
type RecurrenceStatusStatusWithLiterals = RecurrenceStatusStatus | 'ONE_TIME' | 'RECURRING' | 'RECURRING_UPCOMING' | 'RECURRING_RECENTLY_ENDED' | 'RECURRING_RECENTLY_CANCELED';
|
|
612
608
|
interface Recurrences {
|
|
613
609
|
/**
|
|
614
610
|
* Individual event dates for recurring events.
|
|
@@ -680,8 +676,6 @@ interface Formatted {
|
|
|
680
676
|
endTime?: string | null;
|
|
681
677
|
}
|
|
682
678
|
declare enum Status {
|
|
683
|
-
/** Unknown event status. */
|
|
684
|
-
UNKNOWN_EVENT_STATUS = "UNKNOWN_EVENT_STATUS",
|
|
685
679
|
/** Event is published and scheduled to start. */
|
|
686
680
|
UPCOMING = "UPCOMING",
|
|
687
681
|
/** Event has started. */
|
|
@@ -694,7 +688,7 @@ declare enum Status {
|
|
|
694
688
|
DRAFT = "DRAFT"
|
|
695
689
|
}
|
|
696
690
|
/** @enumType */
|
|
697
|
-
type StatusWithLiterals = Status | '
|
|
691
|
+
type StatusWithLiterals = Status | 'UPCOMING' | 'STARTED' | 'ENDED' | 'CANCELED' | 'DRAFT';
|
|
698
692
|
interface NotifyGuestAction {
|
|
699
693
|
/** Event guest. */
|
|
700
694
|
guest?: EventGuest;
|
|
@@ -725,8 +719,6 @@ declare enum NotifyActionType {
|
|
|
725
719
|
/** @enumType */
|
|
726
720
|
type NotifyActionTypeWithLiterals = NotifyActionType | 'UNKNOWN' | 'EMAIL' | 'AUTOMATION_TRIGGER' | 'PUSH' | 'EVENT_CANCELED' | 'EVENT_STARTS' | 'ORDER_CANCELED';
|
|
727
721
|
declare enum Timing {
|
|
728
|
-
/** Unknown event start time. */
|
|
729
|
-
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
730
722
|
/** Instant. */
|
|
731
723
|
NOW = "NOW",
|
|
732
724
|
/** 24 hours prior. */
|
|
@@ -743,7 +735,7 @@ declare enum Timing {
|
|
|
743
735
|
STARTS_IN_2_HOURS = "STARTS_IN_2_HOURS"
|
|
744
736
|
}
|
|
745
737
|
/** @enumType */
|
|
746
|
-
type TimingWithLiterals = Timing | '
|
|
738
|
+
type TimingWithLiterals = Timing | 'NOW' | 'STARTS_IN_1_DAY' | 'STARTS_IN_3_DAYS' | 'STARTS_IN_1_WEEK' | 'STARTS_IN_1_HOUR' | 'STARTS_IN_30_MINUTES' | 'STARTS_IN_2_HOURS';
|
|
747
739
|
interface OrderDetails {
|
|
748
740
|
/** Order status */
|
|
749
741
|
orderStatus?: OrderStatusWithLiterals;
|
|
@@ -1226,15 +1218,13 @@ interface CursorPaging {
|
|
|
1226
1218
|
cursor?: string | null;
|
|
1227
1219
|
}
|
|
1228
1220
|
declare enum RequestedFieldsEnumRequestedFields {
|
|
1229
|
-
/** Unknown requested field. */
|
|
1230
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1231
1221
|
/** Returns `guestDetails` and `tickets`. */
|
|
1232
1222
|
GUEST_DETAILS = "GUEST_DETAILS",
|
|
1233
1223
|
/** Returns `totalGuests`. */
|
|
1234
1224
|
GUEST_TOTAL = "GUEST_TOTAL"
|
|
1235
1225
|
}
|
|
1236
1226
|
/** @enumType */
|
|
1237
|
-
type RequestedFieldsEnumRequestedFieldsWithLiterals = RequestedFieldsEnumRequestedFields | '
|
|
1227
|
+
type RequestedFieldsEnumRequestedFieldsWithLiterals = RequestedFieldsEnumRequestedFields | 'GUEST_DETAILS' | 'GUEST_TOTAL';
|
|
1238
1228
|
interface QueryEventGuestsResponse {
|
|
1239
1229
|
/** List of guests. */
|
|
1240
1230
|
guests?: EventGuest[];
|
|
@@ -1553,15 +1543,13 @@ interface ListGuestListPreviewsRequest {
|
|
|
1553
1543
|
fields?: RequestedFieldsWithLiterals[];
|
|
1554
1544
|
}
|
|
1555
1545
|
declare enum RequestedFields {
|
|
1556
|
-
/** Unknown requested field. */
|
|
1557
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
1558
1546
|
/** Member guests. */
|
|
1559
1547
|
MEMBER_GUESTS = "MEMBER_GUESTS",
|
|
1560
1548
|
/** Waitlist count. */
|
|
1561
1549
|
WAITLIST_COUNT = "WAITLIST_COUNT"
|
|
1562
1550
|
}
|
|
1563
1551
|
/** @enumType */
|
|
1564
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
1552
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'MEMBER_GUESTS' | 'WAITLIST_COUNT';
|
|
1565
1553
|
interface ListGuestListPreviewsResponse {
|
|
1566
1554
|
/**
|
|
1567
1555
|
* List of guests.
|
|
@@ -2000,9 +1988,11 @@ type EventGuestQuery = {
|
|
|
2000
1988
|
}[];
|
|
2001
1989
|
};
|
|
2002
1990
|
declare const utils: {
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
1991
|
+
query: {
|
|
1992
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<EventGuest, EventGuestQuerySpec, EventGuestQuery>;
|
|
1993
|
+
Filter: _wix_sdk_types.FilterFactory<EventGuest, EventGuestQuerySpec>;
|
|
1994
|
+
Sort: _wix_sdk_types.SortFactory<EventGuestQuerySpec>;
|
|
1995
|
+
};
|
|
2006
1996
|
};
|
|
2007
1997
|
|
|
2008
1998
|
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, AttendanceStatus, type AttendanceStatusWithLiterals, type BaseEventMetadata, type CheckIn, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonQueryWithEntityContext, type CommonStreetAddress, type CommonSubdivision, type ContactEventStatusUpdated, type CouponDiscount, type CursorPaging, type Cursors, type DateAndTimeSettings, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventDeleted, type EventDetails, type EventGuest, type EventGuestQuery, type EventGuestQuerySpec, type EventMetadata, EventType, type EventTypeWithLiterals, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type FormResponse, type FormSubmission, type Formatted, type FormattedAddress, type GuestCheckedIn, type GuestCheckedInEnvelope, type GuestCount, type GuestCountUpdate, type GuestCountUpdated, type GuestCreatedEnvelope, type GuestDeletedEnvelope, type GuestDetails, type GuestEventCanceled, type GuestEventCanceledEnvelope, type GuestEventStarts, type GuestEventStartsEnvelope, type GuestListPreview, type GuestOrderCanceled, type GuestOrderCanceledEnvelope, GuestType, type GuestTypeWithLiterals, type GuestUpdatedEnvelope, type GuestsQueryBuilder, type GuestsQueryResult, type IdentificationData, type IdentificationDataIdOneOf, type InputValue, type Invoice, type Item, type Language, type ListGuestListPreviewsRequest, type ListGuestListPreviewsResponse, type Location, LocationType, type LocationTypeWithLiterals, type MemberEventStatusUpdated, MemberEventStatusUpdatedEventType, type MemberEventStatusUpdatedEventTypeWithLiterals, type MemberGuest, type MemberGuests, type MessageEnvelope, type Money, NotifyActionType, type NotifyActionTypeWithLiterals, type NotifyGuestAction, type Occurrence, type OnlineConferencingLogin, type OrderConfirmed, type OrderDeleted, type OrderDetails, OrderStatus, type OrderStatusWithLiterals, OrderType, type OrderTypeWithLiterals, type OrderUpdated, type Paging, type PagingMetadataV2, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type PercentDiscount, type QueryEventGuestsOptions, type QueryEventGuestsRequest, type QueryEventGuestsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, RequestedFields, RequestedFieldsEnumRequestedFields, type RequestedFieldsEnumRequestedFieldsWithLiterals, type RequestedFieldsWithLiterals, type RestoreInfo, type SecondaryLanguagesRequest, type SecondaryLanguagesResponse, SortOrder, type SortOrderWithLiterals, type Sorting, type StandardDetails, Status, type StatusWithLiterals, type StreamEventGuestsRequest, type StreetAddress, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type Task, type TaskContext, type TaskKey, type Tax, TaxType, type TaxTypeWithLiterals, type Ticket, type TicketDetails, type TicketGuestDetails, Timing, type TimingWithLiterals, type UpdateGuestRequest, type UpdateGuestResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, onGuestCheckedIn, onGuestCreated, onGuestDeleted, onGuestEventCanceled, onGuestEventStarts, onGuestOrderCanceled, onGuestUpdated, queryGuests, typedQueryGuests, utils };
|
|
@@ -193,7 +193,6 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
193
193
|
return EventType2;
|
|
194
194
|
})(EventType || {});
|
|
195
195
|
var LocationType = /* @__PURE__ */ ((LocationType2) => {
|
|
196
|
-
LocationType2["UNKNOWN_LOCATION"] = "UNKNOWN_LOCATION";
|
|
197
196
|
LocationType2["VENUE"] = "VENUE";
|
|
198
197
|
LocationType2["ONLINE"] = "ONLINE";
|
|
199
198
|
return LocationType2;
|
|
@@ -209,7 +208,6 @@ var SubdivisionSubdivisionType = /* @__PURE__ */ ((SubdivisionSubdivisionType2)
|
|
|
209
208
|
return SubdivisionSubdivisionType2;
|
|
210
209
|
})(SubdivisionSubdivisionType || {});
|
|
211
210
|
var RecurrenceStatusStatus = /* @__PURE__ */ ((RecurrenceStatusStatus2) => {
|
|
212
|
-
RecurrenceStatusStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
213
211
|
RecurrenceStatusStatus2["ONE_TIME"] = "ONE_TIME";
|
|
214
212
|
RecurrenceStatusStatus2["RECURRING"] = "RECURRING";
|
|
215
213
|
RecurrenceStatusStatus2["RECURRING_UPCOMING"] = "RECURRING_UPCOMING";
|
|
@@ -218,7 +216,6 @@ var RecurrenceStatusStatus = /* @__PURE__ */ ((RecurrenceStatusStatus2) => {
|
|
|
218
216
|
return RecurrenceStatusStatus2;
|
|
219
217
|
})(RecurrenceStatusStatus || {});
|
|
220
218
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
221
|
-
Status2["UNKNOWN_EVENT_STATUS"] = "UNKNOWN_EVENT_STATUS";
|
|
222
219
|
Status2["UPCOMING"] = "UPCOMING";
|
|
223
220
|
Status2["STARTED"] = "STARTED";
|
|
224
221
|
Status2["ENDED"] = "ENDED";
|
|
@@ -237,7 +234,6 @@ var NotifyActionType = /* @__PURE__ */ ((NotifyActionType2) => {
|
|
|
237
234
|
return NotifyActionType2;
|
|
238
235
|
})(NotifyActionType || {});
|
|
239
236
|
var Timing = /* @__PURE__ */ ((Timing2) => {
|
|
240
|
-
Timing2["UNKNOWN_TIMING"] = "UNKNOWN_TIMING";
|
|
241
237
|
Timing2["NOW"] = "NOW";
|
|
242
238
|
Timing2["STARTS_IN_1_DAY"] = "STARTS_IN_1_DAY";
|
|
243
239
|
Timing2["STARTS_IN_3_DAYS"] = "STARTS_IN_3_DAYS";
|
|
@@ -291,7 +287,6 @@ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
|
291
287
|
return SortOrder2;
|
|
292
288
|
})(SortOrder || {});
|
|
293
289
|
var RequestedFieldsEnumRequestedFields = /* @__PURE__ */ ((RequestedFieldsEnumRequestedFields2) => {
|
|
294
|
-
RequestedFieldsEnumRequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
295
290
|
RequestedFieldsEnumRequestedFields2["GUEST_DETAILS"] = "GUEST_DETAILS";
|
|
296
291
|
RequestedFieldsEnumRequestedFields2["GUEST_TOTAL"] = "GUEST_TOTAL";
|
|
297
292
|
return RequestedFieldsEnumRequestedFields2;
|
|
@@ -302,7 +297,6 @@ var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
|
302
297
|
return OrderType2;
|
|
303
298
|
})(OrderType || {});
|
|
304
299
|
var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
305
|
-
RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
306
300
|
RequestedFields2["MEMBER_GUESTS"] = "MEMBER_GUESTS";
|
|
307
301
|
RequestedFields2["WAITLIST_COUNT"] = "WAITLIST_COUNT";
|
|
308
302
|
return RequestedFields2;
|
|
@@ -400,7 +394,9 @@ async function typedQueryGuests(query, options) {
|
|
|
400
394
|
}
|
|
401
395
|
}
|
|
402
396
|
var utils = {
|
|
403
|
-
|
|
397
|
+
query: {
|
|
398
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
399
|
+
}
|
|
404
400
|
};
|
|
405
401
|
// Annotate the CommonJS export names for ESM import in node:
|
|
406
402
|
0 && (module.exports = {
|