@trii/types 2.10.456 → 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.
- package/dist/Conversations/Flows/Flow.d.ts +5 -2
- package/dist/Conversations/Flows/Flow.js +3 -0
- package/dist/Conversations/Flows/Nodes/NodeGoogleCalendar.d.ts +17 -0
- package/dist/Conversations/Flows/Nodes/NodeGoogleCalendar.js +6 -0
- package/dist/Conversations/Flows/Nodes/NodeGoogleMaps copy.d.ts +12 -0
- package/dist/Conversations/Flows/Nodes/NodeGoogleMaps copy.js +6 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -94,7 +97,7 @@ declare class Edge {
|
|
|
94
97
|
sourceHandle?: string | null;
|
|
95
98
|
target: string | null;
|
|
96
99
|
targetHandle?: string | null;
|
|
97
|
-
data
|
|
100
|
+
data?: EdgeData | null;
|
|
98
101
|
markerEnd?: EdgeMarkerEnd | null;
|
|
99
102
|
}
|
|
100
103
|
declare class EdgeData {
|
|
@@ -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,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
|
+
}
|