keryx 0.11.1 → 0.11.2

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.
Files changed (2) hide show
  1. package/api.ts +1 -1
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -38,7 +38,7 @@ if (!globalThis.api) {
38
38
  // @ts-ignore — augmented API properties (db, redis, etc.) are set later by initializers at runtime
39
39
  globalThis.api = new API();
40
40
  globalThis.logger = globalThis.api.logger;
41
- globalThis.config = Config;
41
+ globalThis.config = Config as KeryxConfig;
42
42
  }
43
43
 
44
44
  /** The global API singleton. All framework state (actions, db, redis, etc.) is accessed through this object. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keryx",
3
- "version": "0.11.1",
3
+ "version": "0.11.2",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "license": "MIT",