chelys 2.4.2 → 2.4.3

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.
@@ -40,6 +40,11 @@ export interface CstReqState {
40
40
  state: number;
41
41
  id: string;
42
42
  }
43
+ export interface CstReqNameURL {
44
+ id: string;
45
+ name: string | undefined;
46
+ url: string | undefined;
47
+ }
43
48
  export interface CstReqUnsubscribe {
44
49
  ids: string[];
45
50
  }
package/dist/message.d.ts CHANGED
@@ -9,6 +9,7 @@ export declare enum EventType {
9
9
  CST_get = "CST-get",
10
10
  CST_get_from_user = "CST-get-from-user",
11
11
  CST_join = "CST-join",
12
+ CST_name_url = "CST-name-url",
12
13
  CST_state = "CST-state",
13
14
  CST_unsubscribe = "CST-unsubscribe",
14
15
  CST_FAV_add = "CST-FAV-add",
package/dist/message.js CHANGED
@@ -11,6 +11,7 @@ var EventType;
11
11
  EventType["CST_get"] = "CST-get";
12
12
  EventType["CST_get_from_user"] = "CST-get-from-user";
13
13
  EventType["CST_join"] = "CST-join";
14
+ EventType["CST_name_url"] = "CST-name-url";
14
15
  EventType["CST_state"] = "CST-state";
15
16
  EventType["CST_unsubscribe"] = "CST-unsubscribe";
16
17
  EventType["CST_FAV_add"] = "CST-FAV-add";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chelys",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "Common code between Yatga and Kalimba",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {