devtools-protocol 0.0.1373723 → 0.0.1376096
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.
@@ -22041,6 +22041,10 @@
|
|
22041
22041
|
"name": "scopesData",
|
22042
22042
|
"optional": true,
|
22043
22043
|
"$ref": "AttributionScopesData"
|
22044
|
+
},
|
22045
|
+
{
|
22046
|
+
"name": "maxEventLevelReports",
|
22047
|
+
"type": "integer"
|
22044
22048
|
}
|
22045
22049
|
]
|
22046
22050
|
},
|
@@ -24923,7 +24927,8 @@
|
|
24923
24927
|
"enum": [
|
24924
24928
|
"suspended",
|
24925
24929
|
"running",
|
24926
|
-
"closed"
|
24930
|
+
"closed",
|
24931
|
+
"interrupted"
|
24927
24932
|
]
|
24928
24933
|
},
|
24929
24934
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10715,6 +10715,7 @@ experimental domain Storage
|
|
10715
10715
|
SignedInt64AsBase10 destinationLimitPriority
|
10716
10716
|
AttributionReportingAggregatableDebugReportingConfig aggregatableDebugReportingConfig
|
10717
10717
|
optional AttributionScopesData scopesData
|
10718
|
+
integer maxEventLevelReports
|
10718
10719
|
|
10719
10720
|
experimental type AttributionReportingSourceRegistrationResult extends string
|
10720
10721
|
enum
|
@@ -11719,6 +11720,7 @@ experimental domain WebAudio
|
|
11719
11720
|
suspended
|
11720
11721
|
running
|
11721
11722
|
closed
|
11723
|
+
interrupted
|
11722
11724
|
|
11723
11725
|
# Enum of AudioNode types
|
11724
11726
|
type NodeType extends string
|
package/types/protocol.d.ts
CHANGED
@@ -16126,6 +16126,7 @@ export namespace Protocol {
|
|
16126
16126
|
destinationLimitPriority: SignedInt64AsBase10;
|
16127
16127
|
aggregatableDebugReportingConfig: AttributionReportingAggregatableDebugReportingConfig;
|
16128
16128
|
scopesData?: AttributionScopesData;
|
16129
|
+
maxEventLevelReports: integer;
|
16129
16130
|
}
|
16130
16131
|
|
16131
16132
|
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxScopesChannelCapacity' | 'exceedsMaxTriggerStateCardinality' | 'exceedsMaxEventStatesLimit' | 'destinationPerDayReportingLimitReached');
|
@@ -17882,7 +17883,7 @@ export namespace Protocol {
|
|
17882
17883
|
/**
|
17883
17884
|
* Enum of AudioContextState from the spec
|
17884
17885
|
*/
|
17885
|
-
export type ContextState = ('suspended' | 'running' | 'closed');
|
17886
|
+
export type ContextState = ('suspended' | 'running' | 'closed' | 'interrupted');
|
17886
17887
|
|
17887
17888
|
/**
|
17888
17889
|
* Enum of AudioNode types
|