@corsair-dev/witai 0.1.0
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/LICENSE +191 -0
- package/dist/client.d.ts +12 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/endpoints/apps.d.ts +9 -0
- package/dist/endpoints/apps.d.ts.map +1 -0
- package/dist/endpoints/entities.d.ts +11 -0
- package/dist/endpoints/entities.d.ts.map +1 -0
- package/dist/endpoints/index.d.ts +8 -0
- package/dist/endpoints/index.d.ts.map +1 -0
- package/dist/endpoints/intents.d.ts +6 -0
- package/dist/endpoints/intents.d.ts.map +1 -0
- package/dist/endpoints/message.d.ts +4 -0
- package/dist/endpoints/message.d.ts.map +1 -0
- package/dist/endpoints/traits.d.ts +7 -0
- package/dist/endpoints/traits.d.ts.map +1 -0
- package/dist/endpoints/types.d.ts +1221 -0
- package/dist/endpoints/types.d.ts.map +1 -0
- package/dist/endpoints/utterances.d.ts +5 -0
- package/dist/endpoints/utterances.d.ts.map +1 -0
- package/dist/endpoints/voices.d.ts +4 -0
- package/dist/endpoints/voices.d.ts.map +1 -0
- package/dist/endpoints.test.d.ts +2 -0
- package/dist/endpoints.test.d.ts.map +1 -0
- package/dist/error-handlers.d.ts +48 -0
- package/dist/error-handlers.d.ts.map +1 -0
- package/dist/index.d.ts +110 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/schema/database.d.ts +223 -0
- package/dist/schema/database.d.ts.map +1 -0
- package/dist/schema/index.d.ts +101 -0
- package/dist/schema/index.d.ts.map +1 -0
- package/dist/schema.test.d.ts +2 -0
- package/dist/schema.test.d.ts.map +1 -0
- package/dist/tsup.config.d.ts +3 -0
- package/dist/tsup.config.d.ts.map +1 -0
- package/dist/webhooks/index.d.ts +1 -0
- package/dist/webhooks/index.d.ts.map +1 -0
- package/dist/webhooks/types.d.ts +1 -0
- package/dist/webhooks/types.d.ts.map +1 -0
- package/package.json +44 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import("tsup").Options | import("tsup").Options[] | ((overrideOptions: import("tsup").Options) => import("tsup").Options | import("tsup").Options[] | Promise<import("tsup").Options | import("tsup").Options[]>);
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=tsup.config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tsup.config.d.ts","sourceRoot":"","sources":["../tsup.config.ts"],"names":[],"mappings":";AAEA,wBAYG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../webhooks/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../webhooks/types.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@corsair-dev/witai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "WitAi plugin for Corsair",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"dev-source": "./index.ts",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"corsair": ">=0.1.0",
|
|
18
|
+
"zod": "^4.1.13"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/jest": "^29.5.14",
|
|
22
|
+
"jest": "^29.7.0",
|
|
23
|
+
"ts-jest": "^29.4.9",
|
|
24
|
+
"tsup": "^8.0.1",
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
|
+
"zod": "^4.1.13",
|
|
27
|
+
"corsair": "0.1.119"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"corsair",
|
|
31
|
+
"witai",
|
|
32
|
+
"plugin"
|
|
33
|
+
],
|
|
34
|
+
"author": "",
|
|
35
|
+
"license": "Apache-2.0",
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && pnpm exec tsc --build --force && tsup",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"test": "jest"
|
|
43
|
+
}
|
|
44
|
+
}
|