@wix/members 1.0.112 → 1.0.113
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 +11 -11
- package/type-bundles/context.bundle.d.ts +4497 -7745
- package/type-bundles/index.bundle.d.ts +4497 -7745
- package/type-bundles/meta.bundle.d.ts +28 -28
|
@@ -44,12 +44,12 @@ interface Badge$1 {
|
|
|
44
44
|
* Date the badge was created.
|
|
45
45
|
* @readonly
|
|
46
46
|
*/
|
|
47
|
-
createdDate?: Date;
|
|
47
|
+
createdDate?: Date | null;
|
|
48
48
|
/**
|
|
49
49
|
* Date the badge was updated.
|
|
50
50
|
* @readonly
|
|
51
51
|
*/
|
|
52
|
-
updatedDate?: Date;
|
|
52
|
+
updatedDate?: Date | null;
|
|
53
53
|
}
|
|
54
54
|
interface CreateBadgeRequest$1 {
|
|
55
55
|
/** Badge to create. */
|
|
@@ -264,12 +264,12 @@ interface Badge {
|
|
|
264
264
|
* Date the badge was created.
|
|
265
265
|
* @readonly
|
|
266
266
|
*/
|
|
267
|
-
_createdDate?: Date;
|
|
267
|
+
_createdDate?: Date | null;
|
|
268
268
|
/**
|
|
269
269
|
* Date the badge was updated.
|
|
270
270
|
* @readonly
|
|
271
271
|
*/
|
|
272
|
-
_updatedDate?: Date;
|
|
272
|
+
_updatedDate?: Date | null;
|
|
273
273
|
}
|
|
274
274
|
interface CreateBadgeRequest {
|
|
275
275
|
/** Badge to create. */
|
|
@@ -533,17 +533,17 @@ interface Member$3 {
|
|
|
533
533
|
* date the member was created
|
|
534
534
|
* @readonly
|
|
535
535
|
*/
|
|
536
|
-
creationDate?: Date;
|
|
536
|
+
creationDate?: Date | null;
|
|
537
537
|
/**
|
|
538
538
|
* date the member was last updated
|
|
539
539
|
* @readonly
|
|
540
540
|
*/
|
|
541
|
-
lastUpdateDate?: Date;
|
|
541
|
+
lastUpdateDate?: Date | null;
|
|
542
542
|
/**
|
|
543
543
|
* date of last login
|
|
544
544
|
* @readonly
|
|
545
545
|
*/
|
|
546
|
-
lastLoginDate?: Date;
|
|
546
|
+
lastLoginDate?: Date | null;
|
|
547
547
|
/**
|
|
548
548
|
* member's email addresses
|
|
549
549
|
* (returned when `include_contact_details` is set to `true`)
|
|
@@ -619,14 +619,14 @@ interface Address$3 {
|
|
|
619
619
|
interface CustomField$5 extends CustomFieldValueOneOf$1 {
|
|
620
620
|
strValue?: string | null;
|
|
621
621
|
numValue?: number;
|
|
622
|
-
dateValue?: Date;
|
|
622
|
+
dateValue?: Date | null;
|
|
623
623
|
name?: string;
|
|
624
624
|
}
|
|
625
625
|
/** @oneof */
|
|
626
626
|
interface CustomFieldValueOneOf$1 {
|
|
627
627
|
strValue?: string | null;
|
|
628
628
|
numValue?: number;
|
|
629
|
-
dateValue?: Date;
|
|
629
|
+
dateValue?: Date | null;
|
|
630
630
|
}
|
|
631
631
|
interface Image$4 {
|
|
632
632
|
/** WixMedia image ID. */
|
|
@@ -979,20 +979,20 @@ interface Member$2 {
|
|
|
979
979
|
* Date and time when the member was created.
|
|
980
980
|
* @readonly
|
|
981
981
|
*/
|
|
982
|
-
creationDate?: Date;
|
|
982
|
+
creationDate?: Date | null;
|
|
983
983
|
/**
|
|
984
984
|
* Date and time when the member was last updated.
|
|
985
985
|
*
|
|
986
986
|
*
|
|
987
987
|
* @readonly
|
|
988
988
|
*/
|
|
989
|
-
lastUpdateDate?: Date;
|
|
989
|
+
lastUpdateDate?: Date | null;
|
|
990
990
|
/**
|
|
991
991
|
* Date and time when the member last logged in to the site.
|
|
992
992
|
*
|
|
993
993
|
* @readonly
|
|
994
994
|
*/
|
|
995
|
-
lastLoginDate?: Date;
|
|
995
|
+
lastLoginDate?: Date | null;
|
|
996
996
|
/**
|
|
997
997
|
* List of email addresses.
|
|
998
998
|
*
|
|
@@ -1069,7 +1069,7 @@ interface CustomField$4 extends CustomFieldValueOneOf {
|
|
|
1069
1069
|
/** Number value. */
|
|
1070
1070
|
numValue?: number;
|
|
1071
1071
|
/** Date value. */
|
|
1072
|
-
dateValue?: Date;
|
|
1072
|
+
dateValue?: Date | null;
|
|
1073
1073
|
/** Display name. */
|
|
1074
1074
|
name?: string;
|
|
1075
1075
|
}
|
|
@@ -1077,7 +1077,7 @@ interface CustomField$4 extends CustomFieldValueOneOf {
|
|
|
1077
1077
|
interface CustomFieldValueOneOf {
|
|
1078
1078
|
strValue?: string | null;
|
|
1079
1079
|
numValue?: number;
|
|
1080
|
-
dateValue?: Date;
|
|
1080
|
+
dateValue?: Date | null;
|
|
1081
1081
|
}
|
|
1082
1082
|
interface Group {
|
|
1083
1083
|
_id?: string;
|
|
@@ -1410,12 +1410,12 @@ interface UserMember$1 {
|
|
|
1410
1410
|
* Member created timestamp.
|
|
1411
1411
|
* @readonly
|
|
1412
1412
|
*/
|
|
1413
|
-
createdDate?: Date;
|
|
1413
|
+
createdDate?: Date | null;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* Last member updated timestamp.
|
|
1416
1416
|
* @readonly
|
|
1417
1417
|
*/
|
|
1418
|
-
updatedDate?: Date;
|
|
1418
|
+
updatedDate?: Date | null;
|
|
1419
1419
|
/**
|
|
1420
1420
|
* Status, e.g. approved/blocked/...
|
|
1421
1421
|
* @readonly
|
|
@@ -1598,12 +1598,12 @@ interface UserMember {
|
|
|
1598
1598
|
* Member created timestamp.
|
|
1599
1599
|
* @readonly
|
|
1600
1600
|
*/
|
|
1601
|
-
_createdDate?: Date;
|
|
1601
|
+
_createdDate?: Date | null;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* Last member updated timestamp.
|
|
1604
1604
|
* @readonly
|
|
1605
1605
|
*/
|
|
1606
|
-
_updatedDate?: Date;
|
|
1606
|
+
_updatedDate?: Date | null;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* Status, e.g. approved/blocked/...
|
|
1609
1609
|
* @readonly
|
|
@@ -1800,12 +1800,12 @@ interface CustomField$3 {
|
|
|
1800
1800
|
* Date and time when the field was created.
|
|
1801
1801
|
* @readonly
|
|
1802
1802
|
*/
|
|
1803
|
-
createdDate?: Date;
|
|
1803
|
+
createdDate?: Date | null;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* Date and time when the field was updated.
|
|
1806
1806
|
* @readonly
|
|
1807
1807
|
*/
|
|
1808
|
-
updatedDate?: Date;
|
|
1808
|
+
updatedDate?: Date | null;
|
|
1809
1809
|
/** Revision number, used for checking the optimistic lock condition. */
|
|
1810
1810
|
revision?: string | null;
|
|
1811
1811
|
}
|
|
@@ -1994,12 +1994,12 @@ interface CustomField$2 {
|
|
|
1994
1994
|
* Date and time when the field was created.
|
|
1995
1995
|
* @readonly
|
|
1996
1996
|
*/
|
|
1997
|
-
_createdDate?: Date;
|
|
1997
|
+
_createdDate?: Date | null;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* Date and time when the field was updated.
|
|
2000
2000
|
* @readonly
|
|
2001
2001
|
*/
|
|
2002
|
-
_updatedDate?: Date;
|
|
2002
|
+
_updatedDate?: Date | null;
|
|
2003
2003
|
/** Revision number, used for checking the optimistic lock condition. */
|
|
2004
2004
|
revision?: string | null;
|
|
2005
2005
|
}
|
|
@@ -2493,17 +2493,17 @@ interface Member$1 {
|
|
|
2493
2493
|
* Date and time when the member was created.
|
|
2494
2494
|
* @readonly
|
|
2495
2495
|
*/
|
|
2496
|
-
createdDate?: Date;
|
|
2496
|
+
createdDate?: Date | null;
|
|
2497
2497
|
/**
|
|
2498
2498
|
* Date and time when the member was updated.
|
|
2499
2499
|
* @readonly
|
|
2500
2500
|
*/
|
|
2501
|
-
updatedDate?: Date;
|
|
2501
|
+
updatedDate?: Date | null;
|
|
2502
2502
|
/**
|
|
2503
2503
|
* Date and time when the member last logged in to the site.
|
|
2504
2504
|
* @readonly
|
|
2505
2505
|
*/
|
|
2506
|
-
lastLoginDate?: Date;
|
|
2506
|
+
lastLoginDate?: Date | null;
|
|
2507
2507
|
}
|
|
2508
2508
|
declare enum Status$1 {
|
|
2509
2509
|
UNKNOWN = "UNKNOWN",
|
|
@@ -3153,17 +3153,17 @@ interface Member {
|
|
|
3153
3153
|
* Date and time when the member was created.
|
|
3154
3154
|
* @readonly
|
|
3155
3155
|
*/
|
|
3156
|
-
_createdDate?: Date;
|
|
3156
|
+
_createdDate?: Date | null;
|
|
3157
3157
|
/**
|
|
3158
3158
|
* Date and time when the member was updated.
|
|
3159
3159
|
* @readonly
|
|
3160
3160
|
*/
|
|
3161
|
-
_updatedDate?: Date;
|
|
3161
|
+
_updatedDate?: Date | null;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* Date and time when the member last logged in to the site.
|
|
3164
3164
|
* @readonly
|
|
3165
3165
|
*/
|
|
3166
|
-
lastLoginDate?: Date;
|
|
3166
|
+
lastLoginDate?: Date | null;
|
|
3167
3167
|
}
|
|
3168
3168
|
declare enum Status {
|
|
3169
3169
|
UNKNOWN = "UNKNOWN",
|