@snaptrude/plugin-core 0.9.9 → 0.9.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @snaptrude/plugin-core
2
2
 
3
+ ## 0.9.10
4
+
5
+ ### Patch Changes
6
+
7
+ - `core.mode.set("program")` now opens the Program tab (the same path as the top bar's Program button) instead of refusing with `PRECONDITION_FAILED`; it resolves once the tab has connected, and waits for the user to confirm the editor's pop-up modal when the browser blocks the window.
8
+ - `workspace.openProgramMode()` / `closeProgramMode()` — the Program-tab counterpart of `openPresentMode` / `closePresentMode`: open (awaiting the tab's connection) and close the paired Program window.
9
+
3
10
  ## 0.9.9
4
11
 
5
12
  ### Patch Changes
package/api-manifest.json CHANGED
@@ -3403,7 +3403,8 @@
3403
3403
  "examplePrompts": [
3404
3404
  "Switch to present mode",
3405
3405
  "Open BIM mode",
3406
- "Go back to design mode\n\n# Example\n```ts\nawait snaptrude.core.mode.set(\"present\")\n// ... presentation work ...\nawait snaptrude.core.mode.set(\"design\")\n```"
3406
+ "Go back to design mode",
3407
+ "Open program mode\n\n# Example\n```ts\nawait snaptrude.core.mode.set(\"present\")\n// ... presentation work ...\nawait snaptrude.core.mode.set(\"design\")\n```"
3407
3408
  ],
3408
3409
  "argsType": "PluginAppMode",
3409
3410
  "resultType": "PluginCoreModeSetResult"
@@ -8535,6 +8536,17 @@
8535
8536
  "argsType": null,
8536
8537
  "resultType": "void"
8537
8538
  },
8539
+ {
8540
+ "path": "workspace.closeProgramMode",
8541
+ "namespace": "workspace",
8542
+ "summary": "Close the Program tab.",
8543
+ "examplePrompts": [
8544
+ "Close program mode",
8545
+ "Close the Program tab\n\n# Example\n```ts\nawait snaptrude.workspace.closeProgramMode()\n```"
8546
+ ],
8547
+ "argsType": null,
8548
+ "resultType": "void"
8549
+ },
8538
8550
  {
8539
8551
  "path": "workspace.openPresentMode",
8540
8552
  "namespace": "workspace",
@@ -8547,6 +8559,18 @@
8547
8559
  "argsType": null,
8548
8560
  "resultType": "void"
8549
8561
  },
8562
+ {
8563
+ "path": "workspace.openProgramMode",
8564
+ "namespace": "workspace",
8565
+ "summary": "Open Program mode — the Program tab the `program.spreadsheet.*` calls run in.",
8566
+ "examplePrompts": [
8567
+ "Open program mode",
8568
+ "Open the Program tab so I can build a custom sheet",
8569
+ "Switch to the program spreadsheet\n\n# Example\n```ts\nawait snaptrude.workspace.openProgramMode()\nconst { sheets } = await snaptrude.program.spreadsheet.listSheets()\n```"
8570
+ ],
8571
+ "argsType": null,
8572
+ "resultType": "void"
8573
+ },
8550
8574
  {
8551
8575
  "path": "workspace.projects.copy",
8552
8576
  "namespace": "workspace.projects",
@@ -34,10 +34,14 @@ export interface PluginCoreModeSetResult {
34
34
  * Not to be confused with the viewport's 2D/3D camera mode
35
35
  * (`core.camera.setMode`) or saved presentation views (`presentation.views`).
36
36
  *
37
- * `set` covers `design`, `bim`, and `present` — in-page switches.
38
- * `program` opens in its own browser tab in the product, which a plugin worker
39
- * cannot do, so `set("program")` fails with `PRECONDITION_FAILED`; `get()`
40
- * still reports `"program"` for code running in the Program tab.
37
+ * `set` covers `design`, `bim`, and `present` — in-page switches — and
38
+ * `program`, which opens the Program tab (a paired browser window) through the
39
+ * same path as the top bar's Program button. Because the open happens outside a
40
+ * user gesture the browser may block the pop-up; the editor then shows its
41
+ * "Allow pop-up to continue" modal and the tab opens when the user confirms.
42
+ * `get()` reports `"program"` only for code running in the Program tab itself.
43
+ * Prefer {@linkcode PluginWorkspaceApi.openProgramMode} when you need to know
44
+ * the tab is ready before calling `program.spreadsheet.*`.
41
45
  */
42
46
  export declare abstract class PluginCoreModeApi {
43
47
  constructor();
@@ -76,16 +80,24 @@ export declare abstract class PluginCoreModeApi {
76
80
  * Switch the editor to another application mode — the same action as
77
81
  * clicking that tab in the top menu bar.
78
82
  *
79
- * Supported: `"design"`, `"bim"`, `"present"`. Switching to
80
- * `"program"` is rejected with `PRECONDITION_FAILED` (the Program surface
81
- * opens in its own browser tab in the product; a plugin cannot open one).
83
+ * `"design"`, `"bim"` and `"present"` switch in place. `"program"` opens
84
+ * the Program tab (a paired browser window) exactly as the top bar's Program
85
+ * button does, and resolves once that tab has connected to the editor (up to
86
+ * ~90s — the browser may block the pop-up, in which case the editor shows an
87
+ * "Allow pop-up to continue" modal and waits for the user to confirm).
88
+ * Idempotent when the Program tab is already open. Note `get()` in the model
89
+ * tab keeps reporting the model tab's own mode afterwards; the Program tab is
90
+ * a separate window.
82
91
  *
83
92
  * @param mode - Target mode token from {@linkcode PluginAppMode}
84
93
  * @returns The committed `{ mode }` after the switch.
94
+ * @throws `PRECONDITION_FAILED` for `"program"` when the user dismisses the
95
+ * pop-up modal or the tab does not connect within the timeout.
85
96
  *
86
97
  * @examplePrompt Switch to present mode
87
98
  * @examplePrompt Open BIM mode
88
99
  * @examplePrompt Go back to design mode
100
+ * @examplePrompt Open program mode
89
101
  *
90
102
  * # Example
91
103
  * ```ts
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/api/core/mode/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAEhD;;;GAGG;AACH,eAAO,MAAM,aAAa;;;;;EAAkD,CAAA;AAC5E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAEzD,eAAO,MAAM,qBAAqB;;;;;;;iBAEhC,CAAA;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,aAAa,EAAE,CAAA;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,aAAa,CAAA;CACpB;AAED;;;;;;;;;;;;GAYG;AACH,8BAAsB,iBAAiB;;IAGrC;;;;;;;;;;;;;OAaG;aACa,IAAI,IAAI,eAAe,CAAC,wBAAwB,CAAC;IAEjE;;;;;;;;;;;;;;OAcG;aACa,GAAG,IAAI,eAAe,CAAC,aAAa,CAAC;IAErD;;;;;;;;;;;;;;;;;;;;;OAqBG;aACa,GAAG,CAAC,IAAI,EAAE,aAAa,GAAG,eAAe,CAAC,uBAAuB,CAAC;CACnF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/api/core/mode/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAA;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAEhD;;;GAGG;AACH,eAAO,MAAM,aAAa;;;;;EAAkD,CAAA;AAC5E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAEzD,eAAO,MAAM,qBAAqB;;;;;;;iBAEhC,CAAA;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,aAAa,EAAE,CAAA;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,aAAa,CAAA;CACpB;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,8BAAsB,iBAAiB;;IAGrC;;;;;;;;;;;;;OAaG;aACa,IAAI,IAAI,eAAe,CAAC,wBAAwB,CAAC;IAEjE;;;;;;;;;;;;;;OAcG;aACa,GAAG,IAAI,eAAe,CAAC,aAAa,CAAC;IAErD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;aACa,GAAG,CAAC,IAAI,EAAE,aAAa,GAAG,eAAe,CAAC,uBAAuB,CAAC;CACnF"}
@@ -9,13 +9,16 @@ import { PluginApiReturn } from "../../types";
9
9
  * Teams are **read-only** here (no create/invite/delete in v1, a deliberate
10
10
  * safety decision); there are no folders in v1. A `projectId` is the project's
11
11
  * floorkey. Plan limits are enforced by the backend — a limit rejection surfaces
12
- * as a normal host error. It also carries the workspace-level mode switch for
12
+ * as a normal host error. It also carries the workspace-level mode switches for
13
13
  * Present mode ({@linkcode PluginWorkspaceApi.openPresentMode} /
14
- * {@linkcode PluginWorkspaceApi.closePresentMode}).
14
+ * {@linkcode PluginWorkspaceApi.closePresentMode}) and Program mode
15
+ * ({@linkcode PluginWorkspaceApi.openProgramMode} /
16
+ * {@linkcode PluginWorkspaceApi.closeProgramMode}).
15
17
  *
16
18
  * - {@linkcode PluginWorkspaceApi.projects} — Create, copy, list, read & rename projects
17
19
  * - {@linkcode PluginWorkspaceApi.teams} — Read teams and their members
18
20
  * - {@linkcode PluginWorkspaceApi.openPresentMode} / {@linkcode PluginWorkspaceApi.closePresentMode} — Open/close the Present-mode documentation editor
21
+ * - {@linkcode PluginWorkspaceApi.openProgramMode} / {@linkcode PluginWorkspaceApi.closeProgramMode} — Open/close the Program tab (the spreadsheet the `program.spreadsheet.*` calls run in)
19
22
  */
20
23
  export declare abstract class PluginWorkspaceApi {
21
24
  /** Projects — create, copy, list, read & rename. See {@linkcode PluginWorkspaceProjectsApi}. */
@@ -64,6 +67,50 @@ export declare abstract class PluginWorkspaceApi {
64
67
  * ```
65
68
  */
66
69
  abstract closePresentMode(): PluginApiReturn<void>;
70
+ /**
71
+ * Open Program mode — the Program tab the `program.spreadsheet.*` calls run in.
72
+ *
73
+ * Runs the top bar's own Program-button sequence (remember the preference,
74
+ * open or re-link the paired Program window) and resolves only once that tab
75
+ * has connected to the editor over its channel, so a `program.spreadsheet.*`
76
+ * call issued right after this resolves finds the tab open. The open happens
77
+ * outside a user gesture, so the browser may block the pop-up; the editor
78
+ * then shows its "Allow pop-up to continue" modal and this call keeps waiting
79
+ * (up to ~90s) for the user to confirm. Idempotent — resolves immediately
80
+ * when the Program tab is already connected, and is a no-op when the plugin is
81
+ * itself running in the Program tab. Write-gated.
82
+ *
83
+ * @throws `PRECONDITION_FAILED` if the user dismisses the pop-up modal or the
84
+ * Program tab does not connect within the timeout.
85
+ *
86
+ * @examplePrompt Open program mode
87
+ * @examplePrompt Open the Program tab so I can build a custom sheet
88
+ * @examplePrompt Switch to the program spreadsheet
89
+ *
90
+ * # Example
91
+ * ```ts
92
+ * await snaptrude.workspace.openProgramMode()
93
+ * const { sheets } = await snaptrude.program.spreadsheet.listSheets()
94
+ * ```
95
+ */
96
+ abstract openProgramMode(): PluginApiReturn<void>;
97
+ /**
98
+ * Close the Program tab.
99
+ *
100
+ * Idempotent — a no-op when no Program tab is connected. Write-gated, like
101
+ * {@linkcode PluginWorkspaceApi.openProgramMode}.
102
+ *
103
+ * @throws `PRECONDITION_FAILED` if the tab is still connected after ~15s.
104
+ *
105
+ * @examplePrompt Close program mode
106
+ * @examplePrompt Close the Program tab
107
+ *
108
+ * # Example
109
+ * ```ts
110
+ * await snaptrude.workspace.closeProgramMode()
111
+ * ```
112
+ */
113
+ abstract closeProgramMode(): PluginApiReturn<void>;
67
114
  constructor();
68
115
  }
69
116
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/workspace/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api/workspace/index.ts"],"names":[],"mappings":"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"}