Streamline management of API collections #1

Merged
administrator merged 43 commits from feature/script-autogenerate-http into main 2026-08-19 14:54:42 +02:00
Showing only changes of commit 12f7c18362 - Show all commits
+1 -1
View File
@@ -479,7 +479,7 @@ export function buildRequestContent(request, requestName, requestConfig = {}, do
if (commentedVariableDefinitions.length > 0) { if (commentedVariableDefinitions.length > 0) {
lines.push(`# Other variables for ${requestName}`); lines.push(`# Other variables for ${requestName}`);
for (const variable of commentedVariableDefinitions) { for (const variable of commentedVariableDefinitions) {
lines.push(`# ${sanitizeVarName(variable.name)}${VARIABLE_NAME_VALUE_SEPARATOR}${formatVariableValue(variable.value, { renderValue })}`); lines.push(`# @${sanitizeVarName(variable.name)}${VARIABLE_NAME_VALUE_SEPARATOR}${formatVariableValue(variable.value, { renderValue })}`);
} }
} }