From 5cc886b95329d3634a71433c64485286a7486c65 Mon Sep 17 00:00:00 2001 From: Alexey Neretin Date: Tue, 18 Aug 2026 13:45:50 +0300 Subject: [PATCH] Add default checkKit value to the options template and extend getInfo method with this option --- webapi.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/webapi.js b/webapi.js index d4bd3c9..73f2227 100644 --- a/webapi.js +++ b/webapi.js @@ -80,6 +80,10 @@ requestHeaders: { type: optionTypes.function, defaultValue: function() {} + }, + checkKit: { + type: optionTypes.string, + defaultValue: '' } }; @@ -238,7 +242,8 @@ command: this._commands.getInfo, locale: parameters.locale || this.getOption('localization'), version: parameters.version || 2, - containerType: this.getOption('containerType') + containerType: this.getOption('containerType'), + checkKit: this.getOption('checkKit') }, parameters );