devtools-protocol 0.0.1388031 → 0.0.1389614

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.
@@ -1261,7 +1261,8 @@
1261
1261
  "CorpNotSameOriginAfterDefaultedToSameOriginByCoep",
1262
1262
  "CorpNotSameOriginAfterDefaultedToSameOriginByDip",
1263
1263
  "CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip",
1264
- "CorpNotSameSite"
1264
+ "CorpNotSameSite",
1265
+ "SRIMessageSignatureMismatch"
1265
1266
  ]
1266
1267
  },
1267
1268
  {
@@ -12961,7 +12962,8 @@
12961
12962
  "corp-not-same-origin-after-defaulted-to-same-origin-by-coep",
12962
12963
  "corp-not-same-origin-after-defaulted-to-same-origin-by-dip",
12963
12964
  "corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip",
12964
- "corp-not-same-site"
12965
+ "corp-not-same-site",
12966
+ "sri-message-signature-mismatch"
12965
12967
  ]
12966
12968
  },
12967
12969
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1388031",
3
+ "version": "0.0.1389614",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -654,6 +654,7 @@ experimental domain Audits
654
654
  CorpNotSameOriginAfterDefaultedToSameOriginByDip
655
655
  CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip
656
656
  CorpNotSameSite
657
+ SRIMessageSignatureMismatch
657
658
 
658
659
  # Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
659
660
  # code. Currently only used for COEP/COOP, but may be extended to include
@@ -5991,6 +5992,7 @@ domain Network
5991
5992
  corp-not-same-origin-after-defaulted-to-same-origin-by-dip
5992
5993
  corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip
5993
5994
  corp-not-same-site
5995
+ sri-message-signature-mismatch
5994
5996
 
5995
5997
  # The reason why request was blocked.
5996
5998
  type CorsError extends string
@@ -3408,7 +3408,7 @@ export namespace Protocol {
3408
3408
  * Enum indicating the reason a response has been blocked. These reasons are
3409
3409
  * refinements of the net error BLOCKED_BY_RESPONSE.
3410
3410
  */
3411
- export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite');
3411
+ export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite' | 'SRIMessageSignatureMismatch');
3412
3412
 
3413
3413
  /**
3414
3414
  * Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
@@ -10658,7 +10658,7 @@ export namespace Protocol {
10658
10658
  /**
10659
10659
  * The reason why request was blocked.
10660
10660
  */
10661
- export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site');
10661
+ export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
10662
10662
 
10663
10663
  /**
10664
10664
  * The reason why request was blocked.