@powerhousedao/switchboard 6.2.2-dev.1 → 6.2.2-dev.10
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/.env +13 -0
- package/.tsbuild/test/attachments/auth.test.d.ts +2 -0
- package/.tsbuild/test/attachments/auth.test.d.ts.map +1 -0
- package/.tsbuild/test/attachments/index.test.d.ts +2 -0
- package/.tsbuild/test/attachments/index.test.d.ts.map +1 -0
- package/.tsbuild/test/attachments/routes-integration.test.d.ts +2 -0
- package/.tsbuild/test/attachments/routes-integration.test.d.ts.map +1 -0
- package/.tsbuild/test/attachments/routes.test.d.ts +2 -0
- package/.tsbuild/test/attachments/routes.test.d.ts.map +1 -0
- package/.tsbuild/test/attachments/service-config.test.d.ts +2 -0
- package/.tsbuild/test/attachments/service-config.test.d.ts.map +1 -0
- package/.tsbuild/test/metrics.test.d.ts +2 -0
- package/.tsbuild/test/metrics.test.d.ts.map +1 -0
- package/.tsbuild/test/pglite-dialect.test.d.ts +2 -0
- package/.tsbuild/test/pglite-dialect.test.d.ts.map +1 -0
- package/.tsbuild/test/pglite-version.test.d.ts +2 -0
- package/.tsbuild/test/pglite-version.test.d.ts.map +1 -0
- package/.tsbuild/test/worker-pool.test.d.ts +2 -0
- package/.tsbuild/test/worker-pool.test.d.ts.map +1 -0
- package/.tsbuild/tsconfig.tsbuildinfo +1 -0
- package/.tsbuild/tsdown.config.d.ts +3 -0
- package/.tsbuild/tsdown.config.d.ts.map +1 -0
- package/.tsbuild/vitest.config.d.ts +3 -0
- package/.tsbuild/vitest.config.d.ts.map +1 -0
- package/CHANGELOG.md +49 -0
- package/README.md +44 -0
- package/dist/index.mjs +1 -1
- package/dist/{server-DgBz3TJW.mjs → server-Cgud_ONM.mjs} +216 -8
- package/dist/server-Cgud_ONM.mjs.map +1 -0
- package/dist/server.d.mts +13 -9
- package/dist/server.d.mts.map +1 -1
- package/dist/server.mjs +3 -3
- package/package.json +12 -12
- package/test/worker-pool.test.ts +232 -0
- package/dist/server-DgBz3TJW.mjs.map +0 -1
package/.env
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Switchboard Environment Variables
|
|
2
|
+
|
|
3
|
+
## General Server Options
|
|
4
|
+
PH_SWITCHBOARD_PORT=4001
|
|
5
|
+
PH_SWITCHBOARD_API_ORIGIN=http://localhost:3000
|
|
6
|
+
|
|
7
|
+
## Dynamic Model Loading
|
|
8
|
+
PH_REGISTRY_URL=https://registry.dev.vetra.io/
|
|
9
|
+
DYNAMIC_MODEL_LOADING=true
|
|
10
|
+
|
|
11
|
+
## Cache & Storage Options
|
|
12
|
+
#PH_SWITCHBOARD_DATABASE_URL="postgresql://postgres:postgres@localhost:5444/postgres"
|
|
13
|
+
#PH_SWITCHBOARD_REDIS_URL="redis://localhost:6380"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth.test.d.ts","sourceRoot":"","sources":["../../../test/attachments/auth.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../test/attachments/index.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routes-integration.test.d.ts","sourceRoot":"","sources":["../../../test/attachments/routes-integration.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routes.test.d.ts","sourceRoot":"","sources":["../../../test/attachments/routes.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service-config.test.d.ts","sourceRoot":"","sources":["../../../test/attachments/service-config.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metrics.test.d.ts","sourceRoot":"","sources":["../../test/metrics.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pglite-dialect.test.d.ts","sourceRoot":"","sources":["../../test/pglite-dialect.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pglite-version.test.d.ts","sourceRoot":"","sources":["../../test/pglite-version.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"worker-pool.test.d.ts","sourceRoot":"","sources":["../../test/worker-pool.test.ts"],"names":[],"mappings":""}
|