@semiont/gateway 0.5.28 → 0.5.29

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/dist/index.js +3 -3
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -10346,7 +10346,7 @@ healthRouter.get("/api/health", async (c) => {
10346
10346
  const response = {
10347
10347
  status: "operational",
10348
10348
  message: "Semiont API is running",
10349
- version: "0.5.28",
10349
+ version: "0.5.29",
10350
10350
  timestamp: (/* @__PURE__ */ new Date()).toISOString(),
10351
10351
  database: dbStatus ? "connected" : "disconnected",
10352
10352
  environment: nodeEnv
@@ -11096,7 +11096,7 @@ statusRouter.get("/api/status", async (c) => {
11096
11096
  const did = kbDid(siteDomain);
11097
11097
  const response = {
11098
11098
  status: "operational",
11099
- version: "0.5.28",
11099
+ version: "0.5.29",
11100
11100
  features: {
11101
11101
  semanticContent: "planned",
11102
11102
  collaboration: "planned",
@@ -12032,7 +12032,7 @@ app.get("/api/openapi.json", (c) => {
12032
12032
  const openApiPath = fs.existsSync(distPath) ? distPath : path.join(__dirname$1, "../../../specs/openapi.json");
12033
12033
  const openApiContent = fs.readFileSync(openApiPath, "utf-8");
12034
12034
  const openApiSpec = JSON.parse(openApiContent);
12035
- openApiSpec.info = { ...openApiSpec.info, version: "0.5.28" };
12035
+ openApiSpec.info = { ...openApiSpec.info, version: "0.5.29" };
12036
12036
  const port2 = gatewayService.port || 4e3;
12037
12037
  const apiUrl = gatewayService.publicURL || `http://localhost:${port2}`;
12038
12038
  if (apiUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/gateway",
3
- "version": "0.5.28",
3
+ "version": "0.5.29",
4
4
  "type": "module",
5
5
  "description": "Semiont gateway server - pre-built for npm consumption",
6
6
  "main": "dist/index.js",
@@ -30,9 +30,9 @@
30
30
  "@hono/swagger-ui": "^0.6.1",
31
31
  "@prisma/adapter-pg": "^7.10.0",
32
32
  "@prisma/client": "^7.10.0",
33
- "@semiont/core": "0.5.28",
34
- "@semiont/make-meaning": "0.5.28",
35
- "@semiont/observability": "0.5.28",
33
+ "@semiont/core": "0.5.29",
34
+ "@semiont/make-meaning": "0.5.29",
35
+ "@semiont/observability": "0.5.29",
36
36
  "ajv": "^8.20.0",
37
37
  "ajv-formats": "^3.0.1",
38
38
  "argon2": "^0.45.1",