Skip to content

Update core dependencies #1966

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ interface MediaTrackSettings {
noiseSuppression?: boolean;
sampleRate?: number;
sampleSize?: number;
screenPixelRatio?: number;
width?: number;
}

Expand Down Expand Up @@ -1709,6 +1710,11 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
trackIdentifier: string;
}

interface RTCLocalIceCandidateInit extends RTCIceCandidateInit {
relayProtocol?: RTCIceServerTransportProtocol | null;
url?: string | null;
}

interface RTCLocalSessionDescriptionInit {
sdp?: string;
type?: RTCSdpType;
Expand All @@ -1725,6 +1731,7 @@ interface RTCOfferOptions extends RTCOfferAnswerOptions {

interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
active?: boolean;
encodingIndex?: number;
firCount?: number;
frameHeight?: number;
frameWidth?: number;
Expand Down Expand Up @@ -1771,6 +1778,10 @@ interface RTCReceivedRtpStreamStats extends RTCRtpStreamStats {
jitter?: number;
packetsLost?: number;
packetsReceived?: number;
packetsReceivedWithCe?: number;
packetsReceivedWithEct1?: number;
packetsReportedAsLost?: number;
packetsReportedAsLostButRecovered?: number;
}

interface RTCRtcpParameters {
Expand Down Expand Up @@ -1858,6 +1869,7 @@ interface RTCRtpTransceiverInit {
interface RTCSentRtpStreamStats extends RTCRtpStreamStats {
bytesSent?: number;
packetsSent?: number;
packetsSentWithEct1?: number;
}

interface RTCSessionDescriptionInit {
Expand All @@ -1884,6 +1896,8 @@ interface RTCTrackEventInit extends EventInit {
interface RTCTransportStats extends RTCStats {
bytesReceived?: number;
bytesSent?: number;
ccfbMessagesReceived?: number;
ccfbMessagesSent?: number;
dtlsCipher?: string;
dtlsRole?: RTCDtlsRole;
dtlsState: RTCDtlsTransportState;
Expand Down Expand Up @@ -19247,7 +19261,7 @@ interface RTCIceCandidate {

declare var RTCIceCandidate: {
prototype: RTCIceCandidate;
new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
new(candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
};

interface RTCIceCandidatePair {
Expand Down Expand Up @@ -29836,6 +29850,7 @@ type RTCIceGathererState = "complete" | "gathering" | "new";
type RTCIceGatheringState = "complete" | "gathering" | "new";
type RTCIceProtocol = "tcp" | "udp";
type RTCIceRole = "controlled" | "controlling" | "unknown";
type RTCIceServerTransportProtocol = "tcp" | "tls" | "udp";
type RTCIceTcpCandidateType = "active" | "passive" | "so";
type RTCIceTransportPolicy = "all" | "relay";
type RTCIceTransportState = "checking" | "closed" | "completed" | "connected" | "disconnected" | "failed" | "new";
Expand Down
17 changes: 16 additions & 1 deletion baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ interface MediaTrackSettings {
noiseSuppression?: boolean;
sampleRate?: number;
sampleSize?: number;
screenPixelRatio?: number;
width?: number;
}

Expand Down Expand Up @@ -1709,6 +1710,11 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
trackIdentifier: string;
}

interface RTCLocalIceCandidateInit extends RTCIceCandidateInit {
relayProtocol?: RTCIceServerTransportProtocol | null;
url?: string | null;
}

interface RTCLocalSessionDescriptionInit {
sdp?: string;
type?: RTCSdpType;
Expand All @@ -1725,6 +1731,7 @@ interface RTCOfferOptions extends RTCOfferAnswerOptions {

interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
active?: boolean;
encodingIndex?: number;
firCount?: number;
frameHeight?: number;
frameWidth?: number;
Expand Down Expand Up @@ -1771,6 +1778,10 @@ interface RTCReceivedRtpStreamStats extends RTCRtpStreamStats {
jitter?: number;
packetsLost?: number;
packetsReceived?: number;
packetsReceivedWithCe?: number;
packetsReceivedWithEct1?: number;
packetsReportedAsLost?: number;
packetsReportedAsLostButRecovered?: number;
}

interface RTCRtcpParameters {
Expand Down Expand Up @@ -1858,6 +1869,7 @@ interface RTCRtpTransceiverInit {
interface RTCSentRtpStreamStats extends RTCRtpStreamStats {
bytesSent?: number;
packetsSent?: number;
packetsSentWithEct1?: number;
}

interface RTCSessionDescriptionInit {
Expand All @@ -1884,6 +1896,8 @@ interface RTCTrackEventInit extends EventInit {
interface RTCTransportStats extends RTCStats {
bytesReceived?: number;
bytesSent?: number;
ccfbMessagesReceived?: number;
ccfbMessagesSent?: number;
dtlsCipher?: string;
dtlsRole?: RTCDtlsRole;
dtlsState: RTCDtlsTransportState;
Expand Down Expand Up @@ -19227,7 +19241,7 @@ interface RTCIceCandidate {

declare var RTCIceCandidate: {
prototype: RTCIceCandidate;
new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
new(candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
};

interface RTCIceCandidatePair {
Expand Down Expand Up @@ -29814,6 +29828,7 @@ type RTCIceGathererState = "complete" | "gathering" | "new";
type RTCIceGatheringState = "complete" | "gathering" | "new";
type RTCIceProtocol = "tcp" | "udp";
type RTCIceRole = "controlled" | "controlling" | "unknown";
type RTCIceServerTransportProtocol = "tcp" | "tls" | "udp";
type RTCIceTcpCandidateType = "active" | "passive" | "so";
type RTCIceTransportPolicy = "all" | "relay";
type RTCIceTransportState = "checking" | "closed" | "completed" | "connected" | "disconnected" | "failed" | "new";
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.