node-red-contrib-prib-functions 0.22.0 → 0.23.3

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 (38) hide show
  1. package/README.md +142 -92
  2. package/lib/AlphaBeta.js +32 -0
  3. package/lib/GraphDB.js +40 -9
  4. package/lib/MinMax.js +17 -0
  5. package/lib/Tree.js +64 -0
  6. package/lib/common.js +128 -0
  7. package/lib/objectExtensions.js +213 -80
  8. package/lib/timeDimension.js +36 -0
  9. package/lib/typedInput.js +77 -0
  10. package/matrix/matrixNode.html +2 -1
  11. package/package.json +15 -13
  12. package/test/00-objectExtensions.js +192 -1
  13. package/test/02-graphdb.js +46 -0
  14. package/test/data/.config.nodes.json +3 -3
  15. package/test/data/.config.nodes.json.backup +3 -3
  16. package/test/data/.config.users.json +3 -2
  17. package/test/data/.config.users.json.backup +3 -2
  18. package/test/data/.flow.json.backup +3875 -472
  19. package/test/data/flow.json +3874 -471
  20. package/test/data/package-lock.json +11 -11
  21. package/test/data/shares/.config.nodes.json +589 -0
  22. package/test/data/shares/.config.runtime.json +4 -0
  23. package/test/data/shares/.config.runtime.json.backup +3 -0
  24. package/test/data/shares/.config.users.json +32 -0
  25. package/test/data/shares/.config.users.json.backup +29 -0
  26. package/test/data/shares/.flow.json.backup +230 -0
  27. package/test/data/shares/.flow_cred.json.backup +3 -0
  28. package/test/data/shares/flow.json +267 -0
  29. package/test/data/shares/flow_cred.json +3 -0
  30. package/test/data/shares/package.json +6 -0
  31. package/test/data/shares/settings.js +544 -0
  32. package/testing/test.js +63 -29
  33. package/transform/transform.html +185 -20
  34. package/transform/transform.js +272 -265
  35. package/transform/xlsx2.js +74 -0
  36. package/visual/shapes/base..js +1 -0
  37. package/visual/visual.js +0 -0
  38. package/visual/visualNode.js +45 -0
@@ -96,17 +96,18 @@
96
96
  {
97
97
  "id": "5866424ac23291eb",
98
98
  "type": "tab",
99
- "label": "transform",
99
+ "label": "transform array",
100
100
  "disabled": false,
101
101
  "info": "",
102
102
  "env": []
103
103
  },
104
104
  {
105
- "id": "924bb2b7.03fd1",
105
+ "id": "1374c39ae82adb4e",
106
106
  "type": "tab",
107
- "label": "transform xlsx",
107
+ "label": "transform date",
108
108
  "disabled": false,
109
- "info": ""
109
+ "info": "",
110
+ "env": []
110
111
  },
111
112
  {
112
113
  "id": "65b5beda2b73b7b5",
@@ -116,6 +117,70 @@
116
117
  "info": "",
117
118
  "env": []
118
119
  },
