@lowdefy/build 4.0.0-alpha.31 → 4.0.0-alpha.33
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/buildAuth/validateAuthConfig.js +3 -0
- package/dist/defaultTypesMap.js +478 -478
- package/dist/lowdefySchema.js +29 -0
- package/package.json +36 -36
package/dist/lowdefySchema.js
CHANGED
|
@@ -114,6 +114,35 @@ export default {
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
|
+
authPages: {
|
|
118
|
+
type: 'object',
|
|
119
|
+
additionalProperties: false,
|
|
120
|
+
properties: {
|
|
121
|
+
signIn: {
|
|
122
|
+
type: 'string',
|
|
123
|
+
default: '/auth/signin'
|
|
124
|
+
},
|
|
125
|
+
signOut: {
|
|
126
|
+
type: 'string',
|
|
127
|
+
default: '/auth/signout'
|
|
128
|
+
},
|
|
129
|
+
error: {
|
|
130
|
+
type: 'string',
|
|
131
|
+
description: 'Error code passed in query string as ?error=',
|
|
132
|
+
default: '/auth/error'
|
|
133
|
+
},
|
|
134
|
+
verifyRequest: {
|
|
135
|
+
type: 'string',
|
|
136
|
+
description: 'Used for check email message',
|
|
137
|
+
default: '/auth/verify-request'
|
|
138
|
+
},
|
|
139
|
+
newUser: {
|
|
140
|
+
type: 'string',
|
|
141
|
+
description: 'New users will be directed here on first sign in (leave the property out if not of interest)',
|
|
142
|
+
default: '/auth/new-user'
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
117
146
|
callbacks: {
|
|
118
147
|
type: 'array',
|
|
119
148
|
items: {
|
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.33",
|
|
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.33",
|
|
55
|
+
"@lowdefy/blocks-basic": "4.0.0-alpha.33",
|
|
56
|
+
"@lowdefy/blocks-loaders": "4.0.0-alpha.33",
|
|
57
|
+
"@lowdefy/helpers": "4.0.0-alpha.33",
|
|
58
|
+
"@lowdefy/node-utils": "4.0.0-alpha.33",
|
|
59
|
+
"@lowdefy/nunjucks": "4.0.0-alpha.33",
|
|
60
|
+
"@lowdefy/operators": "4.0.0-alpha.33",
|
|
61
|
+
"@lowdefy/operators-js": "4.0.0-alpha.33",
|
|
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.33",
|
|
71
|
+
"@lowdefy/actions-pdf-make": "4.0.0-alpha.33",
|
|
72
|
+
"@lowdefy/blocks-aggrid": "4.0.0-alpha.33",
|
|
73
|
+
"@lowdefy/blocks-antd": "4.0.0-alpha.33",
|
|
74
|
+
"@lowdefy/blocks-color-selectors": "4.0.0-alpha.33",
|
|
75
|
+
"@lowdefy/blocks-echarts": "4.0.0-alpha.33",
|
|
76
|
+
"@lowdefy/blocks-google-maps": "4.0.0-alpha.33",
|
|
77
|
+
"@lowdefy/blocks-markdown": "4.0.0-alpha.33",
|
|
78
|
+
"@lowdefy/blocks-qr": "4.0.0-alpha.33",
|
|
79
|
+
"@lowdefy/connection-axios-http": "4.0.0-alpha.33",
|
|
80
|
+
"@lowdefy/connection-elasticsearch": "4.0.0-alpha.33",
|
|
81
|
+
"@lowdefy/connection-google-sheets": "4.0.0-alpha.33",
|
|
82
|
+
"@lowdefy/connection-knex": "4.0.0-alpha.33",
|
|
83
|
+
"@lowdefy/connection-mongodb": "4.0.0-alpha.33",
|
|
84
|
+
"@lowdefy/connection-redis": "4.0.0-alpha.33",
|
|
85
|
+
"@lowdefy/connection-sendgrid": "4.0.0-alpha.33",
|
|
86
|
+
"@lowdefy/connection-stripe": "4.0.0-alpha.33",
|
|
87
|
+
"@lowdefy/operators-change-case": "4.0.0-alpha.33",
|
|
88
|
+
"@lowdefy/operators-diff": "4.0.0-alpha.33",
|
|
89
|
+
"@lowdefy/operators-mql": "4.0.0-alpha.33",
|
|
90
|
+
"@lowdefy/operators-nunjucks": "4.0.0-alpha.33",
|
|
91
|
+
"@lowdefy/operators-uuid": "4.0.0-alpha.33",
|
|
92
|
+
"@lowdefy/operators-yaml": "4.0.0-alpha.33",
|
|
93
|
+
"@lowdefy/plugin-auth0": "4.0.0-alpha.33",
|
|
94
|
+
"@lowdefy/plugin-csv": "4.0.0-alpha.33",
|
|
95
|
+
"@lowdefy/plugin-next-auth": "4.0.0-alpha.33",
|
|
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": "0aa1d1126108b835a6e3e3f57bbef53658777f21"
|
|
105
105
|
}
|