@lowdefy/build 4.0.0-alpha.29 → 4.0.0-alpha.30
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/addDefaultPages/404.js +51 -0
- package/dist/build/addDefaultPages/addDefaultPages.js +43 -0
- package/dist/build/buildAuth/buildAuth.js +34 -0
- package/dist/build/buildAuth/buildAuthPlugins.js +71 -0
- package/dist/build/buildAuth/buildPageAuth.js +50 -0
- package/dist/build/buildAuth/getPageRoles.js +33 -0
- package/dist/build/buildAuth/getProtectedPages.js +28 -0
- package/dist/build/buildAuth/validateAuthConfig.js +61 -0
- package/dist/build/buildConnections.js +46 -0
- package/dist/build/buildImports/buildIconImports.js +83 -0
- package/dist/build/buildImports/buildImports.js +30 -0
- package/dist/build/buildImports/buildImportsDev.js +106 -0
- package/dist/build/buildImports/buildImportsProd.js +54 -0
- package/dist/build/buildImports/buildStyleImports.js +25 -0
- package/dist/build/buildImports/defaultIconsDev.js +584 -0
- package/dist/build/buildImports/defaultIconsProd.js +21 -0
- package/dist/build/buildMenu.js +118 -0
- package/dist/build/buildPages/buildBlock/buildBlock.js +35 -0
- package/dist/build/buildPages/buildBlock/buildEvents.js +76 -0
- package/dist/build/buildPages/buildBlock/buildRequests.js +51 -0
- package/dist/build/buildPages/buildBlock/buildSubBlocks.js +30 -0
- package/dist/build/buildPages/buildBlock/countBlockOperators.js +31 -0
- package/dist/build/buildPages/buildBlock/countBlockTypes.js +18 -0
- package/dist/build/buildPages/buildBlock/moveSkeletonBlocksToArea.js +35 -0
- package/dist/build/buildPages/buildBlock/moveSubBlocksToArea.js +25 -0
- package/dist/build/buildPages/buildBlock/setBlockId.js +20 -0
- package/dist/build/buildPages/buildBlock/validateBlock.js +38 -0
- package/dist/build/buildPages/buildPage.js +50 -0
- package/dist/build/buildPages/buildPages.js +31 -0
- package/dist/build/buildPages/buildTestPage.js +46 -0
- package/dist/build/buildRefs/buildRefs.js +32 -0
- package/dist/build/buildRefs/evaluateBuildOperators.js +34 -0
- package/dist/build/buildRefs/getConfigFile.js +28 -0
- package/dist/build/buildRefs/getRefContent.js +44 -0
- package/dist/build/buildRefs/getRefPath.js +30 -0
- package/dist/build/buildRefs/getRefsFromFile.js +37 -0
- package/dist/build/buildRefs/getUserJavascriptFunction.js +24 -0
- package/dist/build/buildRefs/makeRefDefinition.js +30 -0
- package/dist/build/buildRefs/parseNunjucks.js +20 -0
- package/dist/build/buildRefs/parseRefContent.js +37 -0
- package/dist/build/buildRefs/populateRefs.js +43 -0
- package/dist/build/buildRefs/recursiveBuild.js +68 -0
- package/dist/build/buildRefs/runRefResolver.js +33 -0
- package/dist/build/buildRefs/runTransformer.js +30 -0
- package/dist/build/buildTypes.js +124 -0
- package/dist/build/cleanBuildDirectory.js +19 -0
- package/dist/build/copyPublicFolder.js +23 -0
- package/dist/build/testSchema.js +32 -0
- package/dist/build/updateServerPackageJson.js +50 -0
- package/dist/build/validateApp.js +34 -0
- package/dist/build/validateConfig.js +33 -0
- package/dist/build/writeApp.js +18 -0
- package/dist/build/writeAuth.js +18 -0
- package/dist/build/writeConfig.js +18 -0
- package/dist/build/writeConnections.js +26 -0
- package/dist/build/writeGlobal.js +25 -0
- package/dist/build/writeMenus.js +22 -0
- package/dist/build/writePages.js +25 -0
- package/dist/build/writePluginImports/generateImportFile.js +31 -0
- package/dist/build/writePluginImports/writeActionImports.js +22 -0
- package/dist/build/writePluginImports/writeAuthImports.js +34 -0
- package/dist/build/writePluginImports/writeBlockImports.js +22 -0
- package/dist/build/writePluginImports/writeConnectionImports.js +22 -0
- package/dist/build/writePluginImports/writeIconImports.js +31 -0
- package/dist/build/writePluginImports/writeOperatorImports.js +26 -0
- package/dist/build/writePluginImports/writePluginImports.js +52 -0
- package/dist/build/writePluginImports/writeStyleImports.js +28 -0
- package/dist/build/writeRequests.js +31 -0
- package/dist/build/writeTypes.js +18 -0
- package/dist/createContext.js +55 -0
- package/dist/defaultTypesMap.js +2046 -0
- package/dist/index.js +139 -0
- package/dist/lowdefySchema.js +841 -0
- package/dist/scripts/generateDefaultTypes.js +88 -0
- package/dist/scripts/run.js +33 -0
- package/dist/test/buildRefs/testBuildRefsAsyncFunction.js +22 -0
- package/dist/test/buildRefs/testBuildRefsErrorResolver.js +18 -0
- package/dist/test/buildRefs/testBuildRefsNullResolver.js +19 -0
- package/dist/test/buildRefs/testBuildRefsParsingResolver.js +39 -0
- package/dist/test/buildRefs/testBuildRefsResolver.js +23 -0
- package/dist/test/buildRefs/testBuildRefsTransform.js +25 -0
- package/dist/test/buildRefs/testBuildRefsTransformIdentity.js +21 -0
- package/dist/test/testContext.js +54 -0
- package/dist/utils/countOperators.js +30 -0
- package/dist/utils/createCheckDuplicateId.js +31 -0
- package/dist/utils/createCounter.js +33 -0
- package/dist/utils/createPluginTypesMap.js +113 -0
- package/dist/utils/formatErrorMessage.js +56 -0
- package/dist/utils/readConfigFile.js +24 -0
- package/dist/utils/writeBuildArtifact.js +23 -0
- package/package.json +36 -36
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.30",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -51,14 +51,14 @@
|
|
|
51
51
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@lowdefy/ajv": "4.0.0-alpha.
|
|
55
|
-
"@lowdefy/blocks-basic": "4.0.0-alpha.
|
|
56
|
-
"@lowdefy/blocks-loaders": "4.0.0-alpha.
|
|
57
|
-
"@lowdefy/helpers": "4.0.0-alpha.
|
|
58
|
-
"@lowdefy/node-utils": "4.0.0-alpha.
|
|
59
|
-
"@lowdefy/nunjucks": "4.0.0-alpha.
|
|
60
|
-
"@lowdefy/operators": "4.0.0-alpha.
|
|
61
|
-
"@lowdefy/operators-js": "4.0.0-alpha.
|
|
54
|
+
"@lowdefy/ajv": "4.0.0-alpha.30",
|
|
55
|
+
"@lowdefy/blocks-basic": "4.0.0-alpha.30",
|
|
56
|
+
"@lowdefy/blocks-loaders": "4.0.0-alpha.30",
|
|
57
|
+
"@lowdefy/helpers": "4.0.0-alpha.30",
|
|
58
|
+
"@lowdefy/node-utils": "4.0.0-alpha.30",
|
|
59
|
+
"@lowdefy/nunjucks": "4.0.0-alpha.30",
|
|
60
|
+
"@lowdefy/operators": "4.0.0-alpha.30",
|
|
61
|
+
"@lowdefy/operators-js": "4.0.0-alpha.30",
|
|
62
62
|
"ajv": "8.11.0",
|
|
63
63
|
"json5": "2.2.1",
|
|
64
64
|
"uuid": "8.3.2",
|
|
@@ -67,32 +67,32 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@jest/globals": "28.1.0",
|
|
70
|
-
"@lowdefy/actions-core": "4.0.0-alpha.
|
|
71
|
-
"@lowdefy/actions-pdf-make": "4.0.0-alpha.
|
|
72
|
-
"@lowdefy/blocks-aggrid": "4.0.0-alpha.
|
|
73
|
-
"@lowdefy/blocks-antd": "4.0.0-alpha.
|
|
74
|
-
"@lowdefy/blocks-color-selectors": "4.0.0-alpha.
|
|
75
|
-
"@lowdefy/blocks-echarts": "4.0.0-alpha.
|
|
76
|
-
"@lowdefy/blocks-google-maps": "4.0.0-alpha.
|
|
77
|
-
"@lowdefy/blocks-markdown": "4.0.0-alpha.
|
|
78
|
-
"@lowdefy/blocks-qr": "4.0.0-alpha.
|
|
79
|
-
"@lowdefy/connection-axios-http": "4.0.0-alpha.
|
|
80
|
-
"@lowdefy/connection-elasticsearch": "4.0.0-alpha.
|
|
81
|
-
"@lowdefy/connection-google-sheets": "4.0.0-alpha.
|
|
82
|
-
"@lowdefy/connection-knex": "4.0.0-alpha.
|
|
83
|
-
"@lowdefy/connection-mongodb": "4.0.0-alpha.
|
|
84
|
-
"@lowdefy/connection-redis": "4.0.0-alpha.
|
|
85
|
-
"@lowdefy/connection-sendgrid": "4.0.0-alpha.
|
|
86
|
-
"@lowdefy/connection-stripe": "4.0.0-alpha.
|
|
87
|
-
"@lowdefy/operators-change-case": "4.0.0-alpha.
|
|
88
|
-
"@lowdefy/operators-diff": "4.0.0-alpha.
|
|
89
|
-
"@lowdefy/operators-mql": "4.0.0-alpha.
|
|
90
|
-
"@lowdefy/operators-nunjucks": "4.0.0-alpha.
|
|
91
|
-
"@lowdefy/operators-uuid": "4.0.0-alpha.
|
|
92
|
-
"@lowdefy/operators-yaml": "4.0.0-alpha.
|
|
93
|
-
"@lowdefy/plugin-auth0": "4.0.0-alpha.
|
|
94
|
-
"@lowdefy/plugin-csv": "4.0.0-alpha.
|
|
95
|
-
"@lowdefy/plugin-next-auth": "4.0.0-alpha.
|
|
70
|
+
"@lowdefy/actions-core": "4.0.0-alpha.30",
|
|
71
|
+
"@lowdefy/actions-pdf-make": "4.0.0-alpha.30",
|
|
72
|
+
"@lowdefy/blocks-aggrid": "4.0.0-alpha.30",
|
|
73
|
+
"@lowdefy/blocks-antd": "4.0.0-alpha.30",
|
|
74
|
+
"@lowdefy/blocks-color-selectors": "4.0.0-alpha.30",
|
|
75
|
+
"@lowdefy/blocks-echarts": "4.0.0-alpha.30",
|
|
76
|
+
"@lowdefy/blocks-google-maps": "4.0.0-alpha.30",
|
|
77
|
+
"@lowdefy/blocks-markdown": "4.0.0-alpha.30",
|
|
78
|
+
"@lowdefy/blocks-qr": "4.0.0-alpha.30",
|
|
79
|
+
"@lowdefy/connection-axios-http": "4.0.0-alpha.30",
|
|
80
|
+
"@lowdefy/connection-elasticsearch": "4.0.0-alpha.30",
|
|
81
|
+
"@lowdefy/connection-google-sheets": "4.0.0-alpha.30",
|
|
82
|
+
"@lowdefy/connection-knex": "4.0.0-alpha.30",
|
|
83
|
+
"@lowdefy/connection-mongodb": "4.0.0-alpha.30",
|
|
84
|
+
"@lowdefy/connection-redis": "4.0.0-alpha.30",
|
|
85
|
+
"@lowdefy/connection-sendgrid": "4.0.0-alpha.30",
|
|
86
|
+
"@lowdefy/connection-stripe": "4.0.0-alpha.30",
|
|
87
|
+
"@lowdefy/operators-change-case": "4.0.0-alpha.30",
|
|
88
|
+
"@lowdefy/operators-diff": "4.0.0-alpha.30",
|
|
89
|
+
"@lowdefy/operators-mql": "4.0.0-alpha.30",
|
|
90
|
+
"@lowdefy/operators-nunjucks": "4.0.0-alpha.30",
|
|
91
|
+
"@lowdefy/operators-uuid": "4.0.0-alpha.30",
|
|
92
|
+
"@lowdefy/operators-yaml": "4.0.0-alpha.30",
|
|
93
|
+
"@lowdefy/plugin-auth0": "4.0.0-alpha.30",
|
|
94
|
+
"@lowdefy/plugin-csv": "4.0.0-alpha.30",
|
|
95
|
+
"@lowdefy/plugin-next-auth": "4.0.0-alpha.30",
|
|
96
96
|
"@swc/cli": "0.1.57",
|
|
97
97
|
"@swc/core": "1.2.194",
|
|
98
98
|
"@swc/jest": "0.2.21",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"access": "public"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "c30cc4e28e221d9b73385cca8d339397d60da0e1"
|
|
105
105
|
}
|