@wdio/types
Advanced tools
Comparing version 9.1.0 to 9.1.2
@@ -6,5 +6,5 @@ import type { Hooks, ServiceEntry } from './Services.js'; | ||
export type Method = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'HEAD' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'get' | 'post' | 'put' | 'patch' | 'head' | 'delete' | 'options' | 'trace'; | ||
export interface RequestLibResponse { | ||
export interface RequestLibResponse<Body = any> { | ||
statusCode: number; | ||
body?: any; | ||
body?: Body; | ||
rawBody?: Buffer; | ||
@@ -137,3 +137,3 @@ } | ||
} | ||
export type SauceRegions = 'us' | 'eu' | 'apac' | 'us-west-1' | 'us-east-4' | 'eu-central-1' | 'apac-southeast-1' | 'staging'; | ||
export type SauceRegions = 'us' | 'eu' | 'us-west-1' | 'us-east-4' | 'eu-central-1' | 'staging'; | ||
export interface WebdriverIO extends WebDriver, Pick<Hooks, 'onReload' | 'beforeCommand' | 'afterCommand'> { | ||
@@ -140,0 +140,0 @@ /** |
{ | ||
"name": "@wdio/types", | ||
"version": "9.1.0", | ||
"version": "9.1.2", | ||
"description": "Utility package providing type information for a variety of WebdriverIO interfaces", | ||
@@ -37,3 +37,3 @@ "author": "Christian Bromann <mail@bromann.dev>", | ||
}, | ||
"gitHead": "e6b005f5a150c335a105cfc2e386d43ac526adac" | ||
"gitHead": "e009b5102f9f98b99fa62df870ce7f3f5bc1b99a" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
155089