@telorun/sql 0.21.1 → 0.21.3

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/dist/index.d.ts CHANGED
@@ -1,3 +1,9 @@
1
1
  export { SqlConnectionBase } from "./sql-connection-base.js";
2
2
  export { quoteAnsiIdentifier, type PlaceholderStyle, type SqlConnection, type SqlDialect, } from "./sql-connection.js";
3
3
  export { isSqlConnection, resolveSqlConnection } from "./sql-connection-ref.js";
4
+ export * as SqlCommandController from "./sql-command-controller.js";
5
+ export * as SqlMigrationController from "./sql-migration-controller.js";
6
+ export * as SqlMigrationsController from "./sql-migrations-controller.js";
7
+ export * as SqlQueryController from "./sql-query-controller.js";
8
+ export * as SqlSelectionController from "./sql-selection-controller.js";
9
+ export * as SqlTransactionController from "./sql-transaction-controller.js";
package/dist/index.js CHANGED
@@ -1,3 +1,12 @@
1
1
  export { SqlConnectionBase } from "./sql-connection-base.js";
2
2
  export { quoteAnsiIdentifier, } from "./sql-connection.js";
3
3
  export { isSqlConnection, resolveSqlConnection } from "./sql-connection-ref.js";
4
+ // Controller entry points. Each kind's `controllers:` candidate selects one of
5
+ // these by PURL fragment, so the whole module is one bundle and its shared
6
+ // state is one module scope.
7
+ export * as SqlCommandController from "./sql-command-controller.js";
8
+ export * as SqlMigrationController from "./sql-migration-controller.js";
9
+ export * as SqlMigrationsController from "./sql-migrations-controller.js";
10
+ export * as SqlQueryController from "./sql-query-controller.js";
11
+ export * as SqlSelectionController from "./sql-selection-controller.js";
12
+ export * as SqlTransactionController from "./sql-transaction-controller.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telorun/sql",
3
- "version": "0.21.1",
3
+ "version": "0.21.3",
4
4
  "description": "Telo SQL module - SQL database resource kinds for Telo manifests.",
5
5
  "keywords": [
6
6
  "telo",
@@ -43,7 +43,7 @@
43
43
  "@types/node": "^20.0.0",
44
44
  "esbuild": "^0.25.12",
45
45
  "typescript": "^5.0.0",
46
- "@telorun/sdk": "0.75.0"
46
+ "@telorun/sdk": "0.77.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@telorun/sdk": "*"
package/src/index.ts CHANGED
@@ -6,3 +6,13 @@ export {
6
6
  type SqlDialect,
7
7
  } from "./sql-connection.js";
8
8
  export { isSqlConnection, resolveSqlConnection } from "./sql-connection-ref.js";
9
+
10
+ // Controller entry points. Each kind's `controllers:` candidate selects one of
11
+ // these by PURL fragment, so the whole module is one bundle and its shared
12
+ // state is one module scope.
13
+ export * as SqlCommandController from "./sql-command-controller.js";
14
+ export * as SqlMigrationController from "./sql-migration-controller.js";
15
+ export * as SqlMigrationsController from "./sql-migrations-controller.js";
16
+ export * as SqlQueryController from "./sql-query-controller.js";
17
+ export * as SqlSelectionController from "./sql-selection-controller.js";
18
+ export * as SqlTransactionController from "./sql-transaction-controller.js";