@dxos/cli 0.4.10-main.fa5a270 → 0.4.10-main.fe71b4c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/base-command.d.ts +4 -1
- package/dist/src/base-command.d.ts.map +1 -1
- package/dist/src/base-command.js +74 -17
- package/dist/src/base-command.js.map +1 -1
- package/dist/src/commands/agent/invitations.d.ts +3 -0
- package/dist/src/commands/agent/invitations.d.ts.map +1 -1
- package/dist/src/commands/agent/list.d.ts +3 -0
- package/dist/src/commands/agent/list.d.ts.map +1 -1
- package/dist/src/commands/agent/restart.d.ts +3 -0
- package/dist/src/commands/agent/restart.d.ts.map +1 -1
- package/dist/src/commands/agent/start.d.ts +4 -0
- package/dist/src/commands/agent/start.d.ts.map +1 -1
- package/dist/src/commands/agent/start.js +19 -1
- package/dist/src/commands/agent/start.js.map +1 -1
- package/dist/src/commands/agent/stop.d.ts +3 -0
- package/dist/src/commands/agent/stop.d.ts.map +1 -1
- package/dist/src/commands/app/create.d.ts +3 -0
- package/dist/src/commands/app/create.d.ts.map +1 -1
- package/dist/src/commands/app/open.d.ts +3 -0
- package/dist/src/commands/app/open.d.ts.map +1 -1
- package/dist/src/commands/app/open.js +2 -1
- package/dist/src/commands/app/open.js.map +1 -1
- package/dist/src/commands/app/publish.d.ts +3 -0
- package/dist/src/commands/app/publish.d.ts.map +1 -1
- package/dist/src/commands/debug/diagnostics.d.ts +3 -0
- package/dist/src/commands/debug/diagnostics.d.ts.map +1 -1
- package/dist/src/commands/debug/generate.d.ts +3 -0
- package/dist/src/commands/debug/generate.d.ts.map +1 -1
- package/dist/src/commands/debug/generate.js +1 -1
- package/dist/src/commands/debug/generate.js.map +1 -1
- package/dist/src/commands/debug/status.d.ts +3 -0
- package/dist/src/commands/debug/status.d.ts.map +1 -1
- package/dist/src/commands/device/list.d.ts +3 -0
- package/dist/src/commands/device/list.d.ts.map +1 -1
- package/dist/src/commands/device/update.d.ts +3 -0
- package/dist/src/commands/device/update.d.ts.map +1 -1
- package/dist/src/commands/function/dev.d.ts +3 -0
- package/dist/src/commands/function/dev.d.ts.map +1 -1
- package/dist/src/commands/halo/create.d.ts +3 -0
- package/dist/src/commands/halo/create.d.ts.map +1 -1
- package/dist/src/commands/halo/credential/list.d.ts +3 -0
- package/dist/src/commands/halo/credential/list.d.ts.map +1 -1
- package/dist/src/commands/halo/join.d.ts +3 -0
- package/dist/src/commands/halo/join.d.ts.map +1 -1
- package/dist/src/commands/halo/share.d.ts +3 -0
- package/dist/src/commands/halo/share.d.ts.map +1 -1
- package/dist/src/commands/halo/update.d.ts +3 -0
- package/dist/src/commands/halo/update.d.ts.map +1 -1
- package/dist/src/commands/kube/deploy.d.ts +3 -0
- package/dist/src/commands/kube/deploy.d.ts.map +1 -1
- package/dist/src/commands/reset/index.d.ts +3 -0
- package/dist/src/commands/reset/index.d.ts.map +1 -1
- package/dist/src/commands/space/join.d.ts +3 -0
- package/dist/src/commands/space/join.d.ts.map +1 -1
- package/dist/src/commands/space/list.d.ts +3 -0
- package/dist/src/commands/space/list.d.ts.map +1 -1
- package/dist/src/commands/space/members.d.ts +3 -0
- package/dist/src/commands/space/members.d.ts.map +1 -1
- package/dist/src/commands/space/share.d.ts +3 -0
- package/dist/src/commands/space/share.d.ts.map +1 -1
- package/dist/src/commands/space/share.js +1 -2
- package/dist/src/commands/space/share.js.map +1 -1
- package/dist/src/commands/tunnel/index.d.ts +3 -0
- package/dist/src/commands/tunnel/index.d.ts.map +1 -1
- package/dist/src/errors.d.ts +5 -0
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +11 -1
- package/dist/src/errors.js.map +1 -1
- package/oclif.manifest.json +864 -2
- package/package.json +24 -24
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.4.10-main.
|
|
2
|
+
"version": "0.4.10-main.fe71b4c",
|
|
3
3
|
"commands": {
|
|
4
4
|
"agent:invitations": {
|
|
5
5
|
"id": "agent:invitations",
|
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
"c"
|
|
52
52
|
]
|
|
53
53
|
},
|
|
54
|
+
"target": {
|
|
55
|
+
"name": "target",
|
|
56
|
+
"type": "option",
|
|
57
|
+
"description": "Target websocket server.",
|
|
58
|
+
"multiple": false
|
|
59
|
+
},
|
|
54
60
|
"no-agent": {
|
|
55
61
|
"name": "no-agent",
|
|
56
62
|
"type": "boolean",
|
|
@@ -73,6 +79,19 @@
|
|
|
73
79
|
"description": "Do not wait for space to be ready.",
|
|
74
80
|
"allowNo": false
|
|
75
81
|
},
|
|
82
|
+
"json-log": {
|
|
83
|
+
"name": "json-log",
|
|
84
|
+
"type": "boolean",
|
|
85
|
+
"description": "When running in foreground, log JSON format",
|
|
86
|
+
"allowNo": false
|
|
87
|
+
},
|
|
88
|
+
"json-logfile": {
|
|
89
|
+
"name": "json-logfile",
|
|
90
|
+
"type": "option",
|
|
91
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
92
|
+
"multiple": false,
|
|
93
|
+
"default": "stderr"
|
|
94
|
+
},
|
|
76
95
|
"no-truncate": {
|
|
77
96
|
"name": "no-truncate",
|
|
78
97
|
"type": "boolean",
|
|
@@ -131,6 +150,12 @@
|
|
|
131
150
|
"c"
|
|
132
151
|
]
|
|
133
152
|
},
|
|
153
|
+
"target": {
|
|
154
|
+
"name": "target",
|
|
155
|
+
"type": "option",
|
|
156
|
+
"description": "Target websocket server.",
|
|
157
|
+
"multiple": false
|
|
158
|
+
},
|
|
134
159
|
"no-agent": {
|
|
135
160
|
"name": "no-agent",
|
|
136
161
|
"type": "boolean",
|
|
@@ -153,6 +178,19 @@
|
|
|
153
178
|
"description": "Do not wait for space to be ready.",
|
|
154
179
|
"allowNo": false
|
|
155
180
|
},
|
|
181
|
+
"json-log": {
|
|
182
|
+
"name": "json-log",
|
|
183
|
+
"type": "boolean",
|
|
184
|
+
"description": "When running in foreground, log JSON format",
|
|
185
|
+
"allowNo": false
|
|
186
|
+
},
|
|
187
|
+
"json-logfile": {
|
|
188
|
+
"name": "json-logfile",
|
|
189
|
+
"type": "option",
|
|
190
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
191
|
+
"multiple": false,
|
|
192
|
+
"default": "stderr"
|
|
193
|
+
},
|
|
156
194
|
"columns": {
|
|
157
195
|
"name": "columns",
|
|
158
196
|
"type": "option",
|
|
@@ -290,6 +328,12 @@
|
|
|
290
328
|
"c"
|
|
291
329
|
]
|
|
292
330
|
},
|
|
331
|
+
"target": {
|
|
332
|
+
"name": "target",
|
|
333
|
+
"type": "option",
|
|
334
|
+
"description": "Target websocket server.",
|
|
335
|
+
"multiple": false
|
|
336
|
+
},
|
|
293
337
|
"no-agent": {
|
|
294
338
|
"name": "no-agent",
|
|
295
339
|
"type": "boolean",
|
|
@@ -312,6 +356,19 @@
|
|
|
312
356
|
"description": "Do not wait for space to be ready.",
|
|
313
357
|
"allowNo": false
|
|
314
358
|
},
|
|
359
|
+
"json-log": {
|
|
360
|
+
"name": "json-log",
|
|
361
|
+
"type": "boolean",
|
|
362
|
+
"description": "When running in foreground, log JSON format",
|
|
363
|
+
"allowNo": false
|
|
364
|
+
},
|
|
365
|
+
"json-logfile": {
|
|
366
|
+
"name": "json-logfile",
|
|
367
|
+
"type": "option",
|
|
368
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
369
|
+
"multiple": false,
|
|
370
|
+
"default": "stderr"
|
|
371
|
+
},
|
|
315
372
|
"force": {
|
|
316
373
|
"name": "force",
|
|
317
374
|
"type": "boolean",
|
|
@@ -382,6 +439,12 @@
|
|
|
382
439
|
"c"
|
|
383
440
|
]
|
|
384
441
|
},
|
|
442
|
+
"target": {
|
|
443
|
+
"name": "target",
|
|
444
|
+
"type": "option",
|
|
445
|
+
"description": "Target websocket server.",
|
|
446
|
+
"multiple": false
|
|
447
|
+
},
|
|
385
448
|
"no-agent": {
|
|
386
449
|
"name": "no-agent",
|
|
387
450
|
"type": "boolean",
|
|
@@ -404,6 +467,19 @@
|
|
|
404
467
|
"description": "Do not wait for space to be ready.",
|
|
405
468
|
"allowNo": false
|
|
406
469
|
},
|
|
470
|
+
"json-log": {
|
|
471
|
+
"name": "json-log",
|
|
472
|
+
"type": "boolean",
|
|
473
|
+
"description": "When running in foreground, log JSON format",
|
|
474
|
+
"allowNo": false
|
|
475
|
+
},
|
|
476
|
+
"json-logfile": {
|
|
477
|
+
"name": "json-logfile",
|
|
478
|
+
"type": "option",
|
|
479
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
480
|
+
"multiple": false,
|
|
481
|
+
"default": "stderr"
|
|
482
|
+
},
|
|
407
483
|
"foreground": {
|
|
408
484
|
"name": "foreground",
|
|
409
485
|
"type": "boolean",
|
|
@@ -427,6 +503,13 @@
|
|
|
427
503
|
"web-socket"
|
|
428
504
|
]
|
|
429
505
|
},
|
|
506
|
+
"http": {
|
|
507
|
+
"name": "http",
|
|
508
|
+
"type": "option",
|
|
509
|
+
"description": "Expose http port.",
|
|
510
|
+
"helpValue": "port",
|
|
511
|
+
"multiple": false
|
|
512
|
+
},
|
|
430
513
|
"metrics": {
|
|
431
514
|
"name": "metrics",
|
|
432
515
|
"type": "boolean",
|
|
@@ -485,6 +568,12 @@
|
|
|
485
568
|
"c"
|
|
486
569
|
]
|
|
487
570
|
},
|
|
571
|
+
"target": {
|
|
572
|
+
"name": "target",
|
|
573
|
+
"type": "option",
|
|
574
|
+
"description": "Target websocket server.",
|
|
575
|
+
"multiple": false
|
|
576
|
+
},
|
|
488
577
|
"no-agent": {
|
|
489
578
|
"name": "no-agent",
|
|
490
579
|
"type": "boolean",
|
|
@@ -507,6 +596,19 @@
|
|
|
507
596
|
"description": "Do not wait for space to be ready.",
|
|
508
597
|
"allowNo": false
|
|
509
598
|
},
|
|
599
|
+
"json-log": {
|
|
600
|
+
"name": "json-log",
|
|
601
|
+
"type": "boolean",
|
|
602
|
+
"description": "When running in foreground, log JSON format",
|
|
603
|
+
"allowNo": false
|
|
604
|
+
},
|
|
605
|
+
"json-logfile": {
|
|
606
|
+
"name": "json-logfile",
|
|
607
|
+
"type": "option",
|
|
608
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
609
|
+
"multiple": false,
|
|
610
|
+
"default": "stderr"
|
|
611
|
+
},
|
|
510
612
|
"all": {
|
|
511
613
|
"name": "all",
|
|
512
614
|
"type": "boolean",
|
|
@@ -577,6 +679,12 @@
|
|
|
577
679
|
"c"
|
|
578
680
|
]
|
|
579
681
|
},
|
|
682
|
+
"target": {
|
|
683
|
+
"name": "target",
|
|
684
|
+
"type": "option",
|
|
685
|
+
"description": "Target websocket server.",
|
|
686
|
+
"multiple": false
|
|
687
|
+
},
|
|
580
688
|
"no-agent": {
|
|
581
689
|
"name": "no-agent",
|
|
582
690
|
"type": "boolean",
|
|
@@ -599,6 +707,19 @@
|
|
|
599
707
|
"description": "Do not wait for space to be ready.",
|
|
600
708
|
"allowNo": false
|
|
601
709
|
},
|
|
710
|
+
"json-log": {
|
|
711
|
+
"name": "json-log",
|
|
712
|
+
"type": "boolean",
|
|
713
|
+
"description": "When running in foreground, log JSON format",
|
|
714
|
+
"allowNo": false
|
|
715
|
+
},
|
|
716
|
+
"json-logfile": {
|
|
717
|
+
"name": "json-logfile",
|
|
718
|
+
"type": "option",
|
|
719
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
720
|
+
"multiple": false,
|
|
721
|
+
"default": "stderr"
|
|
722
|
+
},
|
|
602
723
|
"tag": {
|
|
603
724
|
"name": "tag",
|
|
604
725
|
"type": "option",
|
|
@@ -684,6 +805,12 @@
|
|
|
684
805
|
"c"
|
|
685
806
|
]
|
|
686
807
|
},
|
|
808
|
+
"target": {
|
|
809
|
+
"name": "target",
|
|
810
|
+
"type": "option",
|
|
811
|
+
"description": "Target websocket server.",
|
|
812
|
+
"multiple": false
|
|
813
|
+
},
|
|
687
814
|
"no-agent": {
|
|
688
815
|
"name": "no-agent",
|
|
689
816
|
"type": "boolean",
|
|
@@ -705,6 +832,19 @@
|
|
|
705
832
|
"type": "boolean",
|
|
706
833
|
"description": "Do not wait for space to be ready.",
|
|
707
834
|
"allowNo": false
|
|
835
|
+
},
|
|
836
|
+
"json-log": {
|
|
837
|
+
"name": "json-log",
|
|
838
|
+
"type": "boolean",
|
|
839
|
+
"description": "When running in foreground, log JSON format",
|
|
840
|
+
"allowNo": false
|
|
841
|
+
},
|
|
842
|
+
"json-logfile": {
|
|
843
|
+
"name": "json-logfile",
|
|
844
|
+
"type": "option",
|
|
845
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
846
|
+
"multiple": false,
|
|
847
|
+
"default": "stderr"
|
|
708
848
|
}
|
|
709
849
|
},
|
|
710
850
|
"args": {}
|
|
@@ -759,6 +899,12 @@
|
|
|
759
899
|
"c"
|
|
760
900
|
]
|
|
761
901
|
},
|
|
902
|
+
"target": {
|
|
903
|
+
"name": "target",
|
|
904
|
+
"type": "option",
|
|
905
|
+
"description": "Target websocket server.",
|
|
906
|
+
"multiple": false
|
|
907
|
+
},
|
|
762
908
|
"no-agent": {
|
|
763
909
|
"name": "no-agent",
|
|
764
910
|
"type": "boolean",
|
|
@@ -781,6 +927,19 @@
|
|
|
781
927
|
"description": "Do not wait for space to be ready.",
|
|
782
928
|
"allowNo": false
|
|
783
929
|
},
|
|
930
|
+
"json-log": {
|
|
931
|
+
"name": "json-log",
|
|
932
|
+
"type": "boolean",
|
|
933
|
+
"description": "When running in foreground, log JSON format",
|
|
934
|
+
"allowNo": false
|
|
935
|
+
},
|
|
936
|
+
"json-logfile": {
|
|
937
|
+
"name": "json-logfile",
|
|
938
|
+
"type": "option",
|
|
939
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
940
|
+
"multiple": false,
|
|
941
|
+
"default": "stderr"
|
|
942
|
+
},
|
|
784
943
|
"instances": {
|
|
785
944
|
"name": "instances",
|
|
786
945
|
"type": "option",
|
|
@@ -852,6 +1011,12 @@
|
|
|
852
1011
|
"c"
|
|
853
1012
|
]
|
|
854
1013
|
},
|
|
1014
|
+
"target": {
|
|
1015
|
+
"name": "target",
|
|
1016
|
+
"type": "option",
|
|
1017
|
+
"description": "Target websocket server.",
|
|
1018
|
+
"multiple": false
|
|
1019
|
+
},
|
|
855
1020
|
"no-agent": {
|
|
856
1021
|
"name": "no-agent",
|
|
857
1022
|
"type": "boolean",
|
|
@@ -874,6 +1039,19 @@
|
|
|
874
1039
|
"description": "Do not wait for space to be ready.",
|
|
875
1040
|
"allowNo": false
|
|
876
1041
|
},
|
|
1042
|
+
"json-log": {
|
|
1043
|
+
"name": "json-log",
|
|
1044
|
+
"type": "boolean",
|
|
1045
|
+
"description": "When running in foreground, log JSON format",
|
|
1046
|
+
"allowNo": false
|
|
1047
|
+
},
|
|
1048
|
+
"json-logfile": {
|
|
1049
|
+
"name": "json-logfile",
|
|
1050
|
+
"type": "option",
|
|
1051
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1052
|
+
"multiple": false,
|
|
1053
|
+
"default": "stderr"
|
|
1054
|
+
},
|
|
877
1055
|
"configPath": {
|
|
878
1056
|
"name": "configPath",
|
|
879
1057
|
"type": "option",
|
|
@@ -951,6 +1129,12 @@
|
|
|
951
1129
|
"c"
|
|
952
1130
|
]
|
|
953
1131
|
},
|
|
1132
|
+
"target": {
|
|
1133
|
+
"name": "target",
|
|
1134
|
+
"type": "option",
|
|
1135
|
+
"description": "Target websocket server.",
|
|
1136
|
+
"multiple": false
|
|
1137
|
+
},
|
|
954
1138
|
"no-agent": {
|
|
955
1139
|
"name": "no-agent",
|
|
956
1140
|
"type": "boolean",
|
|
@@ -972,6 +1156,19 @@
|
|
|
972
1156
|
"type": "boolean",
|
|
973
1157
|
"description": "Do not wait for space to be ready.",
|
|
974
1158
|
"allowNo": false
|
|
1159
|
+
},
|
|
1160
|
+
"json-log": {
|
|
1161
|
+
"name": "json-log",
|
|
1162
|
+
"type": "boolean",
|
|
1163
|
+
"description": "When running in foreground, log JSON format",
|
|
1164
|
+
"allowNo": false
|
|
1165
|
+
},
|
|
1166
|
+
"json-logfile": {
|
|
1167
|
+
"name": "json-logfile",
|
|
1168
|
+
"type": "option",
|
|
1169
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1170
|
+
"multiple": false,
|
|
1171
|
+
"default": "stderr"
|
|
975
1172
|
}
|
|
976
1173
|
},
|
|
977
1174
|
"args": {}
|
|
@@ -1035,6 +1232,12 @@
|
|
|
1035
1232
|
"c"
|
|
1036
1233
|
]
|
|
1037
1234
|
},
|
|
1235
|
+
"target": {
|
|
1236
|
+
"name": "target",
|
|
1237
|
+
"type": "option",
|
|
1238
|
+
"description": "Target websocket server.",
|
|
1239
|
+
"multiple": false
|
|
1240
|
+
},
|
|
1038
1241
|
"no-agent": {
|
|
1039
1242
|
"name": "no-agent",
|
|
1040
1243
|
"type": "boolean",
|
|
@@ -1057,6 +1260,19 @@
|
|
|
1057
1260
|
"description": "Do not wait for space to be ready.",
|
|
1058
1261
|
"allowNo": false
|
|
1059
1262
|
},
|
|
1263
|
+
"json-log": {
|
|
1264
|
+
"name": "json-log",
|
|
1265
|
+
"type": "boolean",
|
|
1266
|
+
"description": "When running in foreground, log JSON format",
|
|
1267
|
+
"allowNo": false
|
|
1268
|
+
},
|
|
1269
|
+
"json-logfile": {
|
|
1270
|
+
"name": "json-logfile",
|
|
1271
|
+
"type": "option",
|
|
1272
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1273
|
+
"multiple": false,
|
|
1274
|
+
"default": "stderr"
|
|
1275
|
+
},
|
|
1060
1276
|
"humanize": {
|
|
1061
1277
|
"name": "humanize",
|
|
1062
1278
|
"type": "boolean",
|
|
@@ -1121,6 +1337,12 @@
|
|
|
1121
1337
|
"c"
|
|
1122
1338
|
]
|
|
1123
1339
|
},
|
|
1340
|
+
"target": {
|
|
1341
|
+
"name": "target",
|
|
1342
|
+
"type": "option",
|
|
1343
|
+
"description": "Target websocket server.",
|
|
1344
|
+
"multiple": false
|
|
1345
|
+
},
|
|
1124
1346
|
"no-agent": {
|
|
1125
1347
|
"name": "no-agent",
|
|
1126
1348
|
"type": "boolean",
|
|
@@ -1142,6 +1364,19 @@
|
|
|
1142
1364
|
"type": "boolean",
|
|
1143
1365
|
"description": "Do not wait for space to be ready.",
|
|
1144
1366
|
"allowNo": false
|
|
1367
|
+
},
|
|
1368
|
+
"json-log": {
|
|
1369
|
+
"name": "json-log",
|
|
1370
|
+
"type": "boolean",
|
|
1371
|
+
"description": "When running in foreground, log JSON format",
|
|
1372
|
+
"allowNo": false
|
|
1373
|
+
},
|
|
1374
|
+
"json-logfile": {
|
|
1375
|
+
"name": "json-logfile",
|
|
1376
|
+
"type": "option",
|
|
1377
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1378
|
+
"multiple": false,
|
|
1379
|
+
"default": "stderr"
|
|
1145
1380
|
}
|
|
1146
1381
|
},
|
|
1147
1382
|
"args": {}
|
|
@@ -1195,6 +1430,12 @@
|
|
|
1195
1430
|
"c"
|
|
1196
1431
|
]
|
|
1197
1432
|
},
|
|
1433
|
+
"target": {
|
|
1434
|
+
"name": "target",
|
|
1435
|
+
"type": "option",
|
|
1436
|
+
"description": "Target websocket server.",
|
|
1437
|
+
"multiple": false
|
|
1438
|
+
},
|
|
1198
1439
|
"no-agent": {
|
|
1199
1440
|
"name": "no-agent",
|
|
1200
1441
|
"type": "boolean",
|
|
@@ -1217,6 +1458,19 @@
|
|
|
1217
1458
|
"description": "Do not wait for space to be ready.",
|
|
1218
1459
|
"allowNo": false
|
|
1219
1460
|
},
|
|
1461
|
+
"json-log": {
|
|
1462
|
+
"name": "json-log",
|
|
1463
|
+
"type": "boolean",
|
|
1464
|
+
"description": "When running in foreground, log JSON format",
|
|
1465
|
+
"allowNo": false
|
|
1466
|
+
},
|
|
1467
|
+
"json-logfile": {
|
|
1468
|
+
"name": "json-logfile",
|
|
1469
|
+
"type": "option",
|
|
1470
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1471
|
+
"multiple": false,
|
|
1472
|
+
"default": "stderr"
|
|
1473
|
+
},
|
|
1220
1474
|
"interval": {
|
|
1221
1475
|
"name": "interval",
|
|
1222
1476
|
"type": "option",
|
|
@@ -1309,6 +1563,12 @@
|
|
|
1309
1563
|
"c"
|
|
1310
1564
|
]
|
|
1311
1565
|
},
|
|
1566
|
+
"target": {
|
|
1567
|
+
"name": "target",
|
|
1568
|
+
"type": "option",
|
|
1569
|
+
"description": "Target websocket server.",
|
|
1570
|
+
"multiple": false
|
|
1571
|
+
},
|
|
1312
1572
|
"no-agent": {
|
|
1313
1573
|
"name": "no-agent",
|
|
1314
1574
|
"type": "boolean",
|
|
@@ -1330,6 +1590,19 @@
|
|
|
1330
1590
|
"type": "boolean",
|
|
1331
1591
|
"description": "Do not wait for space to be ready.",
|
|
1332
1592
|
"allowNo": false
|
|
1593
|
+
},
|
|
1594
|
+
"json-log": {
|
|
1595
|
+
"name": "json-log",
|
|
1596
|
+
"type": "boolean",
|
|
1597
|
+
"description": "When running in foreground, log JSON format",
|
|
1598
|
+
"allowNo": false
|
|
1599
|
+
},
|
|
1600
|
+
"json-logfile": {
|
|
1601
|
+
"name": "json-logfile",
|
|
1602
|
+
"type": "option",
|
|
1603
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1604
|
+
"multiple": false,
|
|
1605
|
+
"default": "stderr"
|
|
1333
1606
|
}
|
|
1334
1607
|
},
|
|
1335
1608
|
"args": {
|
|
@@ -1388,6 +1661,12 @@
|
|
|
1388
1661
|
"c"
|
|
1389
1662
|
]
|
|
1390
1663
|
},
|
|
1664
|
+
"target": {
|
|
1665
|
+
"name": "target",
|
|
1666
|
+
"type": "option",
|
|
1667
|
+
"description": "Target websocket server.",
|
|
1668
|
+
"multiple": false
|
|
1669
|
+
},
|
|
1391
1670
|
"no-agent": {
|
|
1392
1671
|
"name": "no-agent",
|
|
1393
1672
|
"type": "boolean",
|
|
@@ -1410,6 +1689,19 @@
|
|
|
1410
1689
|
"description": "Do not wait for space to be ready.",
|
|
1411
1690
|
"allowNo": false
|
|
1412
1691
|
},
|
|
1692
|
+
"json-log": {
|
|
1693
|
+
"name": "json-log",
|
|
1694
|
+
"type": "boolean",
|
|
1695
|
+
"description": "When running in foreground, log JSON format",
|
|
1696
|
+
"allowNo": false
|
|
1697
|
+
},
|
|
1698
|
+
"json-logfile": {
|
|
1699
|
+
"name": "json-logfile",
|
|
1700
|
+
"type": "option",
|
|
1701
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1702
|
+
"multiple": false,
|
|
1703
|
+
"default": "stderr"
|
|
1704
|
+
},
|
|
1413
1705
|
"interval": {
|
|
1414
1706
|
"name": "interval",
|
|
1415
1707
|
"type": "option",
|
|
@@ -1470,6 +1762,12 @@
|
|
|
1470
1762
|
"c"
|
|
1471
1763
|
]
|
|
1472
1764
|
},
|
|
1765
|
+
"target": {
|
|
1766
|
+
"name": "target",
|
|
1767
|
+
"type": "option",
|
|
1768
|
+
"description": "Target websocket server.",
|
|
1769
|
+
"multiple": false
|
|
1770
|
+
},
|
|
1473
1771
|
"no-agent": {
|
|
1474
1772
|
"name": "no-agent",
|
|
1475
1773
|
"type": "boolean",
|
|
@@ -1491,6 +1789,19 @@
|
|
|
1491
1789
|
"type": "boolean",
|
|
1492
1790
|
"description": "Do not wait for space to be ready.",
|
|
1493
1791
|
"allowNo": false
|
|
1792
|
+
},
|
|
1793
|
+
"json-log": {
|
|
1794
|
+
"name": "json-log",
|
|
1795
|
+
"type": "boolean",
|
|
1796
|
+
"description": "When running in foreground, log JSON format",
|
|
1797
|
+
"allowNo": false
|
|
1798
|
+
},
|
|
1799
|
+
"json-logfile": {
|
|
1800
|
+
"name": "json-logfile",
|
|
1801
|
+
"type": "option",
|
|
1802
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1803
|
+
"multiple": false,
|
|
1804
|
+
"default": "stderr"
|
|
1494
1805
|
}
|
|
1495
1806
|
},
|
|
1496
1807
|
"args": {}
|
|
@@ -1544,6 +1855,12 @@
|
|
|
1544
1855
|
"c"
|
|
1545
1856
|
]
|
|
1546
1857
|
},
|
|
1858
|
+
"target": {
|
|
1859
|
+
"name": "target",
|
|
1860
|
+
"type": "option",
|
|
1861
|
+
"description": "Target websocket server.",
|
|
1862
|
+
"multiple": false
|
|
1863
|
+
},
|
|
1547
1864
|
"no-agent": {
|
|
1548
1865
|
"name": "no-agent",
|
|
1549
1866
|
"type": "boolean",
|
|
@@ -1566,6 +1883,19 @@
|
|
|
1566
1883
|
"description": "Do not wait for space to be ready.",
|
|
1567
1884
|
"allowNo": false
|
|
1568
1885
|
},
|
|
1886
|
+
"json-log": {
|
|
1887
|
+
"name": "json-log",
|
|
1888
|
+
"type": "boolean",
|
|
1889
|
+
"description": "When running in foreground, log JSON format",
|
|
1890
|
+
"allowNo": false
|
|
1891
|
+
},
|
|
1892
|
+
"json-logfile": {
|
|
1893
|
+
"name": "json-logfile",
|
|
1894
|
+
"type": "option",
|
|
1895
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1896
|
+
"multiple": false,
|
|
1897
|
+
"default": "stderr"
|
|
1898
|
+
},
|
|
1569
1899
|
"columns": {
|
|
1570
1900
|
"name": "columns",
|
|
1571
1901
|
"type": "option",
|
|
@@ -1691,6 +2021,12 @@
|
|
|
1691
2021
|
"c"
|
|
1692
2022
|
]
|
|
1693
2023
|
},
|
|
2024
|
+
"target": {
|
|
2025
|
+
"name": "target",
|
|
2026
|
+
"type": "option",
|
|
2027
|
+
"description": "Target websocket server.",
|
|
2028
|
+
"multiple": false
|
|
2029
|
+
},
|
|
1694
2030
|
"no-agent": {
|
|
1695
2031
|
"name": "no-agent",
|
|
1696
2032
|
"type": "boolean",
|
|
@@ -1713,6 +2049,19 @@
|
|
|
1713
2049
|
"description": "Do not wait for space to be ready.",
|
|
1714
2050
|
"allowNo": false
|
|
1715
2051
|
},
|
|
2052
|
+
"json-log": {
|
|
2053
|
+
"name": "json-log",
|
|
2054
|
+
"type": "boolean",
|
|
2055
|
+
"description": "When running in foreground, log JSON format",
|
|
2056
|
+
"allowNo": false
|
|
2057
|
+
},
|
|
2058
|
+
"json-logfile": {
|
|
2059
|
+
"name": "json-logfile",
|
|
2060
|
+
"type": "option",
|
|
2061
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2062
|
+
"multiple": false,
|
|
2063
|
+
"default": "stderr"
|
|
2064
|
+
},
|
|
1716
2065
|
"label": {
|
|
1717
2066
|
"name": "label",
|
|
1718
2067
|
"type": "option",
|
|
@@ -1780,6 +2129,12 @@
|
|
|
1780
2129
|
"c"
|
|
1781
2130
|
]
|
|
1782
2131
|
},
|
|
2132
|
+
"target": {
|
|
2133
|
+
"name": "target",
|
|
2134
|
+
"type": "option",
|
|
2135
|
+
"description": "Target websocket server.",
|
|
2136
|
+
"multiple": false
|
|
2137
|
+
},
|
|
1783
2138
|
"no-agent": {
|
|
1784
2139
|
"name": "no-agent",
|
|
1785
2140
|
"type": "boolean",
|
|
@@ -1802,6 +2157,19 @@
|
|
|
1802
2157
|
"description": "Do not wait for space to be ready.",
|
|
1803
2158
|
"allowNo": false
|
|
1804
2159
|
},
|
|
2160
|
+
"json-log": {
|
|
2161
|
+
"name": "json-log",
|
|
2162
|
+
"type": "boolean",
|
|
2163
|
+
"description": "When running in foreground, log JSON format",
|
|
2164
|
+
"allowNo": false
|
|
2165
|
+
},
|
|
2166
|
+
"json-logfile": {
|
|
2167
|
+
"name": "json-logfile",
|
|
2168
|
+
"type": "option",
|
|
2169
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2170
|
+
"multiple": false,
|
|
2171
|
+
"default": "stderr"
|
|
2172
|
+
},
|
|
1805
2173
|
"require": {
|
|
1806
2174
|
"name": "require",
|
|
1807
2175
|
"type": "option",
|
|
@@ -1884,6 +2252,12 @@
|
|
|
1884
2252
|
"c"
|
|
1885
2253
|
]
|
|
1886
2254
|
},
|
|
2255
|
+
"target": {
|
|
2256
|
+
"name": "target",
|
|
2257
|
+
"type": "option",
|
|
2258
|
+
"description": "Target websocket server.",
|
|
2259
|
+
"multiple": false
|
|
2260
|
+
},
|
|
1887
2261
|
"no-agent": {
|
|
1888
2262
|
"name": "no-agent",
|
|
1889
2263
|
"type": "boolean",
|
|
@@ -1905,6 +2279,19 @@
|
|
|
1905
2279
|
"type": "boolean",
|
|
1906
2280
|
"description": "Do not wait for space to be ready.",
|
|
1907
2281
|
"allowNo": false
|
|
2282
|
+
},
|
|
2283
|
+
"json-log": {
|
|
2284
|
+
"name": "json-log",
|
|
2285
|
+
"type": "boolean",
|
|
2286
|
+
"description": "When running in foreground, log JSON format",
|
|
2287
|
+
"allowNo": false
|
|
2288
|
+
},
|
|
2289
|
+
"json-logfile": {
|
|
2290
|
+
"name": "json-logfile",
|
|
2291
|
+
"type": "option",
|
|
2292
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2293
|
+
"multiple": false,
|
|
2294
|
+
"default": "stderr"
|
|
1908
2295
|
}
|
|
1909
2296
|
},
|
|
1910
2297
|
"args": {
|
|
@@ -1965,6 +2352,12 @@
|
|
|
1965
2352
|
"c"
|
|
1966
2353
|
]
|
|
1967
2354
|
},
|
|
2355
|
+
"target": {
|
|
2356
|
+
"name": "target",
|
|
2357
|
+
"type": "option",
|
|
2358
|
+
"description": "Target websocket server.",
|
|
2359
|
+
"multiple": false
|
|
2360
|
+
},
|
|
1968
2361
|
"no-agent": {
|
|
1969
2362
|
"name": "no-agent",
|
|
1970
2363
|
"type": "boolean",
|
|
@@ -1986,6 +2379,19 @@
|
|
|
1986
2379
|
"type": "boolean",
|
|
1987
2380
|
"description": "Do not wait for space to be ready.",
|
|
1988
2381
|
"allowNo": false
|
|
2382
|
+
},
|
|
2383
|
+
"json-log": {
|
|
2384
|
+
"name": "json-log",
|
|
2385
|
+
"type": "boolean",
|
|
2386
|
+
"description": "When running in foreground, log JSON format",
|
|
2387
|
+
"allowNo": false
|
|
2388
|
+
},
|
|
2389
|
+
"json-logfile": {
|
|
2390
|
+
"name": "json-logfile",
|
|
2391
|
+
"type": "option",
|
|
2392
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2393
|
+
"multiple": false,
|
|
2394
|
+
"default": "stderr"
|
|
1989
2395
|
}
|
|
1990
2396
|
},
|
|
1991
2397
|
"args": {}
|
|
@@ -2041,6 +2447,12 @@
|
|
|
2041
2447
|
"c"
|
|
2042
2448
|
]
|
|
2043
2449
|
},
|
|
2450
|
+
"target": {
|
|
2451
|
+
"name": "target",
|
|
2452
|
+
"type": "option",
|
|
2453
|
+
"description": "Target websocket server.",
|
|
2454
|
+
"multiple": false
|
|
2455
|
+
},
|
|
2044
2456
|
"no-agent": {
|
|
2045
2457
|
"name": "no-agent",
|
|
2046
2458
|
"type": "boolean",
|
|
@@ -2062,6 +2474,19 @@
|
|
|
2062
2474
|
"type": "boolean",
|
|
2063
2475
|
"description": "Do not wait for space to be ready.",
|
|
2064
2476
|
"allowNo": false
|
|
2477
|
+
},
|
|
2478
|
+
"json-log": {
|
|
2479
|
+
"name": "json-log",
|
|
2480
|
+
"type": "boolean",
|
|
2481
|
+
"description": "When running in foreground, log JSON format",
|
|
2482
|
+
"allowNo": false
|
|
2483
|
+
},
|
|
2484
|
+
"json-logfile": {
|
|
2485
|
+
"name": "json-logfile",
|
|
2486
|
+
"type": "option",
|
|
2487
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2488
|
+
"multiple": false,
|
|
2489
|
+
"default": "stderr"
|
|
2065
2490
|
}
|
|
2066
2491
|
},
|
|
2067
2492
|
"args": {
|
|
@@ -2121,6 +2546,12 @@
|
|
|
2121
2546
|
"c"
|
|
2122
2547
|
]
|
|
2123
2548
|
},
|
|
2549
|
+
"target": {
|
|
2550
|
+
"name": "target",
|
|
2551
|
+
"type": "option",
|
|
2552
|
+
"description": "Target websocket server.",
|
|
2553
|
+
"multiple": false
|
|
2554
|
+
},
|
|
2124
2555
|
"no-agent": {
|
|
2125
2556
|
"name": "no-agent",
|
|
2126
2557
|
"type": "boolean",
|
|
@@ -2143,6 +2574,19 @@
|
|
|
2143
2574
|
"description": "Do not wait for space to be ready.",
|
|
2144
2575
|
"allowNo": false
|
|
2145
2576
|
},
|
|
2577
|
+
"json-log": {
|
|
2578
|
+
"name": "json-log",
|
|
2579
|
+
"type": "boolean",
|
|
2580
|
+
"description": "When running in foreground, log JSON format",
|
|
2581
|
+
"allowNo": false
|
|
2582
|
+
},
|
|
2583
|
+
"json-logfile": {
|
|
2584
|
+
"name": "json-logfile",
|
|
2585
|
+
"type": "option",
|
|
2586
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2587
|
+
"multiple": false,
|
|
2588
|
+
"default": "stderr"
|
|
2589
|
+
},
|
|
2146
2590
|
"managedAgent": {
|
|
2147
2591
|
"name": "managedAgent",
|
|
2148
2592
|
"type": "boolean",
|
|
@@ -2214,6 +2658,12 @@
|
|
|
2214
2658
|
"c"
|
|
2215
2659
|
]
|
|
2216
2660
|
},
|
|
2661
|
+
"target": {
|
|
2662
|
+
"name": "target",
|
|
2663
|
+
"type": "option",
|
|
2664
|
+
"description": "Target websocket server.",
|
|
2665
|
+
"multiple": false
|
|
2666
|
+
},
|
|
2217
2667
|
"no-agent": {
|
|
2218
2668
|
"name": "no-agent",
|
|
2219
2669
|
"type": "boolean",
|
|
@@ -2235,6 +2685,19 @@
|
|
|
2235
2685
|
"type": "boolean",
|
|
2236
2686
|
"description": "Do not wait for space to be ready.",
|
|
2237
2687
|
"allowNo": false
|
|
2688
|
+
},
|
|
2689
|
+
"json-log": {
|
|
2690
|
+
"name": "json-log",
|
|
2691
|
+
"type": "boolean",
|
|
2692
|
+
"description": "When running in foreground, log JSON format",
|
|
2693
|
+
"allowNo": false
|
|
2694
|
+
},
|
|
2695
|
+
"json-logfile": {
|
|
2696
|
+
"name": "json-logfile",
|
|
2697
|
+
"type": "option",
|
|
2698
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2699
|
+
"multiple": false,
|
|
2700
|
+
"default": "stderr"
|
|
2238
2701
|
}
|
|
2239
2702
|
},
|
|
2240
2703
|
"args": {}
|
|
@@ -2288,6 +2751,12 @@
|
|
|
2288
2751
|
"c"
|
|
2289
2752
|
]
|
|
2290
2753
|
},
|
|
2754
|
+
"target": {
|
|
2755
|
+
"name": "target",
|
|
2756
|
+
"type": "option",
|
|
2757
|
+
"description": "Target websocket server.",
|
|
2758
|
+
"multiple": false
|
|
2759
|
+
},
|
|
2291
2760
|
"no-agent": {
|
|
2292
2761
|
"name": "no-agent",
|
|
2293
2762
|
"type": "boolean",
|
|
@@ -2307,6 +2776,19 @@
|
|
|
2307
2776
|
"description": "Do not wait for space to be ready.",
|
|
2308
2777
|
"allowNo": false
|
|
2309
2778
|
},
|
|
2779
|
+
"json-log": {
|
|
2780
|
+
"name": "json-log",
|
|
2781
|
+
"type": "boolean",
|
|
2782
|
+
"description": "When running in foreground, log JSON format",
|
|
2783
|
+
"allowNo": false
|
|
2784
|
+
},
|
|
2785
|
+
"json-logfile": {
|
|
2786
|
+
"name": "json-logfile",
|
|
2787
|
+
"type": "option",
|
|
2788
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2789
|
+
"multiple": false,
|
|
2790
|
+
"default": "stderr"
|
|
2791
|
+
},
|
|
2310
2792
|
"invitation": {
|
|
2311
2793
|
"name": "invitation",
|
|
2312
2794
|
"type": "option",
|
|
@@ -2384,6 +2866,12 @@
|
|
|
2384
2866
|
"c"
|
|
2385
2867
|
]
|
|
2386
2868
|
},
|
|
2869
|
+
"target": {
|
|
2870
|
+
"name": "target",
|
|
2871
|
+
"type": "option",
|
|
2872
|
+
"description": "Target websocket server.",
|
|
2873
|
+
"multiple": false
|
|
2874
|
+
},
|
|
2387
2875
|
"no-agent": {
|
|
2388
2876
|
"name": "no-agent",
|
|
2389
2877
|
"type": "boolean",
|
|
@@ -2406,6 +2894,19 @@
|
|
|
2406
2894
|
"description": "Don't wait for a peer to connect before exiting CLI.",
|
|
2407
2895
|
"allowNo": false
|
|
2408
2896
|
},
|
|
2897
|
+
"json-log": {
|
|
2898
|
+
"name": "json-log",
|
|
2899
|
+
"type": "boolean",
|
|
2900
|
+
"description": "When running in foreground, log JSON format",
|
|
2901
|
+
"allowNo": false
|
|
2902
|
+
},
|
|
2903
|
+
"json-logfile": {
|
|
2904
|
+
"name": "json-logfile",
|
|
2905
|
+
"type": "option",
|
|
2906
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2907
|
+
"multiple": false,
|
|
2908
|
+
"default": "stderr"
|
|
2909
|
+
},
|
|
2409
2910
|
"noCode": {
|
|
2410
2911
|
"name": "noCode",
|
|
2411
2912
|
"type": "boolean",
|
|
@@ -2483,6 +2984,12 @@
|
|
|
2483
2984
|
"c"
|
|
2484
2985
|
]
|
|
2485
2986
|
},
|
|
2987
|
+
"target": {
|
|
2988
|
+
"name": "target",
|
|
2989
|
+
"type": "option",
|
|
2990
|
+
"description": "Target websocket server.",
|
|
2991
|
+
"multiple": false
|
|
2992
|
+
},
|
|
2486
2993
|
"no-agent": {
|
|
2487
2994
|
"name": "no-agent",
|
|
2488
2995
|
"type": "boolean",
|
|
@@ -2505,6 +3012,19 @@
|
|
|
2505
3012
|
"description": "Do not wait for space to be ready.",
|
|
2506
3013
|
"allowNo": false
|
|
2507
3014
|
},
|
|
3015
|
+
"json-log": {
|
|
3016
|
+
"name": "json-log",
|
|
3017
|
+
"type": "boolean",
|
|
3018
|
+
"description": "When running in foreground, log JSON format",
|
|
3019
|
+
"allowNo": false
|
|
3020
|
+
},
|
|
3021
|
+
"json-logfile": {
|
|
3022
|
+
"name": "json-logfile",
|
|
3023
|
+
"type": "option",
|
|
3024
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3025
|
+
"multiple": false,
|
|
3026
|
+
"default": "stderr"
|
|
3027
|
+
},
|
|
2508
3028
|
"displayName": {
|
|
2509
3029
|
"name": "displayName",
|
|
2510
3030
|
"type": "option",
|
|
@@ -2564,6 +3084,12 @@
|
|
|
2564
3084
|
"c"
|
|
2565
3085
|
]
|
|
2566
3086
|
},
|
|
3087
|
+
"target": {
|
|
3088
|
+
"name": "target",
|
|
3089
|
+
"type": "option",
|
|
3090
|
+
"description": "Target websocket server.",
|
|
3091
|
+
"multiple": false
|
|
3092
|
+
},
|
|
2567
3093
|
"no-agent": {
|
|
2568
3094
|
"name": "no-agent",
|
|
2569
3095
|
"type": "boolean",
|
|
@@ -2585,6 +3111,19 @@
|
|
|
2585
3111
|
"type": "boolean",
|
|
2586
3112
|
"description": "Do not wait for space to be ready.",
|
|
2587
3113
|
"allowNo": false
|
|
3114
|
+
},
|
|
3115
|
+
"json-log": {
|
|
3116
|
+
"name": "json-log",
|
|
3117
|
+
"type": "boolean",
|
|
3118
|
+
"description": "When running in foreground, log JSON format",
|
|
3119
|
+
"allowNo": false
|
|
3120
|
+
},
|
|
3121
|
+
"json-logfile": {
|
|
3122
|
+
"name": "json-logfile",
|
|
3123
|
+
"type": "option",
|
|
3124
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3125
|
+
"multiple": false,
|
|
3126
|
+
"default": "stderr"
|
|
2588
3127
|
}
|
|
2589
3128
|
},
|
|
2590
3129
|
"args": {}
|
|
@@ -2638,6 +3177,12 @@
|
|
|
2638
3177
|
"c"
|
|
2639
3178
|
]
|
|
2640
3179
|
},
|
|
3180
|
+
"target": {
|
|
3181
|
+
"name": "target",
|
|
3182
|
+
"type": "option",
|
|
3183
|
+
"description": "Target websocket server.",
|
|
3184
|
+
"multiple": false
|
|
3185
|
+
},
|
|
2641
3186
|
"no-agent": {
|
|
2642
3187
|
"name": "no-agent",
|
|
2643
3188
|
"type": "boolean",
|
|
@@ -2660,6 +3205,19 @@
|
|
|
2660
3205
|
"description": "Do not wait for space to be ready.",
|
|
2661
3206
|
"allowNo": false
|
|
2662
3207
|
},
|
|
3208
|
+
"json-log": {
|
|
3209
|
+
"name": "json-log",
|
|
3210
|
+
"type": "boolean",
|
|
3211
|
+
"description": "When running in foreground, log JSON format",
|
|
3212
|
+
"allowNo": false
|
|
3213
|
+
},
|
|
3214
|
+
"json-logfile": {
|
|
3215
|
+
"name": "json-logfile",
|
|
3216
|
+
"type": "option",
|
|
3217
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3218
|
+
"multiple": false,
|
|
3219
|
+
"default": "stderr"
|
|
3220
|
+
},
|
|
2663
3221
|
"hostname": {
|
|
2664
3222
|
"name": "hostname",
|
|
2665
3223
|
"type": "option",
|
|
@@ -2738,6 +3296,12 @@
|
|
|
2738
3296
|
"c"
|
|
2739
3297
|
]
|
|
2740
3298
|
},
|
|
3299
|
+
"target": {
|
|
3300
|
+
"name": "target",
|
|
3301
|
+
"type": "option",
|
|
3302
|
+
"description": "Target websocket server.",
|
|
3303
|
+
"multiple": false
|
|
3304
|
+
},
|
|
2741
3305
|
"no-agent": {
|
|
2742
3306
|
"name": "no-agent",
|
|
2743
3307
|
"type": "boolean",
|
|
@@ -2760,6 +3324,19 @@
|
|
|
2760
3324
|
"description": "Do not wait for space to be ready.",
|
|
2761
3325
|
"allowNo": false
|
|
2762
3326
|
},
|
|
3327
|
+
"json-log": {
|
|
3328
|
+
"name": "json-log",
|
|
3329
|
+
"type": "boolean",
|
|
3330
|
+
"description": "When running in foreground, log JSON format",
|
|
3331
|
+
"allowNo": false
|
|
3332
|
+
},
|
|
3333
|
+
"json-logfile": {
|
|
3334
|
+
"name": "json-logfile",
|
|
3335
|
+
"type": "option",
|
|
3336
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3337
|
+
"multiple": false,
|
|
3338
|
+
"default": "stderr"
|
|
3339
|
+
},
|
|
2763
3340
|
"force": {
|
|
2764
3341
|
"name": "force",
|
|
2765
3342
|
"type": "boolean",
|
|
@@ -2824,6 +3401,12 @@
|
|
|
2824
3401
|
"c"
|
|
2825
3402
|
]
|
|
2826
3403
|
},
|
|
3404
|
+
"target": {
|
|
3405
|
+
"name": "target",
|
|
3406
|
+
"type": "option",
|
|
3407
|
+
"description": "Target websocket server.",
|
|
3408
|
+
"multiple": false
|
|
3409
|
+
},
|
|
2827
3410
|
"no-agent": {
|
|
2828
3411
|
"name": "no-agent",
|
|
2829
3412
|
"type": "boolean",
|
|
@@ -2845,6 +3428,19 @@
|
|
|
2845
3428
|
"type": "boolean",
|
|
2846
3429
|
"description": "Do not wait for space to be ready.",
|
|
2847
3430
|
"allowNo": false
|
|
3431
|
+
},
|
|
3432
|
+
"json-log": {
|
|
3433
|
+
"name": "json-log",
|
|
3434
|
+
"type": "boolean",
|
|
3435
|
+
"description": "When running in foreground, log JSON format",
|
|
3436
|
+
"allowNo": false
|
|
3437
|
+
},
|
|
3438
|
+
"json-logfile": {
|
|
3439
|
+
"name": "json-logfile",
|
|
3440
|
+
"type": "option",
|
|
3441
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3442
|
+
"multiple": false,
|
|
3443
|
+
"default": "stderr"
|
|
2848
3444
|
}
|
|
2849
3445
|
},
|
|
2850
3446
|
"args": {}
|
|
@@ -2898,6 +3494,12 @@
|
|
|
2898
3494
|
"c"
|
|
2899
3495
|
]
|
|
2900
3496
|
},
|
|
3497
|
+
"target": {
|
|
3498
|
+
"name": "target",
|
|
3499
|
+
"type": "option",
|
|
3500
|
+
"description": "Target websocket server.",
|
|
3501
|
+
"multiple": false
|
|
3502
|
+
},
|
|
2901
3503
|
"no-agent": {
|
|
2902
3504
|
"name": "no-agent",
|
|
2903
3505
|
"type": "boolean",
|
|
@@ -2919,6 +3521,19 @@
|
|
|
2919
3521
|
"type": "boolean",
|
|
2920
3522
|
"description": "Do not wait for space to be ready.",
|
|
2921
3523
|
"allowNo": false
|
|
3524
|
+
},
|
|
3525
|
+
"json-log": {
|
|
3526
|
+
"name": "json-log",
|
|
3527
|
+
"type": "boolean",
|
|
3528
|
+
"description": "When running in foreground, log JSON format",
|
|
3529
|
+
"allowNo": false
|
|
3530
|
+
},
|
|
3531
|
+
"json-logfile": {
|
|
3532
|
+
"name": "json-logfile",
|
|
3533
|
+
"type": "option",
|
|
3534
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3535
|
+
"multiple": false,
|
|
3536
|
+
"default": "stderr"
|
|
2922
3537
|
}
|
|
2923
3538
|
},
|
|
2924
3539
|
"args": {
|
|
@@ -2977,6 +3592,12 @@
|
|
|
2977
3592
|
"c"
|
|
2978
3593
|
]
|
|
2979
3594
|
},
|
|
3595
|
+
"target": {
|
|
3596
|
+
"name": "target",
|
|
3597
|
+
"type": "option",
|
|
3598
|
+
"description": "Target websocket server.",
|
|
3599
|
+
"multiple": false
|
|
3600
|
+
},
|
|
2980
3601
|
"no-agent": {
|
|
2981
3602
|
"name": "no-agent",
|
|
2982
3603
|
"type": "boolean",
|
|
@@ -2998,6 +3619,19 @@
|
|
|
2998
3619
|
"type": "boolean",
|
|
2999
3620
|
"description": "Do not wait for space to be ready.",
|
|
3000
3621
|
"allowNo": false
|
|
3622
|
+
},
|
|
3623
|
+
"json-log": {
|
|
3624
|
+
"name": "json-log",
|
|
3625
|
+
"type": "boolean",
|
|
3626
|
+
"description": "When running in foreground, log JSON format",
|
|
3627
|
+
"allowNo": false
|
|
3628
|
+
},
|
|
3629
|
+
"json-logfile": {
|
|
3630
|
+
"name": "json-logfile",
|
|
3631
|
+
"type": "option",
|
|
3632
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3633
|
+
"multiple": false,
|
|
3634
|
+
"default": "stderr"
|
|
3001
3635
|
}
|
|
3002
3636
|
},
|
|
3003
3637
|
"args": {
|
|
@@ -3056,6 +3690,12 @@
|
|
|
3056
3690
|
"c"
|
|
3057
3691
|
]
|
|
3058
3692
|
},
|
|
3693
|
+
"target": {
|
|
3694
|
+
"name": "target",
|
|
3695
|
+
"type": "option",
|
|
3696
|
+
"description": "Target websocket server.",
|
|
3697
|
+
"multiple": false
|
|
3698
|
+
},
|
|
3059
3699
|
"no-agent": {
|
|
3060
3700
|
"name": "no-agent",
|
|
3061
3701
|
"type": "boolean",
|
|
@@ -3077,6 +3717,19 @@
|
|
|
3077
3717
|
"type": "boolean",
|
|
3078
3718
|
"description": "Do not wait for space to be ready.",
|
|
3079
3719
|
"allowNo": false
|
|
3720
|
+
},
|
|
3721
|
+
"json-log": {
|
|
3722
|
+
"name": "json-log",
|
|
3723
|
+
"type": "boolean",
|
|
3724
|
+
"description": "When running in foreground, log JSON format",
|
|
3725
|
+
"allowNo": false
|
|
3726
|
+
},
|
|
3727
|
+
"json-logfile": {
|
|
3728
|
+
"name": "json-logfile",
|
|
3729
|
+
"type": "option",
|
|
3730
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3731
|
+
"multiple": false,
|
|
3732
|
+
"default": "stderr"
|
|
3080
3733
|
}
|
|
3081
3734
|
},
|
|
3082
3735
|
"args": {
|
|
@@ -3136,6 +3789,12 @@
|
|
|
3136
3789
|
"c"
|
|
3137
3790
|
]
|
|
3138
3791
|
},
|
|
3792
|
+
"target": {
|
|
3793
|
+
"name": "target",
|
|
3794
|
+
"type": "option",
|
|
3795
|
+
"description": "Target websocket server.",
|
|
3796
|
+
"multiple": false
|
|
3797
|
+
},
|
|
3139
3798
|
"no-agent": {
|
|
3140
3799
|
"name": "no-agent",
|
|
3141
3800
|
"type": "boolean",
|
|
@@ -3157,6 +3816,19 @@
|
|
|
3157
3816
|
"type": "boolean",
|
|
3158
3817
|
"description": "Do not wait for space to be ready.",
|
|
3159
3818
|
"allowNo": false
|
|
3819
|
+
},
|
|
3820
|
+
"json-log": {
|
|
3821
|
+
"name": "json-log",
|
|
3822
|
+
"type": "boolean",
|
|
3823
|
+
"description": "When running in foreground, log JSON format",
|
|
3824
|
+
"allowNo": false
|
|
3825
|
+
},
|
|
3826
|
+
"json-logfile": {
|
|
3827
|
+
"name": "json-logfile",
|
|
3828
|
+
"type": "option",
|
|
3829
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3830
|
+
"multiple": false,
|
|
3831
|
+
"default": "stderr"
|
|
3160
3832
|
}
|
|
3161
3833
|
},
|
|
3162
3834
|
"args": {
|
|
@@ -3214,6 +3886,12 @@
|
|
|
3214
3886
|
"c"
|
|
3215
3887
|
]
|
|
3216
3888
|
},
|
|
3889
|
+
"target": {
|
|
3890
|
+
"name": "target",
|
|
3891
|
+
"type": "option",
|
|
3892
|
+
"description": "Target websocket server.",
|
|
3893
|
+
"multiple": false
|
|
3894
|
+
},
|
|
3217
3895
|
"no-agent": {
|
|
3218
3896
|
"name": "no-agent",
|
|
3219
3897
|
"type": "boolean",
|
|
@@ -3236,6 +3914,19 @@
|
|
|
3236
3914
|
"description": "Do not wait for space to be ready.",
|
|
3237
3915
|
"allowNo": false
|
|
3238
3916
|
},
|
|
3917
|
+
"json-log": {
|
|
3918
|
+
"name": "json-log",
|
|
3919
|
+
"type": "boolean",
|
|
3920
|
+
"description": "When running in foreground, log JSON format",
|
|
3921
|
+
"allowNo": false
|
|
3922
|
+
},
|
|
3923
|
+
"json-logfile": {
|
|
3924
|
+
"name": "json-logfile",
|
|
3925
|
+
"type": "option",
|
|
3926
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3927
|
+
"multiple": false,
|
|
3928
|
+
"default": "stderr"
|
|
3929
|
+
},
|
|
3239
3930
|
"invitation": {
|
|
3240
3931
|
"name": "invitation",
|
|
3241
3932
|
"type": "option",
|
|
@@ -3300,6 +3991,12 @@
|
|
|
3300
3991
|
"c"
|
|
3301
3992
|
]
|
|
3302
3993
|
},
|
|
3994
|
+
"target": {
|
|
3995
|
+
"name": "target",
|
|
3996
|
+
"type": "option",
|
|
3997
|
+
"description": "Target websocket server.",
|
|
3998
|
+
"multiple": false
|
|
3999
|
+
},
|
|
3303
4000
|
"no-agent": {
|
|
3304
4001
|
"name": "no-agent",
|
|
3305
4002
|
"type": "boolean",
|
|
@@ -3322,6 +4019,19 @@
|
|
|
3322
4019
|
"description": "Do not wait for space to be ready.",
|
|
3323
4020
|
"allowNo": false
|
|
3324
4021
|
},
|
|
4022
|
+
"json-log": {
|
|
4023
|
+
"name": "json-log",
|
|
4024
|
+
"type": "boolean",
|
|
4025
|
+
"description": "When running in foreground, log JSON format",
|
|
4026
|
+
"allowNo": false
|
|
4027
|
+
},
|
|
4028
|
+
"json-logfile": {
|
|
4029
|
+
"name": "json-logfile",
|
|
4030
|
+
"type": "option",
|
|
4031
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4032
|
+
"multiple": false,
|
|
4033
|
+
"default": "stderr"
|
|
4034
|
+
},
|
|
3325
4035
|
"columns": {
|
|
3326
4036
|
"name": "columns",
|
|
3327
4037
|
"type": "option",
|
|
@@ -3453,6 +4163,12 @@
|
|
|
3453
4163
|
"c"
|
|
3454
4164
|
]
|
|
3455
4165
|
},
|
|
4166
|
+
"target": {
|
|
4167
|
+
"name": "target",
|
|
4168
|
+
"type": "option",
|
|
4169
|
+
"description": "Target websocket server.",
|
|
4170
|
+
"multiple": false
|
|
4171
|
+
},
|
|
3456
4172
|
"no-agent": {
|
|
3457
4173
|
"name": "no-agent",
|
|
3458
4174
|
"type": "boolean",
|
|
@@ -3475,6 +4191,19 @@
|
|
|
3475
4191
|
"description": "Do not wait for space to be ready.",
|
|
3476
4192
|
"allowNo": false
|
|
3477
4193
|
},
|
|
4194
|
+
"json-log": {
|
|
4195
|
+
"name": "json-log",
|
|
4196
|
+
"type": "boolean",
|
|
4197
|
+
"description": "When running in foreground, log JSON format",
|
|
4198
|
+
"allowNo": false
|
|
4199
|
+
},
|
|
4200
|
+
"json-logfile": {
|
|
4201
|
+
"name": "json-logfile",
|
|
4202
|
+
"type": "option",
|
|
4203
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4204
|
+
"multiple": false,
|
|
4205
|
+
"default": "stderr"
|
|
4206
|
+
},
|
|
3478
4207
|
"columns": {
|
|
3479
4208
|
"name": "columns",
|
|
3480
4209
|
"type": "option",
|
|
@@ -3605,6 +4334,12 @@
|
|
|
3605
4334
|
"c"
|
|
3606
4335
|
]
|
|
3607
4336
|
},
|
|
4337
|
+
"target": {
|
|
4338
|
+
"name": "target",
|
|
4339
|
+
"type": "option",
|
|
4340
|
+
"description": "Target websocket server.",
|
|
4341
|
+
"multiple": false
|
|
4342
|
+
},
|
|
3608
4343
|
"no-agent": {
|
|
3609
4344
|
"name": "no-agent",
|
|
3610
4345
|
"type": "boolean",
|
|
@@ -3626,6 +4361,19 @@
|
|
|
3626
4361
|
"type": "boolean",
|
|
3627
4362
|
"description": "Do not wait for space to be ready.",
|
|
3628
4363
|
"allowNo": false
|
|
4364
|
+
},
|
|
4365
|
+
"json-log": {
|
|
4366
|
+
"name": "json-log",
|
|
4367
|
+
"type": "boolean",
|
|
4368
|
+
"description": "When running in foreground, log JSON format",
|
|
4369
|
+
"allowNo": false
|
|
4370
|
+
},
|
|
4371
|
+
"json-logfile": {
|
|
4372
|
+
"name": "json-logfile",
|
|
4373
|
+
"type": "option",
|
|
4374
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4375
|
+
"multiple": false,
|
|
4376
|
+
"default": "stderr"
|
|
3629
4377
|
}
|
|
3630
4378
|
},
|
|
3631
4379
|
"args": {
|
|
@@ -3684,6 +4432,12 @@
|
|
|
3684
4432
|
"c"
|
|
3685
4433
|
]
|
|
3686
4434
|
},
|
|
4435
|
+
"target": {
|
|
4436
|
+
"name": "target",
|
|
4437
|
+
"type": "option",
|
|
4438
|
+
"description": "Target websocket server.",
|
|
4439
|
+
"multiple": false
|
|
4440
|
+
},
|
|
3687
4441
|
"no-agent": {
|
|
3688
4442
|
"name": "no-agent",
|
|
3689
4443
|
"type": "boolean",
|
|
@@ -3705,6 +4459,19 @@
|
|
|
3705
4459
|
"type": "boolean",
|
|
3706
4460
|
"description": "Do not wait for space to be ready.",
|
|
3707
4461
|
"allowNo": false
|
|
4462
|
+
},
|
|
4463
|
+
"json-log": {
|
|
4464
|
+
"name": "json-log",
|
|
4465
|
+
"type": "boolean",
|
|
4466
|
+
"description": "When running in foreground, log JSON format",
|
|
4467
|
+
"allowNo": false
|
|
4468
|
+
},
|
|
4469
|
+
"json-logfile": {
|
|
4470
|
+
"name": "json-logfile",
|
|
4471
|
+
"type": "option",
|
|
4472
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4473
|
+
"multiple": false,
|
|
4474
|
+
"default": "stderr"
|
|
3708
4475
|
}
|
|
3709
4476
|
},
|
|
3710
4477
|
"args": {
|
|
@@ -3763,6 +4530,12 @@
|
|
|
3763
4530
|
"c"
|
|
3764
4531
|
]
|
|
3765
4532
|
},
|
|
4533
|
+
"target": {
|
|
4534
|
+
"name": "target",
|
|
4535
|
+
"type": "option",
|
|
4536
|
+
"description": "Target websocket server.",
|
|
4537
|
+
"multiple": false
|
|
4538
|
+
},
|
|
3766
4539
|
"no-agent": {
|
|
3767
4540
|
"name": "no-agent",
|
|
3768
4541
|
"type": "boolean",
|
|
@@ -3782,6 +4555,19 @@
|
|
|
3782
4555
|
"description": "Don't wait for a peer to connect before exiting CLI.",
|
|
3783
4556
|
"allowNo": false
|
|
3784
4557
|
},
|
|
4558
|
+
"json-log": {
|
|
4559
|
+
"name": "json-log",
|
|
4560
|
+
"type": "boolean",
|
|
4561
|
+
"description": "When running in foreground, log JSON format",
|
|
4562
|
+
"allowNo": false
|
|
4563
|
+
},
|
|
4564
|
+
"json-logfile": {
|
|
4565
|
+
"name": "json-logfile",
|
|
4566
|
+
"type": "option",
|
|
4567
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4568
|
+
"multiple": false,
|
|
4569
|
+
"default": "stderr"
|
|
4570
|
+
},
|
|
3785
4571
|
"multiple": {
|
|
3786
4572
|
"name": "multiple",
|
|
3787
4573
|
"type": "boolean",
|
|
@@ -3876,6 +4662,12 @@
|
|
|
3876
4662
|
"c"
|
|
3877
4663
|
]
|
|
3878
4664
|
},
|
|
4665
|
+
"target": {
|
|
4666
|
+
"name": "target",
|
|
4667
|
+
"type": "option",
|
|
4668
|
+
"description": "Target websocket server.",
|
|
4669
|
+
"multiple": false
|
|
4670
|
+
},
|
|
3879
4671
|
"no-agent": {
|
|
3880
4672
|
"name": "no-agent",
|
|
3881
4673
|
"type": "boolean",
|
|
@@ -3898,12 +4690,25 @@
|
|
|
3898
4690
|
"description": "Do not wait for space to be ready.",
|
|
3899
4691
|
"allowNo": false
|
|
3900
4692
|
},
|
|
4693
|
+
"json-log": {
|
|
4694
|
+
"name": "json-log",
|
|
4695
|
+
"type": "boolean",
|
|
4696
|
+
"description": "When running in foreground, log JSON format",
|
|
4697
|
+
"allowNo": false
|
|
4698
|
+
},
|
|
4699
|
+
"json-logfile": {
|
|
4700
|
+
"name": "json-logfile",
|
|
4701
|
+
"type": "option",
|
|
4702
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4703
|
+
"multiple": false,
|
|
4704
|
+
"default": "stderr"
|
|
4705
|
+
},
|
|
3901
4706
|
"name": {
|
|
3902
4707
|
"name": "name",
|
|
3903
4708
|
"type": "option",
|
|
3904
4709
|
"description": "Tunnel name",
|
|
3905
4710
|
"multiple": false,
|
|
3906
|
-
"default": "
|
|
4711
|
+
"default": "video-cold-venus-cola"
|
|
3907
4712
|
}
|
|
3908
4713
|
},
|
|
3909
4714
|
"args": {
|
|
@@ -3964,6 +4769,12 @@
|
|
|
3964
4769
|
"c"
|
|
3965
4770
|
]
|
|
3966
4771
|
},
|
|
4772
|
+
"target": {
|
|
4773
|
+
"name": "target",
|
|
4774
|
+
"type": "option",
|
|
4775
|
+
"description": "Target websocket server.",
|
|
4776
|
+
"multiple": false
|
|
4777
|
+
},
|
|
3967
4778
|
"no-agent": {
|
|
3968
4779
|
"name": "no-agent",
|
|
3969
4780
|
"type": "boolean",
|
|
@@ -3985,6 +4796,19 @@
|
|
|
3985
4796
|
"type": "boolean",
|
|
3986
4797
|
"description": "Do not wait for space to be ready.",
|
|
3987
4798
|
"allowNo": false
|
|
4799
|
+
},
|
|
4800
|
+
"json-log": {
|
|
4801
|
+
"name": "json-log",
|
|
4802
|
+
"type": "boolean",
|
|
4803
|
+
"description": "When running in foreground, log JSON format",
|
|
4804
|
+
"allowNo": false
|
|
4805
|
+
},
|
|
4806
|
+
"json-logfile": {
|
|
4807
|
+
"name": "json-logfile",
|
|
4808
|
+
"type": "option",
|
|
4809
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4810
|
+
"multiple": false,
|
|
4811
|
+
"default": "stderr"
|
|
3988
4812
|
}
|
|
3989
4813
|
},
|
|
3990
4814
|
"args": {}
|
|
@@ -4038,6 +4862,12 @@
|
|
|
4038
4862
|
"c"
|
|
4039
4863
|
]
|
|
4040
4864
|
},
|
|
4865
|
+
"target": {
|
|
4866
|
+
"name": "target",
|
|
4867
|
+
"type": "option",
|
|
4868
|
+
"description": "Target websocket server.",
|
|
4869
|
+
"multiple": false
|
|
4870
|
+
},
|
|
4041
4871
|
"no-agent": {
|
|
4042
4872
|
"name": "no-agent",
|
|
4043
4873
|
"type": "boolean",
|
|
@@ -4059,6 +4889,19 @@
|
|
|
4059
4889
|
"type": "boolean",
|
|
4060
4890
|
"description": "Do not wait for space to be ready.",
|
|
4061
4891
|
"allowNo": false
|
|
4892
|
+
},
|
|
4893
|
+
"json-log": {
|
|
4894
|
+
"name": "json-log",
|
|
4895
|
+
"type": "boolean",
|
|
4896
|
+
"description": "When running in foreground, log JSON format",
|
|
4897
|
+
"allowNo": false
|
|
4898
|
+
},
|
|
4899
|
+
"json-logfile": {
|
|
4900
|
+
"name": "json-logfile",
|
|
4901
|
+
"type": "option",
|
|
4902
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
4903
|
+
"multiple": false,
|
|
4904
|
+
"default": "stderr"
|
|
4062
4905
|
}
|
|
4063
4906
|
},
|
|
4064
4907
|
"args": {
|
|
@@ -4118,6 +4961,12 @@
|
|
|
4118
4961
|
"c"
|
|
4119
4962
|
]
|
|
4120
4963
|
},
|
|
4964
|
+
"target": {
|
|
4965
|
+
"name": "target",
|
|
4966
|
+
"type": "option",
|
|
4967
|
+
"description": "Target websocket server.",
|
|
4968
|
+
"multiple": false
|
|
4969
|
+
},
|
|
4121
4970
|
"no-agent": {
|
|
4122
4971
|
"name": "no-agent",
|
|
4123
4972
|
"type": "boolean",
|
|
@@ -4140,6 +4989,19 @@
|
|
|
4140
4989
|
"description": "Do not wait for space to be ready.",
|
|
4141
4990
|
"allowNo": false
|
|
4142
4991
|
},
|
|
4992
|
+
"json-log": {
|
|
4993
|
+
"name": "json-log",
|
|
4994
|
+
"type": "boolean",
|
|
4995
|
+
"description": "When running in foreground, log JSON format",
|
|
4996
|
+
"allowNo": false
|
|
4997
|
+
},
|
|
4998
|
+
"json-logfile": {
|
|
4999
|
+
"name": "json-logfile",
|
|
5000
|
+
"type": "option",
|
|
5001
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
5002
|
+
"multiple": false,
|
|
5003
|
+
"default": "stderr"
|
|
5004
|
+
},
|
|
4143
5005
|
"columns": {
|
|
4144
5006
|
"name": "columns",
|
|
4145
5007
|
"type": "option",
|