devtools-protocol 0.0.1465725 → 0.0.1466870

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.
@@ -22893,7 +22893,7 @@
22893
22893
  },
22894
22894
  {
22895
22895
  "name": "workletOrdinal",
22896
- "description": "If the method is called on a shared storage worklet, or as part of\na shared storage worklet script, it will have a number for the\nassociated worklet, denoting the (0-indexed) order of the worklet's\ncreation relative to all other shared storage worklets created by\ndocuments using the current storage partition.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet,\nrun, selectURL, and any other SharedStorageAccessMethod when the\nSharedStorageAccessScope is sharedStorageWorklet.\nTODO(crbug.com/401011862): Pass this only for addModule & createWorklet.",
22896
+ "description": "A number denoting the (0-based) order of the worklet's\ncreation relative to all other shared storage worklets created by\ndocuments using the current storage partition.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet.",
22897
22897
  "optional": true,
22898
22898
  "type": "integer"
22899
22899
  },
@@ -25605,7 +25605,7 @@
25605
25605
  "properties": [
25606
25606
  {
25607
25607
  "name": "recordMode",
25608
- "description": "Controls how the trace buffer stores data.",
25608
+ "description": "Controls how the trace buffer stores data. The default is `recordUntilFull`.",
25609
25609
  "experimental": true,
25610
25610
  "optional": true,
25611
25611
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1465725",
3
+ "version": "0.0.1466870",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -10838,15 +10838,10 @@ experimental domain Storage
10838
10838
  # Whether or not to set an entry for a key if that key is already present.
10839
10839
  # Present only for SharedStorageAccessMethod: set.
10840
10840
  optional boolean ignoreIfPresent
10841
- # If the method is called on a shared storage worklet, or as part of
10842
- # a shared storage worklet script, it will have a number for the
10843
- # associated worklet, denoting the (0-indexed) order of the worklet's
10841
+ # A number denoting the (0-based) order of the worklet's
10844
10842
  # creation relative to all other shared storage worklets created by
10845
10843
  # documents using the current storage partition.
10846
- # Present only for SharedStorageAccessMethods: addModule, createWorklet,
10847
- # run, selectURL, and any other SharedStorageAccessMethod when the
10848
- # SharedStorageAccessScope is sharedStorageWorklet.
10849
- # TODO(crbug.com/401011862): Pass this only for addModule & createWorklet.
10844
+ # Present only for SharedStorageAccessMethods: addModule, createWorklet.
10850
10845
  optional integer workletOrdinal
10851
10846
  # Hex representation of the DevTools token used as the TargetID for the
10852
10847
  # associated shared storage worklet.
@@ -12036,7 +12031,7 @@ domain Tracing
12036
12031
 
12037
12032
  type TraceConfig extends object
12038
12033
  properties
12039
- # Controls how the trace buffer stores data.
12034
+ # Controls how the trace buffer stores data. The default is `recordUntilFull`.
12040
12035
  experimental optional enum recordMode
12041
12036
  recordUntilFull
12042
12037
  recordContinuously
@@ -16700,15 +16700,10 @@ export namespace Protocol {
16700
16700
  */
16701
16701
  ignoreIfPresent?: boolean;
16702
16702
  /**
16703
- * If the method is called on a shared storage worklet, or as part of
16704
- * a shared storage worklet script, it will have a number for the
16705
- * associated worklet, denoting the (0-indexed) order of the worklet's
16703
+ * A number denoting the (0-based) order of the worklet's
16706
16704
  * creation relative to all other shared storage worklets created by
16707
16705
  * documents using the current storage partition.
16708
- * Present only for SharedStorageAccessMethods: addModule, createWorklet,
16709
- * run, selectURL, and any other SharedStorageAccessMethod when the
16710
- * SharedStorageAccessScope is sharedStorageWorklet.
16711
- * TODO(crbug.com/401011862): Pass this only for addModule & createWorklet.
16706
+ * Present only for SharedStorageAccessMethods: addModule, createWorklet.
16712
16707
  */
16713
16708
  workletOrdinal?: integer;
16714
16709
  /**
@@ -18197,7 +18192,7 @@ export namespace Protocol {
18197
18192
 
18198
18193
  export interface TraceConfig {
18199
18194
  /**
18200
- * Controls how the trace buffer stores data. (TraceConfigRecordMode enum)
18195
+ * Controls how the trace buffer stores data. The default is `recordUntilFull`. (TraceConfigRecordMode enum)
18201
18196
  */
18202
18197
  recordMode?: ('recordUntilFull' | 'recordContinuously' | 'recordAsMuchAsPossible' | 'echoToConsole');
18203
18198
  /**