@tinycloud/sdk-core 2.3.0-beta.7 → 2.3.0
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.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1860,7 +1860,8 @@ var TinyCloud = class _TinyCloud {
|
|
|
1860
1860
|
invokeAny: this.config.invokeAny,
|
|
1861
1861
|
fetch: fetchFn ?? this.config.fetch ?? globalThis.fetch.bind(globalThis),
|
|
1862
1862
|
hosts: effectiveHosts,
|
|
1863
|
-
retryPolicy: this.config.retryPolicy
|
|
1863
|
+
retryPolicy: this.config.retryPolicy,
|
|
1864
|
+
telemetry: this.config.telemetry
|
|
1864
1865
|
});
|
|
1865
1866
|
const serviceConstructors = {
|
|
1866
1867
|
kv: import_sdk_services3.KVService,
|
|
@@ -2242,7 +2243,8 @@ var TinyCloud = class _TinyCloud {
|
|
|
2242
2243
|
invoke: this._serviceContext.invoke,
|
|
2243
2244
|
fetch: this._serviceContext.fetch,
|
|
2244
2245
|
hosts: this._serviceContext.hosts,
|
|
2245
|
-
retryPolicy: this.config.retryPolicy
|
|
2246
|
+
retryPolicy: this.config.retryPolicy,
|
|
2247
|
+
telemetry: this.config.telemetry
|
|
2246
2248
|
});
|
|
2247
2249
|
publicContext.setSession({
|
|
2248
2250
|
...session,
|