@skrillex1224/playwright-toolkit 2.1.122 → 2.1.124
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/dist/browser.js +28 -19
- package/dist/browser.js.map +2 -2
- package/dist/index.cjs +28 -19
- package/dist/index.cjs.map +2 -2
- package/dist/index.js +28 -19
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -128,9 +128,13 @@ var ActorInfo = {
|
|
|
128
128
|
domain: "www.doubao.com",
|
|
129
129
|
path: "/",
|
|
130
130
|
share: {
|
|
131
|
-
mode: "
|
|
131
|
+
mode: "response",
|
|
132
132
|
prefix: "https://www.doubao.com/thread/",
|
|
133
|
-
xurl: [
|
|
133
|
+
xurl: [
|
|
134
|
+
"/samantha/thread/share/save",
|
|
135
|
+
"data",
|
|
136
|
+
"share_id"
|
|
137
|
+
]
|
|
134
138
|
}
|
|
135
139
|
}),
|
|
136
140
|
deepseek: createActorInfo({
|
|
@@ -139,12 +143,14 @@ var ActorInfo = {
|
|
|
139
143
|
domain: "chat.deepseek.com",
|
|
140
144
|
path: "/",
|
|
141
145
|
share: {
|
|
142
|
-
mode: "
|
|
143
|
-
prefix: "https://chat.deepseek.com/share/"
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
146
|
+
mode: "response",
|
|
147
|
+
prefix: "https://chat.deepseek.com/share/",
|
|
148
|
+
xurl: [
|
|
149
|
+
"/api/v0/share/create",
|
|
150
|
+
"data",
|
|
151
|
+
"biz_data",
|
|
152
|
+
"share_id"
|
|
153
|
+
]
|
|
148
154
|
}
|
|
149
155
|
}),
|
|
150
156
|
erine: createActorInfo({
|
|
@@ -153,12 +159,13 @@ var ActorInfo = {
|
|
|
153
159
|
domain: "yiyan.baidu.com",
|
|
154
160
|
path: "/",
|
|
155
161
|
share: {
|
|
156
|
-
mode: "
|
|
157
|
-
prefix: "https://yiyan.baidu.com/share/"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
+
mode: "response",
|
|
163
|
+
prefix: "https://yiyan.baidu.com/share/",
|
|
164
|
+
xurl: [
|
|
165
|
+
"/eb/share/key/gen",
|
|
166
|
+
"data",
|
|
167
|
+
"key"
|
|
168
|
+
]
|
|
162
169
|
}
|
|
163
170
|
}),
|
|
164
171
|
yuanbao: createActorInfo({
|
|
@@ -196,11 +203,13 @@ var ActorInfo = {
|
|
|
196
203
|
domain: "www.qianwen.com",
|
|
197
204
|
path: "/chat",
|
|
198
205
|
share: {
|
|
199
|
-
mode: "
|
|
200
|
-
prefix: "https://www.qianwen.com/share/"
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
206
|
+
mode: "response",
|
|
207
|
+
prefix: "https://www.qianwen.com/share/",
|
|
208
|
+
xurl: [
|
|
209
|
+
"/api/v1/share/create",
|
|
210
|
+
"data",
|
|
211
|
+
"share_id"
|
|
212
|
+
]
|
|
204
213
|
}
|
|
205
214
|
})
|
|
206
215
|
};
|