devtools-protocol 0.0.1312386 → 0.0.1315554
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.
@@ -248,7 +248,8 @@
|
|
248
248
|
"errormessage",
|
249
249
|
"flowto",
|
250
250
|
"labelledby",
|
251
|
-
"owns"
|
251
|
+
"owns",
|
252
|
+
"url"
|
252
253
|
]
|
253
254
|
},
|
254
255
|
{
|
@@ -21571,7 +21572,8 @@
|
|
21571
21572
|
"destinationBothLimitsReached",
|
21572
21573
|
"reportingOriginsPerSiteLimitReached",
|
21573
21574
|
"exceedsMaxChannelCapacity",
|
21574
|
-
"exceedsMaxTriggerStateCardinality"
|
21575
|
+
"exceedsMaxTriggerStateCardinality",
|
21576
|
+
"destinationPerDayReportingLimitReached"
|
21575
21577
|
]
|
21576
21578
|
},
|
21577
21579
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -156,6 +156,7 @@ experimental domain Accessibility
|
|
156
156
|
flowto
|
157
157
|
labelledby
|
158
158
|
owns
|
159
|
+
url
|
159
160
|
|
160
161
|
# A node in the accessibility tree.
|
161
162
|
type AXNode extends object
|
@@ -10508,6 +10509,7 @@ experimental domain Storage
|
|
10508
10509
|
reportingOriginsPerSiteLimitReached
|
10509
10510
|
exceedsMaxChannelCapacity
|
10510
10511
|
exceedsMaxTriggerStateCardinality
|
10512
|
+
destinationPerDayReportingLimitReached
|
10511
10513
|
|
10512
10514
|
experimental event attributionReportingSourceRegistered
|
10513
10515
|
parameters
|
package/types/protocol.d.ts
CHANGED
@@ -2775,7 +2775,7 @@ export namespace Protocol {
|
|
2775
2775
|
* - from 'checked' to 'selected': states which apply to widgets
|
2776
2776
|
* - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
|
2777
2777
|
*/
|
2778
|
-
export type AXPropertyName = ('busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns');
|
2778
|
+
export type AXPropertyName = ('busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url');
|
2779
2779
|
|
2780
2780
|
/**
|
2781
2781
|
* A node in the accessibility tree.
|
@@ -15883,7 +15883,7 @@ export namespace Protocol {
|
|
15883
15883
|
triggerDataMatching: AttributionReportingTriggerDataMatching;
|
15884
15884
|
}
|
15885
15885
|
|
15886
|
-
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');
|
15886
|
+
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'destinationPerDayReportingLimitReached');
|
15887
15887
|
|
15888
15888
|
export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
|
15889
15889
|
|