@vellumai/plugin-api 0.10.11 → 0.10.12-dev.202607242227.e52a30c
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/app.d.ts +84 -0
- package/index.d.ts +1853 -3384
- package/index.js +3 -0
- package/package.json +6 -2
package/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export const TtsSynthesisError = api.TtsSynthesisError;
|
|
|
10
10
|
export const addMessage = api.addMessage;
|
|
11
11
|
export const assistantEventHub = api.assistantEventHub;
|
|
12
12
|
export const buildMessageExcerpt = api.buildMessageExcerpt;
|
|
13
|
+
export const createLiveVoiceConnection = api.createLiveVoiceConnection;
|
|
13
14
|
export const deleteConversation = api.deleteConversation;
|
|
14
15
|
export const doesSupportVision = api.doesSupportVision;
|
|
15
16
|
export const embedAndUpsert = api.embedAndUpsert;
|
|
@@ -30,7 +31,9 @@ export const lastToolResultUserMessageIndex = api.lastToolResultUserMessageIndex
|
|
|
30
31
|
export const listCatalogSkills = api.listCatalogSkills;
|
|
31
32
|
export const listConversations = api.listConversations;
|
|
32
33
|
export const listInstalledSkills = api.listInstalledSkills;
|
|
34
|
+
export const openTranscriptionSession = api.openTranscriptionSession;
|
|
33
35
|
export const parseMessageMetadata = api.parseMessageMetadata;
|
|
36
|
+
export const publishEvent = api.publishEvent;
|
|
34
37
|
export const quarantineRefusedExchanges = api.quarantineRefusedExchanges;
|
|
35
38
|
export const resolveCredential = api.resolveCredential;
|
|
36
39
|
export const resolveMediaSourceData = api.resolveMediaSourceData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vellumai/plugin-api",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12-dev.202607242227.e52a30c",
|
|
4
4
|
"description": "Public TypeScript authoring contract for Vellum assistant plugins.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -11,11 +11,15 @@
|
|
|
11
11
|
"types": "./index.d.ts",
|
|
12
12
|
"import": "./index.js",
|
|
13
13
|
"default": "./index.js"
|
|
14
|
+
},
|
|
15
|
+
"./app": {
|
|
16
|
+
"types": "./app.d.ts"
|
|
14
17
|
}
|
|
15
18
|
},
|
|
16
19
|
"files": [
|
|
17
20
|
"index.js",
|
|
18
|
-
"index.d.ts"
|
|
21
|
+
"index.d.ts",
|
|
22
|
+
"app.d.ts"
|
|
19
23
|
],
|
|
20
24
|
"dependencies": {
|
|
21
25
|
"zod": "4.3.6"
|