@manny-est/node-red-flowpilot 0.2.1

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.
@@ -0,0 +1,62 @@
1
+ [
2
+ {
3
+ "id": "fp-ex1-tab",
4
+ "type": "tab",
5
+ "label": "FlowPilot: Getting Started",
6
+ "disabled": false,
7
+ "info": "A tiny flow to try FlowPilot on.\n\n1. Deploy this flow.\n2. Open the FlowPilot sidebar and select the \"say hello\" function node.\n3. Click **Explain** (one of the orange Query buttons) and send.\n4. Try arming **Modify** (blue, the pencil icon) and asking FlowPilot to add a timestamp to the message, or wire in a second debug node.\n\nEvery change FlowPilot proposes is shown as a review before anything is applied, and can be undone with Ctrl+Z.",
8
+ "env": []
9
+ },
10
+ {
11
+ "id": "fp-ex1-inject",
12
+ "type": "inject",
13
+ "z": "fp-ex1-tab",
14
+ "name": "click to start",
15
+ "props": [
16
+ { "p": "payload" }
17
+ ],
18
+ "repeat": "",
19
+ "crontab": "",
20
+ "once": false,
21
+ "onceDelay": 0.1,
22
+ "topic": "",
23
+ "payload": "",
24
+ "payloadType": "date",
25
+ "x": 160,
26
+ "y": 120,
27
+ "wires": [["fp-ex1-function"]]
28
+ },
29
+ {
30
+ "id": "fp-ex1-function",
31
+ "type": "function",
32
+ "z": "fp-ex1-tab",
33
+ "name": "say hello",
34
+ "func": "msg.payload = \"Hello from FlowPilot's example flow!\";\nreturn msg;",
35
+ "outputs": 1,
36
+ "timeout": 0,
37
+ "noerr": 0,
38
+ "initialize": "",
39
+ "finalize": "",
40
+ "libs": [],
41
+ "x": 360,
42
+ "y": 120,
43
+ "wires": [["fp-ex1-debug"]]
44
+ },
45
+ {
46
+ "id": "fp-ex1-debug",
47
+ "type": "debug",
48
+ "z": "fp-ex1-tab",
49
+ "name": "",
50
+ "active": true,
51
+ "tosidebar": true,
52
+ "console": false,
53
+ "tostatus": false,
54
+ "complete": "payload",
55
+ "targetType": "msg",
56
+ "statusVal": "",
57
+ "statusType": "auto",
58
+ "x": 560,
59
+ "y": 120,
60
+ "wires": []
61
+ }
62
+ ]