@jealous-robot-dev/shared-types-responses 1.30.1 → 1.30.2

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.
@@ -2,8 +2,14 @@ export declare enum JoinType {
2
2
  BY_GUEST = "by guest",
3
3
  BY_HOST = "by host"
4
4
  }
5
+ export declare enum MeetingAPIResponses {
6
+ SUCCESS = "SUCCESS",
7
+ TOO_EARLY = "TOO_EARLY",
8
+ FORBIDDEN = "FORBIDDEN"
9
+ }
5
10
  export interface CustomerSeanceJoin {
6
11
  title: string;
12
+ loading: string;
7
13
  agreement: string;
8
14
  is_mobile: string;
9
15
  description: string;
@@ -16,6 +22,7 @@ export interface CustomerSeanceJoin {
16
22
  }
17
23
  export interface HostSeanceJoin {
18
24
  title: string;
25
+ loading: string;
19
26
  agreement: string;
20
27
  is_mobile: string;
21
28
  description: string;
@@ -29,6 +36,14 @@ export interface HostSeanceJoin {
29
36
  export interface HostJoinData {
30
37
  start_url: string;
31
38
  }
32
- export interface GuestJoinData {
39
+ export interface CustomerJoinData {
33
40
  join_url: string;
34
41
  }
42
+ export interface HostJoinResponse {
43
+ res: MeetingAPIResponses;
44
+ data: HostJoinData;
45
+ }
46
+ export interface CustomerJoinResponse {
47
+ res: MeetingAPIResponses;
48
+ data: CustomerJoinData;
49
+ }
@@ -1,8 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.JoinType = void 0;
3
+ exports.MeetingAPIResponses = exports.JoinType = void 0;
4
4
  var JoinType;
5
5
  (function (JoinType) {
6
6
  JoinType["BY_GUEST"] = "by guest";
7
7
  JoinType["BY_HOST"] = "by host";
8
8
  })(JoinType = exports.JoinType || (exports.JoinType = {}));
9
+ var MeetingAPIResponses;
10
+ (function (MeetingAPIResponses) {
11
+ MeetingAPIResponses["SUCCESS"] = "SUCCESS";
12
+ MeetingAPIResponses["TOO_EARLY"] = "TOO_EARLY";
13
+ MeetingAPIResponses["FORBIDDEN"] = "FORBIDDEN";
14
+ })(MeetingAPIResponses = exports.MeetingAPIResponses || (exports.MeetingAPIResponses = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.30.1",
3
+ "version": "1.30.2",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",