@dejima/sdk 0.8.69 → 0.8.70

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
@@ -8,12 +8,22 @@
8
8
  * console.log(await dj.listIslands());
9
9
  * ```
10
10
  *
11
- * Alpha (0.x): fields may change until 1.0. The REST layer mirrors
12
- * `openapi.yaml`; the only hand-written ergonomic piece is the PTY `Session`.
11
+ * Alpha (0.x): fields may change until 1.0.
12
+ *
13
+ * THIS CLIENT IS HAND-WRITTEN, not generated. It is kept in step with
14
+ * `openapi.yaml` by hand, and it lags: methods return `any` rather than domain
15
+ * types, and a field documented in the spec does not reach you until someone
16
+ * adds it here. An earlier version of this comment said the REST layer
17
+ * "mirrors openapi.yaml", which reads as generated-and-therefore-current and
18
+ * is what a client author would reasonably rely on.
19
+ *
20
+ * If you want types, generate them from `openapi.yaml` directly — the spec is
21
+ * gated against the daemon on every commit (sdk/openapi_field_parity.py), so it
22
+ * is the trustworthy source. This client is not.
13
23
  */
14
24
  export { Client } from "./client.js";
15
25
  export type { ClientOptions } from "./client.js";
16
26
  export { Session } from "./session.js";
17
27
  export type { SessionEnvelope, WebSocketLike } from "./session.js";
18
28
  export { DejimaError } from "./errors.js";
19
- export declare const VERSION = "0.8.69";
29
+ export declare const VERSION = "0.8.70";
package/dist/index.js CHANGED
@@ -8,10 +8,20 @@
8
8
  * console.log(await dj.listIslands());
9
9
  * ```
10
10
  *
11
- * Alpha (0.x): fields may change until 1.0. The REST layer mirrors
12
- * `openapi.yaml`; the only hand-written ergonomic piece is the PTY `Session`.
11
+ * Alpha (0.x): fields may change until 1.0.
12
+ *
13
+ * THIS CLIENT IS HAND-WRITTEN, not generated. It is kept in step with
14
+ * `openapi.yaml` by hand, and it lags: methods return `any` rather than domain
15
+ * types, and a field documented in the spec does not reach you until someone
16
+ * adds it here. An earlier version of this comment said the REST layer
17
+ * "mirrors openapi.yaml", which reads as generated-and-therefore-current and
18
+ * is what a client author would reasonably rely on.
19
+ *
20
+ * If you want types, generate them from `openapi.yaml` directly — the spec is
21
+ * gated against the daemon on every commit (sdk/openapi_field_parity.py), so it
22
+ * is the trustworthy source. This client is not.
13
23
  */
14
24
  export { Client } from "./client.js";
15
25
  export { Session } from "./session.js";
16
26
  export { DejimaError } from "./errors.js";
17
- export const VERSION = "0.8.69";
27
+ export const VERSION = "0.8.70";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dejima/sdk",
3
- "version": "0.8.69",
3
+ "version": "0.8.70",
4
4
  "description": "TypeScript/JavaScript client for the Dejima API — run a fleet of AI coding agents on hardware you own.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",