@malloy-publisher/server 0.0.243 → 0.0.245
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/README.md +47 -5
- package/dist/app/api-doc.yaml +445 -21
- package/dist/app/assets/{EnvironmentPage-zu0NeDu-.js → EnvironmentPage-EjXlK1AR.js} +1 -1
- package/dist/app/assets/{HomePage-kuBM3jiQ.js → HomePage-BDg82oe3.js} +1 -1
- package/dist/app/assets/{LightMode-DGBAdVPb.js → LightMode-CM8J0nPB.js} +1 -1
- package/dist/app/assets/{MainPage-CCVx9yPs.js → MainPage-CkkdimtC.js} +1 -1
- package/dist/app/assets/{MaterializationsPage-M-bWIx8L.js → MaterializationsPage-DvVS2HMi.js} +1 -1
- package/dist/app/assets/{ModelPage-D-L2pqIy.js → ModelPage-Bz2je31A.js} +1 -1
- package/dist/app/assets/{PackagePage-BZglxDlj.js → PackagePage-BUJU3qB3.js} +1 -1
- package/dist/app/assets/{RouteError-DGoCQGam.js → RouteError-oqZTfMol.js} +1 -1
- package/dist/app/assets/{ThemeEditorPage-e8MLf7SV.js → ThemeEditorPage-W-V8hngE.js} +1 -1
- package/dist/app/assets/{WorkbookPage-C8ufpN5i.js → WorkbookPage-IQFxsQGR.js} +1 -1
- package/dist/app/assets/{core-KFsKleo0.es-D6cYhbct.js → core-BCwj9ZvB.es-C610H3gu.js} +1 -1
- package/dist/app/assets/{index-CDNkCta4.js → index-1xafiaYB.js} +1 -1
- package/dist/app/assets/{index-Dnef41hg.js → index-BUhTsFh9.js} +1 -1
- package/dist/app/assets/{index-B-jw9EkA.js → index-DJ-3RN5W.js} +4 -4
- package/dist/app/assets/{index-CLwzlAx6.js → index-Dxotbpnc.js} +1 -1
- package/dist/app/index.html +1 -1
- package/dist/instrumentation.mjs +10 -9
- package/dist/package_load_worker.mjs +209 -188
- package/dist/server.mjs +107148 -105496
- package/dist/sshcrypto-vd2k5hq9.node +0 -0
- package/package.json +4 -2
- package/publisher.config.example.bigquery.json +33 -0
- package/publisher.config.example.duckdb.json +23 -0
- package/dist/sshcrypto-8m50vnmb.node +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloy-publisher/server",
|
|
3
3
|
"description": "Malloy Publisher Server",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.245",
|
|
5
5
|
"main": "dist/server.mjs",
|
|
6
6
|
"bin": {
|
|
7
7
|
"malloy-publisher": "dist/server.mjs"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist"
|
|
10
|
+
"dist",
|
|
11
|
+
"publisher.config.example.duckdb.json",
|
|
12
|
+
"publisher.config.example.bigquery.json"
|
|
11
13
|
],
|
|
12
14
|
"engines": {
|
|
13
15
|
"node": ">=20"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"frozenConfig": false,
|
|
3
|
+
"environments": [
|
|
4
|
+
{
|
|
5
|
+
"name": "examples",
|
|
6
|
+
"packages": [
|
|
7
|
+
{
|
|
8
|
+
"name": "storefront",
|
|
9
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/storefront"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "governed-analytics",
|
|
13
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/governed-analytics"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "html-data-app",
|
|
17
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/html-data-app"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "bigquery-hackernews",
|
|
21
|
+
"location": "https://github.com/credibledata/malloy-samples/tree/main/bigquery-hackernews"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"connections": [
|
|
25
|
+
{
|
|
26
|
+
"name": "bigquery",
|
|
27
|
+
"type": "bigquery",
|
|
28
|
+
"bigqueryConnection": {}
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"frozenConfig": false,
|
|
3
|
+
"environments": [
|
|
4
|
+
{
|
|
5
|
+
"name": "examples",
|
|
6
|
+
"packages": [
|
|
7
|
+
{
|
|
8
|
+
"name": "storefront",
|
|
9
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/storefront"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "governed-analytics",
|
|
13
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/governed-analytics"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "html-data-app",
|
|
17
|
+
"location": "https://github.com/malloydata/publisher/tree/main/examples/html-data-app"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"connections": []
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
Binary file
|