node-red-contrib-homekit-bridged 2.0.0-dev.0 → 2.0.0-dev.10

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.
Files changed (125) hide show
  1. package/build/lib/HAPHostNode.js +185 -148
  2. package/build/lib/HAPServiceNode.js +200 -177
  3. package/build/lib/HAPServiceNode2.js +208 -177
  4. package/build/lib/NRCHKBError.js +23 -2
  5. package/build/lib/PairingQRCode.js +62 -0
  6. package/build/lib/Storage.js +152 -90
  7. package/build/lib/api.js +654 -291
  8. package/build/lib/camera/CameraControl.js +125 -0
  9. package/build/lib/camera/CameraDelegate.js +507 -0
  10. package/build/lib/camera/MP4StreamingServer.js +159 -0
  11. package/build/lib/hap/HAPCharacteristic.js +25 -4
  12. package/build/lib/hap/HAPService.js +25 -4
  13. package/build/lib/hap/eve-app/EveCharacteristics.js +124 -81
  14. package/build/lib/hap/eve-app/EveServices.js +50 -17
  15. package/build/lib/hap/hap-nodejs.js +32 -0
  16. package/build/lib/migration/HomeKitService2Migration.js +34 -0
  17. package/build/lib/migration/NodeMigration.js +75 -0
  18. package/build/lib/types/AccessoryInformationType.js +15 -1
  19. package/build/lib/types/CameraConfigType.js +15 -1
  20. package/build/lib/types/CustomCharacteristicType.js +15 -1
  21. package/build/lib/types/HAPHostConfigType.js +15 -1
  22. package/build/lib/types/HAPHostNodeType.js +15 -1
  23. package/build/lib/types/HAPService2ConfigType.js +15 -1
  24. package/build/lib/types/HAPService2NodeType.js +15 -1
  25. package/build/lib/types/HAPServiceConfigType.js +15 -1
  26. package/build/lib/types/HAPServiceNodeType.js +15 -1
  27. package/build/lib/types/HAPStatusConfigType.js +15 -1
  28. package/build/lib/types/HAPStatusNodeType.js +15 -1
  29. package/build/lib/types/HostType.js +28 -7
  30. package/build/lib/types/NodeType.js +15 -1
  31. package/build/lib/types/PublishTimersType.js +15 -1
  32. package/build/lib/types/UniFiControllerConfigType.js +16 -0
  33. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.js +28 -7
  34. package/build/lib/types/hap-nodejs/HapCategories.js +64 -43
  35. package/build/lib/types/storage/SerializedHostType.js +15 -1
  36. package/build/lib/types/storage/StorageType.js +34 -10
  37. package/build/lib/unifi/ProtectDiscovery.js +80 -0
  38. package/build/lib/utils/AccessoryUtils.js +152 -110
  39. package/build/lib/utils/BridgeUtils.js +95 -39
  40. package/build/lib/utils/CharacteristicUtils.js +5 -49
  41. package/build/lib/utils/CharacteristicUtils2.js +5 -49
  42. package/build/lib/utils/CharacteristicUtilsBase.js +81 -0
  43. package/build/lib/utils/NodeStatusUtils.js +89 -40
  44. package/build/lib/utils/ServiceUtils.js +433 -371
  45. package/build/lib/utils/ServiceUtils2.js +519 -305
  46. package/build/lib/utils/index.js +11 -12
  47. package/build/nodes/bridge.html +206 -168
  48. package/build/nodes/bridge.js +27 -9
  49. package/build/nodes/locales/en-US/node-red-contrib-homekit-bridged.json +22 -0
  50. package/build/nodes/nrchkb.html +1753 -117
  51. package/build/nodes/nrchkb.js +66 -88
  52. package/build/nodes/plugin-instance.html +509 -0
  53. package/build/nodes/plugin-instance.js +46 -0
  54. package/build/nodes/service.html +557 -306
  55. package/build/nodes/service.js +5 -6
  56. package/build/nodes/service2.html +1735 -455
  57. package/build/nodes/service2.js +5 -8
  58. package/build/nodes/standalone.html +208 -176
  59. package/build/nodes/standalone.js +27 -9
  60. package/build/nodes/status.html +51 -18
  61. package/build/nodes/status.js +47 -41
  62. package/build/nodes/unifi-controller.html +92 -0
  63. package/build/nodes/unifi-controller.js +20 -0
  64. package/build/plugins/embedded/homebridge-camera-ffmpeg/index.js +479 -0
  65. package/build/plugins/embedded/homebridge-unifi-protect/index.js +521 -0
  66. package/build/plugins/embedded/index.js +58 -0
  67. package/build/plugins/nrchkb-homekit-plugins.js +17 -0
  68. package/build/plugins/registry/index.js +203 -0
  69. package/build/plugins/registry/types.js +16 -0
  70. package/build/scripts/migrate-homekit-service-flows.js +47 -0
  71. package/examples/demo/01 - ALL Demos single import.json +1885 -2139
  72. package/examples/demo/02 - Air Purifier.json +12 -61
  73. package/examples/demo/03 - Air Quality sensor with Battery.json +8 -36
  74. package/examples/demo/04 - Dimmable Bulb.json +4 -21
  75. package/examples/demo/05 - Color Bulb (HSV).json +5 -26
  76. package/examples/demo/06 - Fan (simple, 3 speeds).json +6 -31
  77. package/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json +4 -21
  78. package/examples/demo/08 - CO2 detector.json +8 -39
  79. package/examples/demo/09 - CO (carbon monoxide) example.json +9 -44
  80. package/examples/demo/10 - Door window contact sensor.json +8 -39
  81. package/examples/demos (advanced)/01 - Television with inputs and speaker.json +19 -85
  82. package/examples/switch/01 - Plain Switch.json +179 -199
  83. package/package.json +48 -34
  84. package/build/lib/HAPHostNode.d.ts +0 -1
  85. package/build/lib/HAPServiceNode.d.ts +0 -1
  86. package/build/lib/HAPServiceNode2.d.ts +0 -1
  87. package/build/lib/NRCHKBError.d.ts +0 -3
  88. package/build/lib/Storage.d.ts +0 -30
  89. package/build/lib/api.d.ts +0 -1
  90. package/build/lib/hap/HAPCharacteristic.d.ts +0 -9
  91. package/build/lib/hap/HAPService.d.ts +0 -6
  92. package/build/lib/hap/eve-app/EveCharacteristics.d.ts +0 -20
  93. package/build/lib/hap/eve-app/EveServices.d.ts +0 -5
  94. package/build/lib/types/AccessoryInformationType.d.ts +0 -11
  95. package/build/lib/types/CameraConfigType.d.ts +0 -24
  96. package/build/lib/types/CustomCharacteristicType.d.ts +0 -6
  97. package/build/lib/types/HAPHostConfigType.d.ts +0 -22
  98. package/build/lib/types/HAPHostNodeType.d.ts +0 -14
  99. package/build/lib/types/HAPService2ConfigType.d.ts +0 -6
  100. package/build/lib/types/HAPService2NodeType.d.ts +0 -7
  101. package/build/lib/types/HAPServiceConfigType.d.ts +0 -26
  102. package/build/lib/types/HAPServiceNodeType.d.ts +0 -38
  103. package/build/lib/types/HAPStatusConfigType.d.ts +0 -5
  104. package/build/lib/types/HAPStatusNodeType.d.ts +0 -12
  105. package/build/lib/types/HostType.d.ts +0 -5
  106. package/build/lib/types/NodeType.d.ts +0 -3
  107. package/build/lib/types/PublishTimersType.d.ts +0 -4
  108. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.d.ts +0 -5
  109. package/build/lib/types/hap-nodejs/HapCategories.d.ts +0 -41
  110. package/build/lib/types/storage/SerializedHostType.d.ts +0 -5
  111. package/build/lib/types/storage/StorageType.d.ts +0 -8
  112. package/build/lib/utils/AccessoryUtils.d.ts +0 -1
  113. package/build/lib/utils/BridgeUtils.d.ts +0 -1
  114. package/build/lib/utils/CharacteristicUtils.d.ts +0 -1
  115. package/build/lib/utils/CharacteristicUtils2.d.ts +0 -1
  116. package/build/lib/utils/NodeStatusUtils.d.ts +0 -17
  117. package/build/lib/utils/ServiceUtils.d.ts +0 -1
  118. package/build/lib/utils/ServiceUtils2.d.ts +0 -1
  119. package/build/lib/utils/index.d.ts +0 -1
  120. package/build/nodes/bridge.d.ts +0 -1
  121. package/build/nodes/nrchkb.d.ts +0 -1
  122. package/build/nodes/service.d.ts +0 -1
  123. package/build/nodes/service2.d.ts +0 -1
  124. package/build/nodes/standalone.d.ts +0 -1
  125. package/build/nodes/status.d.ts +0 -1
