This commit is contained in:
Pooja Belaramani
2025-01-30 13:03:13 +05:30
committed by Anoop M D
parent 062ab00a66
commit 4598acd068

View File

@@ -422,7 +422,7 @@ const importPostmanV2CollectionItem = (brunoParent, item, parentAuth, options) =
brunoRequestItem.request.auth.mode = 'apikey';
brunoRequestItem.request.auth.apikey = {
key: authValues.key,
value: authValues.value.toString(), // Convert the value to a string as Postman's schema does not rigidly define the type of it,
value: authValues.value?.toString(), // Convert the value to a string as Postman's schema does not rigidly define the type of it,
placement: "header" //By default we are placing the apikey values in headers!
}
}