@vellumai/plugin-api 0.10.6-dev.202607071937.200b337 → 0.10.6-dev.202607072040.fb971ce

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.
Files changed (2) hide show
  1. package/index.d.ts +6 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3435,6 +3435,12 @@ declare interface ScopeOption {
3435
3435
  scope: string;
3436
3436
  }
3437
3437
 
3438
+ /**
3439
+ * Result vocabulary for a secret prompt: how the value is delivered and the
3440
+ * outcome of the prompt. Kept in a leaf module (no runtime dependencies) so
3441
+ * type-only consumers can reference the shapes without importing the prompter
3442
+ * implementation and its daemon-internal dependencies.
3443
+ */
3438
3444
  declare type SecretDelivery = "store" | "transient_send";
3439
3445
 
3440
3446
  declare interface SecretPromptResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.6-dev.202607071937.200b337",
3
+ "version": "0.10.6-dev.202607072040.fb971ce",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",