@ossy/platform 1.37.0 → 1.38.0

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/package.json +9 -9
  2. package/src/server.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/platform",
3
- "version": "1.37.0",
3
+ "version": "1.38.0",
4
4
  "description": "Ossy application server runtime",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,13 +38,13 @@
38
38
  "@aws-sdk/s3-request-presigner": "^3.1057.0",
39
39
  "@aws-sdk/util-create-request": "^3.972.26",
40
40
  "@aws-sdk/util-format-url": "^3.972.17",
41
- "@ossy/event-store": "^1.6.0",
42
- "@ossy/observability": "^1.6.0",
43
- "@ossy/policies": "^1.11.0",
44
- "@ossy/router": "^1.38.0",
45
- "@ossy/sdk": "^1.38.0",
46
- "@ossy/tokens": "^1.11.0",
47
- "@ossy/users": "^1.11.0",
41
+ "@ossy/event-store": "^1.7.0",
42
+ "@ossy/observability": "^1.7.0",
43
+ "@ossy/policies": "^1.12.0",
44
+ "@ossy/router": "^1.39.0",
45
+ "@ossy/sdk": "^1.39.0",
46
+ "@ossy/tokens": "^1.12.0",
47
+ "@ossy/users": "^1.12.0",
48
48
  "cookie-parser": "^1.4.7",
49
49
  "dotenv": ">=16.0.0 <18.0.0",
50
50
  "express": ">=5.0.0 <6.0.0",
@@ -62,5 +62,5 @@
62
62
  "src",
63
63
  "Dockerfile"
64
64
  ],
65
- "gitHead": "abc435125ddf56e01b61353d49d2a18d2ab55be8"
65
+ "gitHead": "150285065e45f9be2ee19794e493abc50cd85e44"
66
66
  }
package/src/server.js CHANGED
@@ -385,6 +385,7 @@ export async function startServer (options = {}) {
385
385
  export default startServer
386
386
  export { ConfigService } from './config.service.js'
387
387
  export { ActionService } from './actions/action.service.js'
388
+ export { IntegrationService } from './integration.service.js'
388
389
  export { StorageClient } from './storage/storage.client.js'
389
390
  export { S3Client } from './storage/s3.client.js'
390
391
  export { LocalStorageClient } from './storage/local-storage.client.js'