fix: remove edits to auto-generated files
This commit is contained in:
parent
c1d510afaf
commit
b2b8e32f8c
|
|
@ -339,9 +339,6 @@ scheme.PlaywrightNewRequestParams = tObject({
|
|||
userAgent: tOptional(tString),
|
||||
ignoreHTTPSErrors: tOptional(tBoolean),
|
||||
extraHTTPHeaders: tOptional(tArray(tType('NameValue'))),
|
||||
apiRequest: tOptional(tObject({
|
||||
failOnStatusCode: tBoolean
|
||||
})),
|
||||
clientCertificates: tOptional(tArray(tObject({
|
||||
origin: tString,
|
||||
cert: tOptional(tBinary),
|
||||
|
|
|
|||
5
packages/playwright-core/types/types.d.ts
vendored
5
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -17482,11 +17482,6 @@ export interface APIRequest {
|
|||
*/
|
||||
extraHTTPHeaders?: { [key: string]: string; };
|
||||
|
||||
/**
|
||||
* An object containing an option to throw an error when API request returns status codes other than 2xx and 3xx.
|
||||
*/
|
||||
apiRequest?: {failOnStatusCode?: boolean;}
|
||||
|
||||
/**
|
||||
* Credentials for [HTTP authentication](https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication). If no
|
||||
* origin is specified, the username and password are sent to any servers upon unauthorized responses.
|
||||
|
|
|
|||
3
packages/protocol/src/channels.d.ts
vendored
3
packages/protocol/src/channels.d.ts
vendored
|
|
@ -619,9 +619,6 @@ export type PlaywrightNewRequestOptions = {
|
|||
userAgent?: string,
|
||||
ignoreHTTPSErrors?: boolean,
|
||||
extraHTTPHeaders?: NameValue[],
|
||||
apiRequest?: {
|
||||
failOnStatusCode: boolean
|
||||
},
|
||||
clientCertificates?: {
|
||||
origin: string,
|
||||
cert?: Binary,
|
||||
|
|
|
|||
Loading…
Reference in a new issue