@dpuse/dpuse-shared 0.3.606 → 0.3.608
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.
|
@@ -11,6 +11,10 @@ interface ConnectionConfig extends ComponentConfig {
|
|
|
11
11
|
lastVerifiedAt: number;
|
|
12
12
|
notation: string | undefined;
|
|
13
13
|
}
|
|
14
|
+
export type ConnectionLocalisedConfig = Omit<ConnectionConfig, 'label' | 'description'> & {
|
|
15
|
+
label: string;
|
|
16
|
+
description: string;
|
|
17
|
+
};
|
|
14
18
|
/**
|
|
15
19
|
* Connection authorisation configuration.
|
|
16
20
|
*/
|
|
@@ -214,5 +214,5 @@ type ConnectorCategoryLocalisedConfig = Omit<ConnectorCategoryConfig, 'label'> &
|
|
|
214
214
|
declare const constructConnectorCategoryConfig: (id: string, localeId?: import('../../locale').LocaleCode) => ConnectorCategoryLocalisedConfig;
|
|
215
215
|
export { connectorConfigSchema } from './connectorConfig.schema';
|
|
216
216
|
export { constructConnectorCategoryConfig };
|
|
217
|
-
export type { ConnectionConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
|
|
217
|
+
export type { ConnectionConfig, ConnectionLocalisedConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
|
|
218
218
|
export type { AuditObjectContentOptions1, AuditObjectContentResult1, AuditObjectContentOptions, AuditObjectContentResult, ConnectorConfig, ConnectorLocalisedConfig, ConnectorUsageId, CreateObjectOptions, DropObjectOptions, FindObjectOptions, FindObjectResult, GetReadableStreamOptions, GetRecordOptions, GetRecordResult, ListNodesOptions, ListNodesResult, PreviewObjectOptions, RemoveRecordsOptions, RetrieveChunksOptions, RetrieveRecordsOptions, RetrieveRecordsSummary, UpsertRecordsOptions };
|
package/package.json
CHANGED