@cloudbase/lowcode-builder 1.1.5-alpha.4 → 1.1.5-alpha.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/lowcode-builder",
|
|
3
|
-
"version": "1.1.5-alpha.
|
|
3
|
+
"version": "1.1.5-alpha.5",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -19,12 +19,17 @@ export default {
|
|
|
19
19
|
dataSourceProfiles: dataSourceProfiles,
|
|
20
20
|
/**
|
|
21
21
|
* 新的dataset变量配置对象
|
|
22
|
-
*
|
|
22
|
+
* key 为页面ID(全局为$global), val 为变量配置数组
|
|
23
23
|
*/
|
|
24
24
|
datasetProfiles: datasetProfiles,
|
|
25
25
|
/**
|
|
26
26
|
* 确定调用链路
|
|
27
27
|
*/
|
|
28
28
|
endpointType: <%= isPrivateMode %> ? 'tcb-api' : 'wechat-service',
|
|
29
|
+
/**
|
|
30
|
+
* 调用链路为 tcb-api 时有效
|
|
31
|
+
* 私有化需要设置
|
|
32
|
+
*/
|
|
33
|
+
tcbApiOrigin: '<%= tcbApiOrigin %>',
|
|
29
34
|
isPrivate: <%= isPrivateMode %>
|
|
30
35
|
}
|