@frockbot/applet-sdk 0.7.266 → 0.7.268

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/module/index.d.ts CHANGED
@@ -40,7 +40,11 @@ export interface ModuleContext {
40
40
  set(key: string, value: unknown): Promise<void>;
41
41
  delete(key: string): Promise<void>;
42
42
  };
43
- /** Runs an AppleScript against an application the descriptor names. */
43
+ /**
44
+ * Runs an AppleScript against an application the descriptor names, and
45
+ * answers what it returned. It runs sandboxed: Apple Events reach only
46
+ * `bundleId`, and a shell, the network and writes are refused.
47
+ */
44
48
  appleEvents: {
45
49
  run(bundleId: string, script: string): Promise<string>;
46
50
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/applet-sdk",
3
- "version": "0.7.266",
3
+ "version": "0.7.268",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Authoring SDK for FrockBot Plugins: the declarations a Plugin is written against, and the build pipeline the cloud build service runs.",