@paymanai/payman-ask-sdk 2.0.6 → 4.0.1
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/README.md +2 -6
- package/dist/index.d.mts +379 -239
- package/dist/index.d.ts +379 -239
- package/dist/index.js +3346 -4752
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3348 -4737
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +202 -821
- package/dist/styles.css.map +1 -1
- package/package.json +6 -33
- package/dist/index.native.js +0 -4869
- package/dist/index.native.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paymanai/payman-ask-sdk",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Reusable chat SDK for Payman
|
|
3
|
+
"version": "4.0.1",
|
|
4
|
+
"description": "Reusable web chat SDK for Payman K2 Agents with streaming support",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
-
"react-native": "dist/index.native.js",
|
|
9
8
|
"exports": {
|
|
10
9
|
".": {
|
|
11
10
|
"types": "./dist/index.d.ts",
|
|
12
|
-
"react-native": "./dist/index.native.js",
|
|
13
11
|
"import": "./dist/index.mjs",
|
|
14
12
|
"require": "./dist/index.js"
|
|
15
13
|
},
|
|
@@ -28,9 +26,7 @@
|
|
|
28
26
|
"build:widget": "npx vite build --config vite.config.widget.ts",
|
|
29
27
|
"dev": "npx tsup --watch",
|
|
30
28
|
"clean": "rm -rf dist",
|
|
31
|
-
"type-check": "npx tsc --noEmit"
|
|
32
|
-
"android": "expo run:android",
|
|
33
|
-
"ios": "expo run:ios"
|
|
29
|
+
"type-check": "npx tsc --noEmit"
|
|
34
30
|
},
|
|
35
31
|
"keywords": [
|
|
36
32
|
"payman",
|
|
@@ -45,62 +41,39 @@
|
|
|
45
41
|
"access": "public"
|
|
46
42
|
},
|
|
47
43
|
"dependencies": {
|
|
48
|
-
"@
|
|
44
|
+
"@lottiefiles/dotlottie-react": "^0.19.0",
|
|
45
|
+
"@paymanai/payman-typescript-ask-sdk": "^4.0.0",
|
|
49
46
|
"@sentry/react": "^10.46.0",
|
|
50
47
|
"clsx": "^2.1.1",
|
|
51
|
-
"
|
|
52
|
-
"flubber": "^0.4.2",
|
|
53
|
-
"react-native": "0.81.5",
|
|
54
|
-
"react-native-modal": "^13.0.1",
|
|
48
|
+
"remark-breaks": "^4.0.0",
|
|
55
49
|
"tailwind-merge": "^3.3.1"
|
|
56
50
|
},
|
|
57
51
|
"peerDependencies": {
|
|
58
|
-
"expo-speech-recognition": ">=3.0.0",
|
|
59
52
|
"framer-motion": ">=10.0.0",
|
|
60
53
|
"lucide-react": ">=0.300.0",
|
|
61
|
-
"lucide-react-native": ">=0.300.0",
|
|
62
54
|
"react": ">=18.0.0",
|
|
63
55
|
"react-dom": ">=18.0.0",
|
|
64
56
|
"react-markdown": ">=9.0.0",
|
|
65
|
-
"react-native": "*",
|
|
66
|
-
"react-native-markdown-display": ">=7.0.0",
|
|
67
|
-
"react-native-reanimated": ">=3.0.0",
|
|
68
57
|
"remark-gfm": ">=4.0.0"
|
|
69
58
|
},
|
|
70
59
|
"peerDependenciesMeta": {
|
|
71
|
-
"expo-speech-recognition": {
|
|
72
|
-
"optional": true
|
|
73
|
-
},
|
|
74
60
|
"react-dom": {
|
|
75
61
|
"optional": true
|
|
76
62
|
},
|
|
77
|
-
"react-native": {
|
|
78
|
-
"optional": true
|
|
79
|
-
},
|
|
80
63
|
"framer-motion": {
|
|
81
64
|
"optional": true
|
|
82
65
|
},
|
|
83
66
|
"lucide-react": {
|
|
84
67
|
"optional": true
|
|
85
68
|
},
|
|
86
|
-
"lucide-react-native": {
|
|
87
|
-
"optional": true
|
|
88
|
-
},
|
|
89
69
|
"react-markdown": {
|
|
90
70
|
"optional": true
|
|
91
71
|
},
|
|
92
|
-
"react-native-markdown-display": {
|
|
93
|
-
"optional": true
|
|
94
|
-
},
|
|
95
|
-
"react-native-reanimated": {
|
|
96
|
-
"optional": true
|
|
97
|
-
},
|
|
98
72
|
"remark-gfm": {
|
|
99
73
|
"optional": true
|
|
100
74
|
}
|
|
101
75
|
},
|
|
102
76
|
"devDependencies": {
|
|
103
|
-
"@types/flubber": "^0.4.0",
|
|
104
77
|
"@types/node": "^24.10.1",
|
|
105
78
|
"@types/react": "^19.1.8",
|
|
106
79
|
"@types/react-dom": "^19.1.6",
|