@wix/events 1.0.305 → 1.0.307
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.307",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/events_categories": "1.0.
|
|
22
|
-
"@wix/events_forms": "1.0.
|
|
21
|
+
"@wix/events_categories": "1.0.44",
|
|
22
|
+
"@wix/events_forms": "1.0.46",
|
|
23
23
|
"@wix/events_guests": "1.0.68",
|
|
24
24
|
"@wix/events_notifications": "1.0.33",
|
|
25
|
-
"@wix/events_orders": "1.0.
|
|
25
|
+
"@wix/events_orders": "1.0.50",
|
|
26
26
|
"@wix/events_policies": "1.0.42",
|
|
27
27
|
"@wix/events_ricos": "1.0.7",
|
|
28
28
|
"@wix/events_rsvp": "1.0.44",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"@wix/events_schedule-bookmarks": "1.0.34",
|
|
32
32
|
"@wix/events_staff-members": "1.0.14",
|
|
33
33
|
"@wix/events_ticket-definitions": "1.0.48",
|
|
34
|
-
"@wix/events_ticket-definitions-v-2": "1.0.
|
|
35
|
-
"@wix/events_tickets": "1.0.
|
|
34
|
+
"@wix/events_ticket-definitions-v-2": "1.0.61",
|
|
35
|
+
"@wix/events_tickets": "1.0.43",
|
|
36
36
|
"@wix/events_wix-events-v-2": "1.0.54"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "dc88b606a575c3c8f2edee73f9692283a0ecf84bb95053ea3384ec3a"
|
|
62
62
|
}
|
|
@@ -25619,13 +25619,17 @@ interface QueryTicketDefinitionsSignature {
|
|
|
25619
25619
|
declare function queryAvailableTicketDefinitions$1(httpClient: HttpClient): QueryAvailableTicketDefinitionsSignature;
|
|
25620
25620
|
interface QueryAvailableTicketDefinitionsSignature {
|
|
25621
25621
|
/**
|
|
25622
|
-
* Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
|
|
25623
|
-
*
|
|
25622
|
+
* Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
|
|
25623
|
+
*
|
|
25624
|
+
* This endpoint retrieves ticket definitions that aren't in the `hidden` state. The available ticket definitions can be retrieved by site visitors.
|
|
25625
|
+
*
|
|
25626
|
+
* > **Note:** You need the `WIX_EVENTS.READ_TICKET_DEFINITIONS` permission to get the `salesDetails` field values.
|
|
25627
|
+
*
|
|
25624
25628
|
* Query Available Ticket Definitions runs with these defaults, which you can override:
|
|
25625
25629
|
* - `createdDate` is sorted in `ASC` order
|
|
25626
25630
|
* - `paging.limit` is `100`
|
|
25627
25631
|
* - `paging.offset` is `0`
|
|
25628
|
-
*
|
|
25632
|
+
*
|
|
25629
25633
|
* For field support for filters and sorting, see [Ticket Definitions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/ticket-definition-v3/filter-and-sort).
|
|
25630
25634
|
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
25631
25635
|
* @param - Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details.
|
|
@@ -25636,8 +25640,7 @@ interface QueryAvailableTicketDefinitionsSignature {
|
|
|
25636
25640
|
declare function countTicketDefinitions$1(httpClient: HttpClient): CountTicketDefinitionsSignature;
|
|
25637
25641
|
interface CountTicketDefinitionsSignature {
|
|
25638
25642
|
/**
|
|
25639
|
-
* Counts ticket definitions by the `saleStatus`
|
|
25640
|
-
* To learn about working with _query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
25643
|
+
* Counts ticket definitions by the `saleStatus` field, including those with the `hidden` status.
|
|
25641
25644
|
* @param - Optional fields.
|
|
25642
25645
|
*/
|
|
25643
25646
|
(options?: CountTicketDefinitionsOptions | undefined): Promise<CountTicketDefinitionsResponse>;
|
|
@@ -25645,8 +25648,7 @@ interface CountTicketDefinitionsSignature {
|
|
|
25645
25648
|
declare function countAvailableTicketDefinitions$1(httpClient: HttpClient): CountAvailableTicketDefinitionsSignature;
|
|
25646
25649
|
interface CountAvailableTicketDefinitionsSignature {
|
|
25647
25650
|
/**
|
|
25648
|
-
* Counts ticket definitions
|
|
25649
|
-
* To learn about working with _query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
25651
|
+
* Counts ticket definitions by the `saleStatus`, excluding those with the `hidden` status.
|
|
25650
25652
|
* @param - Optional fields.
|
|
25651
25653
|
*/
|
|
25652
25654
|
(options?: CountAvailableTicketDefinitionsOptions | undefined): Promise<CountAvailableTicketDefinitionsResponse>;
|
|
@@ -25619,13 +25619,17 @@ interface QueryTicketDefinitionsSignature {
|
|
|
25619
25619
|
declare function queryAvailableTicketDefinitions$1(httpClient: HttpClient): QueryAvailableTicketDefinitionsSignature;
|
|
25620
25620
|
interface QueryAvailableTicketDefinitionsSignature {
|
|
25621
25621
|
/**
|
|
25622
|
-
* Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
|
|
25623
|
-
*
|
|
25622
|
+
* Retrieves a list of available ticket definitions, given the provided paging, filtering, and sorting.
|
|
25623
|
+
*
|
|
25624
|
+
* This endpoint retrieves ticket definitions that aren't in the `hidden` state. The available ticket definitions can be retrieved by site visitors.
|
|
25625
|
+
*
|
|
25626
|
+
* > **Note:** You need the `WIX_EVENTS.READ_TICKET_DEFINITIONS` permission to get the `salesDetails` field values.
|
|
25627
|
+
*
|
|
25624
25628
|
* Query Available Ticket Definitions runs with these defaults, which you can override:
|
|
25625
25629
|
* - `createdDate` is sorted in `ASC` order
|
|
25626
25630
|
* - `paging.limit` is `100`
|
|
25627
25631
|
* - `paging.offset` is `0`
|
|
25628
|
-
*
|
|
25632
|
+
*
|
|
25629
25633
|
* For field support for filters and sorting, see [Ticket Definitions: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-solutions/events/ticket-definition-v3/filter-and-sort).
|
|
25630
25634
|
* To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
25631
25635
|
* @param - Query options. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more details.
|
|
@@ -25636,8 +25640,7 @@ interface QueryAvailableTicketDefinitionsSignature {
|
|
|
25636
25640
|
declare function countTicketDefinitions$1(httpClient: HttpClient): CountTicketDefinitionsSignature;
|
|
25637
25641
|
interface CountTicketDefinitionsSignature {
|
|
25638
25642
|
/**
|
|
25639
|
-
* Counts ticket definitions by the `saleStatus`
|
|
25640
|
-
* To learn about working with _query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
25643
|
+
* Counts ticket definitions by the `saleStatus` field, including those with the `hidden` status.
|
|
25641
25644
|
* @param - Optional fields.
|
|
25642
25645
|
*/
|
|
25643
25646
|
(options?: CountTicketDefinitionsOptions | undefined): Promise<CountTicketDefinitionsResponse>;
|
|
@@ -25645,8 +25648,7 @@ interface CountTicketDefinitionsSignature {
|
|
|
25645
25648
|
declare function countAvailableTicketDefinitions$1(httpClient: HttpClient): CountAvailableTicketDefinitionsSignature;
|
|
25646
25649
|
interface CountAvailableTicketDefinitionsSignature {
|
|
25647
25650
|
/**
|
|
25648
|
-
* Counts ticket definitions
|
|
25649
|
-
* To learn about working with _query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
25651
|
+
* Counts ticket definitions by the `saleStatus`, excluding those with the `hidden` status.
|
|
25650
25652
|
* @param - Optional fields.
|
|
25651
25653
|
*/
|
|
25652
25654
|
(options?: CountAvailableTicketDefinitionsOptions | undefined): Promise<CountAvailableTicketDefinitionsResponse>;
|