@unyt/datex 0.0.13 → 0.0.15
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/esm/datex-web/datex_web.d.ts +93 -2
- package/esm/datex-web/datex_web.internal.d.ts +221 -188
- package/esm/datex-web/datex_web.internal.d.ts.map +1 -1
- package/esm/datex-web/datex_web.internal.js +453 -385
- package/esm/datex-web/datex_web.wasm +0 -0
- package/esm/datex-web/types/decompiler/options.d.ts +17 -0
- package/esm/datex-web/types/decompiler/options.d.ts.map +1 -0
- package/esm/datex-web/types/decompiler/options.js +4 -0
- package/esm/datex-web/types/disassembler/options.d.ts +6 -0
- package/esm/datex-web/types/disassembler/options.d.ts.map +1 -0
- package/esm/datex-web/types/disassembler/options.js +4 -0
- package/esm/datex-web/types/network/com_hub/managers/socket_manager.d.ts +9 -0
- package/esm/datex-web/types/network/com_hub/managers/socket_manager.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_hub/managers/socket_manager.js +4 -0
- package/esm/datex-web/types/network/com_hub/metadata.d.ts +20 -0
- package/esm/datex-web/types/network/com_hub/metadata.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_hub/metadata.js +4 -0
- package/esm/datex-web/types/network/com_hub/mod.d.ts +6 -0
- package/esm/datex-web/types/network/com_hub/mod.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_hub/mod.js +4 -0
- package/esm/datex-web/types/network/com_hub/network_tracing.d.ts +23 -0
- package/esm/datex-web/types/network/com_hub/network_tracing.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_hub/network_tracing.js +4 -0
- package/esm/datex-web/types/network/com_hub.d.ts +8 -0
- package/esm/datex-web/types/network/com_hub.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_hub.js +4 -0
- package/esm/datex-web/types/network/com_interfaces/com_interface/properties.d.ts +27 -0
- package/esm/datex-web/types/network/com_interfaces/com_interface/properties.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_interfaces/com_interface/properties.js +4 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/http_common.d.ts +10 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/http_common.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/http_common.js +4 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/websocket/websocket_server.d.ts +6 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/websocket/websocket_server.d.ts.map +1 -0
- package/esm/datex-web/types/network/com_interfaces/default_setup_data/websocket/websocket_server.js +4 -0
- package/esm/datex-web/types/runtime/config.d.ts +16 -0
- package/esm/datex-web/types/runtime/config.d.ts.map +1 -0
- package/esm/datex-web/types/runtime/config.js +4 -0
- package/esm/default.d.ts.map +1 -1
- package/esm/default.js +2 -0
- package/esm/deno.json +73 -17
- package/esm/dif/core.d.ts +36 -39
- package/esm/dif/core.d.ts.map +1 -1
- package/esm/dif/core.js +33 -53
- package/esm/dif/dif-handler.d.ts +58 -101
- package/esm/dif/dif-handler.d.ts.map +1 -1
- package/esm/dif/dif-handler.js +417 -345
- package/esm/dif/display.d.ts +14 -5
- package/esm/dif/display.d.ts.map +1 -1
- package/esm/dif/display.js +89 -39
- package/esm/dif/helpers/mod.d.ts +6 -0
- package/esm/dif/helpers/mod.d.ts.map +1 -0
- package/esm/dif/helpers/mod.js +5 -0
- package/esm/dif/helpers/typed-integer.d.ts +14 -0
- package/esm/dif/helpers/typed-integer.d.ts.map +1 -0
- package/esm/dif/helpers/typed-integer.js +37 -0
- package/esm/dif/js-lib.d.ts +14 -1
- package/esm/dif/js-lib.d.ts.map +1 -1
- package/esm/dif/js-lib.js +19 -1
- package/esm/dif/mod.d.ts +2 -2
- package/esm/dif/mod.d.ts.map +1 -1
- package/esm/dif/mod.js +2 -2
- package/esm/dif/type-registry.d.ts +30 -21
- package/esm/dif/type-registry.d.ts.map +1 -1
- package/esm/dif/type-registry.js +45 -33
- package/esm/dif/types/mod.d.ts +9 -0
- package/esm/dif/types/mod.d.ts.map +1 -0
- package/esm/dif/types/mod.js +8 -0
- package/esm/dif/types/type.d.ts +91 -0
- package/esm/dif/types/type.d.ts.map +1 -0
- package/esm/dif/types/type.js +33 -0
- package/esm/dif/types/update.d.ts +63 -0
- package/esm/dif/types/update.d.ts.map +1 -0
- package/esm/dif/types/update.js +16 -0
- package/esm/dif/types/value.d.ts +62 -0
- package/esm/dif/types/value.d.ts.map +1 -0
- package/esm/dif/types/value.js +1 -0
- package/esm/dif/update.d.ts +20 -0
- package/esm/dif/update.d.ts.map +1 -0
- package/esm/dif/update.js +41 -0
- package/esm/dif/utils.d.ts +8 -0
- package/esm/dif/utils.d.ts.map +1 -0
- package/esm/dif/utils.js +67 -0
- package/esm/lib/js-core-types/array.d.ts +3 -0
- package/esm/lib/js-core-types/array.d.ts.map +1 -0
- package/esm/lib/js-core-types/array.js +175 -0
- package/esm/lib/js-core-types/map.d.ts +15 -0
- package/esm/lib/js-core-types/map.d.ts.map +1 -0
- package/esm/lib/js-core-types/map.js +88 -0
- package/esm/lib/js-core-types/mod.d.ts +8 -0
- package/esm/lib/js-core-types/mod.d.ts.map +1 -0
- package/esm/lib/js-core-types/mod.js +7 -0
- package/esm/lib/mod.d.ts +8 -0
- package/esm/lib/mod.d.ts.map +1 -0
- package/esm/lib/mod.js +7 -0
- package/esm/lib/special-core-types/endpoint.d.ts.map +1 -1
- package/esm/lib/special-core-types/mod.d.ts +9 -0
- package/esm/lib/special-core-types/mod.d.ts.map +1 -0
- package/esm/lib/special-core-types/mod.js +8 -0
- package/esm/lib/special-core-types/range.d.ts +26 -0
- package/esm/lib/special-core-types/range.d.ts.map +1 -0
- package/esm/lib/special-core-types/range.js +46 -0
- package/esm/lib/special-core-types/tagged.d.ts +17 -0
- package/esm/lib/special-core-types/tagged.d.ts.map +1 -0
- package/esm/lib/special-core-types/tagged.js +37 -0
- package/esm/lib/special-core-types/undefined.d.ts +7 -0
- package/esm/lib/special-core-types/undefined.d.ts.map +1 -0
- package/esm/lib/special-core-types/undefined.js +28 -0
- package/esm/mod.d.ts +3 -1
- package/esm/mod.d.ts.map +1 -1
- package/esm/mod.js +3 -1
- package/esm/network/com-hub.d.ts +28 -1
- package/esm/network/com-hub.d.ts.map +1 -1
- package/esm/network/com-hub.js +6 -2
- package/esm/network/interfaces/websocket-server-base.d.ts +1 -1
- package/esm/network/interfaces/websocket-server-base.d.ts.map +1 -1
- package/esm/network/interfaces/websocket-server-base.js +8 -7
- package/esm/network/interfaces/websocket-server-deno.d.ts +1 -1
- package/esm/network/interfaces/websocket-server-deno.d.ts.map +1 -1
- package/esm/repl/mod.d.ts +8 -0
- package/esm/repl/mod.d.ts.map +1 -0
- package/esm/repl/mod.js +31 -0
- package/esm/runtime/runtime.d.ts +43 -18
- package/esm/runtime/runtime.d.ts.map +1 -1
- package/esm/runtime/runtime.js +55 -32
- package/esm/{refs/ref.d.ts → shared-container/base-shared-container.d.ts} +13 -5
- package/esm/shared-container/base-shared-container.d.ts.map +1 -0
- package/esm/shared-container/base-shared-container.js +95 -0
- package/esm/shared-container/mod.d.ts +36 -0
- package/esm/shared-container/mod.d.ts.map +1 -0
- package/esm/shared-container/mod.js +29 -0
- package/esm/shared-container/owned.d.ts +33 -0
- package/esm/shared-container/owned.d.ts.map +1 -0
- package/esm/shared-container/owned.js +60 -0
- package/esm/shared-container/reference.d.ts +31 -0
- package/esm/shared-container/reference.d.ts.map +1 -0
- package/esm/shared-container/reference.js +64 -0
- package/esm/utils/devtools-formatter.js +24 -2
- package/esm/utils/option.d.ts +17 -0
- package/esm/utils/option.d.ts.map +1 -0
- package/esm/utils/option.js +54 -0
- package/package.json +1 -1
- package/esm/dif/definitions.d.ts +0 -134
- package/esm/dif/definitions.d.ts.map +0 -1
- package/esm/dif/definitions.js +0 -38
- package/esm/refs/ref.d.ts.map +0 -1
- package/esm/refs/ref.js +0 -60
|
@@ -1,2 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// @generated file from wasmbuild -- do not edit
|
|
2
|
+
// deno-lint-ignore-file
|
|
3
|
+
// deno-fmt-ignore-file
|
|
4
|
+
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
|
|
8
|
+
export class JSComHub {
|
|
9
|
+
private constructor();
|
|
10
|
+
free(): void;
|
|
11
|
+
[Symbol.dispose](): void;
|
|
12
|
+
create_interface(interface_type: string, setup_data: any, priority?: number | null): Promise<string>;
|
|
13
|
+
get_metadata(): any;
|
|
14
|
+
get_metadata_string(): string;
|
|
15
|
+
get_trace(endpoint: string): Promise<any | undefined>;
|
|
16
|
+
get_trace_string(endpoint: string): Promise<string | undefined>;
|
|
17
|
+
register_default_interface_factories(): void;
|
|
18
|
+
register_incoming_block_interceptor(callback: Function): void;
|
|
19
|
+
register_interface_factory(interface_type: string, factory: Function): void;
|
|
20
|
+
register_outgoing_block_interceptor(callback: Function): void;
|
|
21
|
+
remove_interface(interface_uuid: string): Promise<void>;
|
|
22
|
+
remove_socket(socket_uuid: string): Promise<void>;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export class JSDIFInterface {
|
|
26
|
+
private constructor();
|
|
27
|
+
free(): void;
|
|
28
|
+
[Symbol.dispose](): void;
|
|
29
|
+
apply(callee: any, value: any): any | undefined;
|
|
30
|
+
create_pointer(value: any): string;
|
|
31
|
+
has_address_with_ownership(address: string, ownership?: number | null): boolean;
|
|
32
|
+
observe_pointer(transceiver_id: number, address: string, observe_options: any, callback: Function): number;
|
|
33
|
+
/**
|
|
34
|
+
* Resolve a pointer address synchronously if it's in memory, otherwise return an error
|
|
35
|
+
*/
|
|
36
|
+
resolve_pointer_address(address: string): any;
|
|
37
|
+
unobserve_pointer(address: string, observer_id: number): void;
|
|
38
|
+
/**
|
|
39
|
+
* Applies a DIF update on a shared container at the given address, using the provided update data.
|
|
40
|
+
* TODO: Can we optimize this, by not returning the update result data back to JS, as it adds unnecessary overhead, as
|
|
41
|
+
* we can access the values in JS before update.
|
|
42
|
+
*/
|
|
43
|
+
update(address: string, update: any): any;
|
|
44
|
+
update_observer_options(address: string, observer_id: number, observe_options: any): void;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export class JSRuntime {
|
|
48
|
+
private constructor();
|
|
49
|
+
free(): void;
|
|
50
|
+
[Symbol.dispose](): void;
|
|
51
|
+
/**
|
|
52
|
+
* Compiles a DATEX script with optional inserted values to a DXB body
|
|
53
|
+
*/
|
|
54
|
+
compile(script: string, inserted_values?: any[] | null): Promise<Uint8Array>;
|
|
55
|
+
crypto_test_tmp(): Promise<Promise<any>>;
|
|
56
|
+
/**
|
|
57
|
+
* Get a handle to the DIF interface of the runtime
|
|
58
|
+
*/
|
|
59
|
+
dif_interface(): JSDIFInterface;
|
|
60
|
+
/**
|
|
61
|
+
* Executes a DATEX script with inserted values, returning the result as DIFValue
|
|
62
|
+
*/
|
|
63
|
+
execute(script: string, inserted_values?: any[] | null): Promise<any>;
|
|
64
|
+
execute_sync(script: string, dif_values?: any[] | null): any;
|
|
65
|
+
execute_sync_with_string_result(script: string, dif_values: any[] | null | undefined, decompile_options: any): string;
|
|
66
|
+
/**
|
|
67
|
+
* Execute a DATEX script with optional inserted values, returning the result as a string
|
|
68
|
+
*/
|
|
69
|
+
execute_with_string_result(script: string, inserted_values: any[] | null | undefined, decompile_options: any): Promise<string>;
|
|
70
|
+
/**
|
|
71
|
+
* Start the LSP server, returning a JS function to send messages to Rust
|
|
72
|
+
*/
|
|
73
|
+
start_lsp(send_to_js: Function): Function;
|
|
74
|
+
value_to_string(dif_value: any, decompile_options: any): string;
|
|
75
|
+
com_hub: JSComHub;
|
|
76
|
+
readonly endpoint: string;
|
|
77
|
+
readonly version: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export class Repl {
|
|
81
|
+
free(): void;
|
|
82
|
+
[Symbol.dispose](): void;
|
|
83
|
+
execute(script: string): Promise<any | undefined>;
|
|
84
|
+
constructor(runtime: JSRuntime, verbose: boolean);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function create_runtime(config: any, debug_config: any): Promise<JSRuntime>;
|
|
88
|
+
|
|
89
|
+
export function disassemble_dxb_flat(dxb: Uint8Array): any;
|
|
90
|
+
|
|
91
|
+
export function disassemble_dxb_to_string(dxb: Uint8Array, options: any): any;
|
|
92
|
+
|
|
93
|
+
export function disassemble_dxb_tree(dxb: Uint8Array): any;
|
|
@@ -4,138 +4,152 @@
|
|
|
4
4
|
* @returns {Promise<JSRuntime>}
|
|
5
5
|
*/
|
|
6
6
|
export function create_runtime(config: any, debug_config: any): Promise<JSRuntime>;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
/**
|
|
8
|
+
* @param {Uint8Array} dxb
|
|
9
|
+
* @returns {any}
|
|
10
|
+
*/
|
|
11
|
+
export function disassemble_dxb_flat(dxb: Uint8Array): any;
|
|
12
|
+
/**
|
|
13
|
+
* @param {Uint8Array} dxb
|
|
14
|
+
* @param {any} options
|
|
15
|
+
* @returns {any}
|
|
16
|
+
*/
|
|
17
|
+
export function disassemble_dxb_to_string(dxb: Uint8Array, options: any): any;
|
|
18
|
+
/**
|
|
19
|
+
* @param {Uint8Array} dxb
|
|
20
|
+
* @returns {any}
|
|
21
|
+
*/
|
|
22
|
+
export function disassemble_dxb_tree(dxb: Uint8Array): any;
|
|
23
|
+
export function __wbg_Error_9dc85fe1bc224456(arg0: any, arg1: any): Error;
|
|
24
|
+
export function __wbg_Number_4779d427bae39753(arg0: any): number;
|
|
9
25
|
export function __wbg_String_8564e559799eccda(arg0: any, arg1: any): void;
|
|
10
|
-
export function
|
|
11
|
-
export function
|
|
12
|
-
export function
|
|
13
|
-
export function
|
|
14
|
-
export function
|
|
15
|
-
export function
|
|
16
|
-
export function
|
|
17
|
-
export function
|
|
18
|
-
export function
|
|
19
|
-
export function
|
|
20
|
-
export function
|
|
21
|
-
export function
|
|
22
|
-
export function
|
|
23
|
-
export function
|
|
24
|
-
export function
|
|
25
|
-
export function
|
|
26
|
-
export function
|
|
27
|
-
export function
|
|
28
|
-
export function
|
|
29
|
-
export function
|
|
30
|
-
export function
|
|
31
|
-
export function
|
|
32
|
-
export function __wbg_cancel_ab703655e38608f0(arg0: any): any;
|
|
26
|
+
export function __wbg___wbindgen_bigint_get_as_i64_8ea6736501f396b6(arg0: any, arg1: any): void;
|
|
27
|
+
export function __wbg___wbindgen_boolean_get_b131b2f36d6b2f55(arg0: any): 1 | 0 | 16777215;
|
|
28
|
+
export function __wbg___wbindgen_debug_string_56c147eb1a51f0c4(arg0: any, arg1: any): void;
|
|
29
|
+
export function __wbg___wbindgen_in_ce8569b2fc6f5088(arg0: any, arg1: any): boolean;
|
|
30
|
+
export function __wbg___wbindgen_is_bigint_df272c65456269c2(arg0: any): arg0 is bigint;
|
|
31
|
+
export function __wbg___wbindgen_is_function_147961669f068cd4(arg0: any): boolean;
|
|
32
|
+
export function __wbg___wbindgen_is_object_3a2c414391dbf751(arg0: any): boolean;
|
|
33
|
+
export function __wbg___wbindgen_is_string_6541b0f6ecd4e8e5(arg0: any): arg0 is string;
|
|
34
|
+
export function __wbg___wbindgen_is_undefined_4410e3c20a99fa97(arg0: any): boolean;
|
|
35
|
+
export function __wbg___wbindgen_jsval_eq_174c93ec61bab0c5(arg0: any, arg1: any): boolean;
|
|
36
|
+
export function __wbg___wbindgen_jsval_loose_eq_e07e3b1f5db6da6c(arg0: any, arg1: any): boolean;
|
|
37
|
+
export function __wbg___wbindgen_number_get_588ed6b97f0d7e14(arg0: any, arg1: any): void;
|
|
38
|
+
export function __wbg___wbindgen_string_get_fa2687d531ed17a5(arg0: any, arg1: any): void;
|
|
39
|
+
export function __wbg___wbindgen_throw_bbadd78c1bac3a77(arg0: any, arg1: any): void;
|
|
40
|
+
export function __wbg__wbg_cb_unref_c2301a3c9b78104b(arg0: any): void;
|
|
41
|
+
export function __wbg_buffer_8524b3453cde4918(arg0: any): any;
|
|
42
|
+
export function __wbg_byteLength_96807b1d9ab24a4c(arg0: any): any;
|
|
43
|
+
export function __wbg_call_2ad4e88518737145(...args: any[]): any;
|
|
44
|
+
export function __wbg_call_91f00ddc43e01490(...args: any[]): any;
|
|
45
|
+
export function __wbg_call_c00e41735f66c175(...args: any[]): any;
|
|
46
|
+
export function __wbg_call_ec09a4cf93377d3a(...args: any[]): any;
|
|
47
|
+
export function __wbg_cancel_f3a197b26dc88b39(arg0: any): any;
|
|
33
48
|
export function __wbg_clearTimeout_113b1cde814ec762(arg0: any): any;
|
|
34
|
-
export function
|
|
35
|
-
export function
|
|
36
|
-
export function
|
|
37
|
-
export function
|
|
38
|
-
export function
|
|
39
|
-
export function
|
|
40
|
-
export function
|
|
41
|
-
export function
|
|
42
|
-
export function
|
|
43
|
-
export function
|
|
44
|
-
export function
|
|
49
|
+
export function __wbg_close_296263cfe1bb2999(...args: any[]): any;
|
|
50
|
+
export function __wbg_crypto_43cf0aa0813e3fe3(...args: any[]): any;
|
|
51
|
+
export function __wbg_data_8a04443c1e5a8cd3(arg0: any): any;
|
|
52
|
+
export function __wbg_debug_916d96e2f1e976c2(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
53
|
+
export function __wbg_decrypt_434a0a20c1926b35(...args: any[]): any;
|
|
54
|
+
export function __wbg_deriveBits_2ef28a1a5553afd1(...args: any[]): any;
|
|
55
|
+
export function __wbg_digest_07cbf8c660cbb7ad(...args: any[]): any;
|
|
56
|
+
export function __wbg_done_6a8439e544ec6206(arg0: any): any;
|
|
57
|
+
export function __wbg_encrypt_c8d1f29c3903aa3a(...args: any[]): any;
|
|
58
|
+
export function __wbg_entries_5a6a7e7e0df09fe5(arg0: any): [string, any][];
|
|
59
|
+
export function __wbg_error_4dee59d95d79feac(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
60
|
+
export function __wbg_error_6651fee1c71e5da9(arg0: any): void;
|
|
45
61
|
export function __wbg_error_a6fa202b58aa1cd3(arg0: any, arg1: any): void;
|
|
46
|
-
export function
|
|
47
|
-
export function
|
|
48
|
-
export function
|
|
49
|
-
export function
|
|
50
|
-
export function
|
|
51
|
-
export function
|
|
52
|
-
export function
|
|
53
|
-
export function
|
|
54
|
-
export function
|
|
55
|
-
export function
|
|
56
|
-
export function
|
|
57
|
-
export function
|
|
58
|
-
export function
|
|
59
|
-
export function __wbg_get_value_e7da3dda29ab004c(arg0: any): any;
|
|
62
|
+
export function __wbg_exportKey_ce86487ed97172ea(...args: any[]): any;
|
|
63
|
+
export function __wbg_generateKey_073b1d14947ffbdc(...args: any[]): any;
|
|
64
|
+
export function __wbg_getRandomValues_d1f6a3c738b6cec2(...args: any[]): any;
|
|
65
|
+
export function __wbg_getReader_0cd37e95fbf00f7f(arg0: any): any;
|
|
66
|
+
export function __wbg_getWriter_a66f661ac532a709(...args: any[]): any;
|
|
67
|
+
export function __wbg_get_44e98e27bda25b5b(...args: any[]): any;
|
|
68
|
+
export function __wbg_get_4b90d6d8c5deb5d5(arg0: any, arg1: any): any;
|
|
69
|
+
export function __wbg_get_52a8a619f7b88df6(...args: any[]): any;
|
|
70
|
+
export function __wbg_get_done_c21b9933fc9a9e9c(arg0: any): 1 | 0 | 16777215;
|
|
71
|
+
export function __wbg_get_private_key_0d151957f982887e(arg0: any): any;
|
|
72
|
+
export function __wbg_get_public_key_d7128338e1b299e0(arg0: any): any;
|
|
73
|
+
export function __wbg_get_unchecked_46e778e3cec74b5e(arg0: any, arg1: any): any;
|
|
74
|
+
export function __wbg_get_value_ad568c7d3db9073f(arg0: any): any;
|
|
60
75
|
export function __wbg_get_with_ref_key_6412cf3094599694(arg0: any, arg1: any): any;
|
|
61
|
-
export function
|
|
62
|
-
export function
|
|
63
|
-
export function
|
|
64
|
-
export function
|
|
65
|
-
export function
|
|
66
|
-
export function
|
|
67
|
-
export function
|
|
68
|
-
export function
|
|
69
|
-
export function
|
|
70
|
-
export function
|
|
71
|
-
export function
|
|
72
|
-
export function
|
|
73
|
-
export function
|
|
76
|
+
export function __wbg_importKey_871c11d416fb97ee(...args: any[]): any;
|
|
77
|
+
export function __wbg_info_31621acdcc2e6cbc(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
78
|
+
export function __wbg_instanceof_ArrayBuffer_a581da923203f29f(arg0: any): boolean;
|
|
79
|
+
export function __wbg_instanceof_CryptoKey_d5f90a816d96ad67(arg0: any): boolean;
|
|
80
|
+
export function __wbg_instanceof_Error_cb5ebd65d798655e(arg0: any): boolean;
|
|
81
|
+
export function __wbg_instanceof_Map_7f94c740225003e2(arg0: any): boolean;
|
|
82
|
+
export function __wbg_instanceof_Object_34d30ae022f04c89(arg0: any): boolean;
|
|
83
|
+
export function __wbg_instanceof_ReadableStreamDefaultReader_2ab4b6bb85f96463(arg0: any): boolean;
|
|
84
|
+
export function __wbg_instanceof_Uint8Array_b6fe1ac89eba107e(arg0: any): boolean;
|
|
85
|
+
export function __wbg_instanceof_Window_9e0fe7d3d1ff4342(arg0: any): boolean;
|
|
86
|
+
export function __wbg_isArray_139f48e3c057ede8(arg0: any): arg0 is any[];
|
|
87
|
+
export function __wbg_isSafeInteger_c22ccb4af2201fe9(arg0: any): boolean;
|
|
88
|
+
export function __wbg_iterator_9b36cebf3be7b7cd(): symbol;
|
|
74
89
|
export function __wbg_jsruntime_new(arg0: any): any;
|
|
75
|
-
export function
|
|
76
|
-
export function
|
|
77
|
-
export function
|
|
78
|
-
export function
|
|
79
|
-
export function
|
|
90
|
+
export function __wbg_length_68a9d5278d084f4f(arg0: any): any;
|
|
91
|
+
export function __wbg_length_fb04d16d7bdf6d4c(arg0: any): any;
|
|
92
|
+
export function __wbg_log_534d68700f4f2519(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
93
|
+
export function __wbg_message_5c6ab4dd6c4b34e8(arg0: any): any;
|
|
94
|
+
export function __wbg_navigator_e8073f0771c8d619(arg0: any): any;
|
|
95
|
+
export function __wbg_new_0b303268aa395a38(): any[];
|
|
96
|
+
export function __wbg_new_20b778a4c5c691c3(): Object;
|
|
80
97
|
export function __wbg_new_227d7c05414eb861(): Error;
|
|
81
|
-
export function
|
|
82
|
-
export function
|
|
83
|
-
export function
|
|
84
|
-
export function
|
|
85
|
-
export function
|
|
86
|
-
export function
|
|
87
|
-
export function
|
|
88
|
-
export function
|
|
89
|
-
export function __wbg_next_ae5b710aea83f41e(...args: any[]): any;
|
|
90
|
-
export function __wbg_next_f577b3e02c9be709(arg0: any): any;
|
|
91
|
-
export function __wbg_now_054cfe5280165f10(): number;
|
|
98
|
+
export function __wbg_new_883c0db065f06efd(): Map<any, any>;
|
|
99
|
+
export function __wbg_new_a3e5112401a82338(...args: any[]): any;
|
|
100
|
+
export function __wbg_new_b06772b280cc6e52(arg0: any): Uint8Array<any>;
|
|
101
|
+
export function __wbg_new_from_slice_bb2d1778c0b87eb1(arg0: any, arg1: any): Uint8Array<any>;
|
|
102
|
+
export function __wbg_new_typed_90c3f6c29ba36d19(arg0: any, arg1: any): Promise<any>;
|
|
103
|
+
export function __wbg_next_8cb028b6ba50743f(...args: any[]): any;
|
|
104
|
+
export function __wbg_next_cfd0b146c9538df8(arg0: any): any;
|
|
105
|
+
export function __wbg_now_bce4dc999095ea77(): number;
|
|
92
106
|
export function __wbg_now_e7c6795a7f81e10f(arg0: any): any;
|
|
93
|
-
export function
|
|
94
|
-
export function
|
|
95
|
-
export function
|
|
107
|
+
export function __wbg_of_472cbb5aebb61f18(arg0: any, arg1: any): any[];
|
|
108
|
+
export function __wbg_of_5188689822ff45d7(arg0: any): any[];
|
|
109
|
+
export function __wbg_open_d98d78c4b7a1c768(arg0: any, arg1: any): any;
|
|
96
110
|
export function __wbg_performance_3fcf6e32a7e1ed0a(arg0: any): any;
|
|
97
|
-
export function
|
|
98
|
-
export function
|
|
99
|
-
export function
|
|
100
|
-
export function
|
|
101
|
-
export function
|
|
102
|
-
export function
|
|
103
|
-
export function
|
|
104
|
-
export function
|
|
105
|
-
export function
|
|
106
|
-
export function
|
|
107
|
-
export function
|
|
111
|
+
export function __wbg_prototypesetcall_956c7493c68e29b4(arg0: any, arg1: any, arg2: any): void;
|
|
112
|
+
export function __wbg_push_ceb8ef046afb2041(arg0: any, arg1: any): any;
|
|
113
|
+
export function __wbg_queueMicrotask_4698f900840e3286(arg0: any): void;
|
|
114
|
+
export function __wbg_queueMicrotask_477a5533c7100338(arg0: any): any;
|
|
115
|
+
export function __wbg_randomUUID_e5dd7dca4573cb5a(arg0: any, arg1: any): void;
|
|
116
|
+
export function __wbg_read_8426c146431f2905(arg0: any): any;
|
|
117
|
+
export function __wbg_readable_66d8c77a99f46032(arg0: any): any;
|
|
118
|
+
export function __wbg_requestPort_bb908206a009e1c9(arg0: any): any;
|
|
119
|
+
export function __wbg_resolve_0183de2e8c6b1d54(arg0: any): Promise<any>;
|
|
120
|
+
export function __wbg_send_99d049cae69c53cc(...args: any[]): any;
|
|
121
|
+
export function __wbg_serial_7f54fcd24ab16cc5(arg0: any): any;
|
|
108
122
|
export function __wbg_setTimeout_ef24d2fc3ad97385(...args: any[]): any;
|
|
109
|
-
export function
|
|
110
|
-
export function __wbg_set_601f3e1d081df3ac(arg0: any, arg1: any, arg2: any): void;
|
|
123
|
+
export function __wbg_set_5f806304fb633ab3(arg0: any, arg1: any, arg2: any): any;
|
|
111
124
|
export function __wbg_set_6be42768c690e380(arg0: any, arg1: any, arg2: any): void;
|
|
112
|
-
export function
|
|
113
|
-
export function
|
|
114
|
-
export function
|
|
115
|
-
export function
|
|
116
|
-
export function
|
|
117
|
-
export function
|
|
118
|
-
export function
|
|
119
|
-
export function
|
|
120
|
-
export function
|
|
121
|
-
export function
|
|
122
|
-
export function
|
|
125
|
+
export function __wbg_set_a6ba3ac0e634b822(...args: any[]): any;
|
|
126
|
+
export function __wbg_set_baud_rate_9d8ddfbe1b7dbe69(arg0: any, arg1: any): void;
|
|
127
|
+
export function __wbg_set_binaryType_8c2dd2cf1cfc2e28(arg0: any, arg1: any): void;
|
|
128
|
+
export function __wbg_set_counter_0347cbcd3540ef1f(arg0: any, arg1: any): void;
|
|
129
|
+
export function __wbg_set_da33c120a6584674(arg0: any, arg1: any, arg2: any): void;
|
|
130
|
+
export function __wbg_set_length_89bd687854acccd5(arg0: any, arg1: any): void;
|
|
131
|
+
export function __wbg_set_name_212a8e4fc124e29b(arg0: any, arg1: any, arg2: any): void;
|
|
132
|
+
export function __wbg_set_onclose_9cb5c3372e16c192(arg0: any, arg1: any): void;
|
|
133
|
+
export function __wbg_set_onerror_190fe67e911ebf28(arg0: any, arg1: any): void;
|
|
134
|
+
export function __wbg_set_onmessage_96337495f0bfb796(arg0: any, arg1: any): void;
|
|
135
|
+
export function __wbg_set_onopen_3e2bf6b11d434c2d(arg0: any, arg1: any): void;
|
|
136
|
+
export function __wbg_sign_0be635e70fca00c4(...args: any[]): any;
|
|
123
137
|
export function __wbg_stack_3b0d974bbf31e44f(arg0: any, arg1: any): void;
|
|
124
|
-
export function
|
|
125
|
-
export function
|
|
126
|
-
export function
|
|
127
|
-
export function
|
|
128
|
-
export function
|
|
129
|
-
export function
|
|
130
|
-
export function
|
|
131
|
-
export function
|
|
132
|
-
export function
|
|
133
|
-
export function
|
|
134
|
-
export function
|
|
135
|
-
export function
|
|
136
|
-
export function
|
|
137
|
-
export function
|
|
138
|
-
export function
|
|
138
|
+
export function __wbg_static_accessor_GLOBAL_60a4124bab7dcc9a(): any;
|
|
139
|
+
export function __wbg_static_accessor_GLOBAL_THIS_95ca6460658b5d13(): any;
|
|
140
|
+
export function __wbg_static_accessor_SELF_4c95f759a91e9aae(): any;
|
|
141
|
+
export function __wbg_static_accessor_WINDOW_44b435597f9e9ee7(): any;
|
|
142
|
+
export function __wbg_subtle_8f1ee4c21d530fce(arg0: any): any;
|
|
143
|
+
export function __wbg_then_254bab9b266a77a5(arg0: any, arg1: any, arg2: any): any;
|
|
144
|
+
export function __wbg_then_3ea18602c6a5123b(arg0: any, arg1: any): any;
|
|
145
|
+
export function __wbg_toString_b09619b263823abf(arg0: any): any;
|
|
146
|
+
export function __wbg_unwrapKey_8c36ebd252475005(...args: any[]): any;
|
|
147
|
+
export function __wbg_value_3d3defe09fb1ffca(arg0: any): any;
|
|
148
|
+
export function __wbg_verify_618a7b8d4b5707fc(...args: any[]): any;
|
|
149
|
+
export function __wbg_warn_9a910409d920f84d(arg0: any, arg1: any, arg2: any, arg3: any): void;
|
|
150
|
+
export function __wbg_wrapKey_ad361de1031fac4b(...args: any[]): any;
|
|
151
|
+
export function __wbg_writable_b89f747b2d1d8950(arg0: any): any;
|
|
152
|
+
export function __wbg_write_20b6542ec273cec7(arg0: any, arg1: any): any;
|
|
139
153
|
export function __wbindgen_cast_0000000000000001(arg0: any, arg1: any): {
|
|
140
154
|
(...args: any[]): any;
|
|
141
155
|
_wbg_cb_unref(): void;
|
|
@@ -169,10 +183,12 @@ export function __wbindgen_cast_0000000000000008(arg0: any, arg1: any): {
|
|
|
169
183
|
_wbg_cb_unref(): void;
|
|
170
184
|
};
|
|
171
185
|
export function __wbindgen_cast_0000000000000009(arg0: any): any;
|
|
172
|
-
export function __wbindgen_cast_000000000000000a(arg0: any):
|
|
173
|
-
export function __wbindgen_cast_000000000000000b(arg0: any
|
|
174
|
-
export function __wbindgen_cast_000000000000000c(arg0: any):
|
|
175
|
-
export function __wbindgen_cast_000000000000000d(arg0: any, arg1: any):
|
|
186
|
+
export function __wbindgen_cast_000000000000000a(arg0: any, arg1: any): bigint;
|
|
187
|
+
export function __wbindgen_cast_000000000000000b(arg0: any): any;
|
|
188
|
+
export function __wbindgen_cast_000000000000000c(arg0: any, arg1: any): any;
|
|
189
|
+
export function __wbindgen_cast_000000000000000d(arg0: any, arg1: any): bigint;
|
|
190
|
+
export function __wbindgen_cast_000000000000000e(arg0: any): bigint;
|
|
191
|
+
export function __wbindgen_cast_000000000000000f(arg0: any, arg1: any): any;
|
|
176
192
|
export function __wbindgen_init_externref_table(): void;
|
|
177
193
|
export function __wbg_set_wasm(val: any): void;
|
|
178
194
|
export class JSComHub {
|
|
@@ -230,6 +246,63 @@ export class JSComHub {
|
|
|
230
246
|
*/
|
|
231
247
|
remove_socket(socket_uuid: string): Promise<void>;
|
|
232
248
|
}
|
|
249
|
+
export class JSDIFInterface {
|
|
250
|
+
static __wrap(ptr: any): any;
|
|
251
|
+
__destroy_into_raw(): number | undefined;
|
|
252
|
+
__wbg_ptr: number | undefined;
|
|
253
|
+
free(): void;
|
|
254
|
+
/**
|
|
255
|
+
* @param {any} callee
|
|
256
|
+
* @param {any} value
|
|
257
|
+
* @returns {any | undefined}
|
|
258
|
+
*/
|
|
259
|
+
apply(callee: any, value: any): any | undefined;
|
|
260
|
+
/**
|
|
261
|
+
* @param {any} value
|
|
262
|
+
* @returns {string}
|
|
263
|
+
*/
|
|
264
|
+
create_pointer(value: any): string;
|
|
265
|
+
/**
|
|
266
|
+
* @param {string} address
|
|
267
|
+
* @param {number | null} [ownership]
|
|
268
|
+
* @returns {boolean}
|
|
269
|
+
*/
|
|
270
|
+
has_address_with_ownership(address: string, ownership?: number | null): boolean;
|
|
271
|
+
/**
|
|
272
|
+
* @param {number} transceiver_id
|
|
273
|
+
* @param {string} address
|
|
274
|
+
* @param {any} observe_options
|
|
275
|
+
* @param {Function} callback
|
|
276
|
+
* @returns {number}
|
|
277
|
+
*/
|
|
278
|
+
observe_pointer(transceiver_id: number, address: string, observe_options: any, callback: Function): number;
|
|
279
|
+
/**
|
|
280
|
+
* Resolve a pointer address synchronously if it's in memory, otherwise return an error
|
|
281
|
+
* @param {string} address
|
|
282
|
+
* @returns {any}
|
|
283
|
+
*/
|
|
284
|
+
resolve_pointer_address(address: string): any;
|
|
285
|
+
/**
|
|
286
|
+
* @param {string} address
|
|
287
|
+
* @param {number} observer_id
|
|
288
|
+
*/
|
|
289
|
+
unobserve_pointer(address: string, observer_id: number): void;
|
|
290
|
+
/**
|
|
291
|
+
* Applies a DIF update on a shared container at the given address, using the provided update data.
|
|
292
|
+
* TODO: Can we optimize this, by not returning the update result data back to JS, as it adds unnecessary overhead, as
|
|
293
|
+
* we can access the values in JS before update.
|
|
294
|
+
* @param {string} address
|
|
295
|
+
* @param {any} update
|
|
296
|
+
* @returns {any}
|
|
297
|
+
*/
|
|
298
|
+
update(address: string, update: any): any;
|
|
299
|
+
/**
|
|
300
|
+
* @param {string} address
|
|
301
|
+
* @param {number} observer_id
|
|
302
|
+
* @param {any} observe_options
|
|
303
|
+
*/
|
|
304
|
+
update_observer_options(address: string, observer_id: number, observe_options: any): void;
|
|
305
|
+
}
|
|
233
306
|
export class JSRuntime {
|
|
234
307
|
static __wrap(ptr: any): any;
|
|
235
308
|
__destroy_into_raw(): number | undefined;
|
|
@@ -244,30 +317,32 @@ export class JSRuntime {
|
|
|
244
317
|
*/
|
|
245
318
|
get com_hub(): JSComHub;
|
|
246
319
|
/**
|
|
247
|
-
*
|
|
248
|
-
* @param {string
|
|
249
|
-
* @
|
|
320
|
+
* Compiles a DATEX script with optional inserted values to a DXB body
|
|
321
|
+
* @param {string} script
|
|
322
|
+
* @param {any[] | null} [inserted_values]
|
|
323
|
+
* @returns {Promise<Uint8Array>}
|
|
250
324
|
*/
|
|
251
|
-
|
|
325
|
+
compile(script: string, inserted_values?: any[] | null): Promise<Uint8Array>;
|
|
252
326
|
/**
|
|
253
327
|
* @returns {Promise<Promise<any>>}
|
|
254
328
|
*/
|
|
255
329
|
crypto_test_tmp(): Promise<Promise<any>>;
|
|
256
330
|
/**
|
|
257
331
|
* Get a handle to the DIF interface of the runtime
|
|
258
|
-
* @returns {
|
|
332
|
+
* @returns {JSDIFInterface}
|
|
259
333
|
*/
|
|
260
|
-
|
|
334
|
+
dif_interface(): JSDIFInterface;
|
|
261
335
|
/**
|
|
262
336
|
* @returns {string}
|
|
263
337
|
*/
|
|
264
338
|
get endpoint(): string;
|
|
265
339
|
/**
|
|
340
|
+
* Executes a DATEX script with inserted values, returning the result as DIFValue
|
|
266
341
|
* @param {string} script
|
|
267
|
-
* @param {any[] | null} [
|
|
342
|
+
* @param {any[] | null} [inserted_values]
|
|
268
343
|
* @returns {Promise<any>}
|
|
269
344
|
*/
|
|
270
|
-
execute(script: string,
|
|
345
|
+
execute(script: string, inserted_values?: any[] | null): Promise<any>;
|
|
271
346
|
/**
|
|
272
347
|
* @param {string} script
|
|
273
348
|
* @param {any[] | null} [dif_values]
|
|
@@ -282,12 +357,13 @@ export class JSRuntime {
|
|
|
282
357
|
*/
|
|
283
358
|
execute_sync_with_string_result(script: string, dif_values: any[] | null | undefined, decompile_options: any): string;
|
|
284
359
|
/**
|
|
360
|
+
* Execute a DATEX script with optional inserted values, returning the result as a string
|
|
285
361
|
* @param {string} script
|
|
286
|
-
* @param {any[] | null | undefined}
|
|
362
|
+
* @param {any[] | null | undefined} inserted_values
|
|
287
363
|
* @param {any} decompile_options
|
|
288
364
|
* @returns {Promise<string>}
|
|
289
365
|
*/
|
|
290
|
-
execute_with_string_result(script: string,
|
|
366
|
+
execute_with_string_result(script: string, inserted_values: any[] | null | undefined, decompile_options: any): Promise<string>;
|
|
291
367
|
/**
|
|
292
368
|
* Start the LSP server, returning a JS function to send messages to Rust
|
|
293
369
|
* @param {Function} send_to_js
|
|
@@ -305,62 +381,19 @@ export class JSRuntime {
|
|
|
305
381
|
*/
|
|
306
382
|
get version(): string;
|
|
307
383
|
}
|
|
308
|
-
export class
|
|
309
|
-
static __wrap(ptr: any): any;
|
|
310
|
-
__destroy_into_raw(): number | undefined;
|
|
311
|
-
__wbg_ptr: number | undefined;
|
|
312
|
-
free(): void;
|
|
313
|
-
/**
|
|
314
|
-
* @param {any} callee
|
|
315
|
-
* @param {any} value
|
|
316
|
-
* @returns {any}
|
|
317
|
-
*/
|
|
318
|
-
apply(callee: any, value: any): any;
|
|
319
|
-
/**
|
|
320
|
-
* @param {any} value
|
|
321
|
-
* @param {any} allowed_type
|
|
322
|
-
* @param {number} mutability
|
|
323
|
-
* @returns {string}
|
|
324
|
-
*/
|
|
325
|
-
create_pointer(value: any, allowed_type: any, mutability: number): string;
|
|
326
|
-
/**
|
|
327
|
-
* @param {number} transceiver_id
|
|
328
|
-
* @param {string} address
|
|
329
|
-
* @param {any} observe_options
|
|
330
|
-
* @param {Function} callback
|
|
331
|
-
* @returns {number}
|
|
332
|
-
*/
|
|
333
|
-
observe_pointer(transceiver_id: number, address: string, observe_options: any, callback: Function): number;
|
|
384
|
+
export class Repl {
|
|
334
385
|
/**
|
|
335
|
-
*
|
|
336
|
-
*
|
|
337
|
-
* If the pointer is not in memory, it will be loaded first
|
|
338
|
-
* @param {string} address
|
|
339
|
-
* @returns {any}
|
|
386
|
+
* @param {JSRuntime} runtime
|
|
387
|
+
* @param {boolean} verbose
|
|
340
388
|
*/
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
* @returns {any}
|
|
346
|
-
*/
|
|
347
|
-
resolve_pointer_address_sync(address: string): any;
|
|
348
|
-
/**
|
|
349
|
-
* @param {string} address
|
|
350
|
-
* @param {number} observer_id
|
|
351
|
-
*/
|
|
352
|
-
unobserve_pointer(address: string, observer_id: number): void;
|
|
353
|
-
/**
|
|
354
|
-
* @param {number} transceiver_id
|
|
355
|
-
* @param {string} address
|
|
356
|
-
* @param {any} update
|
|
357
|
-
*/
|
|
358
|
-
update(transceiver_id: number, address: string, update: any): void;
|
|
389
|
+
constructor(runtime: JSRuntime, verbose: boolean);
|
|
390
|
+
__destroy_into_raw(): any;
|
|
391
|
+
__wbg_ptr: any;
|
|
392
|
+
free(): void;
|
|
359
393
|
/**
|
|
360
|
-
* @param {string}
|
|
361
|
-
* @
|
|
362
|
-
* @param {any} observe_options
|
|
394
|
+
* @param {string} script
|
|
395
|
+
* @returns {Promise<any | undefined>}
|
|
363
396
|
*/
|
|
364
|
-
|
|
397
|
+
execute(script: string): Promise<any | undefined>;
|
|
365
398
|
}
|
|
366
399
|
//# sourceMappingURL=datex_web.internal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datex_web.internal.d.ts","sourceRoot":"","sources":["../../src/datex-web/datex_web.internal.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"datex_web.internal.d.ts","sourceRoot":"","sources":["../../src/datex-web/datex_web.internal.js"],"names":[],"mappings":"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"}
|