@trii/types 2.10.457 → 2.10.458

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.
@@ -49,7 +49,10 @@ declare enum NodeType {
49
49
  TIME_WAIT_UNTIL = 83,
50
50
  CONDITIONAL = 71,
51
51
  REDIRECT = 72,
52
- AI_CHATBOT = 91
52
+ AI_CHATBOT = 91,
53
+ GOOGLE_MAPS = 101,
54
+ GOOGLE_CALENDAR = 102,
55
+ TRII_CALENDAR = 201
53
56
  }
54
57
  declare class NodePosition {
55
58
  x: number;
@@ -22,6 +22,9 @@ var NodeType;
22
22
  NodeType[NodeType["CONDITIONAL"] = 71] = "CONDITIONAL";
23
23
  NodeType[NodeType["REDIRECT"] = 72] = "REDIRECT";
24
24
  NodeType[NodeType["AI_CHATBOT"] = 91] = "AI_CHATBOT";
25
+ NodeType[NodeType["GOOGLE_MAPS"] = 101] = "GOOGLE_MAPS";
26
+ NodeType[NodeType["GOOGLE_CALENDAR"] = 102] = "GOOGLE_CALENDAR";
27
+ NodeType[NodeType["TRII_CALENDAR"] = 201] = "TRII_CALENDAR";
25
28
  })(NodeType || (exports.NodeType = NodeType = {}));
26
29
  class NodePosition {
27
30
  }
@@ -0,0 +1,17 @@
1
+ export declare class NodeGoogleCalendar {
2
+ id: string;
3
+ name: string;
4
+ enableStatics: boolean | false;
5
+ authCredentialId?: string | null;
6
+ eventsAdd?: boolean | false;
7
+ eventsEdit?: boolean | false;
8
+ eventsGet?: boolean | false;
9
+ eventsSearch?: boolean | false;
10
+ eventsDelete?: boolean | false;
11
+ calendarList?: boolean | false;
12
+ polygonsId?: string | null;
13
+ polygonsName?: string | null;
14
+ placeSearch?: boolean | false;
15
+ variables?: string | null;
16
+ saveAs?: string | null;
17
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NodeGoogleCalendar = void 0;
4
+ class NodeGoogleCalendar {
5
+ }
6
+ exports.NodeGoogleCalendar = NodeGoogleCalendar;
@@ -0,0 +1,12 @@
1
+ export declare class NodeGoogleMaps {
2
+ id: string;
3
+ name: string;
4
+ enableStatics: boolean | false;
5
+ polygonsEnable?: boolean | false;
6
+ polygonsId?: string | null;
7
+ polygonsName?: string | null;
8
+ placeSearch?: boolean | false;
9
+ authCredentialId?: string | null;
10
+ variables?: string | null;
11
+ saveAs?: string | null;
12
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NodeGoogleMaps = void 0;
4
+ class NodeGoogleMaps {
5
+ }
6
+ exports.NodeGoogleMaps = NodeGoogleMaps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.457",
3
+ "version": "2.10.458",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",