@vellumai/plugin-api 0.10.0-dev.202606230727.0d65a6b → 0.10.0-dev.202606231110.ea3a06d

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 (3) hide show
  1. package/index.d.ts +0 -6
  2. package/index.js +0 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1519,12 +1519,6 @@ export declare function getConfiguredProvider(callSite: LLMCallSite, opts?: {
1519
1519
  */
1520
1520
  export declare function getModelProfiles(): ModelProfileInfo[];
1521
1521
 
1522
- /**
1523
- * Retrieve a secret from secure storage. Convenience wrapper over
1524
- * `getSecureKeyResultAsync` that returns only the value.
1525
- */
1526
- export declare function getSecureKeyAsync(account: string): Promise<string | undefined>;
1527
-
1528
1522
  declare interface GetSigningIdentityRequest {
1529
1523
  type: "get_signing_identity";
1530
1524
  requestId: string;
package/index.js CHANGED
@@ -6,4 +6,3 @@ export const assistantEventHub = api.assistantEventHub;
6
6
  export const doesSupportVision = api.doesSupportVision;
7
7
  export const getConfiguredProvider = api.getConfiguredProvider;
8
8
  export const getModelProfiles = api.getModelProfiles;
9
- export const getSecureKeyAsync = api.getSecureKeyAsync;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/plugin-api",
3
- "version": "0.10.0-dev.202606230727.0d65a6b",
3
+ "version": "0.10.0-dev.202606231110.ea3a06d",
4
4
  "description": "Public TypeScript authoring contract for Vellum assistant plugins.",
5
5
  "license": "MIT",
6
6
  "type": "module",