@wix/events 1.0.271 → 1.0.272

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.271",
3
+ "version": "1.0.272",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@wix/events_categories": "1.0.41",
22
22
  "@wix/events_forms": "1.0.43",
23
- "@wix/events_guests": "1.0.54",
23
+ "@wix/events_guests": "1.0.55",
24
24
  "@wix/events_notifications": "1.0.29",
25
25
  "@wix/events_orders": "1.0.42",
26
26
  "@wix/events_policies": "1.0.40",
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "0b92b603fb38bed8332e216e9f65dacf58681c12f00ccbaab4f0a12d"
61
+ "falconPackageHash": "7250bee42223eda8443300de27be92b9c89caa9b0c7bff0ef28a3f5a"
62
62
  }
@@ -76,12 +76,12 @@ interface EventGuest$1 {
76
76
  /** Locale in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) format. Used when the event date and time on a ticket should be formatted into another locale. */
77
77
  locale?: string | null;
78
78
  /**
79
- * Number of current guest plus additional guests
79
+ * Number of total guests in an event (registered guests + additional ones).
80
80
  * @readonly
81
81
  */
82
82
  totalGuests?: number | null;
83
83
  /**
84
- * Guest revision
84
+ * Revision number, which increments by 1 each time the guest is updated.
85
85
  * @readonly
86
86
  */
87
87
  revision?: string | null;
@@ -425,6 +425,7 @@ interface QueryEventGuestsRequest {
425
425
  /**
426
426
  * Predefined sets of fields to return.
427
427
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
428
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
428
429
  */
429
430
  fields?: RequestedFieldsEnumRequestedFields[];
430
431
  }
@@ -1159,6 +1160,7 @@ interface QueryEventGuestsOptions {
1159
1160
  /**
1160
1161
  * Predefined sets of fields to return.
1161
1162
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
1163
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
1162
1164
  */
1163
1165
  fields?: RequestedFieldsEnumRequestedFields[] | undefined;
1164
1166
  }
@@ -76,12 +76,12 @@ interface EventGuest$1 {
76
76
  /** Locale in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) format. Used when the event date and time on a ticket should be formatted into another locale. */
77
77
  locale?: string | null;
78
78
  /**
79
- * Number of current guest plus additional guests
79
+ * Number of total guests in an event (registered guests + additional ones).
80
80
  * @readonly
81
81
  */
82
82
  totalGuests?: number | null;
83
83
  /**
84
- * Guest revision
84
+ * Revision number, which increments by 1 each time the guest is updated.
85
85
  * @readonly
86
86
  */
87
87
  revision?: string | null;
@@ -425,6 +425,7 @@ interface QueryEventGuestsRequest {
425
425
  /**
426
426
  * Predefined sets of fields to return.
427
427
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
428
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
428
429
  */
429
430
  fields?: RequestedFieldsEnumRequestedFields[];
430
431
  }
@@ -1159,6 +1160,7 @@ interface QueryEventGuestsOptions {
1159
1160
  /**
1160
1161
  * Predefined sets of fields to return.
1161
1162
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
1163
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
1162
1164
  */
1163
1165
  fields?: RequestedFieldsEnumRequestedFields[] | undefined;
1164
1166
  }
@@ -32,12 +32,12 @@ interface EventGuest$1 {
32
32
  /** Locale in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) format. Used when the event date and time on a ticket should be formatted into another locale. */
33
33
  locale?: string | null;
34
34
  /**
35
- * Number of current guest plus additional guests
35
+ * Number of total guests in an event (registered guests + additional ones).
36
36
  * @readonly
37
37
  */
38
38
  totalGuests?: number | null;
39
39
  /**
40
- * Guest revision
40
+ * Revision number, which increments by 1 each time the guest is updated.
41
41
  * @readonly
42
42
  */
43
43
  revision?: string | null;
@@ -121,6 +121,7 @@ interface QueryEventGuestsRequest$1 {
121
121
  /**
122
122
  * Predefined sets of fields to return.
123
123
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
124
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
124
125
  */
125
126
  fields?: RequestedFieldsEnumRequestedFields$1[];
126
127
  }
@@ -292,12 +293,12 @@ interface EventGuest {
292
293
  /** Locale in [IETF BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) format. Used when the event date and time on a ticket should be formatted into another locale. */
293
294
  locale?: string | null;
294
295
  /**
295
- * Number of current guest plus additional guests
296
+ * Number of total guests in an event (registered guests + additional ones).
296
297
  * @readonly
297
298
  */
298
299
  totalGuests?: number | null;
299
300
  /**
300
- * Guest revision
301
+ * Revision number, which increments by 1 each time the guest is updated.
301
302
  * @readonly
302
303
  */
303
304
  revision?: string | null;
@@ -366,6 +367,7 @@ interface QueryEventGuestsRequest {
366
367
  /**
367
368
  * Predefined sets of fields to return.
368
369
  * - `GUEST_DETAILS`: Returns `guestDetails` and `tickets`.
370
+ * - `GUEST_TOTAL`: Returns `totalGuests`.
369
371
  */
370
372
  fields?: RequestedFieldsEnumRequestedFields[];
371
373
  }