@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 +13 -3
- package/dist/index.js +13 -3
- package/package.json +1 -1
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.
|
|
12
|
-
*
|
|
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.
|
|
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.
|
|
12
|
-
*
|
|
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.
|
|
27
|
+
export const VERSION = "0.8.70";
|
package/package.json
CHANGED