@iflyrpa/actions 1.2.16-beta.0 → 1.2.16-beta.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/dist/bundle.js +9 -4
- package/dist/bundle.js.map +1 -1
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1168,7 +1168,14 @@ var __webpack_exports__ = {};
|
|
|
1168
1168
|
};
|
|
1169
1169
|
}
|
|
1170
1170
|
constructor(config){
|
|
1171
|
-
this.apiClient = external_axios_default().create(
|
|
1171
|
+
this.apiClient = external_axios_default().create({
|
|
1172
|
+
...config,
|
|
1173
|
+
proxy: {
|
|
1174
|
+
host: "localhost",
|
|
1175
|
+
port: 9000,
|
|
1176
|
+
protocol: "http"
|
|
1177
|
+
}
|
|
1178
|
+
});
|
|
1172
1179
|
}
|
|
1173
1180
|
addResponseInterceptor(findError) {
|
|
1174
1181
|
this.apiClient.interceptors.response.use((response)=>{
|
|
@@ -5304,9 +5311,7 @@ var __webpack_exports__ = {};
|
|
|
5304
5311
|
if ("mockApi" === params.actionType) return xiaohongshuPublish_mock_mockAction(task, params);
|
|
5305
5312
|
return executeAction(xiaohongshuPublish_mock_mockAction, xiaohongshuPublish_rpa_rpaAction)(task, params);
|
|
5306
5313
|
};
|
|
5307
|
-
var package_namespaceObject = {
|
|
5308
|
-
i8: "1.2.15"
|
|
5309
|
-
};
|
|
5314
|
+
var package_namespaceObject = JSON.parse('{"i8":"1.2.16-beta.0"}');
|
|
5310
5315
|
class Action {
|
|
5311
5316
|
constructor(task){
|
|
5312
5317
|
this.task = task;
|