@xylex-group/athena 1.5.0 → 1.6.0

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/react.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { p as AthenaGatewayHookConfig, q as AthenaGatewayHookResult } from './errors-C4GJaFI_.cjs';
2
- export { u as AthenaDeletePayload, r as AthenaFetchPayload, A as AthenaGatewayCallOptions, i as AthenaGatewayError, o as AthenaGatewayErrorCode, e as AthenaGatewayErrorDetails, v as AthenaGatewayResponse, s as AthenaInsertPayload, f as AthenaRpcCallOptions, k as AthenaRpcFilter, l as AthenaRpcFilterOperator, m as AthenaRpcOrder, n as AthenaRpcPayload, t as AthenaUpdatePayload, j as isAthenaGatewayError } from './errors-C4GJaFI_.cjs';
1
+ import { p as AthenaGatewayHookConfig, q as AthenaGatewayHookResult } from './errors-DQerAaXC.cjs';
2
+ export { r as AthenaDeletePayload, s as AthenaFetchPayload, e as AthenaGatewayCallOptions, h as AthenaGatewayError, i as AthenaGatewayErrorCode, f as AthenaGatewayErrorDetails, t as AthenaGatewayResponse, u as AthenaInsertPayload, g as AthenaRpcCallOptions, j as AthenaRpcFilter, k as AthenaRpcFilterOperator, l as AthenaRpcOrder, m as AthenaRpcPayload, v as AthenaUpdatePayload, o as isAthenaGatewayError } from './errors-DQerAaXC.cjs';
3
3
  import * as react from 'react';
4
4
  import { ReactNode } from 'react';
5
5
 
package/dist/react.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { p as AthenaGatewayHookConfig, q as AthenaGatewayHookResult } from './errors-C4GJaFI_.js';
2
- export { u as AthenaDeletePayload, r as AthenaFetchPayload, A as AthenaGatewayCallOptions, i as AthenaGatewayError, o as AthenaGatewayErrorCode, e as AthenaGatewayErrorDetails, v as AthenaGatewayResponse, s as AthenaInsertPayload, f as AthenaRpcCallOptions, k as AthenaRpcFilter, l as AthenaRpcFilterOperator, m as AthenaRpcOrder, n as AthenaRpcPayload, t as AthenaUpdatePayload, j as isAthenaGatewayError } from './errors-C4GJaFI_.js';
1
+ import { p as AthenaGatewayHookConfig, q as AthenaGatewayHookResult } from './errors-DQerAaXC.js';
2
+ export { r as AthenaDeletePayload, s as AthenaFetchPayload, e as AthenaGatewayCallOptions, h as AthenaGatewayError, i as AthenaGatewayErrorCode, f as AthenaGatewayErrorDetails, t as AthenaGatewayResponse, u as AthenaInsertPayload, g as AthenaRpcCallOptions, j as AthenaRpcFilter, k as AthenaRpcFilterOperator, l as AthenaRpcOrder, m as AthenaRpcPayload, v as AthenaUpdatePayload, o as isAthenaGatewayError } from './errors-DQerAaXC.js';
3
3
  import * as react from 'react';
4
4
  import { ReactNode } from 'react';
5
5
 
package/package.json CHANGED
@@ -8,6 +8,7 @@
8
8
  "blessed": "^0.1.81",
9
9
  "chalk": "^4.1.2",
10
10
  "cron-parser": "^4.9.0",
11
+ "pg": "^8.16.0",
11
12
  "use-sync-external-store": "^1.5.0",
12
13
  "uuid": "^9.0.1"
13
14
  },
@@ -15,6 +16,7 @@
15
16
  "devDependencies": {
16
17
  "@types/blessed": "^0.1.25",
17
18
  "@types/node": "^20.10.5",
19
+ "@types/pg": "^8.15.1",
18
20
  "@types/react": "^18.3.12",
19
21
  "@types/react-test-renderer": "^18.3.1",
20
22
  "@types/uuid": "^9.0.7",
@@ -32,14 +34,14 @@
32
34
  },
33
35
  "exports": {
34
36
  ".": {
35
- "types": "./dist/index.d.ts",
36
37
  "import": "./dist/index.js",
37
- "require": "./dist/index.cjs"
38
+ "require": "./dist/index.cjs",
39
+ "types": "./dist/index.d.ts"
38
40
  },
39
41
  "./react": {
40
- "types": "./dist/react.d.ts",
41
42
  "import": "./dist/react.js",
42
- "require": "./dist/react.cjs"
43
+ "require": "./dist/react.cjs",
44
+ "types": "./dist/react.d.ts"
43
45
  }
44
46
  },
45
47
  "files": [
@@ -88,7 +90,7 @@
88
90
  ]
89
91
  }
90
92
  },
91
- "version": "1.5.0",
93
+ "version": "1.6.0",
92
94
  "scripts": {
93
95
  "build": "tsup",
94
96
  "check:all": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
@@ -104,6 +106,7 @@
104
106
  "lint:fix": "pnpm lint -- --fix",
105
107
  "publish:token": "node scripts/publish.js",
106
108
  "test": "node --import tsx --test test/*.test.ts",
109
+ "test:integration:postgres": "node scripts/run-postgres-introspection-test.mjs",
107
110
  "test:watch": "node --import tsx --test --watch test/*.test.ts",
108
111
  "typecheck": "tsc -p tsconfig.typecheck.json"
109
112
  }