@lowdefy/build 4.0.0-alpha.24 → 4.0.0-alpha.27
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/defaultTypesMap.js +423 -367
- package/dist/scripts/generateDefaultTypes.js +4 -0
- package/package.json +36 -32
|
@@ -18,6 +18,7 @@ import { readFile, writeFile } from '@lowdefy/node-utils';
|
|
|
18
18
|
import createPluginTypesMap from '../utils/createPluginTypesMap.js';
|
|
19
19
|
const defaultPackages = [
|
|
20
20
|
'@lowdefy/actions-core',
|
|
21
|
+
'@lowdefy/actions-pdf-make',
|
|
21
22
|
'@lowdefy/blocks-aggrid',
|
|
22
23
|
'@lowdefy/blocks-antd',
|
|
23
24
|
'@lowdefy/blocks-basic',
|
|
@@ -26,6 +27,7 @@ const defaultPackages = [
|
|
|
26
27
|
'@lowdefy/blocks-google-maps',
|
|
27
28
|
'@lowdefy/blocks-loaders',
|
|
28
29
|
'@lowdefy/blocks-markdown',
|
|
30
|
+
'@lowdefy/blocks-qr',
|
|
29
31
|
'@lowdefy/connection-axios-http',
|
|
30
32
|
'@lowdefy/connection-elasticsearch',
|
|
31
33
|
'@lowdefy/connection-google-sheets',
|
|
@@ -41,6 +43,8 @@ const defaultPackages = [
|
|
|
41
43
|
'@lowdefy/operators-nunjucks',
|
|
42
44
|
'@lowdefy/operators-uuid',
|
|
43
45
|
'@lowdefy/operators-yaml',
|
|
46
|
+
'@lowdefy/plugin-auth0',
|
|
47
|
+
'@lowdefy/plugin-csv',
|
|
44
48
|
'@lowdefy/plugin-next-auth',
|
|
45
49
|
];
|
|
46
50
|
async function generateDefaultTypesMap() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/build",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.27",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@lowdefy/ajv": "4.0.0-alpha.
|
|
56
|
-
"@lowdefy/blocks-basic": "4.0.0-alpha.
|
|
57
|
-
"@lowdefy/blocks-loaders": "4.0.0-alpha.
|
|
58
|
-
"@lowdefy/helpers": "4.0.0-alpha.
|
|
59
|
-
"@lowdefy/node-utils": "4.0.0-alpha.
|
|
60
|
-
"@lowdefy/nunjucks": "4.0.0-alpha.
|
|
61
|
-
"@lowdefy/operators": "4.0.0-alpha.
|
|
62
|
-
"@lowdefy/operators-js": "4.0.0-alpha.
|
|
55
|
+
"@lowdefy/ajv": "4.0.0-alpha.27",
|
|
56
|
+
"@lowdefy/blocks-basic": "4.0.0-alpha.27",
|
|
57
|
+
"@lowdefy/blocks-loaders": "4.0.0-alpha.27",
|
|
58
|
+
"@lowdefy/helpers": "4.0.0-alpha.27",
|
|
59
|
+
"@lowdefy/node-utils": "4.0.0-alpha.27",
|
|
60
|
+
"@lowdefy/nunjucks": "4.0.0-alpha.27",
|
|
61
|
+
"@lowdefy/operators": "4.0.0-alpha.27",
|
|
62
|
+
"@lowdefy/operators-js": "4.0.0-alpha.27",
|
|
63
63
|
"ajv": "8.11.0",
|
|
64
64
|
"json5": "2.2.1",
|
|
65
65
|
"uuid": "8.3.2",
|
|
@@ -68,28 +68,32 @@
|
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@jest/globals": "28.1.0",
|
|
71
|
-
"@lowdefy/actions-core": "4.0.0-alpha.
|
|
72
|
-
"@lowdefy/
|
|
73
|
-
"@lowdefy/blocks-
|
|
74
|
-
"@lowdefy/blocks-
|
|
75
|
-
"@lowdefy/blocks-
|
|
76
|
-
"@lowdefy/blocks-
|
|
77
|
-
"@lowdefy/blocks-
|
|
78
|
-
"@lowdefy/
|
|
79
|
-
"@lowdefy/
|
|
80
|
-
"@lowdefy/connection-
|
|
81
|
-
"@lowdefy/connection-
|
|
82
|
-
"@lowdefy/connection-
|
|
83
|
-
"@lowdefy/connection-
|
|
84
|
-
"@lowdefy/connection-
|
|
85
|
-
"@lowdefy/connection-
|
|
86
|
-
"@lowdefy/
|
|
87
|
-
"@lowdefy/
|
|
88
|
-
"@lowdefy/operators-
|
|
89
|
-
"@lowdefy/operators-
|
|
90
|
-
"@lowdefy/operators-
|
|
91
|
-
"@lowdefy/operators-
|
|
92
|
-
"@lowdefy/
|
|
71
|
+
"@lowdefy/actions-core": "4.0.0-alpha.27",
|
|
72
|
+
"@lowdefy/actions-pdf-make": "4.0.0-alpha.27",
|
|
73
|
+
"@lowdefy/blocks-aggrid": "4.0.0-alpha.27",
|
|
74
|
+
"@lowdefy/blocks-antd": "4.0.0-alpha.27",
|
|
75
|
+
"@lowdefy/blocks-color-selectors": "4.0.0-alpha.27",
|
|
76
|
+
"@lowdefy/blocks-echarts": "4.0.0-alpha.27",
|
|
77
|
+
"@lowdefy/blocks-google-maps": "4.0.0-alpha.27",
|
|
78
|
+
"@lowdefy/blocks-markdown": "4.0.0-alpha.27",
|
|
79
|
+
"@lowdefy/blocks-qr": "4.0.0-alpha.27",
|
|
80
|
+
"@lowdefy/connection-axios-http": "4.0.0-alpha.27",
|
|
81
|
+
"@lowdefy/connection-elasticsearch": "4.0.0-alpha.27",
|
|
82
|
+
"@lowdefy/connection-google-sheets": "4.0.0-alpha.27",
|
|
83
|
+
"@lowdefy/connection-knex": "4.0.0-alpha.27",
|
|
84
|
+
"@lowdefy/connection-mongodb": "4.0.0-alpha.27",
|
|
85
|
+
"@lowdefy/connection-redis": "4.0.0-alpha.27",
|
|
86
|
+
"@lowdefy/connection-sendgrid": "4.0.0-alpha.27",
|
|
87
|
+
"@lowdefy/connection-stripe": "4.0.0-alpha.27",
|
|
88
|
+
"@lowdefy/operators-change-case": "4.0.0-alpha.27",
|
|
89
|
+
"@lowdefy/operators-diff": "4.0.0-alpha.27",
|
|
90
|
+
"@lowdefy/operators-mql": "4.0.0-alpha.27",
|
|
91
|
+
"@lowdefy/operators-nunjucks": "4.0.0-alpha.27",
|
|
92
|
+
"@lowdefy/operators-uuid": "4.0.0-alpha.27",
|
|
93
|
+
"@lowdefy/operators-yaml": "4.0.0-alpha.27",
|
|
94
|
+
"@lowdefy/plugin-auth0": "4.0.0-alpha.27",
|
|
95
|
+
"@lowdefy/plugin-csv": "4.0.0-alpha.27",
|
|
96
|
+
"@lowdefy/plugin-next-auth": "4.0.0-alpha.27",
|
|
93
97
|
"@swc/cli": "0.1.57",
|
|
94
98
|
"@swc/core": "1.2.194",
|
|
95
99
|
"@swc/jest": "0.2.21",
|
|
@@ -98,5 +102,5 @@
|
|
|
98
102
|
"publishConfig": {
|
|
99
103
|
"access": "public"
|
|
100
104
|
},
|
|
101
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "02010edcce0f218c54cdbd08f28a60a08c36edfa"
|
|
102
106
|
}
|