omnigateway 0.4.3 → 0.4.4

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/gateway.js +1 -1
  2. package/package.json +1 -1
package/gateway.js CHANGED
@@ -43667,7 +43667,7 @@ function pluginCatalog(plugins) {
43667
43667
  version: plugin.manifest.version,
43668
43668
  nav: plugin.manifest.nav === undefined ? null : plugin.manifest.nav,
43669
43669
  ui: plugin.ui === undefined ? null : {
43670
- entry: plugin.ui.compatible ? `${PLUGIN_ASSET_PREFIX}/${plugin.id}/${plugin.ui.entry}` : null,
43670
+ entry: plugin.ui.compatible ? `${PLUGIN_ASSET_PREFIX}/${plugin.id}/${plugin.ui.entry}?v=${encodeURIComponent(plugin.manifest.version)}` : null,
43671
43671
  compatible: plugin.ui.compatible,
43672
43672
  ...plugin.ui.reason === undefined ? {} : { reason: plugin.ui.reason }
43673
43673
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnigateway",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Self-hosted AI gateway with Anthropic- and OpenAI-compatible APIs, an admin console, and a CLI",
5
5
  "license": "MIT",
6
6
  "author": "Harismawan <mail@harismawan.com>",