@hasna/connectors 1.4.3 → 1.4.5

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.
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "commander": "^12.1.0",
44
44
  "chalk": "^5.3.0",
45
- "@aws-sdk/client-sesv2": "^3.0.0"
45
+ "@aws-sdk/client-sesv2": "3.1114.0"
46
46
  },
47
47
  "engines": {
48
48
  "bun": ">=1.0.0"
@@ -47,7 +47,7 @@
47
47
  "chalk": "^5.3.0",
48
48
  "commander": "^12.1.0",
49
49
  "dotenv": "^16.4.5",
50
- "hono": "^4.11.0"
50
+ "hono": "4.13.3"
51
51
  },
52
52
  "engines": {
53
53
  "bun": ">=1.0.0"
@@ -3,8 +3,11 @@ export { SqliteAdapter } from "./sqlite-adapter.js";
3
3
  export type Database = SqliteAdapter;
4
4
  /**
5
5
  * Get the connectors home directory.
6
- * New default: ~/.hasna/connectors/
7
- * Auto-migrates from historical ~/.connectors/ and ~/.connect/ trees.
6
+ * Resolved through @hasna/paths (XDG / macOS home layout) with a gated
7
+ * legacy adoption: `~/.hasna/connectors` stays the effective home until the
8
+ * store is migrated to the XDG data home or HASNA_DATA_HOME is set. The
9
+ * exact-app HASNA_CONNECTORS_DIR override wins. Auto-migrates from
10
+ * historical ~/.connectors/ and ~/.connect/ trees into the effective home.
8
11
  */
9
12
  export declare function getConnectorsHome(): string;
10
13
  export declare function getDatabase(path?: string): SqliteAdapter;