From 3bef4ce99c58bef2f5fde7fb29638dc8b4f65457 Mon Sep 17 00:00:00 2001 From: Valentin Pirva Date: Thu, 20 Nov 2025 11:00:52 +0200 Subject: [PATCH 1/2] add value to Boolean input type and change triggerProxyEmail from boolean to string --- package.json | 2 +- src/schema/job-board-application.json | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 7a44428..4560351 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ubio/protocol", - "version": "7.11.0", + "version": "7.11.1", "description": "ubio Automation Protocol", "main": "out/main/index.js", "types": "out/main/index.d.ts", diff --git a/src/schema/job-board-application.json b/src/schema/job-board-application.json index 5f602eb..93f2e5f 100644 --- a/src/schema/job-board-application.json +++ b/src/schema/job-board-application.json @@ -54,8 +54,8 @@ "resolvedUrl": { "typeRef": "#/domains/JobBoardApplication/types/ResolvedUrl" }, - "triggerProxyEmailFallback": { - "typeRef": "#/domains/JobBoardApplication/types/TriggerProxyEmailFallback" + "triggerProxyEmail": { + "typeRef": "#/domains/JobBoardApplication/types/TriggerProxyEmail" }, "serviceData": { "typeRef": "#/domains/JobBoardApplication/types/ServiceData" @@ -140,8 +140,8 @@ ], "additionalProperties": false }, - "TriggerProxyEmailFallback": { - "type": "boolean", + "TriggerProxyEmail": { + "type": "string", "description": "", "additionalProperties": false }, @@ -779,6 +779,9 @@ "mandatory": { "type": "boolean" }, + "value": { + "type": "string" + }, "ignoreCache": { "type": "boolean" } From df31fb6b093a224f4bbb15ccbd9ed946b7d84e08 Mon Sep 17 00:00:00 2001 From: Valentin Pirva Date: Tue, 25 Nov 2025 16:06:04 +0200 Subject: [PATCH 2/2] add description to TriggerProxyEmail --- src/schema/job-board-application.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema/job-board-application.json b/src/schema/job-board-application.json index 93f2e5f..2b0aae7 100644 --- a/src/schema/job-board-application.json +++ b/src/schema/job-board-application.json @@ -142,7 +142,7 @@ }, "TriggerProxyEmail": { "type": "string", - "description": "", + "description": "The email address used for proxy email.", "additionalProperties": false }, "ServiceData": {