devtools-protocol 0.0.1273771 → 0.0.1279463
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.
@@ -20924,7 +20924,8 @@
|
|
20924
20924
|
"destinationGlobalLimitReached",
|
20925
20925
|
"destinationBothLimitsReached",
|
20926
20926
|
"reportingOriginsPerSiteLimitReached",
|
20927
|
-
"exceedsMaxChannelCapacity"
|
20927
|
+
"exceedsMaxChannelCapacity",
|
20928
|
+
"exceedsMaxTriggerStateCardinality"
|
20928
20929
|
]
|
20929
20930
|
},
|
20930
20931
|
{
|
@@ -21668,6 +21669,18 @@
|
|
21668
21669
|
}
|
21669
21670
|
]
|
21670
21671
|
},
|
21672
|
+
{
|
21673
|
+
"name": "sendPendingAttributionReports",
|
21674
|
+
"description": "Sends all pending Attribution Reports immediately, regardless of their\nscheduled report time.",
|
21675
|
+
"experimental": true,
|
21676
|
+
"returns": [
|
21677
|
+
{
|
21678
|
+
"name": "numSent",
|
21679
|
+
"description": "The number of reports that were sent.",
|
21680
|
+
"type": "integer"
|
21681
|
+
}
|
21682
|
+
]
|
21683
|
+
},
|
21671
21684
|
{
|
21672
21685
|
"name": "getRelatedWebsiteSets",
|
21673
21686
|
"description": "Returns the effective Related Website Sets in use by this profile for the browser\nsession. The effective Related Website Sets will not change during a browser session.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -10148,6 +10148,13 @@ experimental domain Storage
|
|
10148
10148
|
parameters
|
10149
10149
|
boolean enable
|
10150
10150
|
|
10151
|
+
# Sends all pending Attribution Reports immediately, regardless of their
|
10152
|
+
# scheduled report time.
|
10153
|
+
experimental command sendPendingAttributionReports
|
10154
|
+
returns
|
10155
|
+
# The number of reports that were sent.
|
10156
|
+
integer numSent
|
10157
|
+
|
10151
10158
|
experimental type AttributionReportingSourceType extends string
|
10152
10159
|
enum
|
10153
10160
|
navigation
|
@@ -10230,6 +10237,7 @@ experimental domain Storage
|
|
10230
10237
|
destinationBothLimitsReached
|
10231
10238
|
reportingOriginsPerSiteLimitReached
|
10232
10239
|
exceedsMaxChannelCapacity
|
10240
|
+
exceedsMaxTriggerStateCardinality
|
10233
10241
|
|
10234
10242
|
experimental event attributionReportingSourceRegistered
|
10235
10243
|
parameters
|
@@ -4392,6 +4392,14 @@ export namespace ProtocolMapping {
|
|
4392
4392
|
paramsType: [Protocol.Storage.SetAttributionReportingTrackingRequest];
|
4393
4393
|
returnType: void;
|
4394
4394
|
};
|
4395
|
+
/**
|
4396
|
+
* Sends all pending Attribution Reports immediately, regardless of their
|
4397
|
+
* scheduled report time.
|
4398
|
+
*/
|
4399
|
+
'Storage.sendPendingAttributionReports': {
|
4400
|
+
paramsType: [];
|
4401
|
+
returnType: Protocol.Storage.SendPendingAttributionReportsResponse;
|
4402
|
+
};
|
4395
4403
|
/**
|
4396
4404
|
* Returns the effective Related Website Sets in use by this profile for the browser
|
4397
4405
|
* session. The effective Related Website Sets will not change during a browser session.
|
@@ -3493,6 +3493,12 @@ export namespace ProtocolProxyApi {
|
|
3493
3493
|
*/
|
3494
3494
|
setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
|
3495
3495
|
|
3496
|
+
/**
|
3497
|
+
* Sends all pending Attribution Reports immediately, regardless of their
|
3498
|
+
* scheduled report time.
|
3499
|
+
*/
|
3500
|
+
sendPendingAttributionReports(): Promise<Protocol.Storage.SendPendingAttributionReportsResponse>;
|
3501
|
+
|
3496
3502
|
/**
|
3497
3503
|
* Returns the effective Related Website Sets in use by this profile for the browser
|
3498
3504
|
* session. The effective Related Website Sets will not change during a browser session.
|
@@ -3765,6 +3765,12 @@ export namespace ProtocolTestsProxyApi {
|
|
3765
3765
|
*/
|
3766
3766
|
setAttributionReportingTracking(params: Protocol.Storage.SetAttributionReportingTrackingRequest): Promise<void>;
|
3767
3767
|
|
3768
|
+
/**
|
3769
|
+
* Sends all pending Attribution Reports immediately, regardless of their
|
3770
|
+
* scheduled report time.
|
3771
|
+
*/
|
3772
|
+
sendPendingAttributionReports(): Promise<Protocol.Storage.SendPendingAttributionReportsResponse>;
|
3773
|
+
|
3768
3774
|
/**
|
3769
3775
|
* Returns the effective Related Website Sets in use by this profile for the browser
|
3770
3776
|
* session. The effective Related Website Sets will not change during a browser session.
|
package/types/protocol.d.ts
CHANGED
@@ -15593,7 +15593,7 @@ export namespace Protocol {
|
|
15593
15593
|
triggerDataMatching: AttributionReportingTriggerDataMatching;
|
15594
15594
|
}
|
15595
15595
|
|
15596
|
-
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
|
15596
|
+
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');
|
15597
15597
|
|
15598
15598
|
export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');
|
15599
15599
|
|
@@ -15931,6 +15931,13 @@ export namespace Protocol {
|
|
15931
15931
|
enable: boolean;
|
15932
15932
|
}
|
15933
15933
|
|
15934
|
+
export interface SendPendingAttributionReportsResponse {
|
15935
|
+
/**
|
15936
|
+
* The number of reports that were sent.
|
15937
|
+
*/
|
15938
|
+
numSent: integer;
|
15939
|
+
}
|
15940
|
+
|
15934
15941
|
export interface GetRelatedWebsiteSetsResponse {
|
15935
15942
|
sets: RelatedWebsiteSet[];
|
15936
15943
|
}
|