devtools-protocol 0.0.979353 → 0.0.979918

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.
@@ -1567,13 +1567,15 @@
1567
1567
  },
1568
1568
  {
1569
1569
  "name": "message",
1570
- "description": "The content of the deprecation issue (this won't be translated),\ne.g. \"window.inefficientLegacyStorageMethod will be removed in M97,\naround January 2022. Please use Web Storage or Indexed Database\ninstead. This standard was abandoned in January, 1970. See\nhttps://www.chromestatus.com/feature/5684870116278272 for more details.\"",
1570
+ "description": "The content of an untranslated deprecation issue,\ne.g. \"window.inefficientLegacyStorageMethod will be removed in M97,\naround January 2022. Please use Web Storage or Indexed Database\ninstead. This standard was abandoned in January, 1970. See\nhttps://www.chromestatus.com/feature/5684870116278272 for more details.\"",
1571
1571
  "deprecated": true,
1572
1572
  "optional": true,
1573
1573
  "type": "string"
1574
1574
  },
1575
1575
  {
1576
1576
  "name": "deprecationType",
1577
+ "description": "The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.",
1578
+ "deprecated": true,
1577
1579
  "type": "string"
1578
1580
  }
1579
1581
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.979353",
3
+ "version": "0.0.979918",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -756,13 +756,14 @@ experimental domain Audits
756
756
  properties
757
757
  optional AffectedFrame affectedFrame
758
758
  SourceCodeLocation sourceCodeLocation
759
- # The content of the deprecation issue (this won't be translated),
759
+ # The content of an untranslated deprecation issue,
760
760
  # e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
761
761
  # around January 2022. Please use Web Storage or Indexed Database
762
762
  # instead. This standard was abandoned in January, 1970. See
763
763
  # https://www.chromestatus.com/feature/5684870116278272 for more details."
764
764
  deprecated optional string message
765
- string deprecationType
765
+ # The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
766
+ deprecated string deprecationType
766
767
 
767
768
  type ClientHintIssueReason extends string
768
769
  enum
@@ -3316,13 +3316,16 @@ export namespace Protocol {
3316
3316
  affectedFrame?: AffectedFrame;
3317
3317
  sourceCodeLocation: SourceCodeLocation;
3318
3318
  /**
3319
- * The content of the deprecation issue (this won't be translated),
3319
+ * The content of an untranslated deprecation issue,
3320
3320
  * e.g. "window.inefficientLegacyStorageMethod will be removed in M97,
3321
3321
  * around January 2022. Please use Web Storage or Indexed Database
3322
3322
  * instead. This standard was abandoned in January, 1970. See
3323
3323
  * https://www.chromestatus.com/feature/5684870116278272 for more details."
3324
3324
  */
3325
3325
  message?: string;
3326
+ /**
3327
+ * The id of an untranslated deprecation issue e.g. PrefixedStorageInfo.
3328
+ */
3326
3329
  deprecationType: string;
3327
3330
  }
3328
3331