devtools-protocol 0.0.946318 → 0.0.948846
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.
|
@@ -1450,7 +1450,12 @@
|
|
|
1450
1450
|
"AttributionSourceUntrustworthyOrigin",
|
|
1451
1451
|
"AttributionUntrustworthyOrigin",
|
|
1452
1452
|
"AttributionTriggerDataTooLarge",
|
|
1453
|
-
"AttributionEventSourceTriggerDataTooLarge"
|
|
1453
|
+
"AttributionEventSourceTriggerDataTooLarge",
|
|
1454
|
+
"InvalidAttributionSourceExpiry",
|
|
1455
|
+
"InvalidAttributionSourcePriority",
|
|
1456
|
+
"InvalidEventSourceTriggerData",
|
|
1457
|
+
"InvalidTriggerPriority",
|
|
1458
|
+
"InvalidTriggerDedupKey"
|
|
1454
1459
|
]
|
|
1455
1460
|
},
|
|
1456
1461
|
{
|
|
@@ -4202,6 +4207,16 @@
|
|
|
4202
4207
|
}
|
|
4203
4208
|
]
|
|
4204
4209
|
},
|
|
4210
|
+
{
|
|
4211
|
+
"name": "startDesktopMirroring",
|
|
4212
|
+
"description": "Starts mirroring the desktop to the sink.",
|
|
4213
|
+
"parameters": [
|
|
4214
|
+
{
|
|
4215
|
+
"name": "sinkName",
|
|
4216
|
+
"type": "string"
|
|
4217
|
+
}
|
|
4218
|
+
]
|
|
4219
|
+
},
|
|
4205
4220
|
{
|
|
4206
4221
|
"name": "startTabMirroring",
|
|
4207
4222
|
"description": "Starts mirroring the tab to the sink.",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -703,6 +703,11 @@ experimental domain Audits
|
|
|
703
703
|
AttributionUntrustworthyOrigin
|
|
704
704
|
AttributionTriggerDataTooLarge
|
|
705
705
|
AttributionEventSourceTriggerDataTooLarge
|
|
706
|
+
InvalidAttributionSourceExpiry
|
|
707
|
+
InvalidAttributionSourcePriority
|
|
708
|
+
InvalidEventSourceTriggerData
|
|
709
|
+
InvalidTriggerPriority
|
|
710
|
+
InvalidTriggerDedupKey
|
|
706
711
|
|
|
707
712
|
# Details for issues around "Attribution Reporting API" usage.
|
|
708
713
|
# Explainer: https://github.com/WICG/conversion-measurement-api
|
|
@@ -1949,6 +1954,11 @@ experimental domain Cast
|
|
|
1949
1954
|
parameters
|
|
1950
1955
|
string sinkName
|
|
1951
1956
|
|
|
1957
|
+
# Starts mirroring the desktop to the sink.
|
|
1958
|
+
command startDesktopMirroring
|
|
1959
|
+
parameters
|
|
1960
|
+
string sinkName
|
|
1961
|
+
|
|
1952
1962
|
# Starts mirroring the tab to the sink.
|
|
1953
1963
|
command startTabMirroring
|
|
1954
1964
|
parameters
|
|
@@ -1790,6 +1790,13 @@ export namespace ProtocolMapping {
|
|
|
1790
1790
|
paramsType: [Protocol.Cast.SetSinkToUseRequest];
|
|
1791
1791
|
returnType: void;
|
|
1792
1792
|
};
|
|
1793
|
+
/**
|
|
1794
|
+
* Starts mirroring the desktop to the sink.
|
|
1795
|
+
*/
|
|
1796
|
+
'Cast.startDesktopMirroring': {
|
|
1797
|
+
paramsType: [Protocol.Cast.StartDesktopMirroringRequest];
|
|
1798
|
+
returnType: void;
|
|
1799
|
+
};
|
|
1793
1800
|
/**
|
|
1794
1801
|
* Starts mirroring the tab to the sink.
|
|
1795
1802
|
*/
|
|
@@ -1114,6 +1114,11 @@ export namespace ProtocolProxyApi {
|
|
|
1114
1114
|
*/
|
|
1115
1115
|
setSinkToUse(params: Protocol.Cast.SetSinkToUseRequest): Promise<void>;
|
|
1116
1116
|
|
|
1117
|
+
/**
|
|
1118
|
+
* Starts mirroring the desktop to the sink.
|
|
1119
|
+
*/
|
|
1120
|
+
startDesktopMirroring(params: Protocol.Cast.StartDesktopMirroringRequest): Promise<void>;
|
|
1121
|
+
|
|
1117
1122
|
/**
|
|
1118
1123
|
* Starts mirroring the tab to the sink.
|
|
1119
1124
|
*/
|
package/types/protocol.d.ts
CHANGED
|
@@ -3261,7 +3261,7 @@ export namespace Protocol {
|
|
|
3261
3261
|
clientSecurityState?: Network.ClientSecurityState;
|
|
3262
3262
|
}
|
|
3263
3263
|
|
|
3264
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge');
|
|
3264
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge' | 'InvalidAttributionSourceExpiry' | 'InvalidAttributionSourcePriority' | 'InvalidEventSourceTriggerData' | 'InvalidTriggerPriority' | 'InvalidTriggerDedupKey');
|
|
3265
3265
|
|
|
3266
3266
|
/**
|
|
3267
3267
|
* Details for issues around "Attribution Reporting API" usage.
|
|
@@ -4994,6 +4994,10 @@ export namespace Protocol {
|
|
|
4994
4994
|
sinkName: string;
|
|
4995
4995
|
}
|
|
4996
4996
|
|
|
4997
|
+
export interface StartDesktopMirroringRequest {
|
|
4998
|
+
sinkName: string;
|
|
4999
|
+
}
|
|
5000
|
+
|
|
4997
5001
|
export interface StartTabMirroringRequest {
|
|
4998
5002
|
sinkName: string;
|
|
4999
5003
|
}
|