ttp-agent-sdk 2.46.2 → 2.47.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ttp-agent-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.47.2",
|
|
4
4
|
"description": "Comprehensive Voice Agent SDK with Customizable Widget - Real-time audio, WebSocket communication, React components, and extensive customization options",
|
|
5
5
|
"main": "dist/agent-widget.js",
|
|
6
6
|
"module": "dist/agent-widget.esm.js",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist/",
|
|
18
|
+
"!dist/**/*.map",
|
|
18
19
|
"examples/",
|
|
19
20
|
"README.md",
|
|
20
21
|
"GETTING_STARTED.md",
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
],
|
|
24
25
|
"scripts": {
|
|
25
26
|
"build": "npm run build:umd && npm run build:esm && npm run build:dev",
|
|
26
|
-
"deploy": "npm run build && npx wrangler pages deploy dist --project-name=ttp-sdk-front --branch=master --commit-dirty=true",
|
|
27
|
+
"deploy": "npm run build && CLOUDFLARE_ACCOUNT_ID=a1658096528eef5519b66755bbcfaa9b npx wrangler pages deploy dist --project-name=ttp-sdk-front --branch=master --commit-dirty=true",
|
|
27
28
|
"deploy:sandbox": "./deploy-sandbox-sdk.sh",
|
|
28
29
|
"deploy:prod": "./deploy-production.sh",
|
|
29
30
|
"build:prod": "webpack --config webpack.config.js",
|
|
@@ -34,6 +35,10 @@
|
|
|
34
35
|
"watch": "webpack --watch --mode development",
|
|
35
36
|
"start-backend": "node test-server.js",
|
|
36
37
|
"test": "npm run start-backend",
|
|
38
|
+
"verify:adapter": "node scripts/verify-adapter.mjs",
|
|
39
|
+
"test:verify-adapter": "node scripts/verify-adapter.test.mjs",
|
|
40
|
+
"test:compile-adapter": "node scripts/compile-adapter.test.mjs",
|
|
41
|
+
"test:adapters": "npm run test:compile-adapter && npm run test:verify-adapter",
|
|
37
42
|
"clean": "rm -rf dist/",
|
|
38
43
|
"prebuild": "npm run clean"
|
|
39
44
|
},
|
|
@@ -50,7 +55,7 @@
|
|
|
50
55
|
"conversation"
|
|
51
56
|
],
|
|
52
57
|
"author": "TTP Agent Team",
|
|
53
|
-
"license": "
|
|
58
|
+
"license": "UNLICENSED",
|
|
54
59
|
"repository": {
|
|
55
60
|
"type": "git",
|
|
56
61
|
"url": "https://github.com/yinon11/ttp-sdk-front.git"
|