@luck-design-biz/luckda 1.0.2-14 → 1.0.2-15
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/es/utils/action.js +3 -2
- package/lib/utils/action.js +6 -0
- package/package.json +1 -1
package/es/utils/action.js
CHANGED
|
@@ -2,7 +2,7 @@ import _regeneratorRuntime from "@babel/runtime/helpers/esm/regeneratorRuntime";
|
|
|
2
2
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
3
3
|
import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
|
|
4
4
|
// 行为请求同一接口
|
|
5
|
-
import { fetchCallBehavior } from "../lowcode/constants/api-url";
|
|
5
|
+
import { fetchCallBehavior, readCallBehavior } from "../lowcode/constants/api-url";
|
|
6
6
|
export function behaviorCall() {
|
|
7
7
|
return _behaviorCall.apply(this, arguments);
|
|
8
8
|
}
|
|
@@ -28,4 +28,5 @@ function _behaviorCall() {
|
|
|
28
28
|
}, _callee);
|
|
29
29
|
}));
|
|
30
30
|
return _behaviorCall.apply(this, arguments);
|
|
31
|
-
}
|
|
31
|
+
}
|
|
32
|
+
export { readCallBehavior };
|
package/lib/utils/action.js
CHANGED
|
@@ -5,6 +5,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.behaviorCall = behaviorCall;
|
|
8
|
+
Object.defineProperty(exports, "readCallBehavior", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return _apiUrl.readCallBehavior;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
8
14
|
var _regeneratorRuntime2 = _interopRequireDefault(require("@babel/runtime/helpers/regeneratorRuntime"));
|
|
9
15
|
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
|
10
16
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
package/package.json
CHANGED