@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.
- package/index.d.ts +6 -0
- 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