devtools-protocol 0.0.1580600 → 0.0.1581282
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15654,8 +15654,8 @@
|
|
|
15654
15654
|
"MethodDisallowedByPreflightResponse",
|
|
15655
15655
|
"HeaderDisallowedByPreflightResponse",
|
|
15656
15656
|
"RedirectContainsCredentials",
|
|
15657
|
-
"
|
|
15658
|
-
"
|
|
15657
|
+
"InsecureLocalNetwork",
|
|
15658
|
+
"InvalidLocalNetworkAccess",
|
|
15659
15659
|
"NoCorsRedirectModeNotFollow",
|
|
15660
15660
|
"LocalNetworkAccessPermissionDenied"
|
|
15661
15661
|
]
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -339,10 +339,10 @@ domain Network
|
|
|
339
339
|
HeaderDisallowedByPreflightResponse
|
|
340
340
|
RedirectContainsCredentials
|
|
341
341
|
# Request was a private network request initiated by a non-secure context.
|
|
342
|
-
|
|
342
|
+
InsecureLocalNetwork
|
|
343
343
|
# Request carried a target IP address space property that did not match
|
|
344
344
|
# the target resource's address space.
|
|
345
|
-
|
|
345
|
+
InvalidLocalNetworkAccess
|
|
346
346
|
NoCorsRedirectModeNotFollow
|
|
347
347
|
# Request was a local network request and is denied by user permission.
|
|
348
348
|
# https://wicg.github.io/local-network-access/
|
package/types/protocol.d.ts
CHANGED
|
@@ -12505,7 +12505,7 @@ export namespace Protocol {
|
|
|
12505
12505
|
/**
|
|
12506
12506
|
* The reason why request was blocked.
|
|
12507
12507
|
*/
|
|
12508
|
-
export type CorsError = ('DisallowedByMode' | 'InvalidResponse' | 'WildcardOriginNotAllowed' | 'MissingAllowOriginHeader' | 'MultipleAllowOriginValues' | 'InvalidAllowOriginValue' | 'AllowOriginMismatch' | 'InvalidAllowCredentials' | 'CorsDisabledScheme' | 'PreflightInvalidStatus' | 'PreflightDisallowedRedirect' | 'PreflightWildcardOriginNotAllowed' | 'PreflightMissingAllowOriginHeader' | 'PreflightMultipleAllowOriginValues' | 'PreflightInvalidAllowOriginValue' | 'PreflightAllowOriginMismatch' | 'PreflightInvalidAllowCredentials' | 'PreflightMissingAllowExternal' | 'PreflightInvalidAllowExternal' | 'InvalidAllowMethodsPreflightResponse' | 'InvalidAllowHeadersPreflightResponse' | 'MethodDisallowedByPreflightResponse' | 'HeaderDisallowedByPreflightResponse' | 'RedirectContainsCredentials' | '
|
|
12508
|
+
export type CorsError = ('DisallowedByMode' | 'InvalidResponse' | 'WildcardOriginNotAllowed' | 'MissingAllowOriginHeader' | 'MultipleAllowOriginValues' | 'InvalidAllowOriginValue' | 'AllowOriginMismatch' | 'InvalidAllowCredentials' | 'CorsDisabledScheme' | 'PreflightInvalidStatus' | 'PreflightDisallowedRedirect' | 'PreflightWildcardOriginNotAllowed' | 'PreflightMissingAllowOriginHeader' | 'PreflightMultipleAllowOriginValues' | 'PreflightInvalidAllowOriginValue' | 'PreflightAllowOriginMismatch' | 'PreflightInvalidAllowCredentials' | 'PreflightMissingAllowExternal' | 'PreflightInvalidAllowExternal' | 'InvalidAllowMethodsPreflightResponse' | 'InvalidAllowHeadersPreflightResponse' | 'MethodDisallowedByPreflightResponse' | 'HeaderDisallowedByPreflightResponse' | 'RedirectContainsCredentials' | 'InsecureLocalNetwork' | 'InvalidLocalNetworkAccess' | 'NoCorsRedirectModeNotFollow' | 'LocalNetworkAccessPermissionDenied');
|
|
12509
12509
|
|
|
12510
12510
|
export interface CorsErrorStatus {
|
|
12511
12511
|
corsError: CorsError;
|