devtools-protocol 0.0.1510116 → 0.0.1512837
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.
- package/json/browser_protocol.json +8 -1
- package/package.json +1 -1
- package/pdl/domains/PWA.pdl +2 -1
- package/pdl/domains/Page.pdl +1 -0
- package/pdl/domains/Preload.pdl +3 -0
- package/types/protocol-mapping.d.ts +2 -1
- package/types/protocol-proxy-api.d.ts +2 -1
- package/types/protocol-tests-proxy-api.d.ts +2 -1
- package/types/protocol.d.ts +6 -1
@@ -20086,7 +20086,7 @@
|
|
20086
20086
|
},
|
20087
20087
|
{
|
20088
20088
|
"name": "install",
|
20089
|
-
"description": "Installs the given manifest identity, optionally using the given installUrlOrBundleUrl\n\nIWA-specific install description:\nmanifestId corresponds to isolated-app:// + web_package::SignedWebBundleId\n\nFile installation mode:\nThe installUrlOrBundleUrl can be either file:// or http(s):// pointing\nto a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to\nThe .swbn file's signing key.\n\nDev proxy installation mode:\ninstallUrlOrBundleUrl must be http(s):// that serves dev mode IWA.\nweb_package::SignedWebBundleId must be of type dev proxy.\n\nThe advantage of dev proxy mode is that all changes to IWA\nautomatically will be reflected in the running app without\nreinstallation.\n\nTo generate bundle id for proxy mode:\n1. Generate 32 random bytes.\n2. Add a specific suffix
|
20089
|
+
"description": "Installs the given manifest identity, optionally using the given installUrlOrBundleUrl\n\nIWA-specific install description:\nmanifestId corresponds to isolated-app:// + web_package::SignedWebBundleId\n\nFile installation mode:\nThe installUrlOrBundleUrl can be either file:// or http(s):// pointing\nto a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to\nThe .swbn file's signing key.\n\nDev proxy installation mode:\ninstallUrlOrBundleUrl must be http(s):// that serves dev mode IWA.\nweb_package::SignedWebBundleId must be of type dev proxy.\n\nThe advantage of dev proxy mode is that all changes to IWA\nautomatically will be reflected in the running app without\nreinstallation.\n\nTo generate bundle id for proxy mode:\n1. Generate 32 random bytes.\n2. Add a specific suffix at the end following the documentation\n https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix\n3. Encode the entire sequence using Base32 without padding.\n\nIf Chrome is not in IWA dev\nmode, the installation will fail, regardless of the state of the allowlist.",
|
20090
20090
|
"parameters": [
|
20091
20091
|
{
|
20092
20092
|
"name": "manifestId",
|
@@ -20374,6 +20374,7 @@
|
|
20374
20374
|
"digital-credentials-create",
|
20375
20375
|
"digital-credentials-get",
|
20376
20376
|
"direct-sockets",
|
20377
|
+
"direct-sockets-multicast",
|
20377
20378
|
"direct-sockets-private",
|
20378
20379
|
"display-capture",
|
20379
20380
|
"document-domain",
|
@@ -24020,6 +24021,12 @@
|
|
24020
24021
|
"deprecated": true,
|
24021
24022
|
"optional": true,
|
24022
24023
|
"type": "string"
|
24024
|
+
},
|
24025
|
+
{
|
24026
|
+
"name": "tag",
|
24027
|
+
"description": "For more details, see:\nhttps://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md",
|
24028
|
+
"optional": true,
|
24029
|
+
"type": "string"
|
24023
24030
|
}
|
24024
24031
|
]
|
24025
24032
|
},
|
package/package.json
CHANGED
package/pdl/domains/PWA.pdl
CHANGED
@@ -53,7 +53,8 @@ experimental domain PWA
|
|
53
53
|
#
|
54
54
|
# To generate bundle id for proxy mode:
|
55
55
|
# 1. Generate 32 random bytes.
|
56
|
-
# 2. Add a specific suffix
|
56
|
+
# 2. Add a specific suffix at the end following the documentation
|
57
|
+
# https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
|
57
58
|
# 3. Encode the entire sequence using Base32 without padding.
|
58
59
|
#
|
59
60
|
# If Chrome is not in IWA dev
|
package/pdl/domains/Page.pdl
CHANGED
package/pdl/domains/Preload.pdl
CHANGED
@@ -40,6 +40,9 @@ experimental domain Preload
|
|
40
40
|
optional RuleSetErrorType errorType
|
41
41
|
# TODO(https://crbug.com/1425354): Replace this property with structured error.
|
42
42
|
deprecated optional string errorMessage
|
43
|
+
# For more details, see:
|
44
|
+
# https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
|
45
|
+
optional string tag
|
43
46
|
|
44
47
|
type RuleSetErrorType extends string
|
45
48
|
enum
|
@@ -4587,7 +4587,8 @@ export namespace ProtocolMapping {
|
|
4587
4587
|
*
|
4588
4588
|
* To generate bundle id for proxy mode:
|
4589
4589
|
* 1. Generate 32 random bytes.
|
4590
|
-
* 2. Add a specific suffix
|
4590
|
+
* 2. Add a specific suffix at the end following the documentation
|
4591
|
+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
|
4591
4592
|
* 3. Encode the entire sequence using Base32 without padding.
|
4592
4593
|
*
|
4593
4594
|
* If Chrome is not in IWA dev
|
@@ -3630,7 +3630,8 @@ export namespace ProtocolProxyApi {
|
|
3630
3630
|
*
|
3631
3631
|
* To generate bundle id for proxy mode:
|
3632
3632
|
* 1. Generate 32 random bytes.
|
3633
|
-
* 2. Add a specific suffix
|
3633
|
+
* 2. Add a specific suffix at the end following the documentation
|
3634
|
+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
|
3634
3635
|
* 3. Encode the entire sequence using Base32 without padding.
|
3635
3636
|
*
|
3636
3637
|
* If Chrome is not in IWA dev
|
@@ -3892,7 +3892,8 @@ export namespace ProtocolTestsProxyApi {
|
|
3892
3892
|
*
|
3893
3893
|
* To generate bundle id for proxy mode:
|
3894
3894
|
* 1. Generate 32 random bytes.
|
3895
|
-
* 2. Add a specific suffix
|
3895
|
+
* 2. Add a specific suffix at the end following the documentation
|
3896
|
+
* https://github.com/WICG/isolated-web-apps/blob/main/Scheme.md#suffix
|
3896
3897
|
* 3. Encode the entire sequence using Base32 without padding.
|
3897
3898
|
*
|
3898
3899
|
* If Chrome is not in IWA dev
|
package/types/protocol.d.ts
CHANGED
@@ -15721,7 +15721,7 @@ export namespace Protocol {
|
|
15721
15721
|
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
15722
15722
|
* @experimental
|
15723
15723
|
*/
|
15724
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | '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-create' | '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' | 'language-model' | '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');
|
15724
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | '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-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | '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' | 'language-model' | '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');
|
15725
15725
|
|
15726
15726
|
/**
|
15727
15727
|
* Reason for a permissions policy feature to be disabled.
|
@@ -17996,6 +17996,11 @@ export namespace Protocol {
|
|
17996
17996
|
* @deprecated
|
17997
17997
|
*/
|
17998
17998
|
errorMessage?: string;
|
17999
|
+
/**
|
18000
|
+
* For more details, see:
|
18001
|
+
* https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
|
18002
|
+
*/
|
18003
|
+
tag?: string;
|
17999
18004
|
}
|
18000
18005
|
|
18001
18006
|
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');
|