@tinycloud/node-sdk 2.4.0-beta.17 → 2.4.0-beta.18
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/{core-BX7hRUSI.d.cts → core-CqDbExtv.d.cts} +2 -2
- package/dist/{core-BX7hRUSI.d.ts → core-CqDbExtv.d.ts} +2 -2
- package/dist/core.cjs +4 -1
- package/dist/core.cjs.map +1 -1
- package/dist/core.d.cts +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/core.js +4 -1
- package/dist/core.js.map +1 -1
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -18203,12 +18203,13 @@ var import_sdk_core2 = require("@tinycloud/sdk-core");
|
|
|
18203
18203
|
// src/DelegatedAccess.ts
|
|
18204
18204
|
var import_sdk_core3 = require("@tinycloud/sdk-core");
|
|
18205
18205
|
var DelegatedAccess = class {
|
|
18206
|
-
constructor(session, delegation, host, invoke2, telemetry) {
|
|
18206
|
+
constructor(session, delegation, host, invoke2, invokeAny2, telemetry) {
|
|
18207
18207
|
this.session = session;
|
|
18208
18208
|
this._delegation = delegation;
|
|
18209
18209
|
this.host = host;
|
|
18210
18210
|
this._serviceContext = new import_sdk_core3.ServiceContext({
|
|
18211
18211
|
invoke: invoke2,
|
|
18212
|
+
invokeAny: invokeAny2,
|
|
18212
18213
|
fetch: globalThis.fetch.bind(globalThis),
|
|
18213
18214
|
hosts: [host],
|
|
18214
18215
|
telemetry
|
|
@@ -21707,6 +21708,7 @@ var _TinyCloudNode = class _TinyCloudNode {
|
|
|
21707
21708
|
delegation,
|
|
21708
21709
|
targetHost,
|
|
21709
21710
|
this.wasmBindings.invoke,
|
|
21711
|
+
this.wasmBindings.invokeAny,
|
|
21710
21712
|
this.config.telemetry
|
|
21711
21713
|
);
|
|
21712
21714
|
}
|
|
@@ -21772,6 +21774,7 @@ var _TinyCloudNode = class _TinyCloudNode {
|
|
|
21772
21774
|
delegation,
|
|
21773
21775
|
targetHost,
|
|
21774
21776
|
this.wasmBindings.invoke,
|
|
21777
|
+
this.wasmBindings.invokeAny,
|
|
21775
21778
|
this.config.telemetry
|
|
21776
21779
|
);
|
|
21777
21780
|
}
|