fix: escape

This commit is contained in:
Shivam Mishra
2025-10-03 19:21:36 +05:30
parent 59bfe99295
commit af528353a2

View File

@@ -786,7 +786,7 @@
},
"ENDPOINT_URL": {
"LABEL": "Endpoint URL",
"PLACEHOLDER": "https://api.example.com/orders/{{ order_id }}",
"PLACEHOLDER": "https://api.example.com/orders/'{' order_id '}'",
"ERROR": "Valid URL is required"
},
"AUTH_TYPE": {
@@ -836,11 +836,11 @@
},
"REQUEST_TEMPLATE": {
"LABEL": "Request Body Template (Optional)",
"PLACEHOLDER": "{\n \"order_id\": \"{{ order_id }}\"\n}"
"PLACEHOLDER": "'{'\n \"order_id\": \"'{' order_id '}'\"\n'}'"
},
"RESPONSE_TEMPLATE": {
"LABEL": "Response Template (Optional)",
"PLACEHOLDER": "Order {{ order_id }} status: {{ status }}"
"PLACEHOLDER": "Order '{' order_id '}' status: '{' status '}'"
},
"ERRORS": {
"PARAM_NAME_REQUIRED": "Parameter name is required"