@rtsee/presentation-signaling-client 0.0.62

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.
@@ -0,0 +1,2 @@
1
+ export * from './models';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./models"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB"}
@@ -0,0 +1,9 @@
1
+ import { IRTSeeSignalClientOptions, RTSeeSignalingClientBase } from "@rtsee/signaling-client";
2
+ import { IRTSeeElements } from "@rtsee/core";
3
+ export declare class RTSeePresentationSignalingClient extends RTSeeSignalingClientBase {
4
+ constructor(options: IRTSeeSignalClientOptions);
5
+ connect(options: IRTSeeElements): void;
6
+ attachLocalEvents(): void;
7
+ attachRemoteEvents(): void;
8
+ }
9
+ //# sourceMappingURL=RTSeePresentationSignalingClient.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RTSeePresentationSignalingClient.d.ts","sourceRoot":"","sources":["../../../../src/models/RTSeePresentationSignalingClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,yBAAyB,EAAE,wBAAwB,EAAC,MAAM,yBAAyB,CAAC;AAC5F,OAAO,EAAC,cAAc,EAAC,MAAM,aAAa,CAAC;AAE3C,qBAAa,gCAAiC,SAAQ,wBAAwB;gBAEhE,OAAO,EAAE,yBAAyB;IAI9C,OAAO,CAAC,OAAO,EAAE,cAAc;IAI/B,iBAAiB;IAIjB,kBAAkB;CAEnB"}
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.RTSeePresentationSignalingClient = void 0;
19
+ var signaling_client_1 = require("@rtsee/signaling-client");
20
+ var RTSeePresentationSignalingClient = /** @class */ (function (_super) {
21
+ __extends(RTSeePresentationSignalingClient, _super);
22
+ function RTSeePresentationSignalingClient(options) {
23
+ return _super.call(this, options) || this;
24
+ }
25
+ RTSeePresentationSignalingClient.prototype.connect = function (options) {
26
+ console.log("RTSeePresentationSignalingClient", options);
27
+ };
28
+ RTSeePresentationSignalingClient.prototype.attachLocalEvents = function () {
29
+ };
30
+ RTSeePresentationSignalingClient.prototype.attachRemoteEvents = function () { };
31
+ return RTSeePresentationSignalingClient;
32
+ }(signaling_client_1.RTSeeSignalingClientBase));
33
+ exports.RTSeePresentationSignalingClient = RTSeePresentationSignalingClient;
34
+ //# sourceMappingURL=RTSeePresentationSignalingClient.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RTSeePresentationSignalingClient.js","sourceRoot":"","sources":["../../../../src/models/RTSeePresentationSignalingClient.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,4DAA4F;AAG5F;IAAsD,oDAAwB;IAE5E,0CAAY,OAAkC;eAC5C,kBAAM,OAAO,CAAC;IAChB,CAAC;IAED,kDAAO,GAAP,UAAQ,OAAuB;QAC7B,OAAO,CAAC,GAAG,CAAC,kCAAkC,EAAE,OAAO,CAAC,CAAC;IAC3D,CAAC;IAED,4DAAiB,GAAjB;IAEA,CAAC;IAED,6DAAkB,GAAlB,cAAsB,CAAC;IAEzB,uCAAC;AAAD,CAAC,AAhBD,CAAsD,2CAAwB,GAgB7E;AAhBY,4EAAgC"}
@@ -0,0 +1,2 @@
1
+ export * from './RTSeePresentationSignalingClient';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./RTSeePresentationSignalingClient"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@rtsee/presentation-signaling-client",
3
+ "version": "0.0.62",
4
+ "license": "ISC",
5
+ "private": false,
6
+ "main": "dist/presentation-signaling-client/src/index",
7
+ "types": "dist/presentation-signaling-client/src/index",
8
+ "files": [
9
+ "dist/presentation-signaling-client/src"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git@github.com:thewerf/rtsee.git",
14
+ "directory": "packages/@rtsee/presentation-signaling-client"
15
+ },
16
+ "scripts": {
17
+ "prepublishOnly": "yarn build",
18
+ "clean": "rm -rf ./dist",
19
+ "build": "yarn clean && yarn compile",
20
+ "compile": "tsc -p tsconfig.json",
21
+ "watch": "tsc -p tsconfig.json --watch",
22
+ "lint-file:eslint": "yarn eslint",
23
+ "lint-file:prettier": "yarn prettier --check",
24
+ "lint:eslint": "yarn lint-file:eslint 'src/**/*.ts'",
25
+ "lint:prettier": "yarn lint-file:prettier './**/*.{ts,js,json,css,md}' --ignore-path ../../.prettierignore"
26
+ },
27
+ "dependencies": {
28
+ "socket.io-client": "^4.1.3"
29
+ },
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "gitHead": "bb223780c5ffdbb9860ddf8612cde61cbb77701d"
34
+ }