@aloma.io/integration-sdk 3.3.62 → 3.3.64

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.3.62",
3
+ "version": "3.3.64",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -31,10 +31,11 @@
31
31
  "commander": "^11",
32
32
  "dotenv": "*",
33
33
  "express": "^4",
34
- "jose": "^4",
34
+ "jose": "^5",
35
35
  "node-fetch": "^3",
36
36
  "prom-client": "^15",
37
- "ws": "^8"
37
+ "ws": "^8",
38
+ "zod": "^3"
38
39
  },
39
40
  "optionalDependencies": {
40
41
  "bufferutil": "^4",
@@ -10,6 +10,10 @@ COPY ./tsconfig.json ./
10
10
  COPY ./entrypoint.sh ./
11
11
  COPY ./src ./src
12
12
 
13
+ # enable to set version from file while building
14
+ # COPY ./.version ./.version
15
+ # RUN set -e; npm --no-git-tag-version --allow-same-version version $(cat .version);
16
+
13
17
  RUN set -e; addgroup -g 1111 connector; adduser -S -u 1111 -G connector connector
14
18
 
15
19
  RUN set -e; apk add --no-cache git; yarn config set --home enableTelemetry 0; chmod 755 /connector/entrypoint.sh; cd /connector/; yarn install --frozen-lockfile; yarn run build;