@@ -50,11 +50,7 @@
50
50
  "payloadType": "json",
51
51
  "x": 110,
52
52
  "y": 160,
53
- "wires": [
54
- [
55
- "5302e4aa.1b466c"
56
- ]
57
- ]
53
+ "wires": [["5302e4aa.1b466c"]]
58
54
  },
59
55
  {
60
56
  "id": "5302e4aa.1b466c",
@@ -99,13 +95,7 @@
99
95
  "outputs": 2,
100
96
  "x": 290,
101
97
  "y": 160,
102
- "wires": [
103
- [
104
- "bfe1c73d.c165a8",
105
- "9739d842.a402f"
106
- ],
107
- []
108
- ]
98
+ "wires": [["bfe1c73d.c165a8", "9739d842.a402f"], []]
109
99
  },
110
100
  {
111
101
  "id": "bfe1c73d.c165a8",
@@ -136,19 +126,8 @@
136
126
  "finalize": "",
137
127
  "x": 450,
138
128
  "y": 160,
139
- "wires": [
140
- [
141
- "664dadf9.85d0d4",
142
- "d7cd8a56.628178"
143
- ],
144
- [
145
- "3de34c4c.1871a4"
146
- ]
147
- ],
148
- "outputLabels": [
149
- "On",
150
- "Off"
151
- ]
129
+ "wires": [["664dadf9.85d0d4", "d7cd8a56.628178"], ["3de34c4c.1871a4"]],
130
+ "outputLabels": ["On", "Off"]
152
131
  },
