@kokimoki/app 0.6.8 → 0.6.9
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/kokimoki-client.d.ts +1 -0
- package/dist/kokimoki-client.js +6 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/kokimoki-client.js
CHANGED
|
@@ -241,4 +241,10 @@ export class KokimokiClient extends EventEmitter {
|
|
|
241
241
|
});
|
|
242
242
|
return await res.json();
|
|
243
243
|
}
|
|
244
|
+
async exposeScriptingContext(context) {
|
|
245
|
+
// @ts-ignore
|
|
246
|
+
window.KM_SCRIPTING_CONTEXT = context;
|
|
247
|
+
// @ts-ignore
|
|
248
|
+
window.dispatchEvent(new CustomEvent("km:scriptingContextExposed"));
|
|
249
|
+
}
|
|
244
250
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const KOKIMOKI_APP_VERSION = "0.6.
|
|
1
|
+
export declare const KOKIMOKI_APP_VERSION = "0.6.9";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const KOKIMOKI_APP_VERSION = "0.6.
|
|
1
|
+
export const KOKIMOKI_APP_VERSION = "0.6.9";
|