@trii/types 2.10.349 → 2.10.350

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.
@@ -4,8 +4,16 @@ export declare class NodeMsgText {
4
4
  enableStatics: boolean | false;
5
5
  channelId: string;
6
6
  mode: NodeMsgTextMode;
7
- template: NodeMsgTextTemplate | null;
8
7
  message: NodeMsgTextMessage | null;
8
+ template: NodeMsgTextTemplate | null;
9
+ template_headerVars: templateVariable[] | null;
10
+ template_bodyVars: templateVariable[] | null;
11
+ template_buttonVars: templateVariable[] | null;
12
+ }
13
+ export declare class templateVariable {
14
+ var?: number;
15
+ value: string;
16
+ btn?: number;
9
17
  }
10
18
  export declare class NodeMsgTextTemplate {
11
19
  id: string | null;
@@ -1,5 +1,7 @@
1
1
  export class NodeMsgText {
2
2
  }
3
+ export class templateVariable {
4
+ }
3
5
  export class NodeMsgTextTemplate {
4
6
  }
5
7
  export class NodeMsgTextMessage {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.349",
3
+ "version": "2.10.350",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",