devtools-protocol 0.0.937139 → 0.0.938446
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.
|
@@ -10483,8 +10483,8 @@
|
|
|
10483
10483
|
},
|
|
10484
10484
|
{
|
|
10485
10485
|
"name": "timestamp",
|
|
10486
|
-
"description": "Issuance date.",
|
|
10487
|
-
"
|
|
10486
|
+
"description": "Issuance date. Unlike TimeSinceEpoch, this contains the number of\nmilliseconds since January 1, 1970, UTC, not the number of seconds.",
|
|
10487
|
+
"type": "number"
|
|
10488
10488
|
},
|
|
10489
10489
|
{
|
|
10490
10490
|
"name": "hashAlgorithm",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -4784,8 +4784,9 @@ domain Network
|
|
|
4784
4784
|
string logDescription
|
|
4785
4785
|
# Log ID.
|
|
4786
4786
|
string logId
|
|
4787
|
-
# Issuance date.
|
|
4788
|
-
|
|
4787
|
+
# Issuance date. Unlike TimeSinceEpoch, this contains the number of
|
|
4788
|
+
# milliseconds since January 1, 1970, UTC, not the number of seconds.
|
|
4789
|
+
number timestamp
|
|
4789
4790
|
# Hash algorithm.
|
|
4790
4791
|
string hashAlgorithm
|
|
4791
4792
|
# Signature algorithm.
|
package/types/protocol.d.ts
CHANGED
|
@@ -9092,9 +9092,10 @@ export namespace Protocol {
|
|
|
9092
9092
|
*/
|
|
9093
9093
|
logId: string;
|
|
9094
9094
|
/**
|
|
9095
|
-
* Issuance date.
|
|
9095
|
+
* Issuance date. Unlike TimeSinceEpoch, this contains the number of
|
|
9096
|
+
* milliseconds since January 1, 1970, UTC, not the number of seconds.
|
|
9096
9097
|
*/
|
|
9097
|
-
timestamp:
|
|
9098
|
+
timestamp: number;
|
|
9098
9099
|
/**
|
|
9099
9100
|
* Hash algorithm.
|
|
9100
9101
|
*/
|