devtools-protocol 0.0.1461159 → 0.0.1462568

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.
@@ -28835,7 +28835,7 @@
28835
28835
  },
28836
28836
  {
28837
28837
  "name": "type",
28838
- "$ref": "CharacteristicOperationType"
28838
+ "$ref": "DescriptorOperationType"
28839
28839
  },
28840
28840
  {
28841
28841
  "name": "data",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1461159",
3
+ "version": "0.0.1462568",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -13667,5 +13667,5 @@ experimental domain BluetoothEmulation
13667
13667
  event descriptorOperationReceived
13668
13668
  parameters
13669
13669
  string descriptorId
13670
- CharacteristicOperationType type
13670
+ DescriptorOperationType type
13671
13671
  optional binary data
@@ -14008,7 +14008,6 @@ export namespace Protocol {
14008
14008
  /**
14009
14009
  * All Permissions Policy features. This enum should match the one defined
14010
14010
  * in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
14011
- * LINT.IfChange(PermissionsPolicyFeature)
14012
14011
  */
14013
14012
  export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
14014
14013
 
@@ -19964,7 +19963,7 @@ export namespace Protocol {
19964
19963
  */
19965
19964
  export interface DescriptorOperationReceivedEvent {
19966
19965
  descriptorId: string;
19967
- type: CharacteristicOperationType;
19966
+ type: DescriptorOperationType;
19968
19967
  data?: string;
19969
19968
  }
19970
19969
  }