@wix/events 1.0.79 → 1.0.80
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/src/events-guests-v1-guest.http.d.ts +1 -2
- package/build/cjs/src/events-guests-v1-guest.http.js +1 -43
- package/build/cjs/src/events-guests-v1-guest.http.js.map +1 -1
- package/build/cjs/src/events-guests-v1-guest.public.d.ts +1 -3
- package/build/cjs/src/events-guests-v1-guest.public.js +1 -7
- package/build/cjs/src/events-guests-v1-guest.public.js.map +1 -1
- package/build/cjs/src/events-guests-v1-guest.types.d.ts +45 -46
- package/build/cjs/src/events-guests-v1-guest.types.js.map +1 -1
- package/build/cjs/src/events-guests-v1-guest.universal.d.ts +45 -54
- package/build/cjs/src/events-guests-v1-guest.universal.js +1 -77
- package/build/cjs/src/events-guests-v1-guest.universal.js.map +1 -1
- package/build/es/src/events-guests-v1-guest.http.d.ts +1 -2
- package/build/es/src/events-guests-v1-guest.http.js +0 -41
- package/build/es/src/events-guests-v1-guest.http.js.map +1 -1
- package/build/es/src/events-guests-v1-guest.public.d.ts +1 -3
- package/build/es/src/events-guests-v1-guest.public.js +1 -6
- package/build/es/src/events-guests-v1-guest.public.js.map +1 -1
- package/build/es/src/events-guests-v1-guest.types.d.ts +45 -46
- package/build/es/src/events-guests-v1-guest.types.js.map +1 -1
- package/build/es/src/events-guests-v1-guest.universal.d.ts +45 -54
- package/build/es/src/events-guests-v1-guest.universal.js +0 -75
- package/build/es/src/events-guests-v1-guest.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { RequestOptionsFactory } from '@wix/sdk-types';
|
|
2
|
-
import { QueryEventGuestsRequest, QueryEventGuestsResponse
|
|
3
|
-
export declare function listEventGuestSummaries(payload: ListEventGuestSummariesRequest): RequestOptionsFactory<ListEventGuestSummariesResponse>;
|
|
2
|
+
import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-guests-v1-guest.types';
|
|
4
3
|
/**
|
|
5
4
|
* Creates a query to retrieve a list of guests.
|
|
6
5
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.queryEventGuests =
|
|
3
|
+
exports.queryEventGuests = void 0;
|
|
4
4
|
const ambassador_1 = require("@wix/metro-runtime/ambassador");
|
|
5
5
|
const metro_runtime_1 = require("@wix/metro-runtime");
|
|
6
6
|
const _address = { geocode: '_addressLocation' };
|
|
@@ -14,10 +14,6 @@ const _eventGuest = {
|
|
|
14
14
|
attendanceStatusUpdatedDate: 'google.protobuf.Timestamp',
|
|
15
15
|
guestDetails: '_guestDetails',
|
|
16
16
|
};
|
|
17
|
-
const _eventGuestSummary = {
|
|
18
|
-
lastAttended: '_eventGuest',
|
|
19
|
-
lastAttendedMembers: '_eventGuest',
|
|
20
|
-
};
|
|
21
17
|
const _formattedAddress = { address: '_address' };
|
|
22
18
|
const _formResponse = { inputValues: '_inputValue' };
|
|
23
19
|
const _guestDetails = { formResponse: '_formResponse' };
|
|
@@ -26,8 +22,6 @@ const _inputValue = {
|
|
|
26
22
|
dateTime: 'google.protobuf.Timestamp',
|
|
27
23
|
address: '_formattedAddress',
|
|
28
24
|
};
|
|
29
|
-
const _listEventGuestSummariesRequest = {};
|
|
30
|
-
const _listEventGuestSummariesResponse = { summaries: '_eventGuestSummary' };
|
|
31
25
|
const _queryEventGuestsRequest = {};
|
|
32
26
|
const _queryEventGuestsResponse = { guests: '_eventGuest' };
|
|
33
27
|
function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
|
|
@@ -77,42 +71,6 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
|
|
|
77
71
|
};
|
|
78
72
|
return (0, metro_runtime_1.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
79
73
|
}
|
|
80
|
-
function resolveWixEventsGuestsV1EventGuestsSummaryServiceUrl(opts) {
|
|
81
|
-
const domainToMappings = {};
|
|
82
|
-
return (0, metro_runtime_1.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
83
|
-
}
|
|
84
|
-
function listEventGuestSummaries(payload) {
|
|
85
|
-
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_listEventGuestSummariesRequest, {});
|
|
86
|
-
const { fromJSON: fromRes } = (0, ambassador_1.serializer)(_listEventGuestSummariesResponse, {
|
|
87
|
-
_address,
|
|
88
|
-
_addressLocation,
|
|
89
|
-
_eventGuest,
|
|
90
|
-
_eventGuestSummary,
|
|
91
|
-
_formResponse,
|
|
92
|
-
_formattedAddress,
|
|
93
|
-
_guestDetails,
|
|
94
|
-
_inputValue,
|
|
95
|
-
});
|
|
96
|
-
function __listEventGuestSummaries({ host }) {
|
|
97
|
-
const serializedData = toReq(payload);
|
|
98
|
-
const metadata = {
|
|
99
|
-
entityFqdn: 'wix.events.guests.v1.guest',
|
|
100
|
-
method: 'POST',
|
|
101
|
-
methodFqn: 'wix.events.guests.v1.EventGuestsSummaryService.ListEventGuestSummaries',
|
|
102
|
-
url: resolveWixEventsGuestsV1EventGuestsSummaryServiceUrl({
|
|
103
|
-
protoPath: '/v2/guests/summaries',
|
|
104
|
-
data: serializedData,
|
|
105
|
-
host,
|
|
106
|
-
}),
|
|
107
|
-
data: serializedData,
|
|
108
|
-
transformResponse: fromRes,
|
|
109
|
-
};
|
|
110
|
-
return metadata;
|
|
111
|
-
}
|
|
112
|
-
__listEventGuestSummaries.fromReq = fromReq;
|
|
113
|
-
return __listEventGuestSummaries;
|
|
114
|
-
}
|
|
115
|
-
exports.listEventGuestSummaries = listEventGuestSummaries;
|
|
116
74
|
/**
|
|
117
75
|
* Creates a query to retrieve a list of guests.
|
|
118
76
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.http.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.http.ts"],"names":[],"mappings":";;;AAAA,8DAA2D;AAC3D,sDAAgD;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.http.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.http.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@wix/sdk-types';
|
|
2
|
-
import { ListEventGuestSummariesOptions } from './events-guests-v1-guest.universal';
|
|
3
2
|
export declare const __metadata: {
|
|
4
3
|
PACKAGE_NAME: string;
|
|
5
4
|
};
|
|
6
|
-
export declare function listEventGuestSummaries(httpClient: HttpClient): (eventIds: string[], options?: ListEventGuestSummariesOptions | undefined) => Promise<import("./events-guests-v1-guest.universal").ListEventGuestSummariesResponse>;
|
|
7
5
|
export declare function queryGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
|
|
8
6
|
export { SubdivisionType, AttendanceStatus, GuestType, SortOrder, NotifyActionType, RsvpStatus, OrderStatus, TaxType, FeeName, FeeType, OrderType, } from './events-guests-v1-guest.universal';
|
|
9
|
-
export { EventGuest, TicketDetails, GuestDetails, FormResponse, InputValue, FormattedAddress, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, OnlineConferencingLogin,
|
|
7
|
+
export { EventGuest, TicketDetails, GuestDetails, FormResponse, InputValue, FormattedAddress, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, OnlineConferencingLogin, QueryEventGuestsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, CursorPaging, QueryEventGuestsResponse, PagingMetadataV2, Cursors, StreamEventGuestsRequest, TaskContext, Empty, NotifyGuestAction, SecondaryLanguagesRequest, SecondaryLanguagesResponse, RsvpCreated, Guest, CheckIn, RsvpUpdated, RsvpDeleted, OrderConfirmed, Ticket, Money, Invoice, Item, Discount, DiscountItem, DiscountItemDiscountOneOf, CouponDiscount, PaidPlanDiscount, PaidPlanDiscountDiscountOneOf, PercentDiscount, Tax, Fee, OrderUpdated, OrderDeleted, EventDeleted, Task, TaskKey, DeleteTicketGuestRequest, ListGuestListPreviewsRequest, ListGuestListPreviewsResponse, GuestListPreview, UpdateGuestRequest, GuestsQueryResult, GuestsQueryBuilder, } from './events-guests-v1-guest.universal';
|
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrderType = exports.FeeType = exports.FeeName = exports.TaxType = exports.OrderStatus = exports.RsvpStatus = exports.NotifyActionType = exports.SortOrder = exports.GuestType = exports.AttendanceStatus = exports.SubdivisionType = exports.queryGuests = exports.
|
|
3
|
+
exports.OrderType = exports.FeeType = exports.FeeName = exports.TaxType = exports.OrderStatus = exports.RsvpStatus = exports.NotifyActionType = exports.SortOrder = exports.GuestType = exports.AttendanceStatus = exports.SubdivisionType = exports.queryGuests = exports.__metadata = void 0;
|
|
4
4
|
const events_guests_v1_guest_universal_1 = require("./events-guests-v1-guest.universal");
|
|
5
5
|
exports.__metadata = { PACKAGE_NAME: '@wix/events' };
|
|
6
|
-
function listEventGuestSummaries(httpClient) {
|
|
7
|
-
return (eventIds, options) => (0, events_guests_v1_guest_universal_1.listEventGuestSummaries)(eventIds, options,
|
|
8
|
-
// @ts-ignore
|
|
9
|
-
{ httpClient });
|
|
10
|
-
}
|
|
11
|
-
exports.listEventGuestSummaries = listEventGuestSummaries;
|
|
12
6
|
function queryGuests(httpClient) {
|
|
13
7
|
return () => (0, events_guests_v1_guest_universal_1.queryGuests)(
|
|
14
8
|
// @ts-ignore
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.public.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.public.ts"],"names":[],"mappings":";;;AACA,
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.public.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.public.ts"],"names":[],"mappings":";;;AACA,yFAAyF;AAE5E,QAAA,UAAU,GAAG,EAAE,YAAY,EAAE,aAAa,EAAE,CAAC;AAE1D,SAAgB,WAAW,CAAC,UAAsB;IAChD,OAAO,GAAG,EAAE,CACV,IAAA,8CAAoB;IAClB,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAND,kCAMC;AAED,uFAY4C;AAX1C,mIAAA,eAAe,OAAA;AACf,oIAAA,gBAAgB,OAAA;AAChB,6HAAA,SAAS,OAAA;AACT,6HAAA,SAAS,OAAA;AACT,oIAAA,gBAAgB,OAAA;AAChB,8HAAA,UAAU,OAAA;AACV,+HAAA,WAAW,OAAA;AACX,2HAAA,OAAO,OAAA;AACP,2HAAA,OAAO,OAAA;AACP,2HAAA,OAAO,OAAA;AACP,6HAAA,SAAS,OAAA"}
|
|
@@ -151,52 +151,6 @@ export declare enum GuestType {
|
|
|
151
151
|
/** Ticket holder guest. */
|
|
152
152
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
153
153
|
}
|
|
154
|
-
export interface ListEventGuestSummariesRequest {
|
|
155
|
-
eventIds: string[];
|
|
156
|
-
cursorPaging?: CursorPaging;
|
|
157
|
-
}
|
|
158
|
-
export interface CursorPaging {
|
|
159
|
-
/** Number of items to load per page. */
|
|
160
|
-
limit?: number | null;
|
|
161
|
-
/**
|
|
162
|
-
* Pointer to the next or previous page in the list of results.
|
|
163
|
-
*
|
|
164
|
-
* You can get the relevant cursor token
|
|
165
|
-
* from the `pagingMetadata` object in the previous call's response.
|
|
166
|
-
* Not relevant for the first request.
|
|
167
|
-
*/
|
|
168
|
-
cursor?: string | null;
|
|
169
|
-
}
|
|
170
|
-
export interface ListEventGuestSummariesResponse {
|
|
171
|
-
/** List of guests. */
|
|
172
|
-
summaries?: EventGuestSummary[];
|
|
173
|
-
/** Metadata for the paginated results. */
|
|
174
|
-
pagingMetadata?: PagingMetadataV2;
|
|
175
|
-
}
|
|
176
|
-
export interface EventGuestSummary {
|
|
177
|
-
eventId?: string;
|
|
178
|
-
lastAttended?: EventGuest[];
|
|
179
|
-
lastAttendedMembers?: EventGuest[];
|
|
180
|
-
totalAttending?: number;
|
|
181
|
-
}
|
|
182
|
-
export interface PagingMetadataV2 {
|
|
183
|
-
/** Number of items returned in the response. */
|
|
184
|
-
count?: number | null;
|
|
185
|
-
/** Offset that was requested. */
|
|
186
|
-
offset?: number | null;
|
|
187
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
188
|
-
total?: number | null;
|
|
189
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
190
|
-
tooManyToCount?: boolean | null;
|
|
191
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
192
|
-
cursors?: Cursors;
|
|
193
|
-
}
|
|
194
|
-
export interface Cursors {
|
|
195
|
-
/** Cursor pointing to next page in the list of results. */
|
|
196
|
-
next?: string | null;
|
|
197
|
-
/** Cursor pointing to previous page in the list of results. */
|
|
198
|
-
prev?: string | null;
|
|
199
|
-
}
|
|
200
154
|
export interface QueryEventGuestsRequest {
|
|
201
155
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
202
156
|
query: QueryV2;
|
|
@@ -236,12 +190,42 @@ export interface Paging {
|
|
|
236
190
|
/** Number of items to skip in the current sort order. */
|
|
237
191
|
offset?: number | null;
|
|
238
192
|
}
|
|
193
|
+
export interface CursorPaging {
|
|
194
|
+
/** Number of items to load per page. */
|
|
195
|
+
limit?: number | null;
|
|
196
|
+
/**
|
|
197
|
+
* Pointer to the next or previous page in the list of results.
|
|
198
|
+
*
|
|
199
|
+
* You can get the relevant cursor token
|
|
200
|
+
* from the `pagingMetadata` object in the previous call's response.
|
|
201
|
+
* Not relevant for the first request.
|
|
202
|
+
*/
|
|
203
|
+
cursor?: string | null;
|
|
204
|
+
}
|
|
239
205
|
export interface QueryEventGuestsResponse {
|
|
240
206
|
/** List of guests. */
|
|
241
207
|
guests?: EventGuest[];
|
|
242
208
|
/** Metadata for the paginated results. */
|
|
243
209
|
pagingMetadata?: PagingMetadataV2;
|
|
244
210
|
}
|
|
211
|
+
export interface PagingMetadataV2 {
|
|
212
|
+
/** Number of items returned in the response. */
|
|
213
|
+
count?: number | null;
|
|
214
|
+
/** Offset that was requested. */
|
|
215
|
+
offset?: number | null;
|
|
216
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
217
|
+
total?: number | null;
|
|
218
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
219
|
+
tooManyToCount?: boolean | null;
|
|
220
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
221
|
+
cursors?: Cursors;
|
|
222
|
+
}
|
|
223
|
+
export interface Cursors {
|
|
224
|
+
/** Cursor pointing to next page in the list of results. */
|
|
225
|
+
next?: string | null;
|
|
226
|
+
/** Cursor pointing to previous page in the list of results. */
|
|
227
|
+
prev?: string | null;
|
|
228
|
+
}
|
|
245
229
|
export interface StreamEventGuestsRequest {
|
|
246
230
|
/** Filter. */
|
|
247
231
|
filter?: Record<string, any> | null;
|
|
@@ -711,6 +695,21 @@ export interface DeleteTicketGuestRequest {
|
|
|
711
695
|
/** Ticket number. */
|
|
712
696
|
ticketNumber?: string;
|
|
713
697
|
}
|
|
698
|
+
export interface ListGuestListPreviewsRequest {
|
|
699
|
+
eventIds?: string[];
|
|
700
|
+
cursorPaging?: CursorPaging;
|
|
701
|
+
}
|
|
702
|
+
export interface ListGuestListPreviewsResponse {
|
|
703
|
+
/** List of guests. */
|
|
704
|
+
previews?: GuestListPreview[];
|
|
705
|
+
/** Metadata for the paginated results. */
|
|
706
|
+
pagingMetadata?: PagingMetadataV2;
|
|
707
|
+
}
|
|
708
|
+
export interface GuestListPreview {
|
|
709
|
+
eventId?: string;
|
|
710
|
+
latestAttendingMembers?: EventGuest[];
|
|
711
|
+
totalAttending?: number;
|
|
712
|
+
}
|
|
714
713
|
export interface UpdateGuestRequest {
|
|
715
714
|
/** Updated guest */
|
|
716
715
|
guest?: EventGuest;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.types.ts"],"names":[],"mappings":";;;AAyHA,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAc1B;AAeD,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,qBAAqB;IACrB,mDAA+B,CAAA;IAC/B,iBAAiB;IACjB,2CAAuB,CAAA;IACvB,yBAAyB;IACzB,+CAA2B,CAAA;AAC7B,CAAC,EAPW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAO3B;AAED,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,kBAAkB;IAClB,0BAAa,CAAA;IACb,mBAAmB;IACnB,4BAAe,CAAA;IACf,2BAA2B;IAC3B,4CAA+B,CAAA;AACjC,CAAC,EAPW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAOpB;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.types.ts"],"names":[],"mappings":";;;AAyHA,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAc1B;AAeD,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,qBAAqB;IACrB,mDAA+B,CAAA;IAC/B,iBAAiB;IACjB,2CAAuB,CAAA;IACvB,yBAAyB;IACzB,+CAA2B,CAAA;AAC7B,CAAC,EAPW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAO3B;AAED,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,kBAAkB;IAClB,0BAAa,CAAA;IACb,mBAAmB;IACnB,4BAAe,CAAA;IACf,2BAA2B;IAC3B,4CAA+B,CAAA;AACjC,CAAC,EAPW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAOpB;AAmCD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;AA+DD,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAC1B,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,6DAAyC,CAAA;IACzC,iCAAa,CAAA;AACf,CAAC,EALW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAK3B;AAoDD,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,yBAAW,CAAA;IACX,uBAAS,CAAA;IACT,iCAAmB,CAAA;AACrB,CAAC,EAJW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAIrB;AA0GD,IAAY,WAiBX;AAjBD,WAAY,WAAW;IACrB,2DAA2D;IAC3D,kDAAmC,CAAA;IACnC,8CAA8C;IAC9C,4BAAa,CAAA;IACb,2FAA2F;IAC3F,kCAAmB,CAAA;IACnB,qCAAqC;IACrC,4BAAa,CAAA;IACb,iGAAiG;IACjG,kDAAmC,CAAA;IACnC,+CAA+C;IAC/C,sCAAuB,CAAA;IACvB,yBAAyB;IACzB,oCAAqB,CAAA;IACrB,iCAAiC;IACjC,oCAAqB,CAAA;AACvB,CAAC,EAjBW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAiBtB;AA2KD,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,0CAA0C;IAC1C,gCAAqB,CAAA;IACrB,gDAAgD;IAChD,0BAAe,CAAA;IACf,sDAAsD;IACtD,kDAAuC,CAAA;AACzC,CAAC,EAPW,OAAO,GAAP,eAAO,KAAP,eAAO,QAOlB;AAgBD,IAAY,OAGX;AAHD,WAAY,OAAO;IACjB,wDAAwD;IACxD,8BAAmB,CAAA;AACrB,CAAC,EAHW,OAAO,GAAP,eAAO,KAAP,eAAO,QAGlB;AAED,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,mDAAmD;IACnD,kCAAuB,CAAA;IACvB,mEAAmE;IACnE,wCAA6B,CAAA;IAC7B,mDAAmD;IACnD,0DAA+C,CAAA;AACjD,CAAC,EAPW,OAAO,GAAP,eAAO,KAAP,eAAO,QAOlB;AA+DD,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,yCAAyC;IACzC,sDAAyC,CAAA;IACzC,yCAAyC;IACzC,kDAAqC,CAAA;AACvC,CAAC,EALW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAKpB"}
|
|
@@ -157,52 +157,6 @@ export declare enum GuestType {
|
|
|
157
157
|
/** Ticket holder guest. */
|
|
158
158
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
159
159
|
}
|
|
160
|
-
export interface ListEventGuestSummariesRequest {
|
|
161
|
-
eventIds: string[];
|
|
162
|
-
cursorPaging?: CursorPaging;
|
|
163
|
-
}
|
|
164
|
-
export interface CursorPaging {
|
|
165
|
-
/** Number of items to load per page. */
|
|
166
|
-
limit?: number | null;
|
|
167
|
-
/**
|
|
168
|
-
* Pointer to the next or previous page in the list of results.
|
|
169
|
-
*
|
|
170
|
-
* You can get the relevant cursor token
|
|
171
|
-
* from the `pagingMetadata` object in the previous call's response.
|
|
172
|
-
* Not relevant for the first request.
|
|
173
|
-
*/
|
|
174
|
-
cursor?: string | null;
|
|
175
|
-
}
|
|
176
|
-
export interface ListEventGuestSummariesResponse {
|
|
177
|
-
/** List of guests. */
|
|
178
|
-
summaries?: EventGuestSummary[];
|
|
179
|
-
/** Metadata for the paginated results. */
|
|
180
|
-
pagingMetadata?: PagingMetadataV2;
|
|
181
|
-
}
|
|
182
|
-
export interface EventGuestSummary {
|
|
183
|
-
eventId?: string;
|
|
184
|
-
lastAttended?: EventGuest[];
|
|
185
|
-
lastAttendedMembers?: EventGuest[];
|
|
186
|
-
totalAttending?: number;
|
|
187
|
-
}
|
|
188
|
-
export interface PagingMetadataV2 {
|
|
189
|
-
/** Number of items returned in the response. */
|
|
190
|
-
count?: number | null;
|
|
191
|
-
/** Offset that was requested. */
|
|
192
|
-
offset?: number | null;
|
|
193
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
194
|
-
total?: number | null;
|
|
195
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
196
|
-
tooManyToCount?: boolean | null;
|
|
197
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
198
|
-
cursors?: Cursors;
|
|
199
|
-
}
|
|
200
|
-
export interface Cursors {
|
|
201
|
-
/** Cursor pointing to next page in the list of results. */
|
|
202
|
-
next?: string | null;
|
|
203
|
-
/** Cursor pointing to previous page in the list of results. */
|
|
204
|
-
prev?: string | null;
|
|
205
|
-
}
|
|
206
160
|
export interface QueryEventGuestsRequest {
|
|
207
161
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
208
162
|
query: QueryV2;
|
|
@@ -242,12 +196,42 @@ export interface Paging {
|
|
|
242
196
|
/** Number of items to skip in the current sort order. */
|
|
243
197
|
offset?: number | null;
|
|
244
198
|
}
|
|
199
|
+
export interface CursorPaging {
|
|
200
|
+
/** Number of items to load per page. */
|
|
201
|
+
limit?: number | null;
|
|
202
|
+
/**
|
|
203
|
+
* Pointer to the next or previous page in the list of results.
|
|
204
|
+
*
|
|
205
|
+
* You can get the relevant cursor token
|
|
206
|
+
* from the `pagingMetadata` object in the previous call's response.
|
|
207
|
+
* Not relevant for the first request.
|
|
208
|
+
*/
|
|
209
|
+
cursor?: string | null;
|
|
210
|
+
}
|
|
245
211
|
export interface QueryEventGuestsResponse {
|
|
246
212
|
/** List of guests. */
|
|
247
213
|
guests?: EventGuest[];
|
|
248
214
|
/** Metadata for the paginated results. */
|
|
249
215
|
pagingMetadata?: PagingMetadataV2;
|
|
250
216
|
}
|
|
217
|
+
export interface PagingMetadataV2 {
|
|
218
|
+
/** Number of items returned in the response. */
|
|
219
|
+
count?: number | null;
|
|
220
|
+
/** Offset that was requested. */
|
|
221
|
+
offset?: number | null;
|
|
222
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
223
|
+
total?: number | null;
|
|
224
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
225
|
+
tooManyToCount?: boolean | null;
|
|
226
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
227
|
+
cursors?: Cursors;
|
|
228
|
+
}
|
|
229
|
+
export interface Cursors {
|
|
230
|
+
/** Cursor pointing to next page in the list of results. */
|
|
231
|
+
next?: string | null;
|
|
232
|
+
/** Cursor pointing to previous page in the list of results. */
|
|
233
|
+
prev?: string | null;
|
|
234
|
+
}
|
|
251
235
|
export interface StreamEventGuestsRequest {
|
|
252
236
|
/** Filter. */
|
|
253
237
|
filter?: Record<string, any> | null;
|
|
@@ -717,20 +701,27 @@ export interface DeleteTicketGuestRequest {
|
|
|
717
701
|
/** Ticket number. */
|
|
718
702
|
ticketNumber?: string;
|
|
719
703
|
}
|
|
704
|
+
export interface ListGuestListPreviewsRequest {
|
|
705
|
+
eventIds?: string[];
|
|
706
|
+
cursorPaging?: CursorPaging;
|
|
707
|
+
}
|
|
708
|
+
export interface ListGuestListPreviewsResponse {
|
|
709
|
+
/** List of guests. */
|
|
710
|
+
previews?: GuestListPreview[];
|
|
711
|
+
/** Metadata for the paginated results. */
|
|
712
|
+
pagingMetadata?: PagingMetadataV2;
|
|
713
|
+
}
|
|
714
|
+
export interface GuestListPreview {
|
|
715
|
+
eventId?: string;
|
|
716
|
+
latestAttendingMembers?: EventGuest[];
|
|
717
|
+
totalAttending?: number;
|
|
718
|
+
}
|
|
720
719
|
export interface UpdateGuestRequest {
|
|
721
720
|
/** Updated guest */
|
|
722
721
|
guest?: EventGuest;
|
|
723
722
|
/** Guest revision */
|
|
724
723
|
revision?: string | null;
|
|
725
724
|
}
|
|
726
|
-
/** @public
|
|
727
|
-
* @documentationMaturity preview
|
|
728
|
-
* @requiredField eventIds
|
|
729
|
-
*/
|
|
730
|
-
export declare function listEventGuestSummaries(eventIds: string[], options?: ListEventGuestSummariesOptions): Promise<ListEventGuestSummariesResponse>;
|
|
731
|
-
export interface ListEventGuestSummariesOptions {
|
|
732
|
-
cursorPaging?: CursorPaging;
|
|
733
|
-
}
|
|
734
725
|
/**
|
|
735
726
|
* Creates a query to retrieve a list of guests.
|
|
736
727
|
*
|
|
@@ -28,18 +28,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
28
28
|
});
|
|
29
29
|
};
|
|
30
30
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31
|
-
exports.queryGuests = exports.
|
|
31
|
+
exports.queryGuests = exports.OrderType = exports.FeeType = exports.FeeName = exports.TaxType = exports.OrderStatus = exports.RsvpStatus = exports.NotifyActionType = exports.SortOrder = exports.GuestType = exports.AttendanceStatus = exports.SubdivisionType = exports.__debug = void 0;
|
|
32
32
|
const velo_1 = require("@wix/metro-runtime/velo");
|
|
33
33
|
const ambassadorWixEventsGuestsV1Guest = __importStar(require("./events-guests-v1-guest.http"));
|
|
34
34
|
// @ts-ignore
|
|
35
35
|
const motion_edm_autogen_query_wrapper_1 = require("@wix/motion-edm-autogen-query-wrapper");
|
|
36
36
|
let __verbose = false;
|
|
37
|
-
function __log(...args) {
|
|
38
|
-
__verbose && console.log(...args);
|
|
39
|
-
}
|
|
40
|
-
function __inspect(obj) {
|
|
41
|
-
return obj;
|
|
42
|
-
}
|
|
43
37
|
exports.__debug = {
|
|
44
38
|
verboseLogging: {
|
|
45
39
|
on: () => (__verbose = true),
|
|
@@ -150,82 +144,12 @@ var OrderType;
|
|
|
150
144
|
OrderType["ASSIGNED_TICKETS"] = "ASSIGNED_TICKETS";
|
|
151
145
|
})(OrderType = exports.OrderType || (exports.OrderType = {}));
|
|
152
146
|
const _eventGuest = { guestDetails: '_guestDetails' };
|
|
153
|
-
const _eventGuestSummary = {
|
|
154
|
-
lastAttended: '_eventGuest',
|
|
155
|
-
lastAttendedMembers: '_eventGuest',
|
|
156
|
-
};
|
|
157
147
|
const _formattedAddress = { address: 'wix.common.Address' };
|
|
158
148
|
const _formResponse = { inputValues: '_inputValue' };
|
|
159
149
|
const _guestDetails = { formResponse: '_formResponse' };
|
|
160
150
|
const _inputValue = { address: '_formattedAddress' };
|
|
161
|
-
const _listEventGuestSummariesRequest = {};
|
|
162
|
-
const _listEventGuestSummariesResponse = { summaries: '_eventGuestSummary' };
|
|
163
151
|
const _queryEventGuestsRequest = {};
|
|
164
152
|
const _queryEventGuestsResponse = { guests: '_eventGuest' };
|
|
165
|
-
/** @public
|
|
166
|
-
* @documentationMaturity preview
|
|
167
|
-
* @requiredField eventIds
|
|
168
|
-
*/
|
|
169
|
-
function listEventGuestSummaries(eventIds, options) {
|
|
170
|
-
var _a, _b, _c;
|
|
171
|
-
return __awaiter(this, arguments, void 0, function* () {
|
|
172
|
-
const requestTransformation = {
|
|
173
|
-
eventIds: '$[0]',
|
|
174
|
-
cursorPaging: '$[1].cursorPaging',
|
|
175
|
-
};
|
|
176
|
-
const responseTransformation = '$';
|
|
177
|
-
// @ts-ignore
|
|
178
|
-
const { httpClient, sideEffects } = arguments[2];
|
|
179
|
-
const { toAmbassadorRequest } = (0, velo_1.serializer)({
|
|
180
|
-
rootSchema: _listEventGuestSummariesRequest,
|
|
181
|
-
depSchemas: {},
|
|
182
|
-
fqdnTransformation: {
|
|
183
|
-
paths: [],
|
|
184
|
-
transformation: _fromVeloEntity,
|
|
185
|
-
},
|
|
186
|
-
customTransformation: requestTransformation,
|
|
187
|
-
});
|
|
188
|
-
const { fromJSON } = (0, velo_1.serializer)({
|
|
189
|
-
rootSchema: _listEventGuestSummariesResponse,
|
|
190
|
-
depSchemas: {
|
|
191
|
-
_eventGuest,
|
|
192
|
-
_eventGuestSummary,
|
|
193
|
-
_formResponse,
|
|
194
|
-
_formattedAddress,
|
|
195
|
-
_guestDetails,
|
|
196
|
-
_inputValue,
|
|
197
|
-
},
|
|
198
|
-
fqdnTransformation: {
|
|
199
|
-
paths: [
|
|
200
|
-
...[
|
|
201
|
-
'Array#summaries.Array#lastAttended',
|
|
202
|
-
'Array#summaries.Array#lastAttendedMembers',
|
|
203
|
-
],
|
|
204
|
-
],
|
|
205
|
-
transformation: _toVeloEntity,
|
|
206
|
-
},
|
|
207
|
-
customTransformation: responseTransformation,
|
|
208
|
-
});
|
|
209
|
-
const payload = toAmbassadorRequest([eventIds, options]);
|
|
210
|
-
const reqOpts = ambassadorWixEventsGuestsV1Guest.listEventGuestSummaries(payload);
|
|
211
|
-
__log(`"ListEventGuestSummaries" sending request with: ${__inspect(reqOpts)}`);
|
|
212
|
-
(_a = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onSiteCall) === null || _a === void 0 ? void 0 : _a.call(sideEffects);
|
|
213
|
-
try {
|
|
214
|
-
const result = yield httpClient.request(reqOpts);
|
|
215
|
-
(_b = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onSuccess) === null || _b === void 0 ? void 0 : _b.call(sideEffects, result);
|
|
216
|
-
return fromJSON(result.data);
|
|
217
|
-
}
|
|
218
|
-
catch (err) {
|
|
219
|
-
const transformedError = (0, velo_1.transformError)(err, requestTransformation, [
|
|
220
|
-
'eventIds',
|
|
221
|
-
'options',
|
|
222
|
-
]);
|
|
223
|
-
(_c = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onError) === null || _c === void 0 ? void 0 : _c.call(sideEffects, err);
|
|
224
|
-
throw transformedError;
|
|
225
|
-
}
|
|
226
|
-
});
|
|
227
|
-
}
|
|
228
|
-
exports.listEventGuestSummaries = listEventGuestSummaries;
|
|
229
153
|
/**
|
|
230
154
|
* Creates a query to retrieve a list of guests.
|
|
231
155
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.universal.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAIiC;AAEjC,gGAAkF;AAClF,aAAa;AACb,4FAA6E;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.universal.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { RequestOptionsFactory } from '@wix/sdk-types';
|
|
2
|
-
import { QueryEventGuestsRequest, QueryEventGuestsResponse
|
|
3
|
-
export declare function listEventGuestSummaries(payload: ListEventGuestSummariesRequest): RequestOptionsFactory<ListEventGuestSummariesResponse>;
|
|
2
|
+
import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-guests-v1-guest.types';
|
|
4
3
|
/**
|
|
5
4
|
* Creates a query to retrieve a list of guests.
|
|
6
5
|
*
|
|
@@ -11,10 +11,6 @@ const _eventGuest = {
|
|
|
11
11
|
attendanceStatusUpdatedDate: 'google.protobuf.Timestamp',
|
|
12
12
|
guestDetails: '_guestDetails',
|
|
13
13
|
};
|
|
14
|
-
const _eventGuestSummary = {
|
|
15
|
-
lastAttended: '_eventGuest',
|
|
16
|
-
lastAttendedMembers: '_eventGuest',
|
|
17
|
-
};
|
|
18
14
|
const _formattedAddress = { address: '_address' };
|
|
19
15
|
const _formResponse = { inputValues: '_inputValue' };
|
|
20
16
|
const _guestDetails = { formResponse: '_formResponse' };
|
|
@@ -23,8 +19,6 @@ const _inputValue = {
|
|
|
23
19
|
dateTime: 'google.protobuf.Timestamp',
|
|
24
20
|
address: '_formattedAddress',
|
|
25
21
|
};
|
|
26
|
-
const _listEventGuestSummariesRequest = {};
|
|
27
|
-
const _listEventGuestSummariesResponse = { summaries: '_eventGuestSummary' };
|
|
28
22
|
const _queryEventGuestsRequest = {};
|
|
29
23
|
const _queryEventGuestsResponse = { guests: '_eventGuest' };
|
|
30
24
|
function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
|
|
@@ -74,41 +68,6 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
|
|
|
74
68
|
};
|
|
75
69
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
76
70
|
}
|
|
77
|
-
function resolveWixEventsGuestsV1EventGuestsSummaryServiceUrl(opts) {
|
|
78
|
-
const domainToMappings = {};
|
|
79
|
-
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
80
|
-
}
|
|
81
|
-
export function listEventGuestSummaries(payload) {
|
|
82
|
-
const { toJSON: toReq, fromJSON: fromReq } = serializer(_listEventGuestSummariesRequest, {});
|
|
83
|
-
const { fromJSON: fromRes } = serializer(_listEventGuestSummariesResponse, {
|
|
84
|
-
_address,
|
|
85
|
-
_addressLocation,
|
|
86
|
-
_eventGuest,
|
|
87
|
-
_eventGuestSummary,
|
|
88
|
-
_formResponse,
|
|
89
|
-
_formattedAddress,
|
|
90
|
-
_guestDetails,
|
|
91
|
-
_inputValue,
|
|
92
|
-
});
|
|
93
|
-
function __listEventGuestSummaries({ host }) {
|
|
94
|
-
const serializedData = toReq(payload);
|
|
95
|
-
const metadata = {
|
|
96
|
-
entityFqdn: 'wix.events.guests.v1.guest',
|
|
97
|
-
method: 'POST',
|
|
98
|
-
methodFqn: 'wix.events.guests.v1.EventGuestsSummaryService.ListEventGuestSummaries',
|
|
99
|
-
url: resolveWixEventsGuestsV1EventGuestsSummaryServiceUrl({
|
|
100
|
-
protoPath: '/v2/guests/summaries',
|
|
101
|
-
data: serializedData,
|
|
102
|
-
host,
|
|
103
|
-
}),
|
|
104
|
-
data: serializedData,
|
|
105
|
-
transformResponse: fromRes,
|
|
106
|
-
};
|
|
107
|
-
return metadata;
|
|
108
|
-
}
|
|
109
|
-
__listEventGuestSummaries.fromReq = fromReq;
|
|
110
|
-
return __listEventGuestSummaries;
|
|
111
|
-
}
|
|
112
71
|
/**
|
|
113
72
|
* Creates a query to retrieve a list of guests.
|
|
114
73
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.http.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.http.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.http.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.http.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@wix/sdk-types';
|
|
2
|
-
import { ListEventGuestSummariesOptions } from './events-guests-v1-guest.universal';
|
|
3
2
|
export declare const __metadata: {
|
|
4
3
|
PACKAGE_NAME: string;
|
|
5
4
|
};
|
|
6
|
-
export declare function listEventGuestSummaries(httpClient: HttpClient): (eventIds: string[], options?: ListEventGuestSummariesOptions | undefined) => Promise<import("./events-guests-v1-guest.universal").ListEventGuestSummariesResponse>;
|
|
7
5
|
export declare function queryGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
|
|
8
6
|
export { SubdivisionType, AttendanceStatus, GuestType, SortOrder, NotifyActionType, RsvpStatus, OrderStatus, TaxType, FeeName, FeeType, OrderType, } from './events-guests-v1-guest.universal';
|
|
9
|
-
export { EventGuest, TicketDetails, GuestDetails, FormResponse, InputValue, FormattedAddress, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, OnlineConferencingLogin,
|
|
7
|
+
export { EventGuest, TicketDetails, GuestDetails, FormResponse, InputValue, FormattedAddress, Address, AddressStreetOneOf, StreetAddress, AddressLocation, Subdivision, OnlineConferencingLogin, QueryEventGuestsRequest, QueryV2, QueryV2PagingMethodOneOf, Sorting, Paging, CursorPaging, QueryEventGuestsResponse, PagingMetadataV2, Cursors, StreamEventGuestsRequest, TaskContext, Empty, NotifyGuestAction, SecondaryLanguagesRequest, SecondaryLanguagesResponse, RsvpCreated, Guest, CheckIn, RsvpUpdated, RsvpDeleted, OrderConfirmed, Ticket, Money, Invoice, Item, Discount, DiscountItem, DiscountItemDiscountOneOf, CouponDiscount, PaidPlanDiscount, PaidPlanDiscountDiscountOneOf, PercentDiscount, Tax, Fee, OrderUpdated, OrderDeleted, EventDeleted, Task, TaskKey, DeleteTicketGuestRequest, ListGuestListPreviewsRequest, ListGuestListPreviewsResponse, GuestListPreview, UpdateGuestRequest, GuestsQueryResult, GuestsQueryBuilder, } from './events-guests-v1-guest.universal';
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { queryGuests as universalQueryGuests } from './events-guests-v1-guest.universal';
|
|
2
2
|
export const __metadata = { PACKAGE_NAME: '@wix/events' };
|
|
3
|
-
export function listEventGuestSummaries(httpClient) {
|
|
4
|
-
return (eventIds, options) => universalListEventGuestSummaries(eventIds, options,
|
|
5
|
-
// @ts-ignore
|
|
6
|
-
{ httpClient });
|
|
7
|
-
}
|
|
8
3
|
export function queryGuests(httpClient) {
|
|
9
4
|
return () => universalQueryGuests(
|
|
10
5
|
// @ts-ignore
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.public.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.public.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.public.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.public.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAEzF,MAAM,CAAC,MAAM,UAAU,GAAG,EAAE,YAAY,EAAE,aAAa,EAAE,CAAC;AAE1D,MAAM,UAAU,WAAW,CAAC,UAAsB;IAChD,OAAO,GAAG,EAAE,CACV,oBAAoB;IAClB,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAED,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,UAAU,EACV,WAAW,EACX,OAAO,EACP,OAAO,EACP,OAAO,EACP,SAAS,GACV,MAAM,oCAAoC,CAAC"}
|
|
@@ -151,52 +151,6 @@ export declare enum GuestType {
|
|
|
151
151
|
/** Ticket holder guest. */
|
|
152
152
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
153
153
|
}
|
|
154
|
-
export interface ListEventGuestSummariesRequest {
|
|
155
|
-
eventIds: string[];
|
|
156
|
-
cursorPaging?: CursorPaging;
|
|
157
|
-
}
|
|
158
|
-
export interface CursorPaging {
|
|
159
|
-
/** Number of items to load per page. */
|
|
160
|
-
limit?: number | null;
|
|
161
|
-
/**
|
|
162
|
-
* Pointer to the next or previous page in the list of results.
|
|
163
|
-
*
|
|
164
|
-
* You can get the relevant cursor token
|
|
165
|
-
* from the `pagingMetadata` object in the previous call's response.
|
|
166
|
-
* Not relevant for the first request.
|
|
167
|
-
*/
|
|
168
|
-
cursor?: string | null;
|
|
169
|
-
}
|
|
170
|
-
export interface ListEventGuestSummariesResponse {
|
|
171
|
-
/** List of guests. */
|
|
172
|
-
summaries?: EventGuestSummary[];
|
|
173
|
-
/** Metadata for the paginated results. */
|
|
174
|
-
pagingMetadata?: PagingMetadataV2;
|
|
175
|
-
}
|
|
176
|
-
export interface EventGuestSummary {
|
|
177
|
-
eventId?: string;
|
|
178
|
-
lastAttended?: EventGuest[];
|
|
179
|
-
lastAttendedMembers?: EventGuest[];
|
|
180
|
-
totalAttending?: number;
|
|
181
|
-
}
|
|
182
|
-
export interface PagingMetadataV2 {
|
|
183
|
-
/** Number of items returned in the response. */
|
|
184
|
-
count?: number | null;
|
|
185
|
-
/** Offset that was requested. */
|
|
186
|
-
offset?: number | null;
|
|
187
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
188
|
-
total?: number | null;
|
|
189
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
190
|
-
tooManyToCount?: boolean | null;
|
|
191
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
192
|
-
cursors?: Cursors;
|
|
193
|
-
}
|
|
194
|
-
export interface Cursors {
|
|
195
|
-
/** Cursor pointing to next page in the list of results. */
|
|
196
|
-
next?: string | null;
|
|
197
|
-
/** Cursor pointing to previous page in the list of results. */
|
|
198
|
-
prev?: string | null;
|
|
199
|
-
}
|
|
200
154
|
export interface QueryEventGuestsRequest {
|
|
201
155
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
202
156
|
query: QueryV2;
|
|
@@ -236,12 +190,42 @@ export interface Paging {
|
|
|
236
190
|
/** Number of items to skip in the current sort order. */
|
|
237
191
|
offset?: number | null;
|
|
238
192
|
}
|
|
193
|
+
export interface CursorPaging {
|
|
194
|
+
/** Number of items to load per page. */
|
|
195
|
+
limit?: number | null;
|
|
196
|
+
/**
|
|
197
|
+
* Pointer to the next or previous page in the list of results.
|
|
198
|
+
*
|
|
199
|
+
* You can get the relevant cursor token
|
|
200
|
+
* from the `pagingMetadata` object in the previous call's response.
|
|
201
|
+
* Not relevant for the first request.
|
|
202
|
+
*/
|
|
203
|
+
cursor?: string | null;
|
|
204
|
+
}
|
|
239
205
|
export interface QueryEventGuestsResponse {
|
|
240
206
|
/** List of guests. */
|
|
241
207
|
guests?: EventGuest[];
|
|
242
208
|
/** Metadata for the paginated results. */
|
|
243
209
|
pagingMetadata?: PagingMetadataV2;
|
|
244
210
|
}
|
|
211
|
+
export interface PagingMetadataV2 {
|
|
212
|
+
/** Number of items returned in the response. */
|
|
213
|
+
count?: number | null;
|
|
214
|
+
/** Offset that was requested. */
|
|
215
|
+
offset?: number | null;
|
|
216
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
217
|
+
total?: number | null;
|
|
218
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
219
|
+
tooManyToCount?: boolean | null;
|
|
220
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
221
|
+
cursors?: Cursors;
|
|
222
|
+
}
|
|
223
|
+
export interface Cursors {
|
|
224
|
+
/** Cursor pointing to next page in the list of results. */
|
|
225
|
+
next?: string | null;
|
|
226
|
+
/** Cursor pointing to previous page in the list of results. */
|
|
227
|
+
prev?: string | null;
|
|
228
|
+
}
|
|
245
229
|
export interface StreamEventGuestsRequest {
|
|
246
230
|
/** Filter. */
|
|
247
231
|
filter?: Record<string, any> | null;
|
|
@@ -711,6 +695,21 @@ export interface DeleteTicketGuestRequest {
|
|
|
711
695
|
/** Ticket number. */
|
|
712
696
|
ticketNumber?: string;
|
|
713
697
|
}
|
|
698
|
+
export interface ListGuestListPreviewsRequest {
|
|
699
|
+
eventIds?: string[];
|
|
700
|
+
cursorPaging?: CursorPaging;
|
|
701
|
+
}
|
|
702
|
+
export interface ListGuestListPreviewsResponse {
|
|
703
|
+
/** List of guests. */
|
|
704
|
+
previews?: GuestListPreview[];
|
|
705
|
+
/** Metadata for the paginated results. */
|
|
706
|
+
pagingMetadata?: PagingMetadataV2;
|
|
707
|
+
}
|
|
708
|
+
export interface GuestListPreview {
|
|
709
|
+
eventId?: string;
|
|
710
|
+
latestAttendingMembers?: EventGuest[];
|
|
711
|
+
totalAttending?: number;
|
|
712
|
+
}
|
|
714
713
|
export interface UpdateGuestRequest {
|
|
715
714
|
/** Updated guest */
|
|
716
715
|
guest?: EventGuest;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.types.ts"],"names":[],"mappings":"AAyHA,MAAM,CAAN,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,KAAf,eAAe,QAc1B;AAeD,MAAM,CAAN,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,qBAAqB;IACrB,mDAA+B,CAAA;IAC/B,iBAAiB;IACjB,2CAAuB,CAAA;IACvB,yBAAyB;IACzB,+CAA2B,CAAA;AAC7B,CAAC,EAPW,gBAAgB,KAAhB,gBAAgB,QAO3B;AAED,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,kBAAkB;IAClB,0BAAa,CAAA;IACb,mBAAmB;IACnB,4BAAe,CAAA;IACf,2BAA2B;IAC3B,4CAA+B,CAAA;AACjC,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.types.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.types.ts"],"names":[],"mappings":"AAyHA,MAAM,CAAN,IAAY,eAcX;AAdD,WAAY,eAAe;IACzB,wEAAqD,CAAA;IACrD,YAAY;IACZ,8EAA2D,CAAA;IAC3D,aAAa;IACb,8EAA2D,CAAA;IAC3D,gBAAgB;IAChB,8EAA2D,CAAA;IAC3D,2BAA2B;IAC3B,8EAA2D,CAAA;IAC3D,mBAAmB;IACnB,8EAA2D,CAAA;IAC3D,8IAA8I;IAC9I,sCAAmB,CAAA;AACrB,CAAC,EAdW,eAAe,KAAf,eAAe,QAc1B;AAeD,MAAM,CAAN,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,qBAAqB;IACrB,mDAA+B,CAAA;IAC/B,iBAAiB;IACjB,2CAAuB,CAAA;IACvB,yBAAyB;IACzB,+CAA2B,CAAA;AAC7B,CAAC,EAPW,gBAAgB,KAAhB,gBAAgB,QAO3B;AAED,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,kBAAkB;IAClB,0BAAa,CAAA;IACb,mBAAmB;IACnB,4BAAe,CAAA;IACf,2BAA2B;IAC3B,4CAA+B,CAAA;AACjC,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;AAmCD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA+DD,MAAM,CAAN,IAAY,gBAKX;AALD,WAAY,gBAAgB;IAC1B,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,6DAAyC,CAAA;IACzC,iCAAa,CAAA;AACf,CAAC,EALW,gBAAgB,KAAhB,gBAAgB,QAK3B;AAoDD,MAAM,CAAN,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,yBAAW,CAAA;IACX,uBAAS,CAAA;IACT,iCAAmB,CAAA;AACrB,CAAC,EAJW,UAAU,KAAV,UAAU,QAIrB;AA0GD,MAAM,CAAN,IAAY,WAiBX;AAjBD,WAAY,WAAW;IACrB,2DAA2D;IAC3D,kDAAmC,CAAA;IACnC,8CAA8C;IAC9C,4BAAa,CAAA;IACb,2FAA2F;IAC3F,kCAAmB,CAAA;IACnB,qCAAqC;IACrC,4BAAa,CAAA;IACb,iGAAiG;IACjG,kDAAmC,CAAA;IACnC,+CAA+C;IAC/C,sCAAuB,CAAA;IACvB,yBAAyB;IACzB,oCAAqB,CAAA;IACrB,iCAAiC;IACjC,oCAAqB,CAAA;AACvB,CAAC,EAjBW,WAAW,KAAX,WAAW,QAiBtB;AA2KD,MAAM,CAAN,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,0CAA0C;IAC1C,gCAAqB,CAAA;IACrB,gDAAgD;IAChD,0BAAe,CAAA;IACf,sDAAsD;IACtD,kDAAuC,CAAA;AACzC,CAAC,EAPW,OAAO,KAAP,OAAO,QAOlB;AAgBD,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IACjB,wDAAwD;IACxD,8BAAmB,CAAA;AACrB,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB;AAED,MAAM,CAAN,IAAY,OAOX;AAPD,WAAY,OAAO;IACjB,mDAAmD;IACnD,kCAAuB,CAAA;IACvB,mEAAmE;IACnE,wCAA6B,CAAA;IAC7B,mDAAmD;IACnD,0DAA+C,CAAA;AACjD,CAAC,EAPW,OAAO,KAAP,OAAO,QAOlB;AA+DD,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,yCAAyC;IACzC,sDAAyC,CAAA;IACzC,yCAAyC;IACzC,kDAAqC,CAAA;AACvC,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB"}
|
|
@@ -157,52 +157,6 @@ export declare enum GuestType {
|
|
|
157
157
|
/** Ticket holder guest. */
|
|
158
158
|
TICKET_HOLDER = "TICKET_HOLDER"
|
|
159
159
|
}
|
|
160
|
-
export interface ListEventGuestSummariesRequest {
|
|
161
|
-
eventIds: string[];
|
|
162
|
-
cursorPaging?: CursorPaging;
|
|
163
|
-
}
|
|
164
|
-
export interface CursorPaging {
|
|
165
|
-
/** Number of items to load per page. */
|
|
166
|
-
limit?: number | null;
|
|
167
|
-
/**
|
|
168
|
-
* Pointer to the next or previous page in the list of results.
|
|
169
|
-
*
|
|
170
|
-
* You can get the relevant cursor token
|
|
171
|
-
* from the `pagingMetadata` object in the previous call's response.
|
|
172
|
-
* Not relevant for the first request.
|
|
173
|
-
*/
|
|
174
|
-
cursor?: string | null;
|
|
175
|
-
}
|
|
176
|
-
export interface ListEventGuestSummariesResponse {
|
|
177
|
-
/** List of guests. */
|
|
178
|
-
summaries?: EventGuestSummary[];
|
|
179
|
-
/** Metadata for the paginated results. */
|
|
180
|
-
pagingMetadata?: PagingMetadataV2;
|
|
181
|
-
}
|
|
182
|
-
export interface EventGuestSummary {
|
|
183
|
-
eventId?: string;
|
|
184
|
-
lastAttended?: EventGuest[];
|
|
185
|
-
lastAttendedMembers?: EventGuest[];
|
|
186
|
-
totalAttending?: number;
|
|
187
|
-
}
|
|
188
|
-
export interface PagingMetadataV2 {
|
|
189
|
-
/** Number of items returned in the response. */
|
|
190
|
-
count?: number | null;
|
|
191
|
-
/** Offset that was requested. */
|
|
192
|
-
offset?: number | null;
|
|
193
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
194
|
-
total?: number | null;
|
|
195
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
196
|
-
tooManyToCount?: boolean | null;
|
|
197
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
198
|
-
cursors?: Cursors;
|
|
199
|
-
}
|
|
200
|
-
export interface Cursors {
|
|
201
|
-
/** Cursor pointing to next page in the list of results. */
|
|
202
|
-
next?: string | null;
|
|
203
|
-
/** Cursor pointing to previous page in the list of results. */
|
|
204
|
-
prev?: string | null;
|
|
205
|
-
}
|
|
206
160
|
export interface QueryEventGuestsRequest {
|
|
207
161
|
/** Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details. */
|
|
208
162
|
query: QueryV2;
|
|
@@ -242,12 +196,42 @@ export interface Paging {
|
|
|
242
196
|
/** Number of items to skip in the current sort order. */
|
|
243
197
|
offset?: number | null;
|
|
244
198
|
}
|
|
199
|
+
export interface CursorPaging {
|
|
200
|
+
/** Number of items to load per page. */
|
|
201
|
+
limit?: number | null;
|
|
202
|
+
/**
|
|
203
|
+
* Pointer to the next or previous page in the list of results.
|
|
204
|
+
*
|
|
205
|
+
* You can get the relevant cursor token
|
|
206
|
+
* from the `pagingMetadata` object in the previous call's response.
|
|
207
|
+
* Not relevant for the first request.
|
|
208
|
+
*/
|
|
209
|
+
cursor?: string | null;
|
|
210
|
+
}
|
|
245
211
|
export interface QueryEventGuestsResponse {
|
|
246
212
|
/** List of guests. */
|
|
247
213
|
guests?: EventGuest[];
|
|
248
214
|
/** Metadata for the paginated results. */
|
|
249
215
|
pagingMetadata?: PagingMetadataV2;
|
|
250
216
|
}
|
|
217
|
+
export interface PagingMetadataV2 {
|
|
218
|
+
/** Number of items returned in the response. */
|
|
219
|
+
count?: number | null;
|
|
220
|
+
/** Offset that was requested. */
|
|
221
|
+
offset?: number | null;
|
|
222
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
223
|
+
total?: number | null;
|
|
224
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
225
|
+
tooManyToCount?: boolean | null;
|
|
226
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
227
|
+
cursors?: Cursors;
|
|
228
|
+
}
|
|
229
|
+
export interface Cursors {
|
|
230
|
+
/** Cursor pointing to next page in the list of results. */
|
|
231
|
+
next?: string | null;
|
|
232
|
+
/** Cursor pointing to previous page in the list of results. */
|
|
233
|
+
prev?: string | null;
|
|
234
|
+
}
|
|
251
235
|
export interface StreamEventGuestsRequest {
|
|
252
236
|
/** Filter. */
|
|
253
237
|
filter?: Record<string, any> | null;
|
|
@@ -717,20 +701,27 @@ export interface DeleteTicketGuestRequest {
|
|
|
717
701
|
/** Ticket number. */
|
|
718
702
|
ticketNumber?: string;
|
|
719
703
|
}
|
|
704
|
+
export interface ListGuestListPreviewsRequest {
|
|
705
|
+
eventIds?: string[];
|
|
706
|
+
cursorPaging?: CursorPaging;
|
|
707
|
+
}
|
|
708
|
+
export interface ListGuestListPreviewsResponse {
|
|
709
|
+
/** List of guests. */
|
|
710
|
+
previews?: GuestListPreview[];
|
|
711
|
+
/** Metadata for the paginated results. */
|
|
712
|
+
pagingMetadata?: PagingMetadataV2;
|
|
713
|
+
}
|
|
714
|
+
export interface GuestListPreview {
|
|
715
|
+
eventId?: string;
|
|
716
|
+
latestAttendingMembers?: EventGuest[];
|
|
717
|
+
totalAttending?: number;
|
|
718
|
+
}
|
|
720
719
|
export interface UpdateGuestRequest {
|
|
721
720
|
/** Updated guest */
|
|
722
721
|
guest?: EventGuest;
|
|
723
722
|
/** Guest revision */
|
|
724
723
|
revision?: string | null;
|
|
725
724
|
}
|
|
726
|
-
/** @public
|
|
727
|
-
* @documentationMaturity preview
|
|
728
|
-
* @requiredField eventIds
|
|
729
|
-
*/
|
|
730
|
-
export declare function listEventGuestSummaries(eventIds: string[], options?: ListEventGuestSummariesOptions): Promise<ListEventGuestSummariesResponse>;
|
|
731
|
-
export interface ListEventGuestSummariesOptions {
|
|
732
|
-
cursorPaging?: CursorPaging;
|
|
733
|
-
}
|
|
734
725
|
/**
|
|
735
726
|
* Creates a query to retrieve a list of guests.
|
|
736
727
|
*
|
|
@@ -12,12 +12,6 @@ import * as ambassadorWixEventsGuestsV1Guest from './events-guests-v1-guest.http
|
|
|
12
12
|
// @ts-ignore
|
|
13
13
|
import { wrapWithQueryBuilder } from '@wix/motion-edm-autogen-query-wrapper';
|
|
14
14
|
let __verbose = false;
|
|
15
|
-
function __log(...args) {
|
|
16
|
-
__verbose && console.log(...args);
|
|
17
|
-
}
|
|
18
|
-
function __inspect(obj) {
|
|
19
|
-
return obj;
|
|
20
|
-
}
|
|
21
15
|
export const __debug = {
|
|
22
16
|
verboseLogging: {
|
|
23
17
|
on: () => (__verbose = true),
|
|
@@ -128,81 +122,12 @@ export var OrderType;
|
|
|
128
122
|
OrderType["ASSIGNED_TICKETS"] = "ASSIGNED_TICKETS";
|
|
129
123
|
})(OrderType || (OrderType = {}));
|
|
130
124
|
const _eventGuest = { guestDetails: '_guestDetails' };
|
|
131
|
-
const _eventGuestSummary = {
|
|
132
|
-
lastAttended: '_eventGuest',
|
|
133
|
-
lastAttendedMembers: '_eventGuest',
|
|
134
|
-
};
|
|
135
125
|
const _formattedAddress = { address: 'wix.common.Address' };
|
|
136
126
|
const _formResponse = { inputValues: '_inputValue' };
|
|
137
127
|
const _guestDetails = { formResponse: '_formResponse' };
|
|
138
128
|
const _inputValue = { address: '_formattedAddress' };
|
|
139
|
-
const _listEventGuestSummariesRequest = {};
|
|
140
|
-
const _listEventGuestSummariesResponse = { summaries: '_eventGuestSummary' };
|
|
141
129
|
const _queryEventGuestsRequest = {};
|
|
142
130
|
const _queryEventGuestsResponse = { guests: '_eventGuest' };
|
|
143
|
-
/** @public
|
|
144
|
-
* @documentationMaturity preview
|
|
145
|
-
* @requiredField eventIds
|
|
146
|
-
*/
|
|
147
|
-
export function listEventGuestSummaries(eventIds, options) {
|
|
148
|
-
var _a, _b, _c;
|
|
149
|
-
return __awaiter(this, arguments, void 0, function* () {
|
|
150
|
-
const requestTransformation = {
|
|
151
|
-
eventIds: '$[0]',
|
|
152
|
-
cursorPaging: '$[1].cursorPaging',
|
|
153
|
-
};
|
|
154
|
-
const responseTransformation = '$';
|
|
155
|
-
// @ts-ignore
|
|
156
|
-
const { httpClient, sideEffects } = arguments[2];
|
|
157
|
-
const { toAmbassadorRequest } = serializer({
|
|
158
|
-
rootSchema: _listEventGuestSummariesRequest,
|
|
159
|
-
depSchemas: {},
|
|
160
|
-
fqdnTransformation: {
|
|
161
|
-
paths: [],
|
|
162
|
-
transformation: _fromVeloEntity,
|
|
163
|
-
},
|
|
164
|
-
customTransformation: requestTransformation,
|
|
165
|
-
});
|
|
166
|
-
const { fromJSON } = serializer({
|
|
167
|
-
rootSchema: _listEventGuestSummariesResponse,
|
|
168
|
-
depSchemas: {
|
|
169
|
-
_eventGuest,
|
|
170
|
-
_eventGuestSummary,
|
|
171
|
-
_formResponse,
|
|
172
|
-
_formattedAddress,
|
|
173
|
-
_guestDetails,
|
|
174
|
-
_inputValue,
|
|
175
|
-
},
|
|
176
|
-
fqdnTransformation: {
|
|
177
|
-
paths: [
|
|
178
|
-
...[
|
|
179
|
-
'Array#summaries.Array#lastAttended',
|
|
180
|
-
'Array#summaries.Array#lastAttendedMembers',
|
|
181
|
-
],
|
|
182
|
-
],
|
|
183
|
-
transformation: _toVeloEntity,
|
|
184
|
-
},
|
|
185
|
-
customTransformation: responseTransformation,
|
|
186
|
-
});
|
|
187
|
-
const payload = toAmbassadorRequest([eventIds, options]);
|
|
188
|
-
const reqOpts = ambassadorWixEventsGuestsV1Guest.listEventGuestSummaries(payload);
|
|
189
|
-
__log(`"ListEventGuestSummaries" sending request with: ${__inspect(reqOpts)}`);
|
|
190
|
-
(_a = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onSiteCall) === null || _a === void 0 ? void 0 : _a.call(sideEffects);
|
|
191
|
-
try {
|
|
192
|
-
const result = yield httpClient.request(reqOpts);
|
|
193
|
-
(_b = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onSuccess) === null || _b === void 0 ? void 0 : _b.call(sideEffects, result);
|
|
194
|
-
return fromJSON(result.data);
|
|
195
|
-
}
|
|
196
|
-
catch (err) {
|
|
197
|
-
const transformedError = transformError(err, requestTransformation, [
|
|
198
|
-
'eventIds',
|
|
199
|
-
'options',
|
|
200
|
-
]);
|
|
201
|
-
(_c = sideEffects === null || sideEffects === void 0 ? void 0 : sideEffects.onError) === null || _c === void 0 ? void 0 : _c.call(sideEffects, err);
|
|
202
|
-
throw transformedError;
|
|
203
|
-
}
|
|
204
|
-
});
|
|
205
|
-
}
|
|
206
131
|
/**
|
|
207
132
|
* Creates a query to retrieve a list of guests.
|
|
208
133
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"events-guests-v1-guest.universal.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,gCAAgC,MAAM,+BAA+B,CAAC;AAClF,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,
|
|
1
|
+
{"version":3,"file":"events-guests-v1-guest.universal.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.80",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "aee619636e48c36ec8a7a46c0105e030775b00a605a0f9f870b568a6"
|
|
37
37
|
}
|