@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.mjs
CHANGED
|
@@ -1123,7 +1123,14 @@ class Http {
|
|
|
1123
1123
|
};
|
|
1124
1124
|
}
|
|
1125
1125
|
constructor(config){
|
|
1126
|
-
this.apiClient = __WEBPACK_EXTERNAL_MODULE_axios__["default"].create(
|
|
1126
|
+
this.apiClient = __WEBPACK_EXTERNAL_MODULE_axios__["default"].create({
|
|
1127
|
+
...config,
|
|
1128
|
+
proxy: {
|
|
1129
|
+
host: "localhost",
|
|
1130
|
+
port: 9000,
|
|
1131
|
+
protocol: "http"
|
|
1132
|
+
}
|
|
1133
|
+
});
|
|
1127
1134
|
}
|
|
1128
1135
|
addResponseInterceptor(findError) {
|
|
1129
1136
|
this.apiClient.interceptors.response.use((response)=>{
|
|
@@ -5253,9 +5260,7 @@ const xiaohongshuPublish = async (task, params)=>{
|
|
|
5253
5260
|
if ("mockApi" === params.actionType) return xiaohongshuPublish_mock_mockAction(task, params);
|
|
5254
5261
|
return executeAction(xiaohongshuPublish_mock_mockAction, xiaohongshuPublish_rpa_rpaAction)(task, params);
|
|
5255
5262
|
};
|
|
5256
|
-
var package_namespaceObject = {
|
|
5257
|
-
i8: "1.2.15"
|
|
5258
|
-
};
|
|
5263
|
+
var package_namespaceObject = JSON.parse('{"i8":"1.2.16-beta.0"}');
|
|
5259
5264
|
class Action {
|
|
5260
5265
|
constructor(task){
|
|
5261
5266
|
this.task = task;
|