@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/dist/query.js
CHANGED
|
@@ -14063,10 +14063,10 @@ var SCHEMA = {
|
|
|
14063
14063
|
friendlyName: "PostgreSQL",
|
|
14064
14064
|
type: "Relational",
|
|
14065
14065
|
description: "PostgreSQL, also known as Postgres, is a free and open-source relational database management system emphasizing extensibility and SQL compliance.",
|
|
14066
|
-
features:
|
|
14067
|
-
"connection" /* CONNECTION_CHECKING
|
|
14068
|
-
"fetch_table_names" /* FETCH_TABLE_NAMES */
|
|
14069
|
-
|
|
14066
|
+
features: {
|
|
14067
|
+
["connection" /* CONNECTION_CHECKING */]: true,
|
|
14068
|
+
["fetch_table_names" /* FETCH_TABLE_NAMES */]: true
|
|
14069
|
+
},
|
|
14070
14070
|
datasource: {
|
|
14071
14071
|
host: {
|
|
14072
14072
|
type: "string" /* STRING */,
|
|
@@ -14368,7 +14368,9 @@ var SCHEMA2 = {
|
|
|
14368
14368
|
description: "Amazon DynamoDB is a key-value and document database that delivers single-digit millisecond performance at any scale.",
|
|
14369
14369
|
friendlyName: "DynamoDB",
|
|
14370
14370
|
type: "Non-relational",
|
|
14371
|
-
features:
|
|
14371
|
+
features: {
|
|
14372
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
14373
|
+
},
|
|
14372
14374
|
datasource: {
|
|
14373
14375
|
region: {
|
|
14374
14376
|
type: "string" /* STRING */,
|
|
@@ -14572,7 +14574,9 @@ var getSchema = () => {
|
|
|
14572
14574
|
friendlyName: "MongoDB",
|
|
14573
14575
|
type: "Non-relational",
|
|
14574
14576
|
description: "MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.",
|
|
14575
|
-
features:
|
|
14577
|
+
features: {
|
|
14578
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
14579
|
+
},
|
|
14576
14580
|
datasource: {
|
|
14577
14581
|
connectionString: {
|
|
14578
14582
|
type: "string" /* STRING */,
|
|
@@ -15161,7 +15165,9 @@ var SCHEMA4 = {
|
|
|
15161
15165
|
description: "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.",
|
|
15162
15166
|
friendlyName: "ElasticSearch",
|
|
15163
15167
|
type: "Non-relational",
|
|
15164
|
-
features:
|
|
15168
|
+
features: {
|
|
15169
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
15170
|
+
},
|
|
15165
15171
|
datasource: {
|
|
15166
15172
|
url: {
|
|
15167
15173
|
type: "string" /* STRING */,
|
|
@@ -15333,7 +15339,9 @@ var SCHEMA5 = {
|
|
|
15333
15339
|
friendlyName: "CouchDB",
|
|
15334
15340
|
type: "Non-relational",
|
|
15335
15341
|
description: "Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang.",
|
|
15336
|
-
features:
|
|
15342
|
+
features: {
|
|
15343
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
15344
|
+
},
|
|
15337
15345
|
datasource: {
|
|
15338
15346
|
url: {
|
|
15339
15347
|
type: "string" /* STRING */,
|
|
@@ -15453,10 +15461,10 @@ var SCHEMA6 = {
|
|
|
15453
15461
|
description: "Microsoft SQL Server is a relational database management system developed by Microsoft. ",
|
|
15454
15462
|
friendlyName: "MS SQL Server",
|
|
15455
15463
|
type: "Relational",
|
|
15456
|
-
features:
|
|
15457
|
-
"connection" /* CONNECTION_CHECKING
|
|
15458
|
-
"fetch_table_names" /* FETCH_TABLE_NAMES */
|
|
15459
|
-
|
|
15464
|
+
features: {
|
|
15465
|
+
["connection" /* CONNECTION_CHECKING */]: true,
|
|
15466
|
+
["fetch_table_names" /* FETCH_TABLE_NAMES */]: true
|
|
15467
|
+
},
|
|
15460
15468
|
datasource: {
|
|
15461
15469
|
user: {
|
|
15462
15470
|
type: "string" /* STRING */,
|
|
@@ -15711,7 +15719,9 @@ var SCHEMA7 = {
|
|
|
15711
15719
|
description: "Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance.",
|
|
15712
15720
|
friendlyName: "Amazon S3",
|
|
15713
15721
|
type: "Object store",
|
|
15714
|
-
features:
|
|
15722
|
+
features: {
|
|
15723
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
15724
|
+
},
|
|
15715
15725
|
datasource: {
|
|
15716
15726
|
region: {
|
|
15717
15727
|
type: "string",
|
|
@@ -15933,7 +15943,9 @@ var SCHEMA8 = {
|
|
|
15933
15943
|
description: "Airtable is a spreadsheet-database hybrid, with the features of a database but applied to a spreadsheet.",
|
|
15934
15944
|
friendlyName: "Airtable",
|
|
15935
15945
|
type: "Spreadsheet",
|
|
15936
|
-
features:
|
|
15946
|
+
features: {
|
|
15947
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
15948
|
+
},
|
|
15937
15949
|
datasource: {
|
|
15938
15950
|
apiKey: {
|
|
15939
15951
|
type: "password" /* PASSWORD */,
|
|
@@ -16076,10 +16088,10 @@ var SCHEMA9 = {
|
|
|
16076
16088
|
friendlyName: "MySQL",
|
|
16077
16089
|
type: "Relational",
|
|
16078
16090
|
description: "MySQL Database Service is a fully managed database service to deploy cloud-native applications. ",
|
|
16079
|
-
features:
|
|
16080
|
-
"connection" /* CONNECTION_CHECKING
|
|
16081
|
-
"fetch_table_names" /* FETCH_TABLE_NAMES */
|
|
16082
|
-
|
|
16091
|
+
features: {
|
|
16092
|
+
["connection" /* CONNECTION_CHECKING */]: true,
|
|
16093
|
+
["fetch_table_names" /* FETCH_TABLE_NAMES */]: true
|
|
16094
|
+
},
|
|
16083
16095
|
datasource: {
|
|
16084
16096
|
host: {
|
|
16085
16097
|
type: "string" /* STRING */,
|
|
@@ -16321,7 +16333,9 @@ var SCHEMA10 = {
|
|
|
16321
16333
|
friendlyName: "ArangoDB",
|
|
16322
16334
|
type: "Non-relational",
|
|
16323
16335
|
description: "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. ",
|
|
16324
|
-
features:
|
|
16336
|
+
features: {
|
|
16337
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
16338
|
+
},
|
|
16325
16339
|
datasource: {
|
|
16326
16340
|
url: {
|
|
16327
16341
|
type: "string" /* STRING */,
|
|
@@ -17165,10 +17179,10 @@ var SCHEMA12 = {
|
|
|
17165
17179
|
description: "Create and collaborate on online spreadsheets in real-time and from any device.",
|
|
17166
17180
|
friendlyName: "Google Sheets",
|
|
17167
17181
|
type: "Spreadsheet",
|
|
17168
|
-
features:
|
|
17169
|
-
"connection" /* CONNECTION_CHECKING
|
|
17170
|
-
"fetch_table_names" /* FETCH_TABLE_NAMES */
|
|
17171
|
-
|
|
17182
|
+
features: {
|
|
17183
|
+
["connection" /* CONNECTION_CHECKING */]: true,
|
|
17184
|
+
["fetch_table_names" /* FETCH_TABLE_NAMES */]: true
|
|
17185
|
+
},
|
|
17172
17186
|
datasource: {
|
|
17173
17187
|
spreadsheetId: {
|
|
17174
17188
|
display: "Google Sheet URL",
|
|
@@ -17594,7 +17608,9 @@ var SCHEMA13 = {
|
|
|
17594
17608
|
friendlyName: "Firestore",
|
|
17595
17609
|
type: "Non-relational",
|
|
17596
17610
|
description: "Cloud Firestore is a flexible, scalable database for mobile, web, and server development from Firebase and Google Cloud.",
|
|
17597
|
-
features:
|
|
17611
|
+
features: {
|
|
17612
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
17613
|
+
},
|
|
17598
17614
|
datasource: {
|
|
17599
17615
|
email: {
|
|
17600
17616
|
type: "string" /* STRING */,
|
|
@@ -17747,7 +17763,9 @@ var SCHEMA14 = {
|
|
|
17747
17763
|
description: "Redis is a caching tool, providing powerful key-value store capabilities.",
|
|
17748
17764
|
friendlyName: "Redis",
|
|
17749
17765
|
type: "Non-relational",
|
|
17750
|
-
features:
|
|
17766
|
+
features: {
|
|
17767
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
17768
|
+
},
|
|
17751
17769
|
datasource: {
|
|
17752
17770
|
host: {
|
|
17753
17771
|
type: "string",
|
|
@@ -17901,7 +17919,9 @@ var SCHEMA15 = {
|
|
|
17901
17919
|
description: "Snowflake is a solution for data warehousing, data lakes, data engineering, data science, data application development, and securely sharing and consuming shared data.",
|
|
17902
17920
|
friendlyName: "Snowflake",
|
|
17903
17921
|
type: "Relational",
|
|
17904
|
-
features:
|
|
17922
|
+
features: {
|
|
17923
|
+
["connection" /* CONNECTION_CHECKING */]: true
|
|
17924
|
+
},
|
|
17905
17925
|
datasource: {
|
|
17906
17926
|
account: {
|
|
17907
17927
|
type: "string",
|
|
@@ -17999,10 +18019,10 @@ var SCHEMA16 = {
|
|
|
17999
18019
|
friendlyName: "Oracle",
|
|
18000
18020
|
type: "Relational",
|
|
18001
18021
|
description: "Oracle Database is an object-relational database management system developed by Oracle Corporation",
|
|
18002
|
-
features:
|
|
18003
|
-
"connection" /* CONNECTION_CHECKING
|
|
18004
|
-
"fetch_table_names" /* FETCH_TABLE_NAMES */
|
|
18005
|
-
|
|
18022
|
+
features: {
|
|
18023
|
+
["connection" /* CONNECTION_CHECKING */]: true,
|
|
18024
|
+
["fetch_table_names" /* FETCH_TABLE_NAMES */]: true
|
|
18025
|
+
},
|
|
18006
18026
|
datasource: {
|
|
18007
18027
|
host: {
|
|
18008
18028
|
type: "string" /* STRING */,
|