@kemu-io/edge-runtime 0.1.31 → 0.2.1
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/package.json +1 -1
- package/runner.d.ts +6 -1
- package/runner.js +2 -2
package/package.json
CHANGED
package/runner.d.ts
CHANGED
|
@@ -110,7 +110,8 @@ declare enum WidgetType {
|
|
|
110
110
|
variable = "variable",
|
|
111
111
|
hubService = "hubService",
|
|
112
112
|
imageFilter = "imageFilter",
|
|
113
|
-
recipeLoad = "recipeLoad"
|
|
113
|
+
recipeLoad = "recipeLoad",
|
|
114
|
+
note = "note"
|
|
114
115
|
}
|
|
115
116
|
export type VariableDefinition = {
|
|
116
117
|
/**
|
|
@@ -190,6 +191,10 @@ declare const _default: {
|
|
|
190
191
|
* ```
|
|
191
192
|
*/
|
|
192
193
|
sendToInputWidget: SendToInputWidgetFn;
|
|
194
|
+
/**
|
|
195
|
+
* Returns the decrypted API key generated when exporting a recipe to Kemu Edge.
|
|
196
|
+
*/
|
|
197
|
+
getApiKey: () => string;
|
|
193
198
|
}>;
|
|
194
199
|
terminate: () => Promise<void>;
|
|
195
200
|
/**
|