@wix/events 1.0.280 → 1.0.281
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.281",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -26,7 +26,7 @@
|
|
|
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.
|
|
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",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"fqdn": ""
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
"falconPackageHash": "
|
|
61
|
+
"falconPackageHash": "69ced0204a1e91f61419557213e5b06f0d7e9f5587fea87aa982b3f4"
|
|
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' | '
|
|
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' | '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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' | '
|
|
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' | '
|
|
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' | '
|
|
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' | '
|
|
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
|
*/
|
|
@@ -18731,44 +18731,54 @@ interface RsvpsQueryBuilder {
|
|
|
18731
18731
|
* @param value - Value to compare against.
|
|
18732
18732
|
* @documentationMaturity preview
|
|
18733
18733
|
*/
|
|
18734
|
-
eq: (propertyName: '_id' | '
|
|
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' | '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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' | '
|
|
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' | '
|
|
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' | '
|
|
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' | '
|
|
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
|
*/
|