@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/bundle.js
CHANGED
|
@@ -13974,7 +13974,14 @@ var __webpack_exports__ = {};
|
|
|
13974
13974
|
};
|
|
13975
13975
|
}
|
|
13976
13976
|
constructor(config){
|
|
13977
|
-
this.apiClient = lib_axios.create(
|
|
13977
|
+
this.apiClient = lib_axios.create({
|
|
13978
|
+
...config,
|
|
13979
|
+
proxy: {
|
|
13980
|
+
host: "localhost",
|
|
13981
|
+
port: 9000,
|
|
13982
|
+
protocol: "http"
|
|
13983
|
+
}
|
|
13984
|
+
});
|
|
13978
13985
|
}
|
|
13979
13986
|
addResponseInterceptor(findError) {
|
|
13980
13987
|
this.apiClient.interceptors.response.use((response)=>{
|
|
@@ -18179,9 +18186,7 @@ var __webpack_exports__ = {};
|
|
|
18179
18186
|
if ("mockApi" === params.actionType) return xiaohongshuPublish_mock_mockAction(task, params);
|
|
18180
18187
|
return executeAction(xiaohongshuPublish_mock_mockAction, xiaohongshuPublish_rpa_rpaAction)(task, params);
|
|
18181
18188
|
};
|
|
18182
|
-
var package_namespaceObject = {
|
|
18183
|
-
i8: "1.2.15"
|
|
18184
|
-
};
|
|
18189
|
+
var package_namespaceObject = JSON.parse('{"i8":"1.2.16-beta.0"}');
|
|
18185
18190
|
class Action {
|
|
18186
18191
|
constructor(task){
|
|
18187
18192
|
this.task = task;
|