Skip to content

Commit

Permalink
fix(schema): options / cookieJar (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Sep 15, 2023
1 parent b298844 commit f65f69c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,28 @@
"YF_QUERY_HOST": {
"type": "string"
},
"cookieJar": {
"$ref": "#/definitions/ExtendedCookieJar"
},
"queue": {
"$ref": "#/definitions/QueueOptions"
},
"validation": {
"$ref": "#/definitions/ValidationOptions"
}
},
"required": [
"cookieJar"
],
"additionalProperties": false
},
"ExtendedCookieJar": {
"type": "object",
"additionalProperties": false,
"properties": {}
},
"CookieJar": {
"type": "object",
"additionalProperties": false
},
"QueueOptions": {
Expand Down

0 comments on commit f65f69c

Please sign in to comment.