Types

Link copied to clipboard

(undocumented in the protocol definition)

Link copied to clipboard

(undocumented in the protocol definition)

Link copied to clipboard
@Serializable
data class CacheStorageContentUpdated(val origin: String, val storageKey: String, val bucketId: String, val cacheName: String) : StorageEvent

A cache's contents have been modified.

Link copied to clipboard
@Serializable
data class CacheStorageListUpdated(val origin: String, val storageKey: String, val bucketId: String) : StorageEvent

A cache has been added/deleted.

Link copied to clipboard
@Serializable
data class IndexedDBContentUpdated(val origin: String, val storageKey: String, val bucketId: String, val databaseName: String, val objectStoreName: String) : StorageEvent

The origin's IndexedDB object store has been modified.

Link copied to clipboard
@Serializable
data class IndexedDBListUpdated(val origin: String, val storageKey: String, val bucketId: String) : StorageEvent

The origin's IndexedDB database list has been modified.

Link copied to clipboard
@Serializable
data class InterestGroupAccessed(val accessTime: TimeSinceEpoch, val type: InterestGroupAccessType, val ownerOrigin: String, val name: String, val componentSellerOrigin: String? = null, val bid: Double? = null, val bidCurrency: String? = null, val uniqueAuctionId: InterestGroupAuctionId? = null) : StorageEvent

One of the interest groups was accessed. Note that these events are global to all targets sharing an interest group store.

Link copied to clipboard
@Serializable
data class InterestGroupAuctionEventOccurred(val eventTime: TimeSinceEpoch, val type: InterestGroupAuctionEventType, val uniqueAuctionId: InterestGroupAuctionId, val parentAuctionId: InterestGroupAuctionId? = null, val auctionConfig: JsonObject? = null) : StorageEvent

An auction involving interest groups is taking place. These events are target-specific.

Specifies which auctions a particular network fetch may be related to, and in what role. Note that it is not ordered with respect to Network.requestWillBeSent (but will happen before loadingFinished loadingFailed).

Link copied to clipboard
@Serializable
data class SharedStorageAccessed(val accessTime: TimeSinceEpoch, val type: SharedStorageAccessType, val mainFrameId: FrameId, val ownerOrigin: String, val params: SharedStorageAccessParams) : StorageEvent

Shared storage was accessed by the associated page. The following parameters are included in all events.

Link copied to clipboard
@Serializable
data class StorageBucketCreatedOrUpdated(val bucketInfo: StorageBucketInfo) : StorageEvent

(undocumented in the protocol definition)

Link copied to clipboard
@Serializable
data class StorageBucketDeleted(val bucketId: String) : StorageEvent

(undocumented in the protocol definition)