ring: undo hack for ts-loader

This commit is contained in:
Koushik Dutta
2023-01-01 15:32:45 -08:00
parent cbafbb9ebd
commit 8563e17d95
5 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
{
"scrypted.debugHost": "127.0.0.1",
"scrypted.debugHost": "koushik-ubuntu",
}

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/ring",
"version": "0.0.90",
"version": "0.0.91",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/ring",
"version": "0.0.90",
"version": "0.0.91",
"dependencies": {
"@koush/ring-client-api": "file:../../external/ring-client-api",
"@scrypted/common": "file:../../common",

View File

@@ -44,5 +44,5 @@
"got": "11.8.2",
"socket.io-client": "^2.4.0"
},
"version": "0.0.90"
"version": "0.0.91"
}

View File

@@ -11,10 +11,9 @@ import { RtcpReceiverInfo, RtcpRrPacket } from '../../../external/werift/package
import { RtpPacket } from '../../../external/werift/packages/rtp/src/rtp/rtp';
import { ProtectionProfileAes128CmHmacSha1_80 } from '../../../external/werift/packages/rtp/src/srtp/const';
import { SrtcpSession } from '../../../external/werift/packages/rtp/src/srtp/srtcp';
import { Location, isStunMessage, RtpDescription, SipSession, BasicPeerConnection, CameraData, clientApi, generateUuid, RingBaseApi, RingCamera, RingRestClient, SimpleWebRtcSession, StreamingSession } from './ring-client-api';
import { Location, isStunMessage, RtpDescription, SipSession, BasicPeerConnection, CameraData, clientApi, generateUuid, RingBaseApi, RingCamera, RingRestClient, rxjs, SimpleWebRtcSession, StreamingSession } from './ring-client-api';
import { encodeSrtpOptions, getPayloadType, getSequenceNumber, isRtpMessagePayloadType } from './srtp-utils';
import { LocationMode } from '@koush/ring-client-api';
import rxjs from '../../../external/ring-client-api/node_modules/rxjs';
const STREAM_TIMEOUT = 120000;
const { deviceManager, mediaManager, systemManager } = sdk;

View File

@@ -9,3 +9,4 @@ export { BasicPeerConnection } from '@koush/ring-client-api/api/streaming/peer-c
export { SimpleWebRtcSession } from '@koush/ring-client-api/api/streaming/simple-webrtc-session';
export { StreamingSession } from '@koush/ring-client-api/api/streaming/streaming-session';
export { generateUuid } from '@koush/ring-client-api/api/util';
export * as rxjs from '@koush/ring-client-api/node_modules/rxjs';