@wix/events 1.0.76 → 1.0.77

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.
@@ -1,4 +1,4 @@
1
- export * as eventGuests from './src/events-guests-v1-guest.public';
1
+ export * as guests from './src/events-guests-v1-guest.public';
2
2
  export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
3
3
  export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
4
4
  export * as categories from './src/events-v1-category.public';
@@ -19,8 +19,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
19
19
  return result;
20
20
  };
21
21
  Object.defineProperty(exports, "__esModule", { value: true });
22
- exports.policies = exports.ticketDefinitions = exports.tickets = exports.rsvp = exports.orders = exports.checkout = exports.forms = exports.wixEvents = exports.categories = exports.schedule = exports.scheduleBookmarks = exports.eventGuests = void 0;
23
- exports.eventGuests = __importStar(require("./src/events-guests-v1-guest.public"));
22
+ exports.policies = exports.ticketDefinitions = exports.tickets = exports.rsvp = exports.orders = exports.checkout = exports.forms = exports.wixEvents = exports.categories = exports.schedule = exports.scheduleBookmarks = exports.guests = void 0;
23
+ exports.guests = __importStar(require("./src/events-guests-v1-guest.public"));
24
24
  exports.scheduleBookmarks = __importStar(require("./src/events-schedule-v1-schedule-item-schedule-bookmarks.public"));
25
25
  exports.schedule = __importStar(require("./src/events-schedule-v1-schedule-item-schedule.public"));
