@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 };
|
|
@@ -148,7 +148,6 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
148
148
|
return EventType2;
|
|
149
149
|
})(EventType || {});
|
|
150
150
|
var LocationType = /* @__PURE__ */ ((LocationType2) => {
|
|
151
|
-
LocationType2["UNKNOWN_LOCATION"] = "UNKNOWN_LOCATION";
|
|
152
151
|
LocationType2["VENUE"] = "VENUE";
|
|
153
152
|
LocationType2["ONLINE"] = "ONLINE";
|
|
154
153
|
return LocationType2;
|
|
@@ -164,7 +163,6 @@ var SubdivisionSubdivisionType = /* @__PURE__ */ ((SubdivisionSubdivisionType2)
|
|
|
164
163
|
return SubdivisionSubdivisionType2;
|
|
165
164
|
})(SubdivisionSubdivisionType || {});
|
|
166
165
|
var RecurrenceStatusStatus = /* @__PURE__ */ ((RecurrenceStatusStatus2) => {
|
|
167
|
-
RecurrenceStatusStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
168
166
|
RecurrenceStatusStatus2["ONE_TIME"] = "ONE_TIME";
|
|
169
167
|
RecurrenceStatusStatus2["RECURRING"] = "RECURRING";
|
|
170
168
|
RecurrenceStatusStatus2["RECURRING_UPCOMING"] = "RECURRING_UPCOMING";
|
|
@@ -173,7 +171,6 @@ var RecurrenceStatusStatus = /* @__PURE__ */ ((RecurrenceStatusStatus2) => {
|
|
|
173
171
|
return RecurrenceStatusStatus2;
|
|
174
172
|
})(RecurrenceStatusStatus || {});
|
|
175
173
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
176
|
-
Status2["UNKNOWN_EVENT_STATUS"] = "UNKNOWN_EVENT_STATUS";
|
|
177
174
|
Status2["UPCOMING"] = "UPCOMING";
|
|
178
175
|
Status2["STARTED"] = "STARTED";
|
|
179
176
|
Status2["ENDED"] = "ENDED";
|
|
@@ -192,7 +189,6 @@ var NotifyActionType = /* @__PURE__ */ ((NotifyActionType2) => {
|
|
|
192
189
|
return NotifyActionType2;
|
|
193
190
|
})(NotifyActionType || {});
|
|
194
191
|
var Timing = /* @__PURE__ */ ((Timing2) => {
|
|
195
|
-
Timing2["UNKNOWN_TIMING"] = "UNKNOWN_TIMING";
|
|
196
192
|
Timing2["NOW"] = "NOW";
|
|
197
193
|
Timing2["STARTS_IN_1_DAY"] = "STARTS_IN_1_DAY";
|
|
198
194
|
Timing2["STARTS_IN_3_DAYS"] = "STARTS_IN_3_DAYS";
|
|
@@ -246,7 +242,6 @@ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
|
246
242
|
return SortOrder2;
|
|
247
243
|
})(SortOrder || {});
|
|
248
244
|
var RequestedFieldsEnumRequestedFields = /* @__PURE__ */ ((RequestedFieldsEnumRequestedFields2) => {
|
|
249
|
-
RequestedFieldsEnumRequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
250
245
|
RequestedFieldsEnumRequestedFields2["GUEST_DETAILS"] = "GUEST_DETAILS";
|
|
251
246
|
RequestedFieldsEnumRequestedFields2["GUEST_TOTAL"] = "GUEST_TOTAL";
|
|
252
247
|
return RequestedFieldsEnumRequestedFields2;
|
|
@@ -257,7 +252,6 @@ var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
|
257
252
|
return OrderType2;
|
|
258
253
|
})(OrderType || {});
|
|
259
254
|
var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
260
|
-
RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
261
255
|
RequestedFields2["MEMBER_GUESTS"] = "MEMBER_GUESTS";
|
|
262
256
|
RequestedFields2["WAITLIST_COUNT"] = "WAITLIST_COUNT";
|
|
263
257
|
return RequestedFields2;
|
|
@@ -355,7 +349,9 @@ async function typedQueryGuests(query, options) {
|
|
|
355
349
|
}
|
|
356
350
|
}
|
|
357
351
|
var utils = {
|
|
358
|
-
|
|
352
|
+
query: {
|
|
353
|
+
...createQueryUtils()
|
|
354
|
+
}
|
|
359
355
|
};
|
|
360
356
|
export {
|
|
361
357
|
AttendanceStatus,
|