devtools-protocol 0.0.1029622 → 0.0.1030018

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.
@@ -19311,6 +19311,17 @@
19311
19311
  }
19312
19312
  ]
19313
19313
  },
19314
+ {
19315
+ "name": "trackIndexedDBForStorageKey",
19316
+ "description": "Registers storage key to be notified when an update occurs to its IndexedDB.",
19317
+ "parameters": [
19318
+ {
19319
+ "name": "storageKey",
19320
+ "description": "Storage key.",
19321
+ "type": "string"
19322
+ }
19323
+ ]
19324
+ },
19314
19325
  {
19315
19326
  "name": "untrackCacheStorageForOrigin",
19316
19327
  "description": "Unregisters origin from receiving notifications for cache storage.",
@@ -19333,6 +19344,17 @@
19333
19344
  }
19334
19345
  ]
19335
19346
  },
19347
+ {
19348
+ "name": "untrackIndexedDBForStorageKey",
19349
+ "description": "Unregisters storage key from receiving notifications for IndexedDB.",
19350
+ "parameters": [
19351
+ {
19352
+ "name": "storageKey",
19353
+ "description": "Storage key.",
19354
+ "type": "string"
19355
+ }
19356
+ ]
19357
+ },
19336
19358
  {
19337
19359
  "name": "getTrustTokens",
19338
19360
  "description": "Returns the number of stored Trust Tokens per issuer for the\ncurrent browsing context.",
@@ -19435,6 +19457,11 @@
19435
19457
  "description": "Origin to update.",
19436
19458
  "type": "string"
19437
19459
  },
19460
+ {
19461
+ "name": "storageKey",
19462
+ "description": "Storage key to update.",
19463
+ "type": "string"
19464
+ },
19438
19465
  {
19439
19466
  "name": "databaseName",
19440
19467
  "description": "Database to update.",
@@ -19455,6 +19482,11 @@
19455
19482
  "name": "origin",
19456
19483
  "description": "Origin to update.",
19457
19484
  "type": "string"
19485
+ },
19486
+ {
19487
+ "name": "storageKey",
19488
+ "description": "Storage key to update.",
19489
+ "type": "string"
19458
19490
  }
19459
19491
  ]
19460
19492
  },
@@ -19849,7 +19881,7 @@
19849
19881
  "properties": [
19850
19882
  {
19851
19883
  "name": "exclude",
19852
- "description": "If set, causes exclusion of mathcing targets from the list.\nThe remainder of filter entries in the filter arrat are ignored.",
19884
+ "description": "If set, causes exclusion of mathcing targets from the list.",
19853
19885
  "optional": true,
19854
19886
  "type": "boolean"
19855
19887
  },
@@ -19863,7 +19895,7 @@
19863
19895
  },
