@wix/data 1.0.143 → 1.0.144
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/data",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.144",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"service-plugins"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@wix/data_collections": "1.0.
|
|
23
|
-
"@wix/data_external-database": "1.0.
|
|
24
|
-
"@wix/data_external-database-connections": "1.0.
|
|
25
|
-
"@wix/data_indexes": "1.0.
|
|
26
|
-
"@wix/data_items": "1.0.
|
|
22
|
+
"@wix/data_collections": "1.0.40",
|
|
23
|
+
"@wix/data_external-database": "1.0.18",
|
|
24
|
+
"@wix/data_external-database-connections": "1.0.36",
|
|
25
|
+
"@wix/data_indexes": "1.0.30",
|
|
26
|
+
"@wix/data_items": "1.0.44"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -32,8 +32,9 @@
|
|
|
32
32
|
"typescript": "^5.3.2"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
|
-
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
|
|
35
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles && npm run build:validate-dts",
|
|
36
36
|
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
37
|
+
"build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
|
|
37
38
|
"test": ":"
|
|
38
39
|
},
|
|
39
40
|
"wix": {
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"fqdn": ""
|
|
48
49
|
}
|
|
49
50
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "335de58e1f2330f6146e57a2c0fd24481f8fb6557dd3c42ec99621e6"
|
|
51
52
|
}
|
|
@@ -459,18 +459,38 @@ declare global {
|
|
|
459
459
|
}
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
+
declare function getExternalDatabaseConnection$1(httpClient: HttpClient): (name: string) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
463
|
+
declare function listExternalDatabaseConnections$1(httpClient: HttpClient): (options?: ListExternalDatabaseConnectionsOptions) => Promise<ListExternalDatabaseConnectionsResponse & ListExternalDatabaseConnectionsResponseNonNullableFields>;
|
|
464
|
+
declare function createExternalDatabaseConnection$1(httpClient: HttpClient): (externalDatabaseConnection: ExternalDatabaseConnection, options: CreateExternalDatabaseConnectionOptions) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
465
|
+
declare function updateExternalDatabaseConnection$1(httpClient: HttpClient): (name: string, externalDatabaseConnection: UpdateExternalDatabaseConnection) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
466
|
+
declare function deleteExternalDatabaseConnection$1(httpClient: HttpClient): (name: string) => Promise<void>;
|
|
467
|
+
declare const onExternalDatabaseConnectionCreated$1: EventDefinition<ExternalDatabaseConnectionCreatedEnvelope, "wix.data.v1.external_database_connection_created">;
|
|
468
|
+
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
469
|
+
declare const onExternalDatabaseConnectionDeleted$1: EventDefinition<ExternalDatabaseConnectionDeletedEnvelope, "wix.data.v1.external_database_connection_deleted">;
|
|
470
|
+
|
|
462
471
|
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
463
472
|
|
|
464
473
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
465
474
|
|
|
466
|
-
|
|
467
|
-
declare const
|
|
468
|
-
|
|
469
|
-
declare const
|
|
470
|
-
|
|
471
|
-
declare const
|
|
472
|
-
|
|
473
|
-
declare const
|
|
475
|
+
type _publicGetExternalDatabaseConnectionType = typeof getExternalDatabaseConnection$1;
|
|
476
|
+
declare const getExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicGetExternalDatabaseConnectionType>>;
|
|
477
|
+
type _publicListExternalDatabaseConnectionsType = typeof listExternalDatabaseConnections$1;
|
|
478
|
+
declare const listExternalDatabaseConnections: ReturnType<typeof createRESTModule$3<_publicListExternalDatabaseConnectionsType>>;
|
|
479
|
+
type _publicCreateExternalDatabaseConnectionType = typeof createExternalDatabaseConnection$1;
|
|
480
|
+
declare const createExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicCreateExternalDatabaseConnectionType>>;
|
|
481
|
+
type _publicUpdateExternalDatabaseConnectionType = typeof updateExternalDatabaseConnection$1;
|
|
482
|
+
declare const updateExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicUpdateExternalDatabaseConnectionType>>;
|
|
483
|
+
type _publicDeleteExternalDatabaseConnectionType = typeof deleteExternalDatabaseConnection$1;
|
|
484
|
+
declare const deleteExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicDeleteExternalDatabaseConnectionType>>;
|
|
485
|
+
|
|
486
|
+
type _publicOnExternalDatabaseConnectionCreatedType = typeof onExternalDatabaseConnectionCreated$1;
|
|
487
|
+
declare const onExternalDatabaseConnectionCreated: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionCreatedType>>;
|
|
488
|
+
|
|
489
|
+
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
490
|
+
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
491
|
+
|
|
492
|
+
type _publicOnExternalDatabaseConnectionDeletedType = typeof onExternalDatabaseConnectionDeleted$1;
|
|
493
|
+
declare const onExternalDatabaseConnectionDeleted: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionDeletedType>>;
|
|
474
494
|
|
|
475
495
|
type context$3_Capabilities = Capabilities;
|
|
476
496
|
type context$3_CauseOfFailure = CauseOfFailure;
|
|
@@ -506,6 +526,14 @@ type context$3_UpdateExternalDatabaseConnection = UpdateExternalDatabaseConnecti
|
|
|
506
526
|
type context$3_UpdateExternalDatabaseConnectionRequest = UpdateExternalDatabaseConnectionRequest;
|
|
507
527
|
type context$3_UpdateExternalDatabaseConnectionResponse = UpdateExternalDatabaseConnectionResponse;
|
|
508
528
|
type context$3_UpdateExternalDatabaseConnectionResponseNonNullableFields = UpdateExternalDatabaseConnectionResponseNonNullableFields;
|
|
529
|
+
type context$3__publicCreateExternalDatabaseConnectionType = _publicCreateExternalDatabaseConnectionType;
|
|
530
|
+
type context$3__publicDeleteExternalDatabaseConnectionType = _publicDeleteExternalDatabaseConnectionType;
|
|
531
|
+
type context$3__publicGetExternalDatabaseConnectionType = _publicGetExternalDatabaseConnectionType;
|
|
532
|
+
type context$3__publicListExternalDatabaseConnectionsType = _publicListExternalDatabaseConnectionsType;
|
|
533
|
+
type context$3__publicOnExternalDatabaseConnectionCreatedType = _publicOnExternalDatabaseConnectionCreatedType;
|
|
534
|
+
type context$3__publicOnExternalDatabaseConnectionDeletedType = _publicOnExternalDatabaseConnectionDeletedType;
|
|
535
|
+
type context$3__publicOnExternalDatabaseConnectionUpdatedType = _publicOnExternalDatabaseConnectionUpdatedType;
|
|
536
|
+
type context$3__publicUpdateExternalDatabaseConnectionType = _publicUpdateExternalDatabaseConnectionType;
|
|
509
537
|
declare const context$3_createExternalDatabaseConnection: typeof createExternalDatabaseConnection;
|
|
510
538
|
declare const context$3_deleteExternalDatabaseConnection: typeof deleteExternalDatabaseConnection;
|
|
511
539
|
declare const context$3_getExternalDatabaseConnection: typeof getExternalDatabaseConnection;
|
|
@@ -515,7 +543,7 @@ declare const context$3_onExternalDatabaseConnectionDeleted: typeof onExternalDa
|
|
|
515
543
|
declare const context$3_onExternalDatabaseConnectionUpdated: typeof onExternalDatabaseConnectionUpdated;
|
|
516
544
|
declare const context$3_updateExternalDatabaseConnection: typeof updateExternalDatabaseConnection;
|
|
517
545
|
declare namespace context$3 {
|
|
518
|
-
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, 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, context$3_updateExternalDatabaseConnection as updateExternalDatabaseConnection };
|
|
546
|
+
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__publicCreateExternalDatabaseConnectionType as _publicCreateExternalDatabaseConnectionType, type context$3__publicDeleteExternalDatabaseConnectionType as _publicDeleteExternalDatabaseConnectionType, type context$3__publicGetExternalDatabaseConnectionType as _publicGetExternalDatabaseConnectionType, type context$3__publicListExternalDatabaseConnectionsType as _publicListExternalDatabaseConnectionsType, type context$3__publicOnExternalDatabaseConnectionCreatedType as _publicOnExternalDatabaseConnectionCreatedType, type context$3__publicOnExternalDatabaseConnectionDeletedType as _publicOnExternalDatabaseConnectionDeletedType, type context$3__publicOnExternalDatabaseConnectionUpdatedType as _publicOnExternalDatabaseConnectionUpdatedType, type context$3__publicUpdateExternalDatabaseConnectionType as _publicUpdateExternalDatabaseConnectionType, 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 };
|
|
519
547
|
}
|
|
520
548
|
|
|
521
549
|
/** A data collection determines the structure of data to be stored in a database. */
|
|
@@ -1819,20 +1847,46 @@ interface ListDataCollectionsOptions {
|
|
|
1819
1847
|
consistentRead?: boolean;
|
|
1820
1848
|
}
|
|
1821
1849
|
|
|
1850
|
+
declare function createDataCollection$1(httpClient: HttpClient): (collection: DataCollection) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1851
|
+
declare function getDataCollection$1(httpClient: HttpClient): (dataCollectionId: string, options?: GetDataCollectionOptions) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1852
|
+
declare function listDataCollections$1(httpClient: HttpClient): (options?: ListDataCollectionsOptions) => Promise<ListDataCollectionsResponse & ListDataCollectionsResponseNonNullableFields>;
|
|
1853
|
+
declare function updateDataCollection$1(httpClient: HttpClient): (collection: DataCollection) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1854
|
+
declare function deleteDataCollection$1(httpClient: HttpClient): (dataCollectionId: string) => Promise<void>;
|
|
1855
|
+
declare const onDataCollectionClonedEvent$1: EventDefinition<DataCollectionClonedEnvelope, "wix.data.v2.data_collection_data_collection_cloned_event">;
|
|
1856
|
+
declare const onDataCollectionChangedEvent$1: EventDefinition<DataCollectionChangedEnvelope, "wix.data.v2.data_collection_data_collection_changed_event">;
|
|
1857
|
+
declare const onDataCollectionCreated$1: EventDefinition<DataCollectionCreatedEnvelope, "wix.data.v2.data_collection_created">;
|
|
1858
|
+
declare const onDataCollectionUpdated$1: EventDefinition<DataCollectionUpdatedEnvelope, "wix.data.v2.data_collection_updated">;
|
|
1859
|
+
declare const onDataCollectionDeleted$1: EventDefinition<DataCollectionDeletedEnvelope, "wix.data.v2.data_collection_deleted">;
|
|
1860
|
+
|
|
1822
1861
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1823
1862
|
|
|
1824
1863
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1825
1864
|
|
|
1826
|
-
|
|
1827
|
-
declare const
|
|
1828
|
-
|
|
1829
|
-
declare const
|
|
1830
|
-
|
|
1831
|
-
declare const
|
|
1832
|
-
|
|
1833
|
-
declare const
|
|
1834
|
-
|
|
1835
|
-
declare const
|
|
1865
|
+
type _publicCreateDataCollectionType = typeof createDataCollection$1;
|
|
1866
|
+
declare const createDataCollection: ReturnType<typeof createRESTModule$2<_publicCreateDataCollectionType>>;
|
|
1867
|
+
type _publicGetDataCollectionType = typeof getDataCollection$1;
|
|
1868
|
+
declare const getDataCollection: ReturnType<typeof createRESTModule$2<_publicGetDataCollectionType>>;
|
|
1869
|
+
type _publicListDataCollectionsType = typeof listDataCollections$1;
|
|
1870
|
+
declare const listDataCollections: ReturnType<typeof createRESTModule$2<_publicListDataCollectionsType>>;
|
|
1871
|
+
type _publicUpdateDataCollectionType = typeof updateDataCollection$1;
|
|
1872
|
+
declare const updateDataCollection: ReturnType<typeof createRESTModule$2<_publicUpdateDataCollectionType>>;
|
|
1873
|
+
type _publicDeleteDataCollectionType = typeof deleteDataCollection$1;
|
|
1874
|
+
declare const deleteDataCollection: ReturnType<typeof createRESTModule$2<_publicDeleteDataCollectionType>>;
|
|
1875
|
+
|
|
1876
|
+
type _publicOnDataCollectionClonedEventType = typeof onDataCollectionClonedEvent$1;
|
|
1877
|
+
declare const onDataCollectionClonedEvent: ReturnType<typeof createEventModule$1<_publicOnDataCollectionClonedEventType>>;
|
|
1878
|
+
|
|
1879
|
+
type _publicOnDataCollectionChangedEventType = typeof onDataCollectionChangedEvent$1;
|
|
1880
|
+
declare const onDataCollectionChangedEvent: ReturnType<typeof createEventModule$1<_publicOnDataCollectionChangedEventType>>;
|
|
1881
|
+
|
|
1882
|
+
type _publicOnDataCollectionCreatedType = typeof onDataCollectionCreated$1;
|
|
1883
|
+
declare const onDataCollectionCreated: ReturnType<typeof createEventModule$1<_publicOnDataCollectionCreatedType>>;
|
|
1884
|
+
|
|
1885
|
+
type _publicOnDataCollectionUpdatedType = typeof onDataCollectionUpdated$1;
|
|
1886
|
+
declare const onDataCollectionUpdated: ReturnType<typeof createEventModule$1<_publicOnDataCollectionUpdatedType>>;
|
|
1887
|
+
|
|
1888
|
+
type _publicOnDataCollectionDeletedType = typeof onDataCollectionDeleted$1;
|
|
1889
|
+
declare const onDataCollectionDeleted: ReturnType<typeof createEventModule$1<_publicOnDataCollectionDeletedType>>;
|
|
1836
1890
|
|
|
1837
1891
|
type context$2_AccessLevel = AccessLevel;
|
|
1838
1892
|
declare const context$2_AccessLevel: typeof AccessLevel;
|
|
@@ -1942,6 +1996,16 @@ type context$2_UrlizedOnlyPattern = UrlizedOnlyPattern;
|
|
|
1942
1996
|
type context$2_UrlizedPluginOptions = UrlizedPluginOptions;
|
|
1943
1997
|
type context$2__Array = _Array;
|
|
1944
1998
|
type context$2__Object = _Object;
|
|
1999
|
+
type context$2__publicCreateDataCollectionType = _publicCreateDataCollectionType;
|
|
2000
|
+
type context$2__publicDeleteDataCollectionType = _publicDeleteDataCollectionType;
|
|
2001
|
+
type context$2__publicGetDataCollectionType = _publicGetDataCollectionType;
|
|
2002
|
+
type context$2__publicListDataCollectionsType = _publicListDataCollectionsType;
|
|
2003
|
+
type context$2__publicOnDataCollectionChangedEventType = _publicOnDataCollectionChangedEventType;
|
|
2004
|
+
type context$2__publicOnDataCollectionClonedEventType = _publicOnDataCollectionClonedEventType;
|
|
2005
|
+
type context$2__publicOnDataCollectionCreatedType = _publicOnDataCollectionCreatedType;
|
|
2006
|
+
type context$2__publicOnDataCollectionDeletedType = _publicOnDataCollectionDeletedType;
|
|
2007
|
+
type context$2__publicOnDataCollectionUpdatedType = _publicOnDataCollectionUpdatedType;
|
|
2008
|
+
type context$2__publicUpdateDataCollectionType = _publicUpdateDataCollectionType;
|
|
1945
2009
|
declare const context$2_createDataCollection: typeof createDataCollection;
|
|
1946
2010
|
declare const context$2_deleteDataCollection: typeof deleteDataCollection;
|
|
1947
2011
|
declare const context$2_getDataCollection: typeof getDataCollection;
|
|
@@ -1953,7 +2017,7 @@ declare const context$2_onDataCollectionDeleted: typeof onDataCollectionDeleted;
|
|
|
1953
2017
|
declare const context$2_onDataCollectionUpdated: typeof onDataCollectionUpdated;
|
|
1954
2018
|
declare const context$2_updateDataCollection: typeof updateDataCollection;
|
|
1955
2019
|
declare namespace context$2 {
|
|
1956
|
-
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, 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, context$2_updateDataCollection as updateDataCollection };
|
|
2020
|
+
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__publicCreateDataCollectionType as _publicCreateDataCollectionType, type context$2__publicDeleteDataCollectionType as _publicDeleteDataCollectionType, type context$2__publicGetDataCollectionType as _publicGetDataCollectionType, type context$2__publicListDataCollectionsType as _publicListDataCollectionsType, 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, type context$2__publicUpdateDataCollectionType as _publicUpdateDataCollectionType, 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 };
|
|
1957
2021
|
}
|
|
1958
2022
|
|
|
1959
2023
|
interface DataItem {
|
|
@@ -3502,34 +3566,86 @@ interface ReplaceDataItemReferencesOptions {
|
|
|
3502
3566
|
newReferencedItemIds?: string[];
|
|
3503
3567
|
}
|
|
3504
3568
|
|
|
3569
|
+
declare function insertDataItem$1(httpClient: HttpClient): (options: InsertDataItemOptions) => Promise<InsertDataItemResponse & InsertDataItemResponseNonNullableFields>;
|
|
3570
|
+
declare function updateDataItem$1(httpClient: HttpClient): (_id: string, options: UpdateDataItemOptions) => Promise<UpdateDataItemResponse & UpdateDataItemResponseNonNullableFields>;
|
|
3571
|
+
declare function saveDataItem$1(httpClient: HttpClient): (options: SaveDataItemOptions) => Promise<SaveDataItemResponse & SaveDataItemResponseNonNullableFields>;
|
|
3572
|
+
declare function getDataItem$1(httpClient: HttpClient): (dataItemId: string, options?: GetDataItemOptions) => Promise<DataItem & DataItemNonNullableFields>;
|
|
3573
|
+
declare function removeDataItem$1(httpClient: HttpClient): (dataItemId: string, options: RemoveDataItemOptions) => Promise<RemoveDataItemResponse & RemoveDataItemResponseNonNullableFields>;
|
|
3574
|
+
declare function truncateDataItems$1(httpClient: HttpClient): (options: TruncateDataItemsOptions) => Promise<void>;
|
|
3575
|
+
declare function queryDataItems$1(httpClient: HttpClient): (options: QueryDataItemsOptions) => DataItemsQueryBuilder;
|
|
3576
|
+
declare function aggregateDataItems$1(httpClient: HttpClient): (options?: AggregateDataItemsOptions) => Promise<AggregateDataItemsResponse>;
|
|
3577
|
+
declare function countDataItems$1(httpClient: HttpClient): (options?: CountDataItemsOptions) => Promise<CountDataItemsResponse & CountDataItemsResponseNonNullableFields>;
|
|
3578
|
+
declare function queryDistinctValues$1(httpClient: HttpClient): (options?: QueryDistinctValuesOptions) => Promise<QueryDistinctValuesResponse>;
|
|
3579
|
+
declare function bulkInsertDataItems$1(httpClient: HttpClient): (options?: BulkInsertDataItemsOptions) => Promise<BulkInsertDataItemsResponse & BulkInsertDataItemsResponseNonNullableFields>;
|
|
3580
|
+
declare function bulkUpdateDataItems$1(httpClient: HttpClient): (options?: BulkUpdateDataItemsOptions) => Promise<BulkUpdateDataItemsResponse & BulkUpdateDataItemsResponseNonNullableFields>;
|
|
3581
|
+
declare function bulkSaveDataItems$1(httpClient: HttpClient): (options?: BulkSaveDataItemsOptions) => Promise<BulkSaveDataItemsResponse & BulkSaveDataItemsResponseNonNullableFields>;
|
|
3582
|
+
declare function bulkRemoveDataItems$1(httpClient: HttpClient): (options: BulkRemoveDataItemsOptions) => Promise<BulkRemoveDataItemsResponse & BulkRemoveDataItemsResponseNonNullableFields>;
|
|
3583
|
+
declare function queryReferencedDataItems$1(httpClient: HttpClient): (options?: QueryReferencedDataItemsOptions) => Promise<QueryReferencedDataItemsResponse & QueryReferencedDataItemsResponseNonNullableFields>;
|
|
3584
|
+
declare function isReferencedDataItem$1(httpClient: HttpClient): (options?: IsReferencedDataItemOptions) => Promise<IsReferencedDataItemResponse & IsReferencedDataItemResponseNonNullableFields>;
|
|
3585
|
+
declare function insertDataItemReference$1(httpClient: HttpClient): (options?: InsertDataItemReferenceOptions) => Promise<InsertDataItemReferenceResponse & InsertDataItemReferenceResponseNonNullableFields>;
|
|
3586
|
+
declare function removeDataItemReference$1(httpClient: HttpClient): (options: RemoveDataItemReferenceOptions) => Promise<RemoveDataItemReferenceResponse & RemoveDataItemReferenceResponseNonNullableFields>;
|
|
3587
|
+
declare function bulkInsertDataItemReferences$1(httpClient: HttpClient): (options?: BulkInsertDataItemReferencesOptions) => Promise<BulkInsertDataItemReferencesResponse & BulkInsertDataItemReferencesResponseNonNullableFields>;
|
|
3588
|
+
declare function bulkRemoveDataItemReferences$1(httpClient: HttpClient): (options: BulkRemoveDataItemReferencesOptions) => Promise<BulkRemoveDataItemReferencesResponse & BulkRemoveDataItemReferencesResponseNonNullableFields>;
|
|
3589
|
+
declare function replaceDataItemReferences$1(httpClient: HttpClient): (options?: ReplaceDataItemReferencesOptions) => Promise<ReplaceDataItemReferencesResponse & ReplaceDataItemReferencesResponseNonNullableFields>;
|
|
3590
|
+
declare const onDataItemCreated$1: EventDefinition<DataItemCreatedEnvelope, "wix.data.v2.data_item_created">;
|
|
3591
|
+
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
3592
|
+
declare const onDataItemDeleted$1: EventDefinition<DataItemDeletedEnvelope, "wix.data.v2.data_item_deleted">;
|
|
3593
|
+
|
|
3505
3594
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3506
3595
|
|
|
3507
3596
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
3508
3597
|
|
|
3509
|
-
|
|
3510
|
-
declare const
|
|
3511
|
-
|
|
3512
|
-
declare const
|
|
3513
|
-
|
|
3514
|
-
declare const
|
|
3515
|
-
|
|
3516
|
-
declare const
|
|
3517
|
-
|
|
3518
|
-
declare const
|
|
3519
|
-
|
|
3520
|
-
declare const
|
|
3521
|
-
|
|
3522
|
-
declare const
|
|
3523
|
-
|
|
3524
|
-
declare const
|
|
3525
|
-
|
|
3526
|
-
declare const
|
|
3527
|
-
|
|
3528
|
-
declare const
|
|
3529
|
-
|
|
3530
|
-
declare const
|
|
3531
|
-
|
|
3532
|
-
declare const
|
|
3598
|
+
type _publicInsertDataItemType = typeof insertDataItem$1;
|
|
3599
|
+
declare const insertDataItem: ReturnType<typeof createRESTModule$1<_publicInsertDataItemType>>;
|
|
3600
|
+
type _publicUpdateDataItemType = typeof updateDataItem$1;
|
|
3601
|
+
declare const updateDataItem: ReturnType<typeof createRESTModule$1<_publicUpdateDataItemType>>;
|
|
3602
|
+
type _publicSaveDataItemType = typeof saveDataItem$1;
|
|
3603
|
+
declare const saveDataItem: ReturnType<typeof createRESTModule$1<_publicSaveDataItemType>>;
|
|
3604
|
+
type _publicGetDataItemType = typeof getDataItem$1;
|
|
3605
|
+
declare const getDataItem: ReturnType<typeof createRESTModule$1<_publicGetDataItemType>>;
|
|
3606
|
+
type _publicRemoveDataItemType = typeof removeDataItem$1;
|
|
3607
|
+
declare const removeDataItem: ReturnType<typeof createRESTModule$1<_publicRemoveDataItemType>>;
|
|
3608
|
+
type _publicTruncateDataItemsType = typeof truncateDataItems$1;
|
|
3609
|
+
declare const truncateDataItems: ReturnType<typeof createRESTModule$1<_publicTruncateDataItemsType>>;
|
|
3610
|
+
type _publicQueryDataItemsType = typeof queryDataItems$1;
|
|
3611
|
+
declare const queryDataItems: ReturnType<typeof createRESTModule$1<_publicQueryDataItemsType>>;
|
|
3612
|
+
type _publicAggregateDataItemsType = typeof aggregateDataItems$1;
|
|
3613
|
+
declare const aggregateDataItems: ReturnType<typeof createRESTModule$1<_publicAggregateDataItemsType>>;
|
|
3614
|
+
type _publicCountDataItemsType = typeof countDataItems$1;
|
|
3615
|
+
declare const countDataItems: ReturnType<typeof createRESTModule$1<_publicCountDataItemsType>>;
|
|
3616
|
+
type _publicQueryDistinctValuesType = typeof queryDistinctValues$1;
|
|
3617
|
+
declare const queryDistinctValues: ReturnType<typeof createRESTModule$1<_publicQueryDistinctValuesType>>;
|
|
3618
|
+
type _publicBulkInsertDataItemsType = typeof bulkInsertDataItems$1;
|
|
3619
|
+
declare const bulkInsertDataItems: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemsType>>;
|
|
3620
|
+
type _publicBulkUpdateDataItemsType = typeof bulkUpdateDataItems$1;
|
|
3621
|
+
declare const bulkUpdateDataItems: ReturnType<typeof createRESTModule$1<_publicBulkUpdateDataItemsType>>;
|
|
3622
|
+
type _publicBulkSaveDataItemsType = typeof bulkSaveDataItems$1;
|
|
3623
|
+
declare const bulkSaveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkSaveDataItemsType>>;
|
|
3624
|
+
type _publicBulkRemoveDataItemsType = typeof bulkRemoveDataItems$1;
|
|
3625
|
+
declare const bulkRemoveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemsType>>;
|
|
3626
|
+
type _publicQueryReferencedDataItemsType = typeof queryReferencedDataItems$1;
|
|
3627
|
+
declare const queryReferencedDataItems: ReturnType<typeof createRESTModule$1<_publicQueryReferencedDataItemsType>>;
|
|
3628
|
+
type _publicIsReferencedDataItemType = typeof isReferencedDataItem$1;
|
|
3629
|
+
declare const isReferencedDataItem: ReturnType<typeof createRESTModule$1<_publicIsReferencedDataItemType>>;
|
|
3630
|
+
type _publicInsertDataItemReferenceType = typeof insertDataItemReference$1;
|
|
3631
|
+
declare const insertDataItemReference: ReturnType<typeof createRESTModule$1<_publicInsertDataItemReferenceType>>;
|
|
3632
|
+
type _publicRemoveDataItemReferenceType = typeof removeDataItemReference$1;
|
|
3633
|
+
declare const removeDataItemReference: ReturnType<typeof createRESTModule$1<_publicRemoveDataItemReferenceType>>;
|
|
3634
|
+
type _publicBulkInsertDataItemReferencesType = typeof bulkInsertDataItemReferences$1;
|
|
3635
|
+
declare const bulkInsertDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemReferencesType>>;
|
|
3636
|
+
type _publicBulkRemoveDataItemReferencesType = typeof bulkRemoveDataItemReferences$1;
|
|
3637
|
+
declare const bulkRemoveDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemReferencesType>>;
|
|
3638
|
+
type _publicReplaceDataItemReferencesType = typeof replaceDataItemReferences$1;
|
|
3639
|
+
declare const replaceDataItemReferences: ReturnType<typeof createRESTModule$1<_publicReplaceDataItemReferencesType>>;
|
|
3640
|
+
|
|
3641
|
+
type _publicOnDataItemCreatedType = typeof onDataItemCreated$1;
|
|
3642
|
+
declare const onDataItemCreated: ReturnType<typeof createEventModule<_publicOnDataItemCreatedType>>;
|
|
3643
|
+
|
|
3644
|
+
type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
3645
|
+
declare const onDataItemUpdated: ReturnType<typeof createEventModule<_publicOnDataItemUpdatedType>>;
|
|
3646
|
+
|
|
3647
|
+
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
3648
|
+
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
3533
3649
|
|
|
3534
3650
|
type context$1_ACTION = ACTION;
|
|
3535
3651
|
declare const context$1_ACTION: typeof ACTION;
|
|
@@ -3683,6 +3799,30 @@ type context$1_UpdateDataItemResponse = UpdateDataItemResponse;
|
|
|
3683
3799
|
type context$1_UpdateDataItemResponseNonNullableFields = UpdateDataItemResponseNonNullableFields;
|
|
3684
3800
|
type context$1_WebhookIdentityType = WebhookIdentityType;
|
|
3685
3801
|
declare const context$1_WebhookIdentityType: typeof WebhookIdentityType;
|
|
3802
|
+
type context$1__publicAggregateDataItemsType = _publicAggregateDataItemsType;
|
|
3803
|
+
type context$1__publicBulkInsertDataItemReferencesType = _publicBulkInsertDataItemReferencesType;
|
|
3804
|
+
type context$1__publicBulkInsertDataItemsType = _publicBulkInsertDataItemsType;
|
|
3805
|
+
type context$1__publicBulkRemoveDataItemReferencesType = _publicBulkRemoveDataItemReferencesType;
|
|
3806
|
+
type context$1__publicBulkRemoveDataItemsType = _publicBulkRemoveDataItemsType;
|
|
3807
|
+
type context$1__publicBulkSaveDataItemsType = _publicBulkSaveDataItemsType;
|
|
3808
|
+
type context$1__publicBulkUpdateDataItemsType = _publicBulkUpdateDataItemsType;
|
|
3809
|
+
type context$1__publicCountDataItemsType = _publicCountDataItemsType;
|
|
3810
|
+
type context$1__publicGetDataItemType = _publicGetDataItemType;
|
|
3811
|
+
type context$1__publicInsertDataItemReferenceType = _publicInsertDataItemReferenceType;
|
|
3812
|
+
type context$1__publicInsertDataItemType = _publicInsertDataItemType;
|
|
3813
|
+
type context$1__publicIsReferencedDataItemType = _publicIsReferencedDataItemType;
|
|
3814
|
+
type context$1__publicOnDataItemCreatedType = _publicOnDataItemCreatedType;
|
|
3815
|
+
type context$1__publicOnDataItemDeletedType = _publicOnDataItemDeletedType;
|
|
3816
|
+
type context$1__publicOnDataItemUpdatedType = _publicOnDataItemUpdatedType;
|
|
3817
|
+
type context$1__publicQueryDataItemsType = _publicQueryDataItemsType;
|
|
3818
|
+
type context$1__publicQueryDistinctValuesType = _publicQueryDistinctValuesType;
|
|
3819
|
+
type context$1__publicQueryReferencedDataItemsType = _publicQueryReferencedDataItemsType;
|
|
3820
|
+
type context$1__publicRemoveDataItemReferenceType = _publicRemoveDataItemReferenceType;
|
|
3821
|
+
type context$1__publicRemoveDataItemType = _publicRemoveDataItemType;
|
|
3822
|
+
type context$1__publicReplaceDataItemReferencesType = _publicReplaceDataItemReferencesType;
|
|
3823
|
+
type context$1__publicSaveDataItemType = _publicSaveDataItemType;
|
|
3824
|
+
type context$1__publicTruncateDataItemsType = _publicTruncateDataItemsType;
|
|
3825
|
+
type context$1__publicUpdateDataItemType = _publicUpdateDataItemType;
|
|
3686
3826
|
declare const context$1_aggregateDataItems: typeof aggregateDataItems;
|
|
3687
3827
|
declare const context$1_bulkInsertDataItemReferences: typeof bulkInsertDataItemReferences;
|
|
3688
3828
|
declare const context$1_bulkInsertDataItems: typeof bulkInsertDataItems;
|
|
@@ -3708,7 +3848,7 @@ declare const context$1_saveDataItem: typeof saveDataItem;
|
|
|
3708
3848
|
declare const context$1_truncateDataItems: typeof truncateDataItems;
|
|
3709
3849
|
declare const context$1_updateDataItem: typeof updateDataItem;
|
|
3710
3850
|
declare namespace context$1 {
|
|
3711
|
-
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, 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, 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 };
|
|
3851
|
+
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 };
|
|
3712
3852
|
}
|
|
3713
3853
|
|
|
3714
3854
|
/** An index is a map of a collection's data, organized according to specific fields to increase query speed. */
|
|
@@ -3883,11 +4023,18 @@ interface ListIndexesOptions {
|
|
|
3883
4023
|
paging?: Paging;
|
|
3884
4024
|
}
|
|
3885
4025
|
|
|
4026
|
+
declare function createIndex$1(httpClient: HttpClient): (dataCollectionId: string, index: Index) => Promise<Index & IndexNonNullableFields>;
|
|
4027
|
+
declare function dropIndex$1(httpClient: HttpClient): (dataCollectionId: string, indexName: string) => Promise<void>;
|
|
4028
|
+
declare function listIndexes$1(httpClient: HttpClient): (dataCollectionId: string, options?: ListIndexesOptions) => Promise<ListIndexesResponse & ListIndexesResponseNonNullableFields>;
|
|
4029
|
+
|
|
3886
4030
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3887
4031
|
|
|
3888
|
-
|
|
3889
|
-
declare const
|
|
3890
|
-
|
|
4032
|
+
type _publicCreateIndexType = typeof createIndex$1;
|
|
4033
|
+
declare const createIndex: ReturnType<typeof createRESTModule<_publicCreateIndexType>>;
|
|
4034
|
+
type _publicDropIndexType = typeof dropIndex$1;
|
|
4035
|
+
declare const dropIndex: ReturnType<typeof createRESTModule<_publicDropIndexType>>;
|
|
4036
|
+
type _publicListIndexesType = typeof listIndexes$1;
|
|
4037
|
+
declare const listIndexes: ReturnType<typeof createRESTModule<_publicListIndexesType>>;
|
|
3891
4038
|
|
|
3892
4039
|
type context_CreateIndexRequest = CreateIndexRequest;
|
|
3893
4040
|
type context_CreateIndexResponse = CreateIndexResponse;
|
|
@@ -3910,11 +4057,14 @@ type context_Paging = Paging;
|
|
|
3910
4057
|
type context_PagingMetadata = PagingMetadata;
|
|
3911
4058
|
type context_Status = Status;
|
|
3912
4059
|
declare const context_Status: typeof Status;
|
|
4060
|
+
type context__publicCreateIndexType = _publicCreateIndexType;
|
|
4061
|
+
type context__publicDropIndexType = _publicDropIndexType;
|
|
4062
|
+
type context__publicListIndexesType = _publicListIndexesType;
|
|
3913
4063
|
declare const context_createIndex: typeof createIndex;
|
|
3914
4064
|
declare const context_dropIndex: typeof dropIndex;
|
|
3915
4065
|
declare const context_listIndexes: typeof listIndexes;
|
|
3916
4066
|
declare namespace context {
|
|
3917
|
-
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 };
|
|
4067
|
+
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, type context__publicCreateIndexType as _publicCreateIndexType, type context__publicDropIndexType as _publicDropIndexType, type context__publicListIndexesType as _publicListIndexesType, context_createIndex as createIndex, context_dropIndex as dropIndex, context_listIndexes as listIndexes };
|
|
3918
4068
|
}
|
|
3919
4069
|
|
|
3920
4070
|
export { context$2 as collections, context$3 as externalDatabaseConnections, context as indexes, context$1 as items };
|
|
@@ -459,18 +459,38 @@ declare global {
|
|
|
459
459
|
}
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
+
declare function getExternalDatabaseConnection$1(httpClient: HttpClient): (name: string) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
463
|
+
declare function listExternalDatabaseConnections$1(httpClient: HttpClient): (options?: ListExternalDatabaseConnectionsOptions) => Promise<ListExternalDatabaseConnectionsResponse & ListExternalDatabaseConnectionsResponseNonNullableFields>;
|
|
464
|
+
declare function createExternalDatabaseConnection$1(httpClient: HttpClient): (externalDatabaseConnection: ExternalDatabaseConnection, options: CreateExternalDatabaseConnectionOptions) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
465
|
+
declare function updateExternalDatabaseConnection$1(httpClient: HttpClient): (name: string, externalDatabaseConnection: UpdateExternalDatabaseConnection) => Promise<ExternalDatabaseConnection & ExternalDatabaseConnectionNonNullableFields>;
|
|
466
|
+
declare function deleteExternalDatabaseConnection$1(httpClient: HttpClient): (name: string) => Promise<void>;
|
|
467
|
+
declare const onExternalDatabaseConnectionCreated$1: EventDefinition<ExternalDatabaseConnectionCreatedEnvelope, "wix.data.v1.external_database_connection_created">;
|
|
468
|
+
declare const onExternalDatabaseConnectionUpdated$1: EventDefinition<ExternalDatabaseConnectionUpdatedEnvelope, "wix.data.v1.external_database_connection_updated">;
|
|
469
|
+
declare const onExternalDatabaseConnectionDeleted$1: EventDefinition<ExternalDatabaseConnectionDeletedEnvelope, "wix.data.v1.external_database_connection_deleted">;
|
|
470
|
+
|
|
462
471
|
declare function createRESTModule$3<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
463
472
|
|
|
464
473
|
declare function createEventModule$2<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
465
474
|
|
|
466
|
-
|
|
467
|
-
declare const
|
|
468
|
-
|
|
469
|
-
declare const
|
|
470
|
-
|
|
471
|
-
declare const
|
|
472
|
-
|
|
473
|
-
declare const
|
|
475
|
+
type _publicGetExternalDatabaseConnectionType = typeof getExternalDatabaseConnection$1;
|
|
476
|
+
declare const getExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicGetExternalDatabaseConnectionType>>;
|
|
477
|
+
type _publicListExternalDatabaseConnectionsType = typeof listExternalDatabaseConnections$1;
|
|
478
|
+
declare const listExternalDatabaseConnections: ReturnType<typeof createRESTModule$3<_publicListExternalDatabaseConnectionsType>>;
|
|
479
|
+
type _publicCreateExternalDatabaseConnectionType = typeof createExternalDatabaseConnection$1;
|
|
480
|
+
declare const createExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicCreateExternalDatabaseConnectionType>>;
|
|
481
|
+
type _publicUpdateExternalDatabaseConnectionType = typeof updateExternalDatabaseConnection$1;
|
|
482
|
+
declare const updateExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicUpdateExternalDatabaseConnectionType>>;
|
|
483
|
+
type _publicDeleteExternalDatabaseConnectionType = typeof deleteExternalDatabaseConnection$1;
|
|
484
|
+
declare const deleteExternalDatabaseConnection: ReturnType<typeof createRESTModule$3<_publicDeleteExternalDatabaseConnectionType>>;
|
|
485
|
+
|
|
486
|
+
type _publicOnExternalDatabaseConnectionCreatedType = typeof onExternalDatabaseConnectionCreated$1;
|
|
487
|
+
declare const onExternalDatabaseConnectionCreated: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionCreatedType>>;
|
|
488
|
+
|
|
489
|
+
type _publicOnExternalDatabaseConnectionUpdatedType = typeof onExternalDatabaseConnectionUpdated$1;
|
|
490
|
+
declare const onExternalDatabaseConnectionUpdated: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionUpdatedType>>;
|
|
491
|
+
|
|
492
|
+
type _publicOnExternalDatabaseConnectionDeletedType = typeof onExternalDatabaseConnectionDeleted$1;
|
|
493
|
+
declare const onExternalDatabaseConnectionDeleted: ReturnType<typeof createEventModule$2<_publicOnExternalDatabaseConnectionDeletedType>>;
|
|
474
494
|
|
|
475
495
|
type index_d$3_Capabilities = Capabilities;
|
|
476
496
|
type index_d$3_CauseOfFailure = CauseOfFailure;
|
|
@@ -506,6 +526,14 @@ type index_d$3_UpdateExternalDatabaseConnection = UpdateExternalDatabaseConnecti
|
|
|
506
526
|
type index_d$3_UpdateExternalDatabaseConnectionRequest = UpdateExternalDatabaseConnectionRequest;
|
|
507
527
|
type index_d$3_UpdateExternalDatabaseConnectionResponse = UpdateExternalDatabaseConnectionResponse;
|
|
508
528
|
type index_d$3_UpdateExternalDatabaseConnectionResponseNonNullableFields = UpdateExternalDatabaseConnectionResponseNonNullableFields;
|
|
529
|
+
type index_d$3__publicCreateExternalDatabaseConnectionType = _publicCreateExternalDatabaseConnectionType;
|
|
530
|
+
type index_d$3__publicDeleteExternalDatabaseConnectionType = _publicDeleteExternalDatabaseConnectionType;
|
|
531
|
+
type index_d$3__publicGetExternalDatabaseConnectionType = _publicGetExternalDatabaseConnectionType;
|
|
532
|
+
type index_d$3__publicListExternalDatabaseConnectionsType = _publicListExternalDatabaseConnectionsType;
|
|
533
|
+
type index_d$3__publicOnExternalDatabaseConnectionCreatedType = _publicOnExternalDatabaseConnectionCreatedType;
|
|
534
|
+
type index_d$3__publicOnExternalDatabaseConnectionDeletedType = _publicOnExternalDatabaseConnectionDeletedType;
|
|
535
|
+
type index_d$3__publicOnExternalDatabaseConnectionUpdatedType = _publicOnExternalDatabaseConnectionUpdatedType;
|
|
536
|
+
type index_d$3__publicUpdateExternalDatabaseConnectionType = _publicUpdateExternalDatabaseConnectionType;
|
|
509
537
|
declare const index_d$3_createExternalDatabaseConnection: typeof createExternalDatabaseConnection;
|
|
510
538
|
declare const index_d$3_deleteExternalDatabaseConnection: typeof deleteExternalDatabaseConnection;
|
|
511
539
|
declare const index_d$3_getExternalDatabaseConnection: typeof getExternalDatabaseConnection;
|
|
@@ -515,7 +543,7 @@ declare const index_d$3_onExternalDatabaseConnectionDeleted: typeof onExternalDa
|
|
|
515
543
|
declare const index_d$3_onExternalDatabaseConnectionUpdated: typeof onExternalDatabaseConnectionUpdated;
|
|
516
544
|
declare const index_d$3_updateExternalDatabaseConnection: typeof updateExternalDatabaseConnection;
|
|
517
545
|
declare namespace index_d$3 {
|
|
518
|
-
export { type ActionEvent$2 as ActionEvent, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_Capabilities as Capabilities, index_d$3_CauseOfFailure as CauseOfFailure, index_d$3_CollectionsFound as CollectionsFound, type index_d$3_ConnectionStatus as ConnectionStatus, index_d$3_ConnectionType as ConnectionType, type index_d$3_CreateExternalDatabaseConnectionOptions as CreateExternalDatabaseConnectionOptions, type index_d$3_CreateExternalDatabaseConnectionRequest as CreateExternalDatabaseConnectionRequest, type index_d$3_CreateExternalDatabaseConnectionResponse as CreateExternalDatabaseConnectionResponse, type index_d$3_CreateExternalDatabaseConnectionResponseNonNullableFields as CreateExternalDatabaseConnectionResponseNonNullableFields, type index_d$3_DeleteExternalDatabaseConnectionRequest as DeleteExternalDatabaseConnectionRequest, type index_d$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 index_d$3_ExternalDatabaseConnection as ExternalDatabaseConnection, type index_d$3_ExternalDatabaseConnectionCreatedEnvelope as ExternalDatabaseConnectionCreatedEnvelope, type index_d$3_ExternalDatabaseConnectionDeletedEnvelope as ExternalDatabaseConnectionDeletedEnvelope, type index_d$3_ExternalDatabaseConnectionNonNullableFields as ExternalDatabaseConnectionNonNullableFields, type index_d$3_ExternalDatabaseConnectionUpdatedEnvelope as ExternalDatabaseConnectionUpdatedEnvelope, index_d$3_FieldType as FieldType, type index_d$3_GetExternalDatabaseConnectionRequest as GetExternalDatabaseConnectionRequest, type index_d$3_GetExternalDatabaseConnectionResponse as GetExternalDatabaseConnectionResponse, type index_d$3_GetExternalDatabaseConnectionResponseNonNullableFields as GetExternalDatabaseConnectionResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$3_ListExternalDatabaseConnectionsOptions as ListExternalDatabaseConnectionsOptions, type index_d$3_ListExternalDatabaseConnectionsRequest as ListExternalDatabaseConnectionsRequest, type index_d$3_ListExternalDatabaseConnectionsResponse as ListExternalDatabaseConnectionsResponse, type index_d$3_ListExternalDatabaseConnectionsResponseNonNullableFields as ListExternalDatabaseConnectionsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type Paging$3 as Paging, type PagingMetadata$1 as PagingMetadata, index_d$3_ProtocolVersion as ProtocolVersion, type RestoreInfo$2 as RestoreInfo, type index_d$3_UpdateExternalDatabaseConnection as UpdateExternalDatabaseConnection, type index_d$3_UpdateExternalDatabaseConnectionRequest as UpdateExternalDatabaseConnectionRequest, type index_d$3_UpdateExternalDatabaseConnectionResponse as UpdateExternalDatabaseConnectionResponse, type index_d$3_UpdateExternalDatabaseConnectionResponseNonNullableFields as UpdateExternalDatabaseConnectionResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, index_d$3_createExternalDatabaseConnection as createExternalDatabaseConnection, index_d$3_deleteExternalDatabaseConnection as deleteExternalDatabaseConnection, index_d$3_getExternalDatabaseConnection as getExternalDatabaseConnection, index_d$3_listExternalDatabaseConnections as listExternalDatabaseConnections, index_d$3_onExternalDatabaseConnectionCreated as onExternalDatabaseConnectionCreated, index_d$3_onExternalDatabaseConnectionDeleted as onExternalDatabaseConnectionDeleted, index_d$3_onExternalDatabaseConnectionUpdated as onExternalDatabaseConnectionUpdated, index_d$3_updateExternalDatabaseConnection as updateExternalDatabaseConnection };
|
|
546
|
+
export { type ActionEvent$2 as ActionEvent, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_Capabilities as Capabilities, index_d$3_CauseOfFailure as CauseOfFailure, index_d$3_CollectionsFound as CollectionsFound, type index_d$3_ConnectionStatus as ConnectionStatus, index_d$3_ConnectionType as ConnectionType, type index_d$3_CreateExternalDatabaseConnectionOptions as CreateExternalDatabaseConnectionOptions, type index_d$3_CreateExternalDatabaseConnectionRequest as CreateExternalDatabaseConnectionRequest, type index_d$3_CreateExternalDatabaseConnectionResponse as CreateExternalDatabaseConnectionResponse, type index_d$3_CreateExternalDatabaseConnectionResponseNonNullableFields as CreateExternalDatabaseConnectionResponseNonNullableFields, type index_d$3_DeleteExternalDatabaseConnectionRequest as DeleteExternalDatabaseConnectionRequest, type index_d$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 index_d$3_ExternalDatabaseConnection as ExternalDatabaseConnection, type index_d$3_ExternalDatabaseConnectionCreatedEnvelope as ExternalDatabaseConnectionCreatedEnvelope, type index_d$3_ExternalDatabaseConnectionDeletedEnvelope as ExternalDatabaseConnectionDeletedEnvelope, type index_d$3_ExternalDatabaseConnectionNonNullableFields as ExternalDatabaseConnectionNonNullableFields, type index_d$3_ExternalDatabaseConnectionUpdatedEnvelope as ExternalDatabaseConnectionUpdatedEnvelope, index_d$3_FieldType as FieldType, type index_d$3_GetExternalDatabaseConnectionRequest as GetExternalDatabaseConnectionRequest, type index_d$3_GetExternalDatabaseConnectionResponse as GetExternalDatabaseConnectionResponse, type index_d$3_GetExternalDatabaseConnectionResponseNonNullableFields as GetExternalDatabaseConnectionResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type index_d$3_ListExternalDatabaseConnectionsOptions as ListExternalDatabaseConnectionsOptions, type index_d$3_ListExternalDatabaseConnectionsRequest as ListExternalDatabaseConnectionsRequest, type index_d$3_ListExternalDatabaseConnectionsResponse as ListExternalDatabaseConnectionsResponse, type index_d$3_ListExternalDatabaseConnectionsResponseNonNullableFields as ListExternalDatabaseConnectionsResponseNonNullableFields, type MessageEnvelope$2 as MessageEnvelope, type Paging$3 as Paging, type PagingMetadata$1 as PagingMetadata, index_d$3_ProtocolVersion as ProtocolVersion, type RestoreInfo$2 as RestoreInfo, type index_d$3_UpdateExternalDatabaseConnection as UpdateExternalDatabaseConnection, type index_d$3_UpdateExternalDatabaseConnectionRequest as UpdateExternalDatabaseConnectionRequest, type index_d$3_UpdateExternalDatabaseConnectionResponse as UpdateExternalDatabaseConnectionResponse, type index_d$3_UpdateExternalDatabaseConnectionResponseNonNullableFields as UpdateExternalDatabaseConnectionResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type index_d$3__publicCreateExternalDatabaseConnectionType as _publicCreateExternalDatabaseConnectionType, type index_d$3__publicDeleteExternalDatabaseConnectionType as _publicDeleteExternalDatabaseConnectionType, type index_d$3__publicGetExternalDatabaseConnectionType as _publicGetExternalDatabaseConnectionType, type index_d$3__publicListExternalDatabaseConnectionsType as _publicListExternalDatabaseConnectionsType, type index_d$3__publicOnExternalDatabaseConnectionCreatedType as _publicOnExternalDatabaseConnectionCreatedType, type index_d$3__publicOnExternalDatabaseConnectionDeletedType as _publicOnExternalDatabaseConnectionDeletedType, type index_d$3__publicOnExternalDatabaseConnectionUpdatedType as _publicOnExternalDatabaseConnectionUpdatedType, type index_d$3__publicUpdateExternalDatabaseConnectionType as _publicUpdateExternalDatabaseConnectionType, index_d$3_createExternalDatabaseConnection as createExternalDatabaseConnection, index_d$3_deleteExternalDatabaseConnection as deleteExternalDatabaseConnection, index_d$3_getExternalDatabaseConnection as getExternalDatabaseConnection, index_d$3_listExternalDatabaseConnections as listExternalDatabaseConnections, index_d$3_onExternalDatabaseConnectionCreated as onExternalDatabaseConnectionCreated, index_d$3_onExternalDatabaseConnectionDeleted as onExternalDatabaseConnectionDeleted, index_d$3_onExternalDatabaseConnectionUpdated as onExternalDatabaseConnectionUpdated, onExternalDatabaseConnectionCreated$1 as publicOnExternalDatabaseConnectionCreated, onExternalDatabaseConnectionDeleted$1 as publicOnExternalDatabaseConnectionDeleted, onExternalDatabaseConnectionUpdated$1 as publicOnExternalDatabaseConnectionUpdated, index_d$3_updateExternalDatabaseConnection as updateExternalDatabaseConnection };
|
|
519
547
|
}
|
|
520
548
|
|
|
521
549
|
/** A data collection determines the structure of data to be stored in a database. */
|
|
@@ -1819,20 +1847,46 @@ interface ListDataCollectionsOptions {
|
|
|
1819
1847
|
consistentRead?: boolean;
|
|
1820
1848
|
}
|
|
1821
1849
|
|
|
1850
|
+
declare function createDataCollection$1(httpClient: HttpClient): (collection: DataCollection) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1851
|
+
declare function getDataCollection$1(httpClient: HttpClient): (dataCollectionId: string, options?: GetDataCollectionOptions) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1852
|
+
declare function listDataCollections$1(httpClient: HttpClient): (options?: ListDataCollectionsOptions) => Promise<ListDataCollectionsResponse & ListDataCollectionsResponseNonNullableFields>;
|
|
1853
|
+
declare function updateDataCollection$1(httpClient: HttpClient): (collection: DataCollection) => Promise<DataCollection & DataCollectionNonNullableFields>;
|
|
1854
|
+
declare function deleteDataCollection$1(httpClient: HttpClient): (dataCollectionId: string) => Promise<void>;
|
|
1855
|
+
declare const onDataCollectionClonedEvent$1: EventDefinition<DataCollectionClonedEnvelope, "wix.data.v2.data_collection_data_collection_cloned_event">;
|
|
1856
|
+
declare const onDataCollectionChangedEvent$1: EventDefinition<DataCollectionChangedEnvelope, "wix.data.v2.data_collection_data_collection_changed_event">;
|
|
1857
|
+
declare const onDataCollectionCreated$1: EventDefinition<DataCollectionCreatedEnvelope, "wix.data.v2.data_collection_created">;
|
|
1858
|
+
declare const onDataCollectionUpdated$1: EventDefinition<DataCollectionUpdatedEnvelope, "wix.data.v2.data_collection_updated">;
|
|
1859
|
+
declare const onDataCollectionDeleted$1: EventDefinition<DataCollectionDeletedEnvelope, "wix.data.v2.data_collection_deleted">;
|
|
1860
|
+
|
|
1822
1861
|
declare function createRESTModule$2<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
1823
1862
|
|
|
1824
1863
|
declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
1825
1864
|
|
|
1826
|
-
|
|
1827
|
-
declare const
|
|
1828
|
-
|
|
1829
|
-
declare const
|
|
1830
|
-
|
|
1831
|
-
declare const
|
|
1832
|
-
|
|
1833
|
-
declare const
|
|
1834
|
-
|
|
1835
|
-
declare const
|
|
1865
|
+
type _publicCreateDataCollectionType = typeof createDataCollection$1;
|
|
1866
|
+
declare const createDataCollection: ReturnType<typeof createRESTModule$2<_publicCreateDataCollectionType>>;
|
|
1867
|
+
type _publicGetDataCollectionType = typeof getDataCollection$1;
|
|
1868
|
+
declare const getDataCollection: ReturnType<typeof createRESTModule$2<_publicGetDataCollectionType>>;
|
|
1869
|
+
type _publicListDataCollectionsType = typeof listDataCollections$1;
|
|
1870
|
+
declare const listDataCollections: ReturnType<typeof createRESTModule$2<_publicListDataCollectionsType>>;
|
|
1871
|
+
type _publicUpdateDataCollectionType = typeof updateDataCollection$1;
|
|
1872
|
+
declare const updateDataCollection: ReturnType<typeof createRESTModule$2<_publicUpdateDataCollectionType>>;
|
|
1873
|
+
type _publicDeleteDataCollectionType = typeof deleteDataCollection$1;
|
|
1874
|
+
declare const deleteDataCollection: ReturnType<typeof createRESTModule$2<_publicDeleteDataCollectionType>>;
|
|
1875
|
+
|
|
1876
|
+
type _publicOnDataCollectionClonedEventType = typeof onDataCollectionClonedEvent$1;
|
|
1877
|
+
declare const onDataCollectionClonedEvent: ReturnType<typeof createEventModule$1<_publicOnDataCollectionClonedEventType>>;
|
|
1878
|
+
|
|
1879
|
+
type _publicOnDataCollectionChangedEventType = typeof onDataCollectionChangedEvent$1;
|
|
1880
|
+
declare const onDataCollectionChangedEvent: ReturnType<typeof createEventModule$1<_publicOnDataCollectionChangedEventType>>;
|
|
1881
|
+
|
|
1882
|
+
type _publicOnDataCollectionCreatedType = typeof onDataCollectionCreated$1;
|
|
1883
|
+
declare const onDataCollectionCreated: ReturnType<typeof createEventModule$1<_publicOnDataCollectionCreatedType>>;
|
|
1884
|
+
|
|
1885
|
+
type _publicOnDataCollectionUpdatedType = typeof onDataCollectionUpdated$1;
|
|
1886
|
+
declare const onDataCollectionUpdated: ReturnType<typeof createEventModule$1<_publicOnDataCollectionUpdatedType>>;
|
|
1887
|
+
|
|
1888
|
+
type _publicOnDataCollectionDeletedType = typeof onDataCollectionDeleted$1;
|
|
1889
|
+
declare const onDataCollectionDeleted: ReturnType<typeof createEventModule$1<_publicOnDataCollectionDeletedType>>;
|
|
1836
1890
|
|
|
1837
1891
|
type index_d$2_AccessLevel = AccessLevel;
|
|
1838
1892
|
declare const index_d$2_AccessLevel: typeof AccessLevel;
|
|
@@ -1942,6 +1996,16 @@ type index_d$2_UrlizedOnlyPattern = UrlizedOnlyPattern;
|
|
|
1942
1996
|
type index_d$2_UrlizedPluginOptions = UrlizedPluginOptions;
|
|
1943
1997
|
type index_d$2__Array = _Array;
|
|
1944
1998
|
type index_d$2__Object = _Object;
|
|
1999
|
+
type index_d$2__publicCreateDataCollectionType = _publicCreateDataCollectionType;
|
|
2000
|
+
type index_d$2__publicDeleteDataCollectionType = _publicDeleteDataCollectionType;
|
|
2001
|
+
type index_d$2__publicGetDataCollectionType = _publicGetDataCollectionType;
|
|
2002
|
+
type index_d$2__publicListDataCollectionsType = _publicListDataCollectionsType;
|
|
2003
|
+
type index_d$2__publicOnDataCollectionChangedEventType = _publicOnDataCollectionChangedEventType;
|
|
2004
|
+
type index_d$2__publicOnDataCollectionClonedEventType = _publicOnDataCollectionClonedEventType;
|
|
2005
|
+
type index_d$2__publicOnDataCollectionCreatedType = _publicOnDataCollectionCreatedType;
|
|
2006
|
+
type index_d$2__publicOnDataCollectionDeletedType = _publicOnDataCollectionDeletedType;
|
|
2007
|
+
type index_d$2__publicOnDataCollectionUpdatedType = _publicOnDataCollectionUpdatedType;
|
|
2008
|
+
type index_d$2__publicUpdateDataCollectionType = _publicUpdateDataCollectionType;
|
|
1945
2009
|
declare const index_d$2_createDataCollection: typeof createDataCollection;
|
|
1946
2010
|
declare const index_d$2_deleteDataCollection: typeof deleteDataCollection;
|
|
1947
2011
|
declare const index_d$2_getDataCollection: typeof getDataCollection;
|
|
@@ -1953,7 +2017,7 @@ declare const index_d$2_onDataCollectionDeleted: typeof onDataCollectionDeleted;
|
|
|
1953
2017
|
declare const index_d$2_onDataCollectionUpdated: typeof onDataCollectionUpdated;
|
|
1954
2018
|
declare const index_d$2_updateDataCollection: typeof updateDataCollection;
|
|
1955
2019
|
declare namespace index_d$2 {
|
|
1956
|
-
export { index_d$2_AccessLevel as AccessLevel, type ActionEvent$1 as ActionEvent, type index_d$2_AllowedDataPermissions as AllowedDataPermissions, type index_d$2_ArraySizeRange as ArraySizeRange, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BulkGetDataCollectionsPageBySnapshotsRequest as BulkGetDataCollectionsPageBySnapshotsRequest, type index_d$2_BulkGetDataCollectionsPageBySnapshotsResponse as BulkGetDataCollectionsPageBySnapshotsResponse, type index_d$2_BulkGetDataCollectionsRequest as BulkGetDataCollectionsRequest, type index_d$2_BulkGetDataCollectionsResponse as BulkGetDataCollectionsResponse, type index_d$2_Calculator as Calculator, type index_d$2_CalculatorPatternOneOf as CalculatorPatternOneOf, type index_d$2_CmsOptions as CmsOptions, type index_d$2_CollectionCapabilities as CollectionCapabilities, index_d$2_CollectionOperation as CollectionOperation, index_d$2_CollectionType as CollectionType, type index_d$2_CreateDataCollectionFieldRequest as CreateDataCollectionFieldRequest, type index_d$2_CreateDataCollectionFieldResponse as CreateDataCollectionFieldResponse, type index_d$2_CreateDataCollectionRequest as CreateDataCollectionRequest, type index_d$2_CreateDataCollectionResponse as CreateDataCollectionResponse, type index_d$2_CreateDataCollectionResponseNonNullableFields as CreateDataCollectionResponseNonNullableFields, type index_d$2_CreateDataCollectionsSnapshotRequest as CreateDataCollectionsSnapshotRequest, type index_d$2_CreateDataCollectionsSnapshotResponse as CreateDataCollectionsSnapshotResponse, type index_d$2_CreateMigratedCollectionsSnapshotRequest as CreateMigratedCollectionsSnapshotRequest, type index_d$2_CreateMigratedCollectionsSnapshotResponse as CreateMigratedCollectionsSnapshotResponse, type index_d$2_DataCollection as DataCollection, type index_d$2_DataCollectionChangedEnvelope as DataCollectionChangedEnvelope, type index_d$2_DataCollectionChangedEvent as DataCollectionChangedEvent, type index_d$2_DataCollectionClonedEnvelope as DataCollectionClonedEnvelope, type index_d$2_DataCollectionClonedEvent as DataCollectionClonedEvent, type index_d$2_DataCollectionCreatedEnvelope as DataCollectionCreatedEnvelope, type index_d$2_DataCollectionDeletedEnvelope as DataCollectionDeletedEnvelope, type index_d$2_DataCollectionNonNullableFields as DataCollectionNonNullableFields, type index_d$2_DataCollectionUpdatedEnvelope as DataCollectionUpdatedEnvelope, index_d$2_DataOperation as DataOperation, type index_d$2_DataPermissions as DataPermissions, type index_d$2_DeleteDataCollectionFieldRequest as DeleteDataCollectionFieldRequest, type index_d$2_DeleteDataCollectionFieldResponse as DeleteDataCollectionFieldResponse, type index_d$2_DeleteDataCollectionRequest as DeleteDataCollectionRequest, type index_d$2_DeleteDataCollectionResponse as DeleteDataCollectionResponse, type index_d$2_DeleteDataCollectionsSnapshotRequest as DeleteDataCollectionsSnapshotRequest, type index_d$2_DeleteDataCollectionsSnapshotResponse as DeleteDataCollectionsSnapshotResponse, index_d$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 index_d$2_FieldCapabilities as FieldCapabilities, type index_d$2_FieldPlugin as FieldPlugin, type index_d$2_FieldPluginOptionsOneOf as FieldPluginOptionsOneOf, index_d$2_FieldPluginType as FieldPluginType, type index_d$2_FieldRangeValidationsOneOf as FieldRangeValidationsOneOf, type FieldUpdate$1 as FieldUpdate, type index_d$2_FieldsPattern as FieldsPattern, index_d$2_Format as Format, type index_d$2_GetDataCollectionOptions as GetDataCollectionOptions, type index_d$2_GetDataCollectionRequest as GetDataCollectionRequest, type index_d$2_GetDataCollectionResponse as GetDataCollectionResponse, type index_d$2_GetDataCollectionResponseNonNullableFields as GetDataCollectionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Index$1 as Index, type index_d$2_IndexField as IndexField, type index_d$2_IndexLimits as IndexLimits, index_d$2_IndexStatus as IndexStatus, type index_d$2_ListDataCollectionsOptions as ListDataCollectionsOptions, type index_d$2_ListDataCollectionsRequest as ListDataCollectionsRequest, type index_d$2_ListDataCollectionsResponse as ListDataCollectionsResponse, type index_d$2_ListDataCollectionsResponseNonNullableFields as ListDataCollectionsResponseNonNullableFields, type MessageEnvelope$1 as MessageEnvelope, type index_d$2_MultiReference as MultiReference, type index_d$2_MultilingualOptions as MultilingualOptions, type index_d$2_NumberRange as NumberRange, type index_d$2_ObjectField as ObjectField, Order$1 as Order, type index_d$2_PageLink as PageLink, type index_d$2_PageLinkPluginOptions as PageLinkPluginOptions, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, index_d$2_PagingMode as PagingMode, type index_d$2_Permissions as Permissions, type index_d$2_Plugin as Plugin, type index_d$2_PluginCmsOptions as PluginCmsOptions, type index_d$2_PluginOptionsOneOf as PluginOptionsOneOf, index_d$2_PluginType as PluginType, type index_d$2_PluginUpdate as PluginUpdate, type PublishPluginOptions$1 as PublishPluginOptions, index_d$2_QueryOperator as QueryOperator, type index_d$2_Reference as Reference, type index_d$2_RestoreDataCollectionsFromSnapshotRequest as RestoreDataCollectionsFromSnapshotRequest, type index_d$2_RestoreDataCollectionsFromSnapshotResponse as RestoreDataCollectionsFromSnapshotResponse, type RestoreInfo$1 as RestoreInfo, index_d$2_Role as Role, type index_d$2_SingleItemPluginOptions as SingleItemPluginOptions, type index_d$2_SiteSort as SiteSort, type index_d$2_SnapshotCollection as SnapshotCollection, type index_d$2_Sort as Sort, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Status$1 as Status, type index_d$2_StringLengthRange as StringLengthRange, index_d$2_Type as Type, type index_d$2_TypeMetadata as TypeMetadata, type index_d$2_TypeMetadataMetadataOneOf as TypeMetadataMetadataOneOf, type index_d$2_UpdateDataCollectionFieldRequest as UpdateDataCollectionFieldRequest, type index_d$2_UpdateDataCollectionFieldResponse as UpdateDataCollectionFieldResponse, type index_d$2_UpdateDataCollectionRequest as UpdateDataCollectionRequest, type index_d$2_UpdateDataCollectionResponse as UpdateDataCollectionResponse, type index_d$2_UpdateDataCollectionResponseNonNullableFields as UpdateDataCollectionResponseNonNullableFields, type index_d$2_UpdateDataPermissionsRequest as UpdateDataPermissionsRequest, type index_d$2_UpdateDataPermissionsResponse as UpdateDataPermissionsResponse, type index_d$2_UrlizedOnlyPattern as UrlizedOnlyPattern, type index_d$2_UrlizedPluginOptions as UrlizedPluginOptions, WebhookIdentityType$1 as WebhookIdentityType, type index_d$2__Array as _Array, type index_d$2__Object as _Object, index_d$2_createDataCollection as createDataCollection, index_d$2_deleteDataCollection as deleteDataCollection, index_d$2_getDataCollection as getDataCollection, index_d$2_listDataCollections as listDataCollections, index_d$2_onDataCollectionChangedEvent as onDataCollectionChangedEvent, index_d$2_onDataCollectionClonedEvent as onDataCollectionClonedEvent, index_d$2_onDataCollectionCreated as onDataCollectionCreated, index_d$2_onDataCollectionDeleted as onDataCollectionDeleted, index_d$2_onDataCollectionUpdated as onDataCollectionUpdated, index_d$2_updateDataCollection as updateDataCollection };
|
|
2020
|
+
export { index_d$2_AccessLevel as AccessLevel, type ActionEvent$1 as ActionEvent, type index_d$2_AllowedDataPermissions as AllowedDataPermissions, type index_d$2_ArraySizeRange as ArraySizeRange, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BulkGetDataCollectionsPageBySnapshotsRequest as BulkGetDataCollectionsPageBySnapshotsRequest, type index_d$2_BulkGetDataCollectionsPageBySnapshotsResponse as BulkGetDataCollectionsPageBySnapshotsResponse, type index_d$2_BulkGetDataCollectionsRequest as BulkGetDataCollectionsRequest, type index_d$2_BulkGetDataCollectionsResponse as BulkGetDataCollectionsResponse, type index_d$2_Calculator as Calculator, type index_d$2_CalculatorPatternOneOf as CalculatorPatternOneOf, type index_d$2_CmsOptions as CmsOptions, type index_d$2_CollectionCapabilities as CollectionCapabilities, index_d$2_CollectionOperation as CollectionOperation, index_d$2_CollectionType as CollectionType, type index_d$2_CreateDataCollectionFieldRequest as CreateDataCollectionFieldRequest, type index_d$2_CreateDataCollectionFieldResponse as CreateDataCollectionFieldResponse, type index_d$2_CreateDataCollectionRequest as CreateDataCollectionRequest, type index_d$2_CreateDataCollectionResponse as CreateDataCollectionResponse, type index_d$2_CreateDataCollectionResponseNonNullableFields as CreateDataCollectionResponseNonNullableFields, type index_d$2_CreateDataCollectionsSnapshotRequest as CreateDataCollectionsSnapshotRequest, type index_d$2_CreateDataCollectionsSnapshotResponse as CreateDataCollectionsSnapshotResponse, type index_d$2_CreateMigratedCollectionsSnapshotRequest as CreateMigratedCollectionsSnapshotRequest, type index_d$2_CreateMigratedCollectionsSnapshotResponse as CreateMigratedCollectionsSnapshotResponse, type index_d$2_DataCollection as DataCollection, type index_d$2_DataCollectionChangedEnvelope as DataCollectionChangedEnvelope, type index_d$2_DataCollectionChangedEvent as DataCollectionChangedEvent, type index_d$2_DataCollectionClonedEnvelope as DataCollectionClonedEnvelope, type index_d$2_DataCollectionClonedEvent as DataCollectionClonedEvent, type index_d$2_DataCollectionCreatedEnvelope as DataCollectionCreatedEnvelope, type index_d$2_DataCollectionDeletedEnvelope as DataCollectionDeletedEnvelope, type index_d$2_DataCollectionNonNullableFields as DataCollectionNonNullableFields, type index_d$2_DataCollectionUpdatedEnvelope as DataCollectionUpdatedEnvelope, index_d$2_DataOperation as DataOperation, type index_d$2_DataPermissions as DataPermissions, type index_d$2_DeleteDataCollectionFieldRequest as DeleteDataCollectionFieldRequest, type index_d$2_DeleteDataCollectionFieldResponse as DeleteDataCollectionFieldResponse, type index_d$2_DeleteDataCollectionRequest as DeleteDataCollectionRequest, type index_d$2_DeleteDataCollectionResponse as DeleteDataCollectionResponse, type index_d$2_DeleteDataCollectionsSnapshotRequest as DeleteDataCollectionsSnapshotRequest, type index_d$2_DeleteDataCollectionsSnapshotResponse as DeleteDataCollectionsSnapshotResponse, index_d$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 index_d$2_FieldCapabilities as FieldCapabilities, type index_d$2_FieldPlugin as FieldPlugin, type index_d$2_FieldPluginOptionsOneOf as FieldPluginOptionsOneOf, index_d$2_FieldPluginType as FieldPluginType, type index_d$2_FieldRangeValidationsOneOf as FieldRangeValidationsOneOf, type FieldUpdate$1 as FieldUpdate, type index_d$2_FieldsPattern as FieldsPattern, index_d$2_Format as Format, type index_d$2_GetDataCollectionOptions as GetDataCollectionOptions, type index_d$2_GetDataCollectionRequest as GetDataCollectionRequest, type index_d$2_GetDataCollectionResponse as GetDataCollectionResponse, type index_d$2_GetDataCollectionResponseNonNullableFields as GetDataCollectionResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type Index$1 as Index, type index_d$2_IndexField as IndexField, type index_d$2_IndexLimits as IndexLimits, index_d$2_IndexStatus as IndexStatus, type index_d$2_ListDataCollectionsOptions as ListDataCollectionsOptions, type index_d$2_ListDataCollectionsRequest as ListDataCollectionsRequest, type index_d$2_ListDataCollectionsResponse as ListDataCollectionsResponse, type index_d$2_ListDataCollectionsResponseNonNullableFields as ListDataCollectionsResponseNonNullableFields, type MessageEnvelope$1 as MessageEnvelope, type index_d$2_MultiReference as MultiReference, type index_d$2_MultilingualOptions as MultilingualOptions, type index_d$2_NumberRange as NumberRange, type index_d$2_ObjectField as ObjectField, Order$1 as Order, type index_d$2_PageLink as PageLink, type index_d$2_PageLinkPluginOptions as PageLinkPluginOptions, type Paging$2 as Paging, type PagingMetadataV2$1 as PagingMetadataV2, index_d$2_PagingMode as PagingMode, type index_d$2_Permissions as Permissions, type index_d$2_Plugin as Plugin, type index_d$2_PluginCmsOptions as PluginCmsOptions, type index_d$2_PluginOptionsOneOf as PluginOptionsOneOf, index_d$2_PluginType as PluginType, type index_d$2_PluginUpdate as PluginUpdate, type PublishPluginOptions$1 as PublishPluginOptions, index_d$2_QueryOperator as QueryOperator, type index_d$2_Reference as Reference, type index_d$2_RestoreDataCollectionsFromSnapshotRequest as RestoreDataCollectionsFromSnapshotRequest, type index_d$2_RestoreDataCollectionsFromSnapshotResponse as RestoreDataCollectionsFromSnapshotResponse, type RestoreInfo$1 as RestoreInfo, index_d$2_Role as Role, type index_d$2_SingleItemPluginOptions as SingleItemPluginOptions, type index_d$2_SiteSort as SiteSort, type index_d$2_SnapshotCollection as SnapshotCollection, type index_d$2_Sort as Sort, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, Status$1 as Status, type index_d$2_StringLengthRange as StringLengthRange, index_d$2_Type as Type, type index_d$2_TypeMetadata as TypeMetadata, type index_d$2_TypeMetadataMetadataOneOf as TypeMetadataMetadataOneOf, type index_d$2_UpdateDataCollectionFieldRequest as UpdateDataCollectionFieldRequest, type index_d$2_UpdateDataCollectionFieldResponse as UpdateDataCollectionFieldResponse, type index_d$2_UpdateDataCollectionRequest as UpdateDataCollectionRequest, type index_d$2_UpdateDataCollectionResponse as UpdateDataCollectionResponse, type index_d$2_UpdateDataCollectionResponseNonNullableFields as UpdateDataCollectionResponseNonNullableFields, type index_d$2_UpdateDataPermissionsRequest as UpdateDataPermissionsRequest, type index_d$2_UpdateDataPermissionsResponse as UpdateDataPermissionsResponse, type index_d$2_UrlizedOnlyPattern as UrlizedOnlyPattern, type index_d$2_UrlizedPluginOptions as UrlizedPluginOptions, WebhookIdentityType$1 as WebhookIdentityType, type index_d$2__Array as _Array, type index_d$2__Object as _Object, type index_d$2__publicCreateDataCollectionType as _publicCreateDataCollectionType, type index_d$2__publicDeleteDataCollectionType as _publicDeleteDataCollectionType, type index_d$2__publicGetDataCollectionType as _publicGetDataCollectionType, type index_d$2__publicListDataCollectionsType as _publicListDataCollectionsType, type index_d$2__publicOnDataCollectionChangedEventType as _publicOnDataCollectionChangedEventType, type index_d$2__publicOnDataCollectionClonedEventType as _publicOnDataCollectionClonedEventType, type index_d$2__publicOnDataCollectionCreatedType as _publicOnDataCollectionCreatedType, type index_d$2__publicOnDataCollectionDeletedType as _publicOnDataCollectionDeletedType, type index_d$2__publicOnDataCollectionUpdatedType as _publicOnDataCollectionUpdatedType, type index_d$2__publicUpdateDataCollectionType as _publicUpdateDataCollectionType, index_d$2_createDataCollection as createDataCollection, index_d$2_deleteDataCollection as deleteDataCollection, index_d$2_getDataCollection as getDataCollection, index_d$2_listDataCollections as listDataCollections, index_d$2_onDataCollectionChangedEvent as onDataCollectionChangedEvent, index_d$2_onDataCollectionClonedEvent as onDataCollectionClonedEvent, index_d$2_onDataCollectionCreated as onDataCollectionCreated, index_d$2_onDataCollectionDeleted as onDataCollectionDeleted, index_d$2_onDataCollectionUpdated as onDataCollectionUpdated, onDataCollectionChangedEvent$1 as publicOnDataCollectionChangedEvent, onDataCollectionClonedEvent$1 as publicOnDataCollectionClonedEvent, onDataCollectionCreated$1 as publicOnDataCollectionCreated, onDataCollectionDeleted$1 as publicOnDataCollectionDeleted, onDataCollectionUpdated$1 as publicOnDataCollectionUpdated, index_d$2_updateDataCollection as updateDataCollection };
|
|
1957
2021
|
}
|
|
1958
2022
|
|
|
1959
2023
|
interface DataItem {
|
|
@@ -3502,34 +3566,86 @@ interface ReplaceDataItemReferencesOptions {
|
|
|
3502
3566
|
newReferencedItemIds?: string[];
|
|
3503
3567
|
}
|
|
3504
3568
|
|
|
3569
|
+
declare function insertDataItem$1(httpClient: HttpClient): (options: InsertDataItemOptions) => Promise<InsertDataItemResponse & InsertDataItemResponseNonNullableFields>;
|
|
3570
|
+
declare function updateDataItem$1(httpClient: HttpClient): (_id: string, options: UpdateDataItemOptions) => Promise<UpdateDataItemResponse & UpdateDataItemResponseNonNullableFields>;
|
|
3571
|
+
declare function saveDataItem$1(httpClient: HttpClient): (options: SaveDataItemOptions) => Promise<SaveDataItemResponse & SaveDataItemResponseNonNullableFields>;
|
|
3572
|
+
declare function getDataItem$1(httpClient: HttpClient): (dataItemId: string, options?: GetDataItemOptions) => Promise<DataItem & DataItemNonNullableFields>;
|
|
3573
|
+
declare function removeDataItem$1(httpClient: HttpClient): (dataItemId: string, options: RemoveDataItemOptions) => Promise<RemoveDataItemResponse & RemoveDataItemResponseNonNullableFields>;
|
|
3574
|
+
declare function truncateDataItems$1(httpClient: HttpClient): (options: TruncateDataItemsOptions) => Promise<void>;
|
|
3575
|
+
declare function queryDataItems$1(httpClient: HttpClient): (options: QueryDataItemsOptions) => DataItemsQueryBuilder;
|
|
3576
|
+
declare function aggregateDataItems$1(httpClient: HttpClient): (options?: AggregateDataItemsOptions) => Promise<AggregateDataItemsResponse>;
|
|
3577
|
+
declare function countDataItems$1(httpClient: HttpClient): (options?: CountDataItemsOptions) => Promise<CountDataItemsResponse & CountDataItemsResponseNonNullableFields>;
|
|
3578
|
+
declare function queryDistinctValues$1(httpClient: HttpClient): (options?: QueryDistinctValuesOptions) => Promise<QueryDistinctValuesResponse>;
|
|
3579
|
+
declare function bulkInsertDataItems$1(httpClient: HttpClient): (options?: BulkInsertDataItemsOptions) => Promise<BulkInsertDataItemsResponse & BulkInsertDataItemsResponseNonNullableFields>;
|
|
3580
|
+
declare function bulkUpdateDataItems$1(httpClient: HttpClient): (options?: BulkUpdateDataItemsOptions) => Promise<BulkUpdateDataItemsResponse & BulkUpdateDataItemsResponseNonNullableFields>;
|
|
3581
|
+
declare function bulkSaveDataItems$1(httpClient: HttpClient): (options?: BulkSaveDataItemsOptions) => Promise<BulkSaveDataItemsResponse & BulkSaveDataItemsResponseNonNullableFields>;
|
|
3582
|
+
declare function bulkRemoveDataItems$1(httpClient: HttpClient): (options: BulkRemoveDataItemsOptions) => Promise<BulkRemoveDataItemsResponse & BulkRemoveDataItemsResponseNonNullableFields>;
|
|
3583
|
+
declare function queryReferencedDataItems$1(httpClient: HttpClient): (options?: QueryReferencedDataItemsOptions) => Promise<QueryReferencedDataItemsResponse & QueryReferencedDataItemsResponseNonNullableFields>;
|
|
3584
|
+
declare function isReferencedDataItem$1(httpClient: HttpClient): (options?: IsReferencedDataItemOptions) => Promise<IsReferencedDataItemResponse & IsReferencedDataItemResponseNonNullableFields>;
|
|
3585
|
+
declare function insertDataItemReference$1(httpClient: HttpClient): (options?: InsertDataItemReferenceOptions) => Promise<InsertDataItemReferenceResponse & InsertDataItemReferenceResponseNonNullableFields>;
|
|
3586
|
+
declare function removeDataItemReference$1(httpClient: HttpClient): (options: RemoveDataItemReferenceOptions) => Promise<RemoveDataItemReferenceResponse & RemoveDataItemReferenceResponseNonNullableFields>;
|
|
3587
|
+
declare function bulkInsertDataItemReferences$1(httpClient: HttpClient): (options?: BulkInsertDataItemReferencesOptions) => Promise<BulkInsertDataItemReferencesResponse & BulkInsertDataItemReferencesResponseNonNullableFields>;
|
|
3588
|
+
declare function bulkRemoveDataItemReferences$1(httpClient: HttpClient): (options: BulkRemoveDataItemReferencesOptions) => Promise<BulkRemoveDataItemReferencesResponse & BulkRemoveDataItemReferencesResponseNonNullableFields>;
|
|
3589
|
+
declare function replaceDataItemReferences$1(httpClient: HttpClient): (options?: ReplaceDataItemReferencesOptions) => Promise<ReplaceDataItemReferencesResponse & ReplaceDataItemReferencesResponseNonNullableFields>;
|
|
3590
|
+
declare const onDataItemCreated$1: EventDefinition<DataItemCreatedEnvelope, "wix.data.v2.data_item_created">;
|
|
3591
|
+
declare const onDataItemUpdated$1: EventDefinition<DataItemUpdatedEnvelope, "wix.data.v2.data_item_updated">;
|
|
3592
|
+
declare const onDataItemDeleted$1: EventDefinition<DataItemDeletedEnvelope, "wix.data.v2.data_item_deleted">;
|
|
3593
|
+
|
|
3505
3594
|
declare function createRESTModule$1<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3506
3595
|
|
|
3507
3596
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
3508
3597
|
|
|
3509
|
-
|
|
3510
|
-
declare const
|
|
3511
|
-
|
|
3512
|
-
declare const
|
|
3513
|
-
|
|
3514
|
-
declare const
|
|
3515
|
-
|
|
3516
|
-
declare const
|
|
3517
|
-
|
|
3518
|
-
declare const
|
|
3519
|
-
|
|
3520
|
-
declare const
|
|
3521
|
-
|
|
3522
|
-
declare const
|
|
3523
|
-
|
|
3524
|
-
declare const
|
|
3525
|
-
|
|
3526
|
-
declare const
|
|
3527
|
-
|
|
3528
|
-
declare const
|
|
3529
|
-
|
|
3530
|
-
declare const
|
|
3531
|
-
|
|
3532
|
-
declare const
|
|
3598
|
+
type _publicInsertDataItemType = typeof insertDataItem$1;
|
|
3599
|
+
declare const insertDataItem: ReturnType<typeof createRESTModule$1<_publicInsertDataItemType>>;
|
|
3600
|
+
type _publicUpdateDataItemType = typeof updateDataItem$1;
|
|
3601
|
+
declare const updateDataItem: ReturnType<typeof createRESTModule$1<_publicUpdateDataItemType>>;
|
|
3602
|
+
type _publicSaveDataItemType = typeof saveDataItem$1;
|
|
3603
|
+
declare const saveDataItem: ReturnType<typeof createRESTModule$1<_publicSaveDataItemType>>;
|
|
3604
|
+
type _publicGetDataItemType = typeof getDataItem$1;
|
|
3605
|
+
declare const getDataItem: ReturnType<typeof createRESTModule$1<_publicGetDataItemType>>;
|
|
3606
|
+
type _publicRemoveDataItemType = typeof removeDataItem$1;
|
|
3607
|
+
declare const removeDataItem: ReturnType<typeof createRESTModule$1<_publicRemoveDataItemType>>;
|
|
3608
|
+
type _publicTruncateDataItemsType = typeof truncateDataItems$1;
|
|
3609
|
+
declare const truncateDataItems: ReturnType<typeof createRESTModule$1<_publicTruncateDataItemsType>>;
|
|
3610
|
+
type _publicQueryDataItemsType = typeof queryDataItems$1;
|
|
3611
|
+
declare const queryDataItems: ReturnType<typeof createRESTModule$1<_publicQueryDataItemsType>>;
|
|
3612
|
+
type _publicAggregateDataItemsType = typeof aggregateDataItems$1;
|
|
3613
|
+
declare const aggregateDataItems: ReturnType<typeof createRESTModule$1<_publicAggregateDataItemsType>>;
|
|
3614
|
+
type _publicCountDataItemsType = typeof countDataItems$1;
|
|
3615
|
+
declare const countDataItems: ReturnType<typeof createRESTModule$1<_publicCountDataItemsType>>;
|
|
3616
|
+
type _publicQueryDistinctValuesType = typeof queryDistinctValues$1;
|
|
3617
|
+
declare const queryDistinctValues: ReturnType<typeof createRESTModule$1<_publicQueryDistinctValuesType>>;
|
|
3618
|
+
type _publicBulkInsertDataItemsType = typeof bulkInsertDataItems$1;
|
|
3619
|
+
declare const bulkInsertDataItems: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemsType>>;
|
|
3620
|
+
type _publicBulkUpdateDataItemsType = typeof bulkUpdateDataItems$1;
|
|
3621
|
+
declare const bulkUpdateDataItems: ReturnType<typeof createRESTModule$1<_publicBulkUpdateDataItemsType>>;
|
|
3622
|
+
type _publicBulkSaveDataItemsType = typeof bulkSaveDataItems$1;
|
|
3623
|
+
declare const bulkSaveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkSaveDataItemsType>>;
|
|
3624
|
+
type _publicBulkRemoveDataItemsType = typeof bulkRemoveDataItems$1;
|
|
3625
|
+
declare const bulkRemoveDataItems: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemsType>>;
|
|
3626
|
+
type _publicQueryReferencedDataItemsType = typeof queryReferencedDataItems$1;
|
|
3627
|
+
declare const queryReferencedDataItems: ReturnType<typeof createRESTModule$1<_publicQueryReferencedDataItemsType>>;
|
|
3628
|
+
type _publicIsReferencedDataItemType = typeof isReferencedDataItem$1;
|
|
3629
|
+
declare const isReferencedDataItem: ReturnType<typeof createRESTModule$1<_publicIsReferencedDataItemType>>;
|
|
3630
|
+
type _publicInsertDataItemReferenceType = typeof insertDataItemReference$1;
|
|
3631
|
+
declare const insertDataItemReference: ReturnType<typeof createRESTModule$1<_publicInsertDataItemReferenceType>>;
|
|
3632
|
+
type _publicRemoveDataItemReferenceType = typeof removeDataItemReference$1;
|
|
3633
|
+
declare const removeDataItemReference: ReturnType<typeof createRESTModule$1<_publicRemoveDataItemReferenceType>>;
|
|
3634
|
+
type _publicBulkInsertDataItemReferencesType = typeof bulkInsertDataItemReferences$1;
|
|
3635
|
+
declare const bulkInsertDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkInsertDataItemReferencesType>>;
|
|
3636
|
+
type _publicBulkRemoveDataItemReferencesType = typeof bulkRemoveDataItemReferences$1;
|
|
3637
|
+
declare const bulkRemoveDataItemReferences: ReturnType<typeof createRESTModule$1<_publicBulkRemoveDataItemReferencesType>>;
|
|
3638
|
+
type _publicReplaceDataItemReferencesType = typeof replaceDataItemReferences$1;
|
|
3639
|
+
declare const replaceDataItemReferences: ReturnType<typeof createRESTModule$1<_publicReplaceDataItemReferencesType>>;
|
|
3640
|
+
|
|
3641
|
+
type _publicOnDataItemCreatedType = typeof onDataItemCreated$1;
|
|
3642
|
+
declare const onDataItemCreated: ReturnType<typeof createEventModule<_publicOnDataItemCreatedType>>;
|
|
3643
|
+
|
|
3644
|
+
type _publicOnDataItemUpdatedType = typeof onDataItemUpdated$1;
|
|
3645
|
+
declare const onDataItemUpdated: ReturnType<typeof createEventModule<_publicOnDataItemUpdatedType>>;
|
|
3646
|
+
|
|
3647
|
+
type _publicOnDataItemDeletedType = typeof onDataItemDeleted$1;
|
|
3648
|
+
declare const onDataItemDeleted: ReturnType<typeof createEventModule<_publicOnDataItemDeletedType>>;
|
|
3533
3649
|
|
|
3534
3650
|
type index_d$1_ACTION = ACTION;
|
|
3535
3651
|
declare const index_d$1_ACTION: typeof ACTION;
|
|
@@ -3683,6 +3799,30 @@ type index_d$1_UpdateDataItemResponse = UpdateDataItemResponse;
|
|
|
3683
3799
|
type index_d$1_UpdateDataItemResponseNonNullableFields = UpdateDataItemResponseNonNullableFields;
|
|
3684
3800
|
type index_d$1_WebhookIdentityType = WebhookIdentityType;
|
|
3685
3801
|
declare const index_d$1_WebhookIdentityType: typeof WebhookIdentityType;
|
|
3802
|
+
type index_d$1__publicAggregateDataItemsType = _publicAggregateDataItemsType;
|
|
3803
|
+
type index_d$1__publicBulkInsertDataItemReferencesType = _publicBulkInsertDataItemReferencesType;
|
|
3804
|
+
type index_d$1__publicBulkInsertDataItemsType = _publicBulkInsertDataItemsType;
|
|
3805
|
+
type index_d$1__publicBulkRemoveDataItemReferencesType = _publicBulkRemoveDataItemReferencesType;
|
|
3806
|
+
type index_d$1__publicBulkRemoveDataItemsType = _publicBulkRemoveDataItemsType;
|
|
3807
|
+
type index_d$1__publicBulkSaveDataItemsType = _publicBulkSaveDataItemsType;
|
|
3808
|
+
type index_d$1__publicBulkUpdateDataItemsType = _publicBulkUpdateDataItemsType;
|
|
3809
|
+
type index_d$1__publicCountDataItemsType = _publicCountDataItemsType;
|
|
3810
|
+
type index_d$1__publicGetDataItemType = _publicGetDataItemType;
|
|
3811
|
+
type index_d$1__publicInsertDataItemReferenceType = _publicInsertDataItemReferenceType;
|
|
3812
|
+
type index_d$1__publicInsertDataItemType = _publicInsertDataItemType;
|
|
3813
|
+
type index_d$1__publicIsReferencedDataItemType = _publicIsReferencedDataItemType;
|
|
3814
|
+
type index_d$1__publicOnDataItemCreatedType = _publicOnDataItemCreatedType;
|
|
3815
|
+
type index_d$1__publicOnDataItemDeletedType = _publicOnDataItemDeletedType;
|
|
3816
|
+
type index_d$1__publicOnDataItemUpdatedType = _publicOnDataItemUpdatedType;
|
|
3817
|
+
type index_d$1__publicQueryDataItemsType = _publicQueryDataItemsType;
|
|
3818
|
+
type index_d$1__publicQueryDistinctValuesType = _publicQueryDistinctValuesType;
|
|
3819
|
+
type index_d$1__publicQueryReferencedDataItemsType = _publicQueryReferencedDataItemsType;
|
|
3820
|
+
type index_d$1__publicRemoveDataItemReferenceType = _publicRemoveDataItemReferenceType;
|
|
3821
|
+
type index_d$1__publicRemoveDataItemType = _publicRemoveDataItemType;
|
|
3822
|
+
type index_d$1__publicReplaceDataItemReferencesType = _publicReplaceDataItemReferencesType;
|
|
3823
|
+
type index_d$1__publicSaveDataItemType = _publicSaveDataItemType;
|
|
3824
|
+
type index_d$1__publicTruncateDataItemsType = _publicTruncateDataItemsType;
|
|
3825
|
+
type index_d$1__publicUpdateDataItemType = _publicUpdateDataItemType;
|
|
3686
3826
|
declare const index_d$1_aggregateDataItems: typeof aggregateDataItems;
|
|
3687
3827
|
declare const index_d$1_bulkInsertDataItemReferences: typeof bulkInsertDataItemReferences;
|
|
3688
3828
|
declare const index_d$1_bulkInsertDataItems: typeof bulkInsertDataItems;
|
|
@@ -3708,7 +3848,7 @@ declare const index_d$1_saveDataItem: typeof saveDataItem;
|
|
|
3708
3848
|
declare const index_d$1_truncateDataItems: typeof truncateDataItems;
|
|
3709
3849
|
declare const index_d$1_updateDataItem: typeof updateDataItem;
|
|
3710
3850
|
declare namespace index_d$1 {
|
|
3711
|
-
export { index_d$1_ACTION as ACTION, index_d$1_Action as Action, type index_d$1_ActionEvent as ActionEvent, type index_d$1_AggregateDataItemsOptions as AggregateDataItemsOptions, type index_d$1_AggregateDataItemsRequest as AggregateDataItemsRequest, type index_d$1_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type index_d$1_AggregateDataItemsResponse as AggregateDataItemsResponse, type index_d$1_Aggregation as Aggregation, type index_d$1_AppendToArray as AppendToArray, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Average as Average, type index_d$1_BaseEventMetadata as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, index_d$1_BulkActionType as BulkActionType, type index_d$1_BulkDataItemReferenceResult as BulkDataItemReferenceResult, type index_d$1_BulkDataItemResult as BulkDataItemResult, type index_d$1_BulkInsertDataItemReferencesOptions as BulkInsertDataItemReferencesOptions, type index_d$1_BulkInsertDataItemReferencesRequest as BulkInsertDataItemReferencesRequest, type index_d$1_BulkInsertDataItemReferencesResponse as BulkInsertDataItemReferencesResponse, type index_d$1_BulkInsertDataItemReferencesResponseNonNullableFields as BulkInsertDataItemReferencesResponseNonNullableFields, type index_d$1_BulkInsertDataItemsOptions as BulkInsertDataItemsOptions, type index_d$1_BulkInsertDataItemsRequest as BulkInsertDataItemsRequest, type index_d$1_BulkInsertDataItemsResponse as BulkInsertDataItemsResponse, type index_d$1_BulkInsertDataItemsResponseNonNullableFields as BulkInsertDataItemsResponseNonNullableFields, type index_d$1_BulkPatchDataItemsRequest as BulkPatchDataItemsRequest, type index_d$1_BulkPatchDataItemsResponse as BulkPatchDataItemsResponse, type index_d$1_BulkRemoveDataItemReferencesOptions as BulkRemoveDataItemReferencesOptions, type index_d$1_BulkRemoveDataItemReferencesRequest as BulkRemoveDataItemReferencesRequest, type index_d$1_BulkRemoveDataItemReferencesResponse as BulkRemoveDataItemReferencesResponse, type index_d$1_BulkRemoveDataItemReferencesResponseNonNullableFields as BulkRemoveDataItemReferencesResponseNonNullableFields, type index_d$1_BulkRemoveDataItemsOptions as BulkRemoveDataItemsOptions, type index_d$1_BulkRemoveDataItemsRequest as BulkRemoveDataItemsRequest, type index_d$1_BulkRemoveDataItemsResponse as BulkRemoveDataItemsResponse, type index_d$1_BulkRemoveDataItemsResponseNonNullableFields as BulkRemoveDataItemsResponseNonNullableFields, type index_d$1_BulkSaveDataItemsOptions as BulkSaveDataItemsOptions, type index_d$1_BulkSaveDataItemsRequest as BulkSaveDataItemsRequest, type index_d$1_BulkSaveDataItemsResponse as BulkSaveDataItemsResponse, type index_d$1_BulkSaveDataItemsResponseNonNullableFields as BulkSaveDataItemsResponseNonNullableFields, type index_d$1_BulkUpdateDataItemsOptions as BulkUpdateDataItemsOptions, type index_d$1_BulkUpdateDataItemsRequest as BulkUpdateDataItemsRequest, type index_d$1_BulkUpdateDataItemsResponse as BulkUpdateDataItemsResponse, type index_d$1_BulkUpdateDataItemsResponseNonNullableFields as BulkUpdateDataItemsResponseNonNullableFields, type index_d$1_CachingInfo as CachingInfo, type index_d$1_Count as Count, type index_d$1_CountDataItemsOptions as CountDataItemsOptions, type index_d$1_CountDataItemsRequest as CountDataItemsRequest, type index_d$1_CountDataItemsResponse as CountDataItemsResponse, type index_d$1_CountDataItemsResponseNonNullableFields as CountDataItemsResponseNonNullableFields, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type index_d$1_DataItem as DataItem, type index_d$1_DataItemCreatedEnvelope as DataItemCreatedEnvelope, type index_d$1_DataItemDeletedEnvelope as DataItemDeletedEnvelope, type index_d$1_DataItemNonNullableFields as DataItemNonNullableFields, type index_d$1_DataItemReference as DataItemReference, type index_d$1_DataItemUpdatedEnvelope as DataItemUpdatedEnvelope, type index_d$1_DataItemsQueryBuilder as DataItemsQueryBuilder, type index_d$1_DataItemsQueryResult as DataItemsQueryResult, type index_d$1_DataPublishPluginOptions as DataPublishPluginOptions, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, Environment$1 as Environment, type index_d$1_EventMetadata as EventMetadata, type index_d$1_FieldUpdate as FieldUpdate, type index_d$1_FieldUpdateActionOptionsOneOf as FieldUpdateActionOptionsOneOf, type index_d$1_GetDataItemOptions as GetDataItemOptions, type index_d$1_GetDataItemRequest as GetDataItemRequest, type index_d$1_GetDataItemResponse as GetDataItemResponse, type index_d$1_GetDataItemResponseNonNullableFields as GetDataItemResponseNonNullableFields, type index_d$1_IdentificationData as IdentificationData, type index_d$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$1_IncrementField as IncrementField, type index_d$1_InsertDataItemOptions as InsertDataItemOptions, type index_d$1_InsertDataItemReferenceOptions as InsertDataItemReferenceOptions, type index_d$1_InsertDataItemReferenceRequest as InsertDataItemReferenceRequest, type index_d$1_InsertDataItemReferenceResponse as InsertDataItemReferenceResponse, type index_d$1_InsertDataItemReferenceResponseNonNullableFields as InsertDataItemReferenceResponseNonNullableFields, type index_d$1_InsertDataItemRequest as InsertDataItemRequest, type index_d$1_InsertDataItemResponse as InsertDataItemResponse, type index_d$1_InsertDataItemResponseNonNullableFields as InsertDataItemResponseNonNullableFields, type index_d$1_IsReferencedDataItemOptions as IsReferencedDataItemOptions, type index_d$1_IsReferencedDataItemRequest as IsReferencedDataItemRequest, type index_d$1_IsReferencedDataItemResponse as IsReferencedDataItemResponse, type index_d$1_IsReferencedDataItemResponseNonNullableFields as IsReferencedDataItemResponseNonNullableFields, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_Max as Max, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_Min as Min, type index_d$1_Operation as Operation, type index_d$1_OperationCalculateOneOf as OperationCalculateOneOf, type index_d$1_Options as Options, type Paging$1 as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_PatchDataItemRequest as PatchDataItemRequest, type index_d$1_PatchDataItemResponse as PatchDataItemResponse, type index_d$1_PatchSet as PatchSet, type index_d$1_PublishPluginOptions as PublishPluginOptions, type index_d$1_QueryDataItemsOptions as QueryDataItemsOptions, type index_d$1_QueryDataItemsRequest as QueryDataItemsRequest, type index_d$1_QueryDataItemsResponse as QueryDataItemsResponse, type index_d$1_QueryDataItemsResponseNonNullableFields as QueryDataItemsResponseNonNullableFields, type index_d$1_QueryDistinctValuesOptions as QueryDistinctValuesOptions, type index_d$1_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type index_d$1_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type index_d$1_QueryDistinctValuesResponse as QueryDistinctValuesResponse, type index_d$1_QueryReferencedDataItemsOptions as QueryReferencedDataItemsOptions, type index_d$1_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type index_d$1_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type index_d$1_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type index_d$1_QueryReferencedDataItemsResponseNonNullableFields as QueryReferencedDataItemsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_ReferencedItemOptions as ReferencedItemOptions, type index_d$1_ReferencedResult as ReferencedResult, type index_d$1_ReferencedResultEntityOneOf as ReferencedResultEntityOneOf, type index_d$1_RemoveDataItemOptions as RemoveDataItemOptions, type index_d$1_RemoveDataItemReferenceOptions as RemoveDataItemReferenceOptions, type index_d$1_RemoveDataItemReferenceRequest as RemoveDataItemReferenceRequest, type index_d$1_RemoveDataItemReferenceResponse as RemoveDataItemReferenceResponse, type index_d$1_RemoveDataItemReferenceResponseNonNullableFields as RemoveDataItemReferenceResponseNonNullableFields, type index_d$1_RemoveDataItemRequest as RemoveDataItemRequest, type index_d$1_RemoveDataItemResponse as RemoveDataItemResponse, type index_d$1_RemoveDataItemResponseNonNullableFields as RemoveDataItemResponseNonNullableFields, type index_d$1_RemoveFromArray as RemoveFromArray, type index_d$1_ReplaceDataItemReferencesOptions as ReplaceDataItemReferencesOptions, type index_d$1_ReplaceDataItemReferencesRequest as ReplaceDataItemReferencesRequest, type index_d$1_ReplaceDataItemReferencesResponse as ReplaceDataItemReferencesResponse, type index_d$1_ReplaceDataItemReferencesResponseNonNullableFields as ReplaceDataItemReferencesResponseNonNullableFields, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_SaveDataItemOptions as SaveDataItemOptions, type index_d$1_SaveDataItemRequest as SaveDataItemRequest, type index_d$1_SaveDataItemResponse as SaveDataItemResponse, type index_d$1_SaveDataItemResponseNonNullableFields as SaveDataItemResponseNonNullableFields, type index_d$1_SetField as SetField, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_Sum as Sum, type index_d$1_TruncateDataItemsOptions as TruncateDataItemsOptions, type index_d$1_TruncateDataItemsRequest as TruncateDataItemsRequest, type index_d$1_TruncateDataItemsResponse as TruncateDataItemsResponse, type index_d$1_UnresolvedReference as UnresolvedReference, type index_d$1_UpdateDataItemOptions as UpdateDataItemOptions, type index_d$1_UpdateDataItemRequest as UpdateDataItemRequest, type index_d$1_UpdateDataItemResponse as UpdateDataItemResponse, type index_d$1_UpdateDataItemResponseNonNullableFields as UpdateDataItemResponseNonNullableFields, index_d$1_WebhookIdentityType as WebhookIdentityType, index_d$1_aggregateDataItems as aggregateDataItems, index_d$1_bulkInsertDataItemReferences as bulkInsertDataItemReferences, index_d$1_bulkInsertDataItems as bulkInsertDataItems, index_d$1_bulkRemoveDataItemReferences as bulkRemoveDataItemReferences, index_d$1_bulkRemoveDataItems as bulkRemoveDataItems, index_d$1_bulkSaveDataItems as bulkSaveDataItems, index_d$1_bulkUpdateDataItems as bulkUpdateDataItems, index_d$1_countDataItems as countDataItems, index_d$1_getDataItem as getDataItem, index_d$1_insertDataItem as insertDataItem, index_d$1_insertDataItemReference as insertDataItemReference, index_d$1_isReferencedDataItem as isReferencedDataItem, index_d$1_onDataItemCreated as onDataItemCreated, index_d$1_onDataItemDeleted as onDataItemDeleted, index_d$1_onDataItemUpdated as onDataItemUpdated, index_d$1_queryDataItems as queryDataItems, index_d$1_queryDistinctValues as queryDistinctValues, index_d$1_queryReferencedDataItems as queryReferencedDataItems, index_d$1_removeDataItem as removeDataItem, index_d$1_removeDataItemReference as removeDataItemReference, index_d$1_replaceDataItemReferences as replaceDataItemReferences, index_d$1_saveDataItem as saveDataItem, index_d$1_truncateDataItems as truncateDataItems, index_d$1_updateDataItem as updateDataItem };
|
|
3851
|
+
export { index_d$1_ACTION as ACTION, index_d$1_Action as Action, type index_d$1_ActionEvent as ActionEvent, type index_d$1_AggregateDataItemsOptions as AggregateDataItemsOptions, type index_d$1_AggregateDataItemsRequest as AggregateDataItemsRequest, type index_d$1_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type index_d$1_AggregateDataItemsResponse as AggregateDataItemsResponse, type index_d$1_Aggregation as Aggregation, type index_d$1_AppendToArray as AppendToArray, type index_d$1_ApplicationError as ApplicationError, type index_d$1_Average as Average, type index_d$1_BaseEventMetadata as BaseEventMetadata, type index_d$1_BulkActionMetadata as BulkActionMetadata, index_d$1_BulkActionType as BulkActionType, type index_d$1_BulkDataItemReferenceResult as BulkDataItemReferenceResult, type index_d$1_BulkDataItemResult as BulkDataItemResult, type index_d$1_BulkInsertDataItemReferencesOptions as BulkInsertDataItemReferencesOptions, type index_d$1_BulkInsertDataItemReferencesRequest as BulkInsertDataItemReferencesRequest, type index_d$1_BulkInsertDataItemReferencesResponse as BulkInsertDataItemReferencesResponse, type index_d$1_BulkInsertDataItemReferencesResponseNonNullableFields as BulkInsertDataItemReferencesResponseNonNullableFields, type index_d$1_BulkInsertDataItemsOptions as BulkInsertDataItemsOptions, type index_d$1_BulkInsertDataItemsRequest as BulkInsertDataItemsRequest, type index_d$1_BulkInsertDataItemsResponse as BulkInsertDataItemsResponse, type index_d$1_BulkInsertDataItemsResponseNonNullableFields as BulkInsertDataItemsResponseNonNullableFields, type index_d$1_BulkPatchDataItemsRequest as BulkPatchDataItemsRequest, type index_d$1_BulkPatchDataItemsResponse as BulkPatchDataItemsResponse, type index_d$1_BulkRemoveDataItemReferencesOptions as BulkRemoveDataItemReferencesOptions, type index_d$1_BulkRemoveDataItemReferencesRequest as BulkRemoveDataItemReferencesRequest, type index_d$1_BulkRemoveDataItemReferencesResponse as BulkRemoveDataItemReferencesResponse, type index_d$1_BulkRemoveDataItemReferencesResponseNonNullableFields as BulkRemoveDataItemReferencesResponseNonNullableFields, type index_d$1_BulkRemoveDataItemsOptions as BulkRemoveDataItemsOptions, type index_d$1_BulkRemoveDataItemsRequest as BulkRemoveDataItemsRequest, type index_d$1_BulkRemoveDataItemsResponse as BulkRemoveDataItemsResponse, type index_d$1_BulkRemoveDataItemsResponseNonNullableFields as BulkRemoveDataItemsResponseNonNullableFields, type index_d$1_BulkSaveDataItemsOptions as BulkSaveDataItemsOptions, type index_d$1_BulkSaveDataItemsRequest as BulkSaveDataItemsRequest, type index_d$1_BulkSaveDataItemsResponse as BulkSaveDataItemsResponse, type index_d$1_BulkSaveDataItemsResponseNonNullableFields as BulkSaveDataItemsResponseNonNullableFields, type index_d$1_BulkUpdateDataItemsOptions as BulkUpdateDataItemsOptions, type index_d$1_BulkUpdateDataItemsRequest as BulkUpdateDataItemsRequest, type index_d$1_BulkUpdateDataItemsResponse as BulkUpdateDataItemsResponse, type index_d$1_BulkUpdateDataItemsResponseNonNullableFields as BulkUpdateDataItemsResponseNonNullableFields, type index_d$1_CachingInfo as CachingInfo, type index_d$1_Count as Count, type index_d$1_CountDataItemsOptions as CountDataItemsOptions, type index_d$1_CountDataItemsRequest as CountDataItemsRequest, type index_d$1_CountDataItemsResponse as CountDataItemsResponse, type index_d$1_CountDataItemsResponseNonNullableFields as CountDataItemsResponseNonNullableFields, type index_d$1_CursorPaging as CursorPaging, type index_d$1_Cursors as Cursors, type index_d$1_DataItem as DataItem, type index_d$1_DataItemCreatedEnvelope as DataItemCreatedEnvelope, type index_d$1_DataItemDeletedEnvelope as DataItemDeletedEnvelope, type index_d$1_DataItemNonNullableFields as DataItemNonNullableFields, type index_d$1_DataItemReference as DataItemReference, type index_d$1_DataItemUpdatedEnvelope as DataItemUpdatedEnvelope, type index_d$1_DataItemsQueryBuilder as DataItemsQueryBuilder, type index_d$1_DataItemsQueryResult as DataItemsQueryResult, type index_d$1_DataPublishPluginOptions as DataPublishPluginOptions, type index_d$1_DomainEvent as DomainEvent, type index_d$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type index_d$1_EntityCreatedEvent as EntityCreatedEvent, type index_d$1_EntityDeletedEvent as EntityDeletedEvent, type index_d$1_EntityUpdatedEvent as EntityUpdatedEvent, Environment$1 as Environment, type index_d$1_EventMetadata as EventMetadata, type index_d$1_FieldUpdate as FieldUpdate, type index_d$1_FieldUpdateActionOptionsOneOf as FieldUpdateActionOptionsOneOf, type index_d$1_GetDataItemOptions as GetDataItemOptions, type index_d$1_GetDataItemRequest as GetDataItemRequest, type index_d$1_GetDataItemResponse as GetDataItemResponse, type index_d$1_GetDataItemResponseNonNullableFields as GetDataItemResponseNonNullableFields, type index_d$1_IdentificationData as IdentificationData, type index_d$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type index_d$1_IncrementField as IncrementField, type index_d$1_InsertDataItemOptions as InsertDataItemOptions, type index_d$1_InsertDataItemReferenceOptions as InsertDataItemReferenceOptions, type index_d$1_InsertDataItemReferenceRequest as InsertDataItemReferenceRequest, type index_d$1_InsertDataItemReferenceResponse as InsertDataItemReferenceResponse, type index_d$1_InsertDataItemReferenceResponseNonNullableFields as InsertDataItemReferenceResponseNonNullableFields, type index_d$1_InsertDataItemRequest as InsertDataItemRequest, type index_d$1_InsertDataItemResponse as InsertDataItemResponse, type index_d$1_InsertDataItemResponseNonNullableFields as InsertDataItemResponseNonNullableFields, type index_d$1_IsReferencedDataItemOptions as IsReferencedDataItemOptions, type index_d$1_IsReferencedDataItemRequest as IsReferencedDataItemRequest, type index_d$1_IsReferencedDataItemResponse as IsReferencedDataItemResponse, type index_d$1_IsReferencedDataItemResponseNonNullableFields as IsReferencedDataItemResponseNonNullableFields, type index_d$1_ItemMetadata as ItemMetadata, type index_d$1_Max as Max, type index_d$1_MessageEnvelope as MessageEnvelope, type index_d$1_Min as Min, type index_d$1_Operation as Operation, type index_d$1_OperationCalculateOneOf as OperationCalculateOneOf, type index_d$1_Options as Options, type Paging$1 as Paging, type index_d$1_PagingMetadataV2 as PagingMetadataV2, type index_d$1_PatchDataItemRequest as PatchDataItemRequest, type index_d$1_PatchDataItemResponse as PatchDataItemResponse, type index_d$1_PatchSet as PatchSet, type index_d$1_PublishPluginOptions as PublishPluginOptions, type index_d$1_QueryDataItemsOptions as QueryDataItemsOptions, type index_d$1_QueryDataItemsRequest as QueryDataItemsRequest, type index_d$1_QueryDataItemsResponse as QueryDataItemsResponse, type index_d$1_QueryDataItemsResponseNonNullableFields as QueryDataItemsResponseNonNullableFields, type index_d$1_QueryDistinctValuesOptions as QueryDistinctValuesOptions, type index_d$1_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type index_d$1_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type index_d$1_QueryDistinctValuesResponse as QueryDistinctValuesResponse, type index_d$1_QueryReferencedDataItemsOptions as QueryReferencedDataItemsOptions, type index_d$1_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type index_d$1_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type index_d$1_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type index_d$1_QueryReferencedDataItemsResponseNonNullableFields as QueryReferencedDataItemsResponseNonNullableFields, type index_d$1_QueryV2 as QueryV2, type index_d$1_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type index_d$1_ReferencedItemOptions as ReferencedItemOptions, type index_d$1_ReferencedResult as ReferencedResult, type index_d$1_ReferencedResultEntityOneOf as ReferencedResultEntityOneOf, type index_d$1_RemoveDataItemOptions as RemoveDataItemOptions, type index_d$1_RemoveDataItemReferenceOptions as RemoveDataItemReferenceOptions, type index_d$1_RemoveDataItemReferenceRequest as RemoveDataItemReferenceRequest, type index_d$1_RemoveDataItemReferenceResponse as RemoveDataItemReferenceResponse, type index_d$1_RemoveDataItemReferenceResponseNonNullableFields as RemoveDataItemReferenceResponseNonNullableFields, type index_d$1_RemoveDataItemRequest as RemoveDataItemRequest, type index_d$1_RemoveDataItemResponse as RemoveDataItemResponse, type index_d$1_RemoveDataItemResponseNonNullableFields as RemoveDataItemResponseNonNullableFields, type index_d$1_RemoveFromArray as RemoveFromArray, type index_d$1_ReplaceDataItemReferencesOptions as ReplaceDataItemReferencesOptions, type index_d$1_ReplaceDataItemReferencesRequest as ReplaceDataItemReferencesRequest, type index_d$1_ReplaceDataItemReferencesResponse as ReplaceDataItemReferencesResponse, type index_d$1_ReplaceDataItemReferencesResponseNonNullableFields as ReplaceDataItemReferencesResponseNonNullableFields, type index_d$1_RestoreInfo as RestoreInfo, type index_d$1_SaveDataItemOptions as SaveDataItemOptions, type index_d$1_SaveDataItemRequest as SaveDataItemRequest, type index_d$1_SaveDataItemResponse as SaveDataItemResponse, type index_d$1_SaveDataItemResponseNonNullableFields as SaveDataItemResponseNonNullableFields, type index_d$1_SetField as SetField, index_d$1_SortOrder as SortOrder, type index_d$1_Sorting as Sorting, type index_d$1_Sum as Sum, type index_d$1_TruncateDataItemsOptions as TruncateDataItemsOptions, type index_d$1_TruncateDataItemsRequest as TruncateDataItemsRequest, type index_d$1_TruncateDataItemsResponse as TruncateDataItemsResponse, type index_d$1_UnresolvedReference as UnresolvedReference, type index_d$1_UpdateDataItemOptions as UpdateDataItemOptions, type index_d$1_UpdateDataItemRequest as UpdateDataItemRequest, type index_d$1_UpdateDataItemResponse as UpdateDataItemResponse, type index_d$1_UpdateDataItemResponseNonNullableFields as UpdateDataItemResponseNonNullableFields, index_d$1_WebhookIdentityType as WebhookIdentityType, type index_d$1__publicAggregateDataItemsType as _publicAggregateDataItemsType, type index_d$1__publicBulkInsertDataItemReferencesType as _publicBulkInsertDataItemReferencesType, type index_d$1__publicBulkInsertDataItemsType as _publicBulkInsertDataItemsType, type index_d$1__publicBulkRemoveDataItemReferencesType as _publicBulkRemoveDataItemReferencesType, type index_d$1__publicBulkRemoveDataItemsType as _publicBulkRemoveDataItemsType, type index_d$1__publicBulkSaveDataItemsType as _publicBulkSaveDataItemsType, type index_d$1__publicBulkUpdateDataItemsType as _publicBulkUpdateDataItemsType, type index_d$1__publicCountDataItemsType as _publicCountDataItemsType, type index_d$1__publicGetDataItemType as _publicGetDataItemType, type index_d$1__publicInsertDataItemReferenceType as _publicInsertDataItemReferenceType, type index_d$1__publicInsertDataItemType as _publicInsertDataItemType, type index_d$1__publicIsReferencedDataItemType as _publicIsReferencedDataItemType, type index_d$1__publicOnDataItemCreatedType as _publicOnDataItemCreatedType, type index_d$1__publicOnDataItemDeletedType as _publicOnDataItemDeletedType, type index_d$1__publicOnDataItemUpdatedType as _publicOnDataItemUpdatedType, type index_d$1__publicQueryDataItemsType as _publicQueryDataItemsType, type index_d$1__publicQueryDistinctValuesType as _publicQueryDistinctValuesType, type index_d$1__publicQueryReferencedDataItemsType as _publicQueryReferencedDataItemsType, type index_d$1__publicRemoveDataItemReferenceType as _publicRemoveDataItemReferenceType, type index_d$1__publicRemoveDataItemType as _publicRemoveDataItemType, type index_d$1__publicReplaceDataItemReferencesType as _publicReplaceDataItemReferencesType, type index_d$1__publicSaveDataItemType as _publicSaveDataItemType, type index_d$1__publicTruncateDataItemsType as _publicTruncateDataItemsType, type index_d$1__publicUpdateDataItemType as _publicUpdateDataItemType, index_d$1_aggregateDataItems as aggregateDataItems, index_d$1_bulkInsertDataItemReferences as bulkInsertDataItemReferences, index_d$1_bulkInsertDataItems as bulkInsertDataItems, index_d$1_bulkRemoveDataItemReferences as bulkRemoveDataItemReferences, index_d$1_bulkRemoveDataItems as bulkRemoveDataItems, index_d$1_bulkSaveDataItems as bulkSaveDataItems, index_d$1_bulkUpdateDataItems as bulkUpdateDataItems, index_d$1_countDataItems as countDataItems, index_d$1_getDataItem as getDataItem, index_d$1_insertDataItem as insertDataItem, index_d$1_insertDataItemReference as insertDataItemReference, index_d$1_isReferencedDataItem as isReferencedDataItem, index_d$1_onDataItemCreated as onDataItemCreated, index_d$1_onDataItemDeleted as onDataItemDeleted, index_d$1_onDataItemUpdated as onDataItemUpdated, onDataItemCreated$1 as publicOnDataItemCreated, onDataItemDeleted$1 as publicOnDataItemDeleted, onDataItemUpdated$1 as publicOnDataItemUpdated, index_d$1_queryDataItems as queryDataItems, index_d$1_queryDistinctValues as queryDistinctValues, index_d$1_queryReferencedDataItems as queryReferencedDataItems, index_d$1_removeDataItem as removeDataItem, index_d$1_removeDataItemReference as removeDataItemReference, index_d$1_replaceDataItemReferences as replaceDataItemReferences, index_d$1_saveDataItem as saveDataItem, index_d$1_truncateDataItems as truncateDataItems, index_d$1_updateDataItem as updateDataItem };
|
|
3712
3852
|
}
|
|
3713
3853
|
|
|
3714
3854
|
/** An index is a map of a collection's data, organized according to specific fields to increase query speed. */
|
|
@@ -3883,11 +4023,18 @@ interface ListIndexesOptions {
|
|
|
3883
4023
|
paging?: Paging;
|
|
3884
4024
|
}
|
|
3885
4025
|
|
|
4026
|
+
declare function createIndex$1(httpClient: HttpClient): (dataCollectionId: string, index: Index) => Promise<Index & IndexNonNullableFields>;
|
|
4027
|
+
declare function dropIndex$1(httpClient: HttpClient): (dataCollectionId: string, indexName: string) => Promise<void>;
|
|
4028
|
+
declare function listIndexes$1(httpClient: HttpClient): (dataCollectionId: string, options?: ListIndexesOptions) => Promise<ListIndexesResponse & ListIndexesResponseNonNullableFields>;
|
|
4029
|
+
|
|
3886
4030
|
declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
|
|
3887
4031
|
|
|
3888
|
-
|
|
3889
|
-
declare const
|
|
3890
|
-
|
|
4032
|
+
type _publicCreateIndexType = typeof createIndex$1;
|
|
4033
|
+
declare const createIndex: ReturnType<typeof createRESTModule<_publicCreateIndexType>>;
|
|
4034
|
+
type _publicDropIndexType = typeof dropIndex$1;
|
|
4035
|
+
declare const dropIndex: ReturnType<typeof createRESTModule<_publicDropIndexType>>;
|
|
4036
|
+
type _publicListIndexesType = typeof listIndexes$1;
|
|
4037
|
+
declare const listIndexes: ReturnType<typeof createRESTModule<_publicListIndexesType>>;
|
|
3891
4038
|
|
|
3892
4039
|
type index_d_CreateIndexRequest = CreateIndexRequest;
|
|
3893
4040
|
type index_d_CreateIndexResponse = CreateIndexResponse;
|
|
@@ -3910,11 +4057,14 @@ type index_d_Paging = Paging;
|
|
|
3910
4057
|
type index_d_PagingMetadata = PagingMetadata;
|
|
3911
4058
|
type index_d_Status = Status;
|
|
3912
4059
|
declare const index_d_Status: typeof Status;
|
|
4060
|
+
type index_d__publicCreateIndexType = _publicCreateIndexType;
|
|
4061
|
+
type index_d__publicDropIndexType = _publicDropIndexType;
|
|
4062
|
+
type index_d__publicListIndexesType = _publicListIndexesType;
|
|
3913
4063
|
declare const index_d_createIndex: typeof createIndex;
|
|
3914
4064
|
declare const index_d_dropIndex: typeof dropIndex;
|
|
3915
4065
|
declare const index_d_listIndexes: typeof listIndexes;
|
|
3916
4066
|
declare namespace index_d {
|
|
3917
|
-
export { type index_d_CreateIndexRequest as CreateIndexRequest, type index_d_CreateIndexResponse as CreateIndexResponse, type index_d_CreateIndexResponseNonNullableFields as CreateIndexResponseNonNullableFields, type index_d_DropIndexRequest as DropIndexRequest, type index_d_DropIndexResponse as DropIndexResponse, index_d_Environment as Environment, type index_d_Failure as Failure, type index_d_Field as Field, type index_d_Index as Index, type index_d_IndexNonNullableFields as IndexNonNullableFields, type index_d_ListIndexesOptions as ListIndexesOptions, type index_d_ListIndexesRequest as ListIndexesRequest, type index_d_ListIndexesResponse as ListIndexesResponse, type index_d_ListIndexesResponseNonNullableFields as ListIndexesResponseNonNullableFields, index_d_Order as Order, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, index_d_Status as Status, index_d_createIndex as createIndex, index_d_dropIndex as dropIndex, index_d_listIndexes as listIndexes };
|
|
4067
|
+
export { type index_d_CreateIndexRequest as CreateIndexRequest, type index_d_CreateIndexResponse as CreateIndexResponse, type index_d_CreateIndexResponseNonNullableFields as CreateIndexResponseNonNullableFields, type index_d_DropIndexRequest as DropIndexRequest, type index_d_DropIndexResponse as DropIndexResponse, index_d_Environment as Environment, type index_d_Failure as Failure, type index_d_Field as Field, type index_d_Index as Index, type index_d_IndexNonNullableFields as IndexNonNullableFields, type index_d_ListIndexesOptions as ListIndexesOptions, type index_d_ListIndexesRequest as ListIndexesRequest, type index_d_ListIndexesResponse as ListIndexesResponse, type index_d_ListIndexesResponseNonNullableFields as ListIndexesResponseNonNullableFields, index_d_Order as Order, type index_d_Paging as Paging, type index_d_PagingMetadata as PagingMetadata, index_d_Status as Status, type index_d__publicCreateIndexType as _publicCreateIndexType, type index_d__publicDropIndexType as _publicDropIndexType, type index_d__publicListIndexesType as _publicListIndexesType, index_d_createIndex as createIndex, index_d_dropIndex as dropIndex, index_d_listIndexes as listIndexes };
|
|
3918
4068
|
}
|
|
3919
4069
|
|
|
3920
4070
|
export { index_d$2 as collections, index_d$3 as externalDatabaseConnections, index_d as indexes, index_d$1 as items };
|
|
@@ -991,9 +991,93 @@ declare global {
|
|
|
991
991
|
}
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
+
interface QueryDataItemsEnvelope {
|
|
995
|
+
request: QueryDataItemsRequest;
|
|
996
|
+
metadata: Context;
|
|
997
|
+
}
|
|
998
|
+
interface CountDataItemsEnvelope {
|
|
999
|
+
request: CountDataItemsRequest;
|
|
1000
|
+
metadata: Context;
|
|
1001
|
+
}
|
|
1002
|
+
interface AggregateDataItemsEnvelope {
|
|
1003
|
+
request: AggregateDataItemsRequest;
|
|
1004
|
+
metadata: Context;
|
|
1005
|
+
}
|
|
1006
|
+
interface QueryDistinctValuesEnvelope {
|
|
1007
|
+
request: QueryDistinctValuesRequest;
|
|
1008
|
+
metadata: Context;
|
|
1009
|
+
}
|
|
1010
|
+
interface InsertDataItemsEnvelope {
|
|
1011
|
+
request: InsertDataItemsRequest;
|
|
1012
|
+
metadata: Context;
|
|
1013
|
+
}
|
|
1014
|
+
interface UpdateDataItemsEnvelope {
|
|
1015
|
+
request: UpdateDataItemsRequest;
|
|
1016
|
+
metadata: Context;
|
|
1017
|
+
}
|
|
1018
|
+
interface RemoveDataItemsEnvelope {
|
|
1019
|
+
request: RemoveDataItemsRequest;
|
|
1020
|
+
metadata: Context;
|
|
1021
|
+
}
|
|
1022
|
+
interface TruncateDataItemsEnvelope {
|
|
1023
|
+
request: TruncateDataItemsRequest;
|
|
1024
|
+
metadata: Context;
|
|
1025
|
+
}
|
|
1026
|
+
interface QueryReferencedDataItemsEnvelope {
|
|
1027
|
+
request: QueryReferencedDataItemsRequest;
|
|
1028
|
+
metadata: Context;
|
|
1029
|
+
}
|
|
1030
|
+
interface InsertDataItemReferencesEnvelope {
|
|
1031
|
+
request: InsertDataItemReferencesRequest;
|
|
1032
|
+
metadata: Context;
|
|
1033
|
+
}
|
|
1034
|
+
interface RemoveDataItemReferencesEnvelope {
|
|
1035
|
+
request: RemoveDataItemReferencesRequest;
|
|
1036
|
+
metadata: Context;
|
|
1037
|
+
}
|
|
1038
|
+
interface ListCollectionsEnvelope {
|
|
1039
|
+
request: ListCollectionsRequest;
|
|
1040
|
+
metadata: Context;
|
|
1041
|
+
}
|
|
1042
|
+
interface CreateCollectionEnvelope {
|
|
1043
|
+
request: CreateCollectionRequest;
|
|
1044
|
+
metadata: Context;
|
|
1045
|
+
}
|
|
1046
|
+
interface UpdateCollectionEnvelope {
|
|
1047
|
+
request: UpdateCollectionRequest;
|
|
1048
|
+
metadata: Context;
|
|
1049
|
+
}
|
|
1050
|
+
interface DeleteCollectionEnvelope {
|
|
1051
|
+
request: DeleteCollectionRequest;
|
|
1052
|
+
metadata: Context;
|
|
1053
|
+
}
|
|
1054
|
+
interface GetCapabilitiesEnvelope {
|
|
1055
|
+
request: GetCapabilitiesRequest;
|
|
1056
|
+
metadata: Context;
|
|
1057
|
+
}
|
|
1058
|
+
declare const provideHandlers$1: ServicePluginDefinition<{
|
|
1059
|
+
queryDataItems(payload: QueryDataItemsEnvelope): QueryDataItemsResponse | Promise<QueryDataItemsResponse>;
|
|
1060
|
+
countDataItems(payload: CountDataItemsEnvelope): CountDataItemsResponse | Promise<CountDataItemsResponse>;
|
|
1061
|
+
aggregateDataItems(payload: AggregateDataItemsEnvelope): AggregateDataItemsResponse | Promise<AggregateDataItemsResponse>;
|
|
1062
|
+
queryDistinctValues(payload: QueryDistinctValuesEnvelope): QueryDistinctValuesResponse | Promise<QueryDistinctValuesResponse>;
|
|
1063
|
+
insertDataItems(payload: InsertDataItemsEnvelope): InsertDataItemsResponse | Promise<InsertDataItemsResponse>;
|
|
1064
|
+
updateDataItems(payload: UpdateDataItemsEnvelope): UpdateDataItemsResponse | Promise<UpdateDataItemsResponse>;
|
|
1065
|
+
removeDataItems(payload: RemoveDataItemsEnvelope): RemoveDataItemsResponse | Promise<RemoveDataItemsResponse>;
|
|
1066
|
+
truncateDataItems(payload: TruncateDataItemsEnvelope): TruncateDataItemsResponse | Promise<TruncateDataItemsResponse>;
|
|
1067
|
+
queryReferencedDataItems(payload: QueryReferencedDataItemsEnvelope): QueryReferencedDataItemsResponse | Promise<QueryReferencedDataItemsResponse>;
|
|
1068
|
+
insertDataItemReferences(payload: InsertDataItemReferencesEnvelope): InsertDataItemReferencesResponse | Promise<InsertDataItemReferencesResponse>;
|
|
1069
|
+
removeDataItemReferences(payload: RemoveDataItemReferencesEnvelope): RemoveDataItemReferencesResponse | Promise<RemoveDataItemReferencesResponse>;
|
|
1070
|
+
listCollections(payload: ListCollectionsEnvelope): ListCollectionsResponse | Promise<ListCollectionsResponse>;
|
|
1071
|
+
createCollection(payload: CreateCollectionEnvelope): CreateCollectionResponse | Promise<CreateCollectionResponse>;
|
|
1072
|
+
updateCollection(payload: UpdateCollectionEnvelope): UpdateCollectionResponse | Promise<UpdateCollectionResponse>;
|
|
1073
|
+
deleteCollection(payload: DeleteCollectionEnvelope): DeleteCollectionResponse | Promise<DeleteCollectionResponse>;
|
|
1074
|
+
getCapabilities(payload: GetCapabilitiesEnvelope): GetCapabilitiesResponse | Promise<GetCapabilitiesResponse>;
|
|
1075
|
+
}>;
|
|
1076
|
+
|
|
994
1077
|
declare function createServicePluginModule<T extends ServicePluginDefinition<any>>(servicePluginDefinition: T): BuildServicePluginDefinition<T> & T;
|
|
995
1078
|
|
|
996
|
-
|
|
1079
|
+
type _publicProvideHandlersType = typeof provideHandlers$1;
|
|
1080
|
+
declare const provideHandlers: ReturnType<typeof createServicePluginModule<_publicProvideHandlersType>>;
|
|
997
1081
|
|
|
998
1082
|
type context_AggregateDataItemsRequest = AggregateDataItemsRequest;
|
|
999
1083
|
type context_AggregateDataItemsRequestPagingMethodOneOf = AggregateDataItemsRequestPagingMethodOneOf;
|
|
@@ -1127,9 +1211,10 @@ type context_ValidationError = ValidationError;
|
|
|
1127
1211
|
type context_ValidationViolation = ValidationViolation;
|
|
1128
1212
|
type context_ValidationWixError = ValidationWixError;
|
|
1129
1213
|
declare const context_ValidationWixError: typeof ValidationWixError;
|
|
1214
|
+
type context__publicProvideHandlersType = _publicProvideHandlersType;
|
|
1130
1215
|
declare const context_provideHandlers: typeof provideHandlers;
|
|
1131
1216
|
declare namespace context {
|
|
1132
|
-
export { type context_AggregateDataItemsRequest as AggregateDataItemsRequest, type context_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context_AggregateDataItemsResponse as AggregateDataItemsResponse, type context_Aggregation as Aggregation, type context_AlternativeUri as AlternativeUri, type context_ArrayOptions as ArrayOptions, type context_ArrayOptionsTypeOptionsOneOf as ArrayOptionsTypeOptionsOneOf, type context_Average as Average, context_BadRequestWixError as BadRequestWixError, type context_Collection as Collection, type context_CollectionAlreadyExistsError as CollectionAlreadyExistsError, context_CollectionAlreadyExistsWixError as CollectionAlreadyExistsWixError, type context_CollectionCapabilities as CollectionCapabilities, type context_CollectionChangeNotSupported as CollectionChangeNotSupported, type context_CollectionChangeNotSupportedError as CollectionChangeNotSupportedError, context_CollectionChangeNotSupportedWixError as CollectionChangeNotSupportedWixError, type context_CollectionNotFoundError as CollectionNotFoundError, context_CollectionNotFoundWixError as CollectionNotFoundWixError, type context_Context as Context, type context_Count as Count, type context_CountDataItemsRequest as CountDataItemsRequest, type context_CountDataItemsResponse as CountDataItemsResponse, type context_CreateCollectionRequest as CreateCollectionRequest, type context_CreateCollectionResponse as CreateCollectionResponse, type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DataItemModificationResult as DataItemModificationResult, type context_DataItemModificationResultResultOneOf as DataItemModificationResultResultOneOf, context_DataOperation as DataOperation, type context_DeleteCollectionRequest as DeleteCollectionRequest, type context_DeleteCollectionResponse as DeleteCollectionResponse, type Error$1 as Error, type context_ExternalDatabaseSpiConfig as ExternalDatabaseSpiConfig, type context_Field as Field, type context_FieldCapabilities as FieldCapabilities, context_FieldType as FieldType, type context_FieldTypeOptionsOneOf as FieldTypeOptionsOneOf, type context_GetCapabilitiesRequest as GetCapabilitiesRequest, type context_GetCapabilitiesResponse as GetCapabilitiesResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Index as Index, type context_IndexField as IndexField, type context_IndexOptions as IndexOptions, type context_InsertDataItemReferencesRequest as InsertDataItemReferencesRequest, type context_InsertDataItemReferencesResponse as InsertDataItemReferencesResponse, type context_InsertDataItemsRequest as InsertDataItemsRequest, type context_InsertDataItemsResponse as InsertDataItemsResponse, type context_ItemAlreadyExistsError as ItemAlreadyExistsError, context_ItemAlreadyExistsWixError as ItemAlreadyExistsWixError, type context_ItemNotFoundError as ItemNotFoundError, context_ItemNotFoundWixError as ItemNotFoundWixError, type context_ListCollectionsRequest as ListCollectionsRequest, type context_ListCollectionsResponse as ListCollectionsResponse, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_MainEntity as MainEntity, type context_Max as Max, type context_Min as Min, type context_MultiReferenceOptions as MultiReferenceOptions, type context_ObjectField as ObjectField, type context_ObjectFieldTypeOptionsOneOf as ObjectFieldTypeOptionsOneOf, type context_ObjectOptions as ObjectOptions, type context_Operation as Operation, type context_OperationCalculateOneOf as OperationCalculateOneOf, context_Order as Order, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, context_PagingMode as PagingMode, type context_Permissions as Permissions, type context_QueryDataItemsRequest as QueryDataItemsRequest, type context_QueryDataItemsResponse as QueryDataItemsResponse, type context_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context_QueryDistinctValuesResponse as QueryDistinctValuesResponse, context_QueryOperator as QueryOperator, type context_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_ReferenceAlreadyExistsError as ReferenceAlreadyExistsError, context_ReferenceAlreadyExistsWixError as ReferenceAlreadyExistsWixError, type context_ReferenceId as ReferenceId, type context_ReferenceModificationResult as ReferenceModificationResult, type context_ReferenceModificationResultResultOneOf as ReferenceModificationResultResultOneOf, type context_ReferenceNotFoundError as ReferenceNotFoundError, context_ReferenceNotFoundWixError as ReferenceNotFoundWixError, type context_ReferencedItem as ReferencedItem, type context_ReferencedItemToInclude as ReferencedItemToInclude, type context_RemoveDataItemReferencesRequest as RemoveDataItemReferencesRequest, type context_RemoveDataItemReferencesResponse as RemoveDataItemReferencesResponse, type context_RemoveDataItemsRequest as RemoveDataItemsRequest, type context_RemoveDataItemsResponse as RemoveDataItemsResponse, type context_RemoveIndexRequest as RemoveIndexRequest, type context_RemoveIndexResponse as RemoveIndexResponse, context_Role as Role, type context_SingleReferenceOptions as SingleReferenceOptions, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SpiBaseUri as SpiBaseUri, context_Status as Status, type context_Sum as Sum, type context_TruncateDataItemsRequest as TruncateDataItemsRequest, type context_TruncateDataItemsResponse as TruncateDataItemsResponse, type context_UpdateCollectionRequest as UpdateCollectionRequest, type context_UpdateCollectionResponse as UpdateCollectionResponse, type context_UpdateDataItemsRequest as UpdateDataItemsRequest, type context_UpdateDataItemsResponse as UpdateDataItemsResponse, type context_ValidationError as ValidationError, type context_ValidationViolation as ValidationViolation, context_ValidationWixError as ValidationWixError, context_provideHandlers as provideHandlers };
|
|
1217
|
+
export { type context_AggregateDataItemsRequest as AggregateDataItemsRequest, type context_AggregateDataItemsRequestPagingMethodOneOf as AggregateDataItemsRequestPagingMethodOneOf, type context_AggregateDataItemsResponse as AggregateDataItemsResponse, type context_Aggregation as Aggregation, type context_AlternativeUri as AlternativeUri, type context_ArrayOptions as ArrayOptions, type context_ArrayOptionsTypeOptionsOneOf as ArrayOptionsTypeOptionsOneOf, type context_Average as Average, context_BadRequestWixError as BadRequestWixError, type context_Collection as Collection, type context_CollectionAlreadyExistsError as CollectionAlreadyExistsError, context_CollectionAlreadyExistsWixError as CollectionAlreadyExistsWixError, type context_CollectionCapabilities as CollectionCapabilities, type context_CollectionChangeNotSupported as CollectionChangeNotSupported, type context_CollectionChangeNotSupportedError as CollectionChangeNotSupportedError, context_CollectionChangeNotSupportedWixError as CollectionChangeNotSupportedWixError, type context_CollectionNotFoundError as CollectionNotFoundError, context_CollectionNotFoundWixError as CollectionNotFoundWixError, type context_Context as Context, type context_Count as Count, type context_CountDataItemsRequest as CountDataItemsRequest, type context_CountDataItemsResponse as CountDataItemsResponse, type context_CreateCollectionRequest as CreateCollectionRequest, type context_CreateCollectionResponse as CreateCollectionResponse, type context_CreateIndexRequest as CreateIndexRequest, type context_CreateIndexResponse as CreateIndexResponse, type context_CursorPaging as CursorPaging, type context_Cursors as Cursors, type context_DataItemModificationResult as DataItemModificationResult, type context_DataItemModificationResultResultOneOf as DataItemModificationResultResultOneOf, context_DataOperation as DataOperation, type context_DeleteCollectionRequest as DeleteCollectionRequest, type context_DeleteCollectionResponse as DeleteCollectionResponse, type Error$1 as Error, type context_ExternalDatabaseSpiConfig as ExternalDatabaseSpiConfig, type context_Field as Field, type context_FieldCapabilities as FieldCapabilities, context_FieldType as FieldType, type context_FieldTypeOptionsOneOf as FieldTypeOptionsOneOf, type context_GetCapabilitiesRequest as GetCapabilitiesRequest, type context_GetCapabilitiesResponse as GetCapabilitiesResponse, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_Index as Index, type context_IndexField as IndexField, type context_IndexOptions as IndexOptions, type context_InsertDataItemReferencesRequest as InsertDataItemReferencesRequest, type context_InsertDataItemReferencesResponse as InsertDataItemReferencesResponse, type context_InsertDataItemsRequest as InsertDataItemsRequest, type context_InsertDataItemsResponse as InsertDataItemsResponse, type context_ItemAlreadyExistsError as ItemAlreadyExistsError, context_ItemAlreadyExistsWixError as ItemAlreadyExistsWixError, type context_ItemNotFoundError as ItemNotFoundError, context_ItemNotFoundWixError as ItemNotFoundWixError, type context_ListCollectionsRequest as ListCollectionsRequest, type context_ListCollectionsResponse as ListCollectionsResponse, type context_ListIndexesRequest as ListIndexesRequest, type context_ListIndexesResponse as ListIndexesResponse, type context_MainEntity as MainEntity, type context_Max as Max, type context_Min as Min, type context_MultiReferenceOptions as MultiReferenceOptions, type context_ObjectField as ObjectField, type context_ObjectFieldTypeOptionsOneOf as ObjectFieldTypeOptionsOneOf, type context_ObjectOptions as ObjectOptions, type context_Operation as Operation, type context_OperationCalculateOneOf as OperationCalculateOneOf, context_Order as Order, type context_Paging as Paging, type context_PagingMetadataV2 as PagingMetadataV2, context_PagingMode as PagingMode, type context_Permissions as Permissions, type context_QueryDataItemsRequest as QueryDataItemsRequest, type context_QueryDataItemsResponse as QueryDataItemsResponse, type context_QueryDistinctValuesRequest as QueryDistinctValuesRequest, type context_QueryDistinctValuesRequestPagingMethodOneOf as QueryDistinctValuesRequestPagingMethodOneOf, type context_QueryDistinctValuesResponse as QueryDistinctValuesResponse, context_QueryOperator as QueryOperator, type context_QueryReferencedDataItemsRequest as QueryReferencedDataItemsRequest, type context_QueryReferencedDataItemsRequestPagingMethodOneOf as QueryReferencedDataItemsRequestPagingMethodOneOf, type context_QueryReferencedDataItemsResponse as QueryReferencedDataItemsResponse, type context_QueryV2 as QueryV2, type context_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type context_ReferenceAlreadyExistsError as ReferenceAlreadyExistsError, context_ReferenceAlreadyExistsWixError as ReferenceAlreadyExistsWixError, type context_ReferenceId as ReferenceId, type context_ReferenceModificationResult as ReferenceModificationResult, type context_ReferenceModificationResultResultOneOf as ReferenceModificationResultResultOneOf, type context_ReferenceNotFoundError as ReferenceNotFoundError, context_ReferenceNotFoundWixError as ReferenceNotFoundWixError, type context_ReferencedItem as ReferencedItem, type context_ReferencedItemToInclude as ReferencedItemToInclude, type context_RemoveDataItemReferencesRequest as RemoveDataItemReferencesRequest, type context_RemoveDataItemReferencesResponse as RemoveDataItemReferencesResponse, type context_RemoveDataItemsRequest as RemoveDataItemsRequest, type context_RemoveDataItemsResponse as RemoveDataItemsResponse, type context_RemoveIndexRequest as RemoveIndexRequest, type context_RemoveIndexResponse as RemoveIndexResponse, context_Role as Role, type context_SingleReferenceOptions as SingleReferenceOptions, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_SpiBaseUri as SpiBaseUri, context_Status as Status, type context_Sum as Sum, type context_TruncateDataItemsRequest as TruncateDataItemsRequest, type context_TruncateDataItemsResponse as TruncateDataItemsResponse, type context_UpdateCollectionRequest as UpdateCollectionRequest, type context_UpdateCollectionResponse as UpdateCollectionResponse, type context_UpdateDataItemsRequest as UpdateDataItemsRequest, type context_UpdateDataItemsResponse as UpdateDataItemsResponse, type context_ValidationError as ValidationError, type context_ValidationViolation as ValidationViolation, context_ValidationWixError as ValidationWixError, type context__publicProvideHandlersType as _publicProvideHandlersType, context_provideHandlers as provideHandlers, provideHandlers$1 as publicProvideHandlers };
|
|
1133
1218
|
}
|
|
1134
1219
|
|
|
1135
1220
|
export { context as externalDatabase };
|