120
+ {
121
+ "id": "e45553957f2b6fab",
122
+ "type": "tab",
123
+ "label": "transform json",
124
+ "disabled": false,
125
+ "info": "",
126
+ "env": []
127
+ },
128
+ {
129
+ "id": "460ae66eec4b7f8a",
130
+ "type": "tab",
131
+ "label": "transform string",
132
+ "disabled": false,
133
+ "info": "",
134
+ "env": []
135
+ },
136
+ {
137
+ "id": "924bb2b7.03fd1",
138
+ "type": "tab",
139
+ "label": "transform xlsx",
140
+ "disabled": false,
141
+ "info": ""
142
+ },
143
+ {
144
+ "id": "680198a3be420949",
145
+ "type": "group",
146
+ "z": "1374c39ae82adb4e",
147
+ "name": "date is between",
148
+ "style": {
149
+ "label": true
150
+ },
151
+ "nodes": [
152
+ "49b2ad130416e0a0",
153
+ "8623ee29d4c12529",
154
+ "d6dab95d41cd38af",
155
+ "c81d74aeb883cd43",
156
+ "94c3bd1cdaed91d7"
157
+ ],
158
+ "x": 144,
159
+ "y": -1,
160
+ "w": 762,
161
+ "h": 142
162
+ },
163
+ {
164
+ "id": "68a2c0f4427ce400",
165
+ "type": "group",
166
+ "z": "1374c39ae82adb4e",
167
+ "name": "Range Limit",
168
+ "style": {
169
+ "label": true
170
+ },
171
+ "nodes": [
172
+ "4f6a21107d3e15fe",
173
+ "7fdb40764c01f99a",
174
+ "2b4dc03c0cb6ea2b",
175
+ "06787d2f44f5d979",
176
+ "e36d78184f2c0e34",
177
+ "b9d724057624e971"
178
+ ],
179
+ "x": 944,
180
+ "y": -1,
181
+ "w": 902,
182
+ "h": 142
183
+ },
119
184
  {
120
185
  "id": "a761e268.19bc7",
121
186
  "type": "append",
@@ -1270,7 +1335,7 @@
1270
1335
  "type": "test",
1271
1336
  "z": "cf595649.931658",
1272
1337
  "name": "autocovariance data",
1273
- "errorFactor": "",
1338
+ "errorFactor": "0.001",
1274
1339
  "escapeString": false,
1275
1340
  "infiniteIsNull": false,
1276
1341
  "payload": "[0.05,0.01,-0.02,0.03,-0.04,0.06,0.02,-0.01,-0.03,0.04]",
@@ -2652,11 +2717,14 @@
2652
2717
  "id": "f6d80561.d80d08",
2653
2718
  "type": "test",
2654
2719
  "z": "e4973c86.37d63",
2655
- "name": "",
2720
+ "name": "Fail expected",
2721
+ "errorFactor": "",
2722
+ "escapeString": false,
2656
2723
  "payload": "testa",
2657
2724
  "payloadType": "str",
2658
2725
  "result": "testb",
2659
2726
  "resultType": "str",
2727
+ "resultProperty": "msg.payload",
2660
2728
  "topic": "",
2661
2729
  "x": 330,
2662
2730
  "y": 140,
@@ -2682,7 +2750,7 @@
2682
2750
  "topic": "",
2683
2751
  "payload": "",
2684
2752
  "payloadType": "date",
2685
- "x": 60,
2753
+ "x": 100,
2686
2754
  "y": 20,
2687
2755
  "wires": [
2688
2756
  [
@@ -2747,7 +2815,7 @@
2747
2815
  "id": "575b7f19.b17d5",
2748
2816
  "type": "test",
2749
2817
  "z": "e4973c86.37d63",
2750
- "name": "",
2818
+ "name": "fail expected",
2751
2819
  "errorFactor": "0",
2752
2820
  "escapeString": false,
2753
2821
  "payload": "{\"a\":1,\"b\":\"two\"}",
@@ -2756,7 +2824,7 @@
2756
2824
  "resultType": "str",
2757
2825
  "resultProperty": "msg.payload",
2758
2826
  "topic": "",
2759
- "x": 350,
2827
+ "x": 300,
2760
2828
  "y": 380,
2761
2829
  "wires": [
2762
2830
  [
@@ -3069,44 +3137,6 @@
3069
3137
  ]
3070
3138
  ]
3071
3139
  },
3072
- {
3073
- "id": "2ce3786.acae688",
3074
- "type": "transform",
3075
- "z": "d9c7ae0e.cb9a9",
3076
- "name": "",
3077
- "actionSource": "JSON",
3078
- "actionTarget": "String",
3079
- "delimiter": ",",
3080
- "x": 580,
3081
- "y": 60,
3082
- "wires": [
3083
- [
3084
- "5ac2ef6c.d0953"
3085
- ],
3086
- []
3087
- ]
3088
- },
3089
- {
3090
- "id": "5ac2ef6c.d0953",
3091
- "type": "test",
3092
- "z": "d9c7ae0e.cb9a9",
3093
- "name": "",
3094
- "payload": "{\"a\":1,\"b\":1}",
3095
- "payloadType": "json",
3096
- "result": "{\"a\":1,\"b\":1}",
3097
- "resultType": "str",
3098
- "resultProperty": "msg.payload",
3099
- "topic": "",
3100
- "x": 300,
3101
- "y": 120,
3102
- "wires": [
3103
- [
3104
- "2ce3786.acae688"
3105
- ],
3106
- [],
3107
- []
3108
- ]
3109
- },
3110
3140
  {
3111
3141
  "id": "d9a04503.7fc3a8",
3112
3142
  "type": "debug",
@@ -3160,28 +3190,6 @@
3160
3190
  []
3161
3191
  ]
3162
3192
  },
3163
- {
3164
- "id": "b61d362a.9b7288",
3165
- "type": "inject",
3166
- "z": "d9c7ae0e.cb9a9",
3167
- "name": "",
3168
- "repeat": "",
3169
- "crontab": "",
3170
- "once": false,
3171
- "onceDelay": 0.1,
3172
- "topic": "",
3173
- "payload": "",
3174
- "payloadType": "date",
3175
- "x": 80,
3176
- "y": 40,
3177
- "wires": [
3178
- [
3179
- "5ac2ef6c.d0953",
3180
- "df3844b8.d62658",
3181
- "1996fa8b.414205"
3182
- ]
3183
- ]
3184
- },
3185
3193
  {
3186
3194
  "id": "eaa68e41.81cce",
3187
3195
  "type": "transform",
@@ -3249,8 +3257,31 @@
3249
3257
  "z": "d9c7ae0e.cb9a9",
3250
3258
  "name": "",
3251
3259
  "actionSource": "ISO8385",
3252
- "actionTarget": "Array",
3260
+ "deleteSource": "true",
3261
+ "deleteSourceType": "bool",
3262
+ "actionTarget": "JSON",
3263
+ "sourceProperty": "",
3264
+ "targetProperty": "",
3265
+ "topicProperty": "",
3266
+ "JSONataSource": "",
3267
+ "JSONataTarget": "",
3268
+ "index": "",
3269
+ "maxMessages": "",
3270
+ "maxDate": "",
3271
+ "minDate": "",
3272
+ "maxNumber": "",
3273
+ "minNumber": "",
3274
+ "maxString": "",
3275
+ "minString": "",
3276
+ "radix": "",
3277
+ "schema": "",
3278
+ "schemaType": "str",
3279
+ "skipLeading": "",
3280
+ "skipTrailing": "",
3281
+ "string": "",
3282
+ "stringType": "str",
3253
3283
  "delimiter": ",",
3284
+ "compressionType": "setGzip",
3254
3285
  "x": 510,
3255
3286
  "y": 420,
3256
3287
  "wires": [
@@ -3278,8 +3309,8 @@
3278
3309
  "actionSource": "JSON",
3279
3310
  "actionTarget": "HTML",
3280
3311
  "delimiter": ",",
3281
- "x": 520,
3282
- "y": 500,
3312
+ "x": 540,
3313
+ "y": 320,
3283
3314
  "wires": [
3284
3315
  [
3285
3316
  "d9a04503.7fc3a8"
@@ -3364,36 +3395,28 @@
3364
3395
  ]
3365
3396
  },
3366
3397
  {
3367
- "id": "91c9037a75567e24",
3368
- "type": "transform",
3369
- "z": "5866424ac23291eb",
3398
+ "id": "7d7f98d9f9c42629",
3399
+ "type": "link call",
3400
+ "z": "d9c7ae0e.cb9a9",
3370
3401
  "name": "",
3371
- "actionSource": "JSON",
3372
- "actionTarget": "Array",
3373
- "sourceProperty": "msg.payload",
3374
- "targetProperty": "msg.payload",
3375
- "topicProperty": "msg.topic",
3376
- "maxMessages": "10",
3377
- "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3378
- "schemaType": "json",
3379
- "skipLeading": 0,
3380
- "skipTrailing": 0,
3381
- "delimiter": ",",
3382
- "compressionType": "setGzip",
3383
- "x": 400,
3384
- "y": 20,
3402
+ "links": [
3403
+ "2605139b45f1f105"
3404
+ ],
3405
+ "linkType": "static",
3406
+ "timeout": "30",
3407
+ "x": 340,
3408
+ "y": 820,
3385
3409
  "wires": [
3386
3410
  [
3387
- "93c7047f87bbf964"
3388
- ],
3389
- []
3411
+ "39f69c675d39c38c"
3412
+ ]
3390
3413
  ]
3391
3414
  },
3392
3415
  {
3393
- "id": "b1b8cccd0ff0026a",
3416
+ "id": "93648bfe54fe290b",
3394
3417
  "type": "inject",
3395
- "z": "5866424ac23291eb",
3396
- "name": "json 0",
3418
+ "z": "d9c7ae0e.cb9a9",
3419
+ "name": "",
3397
3420
  "props": [
3398
3421
  {
3399
3422
  "p": "payload"
@@ -3407,63 +3430,165 @@
3407
3430
  "crontab": "",
3408
3431
  "once": false,
3409
3432
  "onceDelay": 0.1,
3410
- "topic": "json 0",
3411
- "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
3412
- "payloadType": "json",
3413
- "x": 70,
3414
- "y": 80,
3433
+ "topic": "",
3434
+ "payload": "",
3435
+ "payloadType": "date",
3436
+ "x": 120,
3437
+ "y": 740,
3415
3438
  "wires": [
3416
3439
  [
3417
- "91c9037a75567e24"
3440
+ "455bee5a8bfcd16f"
3418
3441
  ]
3419
3442
  ]
3420
3443
  },
3421
3444
  {
3422
- "id": "93c7047f87bbf964",
3445
+ "id": "44ba2e4231a7cf77",
3446
+ "type": "link call",
3447
+ "z": "d9c7ae0e.cb9a9",
3448
+ "name": "",
3449
+ "links": [
3450
+ "e057797d0b796145"
3451
+ ],
3452
+ "linkType": "static",
3453
+ "timeout": "30",
3454
+ "x": 670,
3455
+ "y": 100,
3456
+ "wires": [
3457
+ []
3458
+ ]
3459
+ },
3460
+ {
3461
+ "id": "455bee5a8bfcd16f",
3462
+ "type": "link call",
3463
+ "z": "d9c7ae0e.cb9a9",
3464
+ "name": "",
3465
+ "links": [
3466
+ "ef3c3bb841e5b85a"
3467
+ ],
3468
+ "linkType": "static",
3469
+ "timeout": "30",
3470
+ "x": 320,
3471
+ "y": 740,
3472
+ "wires": [
3473
+ [
3474
+ "52839bfb05b91f4c"
3475
+ ]
3476
+ ]
3477
+ },
3478
+ {
3479
+ "id": "810e0fa7d63baab2",
3480
+ "type": "link call",
3481
+ "z": "d9c7ae0e.cb9a9",
3482
+ "name": "",
3483
+ "links": [
3484
+ "e057797d0b796145"
3485
+ ],
3486
+ "linkType": "static",
3487
+ "timeout": "30",
3488
+ "x": 350,
3489
+ "y": 940,
3490
+ "wires": [
3491
+ [
3492
+ "6bda6a7cf990884d"
3493
+ ]
3494
+ ]
3495
+ },
3496
+ {
3497
+ "id": "6bda6a7cf990884d",
3423
3498
  "type": "debug",
3424
- "z": "5866424ac23291eb",
3425
- "name": "json",
3499
+ "z": "d9c7ae0e.cb9a9",
3500
+ "name": "Done",
3426
3501
  "active": true,
3427
3502
  "tosidebar": true,
3428
3503
  "console": false,
3429
3504
  "tostatus": false,
3430
- "complete": "true",
3431
- "targetType": "full",
3505
+ "complete": "payload",
3506
+ "targetType": "msg",
3432
3507
  "statusVal": "",
3433
3508
  "statusType": "auto",
3434
- "x": 650,
3435
- "y": 140,
3509
+ "x": 570,
3510
+ "y": 960,
3436
3511
  "wires": []
3437
3512
  },
3438
3513
  {
3439
- "id": "9c00ca32910aa65b",
3440
- "type": "inject",
3441
- "z": "5866424ac23291eb",
3442
- "name": "json 1",
3443
- "props": [
3444
- {
3445
- "p": "payload"
3446
- },
3447
- {
3448
- "p": "topic",
3449
- "vt": "str"
3450
- }
3514
+ "id": "52839bfb05b91f4c",
3515
+ "type": "Monitor Flow",
3516
+ "z": "d9c7ae0e.cb9a9",
3517
+ "name": "",
3518
+ "x": 550,
3519
+ "y": 740,
3520
+ "wires": [
3521
+ [
3522
+ "11ca1573aaaf8288"
3523
+ ]
3524
+ ]
3525
+ },
3526
+ {
3527
+ "id": "39f69c675d39c38c",
3528
+ "type": "Monitor Flow",
3529
+ "z": "d9c7ae0e.cb9a9",
3530
+ "name": "",
3531
+ "x": 550,
3532
+ "y": 820,
3533
+ "wires": [
3534
+ [
3535
+ "6fe703fe6cf5f12d"
3536
+ ]
3537
+ ]
3538
+ },
3539
+ {
3540
+ "id": "6fe703fe6cf5f12d",
3541
+ "type": "link call",
3542
+ "z": "d9c7ae0e.cb9a9",
3543
+ "name": "",
3544
+ "links": [
3545
+ "8bc4d0adfbe612e5"
3451
3546
  ],
3452
- "repeat": "",
3453
- "crontab": "",
3454
- "once": false,
3455
- "onceDelay": 0.1,
3456
- "topic": "json 1",
3457
- "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
3458
- "payloadType": "json",
3459
- "x": 70,
3460
- "y": 140,
3547
+ "linkType": "static",
3548
+ "timeout": "30",
3549
+ "x": 330,
3550
+ "y": 880,
3461
3551
  "wires": [
3462
3552
  [
3463
- "de625a76baddbeab"
3553
+ "810e0fa7d63baab2"
3554
+ ]
3555
+ ]
3556
+ },
3557
+ {
3558
+ "id": "11ca1573aaaf8288",
3559
+ "type": "link call",
3560
+ "z": "d9c7ae0e.cb9a9",
3561
+ "name": "",
3562
+ "links": [
3563
+ "0c1e0f0f3543e49e"
3564
+ ],
3565
+ "linkType": "static",
3566
+ "timeout": "30",
3567
+ "x": 340,
3568
+ "y": 780,
3569
+ "wires": [
3570
+ [
3571
+ "7d7f98d9f9c42629"
3464
3572
  ]
3465
3573
  ]
3466
3574
  },
3575
+ {
3576
+ "id": "93c7047f87bbf964",
3577
+ "type": "debug",
3578
+ "z": "5866424ac23291eb",
3579
+ "name": "error",
3580
+ "active": true,
3581
+ "tosidebar": true,
3582
+ "console": false,
3583
+ "tostatus": false,
3584
+ "complete": "true",
3585
+ "targetType": "full",
3586
+ "statusVal": "",
3587
+ "statusType": "auto",
3588
+ "x": 970,
3589
+ "y": 200,
3590
+ "wires": []
3591
+ },
3467
3592
  {
3468
3593
  "id": "de625a76baddbeab",
3469
3594
  "type": "transform",
@@ -3481,214 +3606,230 @@
3481
3606
  "skipTrailing": 0,
3482
3607
  "delimiter": ",",
3483
3608
  "compressionType": "setGzip",
3484
- "x": 390,
3485
- "y": 140,
3609
+ "x": 630,
3610
+ "y": 280,
3486
3611
  "wires": [
3487
3612
  [
3488
- "93c7047f87bbf964"
3613
+ "b8a38eb268a6e0c8"
3489
3614
  ],
3490
3615
  []
3491
3616
  ]
3492
3617
  },
3493
3618
  {
3494
- "id": "bb90849ccf68f393",
3495
- "type": "inject",
3619
+ "id": "911d448d61a99628",
3620
+ "type": "transform",
3496
3621
  "z": "5866424ac23291eb",
3497
3622
  "name": "",
3498
- "props": [
3499
- {
3500
- "p": "payload"
3501
- },
3502
- {
3503
- "p": "topic",
3504
- "vt": "str"
3505
- }
3506
- ],
3507
- "repeat": "",
3508
- "crontab": "",
3509
- "once": false,
3510
- "onceDelay": 0.1,
3511
- "topic": "[[1,2],[3,4]]",
3512
- "payload": "[[1,2],[3,4]]",
3513
- "payloadType": "json",
3514
- "x": 120,
3515
- "y": 20,
3623
+ "actionSource": "Array",
3624
+ "actionTarget": "HTML",
3625
+ "sourceProperty": "msg.payload",
3626
+ "targetProperty": "msg.payload",
3627
+ "topicProperty": "msg.topic",
3628
+ "maxMessages": 1000,
3629
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3630
+ "schemaType": "json",
3631
+ "skipLeading": 0,
3632
+ "skipTrailing": 0,
3633
+ "delimiter": ",",
3634
+ "compressionType": "setGzip",
3635
+ "x": 640,
3636
+ "y": 360,
3516
3637
  "wires": [
3517
3638
  [
3518
- "91c9037a75567e24",
3519
- "911d448d61a99628"
3520
- ]
3639
+ "238111a6a4d2eb17"
3640
+ ],
3641
+ []
3521
3642
  ]
3522
3643
  },
3523
3644
  {
3524
- "id": "27cd97468b385aa4",
3525
- "type": "inject",
3645
+ "id": "238111a6a4d2eb17",
3646
+ "type": "test",
3526
3647
  "z": "5866424ac23291eb",
3527
3648
  "name": "",
3528
- "props": [
3529
- {
3530
- "p": "payload"
3531
- },
3532
- {
3533
- "p": "topic",
3534
- "vt": "str"
3535
- }
3536
- ],
3537
- "repeat": "",
3538
- "crontab": "",
3539
- "once": false,
3540
- "onceDelay": 0.1,
3541
- "topic": "[[1,2],[2,3]]",
3542
- "payload": "[[1,2],[2,3]]",
3649
+ "errorFactor": 0,
3650
+ "escapeString": false,
3651
+ "infiniteIsNull": false,
3652
+ "payload": "[[1,2],[3,4]]",
3543
3653
  "payloadType": "json",
3544
- "x": 120,
3545
- "y": 200,
3654
+ "result": "<table><tr><td><![CDATA[1]]></td><td><![CDATA[2]]></td></tr><tr><td><![CDATA[3]]></td><td><![CDATA[4]]></td></tr></table>",
3655
+ "resultType": "str",
3656
+ "resultProperty": "msg.payload",
3657
+ "topic": "",
3658
+ "x": 350,
3659
+ "y": 360,
3546
3660
  "wires": [
3547
3661
  [
3548
- "de625a76baddbeab",
3549
3662
  "911d448d61a99628"
3663
+ ],
3664
+ [
3665
+ "93c7047f87bbf964"
3666
+ ],
3667
+ [
3668
+ "4a732ba4ce49193b"
3550
3669
  ]
3551
3670
  ]
3552
3671
  },
3553
3672
  {
3554
- "id": "04806c30ac0f2050",
3555
- "type": "inject",
3673
+ "id": "4a732ba4ce49193b",
3674
+ "type": "test",
3556
3675
  "z": "5866424ac23291eb",
3557
- "name": "[{\"item\":\"1\",\"item-2\":\"2\"},...",
3558
- "props": [
3559
- {
3560
- "p": "payload"
3561
- },
3562
- {
3563
- "p": "topic",
3564
- "v": "topic",
3565
- "vt": "msg"
3566
- }
3567
- ],
3568
- "repeat": "",
3569
- "crontab": "",
3570
- "once": false,
3571
- "onceDelay": 0.1,
3572
- "topic": "",
3573
- "payload": "[{\"item\":\"1\",\"item-2\":\"2\"},{\"item\":\"3\",\"item-1\":\"4\"},\"test\",[1,2,3]]",
3676
+ "name": "",
3677
+ "errorFactor": 0,
3678
+ "escapeString": false,
3679
+ "infiniteIsNull": false,
3680
+ "payload": "[[1,2],[3,4]]",
3574
3681
  "payloadType": "json",
3575
- "x": 130,
3576
- "y": 260,
3682
+ "result": "[[\"0\",[[\"0\",1],[\"1\",2]]],[\"1\",[[\"0\",3],[\"1\",4]]]]",
3683
+ "resultType": "json",
3684
+ "resultProperty": "msg.payload",
3685
+ "topic": "",
3686
+ "x": 340,
3687
+ "y": 440,
3577
3688
  "wires": [
3578
3689
  [
3579
- "de625a76baddbeab"
3690
+ "dd65575382bcf216"
3691
+ ],
3692
+ [
3693
+ "93c7047f87bbf964"
3694
+ ],
3695
+ [
3696
+ "b12a345acca22450"
3580
3697
  ]
3581
3698
  ]
3582
3699
  },
3583
3700
  {
3584
- "id": "911d448d61a99628",
3701
+ "id": "dd65575382bcf216",
3585
3702
  "type": "transform",
3586
3703
  "z": "5866424ac23291eb",
3587
3704
  "name": "",
3588
- "actionSource": "Array",
3589
- "actionTarget": "HTML",
3705
+ "actionSource": "JSON",
3706
+ "deleteSource": "true",
3707
+ "deleteSourceType": "bool",
3708
+ "actionTarget": "Array",
3590
3709
  "sourceProperty": "msg.payload",
3591
3710
  "targetProperty": "msg.payload",
3592
3711
  "topicProperty": "msg.topic",
3593
- "maxMessages": 1000,
3712
+ "index": "",
3713
+ "maxMessages": "10",
3714
+ "maxDate": "",
3715
+ "minDate": "",
3716
+ "maxNumber": "",
3717
+ "minNumber": "",
3718
+ "maxString": "",
3719
+ "minString": "",
3720
+ "radix": "",
3594
3721
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3595
- "schemaType": "json",
3722
+ "schemaType": "str",
3596
3723
  "skipLeading": 0,
3597
3724
  "skipTrailing": 0,
3725
+ "string": "",
3726
+ "stringType": "str",
3598
3727
  "delimiter": ",",
3599
3728
  "compressionType": "setGzip",
3600
- "x": 460,
3601
- "y": 300,
3729
+ "x": 640,
3730
+ "y": 440,
3602
3731
  "wires": [
3603
3732
  [
3604
- "c768833a7c496c36"
3733
+ "4a732ba4ce49193b"
3605
3734
  ],
3606
- []
3735
+ [
3736
+ "93c7047f87bbf964"
3737
+ ]
3607
3738
  ]
3608
3739
  },
3609
3740
  {
3610
- "id": "c768833a7c496c36",
3611
- "type": "debug",
3741
+ "id": "b12a345acca22450",
3742
+ "type": "test",
3612
3743
  "z": "5866424ac23291eb",
3613
- "name": "array to html",
3614
- "active": true,
3615
- "tosidebar": true,
3616
- "console": false,
3617
- "tostatus": false,
3618
- "complete": "true",
3619
- "targetType": "full",
3620
- "statusVal": "",
3621
- "statusType": "auto",
3622
- "x": 690,
3623
- "y": 300,
3624
- "wires": []
3625
- },
3626
- {
3627
- "id": "2a9b4180.1b8ffe",
3628
- "type": "inject",
3629
- "z": "924bb2b7.03fd1",
3630
- "name": "json xcel worksheets",
3631
- "props": [
3632
- {
3633
- "p": "payload"
3634
- },
3635
- {
3636
- "p": "topic",
3637
- "vt": "str"
3638
- }
3639
- ],
3640
- "repeat": "",
3641
- "crontab": "",
3642
- "once": false,
3643
- "onceDelay": 0.1,
3644
- "topic": "",
3645
- "payload": "{\"worksheet1\":[[11,12],[21,22],[31,32]],\"worksheet2\":[[11,12],[21,22]]}",
3744
+ "name": "",
3745
+ "errorFactor": 0,
3746
+ "escapeString": false,
3747
+ "infiniteIsNull": false,
3748
+ "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
3646
3749
  "payloadType": "json",
3647
- "x": 110,
3648
- "y": 60,
3750
+ "result": "[[\"item\",\"aaa\"],[\"item-2\",\"bbbb\"],[\"item-3\",[[\"a\",1],[\"item\",0]]]]",
3751
+ "resultType": "json",
3752
+ "resultProperty": "msg.payload",
3753
+ "topic": "",
3754
+ "x": 350,
3755
+ "y": 520,
3649
3756
  "wires": [
3650
3757
  [
3651
- "b99caf39.d57c9"
3758
+ "0ce4bc8bf5d5705a"
3759
+ ],
3760
+ [
3761
+ "93c7047f87bbf964"
3762
+ ],
3763
+ [
3764
+ "3c77d5233e994214"
3652
3765
  ]
3653
3766
  ]
3654
3767
  },
3655
3768
  {
3656
- "id": "b99caf39.d57c9",
3769
+ "id": "0ce4bc8bf5d5705a",
3657
3770
  "type": "transform",
3658
- "z": "924bb2b7.03fd1",
3771
+ "z": "5866424ac23291eb",
3659
3772
  "name": "",
3660
- "actionSource": "Array",
3661
- "actionTarget": "XLSX",
3773
+ "actionSource": "JSON",
3774
+ "actionTarget": "Array",
3662
3775
  "sourceProperty": "msg.payload",
3663
- "targetProperty": "msg.xlsx",
3776
+ "targetProperty": "msg.payload",
3664
3777
  "topicProperty": "msg.topic",
3665
- "maxMessages": 1000,
3778
+ "maxMessages": "10",
3666
3779
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3667
3780
  "schemaType": "json",
3668
3781
  "skipLeading": 0,
3669
3782
  "skipTrailing": 0,
3670
3783
  "delimiter": ",",
3671
- "x": 380,
3672
- "y": 60,
3784
+ "compressionType": "setGzip",
3785
+ "x": 640,
3786
+ "y": 520,
3673
3787
  "wires": [
3674
3788
  [
3675
- "e234842f.2946a8",
3676
- "7bde11d2.378e6"
3789
+ "b12a345acca22450"
3677
3790
  ],
3678
3791
  [
3679
- "3db2b919.ea68d6"
3792
+ "93c7047f87bbf964"
3793
+ ]
3794
+ ]
3795
+ },
3796
+ {
3797
+ "id": "16fb26ead524acd9",
3798
+ "type": "test",
3799
+ "z": "5866424ac23291eb",
3800
+ "name": "",
3801
+ "errorFactor": 0,
3802
+ "escapeString": false,
3803
+ "infiniteIsNull": false,
3804
+ "payload": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
3805
+ "payloadType": "json",
3806
+ "result": "{\"item\":\"aaa\",\"item-2\":\"bbbb\",\"item-3\":{\"a\":1,\"item\":0}}",
3807
+ "resultType": "str",
3808
+ "resultProperty": "msg.payload",
3809
+ "topic": "",
3810
+ "x": 350,
3811
+ "y": 40,
3812
+ "wires": [
3813
+ [
3814
+ "22615f5fec6c0175"
3815
+ ],
3816
+ [
3817
+ "93c7047f87bbf964"
3818
+ ],
3819
+ [
3820
+ "2d70fc47c71dc4a7"
3680
3821
  ]
3681
3822
  ]
3682
3823
  },
3683
3824
  {
3684
- "id": "7bde11d2.378e6",
3825
+ "id": "22615f5fec6c0175",
3685
3826
  "type": "transform",
3686
- "z": "924bb2b7.03fd1",
3827
+ "z": "5866424ac23291eb",
3687
3828
  "name": "",
3688
- "actionSource": "Array",
3689
- "actionTarget": "XLSXObject",
3829
+ "actionSource": "JSON",
3830
+ "actionTarget": "CSV",
3690
3831
  "sourceProperty": "msg.payload",
3691
- "targetProperty": "msg.xlsxobject",
3832
+ "targetProperty": "msg.payload",
3692
3833
  "topicProperty": "msg.topic",
3693
3834
  "maxMessages": 1000,
3694
3835
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
@@ -3696,26 +3837,55 @@
3696
3837
  "skipLeading": 0,
3697
3838
  "skipTrailing": 0,
3698
3839
  "delimiter": ",",
3699
- "x": 360,
3840
+ "compressionType": "setGzip",
3841
+ "x": 630,
3842
+ "y": 40,
3843
+ "wires": [
3844
+ [
3845
+ "16fb26ead524acd9"
3846
+ ],
3847
+ [
3848
+ "93c7047f87bbf964"
3849
+ ]
3850
+ ]
3851
+ },
3852
+ {
3853
+ "id": "2d70fc47c71dc4a7",
3854
+ "type": "test",
3855
+ "z": "5866424ac23291eb",
3856
+ "name": "",
3857
+ "errorFactor": 0,
3858
+ "escapeString": true,
3859
+ "infiniteIsNull": false,
3860
+ "payload": "[[1,2],[2,3]]",
3861
+ "payloadType": "json",
3862
+ "result": "1,2\\n2,3",
3863
+ "resultType": "str",
3864
+ "resultProperty": "msg.payload",
3865
+ "topic": "",
3866
+ "x": 330,
3700
3867
  "y": 120,
3701
3868
  "wires": [
3702
3869
  [
3703
- "8e6f5298.ccab4"
3870
+ "e2379b2107153487"
3704
3871
  ],
3705
3872
  [
3706
- "3db2b919.ea68d6"
3873
+ "93c7047f87bbf964"
3874
+ ],
3875
+ [
3876
+ "2a05da2094352897"
3707
3877
  ]
3708
3878
  ]
3709
3879
  },
3710
3880
  {
3711
- "id": "8e6f5298.ccab4",
3881
+ "id": "e2379b2107153487",
3712
3882
  "type": "transform",
3713
- "z": "924bb2b7.03fd1",
3883
+ "z": "5866424ac23291eb",
3714
3884
  "name": "",
3715
- "actionSource": "XLSX",
3716
- "actionTarget": "Array",
3717
- "sourceProperty": "msg.xlsx",
3718
- "targetProperty": "msg.array",
3885
+ "actionSource": "JSON",
3886
+ "actionTarget": "CSV",
3887
+ "sourceProperty": "msg.payload",
3888
+ "targetProperty": "msg.payload",
3719
3889
  "topicProperty": "msg.topic",
3720
3890
  "maxMessages": 1000,
3721
3891
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
@@ -3723,26 +3893,27 @@
3723
3893
  "skipLeading": 0,
3724
3894
  "skipTrailing": 0,
3725
3895
  "delimiter": ",",
3726
- "x": 380,
3727
- "y": 180,
3896
+ "compressionType": "setGzip",
3897
+ "x": 630,
3898
+ "y": 120,
3728
3899
  "wires": [
3729
3900
  [
3730
- "3db2b919.ea68d6"
3901
+ "2d70fc47c71dc4a7"
3731
3902
  ],
3732
3903
  [
3733
- "3db2b919.ea68d6"
3904
+ "93c7047f87bbf964"
3734
3905
  ]
3735
3906
  ]
3736
3907
  },
3737
3908
  {
3738
- "id": "e234842f.2946a8",
3909
+ "id": "bb791331d4215f9d",
3739
3910
  "type": "transform",
3740
- "z": "924bb2b7.03fd1",
3911
+ "z": "5866424ac23291eb",
3741
3912
  "name": "",
3742
- "actionSource": "XLSX",
3743
- "actionTarget": "XLSXObject",
3744
- "sourceProperty": "msg.xlsx",
3745
- "targetProperty": "msg.xlsx2xlsxObject",
3913
+ "actionSource": "Array",
3914
+ "actionTarget": "HTML",
3915
+ "sourceProperty": "msg.payload",
3916
+ "targetProperty": "msg.payload",
3746
3917
  "topicProperty": "msg.topic",
3747
3918
  "maxMessages": 1000,
3748
3919
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
@@ -3750,20 +3921,212 @@
3750
3921
  "skipLeading": 0,
3751
3922
  "skipTrailing": 0,
3752
3923
  "delimiter": ",",
3753
- "x": 660,
3924
+ "compressionType": "setGzip",
3925
+ "x": 640,
3926
+ "y": 200,
3927
+ "wires": [
3928
+ [
3929
+ "2a05da2094352897"
3930
+ ],
3931
+ [
3932
+ "93c7047f87bbf964"
3933
+ ]
3934
+ ]
3935
+ },
3936
+ {
3937
+ "id": "2a05da2094352897",
3938
+ "type": "test",
3939
+ "z": "5866424ac23291eb",
3940
+ "name": "",
3941
+ "errorFactor": 0,
3942
+ "escapeString": false,
3943
+ "infiniteIsNull": false,
3944
+ "payload": "[[1,2],[2,3]]",
3945
+ "payloadType": "json",
3946
+ "result": "<table><tr><td><![CDATA[1]]></td><td><![CDATA[2]]></td></tr><tr><td><![CDATA[2]]></td><td><![CDATA[3]]></td></tr></table>",
3947
+ "resultType": "str",
3948
+ "resultProperty": "msg.payload",
3949
+ "topic": "",
3950
+ "x": 350,
3951
+ "y": 200,
3952
+ "wires": [
3953
+ [
3954
+ "bb791331d4215f9d"
3955
+ ],
3956
+ [
3957
+ "93c7047f87bbf964"
3958
+ ],
3959
+ [
3960
+ "b8a38eb268a6e0c8"
3961
+ ]
3962
+ ]
3963
+ },
3964
+ {
3965
+ "id": "b8a38eb268a6e0c8",
3966
+ "type": "test",
3967
+ "z": "5866424ac23291eb",
3968
+ "name": "",
3969
+ "errorFactor": 0,
3970
+ "escapeString": true,
3971
+ "infiniteIsNull": false,
3972
+ "payload": "[{\"item\":\"1\",\"item-2\":\"2\"},{\"item\":\"3\",\"item-1\":\"4\"},\"test\",[1,2,3]]",
3973
+ "payloadType": "json",
3974
+ "result": "item,item-1,item-2\\n1,,2\\n3,4,\\n,,,\"test\"\\n,,,[1,2,3]",
3975
+ "resultType": "str",
3976
+ "resultProperty": "msg.payload",
3977
+ "topic": "",
3978
+ "x": 350,
3979
+ "y": 280,
3980
+ "wires": [
3981
+ [
3982
+ "de625a76baddbeab"
3983
+ ],
3984
+ [
3985
+ "93c7047f87bbf964"
3986
+ ],
3987
+ [
3988
+ "238111a6a4d2eb17"
3989
+ ]
3990
+ ]
3991
+ },
3992
+ {
3993
+ "id": "ef3c3bb841e5b85a",
3994
+ "type": "link in",
3995
+ "z": "5866424ac23291eb",
3996
+ "name": "transform array",
3997
+ "links": [],
3998
+ "x": 105,
3999
+ "y": 40,
4000
+ "wires": [
4001
+ [
4002
+ "16fb26ead524acd9"
4003
+ ]
4004
+ ]
4005
+ },
4006
+ {
4007
+ "id": "3c77d5233e994214",
4008
+ "type": "link out",
4009
+ "z": "5866424ac23291eb",
4010
+ "name": "transform array finished",
4011
+ "mode": "return",
4012
+ "links": [],
4013
+ "x": 555,
4014
+ "y": 620,
4015
+ "wires": []
4016
+ },
4017
+ {
4018
+ "id": "49b2ad130416e0a0",
4019
+ "type": "transform",
4020
+ "z": "1374c39ae82adb4e",
4021
+ "g": "680198a3be420949",
4022
+ "name": "",
4023
+ "actionSource": "String",
4024
+ "deleteSource": "false",
4025
+ "deleteSourceType": "bool",
4026
+ "actionTarget": "Date",
4027
+ "sourceProperty": "msg.payload.testDate",
4028
+ "targetProperty": "msg.payload.typedDate",
4029
+ "topicProperty": "msg.topic",
4030
+ "index": 0,
4031
+ "maxMessages": 1000,
4032
+ "maxDate": "",
4033
+ "minDate": "",
4034
+ "maxNumber": 0,
4035
+ "minNumber": 0,
4036
+ "maxString": "",
4037
+ "minString": "",
4038
+ "radix": 10,
4039
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4040
+ "schemaType": "str",
4041
+ "skipLeading": 0,
4042
+ "skipTrailing": 0,
4043
+ "string": "",
4044
+ "stringType": "str",
4045
+ "delimiter": ",",
4046
+ "compressionType": "setGzip",
4047
+ "x": 350,
3754
4048
  "y": 60,
3755
4049
  "wires": [
3756
4050
  [
3757
- "5312687f.3fff48"
4051
+ "8623ee29d4c12529"
3758
4052
  ],
3759
4053
  []
3760
4054
  ]
3761
4055
  },
3762
4056
  {
3763
- "id": "5312687f.3fff48",
4057
+ "id": "8623ee29d4c12529",
4058
+ "type": "transform",
4059
+ "z": "1374c39ae82adb4e",
4060
+ "g": "680198a3be420949",
4061
+ "name": "",
4062
+ "actionSource": "Date",
4063
+ "deleteSource": "false",
4064
+ "deleteSourceType": "bool",
4065
+ "actionTarget": "isBetween",
4066
+ "sourceProperty": "msg.payload.typedDate",
4067
+ "targetProperty": "msg.payload.result",
4068
+ "topicProperty": "msg.topic",
4069
+ "index": 0,
4070
+ "maxMessages": 1000,
4071
+ "maxDate": "2025-04-29",
4072
+ "minDate": "2025-04-21",
4073
+ "maxNumber": 0,
4074
+ "minNumber": 0,
4075
+ "maxString": "",
4076
+ "minString": "",
4077
+ "radix": 10,
4078
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4079
+ "schemaType": "str",
4080
+ "skipLeading": 0,
4081
+ "skipTrailing": 0,
4082
+ "string": "",
4083
+ "stringType": "str",
4084
+ "delimiter": ",",
4085
+ "compressionType": "setGzip",
4086
+ "x": 590,
4087
+ "y": 80,
4088
+ "wires": [
4089
+ [
4090
+ "c81d74aeb883cd43"
4091
+ ],
4092
+ [
4093
+ "94c3bd1cdaed91d7"
4094
+ ]
4095
+ ]
4096
+ },
4097
+ {
4098
+ "id": "d6dab95d41cd38af",
4099
+ "type": "link in",
4100
+ "z": "1374c39ae82adb4e",
4101
+ "g": "680198a3be420949",
4102
+ "name": "is Between",
4103
+ "links": [],
4104
+ "x": 185,
4105
+ "y": 60,
4106
+ "wires": [
4107
+ [
4108
+ "49b2ad130416e0a0"
4109
+ ]
4110
+ ]
4111
+ },
4112
+ {
4113
+ "id": "c81d74aeb883cd43",
4114
+ "type": "link out",
4115
+ "z": "1374c39ae82adb4e",
4116
+ "g": "680198a3be420949",
4117
+ "name": "link out 1",
4118
+ "mode": "return",
4119
+ "links": [],
4120
+ "x": 865,
4121
+ "y": 40,
4122
+ "wires": []
4123
+ },
4124
+ {
4125
+ "id": "94c3bd1cdaed91d7",
3764
4126
  "type": "debug",
3765
- "z": "924bb2b7.03fd1",
3766
- "name": "base",
4127
+ "z": "1374c39ae82adb4e",
4128
+ "g": "680198a3be420949",
4129
+ "name": "error",
3767
4130
  "active": true,
3768
4131
  "tosidebar": true,
3769
4132
  "console": false,
@@ -3772,15 +4135,61 @@
3772
4135
  "targetType": "full",
3773
4136
  "statusVal": "",
3774
4137
  "statusType": "auto",
3775
- "x": 870,
3776
- "y": 60,
4138
+ "x": 790,
4139
+ "y": 100,
3777
4140
  "wires": []
3778
4141
  },
3779
4142
  {
3780
- "id": "3db2b919.ea68d6",
3781
- "type": "debug",
3782
- "z": "924bb2b7.03fd1",
4143
+ "id": "cafcd8870a79cace",
4144
+ "type": "link call",
4145
+ "z": "1374c39ae82adb4e",
3783
4146
  "name": "",
4147
+ "links": [
4148
+ "d6dab95d41cd38af"
4149
+ ],
4150
+ "linkType": "static",
4151
+ "timeout": "30",
4152
+ "x": 470,
4153
+ "y": 240,
4154
+ "wires": [
4155
+ [
4156
+ "d96341af5b44e199"
4157
+ ]
4158
+ ]
4159
+ },
4160
+ {
4161
+ "id": "d96341af5b44e199",
4162
+ "type": "test",
4163
+ "z": "1374c39ae82adb4e",
4164
+ "name": "2025-03-01",
4165
+ "errorFactor": 0,
4166
+ "escapeString": false,
4167
+ "infiniteIsNull": false,
4168
+ "payload": "{\"testDate\":\"2025-03-01\"}",
4169
+ "payloadType": "json",
4170
+ "result": "false",
4171
+ "resultType": "bool",
4172
+ "resultProperty": "msg.payload.result",
4173
+ "topic": "",
4174
+ "x": 190,
4175
+ "y": 240,
4176
+ "wires": [
4177
+ [
4178
+ "cafcd8870a79cace"
4179
+ ],
4180
+ [
4181
+ "b60875427c4e1dab"
4182
+ ],
4183
+ [
4184
+ "98edd0a964987b88"
4185
+ ]
4186
+ ]
4187
+ },
4188
+ {
4189
+ "id": "b60875427c4e1dab",
4190
+ "type": "debug",
4191
+ "z": "1374c39ae82adb4e",
4192
+ "name": "error",
3784
4193
  "active": true,
3785
4194
  "tosidebar": true,
3786
4195
  "console": false,
@@ -3789,89 +4198,3076 @@
3789
4198
  "targetType": "full",
3790
4199
  "statusVal": "",
3791
4200
  "statusType": "auto",
3792
- "x": 870,
3793
- "y": 160,
4201
+ "x": 450,
4202
+ "y": 180,
3794
4203
  "wires": []
3795
4204
  },
3796
4205
  {
3797
- "id": "1453db4ab0597503",
3798
- "type": "inject",
3799
- "z": "65b5beda2b73b7b5",
4206
+ "id": "003f183644c0d375",
4207
+ "type": "link call",
4208
+ "z": "1374c39ae82adb4e",
3800
4209
  "name": "",
3801
- "props": [
3802
- {
3803
- "p": "payload"
3804
- },
3805
- {
3806
- "p": "topic",
3807
- "vt": "str"
3808
- }
4210
+ "links": [
4211
+ "d6dab95d41cd38af"
3809
4212
  ],
3810
- "repeat": "",
3811
- "crontab": "",
3812
- "once": false,
3813
- "onceDelay": 0.1,
4213
+ "linkType": "static",
4214
+ "timeout": "30",
4215
+ "x": 470,
4216
+ "y": 340,
4217
+ "wires": [
4218
+ [
4219
+ "98edd0a964987b88"
4220
+ ]
4221
+ ]
4222
+ },
4223
+ {
4224
+ "id": "98edd0a964987b88",
4225
+ "type": "test",
4226
+ "z": "1374c39ae82adb4e",
4227
+ "name": "2025-04-21",
4228
+ "errorFactor": 0,
4229
+ "escapeString": false,
4230
+ "infiniteIsNull": false,
4231
+ "payload": "{\"testDate\":\"2025-04-21\"}",
4232
+ "payloadType": "json",
4233
+ "result": "true",
4234
+ "resultType": "bool",
4235
+ "resultProperty": "msg.payload.result",
4236
+ "topic": "",
4237
+ "x": 190,
4238
+ "y": 340,
4239
+ "wires": [
4240
+ [
4241
+ "003f183644c0d375"
4242
+ ],
4243
+ [
4244
+ "b60875427c4e1dab"
4245
+ ],
4246
+ [
4247
+ "0fa488a51c3f56c4"
4248
+ ]
4249
+ ]
4250
+ },
4251
+ {
4252
+ "id": "4cf4ccedc39cf6e8",
4253
+ "type": "link call",
4254
+ "z": "1374c39ae82adb4e",
4255
+ "name": "",
4256
+ "links": [
4257
+ "d6dab95d41cd38af"
4258
+ ],
4259
+ "linkType": "static",
4260
+ "timeout": "30",
4261
+ "x": 470,
4262
+ "y": 440,
4263
+ "wires": [
4264
+ [
4265
+ "0fa488a51c3f56c4"
4266
+ ]
4267
+ ]
4268
+ },
4269
+ {
4270
+ "id": "0fa488a51c3f56c4",
4271
+ "type": "test",
4272
+ "z": "1374c39ae82adb4e",
4273
+ "name": "2025-04-24",
4274
+ "errorFactor": 0,
4275
+ "escapeString": false,
4276
+ "infiniteIsNull": false,
4277
+ "payload": "{\"testDate\":\"2025-04-24\"}",
4278
+ "payloadType": "json",
4279
+ "result": "true",
4280
+ "resultType": "bool",
4281
+ "resultProperty": "msg.payload.result",
4282
+ "topic": "",
4283
+ "x": 190,
4284
+ "y": 440,
4285
+ "wires": [
4286
+ [
4287
+ "4cf4ccedc39cf6e8"
4288
+ ],
4289
+ [
4290
+ "b60875427c4e1dab"
4291
+ ],
4292
+ [
4293
+ "332ab8ee7e19c841"
4294
+ ]
4295
+ ]
4296
+ },
4297
+ {
4298
+ "id": "c9df9f01c0c55032",
4299
+ "type": "link call",
4300
+ "z": "1374c39ae82adb4e",
4301
+ "name": "",
4302
+ "links": [
4303
+ "d6dab95d41cd38af"
4304
+ ],
4305
+ "linkType": "static",
4306
+ "timeout": "30",
4307
+ "x": 470,
4308
+ "y": 520,
4309
+ "wires": [
4310
+ [
4311
+ "332ab8ee7e19c841"
4312
+ ]
4313
+ ]
4314
+ },
4315
+ {
4316
+ "id": "332ab8ee7e19c841",
4317
+ "type": "test",
4318
+ "z": "1374c39ae82adb4e",
4319
+ "name": "2025-04-29",
4320
+ "errorFactor": 0,
4321
+ "escapeString": false,
4322
+ "infiniteIsNull": false,
4323
+ "payload": "{\"testDate\":\"2025-04-29\"}",
4324
+ "payloadType": "json",
4325
+ "result": "true",
4326
+ "resultType": "bool",
4327
+ "resultProperty": "msg.payload.result",
4328
+ "topic": "",
4329
+ "x": 190,
4330
+ "y": 520,
4331
+ "wires": [
4332
+ [
4333
+ "c9df9f01c0c55032"
4334
+ ],
4335
+ [
4336
+ "b60875427c4e1dab"
4337
+ ],
4338
+ [
4339
+ "0b4da0663cfc792f"
4340
+ ]
4341
+ ]
4342
+ },
4343
+ {
4344
+ "id": "559cd028a850dd99",
4345
+ "type": "link call",
4346
+ "z": "1374c39ae82adb4e",
4347
+ "name": "",
4348
+ "links": [
4349
+ "d6dab95d41cd38af"
4350
+ ],
4351
+ "linkType": "static",
4352
+ "timeout": "30",
4353
+ "x": 470,
4354
+ "y": 600,
4355
+ "wires": [
4356
+ [
4357
+ "0b4da0663cfc792f"
4358
+ ]
4359
+ ]
4360
+ },
4361
+ {
4362
+ "id": "0b4da0663cfc792f",
4363
+ "type": "test",
4364
+ "z": "1374c39ae82adb4e",
4365
+ "name": "2025-04-30",
4366
+ "errorFactor": 0,
4367
+ "escapeString": false,
4368
+ "infiniteIsNull": false,
4369
+ "payload": "{\"testDate\":\"2025-04-30\"}",
4370
+ "payloadType": "json",
4371
+ "result": "false",
4372
+ "resultType": "bool",
4373
+ "resultProperty": "msg.payload.result",
4374
+ "topic": "",
4375
+ "x": 190,
4376
+ "y": 600,
4377
+ "wires": [
4378
+ [
4379
+ "559cd028a850dd99"
4380
+ ],
4381
+ [
4382
+ "b60875427c4e1dab"
4383
+ ],
4384
+ [
4385
+ "731e0f954b971546"
4386
+ ]
4387
+ ]
4388
+ },
4389
+ {
4390
+ "id": "a411a1f479258d72",
4391
+ "type": "debug",
4392
+ "z": "1374c39ae82adb4e",
4393
+ "name": "All OK",
4394
+ "active": true,
4395
+ "tosidebar": true,
4396
+ "console": false,
4397
+ "tostatus": false,
4398
+ "complete": "payload",
4399
+ "targetType": "msg",
4400
+ "statusVal": "",
4401
+ "statusType": "auto",
4402
+ "x": 1070,
4403
+ "y": 720,
4404
+ "wires": []
4405
+ },
4406
+ {
4407
+ "id": "4f6a21107d3e15fe",
4408
+ "type": "transform",
4409
+ "z": "1374c39ae82adb4e",
4410
+ "g": "68a2c0f4427ce400",
4411
+ "name": "",
4412
+ "actionSource": "String",
4413
+ "deleteSource": "false",
4414
+ "deleteSourceType": "bool",
4415
+ "actionTarget": "Date",
4416
+ "sourceProperty": "msg.payload.testDate",
4417
+ "targetProperty": "msg.payload.typedDate",
4418
+ "topicProperty": "msg.topic",
4419
+ "index": 0,
4420
+ "maxMessages": 1000,
4421
+ "maxDate": "",
4422
+ "minDate": "",
4423
+ "maxNumber": 0,
4424
+ "minNumber": 0,
4425
+ "maxString": "",
4426
+ "minString": "",
4427
+ "radix": 10,
4428
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4429
+ "schemaType": "str",
4430
+ "skipLeading": 0,
4431
+ "skipTrailing": 0,
4432
+ "string": "",
4433
+ "stringType": "str",
4434
+ "delimiter": ",",
4435
+ "compressionType": "setGzip",
4436
+ "x": 1150,
4437
+ "y": 40,
4438
+ "wires": [
4439
+ [
4440
+ "7fdb40764c01f99a"
4441
+ ],
4442
+ []
4443
+ ]
4444
+ },
4445
+ {
4446
+ "id": "7fdb40764c01f99a",
4447
+ "type": "transform",
4448
+ "z": "1374c39ae82adb4e",
4449
+ "g": "68a2c0f4427ce400",
4450
+ "name": "",
4451
+ "actionSource": "Date",
4452
+ "deleteSource": "false",
4453
+ "deleteSourceType": "bool",
4454
+ "actionTarget": "RangeLimit",
4455
+ "sourceProperty": "msg.payload.typedDate",
4456
+ "targetProperty": "msg.payload.dateString",
4457
+ "topicProperty": "msg.topic",
4458
+ "index": 0,
4459
+ "maxMessages": 1000,
4460
+ "maxDate": "2025-04-29",
4461
+ "minDate": "2025-04-21",
4462
+ "maxNumber": 0,
4463
+ "minNumber": 0,
4464
+ "maxString": "",
4465
+ "minString": "",
4466
+ "radix": 10,
4467
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4468
+ "schemaType": "str",
4469
+ "skipLeading": 0,
4470
+ "skipTrailing": 0,
4471
+ "string": "",
4472
+ "stringType": "str",
4473
+ "delimiter": ",",
4474
+ "compressionType": "setGzip",
4475
+ "x": 1450,
4476
+ "y": 60,
4477
+ "wires": [
4478
+ [
4479
+ "b9d724057624e971"
4480
+ ],
4481
+ [
4482
+ "e36d78184f2c0e34"
4483
+ ]
4484
+ ]
4485
+ },
4486
+ {
4487
+ "id": "2b4dc03c0cb6ea2b",
4488
+ "type": "link in",
4489
+ "z": "1374c39ae82adb4e",
4490
+ "g": "68a2c0f4427ce400",
4491
+ "name": "link range limit",
4492
+ "links": [],
4493
+ "x": 985,
4494
+ "y": 40,
4495
+ "wires": [
4496
+ [
4497
+ "4f6a21107d3e15fe"
4498
+ ]
4499
+ ]
4500
+ },
4501
+ {
4502
+ "id": "06787d2f44f5d979",
4503
+ "type": "link out",
4504
+ "z": "1374c39ae82adb4e",
4505
+ "g": "68a2c0f4427ce400",
4506
+ "name": "link out 2",
4507
+ "mode": "return",
4508
+ "links": [],
4509
+ "x": 1805,
4510
+ "y": 40,
4511
+ "wires": []
4512
+ },
4513
+ {
4514
+ "id": "e36d78184f2c0e34",
4515
+ "type": "debug",
4516
+ "z": "1374c39ae82adb4e",
4517
+ "g": "68a2c0f4427ce400",
4518
+ "name": "error",
4519
+ "active": true,
4520
+ "tosidebar": true,
4521
+ "console": false,
4522
+ "tostatus": false,
4523
+ "complete": "true",
4524
+ "targetType": "full",
4525
+ "statusVal": "",
4526
+ "statusType": "auto",
4527
+ "x": 1750,
4528
+ "y": 100,
4529
+ "wires": []
4530
+ },
4531
+ {
4532
+ "id": "5a7a5a372e739058",
4533
+ "type": "link call",
4534
+ "z": "1374c39ae82adb4e",
4535
+ "name": "",
4536
+ "links": [
4537
+ "2b4dc03c0cb6ea2b"
4538
+ ],
4539
+ "linkType": "static",
4540
+ "timeout": "30",
4541
+ "x": 1260,
4542
+ "y": 260,
4543
+ "wires": [
4544
+ [
4545
+ "731e0f954b971546"
4546
+ ]
4547
+ ]
4548
+ },
4549
+ {
4550
+ "id": "731e0f954b971546",
4551
+ "type": "test",
4552
+ "z": "1374c39ae82adb4e",
4553
+ "name": "2025-03-01",
4554
+ "errorFactor": 0,
4555
+ "escapeString": false,
4556
+ "infiniteIsNull": false,
4557
+ "payload": "{\"testDate\":\"2025-03-01\"}",
4558
+ "payloadType": "json",
4559
+ "result": "2025-04-21",
4560
+ "resultType": "str",
4561
+ "resultProperty": "msg.payload.result",
4562
+ "topic": "",
4563
+ "x": 970,
4564
+ "y": 260,
4565
+ "wires": [
4566
+ [
4567
+ "5a7a5a372e739058"
4568
+ ],
4569
+ [
4570
+ "3113b8a9e4b92296"
4571
+ ],
4572
+ [
4573
+ "435e5493c2006354"
4574
+ ]
4575
+ ]
4576
+ },
4577
+ {
4578
+ "id": "3113b8a9e4b92296",
4579
+ "type": "debug",
4580
+ "z": "1374c39ae82adb4e",
4581
+ "name": "error",
4582
+ "active": true,
4583
+ "tosidebar": true,
4584
+ "console": false,
4585
+ "tostatus": false,
4586
+ "complete": "true",
4587
+ "targetType": "full",
4588
+ "statusVal": "",
4589
+ "statusType": "auto",
4590
+ "x": 1230,
4591
+ "y": 200,
4592
+ "wires": []
4593
+ },
4594
+ {
4595
+ "id": "d4b337a35727cf8a",
4596
+ "type": "link call",
4597
+ "z": "1374c39ae82adb4e",
4598
+ "name": "",
4599
+ "links": [
4600
+ "2b4dc03c0cb6ea2b"
4601
+ ],
4602
+ "linkType": "static",
4603
+ "timeout": "30",
4604
+ "x": 1260,
4605
+ "y": 360,
4606
+ "wires": [
4607
+ [
4608
+ "435e5493c2006354"
4609
+ ]
4610
+ ]
4611
+ },
4612
+ {
4613
+ "id": "435e5493c2006354",
4614
+ "type": "test",
4615
+ "z": "1374c39ae82adb4e",
4616
+ "name": "2025-04-21",
4617
+ "errorFactor": 0,
4618
+ "escapeString": false,
4619
+ "infiniteIsNull": false,
4620
+ "payload": "{\"testDate\":\"2025-04-21\"}",
4621
+ "payloadType": "json",
4622
+ "result": "2025-04-21",
4623
+ "resultType": "str",
4624
+ "resultProperty": "msg.payload.result",
4625
+ "topic": "",
4626
+ "x": 970,
4627
+ "y": 360,
4628
+ "wires": [
4629
+ [
4630
+ "d4b337a35727cf8a"
4631
+ ],
4632
+ [
4633
+ "3113b8a9e4b92296"
4634
+ ],
4635
+ [
4636
+ "157fd5a634598f9a"
4637
+ ]
4638
+ ]
4639
+ },
4640
+ {
4641
+ "id": "79501eafa56bfb4e",
4642
+ "type": "link call",
4643
+ "z": "1374c39ae82adb4e",
4644
+ "name": "",
4645
+ "links": [
4646
+ "2b4dc03c0cb6ea2b"
4647
+ ],
4648
+ "linkType": "static",
4649
+ "timeout": "30",
4650
+ "x": 1260,
4651
+ "y": 460,
4652
+ "wires": [
4653
+ [
4654
+ "157fd5a634598f9a"
4655
+ ]
4656
+ ]
4657
+ },
4658
+ {
4659
+ "id": "157fd5a634598f9a",
4660
+ "type": "test",
4661
+ "z": "1374c39ae82adb4e",
4662
+ "name": "2025-04-24",
4663
+ "errorFactor": 0,
4664
+ "escapeString": false,
4665
+ "infiniteIsNull": false,
4666
+ "payload": "{\"testDate\":\"2025-04-24\"}",
4667
+ "payloadType": "json",
4668
+ "result": "2025-04-24",
4669
+ "resultType": "str",
4670
+ "resultProperty": "msg.payload.result",
4671
+ "topic": "",
4672
+ "x": 970,
4673
+ "y": 460,
4674
+ "wires": [
4675
+ [
4676
+ "79501eafa56bfb4e"
4677
+ ],
4678
+ [
4679
+ "3113b8a9e4b92296"
4680
+ ],
4681
+ [
4682
+ "aae098ae4b670f43"
4683
+ ]
4684
+ ]
4685
+ },
4686
+ {
4687
+ "id": "fc891c3bc02aafd5",
4688
+ "type": "link call",
4689
+ "z": "1374c39ae82adb4e",
4690
+ "name": "",
4691
+ "links": [
4692
+ "2b4dc03c0cb6ea2b"
4693
+ ],
4694
+ "linkType": "static",
4695
+ "timeout": "30",
4696
+ "x": 1260,
4697
+ "y": 540,
4698
+ "wires": [
4699
+ [
4700
+ "aae098ae4b670f43"
4701
+ ]
4702
+ ]
4703
+ },
4704
+ {
4705
+ "id": "aae098ae4b670f43",
4706
+ "type": "test",
4707
+ "z": "1374c39ae82adb4e",
4708
+ "name": "2025-04-29",
4709
+ "errorFactor": 0,
4710
+ "escapeString": false,
4711
+ "infiniteIsNull": false,
4712
+ "payload": "{\"testDate\":\"2025-04-29\"}",
4713
+ "payloadType": "json",
4714
+ "result": "2025-04-29",
4715
+ "resultType": "str",
4716
+ "resultProperty": "msg.payload.result",
4717
+ "topic": "",
4718
+ "x": 970,
4719
+ "y": 540,
4720
+ "wires": [
4721
+ [
4722
+ "fc891c3bc02aafd5"
4723
+ ],
4724
+ [
4725
+ "3113b8a9e4b92296"
4726
+ ],
4727
+ [
4728
+ "e1fae4560b677429"
4729
+ ]
4730
+ ]
4731
+ },
4732
+ {
4733
+ "id": "d0240939763a6c79",
4734
+ "type": "link call",
4735
+ "z": "1374c39ae82adb4e",
4736
+ "name": "",
4737
+ "links": [
4738
+ "2b4dc03c0cb6ea2b"
4739
+ ],
4740
+ "linkType": "static",
4741
+ "timeout": "30",
4742
+ "x": 1260,
4743
+ "y": 620,
4744
+ "wires": [
4745
+ [
4746
+ "e1fae4560b677429"
4747
+ ]
4748
+ ]
4749
+ },
4750
+ {
4751
+ "id": "e1fae4560b677429",
4752
+ "type": "test",
4753
+ "z": "1374c39ae82adb4e",
4754
+ "name": "2025-04-30",
4755
+ "errorFactor": 0,
4756
+ "escapeString": false,
4757
+ "infiniteIsNull": false,
4758
+ "payload": "{\"testDate\":\"2025-04-30\"}",
4759
+ "payloadType": "json",
4760
+ "result": "2025-04-29",
4761
+ "resultType": "str",
4762
+ "resultProperty": "msg.payload.result",
4763
+ "topic": "",
4764
+ "x": 970,
4765
+ "y": 620,
4766
+ "wires": [
4767
+ [
4768
+ "d0240939763a6c79"
4769
+ ],
4770
+ [
4771
+ "3113b8a9e4b92296"
4772
+ ],
4773
+ [
4774
+ "a411a1f479258d72",
4775
+ "d8e481b0d9a11465"
4776
+ ]
4777
+ ]
4778
+ },
4779
+ {
4780
+ "id": "b9d724057624e971",
4781
+ "type": "transform",
4782
+ "z": "1374c39ae82adb4e",
4783
+ "g": "68a2c0f4427ce400",
4784
+ "name": "",
4785
+ "actionSource": "Date",
4786
+ "deleteSource": "false",
4787
+ "deleteSourceType": "bool",
4788
+ "actionTarget": "ISODate",
4789
+ "sourceProperty": "msg.payload.dateString",
4790
+ "targetProperty": "msg.payload.result",
4791
+ "topicProperty": "msg.topic",
4792
+ "index": 0,
4793
+ "maxMessages": 1000,
4794
+ "maxDate": "",
4795
+ "minDate": "",
4796
+ "maxNumber": 0,
4797
+ "minNumber": 0,
4798
+ "maxString": "",
4799
+ "minString": "",
4800
+ "radix": 10,
4801
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4802
+ "schemaType": "str",
4803
+ "skipLeading": 0,
4804
+ "skipTrailing": 0,
4805
+ "string": "",
4806
+ "stringType": "str",
4807
+ "delimiter": ",",
4808
+ "compressionType": "setGzip",
4809
+ "x": 1640,
4810
+ "y": 40,
4811
+ "wires": [
4812
+ [
4813
+ "06787d2f44f5d979"
4814
+ ],
4815
+ []
4816
+ ]
4817
+ },
4818
+ {
4819
+ "id": "2605139b45f1f105",
4820
+ "type": "link in",
4821
+ "z": "1374c39ae82adb4e",
4822
+ "name": "transform date",
4823
+ "links": [],
4824
+ "x": 75,
4825
+ "y": 160,
4826
+ "wires": [
4827
+ [
4828
+ "d96341af5b44e199"
4829
+ ]
4830
+ ]
4831
+ },
4832
+ {
4833
+ "id": "d8e481b0d9a11465",
4834
+ "type": "link out",
4835
+ "z": "1374c39ae82adb4e",
4836
+ "name": "trans form date finish",
4837
+ "mode": "return",
4838
+ "links": [],
4839
+ "x": 1235,
4840
+ "y": 680,
4841
+ "wires": []
4842
+ },
4843
+ {
4844
+ "id": "ee2d5b0149699bfd",
4845
+ "type": "transform",
4846
+ "z": "65b5beda2b73b7b5",
4847
+ "name": "",
4848
+ "actionSource": "Buffer",
4849
+ "actionTarget": "Compressed",
4850
+ "sourceProperty": "msg.payload",
4851
+ "targetProperty": "msg.payload",
4852
+ "topicProperty": "msg.topic",
4853
+ "maxMessages": 1000,
4854
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4855
+ "schemaType": "json",
4856
+ "skipLeading": 0,
4857
+ "skipTrailing": 0,
4858
+ "delimiter": ",",
4859
+ "compressionType": "setGzip",
4860
+ "x": 520,
4861
+ "y": 80,
4862
+ "wires": [
4863
+ [
4864
+ "5dcab80a65f78002"
4865
+ ],
4866
+ [
4867
+ "10a0adbf5535121a"
4868
+ ]
4869
+ ]
4870
+ },
4871
+ {
4872
+ "id": "8137c393bddb08a1",
4873
+ "type": "debug",
4874
+ "z": "65b5beda2b73b7b5",
4875
+ "name": "debug",
4876
+ "active": false,
4877
+ "tosidebar": true,
4878
+ "console": false,
4879
+ "tostatus": false,
4880
+ "complete": "true",
4881
+ "targetType": "full",
4882
+ "statusVal": "",
4883
+ "statusType": "auto",
4884
+ "x": 830,
4885
+ "y": 260,
4886
+ "wires": []
4887
+ },
4888
+ {
4889
+ "id": "10a0adbf5535121a",
4890
+ "type": "debug",
4891
+ "z": "65b5beda2b73b7b5",
4892
+ "name": "error",
4893
+ "active": true,
4894
+ "tosidebar": true,
4895
+ "console": false,
4896
+ "tostatus": false,
4897
+ "complete": "true",
4898
+ "targetType": "full",
4899
+ "statusVal": "",
4900
+ "statusType": "auto",
4901
+ "x": 850,
4902
+ "y": 180,
4903
+ "wires": []
4904
+ },
4905
+ {
4906
+ "id": "aba26b9c6499adb1",
4907
+ "type": "transform",
4908
+ "z": "65b5beda2b73b7b5",
4909
+ "name": "",
4910
+ "actionSource": "Compressed",
4911
+ "actionTarget": "Buffer",
4912
+ "sourceProperty": "msg.payload",
4913
+ "targetProperty": "msg.payload",
4914
+ "topicProperty": "msg.topic",
4915
+ "maxMessages": 1000,
4916
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4917
+ "schemaType": "json",
4918
+ "skipLeading": 0,
4919
+ "skipTrailing": 0,
4920
+ "delimiter": ",",
4921
+ "compressionType": "setGzip",
4922
+ "x": 560,
4923
+ "y": 200,
4924
+ "wires": [
4925
+ [
4926
+ "2102f58ce572e09a"
4927
+ ],
4928
+ [
4929
+ "10a0adbf5535121a"
4930
+ ]
4931
+ ]
4932
+ },
4933
+ {
4934
+ "id": "d38095883a4a54ac",
4935
+ "type": "test",
4936
+ "z": "65b5beda2b73b7b5",
4937
+ "name": "test gzip",
4938
+ "errorFactor": 0,
4939
+ "escapeString": false,
4940
+ "infiniteIsNull": false,
4941
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4942
+ "payloadType": "bin",
4943
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4944
+ "resultType": "bin",
4945
+ "resultProperty": "msg.payload",
4946
+ "topic": "test gzip",
4947
+ "x": 100,
4948
+ "y": 100,
4949
+ "wires": [
4950
+ [
4951
+ "f5ec776c8d6d933f"
4952
+ ],
4953
+ [
4954
+ "10a0adbf5535121a"
4955
+ ],
4956
+ [
4957
+ "95a62d934bb57fcd"
4958
+ ]
4959
+ ]
4960
+ },
4961
+ {
4962
+ "id": "50672d0a987880df",
4963
+ "type": "transform",
4964
+ "z": "65b5beda2b73b7b5",
4965
+ "name": "",
4966
+ "actionSource": "Buffer",
4967
+ "actionTarget": "Compressed",
4968
+ "sourceProperty": "msg.payload",
4969
+ "targetProperty": "msg.payload",
4970
+ "topicProperty": "msg.topic",
4971
+ "maxMessages": 1000,
4972
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4973
+ "schemaType": "json",
4974
+ "skipLeading": 0,
4975
+ "skipTrailing": 0,
4976
+ "delimiter": ",",
4977
+ "compressionType": "setGzipSpeed",
4978
+ "x": 360,
4979
+ "y": 340,
4980
+ "wires": [
4981
+ [
4982
+ "7a65c34df4ae2ce4"
4983
+ ],
4984
+ [
4985
+ "10a0adbf5535121a"
4986
+ ]
4987
+ ]
4988
+ },
4989
+ {
4990
+ "id": "7a65c34df4ae2ce4",
4991
+ "type": "transform",
4992
+ "z": "65b5beda2b73b7b5",
4993
+ "name": "",
4994
+ "actionSource": "Compressed",
4995
+ "actionTarget": "Buffer",
4996
+ "sourceProperty": "msg.payload",
4997
+ "targetProperty": "msg.payload",
4998
+ "topicProperty": "msg.topic",
4999
+ "maxMessages": 1000,
5000
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5001
+ "schemaType": "json",
5002
+ "skipLeading": 0,
5003
+ "skipTrailing": 0,
5004
+ "delimiter": ",",
5005
+ "compressionType": "setGzip",
5006
+ "x": 380,
5007
+ "y": 420,
5008
+ "wires": [
5009
+ [
5010
+ "95a62d934bb57fcd"
5011
+ ],
5012
+ [
5013
+ "10a0adbf5535121a"
5014
+ ]
5015
+ ]
5016
+ },
5017
+ {
5018
+ "id": "95a62d934bb57fcd",
5019
+ "type": "test",
5020
+ "z": "65b5beda2b73b7b5",
5021
+ "name": "test gzip speed",
5022
+ "errorFactor": 0,
5023
+ "escapeString": false,
5024
+ "infiniteIsNull": false,
5025
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
5026
+ "payloadType": "bin",
5027
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
5028
+ "resultType": "bin",
5029
+ "resultProperty": "msg.payload",
5030
+ "topic": "test gzip speed",
5031
+ "x": 120,
5032
+ "y": 480,
5033
+ "wires": [
5034
+ [
5035
+ "50672d0a987880df"
5036
+ ],
5037
+ [
5038
+ "10a0adbf5535121a"
5039
+ ],
5040
+ [
5041
+ "065ac327fbf17d38"
5042
+ ]
5043
+ ]
5044
+ },
5045
+ {
5046
+ "id": "44b0be1b07c2ccc2",
5047
+ "type": "transform",
5048
+ "z": "65b5beda2b73b7b5",
5049
+ "name": "",
5050
+ "actionSource": "Buffer",
5051
+ "actionTarget": "Compressed",
5052
+ "sourceProperty": "msg.payload",
5053
+ "targetProperty": "msg.payload",
5054
+ "topicProperty": "msg.topic",
5055
+ "maxMessages": 1000,
5056
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5057
+ "schemaType": "json",
5058
+ "skipLeading": 0,
5059
+ "skipTrailing": 0,
5060
+ "delimiter": ",",
5061
+ "compressionType": "setGzipCompression",
5062
+ "x": 400,
5063
+ "y": 540,
5064
+ "wires": [
5065
+ [
5066
+ "1a31abc23d7473a0"
5067
+ ],
5068
+ []
5069
+ ]
5070
+ },
5071
+ {
5072
+ "id": "1a31abc23d7473a0",
5073
+ "type": "transform",
5074
+ "z": "65b5beda2b73b7b5",
5075
+ "name": "",
5076
+ "actionSource": "Compressed",
5077
+ "actionTarget": "Buffer",
5078
+ "sourceProperty": "msg.payload",
5079
+ "targetProperty": "msg.payload",
5080
+ "topicProperty": "msg.topic",
5081
+ "maxMessages": 1000,
5082
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5083
+ "schemaType": "json",
5084
+ "skipLeading": 0,
5085
+ "skipTrailing": 0,
5086
+ "delimiter": ",",
5087
+ "compressionType": "setGzip",
5088
+ "x": 420,
5089
+ "y": 620,
5090
+ "wires": [
5091
+ [
5092
+ "065ac327fbf17d38"
5093
+ ],
5094
+ []
5095
+ ]
5096
+ },
5097
+ {
5098
+ "id": "065ac327fbf17d38",
5099
+ "type": "test",
5100
+ "z": "65b5beda2b73b7b5",
5101
+ "name": "test gzip compress",
5102
+ "errorFactor": 0,
5103
+ "escapeString": false,
5104
+ "infiniteIsNull": false,
5105
+ "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
5106
+ "payloadType": "bin",
5107
+ "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
5108
+ "resultType": "bin",
5109
+ "resultProperty": "msg.payload",
5110
+ "topic": "test gzip compress",
5111
+ "x": 170,
5112
+ "y": 680,
5113
+ "wires": [
5114
+ [
5115
+ "44b0be1b07c2ccc2"
5116
+ ],
5117
+ [
5118
+ "10a0adbf5535121a"
5119
+ ],
5120
+ [
5121
+ "84bf5aaa74b38e59"
5122
+ ]
5123
+ ]
5124
+ },
5125
+ {
5126
+ "id": "f5ec776c8d6d933f",
5127
+ "type": "Monitor Flow",
5128
+ "z": "65b5beda2b73b7b5",
5129
+ "name": "",
5130
+ "x": 310,
5131
+ "y": 80,
5132
+ "wires": [
5133
+ [
5134
+ "ee2d5b0149699bfd"
5135
+ ]
5136
+ ]
5137
+ },
5138
+ {
5139
+ "id": "5dcab80a65f78002",
5140
+ "type": "Monitor Flow",
5141
+ "z": "65b5beda2b73b7b5",
5142
+ "name": "",
5143
+ "x": 330,
5144
+ "y": 200,
5145
+ "wires": [
5146
+ [
5147
+ "aba26b9c6499adb1"
5148
+ ]
5149
+ ]
5150
+ },
5151
+ {
5152
+ "id": "2102f58ce572e09a",
5153
+ "type": "Monitor Flow",
5154
+ "z": "65b5beda2b73b7b5",
5155
+ "name": "",
5156
+ "x": 130,
5157
+ "y": 280,
5158
+ "wires": [
5159
+ [
5160
+ "d38095883a4a54ac",
5161
+ "8137c393bddb08a1"
5162
+ ]
5163
+ ]
5164
+ },
5165
+ {
5166
+ "id": "0c1e0f0f3543e49e",
5167
+ "type": "link in",
5168
+ "z": "65b5beda2b73b7b5",
5169
+ "name": "transform compress",
5170
+ "links": [],
5171
+ "x": 75,
5172
+ "y": 40,
5173
+ "wires": [
5174
+ [
5175
+ "d38095883a4a54ac"
5176
+ ]
5177
+ ]
5178
+ },
5179
+ {
5180
+ "id": "84bf5aaa74b38e59",
5181
+ "type": "link out",
5182
+ "z": "65b5beda2b73b7b5",
5183
+ "name": "transform compress finished",
5184
+ "mode": "return",
5185
+ "links": [],
5186
+ "x": 305,
5187
+ "y": 760,
5188
+ "wires": []
5189
+ },
5190
+ {
5191
+ "id": "5ac2ef6c.d0953",
5192
+ "type": "test",
5193
+ "z": "e45553957f2b6fab",
5194
+ "name": "",
5195
+ "errorFactor": "",
5196
+ "escapeString": false,
5197
+ "payload": "{\"a\":1,\"b\":1}",
5198
+ "payloadType": "json",
5199
+ "result": "{\"a\":1,\"b\":1}",
5200
+ "resultType": "json",
5201
+ "resultProperty": "msg.payload",
5202
+ "topic": "",
5203
+ "x": 280,
5204
+ "y": 100,
5205
+ "wires": [
5206
+ [
5207
+ "2ce3786.acae688"
5208
+ ],
5209
+ [
5210
+ "039806dcd68d6ff2"
5211
+ ],
5212
+ [
5213
+ "d49331e9f6193c4f"
5214
+ ]
5215
+ ]
5216
+ },
5217
+ {
5218
+ "id": "2ce3786.acae688",
5219
+ "type": "transform",
5220
+ "z": "e45553957f2b6fab",
5221
+ "name": "",
5222
+ "actionSource": "JSON",
5223
+ "deleteSource": "true",
5224
+ "deleteSourceType": "bool",
5225
+ "actionTarget": "JSON",
5226
+ "sourceProperty": "",
5227
+ "targetProperty": "",
5228
+ "topicProperty": "",
5229
+ "JSONataSource": "",
5230
+ "JSONataTarget": "",
5231
+ "index": "",
5232
+ "maxMessages": "",
5233
+ "maxDate": "",
5234
+ "minDate": "",
5235
+ "maxNumber": "",
5236
+ "minNumber": "",
5237
+ "maxString": "",
5238
+ "minString": "",
5239
+ "radix": "",
5240
+ "schema": "",
5241
+ "schemaType": "str",
5242
+ "skipLeading": "",
5243
+ "skipTrailing": "",
5244
+ "string": "",
5245
+ "stringType": "str",
5246
+ "delimiter": ",",
5247
+ "compressionType": "setGzip",
5248
+ "x": 640,
5249
+ "y": 20,
5250
+ "wires": [
5251
+ [
5252
+ "5ac2ef6c.d0953"
5253
+ ],
5254
+ [
5255
+ "039806dcd68d6ff2"
5256
+ ]
5257
+ ]
5258
+ },
5259
+ {
5260
+ "id": "d49331e9f6193c4f",
5261
+ "type": "test",
5262
+ "z": "e45553957f2b6fab",
5263
+ "name": "",
5264
+ "errorFactor": "",
5265
+ "escapeString": false,
5266
+ "payload": "{\"in\":{\"a\":1,\"b\":1}}",
5267
+ "payloadType": "json",
5268
+ "result": "1",
5269
+ "resultType": "num",
5270
+ "resultProperty": "msg.payload",
5271
+ "topic": "",
5272
+ "x": 270,
5273
+ "y": 240,
5274
+ "wires": [
5275
+ [
5276
+ "670969e02ee29ad1"
5277
+ ],
5278
+ [
5279
+ "039806dcd68d6ff2"
5280
+ ],
5281
+ [
5282
+ "5e2a7ceef9de11bf"
5283
+ ]
5284
+ ]
5285
+ },
5286
+ {
5287
+ "id": "670969e02ee29ad1",
5288
+ "type": "transform",
5289
+ "z": "e45553957f2b6fab",
5290
+ "name": "",
5291
+ "actionSource": "JSON",
5292
+ "deleteSource": "true",
5293
+ "deleteSourceType": "bool",
5294
+ "actionTarget": "JSON",
5295
+ "sourceProperty": "",
5296
+ "targetProperty": "",
5297
+ "topicProperty": "",
5298
+ "JSONataSource": "in.a",
5299
+ "JSONataSourceType": "jsonata",
5300
+ "JSONataTarget": "",
5301
+ "JSONataTargetType": "jsonata",
5302
+ "index": "",
5303
+ "maxMessages": "",
5304
+ "maxDate": "",
5305
+ "minDate": "",
5306
+ "maxNumber": "",
5307
+ "minNumber": "",
5308
+ "maxString": "",
5309
+ "minString": "",
5310
+ "radix": "",
5311
+ "schema": "",
5312
+ "schemaType": "str",
5313
+ "skipLeading": "",
5314
+ "skipTrailing": "",
5315
+ "string": "",
5316
+ "stringType": "str",
5317
+ "delimiter": ",",
5318
+ "compressionType": "setGzip",
5319
+ "x": 640,
5320
+ "y": 160,
5321
+ "wires": [
5322
+ [
5323
+ "d49331e9f6193c4f"
5324
+ ],
5325
+ [
5326
+ "039806dcd68d6ff2"
5327
+ ]
5328
+ ]
5329
+ },
5330
+ {
5331
+ "id": "039806dcd68d6ff2",
5332
+ "type": "debug",
5333
+ "z": "e45553957f2b6fab",
5334
+ "name": "error",
5335
+ "active": true,
5336
+ "tosidebar": true,
5337
+ "console": false,
5338
+ "tostatus": false,
5339
+ "complete": "true",
5340
+ "targetType": "full",
5341
+ "statusVal": "",
5342
+ "statusType": "auto",
5343
+ "x": 930,
5344
+ "y": 220,
5345
+ "wires": []
5346
+ },
5347
+ {
5348
+ "id": "b02379a693c4f95d",
5349
+ "type": "link out",
5350
+ "z": "e45553957f2b6fab",
5351
+ "name": "link out 4",
5352
+ "mode": "return",
5353
+ "links": [],
5354
+ "x": 545,
5355
+ "y": 380,
5356
+ "wires": []
5357
+ },
5358
+ {
5359
+ "id": "8bc4d0adfbe612e5",
5360
+ "type": "link in",
5361
+ "z": "e45553957f2b6fab",
5362
+ "name": "transform json",
5363
+ "links": [],
5364
+ "x": 75,
5365
+ "y": 40,
5366
+ "wires": [
5367
+ [
5368
+ "5ac2ef6c.d0953"
5369
+ ]
5370
+ ]
5371
+ },
5372
+ {
5373
+ "id": "5e2a7ceef9de11bf",
5374
+ "type": "test",
5375
+ "z": "e45553957f2b6fab",
5376
+ "name": "",
5377
+ "errorFactor": "",
5378
+ "escapeString": false,
5379
+ "payload": "{\"in\":{\"a\":1,\"b\":1}}",
5380
+ "payloadType": "json",
5381
+ "result": "1",
5382
+ "resultType": "num",
5383
+ "resultProperty": "msg.payload",
5384
+ "topic": "",
5385
+ "x": 290,
5386
+ "y": 360,
5387
+ "wires": [
5388
+ [
5389
+ "96f0fb80a916acba"
5390
+ ],
5391
+ [
5392
+ "039806dcd68d6ff2"
5393
+ ],
5394
+ [
5395
+ "b02379a693c4f95d"
5396
+ ]
5397
+ ]
5398
+ },
5399
+ {
5400
+ "id": "96f0fb80a916acba",
5401
+ "type": "transform",
5402
+ "z": "e45553957f2b6fab",
5403
+ "name": "",
5404
+ "actionSource": "JSON",
5405
+ "deleteSource": "true",
5406
+ "deleteSourceType": "bool",
5407
+ "actionTarget": "JSON",
5408
+ "sourceProperty": "",
5409
+ "targetProperty": "",
5410
+ "topicProperty": "",
5411
+ "JSONataSource": "",
5412
+ "JSONataSourceType": "jsonata",
5413
+ "JSONataTarget": "in.a",
5414
+ "JSONataTargetType": "jsonata",
5415
+ "index": "",
5416
+ "maxMessages": "",
5417
+ "maxDate": "",
5418
+ "minDate": "",
5419
+ "maxNumber": "",
5420
+ "minNumber": "",
5421
+ "maxString": "",
5422
+ "minString": "",
5423
+ "radix": "",
5424
+ "schema": "",
5425
+ "schemaType": "str",
5426
+ "skipLeading": "",
5427
+ "skipTrailing": "",
5428
+ "string": "",
5429
+ "stringType": "str",
5430
+ "delimiter": ",",
5431
+ "compressionType": "setGzip",
5432
+ "x": 660,
5433
+ "y": 280,
5434
+ "wires": [
5435
+ [
5436
+ "5e2a7ceef9de11bf"
5437
+ ],
5438
+ [
5439
+ "039806dcd68d6ff2"
5440
+ ]
5441
+ ]
5442
+ },
5443
+ {
5444
+ "id": "47a287530ed838e7",
5445
+ "type": "transform",
5446
+ "z": "460ae66eec4b7f8a",
5447
+ "name": "",
5448
+ "actionSource": "String",
5449
+ "deleteSource": "true",
5450
+ "deleteSourceType": "bool",
5451
+ "actionTarget": "Append",
5452
+ "sourceProperty": "msg.payload",
5453
+ "targetProperty": "msg.payload",
5454
+ "topicProperty": "msg.topic",
5455
+ "index": 0,
5456
+ "maxMessages": 1000,
5457
+ "radix": 10,
5458
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5459
+ "schemaType": "str",
5460
+ "skipLeading": 0,
5461
+ "skipTrailing": 0,
5462
+ "string": "atest",
5463
+ "stringType": "str",
5464
+ "delimiter": ",",
5465
+ "compressionType": "setGzip",
5466
+ "x": 500,
5467
+ "y": 40,
5468
+ "wires": [
5469
+ [
5470
+ "9ec96a604b0f3e20"
5471
+ ],
5472
+ [
5473
+ "925117734d8e96b5"
5474
+ ]
5475
+ ]
5476
+ },
5477
+ {
5478
+ "id": "9ec96a604b0f3e20",
5479
+ "type": "test",
5480
+ "z": "460ae66eec4b7f8a",
5481
+ "name": "",
5482
+ "errorFactor": 0,
5483
+ "escapeString": false,
5484
+ "infiniteIsNull": false,
5485
+ "payload": "abc",
5486
+ "payloadType": "str",
5487
+ "result": "abcatest",
5488
+ "resultType": "str",
5489
+ "resultProperty": "msg.payload",
5490
+ "topic": "",
5491
+ "x": 240,
5492
+ "y": 40,
5493
+ "wires": [
5494
+ [
5495
+ "47a287530ed838e7"
5496
+ ],
5497
+ [
5498
+ "925117734d8e96b5"
5499
+ ],
5500
+ [
5501
+ "8d8bb2e1192b3a8c"
5502
+ ]
5503
+ ]
5504
+ },
5505
+ {
5506
+ "id": "925117734d8e96b5",
5507
+ "type": "debug",
5508
+ "z": "460ae66eec4b7f8a",
5509
+ "name": "error",
5510
+ "active": true,
5511
+ "tosidebar": true,
5512
+ "console": false,
5513
+ "tostatus": false,
5514
+ "complete": "true",
5515
+ "targetType": "full",
5516
+ "statusVal": "",
5517
+ "statusType": "auto",
5518
+ "x": 890,
5519
+ "y": 80,
5520
+ "wires": []
5521
+ },
5522
+ {
5523
+ "id": "8d8bb2e1192b3a8c",
5524
+ "type": "test",
5525
+ "z": "460ae66eec4b7f8a",
5526
+ "name": "",
5527
+ "errorFactor": 0,
5528
+ "escapeString": false,
5529
+ "infiniteIsNull": false,
5530
+ "payload": "{\"a\":\"test\"}",
5531
+ "payloadType": "json",
5532
+ "result": "{\"b\":\"t\"}",
5533
+ "resultType": "json",
5534
+ "resultProperty": "msg.payload",
5535
+ "topic": "",
5536
+ "x": 160,
5537
+ "y": 120,
5538
+ "wires": [
5539
+ [
5540
+ "517c89e4609e0e70"
5541
+ ],
5542
+ [
5543
+ "925117734d8e96b5"
5544
+ ],
5545
+ [
5546
+ "f78d540c53a64514"
5547
+ ]
5548
+ ]
5549
+ },
5550
+ {
5551
+ "id": "517c89e4609e0e70",
5552
+ "type": "transform",
5553
+ "z": "460ae66eec4b7f8a",
5554
+ "name": "",
5555
+ "actionSource": "String",
5556
+ "deleteSource": "true",
5557
+ "deleteSourceType": "bool",
5558
+ "actionTarget": "CharAt",
5559
+ "sourceProperty": "msg.payload.a",
5560
+ "targetProperty": "msg.payload.b",
5561
+ "topicProperty": "msg.topic",
5562
+ "index": 0,
5563
+ "maxMessages": 1000,
5564
+ "radix": 10,
5565
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5566
+ "schemaType": "str",
5567
+ "skipLeading": 0,
5568
+ "skipTrailing": 0,
5569
+ "string": "a",
5570
+ "stringType": "msg",
5571
+ "delimiter": ",",
5572
+ "compressionType": "setGzip",
5573
+ "x": 500,
5574
+ "y": 120,
5575
+ "wires": [
5576
+ [
5577
+ "8d8bb2e1192b3a8c"
5578
+ ],
5579
+ [
5580
+ "925117734d8e96b5"
5581
+ ]
5582
+ ]
5583
+ },
5584
+ {
5585
+ "id": "88582559dcf028bb",
5586
+ "type": "transform",
5587
+ "z": "460ae66eec4b7f8a",
5588
+ "name": "",
5589
+ "actionSource": "String",
5590
+ "deleteSource": "false",
5591
+ "deleteSourceType": "bool",
5592
+ "actionTarget": "Append",
5593
+ "sourceProperty": "msg.payload.a",
5594
+ "targetProperty": "msg.payload.b",
5595
+ "topicProperty": "msg.topic",
5596
+ "index": 0,
5597
+ "maxMessages": 1000,
5598
+ "radix": 10,
5599
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5600
+ "schemaType": "str",
5601
+ "skipLeading": 0,
5602
+ "skipTrailing": 0,
5603
+ "string": "=>",
5604
+ "stringType": "str",
5605
+ "delimiter": ",",
5606
+ "compressionType": "setGzip",
5607
+ "x": 500,
5608
+ "y": 200,
5609
+ "wires": [
5610
+ [
5611
+ "f78d540c53a64514"
5612
+ ],
5613
+ [
5614
+ "925117734d8e96b5"
5615
+ ]
5616
+ ]
5617
+ },
5618
+ {
5619
+ "id": "f78d540c53a64514",
5620
+ "type": "test",
5621
+ "z": "460ae66eec4b7f8a",
5622
+ "name": "",
5623
+ "errorFactor": 0,
5624
+ "escapeString": true,
5625
+ "infiniteIsNull": false,
5626
+ "payload": "{\"a\":\"test\"}",
5627
+ "payloadType": "json",
5628
+ "result": "{\"a\":\"test\",\"b\":\"test=>\"}",
5629
+ "resultType": "json",
5630
+ "resultProperty": "msg.payload",
5631
+ "topic": "",
5632
+ "x": 180,
5633
+ "y": 200,
5634
+ "wires": [
5635
+ [
5636
+ "88582559dcf028bb"
5637
+ ],
5638
+ [
5639
+ "925117734d8e96b5"
5640
+ ],
5641
+ [
5642
+ "270a0e8c4f3d5172"
5643
+ ]
5644
+ ]
5645
+ },
5646
+ {
5647
+ "id": "270a0e8c4f3d5172",
5648
+ "type": "test",
5649
+ "z": "460ae66eec4b7f8a",
5650
+ "name": "",
5651
+ "errorFactor": 0,
5652
+ "escapeString": true,
5653
+ "infiniteIsNull": false,
5654
+ "payload": "{\"a\":\"a test b\"}",
5655
+ "payloadType": "json",
5656
+ "result": "{\"b\":\"aTestB\"}",
5657
+ "resultType": "json",
5658
+ "resultProperty": "msg.payload",
5659
+ "topic": "",
5660
+ "x": 190,
5661
+ "y": 280,
5662
+ "wires": [
5663
+ [
5664
+ "daeadb001d8ec243"
5665
+ ],
5666
+ [
5667
+ "925117734d8e96b5"
5668
+ ],
5669
+ [
5670
+ "c64612fcd16ee4c2"
5671
+ ]
5672
+ ]
5673
+ },
5674
+ {
5675
+ "id": "daeadb001d8ec243",
5676
+ "type": "transform",
5677
+ "z": "460ae66eec4b7f8a",
5678
+ "name": "",
5679
+ "actionSource": "String",
5680
+ "deleteSource": "true",
5681
+ "deleteSourceType": "bool",
5682
+ "actionTarget": "Camelize",
5683
+ "sourceProperty": "msg.payload.a",
5684
+ "targetProperty": "msg.payload.b",
5685
+ "topicProperty": "msg.topic",
5686
+ "index": 0,
5687
+ "maxMessages": 1000,
5688
+ "radix": 10,
5689
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5690
+ "schemaType": "str",
5691
+ "skipLeading": 0,
5692
+ "skipTrailing": 0,
5693
+ "string": "=>",
5694
+ "stringType": "msg",
5695
+ "delimiter": ",",
5696
+ "compressionType": "setGzip",
5697
+ "x": 510,
5698
+ "y": 280,
5699
+ "wires": [
5700
+ [
5701
+ "270a0e8c4f3d5172"
5702
+ ],
5703
+ [
5704
+ "925117734d8e96b5"
5705
+ ]
5706
+ ]
5707
+ },
5708
+ {
5709
+ "id": "c64612fcd16ee4c2",
5710
+ "type": "test",
5711
+ "z": "460ae66eec4b7f8a",
5712
+ "name": "",
5713
+ "errorFactor": 0,
5714
+ "escapeString": true,
5715
+ "infiniteIsNull": false,
5716
+ "payload": "{\"a\":\"a test b\"}",
5717
+ "payloadType": "json",
5718
+ "result": "{\"b\":\"a test b<=>\"}",
5719
+ "resultType": "json",
5720
+ "resultProperty": "msg.payload",
5721
+ "topic": "",
5722
+ "x": 180,
5723
+ "y": 360,
5724
+ "wires": [
5725
+ [
5726
+ "4314006f6dc95d97"
5727
+ ],
5728
+ [
5729
+ "925117734d8e96b5"
5730
+ ],
5731
+ [
5732
+ "7c1ffb0b49742528"
5733
+ ]
5734
+ ]
5735
+ },
5736
+ {
5737
+ "id": "4314006f6dc95d97",
5738
+ "type": "transform",
5739
+ "z": "460ae66eec4b7f8a",
5740
+ "name": "",
5741
+ "actionSource": "String",
5742
+ "deleteSource": "true",
5743
+ "deleteSourceType": "bool",
5744
+ "actionTarget": "Concat",
5745
+ "sourceProperty": "msg.payload.a",
5746
+ "targetProperty": "msg.payload.b",
5747
+ "topicProperty": "msg.topic",
5748
+ "index": 0,
5749
+ "maxMessages": 1000,
5750
+ "radix": 10,
5751
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5752
+ "schemaType": "str",
5753
+ "skipLeading": 0,
5754
+ "skipTrailing": 0,
5755
+ "string": "<=>",
5756
+ "stringType": "str",
5757
+ "delimiter": ",",
5758
+ "compressionType": "setGzip",
5759
+ "x": 500,
5760
+ "y": 360,
5761
+ "wires": [
5762
+ [
5763
+ "c64612fcd16ee4c2"
5764
+ ],
5765
+ [
5766
+ "925117734d8e96b5"
5767
+ ]
5768
+ ]
5769
+ },
5770
+ {
5771
+ "id": "5a4cf5bbdd78ca08",
5772
+ "type": "transform",
5773
+ "z": "460ae66eec4b7f8a",
5774
+ "name": "",
5775
+ "actionSource": "String",
5776
+ "deleteSource": "true",
5777
+ "deleteSourceType": "bool",
5778
+ "actionTarget": "CharCodeAt",
5779
+ "sourceProperty": "msg.payload.a",
5780
+ "targetProperty": "msg.payload.b",
5781
+ "topicProperty": "msg.topic",
5782
+ "index": "1",
5783
+ "maxMessages": 1000,
5784
+ "radix": 10,
5785
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5786
+ "schemaType": "str",
5787
+ "skipLeading": 0,
5788
+ "skipTrailing": 0,
5789
+ "string": "",
5790
+ "stringType": "str",
5791
+ "delimiter": ",",
5792
+ "compressionType": "setGzip",
5793
+ "x": 520,
5794
+ "y": 440,
5795
+ "wires": [
5796
+ [
5797
+ "7c1ffb0b49742528"
5798
+ ],
5799
+ [
5800
+ "925117734d8e96b5"
5801
+ ]
5802
+ ]
5803
+ },
5804
+ {
5805
+ "id": "d950412c4738c78f",
5806
+ "type": "transform",
5807
+ "z": "460ae66eec4b7f8a",
5808
+ "name": "",
5809
+ "actionSource": "String",
5810
+ "deleteSource": "true",
5811
+ "deleteSourceType": "bool",
5812
+ "actionTarget": "CodePointAt",
5813
+ "sourceProperty": "msg.payload.a",
5814
+ "targetProperty": "msg.payload.b",
5815
+ "topicProperty": "msg.topic",
5816
+ "index": "1",
5817
+ "maxMessages": 1000,
5818
+ "radix": 10,
5819
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5820
+ "schemaType": "str",
5821
+ "skipLeading": 0,
5822
+ "skipTrailing": 0,
5823
+ "string": "",
5824
+ "stringType": "str",
5825
+ "delimiter": ",",
5826
+ "compressionType": "setGzip",
5827
+ "x": 520,
5828
+ "y": 520,
5829
+ "wires": [
5830
+ [
5831
+ "2a5e51b612e3b1f8"
5832
+ ],
5833
+ [
5834
+ "925117734d8e96b5"
5835
+ ]
5836
+ ]
5837
+ },
5838
+ {
5839
+ "id": "072e7d19acea716f",
5840
+ "type": "transform",
5841
+ "z": "460ae66eec4b7f8a",
5842
+ "name": "",
5843
+ "actionSource": "String",
5844
+ "deleteSource": "true",
5845
+ "deleteSourceType": "bool",
5846
+ "actionTarget": "DateLocal",
5847
+ "sourceProperty": "msg.payload.a",
5848
+ "targetProperty": "msg.payload.b",
5849
+ "topicProperty": "msg.topic",
5850
+ "JSONataSource": "",
5851
+ "JSONataTarget": "",
5852
+ "index": "1",
5853
+ "maxMessages": 1000,
5854
+ "maxDate": "",
5855
+ "minDate": "",
5856
+ "maxNumber": "",
5857
+ "minNumber": "",
5858
+ "maxString": "",
5859
+ "minString": "",
5860
+ "radix": 10,
5861
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5862
+ "schemaType": "str",
5863
+ "skipLeading": 0,
5864
+ "skipTrailing": 0,
5865
+ "string": "",
5866
+ "stringType": "str",
5867
+ "delimiter": ",",
5868
+ "compressionType": "setGzip",
5869
+ "x": 510,
5870
+ "y": 600,
5871
+ "wires": [
5872
+ [
5873
+ "dc4920acde5f87e4"
5874
+ ],
5875
+ [
5876
+ "925117734d8e96b5"
5877
+ ]
5878
+ ]
5879
+ },
5880
+ {
5881
+ "id": "9ccff6c8a9b460b8",
5882
+ "type": "transform",
5883
+ "z": "460ae66eec4b7f8a",
5884
+ "name": "",
5885
+ "actionSource": "String",
5886
+ "deleteSource": "true",
5887
+ "deleteSourceType": "bool",
5888
+ "actionTarget": "DelimiterOnCase",
5889
+ "sourceProperty": "msg.payload.a",
5890
+ "targetProperty": "msg.payload.b",
5891
+ "topicProperty": "msg.topic",
5892
+ "JSONataSource": "",
5893
+ "JSONataSourceType": "jsonata",
5894
+ "JSONataTarget": "",
5895
+ "JSONataTargetType": "jsonata",
5896
+ "index": "1",
5897
+ "maxMessages": 1000,
5898
+ "maxDate": "",
5899
+ "minDate": "",
5900
+ "maxNumber": "",
5901
+ "minNumber": "",
5902
+ "maxString": "",
5903
+ "minString": "",
5904
+ "radix": 10,
5905
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5906
+ "schemaType": "str",
5907
+ "skipLeading": 0,
5908
+ "skipTrailing": 0,
5909
+ "string": "",
5910
+ "stringType": "str",
5911
+ "delimiter": ",",
5912
+ "compressionType": "setGzip",
5913
+ "x": 530,
5914
+ "y": 680,
5915
+ "wires": [
5916
+ [
5917
+ "71bde3f27fe075fc"
5918
+ ],
5919
+ [
5920
+ "925117734d8e96b5"
5921
+ ]
5922
+ ]
5923
+ },
5924
+ {
5925
+ "id": "dcbfe2ea6795fcb4",
5926
+ "type": "transform",
5927
+ "z": "460ae66eec4b7f8a",
5928
+ "name": "",
5929
+ "actionSource": "String",
5930
+ "deleteSource": "true",
5931
+ "deleteSourceType": "bool",
5932
+ "actionTarget": "EndsWith",
5933
+ "sourceProperty": "msg.payload.a",
5934
+ "targetProperty": "msg.payload.b",
5935
+ "topicProperty": "msg.topic",
5936
+ "index": "1",
5937
+ "maxMessages": 1000,
5938
+ "radix": 10,
5939
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5940
+ "schemaType": "str",
5941
+ "skipLeading": 0,
5942
+ "skipTrailing": 0,
5943
+ "string": "def",
5944
+ "stringType": "str",
5945
+ "delimiter": ",",
5946
+ "compressionType": "setGzip",
5947
+ "x": 510,
5948
+ "y": 760,
5949
+ "wires": [
5950
+ [
5951
+ "8c10fe666d441dac"
5952
+ ],
5953
+ [
5954
+ "925117734d8e96b5"
5955
+ ]
5956
+ ]
5957
+ },
5958
+ {
5959
+ "id": "4c20187ba4f4d732",
5960
+ "type": "transform",
5961
+ "z": "460ae66eec4b7f8a",
5962
+ "name": "",
5963
+ "actionSource": "String",
5964
+ "deleteSource": "true",
5965
+ "deleteSourceType": "bool",
5966
+ "actionTarget": "Prepend",
5967
+ "sourceProperty": "msg.payload.a",
5968
+ "targetProperty": "msg.payload.b",
5969
+ "topicProperty": "msg.topic",
5970
+ "index": "1",
5971
+ "maxMessages": 1000,
5972
+ "radix": 10,
5973
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
5974
+ "schemaType": "str",
5975
+ "skipLeading": 0,
5976
+ "skipTrailing": 0,
5977
+ "string": "=>",
5978
+ "stringType": "str",
5979
+ "delimiter": ",",
5980
+ "compressionType": "setGzip",
5981
+ "x": 510,
5982
+ "y": 840,
5983
+ "wires": [
5984
+ [
5985
+ "ebeebbbddab24c44"
5986
+ ],
5987
+ [
5988
+ "925117734d8e96b5"
5989
+ ]
5990
+ ]
5991
+ },
5992
+ {
5993
+ "id": "34db4f79e104b88d",
5994
+ "type": "transform",
5995
+ "z": "460ae66eec4b7f8a",
5996
+ "name": "",
5997
+ "actionSource": "String",
5998
+ "deleteSource": "true",
5999
+ "deleteSourceType": "bool",
6000
+ "actionTarget": "Integer",
6001
+ "sourceProperty": "msg.payload.a",
6002
+ "targetProperty": "msg.payload.b",
6003
+ "topicProperty": "msg.topic",
6004
+ "index": "1",
6005
+ "maxMessages": 1000,
6006
+ "radix": 10,
6007
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6008
+ "schemaType": "str",
6009
+ "skipLeading": 0,
6010
+ "skipTrailing": 0,
6011
+ "string": "",
6012
+ "stringType": "str",
6013
+ "delimiter": ",",
6014
+ "compressionType": "setGzip",
6015
+ "x": 500,
6016
+ "y": 920,
6017
+ "wires": [
6018
+ [
6019
+ "186e62ee33add8f7"
6020
+ ],
6021
+ [
6022
+ "925117734d8e96b5"
6023
+ ]
6024
+ ]
6025
+ },
6026
+ {
6027
+ "id": "fd3ddc020e4e4dd5",
6028
+ "type": "transform",
6029
+ "z": "460ae66eec4b7f8a",
6030
+ "name": "",
6031
+ "actionSource": "String",
6032
+ "deleteSource": "true",
6033
+ "deleteSourceType": "bool",
6034
+ "actionTarget": "LowerCase",
6035
+ "sourceProperty": "msg.payload.a",
6036
+ "targetProperty": "msg.payload.b",
6037
+ "topicProperty": "msg.topic",
6038
+ "index": "1",
6039
+ "maxMessages": 1000,
6040
+ "radix": 10,
6041
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6042
+ "schemaType": "str",
6043
+ "skipLeading": 0,
6044
+ "skipTrailing": 0,
6045
+ "string": "",
6046
+ "stringType": "str",
6047
+ "delimiter": ",",
6048
+ "compressionType": "setGzip",
6049
+ "x": 520,
6050
+ "y": 1000,
6051
+ "wires": [
6052
+ [
6053
+ "1c3dd74d3d062367"
6054
+ ],
6055
+ [
6056
+ "925117734d8e96b5"
6057
+ ]
6058
+ ]
6059
+ },
6060
+ {
6061
+ "id": "7c1ffb0b49742528",
6062
+ "type": "test",
6063
+ "z": "460ae66eec4b7f8a",
6064
+ "name": "",
6065
+ "errorFactor": 0,
6066
+ "escapeString": true,
6067
+ "infiniteIsNull": false,
6068
+ "payload": "{\"a\":\"abcde\"}",
6069
+ "payloadType": "json",
6070
+ "result": "{\"b\":98}",
6071
+ "resultType": "json",
6072
+ "resultProperty": "msg.payload",
6073
+ "topic": "",
6074
+ "x": 170,
6075
+ "y": 440,
6076
+ "wires": [
6077
+ [
6078
+ "5a4cf5bbdd78ca08"
6079
+ ],
6080
+ [
6081
+ "925117734d8e96b5"
6082
+ ],
6083
+ [
6084
+ "2a5e51b612e3b1f8"
6085
+ ]
6086
+ ]
6087
+ },
6088
+ {
6089
+ "id": "2a5e51b612e3b1f8",
6090
+ "type": "test",
6091
+ "z": "460ae66eec4b7f8a",
6092
+ "name": "",
6093
+ "errorFactor": 0,
6094
+ "escapeString": true,
6095
+ "infiniteIsNull": false,
6096
+ "payload": "{\"a\":\"a test b\"}",
6097
+ "payloadType": "json",
6098
+ "result": "{\"b\":32}",
6099
+ "resultType": "json",
6100
+ "resultProperty": "msg.payload",
6101
+ "topic": "",
6102
+ "x": 170,
6103
+ "y": 520,
6104
+ "wires": [
6105
+ [
6106
+ "d950412c4738c78f"
6107
+ ],
6108
+ [
6109
+ "925117734d8e96b5"
6110
+ ],
6111
+ [
6112
+ "dc4920acde5f87e4"
6113
+ ]
6114
+ ]
6115
+ },
6116
+ {
6117
+ "id": "dc4920acde5f87e4",
6118
+ "type": "test",
6119
+ "z": "460ae66eec4b7f8a",
6120
+ "name": "",
6121
+ "errorFactor": 0,
6122
+ "escapeString": false,
6123
+ "infiniteIsNull": false,
6124
+ "payload": "{\"a\":\"1/1/2001\"}",
6125
+ "payloadType": "json",
6126
+ "result": "$boolean(b.toLocaleDateString()=\"01/01/2001\")",
6127
+ "resultType": "jsonata",
6128
+ "resultProperty": "msg.payload",
6129
+ "topic": "",
6130
+ "x": 170,
6131
+ "y": 600,
6132
+ "wires": [
6133
+ [
6134
+ "072e7d19acea716f"
6135
+ ],
6136
+ [
6137
+ "925117734d8e96b5"
6138
+ ],
6139
+ [
6140
+ "71bde3f27fe075fc"
6141
+ ]
6142
+ ]
6143
+ },
6144
+ {
6145
+ "id": "71bde3f27fe075fc",
6146
+ "type": "test",
6147
+ "z": "460ae66eec4b7f8a",
6148
+ "name": "",
6149
+ "errorFactor": 0,
6150
+ "escapeString": true,
6151
+ "infiniteIsNull": false,
6152
+ "payload": "{\"a\":\"aBcdEFghIK\"}",
6153
+ "payloadType": "json",
6154
+ "result": "{\"b\": \"a,bcd,e,fgh,i,k\"}",
6155
+ "resultType": "json",
6156
+ "resultProperty": "msg.payload",
6157
+ "topic": "",
6158
+ "x": 190,
6159
+ "y": 680,
6160
+ "wires": [
6161
+ [
6162
+ "9ccff6c8a9b460b8"
6163
+ ],
6164
+ [
6165
+ "925117734d8e96b5"
6166
+ ],
6167
+ [
6168
+ "8c10fe666d441dac"
6169
+ ]
6170
+ ]
6171
+ },
6172
+ {
6173
+ "id": "8c10fe666d441dac",
6174
+ "type": "test",
6175
+ "z": "460ae66eec4b7f8a",
6176
+ "name": "",
6177
+ "errorFactor": 0,
6178
+ "escapeString": false,
6179
+ "infiniteIsNull": false,
6180
+ "payload": "{\"a\":\"abd1def\"}",
6181
+ "payloadType": "json",
6182
+ "result": "{\"b\":true}",
6183
+ "resultType": "json",
6184
+ "resultProperty": "msg.payload",
6185
+ "topic": "",
6186
+ "x": 180,
6187
+ "y": 760,
6188
+ "wires": [
6189
+ [
6190
+ "dcbfe2ea6795fcb4"
6191
+ ],
6192
+ [
6193
+ "925117734d8e96b5"
6194
+ ],
6195
+ [
6196
+ "ebeebbbddab24c44"
6197
+ ]
6198
+ ]
6199
+ },
6200
+ {
6201
+ "id": "ebeebbbddab24c44",
6202
+ "type": "test",
6203
+ "z": "460ae66eec4b7f8a",
6204
+ "name": "",
6205
+ "errorFactor": 0,
6206
+ "escapeString": true,
6207
+ "infiniteIsNull": false,
6208
+ "payload": "{\"a\":\"abc\"}",
6209
+ "payloadType": "json",
6210
+ "result": "{\"b\":\"=>abc\"}",
6211
+ "resultType": "json",
6212
+ "resultProperty": "msg.payload",
6213
+ "topic": "",
6214
+ "x": 180,
6215
+ "y": 840,
6216
+ "wires": [
6217
+ [
6218
+ "4c20187ba4f4d732"
6219
+ ],
6220
+ [
6221
+ "925117734d8e96b5"
6222
+ ],
6223
+ [
6224
+ "186e62ee33add8f7"
6225
+ ]
6226
+ ]
6227
+ },
6228
+ {
6229
+ "id": "186e62ee33add8f7",
6230
+ "type": "test",
6231
+ "z": "460ae66eec4b7f8a",
6232
+ "name": "",
6233
+ "errorFactor": 0,
6234
+ "escapeString": true,
6235
+ "infiniteIsNull": false,
6236
+ "payload": "{\"a\":\"2\"}",
6237
+ "payloadType": "json",
6238
+ "result": "{\"b\":2}",
6239
+ "resultType": "json",
6240
+ "resultProperty": "msg.payload",
6241
+ "topic": "",
6242
+ "x": 150,
6243
+ "y": 920,
6244
+ "wires": [
6245
+ [
6246
+ "34db4f79e104b88d"
6247
+ ],
6248
+ [],
6249
+ [
6250
+ "1c3dd74d3d062367"
6251
+ ]
6252
+ ]
6253
+ },
6254
+ {
6255
+ "id": "1c3dd74d3d062367",
6256
+ "type": "test",
6257
+ "z": "460ae66eec4b7f8a",
6258
+ "name": "",
6259
+ "errorFactor": 0,
6260
+ "escapeString": true,
6261
+ "infiniteIsNull": false,
6262
+ "payload": "{\"a\":\"aB cDE\"}",
6263
+ "payloadType": "json",
6264
+ "result": "{\"b\":\"ab cde\"}",
6265
+ "resultType": "json",
6266
+ "resultProperty": "msg.payload",
6267
+ "topic": "",
6268
+ "x": 190,
6269
+ "y": 1000,
6270
+ "wires": [
6271
+ [
6272
+ "fd3ddc020e4e4dd5"
6273
+ ],
6274
+ [
6275
+ "925117734d8e96b5"
6276
+ ],
6277
+ [
6278
+ "dcc18294163735c9"
6279
+ ]
6280
+ ]
6281
+ },
6282
+ {
6283
+ "id": "b732e54471eaf713",
6284
+ "type": "transform",
6285
+ "z": "460ae66eec4b7f8a",
6286
+ "name": "",
6287
+ "actionSource": "String",
6288
+ "deleteSource": "true",
6289
+ "deleteSourceType": "bool",
6290
+ "actionTarget": "Number",
6291
+ "sourceProperty": "msg.payload.a",
6292
+ "targetProperty": "msg.payload.b",
6293
+ "topicProperty": "msg.topic",
6294
+ "index": 0,
6295
+ "maxMessages": 1000,
6296
+ "radix": 10,
6297
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6298
+ "schemaType": "str",
6299
+ "skipLeading": 0,
6300
+ "skipTrailing": 0,
6301
+ "string": "",
6302
+ "stringType": "str",
6303
+ "delimiter": ",",
6304
+ "compressionType": "setGzip",
6305
+ "x": 500,
6306
+ "y": 1080,
6307
+ "wires": [
6308
+ [
6309
+ "dcc18294163735c9"
6310
+ ],
6311
+ [
6312
+ "925117734d8e96b5"
6313
+ ]
6314
+ ]
6315
+ },
6316
+ {
6317
+ "id": "82f01872c3438970",
6318
+ "type": "transform",
6319
+ "z": "460ae66eec4b7f8a",
6320
+ "name": "",
6321
+ "actionSource": "String",
6322
+ "deleteSource": "true",
6323
+ "deleteSourceType": "bool",
6324
+ "actionTarget": "Prepend",
6325
+ "sourceProperty": "msg.payload.a",
6326
+ "targetProperty": "msg.payload.b",
6327
+ "topicProperty": "msg.topic",
6328
+ "index": 0,
6329
+ "maxMessages": 1000,
6330
+ "radix": 10,
6331
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6332
+ "schemaType": "str",
6333
+ "skipLeading": 0,
6334
+ "skipTrailing": 0,
6335
+ "string": "=>",
6336
+ "stringType": "str",
6337
+ "delimiter": ",",
6338
+ "compressionType": "setGzip",
6339
+ "x": 510,
6340
+ "y": 1160,
6341
+ "wires": [
6342
+ [
6343
+ "17ef03a12d2fd756"
6344
+ ],
6345
+ [
6346
+ "925117734d8e96b5"
6347
+ ]
6348
+ ]
6349
+ },
6350
+ {
6351
+ "id": "8d73196a973a986c",
6352
+ "type": "transform",
6353
+ "z": "460ae66eec4b7f8a",
6354
+ "name": "",
6355
+ "actionSource": "String",
6356
+ "deleteSource": "true",
6357
+ "deleteSourceType": "bool",
6358
+ "actionTarget": "JSON",
6359
+ "sourceProperty": "msg.payload.a",
6360
+ "targetProperty": "msg.payload.b",
6361
+ "topicProperty": "msg.topic",
6362
+ "index": 0,
6363
+ "maxMessages": 1000,
6364
+ "radix": 10,
6365
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6366
+ "schemaType": "str",
6367
+ "skipLeading": 0,
6368
+ "skipTrailing": 0,
6369
+ "string": "",
6370
+ "stringType": "str",
6371
+ "delimiter": ",",
6372
+ "compressionType": "setGzip",
6373
+ "x": 500,
6374
+ "y": 1240,
6375
+ "wires": [
6376
+ [
6377
+ "a923ee497b800af4"
6378
+ ],
6379
+ [
6380
+ "925117734d8e96b5"
6381
+ ]
6382
+ ]
6383
+ },
6384
+ {
6385
+ "id": "5d5a3f0c8be254da",
6386
+ "type": "transform",
6387
+ "z": "460ae66eec4b7f8a",
6388
+ "name": "",
6389
+ "actionSource": "String",
6390
+ "deleteSource": "true",
6391
+ "deleteSourceType": "bool",
6392
+ "actionTarget": "Split",
6393
+ "sourceProperty": "msg.payload.a",
6394
+ "targetProperty": "msg.payload.b",
6395
+ "topicProperty": "msg.topic",
6396
+ "index": 0,
6397
+ "maxMessages": 1000,
6398
+ "radix": 10,
6399
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6400
+ "schemaType": "str",
6401
+ "skipLeading": 0,
6402
+ "skipTrailing": 0,
6403
+ "string": "c",
6404
+ "stringType": "str",
6405
+ "delimiter": ",",
6406
+ "compressionType": "setGzip",
6407
+ "x": 490,
6408
+ "y": 1320,
6409
+ "wires": [
6410
+ [
6411
+ "d99bc55ce55d29c4"
6412
+ ],
6413
+ [
6414
+ "925117734d8e96b5"
6415
+ ]
6416
+ ]
6417
+ },
6418
+ {
6419
+ "id": "2fd3ea0697259d9f",
6420
+ "type": "transform",
6421
+ "z": "460ae66eec4b7f8a",
6422
+ "name": "",
6423
+ "actionSource": "String",
6424
+ "deleteSource": "true",
6425
+ "deleteSourceType": "bool",
6426
+ "actionTarget": "StartsWith",
6427
+ "sourceProperty": "msg.payload.a",
6428
+ "targetProperty": "msg.payload.b",
6429
+ "topicProperty": "msg.topic",
6430
+ "index": 0,
6431
+ "maxMessages": 1000,
6432
+ "radix": 10,
6433
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6434
+ "schemaType": "str",
6435
+ "skipLeading": 0,
6436
+ "skipTrailing": 0,
6437
+ "string": "abc",
6438
+ "stringType": "str",
6439
+ "delimiter": ",",
6440
+ "compressionType": "setGzip",
6441
+ "x": 510,
6442
+ "y": 1400,
6443
+ "wires": [
6444
+ [
6445
+ "43a88afb923333b5"
6446
+ ],
6447
+ [
6448
+ "925117734d8e96b5"
6449
+ ]
6450
+ ]
6451
+ },
6452
+ {
6453
+ "id": "df13affa93676080",
6454
+ "type": "transform",
6455
+ "z": "460ae66eec4b7f8a",
6456
+ "name": "",
6457
+ "actionSource": "String",
6458
+ "deleteSource": "true",
6459
+ "deleteSourceType": "bool",
6460
+ "actionTarget": "StartsWith",
6461
+ "sourceProperty": "msg.payload.a",
6462
+ "targetProperty": "msg.payload.b",
6463
+ "topicProperty": "msg.topic",
6464
+ "index": 0,
6465
+ "maxMessages": 1000,
6466
+ "radix": 10,
6467
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6468
+ "schemaType": "str",
6469
+ "skipLeading": 0,
6470
+ "skipTrailing": 0,
6471
+ "string": "cba",
6472
+ "stringType": "str",
6473
+ "delimiter": ",",
6474
+ "compressionType": "setGzip",
6475
+ "x": 510,
6476
+ "y": 1480,
6477
+ "wires": [
6478
+ [
6479
+ "22baecbb272c0ce0"
6480
+ ],
6481
+ [
6482
+ "925117734d8e96b5"
6483
+ ]
6484
+ ]
6485
+ },
6486
+ {
6487
+ "id": "022939c0c11b13d3",
6488
+ "type": "transform",
6489
+ "z": "460ae66eec4b7f8a",
6490
+ "name": "",
6491
+ "actionSource": "String",
6492
+ "deleteSource": "true",
6493
+ "deleteSourceType": "bool",
6494
+ "actionTarget": "Trim",
6495
+ "sourceProperty": "msg.payload.a",
6496
+ "targetProperty": "msg.payload.b",
6497
+ "topicProperty": "msg.topic",
6498
+ "index": 0,
6499
+ "maxMessages": 1000,
6500
+ "radix": 10,
6501
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6502
+ "schemaType": "str",
6503
+ "skipLeading": 0,
6504
+ "skipTrailing": 0,
6505
+ "string": "abc",
6506
+ "stringType": "str",
6507
+ "delimiter": ",",
6508
+ "compressionType": "setGzip",
6509
+ "x": 490,
6510
+ "y": 1560,
6511
+ "wires": [
6512
+ [
6513
+ "96cf6753b9b42df8"
6514
+ ],
6515
+ [
6516
+ "925117734d8e96b5"
6517
+ ]
6518
+ ]
6519
+ },
6520
+ {
6521
+ "id": "20c87f4f42eeb3a9",
6522
+ "type": "transform",
6523
+ "z": "460ae66eec4b7f8a",
6524
+ "name": "",
6525
+ "actionSource": "String",
6526
+ "deleteSource": "true",
6527
+ "deleteSourceType": "bool",
6528
+ "actionTarget": "TrimEnd",
6529
+ "sourceProperty": "msg.payload.a",
6530
+ "targetProperty": "msg.payload.b",
6531
+ "topicProperty": "msg.topic",
6532
+ "index": 0,
6533
+ "maxMessages": 1000,
6534
+ "radix": 10,
6535
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6536
+ "schemaType": "str",
6537
+ "skipLeading": 0,
6538
+ "skipTrailing": 0,
6539
+ "string": "abc",
6540
+ "stringType": "str",
6541
+ "delimiter": ",",
6542
+ "compressionType": "setGzip",
6543
+ "x": 510,
6544
+ "y": 1640,
6545
+ "wires": [
6546
+ [
6547
+ "c7d663c8e599aa49"
6548
+ ],
6549
+ [
6550
+ "925117734d8e96b5"
6551
+ ]
6552
+ ]
6553
+ },
6554
+ {
6555
+ "id": "48a74d7f7044b629",
6556
+ "type": "transform",
6557
+ "z": "460ae66eec4b7f8a",
6558
+ "name": "",
6559
+ "actionSource": "String",
6560
+ "deleteSource": "true",
6561
+ "deleteSourceType": "bool",
6562
+ "actionTarget": "TrimStart",
6563
+ "sourceProperty": "msg.payload.a",
6564
+ "targetProperty": "msg.payload.b",
6565
+ "topicProperty": "msg.topic",
6566
+ "index": 0,
6567
+ "maxMessages": 1000,
6568
+ "radix": 10,
6569
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6570
+ "schemaType": "str",
6571
+ "skipLeading": 0,
6572
+ "skipTrailing": 0,
6573
+ "string": "abc",
6574
+ "stringType": "str",
6575
+ "delimiter": ",",
6576
+ "compressionType": "setGzip",
6577
+ "x": 510,
6578
+ "y": 1720,
6579
+ "wires": [
6580
+ [
6581
+ "045e7a72b5b8a9a0"
6582
+ ],
6583
+ [
6584
+ "925117734d8e96b5"
6585
+ ]
6586
+ ]
6587
+ },
6588
+ {
6589
+ "id": "c248c9dac1aed77b",
6590
+ "type": "transform",
6591
+ "z": "460ae66eec4b7f8a",
6592
+ "name": "",
6593
+ "actionSource": "String",
6594
+ "deleteSource": "true",
6595
+ "deleteSourceType": "bool",
6596
+ "actionTarget": "UpperCase",
6597
+ "sourceProperty": "msg.payload.a",
6598
+ "targetProperty": "msg.payload.b",
6599
+ "topicProperty": "msg.topic",
6600
+ "index": 0,
6601
+ "maxMessages": 1000,
6602
+ "radix": 10,
6603
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6604
+ "schemaType": "str",
6605
+ "skipLeading": 0,
6606
+ "skipTrailing": 0,
6607
+ "string": "abc",
6608
+ "stringType": "str",
6609
+ "delimiter": ",",
6610
+ "compressionType": "setGzip",
6611
+ "x": 520,
6612
+ "y": 1800,
6613
+ "wires": [
6614
+ [
6615
+ "03f40508ed9626ba"
6616
+ ],
6617
+ [
6618
+ "925117734d8e96b5"
6619
+ ]
6620
+ ]
6621
+ },
6622
+ {
6623
+ "id": "dcc18294163735c9",
6624
+ "type": "test",
6625
+ "z": "460ae66eec4b7f8a",
6626
+ "name": "",
6627
+ "errorFactor": 0,
6628
+ "escapeString": true,
6629
+ "infiniteIsNull": false,
6630
+ "payload": "{\"a\":\"2\"}",
6631
+ "payloadType": "json",
6632
+ "result": "{\"b\":2}",
6633
+ "resultType": "json",
6634
+ "resultProperty": "msg.payload",
6635
+ "topic": "",
6636
+ "x": 150,
6637
+ "y": 1080,
6638
+ "wires": [
6639
+ [
6640
+ "b732e54471eaf713"
6641
+ ],
6642
+ [
6643
+ "925117734d8e96b5"
6644
+ ],
6645
+ [
6646
+ "17ef03a12d2fd756"
6647
+ ]
6648
+ ]
6649
+ },
6650
+ {
6651
+ "id": "17ef03a12d2fd756",
6652
+ "type": "test",
6653
+ "z": "460ae66eec4b7f8a",
6654
+ "name": "",
6655
+ "errorFactor": 0,
6656
+ "escapeString": true,
6657
+ "infiniteIsNull": false,
6658
+ "payload": "{\"a\":\"2\"}",
6659
+ "payloadType": "json",
6660
+ "result": "{\"b\":\"=>2\"}",
6661
+ "resultType": "json",
6662
+ "resultProperty": "msg.payload",
6663
+ "topic": "",
6664
+ "x": 160,
6665
+ "y": 1160,
6666
+ "wires": [
6667
+ [
6668
+ "82f01872c3438970"
6669
+ ],
6670
+ [
6671
+ "925117734d8e96b5"
6672
+ ],
6673
+ [
6674
+ "a923ee497b800af4"
6675
+ ]
6676
+ ]
6677
+ },
6678
+ {
6679
+ "id": "a923ee497b800af4",
6680
+ "type": "test",
6681
+ "z": "460ae66eec4b7f8a",
6682
+ "name": "",
6683
+ "errorFactor": "-1",
6684
+ "escapeString": false,
6685
+ "infiniteIsNull": false,
6686
+ "payload": "{\"a\":\"[{\\\"a\\\":1}]\"}",
6687
+ "payloadType": "json",
6688
+ "result": "{\"b\":[{\"a\":1}]}",
6689
+ "resultType": "json",
6690
+ "resultProperty": "msg.payload",
6691
+ "topic": "",
6692
+ "x": 180,
6693
+ "y": 1240,
6694
+ "wires": [
6695
+ [
6696
+ "8d73196a973a986c"
6697
+ ],
6698
+ [
6699
+ "925117734d8e96b5"
6700
+ ],
6701
+ [
6702
+ "d99bc55ce55d29c4"
6703
+ ]
6704
+ ]
6705
+ },
6706
+ {
6707
+ "id": "d99bc55ce55d29c4",
6708
+ "type": "test",
6709
+ "z": "460ae66eec4b7f8a",
6710
+ "name": "",
6711
+ "errorFactor": "-1",
6712
+ "escapeString": false,
6713
+ "infiniteIsNull": false,
6714
+ "payload": "{\"a\":\"abcde\"}",
6715
+ "payloadType": "json",
6716
+ "result": "{\"b\":[\"ab\",\"de\"]}",
6717
+ "resultType": "json",
6718
+ "resultProperty": "msg.payload",
6719
+ "topic": "",
6720
+ "x": 180,
6721
+ "y": 1320,
6722
+ "wires": [
6723
+ [
6724
+ "5d5a3f0c8be254da"
6725
+ ],
6726
+ [
6727
+ "925117734d8e96b5"
6728
+ ],
6729
+ [
6730
+ "43a88afb923333b5"
6731
+ ]
6732
+ ]
6733
+ },
6734
+ {
6735
+ "id": "43a88afb923333b5",
6736
+ "type": "test",
6737
+ "z": "460ae66eec4b7f8a",
6738
+ "name": "",
6739
+ "errorFactor": "-1",
6740
+ "escapeString": false,
6741
+ "infiniteIsNull": false,
6742
+ "payload": "{\"a\":\"abcde\"}",
6743
+ "payloadType": "json",
6744
+ "result": "{\"b\":true}",
6745
+ "resultType": "json",
6746
+ "resultProperty": "msg.payload",
6747
+ "topic": "",
6748
+ "x": 170,
6749
+ "y": 1400,
6750
+ "wires": [
6751
+ [
6752
+ "2fd3ea0697259d9f"
6753
+ ],
6754
+ [
6755
+ "925117734d8e96b5"
6756
+ ],
6757
+ [
6758
+ "22baecbb272c0ce0"
6759
+ ]
6760
+ ]
6761
+ },
6762
+ {
6763
+ "id": "22baecbb272c0ce0",
6764
+ "type": "test",
6765
+ "z": "460ae66eec4b7f8a",
6766
+ "name": "",
6767
+ "errorFactor": "-1",
6768
+ "escapeString": false,
6769
+ "infiniteIsNull": false,
6770
+ "payload": "{\"a\":\"abcde\"}",
6771
+ "payloadType": "json",
6772
+ "result": "{\"b\":false}",
6773
+ "resultType": "json",
6774
+ "resultProperty": "msg.payload",
6775
+ "topic": "",
6776
+ "x": 180,
6777
+ "y": 1480,
6778
+ "wires": [
6779
+ [
6780
+ "df13affa93676080"
6781
+ ],
6782
+ [
6783
+ "925117734d8e96b5"
6784
+ ],
6785
+ [
6786
+ "96cf6753b9b42df8"
6787
+ ]
6788
+ ]
6789
+ },
6790
+ {
6791
+ "id": "96cf6753b9b42df8",
6792
+ "type": "test",
6793
+ "z": "460ae66eec4b7f8a",
6794
+ "name": "",
6795
+ "errorFactor": "-1",
6796
+ "escapeString": false,
6797
+ "infiniteIsNull": false,
6798
+ "payload": "{\"a\":\" abcde \"}",
6799
+ "payloadType": "json",
6800
+ "result": "{\"b\":\"abcde\"}",
6801
+ "resultType": "json",
6802
+ "resultProperty": "msg.payload",
6803
+ "topic": "",
6804
+ "x": 190,
6805
+ "y": 1560,
6806
+ "wires": [
6807
+ [
6808
+ "022939c0c11b13d3"
6809
+ ],
6810
+ [
6811
+ "925117734d8e96b5"
6812
+ ],
6813
+ [
6814
+ "c7d663c8e599aa49"
6815
+ ]
6816
+ ]
6817
+ },
6818
+ {
6819
+ "id": "c7d663c8e599aa49",
6820
+ "type": "test",
6821
+ "z": "460ae66eec4b7f8a",
6822
+ "name": "",
6823
+ "errorFactor": "-1",
6824
+ "escapeString": false,
6825
+ "infiniteIsNull": false,
6826
+ "payload": "{\"a\":\" abcde \"}",
6827
+ "payloadType": "json",
6828
+ "result": "{\"b\":\" abcde\"}",
6829
+ "resultType": "json",
6830
+ "resultProperty": "msg.payload",
6831
+ "topic": "",
6832
+ "x": 190,
6833
+ "y": 1640,
6834
+ "wires": [
6835
+ [
6836
+ "20c87f4f42eeb3a9"
6837
+ ],
6838
+ [
6839
+ "925117734d8e96b5"
6840
+ ],
6841
+ [
6842
+ "045e7a72b5b8a9a0"
6843
+ ]
6844
+ ]
6845
+ },
6846
+ {
6847
+ "id": "045e7a72b5b8a9a0",
6848
+ "type": "test",
6849
+ "z": "460ae66eec4b7f8a",
6850
+ "name": "",
6851
+ "errorFactor": "-1",
6852
+ "escapeString": false,
6853
+ "infiniteIsNull": false,
6854
+ "payload": "{\"a\":\" abcde \"}",
6855
+ "payloadType": "json",
6856
+ "result": "{\"b\":\"abcde \"}",
6857
+ "resultType": "json",
6858
+ "resultProperty": "msg.payload",
6859
+ "topic": "",
6860
+ "x": 190,
6861
+ "y": 1720,
6862
+ "wires": [
6863
+ [
6864
+ "48a74d7f7044b629"
6865
+ ],
6866
+ [
6867
+ "925117734d8e96b5"
6868
+ ],
6869
+ [
6870
+ "03f40508ed9626ba"
6871
+ ]
6872
+ ]
6873
+ },
6874
+ {
6875
+ "id": "03f40508ed9626ba",
6876
+ "type": "test",
6877
+ "z": "460ae66eec4b7f8a",
6878
+ "name": "",
6879
+ "errorFactor": "-1",
6880
+ "escapeString": false,
6881
+ "infiniteIsNull": false,
6882
+ "payload": "{\"a\":\"aBcDe \"}",
6883
+ "payloadType": "json",
6884
+ "result": "{\"b\":\"ABCDE \"}",
6885
+ "resultType": "json",
6886
+ "resultProperty": "msg.payload",
6887
+ "topic": "",
6888
+ "x": 200,
6889
+ "y": 1800,
6890
+ "wires": [
6891
+ [
6892
+ "c248c9dac1aed77b"
6893
+ ],
6894
+ [
6895
+ "925117734d8e96b5"
6896
+ ],
6897
+ [
6898
+ "c15c5c00703885bf"
6899
+ ]
6900
+ ]
6901
+ },
6902
+ {
6903
+ "id": "0b537acc6037c2fa",
6904
+ "type": "transform",
6905
+ "z": "460ae66eec4b7f8a",
6906
+ "name": "",
6907
+ "actionSource": "String",
6908
+ "deleteSource": "true",
6909
+ "deleteSourceType": "bool",
6910
+ "actionTarget": "Capitalize",
6911
+ "sourceProperty": "msg.payload.a",
6912
+ "targetProperty": "msg.payload.b",
6913
+ "topicProperty": "msg.topic",
6914
+ "index": 0,
6915
+ "maxMessages": 1000,
6916
+ "maxDate": "",
6917
+ "minDate": "",
6918
+ "maxNumber": "",
6919
+ "minNumber": "",
6920
+ "maxString": "",
6921
+ "minString": "",
6922
+ "radix": 10,
6923
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6924
+ "schemaType": "str",
6925
+ "skipLeading": 0,
6926
+ "skipTrailing": 0,
6927
+ "string": "abc",
6928
+ "stringType": "str",
6929
+ "delimiter": ",",
6930
+ "compressionType": "setGzip",
6931
+ "x": 510,
6932
+ "y": 1880,
6933
+ "wires": [
6934
+ [
6935
+ "c15c5c00703885bf"
6936
+ ],
6937
+ [
6938
+ "925117734d8e96b5"
6939
+ ]
6940
+ ]
6941
+ },
6942
+ {
6943
+ "id": "c15c5c00703885bf",
6944
+ "type": "test",
6945
+ "z": "460ae66eec4b7f8a",
6946
+ "name": "",
6947
+ "errorFactor": "-1",
6948
+ "escapeString": false,
6949
+ "infiniteIsNull": false,
6950
+ "payload": "{\"a\":\"test woRD\"}",
6951
+ "payloadType": "json",
6952
+ "result": "{\"b\":\"Test woRD\"}",
6953
+ "resultType": "json",
6954
+ "resultProperty": "msg.payload",
6955
+ "topic": "",
6956
+ "x": 180,
6957
+ "y": 1880,
6958
+ "wires": [
6959
+ [
6960
+ "0b537acc6037c2fa"
6961
+ ],
6962
+ [
6963
+ "925117734d8e96b5"
6964
+ ],
6965
+ [
6966
+ "9480159a4a5fbe51"
6967
+ ]
6968
+ ]
6969
+ },
6970
+ {
6971
+ "id": "30c617bfafa92ac9",
6972
+ "type": "transform",
6973
+ "z": "460ae66eec4b7f8a",
6974
+ "name": "",
6975
+ "actionSource": "String",
6976
+ "deleteSource": "true",
6977
+ "deleteSourceType": "bool",
6978
+ "actionTarget": "Deunderscore",
6979
+ "sourceProperty": "msg.payload.a",
6980
+ "targetProperty": "msg.payload.b",
6981
+ "topicProperty": "msg.topic",
6982
+ "index": 0,
6983
+ "maxMessages": 1000,
6984
+ "maxDate": "",
6985
+ "minDate": "",
6986
+ "maxNumber": "",
6987
+ "minNumber": "",
6988
+ "maxString": "",
6989
+ "minString": "",
6990
+ "radix": 10,
6991
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
6992
+ "schemaType": "str",
6993
+ "skipLeading": 0,
6994
+ "skipTrailing": 0,
6995
+ "string": "abc",
6996
+ "stringType": "str",
6997
+ "delimiter": ",",
6998
+ "compressionType": "setGzip",
6999
+ "x": 520,
7000
+ "y": 1960,
7001
+ "wires": [
7002
+ [
7003
+ "9480159a4a5fbe51"
7004
+ ],
7005
+ [
7006
+ "925117734d8e96b5"
7007
+ ]
7008
+ ]
7009
+ },
7010
+ {
7011
+ "id": "9480159a4a5fbe51",
7012
+ "type": "test",
7013
+ "z": "460ae66eec4b7f8a",
7014
+ "name": "",
7015
+ "errorFactor": "-1",
7016
+ "escapeString": false,
7017
+ "infiniteIsNull": false,
7018
+ "payload": "{\"a\":\"testing_change_again\"}",
7019
+ "payloadType": "json",
7020
+ "result": "{\"b\":\"testing change again\"}",
7021
+ "resultType": "json",
7022
+ "resultProperty": "msg.payload",
7023
+ "topic": "",
7024
+ "x": 180,
7025
+ "y": 1960,
7026
+ "wires": [
7027
+ [
7028
+ "30c617bfafa92ac9"
7029
+ ],
7030
+ [
7031
+ "925117734d8e96b5"
7032
+ ],
7033
+ [
7034
+ "985b4d8a6a9d4b61"
7035
+ ]
7036
+ ]
7037
+ },
7038
+ {
7039
+ "id": "c5a6c9d55ea9668f",
7040
+ "type": "transform",
7041
+ "z": "460ae66eec4b7f8a",
7042
+ "name": "",
7043
+ "actionSource": "String",
7044
+ "deleteSource": "true",
7045
+ "deleteSourceType": "bool",
7046
+ "actionTarget": "DeunderscoreCapitilize",
7047
+ "sourceProperty": "msg.payload.a",
7048
+ "targetProperty": "msg.payload.b",
7049
+ "topicProperty": "msg.topic",
7050
+ "index": 0,
7051
+ "maxMessages": 1000,
7052
+ "maxDate": "",
7053
+ "minDate": "",
7054
+ "maxNumber": "",
7055
+ "minNumber": "",
7056
+ "maxString": "",
7057
+ "minString": "",
7058
+ "radix": 10,
7059
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
7060
+ "schemaType": "str",
7061
+ "skipLeading": 0,
7062
+ "skipTrailing": 0,
7063
+ "string": "abc",
7064
+ "stringType": "str",
7065
+ "delimiter": ",",
7066
+ "compressionType": "setGzip",
7067
+ "x": 550,
7068
+ "y": 2040,
7069
+ "wires": [
7070
+ [
7071
+ "985b4d8a6a9d4b61"
7072
+ ],
7073
+ [
7074
+ "925117734d8e96b5"
7075
+ ]
7076
+ ]
7077
+ },
7078
+ {
7079
+ "id": "985b4d8a6a9d4b61",
7080
+ "type": "test",
7081
+ "z": "460ae66eec4b7f8a",
7082
+ "name": "",
7083
+ "errorFactor": "-1",
7084
+ "escapeString": false,
7085
+ "infiniteIsNull": false,
7086
+ "payload": "{\"a\":\"a_sentence_with_underscore\"}",
7087
+ "payloadType": "json",
7088
+ "result": "{\"b\":\"A Sentence With Underscore\"}",
7089
+ "resultType": "json",
7090
+ "resultProperty": "msg.payload",
7091
+ "topic": "",
7092
+ "x": 190,
7093
+ "y": 2040,
7094
+ "wires": [
7095
+ [
7096
+ "c5a6c9d55ea9668f"
7097
+ ],
7098
+ [
7099
+ "925117734d8e96b5"
7100
+ ],
7101
+ [
7102
+ "1f88e3bbc985ab53"
7103
+ ]
7104
+ ]
7105
+ },
7106
+ {
7107
+ "id": "47657776668b794b",
7108
+ "type": "transform",
7109
+ "z": "460ae66eec4b7f8a",
7110
+ "name": "",
7111
+ "actionSource": "String",
7112
+ "deleteSource": "true",
7113
+ "deleteSourceType": "bool",
7114
+ "actionTarget": "DropSquareBracketPrefix",
7115
+ "sourceProperty": "msg.payload.a",
7116
+ "targetProperty": "msg.payload.b",
7117
+ "topicProperty": "msg.topic",
7118
+ "index": 0,
7119
+ "maxMessages": 1000,
7120
+ "maxDate": "",
7121
+ "minDate": "",
7122
+ "maxNumber": "",
7123
+ "minNumber": "",
7124
+ "maxString": "",
7125
+ "minString": "",
7126
+ "radix": 10,
7127
+ "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
7128
+ "schemaType": "str",
7129
+ "skipLeading": 0,
7130
+ "skipTrailing": 0,
7131
+ "string": "abc",
7132
+ "stringType": "str",
7133
+ "delimiter": ",",
7134
+ "compressionType": "setGzip",
7135
+ "x": 560,
7136
+ "y": 2120,
7137
+ "wires": [
7138
+ [
7139
+ "1f88e3bbc985ab53"
7140
+ ],
7141
+ [
7142
+ "925117734d8e96b5"
7143
+ ]
7144
+ ]
7145
+ },
7146
+ {
7147
+ "id": "1f88e3bbc985ab53",
7148
+ "type": "test",
7149
+ "z": "460ae66eec4b7f8a",
7150
+ "name": "",
7151
+ "errorFactor": "-1",
7152
+ "escapeString": false,
7153
+ "infiniteIsNull": false,
7154
+ "payload": "{\"a\":\"[a] Atest\"}",
7155
+ "payloadType": "json",
7156
+ "result": "{\"b\":\"Atest\"}",
7157
+ "resultType": "json",
7158
+ "resultProperty": "msg.payload",
3814
7159
  "topic": "",
3815
- "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3816
- "payloadType": "bin",
3817
- "x": 110,
3818
- "y": 100,
7160
+ "x": 180,
7161
+ "y": 2120,
3819
7162
  "wires": [
3820
7163
  [
3821
- "ee2d5b0149699bfd"
7164
+ "47657776668b794b"
7165
+ ],
7166
+ [
7167
+ "925117734d8e96b5"
7168
+ ],
7169
+ [
7170
+ "e3bf18165cc21384"
3822
7171
  ]
3823
7172
  ]
3824
7173
  },
3825
7174
  {
3826
- "id": "ee2d5b0149699bfd",
7175
+ "id": "972d66bf01ceaff7",
3827
7176
  "type": "transform",
3828
- "z": "65b5beda2b73b7b5",
7177
+ "z": "460ae66eec4b7f8a",
3829
7178
  "name": "",
3830
- "actionSource": "Buffer",
3831
- "actionTarget": "Compressed",
3832
- "sourceProperty": "msg.payload",
3833
- "targetProperty": "msg.payload",
7179
+ "actionSource": "String",
7180
+ "deleteSource": "true",
7181
+ "deleteSourceType": "bool",
7182
+ "actionTarget": "RangeLimit",
7183
+ "sourceProperty": "msg.payload.a",
7184
+ "targetProperty": "msg.payload.b",
3834
7185
  "topicProperty": "msg.topic",
7186
+ "index": 0,
3835
7187
  "maxMessages": 1000,
7188
+ "maxDate": "",
7189
+ "minDate": "",
7190
+ "maxNumber": "",
7191
+ "minNumber": "",
7192
+ "maxString": "bc",
7193
+ "minString": "a",
7194
+ "radix": 10,
3836
7195
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3837
- "schemaType": "json",
7196
+ "schemaType": "str",
3838
7197
  "skipLeading": 0,
3839
7198
  "skipTrailing": 0,
7199
+ "string": "abc",
7200
+ "stringType": "str",
3840
7201
  "delimiter": ",",
3841
7202
  "compressionType": "setGzip",
3842
- "x": 340,
3843
- "y": 100,
7203
+ "x": 520,
7204
+ "y": 2200,
3844
7205
  "wires": [
3845
7206
  [
3846
- "aba26b9c6499adb1",
3847
- "8137c393bddb08a1"
7207
+ "e3bf18165cc21384"
3848
7208
  ],
3849
7209
  [
3850
- "10a0adbf5535121a"
7210
+ "925117734d8e96b5"
3851
7211
  ]
3852
7212
  ]
3853
7213
  },
3854
7214
  {
3855
- "id": "8137c393bddb08a1",
3856
- "type": "debug",
3857
- "z": "65b5beda2b73b7b5",
3858
- "name": "debug",
3859
- "active": true,
3860
- "tosidebar": true,
3861
- "console": false,
3862
- "tostatus": false,
3863
- "complete": "payload",
3864
- "targetType": "msg",
3865
- "statusVal": "",
3866
- "statusType": "auto",
3867
- "x": 670,
3868
- "y": 100,
7215
+ "id": "e3bf18165cc21384",
7216
+ "type": "test",
7217
+ "z": "460ae66eec4b7f8a",
7218
+ "name": "",
7219
+ "errorFactor": "-1",
7220
+ "escapeString": false,
7221
+ "infiniteIsNull": false,
7222
+ "payload": "{\"a\":\"atest\"}",
7223
+ "payloadType": "json",
7224
+ "result": "{\"b\":\"atest\"}",
7225
+ "resultType": "json",
7226
+ "resultProperty": "msg.payload",
7227
+ "topic": "",
7228
+ "x": 180,
7229
+ "y": 2200,
7230
+ "wires": [
7231
+ [
7232
+ "972d66bf01ceaff7"
7233
+ ],
7234
+ [
7235
+ "925117734d8e96b5"
7236
+ ],
7237
+ [
7238
+ "bee4fdd51ea59704"
7239
+ ]
7240
+ ]
7241
+ },
7242
+ {
7243
+ "id": "e057797d0b796145",
7244
+ "type": "link in",
7245
+ "z": "460ae66eec4b7f8a",
7246
+ "name": "transform string in",
7247
+ "links": [],
7248
+ "x": 55,
7249
+ "y": 40,
7250
+ "wires": [
7251
+ [
7252
+ "9ec96a604b0f3e20"
7253
+ ]
7254
+ ]
7255
+ },
7256
+ {
7257
+ "id": "bee4fdd51ea59704",
7258
+ "type": "link out",
7259
+ "z": "460ae66eec4b7f8a",
7260
+ "name": "transform string",
7261
+ "mode": "return",
7262
+ "links": [],
7263
+ "x": 335,
7264
+ "y": 2340,
3869
7265
  "wires": []
3870
7266
  },
3871
7267
  {
3872
- "id": "10a0adbf5535121a",
7268
+ "id": "3db2b919.ea68d6",
3873
7269
  "type": "debug",
3874
- "z": "65b5beda2b73b7b5",
7270
+ "z": "924bb2b7.03fd1",
3875
7271
  "name": "error",
3876
7272
  "active": true,
3877
7273
  "tosidebar": true,
@@ -3881,225 +7277,232 @@
3881
7277
  "targetType": "full",
3882
7278
  "statusVal": "",
3883
7279
  "statusType": "auto",
3884
- "x": 690,
3885
- "y": 220,
7280
+ "x": 730,
7281
+ "y": 420,
3886
7282
  "wires": []
3887
7283
  },
3888
7284
  {
3889
- "id": "aba26b9c6499adb1",
3890
- "type": "transform",
3891
- "z": "65b5beda2b73b7b5",
7285
+ "id": "32a48f00e9c32747",
7286
+ "type": "Monitor Flow",
7287
+ "z": "924bb2b7.03fd1",
3892
7288
  "name": "",
3893
- "actionSource": "Compressed",
3894
- "actionTarget": "Buffer",
3895
- "sourceProperty": "msg.payload",
3896
- "targetProperty": "msg.payload",
3897
- "topicProperty": "msg.topic",
3898
- "maxMessages": 1000,
3899
- "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3900
- "schemaType": "json",
3901
- "skipLeading": 0,
3902
- "skipTrailing": 0,
3903
- "delimiter": ",",
3904
- "compressionType": "setGzip",
3905
- "x": 360,
3906
- "y": 180,
7289
+ "x": 590,
7290
+ "y": 20,
3907
7291
  "wires": [
3908
7292
  [
3909
- "8137c393bddb08a1",
3910
- "d38095883a4a54ac"
3911
- ],
3912
- []
7293
+ "7794ab9c1ff64390"
7294
+ ]
3913
7295
  ]
3914
7296
  },
3915
7297
  {
3916
- "id": "d38095883a4a54ac",
7298
+ "id": "4e471cf4f77579e9",
7299
+ "type": "link out",
7300
+ "z": "924bb2b7.03fd1",
7301
+ "name": "transform xlsx finish",
7302
+ "mode": "return",
7303
+ "links": [],
7304
+ "x": 745,
7305
+ "y": 60,
7306
+ "wires": []
7307
+ },
7308
+ {
7309
+ "id": "0e4f57304e89edb8",
3917
7310
  "type": "test",
3918
- "z": "65b5beda2b73b7b5",
3919
- "name": "test gzip",
7311
+ "z": "924bb2b7.03fd1",
7312
+ "name": "",
3920
7313
  "errorFactor": 0,
3921
7314
  "escapeString": false,
3922
7315
  "infiniteIsNull": false,
3923
- "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3924
- "payloadType": "bin",
3925
- "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
3926
- "resultType": "bin",
7316
+ "payload": "{\"worksheet1\":[[11,12],[21,22],[31,32]],\"worksheet2\":[[11,12],[21,22]]}",
7317
+ "payloadType": "json",
7318
+ "result": "",
7319
+ "resultType": "date",
3927
7320
  "resultProperty": "msg.payload",
3928
- "topic": "test gzip",
3929
- "x": 120,
3930
- "y": 260,
7321
+ "topic": "",
7322
+ "x": 260,
7323
+ "y": 40,
3931
7324
  "wires": [
3932
7325
  [
3933
- "ee2d5b0149699bfd"
7326
+ "32a48f00e9c32747"
3934
7327
  ],
3935
7328
  [
3936
- "10a0adbf5535121a"
7329
+ "3db2b919.ea68d6"
3937
7330
  ],
3938
7331
  [
3939
- "95a62d934bb57fcd"
7332
+ "4e471cf4f77579e9"
3940
7333
  ]
3941
7334
  ]
3942
7335
  },
3943
7336
  {
3944
- "id": "50672d0a987880df",
7337
+ "id": "7794ab9c1ff64390",
3945
7338
  "type": "transform",
3946
- "z": "65b5beda2b73b7b5",
7339
+ "z": "924bb2b7.03fd1",
3947
7340
  "name": "",
3948
- "actionSource": "Buffer",
3949
- "actionTarget": "Compressed",
7341
+ "actionSource": "Array",
7342
+ "deleteSource": "true",
7343
+ "deleteSourceType": "bool",
7344
+ "actionTarget": "XLSX",
3950
7345
  "sourceProperty": "msg.payload",
3951
7346
  "targetProperty": "msg.payload",
3952
7347
  "topicProperty": "msg.topic",
7348
+ "JSONataSource": "",
7349
+ "JSONataSourceType": "jsonata",
7350
+ "JSONataTarget": "",
7351
+ "JSONataTargetType": "jsonata",
7352
+ "index": 0,
3953
7353
  "maxMessages": 1000,
7354
+ "maxDate": "",
7355
+ "minDate": "",
7356
+ "maxNumber": 0,
7357
+ "minNumber": 0,
7358
+ "maxString": "",
7359
+ "minString": "",
7360
+ "radix": 10,
3954
7361
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3955
- "schemaType": "json",
7362
+ "schemaType": "str",
3956
7363
  "skipLeading": 0,
3957
7364
  "skipTrailing": 0,
7365
+ "string": "",
7366
+ "stringType": "str",
3958
7367
  "delimiter": ",",
3959
- "compressionType": "setGzipSpeed",
3960
- "x": 360,
3961
- "y": 340,
7368
+ "compressionType": "setGzip",
7369
+ "x": 520,
7370
+ "y": 140,
3962
7371
  "wires": [
3963
7372
  [
3964
- "7a65c34df4ae2ce4"
7373
+ "69cf00efd482d012"
3965
7374
  ],
3966
7375
  [
3967
- "10a0adbf5535121a"
7376
+ "3db2b919.ea68d6"
3968
7377
  ]
3969
7378
  ]
3970
7379
  },
3971
7380
  {
3972
- "id": "7a65c34df4ae2ce4",
7381
+ "id": "000cda4258683bde",
3973
7382
  "type": "transform",
3974
- "z": "65b5beda2b73b7b5",
7383
+ "z": "924bb2b7.03fd1",
3975
7384
  "name": "",
3976
- "actionSource": "Compressed",
3977
- "actionTarget": "Buffer",
7385
+ "actionSource": "XLSX",
7386
+ "deleteSource": "true",
7387
+ "deleteSourceType": "bool",
7388
+ "actionTarget": "XLSXObject",
3978
7389
  "sourceProperty": "msg.payload",
3979
7390
  "targetProperty": "msg.payload",
3980
7391
  "topicProperty": "msg.topic",
7392
+ "JSONataSource": "",
7393
+ "JSONataSourceType": "jsonata",
7394
+ "JSONataTarget": "",
7395
+ "JSONataTargetType": "jsonata",
7396
+ "index": 0,
3981
7397
  "maxMessages": 1000,
7398
+ "maxDate": "",
7399
+ "minDate": "",
7400
+ "maxNumber": 0,
7401
+ "minNumber": 0,
7402
+ "maxString": "",
7403
+ "minString": "",
7404
+ "radix": 10,
3982
7405
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
3983
- "schemaType": "json",
7406
+ "schemaType": "str",
3984
7407
  "skipLeading": 0,
3985
7408
  "skipTrailing": 0,
7409
+ "string": "",
7410
+ "stringType": "str",
3986
7411
  "delimiter": ",",
3987
7412
  "compressionType": "setGzip",
3988
7413
  "x": 380,
3989
- "y": 420,
3990
- "wires": [
3991
- [
3992
- "95a62d934bb57fcd"
3993
- ],
3994
- [
3995
- "10a0adbf5535121a"
3996
- ]
3997
- ]
3998
- },
3999
- {
4000
- "id": "95a62d934bb57fcd",
4001
- "type": "test",
4002
- "z": "65b5beda2b73b7b5",
4003
- "name": "test gzip speed",
4004
- "errorFactor": 0,
4005
- "escapeString": false,
4006
- "infiniteIsNull": false,
4007
- "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4008
- "payloadType": "bin",
4009
- "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4010
- "resultType": "bin",
4011
- "resultProperty": "msg.payload",
4012
- "topic": "test gzip speed",
4013
- "x": 120,
4014
- "y": 480,
7414
+ "y": 220,
4015
7415
  "wires": [
4016
7416
  [
4017
- "50672d0a987880df"
4018
- ],
4019
- [
4020
- "10a0adbf5535121a"
7417
+ "7208e9201d7f1fcf"
4021
7418
  ],
4022
7419
  [
4023
- "065ac327fbf17d38"
7420
+ "3db2b919.ea68d6"
4024
7421
  ]
4025
7422
  ]
4026
7423
  },
4027
7424
  {
4028
- "id": "44b0be1b07c2ccc2",
7425
+ "id": "dd556f2fb8c84838",
4029
7426
  "type": "transform",
4030
- "z": "65b5beda2b73b7b5",
7427
+ "z": "924bb2b7.03fd1",
4031
7428
  "name": "",
4032
- "actionSource": "Buffer",
4033
- "actionTarget": "Compressed",
7429
+ "actionSource": "XLSXObject",
7430
+ "deleteSource": "true",
7431
+ "deleteSourceType": "bool",
7432
+ "actionTarget": "JSON",
4034
7433
  "sourceProperty": "msg.payload",
4035
7434
  "targetProperty": "msg.payload",
4036
7435
  "topicProperty": "msg.topic",
7436
+ "JSONataSource": "",
7437
+ "JSONataSourceType": "jsonata",
7438
+ "JSONataTarget": "",
7439
+ "JSONataTargetType": "jsonata",
7440
+ "index": 0,
4037
7441
  "maxMessages": 1000,
7442
+ "maxDate": "",
7443
+ "minDate": "",
7444
+ "maxNumber": 0,
7445
+ "minNumber": 0,
7446
+ "maxString": "",
7447
+ "minString": "",
7448
+ "radix": 10,
4038
7449
  "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4039
- "schemaType": "json",
7450
+ "schemaType": "str",
4040
7451
  "skipLeading": 0,
4041
7452
  "skipTrailing": 0,
7453
+ "string": "",
7454
+ "stringType": "str",
4042
7455
  "delimiter": ",",
4043
- "compressionType": "setGzipCompression",
4044
- "x": 400,
4045
- "y": 540,
7456
+ "compressionType": "setGzip",
7457
+ "x": 140,
7458
+ "y": 320,
4046
7459
  "wires": [
4047
7460
  [
4048
- "1a31abc23d7473a0"
7461
+ "0e4f57304e89edb8"
4049
7462
  ],
4050
- []
7463
+ [
7464
+ "3db2b919.ea68d6"
7465
+ ]
4051
7466
  ]
4052
7467
  },
4053
7468
  {
4054
- "id": "1a31abc23d7473a0",
4055
- "type": "transform",
4056
- "z": "65b5beda2b73b7b5",
7469
+ "id": "7208e9201d7f1fcf",
7470
+ "type": "Monitor Flow",
7471
+ "z": "924bb2b7.03fd1",
4057
7472
  "name": "",
4058
- "actionSource": "Compressed",
4059
- "actionTarget": "Buffer",
4060
- "sourceProperty": "msg.payload",
4061
- "targetProperty": "msg.payload",
4062
- "topicProperty": "msg.topic",
4063
- "maxMessages": 1000,
4064
- "schema": "{\"type\":\"record\",\"fields\":[{\"name\":\"name\",\"type\":\"string\"}]}",
4065
- "schemaType": "json",
4066
- "skipLeading": 0,
4067
- "skipTrailing": 0,
4068
- "delimiter": ",",
4069
- "compressionType": "setGzip",
4070
- "x": 420,
4071
- "y": 620,
7473
+ "x": 750,
7474
+ "y": 220,
4072
7475
  "wires": [
4073
7476
  [
4074
- "065ac327fbf17d38"
4075
- ],
4076
- []
7477
+ "dd556f2fb8c84838"
7478
+ ]
4077
7479
  ]
4078
7480
  },
4079
7481
  {
4080
- "id": "065ac327fbf17d38",
4081
- "type": "test",
4082
- "z": "65b5beda2b73b7b5",
4083
- "name": "test gzip compress",
4084
- "errorFactor": 0,
4085
- "escapeString": false,
4086
- "infiniteIsNull": false,
4087
- "payload": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4088
- "payloadType": "bin",
4089
- "result": "[49,50,51,52,53,54,55,56,57,48,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,85,82,83,84,85,86,87,88,89,90,33,64,35,36,37,94,38,42,40,41,95,45,43,61,123,91,125,93,124,92,58,34,39,60,44,62,46,63,47,125]",
4090
- "resultType": "bin",
4091
- "resultProperty": "msg.payload",
4092
- "topic": "test gzip compress",
4093
- "x": 170,
4094
- "y": 680,
7482
+ "id": "69cf00efd482d012",
7483
+ "type": "Monitor Flow",
7484
+ "z": "924bb2b7.03fd1",
7485
+ "name": "",
7486
+ "x": 750,
7487
+ "y": 140,
4095
7488
  "wires": [
4096
7489
  [
4097
- "44b0be1b07c2ccc2"
4098
- ],
7490
+ "000cda4258683bde"
7491
+ ]
7492
+ ]
7493
+ },
7494
+ {
7495
+ "id": "6ed524d3e461526d",
7496
+ "type": "link in",
7497
+ "z": "924bb2b7.03fd1",
7498
+ "name": "transform xlsx",
7499
+ "links": [],
7500
+ "x": 45,
7501
+ "y": 40,
7502
+ "wires": [
4099
7503
  [
4100
- "10a0adbf5535121a"
4101
- ],
4102
- []
7504
+ "0e4f57304e89edb8"
7505
+ ]
4103
7506
  ]
4104
7507
  }
4105
7508
  ]