Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions protos/core.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> additional_options = 12;

reserved 2, 4, 5, 7, 9;
reserved 2, 4, 5, 7, 9, 12;
}

message Target {
Expand Down
5 changes: 5 additions & 0 deletions protos/extension.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> options = 3;
}
Loading