@unyt/datex 0.0.6 → 0.0.8

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.
Files changed (62) hide show
  1. package/README.md +6 -4
  2. package/esm/_dnt.shims.d.ts +1 -1
  3. package/esm/datex-core/datex_core_js.internal.d.ts +283 -212
  4. package/esm/datex-core/datex_core_js.internal.d.ts.map +1 -1
  5. package/esm/datex-core/datex_core_js.internal.js +857 -571
  6. package/esm/datex-core/datex_core_js.wasm +0 -0
  7. package/esm/default.d.ts +12 -0
  8. package/esm/default.d.ts.map +1 -0
  9. package/esm/default.js +23 -0
  10. package/esm/deno.json +30 -6
  11. package/esm/dif/builders.d.ts +11 -0
  12. package/esm/dif/builders.d.ts.map +1 -0
  13. package/esm/dif/builders.js +23 -0
  14. package/esm/dif/core.d.ts +35 -0
  15. package/esm/dif/core.d.ts.map +1 -0
  16. package/esm/dif/core.js +50 -0
  17. package/esm/dif/definitions.d.ts +81 -0
  18. package/esm/dif/definitions.d.ts.map +1 -0
  19. package/esm/dif/definitions.js +19 -0
  20. package/esm/dif/dif-handler.d.ts +217 -0
  21. package/esm/dif/dif-handler.d.ts.map +1 -0
  22. package/esm/dif/dif-handler.js +689 -0
  23. package/esm/dif/display.d.ts +8 -0
  24. package/esm/dif/display.d.ts.map +1 -0
  25. package/esm/dif/display.js +72 -0
  26. package/esm/dif/mod.d.ts +5 -0
  27. package/esm/dif/mod.d.ts.map +1 -0
  28. package/esm/dif/mod.js +4 -0
  29. package/esm/mod.d.ts +4 -6
  30. package/esm/mod.d.ts.map +1 -1
  31. package/esm/mod.js +4 -24
  32. package/esm/network/com-hub.d.ts +1 -0
  33. package/esm/network/com-hub.d.ts.map +1 -1
  34. package/esm/network/com-hub.js +3 -0
  35. package/esm/network/interface-impls/base.d.ts +11 -0
  36. package/esm/network/interface-impls/base.d.ts.map +1 -0
  37. package/esm/network/interface-impls/base.js +21 -0
  38. package/esm/network/interface-impls/serial.d.ts +6 -0
  39. package/esm/network/interface-impls/serial.d.ts.map +1 -0
  40. package/esm/network/interface-impls/serial.js +6 -0
  41. package/esm/network/interface-impls/webrtc.d.ts +12 -0
  42. package/esm/network/interface-impls/webrtc.d.ts.map +1 -0
  43. package/esm/network/interface-impls/webrtc.js +24 -0
  44. package/esm/network/interface-impls/websocket-client.d.ts +6 -0
  45. package/esm/network/interface-impls/websocket-client.d.ts.map +1 -0
  46. package/esm/network/interface-impls/websocket-client.js +6 -0
  47. package/esm/network/interface-impls/websocket-server-deno.d.ts +9 -0
  48. package/esm/network/interface-impls/websocket-server-deno.d.ts.map +1 -0
  49. package/esm/network/interface-impls/websocket-server-deno.js +45 -0
  50. package/esm/network/mod.d.ts +3 -0
  51. package/esm/network/mod.d.ts.map +1 -0
  52. package/esm/network/mod.js +2 -0
  53. package/esm/refs/ref.d.ts +27 -0
  54. package/esm/refs/ref.d.ts.map +1 -0
  55. package/esm/refs/ref.js +58 -0
  56. package/esm/runtime/runtime.d.ts +97 -5
  57. package/esm/runtime/runtime.d.ts.map +1 -1
  58. package/esm/runtime/runtime.js +69 -13
  59. package/esm/runtime/special-core-types.d.ts +10 -0
  60. package/esm/runtime/special-core-types.d.ts.map +1 -0
  61. package/esm/runtime/special-core-types.js +51 -0
  62. package/package.json +19 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # DATEX Core JS
2
2
 
3
+ > Check out our specification at [datex.unyt.org](https://datex.unyt.org).
4
+
3
5
  [![Twitter badge][]][Twitter link] [![Discord badge][]][Discord link]
4
6
 
5
7
  <img align="right" src="assets/datex-logo-light.svg" width="150px" alt="The DATEX logo">
@@ -10,11 +12,11 @@ high-level API for working with DATEX in JavaScript and TypeScript. DATEX is
10
12
  developed and maintained by the [unyt.org](https://unyt.org) organization and
11
13
  community.
12
14
 
13
- You can find the legacy version of the DATEX Core library (implemented in
14
- TypeScript) at
15
+ You can find the legacy version of the DATEX Core library _(implemented in
16
+ TypeScript)_ at
15
17
  [unyt-org/datex-core-js-legacy](https://github.com/unyt-org/datex-core-js-legacy).
16
- The legacy version is still actively maintained and supported until this library
17
- reaches feature parity.
18
+ The legacy version is still maintained and supported until this library reaches
19
+ feature parity.
18
20
 
19
21
  ## Contributing
20
22
 
@@ -8,7 +8,7 @@ import { fetch, File, FormData, Headers, Request, Response } from "undici";
8
8
  export { fetch, File, FormData, Headers, Request, Response, type BodyInit, type HeadersInit, type ReferrerPolicy, type RequestInit, type RequestCache, type RequestMode, type RequestRedirect, type ResponseInit } from "undici";
9
9
  export { WeakRef, type WeakRefConstructor } from "@deno/sham-weakref";
10
10
  export { default as WebSocket } from "ws";
11
- export declare const dntGlobalThis: Omit<typeof globalThis, "WeakRef" | "fetch" | "Request" | "Response" | "FormData" | "Headers" | "File" | "crypto" | "setInterval" | "setTimeout" | "Deno" | "alert" | "confirm" | "prompt" | "WebSocket"> & {
11
+ export declare const dntGlobalThis: Omit<typeof globalThis, "WeakRef" | "fetch" | "FormData" | "Headers" | "Request" | "Response" | "WebSocket" | "File" | "crypto" | "setInterval" | "setTimeout" | "Deno" | "alert" | "confirm" | "prompt"> & {
12
12
  Deno: typeof Deno;
13
13
  crypto: import("@deno/shim-crypto").Crypto;
14
14
  alert: (message?: any) => void;