@wix/data 1.0.146 → 1.0.147
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 +6 -6
- package/type-bundles/context.bundle.d.ts +65 -143
- package/type-bundles/index.bundle.d.ts +65 -143
- package/type-bundles/meta.bundle.d.ts +26 -30
|
@@ -521,20 +521,13 @@ declare const onExternalDatabaseConnectionCreated$1: EventDefinition<ExternalDat
|
|
|
521
521
|
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
522
522
|
declare const onExternalDatabaseConnectionDeleted$1: EventDefinition<ExternalDatabaseConnectionDeletedEnvelope, "wix.data.v1.external_database_connection_deleted">;
|
|
523
523
|
|
|
524
|
-
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
525
|
-
|
|
526
524
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
527
525
|
|
|
528
|
-
|
|
529
|
-
declare const
|
|
530
|
-
|
|
531
|
-
declare const
|
|
532
|
-
|
|
533
|
-
declare const createExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicCreateExternalDatabaseConnectionType>>;
|
|
534
|
-
type _publicUpdateExternalDatabaseConnectionType = typeof updateExternalDatabaseConnection$1;
|
|
535
|
-
declare const updateExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicUpdateExternalDatabaseConnectionType>>;
|
|
536
|
-
type _publicDeleteExternalDatabaseConnectionType = typeof deleteExternalDatabaseConnection$1;
|
|
537
|
-
declare const deleteExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicDeleteExternalDatabaseConnectionType>>;
|
|
526
|
+
declare const getExternalDatabaseConnection: BuildRESTFunction<typeof getExternalDatabaseConnection$1> & typeof getExternalDatabaseConnection$1;
|
|
527
|
+
declare const listExternalDatabaseConnections: BuildRESTFunction<typeof listExternalDatabaseConnections$1> & typeof listExternalDatabaseConnections$1;
|
|
528
|
+
declare const createExternalDatabaseConnection: BuildRESTFunction<typeof createExternalDatabaseConnection$1> & typeof createExternalDatabaseConnection$1;
|
|
529
|
+
declare const updateExternalDatabaseConnection: BuildRESTFunction<typeof updateExternalDatabaseConnection$1> & typeof updateExternalDatabaseConnection$1;
|
|
530
|
+
declare const deleteExternalDatabaseConnection: BuildRESTFunction<typeof deleteExternalDatabaseConnection$1> & typeof deleteExternalDatabaseConnection$1;
|
|
538
531
|
|
|
539
532
|
type _publicOnExternalDatabaseConnectionCreatedType = typeof onExternalDatabaseConnectionCreated$1;
|
|
540
533
|
/**
|
|
@@ -588,14 +581,9 @@ type context$3_UpdateExternalDatabaseConnection = UpdateExternalDatabaseConnecti
|
|
|
588
581
|
type context$3_UpdateExternalDatabaseConnectionRequest = UpdateExternalDatabaseConnectionRequest;
|
|
589
582
|
type context$3_UpdateExternalDatabaseConnectionResponse = UpdateExternalDatabaseConnectionResponse;
|
|
590
583
|
type context$3_UpdateExternalDatabaseConnectionResponseNonNullableFields = UpdateExternalDatabaseConnectionResponseNonNullableFields;
|
|
591
|
-
type context$3__publicCreateExternalDatabaseConnectionType = _publicCreateExternalDatabaseConnectionType;
|
|
592
|
-
type context$3__publicDeleteExternalDatabaseConnectionType = _publicDeleteExternalDatabaseConnectionType;
|
|
593
|
-
type context$3__publicGetExternalDatabaseConnectionType = _publicGetExternalDatabaseConnectionType;
|
|
594
|
-
type context$3__publicListExternalDatabaseConnectionsType = _publicListExternalDatabaseConnectionsType;
|
|
595
584
|
type context$3__publicOnExternalDatabaseConnectionCreatedType = _publicOnExternalDatabaseConnectionCreatedType;
|
|
596
585
|
type context$3__publicOnExternalDatabaseConnectionDeletedType = _publicOnExternalDatabaseConnectionDeletedType;
|
|
597
586
|
type context$3__publicOnExternalDatabaseConnectionUpdatedType = _publicOnExternalDatabaseConnectionUpdatedType;
|
|
598
|
-
type context$3__publicUpdateExternalDatabaseConnectionType = _publicUpdateExternalDatabaseConnectionType;
|
|
599
587
|
declare const context$3_createExternalDatabaseConnection: typeof createExternalDatabaseConnection;
|
|
600
588
|
declare const context$3_deleteExternalDatabaseConnection: typeof deleteExternalDatabaseConnection;
|
|
601
589
|
declare const context$3_getExternalDatabaseConnection: typeof getExternalDatabaseConnection;
|
|
@@ -605,7 +593,7 @@ declare const context$3_onExternalDatabaseConnectionDeleted: typeof onExternalDa
|
|
|
605
593
|
declare const context$3_onExternalDatabaseConnectionUpdated: typeof onExternalDatabaseConnectionUpdated;
|
|
606
594
|
declare const context$3_updateExternalDatabaseConnection: typeof updateExternalDatabaseConnection;
|
|
607
595
|
declare namespace context$3 {
|
|
608
|
-
export { type ActionEvent$2 as ActionEvent, type BaseEventMetadata$2 as BaseEventMetadata, type context$3_Capabilities as Capabilities, context$3_CauseOfFailure as CauseOfFailure, context$3_CollectionsFound as CollectionsFound, type context$3_ConnectionStatus as ConnectionStatus, context$3_ConnectionType as ConnectionType, type context$3_CreateExternalDatabaseConnectionOptions as CreateExternalDatabaseConnectionOptions, type context$3_CreateExternalDatabaseConnectionRequest as CreateExternalDatabaseConnectionRequest, type context$3_CreateExternalDatabaseConnectionResponse as CreateExternalDatabaseConnectionResponse, type context$3_CreateExternalDatabaseConnectionResponseNonNullableFields as CreateExternalDatabaseConnectionResponseNonNullableFields, type context$3_DeleteExternalDatabaseConnectionRequest as DeleteExternalDatabaseConnectionRequest, type context$3_DeleteExternalDatabaseConnectionResponse as DeleteExternalDatabaseConnectionResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type context$3_ExternalDatabaseConnection as ExternalDatabaseConnection, type context$3_ExternalDatabaseConnectionCreatedEnvelope as ExternalDatabaseConnectionCreatedEnvelope, type context$3_ExternalDatabaseConnectionDeletedEnvelope as ExternalDatabaseConnectionDeletedEnvelope, type context$3_ExternalDatabaseConnectionNonNullableFields as ExternalDatabaseConnectionNonNullableFields, type context$3_ExternalDatabaseConnectionUpdatedEnvelope as ExternalDatabaseConnectionUpdatedEnvelope, context$3_FieldType as FieldType, type context$3_GetExternalDatabaseConnectionRequest as GetExternalDatabaseConnectionRequest, type context$3_GetExternalDatabaseConnectionResponse as GetExternalDatabaseConnectionResponse, type context$3_GetExternalDatabaseConnectionResponseNonNullableFields as GetExternalDatabaseConnectionResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$3_ListExternalDatabaseConnectionsOptions as ListExternalDatabaseConnectionsOptions, type context$3_ListExternalDatabaseConnectionsRequest as ListExternalDatabaseConnectionsRequest, type context$3_ListExternalDatabaseConnectionsResponse as ListExternalDatabaseConnectionsResponse, type context$3_ListExternalDatabaseConnectionsResponseNonNullableFields as ListExternalDatabaseConnectionsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type Paging$3 as Paging, type PagingMetadata$1 as PagingMetadata, context$3_ProtocolVersion as ProtocolVersion, type RestoreInfo$2 as RestoreInfo, type context$3_UpdateExternalDatabaseConnection as UpdateExternalDatabaseConnection, type context$3_UpdateExternalDatabaseConnectionRequest as UpdateExternalDatabaseConnectionRequest, type context$3_UpdateExternalDatabaseConnectionResponse as UpdateExternalDatabaseConnectionResponse, type context$3_UpdateExternalDatabaseConnectionResponseNonNullableFields as UpdateExternalDatabaseConnectionResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type context$
|
|
596
|
+
export { type ActionEvent$2 as ActionEvent, type BaseEventMetadata$2 as BaseEventMetadata, type context$3_Capabilities as Capabilities, context$3_CauseOfFailure as CauseOfFailure, context$3_CollectionsFound as CollectionsFound, type context$3_ConnectionStatus as ConnectionStatus, context$3_ConnectionType as ConnectionType, type context$3_CreateExternalDatabaseConnectionOptions as CreateExternalDatabaseConnectionOptions, type context$3_CreateExternalDatabaseConnectionRequest as CreateExternalDatabaseConnectionRequest, type context$3_CreateExternalDatabaseConnectionResponse as CreateExternalDatabaseConnectionResponse, type context$3_CreateExternalDatabaseConnectionResponseNonNullableFields as CreateExternalDatabaseConnectionResponseNonNullableFields, type context$3_DeleteExternalDatabaseConnectionRequest as DeleteExternalDatabaseConnectionRequest, type context$3_DeleteExternalDatabaseConnectionResponse as DeleteExternalDatabaseConnectionResponse, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type EventMetadata$2 as EventMetadata, type context$3_ExternalDatabaseConnection as ExternalDatabaseConnection, type context$3_ExternalDatabaseConnectionCreatedEnvelope as ExternalDatabaseConnectionCreatedEnvelope, type context$3_ExternalDatabaseConnectionDeletedEnvelope as ExternalDatabaseConnectionDeletedEnvelope, type context$3_ExternalDatabaseConnectionNonNullableFields as ExternalDatabaseConnectionNonNullableFields, type context$3_ExternalDatabaseConnectionUpdatedEnvelope as ExternalDatabaseConnectionUpdatedEnvelope, context$3_FieldType as FieldType, type context$3_GetExternalDatabaseConnectionRequest as GetExternalDatabaseConnectionRequest, type context$3_GetExternalDatabaseConnectionResponse as GetExternalDatabaseConnectionResponse, type context$3_GetExternalDatabaseConnectionResponseNonNullableFields as GetExternalDatabaseConnectionResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$3_ListExternalDatabaseConnectionsOptions as ListExternalDatabaseConnectionsOptions, type context$3_ListExternalDatabaseConnectionsRequest as ListExternalDatabaseConnectionsRequest, type context$3_ListExternalDatabaseConnectionsResponse as ListExternalDatabaseConnectionsResponse, type context$3_ListExternalDatabaseConnectionsResponseNonNullableFields as ListExternalDatabaseConnectionsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type Paging$3 as Paging, type PagingMetadata$1 as PagingMetadata, context$3_ProtocolVersion as ProtocolVersion, type RestoreInfo$2 as RestoreInfo, type context$3_UpdateExternalDatabaseConnection as UpdateExternalDatabaseConnection, type context$3_UpdateExternalDatabaseConnectionRequest as UpdateExternalDatabaseConnectionRequest, type context$3_UpdateExternalDatabaseConnectionResponse as UpdateExternalDatabaseConnectionResponse, type context$3_UpdateExternalDatabaseConnectionResponseNonNullableFields as UpdateExternalDatabaseConnectionResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type context$3__publicOnExternalDatabaseConnectionCreatedType as _publicOnExternalDatabaseConnectionCreatedType, type context$3__publicOnExternalDatabaseConnectionDeletedType as _publicOnExternalDatabaseConnectionDeletedType, type context$3__publicOnExternalDatabaseConnectionUpdatedType as _publicOnExternalDatabaseConnectionUpdatedType, context$3_createExternalDatabaseConnection as createExternalDatabaseConnection, context$3_deleteExternalDatabaseConnection as deleteExternalDatabaseConnection, context$3_getExternalDatabaseConnection as getExternalDatabaseConnection, context$3_listExternalDatabaseConnections as listExternalDatabaseConnections, context$3_onExternalDatabaseConnectionCreated as onExternalDatabaseConnectionCreated, context$3_onExternalDatabaseConnectionDeleted as onExternalDatabaseConnectionDeleted, context$3_onExternalDatabaseConnectionUpdated as onExternalDatabaseConnectionUpdated, onExternalDatabaseConnectionCreated$1 as publicOnExternalDatabaseConnectionCreated, onExternalDatabaseConnectionDeleted$1 as publicOnExternalDatabaseConnectionDeleted, onExternalDatabaseConnectionUpdated$1 as publicOnExternalDatabaseConnectionUpdated, context$3_updateExternalDatabaseConnection as updateExternalDatabaseConnection };
|
|
609
597
|
}
|
|
610
598
|
|
|
611
599
|
/** A data collection determines the structure of data to be stored in a database. */
|
|
@@ -1984,20 +1972,13 @@ declare const onDataCollectionCreated$1: EventDefinition<DataCollectionCreatedEn
|
|
|
1984
1972
|
declare const onDataCollectionUpdated$1: EventDefinition<DataCollectionUpdatedEnvelope, "wix.data.v2.data_collection_updated">;
|
|
1985
1973
|
declare const onDataCollectionDeleted$1: EventDefinition<DataCollectionDeletedEnvelope, "wix.data.v2.data_collection_deleted">;
|
|
1986
1974
|
|
|
1987
|
-
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1988
|
-
|
|
1989
1975
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1990
1976
|
|
|
1991
|
-
|
|
1992
|
-
declare const
|
|
1993
|
-
|
|
1994
|
-
declare const
|
|
1995
|
-
|
|
1996
|
-
declare const listDataCollections: ReturnType<typeof createRESTModule$2<_publicListDataCollectionsType>>;
|
|
1997
|
-
type _publicUpdateDataCollectionType = typeof updateDataCollection$1;
|
|
1998
|
-
declare const updateDataCollection: ReturnType<typeof createRESTModule$2<_publicUpdateDataCollectionType>>;
|
|
1999
|
-
type _publicDeleteDataCollectionType = typeof deleteDataCollection$1;
|
|
2000
|
-
declare const deleteDataCollection: ReturnType<typeof createRESTModule$2<_publicDeleteDataCollectionType>>;
|
|
1977
|
+
declare const createDataCollection: BuildRESTFunction<typeof createDataCollection$1> & typeof createDataCollection$1;
|
|
1978
|
+
declare const getDataCollection: BuildRESTFunction<typeof getDataCollection$1> & typeof getDataCollection$1;
|
|
1979
|
+
declare const listDataCollections: BuildRESTFunction<typeof listDataCollections$1> & typeof listDataCollections$1;
|
|
1980
|
+
declare const updateDataCollection: BuildRESTFunction<typeof updateDataCollection$1> & typeof updateDataCollection$1;
|
|
1981
|
+
declare const deleteDataCollection: BuildRESTFunction<typeof deleteDataCollection$1> & typeof deleteDataCollection$1;
|
|
2001
1982
|
|
|
2002
1983
|
type _publicOnDataCollectionClonedEventType = typeof onDataCollectionClonedEvent$1;
|
|
2003
1984
|
/**
|
|
@@ -2133,16 +2114,11 @@ type context$2_UrlizedOnlyPattern = UrlizedOnlyPattern;
|
|
|
2133
2114
|
type context$2_UrlizedPluginOptions = UrlizedPluginOptions;
|
|
2134
2115
|
type context$2__Array = _Array;
|
|
2135
2116
|
type context$2__Object = _Object;
|
|
2136
|
-
type context$2__publicCreateDataCollectionType = _publicCreateDataCollectionType;
|
|
2137
|
-
type context$2__publicDeleteDataCollectionType = _publicDeleteDataCollectionType;
|
|
2138
|
-
type context$2__publicGetDataCollectionType = _publicGetDataCollectionType;
|
|
2139
|
-
type context$2__publicListDataCollectionsType = _publicListDataCollectionsType;
|
|
2140
2117
|
type context$2__publicOnDataCollectionChangedEventType = _publicOnDataCollectionChangedEventType;
|
|
2141
2118
|
type context$2__publicOnDataCollectionClonedEventType = _publicOnDataCollectionClonedEventType;
|
|
2142
2119
|
type context$2__publicOnDataCollectionCreatedType = _publicOnDataCollectionCreatedType;
|
|
2143
2120
|
type context$2__publicOnDataCollectionDeletedType = _publicOnDataCollectionDeletedType;
|
|
2144
2121
|
type context$2__publicOnDataCollectionUpdatedType = _publicOnDataCollectionUpdatedType;
|
|
2145
|
-
type context$2__publicUpdateDataCollectionType = _publicUpdateDataCollectionType;
|
|
2146
2122
|
declare const context$2_createDataCollection: typeof createDataCollection;
|
|
2147
2123
|
declare const context$2_deleteDataCollection: typeof deleteDataCollection;
|
|
2148
2124
|
declare const context$2_getDataCollection: typeof getDataCollection;
|
|
@@ -2154,7 +2130,7 @@ declare const context$2_onDataCollectionDeleted: typeof onDataCollectionDeleted;
|
|
|
2154
2130
|
declare const context$2_onDataCollectionUpdated: typeof onDataCollectionUpdated;
|
|
2155
2131
|
declare const context$2_updateDataCollection: typeof updateDataCollection;
|
|
2156
2132
|
declare namespace context$2 {
|
|
2157
|
-
export { context$2_AccessLevel as AccessLevel, type ActionEvent$1 as ActionEvent, type context$2_AllowedDataPermissions as AllowedDataPermissions, type context$2_ArraySizeRange as ArraySizeRange, type BaseEventMetadata$1 as BaseEventMetadata, type context$2_BulkGetDataCollectionsPageBySnapshotsRequest as BulkGetDataCollectionsPageBySnapshotsRequest, type context$2_BulkGetDataCollectionsPageBySnapshotsResponse as BulkGetDataCollectionsPageBySnapshotsResponse, type context$2_BulkGetDataCollectionsRequest as BulkGetDataCollectionsRequest, type context$2_BulkGetDataCollectionsResponse as BulkGetDataCollectionsResponse, type context$2_Calculator as Calculator, type context$2_CalculatorPatternOneOf as CalculatorPatternOneOf, type context$2_CmsOptions as CmsOptions, type context$2_CollectionCapabilities as CollectionCapabilities, context$2_CollectionOperation as CollectionOperation, context$2_CollectionType as CollectionType, type context$2_CreateDataCollectionFieldRequest as CreateDataCollectionFieldRequest, type context$2_CreateDataCollectionFieldResponse as CreateDataCollectionFieldResponse, type context$2_CreateDataCollectionRequest as CreateDataCollectionRequest, type context$2_CreateDataCollectionResponse as CreateDataCollectionResponse, type context$2_CreateDataCollectionResponseNonNullableFields as CreateDataCollectionResponseNonNullableFields, type context$2_CreateDataCollectionsSnapshotRequest as CreateDataCollectionsSnapshotRequest, type context$2_CreateDataCollectionsSnapshotResponse as CreateDataCollectionsSnapshotResponse, type context$2_CreateMigratedCollectionsSnapshotRequest as CreateMigratedCollectionsSnapshotRequest, type context$2_CreateMigratedCollectionsSnapshotResponse as CreateMigratedCollectionsSnapshotResponse, type context$2_DataCollection as DataCollection, type context$2_DataCollectionChangedEnvelope as DataCollectionChangedEnvelope, type context$2_DataCollectionChangedEvent as DataCollectionChangedEvent, type context$2_DataCollectionClonedEnvelope as DataCollectionClonedEnvelope, type context$2_DataCollectionClonedEvent as DataCollectionClonedEvent, type context$2_DataCollectionCreatedEnvelope as DataCollectionCreatedEnvelope, type context$2_DataCollectionDeletedEnvelope as DataCollectionDeletedEnvelope, type context$2_DataCollectionNonNullableFields as DataCollectionNonNullableFields, type context$2_DataCollectionUpdatedEnvelope as DataCollectionUpdatedEnvelope, context$2_DataOperation as DataOperation, type context$2_DataPermissions as DataPermissions, type context$2_DeleteDataCollectionFieldRequest as DeleteDataCollectionFieldRequest, type context$2_DeleteDataCollectionFieldResponse as DeleteDataCollectionFieldResponse, type context$2_DeleteDataCollectionRequest as DeleteDataCollectionRequest, type context$2_DeleteDataCollectionResponse as DeleteDataCollectionResponse, type context$2_DeleteDataCollectionsSnapshotRequest as DeleteDataCollectionsSnapshotRequest, type context$2_DeleteDataCollectionsSnapshotResponse as DeleteDataCollectionsSnapshotResponse, context$2_Direction as Direction, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type Failure$1 as Failure, type Field$1 as Field, type context$2_FieldCapabilities as FieldCapabilities, type context$2_FieldPlugin as FieldPlugin, type context$2_FieldPluginOptionsOneOf as FieldPluginOptionsOneOf, context$2_FieldPluginType as FieldPluginType, type context$2_FieldRangeValidationsOneOf as FieldRangeValidationsOneOf, type FieldUpdate$1 as FieldUpdate, type context$2_FieldsPattern as FieldsPattern, context$2_Format as Format, type context$2_GetDataCollectionOptions as GetDataCollectionOptions, type context$2_GetDataCollectionRequest as GetDataCollectionRequest, type context$2_GetDataCollectionResponse as GetDataCollectionResponse, type context$2_GetDataCollectionResponseNonNullableFields as GetDataCollectionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Index$1 as Index, type context$2_IndexField as IndexField, type context$2_IndexLimits as IndexLimits, context$2_IndexStatus as IndexStatus, type context$2_ListDataCollectionsOptions as ListDataCollectionsOptions, type context$2_ListDataCollectionsRequest as ListDataCollectionsRequest, type context$2_ListDataCollectionsResponse as ListDataCollectionsResponse, type context$2_ListDataCollectionsResponseNonNullableFields as ListDataCollectionsResponseNonNullableFields, type MessageEnvelope$1 as MessageEnvelope, type context$2_MultiReference as MultiReference, type context$2_MultilingualOptions as MultilingualOptions, type context$2_NumberRange as NumberRange, type context$2_ObjectField as ObjectField, Order$1 as Order, type context$2_PageLink as PageLink, type context$2_PageLinkPluginOptions as PageLinkPluginOptions, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, context$2_PagingMode as PagingMode, type context$2_Permissions as Permissions, type context$2_Plugin as Plugin, type context$2_PluginCmsOptions as PluginCmsOptions, type context$2_PluginOptionsOneOf as PluginOptionsOneOf, context$2_PluginType as PluginType, type context$2_PluginUpdate as PluginUpdate, type PublishPluginOptions$1 as PublishPluginOptions, context$2_QueryOperator as QueryOperator, type context$2_Reference as Reference, type context$2_RestoreDataCollectionsFromSnapshotRequest as RestoreDataCollectionsFromSnapshotRequest, type context$2_RestoreDataCollectionsFromSnapshotResponse as RestoreDataCollectionsFromSnapshotResponse, type RestoreInfo$1 as RestoreInfo, context$2_Role as Role, type context$2_SingleItemPluginOptions as SingleItemPluginOptions, type context$2_SiteSort as SiteSort, type context$2_SnapshotCollection as SnapshotCollection, type context$2_Sort as Sort, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Status$1 as Status, type context$2_StringLengthRange as StringLengthRange, context$2_Type as Type, type context$2_TypeMetadata as TypeMetadata, type context$2_TypeMetadataMetadataOneOf as TypeMetadataMetadataOneOf, type context$2_UpdateDataCollectionFieldRequest as UpdateDataCollectionFieldRequest, type context$2_UpdateDataCollectionFieldResponse as UpdateDataCollectionFieldResponse, type context$2_UpdateDataCollectionRequest as UpdateDataCollectionRequest, type context$2_UpdateDataCollectionResponse as UpdateDataCollectionResponse, type context$2_UpdateDataCollectionResponseNonNullableFields as UpdateDataCollectionResponseNonNullableFields, type context$2_UpdateDataPermissionsRequest as UpdateDataPermissionsRequest, type context$2_UpdateDataPermissionsResponse as UpdateDataPermissionsResponse, type context$2_UrlizedOnlyPattern as UrlizedOnlyPattern, type context$2_UrlizedPluginOptions as UrlizedPluginOptions, WebhookIdentityType$1 as WebhookIdentityType, type context$2__Array as _Array, type context$2__Object as _Object, type context$
|
|
2133
|
+
export { context$2_AccessLevel as AccessLevel, type ActionEvent$1 as ActionEvent, type context$2_AllowedDataPermissions as AllowedDataPermissions, type context$2_ArraySizeRange as ArraySizeRange, type BaseEventMetadata$1 as BaseEventMetadata, type context$2_BulkGetDataCollectionsPageBySnapshotsRequest as BulkGetDataCollectionsPageBySnapshotsRequest, type context$2_BulkGetDataCollectionsPageBySnapshotsResponse as BulkGetDataCollectionsPageBySnapshotsResponse, type context$2_BulkGetDataCollectionsRequest as BulkGetDataCollectionsRequest, type context$2_BulkGetDataCollectionsResponse as BulkGetDataCollectionsResponse, type context$2_Calculator as Calculator, type context$2_CalculatorPatternOneOf as CalculatorPatternOneOf, type context$2_CmsOptions as CmsOptions, type context$2_CollectionCapabilities as CollectionCapabilities, context$2_CollectionOperation as CollectionOperation, context$2_CollectionType as CollectionType, type context$2_CreateDataCollectionFieldRequest as CreateDataCollectionFieldRequest, type context$2_CreateDataCollectionFieldResponse as CreateDataCollectionFieldResponse, type context$2_CreateDataCollectionRequest as CreateDataCollectionRequest, type context$2_CreateDataCollectionResponse as CreateDataCollectionResponse, type context$2_CreateDataCollectionResponseNonNullableFields as CreateDataCollectionResponseNonNullableFields, type context$2_CreateDataCollectionsSnapshotRequest as CreateDataCollectionsSnapshotRequest, type context$2_CreateDataCollectionsSnapshotResponse as CreateDataCollectionsSnapshotResponse, type context$2_CreateMigratedCollectionsSnapshotRequest as CreateMigratedCollectionsSnapshotRequest, type context$2_CreateMigratedCollectionsSnapshotResponse as CreateMigratedCollectionsSnapshotResponse, type context$2_DataCollection as DataCollection, type context$2_DataCollectionChangedEnvelope as DataCollectionChangedEnvelope, type context$2_DataCollectionChangedEvent as DataCollectionChangedEvent, type context$2_DataCollectionClonedEnvelope as DataCollectionClonedEnvelope, type context$2_DataCollectionClonedEvent as DataCollectionClonedEvent, type context$2_DataCollectionCreatedEnvelope as DataCollectionCreatedEnvelope, type context$2_DataCollectionDeletedEnvelope as DataCollectionDeletedEnvelope, type context$2_DataCollectionNonNullableFields as DataCollectionNonNullableFields, type context$2_DataCollectionUpdatedEnvelope as DataCollectionUpdatedEnvelope, context$2_DataOperation as DataOperation, type context$2_DataPermissions as DataPermissions, type context$2_DeleteDataCollectionFieldRequest as DeleteDataCollectionFieldRequest, type context$2_DeleteDataCollectionFieldResponse as DeleteDataCollectionFieldResponse, type context$2_DeleteDataCollectionRequest as DeleteDataCollectionRequest, type context$2_DeleteDataCollectionResponse as DeleteDataCollectionResponse, type context$2_DeleteDataCollectionsSnapshotRequest as DeleteDataCollectionsSnapshotRequest, type context$2_DeleteDataCollectionsSnapshotResponse as DeleteDataCollectionsSnapshotResponse, context$2_Direction as Direction, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type Failure$1 as Failure, type Field$1 as Field, type context$2_FieldCapabilities as FieldCapabilities, type context$2_FieldPlugin as FieldPlugin, type context$2_FieldPluginOptionsOneOf as FieldPluginOptionsOneOf, context$2_FieldPluginType as FieldPluginType, type context$2_FieldRangeValidationsOneOf as FieldRangeValidationsOneOf, type FieldUpdate$1 as FieldUpdate, type context$2_FieldsPattern as FieldsPattern, context$2_Format as Format, type context$2_GetDataCollectionOptions as GetDataCollectionOptions, type context$2_GetDataCollectionRequest as GetDataCollectionRequest, type context$2_GetDataCollectionResponse as GetDataCollectionResponse, type context$2_GetDataCollectionResponseNonNullableFields as GetDataCollectionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Index$1 as Index, type context$2_IndexField as IndexField, type context$2_IndexLimits as IndexLimits, context$2_IndexStatus as IndexStatus, type context$2_ListDataCollectionsOptions as ListDataCollectionsOptions, type context$2_ListDataCollectionsRequest as ListDataCollectionsRequest, type context$2_ListDataCollectionsResponse as ListDataCollectionsResponse, type context$2_ListDataCollectionsResponseNonNullableFields as ListDataCollectionsResponseNonNullableFields, type MessageEnvelope$1 as MessageEnvelope, type context$2_MultiReference as MultiReference, type context$2_MultilingualOptions as MultilingualOptions, type context$2_NumberRange as NumberRange, type context$2_ObjectField as ObjectField, Order$1 as Order, type context$2_PageLink as PageLink, type context$2_PageLinkPluginOptions as PageLinkPluginOptions, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, context$2_PagingMode as PagingMode, type context$2_Permissions as Permissions, type context$2_Plugin as Plugin, type context$2_PluginCmsOptions as PluginCmsOptions, type context$2_PluginOptionsOneOf as PluginOptionsOneOf, context$2_PluginType as PluginType, type context$2_PluginUpdate as PluginUpdate, type PublishPluginOptions$1 as PublishPluginOptions, context$2_QueryOperator as QueryOperator, type context$2_Reference as Reference, type context$2_RestoreDataCollectionsFromSnapshotRequest as RestoreDataCollectionsFromSnapshotRequest, type context$2_RestoreDataCollectionsFromSnapshotResponse as RestoreDataCollectionsFromSnapshotResponse, type RestoreInfo$1 as RestoreInfo, context$2_Role as Role, type context$2_SingleItemPluginOptions as SingleItemPluginOptions, type context$2_SiteSort as SiteSort, type context$2_SnapshotCollection as SnapshotCollection, type context$2_Sort as Sort, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Status$1 as Status, type context$2_StringLengthRange as StringLengthRange, context$2_Type as Type, type context$2_TypeMetadata as TypeMetadata, type context$2_TypeMetadataMetadataOneOf as TypeMetadataMetadataOneOf, type context$2_UpdateDataCollectionFieldRequest as UpdateDataCollectionFieldRequest, type context$2_UpdateDataCollectionFieldResponse as UpdateDataCollectionFieldResponse, type context$2_UpdateDataCollectionRequest as UpdateDataCollectionRequest, type context$2_UpdateDataCollectionResponse as UpdateDataCollectionResponse, type context$2_UpdateDataCollectionResponseNonNullableFields as UpdateDataCollectionResponseNonNullableFields, type context$2_UpdateDataPermissionsRequest as UpdateDataPermissionsRequest, type context$2_UpdateDataPermissionsResponse as UpdateDataPermissionsResponse, type context$2_UrlizedOnlyPattern as UrlizedOnlyPattern, type context$2_UrlizedPluginOptions as UrlizedPluginOptions, WebhookIdentityType$1 as WebhookIdentityType, type context$2__Array as _Array, type context$2__Object as _Object, type context$2__publicOnDataCollectionChangedEventType as _publicOnDataCollectionChangedEventType, type context$2__publicOnDataCollectionClonedEventType as _publicOnDataCollectionClonedEventType, type context$2__publicOnDataCollectionCreatedType as _publicOnDataCollectionCreatedType, type context$2__publicOnDataCollectionDeletedType as _publicOnDataCollectionDeletedType, type context$2__publicOnDataCollectionUpdatedType as _publicOnDataCollectionUpdatedType, context$2_createDataCollection as createDataCollection, context$2_deleteDataCollection as deleteDataCollection, context$2_getDataCollection as getDataCollection, context$2_listDataCollections as listDataCollections, context$2_onDataCollectionChangedEvent as onDataCollectionChangedEvent, context$2_onDataCollectionClonedEvent as onDataCollectionClonedEvent, context$2_onDataCollectionCreated as onDataCollectionCreated, context$2_onDataCollectionDeleted as onDataCollectionDeleted, context$2_onDataCollectionUpdated as onDataCollectionUpdated, onDataCollectionChangedEvent$1 as publicOnDataCollectionChangedEvent, onDataCollectionClonedEvent$1 as publicOnDataCollectionClonedEvent, onDataCollectionCreated$1 as publicOnDataCollectionCreated, onDataCollectionDeleted$1 as publicOnDataCollectionDeleted, onDataCollectionUpdated$1 as publicOnDataCollectionUpdated, context$2_updateDataCollection as updateDataCollection };
|
|
2158
2134
|
}
|
|
2159
2135
|
|
|
2160
2136
|
interface DataItem {
|
|
@@ -2183,7 +2159,7 @@ interface InsertDataItemRequest {
|
|
|
2183
2159
|
/** Item to insert. */
|
|
2184
2160
|
dataItem: DataItem;
|
|
2185
2161
|
/**
|
|
2186
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2162
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2187
2163
|
*
|
|
2188
2164
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2189
2165
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2211,7 +2187,7 @@ interface PatchDataItemRequest {
|
|
|
2211
2187
|
/** Patch set applied during item update. */
|
|
2212
2188
|
patchSet?: PatchSet;
|
|
2213
2189
|
/**
|
|
2214
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2190
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2215
2191
|
*
|
|
2216
2192
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2217
2193
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2271,8 +2247,6 @@ interface DataPublishPluginOptions {
|
|
|
2271
2247
|
/**
|
|
2272
2248
|
* Whether to include draft items.
|
|
2273
2249
|
* When `true`, the response includes both published and draft items. Default: `false`.
|
|
2274
|
-
*
|
|
2275
|
-
* **Note:** This option is only relevant for [data collections](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) that use the Publish plugin.
|
|
2276
2250
|
*/
|
|
2277
2251
|
includeDraftItems?: boolean;
|
|
2278
2252
|
}
|
|
@@ -2361,7 +2335,7 @@ interface UpdateDataItemRequest {
|
|
|
2361
2335
|
/** Updated data item content. The existing data item's content is replaced entirely. */
|
|
2362
2336
|
dataItem: DataItem;
|
|
2363
2337
|
/**
|
|
2364
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2338
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2365
2339
|
*
|
|
2366
2340
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2367
2341
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2384,7 +2358,7 @@ interface SaveDataItemRequest {
|
|
|
2384
2358
|
/** Data item to insert or update. */
|
|
2385
2359
|
dataItem: DataItem;
|
|
2386
2360
|
/**
|
|
2387
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2361
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2388
2362
|
*
|
|
2389
2363
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2390
2364
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2439,7 +2413,7 @@ interface GetDataItemRequest {
|
|
|
2439
2413
|
*/
|
|
2440
2414
|
fields?: string[];
|
|
2441
2415
|
/**
|
|
2442
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2416
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2443
2417
|
*
|
|
2444
2418
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2445
2419
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2462,7 +2436,7 @@ interface RemoveDataItemRequest {
|
|
|
2462
2436
|
/** ID of the item to remove. */
|
|
2463
2437
|
dataItemId: string;
|
|
2464
2438
|
/**
|
|
2465
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2439
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2466
2440
|
*
|
|
2467
2441
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2468
2442
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2521,7 +2495,7 @@ interface QueryDataItemsRequest {
|
|
|
2521
2495
|
*/
|
|
2522
2496
|
language?: string | null;
|
|
2523
2497
|
/**
|
|
2524
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2498
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2525
2499
|
*
|
|
2526
2500
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2527
2501
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2688,7 +2662,7 @@ interface AggregateDataItemsRequest extends AggregateDataItemsRequestPagingMetho
|
|
|
2688
2662
|
*/
|
|
2689
2663
|
language?: string | null;
|
|
2690
2664
|
/**
|
|
2691
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2665
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2692
2666
|
*
|
|
2693
2667
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2694
2668
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2797,7 +2771,7 @@ interface CountDataItemsRequest {
|
|
|
2797
2771
|
*/
|
|
2798
2772
|
language?: string | null;
|
|
2799
2773
|
/**
|
|
2800
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2774
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2801
2775
|
*
|
|
2802
2776
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2803
2777
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2896,7 +2870,7 @@ interface BulkInsertDataItemsRequest {
|
|
|
2896
2870
|
*/
|
|
2897
2871
|
returnEntity?: boolean;
|
|
2898
2872
|
/**
|
|
2899
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2873
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2900
2874
|
*
|
|
2901
2875
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2902
2876
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2923,7 +2897,7 @@ interface BulkUpdateDataItemsRequest {
|
|
|
2923
2897
|
*/
|
|
2924
2898
|
returnEntity?: boolean;
|
|
2925
2899
|
/**
|
|
2926
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2900
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2927
2901
|
*
|
|
2928
2902
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2929
2903
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2955,7 +2929,7 @@ interface BulkSaveDataItemsRequest {
|
|
|
2955
2929
|
*/
|
|
2956
2930
|
returnEntity?: boolean;
|
|
2957
2931
|
/**
|
|
2958
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2932
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2959
2933
|
*
|
|
2960
2934
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2961
2935
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -2980,7 +2954,7 @@ interface BulkRemoveDataItemsRequest {
|
|
|
2980
2954
|
/** IDs of data items to remove. */
|
|
2981
2955
|
dataItemIds: string[];
|
|
2982
2956
|
/**
|
|
2983
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
2957
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
2984
2958
|
*
|
|
2985
2959
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
2986
2960
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3112,7 +3086,7 @@ interface InsertDataItemReferenceRequest {
|
|
|
3112
3086
|
/** Reference to insert */
|
|
3113
3087
|
dataItemReference?: DataItemReference;
|
|
3114
3088
|
/**
|
|
3115
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3089
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3116
3090
|
*
|
|
3117
3091
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3118
3092
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3478,7 +3452,7 @@ interface InsertDataItemOptions {
|
|
|
3478
3452
|
/** Item to insert. */
|
|
3479
3453
|
dataItem: DataItem;
|
|
3480
3454
|
/**
|
|
3481
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3455
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3482
3456
|
*
|
|
3483
3457
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3484
3458
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3511,7 +3485,7 @@ interface UpdateDataItemOptions {
|
|
|
3511
3485
|
/** ID of the collection containing the existing item. */
|
|
3512
3486
|
dataCollectionId: string;
|
|
3513
3487
|
/**
|
|
3514
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3488
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3515
3489
|
*
|
|
3516
3490
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3517
3491
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3530,7 +3504,7 @@ interface SaveDataItemOptions {
|
|
|
3530
3504
|
/** Data item to insert or update. */
|
|
3531
3505
|
dataItem: DataItem;
|
|
3532
3506
|
/**
|
|
3533
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3507
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3534
3508
|
*
|
|
3535
3509
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3536
3510
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3567,7 +3541,7 @@ interface GetDataItemOptions {
|
|
|
3567
3541
|
*/
|
|
3568
3542
|
fields?: string[];
|
|
3569
3543
|
/**
|
|
3570
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3544
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3571
3545
|
*
|
|
3572
3546
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3573
3547
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3584,7 +3558,7 @@ interface RemoveDataItemOptions {
|
|
|
3584
3558
|
/** ID of the collection from which to remove the item. */
|
|
3585
3559
|
dataCollectionId: string;
|
|
3586
3560
|
/**
|
|
3587
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3561
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3588
3562
|
*
|
|
3589
3563
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3590
3564
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3635,7 +3609,7 @@ interface QueryDataItemsOptions {
|
|
|
3635
3609
|
*/
|
|
3636
3610
|
language?: string | null | undefined;
|
|
3637
3611
|
/**
|
|
3638
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3612
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3639
3613
|
*
|
|
3640
3614
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3641
3615
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3752,7 +3726,7 @@ interface AggregateDataItemsOptions extends AggregateDataItemsRequestPagingMetho
|
|
|
3752
3726
|
*/
|
|
3753
3727
|
language?: string | null;
|
|
3754
3728
|
/**
|
|
3755
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3729
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3756
3730
|
*
|
|
3757
3731
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3758
3732
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3797,7 +3771,7 @@ interface CountDataItemsOptions {
|
|
|
3797
3771
|
*/
|
|
3798
3772
|
language?: string | null;
|
|
3799
3773
|
/**
|
|
3800
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3774
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3801
3775
|
*
|
|
3802
3776
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3803
3777
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3879,7 +3853,7 @@ interface BulkInsertDataItemsOptions {
|
|
|
3879
3853
|
*/
|
|
3880
3854
|
returnEntity?: boolean;
|
|
3881
3855
|
/**
|
|
3882
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3856
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3883
3857
|
*
|
|
3884
3858
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3885
3859
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3900,7 +3874,7 @@ interface BulkUpdateDataItemsOptions {
|
|
|
3900
3874
|
*/
|
|
3901
3875
|
returnEntity?: boolean;
|
|
3902
3876
|
/**
|
|
3903
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3877
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3904
3878
|
*
|
|
3905
3879
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3906
3880
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3926,7 +3900,7 @@ interface BulkSaveDataItemsOptions {
|
|
|
3926
3900
|
*/
|
|
3927
3901
|
returnEntity?: boolean;
|
|
3928
3902
|
/**
|
|
3929
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3903
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3930
3904
|
*
|
|
3931
3905
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3932
3906
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -3945,7 +3919,7 @@ interface BulkRemoveDataItemsOptions {
|
|
|
3945
3919
|
/** IDs of data items to remove. */
|
|
3946
3920
|
dataItemIds: string[];
|
|
3947
3921
|
/**
|
|
3948
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
3922
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
3949
3923
|
*
|
|
3950
3924
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
3951
3925
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -4035,7 +4009,7 @@ interface InsertDataItemReferenceOptions {
|
|
|
4035
4009
|
/** Reference to insert */
|
|
4036
4010
|
dataItemReference?: DataItemReference;
|
|
4037
4011
|
/**
|
|
4038
|
-
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying
|
|
4012
|
+
* Additional parameters specific to the [Wix app collection](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections) you are querying.
|
|
4039
4013
|
*
|
|
4040
4014
|
* When querying the Wix Stores [Products collection](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-e-commerce-stores/wix-stores-products-collection-fields), pass the following optional parameters:
|
|
4041
4015
|
* - `includeHiddenProducts`: Whether to include hidden products in the response. Default: `false`.
|
|
@@ -4399,52 +4373,29 @@ declare const onDataItemCreated$1: EventDefinition<DataItemCreatedEnvelope, "wix
|
|
|
4399
4373
|
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
4400
4374
|
declare const onDataItemDeleted$1: EventDefinition<DataItemDeletedEnvelope, "wix.data.v2.data_item_deleted">;
|
|
4401
4375
|
|
|
4402
|
-
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
4403
|
-
|
|
4404
4376
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4405
4377
|
|
|
4406
|
-
|
|
4407
|
-
declare const
|
|
4408
|
-
|
|
4409
|
-
declare const
|
|
4410
|
-
|
|
4411
|
-
declare const
|
|
4412
|
-
|
|
4413
|
-
declare const
|
|
4414
|
-
|
|
4415
|
-
declare const
|
|
4416
|
-
|
|
4417
|
-
declare const
|
|
4418
|
-
|
|
4419
|
-
declare const
|
|
4420
|
-
|
|
4421
|
-
declare const
|
|
4422
|
-
|
|
4423
|
-
declare const
|
|
4424
|
-
|
|
4425
|
-
declare const
|
|
4426
|
-
|
|
4427
|
-
declare const bulkInsertDataItems: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemsType>>;
|
|
4428
|
-
type _publicBulkUpdateDataItemsType = typeof bulkUpdateDataItems$1;
|
|
4429
|
-
declare const bulkUpdateDataItems: ReturnType<typeof createRESTModule$1<_publicBulkUpdateDataItemsType>>;
|
|
4430
|
-
type _publicBulkSaveDataItemsType = typeof bulkSaveDataItems$1;
|
|
4431
|
-
declare const bulkSaveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkSaveDataItemsType>>;
|
|
4432
|
-
type _publicBulkRemoveDataItemsType = typeof bulkRemoveDataItems$1;
|
|
4433
|
-
declare const bulkRemoveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemsType>>;
|
|
4434
|
-
type _publicQueryReferencedDataItemsType = typeof queryReferencedDataItems$1;
|
|
4435
|
-
declare const queryReferencedDataItems: ReturnType<typeof createRESTModule$1<_publicQueryReferencedDataItemsType>>;
|
|
4436
|
-
type _publicIsReferencedDataItemType = typeof isReferencedDataItem$1;
|
|
4437
|
-
declare const isReferencedDataItem: ReturnType<typeof createRESTModule$1<_publicIsReferencedDataItemType>>;
|
|
4438
|
-
type _publicInsertDataItemReferenceType = typeof insertDataItemReference$1;
|
|
4439
|
-
declare const insertDataItemReference: ReturnType<typeof createRESTModule$1<_publicInsertDataItemReferenceType>>;
|
|
4440
|
-
type _publicRemoveDataItemReferenceType = typeof removeDataItemReference$1;
|
|
4441
|
-
declare const removeDataItemReference: ReturnType<typeof createRESTModule$1<_publicRemoveDataItemReferenceType>>;
|
|
4442
|
-
type _publicBulkInsertDataItemReferencesType = typeof bulkInsertDataItemReferences$1;
|
|
4443
|
-
declare const bulkInsertDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemReferencesType>>;
|
|
4444
|
-
type _publicBulkRemoveDataItemReferencesType = typeof bulkRemoveDataItemReferences$1;
|
|
4445
|
-
declare const bulkRemoveDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemReferencesType>>;
|
|
4446
|
-
type _publicReplaceDataItemReferencesType = typeof replaceDataItemReferences$1;
|
|
4447
|
-
declare const replaceDataItemReferences: ReturnType<typeof createRESTModule$1<_publicReplaceDataItemReferencesType>>;
|
|
4378
|
+
declare const insertDataItem: BuildRESTFunction<typeof insertDataItem$1> & typeof insertDataItem$1;
|
|
4379
|
+
declare const updateDataItem: BuildRESTFunction<typeof updateDataItem$1> & typeof updateDataItem$1;
|
|
4380
|
+
declare const saveDataItem: BuildRESTFunction<typeof saveDataItem$1> & typeof saveDataItem$1;
|
|
4381
|
+
declare const getDataItem: BuildRESTFunction<typeof getDataItem$1> & typeof getDataItem$1;
|
|
4382
|
+
declare const removeDataItem: BuildRESTFunction<typeof removeDataItem$1> & typeof removeDataItem$1;
|
|
4383
|
+
declare const truncateDataItems: BuildRESTFunction<typeof truncateDataItems$1> & typeof truncateDataItems$1;
|
|
4384
|
+
declare const queryDataItems: BuildRESTFunction<typeof queryDataItems$1> & typeof queryDataItems$1;
|
|
4385
|
+
declare const aggregateDataItems: BuildRESTFunction<typeof aggregateDataItems$1> & typeof aggregateDataItems$1;
|
|
4386
|
+
declare const countDataItems: BuildRESTFunction<typeof countDataItems$1> & typeof countDataItems$1;
|
|
4387
|
+
declare const queryDistinctValues: BuildRESTFunction<typeof queryDistinctValues$1> & typeof queryDistinctValues$1;
|
|
4388
|
+
declare const bulkInsertDataItems: BuildRESTFunction<typeof bulkInsertDataItems$1> & typeof bulkInsertDataItems$1;
|
|
4389
|
+
declare const bulkUpdateDataItems: BuildRESTFunction<typeof bulkUpdateDataItems$1> & typeof bulkUpdateDataItems$1;
|
|
4390
|
+
declare const bulkSaveDataItems: BuildRESTFunction<typeof bulkSaveDataItems$1> & typeof bulkSaveDataItems$1;
|
|
4391
|
+
declare const bulkRemoveDataItems: BuildRESTFunction<typeof bulkRemoveDataItems$1> & typeof bulkRemoveDataItems$1;
|
|
4392
|
+
declare const queryReferencedDataItems: BuildRESTFunction<typeof queryReferencedDataItems$1> & typeof queryReferencedDataItems$1;
|
|
4393
|
+
declare const isReferencedDataItem: BuildRESTFunction<typeof isReferencedDataItem$1> & typeof isReferencedDataItem$1;
|
|
4394
|
+
declare const insertDataItemReference: BuildRESTFunction<typeof insertDataItemReference$1> & typeof insertDataItemReference$1;
|
|
4395
|
+
declare const removeDataItemReference: BuildRESTFunction<typeof removeDataItemReference$1> & typeof removeDataItemReference$1;
|
|
4396
|
+
declare const bulkInsertDataItemReferences: BuildRESTFunction<typeof bulkInsertDataItemReferences$1> & typeof bulkInsertDataItemReferences$1;
|
|
4397
|
+
declare const bulkRemoveDataItemReferences: BuildRESTFunction<typeof bulkRemoveDataItemReferences$1> & typeof bulkRemoveDataItemReferences$1;
|
|
4398
|
+
declare const replaceDataItemReferences: BuildRESTFunction<typeof replaceDataItemReferences$1> & typeof replaceDataItemReferences$1;
|
|
4448
4399
|
|
|
4449
4400
|
type _publicOnDataItemCreatedType = typeof onDataItemCreated$1;
|
|
4450
4401
|
/**
|
|
@@ -4616,30 +4567,9 @@ type context$1_UpdateDataItemResponse = UpdateDataItemResponse;
|
|
|
4616
4567
|
type context$1_UpdateDataItemResponseNonNullableFields = UpdateDataItemResponseNonNullableFields;
|
|
4617
4568
|
type context$1_WebhookIdentityType = WebhookIdentityType;
|
|
4618
4569
|
declare const context$1_WebhookIdentityType: typeof WebhookIdentityType;
|
|
4619
|
-
type context$1__publicAggregateDataItemsType = _publicAggregateDataItemsType;
|
|
4620
|
-
type context$1__publicBulkInsertDataItemReferencesType = _publicBulkInsertDataItemReferencesType;
|
|
4621
|
-
type context$1__publicBulkInsertDataItemsType = _publicBulkInsertDataItemsType;
|
|
4622
|
-
type context$1__publicBulkRemoveDataItemReferencesType = _publicBulkRemoveDataItemReferencesType;
|
|
4623
|
-
type context$1__publicBulkRemoveDataItemsType = _publicBulkRemoveDataItemsType;
|
|
4624
|
-
type context$1__publicBulkSaveDataItemsType = _publicBulkSaveDataItemsType;
|
|
4625
|
-
type context$1__publicBulkUpdateDataItemsType = _publicBulkUpdateDataItemsType;
|
|
4626
|
-
type context$1__publicCountDataItemsType = _publicCountDataItemsType;
|
|
4627
|
-
type context$1__publicGetDataItemType = _publicGetDataItemType;
|
|
4628
|
-
type context$1__publicInsertDataItemReferenceType = _publicInsertDataItemReferenceType;
|
|
4629
|
-
type context$1__publicInsertDataItemType = _publicInsertDataItemType;
|
|
4630
|
-
type context$1__publicIsReferencedDataItemType = _publicIsReferencedDataItemType;
|
|
4631
4570
|
type context$1__publicOnDataItemCreatedType = _publicOnDataItemCreatedType;
|
|
4632
4571
|
type context$1__publicOnDataItemDeletedType = _publicOnDataItemDeletedType;
|
|
4633
4572
|
type context$1__publicOnDataItemUpdatedType = _publicOnDataItemUpdatedType;
|
|
4634
|
-
type context$1__publicQueryDataItemsType = _publicQueryDataItemsType;
|
|
4635
|
-
type context$1__publicQueryDistinctValuesType = _publicQueryDistinctValuesType;
|
|
4636
|
-
type context$1__publicQueryReferencedDataItemsType = _publicQueryReferencedDataItemsType;
|
|
4637
|
-
type context$1__publicRemoveDataItemReferenceType = _publicRemoveDataItemReferenceType;
|
|
4638
|
-
type context$1__publicRemoveDataItemType = _publicRemoveDataItemType;
|
|
4639
|
-
type context$1__publicReplaceDataItemReferencesType = _publicReplaceDataItemReferencesType;
|
|
4640
|
-
type context$1__publicSaveDataItemType = _publicSaveDataItemType;
|
|
4641
|
-
type context$1__publicTruncateDataItemsType = _publicTruncateDataItemsType;
|
|
4642
|
-
type context$1__publicUpdateDataItemType = _publicUpdateDataItemType;
|
|
4643
4573
|
declare const context$1_aggregateDataItems: typeof aggregateDataItems;
|
|
4644
4574
|
declare const context$1_bulkInsertDataItemReferences: typeof bulkInsertDataItemReferences;
|
|
4645
4575
|
declare const context$1_bulkInsertDataItems: typeof bulkInsertDataItems;
|
|
@@ -4665,7 +4595,7 @@ declare const context$1_saveDataItem: typeof saveDataItem;
|
|
|
4665
4595
|
declare const context$1_truncateDataItems: typeof truncateDataItems;
|
|
4666
4596
|
declare const context$1_updateDataItem: typeof updateDataItem;
|
|
4667
4597
|
declare namespace context$1 {
|
|
4668
|
-
export { context$1_ACTION as ACTION, context$1_Action as Action, type context$1_ActionEvent as ActionEvent, type context$1_AggregateDataItemsOptions as AggregateDataItemsOptions, type context$1_AggregateDataItemsRequest as AggregateDataItemsRequest, type context$1_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context$1_AggregateDataItemsResponse as AggregateDataItemsResponse, type context$1_Aggregation as Aggregation, type context$1_AppendToArray as AppendToArray, type context$1_ApplicationError as ApplicationError, type context$1_Average as Average, type context$1_BaseEventMetadata as BaseEventMetadata, type context$1_BulkActionMetadata as BulkActionMetadata, context$1_BulkActionType as BulkActionType, type context$1_BulkDataItemReferenceResult as BulkDataItemReferenceResult, type context$1_BulkDataItemResult as BulkDataItemResult, type context$1_BulkInsertDataItemReferencesOptions as BulkInsertDataItemReferencesOptions, type context$1_BulkInsertDataItemReferencesRequest as BulkInsertDataItemReferencesRequest, type context$1_BulkInsertDataItemReferencesResponse as BulkInsertDataItemReferencesResponse, type context$1_BulkInsertDataItemReferencesResponseNonNullableFields as BulkInsertDataItemReferencesResponseNonNullableFields, type context$1_BulkInsertDataItemsOptions as BulkInsertDataItemsOptions, type context$1_BulkInsertDataItemsRequest as BulkInsertDataItemsRequest, type context$1_BulkInsertDataItemsResponse as BulkInsertDataItemsResponse, type context$1_BulkInsertDataItemsResponseNonNullableFields as BulkInsertDataItemsResponseNonNullableFields, type context$1_BulkPatchDataItemsRequest as BulkPatchDataItemsRequest, type context$1_BulkPatchDataItemsResponse as BulkPatchDataItemsResponse, type context$1_BulkRemoveDataItemReferencesOptions as BulkRemoveDataItemReferencesOptions, type context$1_BulkRemoveDataItemReferencesRequest as BulkRemoveDataItemReferencesRequest, type context$1_BulkRemoveDataItemReferencesResponse as BulkRemoveDataItemReferencesResponse, type context$1_BulkRemoveDataItemReferencesResponseNonNullableFields as BulkRemoveDataItemReferencesResponseNonNullableFields, type context$1_BulkRemoveDataItemsOptions as BulkRemoveDataItemsOptions, type context$1_BulkRemoveDataItemsRequest as BulkRemoveDataItemsRequest, type context$1_BulkRemoveDataItemsResponse as BulkRemoveDataItemsResponse, type context$1_BulkRemoveDataItemsResponseNonNullableFields as BulkRemoveDataItemsResponseNonNullableFields, type context$1_BulkSaveDataItemsOptions as BulkSaveDataItemsOptions, type context$1_BulkSaveDataItemsRequest as BulkSaveDataItemsRequest, type context$1_BulkSaveDataItemsResponse as BulkSaveDataItemsResponse, type context$1_BulkSaveDataItemsResponseNonNullableFields as BulkSaveDataItemsResponseNonNullableFields, type context$1_BulkUpdateDataItemsOptions as BulkUpdateDataItemsOptions, type context$1_BulkUpdateDataItemsRequest as BulkUpdateDataItemsRequest, type context$1_BulkUpdateDataItemsResponse as BulkUpdateDataItemsResponse, type context$1_BulkUpdateDataItemsResponseNonNullableFields as BulkUpdateDataItemsResponseNonNullableFields, type context$1_CachingInfo as CachingInfo, type context$1_Count as Count, type context$1_CountDataItemsOptions as CountDataItemsOptions, type context$1_CountDataItemsRequest as CountDataItemsRequest, type context$1_CountDataItemsResponse as CountDataItemsResponse, type context$1_CountDataItemsResponseNonNullableFields as CountDataItemsResponseNonNullableFields, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DataItem as DataItem, type context$1_DataItemCreatedEnvelope as DataItemCreatedEnvelope, type context$1_DataItemDeletedEnvelope as DataItemDeletedEnvelope, type context$1_DataItemNonNullableFields as DataItemNonNullableFields, type context$1_DataItemReference as DataItemReference, type context$1_DataItemUpdatedEnvelope as DataItemUpdatedEnvelope, type context$1_DataItemsQueryBuilder as DataItemsQueryBuilder, type context$1_DataItemsQueryResult as DataItemsQueryResult, type context$1_DataPublishPluginOptions as DataPublishPluginOptions, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, Environment$1 as Environment, type context$1_EventMetadata as EventMetadata, type context$1_FieldUpdate as FieldUpdate, type context$1_FieldUpdateActionOptionsOneOf as FieldUpdateActionOptionsOneOf, type context$1_GetDataItemOptions as GetDataItemOptions, type context$1_GetDataItemRequest as GetDataItemRequest, type context$1_GetDataItemResponse as GetDataItemResponse, type context$1_GetDataItemResponseNonNullableFields as GetDataItemResponseNonNullableFields, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_IncrementField as IncrementField, type context$1_InsertDataItemOptions as InsertDataItemOptions, type context$1_InsertDataItemReferenceOptions as InsertDataItemReferenceOptions, type context$1_InsertDataItemReferenceRequest as InsertDataItemReferenceRequest, type context$1_InsertDataItemReferenceResponse as InsertDataItemReferenceResponse, type context$1_InsertDataItemReferenceResponseNonNullableFields as InsertDataItemReferenceResponseNonNullableFields, type context$1_InsertDataItemRequest as InsertDataItemRequest, type context$1_InsertDataItemResponse as InsertDataItemResponse, type context$1_InsertDataItemResponseNonNullableFields as InsertDataItemResponseNonNullableFields, type context$1_IsReferencedDataItemOptions as IsReferencedDataItemOptions, type context$1_IsReferencedDataItemRequest as IsReferencedDataItemRequest, type context$1_IsReferencedDataItemResponse as IsReferencedDataItemResponse, type context$1_IsReferencedDataItemResponseNonNullableFields as IsReferencedDataItemResponseNonNullableFields, type context$1_ItemMetadata as ItemMetadata, type context$1_Max as Max, type context$1_MessageEnvelope as MessageEnvelope, type context$1_Min as Min, type context$1_Operation as Operation, type context$1_OperationCalculateOneOf as OperationCalculateOneOf, type context$1_Options as Options, type Paging$1 as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_PatchDataItemRequest as PatchDataItemRequest, type context$1_PatchDataItemResponse as PatchDataItemResponse, type context$1_PatchSet as PatchSet, type context$1_PublishPluginOptions as PublishPluginOptions, type context$1_QueryDataItemsOptions as QueryDataItemsOptions, type context$1_QueryDataItemsRequest as QueryDataItemsRequest, type context$1_QueryDataItemsResponse as QueryDataItemsResponse, type context$1_QueryDataItemsResponseNonNullableFields as QueryDataItemsResponseNonNullableFields, type context$1_QueryDistinctValuesOptions as QueryDistinctValuesOptions, type context$1_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context$1_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context$1_QueryDistinctValuesResponse as QueryDistinctValuesResponse, type context$1_QueryReferencedDataItemsOptions as QueryReferencedDataItemsOptions, type context$1_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context$1_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context$1_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context$1_QueryReferencedDataItemsResponseNonNullableFields as QueryReferencedDataItemsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_ReferencedItemOptions as ReferencedItemOptions, type context$1_ReferencedResult as ReferencedResult, type context$1_ReferencedResultEntityOneOf as ReferencedResultEntityOneOf, type context$1_RemoveDataItemOptions as RemoveDataItemOptions, type context$1_RemoveDataItemReferenceOptions as RemoveDataItemReferenceOptions, type context$1_RemoveDataItemReferenceRequest as RemoveDataItemReferenceRequest, type context$1_RemoveDataItemReferenceResponse as RemoveDataItemReferenceResponse, type context$1_RemoveDataItemReferenceResponseNonNullableFields as RemoveDataItemReferenceResponseNonNullableFields, type context$1_RemoveDataItemRequest as RemoveDataItemRequest, type context$1_RemoveDataItemResponse as RemoveDataItemResponse, type context$1_RemoveDataItemResponseNonNullableFields as RemoveDataItemResponseNonNullableFields, type context$1_RemoveFromArray as RemoveFromArray, type context$1_ReplaceDataItemReferencesOptions as ReplaceDataItemReferencesOptions, type context$1_ReplaceDataItemReferencesRequest as ReplaceDataItemReferencesRequest, type context$1_ReplaceDataItemReferencesResponse as ReplaceDataItemReferencesResponse, type context$1_ReplaceDataItemReferencesResponseNonNullableFields as ReplaceDataItemReferencesResponseNonNullableFields, type context$1_RestoreInfo as RestoreInfo, type context$1_SaveDataItemOptions as SaveDataItemOptions, type context$1_SaveDataItemRequest as SaveDataItemRequest, type context$1_SaveDataItemResponse as SaveDataItemResponse, type context$1_SaveDataItemResponseNonNullableFields as SaveDataItemResponseNonNullableFields, type context$1_SetField as SetField, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_Sum as Sum, type context$1_TruncateDataItemsOptions as TruncateDataItemsOptions, type context$1_TruncateDataItemsRequest as TruncateDataItemsRequest, type context$1_TruncateDataItemsResponse as TruncateDataItemsResponse, type context$1_UnresolvedReference as UnresolvedReference, type context$1_UpdateDataItemOptions as UpdateDataItemOptions, type context$1_UpdateDataItemRequest as UpdateDataItemRequest, type context$1_UpdateDataItemResponse as UpdateDataItemResponse, type context$1_UpdateDataItemResponseNonNullableFields as UpdateDataItemResponseNonNullableFields, context$1_WebhookIdentityType as WebhookIdentityType, type context$1__publicAggregateDataItemsType as _publicAggregateDataItemsType, type context$1__publicBulkInsertDataItemReferencesType as _publicBulkInsertDataItemReferencesType, type context$1__publicBulkInsertDataItemsType as _publicBulkInsertDataItemsType, type context$1__publicBulkRemoveDataItemReferencesType as _publicBulkRemoveDataItemReferencesType, type context$1__publicBulkRemoveDataItemsType as _publicBulkRemoveDataItemsType, type context$1__publicBulkSaveDataItemsType as _publicBulkSaveDataItemsType, type context$1__publicBulkUpdateDataItemsType as _publicBulkUpdateDataItemsType, type context$1__publicCountDataItemsType as _publicCountDataItemsType, type context$1__publicGetDataItemType as _publicGetDataItemType, type context$1__publicInsertDataItemReferenceType as _publicInsertDataItemReferenceType, type context$1__publicInsertDataItemType as _publicInsertDataItemType, type context$1__publicIsReferencedDataItemType as _publicIsReferencedDataItemType, type context$1__publicOnDataItemCreatedType as _publicOnDataItemCreatedType, type context$1__publicOnDataItemDeletedType as _publicOnDataItemDeletedType, type context$1__publicOnDataItemUpdatedType as _publicOnDataItemUpdatedType, type context$1__publicQueryDataItemsType as _publicQueryDataItemsType, type context$1__publicQueryDistinctValuesType as _publicQueryDistinctValuesType, type context$1__publicQueryReferencedDataItemsType as _publicQueryReferencedDataItemsType, type context$1__publicRemoveDataItemReferenceType as _publicRemoveDataItemReferenceType, type context$1__publicRemoveDataItemType as _publicRemoveDataItemType, type context$1__publicReplaceDataItemReferencesType as _publicReplaceDataItemReferencesType, type context$1__publicSaveDataItemType as _publicSaveDataItemType, type context$1__publicTruncateDataItemsType as _publicTruncateDataItemsType, type context$1__publicUpdateDataItemType as _publicUpdateDataItemType, context$1_aggregateDataItems as aggregateDataItems, context$1_bulkInsertDataItemReferences as bulkInsertDataItemReferences, context$1_bulkInsertDataItems as bulkInsertDataItems, context$1_bulkRemoveDataItemReferences as bulkRemoveDataItemReferences, context$1_bulkRemoveDataItems as bulkRemoveDataItems, context$1_bulkSaveDataItems as bulkSaveDataItems, context$1_bulkUpdateDataItems as bulkUpdateDataItems, context$1_countDataItems as countDataItems, context$1_getDataItem as getDataItem, context$1_insertDataItem as insertDataItem, context$1_insertDataItemReference as insertDataItemReference, context$1_isReferencedDataItem as isReferencedDataItem, context$1_onDataItemCreated as onDataItemCreated, context$1_onDataItemDeleted as onDataItemDeleted, context$1_onDataItemUpdated as onDataItemUpdated, onDataItemCreated$1 as publicOnDataItemCreated, onDataItemDeleted$1 as publicOnDataItemDeleted, onDataItemUpdated$1 as publicOnDataItemUpdated, context$1_queryDataItems as queryDataItems, context$1_queryDistinctValues as queryDistinctValues, context$1_queryReferencedDataItems as queryReferencedDataItems, context$1_removeDataItem as removeDataItem, context$1_removeDataItemReference as removeDataItemReference, context$1_replaceDataItemReferences as replaceDataItemReferences, context$1_saveDataItem as saveDataItem, context$1_truncateDataItems as truncateDataItems, context$1_updateDataItem as updateDataItem };
|
|
4598
|
+
export { context$1_ACTION as ACTION, context$1_Action as Action, type context$1_ActionEvent as ActionEvent, type context$1_AggregateDataItemsOptions as AggregateDataItemsOptions, type context$1_AggregateDataItemsRequest as AggregateDataItemsRequest, type context$1_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context$1_AggregateDataItemsResponse as AggregateDataItemsResponse, type context$1_Aggregation as Aggregation, type context$1_AppendToArray as AppendToArray, type context$1_ApplicationError as ApplicationError, type context$1_Average as Average, type context$1_BaseEventMetadata as BaseEventMetadata, type context$1_BulkActionMetadata as BulkActionMetadata, context$1_BulkActionType as BulkActionType, type context$1_BulkDataItemReferenceResult as BulkDataItemReferenceResult, type context$1_BulkDataItemResult as BulkDataItemResult, type context$1_BulkInsertDataItemReferencesOptions as BulkInsertDataItemReferencesOptions, type context$1_BulkInsertDataItemReferencesRequest as BulkInsertDataItemReferencesRequest, type context$1_BulkInsertDataItemReferencesResponse as BulkInsertDataItemReferencesResponse, type context$1_BulkInsertDataItemReferencesResponseNonNullableFields as BulkInsertDataItemReferencesResponseNonNullableFields, type context$1_BulkInsertDataItemsOptions as BulkInsertDataItemsOptions, type context$1_BulkInsertDataItemsRequest as BulkInsertDataItemsRequest, type context$1_BulkInsertDataItemsResponse as BulkInsertDataItemsResponse, type context$1_BulkInsertDataItemsResponseNonNullableFields as BulkInsertDataItemsResponseNonNullableFields, type context$1_BulkPatchDataItemsRequest as BulkPatchDataItemsRequest, type context$1_BulkPatchDataItemsResponse as BulkPatchDataItemsResponse, type context$1_BulkRemoveDataItemReferencesOptions as BulkRemoveDataItemReferencesOptions, type context$1_BulkRemoveDataItemReferencesRequest as BulkRemoveDataItemReferencesRequest, type context$1_BulkRemoveDataItemReferencesResponse as BulkRemoveDataItemReferencesResponse, type context$1_BulkRemoveDataItemReferencesResponseNonNullableFields as BulkRemoveDataItemReferencesResponseNonNullableFields, type context$1_BulkRemoveDataItemsOptions as BulkRemoveDataItemsOptions, type context$1_BulkRemoveDataItemsRequest as BulkRemoveDataItemsRequest, type context$1_BulkRemoveDataItemsResponse as BulkRemoveDataItemsResponse, type context$1_BulkRemoveDataItemsResponseNonNullableFields as BulkRemoveDataItemsResponseNonNullableFields, type context$1_BulkSaveDataItemsOptions as BulkSaveDataItemsOptions, type context$1_BulkSaveDataItemsRequest as BulkSaveDataItemsRequest, type context$1_BulkSaveDataItemsResponse as BulkSaveDataItemsResponse, type context$1_BulkSaveDataItemsResponseNonNullableFields as BulkSaveDataItemsResponseNonNullableFields, type context$1_BulkUpdateDataItemsOptions as BulkUpdateDataItemsOptions, type context$1_BulkUpdateDataItemsRequest as BulkUpdateDataItemsRequest, type context$1_BulkUpdateDataItemsResponse as BulkUpdateDataItemsResponse, type context$1_BulkUpdateDataItemsResponseNonNullableFields as BulkUpdateDataItemsResponseNonNullableFields, type context$1_CachingInfo as CachingInfo, type context$1_Count as Count, type context$1_CountDataItemsOptions as CountDataItemsOptions, type context$1_CountDataItemsRequest as CountDataItemsRequest, type context$1_CountDataItemsResponse as CountDataItemsResponse, type context$1_CountDataItemsResponseNonNullableFields as CountDataItemsResponseNonNullableFields, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DataItem as DataItem, type context$1_DataItemCreatedEnvelope as DataItemCreatedEnvelope, type context$1_DataItemDeletedEnvelope as DataItemDeletedEnvelope, type context$1_DataItemNonNullableFields as DataItemNonNullableFields, type context$1_DataItemReference as DataItemReference, type context$1_DataItemUpdatedEnvelope as DataItemUpdatedEnvelope, type context$1_DataItemsQueryBuilder as DataItemsQueryBuilder, type context$1_DataItemsQueryResult as DataItemsQueryResult, type context$1_DataPublishPluginOptions as DataPublishPluginOptions, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, Environment$1 as Environment, type context$1_EventMetadata as EventMetadata, type context$1_FieldUpdate as FieldUpdate, type context$1_FieldUpdateActionOptionsOneOf as FieldUpdateActionOptionsOneOf, type context$1_GetDataItemOptions as GetDataItemOptions, type context$1_GetDataItemRequest as GetDataItemRequest, type context$1_GetDataItemResponse as GetDataItemResponse, type context$1_GetDataItemResponseNonNullableFields as GetDataItemResponseNonNullableFields, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_IncrementField as IncrementField, type context$1_InsertDataItemOptions as InsertDataItemOptions, type context$1_InsertDataItemReferenceOptions as InsertDataItemReferenceOptions, type context$1_InsertDataItemReferenceRequest as InsertDataItemReferenceRequest, type context$1_InsertDataItemReferenceResponse as InsertDataItemReferenceResponse, type context$1_InsertDataItemReferenceResponseNonNullableFields as InsertDataItemReferenceResponseNonNullableFields, type context$1_InsertDataItemRequest as InsertDataItemRequest, type context$1_InsertDataItemResponse as InsertDataItemResponse, type context$1_InsertDataItemResponseNonNullableFields as InsertDataItemResponseNonNullableFields, type context$1_IsReferencedDataItemOptions as IsReferencedDataItemOptions, type context$1_IsReferencedDataItemRequest as IsReferencedDataItemRequest, type context$1_IsReferencedDataItemResponse as IsReferencedDataItemResponse, type context$1_IsReferencedDataItemResponseNonNullableFields as IsReferencedDataItemResponseNonNullableFields, type context$1_ItemMetadata as ItemMetadata, type context$1_Max as Max, type context$1_MessageEnvelope as MessageEnvelope, type context$1_Min as Min, type context$1_Operation as Operation, type context$1_OperationCalculateOneOf as OperationCalculateOneOf, type context$1_Options as Options, type Paging$1 as Paging, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_PatchDataItemRequest as PatchDataItemRequest, type context$1_PatchDataItemResponse as PatchDataItemResponse, type context$1_PatchSet as PatchSet, type context$1_PublishPluginOptions as PublishPluginOptions, type context$1_QueryDataItemsOptions as QueryDataItemsOptions, type context$1_QueryDataItemsRequest as QueryDataItemsRequest, type context$1_QueryDataItemsResponse as QueryDataItemsResponse, type context$1_QueryDataItemsResponseNonNullableFields as QueryDataItemsResponseNonNullableFields, type context$1_QueryDistinctValuesOptions as QueryDistinctValuesOptions, type context$1_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context$1_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context$1_QueryDistinctValuesResponse as QueryDistinctValuesResponse, type context$1_QueryReferencedDataItemsOptions as QueryReferencedDataItemsOptions, type context$1_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context$1_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context$1_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context$1_QueryReferencedDataItemsResponseNonNullableFields as QueryReferencedDataItemsResponseNonNullableFields, type context$1_QueryV2 as QueryV2, type context$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context$1_ReferencedItemOptions as ReferencedItemOptions, type context$1_ReferencedResult as ReferencedResult, type context$1_ReferencedResultEntityOneOf as ReferencedResultEntityOneOf, type context$1_RemoveDataItemOptions as RemoveDataItemOptions, type context$1_RemoveDataItemReferenceOptions as RemoveDataItemReferenceOptions, type context$1_RemoveDataItemReferenceRequest as RemoveDataItemReferenceRequest, type context$1_RemoveDataItemReferenceResponse as RemoveDataItemReferenceResponse, type context$1_RemoveDataItemReferenceResponseNonNullableFields as RemoveDataItemReferenceResponseNonNullableFields, type context$1_RemoveDataItemRequest as RemoveDataItemRequest, type context$1_RemoveDataItemResponse as RemoveDataItemResponse, type context$1_RemoveDataItemResponseNonNullableFields as RemoveDataItemResponseNonNullableFields, type context$1_RemoveFromArray as RemoveFromArray, type context$1_ReplaceDataItemReferencesOptions as ReplaceDataItemReferencesOptions, type context$1_ReplaceDataItemReferencesRequest as ReplaceDataItemReferencesRequest, type context$1_ReplaceDataItemReferencesResponse as ReplaceDataItemReferencesResponse, type context$1_ReplaceDataItemReferencesResponseNonNullableFields as ReplaceDataItemReferencesResponseNonNullableFields, type context$1_RestoreInfo as RestoreInfo, type context$1_SaveDataItemOptions as SaveDataItemOptions, type context$1_SaveDataItemRequest as SaveDataItemRequest, type context$1_SaveDataItemResponse as SaveDataItemResponse, type context$1_SaveDataItemResponseNonNullableFields as SaveDataItemResponseNonNullableFields, type context$1_SetField as SetField, context$1_SortOrder as SortOrder, type context$1_Sorting as Sorting, type context$1_Sum as Sum, type context$1_TruncateDataItemsOptions as TruncateDataItemsOptions, type context$1_TruncateDataItemsRequest as TruncateDataItemsRequest, type context$1_TruncateDataItemsResponse as TruncateDataItemsResponse, type context$1_UnresolvedReference as UnresolvedReference, type context$1_UpdateDataItemOptions as UpdateDataItemOptions, type context$1_UpdateDataItemRequest as UpdateDataItemRequest, type context$1_UpdateDataItemResponse as UpdateDataItemResponse, type context$1_UpdateDataItemResponseNonNullableFields as UpdateDataItemResponseNonNullableFields, context$1_WebhookIdentityType as WebhookIdentityType, type context$1__publicOnDataItemCreatedType as _publicOnDataItemCreatedType, type context$1__publicOnDataItemDeletedType as _publicOnDataItemDeletedType, type context$1__publicOnDataItemUpdatedType as _publicOnDataItemUpdatedType, context$1_aggregateDataItems as aggregateDataItems, context$1_bulkInsertDataItemReferences as bulkInsertDataItemReferences, context$1_bulkInsertDataItems as bulkInsertDataItems, context$1_bulkRemoveDataItemReferences as bulkRemoveDataItemReferences, context$1_bulkRemoveDataItems as bulkRemoveDataItems, context$1_bulkSaveDataItems as bulkSaveDataItems, context$1_bulkUpdateDataItems as bulkUpdateDataItems, context$1_countDataItems as countDataItems, context$1_getDataItem as getDataItem, context$1_insertDataItem as insertDataItem, context$1_insertDataItemReference as insertDataItemReference, context$1_isReferencedDataItem as isReferencedDataItem, context$1_onDataItemCreated as onDataItemCreated, context$1_onDataItemDeleted as onDataItemDeleted, context$1_onDataItemUpdated as onDataItemUpdated, onDataItemCreated$1 as publicOnDataItemCreated, onDataItemDeleted$1 as publicOnDataItemDeleted, onDataItemUpdated$1 as publicOnDataItemUpdated, context$1_queryDataItems as queryDataItems, context$1_queryDistinctValues as queryDistinctValues, context$1_queryReferencedDataItems as queryReferencedDataItems, context$1_removeDataItem as removeDataItem, context$1_removeDataItemReference as removeDataItemReference, context$1_replaceDataItemReferences as replaceDataItemReferences, context$1_saveDataItem as saveDataItem, context$1_truncateDataItems as truncateDataItems, context$1_updateDataItem as updateDataItem };
|
|
4669
4599
|
}
|
|
4670
4600
|
|
|
4671
4601
|
/** An index is a map of a collection's data, organized according to specific fields to increase query speed. */
|
|
@@ -4886,14 +4816,9 @@ interface ListIndexesSignature {
|
|
|
4886
4816
|
(dataCollectionId: string, options?: ListIndexesOptions | undefined): Promise<ListIndexesResponse & ListIndexesResponseNonNullableFields>;
|
|
4887
4817
|
}
|
|
4888
4818
|
|
|
4889
|
-
declare
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
declare const createIndex: ReturnType<typeof createRESTModule<_publicCreateIndexType>>;
|
|
4893
|
-
type _publicDropIndexType = typeof dropIndex$1;
|
|
4894
|
-
declare const dropIndex: ReturnType<typeof createRESTModule<_publicDropIndexType>>;
|
|
4895
|
-
type _publicListIndexesType = typeof listIndexes$1;
|
|
4896
|
-
declare const listIndexes: ReturnType<typeof createRESTModule<_publicListIndexesType>>;
|
|
4819
|
+
declare const createIndex: BuildRESTFunction<typeof createIndex$1> & typeof createIndex$1;
|
|
4820
|
+
declare const dropIndex: BuildRESTFunction<typeof dropIndex$1> & typeof dropIndex$1;
|
|
4821
|
+
declare const listIndexes: BuildRESTFunction<typeof listIndexes$1> & typeof listIndexes$1;
|
|
4897
4822
|
|
|
4898
4823
|
type context_CreateIndexRequest = CreateIndexRequest;
|
|
4899
4824
|
type context_CreateIndexResponse = CreateIndexResponse;
|
|
@@ -4916,14 +4841,11 @@ type context_Paging = Paging;
|
|
|
4916
4841
|
type context_PagingMetadata = PagingMetadata;
|
|
4917
4842
|
type context_Status = Status;
|
|
4918
4843
|
declare const context_Status: typeof Status;
|
|
4919
|
-
type context__publicCreateIndexType = _publicCreateIndexType;
|
|
4920
|
-
type context__publicDropIndexType = _publicDropIndexType;
|
|
4921
|
-
type context__publicListIndexesType = _publicListIndexesType;
|
|
4922
4844
|
declare const context_createIndex: typeof createIndex;
|
|
4923
4845
|
declare const context_dropIndex: typeof dropIndex;
|
|
4924
4846
|
declare const context_listIndexes: typeof listIndexes;
|
|
4925
4847
|
declare namespace context {
|
|
4926
|
-
export { type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CreateIndexResponseNonNullableFields as CreateIndexResponseNonNullableFields, type context_DropIndexRequest as DropIndexRequest, type context_DropIndexResponse as DropIndexResponse, context_Environment as Environment, type context_Failure as Failure, type context_Field as Field, type context_Index as Index, type context_IndexNonNullableFields as IndexNonNullableFields, type context_ListIndexesOptions as ListIndexesOptions, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_ListIndexesResponseNonNullableFields as ListIndexesResponseNonNullableFields, context_Order as Order, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, context_Status as Status,
|
|
4848
|
+
export { type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CreateIndexResponseNonNullableFields as CreateIndexResponseNonNullableFields, type context_DropIndexRequest as DropIndexRequest, type context_DropIndexResponse as DropIndexResponse, context_Environment as Environment, type context_Failure as Failure, type context_Field as Field, type context_Index as Index, type context_IndexNonNullableFields as IndexNonNullableFields, type context_ListIndexesOptions as ListIndexesOptions, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_ListIndexesResponseNonNullableFields as ListIndexesResponseNonNullableFields, context_Order as Order, type context_Paging as Paging, type context_PagingMetadata as PagingMetadata, context_Status as Status, context_createIndex as createIndex, context_dropIndex as dropIndex, context_listIndexes as listIndexes };
|
|
4927
4849
|
}
|
|
4928
4850
|
|
|
4929
4851
|
export { context$2 as collections, context$3 as externalDatabaseConnections, context as indexes, context$1 as items };
|