devtools-protocol 0.0.1137505 → 0.0.1137730
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 +6 -0
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +4 -0
- package/types/protocol.d.ts +6 -0
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/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
|
/**
|