From 518f6a6f494578283140eb44b40d8874e9fb0feb Mon Sep 17 00:00:00 2001 From: Rafal Hawrylak Date: Wed, 22 Apr 2026 06:23:03 +0000 Subject: [PATCH] Move extension options --- protos/core.proto | 8 +------- protos/extension.proto | 5 +++++ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/protos/core.proto b/protos/core.proto index eab87bd99..ec4f126c8 100644 --- a/protos/core.proto +++ b/protos/core.proto @@ -57,13 +57,7 @@ message CompileConfig { // Whether to emit compilation debug logs. bool verbose = 11; - // Supplementary key-value options for the compilation process, - // distinct from `project_config_override.vars` (which holds user vars). - // This can be used to pass environment-specific parameters or - // auxiliary configuration paths to the underlying execution engine. - map additional_options = 12; - - reserved 2, 4, 5, 7, 9; + reserved 2, 4, 5, 7, 9, 12; } message Target { diff --git a/protos/extension.proto b/protos/extension.proto index ef7e3256f..8284bd953 100644 --- a/protos/extension.proto +++ b/protos/extension.proto @@ -24,4 +24,9 @@ message Extension { // Compilation mode of the extension, required. ExtensionCompilationMode compilation_mode = 2; + + // Supplementary key-value options for the extension execution. + // This can be used to pass environment-specific parameters or + // auxiliary configuration paths to the underlying extension engine. + map options = 3; }