devtools-protocol 0.0.1515189 → 0.0.1515996

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.
@@ -15927,7 +15927,7 @@
15927
15927
  },
15928
15928
  {
15929
15929
  "name": "expires",
15930
- "description": "Cookie expiration date as the number of seconds since the UNIX epoch.",
15930
+ "description": "Cookie expiration date as the number of seconds since the UNIX epoch.\nThe value is set to -1 if the expiry date is not set.\nThe value can be null for values that cannot be represented in\nJSON (\u00b1Inf).",
15931
15931
  "type": "number"
15932
15932
  },
15933
15933
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1515189",
3
+ "version": "0.0.1515996",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -622,6 +622,9 @@ domain Network
622
622
  # Cookie path.
623
623
  string path
624
624
  # Cookie expiration date as the number of seconds since the UNIX epoch.
625
+ # The value is set to -1 if the expiry date is not set.
626
+ # The value can be null for values that cannot be represented in
627
+ # JSON (±Inf).
625
628
  number expires
626
629
  # Cookie size.
627
630
  integer size
@@ -1,5 +1,9 @@
1
+ // Copyright (c) 2025 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
1
5
  /**********************************************************************
2
- * Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6
+ * Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
3
7
  **********************************************************************/
4
8
 
5
9
  import Protocol from './protocol'
@@ -1,5 +1,9 @@
1
+ // Copyright (c) 2025 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
1
5
  /**********************************************************************
2
- * Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6
+ * Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
3
7
  **********************************************************************/
4
8
 
5
9
  import Protocol from './protocol'
@@ -1,5 +1,9 @@
1
+ // Copyright (c) 2025 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
1
5
  /**********************************************************************
2
- * Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6
+ * Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
3
7
  **********************************************************************/
4
8
 
5
9
  import Protocol from './protocol'
@@ -1,5 +1,9 @@
1
+ // Copyright (c) 2025 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
1
5
  /**********************************************************************
2
- * Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6
+ * Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
3
7
  **********************************************************************/
4
8
 
5
9
  /**
@@ -12744,6 +12748,9 @@ export namespace Protocol {
12744
12748
  path: string;
12745
12749
  /**
12746
12750
  * Cookie expiration date as the number of seconds since the UNIX epoch.
12751
+ * The value is set to -1 if the expiry date is not set.
12752
+ * The value can be null for values that cannot be represented in
12753
+ * JSON (±Inf).
12747
12754
  */
12748
12755
  expires: number;
12749
12756
  /**