19864
19896
  {
19865
19897
  "id": "TargetFilter",
19866
- "description": "If filter is not specified, the one assumed is [{type: \"browser\", exclude: true}, {}]\n(i.e. include everything but browser).",
19898
+ "description": "The entries in TargetFilter are matched sequentially against targets and\nthe first entry that matches determines if the target is included or not,\ndepending on the value of `exclude` field in the entry.\nIf filter is not specified, the one assumed is\n[{type: \"browser\", exclude: true}, {type: \"tab\", exclude: true}, {}]\n(i.e. include everything but `browser` and `tab`).",
19867
19899
  "experimental": true,
19868
19900
  "type": "array",
19869
19901
  "items": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1029622",
3
+ "version": "0.0.1030018",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -9091,6 +9091,12 @@ experimental domain Storage
9091
9091
  # Security origin.
9092
9092
  string origin
9093
9093
 
9094
+ # Registers storage key to be notified when an update occurs to its IndexedDB.
9095
+ command trackIndexedDBForStorageKey
9096
+ parameters
9097
+ # Storage key.
9098
+ string storageKey
9099
+
9094
9100
  # Unregisters origin from receiving notifications for cache storage.
9095
9101
  command untrackCacheStorageForOrigin
9096
9102
  parameters
@@ -9103,6 +9109,12 @@ experimental domain Storage
9103
9109
  # Security origin.
9104
9110
  string origin
9105
9111
 
9112
+ # Unregisters storage key from receiving notifications for IndexedDB.
9113
+ command untrackIndexedDBForStorageKey
9114
+ parameters
9115
+ # Storage key.
9116
+ string storageKey
9117
+
9106
9118
  # Returns the number of stored Trust Tokens per issuer for the
9107
9119
  # current browsing context.
9108
9120
  experimental command getTrustTokens
@@ -9150,6 +9162,8 @@ experimental domain Storage
9150
9162
  parameters
9151
9163
  # Origin to update.
9152
9164
  string origin
9165
+ # Storage key to update.
9166
+ string storageKey
9153
9167
  # Database to update.
9154
9168
  string databaseName
9155
9169
  # ObjectStore to update.
@@ -9160,6 +9174,8 @@ experimental domain Storage
9160
9174
  parameters
9161
9175
  # Origin to update.
9162
9176
  string origin
9177
+ # Storage key to update.
9178
+ string storageKey
9163
9179
 
9164
9180
  # One of the interest groups was accessed by the associated page.
9165
9181
  event interestGroupAccessed
@@ -9330,13 +9346,16 @@ domain Target
9330
9346
  experimental type FilterEntry extends object
9331
9347
  properties
9332
9348
  # If set, causes exclusion of mathcing targets from the list.
9333
- # The remainder of filter entries in the filter arrat are ignored.
9334
9349
  optional boolean exclude
9335
9350
  # If not present, matches any type.
9336
9351
  optional string type
9337
9352
 
9338
- # If filter is not specified, the one assumed is [{type: "browser", exclude: true}, {}]
9339
- # (i.e. include everything but browser).
9353
+ # The entries in TargetFilter are matched sequentially against targets and
9354
+ # the first entry that matches determines if the target is included or not,
9355
+ # depending on the value of `exclude` field in the entry.
9356
+ # If filter is not specified, the one assumed is
9357
+ # [{type: "browser", exclude: true}, {type: "tab", exclude: true}, {}]
9358
+ # (i.e. include everything but `browser` and `tab`).
9340
9359
  experimental type TargetFilter extends array of FilterEntry
9341
9360
 
9342
9361
  experimental type RemoteLocation extends object
@@ -4052,6 +4052,13 @@ export namespace ProtocolMapping {
4052
4052
  paramsType: [Protocol.Storage.TrackIndexedDBForOriginRequest];
4053
4053
  returnType: void;
4054
4054
  };
4055
+ /**
4056
+ * Registers storage key to be notified when an update occurs to its IndexedDB.
4057
+ */
4058
+ 'Storage.trackIndexedDBForStorageKey': {
4059
+ paramsType: [Protocol.Storage.TrackIndexedDBForStorageKeyRequest];
4060
+ returnType: void;
4061
+ };
4055
4062
  /**
4056
4063
  * Unregisters origin from receiving notifications for cache storage.
4057
4064
  */
@@ -4066,6 +4073,13 @@ export namespace ProtocolMapping {
4066
4073
  paramsType: [Protocol.Storage.UntrackIndexedDBForOriginRequest];
4067
4074
  returnType: void;
4068
4075
  };
4076
+ /**
4077
+ * Unregisters storage key from receiving notifications for IndexedDB.
4078
+ */
4079
+ 'Storage.untrackIndexedDBForStorageKey': {
4080
+ paramsType: [Protocol.Storage.UntrackIndexedDBForStorageKeyRequest];
4081
+ returnType: void;
4082
+ };
4069
4083
  /**
4070
4084
  * Returns the number of stored Trust Tokens per issuer for the
4071
4085
  * current browsing context.
@@ -3284,6 +3284,11 @@ export namespace ProtocolProxyApi {
3284
3284
  */
3285
3285
  trackIndexedDBForOrigin(params: Protocol.Storage.TrackIndexedDBForOriginRequest): Promise<void>;
3286
3286
 
3287
+ /**
3288
+ * Registers storage key to be notified when an update occurs to its IndexedDB.
3289
+ */
3290
+ trackIndexedDBForStorageKey(params: Protocol.Storage.TrackIndexedDBForStorageKeyRequest): Promise<void>;
3291
+
3287
3292
  /**
3288
3293
  * Unregisters origin from receiving notifications for cache storage.
3289
3294
  */
@@ -3294,6 +3299,11 @@ export namespace ProtocolProxyApi {
3294
3299
  */
3295
3300
  untrackIndexedDBForOrigin(params: Protocol.Storage.UntrackIndexedDBForOriginRequest): Promise<void>;
3296
3301
 
3302
+ /**
3303
+ * Unregisters storage key from receiving notifications for IndexedDB.
3304
+ */
3305
+ untrackIndexedDBForStorageKey(params: Protocol.Storage.UntrackIndexedDBForStorageKeyRequest): Promise<void>;
3306
+
3297
3307
  /**
3298
3308
  * Returns the number of stored Trust Tokens per issuer for the
3299
3309
  * current browsing context.
@@ -14690,6 +14690,13 @@ export namespace Protocol {
14690
14690
  origin: string;
14691
14691
  }
14692
14692
 
14693
+ export interface TrackIndexedDBForStorageKeyRequest {
14694
+ /**
14695
+ * Storage key.
14696
+ */
14697
+ storageKey: string;
14698
+ }
14699
+
14693
14700
  export interface UntrackCacheStorageForOriginRequest {
14694
14701
  /**
14695
14702
  * Security origin.
@@ -14704,6 +14711,13 @@ export namespace Protocol {
14704
14711
  origin: string;
14705
14712
  }
14706
14713
 
14714
+ export interface UntrackIndexedDBForStorageKeyRequest {
14715
+ /**
14716
+ * Storage key.
14717
+ */
14718
+ storageKey: string;
14719
+ }
14720
+
14707
14721
  export interface GetTrustTokensResponse {
14708
14722
  tokens: TrustTokens[];
14709
14723
  }
@@ -14764,6 +14778,10 @@ export namespace Protocol {
14764
14778
  * Origin to update.
14765
14779
  */
14766
14780
  origin: string;
14781
+ /**
14782
+ * Storage key to update.
14783
+ */
14784
+ storageKey: string;
14767
14785
  /**
14768
14786
  * Database to update.
14769
14787
  */
@@ -14782,6 +14800,10 @@ export namespace Protocol {
14782
14800
  * Origin to update.
14783
14801
  */
14784
14802
  origin: string;
14803
+ /**
14804
+ * Storage key to update.
14805
+ */
14806
+ storageKey: string;
14785
14807
  }
14786
14808
 
14787
14809
  /**
@@ -15051,7 +15073,6 @@ export namespace Protocol {
15051
15073
  export interface FilterEntry {
15052
15074
  /**
15053
15075
  * If set, causes exclusion of mathcing targets from the list.
15054
- * The remainder of filter entries in the filter arrat are ignored.
15055
15076
  */
15056
15077
  exclude?: boolean;
15057
15078
  /**
@@ -15061,8 +15082,12 @@ export namespace Protocol {
15061
15082
  }
15062
15083
 
15063
15084
  /**
15064
- * If filter is not specified, the one assumed is [{type: "browser", exclude: true}, {}]
15065
- * (i.e. include everything but browser).
15085
+ * The entries in TargetFilter are matched sequentially against targets and
15086
+ * the first entry that matches determines if the target is included or not,
15087
+ * depending on the value of `exclude` field in the entry.
15088
+ * If filter is not specified, the one assumed is
15089
+ * [{type: "browser", exclude: true}, {type: "tab", exclude: true}, {}]
15090
+ * (i.e. include everything but `browser` and `tab`).
15066
15091
  */
15067
15092
  export type TargetFilter = FilterEntry[];
15068
15093