@wix/data 1.0.163 → 1.0.165
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/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.165",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/data_collections": "1.0.
|
|
22
|
+
"@wix/data_collections": "1.0.55",
|
|
23
23
|
"@wix/data_external-database": "1.0.24",
|
|
24
|
-
"@wix/data_external-database-connections": "1.0.
|
|
25
|
-
"@wix/data_indexes": "1.0.
|
|
26
|
-
"@wix/data_items": "1.0.
|
|
24
|
+
"@wix/data_external-database-connections": "1.0.46",
|
|
25
|
+
"@wix/data_indexes": "1.0.39",
|
|
26
|
+
"@wix/data_items": "1.0.56"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "2cfd16b5c99453fdfc2bdfafc3883f3919254d51f4fb4271000411b2"
|
|
52
52
|
}
|
|
@@ -694,7 +694,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
694
694
|
/** ID of the entity associated with the event. */
|
|
695
695
|
entityId?: string;
|
|
696
696
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
697
|
-
eventTime?: Date;
|
|
697
|
+
eventTime?: Date | null;
|
|
698
698
|
/**
|
|
699
699
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
700
700
|
* (for example, GDPR).
|
|
@@ -723,7 +723,7 @@ interface EntityCreatedEvent$2 {
|
|
|
723
723
|
entity?: string;
|
|
724
724
|
}
|
|
725
725
|
interface RestoreInfo$2 {
|
|
726
|
-
deletedDate?: Date;
|
|
726
|
+
deletedDate?: Date | null;
|
|
727
727
|
}
|
|
728
728
|
interface EntityUpdatedEvent$2 {
|
|
729
729
|
/**
|
|
@@ -835,7 +835,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
835
835
|
/** ID of the entity associated with the event. */
|
|
836
836
|
entityId?: string;
|
|
837
837
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
838
|
-
eventTime?: Date;
|
|
838
|
+
eventTime?: Date | null;
|
|
839
839
|
/**
|
|
840
840
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
841
841
|
* (for example, GDPR).
|
|
@@ -1096,12 +1096,12 @@ interface DataCollection {
|
|
|
1096
1096
|
* Date the collection was created.
|
|
1097
1097
|
* @readonly
|
|
1098
1098
|
*/
|
|
1099
|
-
_createdDate?: Date;
|
|
1099
|
+
_createdDate?: Date | null;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* Date the collection was last updated.
|
|
1102
1102
|
* @readonly
|
|
1103
1103
|
*/
|
|
1104
|
-
_updatedDate?: Date;
|
|
1104
|
+
_updatedDate?: Date | null;
|
|
1105
1105
|
}
|
|
1106
1106
|
declare enum CollectionType {
|
|
1107
1107
|
/** User-created collection. */
|
|
@@ -2008,7 +2008,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
2008
2008
|
/** ID of the entity associated with the event. */
|
|
2009
2009
|
entityId?: string;
|
|
2010
2010
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2011
|
-
eventTime?: Date;
|
|
2011
|
+
eventTime?: Date | null;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2014
2014
|
* (for example, GDPR).
|
|
@@ -2037,7 +2037,7 @@ interface EntityCreatedEvent$1 {
|
|
|
2037
2037
|
entity?: string;
|
|
2038
2038
|
}
|
|
2039
2039
|
interface RestoreInfo$1 {
|
|
2040
|
-
deletedDate?: Date;
|
|
2040
|
+
deletedDate?: Date | null;
|
|
2041
2041
|
}
|
|
2042
2042
|
interface EntityUpdatedEvent$1 {
|
|
2043
2043
|
/**
|
|
@@ -3535,7 +3535,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3535
3535
|
/** ID of the entity associated with the event. */
|
|
3536
3536
|
entityId?: string;
|
|
3537
3537
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3538
|
-
eventTime?: Date;
|
|
3538
|
+
eventTime?: Date | null;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3541
3541
|
* (for example, GDPR).
|
|
@@ -3564,7 +3564,7 @@ interface EntityCreatedEvent {
|
|
|
3564
3564
|
entity?: string;
|
|
3565
3565
|
}
|
|
3566
3566
|
interface RestoreInfo {
|
|
3567
|
-
deletedDate?: Date;
|
|
3567
|
+
deletedDate?: Date | null;
|
|
3568
3568
|
}
|
|
3569
3569
|
interface EntityUpdatedEvent {
|
|
3570
3570
|
/**
|
|
@@ -3757,7 +3757,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
3757
3757
|
/** ID of the entity associated with the event. */
|
|
3758
3758
|
entityId?: string;
|
|
3759
3759
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3760
|
-
eventTime?: Date;
|
|
3760
|
+
eventTime?: Date | null;
|
|
3761
3761
|
/**
|
|
3762
3762
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3763
3763
|
* (for example, GDPR).
|
|
@@ -694,7 +694,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
694
694
|
/** ID of the entity associated with the event. */
|
|
695
695
|
entityId?: string;
|
|
696
696
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
697
|
-
eventTime?: Date;
|
|
697
|
+
eventTime?: Date | null;
|
|
698
698
|
/**
|
|
699
699
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
700
700
|
* (for example, GDPR).
|
|
@@ -723,7 +723,7 @@ interface EntityCreatedEvent$2 {
|
|
|
723
723
|
entity?: string;
|
|
724
724
|
}
|
|
725
725
|
interface RestoreInfo$2 {
|
|
726
|
-
deletedDate?: Date;
|
|
726
|
+
deletedDate?: Date | null;
|
|
727
727
|
}
|
|
728
728
|
interface EntityUpdatedEvent$2 {
|
|
729
729
|
/**
|
|
@@ -835,7 +835,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
835
835
|
/** ID of the entity associated with the event. */
|
|
836
836
|
entityId?: string;
|
|
837
837
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
838
|
-
eventTime?: Date;
|
|
838
|
+
eventTime?: Date | null;
|
|
839
839
|
/**
|
|
840
840
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
841
841
|
* (for example, GDPR).
|
|
@@ -1096,12 +1096,12 @@ interface DataCollection {
|
|
|
1096
1096
|
* Date the collection was created.
|
|
1097
1097
|
* @readonly
|
|
1098
1098
|
*/
|
|
1099
|
-
_createdDate?: Date;
|
|
1099
|
+
_createdDate?: Date | null;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* Date the collection was last updated.
|
|
1102
1102
|
* @readonly
|
|
1103
1103
|
*/
|
|
1104
|
-
_updatedDate?: Date;
|
|
1104
|
+
_updatedDate?: Date | null;
|
|
1105
1105
|
}
|
|
1106
1106
|
declare enum CollectionType {
|
|
1107
1107
|
/** User-created collection. */
|
|
@@ -2008,7 +2008,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
2008
2008
|
/** ID of the entity associated with the event. */
|
|
2009
2009
|
entityId?: string;
|
|
2010
2010
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2011
|
-
eventTime?: Date;
|
|
2011
|
+
eventTime?: Date | null;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2014
2014
|
* (for example, GDPR).
|
|
@@ -2037,7 +2037,7 @@ interface EntityCreatedEvent$1 {
|
|
|
2037
2037
|
entity?: string;
|
|
2038
2038
|
}
|
|
2039
2039
|
interface RestoreInfo$1 {
|
|
2040
|
-
deletedDate?: Date;
|
|
2040
|
+
deletedDate?: Date | null;
|
|
2041
2041
|
}
|
|
2042
2042
|
interface EntityUpdatedEvent$1 {
|
|
2043
2043
|
/**
|
|
@@ -3535,7 +3535,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3535
3535
|
/** ID of the entity associated with the event. */
|
|
3536
3536
|
entityId?: string;
|
|
3537
3537
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3538
|
-
eventTime?: Date;
|
|
3538
|
+
eventTime?: Date | null;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3541
3541
|
* (for example, GDPR).
|
|
@@ -3564,7 +3564,7 @@ interface EntityCreatedEvent {
|
|
|
3564
3564
|
entity?: string;
|
|
3565
3565
|
}
|
|
3566
3566
|
interface RestoreInfo {
|
|
3567
|
-
deletedDate?: Date;
|
|
3567
|
+
deletedDate?: Date | null;
|
|
3568
3568
|
}
|
|
3569
3569
|
interface EntityUpdatedEvent {
|
|
3570
3570
|
/**
|
|
@@ -3757,7 +3757,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
3757
3757
|
/** ID of the entity associated with the event. */
|
|
3758
3758
|
entityId?: string;
|
|
3759
3759
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3760
|
-
eventTime?: Date;
|
|
3760
|
+
eventTime?: Date | null;
|
|
3761
3761
|
/**
|
|
3762
3762
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3763
3763
|
* (for example, GDPR).
|
|
@@ -539,12 +539,12 @@ interface DataCollection$1 {
|
|
|
539
539
|
* Date the collection was created.
|
|
540
540
|
* @readonly
|
|
541
541
|
*/
|
|
542
|
-
createdDate?: Date;
|
|
542
|
+
createdDate?: Date | null;
|
|
543
543
|
/**
|
|
544
544
|
* Date the collection was last updated.
|
|
545
545
|
* @readonly
|
|
546
546
|
*/
|
|
547
|
-
updatedDate?: Date;
|
|
547
|
+
updatedDate?: Date | null;
|
|
548
548
|
}
|
|
549
549
|
declare enum CollectionType$1 {
|
|
550
550
|
/** User-created collection. */
|
|
@@ -1369,12 +1369,12 @@ interface DataCollection {
|
|
|
1369
1369
|
* Date the collection was created.
|
|
1370
1370
|
* @readonly
|
|
1371
1371
|
*/
|
|
1372
|
-
_createdDate?: Date;
|
|
1372
|
+
_createdDate?: Date | null;
|
|
1373
1373
|
/**
|
|
1374
1374
|
* Date the collection was last updated.
|
|
1375
1375
|
* @readonly
|
|
1376
1376
|
*/
|
|
1377
|
-
_updatedDate?: Date;
|
|
1377
|
+
_updatedDate?: Date | null;
|
|
1378
1378
|
}
|
|
1379
1379
|
declare enum CollectionType {
|
|
1380
1380
|
/** User-created collection. */
|