@jealous-robot-dev/shared-types-responses 1.29.4 → 1.29.7

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.
@@ -11,3 +11,13 @@ export declare enum MeetingType {
11
11
  PRIVATE = "PRIVATE",
12
12
  STANDART = "STANDART"
13
13
  }
14
+ export declare enum ParticipantLeftReason {
15
+ REMOVED_BY_HOST = "REMOVED_BY_HOST",
16
+ DISCONNECTED = "DISCONNECTED",
17
+ LEFT = "LEFT"
18
+ }
19
+ export declare enum ParticipantState {
20
+ ADMITTED = "ADMITTED",
21
+ REMOVED = "REMOVED",
22
+ WAITING = "WAITING"
23
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MeetingType = exports.MeetingGuestPresence = exports.MeetingParticipant = void 0;
3
+ exports.ParticipantState = exports.ParticipantLeftReason = exports.MeetingType = exports.MeetingGuestPresence = exports.MeetingParticipant = void 0;
4
4
  var MeetingParticipant;
5
5
  (function (MeetingParticipant) {
6
6
  MeetingParticipant["GUEST"] = "GUEST";
@@ -17,3 +17,15 @@ var MeetingType;
17
17
  MeetingType["PRIVATE"] = "PRIVATE";
18
18
  MeetingType["STANDART"] = "STANDART";
19
19
  })(MeetingType = exports.MeetingType || (exports.MeetingType = {}));
20
+ var ParticipantLeftReason;
21
+ (function (ParticipantLeftReason) {
22
+ ParticipantLeftReason["REMOVED_BY_HOST"] = "REMOVED_BY_HOST";
23
+ ParticipantLeftReason["DISCONNECTED"] = "DISCONNECTED";
24
+ ParticipantLeftReason["LEFT"] = "LEFT";
25
+ })(ParticipantLeftReason = exports.ParticipantLeftReason || (exports.ParticipantLeftReason = {}));
26
+ var ParticipantState;
27
+ (function (ParticipantState) {
28
+ ParticipantState["ADMITTED"] = "ADMITTED";
29
+ ParticipantState["REMOVED"] = "REMOVED";
30
+ ParticipantState["WAITING"] = "WAITING";
31
+ })(ParticipantState = exports.ParticipantState || (exports.ParticipantState = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.29.4",
3
+ "version": "1.29.7",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -24,6 +24,6 @@
24
24
  "typescript": "^3.8.3"
25
25
  },
26
26
  "dependencies": {
27
- "@jealous-robot-dev/shared-ui-lib": "^1.0.9"
27
+ "@jealous-robot-dev/shared-ui-lib": "^1.2.0"
28
28
  }
29
29
  }