additional params updates

This commit is contained in:
lohit-bruno
2025-08-13 21:42:04 +05:30
parent 7ccbea7ced
commit ceab0b4dc1
15 changed files with 780 additions and 93 deletions

View File

@@ -247,6 +247,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const authorizationQueryParams = authorizationParams?.filter(p => p?.sendIn == 'queryparams');
@@ -258,7 +259,8 @@ ${indentString(
.map((item) => `${item.enabled ? '' : '~'}${item.name}: ${item.value}`)
.join('\n')
)}
}
}
`;
}
const tokenHeaders = tokenParams?.filter(p => p?.sendIn == 'headers');
@@ -271,7 +273,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const tokenQueryParams = tokenParams?.filter(p => p?.sendIn == 'queryparams');
@@ -284,7 +286,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const tokenBodyValues = tokenParams?.filter(p => p?.sendIn == 'body');
@@ -297,7 +299,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const refreshHeaders = refreshParams?.filter(p => p?.sendIn == 'headers');
@@ -310,7 +312,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const refreshQueryParams = refreshParams?.filter(p => p?.sendIn == 'queryparams');
@@ -323,7 +325,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
const refreshBodyValues = refreshParams?.filter(p => p?.sendIn == 'body');
@@ -336,7 +338,7 @@ ${indentString(
.join('\n')
)}
}
`;
}
}