addedInput schema / properties / cookies
Added value: +{
+ "description": "The response's cookie data.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / dataMode
Added value: +{
+ "description": "The associated request body's data mode.",
+ "enum": [
+ "raw",
+ "urlencoded",
+ "formdata",
+ "binary",
+ "graphql"
+ ],
+ "type": "string"
+}
addedInput schema / properties / dataOptions
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "binary": {
+ "additionalProperties": {},
+ "description": "Options for the `binary` data mode.",
+ "type": "object"
+ },
+ "graphql": {
+ "additionalProperties": {},
+ "description": "Options for the `graphql` data mode.",
+ "type": "object"
+ },
+ "params": {
+ "additionalProperties": {},
+ "description": "Options for the `params` data mode.",
+ "type": "object"
+ },
+ "raw": {
+ "additionalProperties": false,
+ "description": "Options for the `raw` data mode.",
+ "properties": {
+ "language": {
+ "description": "The raw mode data's language type.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "urlencoded": {
+ "additionalProperties": {},
+ "description": "Options for the `urlencoded` data mode.",
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Additional configurations and options set for the request body's various data modes."
+}
addedInput schema / properties / description
Added value: +{
+ "description": "The response's description.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / headers
Added value: +{
+ "description": "A list of headers.",
+ "items": {
+ "additionalProperties": false,
+ "description": "Information about the header.",
+ "properties": {
+ "description": {
+ "description": "The header's description.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "key": {
+ "description": "The header's key, such as `Content-Type` or `X-Custom-Header`.",
+ "type": "string"
+ },
+ "value": {
+ "description": "The header key's value.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "key",
+ "value"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedInput schema / properties / language
Added value: +{
+ "description": "The response body's language type.",
+ "type": "string"
+}
addedInput schema / properties / method
Added value: +{
+ "description": "The request's HTTP method.",
+ "enum": [
+ "GET",
+ "PUT",
+ "POST",
+ "PATCH",
+ "DELETE",
+ "COPY",
+ "HEAD",
+ "OPTIONS",
+ "LINK",
+ "UNLINK",
+ "PURGE",
+ "LOCK",
+ "UNLOCK",
+ "PROPFIND",
+ "VIEW"
+ ],
+ "type": "string"
+}
addedInput schema / properties / mime
Added value: +{
+ "description": "The response's MIME type.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / rawDataType
Added value: +{
+ "description": "The response's raw data type.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / rawModeData
Added value: +{
+ "description": "The associated request body's raw mode data.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / request
Added value: +{
+ "description": "The parent request's ID.",
+ "type": "string"
+}
removedInput schema / properties / requestId
Removed value: -{
- "description": "The parent request's ID.",
- "type": "string"
-}
addedInput schema / properties / requestObject
Added value: +{
+ "description": "A JSON-stringified representation of the associated request.",
+ "type": "string"
+}
addedInput schema / properties / responseCode
Added value: +{
+ "additionalProperties": false,
+ "description": "The response's HTTP response code information.",
+ "properties": {
+ "code": {
+ "description": "The response's HTTP response status code.",
+ "type": "number"
+ },
+ "name": {
+ "description": "The name of the status code.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
addedInput schema / properties / status
Added value: +{
+ "description": "The response's HTTP status text.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / text
Added value: +{
+ "description": "The raw text of the response body.",
+ "type": "string"
+}
addedInput schema / properties / time
Added value: +{
+ "description": "The time taken by the request to complete, in milliseconds.",
+ "type": "string"
+}
addedInput schema / properties / url
Added value: +{
+ "description": "The associated request's URL.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
changedInput schema / required
Previous value: -[
- "collectionId",
- "requestId"
-]New value: +[
+ "collectionId",
+ "request"
+]