@datapos/datapos-shared 0.3.363 → 0.3.366

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.
@@ -22,7 +22,7 @@ interface ConnectionConfig extends ComponentConfig {
22
22
  interface ConnectionNodeConfig {
23
23
  childCount?: number;
24
24
  columnsConfigs?: ConnectionColumnConfig[];
25
- extension?: string;
25
+ extension: string | undefined;
26
26
  folderPath: string;
27
27
  handle?: DPAFileSystemFileHandle;
28
28
  id: string;
@@ -17,7 +17,7 @@ type ConnectorLocalisedConfig = Omit<ConnectorConfig, 'label' | 'description'> &
17
17
  };
18
18
  /** Connector runtime interface. */
19
19
  interface Connector extends Component {
20
- abortController?: AbortController;
20
+ abortController: AbortController | undefined;
21
21
  readonly config: ConnectorConfig;
22
22
  readonly connectionConfig: ConnectionConfig;
23
23
  readonly toolConfigs: ToolConfig[];
@@ -11,7 +11,7 @@ export { componentConfigSchema } from './component';
11
11
  /** Interfaces/Types Component - Connector */
12
12
  export type { AuditContentResult, AuditContentSettings, Connector, ConnectorCallbackData, ConnectorConfig, ConnectorLocalisedConfig, ConnectorOperationSettings, CreateSettings, DropSettings, FindResult, FindSettings, GetReadableStreamResult, GetReadableStreamSettings, GetRecordResult, GetRecordSettings, InitialiseSettings, ListResult, ListSettings, PreviewResult, PreviewSettings, RemoveSettings, RetrieveChunksSettings, RetrieveChunksSummary, RetrieveRecordsResult, RetrieveRecordsSettings, RetrieveRecordsSummary, UpsertSettings } from './component/connector';
13
13
  /** Interfaces/Types - Connection */
14
- export type { ConnectionAuthorizationConfig, ConnectionColumnConfig, ConnectionConfig, ConnectionNodeConfig, DPAFileSystemFileHandle, Encoding, StorageTypeId, UsageTypeId } from './component/connector/connection';
14
+ export type { ConnectionConfig, ConnectionNodeConfig } from './component/connector/connection';
15
15
  /** Schemas - Connector */
16
16
  export { connectorConfigSchema } from './component/connector/connectorConfig.schema';
17
17
  /** Interfaces/Types - Context. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.363",
3
+ "version": "0.3.366",
4
4
  "description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",