@wix/members 1.0.107 → 1.0.108
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/members",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@wix/members_custom-field-suggestion": "1.0.6",
|
|
26
26
|
"@wix/members_member-role-definition": "1.0.9",
|
|
27
27
|
"@wix/members_member-to-member-block": "1.0.6",
|
|
28
|
-
"@wix/members_members": "1.0.
|
|
28
|
+
"@wix/members_members": "1.0.44",
|
|
29
29
|
"@wix/members_user-member": "1.0.12"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "5137c0cf26aacb3f5f67fc48f761f50993ad006b4e75a624421ff960"
|
|
55
55
|
}
|
|
@@ -5153,26 +5153,26 @@ interface MembersQueryBuilder {
|
|
|
5153
5153
|
* @param value - Value to compare against.
|
|
5154
5154
|
* @documentationMaturity preview
|
|
5155
5155
|
*/
|
|
5156
|
-
eq: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5156
|
+
eq: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5157
5157
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
5158
5158
|
* @param value - Value to compare against.
|
|
5159
5159
|
* @documentationMaturity preview
|
|
5160
5160
|
*/
|
|
5161
|
-
ne: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5161
|
+
ne: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5162
5162
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
5163
5163
|
* @param string - String to compare against. Case-insensitive.
|
|
5164
5164
|
* @documentationMaturity preview
|
|
5165
5165
|
*/
|
|
5166
|
-
startsWith: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: string) => MembersQueryBuilder;
|
|
5166
|
+
startsWith: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: string) => MembersQueryBuilder;
|
|
5167
5167
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
5168
5168
|
* @param values - List of values to compare against.
|
|
5169
5169
|
* @documentationMaturity preview
|
|
5170
5170
|
*/
|
|
5171
|
-
hasSome: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any[]) => MembersQueryBuilder;
|
|
5171
|
+
hasSome: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any[]) => MembersQueryBuilder;
|
|
5172
5172
|
/** @documentationMaturity preview */
|
|
5173
|
-
in: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5173
|
+
in: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5174
5174
|
/** @documentationMaturity preview */
|
|
5175
|
-
exists: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: boolean) => MembersQueryBuilder;
|
|
5175
|
+
exists: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: boolean) => MembersQueryBuilder;
|
|
5176
5176
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
5177
5177
|
* @documentationMaturity preview
|
|
5178
5178
|
*/
|
|
@@ -5153,26 +5153,26 @@ interface MembersQueryBuilder {
|
|
|
5153
5153
|
* @param value - Value to compare against.
|
|
5154
5154
|
* @documentationMaturity preview
|
|
5155
5155
|
*/
|
|
5156
|
-
eq: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5156
|
+
eq: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5157
5157
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
5158
5158
|
* @param value - Value to compare against.
|
|
5159
5159
|
* @documentationMaturity preview
|
|
5160
5160
|
*/
|
|
5161
|
-
ne: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5161
|
+
ne: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5162
5162
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
5163
5163
|
* @param string - String to compare against. Case-insensitive.
|
|
5164
5164
|
* @documentationMaturity preview
|
|
5165
5165
|
*/
|
|
5166
|
-
startsWith: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: string) => MembersQueryBuilder;
|
|
5166
|
+
startsWith: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: string) => MembersQueryBuilder;
|
|
5167
5167
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
5168
5168
|
* @param values - List of values to compare against.
|
|
5169
5169
|
* @documentationMaturity preview
|
|
5170
5170
|
*/
|
|
5171
|
-
hasSome: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any[]) => MembersQueryBuilder;
|
|
5171
|
+
hasSome: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any[]) => MembersQueryBuilder;
|
|
5172
5172
|
/** @documentationMaturity preview */
|
|
5173
|
-
in: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5173
|
+
in: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
5174
5174
|
/** @documentationMaturity preview */
|
|
5175
|
-
exists: (propertyName: '_id' | 'loginEmail' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: boolean) => MembersQueryBuilder;
|
|
5175
|
+
exists: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: boolean) => MembersQueryBuilder;
|
|
5176
5176
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
5177
5177
|
* @documentationMaturity preview
|
|
5178
5178
|
*/
|