@datapos/datapos-shared 0.3.416 → 0.3.417

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.
@@ -2,13 +2,12 @@ import { InferOutput } from 'valibot';
2
2
  import { Component } from '..';
3
3
  import { ToolConfig } from '../tool';
4
4
  import { ValueDelimiterId } from '../dataView';
5
- import { ConnectionConfig, ConnectionDescription, ConnectionNodeConfig } from './connection';
5
+ import { ConnectionDescription, ConnectionNodeConfig } from './connection';
6
6
  import { connectorCategoryConfigSchema, connectorConfigSchema, connectorOperationNameSchema, connectorUsageIdSchema } from './connectorConfig.schema';
7
7
  /** Connector runtime interface ans constructor. */
8
8
  interface ConnectorInterface extends Component {
9
9
  abortController: AbortController | undefined;
10
10
  readonly config: ConnectorConfig;
11
- readonly connectionConfig: ConnectionConfig;
12
11
  readonly toolConfigs: ToolConfig[];
13
12
  abortOperation?(connector: ConnectorInterface): void;
14
13
  authenticateConnection?(accountId: string, windowCenterX: number, windowCenterY: number): Window;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.416",
3
+ "version": "0.3.417",
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>",