@datapos/datapos-shared 0.3.417 → 0.3.418

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.
@@ -25,7 +25,7 @@ interface ConnectorInterface extends Component {
25
25
  upsertRecords?(connector: ConnectorInterface, options: UpsertRecordsOptions): Promise<void>;
26
26
  }
27
27
  /** Class constructor that builds a ConnectorInterface. */
28
- type ConnectorConstructor = new (config: ConnectorConfig, toolConfigs: ToolConfig[]) => ConnectorInterface;
28
+ type ConnectorConstructor = new (toolConfigs: ToolConfig[]) => ConnectorInterface;
29
29
  /** Operation names a connector may support. */
30
30
  type ConnectorOperationName = InferOutput<typeof connectorOperationNameSchema>;
31
31
  /** Connector data pipeline usage identifiers. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.417",
3
+ "version": "0.3.418",
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>",