153
132
  {
154
133
  "id": "87048a6e.df64e8",
@@ -170,11 +149,7 @@
170
149
  "payloadType": "json",
171
150
  "x": 110,
172
151
  "y": 200,
173
- "wires": [
174
- [
175
- "5302e4aa.1b466c"
176
- ]
177
- ]
152
+ "wires": [["5302e4aa.1b466c"]]
178
153
  },
179
154
  {
180
155
  "id": "db412cea.4a62f8",
@@ -196,11 +171,7 @@
196
171
  "payloadType": "json",
197
172
  "x": 110,
198
173
  "y": 240,
199
- "wires": [
200
- [
201
- "5302e4aa.1b466c"
202
- ]
203
- ]
174
+ "wires": [["5302e4aa.1b466c"]]
204
175
  },
205
176
  {
206
177
  "id": "46418e19.aa6d6",
@@ -208,16 +179,10 @@
208
179
  "z": "60b06629.a2ebd",
209
180
  "g": "60e44fde.c914f8",
210
181
  "name": "",
211
- "links": [
212
- "ee8894e4.f1855"
213
- ],
182
+ "links": ["ee8894e4.f1855"],
214
183
  "x": 235,
215
184
  "y": 240,
216
- "wires": [
217
- [
218
- "5302e4aa.1b466c"
219
- ]
220
- ]
185
+ "wires": [["5302e4aa.1b466c"]]
221
186
  },
222
187
  {
223
188
  "id": "664dadf9.85d0d4",
@@ -238,11 +203,7 @@
238
203
  "outputs": 1,
239
204
  "x": 650,
240
205
  "y": 160,
241
- "wires": [
242
- [
243
- "ee8894e4.f1855"
244
- ]
245
- ]
206
+ "wires": [["ee8894e4.f1855"]]
246
207
  },
247
208
  {
248
209
  "id": "d7cd8a56.628178",
@@ -263,11 +224,7 @@
263
224
  "outputs": 1,
264
225
  "x": 650,
265
226
  "y": 200,
266
- "wires": [
267
- [
268
- "ee8894e4.f1855"
269
- ]
270
- ]
227
+ "wires": [["ee8894e4.f1855"]]
271
228
  },
272
229
  {
273
230
  "id": "3de34c4c.1871a4",
@@ -288,11 +245,7 @@
288
245
  "outputs": 1,
289
246
  "x": 650,
290
247
  "y": 240,
291
- "wires": [
292
- [
293
- "ee8894e4.f1855"
294
- ]
295
- ]
248
+ "wires": [["ee8894e4.f1855"]]
296
249
  },
