@wix/data 1.0.170 → 1.0.172
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.172",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/data_collections": "1.0.59",
|
|
26
|
-
"@wix/data_external-database": "1.0.
|
|
27
|
-
"@wix/data_external-database-connections": "1.0.
|
|
28
|
-
"@wix/data_indexes": "1.0.
|
|
29
|
-
"@wix/data_items": "1.0.
|
|
26
|
+
"@wix/data_external-database": "1.0.27",
|
|
27
|
+
"@wix/data_external-database-connections": "1.0.49",
|
|
28
|
+
"@wix/data_indexes": "1.0.43",
|
|
29
|
+
"@wix/data_items": "1.0.60"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "b8c2253a81006ba4603bb921074c463ba7bc8a7504cece34cc12405b"
|
|
55
55
|
}
|
|
@@ -857,11 +857,11 @@ interface ExternalDatabaseConnectionCreatedEnvelope {
|
|
|
857
857
|
entity: ExternalDatabaseConnection;
|
|
858
858
|
metadata: EventMetadata$1;
|
|
859
859
|
}
|
|
860
|
-
interface
|
|
861
|
-
entity: ExternalDatabaseConnection;
|
|
860
|
+
interface ExternalDatabaseConnectionDeletedEnvelope {
|
|
862
861
|
metadata: EventMetadata$1;
|
|
863
862
|
}
|
|
864
|
-
interface
|
|
863
|
+
interface ExternalDatabaseConnectionUpdatedEnvelope {
|
|
864
|
+
entity: ExternalDatabaseConnection;
|
|
865
865
|
metadata: EventMetadata$1;
|
|
866
866
|
}
|
|
867
867
|
interface ListExternalDatabaseConnectionsOptions {
|
|
@@ -952,8 +952,8 @@ interface DeleteExternalDatabaseConnectionSignature {
|
|
|
952
952
|
(name: string): Promise<void>;
|
|
953
953
|
}
|
|
954
954
|
declare const onExternalDatabaseConnectionCreated$1: EventDefinition<ExternalDatabaseConnectionCreatedEnvelope, "wix.data.v1.external_database_connection_created">;
|
|
955
|
-
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
956
955
|
declare const onExternalDatabaseConnectionDeleted$1: EventDefinition<ExternalDatabaseConnectionDeletedEnvelope, "wix.data.v1.external_database_connection_deleted">;
|
|
956
|
+
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
957
957
|
|
|
958
958
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
959
959
|
|
|
@@ -969,18 +969,18 @@ type _publicOnExternalDatabaseConnectionCreatedType = typeof onExternalDatabaseC
|
|
|
969
969
|
*/
|
|
970
970
|
declare const onExternalDatabaseConnectionCreated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionCreatedType>>;
|
|
971
971
|
|
|
972
|
-
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
973
|
-
/**
|
|
974
|
-
* Triggered when an external database connection is updated.
|
|
975
|
-
*/
|
|
976
|
-
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
977
|
-
|
|
978
972
|
type _publicOnExternalDatabaseConnectionDeletedType = typeof onExternalDatabaseConnectionDeleted$1;
|
|
979
973
|
/**
|
|
980
974
|
* Triggered when an external database connection is deleted.
|
|
981
975
|
*/
|
|
982
976
|
declare const onExternalDatabaseConnectionDeleted: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionDeletedType>>;
|
|
983
977
|
|
|
978
|
+
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
979
|
+
/**
|
|
980
|
+
* Triggered when an external database connection is updated.
|
|
981
|
+
*/
|
|
982
|
+
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
983
|
+
|
|
984
984
|
type context$3_Capabilities = Capabilities;
|
|
985
985
|
type context$3_CauseOfFailure = CauseOfFailure;
|
|
986
986
|
declare const context$3_CauseOfFailure: typeof CauseOfFailure;
|
|
@@ -3777,11 +3777,11 @@ interface DataItemCreatedEnvelope {
|
|
|
3777
3777
|
entity: DataItem;
|
|
3778
3778
|
metadata: EventMetadata;
|
|
3779
3779
|
}
|
|
3780
|
-
interface
|
|
3780
|
+
interface DataItemDeletedEnvelope {
|
|
3781
3781
|
entity: DataItem;
|
|
3782
3782
|
metadata: EventMetadata;
|
|
3783
3783
|
}
|
|
3784
|
-
interface
|
|
3784
|
+
interface DataItemUpdatedEnvelope {
|
|
3785
3785
|
entity: DataItem;
|
|
3786
3786
|
metadata: EventMetadata;
|
|
3787
3787
|
}
|
|
@@ -4709,8 +4709,8 @@ interface ReplaceDataItemReferencesSignature {
|
|
|
4709
4709
|
(options?: ReplaceDataItemReferencesOptions | undefined): Promise<ReplaceDataItemReferencesResponse & ReplaceDataItemReferencesResponseNonNullableFields>;
|
|
4710
4710
|
}
|
|
4711
4711
|
declare const onDataItemCreated$1: EventDefinition<DataItemCreatedEnvelope, "wix.data.v2.data_item_created">;
|
|
4712
|
-
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
4713
4712
|
declare const onDataItemDeleted$1: EventDefinition<DataItemDeletedEnvelope, "wix.data.v2.data_item_deleted">;
|
|
4713
|
+
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
4714
4714
|
|
|
4715
4715
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4716
4716
|
|
|
@@ -4742,6 +4742,12 @@ type _publicOnDataItemCreatedType = typeof onDataItemCreated$1;
|
|
|
4742
4742
|
*/
|
|
4743
4743
|
declare const onDataItemCreated: ReturnType<typeof createEventModule<_publicOnDataItemCreatedType>>;
|
|
4744
4744
|
|
|
4745
|
+
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
4746
|
+
/**
|
|
4747
|
+
* Triggered when a data item is deleted.
|
|
4748
|
+
*/
|
|
4749
|
+
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
4750
|
+
|
|
4745
4751
|
type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
4746
4752
|
/**
|
|
4747
4753
|
* Triggered when a data item is updated.
|
|
@@ -4750,12 +4756,6 @@ type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
|
4750
4756
|
*/
|
|
4751
4757
|
declare const onDataItemUpdated: ReturnType<typeof createEventModule<_publicOnDataItemUpdatedType>>;
|
|
4752
4758
|
|
|
4753
|
-
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
4754
|
-
/**
|
|
4755
|
-
* Triggered when a data item is deleted.
|
|
4756
|
-
*/
|
|
4757
|
-
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
4758
|
-
|
|
4759
4759
|
type context$1_ACTION = ACTION;
|
|
4760
4760
|
declare const context$1_ACTION: typeof ACTION;
|
|
4761
4761
|
type context$1_Action = Action;
|
|
@@ -857,11 +857,11 @@ interface ExternalDatabaseConnectionCreatedEnvelope {
|
|
|
857
857
|
entity: ExternalDatabaseConnection;
|
|
858
858
|
metadata: EventMetadata$1;
|
|
859
859
|
}
|
|
860
|
-
interface
|
|
861
|
-
entity: ExternalDatabaseConnection;
|
|
860
|
+
interface ExternalDatabaseConnectionDeletedEnvelope {
|
|
862
861
|
metadata: EventMetadata$1;
|
|
863
862
|
}
|
|
864
|
-
interface
|
|
863
|
+
interface ExternalDatabaseConnectionUpdatedEnvelope {
|
|
864
|
+
entity: ExternalDatabaseConnection;
|
|
865
865
|
metadata: EventMetadata$1;
|
|
866
866
|
}
|
|
867
867
|
interface ListExternalDatabaseConnectionsOptions {
|
|
@@ -952,8 +952,8 @@ interface DeleteExternalDatabaseConnectionSignature {
|
|
|
952
952
|
(name: string): Promise<void>;
|
|
953
953
|
}
|
|
954
954
|
declare const onExternalDatabaseConnectionCreated$1: EventDefinition<ExternalDatabaseConnectionCreatedEnvelope, "wix.data.v1.external_database_connection_created">;
|
|
955
|
-
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
956
955
|
declare const onExternalDatabaseConnectionDeleted$1: EventDefinition<ExternalDatabaseConnectionDeletedEnvelope, "wix.data.v1.external_database_connection_deleted">;
|
|
956
|
+
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
957
957
|
|
|
958
958
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
959
959
|
|
|
@@ -969,18 +969,18 @@ type _publicOnExternalDatabaseConnectionCreatedType = typeof onExternalDatabaseC
|
|
|
969
969
|
*/
|
|
970
970
|
declare const onExternalDatabaseConnectionCreated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionCreatedType>>;
|
|
971
971
|
|
|
972
|
-
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
973
|
-
/**
|
|
974
|
-
* Triggered when an external database connection is updated.
|
|
975
|
-
*/
|
|
976
|
-
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
977
|
-
|
|
978
972
|
type _publicOnExternalDatabaseConnectionDeletedType = typeof onExternalDatabaseConnectionDeleted$1;
|
|
979
973
|
/**
|
|
980
974
|
* Triggered when an external database connection is deleted.
|
|
981
975
|
*/
|
|
982
976
|
declare const onExternalDatabaseConnectionDeleted: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionDeletedType>>;
|
|
983
977
|
|
|
978
|
+
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
979
|
+
/**
|
|
980
|
+
* Triggered when an external database connection is updated.
|
|
981
|
+
*/
|
|
982
|
+
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$1<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
983
|
+
|
|
984
984
|
type index_d$3_Capabilities = Capabilities;
|
|
985
985
|
type index_d$3_CauseOfFailure = CauseOfFailure;
|
|
986
986
|
declare const index_d$3_CauseOfFailure: typeof CauseOfFailure;
|
|
@@ -3777,11 +3777,11 @@ interface DataItemCreatedEnvelope {
|
|
|
3777
3777
|
entity: DataItem;
|
|
3778
3778
|
metadata: EventMetadata;
|
|
3779
3779
|
}
|
|
3780
|
-
interface
|
|
3780
|
+
interface DataItemDeletedEnvelope {
|
|
3781
3781
|
entity: DataItem;
|
|
3782
3782
|
metadata: EventMetadata;
|
|
3783
3783
|
}
|
|
3784
|
-
interface
|
|
3784
|
+
interface DataItemUpdatedEnvelope {
|
|
3785
3785
|
entity: DataItem;
|
|
3786
3786
|
metadata: EventMetadata;
|
|
3787
3787
|
}
|
|
@@ -4709,8 +4709,8 @@ interface ReplaceDataItemReferencesSignature {
|
|
|
4709
4709
|
(options?: ReplaceDataItemReferencesOptions | undefined): Promise<ReplaceDataItemReferencesResponse & ReplaceDataItemReferencesResponseNonNullableFields>;
|
|
4710
4710
|
}
|
|
4711
4711
|
declare const onDataItemCreated$1: EventDefinition<DataItemCreatedEnvelope, "wix.data.v2.data_item_created">;
|
|
4712
|
-
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
4713
4712
|
declare const onDataItemDeleted$1: EventDefinition<DataItemDeletedEnvelope, "wix.data.v2.data_item_deleted">;
|
|
4713
|
+
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
4714
4714
|
|
|
4715
4715
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4716
4716
|
|
|
@@ -4742,6 +4742,12 @@ type _publicOnDataItemCreatedType = typeof onDataItemCreated$1;
|
|
|
4742
4742
|
*/
|
|
4743
4743
|
declare const onDataItemCreated: ReturnType<typeof createEventModule<_publicOnDataItemCreatedType>>;
|
|
4744
4744
|
|
|
4745
|
+
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
4746
|
+
/**
|
|
4747
|
+
* Triggered when a data item is deleted.
|
|
4748
|
+
*/
|
|
4749
|
+
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
4750
|
+
|
|
4745
4751
|
type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
4746
4752
|
/**
|
|
4747
4753
|
* Triggered when a data item is updated.
|
|
@@ -4750,12 +4756,6 @@ type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
|
4750
4756
|
*/
|
|
4751
4757
|
declare const onDataItemUpdated: ReturnType<typeof createEventModule<_publicOnDataItemUpdatedType>>;
|
|
4752
4758
|
|
|
4753
|
-
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
4754
|
-
/**
|
|
4755
|
-
* Triggered when a data item is deleted.
|
|
4756
|
-
*/
|
|
4757
|
-
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
4758
|
-
|
|
4759
4759
|
type index_d$1_ACTION = ACTION;
|
|
4760
4760
|
declare const index_d$1_ACTION: typeof ACTION;
|
|
4761
4761
|
type index_d$1_Action = Action;
|
|
@@ -735,7 +735,7 @@ interface CreateIndexRequest {
|
|
|
735
735
|
index: Index;
|
|
736
736
|
}
|
|
737
737
|
interface CreateIndexResponse {
|
|
738
|
-
/** created index and
|
|
738
|
+
/** created index and its status */
|
|
739
739
|
index?: Index;
|
|
740
740
|
}
|
|
741
741
|
interface RemoveIndexRequest {
|
|
@@ -844,6 +844,8 @@ declare class ItemAlreadyExistsWixError extends Error {
|
|
|
844
844
|
errorSchemaName: string;
|
|
845
845
|
/** @hidden */
|
|
846
846
|
errorType: string;
|
|
847
|
+
/** @hidden */
|
|
848
|
+
spiErrorData: object;
|
|
847
849
|
data: ItemAlreadyExistsError;
|
|
848
850
|
constructor(data: ItemAlreadyExistsError);
|
|
849
851
|
/** @hidden */
|
|
@@ -862,6 +864,8 @@ declare class ItemNotFoundWixError extends Error {
|
|
|
862
864
|
errorSchemaName: string;
|
|
863
865
|
/** @hidden */
|
|
864
866
|
errorType: string;
|
|
867
|
+
/** @hidden */
|
|
868
|
+
spiErrorData: object;
|
|
865
869
|
data: ItemNotFoundError;
|
|
866
870
|
constructor(data: ItemNotFoundError);
|
|
867
871
|
/** @hidden */
|
|
@@ -880,6 +884,8 @@ declare class CollectionAlreadyExistsWixError extends Error {
|
|
|
880
884
|
errorSchemaName: string;
|
|
881
885
|
/** @hidden */
|
|
882
886
|
errorType: string;
|
|
887
|
+
/** @hidden */
|
|
888
|
+
spiErrorData: object;
|
|
883
889
|
data: CollectionAlreadyExistsError;
|
|
884
890
|
constructor(data: CollectionAlreadyExistsError);
|
|
885
891
|
/** @hidden */
|
|
@@ -898,6 +904,8 @@ declare class CollectionNotFoundWixError extends Error {
|
|
|
898
904
|
errorSchemaName: string;
|
|
899
905
|
/** @hidden */
|
|
900
906
|
errorType: string;
|
|
907
|
+
/** @hidden */
|
|
908
|
+
spiErrorData: object;
|
|
901
909
|
data: CollectionNotFoundError;
|
|
902
910
|
constructor(data: CollectionNotFoundError);
|
|
903
911
|
/** @hidden */
|
|
@@ -916,6 +924,8 @@ declare class ReferenceAlreadyExistsWixError extends Error {
|
|
|
916
924
|
errorSchemaName: string;
|
|
917
925
|
/** @hidden */
|
|
918
926
|
errorType: string;
|
|
927
|
+
/** @hidden */
|
|
928
|
+
spiErrorData: object;
|
|
919
929
|
data: ReferenceAlreadyExistsError;
|
|
920
930
|
constructor(data: ReferenceAlreadyExistsError);
|
|
921
931
|
/** @hidden */
|
|
@@ -934,6 +944,8 @@ declare class ReferenceNotFoundWixError extends Error {
|
|
|
934
944
|
errorSchemaName: string;
|
|
935
945
|
/** @hidden */
|
|
936
946
|
errorType: string;
|
|
947
|
+
/** @hidden */
|
|
948
|
+
spiErrorData: object;
|
|
937
949
|
data: ReferenceNotFoundError;
|
|
938
950
|
constructor(data: ReferenceNotFoundError);
|
|
939
951
|
/** @hidden */
|
|
@@ -952,6 +964,8 @@ declare class ValidationWixError extends Error {
|
|
|
952
964
|
errorSchemaName: string;
|
|
953
965
|
/** @hidden */
|
|
954
966
|
errorType: string;
|
|
967
|
+
/** @hidden */
|
|
968
|
+
spiErrorData: object;
|
|
955
969
|
data: ValidationError;
|
|
956
970
|
constructor(data: ValidationError);
|
|
957
971
|
/** @hidden */
|
|
@@ -970,6 +984,8 @@ declare class CollectionChangeNotSupportedWixError extends Error {
|
|
|
970
984
|
errorSchemaName: string;
|
|
971
985
|
/** @hidden */
|
|
972
986
|
errorType: string;
|
|
987
|
+
/** @hidden */
|
|
988
|
+
spiErrorData: object;
|
|
973
989
|
data: CollectionChangeNotSupported;
|
|
974
990
|
constructor(data: CollectionChangeNotSupported);
|
|
975
991
|
/** @hidden */
|
|
@@ -986,6 +1002,8 @@ declare class BadRequestWixError extends Error {
|
|
|
986
1002
|
name: string;
|
|
987
1003
|
/** @hidden */
|
|
988
1004
|
errorType: string;
|
|
1005
|
+
/** @hidden */
|
|
1006
|
+
spiErrorData: object;
|
|
989
1007
|
constructor();
|
|
990
1008
|
/** @hidden */
|
|
991
1009
|
static readonly __type = "wix_spi_error";
|
|
@@ -735,7 +735,7 @@ interface CreateIndexRequest {
|
|
|
735
735
|
index: Index;
|
|
736
736
|
}
|
|
737
737
|
interface CreateIndexResponse {
|
|
738
|
-
/** created index and
|
|
738
|
+
/** created index and its status */
|
|
739
739
|
index?: Index;
|
|
740
740
|
}
|
|
741
741
|
interface RemoveIndexRequest {
|
|
@@ -1024,6 +1024,8 @@ declare class ItemAlreadyExistsWixError extends Error {
|
|
|
1024
1024
|
errorSchemaName: string;
|
|
1025
1025
|
/** @hidden */
|
|
1026
1026
|
errorType: string;
|
|
1027
|
+
/** @hidden */
|
|
1028
|
+
spiErrorData: object;
|
|
1027
1029
|
data: ItemAlreadyExistsError;
|
|
1028
1030
|
constructor(data: ItemAlreadyExistsError);
|
|
1029
1031
|
/** @hidden */
|
|
@@ -1042,6 +1044,8 @@ declare class ItemNotFoundWixError extends Error {
|
|
|
1042
1044
|
errorSchemaName: string;
|
|
1043
1045
|
/** @hidden */
|
|
1044
1046
|
errorType: string;
|
|
1047
|
+
/** @hidden */
|
|
1048
|
+
spiErrorData: object;
|
|
1045
1049
|
data: ItemNotFoundError;
|
|
1046
1050
|
constructor(data: ItemNotFoundError);
|
|
1047
1051
|
/** @hidden */
|
|
@@ -1060,6 +1064,8 @@ declare class CollectionAlreadyExistsWixError extends Error {
|
|
|
1060
1064
|
errorSchemaName: string;
|
|
1061
1065
|
/** @hidden */
|
|
1062
1066
|
errorType: string;
|
|
1067
|
+
/** @hidden */
|
|
1068
|
+
spiErrorData: object;
|
|
1063
1069
|
data: CollectionAlreadyExistsError;
|
|
1064
1070
|
constructor(data: CollectionAlreadyExistsError);
|
|
1065
1071
|
/** @hidden */
|
|
@@ -1078,6 +1084,8 @@ declare class CollectionNotFoundWixError extends Error {
|
|
|
1078
1084
|
errorSchemaName: string;
|
|
1079
1085
|
/** @hidden */
|
|
1080
1086
|
errorType: string;
|
|
1087
|
+
/** @hidden */
|
|
1088
|
+
spiErrorData: object;
|
|
1081
1089
|
data: CollectionNotFoundError;
|
|
1082
1090
|
constructor(data: CollectionNotFoundError);
|
|
1083
1091
|
/** @hidden */
|
|
@@ -1096,6 +1104,8 @@ declare class ReferenceAlreadyExistsWixError extends Error {
|
|
|
1096
1104
|
errorSchemaName: string;
|
|
1097
1105
|
/** @hidden */
|
|
1098
1106
|
errorType: string;
|
|
1107
|
+
/** @hidden */
|
|
1108
|
+
spiErrorData: object;
|
|
1099
1109
|
data: ReferenceAlreadyExistsError;
|
|
1100
1110
|
constructor(data: ReferenceAlreadyExistsError);
|
|
1101
1111
|
/** @hidden */
|
|
@@ -1114,6 +1124,8 @@ declare class ReferenceNotFoundWixError extends Error {
|
|
|
1114
1124
|
errorSchemaName: string;
|
|
1115
1125
|
/** @hidden */
|
|
1116
1126
|
errorType: string;
|
|
1127
|
+
/** @hidden */
|
|
1128
|
+
spiErrorData: object;
|
|
1117
1129
|
data: ReferenceNotFoundError;
|
|
1118
1130
|
constructor(data: ReferenceNotFoundError);
|
|
1119
1131
|
/** @hidden */
|
|
@@ -1132,6 +1144,8 @@ declare class ValidationWixError extends Error {
|
|
|
1132
1144
|
errorSchemaName: string;
|
|
1133
1145
|
/** @hidden */
|
|
1134
1146
|
errorType: string;
|
|
1147
|
+
/** @hidden */
|
|
1148
|
+
spiErrorData: object;
|
|
1135
1149
|
data: ValidationError;
|
|
1136
1150
|
constructor(data: ValidationError);
|
|
1137
1151
|
/** @hidden */
|
|
@@ -1150,6 +1164,8 @@ declare class CollectionChangeNotSupportedWixError extends Error {
|
|
|
1150
1164
|
errorSchemaName: string;
|
|
1151
1165
|
/** @hidden */
|
|
1152
1166
|
errorType: string;
|
|
1167
|
+
/** @hidden */
|
|
1168
|
+
spiErrorData: object;
|
|
1153
1169
|
data: CollectionChangeNotSupported;
|
|
1154
1170
|
constructor(data: CollectionChangeNotSupported);
|
|
1155
1171
|
/** @hidden */
|
|
@@ -1166,6 +1182,8 @@ declare class BadRequestWixError extends Error {
|
|
|
1166
1182
|
name: string;
|
|
1167
1183
|
/** @hidden */
|
|
1168
1184
|
errorType: string;
|
|
1185
|
+
/** @hidden */
|
|
1186
|
+
spiErrorData: object;
|
|
1169
1187
|
constructor();
|
|
1170
1188
|
/** @hidden */
|
|
1171
1189
|
static readonly __type = "wix_spi_error";
|