@pensar/apex 0.0.40-canary.11fe1af7 → 0.0.40-canary.1cc0d976
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -79978,7 +79978,7 @@ var HttpRequestInput = exports_external.object({
|
|
|
79978
79978
|
return val;
|
|
79979
79979
|
}, exports_external.record(exports_external.string(), exports_external.string()).optional()).describe("HTTP headers as key-value pairs (object or JSON string)"),
|
|
79980
79980
|
body: exports_external.string().optional().describe("Request body (for POST, PUT, PATCH)"),
|
|
79981
|
-
followRedirects: exports_external.boolean().default(true),
|
|
79981
|
+
followRedirects: exports_external.boolean().default(false).describe("Whether to follow HTTP redirects (3xx). Defaults to false so you can see redirect responses with Location and Set-Cookie headers. Set to true to automatically follow redirects."),
|
|
79982
79982
|
timeout: exports_external.number().default(1e4),
|
|
79983
79983
|
toolCallDescription: exports_external.string().describe("A concise, human-readable description of what this tool call is doing (e.g., 'Testing SQL injection on login endpoint')")
|
|
79984
79984
|
});
|
package/package.json
CHANGED