297
250
  {
298
251
  "id": "ee8894e4.f1855",
@@ -300,9 +253,7 @@
300
253
  "z": "60b06629.a2ebd",
301
254
  "g": "60e44fde.c914f8",
302
255
  "name": "",
303
- "links": [
304
- "46418e19.aa6d6"
305
- ],
256
+ "links": ["46418e19.aa6d6"],
306
257
  "x": 795,
307
258
  "y": 200,
308
259
  "wires": []
@@ -72,10 +72,7 @@
72
72
  "outputs": 2,
73
73
  "x": 750,
74
74
  "y": 280,
75
- "wires": [
76
- [],
77
- []
78
- ]
75
+ "wires": [[], []]
79
76
  },
80
77
  {
81
78
  "id": "a70b3192.dfb4f",
@@ -97,11 +94,7 @@
97
94
  "payloadType": "json",
98
95
  "x": 230,
99
96
  "y": 280,
100
- "wires": [
101
- [
102
- "560fc866.6de558"
103
- ]
104
- ]
97
+ "wires": [["560fc866.6de558"]]
105
98
  },
106
99
  {
107
100
  "id": "d5708f5.036c87",
@@ -123,11 +116,7 @@
123
116
  "payloadType": "date",
124
117
  "x": 220,
125
118
  "y": 380,
126
- "wires": [
127
- [
128
- "90b692e4.b9f6c"
129
- ]
130
- ]
119
+ "wires": [["90b692e4.b9f6c"]]
131
120
  },
132
121
  {
133
122
  "id": "90b692e4.b9f6c",
@@ -142,11 +131,7 @@
142
131
  "finalize": "",
143
132
  "x": 470,
144
133
  "y": 380,
145
- "wires": [
146
- [
147
- "5cd5342a.cfd72c"
148
- ]
149
- ]
134
+ "wires": [["5cd5342a.cfd72c"]]
150
135
  },
151
136
  {
152
137
  "id": "54bfafbc.396898",
@@ -168,11 +153,7 @@
168
153
  "payloadType": "json",
169
154
  "x": 500,
170
155
  "y": 320,
171
- "wires": [
172
- [
173
- "8088a797.e1a7c"
174
- ]
175
- ]
156
+ "wires": [["8088a797.e1a7c"]]
176
157
  },
177
158
  {
178
159
  "id": "560fc866.6de558",
@@ -187,11 +168,7 @@
187
168
  "finalize": "",
188
169
  "x": 500,
189
170
  "y": 280,
190
- "wires": [
191
- [
192
- "8088a797.e1a7c"
193
- ]
194
- ]
171
+ "wires": [["8088a797.e1a7c"]]
195
172
  },
196
173
  {
197
174
  "id": "61e113b2.dbb714",
@@ -204,9 +181,7 @@
204
181
  "fill": "#bfdbef",
205
182
  "label": true
206
183
  },
207
- "nodes": [
208
- "5cd5342a.cfd72c"
209
- ],
184
+ "nodes": ["5cd5342a.cfd72c"],
210
185
  "x": 654,
211
186
  "y": 339,
212
187
  "w": 172,
@@ -258,10 +233,7 @@
258
233
  "outputs": 2,
259
234
  "x": 740,
260
235
  "y": 380,
261
- "wires": [
262
- [],
263
- []
264
- ]
236
+ "wires": [[], []]
265
237
  },
266
238
  {
267
239
  "id": "409001a1.3e7a78",
@@ -67,12 +67,7 @@
67
67
  "outputs": 2,
68
68
  "x": 380,
69
69
  "y": 600,
70
- "wires": [
71
- [
72
- "379657db.a99df8"
73
- ],
74
- []
75
- ]
70
+ "wires": [["379657db.a99df8"], []]
76
71
  },
77
72
  {
78
73
  "id": "379657db.a99df8",
@@ -110,11 +105,7 @@
110
105
  "payloadType": "json",
111
106
  "x": 320,
112
107
  "y": 560,
113
- "wires": [
114
- [
115
- "459254fe.49c72c"
116
- ]
117
- ]
108
+ "wires": [["459254fe.49c72c"]]
118
109
  },
119
110
  {
120
111
  "id": "253b3550.729caa",
@@ -136,11 +127,7 @@
136
127
  "payloadType": "json",
137
128
  "x": 110,
138
129
  "y": 560,
139
- "wires": [
140
- [
141
- "459254fe.49c72c"
142
- ]
143
- ]
130
+ "wires": [["459254fe.49c72c"]]
144
131
  },
