From 147f4ec9f311e1605567bd6fd6d52bd4c4a2ce54 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:09:59 -0400 Subject: [PATCH 01/12] chore(scripts): rename "api:" scripts to "docs" It's not clear whether api:dev or api:docs is the one to run --- .github/workflows/integration.yaml | 4 +--- package.json | 7 ++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index d253a0c5..1aba64c1 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -62,10 +62,8 @@ jobs: run: npm ci - name: Build run: npm run build - - name: Extract API - run: npm run api:extract - name: Generate docs - run: npm run api:docs + run: npm run docs:ci - name: Ensure API and doc changes have been committed run: | git add --renormalize . diff --git a/package.json b/package.json index 49bf0cfa..28bbf87b 100644 --- a/package.json +++ b/package.json @@ -92,9 +92,10 @@ "!__tests__" ], "scripts": { - "api:dev": "npm run build && npm run api:extract -- --local && npm run api:docs", - "api:docs": "api-documenter markdown --input-folder ./tmp --output-folder ./api/docs", - "api:extract": "api-extractor run --verbose", + "docs": "npm run build && npm run docs:ci", + "docs:ci": "npm run docs:extract -- --local && npm run docs:generate", + "docs:generate": "api-documenter markdown --input-folder ./tmp --output-folder ./api/docs", + "docs:extract": "api-extractor run --verbose", "build": "npm run clean && tsc", "clean": "rm -rf dist", "version": "genversion --template version-template.ejs --force lib/version.ts && git add lib/version.ts", From 38213a91781bfba3f093d61270e71b47dd7a70e3 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:11:38 -0400 Subject: [PATCH 02/12] chore(scripts): add docs generation to version script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 28bbf87b..17bd766f 100644 --- a/package.json +++ b/package.json @@ -98,7 +98,8 @@ "docs:extract": "api-extractor run --verbose", "build": "npm run clean && tsc", "clean": "rm -rf dist", - "version": "genversion --template version-template.ejs --force lib/version.ts && git add lib/version.ts", + "version:version-file": "genversion --template version-template.ejs --force lib/version.ts", + "version": "npm run version:version-file && npm run docs && git add ./lib/version.ts ./api/docs", "test": "npm run test:ts && npm run test:legacy", "test:ts": "jest", "test:legacy": "npm run build -- --declaration false && ./test/scripts/vows.js test/*_test.js", From 8750aef90fa987e9663244cf9c9bf6a41874f3e1 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:15:05 -0400 Subject: [PATCH 03/12] chore(scripts): generate docs to /docs for GitHub Pages --- README.md | 24 +++++++++++++++++------- package.json | 4 ++-- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fd308839..d3aae71c 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,16 @@ yarn add tough-cookie import { Cookie, CookieJar } from 'tough-cookie' // parse a `Cookie` request header -const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1'.split(';').map(Cookie.parse) +const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1' + .split(';') + .map(Cookie.parse) // generate a `Cookie` request header -const cookieHeader = reqCookies.map(cookie => cookie.cookieString()).join(';') +const cookieHeader = reqCookies.map((cookie) => cookie.cookieString()).join(';') // parse a Set-Cookie response header -const resCookie = Cookie.parse('foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT') +const resCookie = Cookie.parse( + 'foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT', +) // generate a Set-Cookie response header const setCookieHeader = cookie.toString() @@ -38,7 +42,7 @@ const matchingCookies = await cookieJar.getCookies('https://example.com/') ``` > [!IMPORTANT] -> For more detailed usage information, refer to the [API docs](./api/docs/tough-cookie.md). +> For more detailed usage information, refer to the [API docs](https://salesforce.github.io/tough-cookie/tough-cookie.md). ## RFC6265bis @@ -58,8 +62,14 @@ import { CookieJar } from 'tough-cookie' const cookieJar = new CookieJar() // uses the in-memory store by default // storing cookies with various SameSite attributes -await cookieJar.setCookie('strict=authorized; SameSite=strict', 'http://example.com/index.html') -await cookieJar.setCookie('lax=okay; SameSite=lax', 'http://example.com/index.html') +await cookieJar.setCookie( + 'strict=authorized; SameSite=strict', + 'http://example.com/index.html', +) +await cookieJar.setCookie( + 'lax=okay; SameSite=lax', + 'http://example.com/index.html', +) await cookieJar.setCookie('normal=whatever', 'http://example.com/index.html') // retrieving cookies using a SameSite context @@ -105,7 +115,7 @@ You can define this functionality by passing in the `prefixSecurity` option to ` import { CookieJar, MemoryCookieStore } from 'tough-cookie' const cookieJar = new CookieJar(new MemoryCookieStore(), { - prefixSecurity: 'silent' + prefixSecurity: 'silent', }) // this cookie will be silently ignored since the url is insecure (http) diff --git a/package.json b/package.json index 17bd766f..9e19d110 100644 --- a/package.json +++ b/package.json @@ -94,12 +94,12 @@ "scripts": { "docs": "npm run build && npm run docs:ci", "docs:ci": "npm run docs:extract -- --local && npm run docs:generate", - "docs:generate": "api-documenter markdown --input-folder ./tmp --output-folder ./api/docs", + "docs:generate": "api-documenter markdown --input-folder ./tmp --output-folder ./docs", "docs:extract": "api-extractor run --verbose", "build": "npm run clean && tsc", "clean": "rm -rf dist", "version:version-file": "genversion --template version-template.ejs --force lib/version.ts", - "version": "npm run version:version-file && npm run docs && git add ./lib/version.ts ./api/docs", + "version": "npm run version:version-file && npm run docs && git add ./lib/version.ts ./docs", "test": "npm run test:ts && npm run test:legacy", "test:ts": "jest", "test:legacy": "npm run build -- --declaration false && ./test/scripts/vows.js test/*_test.js", From 6f3dc53fad40ce27a42a5f39ba06d9e0a4faf384 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:15:37 -0400 Subject: [PATCH 04/12] chore(docs): move docs to /docs for GitHub Pages --- {api/docs => docs}/index.md | 0 {api/docs => docs}/tough-cookie.callback.md | 0 {api/docs => docs}/tough-cookie.canonicaldomain.md | 0 {api/docs => docs}/tough-cookie.cookie._constructor_.md | 0 {api/docs => docs}/tough-cookie.cookie.canonicalizeddomain.md | 0 {api/docs => docs}/tough-cookie.cookie.cdomain.md | 0 {api/docs => docs}/tough-cookie.cookie.clone.md | 0 {api/docs => docs}/tough-cookie.cookie.cookiestring.md | 0 {api/docs => docs}/tough-cookie.cookie.creation.md | 0 {api/docs => docs}/tough-cookie.cookie.creationindex.md | 0 {api/docs => docs}/tough-cookie.cookie.domain.md | 0 {api/docs => docs}/tough-cookie.cookie.expires.md | 0 {api/docs => docs}/tough-cookie.cookie.expirytime.md | 0 {api/docs => docs}/tough-cookie.cookie.extensions.md | 0 {api/docs => docs}/tough-cookie.cookie.fromjson.md | 0 {api/docs => docs}/tough-cookie.cookie.hostonly.md | 0 {api/docs => docs}/tough-cookie.cookie.httponly.md | 0 {api/docs => docs}/tough-cookie.cookie.ispersistent.md | 0 {api/docs => docs}/tough-cookie.cookie.key.md | 0 {api/docs => docs}/tough-cookie.cookie.lastaccessed.md | 0 {api/docs => docs}/tough-cookie.cookie.maxage.md | 0 {api/docs => docs}/tough-cookie.cookie.md | 0 {api/docs => docs}/tough-cookie.cookie.parse.md | 0 {api/docs => docs}/tough-cookie.cookie.path.md | 0 {api/docs => docs}/tough-cookie.cookie.pathisdefault.md | 0 {api/docs => docs}/tough-cookie.cookie.samesite.md | 0 {api/docs => docs}/tough-cookie.cookie.secure.md | 0 {api/docs => docs}/tough-cookie.cookie.serializableproperties.md | 0 {api/docs => docs}/tough-cookie.cookie.setexpires.md | 0 {api/docs => docs}/tough-cookie.cookie.setmaxage.md | 0 {api/docs => docs}/tough-cookie.cookie.tojson.md | 0 {api/docs => docs}/tough-cookie.cookie.tostring.md | 0 {api/docs => docs}/tough-cookie.cookie.ttl.md | 0 {api/docs => docs}/tough-cookie.cookie.validate.md | 0 {api/docs => docs}/tough-cookie.cookie.value.md | 0 {api/docs => docs}/tough-cookie.cookiecompare.md | 0 {api/docs => docs}/tough-cookie.cookiejar._constructor_.md | 0 {api/docs => docs}/tough-cookie.cookiejar.clone.md | 0 {api/docs => docs}/tough-cookie.cookiejar.clone_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.clone_2.md | 0 {api/docs => docs}/tough-cookie.cookiejar.clonesync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.deserialize.md | 0 {api/docs => docs}/tough-cookie.cookiejar.deserialize_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.deserialize_2.md | 0 {api/docs => docs}/tough-cookie.cookiejar.deserializesync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.fromjson.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookies.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookies_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookies_2.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookies_3.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookiessync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookiestring.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookiestring_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookiestring_2.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getcookiestringsync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.getsetcookiestrings.md | 0 .../docs => docs}/tough-cookie.cookiejar.getsetcookiestrings_1.md | 0 .../docs => docs}/tough-cookie.cookiejar.getsetcookiestrings_2.md | 0 .../tough-cookie.cookiejar.getsetcookiestringssync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.md | 0 {api/docs => docs}/tough-cookie.cookiejar.prefixsecurity.md | 0 {api/docs => docs}/tough-cookie.cookiejar.removeallcookies.md | 0 {api/docs => docs}/tough-cookie.cookiejar.removeallcookies_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.removeallcookiessync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.serialize.md | 0 {api/docs => docs}/tough-cookie.cookiejar.serialize_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.serializesync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.setcookie.md | 0 {api/docs => docs}/tough-cookie.cookiejar.setcookie_1.md | 0 {api/docs => docs}/tough-cookie.cookiejar.setcookie_2.md | 0 {api/docs => docs}/tough-cookie.cookiejar.setcookiesync.md | 0 {api/docs => docs}/tough-cookie.cookiejar.store.md | 0 {api/docs => docs}/tough-cookie.cookiejar.tojson.md | 0 .../tough-cookie.createcookiejaroptions.allowspecialusedomain.md | 0 .../tough-cookie.createcookiejaroptions.loosemode.md | 0 {api/docs => docs}/tough-cookie.createcookiejaroptions.md | 0 .../tough-cookie.createcookiejaroptions.prefixsecurity.md | 0 .../tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.creation.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.domain.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.expires.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.extensions.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.hostonly.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.httponly.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.key.md | 0 .../tough-cookie.createcookieoptions.lastaccessed.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.maxage.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.path.md | 0 .../tough-cookie.createcookieoptions.pathisdefault.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.samesite.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.secure.md | 0 {api/docs => docs}/tough-cookie.createcookieoptions.value.md | 0 {api/docs => docs}/tough-cookie.defaultpath.md | 0 {api/docs => docs}/tough-cookie.domainmatch.md | 0 {api/docs => docs}/tough-cookie.errorcallback.md | 0 {api/docs => docs}/tough-cookie.formatdate.md | 0 {api/docs => docs}/tough-cookie.fromjson.md | 0 {api/docs => docs}/tough-cookie.getcookiesoptions.allpaths.md | 0 {api/docs => docs}/tough-cookie.getcookiesoptions.expire.md | 0 {api/docs => docs}/tough-cookie.getcookiesoptions.http.md | 0 {api/docs => docs}/tough-cookie.getcookiesoptions.md | 0 .../tough-cookie.getcookiesoptions.samesitecontext.md | 0 {api/docs => docs}/tough-cookie.getcookiesoptions.sort.md | 0 {api/docs => docs}/tough-cookie.getpublicsuffix.md | 0 .../tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md | 0 .../tough-cookie.getpublicsuffixoptions.ignoreerror.md | 0 {api/docs => docs}/tough-cookie.getpublicsuffixoptions.md | 0 {api/docs => docs}/tough-cookie.md | 0 .../docs => docs}/tough-cookie.memorycookiestore._constructor_.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.findcookie.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.findcookie_1.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.findcookies.md | 0 .../docs => docs}/tough-cookie.memorycookiestore.findcookies_1.md | 0 .../docs => docs}/tough-cookie.memorycookiestore.getallcookies.md | 0 .../tough-cookie.memorycookiestore.getallcookies_1.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.putcookie.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.putcookie_1.md | 0 .../tough-cookie.memorycookiestore.removeallcookies.md | 0 .../tough-cookie.memorycookiestore.removeallcookies_1.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.removecookie.md | 0 .../tough-cookie.memorycookiestore.removecookie_1.md | 0 .../docs => docs}/tough-cookie.memorycookiestore.removecookies.md | 0 .../tough-cookie.memorycookiestore.removecookies_1.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.synchronous.md | 0 {api/docs => docs}/tough-cookie.memorycookiestore.updatecookie.md | 0 .../tough-cookie.memorycookiestore.updatecookie_1.md | 0 {api/docs => docs}/tough-cookie.nullable.md | 0 {api/docs => docs}/tough-cookie.parametererror.md | 0 {api/docs => docs}/tough-cookie.parse.md | 0 {api/docs => docs}/tough-cookie.parsecookieoptions.loose.md | 0 {api/docs => docs}/tough-cookie.parsecookieoptions.md | 0 {api/docs => docs}/tough-cookie.parsedate.md | 0 {api/docs => docs}/tough-cookie.pathmatch.md | 0 {api/docs => docs}/tough-cookie.permutedomain.md | 0 {api/docs => docs}/tough-cookie.permutepath.md | 0 {api/docs => docs}/tough-cookie.prefixsecurityenum.md | 0 {api/docs => docs}/tough-cookie.serializedcookie.md | 0 {api/docs => docs}/tough-cookie.serializedcookiejar.cookies.md | 0 {api/docs => docs}/tough-cookie.serializedcookiejar.md | 0 .../tough-cookie.serializedcookiejar.rejectpublicsuffixes.md | 0 {api/docs => docs}/tough-cookie.serializedcookiejar.storetype.md | 0 {api/docs => docs}/tough-cookie.serializedcookiejar.version.md | 0 {api/docs => docs}/tough-cookie.setcookieoptions.http.md | 0 {api/docs => docs}/tough-cookie.setcookieoptions.ignoreerror.md | 0 {api/docs => docs}/tough-cookie.setcookieoptions.loose.md | 0 {api/docs => docs}/tough-cookie.setcookieoptions.md | 0 {api/docs => docs}/tough-cookie.setcookieoptions.now.md | 0 .../tough-cookie.setcookieoptions.samesitecontext.md | 0 {api/docs => docs}/tough-cookie.store._constructor_.md | 0 {api/docs => docs}/tough-cookie.store.findcookie.md | 0 {api/docs => docs}/tough-cookie.store.findcookie_1.md | 0 {api/docs => docs}/tough-cookie.store.findcookies.md | 0 {api/docs => docs}/tough-cookie.store.findcookies_1.md | 0 {api/docs => docs}/tough-cookie.store.getallcookies.md | 0 {api/docs => docs}/tough-cookie.store.getallcookies_1.md | 0 {api/docs => docs}/tough-cookie.store.md | 0 {api/docs => docs}/tough-cookie.store.putcookie.md | 0 {api/docs => docs}/tough-cookie.store.putcookie_1.md | 0 {api/docs => docs}/tough-cookie.store.removeallcookies.md | 0 {api/docs => docs}/tough-cookie.store.removeallcookies_1.md | 0 {api/docs => docs}/tough-cookie.store.removecookie.md | 0 {api/docs => docs}/tough-cookie.store.removecookie_1.md | 0 {api/docs => docs}/tough-cookie.store.removecookies.md | 0 {api/docs => docs}/tough-cookie.store.removecookies_1.md | 0 {api/docs => docs}/tough-cookie.store.synchronous.md | 0 {api/docs => docs}/tough-cookie.store.updatecookie.md | 0 {api/docs => docs}/tough-cookie.store.updatecookie_1.md | 0 {api/docs => docs}/tough-cookie.version.md | 0 170 files changed, 0 insertions(+), 0 deletions(-) rename {api/docs => docs}/index.md (100%) rename {api/docs => docs}/tough-cookie.callback.md (100%) rename {api/docs => docs}/tough-cookie.canonicaldomain.md (100%) rename {api/docs => docs}/tough-cookie.cookie._constructor_.md (100%) rename {api/docs => docs}/tough-cookie.cookie.canonicalizeddomain.md (100%) rename {api/docs => docs}/tough-cookie.cookie.cdomain.md (100%) rename {api/docs => docs}/tough-cookie.cookie.clone.md (100%) rename {api/docs => docs}/tough-cookie.cookie.cookiestring.md (100%) rename {api/docs => docs}/tough-cookie.cookie.creation.md (100%) rename {api/docs => docs}/tough-cookie.cookie.creationindex.md (100%) rename {api/docs => docs}/tough-cookie.cookie.domain.md (100%) rename {api/docs => docs}/tough-cookie.cookie.expires.md (100%) rename {api/docs => docs}/tough-cookie.cookie.expirytime.md (100%) rename {api/docs => docs}/tough-cookie.cookie.extensions.md (100%) rename {api/docs => docs}/tough-cookie.cookie.fromjson.md (100%) rename {api/docs => docs}/tough-cookie.cookie.hostonly.md (100%) rename {api/docs => docs}/tough-cookie.cookie.httponly.md (100%) rename {api/docs => docs}/tough-cookie.cookie.ispersistent.md (100%) rename {api/docs => docs}/tough-cookie.cookie.key.md (100%) rename {api/docs => docs}/tough-cookie.cookie.lastaccessed.md (100%) rename {api/docs => docs}/tough-cookie.cookie.maxage.md (100%) rename {api/docs => docs}/tough-cookie.cookie.md (100%) rename {api/docs => docs}/tough-cookie.cookie.parse.md (100%) rename {api/docs => docs}/tough-cookie.cookie.path.md (100%) rename {api/docs => docs}/tough-cookie.cookie.pathisdefault.md (100%) rename {api/docs => docs}/tough-cookie.cookie.samesite.md (100%) rename {api/docs => docs}/tough-cookie.cookie.secure.md (100%) rename {api/docs => docs}/tough-cookie.cookie.serializableproperties.md (100%) rename {api/docs => docs}/tough-cookie.cookie.setexpires.md (100%) rename {api/docs => docs}/tough-cookie.cookie.setmaxage.md (100%) rename {api/docs => docs}/tough-cookie.cookie.tojson.md (100%) rename {api/docs => docs}/tough-cookie.cookie.tostring.md (100%) rename {api/docs => docs}/tough-cookie.cookie.ttl.md (100%) rename {api/docs => docs}/tough-cookie.cookie.validate.md (100%) rename {api/docs => docs}/tough-cookie.cookie.value.md (100%) rename {api/docs => docs}/tough-cookie.cookiecompare.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar._constructor_.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.clone.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.clone_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.clone_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.clonesync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.deserialize.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.deserialize_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.deserialize_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.deserializesync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.fromjson.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookies.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookies_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookies_3.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookiessync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookiestring.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookiestring_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookiestring_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getcookiestringsync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getsetcookiestrings.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getsetcookiestrings_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getsetcookiestrings_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.getsetcookiestringssync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.prefixsecurity.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.removeallcookies.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.removeallcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.removeallcookiessync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.serialize.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.serialize_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.serializesync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.setcookie.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.setcookie_1.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.setcookie_2.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.setcookiesync.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.store.md (100%) rename {api/docs => docs}/tough-cookie.cookiejar.tojson.md (100%) rename {api/docs => docs}/tough-cookie.createcookiejaroptions.allowspecialusedomain.md (100%) rename {api/docs => docs}/tough-cookie.createcookiejaroptions.loosemode.md (100%) rename {api/docs => docs}/tough-cookie.createcookiejaroptions.md (100%) rename {api/docs => docs}/tough-cookie.createcookiejaroptions.prefixsecurity.md (100%) rename {api/docs => docs}/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.creation.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.domain.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.expires.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.extensions.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.hostonly.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.httponly.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.key.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.lastaccessed.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.maxage.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.path.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.pathisdefault.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.samesite.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.secure.md (100%) rename {api/docs => docs}/tough-cookie.createcookieoptions.value.md (100%) rename {api/docs => docs}/tough-cookie.defaultpath.md (100%) rename {api/docs => docs}/tough-cookie.domainmatch.md (100%) rename {api/docs => docs}/tough-cookie.errorcallback.md (100%) rename {api/docs => docs}/tough-cookie.formatdate.md (100%) rename {api/docs => docs}/tough-cookie.fromjson.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.allpaths.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.expire.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.http.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.samesitecontext.md (100%) rename {api/docs => docs}/tough-cookie.getcookiesoptions.sort.md (100%) rename {api/docs => docs}/tough-cookie.getpublicsuffix.md (100%) rename {api/docs => docs}/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md (100%) rename {api/docs => docs}/tough-cookie.getpublicsuffixoptions.ignoreerror.md (100%) rename {api/docs => docs}/tough-cookie.getpublicsuffixoptions.md (100%) rename {api/docs => docs}/tough-cookie.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore._constructor_.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.findcookie.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.findcookie_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.findcookies.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.findcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.getallcookies.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.getallcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.putcookie.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.putcookie_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removeallcookies.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removeallcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removecookie.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removecookie_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removecookies.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.removecookies_1.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.synchronous.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.updatecookie.md (100%) rename {api/docs => docs}/tough-cookie.memorycookiestore.updatecookie_1.md (100%) rename {api/docs => docs}/tough-cookie.nullable.md (100%) rename {api/docs => docs}/tough-cookie.parametererror.md (100%) rename {api/docs => docs}/tough-cookie.parse.md (100%) rename {api/docs => docs}/tough-cookie.parsecookieoptions.loose.md (100%) rename {api/docs => docs}/tough-cookie.parsecookieoptions.md (100%) rename {api/docs => docs}/tough-cookie.parsedate.md (100%) rename {api/docs => docs}/tough-cookie.pathmatch.md (100%) rename {api/docs => docs}/tough-cookie.permutedomain.md (100%) rename {api/docs => docs}/tough-cookie.permutepath.md (100%) rename {api/docs => docs}/tough-cookie.prefixsecurityenum.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookie.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookiejar.cookies.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookiejar.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookiejar.storetype.md (100%) rename {api/docs => docs}/tough-cookie.serializedcookiejar.version.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.http.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.ignoreerror.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.loose.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.now.md (100%) rename {api/docs => docs}/tough-cookie.setcookieoptions.samesitecontext.md (100%) rename {api/docs => docs}/tough-cookie.store._constructor_.md (100%) rename {api/docs => docs}/tough-cookie.store.findcookie.md (100%) rename {api/docs => docs}/tough-cookie.store.findcookie_1.md (100%) rename {api/docs => docs}/tough-cookie.store.findcookies.md (100%) rename {api/docs => docs}/tough-cookie.store.findcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.store.getallcookies.md (100%) rename {api/docs => docs}/tough-cookie.store.getallcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.store.md (100%) rename {api/docs => docs}/tough-cookie.store.putcookie.md (100%) rename {api/docs => docs}/tough-cookie.store.putcookie_1.md (100%) rename {api/docs => docs}/tough-cookie.store.removeallcookies.md (100%) rename {api/docs => docs}/tough-cookie.store.removeallcookies_1.md (100%) rename {api/docs => docs}/tough-cookie.store.removecookie.md (100%) rename {api/docs => docs}/tough-cookie.store.removecookie_1.md (100%) rename {api/docs => docs}/tough-cookie.store.removecookies.md (100%) rename {api/docs => docs}/tough-cookie.store.removecookies_1.md (100%) rename {api/docs => docs}/tough-cookie.store.synchronous.md (100%) rename {api/docs => docs}/tough-cookie.store.updatecookie.md (100%) rename {api/docs => docs}/tough-cookie.store.updatecookie_1.md (100%) rename {api/docs => docs}/tough-cookie.version.md (100%) diff --git a/api/docs/index.md b/docs/index.md similarity index 100% rename from api/docs/index.md rename to docs/index.md diff --git a/api/docs/tough-cookie.callback.md b/docs/tough-cookie.callback.md similarity index 100% rename from api/docs/tough-cookie.callback.md rename to docs/tough-cookie.callback.md diff --git a/api/docs/tough-cookie.canonicaldomain.md b/docs/tough-cookie.canonicaldomain.md similarity index 100% rename from api/docs/tough-cookie.canonicaldomain.md rename to docs/tough-cookie.canonicaldomain.md diff --git a/api/docs/tough-cookie.cookie._constructor_.md b/docs/tough-cookie.cookie._constructor_.md similarity index 100% rename from api/docs/tough-cookie.cookie._constructor_.md rename to docs/tough-cookie.cookie._constructor_.md diff --git a/api/docs/tough-cookie.cookie.canonicalizeddomain.md b/docs/tough-cookie.cookie.canonicalizeddomain.md similarity index 100% rename from api/docs/tough-cookie.cookie.canonicalizeddomain.md rename to docs/tough-cookie.cookie.canonicalizeddomain.md diff --git a/api/docs/tough-cookie.cookie.cdomain.md b/docs/tough-cookie.cookie.cdomain.md similarity index 100% rename from api/docs/tough-cookie.cookie.cdomain.md rename to docs/tough-cookie.cookie.cdomain.md diff --git a/api/docs/tough-cookie.cookie.clone.md b/docs/tough-cookie.cookie.clone.md similarity index 100% rename from api/docs/tough-cookie.cookie.clone.md rename to docs/tough-cookie.cookie.clone.md diff --git a/api/docs/tough-cookie.cookie.cookiestring.md b/docs/tough-cookie.cookie.cookiestring.md similarity index 100% rename from api/docs/tough-cookie.cookie.cookiestring.md rename to docs/tough-cookie.cookie.cookiestring.md diff --git a/api/docs/tough-cookie.cookie.creation.md b/docs/tough-cookie.cookie.creation.md similarity index 100% rename from api/docs/tough-cookie.cookie.creation.md rename to docs/tough-cookie.cookie.creation.md diff --git a/api/docs/tough-cookie.cookie.creationindex.md b/docs/tough-cookie.cookie.creationindex.md similarity index 100% rename from api/docs/tough-cookie.cookie.creationindex.md rename to docs/tough-cookie.cookie.creationindex.md diff --git a/api/docs/tough-cookie.cookie.domain.md b/docs/tough-cookie.cookie.domain.md similarity index 100% rename from api/docs/tough-cookie.cookie.domain.md rename to docs/tough-cookie.cookie.domain.md diff --git a/api/docs/tough-cookie.cookie.expires.md b/docs/tough-cookie.cookie.expires.md similarity index 100% rename from api/docs/tough-cookie.cookie.expires.md rename to docs/tough-cookie.cookie.expires.md diff --git a/api/docs/tough-cookie.cookie.expirytime.md b/docs/tough-cookie.cookie.expirytime.md similarity index 100% rename from api/docs/tough-cookie.cookie.expirytime.md rename to docs/tough-cookie.cookie.expirytime.md diff --git a/api/docs/tough-cookie.cookie.extensions.md b/docs/tough-cookie.cookie.extensions.md similarity index 100% rename from api/docs/tough-cookie.cookie.extensions.md rename to docs/tough-cookie.cookie.extensions.md diff --git a/api/docs/tough-cookie.cookie.fromjson.md b/docs/tough-cookie.cookie.fromjson.md similarity index 100% rename from api/docs/tough-cookie.cookie.fromjson.md rename to docs/tough-cookie.cookie.fromjson.md diff --git a/api/docs/tough-cookie.cookie.hostonly.md b/docs/tough-cookie.cookie.hostonly.md similarity index 100% rename from api/docs/tough-cookie.cookie.hostonly.md rename to docs/tough-cookie.cookie.hostonly.md diff --git a/api/docs/tough-cookie.cookie.httponly.md b/docs/tough-cookie.cookie.httponly.md similarity index 100% rename from api/docs/tough-cookie.cookie.httponly.md rename to docs/tough-cookie.cookie.httponly.md diff --git a/api/docs/tough-cookie.cookie.ispersistent.md b/docs/tough-cookie.cookie.ispersistent.md similarity index 100% rename from api/docs/tough-cookie.cookie.ispersistent.md rename to docs/tough-cookie.cookie.ispersistent.md diff --git a/api/docs/tough-cookie.cookie.key.md b/docs/tough-cookie.cookie.key.md similarity index 100% rename from api/docs/tough-cookie.cookie.key.md rename to docs/tough-cookie.cookie.key.md diff --git a/api/docs/tough-cookie.cookie.lastaccessed.md b/docs/tough-cookie.cookie.lastaccessed.md similarity index 100% rename from api/docs/tough-cookie.cookie.lastaccessed.md rename to docs/tough-cookie.cookie.lastaccessed.md diff --git a/api/docs/tough-cookie.cookie.maxage.md b/docs/tough-cookie.cookie.maxage.md similarity index 100% rename from api/docs/tough-cookie.cookie.maxage.md rename to docs/tough-cookie.cookie.maxage.md diff --git a/api/docs/tough-cookie.cookie.md b/docs/tough-cookie.cookie.md similarity index 100% rename from api/docs/tough-cookie.cookie.md rename to docs/tough-cookie.cookie.md diff --git a/api/docs/tough-cookie.cookie.parse.md b/docs/tough-cookie.cookie.parse.md similarity index 100% rename from api/docs/tough-cookie.cookie.parse.md rename to docs/tough-cookie.cookie.parse.md diff --git a/api/docs/tough-cookie.cookie.path.md b/docs/tough-cookie.cookie.path.md similarity index 100% rename from api/docs/tough-cookie.cookie.path.md rename to docs/tough-cookie.cookie.path.md diff --git a/api/docs/tough-cookie.cookie.pathisdefault.md b/docs/tough-cookie.cookie.pathisdefault.md similarity index 100% rename from api/docs/tough-cookie.cookie.pathisdefault.md rename to docs/tough-cookie.cookie.pathisdefault.md diff --git a/api/docs/tough-cookie.cookie.samesite.md b/docs/tough-cookie.cookie.samesite.md similarity index 100% rename from api/docs/tough-cookie.cookie.samesite.md rename to docs/tough-cookie.cookie.samesite.md diff --git a/api/docs/tough-cookie.cookie.secure.md b/docs/tough-cookie.cookie.secure.md similarity index 100% rename from api/docs/tough-cookie.cookie.secure.md rename to docs/tough-cookie.cookie.secure.md diff --git a/api/docs/tough-cookie.cookie.serializableproperties.md b/docs/tough-cookie.cookie.serializableproperties.md similarity index 100% rename from api/docs/tough-cookie.cookie.serializableproperties.md rename to docs/tough-cookie.cookie.serializableproperties.md diff --git a/api/docs/tough-cookie.cookie.setexpires.md b/docs/tough-cookie.cookie.setexpires.md similarity index 100% rename from api/docs/tough-cookie.cookie.setexpires.md rename to docs/tough-cookie.cookie.setexpires.md diff --git a/api/docs/tough-cookie.cookie.setmaxage.md b/docs/tough-cookie.cookie.setmaxage.md similarity index 100% rename from api/docs/tough-cookie.cookie.setmaxage.md rename to docs/tough-cookie.cookie.setmaxage.md diff --git a/api/docs/tough-cookie.cookie.tojson.md b/docs/tough-cookie.cookie.tojson.md similarity index 100% rename from api/docs/tough-cookie.cookie.tojson.md rename to docs/tough-cookie.cookie.tojson.md diff --git a/api/docs/tough-cookie.cookie.tostring.md b/docs/tough-cookie.cookie.tostring.md similarity index 100% rename from api/docs/tough-cookie.cookie.tostring.md rename to docs/tough-cookie.cookie.tostring.md diff --git a/api/docs/tough-cookie.cookie.ttl.md b/docs/tough-cookie.cookie.ttl.md similarity index 100% rename from api/docs/tough-cookie.cookie.ttl.md rename to docs/tough-cookie.cookie.ttl.md diff --git a/api/docs/tough-cookie.cookie.validate.md b/docs/tough-cookie.cookie.validate.md similarity index 100% rename from api/docs/tough-cookie.cookie.validate.md rename to docs/tough-cookie.cookie.validate.md diff --git a/api/docs/tough-cookie.cookie.value.md b/docs/tough-cookie.cookie.value.md similarity index 100% rename from api/docs/tough-cookie.cookie.value.md rename to docs/tough-cookie.cookie.value.md diff --git a/api/docs/tough-cookie.cookiecompare.md b/docs/tough-cookie.cookiecompare.md similarity index 100% rename from api/docs/tough-cookie.cookiecompare.md rename to docs/tough-cookie.cookiecompare.md diff --git a/api/docs/tough-cookie.cookiejar._constructor_.md b/docs/tough-cookie.cookiejar._constructor_.md similarity index 100% rename from api/docs/tough-cookie.cookiejar._constructor_.md rename to docs/tough-cookie.cookiejar._constructor_.md diff --git a/api/docs/tough-cookie.cookiejar.clone.md b/docs/tough-cookie.cookiejar.clone.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.clone.md rename to docs/tough-cookie.cookiejar.clone.md diff --git a/api/docs/tough-cookie.cookiejar.clone_1.md b/docs/tough-cookie.cookiejar.clone_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.clone_1.md rename to docs/tough-cookie.cookiejar.clone_1.md diff --git a/api/docs/tough-cookie.cookiejar.clone_2.md b/docs/tough-cookie.cookiejar.clone_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.clone_2.md rename to docs/tough-cookie.cookiejar.clone_2.md diff --git a/api/docs/tough-cookie.cookiejar.clonesync.md b/docs/tough-cookie.cookiejar.clonesync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.clonesync.md rename to docs/tough-cookie.cookiejar.clonesync.md diff --git a/api/docs/tough-cookie.cookiejar.deserialize.md b/docs/tough-cookie.cookiejar.deserialize.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.deserialize.md rename to docs/tough-cookie.cookiejar.deserialize.md diff --git a/api/docs/tough-cookie.cookiejar.deserialize_1.md b/docs/tough-cookie.cookiejar.deserialize_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.deserialize_1.md rename to docs/tough-cookie.cookiejar.deserialize_1.md diff --git a/api/docs/tough-cookie.cookiejar.deserialize_2.md b/docs/tough-cookie.cookiejar.deserialize_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.deserialize_2.md rename to docs/tough-cookie.cookiejar.deserialize_2.md diff --git a/api/docs/tough-cookie.cookiejar.deserializesync.md b/docs/tough-cookie.cookiejar.deserializesync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.deserializesync.md rename to docs/tough-cookie.cookiejar.deserializesync.md diff --git a/api/docs/tough-cookie.cookiejar.fromjson.md b/docs/tough-cookie.cookiejar.fromjson.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.fromjson.md rename to docs/tough-cookie.cookiejar.fromjson.md diff --git a/api/docs/tough-cookie.cookiejar.getcookies.md b/docs/tough-cookie.cookiejar.getcookies.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookies.md rename to docs/tough-cookie.cookiejar.getcookies.md diff --git a/api/docs/tough-cookie.cookiejar.getcookies_1.md b/docs/tough-cookie.cookiejar.getcookies_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookies_1.md rename to docs/tough-cookie.cookiejar.getcookies_1.md diff --git a/api/docs/tough-cookie.cookiejar.getcookies_2.md b/docs/tough-cookie.cookiejar.getcookies_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookies_2.md rename to docs/tough-cookie.cookiejar.getcookies_2.md diff --git a/api/docs/tough-cookie.cookiejar.getcookies_3.md b/docs/tough-cookie.cookiejar.getcookies_3.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookies_3.md rename to docs/tough-cookie.cookiejar.getcookies_3.md diff --git a/api/docs/tough-cookie.cookiejar.getcookiessync.md b/docs/tough-cookie.cookiejar.getcookiessync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookiessync.md rename to docs/tough-cookie.cookiejar.getcookiessync.md diff --git a/api/docs/tough-cookie.cookiejar.getcookiestring.md b/docs/tough-cookie.cookiejar.getcookiestring.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookiestring.md rename to docs/tough-cookie.cookiejar.getcookiestring.md diff --git a/api/docs/tough-cookie.cookiejar.getcookiestring_1.md b/docs/tough-cookie.cookiejar.getcookiestring_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookiestring_1.md rename to docs/tough-cookie.cookiejar.getcookiestring_1.md diff --git a/api/docs/tough-cookie.cookiejar.getcookiestring_2.md b/docs/tough-cookie.cookiejar.getcookiestring_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookiestring_2.md rename to docs/tough-cookie.cookiejar.getcookiestring_2.md diff --git a/api/docs/tough-cookie.cookiejar.getcookiestringsync.md b/docs/tough-cookie.cookiejar.getcookiestringsync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getcookiestringsync.md rename to docs/tough-cookie.cookiejar.getcookiestringsync.md diff --git a/api/docs/tough-cookie.cookiejar.getsetcookiestrings.md b/docs/tough-cookie.cookiejar.getsetcookiestrings.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getsetcookiestrings.md rename to docs/tough-cookie.cookiejar.getsetcookiestrings.md diff --git a/api/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md b/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md rename to docs/tough-cookie.cookiejar.getsetcookiestrings_1.md diff --git a/api/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md b/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md rename to docs/tough-cookie.cookiejar.getsetcookiestrings_2.md diff --git a/api/docs/tough-cookie.cookiejar.getsetcookiestringssync.md b/docs/tough-cookie.cookiejar.getsetcookiestringssync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.getsetcookiestringssync.md rename to docs/tough-cookie.cookiejar.getsetcookiestringssync.md diff --git a/api/docs/tough-cookie.cookiejar.md b/docs/tough-cookie.cookiejar.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.md rename to docs/tough-cookie.cookiejar.md diff --git a/api/docs/tough-cookie.cookiejar.prefixsecurity.md b/docs/tough-cookie.cookiejar.prefixsecurity.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.prefixsecurity.md rename to docs/tough-cookie.cookiejar.prefixsecurity.md diff --git a/api/docs/tough-cookie.cookiejar.removeallcookies.md b/docs/tough-cookie.cookiejar.removeallcookies.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.removeallcookies.md rename to docs/tough-cookie.cookiejar.removeallcookies.md diff --git a/api/docs/tough-cookie.cookiejar.removeallcookies_1.md b/docs/tough-cookie.cookiejar.removeallcookies_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.removeallcookies_1.md rename to docs/tough-cookie.cookiejar.removeallcookies_1.md diff --git a/api/docs/tough-cookie.cookiejar.removeallcookiessync.md b/docs/tough-cookie.cookiejar.removeallcookiessync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.removeallcookiessync.md rename to docs/tough-cookie.cookiejar.removeallcookiessync.md diff --git a/api/docs/tough-cookie.cookiejar.serialize.md b/docs/tough-cookie.cookiejar.serialize.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.serialize.md rename to docs/tough-cookie.cookiejar.serialize.md diff --git a/api/docs/tough-cookie.cookiejar.serialize_1.md b/docs/tough-cookie.cookiejar.serialize_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.serialize_1.md rename to docs/tough-cookie.cookiejar.serialize_1.md diff --git a/api/docs/tough-cookie.cookiejar.serializesync.md b/docs/tough-cookie.cookiejar.serializesync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.serializesync.md rename to docs/tough-cookie.cookiejar.serializesync.md diff --git a/api/docs/tough-cookie.cookiejar.setcookie.md b/docs/tough-cookie.cookiejar.setcookie.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.setcookie.md rename to docs/tough-cookie.cookiejar.setcookie.md diff --git a/api/docs/tough-cookie.cookiejar.setcookie_1.md b/docs/tough-cookie.cookiejar.setcookie_1.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.setcookie_1.md rename to docs/tough-cookie.cookiejar.setcookie_1.md diff --git a/api/docs/tough-cookie.cookiejar.setcookie_2.md b/docs/tough-cookie.cookiejar.setcookie_2.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.setcookie_2.md rename to docs/tough-cookie.cookiejar.setcookie_2.md diff --git a/api/docs/tough-cookie.cookiejar.setcookiesync.md b/docs/tough-cookie.cookiejar.setcookiesync.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.setcookiesync.md rename to docs/tough-cookie.cookiejar.setcookiesync.md diff --git a/api/docs/tough-cookie.cookiejar.store.md b/docs/tough-cookie.cookiejar.store.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.store.md rename to docs/tough-cookie.cookiejar.store.md diff --git a/api/docs/tough-cookie.cookiejar.tojson.md b/docs/tough-cookie.cookiejar.tojson.md similarity index 100% rename from api/docs/tough-cookie.cookiejar.tojson.md rename to docs/tough-cookie.cookiejar.tojson.md diff --git a/api/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md b/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md similarity index 100% rename from api/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md rename to docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md diff --git a/api/docs/tough-cookie.createcookiejaroptions.loosemode.md b/docs/tough-cookie.createcookiejaroptions.loosemode.md similarity index 100% rename from api/docs/tough-cookie.createcookiejaroptions.loosemode.md rename to docs/tough-cookie.createcookiejaroptions.loosemode.md diff --git a/api/docs/tough-cookie.createcookiejaroptions.md b/docs/tough-cookie.createcookiejaroptions.md similarity index 100% rename from api/docs/tough-cookie.createcookiejaroptions.md rename to docs/tough-cookie.createcookiejaroptions.md diff --git a/api/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md b/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md similarity index 100% rename from api/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md rename to docs/tough-cookie.createcookiejaroptions.prefixsecurity.md diff --git a/api/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md b/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md similarity index 100% rename from api/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md rename to docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md diff --git a/api/docs/tough-cookie.createcookieoptions.creation.md b/docs/tough-cookie.createcookieoptions.creation.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.creation.md rename to docs/tough-cookie.createcookieoptions.creation.md diff --git a/api/docs/tough-cookie.createcookieoptions.domain.md b/docs/tough-cookie.createcookieoptions.domain.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.domain.md rename to docs/tough-cookie.createcookieoptions.domain.md diff --git a/api/docs/tough-cookie.createcookieoptions.expires.md b/docs/tough-cookie.createcookieoptions.expires.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.expires.md rename to docs/tough-cookie.createcookieoptions.expires.md diff --git a/api/docs/tough-cookie.createcookieoptions.extensions.md b/docs/tough-cookie.createcookieoptions.extensions.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.extensions.md rename to docs/tough-cookie.createcookieoptions.extensions.md diff --git a/api/docs/tough-cookie.createcookieoptions.hostonly.md b/docs/tough-cookie.createcookieoptions.hostonly.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.hostonly.md rename to docs/tough-cookie.createcookieoptions.hostonly.md diff --git a/api/docs/tough-cookie.createcookieoptions.httponly.md b/docs/tough-cookie.createcookieoptions.httponly.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.httponly.md rename to docs/tough-cookie.createcookieoptions.httponly.md diff --git a/api/docs/tough-cookie.createcookieoptions.key.md b/docs/tough-cookie.createcookieoptions.key.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.key.md rename to docs/tough-cookie.createcookieoptions.key.md diff --git a/api/docs/tough-cookie.createcookieoptions.lastaccessed.md b/docs/tough-cookie.createcookieoptions.lastaccessed.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.lastaccessed.md rename to docs/tough-cookie.createcookieoptions.lastaccessed.md diff --git a/api/docs/tough-cookie.createcookieoptions.maxage.md b/docs/tough-cookie.createcookieoptions.maxage.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.maxage.md rename to docs/tough-cookie.createcookieoptions.maxage.md diff --git a/api/docs/tough-cookie.createcookieoptions.md b/docs/tough-cookie.createcookieoptions.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.md rename to docs/tough-cookie.createcookieoptions.md diff --git a/api/docs/tough-cookie.createcookieoptions.path.md b/docs/tough-cookie.createcookieoptions.path.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.path.md rename to docs/tough-cookie.createcookieoptions.path.md diff --git a/api/docs/tough-cookie.createcookieoptions.pathisdefault.md b/docs/tough-cookie.createcookieoptions.pathisdefault.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.pathisdefault.md rename to docs/tough-cookie.createcookieoptions.pathisdefault.md diff --git a/api/docs/tough-cookie.createcookieoptions.samesite.md b/docs/tough-cookie.createcookieoptions.samesite.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.samesite.md rename to docs/tough-cookie.createcookieoptions.samesite.md diff --git a/api/docs/tough-cookie.createcookieoptions.secure.md b/docs/tough-cookie.createcookieoptions.secure.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.secure.md rename to docs/tough-cookie.createcookieoptions.secure.md diff --git a/api/docs/tough-cookie.createcookieoptions.value.md b/docs/tough-cookie.createcookieoptions.value.md similarity index 100% rename from api/docs/tough-cookie.createcookieoptions.value.md rename to docs/tough-cookie.createcookieoptions.value.md diff --git a/api/docs/tough-cookie.defaultpath.md b/docs/tough-cookie.defaultpath.md similarity index 100% rename from api/docs/tough-cookie.defaultpath.md rename to docs/tough-cookie.defaultpath.md diff --git a/api/docs/tough-cookie.domainmatch.md b/docs/tough-cookie.domainmatch.md similarity index 100% rename from api/docs/tough-cookie.domainmatch.md rename to docs/tough-cookie.domainmatch.md diff --git a/api/docs/tough-cookie.errorcallback.md b/docs/tough-cookie.errorcallback.md similarity index 100% rename from api/docs/tough-cookie.errorcallback.md rename to docs/tough-cookie.errorcallback.md diff --git a/api/docs/tough-cookie.formatdate.md b/docs/tough-cookie.formatdate.md similarity index 100% rename from api/docs/tough-cookie.formatdate.md rename to docs/tough-cookie.formatdate.md diff --git a/api/docs/tough-cookie.fromjson.md b/docs/tough-cookie.fromjson.md similarity index 100% rename from api/docs/tough-cookie.fromjson.md rename to docs/tough-cookie.fromjson.md diff --git a/api/docs/tough-cookie.getcookiesoptions.allpaths.md b/docs/tough-cookie.getcookiesoptions.allpaths.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.allpaths.md rename to docs/tough-cookie.getcookiesoptions.allpaths.md diff --git a/api/docs/tough-cookie.getcookiesoptions.expire.md b/docs/tough-cookie.getcookiesoptions.expire.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.expire.md rename to docs/tough-cookie.getcookiesoptions.expire.md diff --git a/api/docs/tough-cookie.getcookiesoptions.http.md b/docs/tough-cookie.getcookiesoptions.http.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.http.md rename to docs/tough-cookie.getcookiesoptions.http.md diff --git a/api/docs/tough-cookie.getcookiesoptions.md b/docs/tough-cookie.getcookiesoptions.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.md rename to docs/tough-cookie.getcookiesoptions.md diff --git a/api/docs/tough-cookie.getcookiesoptions.samesitecontext.md b/docs/tough-cookie.getcookiesoptions.samesitecontext.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.samesitecontext.md rename to docs/tough-cookie.getcookiesoptions.samesitecontext.md diff --git a/api/docs/tough-cookie.getcookiesoptions.sort.md b/docs/tough-cookie.getcookiesoptions.sort.md similarity index 100% rename from api/docs/tough-cookie.getcookiesoptions.sort.md rename to docs/tough-cookie.getcookiesoptions.sort.md diff --git a/api/docs/tough-cookie.getpublicsuffix.md b/docs/tough-cookie.getpublicsuffix.md similarity index 100% rename from api/docs/tough-cookie.getpublicsuffix.md rename to docs/tough-cookie.getpublicsuffix.md diff --git a/api/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md b/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md similarity index 100% rename from api/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md rename to docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md diff --git a/api/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md b/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md similarity index 100% rename from api/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md rename to docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md diff --git a/api/docs/tough-cookie.getpublicsuffixoptions.md b/docs/tough-cookie.getpublicsuffixoptions.md similarity index 100% rename from api/docs/tough-cookie.getpublicsuffixoptions.md rename to docs/tough-cookie.getpublicsuffixoptions.md diff --git a/api/docs/tough-cookie.md b/docs/tough-cookie.md similarity index 100% rename from api/docs/tough-cookie.md rename to docs/tough-cookie.md diff --git a/api/docs/tough-cookie.memorycookiestore._constructor_.md b/docs/tough-cookie.memorycookiestore._constructor_.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore._constructor_.md rename to docs/tough-cookie.memorycookiestore._constructor_.md diff --git a/api/docs/tough-cookie.memorycookiestore.findcookie.md b/docs/tough-cookie.memorycookiestore.findcookie.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.findcookie.md rename to docs/tough-cookie.memorycookiestore.findcookie.md diff --git a/api/docs/tough-cookie.memorycookiestore.findcookie_1.md b/docs/tough-cookie.memorycookiestore.findcookie_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.findcookie_1.md rename to docs/tough-cookie.memorycookiestore.findcookie_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.findcookies.md b/docs/tough-cookie.memorycookiestore.findcookies.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.findcookies.md rename to docs/tough-cookie.memorycookiestore.findcookies.md diff --git a/api/docs/tough-cookie.memorycookiestore.findcookies_1.md b/docs/tough-cookie.memorycookiestore.findcookies_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.findcookies_1.md rename to docs/tough-cookie.memorycookiestore.findcookies_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.getallcookies.md b/docs/tough-cookie.memorycookiestore.getallcookies.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.getallcookies.md rename to docs/tough-cookie.memorycookiestore.getallcookies.md diff --git a/api/docs/tough-cookie.memorycookiestore.getallcookies_1.md b/docs/tough-cookie.memorycookiestore.getallcookies_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.getallcookies_1.md rename to docs/tough-cookie.memorycookiestore.getallcookies_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.md b/docs/tough-cookie.memorycookiestore.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.md rename to docs/tough-cookie.memorycookiestore.md diff --git a/api/docs/tough-cookie.memorycookiestore.putcookie.md b/docs/tough-cookie.memorycookiestore.putcookie.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.putcookie.md rename to docs/tough-cookie.memorycookiestore.putcookie.md diff --git a/api/docs/tough-cookie.memorycookiestore.putcookie_1.md b/docs/tough-cookie.memorycookiestore.putcookie_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.putcookie_1.md rename to docs/tough-cookie.memorycookiestore.putcookie_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.removeallcookies.md b/docs/tough-cookie.memorycookiestore.removeallcookies.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removeallcookies.md rename to docs/tough-cookie.memorycookiestore.removeallcookies.md diff --git a/api/docs/tough-cookie.memorycookiestore.removeallcookies_1.md b/docs/tough-cookie.memorycookiestore.removeallcookies_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removeallcookies_1.md rename to docs/tough-cookie.memorycookiestore.removeallcookies_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.removecookie.md b/docs/tough-cookie.memorycookiestore.removecookie.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removecookie.md rename to docs/tough-cookie.memorycookiestore.removecookie.md diff --git a/api/docs/tough-cookie.memorycookiestore.removecookie_1.md b/docs/tough-cookie.memorycookiestore.removecookie_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removecookie_1.md rename to docs/tough-cookie.memorycookiestore.removecookie_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.removecookies.md b/docs/tough-cookie.memorycookiestore.removecookies.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removecookies.md rename to docs/tough-cookie.memorycookiestore.removecookies.md diff --git a/api/docs/tough-cookie.memorycookiestore.removecookies_1.md b/docs/tough-cookie.memorycookiestore.removecookies_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.removecookies_1.md rename to docs/tough-cookie.memorycookiestore.removecookies_1.md diff --git a/api/docs/tough-cookie.memorycookiestore.synchronous.md b/docs/tough-cookie.memorycookiestore.synchronous.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.synchronous.md rename to docs/tough-cookie.memorycookiestore.synchronous.md diff --git a/api/docs/tough-cookie.memorycookiestore.updatecookie.md b/docs/tough-cookie.memorycookiestore.updatecookie.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.updatecookie.md rename to docs/tough-cookie.memorycookiestore.updatecookie.md diff --git a/api/docs/tough-cookie.memorycookiestore.updatecookie_1.md b/docs/tough-cookie.memorycookiestore.updatecookie_1.md similarity index 100% rename from api/docs/tough-cookie.memorycookiestore.updatecookie_1.md rename to docs/tough-cookie.memorycookiestore.updatecookie_1.md diff --git a/api/docs/tough-cookie.nullable.md b/docs/tough-cookie.nullable.md similarity index 100% rename from api/docs/tough-cookie.nullable.md rename to docs/tough-cookie.nullable.md diff --git a/api/docs/tough-cookie.parametererror.md b/docs/tough-cookie.parametererror.md similarity index 100% rename from api/docs/tough-cookie.parametererror.md rename to docs/tough-cookie.parametererror.md diff --git a/api/docs/tough-cookie.parse.md b/docs/tough-cookie.parse.md similarity index 100% rename from api/docs/tough-cookie.parse.md rename to docs/tough-cookie.parse.md diff --git a/api/docs/tough-cookie.parsecookieoptions.loose.md b/docs/tough-cookie.parsecookieoptions.loose.md similarity index 100% rename from api/docs/tough-cookie.parsecookieoptions.loose.md rename to docs/tough-cookie.parsecookieoptions.loose.md diff --git a/api/docs/tough-cookie.parsecookieoptions.md b/docs/tough-cookie.parsecookieoptions.md similarity index 100% rename from api/docs/tough-cookie.parsecookieoptions.md rename to docs/tough-cookie.parsecookieoptions.md diff --git a/api/docs/tough-cookie.parsedate.md b/docs/tough-cookie.parsedate.md similarity index 100% rename from api/docs/tough-cookie.parsedate.md rename to docs/tough-cookie.parsedate.md diff --git a/api/docs/tough-cookie.pathmatch.md b/docs/tough-cookie.pathmatch.md similarity index 100% rename from api/docs/tough-cookie.pathmatch.md rename to docs/tough-cookie.pathmatch.md diff --git a/api/docs/tough-cookie.permutedomain.md b/docs/tough-cookie.permutedomain.md similarity index 100% rename from api/docs/tough-cookie.permutedomain.md rename to docs/tough-cookie.permutedomain.md diff --git a/api/docs/tough-cookie.permutepath.md b/docs/tough-cookie.permutepath.md similarity index 100% rename from api/docs/tough-cookie.permutepath.md rename to docs/tough-cookie.permutepath.md diff --git a/api/docs/tough-cookie.prefixsecurityenum.md b/docs/tough-cookie.prefixsecurityenum.md similarity index 100% rename from api/docs/tough-cookie.prefixsecurityenum.md rename to docs/tough-cookie.prefixsecurityenum.md diff --git a/api/docs/tough-cookie.serializedcookie.md b/docs/tough-cookie.serializedcookie.md similarity index 100% rename from api/docs/tough-cookie.serializedcookie.md rename to docs/tough-cookie.serializedcookie.md diff --git a/api/docs/tough-cookie.serializedcookiejar.cookies.md b/docs/tough-cookie.serializedcookiejar.cookies.md similarity index 100% rename from api/docs/tough-cookie.serializedcookiejar.cookies.md rename to docs/tough-cookie.serializedcookiejar.cookies.md diff --git a/api/docs/tough-cookie.serializedcookiejar.md b/docs/tough-cookie.serializedcookiejar.md similarity index 100% rename from api/docs/tough-cookie.serializedcookiejar.md rename to docs/tough-cookie.serializedcookiejar.md diff --git a/api/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md b/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md similarity index 100% rename from api/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md rename to docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md diff --git a/api/docs/tough-cookie.serializedcookiejar.storetype.md b/docs/tough-cookie.serializedcookiejar.storetype.md similarity index 100% rename from api/docs/tough-cookie.serializedcookiejar.storetype.md rename to docs/tough-cookie.serializedcookiejar.storetype.md diff --git a/api/docs/tough-cookie.serializedcookiejar.version.md b/docs/tough-cookie.serializedcookiejar.version.md similarity index 100% rename from api/docs/tough-cookie.serializedcookiejar.version.md rename to docs/tough-cookie.serializedcookiejar.version.md diff --git a/api/docs/tough-cookie.setcookieoptions.http.md b/docs/tough-cookie.setcookieoptions.http.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.http.md rename to docs/tough-cookie.setcookieoptions.http.md diff --git a/api/docs/tough-cookie.setcookieoptions.ignoreerror.md b/docs/tough-cookie.setcookieoptions.ignoreerror.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.ignoreerror.md rename to docs/tough-cookie.setcookieoptions.ignoreerror.md diff --git a/api/docs/tough-cookie.setcookieoptions.loose.md b/docs/tough-cookie.setcookieoptions.loose.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.loose.md rename to docs/tough-cookie.setcookieoptions.loose.md diff --git a/api/docs/tough-cookie.setcookieoptions.md b/docs/tough-cookie.setcookieoptions.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.md rename to docs/tough-cookie.setcookieoptions.md diff --git a/api/docs/tough-cookie.setcookieoptions.now.md b/docs/tough-cookie.setcookieoptions.now.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.now.md rename to docs/tough-cookie.setcookieoptions.now.md diff --git a/api/docs/tough-cookie.setcookieoptions.samesitecontext.md b/docs/tough-cookie.setcookieoptions.samesitecontext.md similarity index 100% rename from api/docs/tough-cookie.setcookieoptions.samesitecontext.md rename to docs/tough-cookie.setcookieoptions.samesitecontext.md diff --git a/api/docs/tough-cookie.store._constructor_.md b/docs/tough-cookie.store._constructor_.md similarity index 100% rename from api/docs/tough-cookie.store._constructor_.md rename to docs/tough-cookie.store._constructor_.md diff --git a/api/docs/tough-cookie.store.findcookie.md b/docs/tough-cookie.store.findcookie.md similarity index 100% rename from api/docs/tough-cookie.store.findcookie.md rename to docs/tough-cookie.store.findcookie.md diff --git a/api/docs/tough-cookie.store.findcookie_1.md b/docs/tough-cookie.store.findcookie_1.md similarity index 100% rename from api/docs/tough-cookie.store.findcookie_1.md rename to docs/tough-cookie.store.findcookie_1.md diff --git a/api/docs/tough-cookie.store.findcookies.md b/docs/tough-cookie.store.findcookies.md similarity index 100% rename from api/docs/tough-cookie.store.findcookies.md rename to docs/tough-cookie.store.findcookies.md diff --git a/api/docs/tough-cookie.store.findcookies_1.md b/docs/tough-cookie.store.findcookies_1.md similarity index 100% rename from api/docs/tough-cookie.store.findcookies_1.md rename to docs/tough-cookie.store.findcookies_1.md diff --git a/api/docs/tough-cookie.store.getallcookies.md b/docs/tough-cookie.store.getallcookies.md similarity index 100% rename from api/docs/tough-cookie.store.getallcookies.md rename to docs/tough-cookie.store.getallcookies.md diff --git a/api/docs/tough-cookie.store.getallcookies_1.md b/docs/tough-cookie.store.getallcookies_1.md similarity index 100% rename from api/docs/tough-cookie.store.getallcookies_1.md rename to docs/tough-cookie.store.getallcookies_1.md diff --git a/api/docs/tough-cookie.store.md b/docs/tough-cookie.store.md similarity index 100% rename from api/docs/tough-cookie.store.md rename to docs/tough-cookie.store.md diff --git a/api/docs/tough-cookie.store.putcookie.md b/docs/tough-cookie.store.putcookie.md similarity index 100% rename from api/docs/tough-cookie.store.putcookie.md rename to docs/tough-cookie.store.putcookie.md diff --git a/api/docs/tough-cookie.store.putcookie_1.md b/docs/tough-cookie.store.putcookie_1.md similarity index 100% rename from api/docs/tough-cookie.store.putcookie_1.md rename to docs/tough-cookie.store.putcookie_1.md diff --git a/api/docs/tough-cookie.store.removeallcookies.md b/docs/tough-cookie.store.removeallcookies.md similarity index 100% rename from api/docs/tough-cookie.store.removeallcookies.md rename to docs/tough-cookie.store.removeallcookies.md diff --git a/api/docs/tough-cookie.store.removeallcookies_1.md b/docs/tough-cookie.store.removeallcookies_1.md similarity index 100% rename from api/docs/tough-cookie.store.removeallcookies_1.md rename to docs/tough-cookie.store.removeallcookies_1.md diff --git a/api/docs/tough-cookie.store.removecookie.md b/docs/tough-cookie.store.removecookie.md similarity index 100% rename from api/docs/tough-cookie.store.removecookie.md rename to docs/tough-cookie.store.removecookie.md diff --git a/api/docs/tough-cookie.store.removecookie_1.md b/docs/tough-cookie.store.removecookie_1.md similarity index 100% rename from api/docs/tough-cookie.store.removecookie_1.md rename to docs/tough-cookie.store.removecookie_1.md diff --git a/api/docs/tough-cookie.store.removecookies.md b/docs/tough-cookie.store.removecookies.md similarity index 100% rename from api/docs/tough-cookie.store.removecookies.md rename to docs/tough-cookie.store.removecookies.md diff --git a/api/docs/tough-cookie.store.removecookies_1.md b/docs/tough-cookie.store.removecookies_1.md similarity index 100% rename from api/docs/tough-cookie.store.removecookies_1.md rename to docs/tough-cookie.store.removecookies_1.md diff --git a/api/docs/tough-cookie.store.synchronous.md b/docs/tough-cookie.store.synchronous.md similarity index 100% rename from api/docs/tough-cookie.store.synchronous.md rename to docs/tough-cookie.store.synchronous.md diff --git a/api/docs/tough-cookie.store.updatecookie.md b/docs/tough-cookie.store.updatecookie.md similarity index 100% rename from api/docs/tough-cookie.store.updatecookie.md rename to docs/tough-cookie.store.updatecookie.md diff --git a/api/docs/tough-cookie.store.updatecookie_1.md b/docs/tough-cookie.store.updatecookie_1.md similarity index 100% rename from api/docs/tough-cookie.store.updatecookie_1.md rename to docs/tough-cookie.store.updatecookie_1.md diff --git a/api/docs/tough-cookie.version.md b/docs/tough-cookie.version.md similarity index 100% rename from api/docs/tough-cookie.version.md rename to docs/tough-cookie.version.md From 7b4266b62aa8dfac5cb757fafe8ddae4a4cdc474 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:18:39 -0400 Subject: [PATCH 05/12] Revert "chore(docs): move docs to /docs for GitHub Pages" This reverts commit 6f3dc53fad40ce27a42a5f39ba06d9e0a4faf384. --- {docs => api/docs}/index.md | 0 {docs => api/docs}/tough-cookie.callback.md | 0 {docs => api/docs}/tough-cookie.canonicaldomain.md | 0 {docs => api/docs}/tough-cookie.cookie._constructor_.md | 0 {docs => api/docs}/tough-cookie.cookie.canonicalizeddomain.md | 0 {docs => api/docs}/tough-cookie.cookie.cdomain.md | 0 {docs => api/docs}/tough-cookie.cookie.clone.md | 0 {docs => api/docs}/tough-cookie.cookie.cookiestring.md | 0 {docs => api/docs}/tough-cookie.cookie.creation.md | 0 {docs => api/docs}/tough-cookie.cookie.creationindex.md | 0 {docs => api/docs}/tough-cookie.cookie.domain.md | 0 {docs => api/docs}/tough-cookie.cookie.expires.md | 0 {docs => api/docs}/tough-cookie.cookie.expirytime.md | 0 {docs => api/docs}/tough-cookie.cookie.extensions.md | 0 {docs => api/docs}/tough-cookie.cookie.fromjson.md | 0 {docs => api/docs}/tough-cookie.cookie.hostonly.md | 0 {docs => api/docs}/tough-cookie.cookie.httponly.md | 0 {docs => api/docs}/tough-cookie.cookie.ispersistent.md | 0 {docs => api/docs}/tough-cookie.cookie.key.md | 0 {docs => api/docs}/tough-cookie.cookie.lastaccessed.md | 0 {docs => api/docs}/tough-cookie.cookie.maxage.md | 0 {docs => api/docs}/tough-cookie.cookie.md | 0 {docs => api/docs}/tough-cookie.cookie.parse.md | 0 {docs => api/docs}/tough-cookie.cookie.path.md | 0 {docs => api/docs}/tough-cookie.cookie.pathisdefault.md | 0 {docs => api/docs}/tough-cookie.cookie.samesite.md | 0 {docs => api/docs}/tough-cookie.cookie.secure.md | 0 {docs => api/docs}/tough-cookie.cookie.serializableproperties.md | 0 {docs => api/docs}/tough-cookie.cookie.setexpires.md | 0 {docs => api/docs}/tough-cookie.cookie.setmaxage.md | 0 {docs => api/docs}/tough-cookie.cookie.tojson.md | 0 {docs => api/docs}/tough-cookie.cookie.tostring.md | 0 {docs => api/docs}/tough-cookie.cookie.ttl.md | 0 {docs => api/docs}/tough-cookie.cookie.validate.md | 0 {docs => api/docs}/tough-cookie.cookie.value.md | 0 {docs => api/docs}/tough-cookie.cookiecompare.md | 0 {docs => api/docs}/tough-cookie.cookiejar._constructor_.md | 0 {docs => api/docs}/tough-cookie.cookiejar.clone.md | 0 {docs => api/docs}/tough-cookie.cookiejar.clone_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.clone_2.md | 0 {docs => api/docs}/tough-cookie.cookiejar.clonesync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.deserialize.md | 0 {docs => api/docs}/tough-cookie.cookiejar.deserialize_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.deserialize_2.md | 0 {docs => api/docs}/tough-cookie.cookiejar.deserializesync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.fromjson.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookies.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookies_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookies_2.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookies_3.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookiessync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookiestring.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookiestring_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookiestring_2.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getcookiestringsync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.getsetcookiestrings.md | 0 .../docs}/tough-cookie.cookiejar.getsetcookiestrings_1.md | 0 .../docs}/tough-cookie.cookiejar.getsetcookiestrings_2.md | 0 .../docs}/tough-cookie.cookiejar.getsetcookiestringssync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.md | 0 {docs => api/docs}/tough-cookie.cookiejar.prefixsecurity.md | 0 {docs => api/docs}/tough-cookie.cookiejar.removeallcookies.md | 0 {docs => api/docs}/tough-cookie.cookiejar.removeallcookies_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.removeallcookiessync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.serialize.md | 0 {docs => api/docs}/tough-cookie.cookiejar.serialize_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.serializesync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.setcookie.md | 0 {docs => api/docs}/tough-cookie.cookiejar.setcookie_1.md | 0 {docs => api/docs}/tough-cookie.cookiejar.setcookie_2.md | 0 {docs => api/docs}/tough-cookie.cookiejar.setcookiesync.md | 0 {docs => api/docs}/tough-cookie.cookiejar.store.md | 0 {docs => api/docs}/tough-cookie.cookiejar.tojson.md | 0 .../tough-cookie.createcookiejaroptions.allowspecialusedomain.md | 0 .../docs}/tough-cookie.createcookiejaroptions.loosemode.md | 0 {docs => api/docs}/tough-cookie.createcookiejaroptions.md | 0 .../docs}/tough-cookie.createcookiejaroptions.prefixsecurity.md | 0 .../tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.creation.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.domain.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.expires.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.extensions.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.hostonly.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.httponly.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.key.md | 0 .../docs}/tough-cookie.createcookieoptions.lastaccessed.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.maxage.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.path.md | 0 .../docs}/tough-cookie.createcookieoptions.pathisdefault.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.samesite.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.secure.md | 0 {docs => api/docs}/tough-cookie.createcookieoptions.value.md | 0 {docs => api/docs}/tough-cookie.defaultpath.md | 0 {docs => api/docs}/tough-cookie.domainmatch.md | 0 {docs => api/docs}/tough-cookie.errorcallback.md | 0 {docs => api/docs}/tough-cookie.formatdate.md | 0 {docs => api/docs}/tough-cookie.fromjson.md | 0 {docs => api/docs}/tough-cookie.getcookiesoptions.allpaths.md | 0 {docs => api/docs}/tough-cookie.getcookiesoptions.expire.md | 0 {docs => api/docs}/tough-cookie.getcookiesoptions.http.md | 0 {docs => api/docs}/tough-cookie.getcookiesoptions.md | 0 .../docs}/tough-cookie.getcookiesoptions.samesitecontext.md | 0 {docs => api/docs}/tough-cookie.getcookiesoptions.sort.md | 0 {docs => api/docs}/tough-cookie.getpublicsuffix.md | 0 .../tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md | 0 .../docs}/tough-cookie.getpublicsuffixoptions.ignoreerror.md | 0 {docs => api/docs}/tough-cookie.getpublicsuffixoptions.md | 0 {docs => api/docs}/tough-cookie.md | 0 .../docs}/tough-cookie.memorycookiestore._constructor_.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.findcookie.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.findcookie_1.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.findcookies.md | 0 .../docs}/tough-cookie.memorycookiestore.findcookies_1.md | 0 .../docs}/tough-cookie.memorycookiestore.getallcookies.md | 0 .../docs}/tough-cookie.memorycookiestore.getallcookies_1.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.putcookie.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.putcookie_1.md | 0 .../docs}/tough-cookie.memorycookiestore.removeallcookies.md | 0 .../docs}/tough-cookie.memorycookiestore.removeallcookies_1.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.removecookie.md | 0 .../docs}/tough-cookie.memorycookiestore.removecookie_1.md | 0 .../docs}/tough-cookie.memorycookiestore.removecookies.md | 0 .../docs}/tough-cookie.memorycookiestore.removecookies_1.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.synchronous.md | 0 {docs => api/docs}/tough-cookie.memorycookiestore.updatecookie.md | 0 .../docs}/tough-cookie.memorycookiestore.updatecookie_1.md | 0 {docs => api/docs}/tough-cookie.nullable.md | 0 {docs => api/docs}/tough-cookie.parametererror.md | 0 {docs => api/docs}/tough-cookie.parse.md | 0 {docs => api/docs}/tough-cookie.parsecookieoptions.loose.md | 0 {docs => api/docs}/tough-cookie.parsecookieoptions.md | 0 {docs => api/docs}/tough-cookie.parsedate.md | 0 {docs => api/docs}/tough-cookie.pathmatch.md | 0 {docs => api/docs}/tough-cookie.permutedomain.md | 0 {docs => api/docs}/tough-cookie.permutepath.md | 0 {docs => api/docs}/tough-cookie.prefixsecurityenum.md | 0 {docs => api/docs}/tough-cookie.serializedcookie.md | 0 {docs => api/docs}/tough-cookie.serializedcookiejar.cookies.md | 0 {docs => api/docs}/tough-cookie.serializedcookiejar.md | 0 .../tough-cookie.serializedcookiejar.rejectpublicsuffixes.md | 0 {docs => api/docs}/tough-cookie.serializedcookiejar.storetype.md | 0 {docs => api/docs}/tough-cookie.serializedcookiejar.version.md | 0 {docs => api/docs}/tough-cookie.setcookieoptions.http.md | 0 {docs => api/docs}/tough-cookie.setcookieoptions.ignoreerror.md | 0 {docs => api/docs}/tough-cookie.setcookieoptions.loose.md | 0 {docs => api/docs}/tough-cookie.setcookieoptions.md | 0 {docs => api/docs}/tough-cookie.setcookieoptions.now.md | 0 .../docs}/tough-cookie.setcookieoptions.samesitecontext.md | 0 {docs => api/docs}/tough-cookie.store._constructor_.md | 0 {docs => api/docs}/tough-cookie.store.findcookie.md | 0 {docs => api/docs}/tough-cookie.store.findcookie_1.md | 0 {docs => api/docs}/tough-cookie.store.findcookies.md | 0 {docs => api/docs}/tough-cookie.store.findcookies_1.md | 0 {docs => api/docs}/tough-cookie.store.getallcookies.md | 0 {docs => api/docs}/tough-cookie.store.getallcookies_1.md | 0 {docs => api/docs}/tough-cookie.store.md | 0 {docs => api/docs}/tough-cookie.store.putcookie.md | 0 {docs => api/docs}/tough-cookie.store.putcookie_1.md | 0 {docs => api/docs}/tough-cookie.store.removeallcookies.md | 0 {docs => api/docs}/tough-cookie.store.removeallcookies_1.md | 0 {docs => api/docs}/tough-cookie.store.removecookie.md | 0 {docs => api/docs}/tough-cookie.store.removecookie_1.md | 0 {docs => api/docs}/tough-cookie.store.removecookies.md | 0 {docs => api/docs}/tough-cookie.store.removecookies_1.md | 0 {docs => api/docs}/tough-cookie.store.synchronous.md | 0 {docs => api/docs}/tough-cookie.store.updatecookie.md | 0 {docs => api/docs}/tough-cookie.store.updatecookie_1.md | 0 {docs => api/docs}/tough-cookie.version.md | 0 170 files changed, 0 insertions(+), 0 deletions(-) rename {docs => api/docs}/index.md (100%) rename {docs => api/docs}/tough-cookie.callback.md (100%) rename {docs => api/docs}/tough-cookie.canonicaldomain.md (100%) rename {docs => api/docs}/tough-cookie.cookie._constructor_.md (100%) rename {docs => api/docs}/tough-cookie.cookie.canonicalizeddomain.md (100%) rename {docs => api/docs}/tough-cookie.cookie.cdomain.md (100%) rename {docs => api/docs}/tough-cookie.cookie.clone.md (100%) rename {docs => api/docs}/tough-cookie.cookie.cookiestring.md (100%) rename {docs => api/docs}/tough-cookie.cookie.creation.md (100%) rename {docs => api/docs}/tough-cookie.cookie.creationindex.md (100%) rename {docs => api/docs}/tough-cookie.cookie.domain.md (100%) rename {docs => api/docs}/tough-cookie.cookie.expires.md (100%) rename {docs => api/docs}/tough-cookie.cookie.expirytime.md (100%) rename {docs => api/docs}/tough-cookie.cookie.extensions.md (100%) rename {docs => api/docs}/tough-cookie.cookie.fromjson.md (100%) rename {docs => api/docs}/tough-cookie.cookie.hostonly.md (100%) rename {docs => api/docs}/tough-cookie.cookie.httponly.md (100%) rename {docs => api/docs}/tough-cookie.cookie.ispersistent.md (100%) rename {docs => api/docs}/tough-cookie.cookie.key.md (100%) rename {docs => api/docs}/tough-cookie.cookie.lastaccessed.md (100%) rename {docs => api/docs}/tough-cookie.cookie.maxage.md (100%) rename {docs => api/docs}/tough-cookie.cookie.md (100%) rename {docs => api/docs}/tough-cookie.cookie.parse.md (100%) rename {docs => api/docs}/tough-cookie.cookie.path.md (100%) rename {docs => api/docs}/tough-cookie.cookie.pathisdefault.md (100%) rename {docs => api/docs}/tough-cookie.cookie.samesite.md (100%) rename {docs => api/docs}/tough-cookie.cookie.secure.md (100%) rename {docs => api/docs}/tough-cookie.cookie.serializableproperties.md (100%) rename {docs => api/docs}/tough-cookie.cookie.setexpires.md (100%) rename {docs => api/docs}/tough-cookie.cookie.setmaxage.md (100%) rename {docs => api/docs}/tough-cookie.cookie.tojson.md (100%) rename {docs => api/docs}/tough-cookie.cookie.tostring.md (100%) rename {docs => api/docs}/tough-cookie.cookie.ttl.md (100%) rename {docs => api/docs}/tough-cookie.cookie.validate.md (100%) rename {docs => api/docs}/tough-cookie.cookie.value.md (100%) rename {docs => api/docs}/tough-cookie.cookiecompare.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar._constructor_.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.clone.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.clone_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.clone_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.clonesync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.deserialize.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.deserialize_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.deserialize_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.deserializesync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.fromjson.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookies.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookies_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookies_3.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookiessync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookiestring.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookiestring_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookiestring_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getcookiestringsync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getsetcookiestrings.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getsetcookiestrings_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getsetcookiestrings_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.getsetcookiestringssync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.prefixsecurity.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.removeallcookies.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.removeallcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.removeallcookiessync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.serialize.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.serialize_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.serializesync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.setcookie.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.setcookie_1.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.setcookie_2.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.setcookiesync.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.store.md (100%) rename {docs => api/docs}/tough-cookie.cookiejar.tojson.md (100%) rename {docs => api/docs}/tough-cookie.createcookiejaroptions.allowspecialusedomain.md (100%) rename {docs => api/docs}/tough-cookie.createcookiejaroptions.loosemode.md (100%) rename {docs => api/docs}/tough-cookie.createcookiejaroptions.md (100%) rename {docs => api/docs}/tough-cookie.createcookiejaroptions.prefixsecurity.md (100%) rename {docs => api/docs}/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.creation.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.domain.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.expires.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.extensions.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.hostonly.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.httponly.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.key.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.lastaccessed.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.maxage.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.path.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.pathisdefault.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.samesite.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.secure.md (100%) rename {docs => api/docs}/tough-cookie.createcookieoptions.value.md (100%) rename {docs => api/docs}/tough-cookie.defaultpath.md (100%) rename {docs => api/docs}/tough-cookie.domainmatch.md (100%) rename {docs => api/docs}/tough-cookie.errorcallback.md (100%) rename {docs => api/docs}/tough-cookie.formatdate.md (100%) rename {docs => api/docs}/tough-cookie.fromjson.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.allpaths.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.expire.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.http.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.samesitecontext.md (100%) rename {docs => api/docs}/tough-cookie.getcookiesoptions.sort.md (100%) rename {docs => api/docs}/tough-cookie.getpublicsuffix.md (100%) rename {docs => api/docs}/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md (100%) rename {docs => api/docs}/tough-cookie.getpublicsuffixoptions.ignoreerror.md (100%) rename {docs => api/docs}/tough-cookie.getpublicsuffixoptions.md (100%) rename {docs => api/docs}/tough-cookie.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore._constructor_.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.findcookie.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.findcookie_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.findcookies.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.findcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.getallcookies.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.getallcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.putcookie.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.putcookie_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removeallcookies.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removeallcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removecookie.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removecookie_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removecookies.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.removecookies_1.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.synchronous.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.updatecookie.md (100%) rename {docs => api/docs}/tough-cookie.memorycookiestore.updatecookie_1.md (100%) rename {docs => api/docs}/tough-cookie.nullable.md (100%) rename {docs => api/docs}/tough-cookie.parametererror.md (100%) rename {docs => api/docs}/tough-cookie.parse.md (100%) rename {docs => api/docs}/tough-cookie.parsecookieoptions.loose.md (100%) rename {docs => api/docs}/tough-cookie.parsecookieoptions.md (100%) rename {docs => api/docs}/tough-cookie.parsedate.md (100%) rename {docs => api/docs}/tough-cookie.pathmatch.md (100%) rename {docs => api/docs}/tough-cookie.permutedomain.md (100%) rename {docs => api/docs}/tough-cookie.permutepath.md (100%) rename {docs => api/docs}/tough-cookie.prefixsecurityenum.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookie.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookiejar.cookies.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookiejar.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookiejar.storetype.md (100%) rename {docs => api/docs}/tough-cookie.serializedcookiejar.version.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.http.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.ignoreerror.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.loose.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.now.md (100%) rename {docs => api/docs}/tough-cookie.setcookieoptions.samesitecontext.md (100%) rename {docs => api/docs}/tough-cookie.store._constructor_.md (100%) rename {docs => api/docs}/tough-cookie.store.findcookie.md (100%) rename {docs => api/docs}/tough-cookie.store.findcookie_1.md (100%) rename {docs => api/docs}/tough-cookie.store.findcookies.md (100%) rename {docs => api/docs}/tough-cookie.store.findcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.store.getallcookies.md (100%) rename {docs => api/docs}/tough-cookie.store.getallcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.store.md (100%) rename {docs => api/docs}/tough-cookie.store.putcookie.md (100%) rename {docs => api/docs}/tough-cookie.store.putcookie_1.md (100%) rename {docs => api/docs}/tough-cookie.store.removeallcookies.md (100%) rename {docs => api/docs}/tough-cookie.store.removeallcookies_1.md (100%) rename {docs => api/docs}/tough-cookie.store.removecookie.md (100%) rename {docs => api/docs}/tough-cookie.store.removecookie_1.md (100%) rename {docs => api/docs}/tough-cookie.store.removecookies.md (100%) rename {docs => api/docs}/tough-cookie.store.removecookies_1.md (100%) rename {docs => api/docs}/tough-cookie.store.synchronous.md (100%) rename {docs => api/docs}/tough-cookie.store.updatecookie.md (100%) rename {docs => api/docs}/tough-cookie.store.updatecookie_1.md (100%) rename {docs => api/docs}/tough-cookie.version.md (100%) diff --git a/docs/index.md b/api/docs/index.md similarity index 100% rename from docs/index.md rename to api/docs/index.md diff --git a/docs/tough-cookie.callback.md b/api/docs/tough-cookie.callback.md similarity index 100% rename from docs/tough-cookie.callback.md rename to api/docs/tough-cookie.callback.md diff --git a/docs/tough-cookie.canonicaldomain.md b/api/docs/tough-cookie.canonicaldomain.md similarity index 100% rename from docs/tough-cookie.canonicaldomain.md rename to api/docs/tough-cookie.canonicaldomain.md diff --git a/docs/tough-cookie.cookie._constructor_.md b/api/docs/tough-cookie.cookie._constructor_.md similarity index 100% rename from docs/tough-cookie.cookie._constructor_.md rename to api/docs/tough-cookie.cookie._constructor_.md diff --git a/docs/tough-cookie.cookie.canonicalizeddomain.md b/api/docs/tough-cookie.cookie.canonicalizeddomain.md similarity index 100% rename from docs/tough-cookie.cookie.canonicalizeddomain.md rename to api/docs/tough-cookie.cookie.canonicalizeddomain.md diff --git a/docs/tough-cookie.cookie.cdomain.md b/api/docs/tough-cookie.cookie.cdomain.md similarity index 100% rename from docs/tough-cookie.cookie.cdomain.md rename to api/docs/tough-cookie.cookie.cdomain.md diff --git a/docs/tough-cookie.cookie.clone.md b/api/docs/tough-cookie.cookie.clone.md similarity index 100% rename from docs/tough-cookie.cookie.clone.md rename to api/docs/tough-cookie.cookie.clone.md diff --git a/docs/tough-cookie.cookie.cookiestring.md b/api/docs/tough-cookie.cookie.cookiestring.md similarity index 100% rename from docs/tough-cookie.cookie.cookiestring.md rename to api/docs/tough-cookie.cookie.cookiestring.md diff --git a/docs/tough-cookie.cookie.creation.md b/api/docs/tough-cookie.cookie.creation.md similarity index 100% rename from docs/tough-cookie.cookie.creation.md rename to api/docs/tough-cookie.cookie.creation.md diff --git a/docs/tough-cookie.cookie.creationindex.md b/api/docs/tough-cookie.cookie.creationindex.md similarity index 100% rename from docs/tough-cookie.cookie.creationindex.md rename to api/docs/tough-cookie.cookie.creationindex.md diff --git a/docs/tough-cookie.cookie.domain.md b/api/docs/tough-cookie.cookie.domain.md similarity index 100% rename from docs/tough-cookie.cookie.domain.md rename to api/docs/tough-cookie.cookie.domain.md diff --git a/docs/tough-cookie.cookie.expires.md b/api/docs/tough-cookie.cookie.expires.md similarity index 100% rename from docs/tough-cookie.cookie.expires.md rename to api/docs/tough-cookie.cookie.expires.md diff --git a/docs/tough-cookie.cookie.expirytime.md b/api/docs/tough-cookie.cookie.expirytime.md similarity index 100% rename from docs/tough-cookie.cookie.expirytime.md rename to api/docs/tough-cookie.cookie.expirytime.md diff --git a/docs/tough-cookie.cookie.extensions.md b/api/docs/tough-cookie.cookie.extensions.md similarity index 100% rename from docs/tough-cookie.cookie.extensions.md rename to api/docs/tough-cookie.cookie.extensions.md diff --git a/docs/tough-cookie.cookie.fromjson.md b/api/docs/tough-cookie.cookie.fromjson.md similarity index 100% rename from docs/tough-cookie.cookie.fromjson.md rename to api/docs/tough-cookie.cookie.fromjson.md diff --git a/docs/tough-cookie.cookie.hostonly.md b/api/docs/tough-cookie.cookie.hostonly.md similarity index 100% rename from docs/tough-cookie.cookie.hostonly.md rename to api/docs/tough-cookie.cookie.hostonly.md diff --git a/docs/tough-cookie.cookie.httponly.md b/api/docs/tough-cookie.cookie.httponly.md similarity index 100% rename from docs/tough-cookie.cookie.httponly.md rename to api/docs/tough-cookie.cookie.httponly.md diff --git a/docs/tough-cookie.cookie.ispersistent.md b/api/docs/tough-cookie.cookie.ispersistent.md similarity index 100% rename from docs/tough-cookie.cookie.ispersistent.md rename to api/docs/tough-cookie.cookie.ispersistent.md diff --git a/docs/tough-cookie.cookie.key.md b/api/docs/tough-cookie.cookie.key.md similarity index 100% rename from docs/tough-cookie.cookie.key.md rename to api/docs/tough-cookie.cookie.key.md diff --git a/docs/tough-cookie.cookie.lastaccessed.md b/api/docs/tough-cookie.cookie.lastaccessed.md similarity index 100% rename from docs/tough-cookie.cookie.lastaccessed.md rename to api/docs/tough-cookie.cookie.lastaccessed.md diff --git a/docs/tough-cookie.cookie.maxage.md b/api/docs/tough-cookie.cookie.maxage.md similarity index 100% rename from docs/tough-cookie.cookie.maxage.md rename to api/docs/tough-cookie.cookie.maxage.md diff --git a/docs/tough-cookie.cookie.md b/api/docs/tough-cookie.cookie.md similarity index 100% rename from docs/tough-cookie.cookie.md rename to api/docs/tough-cookie.cookie.md diff --git a/docs/tough-cookie.cookie.parse.md b/api/docs/tough-cookie.cookie.parse.md similarity index 100% rename from docs/tough-cookie.cookie.parse.md rename to api/docs/tough-cookie.cookie.parse.md diff --git a/docs/tough-cookie.cookie.path.md b/api/docs/tough-cookie.cookie.path.md similarity index 100% rename from docs/tough-cookie.cookie.path.md rename to api/docs/tough-cookie.cookie.path.md diff --git a/docs/tough-cookie.cookie.pathisdefault.md b/api/docs/tough-cookie.cookie.pathisdefault.md similarity index 100% rename from docs/tough-cookie.cookie.pathisdefault.md rename to api/docs/tough-cookie.cookie.pathisdefault.md diff --git a/docs/tough-cookie.cookie.samesite.md b/api/docs/tough-cookie.cookie.samesite.md similarity index 100% rename from docs/tough-cookie.cookie.samesite.md rename to api/docs/tough-cookie.cookie.samesite.md diff --git a/docs/tough-cookie.cookie.secure.md b/api/docs/tough-cookie.cookie.secure.md similarity index 100% rename from docs/tough-cookie.cookie.secure.md rename to api/docs/tough-cookie.cookie.secure.md diff --git a/docs/tough-cookie.cookie.serializableproperties.md b/api/docs/tough-cookie.cookie.serializableproperties.md similarity index 100% rename from docs/tough-cookie.cookie.serializableproperties.md rename to api/docs/tough-cookie.cookie.serializableproperties.md diff --git a/docs/tough-cookie.cookie.setexpires.md b/api/docs/tough-cookie.cookie.setexpires.md similarity index 100% rename from docs/tough-cookie.cookie.setexpires.md rename to api/docs/tough-cookie.cookie.setexpires.md diff --git a/docs/tough-cookie.cookie.setmaxage.md b/api/docs/tough-cookie.cookie.setmaxage.md similarity index 100% rename from docs/tough-cookie.cookie.setmaxage.md rename to api/docs/tough-cookie.cookie.setmaxage.md diff --git a/docs/tough-cookie.cookie.tojson.md b/api/docs/tough-cookie.cookie.tojson.md similarity index 100% rename from docs/tough-cookie.cookie.tojson.md rename to api/docs/tough-cookie.cookie.tojson.md diff --git a/docs/tough-cookie.cookie.tostring.md b/api/docs/tough-cookie.cookie.tostring.md similarity index 100% rename from docs/tough-cookie.cookie.tostring.md rename to api/docs/tough-cookie.cookie.tostring.md diff --git a/docs/tough-cookie.cookie.ttl.md b/api/docs/tough-cookie.cookie.ttl.md similarity index 100% rename from docs/tough-cookie.cookie.ttl.md rename to api/docs/tough-cookie.cookie.ttl.md diff --git a/docs/tough-cookie.cookie.validate.md b/api/docs/tough-cookie.cookie.validate.md similarity index 100% rename from docs/tough-cookie.cookie.validate.md rename to api/docs/tough-cookie.cookie.validate.md diff --git a/docs/tough-cookie.cookie.value.md b/api/docs/tough-cookie.cookie.value.md similarity index 100% rename from docs/tough-cookie.cookie.value.md rename to api/docs/tough-cookie.cookie.value.md diff --git a/docs/tough-cookie.cookiecompare.md b/api/docs/tough-cookie.cookiecompare.md similarity index 100% rename from docs/tough-cookie.cookiecompare.md rename to api/docs/tough-cookie.cookiecompare.md diff --git a/docs/tough-cookie.cookiejar._constructor_.md b/api/docs/tough-cookie.cookiejar._constructor_.md similarity index 100% rename from docs/tough-cookie.cookiejar._constructor_.md rename to api/docs/tough-cookie.cookiejar._constructor_.md diff --git a/docs/tough-cookie.cookiejar.clone.md b/api/docs/tough-cookie.cookiejar.clone.md similarity index 100% rename from docs/tough-cookie.cookiejar.clone.md rename to api/docs/tough-cookie.cookiejar.clone.md diff --git a/docs/tough-cookie.cookiejar.clone_1.md b/api/docs/tough-cookie.cookiejar.clone_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.clone_1.md rename to api/docs/tough-cookie.cookiejar.clone_1.md diff --git a/docs/tough-cookie.cookiejar.clone_2.md b/api/docs/tough-cookie.cookiejar.clone_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.clone_2.md rename to api/docs/tough-cookie.cookiejar.clone_2.md diff --git a/docs/tough-cookie.cookiejar.clonesync.md b/api/docs/tough-cookie.cookiejar.clonesync.md similarity index 100% rename from docs/tough-cookie.cookiejar.clonesync.md rename to api/docs/tough-cookie.cookiejar.clonesync.md diff --git a/docs/tough-cookie.cookiejar.deserialize.md b/api/docs/tough-cookie.cookiejar.deserialize.md similarity index 100% rename from docs/tough-cookie.cookiejar.deserialize.md rename to api/docs/tough-cookie.cookiejar.deserialize.md diff --git a/docs/tough-cookie.cookiejar.deserialize_1.md b/api/docs/tough-cookie.cookiejar.deserialize_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.deserialize_1.md rename to api/docs/tough-cookie.cookiejar.deserialize_1.md diff --git a/docs/tough-cookie.cookiejar.deserialize_2.md b/api/docs/tough-cookie.cookiejar.deserialize_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.deserialize_2.md rename to api/docs/tough-cookie.cookiejar.deserialize_2.md diff --git a/docs/tough-cookie.cookiejar.deserializesync.md b/api/docs/tough-cookie.cookiejar.deserializesync.md similarity index 100% rename from docs/tough-cookie.cookiejar.deserializesync.md rename to api/docs/tough-cookie.cookiejar.deserializesync.md diff --git a/docs/tough-cookie.cookiejar.fromjson.md b/api/docs/tough-cookie.cookiejar.fromjson.md similarity index 100% rename from docs/tough-cookie.cookiejar.fromjson.md rename to api/docs/tough-cookie.cookiejar.fromjson.md diff --git a/docs/tough-cookie.cookiejar.getcookies.md b/api/docs/tough-cookie.cookiejar.getcookies.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookies.md rename to api/docs/tough-cookie.cookiejar.getcookies.md diff --git a/docs/tough-cookie.cookiejar.getcookies_1.md b/api/docs/tough-cookie.cookiejar.getcookies_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookies_1.md rename to api/docs/tough-cookie.cookiejar.getcookies_1.md diff --git a/docs/tough-cookie.cookiejar.getcookies_2.md b/api/docs/tough-cookie.cookiejar.getcookies_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookies_2.md rename to api/docs/tough-cookie.cookiejar.getcookies_2.md diff --git a/docs/tough-cookie.cookiejar.getcookies_3.md b/api/docs/tough-cookie.cookiejar.getcookies_3.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookies_3.md rename to api/docs/tough-cookie.cookiejar.getcookies_3.md diff --git a/docs/tough-cookie.cookiejar.getcookiessync.md b/api/docs/tough-cookie.cookiejar.getcookiessync.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookiessync.md rename to api/docs/tough-cookie.cookiejar.getcookiessync.md diff --git a/docs/tough-cookie.cookiejar.getcookiestring.md b/api/docs/tough-cookie.cookiejar.getcookiestring.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookiestring.md rename to api/docs/tough-cookie.cookiejar.getcookiestring.md diff --git a/docs/tough-cookie.cookiejar.getcookiestring_1.md b/api/docs/tough-cookie.cookiejar.getcookiestring_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookiestring_1.md rename to api/docs/tough-cookie.cookiejar.getcookiestring_1.md diff --git a/docs/tough-cookie.cookiejar.getcookiestring_2.md b/api/docs/tough-cookie.cookiejar.getcookiestring_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookiestring_2.md rename to api/docs/tough-cookie.cookiejar.getcookiestring_2.md diff --git a/docs/tough-cookie.cookiejar.getcookiestringsync.md b/api/docs/tough-cookie.cookiejar.getcookiestringsync.md similarity index 100% rename from docs/tough-cookie.cookiejar.getcookiestringsync.md rename to api/docs/tough-cookie.cookiejar.getcookiestringsync.md diff --git a/docs/tough-cookie.cookiejar.getsetcookiestrings.md b/api/docs/tough-cookie.cookiejar.getsetcookiestrings.md similarity index 100% rename from docs/tough-cookie.cookiejar.getsetcookiestrings.md rename to api/docs/tough-cookie.cookiejar.getsetcookiestrings.md diff --git a/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md b/api/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.getsetcookiestrings_1.md rename to api/docs/tough-cookie.cookiejar.getsetcookiestrings_1.md diff --git a/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md b/api/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.getsetcookiestrings_2.md rename to api/docs/tough-cookie.cookiejar.getsetcookiestrings_2.md diff --git a/docs/tough-cookie.cookiejar.getsetcookiestringssync.md b/api/docs/tough-cookie.cookiejar.getsetcookiestringssync.md similarity index 100% rename from docs/tough-cookie.cookiejar.getsetcookiestringssync.md rename to api/docs/tough-cookie.cookiejar.getsetcookiestringssync.md diff --git a/docs/tough-cookie.cookiejar.md b/api/docs/tough-cookie.cookiejar.md similarity index 100% rename from docs/tough-cookie.cookiejar.md rename to api/docs/tough-cookie.cookiejar.md diff --git a/docs/tough-cookie.cookiejar.prefixsecurity.md b/api/docs/tough-cookie.cookiejar.prefixsecurity.md similarity index 100% rename from docs/tough-cookie.cookiejar.prefixsecurity.md rename to api/docs/tough-cookie.cookiejar.prefixsecurity.md diff --git a/docs/tough-cookie.cookiejar.removeallcookies.md b/api/docs/tough-cookie.cookiejar.removeallcookies.md similarity index 100% rename from docs/tough-cookie.cookiejar.removeallcookies.md rename to api/docs/tough-cookie.cookiejar.removeallcookies.md diff --git a/docs/tough-cookie.cookiejar.removeallcookies_1.md b/api/docs/tough-cookie.cookiejar.removeallcookies_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.removeallcookies_1.md rename to api/docs/tough-cookie.cookiejar.removeallcookies_1.md diff --git a/docs/tough-cookie.cookiejar.removeallcookiessync.md b/api/docs/tough-cookie.cookiejar.removeallcookiessync.md similarity index 100% rename from docs/tough-cookie.cookiejar.removeallcookiessync.md rename to api/docs/tough-cookie.cookiejar.removeallcookiessync.md diff --git a/docs/tough-cookie.cookiejar.serialize.md b/api/docs/tough-cookie.cookiejar.serialize.md similarity index 100% rename from docs/tough-cookie.cookiejar.serialize.md rename to api/docs/tough-cookie.cookiejar.serialize.md diff --git a/docs/tough-cookie.cookiejar.serialize_1.md b/api/docs/tough-cookie.cookiejar.serialize_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.serialize_1.md rename to api/docs/tough-cookie.cookiejar.serialize_1.md diff --git a/docs/tough-cookie.cookiejar.serializesync.md b/api/docs/tough-cookie.cookiejar.serializesync.md similarity index 100% rename from docs/tough-cookie.cookiejar.serializesync.md rename to api/docs/tough-cookie.cookiejar.serializesync.md diff --git a/docs/tough-cookie.cookiejar.setcookie.md b/api/docs/tough-cookie.cookiejar.setcookie.md similarity index 100% rename from docs/tough-cookie.cookiejar.setcookie.md rename to api/docs/tough-cookie.cookiejar.setcookie.md diff --git a/docs/tough-cookie.cookiejar.setcookie_1.md b/api/docs/tough-cookie.cookiejar.setcookie_1.md similarity index 100% rename from docs/tough-cookie.cookiejar.setcookie_1.md rename to api/docs/tough-cookie.cookiejar.setcookie_1.md diff --git a/docs/tough-cookie.cookiejar.setcookie_2.md b/api/docs/tough-cookie.cookiejar.setcookie_2.md similarity index 100% rename from docs/tough-cookie.cookiejar.setcookie_2.md rename to api/docs/tough-cookie.cookiejar.setcookie_2.md diff --git a/docs/tough-cookie.cookiejar.setcookiesync.md b/api/docs/tough-cookie.cookiejar.setcookiesync.md similarity index 100% rename from docs/tough-cookie.cookiejar.setcookiesync.md rename to api/docs/tough-cookie.cookiejar.setcookiesync.md diff --git a/docs/tough-cookie.cookiejar.store.md b/api/docs/tough-cookie.cookiejar.store.md similarity index 100% rename from docs/tough-cookie.cookiejar.store.md rename to api/docs/tough-cookie.cookiejar.store.md diff --git a/docs/tough-cookie.cookiejar.tojson.md b/api/docs/tough-cookie.cookiejar.tojson.md similarity index 100% rename from docs/tough-cookie.cookiejar.tojson.md rename to api/docs/tough-cookie.cookiejar.tojson.md diff --git a/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md b/api/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md similarity index 100% rename from docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md rename to api/docs/tough-cookie.createcookiejaroptions.allowspecialusedomain.md diff --git a/docs/tough-cookie.createcookiejaroptions.loosemode.md b/api/docs/tough-cookie.createcookiejaroptions.loosemode.md similarity index 100% rename from docs/tough-cookie.createcookiejaroptions.loosemode.md rename to api/docs/tough-cookie.createcookiejaroptions.loosemode.md diff --git a/docs/tough-cookie.createcookiejaroptions.md b/api/docs/tough-cookie.createcookiejaroptions.md similarity index 100% rename from docs/tough-cookie.createcookiejaroptions.md rename to api/docs/tough-cookie.createcookiejaroptions.md diff --git a/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md b/api/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md similarity index 100% rename from docs/tough-cookie.createcookiejaroptions.prefixsecurity.md rename to api/docs/tough-cookie.createcookiejaroptions.prefixsecurity.md diff --git a/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md b/api/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md similarity index 100% rename from docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md rename to api/docs/tough-cookie.createcookiejaroptions.rejectpublicsuffixes.md diff --git a/docs/tough-cookie.createcookieoptions.creation.md b/api/docs/tough-cookie.createcookieoptions.creation.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.creation.md rename to api/docs/tough-cookie.createcookieoptions.creation.md diff --git a/docs/tough-cookie.createcookieoptions.domain.md b/api/docs/tough-cookie.createcookieoptions.domain.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.domain.md rename to api/docs/tough-cookie.createcookieoptions.domain.md diff --git a/docs/tough-cookie.createcookieoptions.expires.md b/api/docs/tough-cookie.createcookieoptions.expires.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.expires.md rename to api/docs/tough-cookie.createcookieoptions.expires.md diff --git a/docs/tough-cookie.createcookieoptions.extensions.md b/api/docs/tough-cookie.createcookieoptions.extensions.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.extensions.md rename to api/docs/tough-cookie.createcookieoptions.extensions.md diff --git a/docs/tough-cookie.createcookieoptions.hostonly.md b/api/docs/tough-cookie.createcookieoptions.hostonly.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.hostonly.md rename to api/docs/tough-cookie.createcookieoptions.hostonly.md diff --git a/docs/tough-cookie.createcookieoptions.httponly.md b/api/docs/tough-cookie.createcookieoptions.httponly.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.httponly.md rename to api/docs/tough-cookie.createcookieoptions.httponly.md diff --git a/docs/tough-cookie.createcookieoptions.key.md b/api/docs/tough-cookie.createcookieoptions.key.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.key.md rename to api/docs/tough-cookie.createcookieoptions.key.md diff --git a/docs/tough-cookie.createcookieoptions.lastaccessed.md b/api/docs/tough-cookie.createcookieoptions.lastaccessed.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.lastaccessed.md rename to api/docs/tough-cookie.createcookieoptions.lastaccessed.md diff --git a/docs/tough-cookie.createcookieoptions.maxage.md b/api/docs/tough-cookie.createcookieoptions.maxage.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.maxage.md rename to api/docs/tough-cookie.createcookieoptions.maxage.md diff --git a/docs/tough-cookie.createcookieoptions.md b/api/docs/tough-cookie.createcookieoptions.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.md rename to api/docs/tough-cookie.createcookieoptions.md diff --git a/docs/tough-cookie.createcookieoptions.path.md b/api/docs/tough-cookie.createcookieoptions.path.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.path.md rename to api/docs/tough-cookie.createcookieoptions.path.md diff --git a/docs/tough-cookie.createcookieoptions.pathisdefault.md b/api/docs/tough-cookie.createcookieoptions.pathisdefault.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.pathisdefault.md rename to api/docs/tough-cookie.createcookieoptions.pathisdefault.md diff --git a/docs/tough-cookie.createcookieoptions.samesite.md b/api/docs/tough-cookie.createcookieoptions.samesite.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.samesite.md rename to api/docs/tough-cookie.createcookieoptions.samesite.md diff --git a/docs/tough-cookie.createcookieoptions.secure.md b/api/docs/tough-cookie.createcookieoptions.secure.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.secure.md rename to api/docs/tough-cookie.createcookieoptions.secure.md diff --git a/docs/tough-cookie.createcookieoptions.value.md b/api/docs/tough-cookie.createcookieoptions.value.md similarity index 100% rename from docs/tough-cookie.createcookieoptions.value.md rename to api/docs/tough-cookie.createcookieoptions.value.md diff --git a/docs/tough-cookie.defaultpath.md b/api/docs/tough-cookie.defaultpath.md similarity index 100% rename from docs/tough-cookie.defaultpath.md rename to api/docs/tough-cookie.defaultpath.md diff --git a/docs/tough-cookie.domainmatch.md b/api/docs/tough-cookie.domainmatch.md similarity index 100% rename from docs/tough-cookie.domainmatch.md rename to api/docs/tough-cookie.domainmatch.md diff --git a/docs/tough-cookie.errorcallback.md b/api/docs/tough-cookie.errorcallback.md similarity index 100% rename from docs/tough-cookie.errorcallback.md rename to api/docs/tough-cookie.errorcallback.md diff --git a/docs/tough-cookie.formatdate.md b/api/docs/tough-cookie.formatdate.md similarity index 100% rename from docs/tough-cookie.formatdate.md rename to api/docs/tough-cookie.formatdate.md diff --git a/docs/tough-cookie.fromjson.md b/api/docs/tough-cookie.fromjson.md similarity index 100% rename from docs/tough-cookie.fromjson.md rename to api/docs/tough-cookie.fromjson.md diff --git a/docs/tough-cookie.getcookiesoptions.allpaths.md b/api/docs/tough-cookie.getcookiesoptions.allpaths.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.allpaths.md rename to api/docs/tough-cookie.getcookiesoptions.allpaths.md diff --git a/docs/tough-cookie.getcookiesoptions.expire.md b/api/docs/tough-cookie.getcookiesoptions.expire.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.expire.md rename to api/docs/tough-cookie.getcookiesoptions.expire.md diff --git a/docs/tough-cookie.getcookiesoptions.http.md b/api/docs/tough-cookie.getcookiesoptions.http.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.http.md rename to api/docs/tough-cookie.getcookiesoptions.http.md diff --git a/docs/tough-cookie.getcookiesoptions.md b/api/docs/tough-cookie.getcookiesoptions.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.md rename to api/docs/tough-cookie.getcookiesoptions.md diff --git a/docs/tough-cookie.getcookiesoptions.samesitecontext.md b/api/docs/tough-cookie.getcookiesoptions.samesitecontext.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.samesitecontext.md rename to api/docs/tough-cookie.getcookiesoptions.samesitecontext.md diff --git a/docs/tough-cookie.getcookiesoptions.sort.md b/api/docs/tough-cookie.getcookiesoptions.sort.md similarity index 100% rename from docs/tough-cookie.getcookiesoptions.sort.md rename to api/docs/tough-cookie.getcookiesoptions.sort.md diff --git a/docs/tough-cookie.getpublicsuffix.md b/api/docs/tough-cookie.getpublicsuffix.md similarity index 100% rename from docs/tough-cookie.getpublicsuffix.md rename to api/docs/tough-cookie.getpublicsuffix.md diff --git a/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md b/api/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md similarity index 100% rename from docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md rename to api/docs/tough-cookie.getpublicsuffixoptions.allowspecialusedomain.md diff --git a/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md b/api/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md similarity index 100% rename from docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md rename to api/docs/tough-cookie.getpublicsuffixoptions.ignoreerror.md diff --git a/docs/tough-cookie.getpublicsuffixoptions.md b/api/docs/tough-cookie.getpublicsuffixoptions.md similarity index 100% rename from docs/tough-cookie.getpublicsuffixoptions.md rename to api/docs/tough-cookie.getpublicsuffixoptions.md diff --git a/docs/tough-cookie.md b/api/docs/tough-cookie.md similarity index 100% rename from docs/tough-cookie.md rename to api/docs/tough-cookie.md diff --git a/docs/tough-cookie.memorycookiestore._constructor_.md b/api/docs/tough-cookie.memorycookiestore._constructor_.md similarity index 100% rename from docs/tough-cookie.memorycookiestore._constructor_.md rename to api/docs/tough-cookie.memorycookiestore._constructor_.md diff --git a/docs/tough-cookie.memorycookiestore.findcookie.md b/api/docs/tough-cookie.memorycookiestore.findcookie.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.findcookie.md rename to api/docs/tough-cookie.memorycookiestore.findcookie.md diff --git a/docs/tough-cookie.memorycookiestore.findcookie_1.md b/api/docs/tough-cookie.memorycookiestore.findcookie_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.findcookie_1.md rename to api/docs/tough-cookie.memorycookiestore.findcookie_1.md diff --git a/docs/tough-cookie.memorycookiestore.findcookies.md b/api/docs/tough-cookie.memorycookiestore.findcookies.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.findcookies.md rename to api/docs/tough-cookie.memorycookiestore.findcookies.md diff --git a/docs/tough-cookie.memorycookiestore.findcookies_1.md b/api/docs/tough-cookie.memorycookiestore.findcookies_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.findcookies_1.md rename to api/docs/tough-cookie.memorycookiestore.findcookies_1.md diff --git a/docs/tough-cookie.memorycookiestore.getallcookies.md b/api/docs/tough-cookie.memorycookiestore.getallcookies.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.getallcookies.md rename to api/docs/tough-cookie.memorycookiestore.getallcookies.md diff --git a/docs/tough-cookie.memorycookiestore.getallcookies_1.md b/api/docs/tough-cookie.memorycookiestore.getallcookies_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.getallcookies_1.md rename to api/docs/tough-cookie.memorycookiestore.getallcookies_1.md diff --git a/docs/tough-cookie.memorycookiestore.md b/api/docs/tough-cookie.memorycookiestore.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.md rename to api/docs/tough-cookie.memorycookiestore.md diff --git a/docs/tough-cookie.memorycookiestore.putcookie.md b/api/docs/tough-cookie.memorycookiestore.putcookie.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.putcookie.md rename to api/docs/tough-cookie.memorycookiestore.putcookie.md diff --git a/docs/tough-cookie.memorycookiestore.putcookie_1.md b/api/docs/tough-cookie.memorycookiestore.putcookie_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.putcookie_1.md rename to api/docs/tough-cookie.memorycookiestore.putcookie_1.md diff --git a/docs/tough-cookie.memorycookiestore.removeallcookies.md b/api/docs/tough-cookie.memorycookiestore.removeallcookies.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removeallcookies.md rename to api/docs/tough-cookie.memorycookiestore.removeallcookies.md diff --git a/docs/tough-cookie.memorycookiestore.removeallcookies_1.md b/api/docs/tough-cookie.memorycookiestore.removeallcookies_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removeallcookies_1.md rename to api/docs/tough-cookie.memorycookiestore.removeallcookies_1.md diff --git a/docs/tough-cookie.memorycookiestore.removecookie.md b/api/docs/tough-cookie.memorycookiestore.removecookie.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removecookie.md rename to api/docs/tough-cookie.memorycookiestore.removecookie.md diff --git a/docs/tough-cookie.memorycookiestore.removecookie_1.md b/api/docs/tough-cookie.memorycookiestore.removecookie_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removecookie_1.md rename to api/docs/tough-cookie.memorycookiestore.removecookie_1.md diff --git a/docs/tough-cookie.memorycookiestore.removecookies.md b/api/docs/tough-cookie.memorycookiestore.removecookies.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removecookies.md rename to api/docs/tough-cookie.memorycookiestore.removecookies.md diff --git a/docs/tough-cookie.memorycookiestore.removecookies_1.md b/api/docs/tough-cookie.memorycookiestore.removecookies_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.removecookies_1.md rename to api/docs/tough-cookie.memorycookiestore.removecookies_1.md diff --git a/docs/tough-cookie.memorycookiestore.synchronous.md b/api/docs/tough-cookie.memorycookiestore.synchronous.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.synchronous.md rename to api/docs/tough-cookie.memorycookiestore.synchronous.md diff --git a/docs/tough-cookie.memorycookiestore.updatecookie.md b/api/docs/tough-cookie.memorycookiestore.updatecookie.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.updatecookie.md rename to api/docs/tough-cookie.memorycookiestore.updatecookie.md diff --git a/docs/tough-cookie.memorycookiestore.updatecookie_1.md b/api/docs/tough-cookie.memorycookiestore.updatecookie_1.md similarity index 100% rename from docs/tough-cookie.memorycookiestore.updatecookie_1.md rename to api/docs/tough-cookie.memorycookiestore.updatecookie_1.md diff --git a/docs/tough-cookie.nullable.md b/api/docs/tough-cookie.nullable.md similarity index 100% rename from docs/tough-cookie.nullable.md rename to api/docs/tough-cookie.nullable.md diff --git a/docs/tough-cookie.parametererror.md b/api/docs/tough-cookie.parametererror.md similarity index 100% rename from docs/tough-cookie.parametererror.md rename to api/docs/tough-cookie.parametererror.md diff --git a/docs/tough-cookie.parse.md b/api/docs/tough-cookie.parse.md similarity index 100% rename from docs/tough-cookie.parse.md rename to api/docs/tough-cookie.parse.md diff --git a/docs/tough-cookie.parsecookieoptions.loose.md b/api/docs/tough-cookie.parsecookieoptions.loose.md similarity index 100% rename from docs/tough-cookie.parsecookieoptions.loose.md rename to api/docs/tough-cookie.parsecookieoptions.loose.md diff --git a/docs/tough-cookie.parsecookieoptions.md b/api/docs/tough-cookie.parsecookieoptions.md similarity index 100% rename from docs/tough-cookie.parsecookieoptions.md rename to api/docs/tough-cookie.parsecookieoptions.md diff --git a/docs/tough-cookie.parsedate.md b/api/docs/tough-cookie.parsedate.md similarity index 100% rename from docs/tough-cookie.parsedate.md rename to api/docs/tough-cookie.parsedate.md diff --git a/docs/tough-cookie.pathmatch.md b/api/docs/tough-cookie.pathmatch.md similarity index 100% rename from docs/tough-cookie.pathmatch.md rename to api/docs/tough-cookie.pathmatch.md diff --git a/docs/tough-cookie.permutedomain.md b/api/docs/tough-cookie.permutedomain.md similarity index 100% rename from docs/tough-cookie.permutedomain.md rename to api/docs/tough-cookie.permutedomain.md diff --git a/docs/tough-cookie.permutepath.md b/api/docs/tough-cookie.permutepath.md similarity index 100% rename from docs/tough-cookie.permutepath.md rename to api/docs/tough-cookie.permutepath.md diff --git a/docs/tough-cookie.prefixsecurityenum.md b/api/docs/tough-cookie.prefixsecurityenum.md similarity index 100% rename from docs/tough-cookie.prefixsecurityenum.md rename to api/docs/tough-cookie.prefixsecurityenum.md diff --git a/docs/tough-cookie.serializedcookie.md b/api/docs/tough-cookie.serializedcookie.md similarity index 100% rename from docs/tough-cookie.serializedcookie.md rename to api/docs/tough-cookie.serializedcookie.md diff --git a/docs/tough-cookie.serializedcookiejar.cookies.md b/api/docs/tough-cookie.serializedcookiejar.cookies.md similarity index 100% rename from docs/tough-cookie.serializedcookiejar.cookies.md rename to api/docs/tough-cookie.serializedcookiejar.cookies.md diff --git a/docs/tough-cookie.serializedcookiejar.md b/api/docs/tough-cookie.serializedcookiejar.md similarity index 100% rename from docs/tough-cookie.serializedcookiejar.md rename to api/docs/tough-cookie.serializedcookiejar.md diff --git a/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md b/api/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md similarity index 100% rename from docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md rename to api/docs/tough-cookie.serializedcookiejar.rejectpublicsuffixes.md diff --git a/docs/tough-cookie.serializedcookiejar.storetype.md b/api/docs/tough-cookie.serializedcookiejar.storetype.md similarity index 100% rename from docs/tough-cookie.serializedcookiejar.storetype.md rename to api/docs/tough-cookie.serializedcookiejar.storetype.md diff --git a/docs/tough-cookie.serializedcookiejar.version.md b/api/docs/tough-cookie.serializedcookiejar.version.md similarity index 100% rename from docs/tough-cookie.serializedcookiejar.version.md rename to api/docs/tough-cookie.serializedcookiejar.version.md diff --git a/docs/tough-cookie.setcookieoptions.http.md b/api/docs/tough-cookie.setcookieoptions.http.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.http.md rename to api/docs/tough-cookie.setcookieoptions.http.md diff --git a/docs/tough-cookie.setcookieoptions.ignoreerror.md b/api/docs/tough-cookie.setcookieoptions.ignoreerror.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.ignoreerror.md rename to api/docs/tough-cookie.setcookieoptions.ignoreerror.md diff --git a/docs/tough-cookie.setcookieoptions.loose.md b/api/docs/tough-cookie.setcookieoptions.loose.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.loose.md rename to api/docs/tough-cookie.setcookieoptions.loose.md diff --git a/docs/tough-cookie.setcookieoptions.md b/api/docs/tough-cookie.setcookieoptions.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.md rename to api/docs/tough-cookie.setcookieoptions.md diff --git a/docs/tough-cookie.setcookieoptions.now.md b/api/docs/tough-cookie.setcookieoptions.now.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.now.md rename to api/docs/tough-cookie.setcookieoptions.now.md diff --git a/docs/tough-cookie.setcookieoptions.samesitecontext.md b/api/docs/tough-cookie.setcookieoptions.samesitecontext.md similarity index 100% rename from docs/tough-cookie.setcookieoptions.samesitecontext.md rename to api/docs/tough-cookie.setcookieoptions.samesitecontext.md diff --git a/docs/tough-cookie.store._constructor_.md b/api/docs/tough-cookie.store._constructor_.md similarity index 100% rename from docs/tough-cookie.store._constructor_.md rename to api/docs/tough-cookie.store._constructor_.md diff --git a/docs/tough-cookie.store.findcookie.md b/api/docs/tough-cookie.store.findcookie.md similarity index 100% rename from docs/tough-cookie.store.findcookie.md rename to api/docs/tough-cookie.store.findcookie.md diff --git a/docs/tough-cookie.store.findcookie_1.md b/api/docs/tough-cookie.store.findcookie_1.md similarity index 100% rename from docs/tough-cookie.store.findcookie_1.md rename to api/docs/tough-cookie.store.findcookie_1.md diff --git a/docs/tough-cookie.store.findcookies.md b/api/docs/tough-cookie.store.findcookies.md similarity index 100% rename from docs/tough-cookie.store.findcookies.md rename to api/docs/tough-cookie.store.findcookies.md diff --git a/docs/tough-cookie.store.findcookies_1.md b/api/docs/tough-cookie.store.findcookies_1.md similarity index 100% rename from docs/tough-cookie.store.findcookies_1.md rename to api/docs/tough-cookie.store.findcookies_1.md diff --git a/docs/tough-cookie.store.getallcookies.md b/api/docs/tough-cookie.store.getallcookies.md similarity index 100% rename from docs/tough-cookie.store.getallcookies.md rename to api/docs/tough-cookie.store.getallcookies.md diff --git a/docs/tough-cookie.store.getallcookies_1.md b/api/docs/tough-cookie.store.getallcookies_1.md similarity index 100% rename from docs/tough-cookie.store.getallcookies_1.md rename to api/docs/tough-cookie.store.getallcookies_1.md diff --git a/docs/tough-cookie.store.md b/api/docs/tough-cookie.store.md similarity index 100% rename from docs/tough-cookie.store.md rename to api/docs/tough-cookie.store.md diff --git a/docs/tough-cookie.store.putcookie.md b/api/docs/tough-cookie.store.putcookie.md similarity index 100% rename from docs/tough-cookie.store.putcookie.md rename to api/docs/tough-cookie.store.putcookie.md diff --git a/docs/tough-cookie.store.putcookie_1.md b/api/docs/tough-cookie.store.putcookie_1.md similarity index 100% rename from docs/tough-cookie.store.putcookie_1.md rename to api/docs/tough-cookie.store.putcookie_1.md diff --git a/docs/tough-cookie.store.removeallcookies.md b/api/docs/tough-cookie.store.removeallcookies.md similarity index 100% rename from docs/tough-cookie.store.removeallcookies.md rename to api/docs/tough-cookie.store.removeallcookies.md diff --git a/docs/tough-cookie.store.removeallcookies_1.md b/api/docs/tough-cookie.store.removeallcookies_1.md similarity index 100% rename from docs/tough-cookie.store.removeallcookies_1.md rename to api/docs/tough-cookie.store.removeallcookies_1.md diff --git a/docs/tough-cookie.store.removecookie.md b/api/docs/tough-cookie.store.removecookie.md similarity index 100% rename from docs/tough-cookie.store.removecookie.md rename to api/docs/tough-cookie.store.removecookie.md diff --git a/docs/tough-cookie.store.removecookie_1.md b/api/docs/tough-cookie.store.removecookie_1.md similarity index 100% rename from docs/tough-cookie.store.removecookie_1.md rename to api/docs/tough-cookie.store.removecookie_1.md diff --git a/docs/tough-cookie.store.removecookies.md b/api/docs/tough-cookie.store.removecookies.md similarity index 100% rename from docs/tough-cookie.store.removecookies.md rename to api/docs/tough-cookie.store.removecookies.md diff --git a/docs/tough-cookie.store.removecookies_1.md b/api/docs/tough-cookie.store.removecookies_1.md similarity index 100% rename from docs/tough-cookie.store.removecookies_1.md rename to api/docs/tough-cookie.store.removecookies_1.md diff --git a/docs/tough-cookie.store.synchronous.md b/api/docs/tough-cookie.store.synchronous.md similarity index 100% rename from docs/tough-cookie.store.synchronous.md rename to api/docs/tough-cookie.store.synchronous.md diff --git a/docs/tough-cookie.store.updatecookie.md b/api/docs/tough-cookie.store.updatecookie.md similarity index 100% rename from docs/tough-cookie.store.updatecookie.md rename to api/docs/tough-cookie.store.updatecookie.md diff --git a/docs/tough-cookie.store.updatecookie_1.md b/api/docs/tough-cookie.store.updatecookie_1.md similarity index 100% rename from docs/tough-cookie.store.updatecookie_1.md rename to api/docs/tough-cookie.store.updatecookie_1.md diff --git a/docs/tough-cookie.version.md b/api/docs/tough-cookie.version.md similarity index 100% rename from docs/tough-cookie.version.md rename to api/docs/tough-cookie.version.md From 30d2734500049f60341492f4a8332441dbca9c03 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:18:44 -0400 Subject: [PATCH 06/12] Revert "chore(scripts): generate docs to /docs for GitHub Pages" This reverts commit 8750aef90fa987e9663244cf9c9bf6a41874f3e1. --- README.md | 24 +++++++----------------- package.json | 4 ++-- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index d3aae71c..fd308839 100644 --- a/README.md +++ b/README.md @@ -22,16 +22,12 @@ yarn add tough-cookie import { Cookie, CookieJar } from 'tough-cookie' // parse a `Cookie` request header -const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1' - .split(';') - .map(Cookie.parse) +const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1'.split(';').map(Cookie.parse) // generate a `Cookie` request header -const cookieHeader = reqCookies.map((cookie) => cookie.cookieString()).join(';') +const cookieHeader = reqCookies.map(cookie => cookie.cookieString()).join(';') // parse a Set-Cookie response header -const resCookie = Cookie.parse( - 'foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT', -) +const resCookie = Cookie.parse('foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT') // generate a Set-Cookie response header const setCookieHeader = cookie.toString() @@ -42,7 +38,7 @@ const matchingCookies = await cookieJar.getCookies('https://example.com/') ``` > [!IMPORTANT] -> For more detailed usage information, refer to the [API docs](https://salesforce.github.io/tough-cookie/tough-cookie.md). +> For more detailed usage information, refer to the [API docs](./api/docs/tough-cookie.md). ## RFC6265bis @@ -62,14 +58,8 @@ import { CookieJar } from 'tough-cookie' const cookieJar = new CookieJar() // uses the in-memory store by default // storing cookies with various SameSite attributes -await cookieJar.setCookie( - 'strict=authorized; SameSite=strict', - 'http://example.com/index.html', -) -await cookieJar.setCookie( - 'lax=okay; SameSite=lax', - 'http://example.com/index.html', -) +await cookieJar.setCookie('strict=authorized; SameSite=strict', 'http://example.com/index.html') +await cookieJar.setCookie('lax=okay; SameSite=lax', 'http://example.com/index.html') await cookieJar.setCookie('normal=whatever', 'http://example.com/index.html') // retrieving cookies using a SameSite context @@ -115,7 +105,7 @@ You can define this functionality by passing in the `prefixSecurity` option to ` import { CookieJar, MemoryCookieStore } from 'tough-cookie' const cookieJar = new CookieJar(new MemoryCookieStore(), { - prefixSecurity: 'silent', + prefixSecurity: 'silent' }) // this cookie will be silently ignored since the url is insecure (http) diff --git a/package.json b/package.json index 9e19d110..17bd766f 100644 --- a/package.json +++ b/package.json @@ -94,12 +94,12 @@ "scripts": { "docs": "npm run build && npm run docs:ci", "docs:ci": "npm run docs:extract -- --local && npm run docs:generate", - "docs:generate": "api-documenter markdown --input-folder ./tmp --output-folder ./docs", + "docs:generate": "api-documenter markdown --input-folder ./tmp --output-folder ./api/docs", "docs:extract": "api-extractor run --verbose", "build": "npm run clean && tsc", "clean": "rm -rf dist", "version:version-file": "genversion --template version-template.ejs --force lib/version.ts", - "version": "npm run version:version-file && npm run docs && git add ./lib/version.ts ./docs", + "version": "npm run version:version-file && npm run docs && git add ./lib/version.ts ./api/docs", "test": "npm run test:ts && npm run test:legacy", "test:ts": "jest", "test:legacy": "npm run build -- --declaration false && ./test/scripts/vows.js test/*_test.js", From 51979e716be44ed0bd37ff6033d45e41bb13a078 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:28:06 -0400 Subject: [PATCH 07/12] test(version): avoid hard-coding version in tests It doesn't add much value and makes releases more annoying. --- lib/__tests__/cookieJar.spec.ts | 3 ++- lib/__tests__/jarSerialization.spec.ts | 4 ---- lib/__tests__/version.spec.ts | 8 ++++++++ 3 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 lib/__tests__/version.spec.ts diff --git a/lib/__tests__/cookieJar.spec.ts b/lib/__tests__/cookieJar.spec.ts index 7997ad24..893f9e6a 100644 --- a/lib/__tests__/cookieJar.spec.ts +++ b/lib/__tests__/cookieJar.spec.ts @@ -34,6 +34,7 @@ import { CookieJar } from '../cookie/cookieJar' import type { SerializedCookieJar } from '../cookie/constants' import { MemoryCookieStore } from '../memstore' import { Store } from '../store' +import { version } from '../version' // ported from: // - test/api_test.js (cookie jar tests) @@ -977,7 +978,7 @@ describe('CookieJar', () => { prefixSecurity: 'silent', rejectPublicSuffixes: true, storeType: 'MemoryCookieStore', - version: 'tough-cookie@5.0.0', + version: `tough-cookie@${version}`, } expect(data).toEqual(expected) }, diff --git a/lib/__tests__/jarSerialization.spec.ts b/lib/__tests__/jarSerialization.spec.ts index 32dc733e..21b85750 100644 --- a/lib/__tests__/jarSerialization.spec.ts +++ b/lib/__tests__/jarSerialization.spec.ts @@ -36,10 +36,6 @@ import { Store } from '../store' import { version } from '../version' describe('cookieJar serialization', () => { - it('should use the expected version', () => { - expect(version).toBe('5.0.0') - }) - it('should provide the list of serialized properties available for a Cookie with `Cookie.serializableProperties`', () => { expect(Cookie.serializableProperties).toEqual([ 'key', diff --git a/lib/__tests__/version.spec.ts b/lib/__tests__/version.spec.ts new file mode 100644 index 00000000..e467f717 --- /dev/null +++ b/lib/__tests__/version.spec.ts @@ -0,0 +1,8 @@ +import { version } from '../version' + +describe('version file', () => { + it('should have a valid semver version', () => { + expect(typeof version).toBe('string') + expect(version).toMatch(/^\d+?\.\d+?\.\d+?(?:-[\w.]+?)?$/) + }) +}) From 3494d1a57f1c2bdd9a19866c8d42b4a74e9cd6cf Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:29:28 -0400 Subject: [PATCH 08/12] docs(changelog): adjust text --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a9e615..6935ba17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ # Changelog -All notable changes to this project can be found at on the [Releases](https://github.com/salesforce/tough-cookie/releases) +All notable changes to this project can be found on the [GitHub Releases](https://github.com/salesforce/tough-cookie/releases) page. From ffed4ec24bf85d8c5cd7cea321541f6843765811 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:34:27 -0400 Subject: [PATCH 09/12] ci: use --check so prettier works --- .github/workflows/integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 1aba64c1..13d1dd5c 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -25,7 +25,7 @@ jobs: - name: Run Linter run: npm run eslint - name: Run Formatter - run: npm run prettier + run: npm run prettier -- --check test: name: Test - ${{ matrix.node-version }} From 7b71e9c94f3b734d767263bacbd52415752583e7 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:34:48 -0400 Subject: [PATCH 10/12] chore(prettier): just check everything --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 17bd766f..9361e8a5 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ "cover": "jest --coverage", "lint": "eslint .", "eslint": "eslint .", - "prettier": "prettier '**/*.{json,ts,yaml,md}'", + "prettier": "prettier .", "format": "npm run eslint -- --fix" }, "//": "We only support node 18+, but v16 still works. We won't block v16 until it becomes a burden.", From efef954c3fed104c62d9e0f7ea2618fa273bb68f Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 14:35:54 -0400 Subject: [PATCH 11/12] chore(prettier): prettier fixes --- .github/dependabot.yml | 32 ++++++++++++++++---------------- .prettierignore | 1 + README.md | 22 ++++++++++++++++------ jest.config.ts | 6 +++--- 4 files changed, 36 insertions(+), 25 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f0314565..02cc680d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,30 +1,30 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "monthly" + interval: 'monthly' labels: - - "dependencies" - - "npm" - - "skip changelog" + - 'dependencies' + - 'npm' + - 'skip changelog' groups: production-dependencies: - dependency-type: "production" + dependency-type: 'production' update-types: - - "minor" - - "patch" + - 'minor' + - 'patch' dev-dependencies: - dependency-type: "development" + dependency-type: 'development' update-types: - - "minor" - - "patch" + - 'minor' + - 'patch' ignore: # We want @types/node to match the *lowest* version of node.js that we support - - dependency-name: "@types/node" + - dependency-name: '@types/node' update-types: - - "version-update:semver-major" - - "version-update:semver-minor" + - 'version-update:semver-major' + - 'version-update:semver-minor' # As a library, upgrading TypeScript and using new language features would # be a breaking change for users who have not yet upgraded their TS version - - dependency-name: "typescript" + - dependency-name: 'typescript' diff --git a/.prettierignore b/.prettierignore index ecfc81b1..96578520 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,3 @@ dist test +api diff --git a/README.md b/README.md index fd308839..f88f1d3b 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,16 @@ yarn add tough-cookie import { Cookie, CookieJar } from 'tough-cookie' // parse a `Cookie` request header -const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1'.split(';').map(Cookie.parse) +const reqCookies = 'ID=298zf09hf012fh2; csrf=u32t4o3tb3gg43; _gat=1' + .split(';') + .map(Cookie.parse) // generate a `Cookie` request header -const cookieHeader = reqCookies.map(cookie => cookie.cookieString()).join(';') +const cookieHeader = reqCookies.map((cookie) => cookie.cookieString()).join(';') // parse a Set-Cookie response header -const resCookie = Cookie.parse('foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT') +const resCookie = Cookie.parse( + 'foo=bar; Domain=example.com; Path=/; Expires=Tue, 21 Oct 2025 00:00:00 GMT', +) // generate a Set-Cookie response header const setCookieHeader = cookie.toString() @@ -58,8 +62,14 @@ import { CookieJar } from 'tough-cookie' const cookieJar = new CookieJar() // uses the in-memory store by default // storing cookies with various SameSite attributes -await cookieJar.setCookie('strict=authorized; SameSite=strict', 'http://example.com/index.html') -await cookieJar.setCookie('lax=okay; SameSite=lax', 'http://example.com/index.html') +await cookieJar.setCookie( + 'strict=authorized; SameSite=strict', + 'http://example.com/index.html', +) +await cookieJar.setCookie( + 'lax=okay; SameSite=lax', + 'http://example.com/index.html', +) await cookieJar.setCookie('normal=whatever', 'http://example.com/index.html') // retrieving cookies using a SameSite context @@ -105,7 +115,7 @@ You can define this functionality by passing in the `prefixSecurity` option to ` import { CookieJar, MemoryCookieStore } from 'tough-cookie' const cookieJar = new CookieJar(new MemoryCookieStore(), { - prefixSecurity: 'silent' + prefixSecurity: 'silent', }) // this cookie will be silently ignored since the url is insecure (http) diff --git a/jest.config.ts b/jest.config.ts index 8a2e150b..02564e7c 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -1,4 +1,4 @@ -import type { JestConfigWithTsJest } from "ts-jest"; +import type { JestConfigWithTsJest } from 'ts-jest' const config: JestConfigWithTsJest = { preset: 'ts-jest', @@ -6,8 +6,8 @@ const config: JestConfigWithTsJest = { rootDir: './lib/', testPathIgnorePatterns: ['./lib/__tests__/data/'], fakeTimers: { - enableGlobally: true - } + enableGlobally: true, + }, } export default config From 7e11360c040e4e9e901ba420e38210d4b599f716 Mon Sep 17 00:00:00 2001 From: Will Harney Date: Mon, 9 Sep 2024 15:03:38 -0400 Subject: [PATCH 12/12] ci: create workflow to publish to npm on GitHub release --- .github/workflows/publish.yaml | 45 ++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 00000000..a3821e5c --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,45 @@ +name: Publish + +on: + release: + types: [published] + +permissions: + contents: read + +jobs: + publish: + name: Publish to NPM + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: npm + - run: npm ci + - run: npm run prettier -- --check + - run: npm run lint + - run: npm run build + - run: npm run docs:ci + - name: Validate up-to-date documentation + run: | + git add --renormalize . + if (( "$(git diff HEAD --ignore-space-at-eol --ignore-cr-at-eol | wc -l)" != 0 )); then + cat << EOF >> $GITHUB_STEP_SUMMARY + ### Detected uncommitted changes + + \`\`\`shell + $(git diff HEAD) + \`\`\` + EOF + git diff HEAD + exit 1 + fi + + - run: npm test + - run: npm publish --provenance + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}