@gjsify/webrtc 0.4.27 → 0.4.29

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.
@@ -8,8 +8,8 @@ export { RTCIceCandidate } from './rtc-ice-candidate.js';
8
8
  export type { RTCIceCandidateInit, RTCIceComponent, RTCIceProtocol, RTCIceCandidateType, RTCIceTcpCandidateType, } from './rtc-ice-candidate.js';
9
9
  export { RTCError } from './rtc-error.js';
10
10
  export type { RTCErrorInit, RTCErrorDetailType } from './rtc-error.js';
11
- export { RTCPeerConnectionIceEvent, RTCDataChannelEvent, RTCErrorEvent, } from './rtc-events.js';
12
- export type { RTCPeerConnectionIceEventInit, RTCDataChannelEventInit, RTCErrorEventInit, } from './rtc-events.js';
11
+ export { RTCPeerConnectionIceEvent, RTCDataChannelEvent, RTCErrorEvent } from './rtc-events.js';
12
+ export type { RTCPeerConnectionIceEventInit, RTCDataChannelEventInit, RTCErrorEventInit } from './rtc-events.js';
13
13
  export { RTCRtpSender } from './rtc-rtp-sender.js';
14
14
  export type { RTCRtpTransceiverDirection, RTCRtpCapabilities, RTCRtpCodecCapability, RTCRtpHeaderExtensionCapability, RTCRtpSendParameters, RTCRtpEncodingParameters, RTCRtpCodecParameters, RTCRtpHeaderExtensionParameters, RTCRtcpParameters, } from './rtc-rtp-sender.js';
15
15
  export { RTCRtpReceiver } from './rtc-rtp-receiver.js';
@@ -1,5 +1,5 @@
1
1
  import '@gjsify/dom-events/register/event-target';
2
- import { MediaStreamTrack } from './media-stream-track.js';
2
+ import type { MediaStreamTrack } from './media-stream-track.js';
3
3
  export declare class MediaStream extends EventTarget {
4
4
  readonly id: string;
5
5
  private _tracks;
@@ -1,5 +1,5 @@
1
1
  import '@gjsify/dom-events/register/event-target';
2
- import { RTCIceTransport } from './rtc-ice-transport.js';
2
+ import type { RTCIceTransport } from './rtc-ice-transport.js';
3
3
  export type RTCDtlsTransportState = 'new' | 'connecting' | 'connected' | 'closed' | 'failed';
4
4
  type EventHandler = ((ev: Event) => void) | null;
5
5
  export declare class RTCDtlsTransport extends EventTarget {
@@ -1,5 +1,6 @@
1
1
  import { type RTCSessionDescriptionInit } from '../rtc-session-description.js';
2
- import { RTCIceCandidate, type RTCIceCandidateInit } from '../rtc-ice-candidate.js';
2
+ import type { RTCIceCandidate } from '../rtc-ice-candidate.js';
3
+ import { type RTCIceCandidateInit } from '../rtc-ice-candidate.js';
3
4
  import type { RTCOfferOptions, RTCAnswerOptions } from '../rtc-peer-connection.js';
4
5
  export interface SdpNegotiationMethods {
5
6
  createOffer(options?: RTCOfferOptions): Promise<RTCSessionDescriptionInit>;
@@ -1,5 +1,5 @@
1
1
  import '@gjsify/dom-events/register/event-target';
2
- import { RTCDtlsTransport } from './rtc-dtls-transport.js';
2
+ import type { RTCDtlsTransport } from './rtc-dtls-transport.js';
3
3
  export type RTCSctpTransportState = 'connecting' | 'connected' | 'closed';
4
4
  type EventHandler = ((ev: Event) => void) | null;
5
5
  export declare class RTCSctpTransport extends EventTarget {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/webrtc",
3
- "version": "0.4.27",
3
+ "version": "0.4.29",
4
4
  "description": "W3C WebRTC API for GJS using GStreamer webrtcbin as the peer-connection backend",
5
5
  "type": "module",
6
6
  "module": "lib/esm/index.js",
@@ -58,10 +58,10 @@
58
58
  "peer-connection"
59
59
  ],
60
60
  "dependencies": {
61
- "@gjsify/buffer": "^0.4.27",
62
- "@gjsify/dom-events": "^0.4.27",
63
- "@gjsify/dom-exception": "^0.4.27",
64
- "@gjsify/webrtc-native": "^0.4.27"
61
+ "@gjsify/buffer": "^0.4.29",
62
+ "@gjsify/dom-events": "^0.4.29",
63
+ "@gjsify/dom-exception": "^0.4.29",
64
+ "@gjsify/webrtc-native": "^0.4.29"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@girs/gjs": "4.0.1",
@@ -70,8 +70,8 @@
70
70
  "@girs/gst-1.0": "1.28.1-4.0.1",
71
71
  "@girs/gstsdp-1.0": "1.0.0-4.0.1",
72
72
  "@girs/gstwebrtc-1.0": "1.0.0-4.0.1",
73
- "@gjsify/cli": "^0.4.27",
74
- "@gjsify/unit": "^0.4.27",
73
+ "@gjsify/cli": "^0.4.29",
74
+ "@gjsify/unit": "^0.4.29",
75
75
  "@types/node": "^25.9.1",
76
76
  "typescript": "^6.0.3"
77
77
  }