145
132
  {
146
133
  "id": "b9bc7f3d.51acf",
@@ -162,11 +149,7 @@
162
149
  "payloadType": "json",
163
150
  "x": 110,
164
151
  "y": 600,
165
- "wires": [
166
- [
167
- "459254fe.49c72c"
168
- ]
169
- ]
152
+ "wires": [["459254fe.49c72c"]]
170
153
  },
171
154
  {
172
155
  "id": "409001a1.3e7a78",
@@ -84,12 +84,7 @@
84
84
  "outputs": 2,
85
85
  "x": 410,
86
86
  "y": 780,
87
- "wires": [
88
- [
89
- "d838176b.dbaf7"
90
- ],
91
- []
92
- ]
87
+ "wires": [["d838176b.dbaf7"], []]
93
88
  },
94
89
  {
95
90
  "id": "ee1452a5.08edd",
@@ -111,11 +106,7 @@
111
106
  "payloadType": "json",
112
107
  "x": 340,
113
108
  "y": 700,
114
- "wires": [
115
- [
116
- "7bf880d4.3cd4d"
117
- ]
118
- ]
109
+ "wires": [["7bf880d4.3cd4d"]]
119
110
  },
120
111
  {
121
112
  "id": "c6ed2a2a.90a01",
@@ -137,11 +128,7 @@
137
128
  "payloadType": "json",
138
129
  "x": 110,
139
130
  "y": 700,
140
- "wires": [
141
- [
142
- "7bf880d4.3cd4d"
143
- ]
144
- ]
131
+ "wires": [["7bf880d4.3cd4d"]]
145
132
  },
146
133
  {
147
134
  "id": "8cdfae2b.2f2ce8",
@@ -163,11 +150,7 @@
163
150
  "payloadType": "json",
164
151
  "x": 120,
165
152
  "y": 780,
166
- "wires": [
167
- [
168
- "7bf880d4.3cd4d"
169
- ]
170
- ]
153
+ "wires": [["7bf880d4.3cd4d"]]
171
154
  },
172
155
  {
173
156
  "id": "1758401b.6c62e8",
@@ -189,11 +172,7 @@
189
172
  "payloadType": "json",
190
173
  "x": 110,
191
174
  "y": 740,
192
- "wires": [
193
- [
194
- "7bf880d4.3cd4d"
195
- ]
196
- ]
175
+ "wires": [["7bf880d4.3cd4d"]]
197
176
  },
198
177
  {
199
178
  "id": "409001a1.3e7a78",
@@ -87,12 +87,7 @@
87
87
  "outputs": 2,
88
88
  "x": 430,
89
89
  "y": 1860,
90
- "wires": [
91
- [
92
- "dadd634c.ae2258"
93
- ],
94
- []
95
- ]
90
+ "wires": [["dadd634c.ae2258"], []]
96
91
  },
97
92
  {
98
93
  "id": "992f4930.012aa",
@@ -118,11 +113,7 @@
118
113
  "payloadType": "json",
119
114
  "x": 380,
120
115
  "y": 1940,
121
- "wires": [
122
- [
123
- "753e3777.49a1d"
124
- ]
125
- ]
116
+ "wires": [["753e3777.49a1d"]]
126
117
  },
127
118
  {
128
119
  "id": "2497a466.aa0e84",
@@ -148,11 +139,7 @@
148
139
  "payloadType": "json",
149
140
  "x": 110,
150
141
  "y": 1860,
151
- "wires": [
152
- [
153
- "753e3777.49a1d"
154
- ]
155
- ]
142
+ "wires": [["753e3777.49a1d"]]
156
143
  },
157
144
  {
158
145
  "id": "c53b76fb.7a3cc8",
@@ -178,11 +165,7 @@
178
165
  "payloadType": "json",
179
166
  "x": 110,
180
167
  "y": 1900,
181
- "wires": [
182
- [
183
- "753e3777.49a1d"
184
- ]
185
- ]
168
+ "wires": [["753e3777.49a1d"]]
186
169
  },
187
170
  {
188
171
  "id": "6c9646ee.1f3a18",
@@ -208,11 +191,7 @@
208
191
  "payloadType": "json",
209
192
  "x": 120,
210
193
  "y": 1940,
211
- "wires": [
212
- [
213
- "753e3777.49a1d"
214
- ]
215
- ]
194
+ "wires": [["753e3777.49a1d"]]
216
195
  },
