@wix/data 1.0.143 → 1.0.145
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/build/cjs/index.d.ts +5 -4
- package/build/cjs/index.js +8 -4
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +5 -4
- package/build/es/index.js +5 -4
- package/build/es/index.js.map +1 -1
- package/package.json +9 -8
- package/type-bundles/context.bundle.d.ts +731 -92
- package/type-bundles/index.bundle.d.ts +731 -92
- package/type-bundles/meta.bundle.d.ts +16 -4
- package/type-bundles/service-plugins-context.bundle.d.ts +87 -2
|
@@ -923,7 +923,10 @@ declare enum Role$1 {
|
|
|
923
923
|
ANYONE = "ANYONE"
|
|
924
924
|
}
|
|
925
925
|
interface Plugin$1 extends PluginOptionsOneOf$1 {
|
|
926
|
-
/**
|
|
926
|
+
/**
|
|
927
|
+
* Options for the Publish plugin.
|
|
928
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
929
|
+
*/
|
|
927
930
|
publishOptions?: PublishPluginOptions$1;
|
|
928
931
|
/** Options for the Single Item plugin. */
|
|
929
932
|
singleItemOptions?: SingleItemPluginOptions$1;
|
|
@@ -948,7 +951,10 @@ interface Plugin$1 extends PluginOptionsOneOf$1 {
|
|
|
948
951
|
}
|
|
949
952
|
/** @oneof */
|
|
950
953
|
interface PluginOptionsOneOf$1 {
|
|
951
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Options for the Publish plugin.
|
|
956
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
957
|
+
*/
|
|
952
958
|
publishOptions?: PublishPluginOptions$1;
|
|
953
959
|
/** Options for the Single Item plugin. */
|
|
954
960
|
singleItemOptions?: SingleItemPluginOptions$1;
|
|
@@ -1751,7 +1757,10 @@ declare enum Role {
|
|
|
1751
1757
|
ANYONE = "ANYONE"
|
|
1752
1758
|
}
|
|
1753
1759
|
interface Plugin extends PluginOptionsOneOf {
|
|
1754
|
-
/**
|
|
1760
|
+
/**
|
|
1761
|
+
* Options for the Publish plugin.
|
|
1762
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
1763
|
+
*/
|
|
1755
1764
|
publishOptions?: PublishPluginOptions;
|
|
1756
1765
|
/** Options for the Single Item plugin. */
|
|
1757
1766
|
singleItemOptions?: SingleItemPluginOptions;
|
|
@@ -1776,7 +1785,10 @@ interface Plugin extends PluginOptionsOneOf {
|
|
|
1776
1785
|
}
|
|
1777
1786
|
/** @oneof */
|
|
1778
1787
|
interface PluginOptionsOneOf {
|
|
1779
|
-
/**
|
|
1788
|
+
/**
|
|
1789
|
+
* Options for the Publish plugin.
|
|
1790
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
1791
|
+
*/
|
|
1780
1792
|
publishOptions?: PublishPluginOptions;
|
|
1781
1793
|
/** Options for the Single Item plugin. */
|
|
1782
1794
|
singleItemOptions?: SingleItemPluginOptions;
|
|
@@ -991,9 +991,93 @@ declare global {
|
|
|
991
991
|
}
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
+
interface QueryDataItemsEnvelope {
|
|
995
|
+
request: QueryDataItemsRequest;
|
|
996
|
+
metadata: Context;
|
|
997
|
+
}
|
|
998
|
+
interface CountDataItemsEnvelope {
|
|
999
|
+
request: CountDataItemsRequest;
|
|
1000
|
+
metadata: Context;
|
|
1001
|
+
}
|
|
1002
|
+
interface AggregateDataItemsEnvelope {
|
|
1003
|
+
request: AggregateDataItemsRequest;
|
|
1004
|
+
metadata: Context;
|
|
1005
|
+
}
|
|
1006
|
+
interface QueryDistinctValuesEnvelope {
|
|
1007
|
+
request: QueryDistinctValuesRequest;
|
|
1008
|
+
metadata: Context;
|
|
1009
|
+
}
|
|
1010
|
+
interface InsertDataItemsEnvelope {
|
|
1011
|
+
request: InsertDataItemsRequest;
|
|
1012
|
+
metadata: Context;
|
|
1013
|
+
}
|
|
1014
|
+
interface UpdateDataItemsEnvelope {
|
|
1015
|
+
request: UpdateDataItemsRequest;
|
|
1016
|
+
metadata: Context;
|
|
1017
|
+
}
|
|
1018
|
+
interface RemoveDataItemsEnvelope {
|
|
1019
|
+
request: RemoveDataItemsRequest;
|
|
1020
|
+
metadata: Context;
|
|
1021
|
+
}
|
|
1022
|
+
interface TruncateDataItemsEnvelope {
|
|
1023
|
+
request: TruncateDataItemsRequest;
|
|
1024
|
+
metadata: Context;
|
|
1025
|
+
}
|
|
1026
|
+
interface QueryReferencedDataItemsEnvelope {
|
|
1027
|
+
request: QueryReferencedDataItemsRequest;
|
|
1028
|
+
metadata: Context;
|
|
1029
|
+
}
|
|
1030
|
+
interface InsertDataItemReferencesEnvelope {
|
|
1031
|
+
request: InsertDataItemReferencesRequest;
|
|
1032
|
+
metadata: Context;
|
|
1033
|
+
}
|
|
1034
|
+
interface RemoveDataItemReferencesEnvelope {
|
|
1035
|
+
request: RemoveDataItemReferencesRequest;
|
|
1036
|
+
metadata: Context;
|
|
1037
|
+
}
|
|
1038
|
+
interface ListCollectionsEnvelope {
|
|
1039
|
+
request: ListCollectionsRequest;
|
|
1040
|
+
metadata: Context;
|
|
1041
|
+
}
|
|
1042
|
+
interface CreateCollectionEnvelope {
|
|
1043
|
+
request: CreateCollectionRequest;
|
|
1044
|
+
metadata: Context;
|
|
1045
|
+
}
|
|
1046
|
+
interface UpdateCollectionEnvelope {
|
|
1047
|
+
request: UpdateCollectionRequest;
|
|
1048
|
+
metadata: Context;
|
|
1049
|
+
}
|
|
1050
|
+
interface DeleteCollectionEnvelope {
|
|
1051
|
+
request: DeleteCollectionRequest;
|
|
1052
|
+
metadata: Context;
|
|
1053
|
+
}
|
|
1054
|
+
interface GetCapabilitiesEnvelope {
|
|
1055
|
+
request: GetCapabilitiesRequest;
|
|
1056
|
+
metadata: Context;
|
|
1057
|
+
}
|
|
1058
|
+
declare const provideHandlers$1: ServicePluginDefinition<{
|
|
1059
|
+
queryDataItems(payload: QueryDataItemsEnvelope): QueryDataItemsResponse | Promise<QueryDataItemsResponse>;
|
|
1060
|
+
countDataItems(payload: CountDataItemsEnvelope): CountDataItemsResponse | Promise<CountDataItemsResponse>;
|
|
1061
|
+
aggregateDataItems(payload: AggregateDataItemsEnvelope): AggregateDataItemsResponse | Promise<AggregateDataItemsResponse>;
|
|
1062
|
+
queryDistinctValues(payload: QueryDistinctValuesEnvelope): QueryDistinctValuesResponse | Promise<QueryDistinctValuesResponse>;
|
|
1063
|
+
insertDataItems(payload: InsertDataItemsEnvelope): InsertDataItemsResponse | Promise<InsertDataItemsResponse>;
|
|
1064
|
+
updateDataItems(payload: UpdateDataItemsEnvelope): UpdateDataItemsResponse | Promise<UpdateDataItemsResponse>;
|
|
1065
|
+
removeDataItems(payload: RemoveDataItemsEnvelope): RemoveDataItemsResponse | Promise<RemoveDataItemsResponse>;
|
|
1066
|
+
truncateDataItems(payload: TruncateDataItemsEnvelope): TruncateDataItemsResponse | Promise<TruncateDataItemsResponse>;
|
|
1067
|
+
queryReferencedDataItems(payload: QueryReferencedDataItemsEnvelope): QueryReferencedDataItemsResponse | Promise<QueryReferencedDataItemsResponse>;
|
|
1068
|
+
insertDataItemReferences(payload: InsertDataItemReferencesEnvelope): InsertDataItemReferencesResponse | Promise<InsertDataItemReferencesResponse>;
|
|
1069
|
+
removeDataItemReferences(payload: RemoveDataItemReferencesEnvelope): RemoveDataItemReferencesResponse | Promise<RemoveDataItemReferencesResponse>;
|
|
1070
|
+
listCollections(payload: ListCollectionsEnvelope): ListCollectionsResponse | Promise<ListCollectionsResponse>;
|
|
1071
|
+
createCollection(payload: CreateCollectionEnvelope): CreateCollectionResponse | Promise<CreateCollectionResponse>;
|
|
1072
|
+
updateCollection(payload: UpdateCollectionEnvelope): UpdateCollectionResponse | Promise<UpdateCollectionResponse>;
|
|
1073
|
+
deleteCollection(payload: DeleteCollectionEnvelope): DeleteCollectionResponse | Promise<DeleteCollectionResponse>;
|
|
1074
|
+
getCapabilities(payload: GetCapabilitiesEnvelope): GetCapabilitiesResponse | Promise<GetCapabilitiesResponse>;
|
|
1075
|
+
}>;
|
|
1076
|
+
|
|
994
1077
|
declare function createServicePluginModule<T extends ServicePluginDefinition<any>>(servicePluginDefinition: T): BuildServicePluginDefinition<T> & T;
|
|
995
1078
|
|
|
996
|
-
|
|
1079
|
+
type _publicProvideHandlersType = typeof provideHandlers$1;
|
|
1080
|
+
declare const provideHandlers: ReturnType<typeof createServicePluginModule<_publicProvideHandlersType>>;
|
|
997
1081
|
|
|
998
1082
|
type context_AggregateDataItemsRequest = AggregateDataItemsRequest;
|
|
999
1083
|
type context_AggregateDataItemsRequestPagingMethodOneOf = AggregateDataItemsRequestPagingMethodOneOf;
|
|
@@ -1127,9 +1211,10 @@ type context_ValidationError = ValidationError;
|
|
|
1127
1211
|
type context_ValidationViolation = ValidationViolation;
|
|
1128
1212
|
type context_ValidationWixError = ValidationWixError;
|
|
1129
1213
|
declare const context_ValidationWixError: typeof ValidationWixError;
|
|
1214
|
+
type context__publicProvideHandlersType = _publicProvideHandlersType;
|
|
1130
1215
|
declare const context_provideHandlers: typeof provideHandlers;
|
|
1131
1216
|
declare namespace context {
|
|
1132
|
-
export { type context_AggregateDataItemsRequest as AggregateDataItemsRequest, type context_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context_AggregateDataItemsResponse as AggregateDataItemsResponse, type context_Aggregation as Aggregation, type context_AlternativeUri as AlternativeUri, type context_ArrayOptions as ArrayOptions, type context_ArrayOptionsTypeOptionsOneOf as ArrayOptionsTypeOptionsOneOf, type context_Average as Average, context_BadRequestWixError as BadRequestWixError, type context_Collection as Collection, type context_CollectionAlreadyExistsError as CollectionAlreadyExistsError, context_CollectionAlreadyExistsWixError as CollectionAlreadyExistsWixError, type context_CollectionCapabilities as CollectionCapabilities, type context_CollectionChangeNotSupported as CollectionChangeNotSupported, type context_CollectionChangeNotSupportedError as CollectionChangeNotSupportedError, context_CollectionChangeNotSupportedWixError as CollectionChangeNotSupportedWixError, type context_CollectionNotFoundError as CollectionNotFoundError, context_CollectionNotFoundWixError as CollectionNotFoundWixError, type context_Context as Context, type context_Count as Count, type context_CountDataItemsRequest as CountDataItemsRequest, type context_CountDataItemsResponse as CountDataItemsResponse, type context_CreateCollectionRequest as CreateCollectionRequest, type context_CreateCollectionResponse as CreateCollectionResponse, type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DataItemModificationResult as DataItemModificationResult, type context_DataItemModificationResultResultOneOf as DataItemModificationResultResultOneOf, context_DataOperation as DataOperation, type context_DeleteCollectionRequest as DeleteCollectionRequest, type context_DeleteCollectionResponse as DeleteCollectionResponse, type Error$1 as Error, type context_ExternalDatabaseSpiConfig as ExternalDatabaseSpiConfig, type context_Field as Field, type context_FieldCapabilities as FieldCapabilities, context_FieldType as FieldType, type context_FieldTypeOptionsOneOf as FieldTypeOptionsOneOf, type context_GetCapabilitiesRequest as GetCapabilitiesRequest, type context_GetCapabilitiesResponse as GetCapabilitiesResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Index as Index, type context_IndexField as IndexField, type context_IndexOptions as IndexOptions, type context_InsertDataItemReferencesRequest as InsertDataItemReferencesRequest, type context_InsertDataItemReferencesResponse as InsertDataItemReferencesResponse, type context_InsertDataItemsRequest as InsertDataItemsRequest, type context_InsertDataItemsResponse as InsertDataItemsResponse, type context_ItemAlreadyExistsError as ItemAlreadyExistsError, context_ItemAlreadyExistsWixError as ItemAlreadyExistsWixError, type context_ItemNotFoundError as ItemNotFoundError, context_ItemNotFoundWixError as ItemNotFoundWixError, type context_ListCollectionsRequest as ListCollectionsRequest, type context_ListCollectionsResponse as ListCollectionsResponse, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_MainEntity as MainEntity, type context_Max as Max, type context_Min as Min, type context_MultiReferenceOptions as MultiReferenceOptions, type context_ObjectField as ObjectField, type context_ObjectFieldTypeOptionsOneOf as ObjectFieldTypeOptionsOneOf, type context_ObjectOptions as ObjectOptions, type context_Operation as Operation, type context_OperationCalculateOneOf as OperationCalculateOneOf, context_Order as Order, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, context_PagingMode as PagingMode, type context_Permissions as Permissions, type context_QueryDataItemsRequest as QueryDataItemsRequest, type context_QueryDataItemsResponse as QueryDataItemsResponse, type context_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context_QueryDistinctValuesResponse as QueryDistinctValuesResponse, context_QueryOperator as QueryOperator, type context_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_ReferenceAlreadyExistsError as ReferenceAlreadyExistsError, context_ReferenceAlreadyExistsWixError as ReferenceAlreadyExistsWixError, type context_ReferenceId as ReferenceId, type context_ReferenceModificationResult as ReferenceModificationResult, type context_ReferenceModificationResultResultOneOf as ReferenceModificationResultResultOneOf, type context_ReferenceNotFoundError as ReferenceNotFoundError, context_ReferenceNotFoundWixError as ReferenceNotFoundWixError, type context_ReferencedItem as ReferencedItem, type context_ReferencedItemToInclude as ReferencedItemToInclude, type context_RemoveDataItemReferencesRequest as RemoveDataItemReferencesRequest, type context_RemoveDataItemReferencesResponse as RemoveDataItemReferencesResponse, type context_RemoveDataItemsRequest as RemoveDataItemsRequest, type context_RemoveDataItemsResponse as RemoveDataItemsResponse, type context_RemoveIndexRequest as RemoveIndexRequest, type context_RemoveIndexResponse as RemoveIndexResponse, context_Role as Role, type context_SingleReferenceOptions as SingleReferenceOptions, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SpiBaseUri as SpiBaseUri, context_Status as Status, type context_Sum as Sum, type context_TruncateDataItemsRequest as TruncateDataItemsRequest, type context_TruncateDataItemsResponse as TruncateDataItemsResponse, type context_UpdateCollectionRequest as UpdateCollectionRequest, type context_UpdateCollectionResponse as UpdateCollectionResponse, type context_UpdateDataItemsRequest as UpdateDataItemsRequest, type context_UpdateDataItemsResponse as UpdateDataItemsResponse, type context_ValidationError as ValidationError, type context_ValidationViolation as ValidationViolation, context_ValidationWixError as ValidationWixError, context_provideHandlers as provideHandlers };
|
|
1217
|
+
export { type context_AggregateDataItemsRequest as AggregateDataItemsRequest, type context_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context_AggregateDataItemsResponse as AggregateDataItemsResponse, type context_Aggregation as Aggregation, type context_AlternativeUri as AlternativeUri, type context_ArrayOptions as ArrayOptions, type context_ArrayOptionsTypeOptionsOneOf as ArrayOptionsTypeOptionsOneOf, type context_Average as Average, context_BadRequestWixError as BadRequestWixError, type context_Collection as Collection, type context_CollectionAlreadyExistsError as CollectionAlreadyExistsError, context_CollectionAlreadyExistsWixError as CollectionAlreadyExistsWixError, type context_CollectionCapabilities as CollectionCapabilities, type context_CollectionChangeNotSupported as CollectionChangeNotSupported, type context_CollectionChangeNotSupportedError as CollectionChangeNotSupportedError, context_CollectionChangeNotSupportedWixError as CollectionChangeNotSupportedWixError, type context_CollectionNotFoundError as CollectionNotFoundError, context_CollectionNotFoundWixError as CollectionNotFoundWixError, type context_Context as Context, type context_Count as Count, type context_CountDataItemsRequest as CountDataItemsRequest, type context_CountDataItemsResponse as CountDataItemsResponse, type context_CreateCollectionRequest as CreateCollectionRequest, type context_CreateCollectionResponse as CreateCollectionResponse, type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DataItemModificationResult as DataItemModificationResult, type context_DataItemModificationResultResultOneOf as DataItemModificationResultResultOneOf, context_DataOperation as DataOperation, type context_DeleteCollectionRequest as DeleteCollectionRequest, type context_DeleteCollectionResponse as DeleteCollectionResponse, type Error$1 as Error, type context_ExternalDatabaseSpiConfig as ExternalDatabaseSpiConfig, type context_Field as Field, type context_FieldCapabilities as FieldCapabilities, context_FieldType as FieldType, type context_FieldTypeOptionsOneOf as FieldTypeOptionsOneOf, type context_GetCapabilitiesRequest as GetCapabilitiesRequest, type context_GetCapabilitiesResponse as GetCapabilitiesResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Index as Index, type context_IndexField as IndexField, type context_IndexOptions as IndexOptions, type context_InsertDataItemReferencesRequest as InsertDataItemReferencesRequest, type context_InsertDataItemReferencesResponse as InsertDataItemReferencesResponse, type context_InsertDataItemsRequest as InsertDataItemsRequest, type context_InsertDataItemsResponse as InsertDataItemsResponse, type context_ItemAlreadyExistsError as ItemAlreadyExistsError, context_ItemAlreadyExistsWixError as ItemAlreadyExistsWixError, type context_ItemNotFoundError as ItemNotFoundError, context_ItemNotFoundWixError as ItemNotFoundWixError, type context_ListCollectionsRequest as ListCollectionsRequest, type context_ListCollectionsResponse as ListCollectionsResponse, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_MainEntity as MainEntity, type context_Max as Max, type context_Min as Min, type context_MultiReferenceOptions as MultiReferenceOptions, type context_ObjectField as ObjectField, type context_ObjectFieldTypeOptionsOneOf as ObjectFieldTypeOptionsOneOf, type context_ObjectOptions as ObjectOptions, type context_Operation as Operation, type context_OperationCalculateOneOf as OperationCalculateOneOf, context_Order as Order, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, context_PagingMode as PagingMode, type context_Permissions as Permissions, type context_QueryDataItemsRequest as QueryDataItemsRequest, type context_QueryDataItemsResponse as QueryDataItemsResponse, type context_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context_QueryDistinctValuesResponse as QueryDistinctValuesResponse, context_QueryOperator as QueryOperator, type context_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_ReferenceAlreadyExistsError as ReferenceAlreadyExistsError, context_ReferenceAlreadyExistsWixError as ReferenceAlreadyExistsWixError, type context_ReferenceId as ReferenceId, type context_ReferenceModificationResult as ReferenceModificationResult, type context_ReferenceModificationResultResultOneOf as ReferenceModificationResultResultOneOf, type context_ReferenceNotFoundError as ReferenceNotFoundError, context_ReferenceNotFoundWixError as ReferenceNotFoundWixError, type context_ReferencedItem as ReferencedItem, type context_ReferencedItemToInclude as ReferencedItemToInclude, type context_RemoveDataItemReferencesRequest as RemoveDataItemReferencesRequest, type context_RemoveDataItemReferencesResponse as RemoveDataItemReferencesResponse, type context_RemoveDataItemsRequest as RemoveDataItemsRequest, type context_RemoveDataItemsResponse as RemoveDataItemsResponse, type context_RemoveIndexRequest as RemoveIndexRequest, type context_RemoveIndexResponse as RemoveIndexResponse, context_Role as Role, type context_SingleReferenceOptions as SingleReferenceOptions, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SpiBaseUri as SpiBaseUri, context_Status as Status, type context_Sum as Sum, type context_TruncateDataItemsRequest as TruncateDataItemsRequest, type context_TruncateDataItemsResponse as TruncateDataItemsResponse, type context_UpdateCollectionRequest as UpdateCollectionRequest, type context_UpdateCollectionResponse as UpdateCollectionResponse, type context_UpdateDataItemsRequest as UpdateDataItemsRequest, type context_UpdateDataItemsResponse as UpdateDataItemsResponse, type context_ValidationError as ValidationError, type context_ValidationViolation as ValidationViolation, context_ValidationWixError as ValidationWixError, type context__publicProvideHandlersType as _publicProvideHandlersType, context_provideHandlers as provideHandlers, provideHandlers$1 as publicProvideHandlers };
|
|
1133
1218
|
}
|
|
1134
1219
|
|
|
1135
1220
|
export { context as externalDatabase };
|