devtools-protocol 0.0.1137505 → 0.0.1138159
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.
package/json/js_protocol.json
CHANGED
@@ -2204,6 +2204,12 @@
|
|
2204
2204
|
"name": "objectId",
|
2205
2205
|
"optional": true,
|
2206
2206
|
"type": "string"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"name": "weakLocalObjectReference",
|
2210
|
+
"description": "Set if value reference met more then once during serialization. In such\ncase, value is provided only to one of the serialized values. Unique\nper value in the scope of one CDP call.",
|
2211
|
+
"optional": true,
|
2212
|
+
"type": "integer"
|
2207
2213
|
}
|
2208
2214
|
]
|
2209
2215
|
},
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -707,8 +707,6 @@ experimental domain Audits
|
|
707
707
|
# TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
|
708
708
|
InvalidHeader
|
709
709
|
InvalidRegisterTriggerHeader
|
710
|
-
# TODO(apaseltiner): Remove this issue once DevTools stops referencing it.
|
711
|
-
InvalidEligibleHeader
|
712
710
|
SourceAndTriggerHeaders
|
713
711
|
SourceIgnored
|
714
712
|
TriggerIgnored
|
package/pdl/js_protocol.pdl
CHANGED
@@ -1044,6 +1044,10 @@ domain Runtime
|
|
1044
1044
|
window
|
1045
1045
|
optional any value
|
1046
1046
|
optional string objectId
|
1047
|
+
# Set if value reference met more then once during serialization. In such
|
1048
|
+
# case, value is provided only to one of the serialized values. Unique
|
1049
|
+
# per value in the scope of one CDP call.
|
1050
|
+
optional integer weakLocalObjectReference
|
1047
1051
|
|
1048
1052
|
# Unique object identifier.
|
1049
1053
|
type RemoteObjectId extends string
|
package/types/protocol.d.ts
CHANGED
@@ -1527,6 +1527,12 @@ export namespace Protocol {
|
|
1527
1527
|
type: ('undefined' | 'null' | 'string' | 'number' | 'boolean' | 'bigint' | 'regexp' | 'date' | 'symbol' | 'array' | 'object' | 'function' | 'map' | 'set' | 'weakmap' | 'weakset' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'node' | 'window');
|
1528
1528
|
value?: any;
|
1529
1529
|
objectId?: string;
|
1530
|
+
/**
|
1531
|
+
* Set if value reference met more then once during serialization. In such
|
1532
|
+
* case, value is provided only to one of the serialized values. Unique
|
1533
|
+
* per value in the scope of one CDP call.
|
1534
|
+
*/
|
1535
|
+
weakLocalObjectReference?: integer;
|
1530
1536
|
}
|
1531
1537
|
|
1532
1538
|
/**
|
@@ -3410,7 +3416,7 @@ export namespace Protocol {
|
|
3410
3416
|
clientSecurityState?: Network.ClientSecurityState;
|
3411
3417
|
}
|
3412
3418
|
|
3413
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | '
|
3419
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport');
|
3414
3420
|
|
3415
3421
|
/**
|
3416
3422
|
* Details for issues around "Attribution Reporting API" usage.
|