217
196
  {
218
197
  "id": "1e42a8f3.cf008f",
@@ -238,11 +217,7 @@
238
217
  "payloadType": "json",
239
218
  "x": 110,
240
219
  "y": 1980,
241
- "wires": [
242
- [
243
- "753e3777.49a1d"
244
- ]
245
- ]
220
+ "wires": [["753e3777.49a1d"]]
246
221
  },
247
222
  {
248
223
  "id": "409001a1.3e7a78",
@@ -83,12 +83,7 @@
83
83
  "outputs": 2,
84
84
  "x": 420,
85
85
  "y": 1660,
86
- "wires": [
87
- [
88
- "b7778e52.220a5"
89
- ],
90
- []
91
- ]
86
+ "wires": [["b7778e52.220a5"], []]
92
87
  },
93
88
  {
94
89
  "id": "c717b796.0735b8",
@@ -105,11 +100,7 @@
105
100
  "payloadType": "json",
106
101
  "x": 140,
107
102
  "y": 1760,
108
- "wires": [
109
- [
110
- "fd8aff55.91d41"
111
- ]
112
- ]
103
+ "wires": [["fd8aff55.91d41"]]
113
104
  },
114
105
  {
115
106
  "id": "f56a2f96.509c1",
@@ -135,11 +126,7 @@
135
126
  "payloadType": "json",
136
127
  "x": 120,
137
128
  "y": 1660,
138
- "wires": [
139
- [
140
- "fd8aff55.91d41"
141
- ]
142
- ]
129
+ "wires": [["fd8aff55.91d41"]]
143
130
  },
144
131
  {
145
132
  "id": "d945ba75.897998",
@@ -165,11 +152,7 @@
165
152
  "payloadType": "json",
166
153
  "x": 120,
167
154
  "y": 1700,
168
- "wires": [
169
- [
170
- "fd8aff55.91d41"
171
- ]
172
- ]
155
+ "wires": [["fd8aff55.91d41"]]
173
156
  },
174
157
  {
175
158
  "id": "409001a1.3e7a78",
@@ -69,10 +69,7 @@
69
69
  "outputs": 2,
70
70
  "x": 670,
71
71
  "y": 880,
72
- "wires": [
73
- [],
74
- []
75
- ]
72
+ "wires": [[], []]
76
73
  },
77
74
  {
78
75
  "id": "3611c654.8a42f2",
@@ -87,11 +84,7 @@
87
84
  "finalize": "",
88
85
  "x": 400,
89
86
  "y": 880,
90
- "wires": [
91
- [
92
- "88892b4.8a61bd8"
93
- ]
94
- ]
87
+ "wires": [["88892b4.8a61bd8"]]
95
88
  },
96
89
  {
97
90
  "id": "62cafcb0.8ade9c",
@@ -108,11 +101,7 @@
108
101
  "payloadType": "json",
109
102
  "x": 470,
110
103
  "y": 920,
111
- "wires": [
112
- [
113
- "88892b4.8a61bd8"
114
- ]
115
- ]
104
+ "wires": [["88892b4.8a61bd8"]]
116
105
  },
117
106
  {
118
107
  "id": "a0171cdb.f209b",
@@ -129,11 +118,7 @@
129
118
  "payloadType": "json",
130
119
  "x": 470,
131
120
  "y": 960,
132
- "wires": [
133
- [
134
- "88892b4.8a61bd8"
135
- ]
136
- ]
121
+ "wires": [["88892b4.8a61bd8"]]
137
122
  },
138
123
  {
139
124
  "id": "6f7de764.a6a688",
@@ -150,11 +135,7 @@
150
135
  "payloadType": "json",
151
136
  "x": 440,
152
137
  "y": 1000,
153
- "wires": [
154
- [
155
- "88892b4.8a61bd8"
156
- ]
157
- ]
138
+ "wires": [["88892b4.8a61bd8"]]
158
139
  },
159
140
  {
160
141
  "id": "8758b463.afb0f",
@@ -176,11 +157,7 @@
176
157
  "payloadType": "num",
177
158
  "x": 110,
178
159
  "y": 880,
179
- "wires": [
180
- [
181
- "3611c654.8a42f2"
182
- ]
183
- ]
160
+ "wires": [["3611c654.8a42f2"]]
184
161
  },
