devtools-protocol 0.0.1441961 → 0.0.1443917

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.
@@ -17900,6 +17900,7 @@
17900
17900
  "cross-origin-isolated",
17901
17901
  "deferred-fetch",
17902
17902
  "deferred-fetch-minimal",
17903
+ "device-attributes",
17903
17904
  "digital-credentials-get",
17904
17905
  "direct-sockets",
17905
17906
  "direct-sockets-private",
@@ -24742,7 +24743,7 @@
24742
24743
  },
24743
24744
  {
24744
24745
  "name": "setAutoAttach",
24745
- "description": "Controls whether to automatically attach to new targets which are considered to be related to\nthis one. When turned on, attaches to all existing related targets as well. When turned off,\nautomatically detaches from all currently attached targets.\nThis also clears all targets added by `autoAttachRelated` from the list of targets to watch\nfor creation of related targets.",
24746
+ "description": "Controls whether to automatically attach to new targets which are considered\nto be directly related to this one (for example, iframes or workers).\nWhen turned on, attaches to all existing related targets as well. When turned off,\nautomatically detaches from all currently attached targets.\nThis also clears all targets added by `autoAttachRelated` from the list of targets to watch\nfor creation of related targets.\nYou might want to call this recursively for auto-attached targets to attach\nto all available targets.",
24746
24747
  "parameters": [
24747
24748
  {
24748
24749
  "name": "autoAttach",
@@ -28089,12 +28090,8 @@
28089
28090
  },
28090
28091
  {
28091
28092
  "name": "removeService",
28092
- "description": "Removes the service respresented by |serviceId| from the peripheral with\n|address|.",
28093
+ "description": "Removes the service respresented by |serviceId| from the simulated central.",
28093
28094
  "parameters": [
28094
- {
28095
- "name": "address",
28096
- "type": "string"
28097
- },
28098
28095
  {
28099
28096
  "name": "serviceId",
28100
28097
  "type": "string"
@@ -28103,12 +28100,8 @@
28103
28100
  },
28104
28101
  {
28105
28102
  "name": "addCharacteristic",
28106
- "description": "Adds a characteristic with |characteristicUuid| and |properties| to the\nservice represented by |serviceId| in the peripheral with |address|.",
28103
+ "description": "Adds a characteristic with |characteristicUuid| and |properties| to the\nservice represented by |serviceId|.",
28107
28104
  "parameters": [
28108
- {
28109
- "name": "address",
28110
- "type": "string"
28111
- },
28112
28105
  {
28113
28106
  "name": "serviceId",
28114
28107
  "type": "string"
@@ -28132,16 +28125,8 @@
28132
28125
  },
28133
28126
  {
28134
28127
  "name": "removeCharacteristic",
28135
- "description": "Removes the characteristic respresented by |characteristicId| from the\nservice respresented by |serviceId| in the peripheral with |address|.",
28128
+ "description": "Removes the characteristic respresented by |characteristicId| from the\nsimulated central.",
28136
28129
  "parameters": [
28137
- {
28138
- "name": "address",
28139
- "type": "string"
28140
- },
28141
- {
28142
- "name": "serviceId",
28143
- "type": "string"
28144
- },
28145
28130
  {
28146
28131
  "name": "characteristicId",
28147
28132
  "type": "string"
@@ -28150,16 +28135,8 @@
28150
28135
  },
28151
28136
  {
28152
28137
  "name": "addDescriptor",
28153
- "description": "Adds a descriptor with |descriptorUuid| to the characteristic respresented\nby |characteristicId| in the service represented by |serviceId| of the\nperipheral with |address|.",
28138
+ "description": "Adds a descriptor with |descriptorUuid| to the characteristic respresented\nby |characteristicId|.",
28154
28139
  "parameters": [
28155
- {
28156
- "name": "address",
28157
- "type": "string"
28158
- },
28159
- {
28160
- "name": "serviceId",
28161
- "type": "string"
28162
- },
28163
28140
  {
28164
28141
  "name": "characteristicId",
28165
28142
  "type": "string"
@@ -28179,20 +28156,8 @@
28179
28156
  },
28180
28157
  {
28181
28158
  "name": "removeDescriptor",
28182
- "description": "Removes the descriptor with |descriptorId| from the characteristic\nrespresented by |characteristicId| in the service represented by |serviceId|\nof the peripheral with |address|.",
28159
+ "description": "Removes the descriptor with |descriptorId| from the simulated central.",
28183
28160
  "parameters": [
28184
- {
28185
- "name": "address",
28186
- "type": "string"
28187
- },
28188
- {
28189
- "name": "serviceId",
28190
- "type": "string"
28191
- },
28192
- {
28193
- "name": "characteristicId",
28194
- "type": "string"
28195
- },
28196
28161
  {
28197
28162
  "name": "descriptorId",
28198
28163
  "type": "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1441961",
3
+ "version": "0.0.1443917",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8453,6 +8453,7 @@ domain Page
8453
8453
  cross-origin-isolated
8454
8454
  deferred-fetch
8455
8455
  deferred-fetch-minimal
8456
+ device-attributes
8456
8457
  digital-credentials-get
8457
8458
  direct-sockets
8458
8459
  direct-sockets-private
@@ -11642,11 +11643,14 @@ domain Target
11642
11643
  # Deprecated.
11643
11644
  deprecated optional TargetID targetId
11644
11645
 
11645
- # Controls whether to automatically attach to new targets which are considered to be related to
11646
- # this one. When turned on, attaches to all existing related targets as well. When turned off,
11646
+ # Controls whether to automatically attach to new targets which are considered
11647
+ # to be directly related to this one (for example, iframes or workers).
11648
+ # When turned on, attaches to all existing related targets as well. When turned off,
11647
11649
  # automatically detaches from all currently attached targets.
11648
11650
  # This also clears all targets added by `autoAttachRelated` from the list of targets to watch
11649
11651
  # for creation of related targets.
11652
+ # You might want to call this recursively for auto-attached targets to attach
11653
+ # to all available targets.
11650
11654
  command setAutoAttach
11651
11655
  parameters
11652
11656
  # Whether to auto-attach to related targets.
@@ -13339,18 +13343,15 @@ experimental domain BluetoothEmulation
13339
13343
  # An identifier that uniquely represents this service.
13340
13344
  string serviceId
13341
13345
 
13342
- # Removes the service respresented by |serviceId| from the peripheral with
13343
- # |address|.
13346
+ # Removes the service respresented by |serviceId| from the simulated central.
13344
13347
  command removeService
13345
13348
  parameters
13346
- string address
13347
13349
  string serviceId
13348
13350
 
13349
13351
  # Adds a characteristic with |characteristicUuid| and |properties| to the
13350
- # service represented by |serviceId| in the peripheral with |address|.
13352
+ # service represented by |serviceId|.
13351
13353
  command addCharacteristic
13352
13354
  parameters
13353
- string address
13354
13355
  string serviceId
13355
13356
  string characteristicUuid
13356
13357
  CharacteristicProperties properties
@@ -13359,34 +13360,24 @@ experimental domain BluetoothEmulation
13359
13360
  string characteristicId
13360
13361
 
13361
13362
  # Removes the characteristic respresented by |characteristicId| from the
13362
- # service respresented by |serviceId| in the peripheral with |address|.
13363
+ # simulated central.
13363
13364
  command removeCharacteristic
13364
13365
  parameters
13365
- string address
13366
- string serviceId
13367
13366
  string characteristicId
13368
13367
 
13369
13368
  # Adds a descriptor with |descriptorUuid| to the characteristic respresented
13370
- # by |characteristicId| in the service represented by |serviceId| of the
13371
- # peripheral with |address|.
13369
+ # by |characteristicId|.
13372
13370
  command addDescriptor
13373
13371
  parameters
13374
- string address
13375
- string serviceId
13376
13372
  string characteristicId
13377
13373
  string descriptorUuid
13378
13374
  returns
13379
13375
  # An identifier that uniquely represents this descriptor.
13380
13376
  string descriptorId
13381
13377
 
13382
- # Removes the descriptor with |descriptorId| from the characteristic
13383
- # respresented by |characteristicId| in the service represented by |serviceId|
13384
- # of the peripheral with |address|.
13378
+ # Removes the descriptor with |descriptorId| from the simulated central.
13385
13379
  command removeDescriptor
13386
13380
  parameters
13387
- string address
13388
- string serviceId
13389
- string characteristicId
13390
13381
  string descriptorId
13391
13382
 
13392
13383
  # Event for when a GATT operation of |type| to the peripheral with |address|
@@ -4819,11 +4819,14 @@ export namespace ProtocolMapping {
4819
4819
  returnType: void;
4820
4820
  };
4821
4821
  /**
4822
- * Controls whether to automatically attach to new targets which are considered to be related to
4823
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
4822
+ * Controls whether to automatically attach to new targets which are considered
4823
+ * to be directly related to this one (for example, iframes or workers).
4824
+ * When turned on, attaches to all existing related targets as well. When turned off,
4824
4825
  * automatically detaches from all currently attached targets.
4825
4826
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
4826
4827
  * for creation of related targets.
4828
+ * You might want to call this recursively for auto-attached targets to attach
4829
+ * to all available targets.
4827
4830
  */
4828
4831
  'Target.setAutoAttach': {
4829
4832
  paramsType: [Protocol.Target.SetAutoAttachRequest];
@@ -5324,8 +5327,7 @@ export namespace ProtocolMapping {
5324
5327
  returnType: Protocol.BluetoothEmulation.AddServiceResponse;
5325
5328
  };
5326
5329
  /**
5327
- * Removes the service respresented by |serviceId| from the peripheral with
5328
- * |address|.
5330
+ * Removes the service respresented by |serviceId| from the simulated central.
5329
5331
  */
5330
5332
  'BluetoothEmulation.removeService': {
5331
5333
  paramsType: [Protocol.BluetoothEmulation.RemoveServiceRequest];
@@ -5333,7 +5335,7 @@ export namespace ProtocolMapping {
5333
5335
  };
5334
5336
  /**
5335
5337
  * Adds a characteristic with |characteristicUuid| and |properties| to the
5336
- * service represented by |serviceId| in the peripheral with |address|.
5338
+ * service represented by |serviceId|.
5337
5339
  */
5338
5340
  'BluetoothEmulation.addCharacteristic': {
5339
5341
  paramsType: [Protocol.BluetoothEmulation.AddCharacteristicRequest];
@@ -5341,7 +5343,7 @@ export namespace ProtocolMapping {
5341
5343
  };
5342
5344
  /**
5343
5345
  * Removes the characteristic respresented by |characteristicId| from the
5344
- * service respresented by |serviceId| in the peripheral with |address|.
5346
+ * simulated central.
5345
5347
  */
5346
5348
  'BluetoothEmulation.removeCharacteristic': {
5347
5349
  paramsType: [Protocol.BluetoothEmulation.RemoveCharacteristicRequest];
@@ -5349,17 +5351,14 @@ export namespace ProtocolMapping {
5349
5351
  };
5350
5352
  /**
5351
5353
  * Adds a descriptor with |descriptorUuid| to the characteristic respresented
5352
- * by |characteristicId| in the service represented by |serviceId| of the
5353
- * peripheral with |address|.
5354
+ * by |characteristicId|.
5354
5355
  */
5355
5356
  'BluetoothEmulation.addDescriptor': {
5356
5357
  paramsType: [Protocol.BluetoothEmulation.AddDescriptorRequest];
5357
5358
  returnType: Protocol.BluetoothEmulation.AddDescriptorResponse;
5358
5359
  };
5359
5360
  /**
5360
- * Removes the descriptor with |descriptorId| from the characteristic
5361
- * respresented by |characteristicId| in the service represented by |serviceId|
5362
- * of the peripheral with |address|.
5361
+ * Removes the descriptor with |descriptorId| from the simulated central.
5363
5362
  */
5364
5363
  'BluetoothEmulation.removeDescriptor': {
5365
5364
  paramsType: [Protocol.BluetoothEmulation.RemoveDescriptorRequest];
@@ -3902,11 +3902,14 @@ export namespace ProtocolProxyApi {
3902
3902
  sendMessageToTarget(params: Protocol.Target.SendMessageToTargetRequest): Promise<void>;
3903
3903
 
3904
3904
  /**
3905
- * Controls whether to automatically attach to new targets which are considered to be related to
3906
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
3905
+ * Controls whether to automatically attach to new targets which are considered
3906
+ * to be directly related to this one (for example, iframes or workers).
3907
+ * When turned on, attaches to all existing related targets as well. When turned off,
3907
3908
  * automatically detaches from all currently attached targets.
3908
3909
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
3909
3910
  * for creation of related targets.
3911
+ * You might want to call this recursively for auto-attached targets to attach
3912
+ * to all available targets.
3910
3913
  */
3911
3914
  setAutoAttach(params: Protocol.Target.SetAutoAttachRequest): Promise<void>;
3912
3915
 
@@ -4545,34 +4548,30 @@ export namespace ProtocolProxyApi {
4545
4548
  addService(params: Protocol.BluetoothEmulation.AddServiceRequest): Promise<Protocol.BluetoothEmulation.AddServiceResponse>;
4546
4549
 
4547
4550
  /**
4548
- * Removes the service respresented by |serviceId| from the peripheral with
4549
- * |address|.
4551
+ * Removes the service respresented by |serviceId| from the simulated central.
4550
4552
  */
4551
4553
  removeService(params: Protocol.BluetoothEmulation.RemoveServiceRequest): Promise<void>;
4552
4554
 
4553
4555
  /**
4554
4556
  * Adds a characteristic with |characteristicUuid| and |properties| to the
4555
- * service represented by |serviceId| in the peripheral with |address|.
4557
+ * service represented by |serviceId|.
4556
4558
  */
4557
4559
  addCharacteristic(params: Protocol.BluetoothEmulation.AddCharacteristicRequest): Promise<Protocol.BluetoothEmulation.AddCharacteristicResponse>;
4558
4560
 
4559
4561
  /**
4560
4562
  * Removes the characteristic respresented by |characteristicId| from the
4561
- * service respresented by |serviceId| in the peripheral with |address|.
4563
+ * simulated central.
4562
4564
  */
4563
4565
  removeCharacteristic(params: Protocol.BluetoothEmulation.RemoveCharacteristicRequest): Promise<void>;
4564
4566
 
4565
4567
  /**
4566
4568
  * Adds a descriptor with |descriptorUuid| to the characteristic respresented
4567
- * by |characteristicId| in the service represented by |serviceId| of the
4568
- * peripheral with |address|.
4569
+ * by |characteristicId|.
4569
4570
  */
4570
4571
  addDescriptor(params: Protocol.BluetoothEmulation.AddDescriptorRequest): Promise<Protocol.BluetoothEmulation.AddDescriptorResponse>;
4571
4572
 
4572
4573
  /**
4573
- * Removes the descriptor with |descriptorId| from the characteristic
4574
- * respresented by |characteristicId| in the service represented by |serviceId|
4575
- * of the peripheral with |address|.
4574
+ * Removes the descriptor with |descriptorId| from the simulated central.
4576
4575
  */
4577
4576
  removeDescriptor(params: Protocol.BluetoothEmulation.RemoveDescriptorRequest): Promise<void>;
4578
4577
 
@@ -4218,11 +4218,14 @@ export namespace ProtocolTestsProxyApi {
4218
4218
  sendMessageToTarget(params: Protocol.Target.SendMessageToTargetRequest): Promise<{id: number, result: void, sessionId: string}>;
4219
4219
 
4220
4220
  /**
4221
- * Controls whether to automatically attach to new targets which are considered to be related to
4222
- * this one. When turned on, attaches to all existing related targets as well. When turned off,
4221
+ * Controls whether to automatically attach to new targets which are considered
4222
+ * to be directly related to this one (for example, iframes or workers).
4223
+ * When turned on, attaches to all existing related targets as well. When turned off,
4223
4224
  * automatically detaches from all currently attached targets.
4224
4225
  * This also clears all targets added by `autoAttachRelated` from the list of targets to watch
4225
4226
  * for creation of related targets.
4227
+ * You might want to call this recursively for auto-attached targets to attach
4228
+ * to all available targets.
4226
4229
  */
4227
4230
  setAutoAttach(params: Protocol.Target.SetAutoAttachRequest): Promise<{id: number, result: void, sessionId: string}>;
4228
4231
 
@@ -4949,34 +4952,30 @@ export namespace ProtocolTestsProxyApi {
4949
4952
  addService(params: Protocol.BluetoothEmulation.AddServiceRequest): Promise<{id: number, result: Protocol.BluetoothEmulation.AddServiceResponse, sessionId: string}>;
4950
4953
 
4951
4954
  /**
4952
- * Removes the service respresented by |serviceId| from the peripheral with
4953
- * |address|.
4955
+ * Removes the service respresented by |serviceId| from the simulated central.
4954
4956
  */
4955
4957
  removeService(params: Protocol.BluetoothEmulation.RemoveServiceRequest): Promise<{id: number, result: void, sessionId: string}>;
4956
4958
 
4957
4959
  /**
4958
4960
  * Adds a characteristic with |characteristicUuid| and |properties| to the
4959
- * service represented by |serviceId| in the peripheral with |address|.
4961
+ * service represented by |serviceId|.
4960
4962
  */
4961
4963
  addCharacteristic(params: Protocol.BluetoothEmulation.AddCharacteristicRequest): Promise<{id: number, result: Protocol.BluetoothEmulation.AddCharacteristicResponse, sessionId: string}>;
4962
4964
 
4963
4965
  /**
4964
4966
  * Removes the characteristic respresented by |characteristicId| from the
4965
- * service respresented by |serviceId| in the peripheral with |address|.
4967
+ * simulated central.
4966
4968
  */
4967
4969
  removeCharacteristic(params: Protocol.BluetoothEmulation.RemoveCharacteristicRequest): Promise<{id: number, result: void, sessionId: string}>;
4968
4970
 
4969
4971
  /**
4970
4972
  * Adds a descriptor with |descriptorUuid| to the characteristic respresented
4971
- * by |characteristicId| in the service represented by |serviceId| of the
4972
- * peripheral with |address|.
4973
+ * by |characteristicId|.
4973
4974
  */
4974
4975
  addDescriptor(params: Protocol.BluetoothEmulation.AddDescriptorRequest): Promise<{id: number, result: Protocol.BluetoothEmulation.AddDescriptorResponse, sessionId: string}>;
4975
4976
 
4976
4977
  /**
4977
- * Removes the descriptor with |descriptorId| from the characteristic
4978
- * respresented by |characteristicId| in the service represented by |serviceId|
4979
- * of the peripheral with |address|.
4978
+ * Removes the descriptor with |descriptorId| from the simulated central.
4980
4979
  */
4981
4980
  removeDescriptor(params: Protocol.BluetoothEmulation.RemoveDescriptorRequest): Promise<{id: number, result: void, sessionId: string}>;
4982
4981
 
@@ -13844,7 +13844,7 @@ export namespace Protocol {
13844
13844
  * All Permissions Policy features. This enum should match the one defined
13845
13845
  * in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
13846
13846
  */
13847
- 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' | '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' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | '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');
13847
+ 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' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | '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');
13848
13848
 
13849
13849
  /**
13850
13850
  * Reason for a permissions policy feature to be disabled.
@@ -19605,12 +19605,10 @@ export namespace Protocol {
19605
19605
  }
19606
19606
 
19607
19607
  export interface RemoveServiceRequest {
19608
- address: string;
19609
19608
  serviceId: string;
19610
19609
  }
19611
19610
 
19612
19611
  export interface AddCharacteristicRequest {
19613
- address: string;
19614
19612
  serviceId: string;
19615
19613
  characteristicUuid: string;
19616
19614
  properties: CharacteristicProperties;
@@ -19624,14 +19622,10 @@ export namespace Protocol {
19624
19622
  }
19625
19623
 
19626
19624
  export interface RemoveCharacteristicRequest {
19627
- address: string;
19628
- serviceId: string;
19629
19625
  characteristicId: string;
19630
19626
  }
19631
19627
 
19632
19628
  export interface AddDescriptorRequest {
19633
- address: string;
19634
- serviceId: string;
19635
19629
  characteristicId: string;
19636
19630
  descriptorUuid: string;
19637
19631
  }
@@ -19644,9 +19638,6 @@ export namespace Protocol {
19644
19638
  }
19645
19639
 
19646
19640
  export interface RemoveDescriptorRequest {
19647
- address: string;
19648
- serviceId: string;
19649
- characteristicId: string;
19650
19641
  descriptorId: string;
19651
19642
  }
19652
19643