@wix/events 1.0.280 → 1.0.282

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.280",
3
+ "version": "1.0.282",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -26,12 +26,12 @@
26
26
  "@wix/events_policies": "1.0.40",
27
27
  "@wix/events_ricos": "1.0.5",
28
28
  "@wix/events_rsvp": "1.0.41",
29
- "@wix/events_rsvp-v-2": "1.0.3",
29
+ "@wix/events_rsvp-v-2": "1.0.4",
30
30
  "@wix/events_schedule": "1.0.35",
31
31
  "@wix/events_schedule-bookmarks": "1.0.31",
32
32
  "@wix/events_staff-members": "1.0.12",
33
33
  "@wix/events_ticket-definitions": "1.0.45",
34
- "@wix/events_ticket-definitions-v-2": "1.0.55",
34
+ "@wix/events_ticket-definitions-v-2": "1.0.56",
35
35
  "@wix/events_tickets": "1.0.40",
36
36
  "@wix/events_wix-events-v-2": "1.0.52"
37
37
  },
@@ -58,5 +58,5 @@
58
58
  "fqdn": ""
59
59
  }
60
60
  },
61
- "falconPackageHash": "b5afa13a1aee99a4630d1eccc6b4d544eebc3a604ba608931b08fa28"
61
+ "falconPackageHash": "77b1a8d3c3a19442d9f6305da334e2def26abf618e08e8b20a68d52b"
62
62
  }
@@ -18731,44 +18731,54 @@ interface RsvpsQueryBuilder {
18731
18731
  * @param value - Value to compare against.
18732
18732
  * @documentationMaturity preview
18733
18733
  */
18734
- eq: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18734
+ eq: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18735
18735
  /** @param propertyName - Property whose value is compared with `value`.
18736
18736
  * @param value - Value to compare against.
18737
18737
  * @documentationMaturity preview
18738
18738
  */
18739
- ne: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18739
+ ne: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18740
18740
  /** @param propertyName - Property whose value is compared with `value`.
18741
18741
  * @param value - Value to compare against.
18742
18742
  * @documentationMaturity preview
18743
18743
  */
18744
- ge: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18744
+ ge: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18745
18745
  /** @param propertyName - Property whose value is compared with `value`.
18746
18746
  * @param value - Value to compare against.
18747
18747
  * @documentationMaturity preview
18748
18748
  */
18749
- gt: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18749
+ gt: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18750
18750
  /** @param propertyName - Property whose value is compared with `value`.
18751
18751
  * @param value - Value to compare against.
18752
18752
  * @documentationMaturity preview
18753
18753
  */
18754
- le: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18754
+ le: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18755
18755
  /** @param propertyName - Property whose value is compared with `value`.
18756
18756
  * @param value - Value to compare against.
18757
18757
  * @documentationMaturity preview
18758
18758
  */
18759
- lt: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18759
+ lt: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18760
+ /** @param propertyName - Property whose value is compared with `string`.
18761
+ * @param string - String to compare against. Case-insensitive.
18762
+ * @documentationMaturity preview
18763
+ */
18764
+ startsWith: (propertyName: '_id' | 'eventId' | 'memberId' | 'contactId', value: string) => RsvpsQueryBuilder;
18765
+ /** @param propertyName - Property whose value is compared with `values`.
18766
+ * @param values - List of values to compare against.
18767
+ * @documentationMaturity preview
18768
+ */
18769
+ hasSome: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any[]) => RsvpsQueryBuilder;
18760
18770
  /** @documentationMaturity preview */
18761
- in: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18771
+ in: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18762
18772
  /** @documentationMaturity preview */
18763
- exists: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: boolean) => RsvpsQueryBuilder;
18773
+ exists: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: boolean) => RsvpsQueryBuilder;
18764
18774
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
18765
18775
  * @documentationMaturity preview
18766
18776
  */
18767
- ascending: (...propertyNames: Array<'_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount'>) => RsvpsQueryBuilder;
18777
+ ascending: (...propertyNames: Array<'_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized'>) => RsvpsQueryBuilder;
18768
18778
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
18769
18779
  * @documentationMaturity preview
18770
18780
  */
18771
- descending: (...propertyNames: Array<'_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount'>) => RsvpsQueryBuilder;
18781
+ descending: (...propertyNames: Array<'_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized'>) => RsvpsQueryBuilder;
18772
18782
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
18773
18783
  * @documentationMaturity preview
18774
18784
  */