185
162
  {
186
163
  "id": "69e8161b.74b7a",
@@ -202,11 +179,7 @@
202
179
  "payloadType": "str",
203
180
  "x": 120,
204
181
  "y": 920,
205
- "wires": [
206
- [
207
- "3611c654.8a42f2"
208
- ]
209
- ]
182
+ "wires": [["3611c654.8a42f2"]]
210
183
  },
211
184
  {
212
185
  "id": "40010b09.c73cdc",
@@ -228,11 +201,7 @@
228
201
  "payloadType": "str",
229
202
  "x": 140,
230
203
  "y": 960,
231
- "wires": [
232
- [
233
- "3611c654.8a42f2"
234
- ]
235
- ]
204
+ "wires": [["3611c654.8a42f2"]]
236
205
  },
237
206
  {
238
207
  "id": "409001a1.3e7a78",
@@ -71,10 +71,7 @@
71
71
  "outputs": 2,
72
72
  "x": 670,
73
73
  "y": 1100,
74
- "wires": [
75
- [],
76
- []
77
- ]
74
+ "wires": [[], []]
78
75
  },
79
76
  {
80
77
  "id": "79889759.8219c",
@@ -89,11 +86,7 @@
89
86
  "finalize": "",
90
87
  "x": 380,
91
88
  "y": 1260,
92
- "wires": [
93
- [
94
- "2e6738a6.ef5dd8"
95
- ]
96
- ]
89
+ "wires": [["2e6738a6.ef5dd8"]]
97
90
  },
98
91
  {
99
92
  "id": "7f53465b.356a68",
@@ -108,11 +101,7 @@
108
101
  "finalize": "",
109
102
  "x": 390,
110
103
  "y": 1140,
111
- "wires": [
112
- [
113
- "2e6738a6.ef5dd8"
114
- ]
115
- ]
104
+ "wires": [["2e6738a6.ef5dd8"]]
116
105
  },
117
106
  {
118
107
  "id": "97aff586.786ff8",
@@ -138,11 +127,7 @@
138
127
  "payloadType": "json",
139
128
  "x": 400,
140
129
  "y": 1100,
141
- "wires": [
142
- [
143
- "2e6738a6.ef5dd8"
144
- ]
145
- ]
130
+ "wires": [["2e6738a6.ef5dd8"]]
146
131
  },
147
132
  {
148
133
  "id": "659ff3da.236404",
@@ -164,11 +149,7 @@
164
149
  "payloadType": "num",
165
150
  "x": 140,
166
151
  "y": 1260,
167
- "wires": [
168
- [
169
- "79889759.8219c"
170
- ]
171
- ]
152
+ "wires": [["79889759.8219c"]]
172
153
  },
173
154
  {
174
155
  "id": "e6105066.f8911",
@@ -185,11 +166,7 @@
185
166
  "payloadType": "num",
186
167
  "x": 130,
187
168
  "y": 1100,
188
- "wires": [
189
- [
190
- "7f53465b.356a68"
191
- ]
192
- ]
169
+ "wires": [["7f53465b.356a68"]]
193
170
  },
194
171
  {
195
172
  "id": "b433a780.665a7",
@@ -211,11 +188,7 @@
211
188
  "payloadType": "str",
212
189
  "x": 120,
213
190
  "y": 1300,
214
- "wires": [
215
- [
216
- "79889759.8219c"
217
- ]
218
- ]
191
+ "wires": [["79889759.8219c"]]
219
192
  },
220
193
  {
221
194
  "id": "d4b30334.a19e58",
@@ -237,11 +210,7 @@
237
210
  "payloadType": "str",
238
211
  "x": 140,
239
212
  "y": 1140,
240
- "wires": [
241
- [
242
- "7f53465b.356a68"
243
- ]
244
- ]
213
+ "wires": [["7f53465b.356a68"]]
245
214
  },
246
215
  {
247
216
  "id": "b0eeeb34.2dde8",
@@ -263,11 +232,7 @@
263
232
  "payloadType": "str",
264
233
  "x": 150,
265
234
  "y": 1180,
266
- "wires": [
267
- [
268
- "7f53465b.356a68"
269
- ]
270
- ]
235
+ "wires": [["7f53465b.356a68"]]
271
236
  },
272
237
  {
273
238
  "id": "409001a1.3e7a78",