Skip to content

Commit c0abcca

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent e24c9b3 commit c0abcca

File tree

4 files changed

+36
-15
lines changed

4 files changed

+36
-15
lines changed

gen-src/ChromeDevtoolsProtocol/Domain/PageDomainInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ public function getLayoutMetrics(ContextInterface $ctx): GetLayoutMetricsRespons
359359

360360

361361
/**
362-
* Call Page.getManifestIcons command.
362+
* Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
363363
*
364364
* @param ContextInterface $ctx
365365
*
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace ChromeDevtoolsProtocol\Model\Page;
4+
5+
/**
6+
* Enum of possible auto-reponse for permisison / prompt dialogs.
7+
*
8+
* @generated This file has been auto-generated, do not edit.
9+
*
10+
* @author Jakub Kulhan <[email protected]>
11+
*/
12+
final class AutoResponseModeEnum
13+
{
14+
public const NONE = 'none';
15+
public const AUTO_ACCEPT = 'autoAccept';
16+
public const AUTO_REJECT = 'autoReject';
17+
public const AUTO_OPT_OUT = 'autoOptOut';
18+
}

protocol.json

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18676,6 +18676,18 @@
1867618676
}
1867718677
]
1867818678
},
18679+
{
18680+
"id": "AutoResponseMode",
18681+
"description": "Enum of possible auto-reponse for permisison / prompt dialogs.",
18682+
"experimental": true,
18683+
"type": "string",
18684+
"enum": [
18685+
"none",
18686+
"autoAccept",
18687+
"autoReject",
18688+
"autoOptOut"
18689+
]
18690+
},
1867918691
{
1868018692
"id": "NavigationType",
1868118693
"description": "The type of a frameNavigated event.",
@@ -19354,7 +19366,9 @@
1935419366
},
1935519367
{
1935619368
"name": "getManifestIcons",
19369+
"description": "Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.",
1935719370
"experimental": true,
19371+
"deprecated": true,
1935819372
"returns": [
1935919373
{
1936019374
"name": "primaryIcon",
@@ -20029,12 +20043,7 @@
2002920043
"parameters": [
2003020044
{
2003120045
"name": "mode",
20032-
"type": "string",
20033-
"enum": [
20034-
"none",
20035-
"autoaccept",
20036-
"autoreject"
20037-
]
20046+
"$ref": "AutoResponseMode"
2003820047
}
2003920048
]
2004020049
},
@@ -20045,13 +20054,7 @@
2004520054
"parameters": [
2004620055
{
2004720056
"name": "mode",
20048-
"type": "string",
20049-
"enum": [
20050-
"none",
20051-
"autoAccept",
20052-
"autoReject",
20053-
"autoOptOut"
20054-
]
20057+
"$ref": "AutoResponseMode"
2005520058
}
2005620059
]
2005720060
},

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0f8562d776aac1b305a8a1a135b692b5 protocol.json
1+
5c863c8b68025aed1c42add2b97620eb protocol.json

0 commit comments

Comments
 (0)