devtools-protocol 0.0.1572739 → 0.0.1573491
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 +35 -0
- package/package.json +1 -1
- package/pdl/domains/Network.pdl +16 -0
- package/types/protocol.d.ts +28 -0
|
@@ -17149,6 +17149,32 @@
|
|
|
17149
17149
|
}
|
|
17150
17150
|
]
|
|
17151
17151
|
},
|
|
17152
|
+
{
|
|
17153
|
+
"id": "DeviceBoundSessionWithUsage",
|
|
17154
|
+
"description": "How a device bound session was used during a request.",
|
|
17155
|
+
"experimental": true,
|
|
17156
|
+
"type": "object",
|
|
17157
|
+
"properties": [
|
|
17158
|
+
{
|
|
17159
|
+
"name": "sessionKey",
|
|
17160
|
+
"description": "The key for the session.",
|
|
17161
|
+
"$ref": "DeviceBoundSessionKey"
|
|
17162
|
+
},
|
|
17163
|
+
{
|
|
17164
|
+
"name": "usage",
|
|
17165
|
+
"description": "How the session was used (or not used).",
|
|
17166
|
+
"type": "string",
|
|
17167
|
+
"enum": [
|
|
17168
|
+
"NotInScope",
|
|
17169
|
+
"InScopeRefreshNotYetNeeded",
|
|
17170
|
+
"InScopeRefreshNotAllowed",
|
|
17171
|
+
"ProactiveRefreshNotPossible",
|
|
17172
|
+
"ProactiveRefreshAttempted",
|
|
17173
|
+
"Deferred"
|
|
17174
|
+
]
|
|
17175
|
+
}
|
|
17176
|
+
]
|
|
17177
|
+
},
|
|
17152
17178
|
{
|
|
17153
17179
|
"id": "DeviceBoundSessionCookieCraving",
|
|
17154
17180
|
"description": "A device bound session's cookie craving.",
|
|
@@ -19338,6 +19364,15 @@
|
|
|
19338
19364
|
"experimental": true,
|
|
19339
19365
|
"$ref": "ConnectTiming"
|
|
19340
19366
|
},
|
|
19367
|
+
{
|
|
19368
|
+
"name": "deviceBoundSessionUsages",
|
|
19369
|
+
"description": "How the request site's device bound sessions were used during this request.",
|
|
19370
|
+
"optional": true,
|
|
19371
|
+
"type": "array",
|
|
19372
|
+
"items": {
|
|
19373
|
+
"$ref": "DeviceBoundSessionWithUsage"
|
|
19374
|
+
}
|
|
19375
|
+
},
|
|
19341
19376
|
{
|
|
19342
19377
|
"name": "clientSecurityState",
|
|
19343
19378
|
"description": "The client security state set for the request.",
|
package/package.json
CHANGED
package/pdl/domains/Network.pdl
CHANGED
|
@@ -1812,6 +1812,8 @@ domain Network
|
|
|
1812
1812
|
Headers headers
|
|
1813
1813
|
# Connection timing information for the request.
|
|
1814
1814
|
experimental ConnectTiming connectTiming
|
|
1815
|
+
# How the request site's device bound sessions were used during this request.
|
|
1816
|
+
optional array of DeviceBoundSessionWithUsage deviceBoundSessionUsages
|
|
1815
1817
|
# The client security state set for the request.
|
|
1816
1818
|
optional ClientSecurityState clientSecurityState
|
|
1817
1819
|
# Whether the site has partitioned cookies stored in a partition different than the current one.
|
|
@@ -2033,6 +2035,20 @@ domain Network
|
|
|
2033
2035
|
# The id of the session.
|
|
2034
2036
|
string id
|
|
2035
2037
|
|
|
2038
|
+
# How a device bound session was used during a request.
|
|
2039
|
+
experimental type DeviceBoundSessionWithUsage extends object
|
|
2040
|
+
properties
|
|
2041
|
+
# The key for the session.
|
|
2042
|
+
DeviceBoundSessionKey sessionKey
|
|
2043
|
+
# How the session was used (or not used).
|
|
2044
|
+
enum usage
|
|
2045
|
+
NotInScope
|
|
2046
|
+
InScopeRefreshNotYetNeeded
|
|
2047
|
+
InScopeRefreshNotAllowed
|
|
2048
|
+
ProactiveRefreshNotPossible
|
|
2049
|
+
ProactiveRefreshAttempted
|
|
2050
|
+
Deferred
|
|
2051
|
+
|
|
2036
2052
|
# A device bound session's cookie craving.
|
|
2037
2053
|
experimental type DeviceBoundSessionCookieCraving extends object
|
|
2038
2054
|
properties
|
package/types/protocol.d.ts
CHANGED
|
@@ -13544,6 +13544,30 @@ export namespace Protocol {
|
|
|
13544
13544
|
id: string;
|
|
13545
13545
|
}
|
|
13546
13546
|
|
|
13547
|
+
export const enum DeviceBoundSessionWithUsageUsage {
|
|
13548
|
+
NotInScope = 'NotInScope',
|
|
13549
|
+
InScopeRefreshNotYetNeeded = 'InScopeRefreshNotYetNeeded',
|
|
13550
|
+
InScopeRefreshNotAllowed = 'InScopeRefreshNotAllowed',
|
|
13551
|
+
ProactiveRefreshNotPossible = 'ProactiveRefreshNotPossible',
|
|
13552
|
+
ProactiveRefreshAttempted = 'ProactiveRefreshAttempted',
|
|
13553
|
+
Deferred = 'Deferred',
|
|
13554
|
+
}
|
|
13555
|
+
|
|
13556
|
+
/**
|
|
13557
|
+
* How a device bound session was used during a request.
|
|
13558
|
+
* @experimental
|
|
13559
|
+
*/
|
|
13560
|
+
export interface DeviceBoundSessionWithUsage {
|
|
13561
|
+
/**
|
|
13562
|
+
* The key for the session.
|
|
13563
|
+
*/
|
|
13564
|
+
sessionKey: DeviceBoundSessionKey;
|
|
13565
|
+
/**
|
|
13566
|
+
* How the session was used (or not used).
|
|
13567
|
+
*/
|
|
13568
|
+
usage: ('NotInScope' | 'InScopeRefreshNotYetNeeded' | 'InScopeRefreshNotAllowed' | 'ProactiveRefreshNotPossible' | 'ProactiveRefreshAttempted' | 'Deferred');
|
|
13569
|
+
}
|
|
13570
|
+
|
|
13547
13571
|
/**
|
|
13548
13572
|
* A device bound session's cookie craving.
|
|
13549
13573
|
* @experimental
|
|
@@ -15043,6 +15067,10 @@ export namespace Protocol {
|
|
|
15043
15067
|
* @experimental
|
|
15044
15068
|
*/
|
|
15045
15069
|
connectTiming: ConnectTiming;
|
|
15070
|
+
/**
|
|
15071
|
+
* How the request site's device bound sessions were used during this request.
|
|
15072
|
+
*/
|
|
15073
|
+
deviceBoundSessionUsages?: DeviceBoundSessionWithUsage[];
|
|
15046
15074
|
/**
|
|
15047
15075
|
* The client security state set for the request.
|
|
15048
15076
|
*/
|