From e8ab9c692d4c44060ac5e381b8db09a7c949bbf3 Mon Sep 17 00:00:00 2001 From: rado Date: Thu, 30 Oct 2025 12:37:21 +0100 Subject: [PATCH 1/3] Bump to latest sdk --- code/package-lock.json | 8 ++++---- code/package.json | 2 +- .../extraction/workers/external-sync-units-extraction.ts | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/code/package-lock.json b/code/package-lock.json index 49adb3d..a531dd1 100644 --- a/code/package-lock.json +++ b/code/package-lock.json @@ -9,7 +9,7 @@ "version": "1.1.6", "license": "ISC", "dependencies": { - "@devrev/ts-adaas": "1.11.0", + "@devrev/ts-adaas": "1.11.1-beta.5", "@devrev/typescript-sdk": "1.1.63", "axios": "^1.9.0", "dotenv": "^16.0.3", @@ -1874,9 +1874,9 @@ } }, "node_modules/@devrev/ts-adaas": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@devrev/ts-adaas/-/ts-adaas-1.11.0.tgz", - "integrity": "sha512-6KkPO42397liEFRTGLT526MUfXw4RIBYIWGTJQG9/CDbah72dalXDSyUezj5x8IWjIVMaIMHbFJtlbt/85hqeA==", + "version": "1.11.1-beta.5", + "resolved": "https://registry.npmjs.org/@devrev/ts-adaas/-/ts-adaas-1.11.1-beta.5.tgz", + "integrity": "sha512-btuw0Xq4LoumwoO94Tp8thS6eInO1Q49tEsYCttnIT0qU3NL2f/HDjqDD3qPlIxjlp84rGYPqeQrmypILQEVeQ==", "license": "ISC", "dependencies": { "@devrev/typescript-sdk": "^1.1.59", diff --git a/code/package.json b/code/package.json index 6122d7a..da836a5 100644 --- a/code/package.json +++ b/code/package.json @@ -56,7 +56,7 @@ "yargs": "^17.6.2" }, "dependencies": { - "@devrev/ts-adaas": "1.11.0", + "@devrev/ts-adaas": "1.11.1-beta.5", "@devrev/typescript-sdk": "1.1.63", "axios": "^1.9.0", "dotenv": "^16.0.3", diff --git a/code/src/functions/extraction/workers/external-sync-units-extraction.ts b/code/src/functions/extraction/workers/external-sync-units-extraction.ts index 283d5d9..5686fe7 100644 --- a/code/src/functions/extraction/workers/external-sync-units-extraction.ts +++ b/code/src/functions/extraction/workers/external-sync-units-extraction.ts @@ -5,6 +5,8 @@ import { HttpClient } from '../../external-system/http-client'; processTask({ task: async ({ adapter }) => { + console.log(`Logging event in external-sync-units-extraction worker`, adapter.event); + // TODO: Replace with HTTP client that will be used to make API calls // to the external system. const httpClient = new HttpClient(adapter.event); From a780a0672b00098625240bafd1860bfc7484b148 Mon Sep 17 00:00:00 2001 From: rado Date: Mon, 24 Nov 2025 13:26:30 +0100 Subject: [PATCH 2/3] Bump to the latest SDK --- code/package-lock.json | 8 ++++---- code/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/package-lock.json b/code/package-lock.json index a531dd1..606b4f4 100644 --- a/code/package-lock.json +++ b/code/package-lock.json @@ -9,7 +9,7 @@ "version": "1.1.6", "license": "ISC", "dependencies": { - "@devrev/ts-adaas": "1.11.1-beta.5", + "@devrev/ts-adaas": "1.12.2", "@devrev/typescript-sdk": "1.1.63", "axios": "^1.9.0", "dotenv": "^16.0.3", @@ -1874,9 +1874,9 @@ } }, "node_modules/@devrev/ts-adaas": { - "version": "1.11.1-beta.5", - "resolved": "https://registry.npmjs.org/@devrev/ts-adaas/-/ts-adaas-1.11.1-beta.5.tgz", - "integrity": "sha512-btuw0Xq4LoumwoO94Tp8thS6eInO1Q49tEsYCttnIT0qU3NL2f/HDjqDD3qPlIxjlp84rGYPqeQrmypILQEVeQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@devrev/ts-adaas/-/ts-adaas-1.12.2.tgz", + "integrity": "sha512-ktpPiTNpf7pZ+epLMyi8xPF1yAwptvSgiQPOI24u4axtimb5EPu0Gky+2HlJ6cE4jqqCzZZ56r59W4XCdC7NNg==", "license": "ISC", "dependencies": { "@devrev/typescript-sdk": "^1.1.59", diff --git a/code/package.json b/code/package.json index da836a5..9f2c11e 100644 --- a/code/package.json +++ b/code/package.json @@ -56,7 +56,7 @@ "yargs": "^17.6.2" }, "dependencies": { - "@devrev/ts-adaas": "1.11.1-beta.5", + "@devrev/ts-adaas": "1.12.2", "@devrev/typescript-sdk": "1.1.63", "axios": "^1.9.0", "dotenv": "^16.0.3", From d125d74032198f6de39bdfd9c0d993321711ea0b Mon Sep 17 00:00:00 2001 From: rado Date: Mon, 24 Nov 2025 13:27:58 +0100 Subject: [PATCH 3/3] Remove useless log --- .../extraction/workers/external-sync-units-extraction.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/src/functions/extraction/workers/external-sync-units-extraction.ts b/code/src/functions/extraction/workers/external-sync-units-extraction.ts index 5686fe7..283d5d9 100644 --- a/code/src/functions/extraction/workers/external-sync-units-extraction.ts +++ b/code/src/functions/extraction/workers/external-sync-units-extraction.ts @@ -5,8 +5,6 @@ import { HttpClient } from '../../external-system/http-client'; processTask({ task: async ({ adapter }) => { - console.log(`Logging event in external-sync-units-extraction worker`, adapter.event); - // TODO: Replace with HTTP client that will be used to make API calls // to the external system. const httpClient = new HttpClient(adapter.event);