@lowdefy/build 4.0.0-rc.10 → 4.0.0-rc.12
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/build/addKeys.js +54 -12
- package/dist/build/buildImports/buildIconImports.js +1 -0
- package/dist/build/writeApp.js +1 -3
- package/dist/build/writeAuth.js +1 -3
- package/dist/build/writeConfig.js +1 -3
- package/dist/build/writeConnections.js +1 -3
- package/dist/build/writeGlobal.js +1 -3
- package/dist/build/writeMaps.js +2 -6
- package/dist/build/writeMenus.js +1 -3
- package/dist/build/writePages.js +1 -3
- package/dist/build/writeRequests.js +1 -3
- package/dist/build/writeTypes.js +1 -3
- package/dist/defaultTypesMap.js +571 -544
- package/dist/lowdefySchema.js +12 -0
- package/dist/scripts/generateDefaultTypes.js +1 -0
- package/dist/utils/makeId.js +4 -1
- package/package.json +42 -41
package/dist/lowdefySchema.js
CHANGED
|
@@ -645,6 +645,18 @@ export default {
|
|
|
645
645
|
type: 'MenuLink "url" should be a string.'
|
|
646
646
|
}
|
|
647
647
|
},
|
|
648
|
+
urlQuery: {
|
|
649
|
+
type: 'object',
|
|
650
|
+
errorMessage: {
|
|
651
|
+
type: 'MenuLink "urlQuery" should be an object.'
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
input: {
|
|
655
|
+
type: 'object',
|
|
656
|
+
errorMessage: {
|
|
657
|
+
type: 'MenuLink "input" should be an object.'
|
|
658
|
+
}
|
|
659
|
+
},
|
|
648
660
|
properties: {
|
|
649
661
|
type: 'object',
|
|
650
662
|
errorMessage: {
|
package/dist/utils/makeId.js
CHANGED
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
See the License for the specific language governing permissions and
|
|
14
14
|
limitations under the License.
|
|
15
15
|
*/ let id_counter = 0;
|
|
16
|
-
function makeId() {
|
|
16
|
+
function makeId(reset) {
|
|
17
|
+
if (reset) {
|
|
18
|
+
id_counter = 0;
|
|
19
|
+
}
|
|
17
20
|
id_counter++;
|
|
18
21
|
return id_counter.toString(36);
|
|
19
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/build",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.12",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -51,56 +51,57 @@
|
|
|
51
51
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@lowdefy/ajv": "4.0.0-rc.
|
|
55
|
-
"@lowdefy/blocks-basic": "4.0.0-rc.
|
|
56
|
-
"@lowdefy/blocks-loaders": "4.0.0-rc.
|
|
57
|
-
"@lowdefy/helpers": "4.0.0-rc.
|
|
58
|
-
"@lowdefy/node-utils": "4.0.0-rc.
|
|
59
|
-
"@lowdefy/nunjucks": "4.0.0-rc.
|
|
60
|
-
"@lowdefy/operators": "4.0.0-rc.
|
|
61
|
-
"@lowdefy/operators-js": "4.0.0-rc.
|
|
54
|
+
"@lowdefy/ajv": "4.0.0-rc.12",
|
|
55
|
+
"@lowdefy/blocks-basic": "4.0.0-rc.12",
|
|
56
|
+
"@lowdefy/blocks-loaders": "4.0.0-rc.12",
|
|
57
|
+
"@lowdefy/helpers": "4.0.0-rc.12",
|
|
58
|
+
"@lowdefy/node-utils": "4.0.0-rc.12",
|
|
59
|
+
"@lowdefy/nunjucks": "4.0.0-rc.12",
|
|
60
|
+
"@lowdefy/operators": "4.0.0-rc.12",
|
|
61
|
+
"@lowdefy/operators-js": "4.0.0-rc.12",
|
|
62
62
|
"ajv": "8.12.0",
|
|
63
63
|
"json5": "2.2.3",
|
|
64
|
-
"yaml": "2.
|
|
64
|
+
"yaml": "2.3.2",
|
|
65
65
|
"yargs": "17.7.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@jest/globals": "28.1.3",
|
|
69
|
-
"@lowdefy/actions-core": "4.0.0-rc.
|
|
70
|
-
"@lowdefy/actions-pdf-make": "4.0.0-rc.
|
|
71
|
-
"@lowdefy/blocks-aggrid": "4.0.0-rc.
|
|
72
|
-
"@lowdefy/blocks-
|
|
73
|
-
"@lowdefy/blocks-
|
|
74
|
-
"@lowdefy/blocks-
|
|
75
|
-
"@lowdefy/blocks-
|
|
76
|
-
"@lowdefy/blocks-
|
|
77
|
-
"@lowdefy/blocks-
|
|
78
|
-
"@lowdefy/
|
|
79
|
-
"@lowdefy/connection-
|
|
80
|
-
"@lowdefy/connection-
|
|
81
|
-
"@lowdefy/connection-
|
|
82
|
-
"@lowdefy/connection-
|
|
83
|
-
"@lowdefy/connection-
|
|
84
|
-
"@lowdefy/connection-
|
|
85
|
-
"@lowdefy/connection-
|
|
86
|
-
"@lowdefy/
|
|
87
|
-
"@lowdefy/operators-
|
|
88
|
-
"@lowdefy/operators-
|
|
89
|
-
"@lowdefy/operators-
|
|
90
|
-
"@lowdefy/operators-
|
|
91
|
-
"@lowdefy/operators-
|
|
92
|
-
"@lowdefy/operators-
|
|
93
|
-
"@lowdefy/
|
|
94
|
-
"@lowdefy/plugin-
|
|
95
|
-
"@lowdefy/plugin-
|
|
96
|
-
"@lowdefy/plugin-
|
|
69
|
+
"@lowdefy/actions-core": "4.0.0-rc.12",
|
|
70
|
+
"@lowdefy/actions-pdf-make": "4.0.0-rc.12",
|
|
71
|
+
"@lowdefy/blocks-aggrid": "4.0.0-rc.12",
|
|
72
|
+
"@lowdefy/blocks-algolia": "4.0.0-rc.12",
|
|
73
|
+
"@lowdefy/blocks-antd": "4.0.0-rc.12",
|
|
74
|
+
"@lowdefy/blocks-color-selectors": "4.0.0-rc.12",
|
|
75
|
+
"@lowdefy/blocks-echarts": "4.0.0-rc.12",
|
|
76
|
+
"@lowdefy/blocks-google-maps": "4.0.0-rc.12",
|
|
77
|
+
"@lowdefy/blocks-markdown": "4.0.0-rc.12",
|
|
78
|
+
"@lowdefy/blocks-qr": "4.0.0-rc.12",
|
|
79
|
+
"@lowdefy/connection-axios-http": "4.0.0-rc.12",
|
|
80
|
+
"@lowdefy/connection-elasticsearch": "4.0.0-rc.12",
|
|
81
|
+
"@lowdefy/connection-google-sheets": "4.0.0-rc.12",
|
|
82
|
+
"@lowdefy/connection-knex": "4.0.0-rc.12",
|
|
83
|
+
"@lowdefy/connection-mongodb": "4.0.0-rc.12",
|
|
84
|
+
"@lowdefy/connection-redis": "4.0.0-rc.12",
|
|
85
|
+
"@lowdefy/connection-sendgrid": "4.0.0-rc.12",
|
|
86
|
+
"@lowdefy/connection-stripe": "4.0.0-rc.12",
|
|
87
|
+
"@lowdefy/operators-change-case": "4.0.0-rc.12",
|
|
88
|
+
"@lowdefy/operators-diff": "4.0.0-rc.12",
|
|
89
|
+
"@lowdefy/operators-moment": "4.0.0-rc.12",
|
|
90
|
+
"@lowdefy/operators-mql": "4.0.0-rc.12",
|
|
91
|
+
"@lowdefy/operators-nunjucks": "4.0.0-rc.12",
|
|
92
|
+
"@lowdefy/operators-uuid": "4.0.0-rc.12",
|
|
93
|
+
"@lowdefy/operators-yaml": "4.0.0-rc.12",
|
|
94
|
+
"@lowdefy/plugin-auth0": "4.0.0-rc.12",
|
|
95
|
+
"@lowdefy/plugin-aws": "4.0.0-rc.12",
|
|
96
|
+
"@lowdefy/plugin-csv": "4.0.0-rc.12",
|
|
97
|
+
"@lowdefy/plugin-next-auth": "4.0.0-rc.12",
|
|
97
98
|
"@swc/cli": "0.1.62",
|
|
98
|
-
"@swc/core": "1.3.
|
|
99
|
-
"@swc/jest": "0.2.
|
|
99
|
+
"@swc/core": "1.3.92",
|
|
100
|
+
"@swc/jest": "0.2.29",
|
|
100
101
|
"jest": "28.1.3"
|
|
101
102
|
},
|
|
102
103
|
"publishConfig": {
|
|
103
104
|
"access": "public"
|
|
104
105
|
},
|
|
105
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "7f3059b6778b1cb8900b1d4456681b977521d45d"
|
|
106
107
|
}
|