diff --git a/dist/dart/openapi-3.0.yaml b/dist/dart/openapi-3.0.yaml index 2d6ddb2..e2b3c10 100644 --- a/dist/dart/openapi-3.0.yaml +++ b/dist/dart/openapi-3.0.yaml @@ -17,10 +17,15 @@ components: name: ct0 type: apiKey CsrfToken: - description: document.cookie.split('; ').find(row => row.startsWith('ct0=')); + description: '' in: header name: x-csrf-token type: apiKey + GuestToken: + description: document.cookie.split('; ').find(row => row.startsWith('gt=')); + in: header + name: x-guest-token + type: apiKey info: contact: email: yuki@yuki0311.com diff --git a/dist/docs/openapi-3.0.yaml b/dist/docs/openapi-3.0.yaml index 17048a3..8ddff65 100644 --- a/dist/docs/openapi-3.0.yaml +++ b/dist/docs/openapi-3.0.yaml @@ -31,10 +31,15 @@ components: name: ct0 type: apiKey CsrfToken: - description: document.cookie.split('; ').find(row => row.startsWith('ct0=')); + description: '' in: header name: x-csrf-token type: apiKey + GuestToken: + description: document.cookie.split('; ').find(row => row.startsWith('gt=')); + in: header + name: x-guest-token + type: apiKey UserAgent: description: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 diff --git a/dist/test/openapi-3.0.yaml b/dist/test/openapi-3.0.yaml index 17048a3..8ddff65 100644 --- a/dist/test/openapi-3.0.yaml +++ b/dist/test/openapi-3.0.yaml @@ -31,10 +31,15 @@ components: name: ct0 type: apiKey CsrfToken: - description: document.cookie.split('; ').find(row => row.startsWith('ct0=')); + description: '' in: header name: x-csrf-token type: apiKey + GuestToken: + description: document.cookie.split('; ').find(row => row.startsWith('gt=')); + in: header + name: x-guest-token + type: apiKey UserAgent: description: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 diff --git a/dist/typescript/openapi-3.0.yaml b/dist/typescript/openapi-3.0.yaml index 17048a3..8ddff65 100644 --- a/dist/typescript/openapi-3.0.yaml +++ b/dist/typescript/openapi-3.0.yaml @@ -31,10 +31,15 @@ components: name: ct0 type: apiKey CsrfToken: - description: document.cookie.split('; ').find(row => row.startsWith('ct0=')); + description: '' in: header name: x-csrf-token type: apiKey + GuestToken: + description: document.cookie.split('; ').find(row => row.startsWith('gt=')); + in: header + name: x-guest-token + type: apiKey UserAgent: description: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 diff --git a/src/openapi/openapi-3.0.yaml b/src/openapi/openapi-3.0.yaml index 326eacf..fa462ee 100644 --- a/src/openapi/openapi-3.0.yaml +++ b/src/openapi/openapi-3.0.yaml @@ -22,7 +22,7 @@ components: type: apiKey in: header name: x-csrf-token - description: "document.cookie.split('; ').find(row => row.startsWith('ct0='));" + description: "" CookieCt0: type: apiKey @@ -30,6 +30,12 @@ components: name: ct0 description: "document.cookie.split('; ').find(row => row.startsWith('ct0='));" + GuestToken: + type: apiKey + in: header + name: x-guest-token + description: "document.cookie.split('; ').find(row => row.startsWith('gt='));" + CookieAuthToken: type: apiKey in: cookie