@semiont/backend 0.4.4 → 0.4.6

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/dist/openapi.json CHANGED
@@ -5992,6 +5992,10 @@
5992
5992
  },
5993
5993
  "created": {
5994
5994
  "type": "string"
5995
+ },
5996
+ "token": {
5997
+ "type": "string",
5998
+ "description": "The validated JWT token string for the current session"
5995
5999
  }
5996
6000
  },
5997
6001
  "required": [
@@ -6005,7 +6009,8 @@
6005
6009
  "isActive",
6006
6010
  "termsAcceptedAt",
6007
6011
  "lastLogin",
6008
- "created"
6012
+ "created",
6013
+ "token"
6009
6014
  ]
6010
6015
  },
6011
6016
  "SvgSelector": {
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@semiont/backend",
3
- "version": "0.4.4",
3
+ "version": "0.4.6",
4
4
  "type": "module",
5
5
  "description": "Semiont backend server - pre-built for npm consumption",
6
+ "main": "dist/index.js",
6
7
  "bin": {
7
8
  "semiont-backend": "dist/index.js"
8
9
  },
@@ -19,10 +20,10 @@
19
20
  "@hono/swagger-ui": "^0.6.1",
20
21
  "@prisma/adapter-pg": "^7.5.0",
21
22
  "@prisma/client": "^7.5.0",
22
- "@semiont/core": "^0.4.4",
23
- "@semiont/event-sourcing": "^0.4.4",
24
- "@semiont/jobs": "^0.4.4",
25
- "@semiont/make-meaning": "^0.4.4",
23
+ "@semiont/core": "^0.4.6",
24
+ "@semiont/event-sourcing": "^0.4.6",
25
+ "@semiont/jobs": "^0.4.6",
26
+ "@semiont/make-meaning": "^0.4.6",
26
27
  "ajv": "^8.17.1",
27
28
  "ajv-formats": "^3.0.1",
28
29
  "argon2": "^0.44.0",