From fd826a9203c0fd4e55a585e419fd846bcad17d3f Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Wed, 15 Nov 2023 11:22:29 -0800 Subject: [PATCH 1/2] tasks/init.json: fix indentation --- tasks/init.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/init.json b/tasks/init.json index 33ed79d..bf79044 100644 --- a/tasks/init.json +++ b/tasks/init.json @@ -14,7 +14,7 @@ "description": "The name of the config entry to set/get", "type": "String[1]" }, - "value": { + "value": { "description": "The value you are setting. Only required for set", "type": "Optional[String[1]]" } From 75f4278a647ac7e3d60c9272411ba9ad7518c95d Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Wed, 15 Nov 2023 11:23:42 -0800 Subject: [PATCH 2/2] tasks/init.json: allow Boolean values This is needed to allow for setting boolean configuration settings. --- tasks/init.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/init.json b/tasks/init.json index bf79044..804b83a 100644 --- a/tasks/init.json +++ b/tasks/init.json @@ -16,7 +16,7 @@ }, "value": { "description": "The value you are setting. Only required for set", - "type": "Optional[String[1]]" + "type": "Optional[Variant[String[1], Boolean]]" } } }