26
26
  exports.categories = __importStar(require("./src/events-v1-category.public"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,mFAAmE;AACnE,sHAAsG;AACtG,mGAAmF;AACnF,8EAA8D;AAC9D,0EAA0D;AAC1D,qEAAqD;AACrD,kFAAkE;AAClE,8EAA8D;AAC9D,oEAAoD;AACpD,yEAAyD;AACzD,8FAA8E;AAC9E,0EAA0D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,8EAA8D;AAC9D,sHAAsG;AACtG,mGAAmF;AACnF,8EAA8D;AAC9D,0EAA0D;AAC1D,qEAAqD;AACrD,kFAAkE;AAClE,8EAA8D;AAC9D,oEAAoD;AACpD,yEAAyD;AACzD,8FAA8E;AAC9E,0EAA0D"}
@@ -4,11 +4,11 @@ import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-gues
4
4
  * Creates a query to retrieve a list of guests.
5
5
  *
6
6
  *
7
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
7
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
8
8
  *
9
9
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
10
10
  *
11
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
11
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
12
12
  *
13
13
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
14
14
  *
@@ -16,8 +16,8 @@ import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-gues
16
16
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
17
17
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
18
18
  *
19
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
19
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
20
20
  *
21
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
21
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
22
22
  */
23
23
  export declare function queryEventGuests(payload: QueryEventGuestsRequest): RequestOptionsFactory<QueryEventGuestsResponse>;
@@ -75,11 +75,11 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
75
75
  * Creates a query to retrieve a list of guests.
76
76
  *
77
77
  *
78
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
78
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
79
79
  *
80
80
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
81
81
  *
82
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
82
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
83
83
  *
84
84
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
85
85
  *
@@ -87,9 +87,9 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
87
87
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
88
88
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
89
89
  *
90
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
90
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
91
91
  *
92
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
92
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
93
93
  */
94
94
  function queryEventGuests(payload) {
95
95
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_queryEventGuestsRequest, {});
@@ -2,6 +2,6 @@ import { HttpClient } from '@wix/sdk-types';
2
2
  export declare const __metadata: {
3
3
  PACKAGE_NAME: string;
4
4
  };
5
- export declare function queryEventGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
5
+ export declare function queryGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
6
6
  export { SubdivisionType, AttendanceStatus, GuestType, SortOrder, NotifyActionType, RsvpStatus, OrderStatus, TaxType, FeeName, FeeType, OrderType, } from './events-guests-v1-guest.universal';
7
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, GuestsQueryResult, GuestsQueryBuilder, } from './events-guests-v1-guest.universal';
@@ -1,14 +1,14 @@
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.queryEventGuests = exports.__metadata = void 0;
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 queryEventGuests(httpClient) {
7
- return () => (0, events_guests_v1_guest_universal_1.queryEventGuests)(
6
+ function queryGuests(httpClient) {
7
+ return () => (0, events_guests_v1_guest_universal_1.queryGuests)(
8
8
  // @ts-ignore
9
9
  { httpClient });
10
10
  }
11
- exports.queryEventGuests = queryEventGuests;
11
+ exports.queryGuests = queryGuests;
12
12
  var events_guests_v1_guest_universal_2 = require("./events-guests-v1-guest.universal");
13
13
  Object.defineProperty(exports, "SubdivisionType", { enumerable: true, get: function () { return events_guests_v1_guest_universal_2.SubdivisionType; } });
14
14
  Object.defineProperty(exports, "AttendanceStatus", { enumerable: true, get: function () { return events_guests_v1_guest_universal_2.AttendanceStatus; } });
@@ -1 +1 @@
1
- {"version":3,"file":"events-guests-v1-guest.public.js","sourceRoot":"","sources":["../../../src/events-guests-v1-guest.public.ts"],"names":[],"mappings":";;;AACA,yFAAmG;AAEtF,QAAA,UAAU,GAAG,EAAE,YAAY,EAAE,aAAa,EAAE,CAAC;AAE1D,SAAgB,gBAAgB,CAAC,UAAsB;IACrD,OAAO,GAAG,EAAE,CACV,IAAA,mDAAyB;IACvB,aAAa;IACb,EAAE,UAAU,EAAE,CACf,CAAC;AACN,CAAC;AAND,4CAMC;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"}
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"}
@@ -705,11 +705,11 @@ export interface DeleteTicketGuestRequest {
705
705
  * Creates a query to retrieve a list of guests.
706
706
  *
707
707
  *
708
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
708
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
709
709
  *
710
710
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
711
711
  *
712
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
712
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
713
713
  *
714
714
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
715
715
  *
@@ -717,13 +717,13 @@ export interface DeleteTicketGuestRequest {
717
717
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
718
718
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
719
719
  *
720
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
720
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
721
721
  *
722
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
722
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
723
723
  * @public
724
724
  * @documentationMaturity preview
725
725
  */
726
- export declare function queryEventGuests(): GuestsQueryBuilder;
726
+ export declare function queryGuests(): GuestsQueryBuilder;
727
727
  interface QueryCursorResult {
728
728
  cursors: Cursors;
729
729
  hasNext: () => boolean;
@@ -28,7 +28,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
28
28
  });
29
29
  };
30
30
  Object.defineProperty(exports, "__esModule", { value: true });
31
- exports.queryEventGuests = 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;
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
@@ -154,11 +154,11 @@ const _queryEventGuestsResponse = { guests: '_eventGuest' };
154
154
  * Creates a query to retrieve a list of guests.
155
155
  *
156
156
  *
157
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
157
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
158
158
  *
159
159
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
160
160
  *
161
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
161
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
162
162
  *
163
163
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
164
164
  *
@@ -166,13 +166,13 @@ const _queryEventGuestsResponse = { guests: '_eventGuest' };
166
166
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
167
167
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
168
168
  *
169
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
169
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
170
170
  *
171
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
171
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
172
172
  * @public
173
173
  * @documentationMaturity preview
174
174
  */
175
- function queryEventGuests() {
175
+ function queryGuests() {
176
176
  const requestTransformation = { '*': '$[1]', query: '$[0]' };
177
177
  const responseTransformation = {
178
178
  items: '$.guests',
@@ -229,5 +229,5 @@ function queryEventGuests() {
229
229
  transformationPaths: (0, velo_1.resolveQueryFieldsTransformationPaths)(_toVeloEntity),
230
230
  })({ cursorWithEmptyFilterAndSort: true });
231
231
  }
232
- exports.queryEventGuests = queryEventGuests;
232
+ exports.queryGuests = queryGuests;
233
233
  //# sourceMappingURL=events-guests-v1-guest.universal.js.map
@@ -1 +1 @@
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
+ {"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,4 +1,4 @@
1
- export * as eventGuests from './src/events-guests-v1-guest.public';
1
+ export * as guests from './src/events-guests-v1-guest.public';
2
2
  export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
3
3
  export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
4
4
  export * as categories from './src/events-v1-category.public';
package/build/es/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export * as eventGuests from './src/events-guests-v1-guest.public';
1
+ export * as guests from './src/events-guests-v1-guest.public';
2
2
  export * as scheduleBookmarks from './src/events-schedule-v1-schedule-item-schedule-bookmarks.public';
3
3
  export * as schedule from './src/events-schedule-v1-schedule-item-schedule.public';
4
4
  export * as categories from './src/events-v1-category.public';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,WAAW,MAAM,qCAAqC,CAAC;AACnE,OAAO,KAAK,iBAAiB,MAAM,kEAAkE,CAAC;AACtG,OAAO,KAAK,QAAQ,MAAM,wDAAwD,CAAC;AACnF,OAAO,KAAK,UAAU,MAAM,iCAAiC,CAAC;AAC9D,OAAO,KAAK,SAAS,MAAM,8BAA8B,CAAC;AAC1D,OAAO,KAAK,KAAK,MAAM,6BAA6B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,MAAM,MAAM,qCAAqC,CAAC;AAC9D,OAAO,KAAK,IAAI,MAAM,6BAA6B,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAC;AACzD,OAAO,KAAK,iBAAiB,MAAM,0CAA0C,CAAC;AAC9E,OAAO,KAAK,QAAQ,MAAM,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,qCAAqC,CAAC;AAC9D,OAAO,KAAK,iBAAiB,MAAM,kEAAkE,CAAC;AACtG,OAAO,KAAK,QAAQ,MAAM,wDAAwD,CAAC;AACnF,OAAO,KAAK,UAAU,MAAM,iCAAiC,CAAC;AAC9D,OAAO,KAAK,SAAS,MAAM,8BAA8B,CAAC;AAC1D,OAAO,KAAK,KAAK,MAAM,6BAA6B,CAAC;AACrD,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,MAAM,MAAM,qCAAqC,CAAC;AAC9D,OAAO,KAAK,IAAI,MAAM,6BAA6B,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAC;AACzD,OAAO,KAAK,iBAAiB,MAAM,0CAA0C,CAAC;AAC9E,OAAO,KAAK,QAAQ,MAAM,+BAA+B,CAAC"}
@@ -4,11 +4,11 @@ import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-gues
4
4
  * Creates a query to retrieve a list of guests.
5
5
  *
6
6
  *
7
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
7
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
8
8
  *
9
9
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
10
10
  *
11
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
11
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
12
12
  *
13
13
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
14
14
  *
@@ -16,8 +16,8 @@ import { QueryEventGuestsRequest, QueryEventGuestsResponse } from './events-gues
16
16
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
17
17
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
18
18
  *
19
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
19
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
20
20
  *
21
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
21
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
22
22
  */
23
23
  export declare function queryEventGuests(payload: QueryEventGuestsRequest): RequestOptionsFactory<QueryEventGuestsResponse>;
@@ -72,11 +72,11 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
72
72
  * Creates a query to retrieve a list of guests.
73
73
  *
74
74
  *
75
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
75
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
76
76
  *
77
77
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
78
78
  *
79
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
79
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
80
80
  *
81
81
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
82
82
  *
@@ -84,9 +84,9 @@ function resolveWixEventsGuestsV1EventGuestsServiceUrl(opts) {
84
84
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
85
85
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
86
86
  *
87
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
87
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
88
88
  *
89
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
89
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
90
90
  */
91
91
  export function queryEventGuests(payload) {
92
92
  const { toJSON: toReq, fromJSON: fromReq } = serializer(_queryEventGuestsRequest, {});
@@ -2,6 +2,6 @@ import { HttpClient } from '@wix/sdk-types';
2
2
  export declare const __metadata: {
3
3
  PACKAGE_NAME: string;
4
4
  };
5
- export declare function queryEventGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
5
+ export declare function queryGuests(httpClient: HttpClient): () => import("./events-guests-v1-guest.universal").GuestsQueryBuilder;
6
6
  export { SubdivisionType, AttendanceStatus, GuestType, SortOrder, NotifyActionType, RsvpStatus, OrderStatus, TaxType, FeeName, FeeType, OrderType, } from './events-guests-v1-guest.universal';
7
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, GuestsQueryResult, GuestsQueryBuilder, } from './events-guests-v1-guest.universal';
@@ -1,7 +1,7 @@
1
- import { queryEventGuests as universalQueryEventGuests } from './events-guests-v1-guest.universal';
1
+ import { queryGuests as universalQueryGuests } from './events-guests-v1-guest.universal';
2
2
  export const __metadata = { PACKAGE_NAME: '@wix/events' };
3
- export function queryEventGuests(httpClient) {
4
- return () => universalQueryEventGuests(
3
+ export function queryGuests(httpClient) {
4
+ return () => universalQueryGuests(
5
5
  // @ts-ignore
6
6
  { httpClient });
7
7
  }
@@ -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,EAAE,gBAAgB,IAAI,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAEnG,MAAM,CAAC,MAAM,UAAU,GAAG,EAAE,YAAY,EAAE,aAAa,EAAE,CAAC;AAE1D,MAAM,UAAU,gBAAgB,CAAC,UAAsB;IACrD,OAAO,GAAG,EAAE,CACV,yBAAyB;IACvB,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"}
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"}
@@ -705,11 +705,11 @@ export interface DeleteTicketGuestRequest {
705
705
  * Creates a query to retrieve a list of guests.
706
706
  *
707
707
  *
708
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
708
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
709
709
  *
710
710
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
711
711
  *
712
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
712
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
713
713
  *
714
714
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
715
715
  *
@@ -717,13 +717,13 @@ export interface DeleteTicketGuestRequest {
717
717
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
718
718
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
719
719
  *
720
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
720
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
721
721
  *
722
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
722
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
723
723
  * @public
724
724
  * @documentationMaturity preview
725
725
  */
726
- export declare function queryEventGuests(): GuestsQueryBuilder;
726
+ export declare function queryGuests(): GuestsQueryBuilder;
727
727
  interface QueryCursorResult {
728
728
  cursors: Cursors;
729
729
  hasNext: () => boolean;
@@ -132,11 +132,11 @@ const _queryEventGuestsResponse = { guests: '_eventGuest' };
132
132
  * Creates a query to retrieve a list of guests.
133
133
  *
134
134
  *
135
- * The `queryEventsGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
135
+ * The `queryGuests()` function builds a query to retrieve a list of guests and returns a [GuestsQueryBuilder](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder) object.
136
136
  *
137
137
  * The returned object contains the query definition which is typically used to run the query using the `find()` function.
138
138
  *
139
- * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryEventGuests.find()` returns.
139
+ * You can refine the query by chaining `GuestsQueryBuilder` functions onto the query. `GuestsQueryBuilder` functions enable you to sort, filter, and control the results that `queryGuests.find()` returns.
140
140
  *
141
141
  * The query runs with the following `GuestsQueryBuilder` defaults that you can override:
142
142
  *
@@ -144,13 +144,13 @@ const _queryEventGuestsResponse = { guests: '_eventGuest' };
144
144
  * - [`limit(50)`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/limit)
145
145
  * - [`descending("_createdDate")`](https://www.wix.com/velo/reference/wix-events-v2/guests/guestsquerybuilder/descending)
146
146
  *
147
- * The functions that are chained to `queryEventGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
147
+ * The functions that are chained to `queryGuests()` are applied in the order they are called. For example, if you apply `ascending ('_createdDate')` and then `descending ('_updatedDate')`, the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.
148
148
  *
149
- * The table below shows which `GuestsQueryBuilder` functions are supported for `queryEventGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
149
+ * The table below shows which `GuestsQueryBuilder` functions are supported for `queryGuests()`. You can only use one filter function for each property. Only the first filter will work if a property is used in more than one filter.
150
150
  * @public
151
151
  * @documentationMaturity preview
152
152
  */
153
- export function queryEventGuests() {
153
+ export function queryGuests() {
154
154
  const requestTransformation = { '*': '$[1]', query: '$[0]' };
155
155
  const responseTransformation = {
156
156
  items: '$.guests',
@@ -1 +1 @@
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
+ {"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.76",
3
+ "version": "1.0.77",
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": "908eff8889ce3ed90cf56073662be56f6ad225fba0f74daa0ce9d4e2"
36
+ "falconPackageHash": "9ce605e7346af5db7bdcf24c6f2751c3810aaf61477ee8f0d0a78cdf"
37
37
  }