@budibase/server 2.6.19-alpha.13 → 2.6.19-alpha.14
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/builder/assets/{index.919dd05a.js → index.e95cb6ee.js} +213 -213
- package/builder/index.html +1 -1
- package/dist/automation.js +50 -30
- package/dist/automation.js.map +2 -2
- package/dist/index.js +50 -30
- package/dist/index.js.map +2 -2
- package/dist/query.js +50 -30
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
- package/src/integrations/airtable.ts +3 -1
- package/src/integrations/arangodb.ts +3 -1
- package/src/integrations/couchdb.ts +3 -1
- package/src/integrations/dynamodb.ts +3 -1
- package/src/integrations/elasticsearch.ts +3 -1
- package/src/integrations/firebase.ts +3 -1
- package/src/integrations/googlesheets.ts +4 -4
- package/src/integrations/microsoftSqlServer.ts +4 -4
- package/src/integrations/mongodb.ts +3 -1
- package/src/integrations/mysql.ts +4 -4
- package/src/integrations/oracle.ts +4 -4
- package/src/integrations/postgres.ts +4 -4
- package/src/integrations/redis.ts +3 -1
- package/src/integrations/s3.ts +3 -1
- package/src/integrations/snowflake.ts +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/server",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "2.6.19-alpha.
|
|
4
|
+
"version": "2.6.19-alpha.14",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"license": "GPL-3.0",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
48
|
-
"@budibase/backend-core": "2.6.19-alpha.
|
|
49
|
-
"@budibase/client": "2.6.19-alpha.
|
|
50
|
-
"@budibase/pro": "2.6.19-alpha.
|
|
51
|
-
"@budibase/shared-core": "2.6.19-alpha.
|
|
52
|
-
"@budibase/string-templates": "2.6.19-alpha.
|
|
53
|
-
"@budibase/types": "2.6.19-alpha.
|
|
48
|
+
"@budibase/backend-core": "2.6.19-alpha.14",
|
|
49
|
+
"@budibase/client": "2.6.19-alpha.14",
|
|
50
|
+
"@budibase/pro": "2.6.19-alpha.14",
|
|
51
|
+
"@budibase/shared-core": "2.6.19-alpha.14",
|
|
52
|
+
"@budibase/string-templates": "2.6.19-alpha.14",
|
|
53
|
+
"@budibase/types": "2.6.19-alpha.14",
|
|
54
54
|
"@bull-board/api": "3.7.0",
|
|
55
55
|
"@bull-board/koa": "3.9.4",
|
|
56
56
|
"@elastic/elasticsearch": "7.10.0",
|
|
@@ -193,5 +193,5 @@
|
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
|
-
"gitHead": "
|
|
196
|
+
"gitHead": "9e6f7b9f573647eb08850781396dc0d4b874a4b5"
|
|
197
197
|
}
|
|
@@ -20,7 +20,9 @@ const SCHEMA: Integration = {
|
|
|
20
20
|
"Airtable is a spreadsheet-database hybrid, with the features of a database but applied to a spreadsheet.",
|
|
21
21
|
friendlyName: "Airtable",
|
|
22
22
|
type: "Spreadsheet",
|
|
23
|
-
features:
|
|
23
|
+
features: {
|
|
24
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
25
|
+
},
|
|
24
26
|
datasource: {
|
|
25
27
|
apiKey: {
|
|
26
28
|
type: DatasourceFieldType.PASSWORD,
|
|
@@ -23,7 +23,9 @@ const SCHEMA: Integration = {
|
|
|
23
23
|
type: "Non-relational",
|
|
24
24
|
description:
|
|
25
25
|
"ArangoDB is a scalable open-source multi-model database natively supporting graph, document and search. All supported data models & access patterns can be combined in queries allowing for maximal flexibility. ",
|
|
26
|
-
features:
|
|
26
|
+
features: {
|
|
27
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
28
|
+
},
|
|
27
29
|
datasource: {
|
|
28
30
|
url: {
|
|
29
31
|
type: DatasourceFieldType.STRING,
|
|
@@ -20,7 +20,9 @@ const SCHEMA: Integration = {
|
|
|
20
20
|
type: "Non-relational",
|
|
21
21
|
description:
|
|
22
22
|
"Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang.",
|
|
23
|
-
features:
|
|
23
|
+
features: {
|
|
24
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
25
|
+
},
|
|
24
26
|
datasource: {
|
|
25
27
|
url: {
|
|
26
28
|
type: DatasourceFieldType.STRING,
|
|
@@ -25,7 +25,9 @@ const SCHEMA: Integration = {
|
|
|
25
25
|
"Amazon DynamoDB is a key-value and document database that delivers single-digit millisecond performance at any scale.",
|
|
26
26
|
friendlyName: "DynamoDB",
|
|
27
27
|
type: "Non-relational",
|
|
28
|
-
features:
|
|
28
|
+
features: {
|
|
29
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
30
|
+
},
|
|
29
31
|
datasource: {
|
|
30
32
|
region: {
|
|
31
33
|
type: DatasourceFieldType.STRING,
|
|
@@ -22,7 +22,9 @@ const SCHEMA: Integration = {
|
|
|
22
22
|
"Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.",
|
|
23
23
|
friendlyName: "ElasticSearch",
|
|
24
24
|
type: "Non-relational",
|
|
25
|
-
features:
|
|
25
|
+
features: {
|
|
26
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
27
|
+
},
|
|
26
28
|
datasource: {
|
|
27
29
|
url: {
|
|
28
30
|
type: DatasourceFieldType.STRING,
|
|
@@ -20,7 +20,9 @@ const SCHEMA: Integration = {
|
|
|
20
20
|
type: "Non-relational",
|
|
21
21
|
description:
|
|
22
22
|
"Cloud Firestore is a flexible, scalable database for mobile, web, and server development from Firebase and Google Cloud.",
|
|
23
|
-
features:
|
|
23
|
+
features: {
|
|
24
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
25
|
+
},
|
|
24
26
|
datasource: {
|
|
25
27
|
email: {
|
|
26
28
|
type: DatasourceFieldType.STRING,
|
|
@@ -66,10 +66,10 @@ const SCHEMA: Integration = {
|
|
|
66
66
|
"Create and collaborate on online spreadsheets in real-time and from any device.",
|
|
67
67
|
friendlyName: "Google Sheets",
|
|
68
68
|
type: "Spreadsheet",
|
|
69
|
-
features:
|
|
70
|
-
DatasourceFeature.CONNECTION_CHECKING,
|
|
71
|
-
DatasourceFeature.FETCH_TABLE_NAMES,
|
|
72
|
-
|
|
69
|
+
features: {
|
|
70
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
71
|
+
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
|
|
72
|
+
},
|
|
73
73
|
datasource: {
|
|
74
74
|
spreadsheetId: {
|
|
75
75
|
display: "Google Sheet URL",
|
|
@@ -40,10 +40,10 @@ const SCHEMA: Integration = {
|
|
|
40
40
|
"Microsoft SQL Server is a relational database management system developed by Microsoft. ",
|
|
41
41
|
friendlyName: "MS SQL Server",
|
|
42
42
|
type: "Relational",
|
|
43
|
-
features:
|
|
44
|
-
DatasourceFeature.CONNECTION_CHECKING,
|
|
45
|
-
DatasourceFeature.FETCH_TABLE_NAMES,
|
|
46
|
-
|
|
43
|
+
features: {
|
|
44
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
45
|
+
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
|
|
46
|
+
},
|
|
47
47
|
datasource: {
|
|
48
48
|
user: {
|
|
49
49
|
type: DatasourceFieldType.STRING,
|
|
@@ -40,7 +40,9 @@ const getSchema = () => {
|
|
|
40
40
|
type: "Non-relational",
|
|
41
41
|
description:
|
|
42
42
|
"MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.",
|
|
43
|
-
features:
|
|
43
|
+
features: {
|
|
44
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
45
|
+
},
|
|
44
46
|
datasource: {
|
|
45
47
|
connectionString: {
|
|
46
48
|
type: DatasourceFieldType.STRING,
|
|
@@ -36,10 +36,10 @@ const SCHEMA: Integration = {
|
|
|
36
36
|
type: "Relational",
|
|
37
37
|
description:
|
|
38
38
|
"MySQL Database Service is a fully managed database service to deploy cloud-native applications. ",
|
|
39
|
-
features:
|
|
40
|
-
DatasourceFeature.CONNECTION_CHECKING,
|
|
41
|
-
DatasourceFeature.FETCH_TABLE_NAMES,
|
|
42
|
-
|
|
39
|
+
features: {
|
|
40
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
41
|
+
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
|
|
42
|
+
},
|
|
43
43
|
datasource: {
|
|
44
44
|
host: {
|
|
45
45
|
type: DatasourceFieldType.STRING,
|
|
@@ -50,10 +50,10 @@ const SCHEMA: Integration = {
|
|
|
50
50
|
type: "Relational",
|
|
51
51
|
description:
|
|
52
52
|
"Oracle Database is an object-relational database management system developed by Oracle Corporation",
|
|
53
|
-
features:
|
|
54
|
-
DatasourceFeature.CONNECTION_CHECKING,
|
|
55
|
-
DatasourceFeature.FETCH_TABLE_NAMES,
|
|
56
|
-
|
|
53
|
+
features: {
|
|
54
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
55
|
+
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
|
|
56
|
+
},
|
|
57
57
|
datasource: {
|
|
58
58
|
host: {
|
|
59
59
|
type: DatasourceFieldType.STRING,
|
|
@@ -52,10 +52,10 @@ const SCHEMA: Integration = {
|
|
|
52
52
|
type: "Relational",
|
|
53
53
|
description:
|
|
54
54
|
"PostgreSQL, also known as Postgres, is a free and open-source relational database management system emphasizing extensibility and SQL compliance.",
|
|
55
|
-
features:
|
|
56
|
-
DatasourceFeature.CONNECTION_CHECKING,
|
|
57
|
-
DatasourceFeature.FETCH_TABLE_NAMES,
|
|
58
|
-
|
|
55
|
+
features: {
|
|
56
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
57
|
+
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
|
|
58
|
+
},
|
|
59
59
|
datasource: {
|
|
60
60
|
host: {
|
|
61
61
|
type: DatasourceFieldType.STRING,
|
|
@@ -21,7 +21,9 @@ const SCHEMA: Integration = {
|
|
|
21
21
|
"Redis is a caching tool, providing powerful key-value store capabilities.",
|
|
22
22
|
friendlyName: "Redis",
|
|
23
23
|
type: "Non-relational",
|
|
24
|
-
features:
|
|
24
|
+
features: {
|
|
25
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
26
|
+
},
|
|
25
27
|
datasource: {
|
|
26
28
|
host: {
|
|
27
29
|
type: "string",
|
package/src/integrations/s3.ts
CHANGED
|
@@ -24,7 +24,9 @@ const SCHEMA: Integration = {
|
|
|
24
24
|
"Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance.",
|
|
25
25
|
friendlyName: "Amazon S3",
|
|
26
26
|
type: "Object store",
|
|
27
|
-
features:
|
|
27
|
+
features: {
|
|
28
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
29
|
+
},
|
|
28
30
|
datasource: {
|
|
29
31
|
region: {
|
|
30
32
|
type: "string",
|
|
@@ -22,7 +22,9 @@ const SCHEMA: Integration = {
|
|
|
22
22
|
"Snowflake is a solution for data warehousing, data lakes, data engineering, data science, data application development, and securely sharing and consuming shared data.",
|
|
23
23
|
friendlyName: "Snowflake",
|
|
24
24
|
type: "Relational",
|
|
25
|
-
features:
|
|
25
|
+
features: {
|
|
26
|
+
[DatasourceFeature.CONNECTION_CHECKING]: true,
|
|
27
|
+
},
|
|
26
28
|
datasource: {
|
|
27
29
|
account: {
|
|
28
30
|
type: "string",
|