@trii/types 2.10.350 → 2.10.352

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.
@@ -32,8 +32,8 @@ export interface IConversation {
32
32
  assignedTo?: ConversationAssigned;
33
33
  participants: UserInfo[];
34
34
  archived: boolean;
35
+ workflowId?: string;
35
36
  botStatus: ConversationBotStatus;
36
- botId?: string;
37
37
  botVars: ConversationBotVar[];
38
38
  finalizedAt: Date;
39
39
  ending?: IEnding;
@@ -6,19 +6,18 @@ export declare class NodeMsgText {
6
6
  mode: NodeMsgTextMode;
7
7
  message: NodeMsgTextMessage | null;
8
8
  template: NodeMsgTextTemplate | null;
9
- template_headerVars: templateVariable[] | null;
10
- template_bodyVars: templateVariable[] | null;
11
- template_buttonVars: templateVariable[] | null;
9
+ }
10
+ export declare class NodeMsgTextTemplate {
11
+ id: string | null;
12
+ headerVars?: templateVariable[] | null;
13
+ bodyVars?: templateVariable[] | null;
14
+ buttonVars?: templateVariable[] | null;
12
15
  }
13
16
  export declare class templateVariable {
14
17
  var?: number;
15
18
  value: string;
16
19
  btn?: number;
17
20
  }
18
- export declare class NodeMsgTextTemplate {
19
- id: string | null;
20
- namespace: string | null;
21
- }
22
21
  export declare class NodeMsgTextMessage {
23
22
  type: NodeMsgTextMessageType;
24
23
  text?: string;
@@ -1,9 +1,9 @@
1
1
  export class NodeMsgText {
2
2
  }
3
- export class templateVariable {
4
- }
5
3
  export class NodeMsgTextTemplate {
6
4
  }
5
+ export class templateVariable {
6
+ }
7
7
  export class NodeMsgTextMessage {
8
8
  }
9
9
  export class NodeMsgTextMessageButton {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.350",
3
+ "version": "2.10.352",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",