devtools-protocol 0.0.1354347 → 0.0.1356896
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.
@@ -1066,7 +1066,9 @@
|
|
1066
1066
|
"WarnAttributeValueExceedsMaxSize",
|
1067
1067
|
"WarnDomainNonASCII",
|
1068
1068
|
"WarnThirdPartyPhaseout",
|
1069
|
-
"WarnCrossSiteRedirectDowngradeChangesInclusion"
|
1069
|
+
"WarnCrossSiteRedirectDowngradeChangesInclusion",
|
1070
|
+
"WarnDeprecationTrialMetadata",
|
1071
|
+
"WarnThirdPartyCookieHeuristic"
|
1070
1072
|
]
|
1071
1073
|
},
|
1072
1074
|
{
|
@@ -9166,7 +9168,6 @@
|
|
9166
9168
|
"gyroscope",
|
9167
9169
|
"linear-acceleration",
|
9168
9170
|
"magnetometer",
|
9169
|
-
"proximity",
|
9170
9171
|
"relative-orientation"
|
9171
9172
|
]
|
9172
9173
|
},
|
@@ -16940,7 +16941,8 @@
|
|
16940
16941
|
},
|
16941
16942
|
{
|
16942
16943
|
"name": "setShowWebVitals",
|
16943
|
-
"description": "
|
16944
|
+
"description": "Deprecated, no longer has any effect.",
|
16945
|
+
"deprecated": true,
|
16944
16946
|
"parameters": [
|
16945
16947
|
{
|
16946
16948
|
"name": "show",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -532,6 +532,8 @@ experimental domain Audits
|
|
532
532
|
WarnDomainNonASCII
|
533
533
|
WarnThirdPartyPhaseout
|
534
534
|
WarnCrossSiteRedirectDowngradeChangesInclusion
|
535
|
+
WarnDeprecationTrialMetadata
|
536
|
+
WarnThirdPartyCookieHeuristic
|
535
537
|
|
536
538
|
type CookieOperation extends string
|
537
539
|
enum
|
@@ -4221,7 +4223,6 @@ domain Emulation
|
|
4221
4223
|
gyroscope
|
4222
4224
|
linear-acceleration
|
4223
4225
|
magnetometer
|
4224
|
-
proximity
|
4225
4226
|
relative-orientation
|
4226
4227
|
|
4227
4228
|
experimental type SensorMetadata extends object
|
@@ -7924,8 +7925,8 @@ experimental domain Overlay
|
|
7924
7925
|
# True for showing hit-test borders
|
7925
7926
|
boolean show
|
7926
7927
|
|
7927
|
-
#
|
7928
|
-
command setShowWebVitals
|
7928
|
+
# Deprecated, no longer has any effect.
|
7929
|
+
deprecated command setShowWebVitals
|
7929
7930
|
parameters
|
7930
7931
|
boolean show
|
7931
7932
|
|
@@ -3705,7 +3705,7 @@ export namespace ProtocolMapping {
|
|
3705
3705
|
returnType: void;
|
3706
3706
|
};
|
3707
3707
|
/**
|
3708
|
-
*
|
3708
|
+
* Deprecated, no longer has any effect.
|
3709
3709
|
*/
|
3710
3710
|
'Overlay.setShowWebVitals': {
|
3711
3711
|
paramsType: [Protocol.Overlay.SetShowWebVitalsRequest];
|
@@ -2829,7 +2829,7 @@ export namespace ProtocolProxyApi {
|
|
2829
2829
|
setShowHitTestBorders(params: Protocol.Overlay.SetShowHitTestBordersRequest): Promise<void>;
|
2830
2830
|
|
2831
2831
|
/**
|
2832
|
-
*
|
2832
|
+
* Deprecated, no longer has any effect.
|
2833
2833
|
*/
|
2834
2834
|
setShowWebVitals(params: Protocol.Overlay.SetShowWebVitalsRequest): Promise<void>;
|
2835
2835
|
|
@@ -3033,7 +3033,7 @@ export namespace ProtocolTestsProxyApi {
|
|
3033
3033
|
setShowHitTestBorders(params: Protocol.Overlay.SetShowHitTestBordersRequest): Promise<{id: number, result: void, sessionId: string}>;
|
3034
3034
|
|
3035
3035
|
/**
|
3036
|
-
*
|
3036
|
+
* Deprecated, no longer has any effect.
|
3037
3037
|
*/
|
3038
3038
|
setShowWebVitals(params: Protocol.Overlay.SetShowWebVitalsRequest): Promise<{id: number, result: void, sessionId: string}>;
|
3039
3039
|
|
package/types/protocol.d.ts
CHANGED
@@ -3309,7 +3309,7 @@ export namespace Protocol {
|
|
3309
3309
|
|
3310
3310
|
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout');
|
3311
3311
|
|
3312
|
-
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout' | 'WarnCrossSiteRedirectDowngradeChangesInclusion');
|
3312
|
+
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout' | 'WarnCrossSiteRedirectDowngradeChangesInclusion' | 'WarnDeprecationTrialMetadata' | 'WarnThirdPartyCookieHeuristic');
|
3313
3313
|
|
3314
3314
|
export type CookieOperation = ('SetCookie' | 'ReadCookie');
|
3315
3315
|
|
@@ -8235,7 +8235,7 @@ export namespace Protocol {
|
|
8235
8235
|
* Used to specify sensor types to emulate.
|
8236
8236
|
* See https://w3c.github.io/sensors/#automation for more information.
|
8237
8237
|
*/
|
8238
|
-
export type SensorType = ('absolute-orientation' | 'accelerometer' | 'ambient-light' | 'gravity' | 'gyroscope' | 'linear-acceleration' | 'magnetometer' | '
|
8238
|
+
export type SensorType = ('absolute-orientation' | 'accelerometer' | 'ambient-light' | 'gravity' | 'gyroscope' | 'linear-acceleration' | 'magnetometer' | 'relative-orientation');
|
8239
8239
|
|
8240
8240
|
export interface SensorMetadata {
|
8241
8241
|
available?: boolean;
|