devtools-protocol 0.0.1443917 → 0.0.1446921
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.
@@ -3026,7 +3026,8 @@
|
|
3026
3026
|
"type": "string",
|
3027
3027
|
"enum": [
|
3028
3028
|
"openTabSearch",
|
3029
|
-
"closeTabSearch"
|
3029
|
+
"closeTabSearch",
|
3030
|
+
"openGlic"
|
3030
3031
|
]
|
3031
3032
|
},
|
3032
3033
|
{
|
@@ -10111,7 +10112,7 @@
|
|
10111
10112
|
},
|
10112
10113
|
{
|
10113
10114
|
"name": "setGeolocationOverride",
|
10114
|
-
"description": "Overrides the Geolocation Position or Error. Omitting
|
10115
|
+
"description": "Overrides the Geolocation Position or Error. Omitting latitude, longitude or\naccuracy emulates position unavailable.",
|
10115
10116
|
"parameters": [
|
10116
10117
|
{
|
10117
10118
|
"name": "latitude",
|
@@ -10130,6 +10131,30 @@
|
|
10130
10131
|
"description": "Mock accuracy",
|
10131
10132
|
"optional": true,
|
10132
10133
|
"type": "number"
|
10134
|
+
},
|
10135
|
+
{
|
10136
|
+
"name": "altitude",
|
10137
|
+
"description": "Mock altitude",
|
10138
|
+
"optional": true,
|
10139
|
+
"type": "number"
|
10140
|
+
},
|
10141
|
+
{
|
10142
|
+
"name": "altitudeAccuracy",
|
10143
|
+
"description": "Mock altitudeAccuracy",
|
10144
|
+
"optional": true,
|
10145
|
+
"type": "number"
|
10146
|
+
},
|
10147
|
+
{
|
10148
|
+
"name": "heading",
|
10149
|
+
"description": "Mock heading",
|
10150
|
+
"optional": true,
|
10151
|
+
"type": "number"
|
10152
|
+
},
|
10153
|
+
{
|
10154
|
+
"name": "speed",
|
10155
|
+
"description": "Mock speed",
|
10156
|
+
"optional": true,
|
10157
|
+
"type": "number"
|
10133
10158
|
}
|
10134
10159
|
]
|
10135
10160
|
},
|
@@ -13519,7 +13544,8 @@
|
|
13519
13544
|
"network",
|
13520
13545
|
"cache",
|
13521
13546
|
"fetch-event",
|
13522
|
-
"race-network-and-fetch-handler"
|
13547
|
+
"race-network-and-fetch-handler",
|
13548
|
+
"race-network-and-cache"
|
13523
13549
|
]
|
13524
13550
|
},
|
13525
13551
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -1537,6 +1537,7 @@ domain Browser
|
|
1537
1537
|
enum
|
1538
1538
|
openTabSearch
|
1539
1539
|
closeTabSearch
|
1540
|
+
openGlic
|
1540
1541
|
|
1541
1542
|
# Set permission settings for given origin.
|
1542
1543
|
experimental command setPermission
|
@@ -4675,8 +4676,8 @@ domain Emulation
|
|
4675
4676
|
protanopia
|
4676
4677
|
tritanopia
|
4677
4678
|
|
4678
|
-
# Overrides the Geolocation Position or Error. Omitting
|
4679
|
-
# unavailable.
|
4679
|
+
# Overrides the Geolocation Position or Error. Omitting latitude, longitude or
|
4680
|
+
# accuracy emulates position unavailable.
|
4680
4681
|
command setGeolocationOverride
|
4681
4682
|
parameters
|
4682
4683
|
# Mock latitude
|
@@ -4685,6 +4686,14 @@ domain Emulation
|
|
4685
4686
|
optional number longitude
|
4686
4687
|
# Mock accuracy
|
4687
4688
|
optional number accuracy
|
4689
|
+
# Mock altitude
|
4690
|
+
optional number altitude
|
4691
|
+
# Mock altitudeAccuracy
|
4692
|
+
optional number altitudeAccuracy
|
4693
|
+
# Mock heading
|
4694
|
+
optional number heading
|
4695
|
+
# Mock speed
|
4696
|
+
optional number speed
|
4688
4697
|
|
4689
4698
|
experimental command getOverriddenSensorInformation
|
4690
4699
|
parameters
|
@@ -6333,6 +6342,7 @@ domain Network
|
|
6333
6342
|
cache
|
6334
6343
|
fetch-event
|
6335
6344
|
race-network-and-fetch-handler
|
6345
|
+
race-network-and-cache
|
6336
6346
|
|
6337
6347
|
experimental type ServiceWorkerRouterInfo extends object
|
6338
6348
|
properties
|
@@ -2868,8 +2868,8 @@ export namespace ProtocolMapping {
|
|
2868
2868
|
returnType: void;
|
2869
2869
|
};
|
2870
2870
|
/**
|
2871
|
-
* Overrides the Geolocation Position or Error. Omitting
|
2872
|
-
* unavailable.
|
2871
|
+
* Overrides the Geolocation Position or Error. Omitting latitude, longitude or
|
2872
|
+
* accuracy emulates position unavailable.
|
2873
2873
|
*/
|
2874
2874
|
'Emulation.setGeolocationOverride': {
|
2875
2875
|
paramsType: [Protocol.Emulation.SetGeolocationOverrideRequest?];
|
@@ -1962,8 +1962,8 @@ export namespace ProtocolProxyApi {
|
|
1962
1962
|
setEmulatedVisionDeficiency(params: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest): Promise<void>;
|
1963
1963
|
|
1964
1964
|
/**
|
1965
|
-
* Overrides the Geolocation Position or Error. Omitting
|
1966
|
-
* unavailable.
|
1965
|
+
* Overrides the Geolocation Position or Error. Omitting latitude, longitude or
|
1966
|
+
* accuracy emulates position unavailable.
|
1967
1967
|
*/
|
1968
1968
|
setGeolocationOverride(params: Protocol.Emulation.SetGeolocationOverrideRequest): Promise<void>;
|
1969
1969
|
|
@@ -2086,8 +2086,8 @@ export namespace ProtocolTestsProxyApi {
|
|
2086
2086
|
setEmulatedVisionDeficiency(params: Protocol.Emulation.SetEmulatedVisionDeficiencyRequest): Promise<{id: number, result: void, sessionId: string}>;
|
2087
2087
|
|
2088
2088
|
/**
|
2089
|
-
* Overrides the Geolocation Position or Error. Omitting
|
2090
|
-
* unavailable.
|
2089
|
+
* Overrides the Geolocation Position or Error. Omitting latitude, longitude or
|
2090
|
+
* accuracy emulates position unavailable.
|
2091
2091
|
*/
|
2092
2092
|
setGeolocationOverride(params: Protocol.Emulation.SetGeolocationOverrideRequest): Promise<{id: number, result: void, sessionId: string}>;
|
2093
2093
|
|
package/types/protocol.d.ts
CHANGED
@@ -4270,7 +4270,7 @@ export namespace Protocol {
|
|
4270
4270
|
/**
|
4271
4271
|
* Browser command ids used by executeBrowserCommand.
|
4272
4272
|
*/
|
4273
|
-
export type BrowserCommandId = ('openTabSearch' | 'closeTabSearch');
|
4273
|
+
export type BrowserCommandId = ('openTabSearch' | 'closeTabSearch' | 'openGlic');
|
4274
4274
|
|
4275
4275
|
/**
|
4276
4276
|
* Chrome histogram bucket.
|
@@ -8779,6 +8779,22 @@ export namespace Protocol {
|
|
8779
8779
|
* Mock accuracy
|
8780
8780
|
*/
|
8781
8781
|
accuracy?: number;
|
8782
|
+
/**
|
8783
|
+
* Mock altitude
|
8784
|
+
*/
|
8785
|
+
altitude?: number;
|
8786
|
+
/**
|
8787
|
+
* Mock altitudeAccuracy
|
8788
|
+
*/
|
8789
|
+
altitudeAccuracy?: number;
|
8790
|
+
/**
|
8791
|
+
* Mock heading
|
8792
|
+
*/
|
8793
|
+
heading?: number;
|
8794
|
+
/**
|
8795
|
+
* Mock speed
|
8796
|
+
*/
|
8797
|
+
speed?: number;
|
8782
8798
|
}
|
8783
8799
|
|
8784
8800
|
export interface GetOverriddenSensorInformationRequest {
|
@@ -10966,7 +10982,7 @@ export namespace Protocol {
|
|
10966
10982
|
/**
|
10967
10983
|
* Source of service worker router.
|
10968
10984
|
*/
|
10969
|
-
export type ServiceWorkerRouterSource = ('network' | 'cache' | 'fetch-event' | 'race-network-and-fetch-handler');
|
10985
|
+
export type ServiceWorkerRouterSource = ('network' | 'cache' | 'fetch-event' | 'race-network-and-fetch-handler' | 'race-network-and-cache');
|
10970
10986
|
|
10971
10987
|
export interface ServiceWorkerRouterInfo {
|
10972
10988
|
/**
|