@webref/idl 3.70.0 → 3.70.1
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/device-memory.idl +1 -1
- package/fetch.idl +2 -1
- package/package.json +1 -1
- package/webtransport.idl +3 -3
package/device-memory.idl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Device Memory (https://www.w3.org/TR/device-memory/)
|
|
4
|
+
// Source: Device Memory API (https://www.w3.org/TR/device-memory/)
|
|
5
5
|
|
|
6
6
|
[
|
|
7
7
|
SecureContext,
|
package/fetch.idl
CHANGED
|
@@ -85,7 +85,8 @@ enum RequestRedirect { "follow", "error", "manual" };
|
|
|
85
85
|
enum RequestDuplex { "half" };
|
|
86
86
|
enum RequestPriority { "high", "low", "auto" };
|
|
87
87
|
|
|
88
|
-
[Exposed=(Window,Worker)]
|
|
88
|
+
[Exposed=(Window,Worker)]
|
|
89
|
+
interface Response {
|
|
89
90
|
constructor(optional BodyInit? body = null, optional ResponseInit init = {});
|
|
90
91
|
|
|
91
92
|
[NewObject] static Response error();
|
package/package.json
CHANGED
package/webtransport.idl
CHANGED
|
@@ -74,7 +74,7 @@ dictionary WebTransportOptions {
|
|
|
74
74
|
[EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null;
|
|
75
75
|
[EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null;
|
|
76
76
|
sequence<DOMString> protocols = [];
|
|
77
|
-
|
|
77
|
+
ReadableStreamType datagramsReadableType;
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
enum WebTransportCongestionControl {
|
|
@@ -83,8 +83,6 @@ enum WebTransportCongestionControl {
|
|
|
83
83
|
"low-latency",
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
-
enum DatagramsReadableMode { "bytes" };
|
|
87
|
-
|
|
88
86
|
dictionary WebTransportCloseInfo {
|
|
89
87
|
unsigned long closeCode = 0;
|
|
90
88
|
USVString reason = "";
|
|
@@ -101,6 +99,8 @@ dictionary WebTransportSendStreamOptions : WebTransportSendOptions {
|
|
|
101
99
|
|
|
102
100
|
dictionary WebTransportConnectionStats {
|
|
103
101
|
unsigned long long bytesSent;
|
|
102
|
+
unsigned long long bytesSentOverhead;
|
|
103
|
+
unsigned long long bytesAcknowledged;
|
|
104
104
|
unsigned long long packetsSent;
|
|
105
105
|
unsigned long long bytesLost;
|
|
106
106
|
unsigned long long packetsLost;
|