byok-sdk 0.3.0 → 0.4.1

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/README.md CHANGED
@@ -4,13 +4,13 @@ The complete BYOK dispatch SDK. It groups the six public dispatch packages by
4
4
  their ownership boundary:
5
5
 
6
6
  ```ts
7
- import { client, cloud, cloudPostgres, core, protocol, server } from 'byok-sdk';
7
+ import { client, cloud, cloudDataplane, core, protocol, server } from 'byok-sdk';
8
8
  ```
9
9
 
10
10
  - `client`: the end-user daemon and local runtime adapters.
11
11
  - `server`: the self-hosted in-memory coordinator.
12
12
  - `cloud`: stateless hosted HTTP handlers and in-memory composition.
13
- - `cloudPostgres`: durable Postgres + R2 composition and migrations.
13
+ - `cloudDataplane`: durable Postgres + R2 composition and migrations.
14
14
  - `core`: tenant-first platform contracts and store ports.
15
15
  - `protocol`: the frozen v1 device wire contract.
16
16
 
@@ -23,4 +23,4 @@ composition examples and operational boundaries.
23
23
 
24
24
  ## License
25
25
 
26
- MIT. Node.js 22.19.0 or newer.
26
+ MIT. Node.js 22.22.0 or newer.
package/dist/index.d.ts CHANGED
@@ -9,4 +9,4 @@ export * as protocol from '@byok-sdk/protocol';
9
9
  export * as client from '@byok-sdk/client';
10
10
  export * as server from '@byok-sdk/server';
11
11
  export * as cloud from '@byok-sdk/cloud';
12
- export * as cloudPostgres from '@byok-sdk/cloud-postgres';
12
+ export * as cloudDataplane from '@byok-sdk/cloud-dataplane';
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import * as server from '@byok-sdk/server';
8
8
  export { server };
9
9
  import * as cloud from '@byok-sdk/cloud';
10
10
  export { cloud };
11
- import * as cloudPostgres from '@byok-sdk/cloud-postgres';
12
- export { cloudPostgres };
11
+ import * as cloudDataplane from '@byok-sdk/cloud-dataplane';
12
+ export { cloudDataplane };
13
13
  //# sourceMappingURL=index.js.map
14
14
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "byok-sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Bring-your-own-agent SDK for local daemons, self-hosted coordination, and hosted multi-tenant BYOK infrastructure",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "homepage": "https://github.com/Ancienttwo/byok-sdk#readme",
16
16
  "engines": {
17
- "node": ">=22.19.0"
17
+ "node": ">=22.22.0"
18
18
  },
19
19
  "sideEffects": false,
20
20
  "main": "./dist/index.js",
@@ -35,14 +35,6 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "dependencies": {
39
- "@byok-sdk/client": "0.3.0",
40
- "@byok-sdk/cloud": "0.3.0",
41
- "@byok-sdk/cloud-postgres": "0.3.0",
42
- "@byok-sdk/core": "0.3.0",
43
- "@byok-sdk/protocol": "0.3.0",
44
- "@byok-sdk/server": "0.3.0"
45
- },
46
38
  "scripts": {
47
39
  "build": "tsup && tsc -p tsconfig.build.json",
48
40
  "dev": "tsup --watch",
@@ -50,5 +42,13 @@
50
42
  "test:watch": "vitest",
51
43
  "typecheck": "tsc --noEmit",
52
44
  "clean": "rm -rf dist"
45
+ },
46
+ "dependencies": {
47
+ "@byok-sdk/client": "0.4.0",
48
+ "@byok-sdk/cloud": "0.4.0",
49
+ "@byok-sdk/cloud-dataplane": "0.4.0",
50
+ "@byok-sdk/core": "0.4.0",
51
+ "@byok-sdk/protocol": "0.4.0",
52
+ "@byok-sdk/server": "0.4.0"
53
53
  }
54
- }
54
+ }