@vellumai/plugin-api 0.8.10-dev.202606111255.73ec993
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 +4738 -0
- package/index.js +6 -0
- package/package.json +31 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Generated by scripts/build-plugin-api.ts — do not edit by hand.
|
|
2
|
+
const api = globalThis[Symbol.for("vellum.plugin-api")] ?? {};
|
|
3
|
+
export const HOOKS = api.HOOKS;
|
|
4
|
+
export const RiskLevel = api.RiskLevel;
|
|
5
|
+
export const assistantEventHub = api.assistantEventHub;
|
|
6
|
+
export const getSecureKeyAsync = api.getSecureKeyAsync;
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vellumai/plugin-api",
|
|
3
|
+
"version": "0.8.10-dev.202606111255.73ec993",
|
|
4
|
+
"description": "Public TypeScript authoring contract for Vellum assistant plugins.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./index.d.ts",
|
|
12
|
+
"import": "./index.js",
|
|
13
|
+
"default": "./index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"index.js",
|
|
18
|
+
"index.d.ts"
|
|
19
|
+
],
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"zod": "4.3.6"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/vellum-ai/vellum-assistant.git",
|
|
29
|
+
"directory": "assistant/src/plugin-api"
|
|
30
|
+
}
|
|
31
|
+
}
|