@@ -24588,7 +24598,9 @@ declare enum Namespace {
24588
24598
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
24589
24599
  * The Partners company owns this namespace.
24590
24600
  */
24591
- UGC_TEMPLATE = "UGC_TEMPLATE"
24601
+ UGC_TEMPLATE = "UGC_TEMPLATE",
24602
+ /** Codux Headless Sites */
24603
+ CODUX = "CODUX"
24592
24604
  }
24593
24605
  /** Site transferred to another user. */
24594
24606
  interface SiteTransferred {
@@ -18731,44 +18731,54 @@ interface RsvpsQueryBuilder {
18731
18731
  * @param value - Value to compare against.
18732
18732
  * @documentationMaturity preview
18733
18733
  */
18734
- eq: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18734
+ eq: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18735
18735
  /** @param propertyName - Property whose value is compared with `value`.
18736
18736
  * @param value - Value to compare against.
18737
18737
  * @documentationMaturity preview
18738
18738
  */
18739
- ne: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18739
+ ne: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18740
18740
  /** @param propertyName - Property whose value is compared with `value`.
18741
18741
  * @param value - Value to compare against.
18742
18742
  * @documentationMaturity preview
18743
18743
  */
18744
- ge: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18744
+ ge: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18745
18745
  /** @param propertyName - Property whose value is compared with `value`.
18746
18746
  * @param value - Value to compare against.
18747
18747
  * @documentationMaturity preview
18748
18748
  */
18749
- gt: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18749
+ gt: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18750
18750
  /** @param propertyName - Property whose value is compared with `value`.
18751
18751
  * @param value - Value to compare against.
18752
18752
  * @documentationMaturity preview
18753
18753
  */
18754
- le: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18754
+ le: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18755
18755
  /** @param propertyName - Property whose value is compared with `value`.
18756
18756
  * @param value - Value to compare against.
18757
18757
  * @documentationMaturity preview
18758
18758
  */
18759
- lt: (propertyName: 'revision' | '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18759
+ lt: (propertyName: '_createdDate' | '_updatedDate' | 'totalGuests' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18760
+ /** @param propertyName - Property whose value is compared with `string`.
18761
+ * @param string - String to compare against. Case-insensitive.
18762
+ * @documentationMaturity preview
18763
+ */
18764
+ startsWith: (propertyName: '_id' | 'eventId' | 'memberId' | 'contactId', value: string) => RsvpsQueryBuilder;
18765
+ /** @param propertyName - Property whose value is compared with `values`.
18766
+ * @param values - List of values to compare against.
18767
+ * @documentationMaturity preview
18768
+ */
18769
+ hasSome: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any[]) => RsvpsQueryBuilder;
18760
18770
  /** @documentationMaturity preview */
18761
- in: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: any) => RsvpsQueryBuilder;
18771
+ in: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: any) => RsvpsQueryBuilder;
18762
18772
  /** @documentationMaturity preview */
18763
- exists: (propertyName: '_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount', value: boolean) => RsvpsQueryBuilder;
18773
+ exists: (propertyName: '_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized', value: boolean) => RsvpsQueryBuilder;
18764
18774
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
18765
18775
  * @documentationMaturity preview
18766
18776
  */
18767
- ascending: (...propertyNames: Array<'_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount'>) => RsvpsQueryBuilder;
18777
+ ascending: (...propertyNames: Array<'_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized'>) => RsvpsQueryBuilder;
18768
18778
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
18769
18779
  * @documentationMaturity preview
18770
18780
  */
18771
- descending: (...propertyNames: Array<'_id' | 'revision' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'language' | 'locale' | 'fullyCheckedIn' | 'checkedInGuestCount'>) => RsvpsQueryBuilder;
18781
+ descending: (...propertyNames: Array<'_id' | 'eventId' | '_createdDate' | '_updatedDate' | 'memberId' | 'contactId' | 'status' | 'totalGuests' | 'fullyCheckedIn' | 'checkedInGuestCount' | 'anonymized'>) => RsvpsQueryBuilder;
18772
18782
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
18773
18783
  * @documentationMaturity preview
18774
18784
  */
@@ -24588,7 +24598,9 @@ declare enum Namespace {
24588
24598
  * UGC Templates are templates that are created by users for personal use and to sale to other users.
24589
24599
  * The Partners company owns this namespace.
24590
24600
  */
24591
- UGC_TEMPLATE = "UGC_TEMPLATE"
24601
+ UGC_TEMPLATE = "UGC_TEMPLATE",
24602
+ /** Codux Headless Sites */
24603
+ CODUX = "CODUX"
24592
24604
  }
24593
24605
  /** Site transferred to another user. */
24594
24606
  interface SiteTransferred {