@formant/realtime-sdk 0.0.7 → 0.0.10

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,3 @@
1
+ export interface IJsonString {
2
+ value: string;
3
+ }
@@ -0,0 +1,5 @@
1
+ import { IBaseEntity } from "./IBaseEntity";
2
+ import { ITags } from "./ITags";
3
+ export interface ITaggedEntity extends IBaseEntity {
4
+ tags: ITags;
5
+ }
@@ -1,15 +1,13 @@
1
- import { IBaseEntity } from "./IBaseEntity";
2
1
  import { IsoDate } from "./IsoDate";
3
- import { ITags } from "./ITags";
2
+ import { ITaggedEntity } from "./ITaggedEntity";
4
3
  import { Uuid } from "./Uuid";
5
- export interface IUser extends IBaseEntity {
4
+ export interface IUser extends ITaggedEntity {
6
5
  organizationId?: Uuid;
7
6
  email: string;
8
7
  firstName: string;
9
8
  lastName: string;
10
9
  roleId: Uuid;
11
10
  teamId?: Uuid | null;
12
- tags: ITags;
13
11
  phoneNumber?: string;
14
12
  enabled?: boolean;
15
13
  isOrganizationOwner?: boolean;
@@ -1,2 +1,2 @@
1
1
  export declare const agentFeatures: readonly ["telemetry", "internalTelemetry", "teleop", "ssh", "customEvents", "triggeredEvents", "portForwarding", "commands", "interventions", "onDemand", "appConfig", "blobStorage"];
2
- export declare const features: readonly ["telemetry", "internalTelemetry", "teleop", "ssh", "customEvents", "triggeredEvents", "portForwarding", "commands", "interventions", "onDemand", "appConfig", "blobStorage", "events", "analytics", "annotations", "observability", "diagnostics", "advancedConfiguration", "dataExport", "onDemand", "share", "adapters", "s3Export", "fileStorage", "roleViewer", "teams"];
2
+ export declare const features: readonly ["telemetry", "internalTelemetry", "teleop", "ssh", "customEvents", "triggeredEvents", "portForwarding", "commands", "interventions", "onDemand", "appConfig", "blobStorage", "events", "analytics", "annotations", "observability", "diagnostics", "advancedConfiguration", "dataExport", "onDemand", "share", "adapters", "s3Export", "fileStorage", "roleViewer", "teams", "schedules"];
@@ -1 +1 @@
1
- export declare const rtcIceTransportPolicies: readonly ["all", "relay"];
1
+ export declare const rtcIceTransportPolicies: readonly ["stun", "turn"];
@@ -17,6 +17,7 @@ export declare const rtcPoseWithCovarianceStreamType: "pose-with-covariance";
17
17
  export declare const rtcPointCloudStreamType: "point-cloud";
18
18
  export declare const rtcMarkerArrayStreamType: "marker-array";
19
19
  export declare const rtcPointStreamType: "point";
20
- export declare const rtcStreamTypes: readonly ["ping", "pong", "stream-control", "streams-info", "agent-info", "numeric", "boolean", "bitset", "twist", "compressed-image", "h264-video-frame", "audio-chunk", "pose", "goal-id", "joint-state", "pose-with-covariance", "point-cloud", "point", "marker-array"];
20
+ export declare const rtcJsonStringType: "json-string";
21
+ export declare const rtcStreamTypes: readonly ["ping", "pong", "stream-control", "streams-info", "agent-info", "numeric", "boolean", "bitset", "twist", "compressed-image", "h264-video-frame", "audio-chunk", "pose", "goal-id", "joint-state", "pose-with-covariance", "point-cloud", "point", "marker-array", "json-string"];
21
22
  export declare const rtcImageStreamTypes: string[];
22
23
  export declare const rtcSystemStreamTypes: string[];
@@ -35,6 +35,7 @@ enum SessionType {
35
35
  UNKNOWN = 0;
36
36
  TELEOP = 1;
37
37
  PORT_FORWARD = 2;
38
+ OBSERVE = 3;
38
39
  }
39
40
 
40
41
  message Signal {
@@ -353,4 +353,5 @@ export enum SessionType {
353
353
  UNKNOWN = 0,
354
354
  TELEOP = 1,
355
355
  PORT_FORWARD = 2,
356
+ OBSERVE = 3,
356
357
  }
@@ -13,7 +13,7 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
17
17
 
18
18
  var google_protobuf_wrappers_pb = require('google-protobuf/google/protobuf/wrappers_pb.js');
19
19
  goog.object.extend(proto, google_protobuf_wrappers_pb);
@@ -2988,7 +2988,8 @@ proto.v1.signaling.api.ReceiveSignalStreamResponse.prototype.hasSignal = functio
2988
2988
  proto.v1.signaling.api.SessionType = {
2989
2989
  UNKNOWN: 0,
2990
2990
  TELEOP: 1,
2991
- PORT_FORWARD: 2
2991
+ PORT_FORWARD: 2,
2992
+ OBSERVE: 3
2992
2993
  };
2993
2994
 
2994
2995
  goog.object.extend(exports, proto.v1.signaling.api);
@@ -2,5 +2,5 @@ import { RtcIceServerProtocol } from "../../model/RtcIceServerProtocol";
2
2
  import { RtcIceTransportPolicy } from "../../model/RtcIceTransportPolicy";
3
3
  export interface IRtcConnectConfiguration {
4
4
  rtcIceServerProtocol?: RtcIceServerProtocol;
5
- rtcIceTransportPolicy?: RtcIceTransportPolicy;
5
+ rtcIceTransportPolicies?: RtcIceTransportPolicy[];
6
6
  }
@@ -3,6 +3,7 @@ import { ICompressedImage } from "../../model/ICompressedImage";
3
3
  import { IGoalID } from "../../model/IGoalID";
4
4
  import { IH264VideoFrame } from "../../model/IH264VideoFrame";
5
5
  import { IJointState } from "../../model/IJointState";
6
+ import { IJsonString } from "../../model/IJsonString";
6
7
  import { IMarker3DArray } from "../../model/IMarker3DArray";
7
8
  import { IPoint } from "../../model/IPoint";
8
9
  import { IPoseWithCovariance } from "../../model/IPoseWithCovariance";
@@ -40,4 +41,5 @@ export interface IRtcStreamPayload {
40
41
  pointCloud?: IRtcPointCloud;
41
42
  point?: IPoint;
42
43
  markerArray?: IMarker3DArray;
44
+ jsonString?: IJsonString;
43
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formant/realtime-sdk",
3
- "version": "0.0.7",
3
+ "version": "0.0.10",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/realtime-sdk/src/index.d.ts",