@bussolabs/closeyourit-cli 0.0.27 → 0.2.0
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/README.md +2 -0
- package/dist/commands/projects/github-connect.d.ts +10 -0
- package/dist/commands/projects/github-connect.js +28 -0
- package/dist/commands/projects/github-map.d.ts +9 -0
- package/dist/commands/projects/github-map.js +44 -0
- package/oclif.manifest.json +1232 -1143
- package/opencli.json +146 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -145,6 +145,164 @@
|
|
|
145
145
|
"whoami.js"
|
|
146
146
|
]
|
|
147
147
|
},
|
|
148
|
+
"analytics:share": {
|
|
149
|
+
"aliases": [],
|
|
150
|
+
"args": {},
|
|
151
|
+
"description": "Publish a public shareable link to the analytics dashboard (optional password)",
|
|
152
|
+
"examples": [
|
|
153
|
+
"<%= config.bin %> analytics share --project acme-web",
|
|
154
|
+
"<%= config.bin %> analytics share -p acme-web --password s3cret"
|
|
155
|
+
],
|
|
156
|
+
"flags": {
|
|
157
|
+
"json": {
|
|
158
|
+
"description": "Format output as json.",
|
|
159
|
+
"helpGroup": "GLOBAL",
|
|
160
|
+
"name": "json",
|
|
161
|
+
"allowNo": false,
|
|
162
|
+
"type": "boolean"
|
|
163
|
+
},
|
|
164
|
+
"project": {
|
|
165
|
+
"char": "p",
|
|
166
|
+
"description": "Project id (UUID) or key",
|
|
167
|
+
"name": "project",
|
|
168
|
+
"required": true,
|
|
169
|
+
"hasDynamicHelp": false,
|
|
170
|
+
"multiple": false,
|
|
171
|
+
"type": "option"
|
|
172
|
+
},
|
|
173
|
+
"password": {
|
|
174
|
+
"description": "Optional password to protect the shared link",
|
|
175
|
+
"name": "password",
|
|
176
|
+
"hasDynamicHelp": false,
|
|
177
|
+
"multiple": false,
|
|
178
|
+
"type": "option"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"hasDynamicHelp": false,
|
|
182
|
+
"hiddenAliases": [],
|
|
183
|
+
"id": "analytics:share",
|
|
184
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
185
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
186
|
+
"pluginType": "core",
|
|
187
|
+
"strict": true,
|
|
188
|
+
"enableJsonFlag": true,
|
|
189
|
+
"isESM": false,
|
|
190
|
+
"relativePath": [
|
|
191
|
+
"dist",
|
|
192
|
+
"commands",
|
|
193
|
+
"analytics",
|
|
194
|
+
"share.js"
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"analytics:show": {
|
|
198
|
+
"aliases": [],
|
|
199
|
+
"args": {},
|
|
200
|
+
"description": "Show the web analytics snapshot for a project (traffic, top pages, goals)",
|
|
201
|
+
"examples": [
|
|
202
|
+
"<%= config.bin %> analytics show --project acme-web",
|
|
203
|
+
"<%= config.bin %> analytics show -p acme-web --range 30d --environment production --json"
|
|
204
|
+
],
|
|
205
|
+
"flags": {
|
|
206
|
+
"json": {
|
|
207
|
+
"description": "Format output as json.",
|
|
208
|
+
"helpGroup": "GLOBAL",
|
|
209
|
+
"name": "json",
|
|
210
|
+
"allowNo": false,
|
|
211
|
+
"type": "boolean"
|
|
212
|
+
},
|
|
213
|
+
"project": {
|
|
214
|
+
"char": "p",
|
|
215
|
+
"description": "Project id (UUID) or key",
|
|
216
|
+
"name": "project",
|
|
217
|
+
"required": true,
|
|
218
|
+
"hasDynamicHelp": false,
|
|
219
|
+
"multiple": false,
|
|
220
|
+
"type": "option"
|
|
221
|
+
},
|
|
222
|
+
"range": {
|
|
223
|
+
"description": "Time range",
|
|
224
|
+
"name": "range",
|
|
225
|
+
"hasDynamicHelp": false,
|
|
226
|
+
"multiple": false,
|
|
227
|
+
"options": [
|
|
228
|
+
"24h",
|
|
229
|
+
"7d",
|
|
230
|
+
"30d",
|
|
231
|
+
"1y"
|
|
232
|
+
],
|
|
233
|
+
"type": "option"
|
|
234
|
+
},
|
|
235
|
+
"environment": {
|
|
236
|
+
"description": "Filter by environment code",
|
|
237
|
+
"name": "environment",
|
|
238
|
+
"hasDynamicHelp": false,
|
|
239
|
+
"multiple": false,
|
|
240
|
+
"type": "option"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"hasDynamicHelp": false,
|
|
244
|
+
"hiddenAliases": [],
|
|
245
|
+
"id": "analytics:show",
|
|
246
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
247
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
248
|
+
"pluginType": "core",
|
|
249
|
+
"strict": true,
|
|
250
|
+
"enableJsonFlag": true,
|
|
251
|
+
"isESM": false,
|
|
252
|
+
"relativePath": [
|
|
253
|
+
"dist",
|
|
254
|
+
"commands",
|
|
255
|
+
"analytics",
|
|
256
|
+
"show.js"
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
"analytics:unshare": {
|
|
260
|
+
"aliases": [],
|
|
261
|
+
"args": {},
|
|
262
|
+
"description": "Revoke the public analytics dashboard link",
|
|
263
|
+
"examples": [
|
|
264
|
+
"<%= config.bin %> analytics unshare --project acme-web --confirm"
|
|
265
|
+
],
|
|
266
|
+
"flags": {
|
|
267
|
+
"json": {
|
|
268
|
+
"description": "Format output as json.",
|
|
269
|
+
"helpGroup": "GLOBAL",
|
|
270
|
+
"name": "json",
|
|
271
|
+
"allowNo": false,
|
|
272
|
+
"type": "boolean"
|
|
273
|
+
},
|
|
274
|
+
"project": {
|
|
275
|
+
"char": "p",
|
|
276
|
+
"description": "Project id (UUID) or key",
|
|
277
|
+
"name": "project",
|
|
278
|
+
"required": true,
|
|
279
|
+
"hasDynamicHelp": false,
|
|
280
|
+
"multiple": false,
|
|
281
|
+
"type": "option"
|
|
282
|
+
},
|
|
283
|
+
"confirm": {
|
|
284
|
+
"description": "Required: confirm revoking the public link",
|
|
285
|
+
"name": "confirm",
|
|
286
|
+
"allowNo": false,
|
|
287
|
+
"type": "boolean"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"hasDynamicHelp": false,
|
|
291
|
+
"hiddenAliases": [],
|
|
292
|
+
"id": "analytics:unshare",
|
|
293
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
294
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
295
|
+
"pluginType": "core",
|
|
296
|
+
"strict": true,
|
|
297
|
+
"enableJsonFlag": true,
|
|
298
|
+
"isESM": false,
|
|
299
|
+
"relativePath": [
|
|
300
|
+
"dist",
|
|
301
|
+
"commands",
|
|
302
|
+
"analytics",
|
|
303
|
+
"unshare.js"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
148
306
|
"agents:assign": {
|
|
149
307
|
"aliases": [],
|
|
150
308
|
"args": {
|
|
@@ -608,13 +766,20 @@
|
|
|
608
766
|
"update.js"
|
|
609
767
|
]
|
|
610
768
|
},
|
|
611
|
-
"
|
|
769
|
+
"environments:create": {
|
|
612
770
|
"aliases": [],
|
|
613
|
-
"args": {
|
|
614
|
-
|
|
771
|
+
"args": {
|
|
772
|
+
"code": {
|
|
773
|
+
"description": "Environment code (lowercase, e.g. production)",
|
|
774
|
+
"name": "code",
|
|
775
|
+
"required": true
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"description": "Create an environment (production, staging, …) in your organization",
|
|
615
779
|
"examples": [
|
|
616
|
-
"<%= config.bin %>
|
|
617
|
-
"<%= config.bin %>
|
|
780
|
+
"<%= config.bin %> environments create production --label Production",
|
|
781
|
+
"<%= config.bin %> environments create staging --label Staging --color amber",
|
|
782
|
+
"<%= config.bin %> environments create staging --label Staging --no-uptime"
|
|
618
783
|
],
|
|
619
784
|
"flags": {
|
|
620
785
|
"json": {
|
|
@@ -624,26 +789,57 @@
|
|
|
624
789
|
"allowNo": false,
|
|
625
790
|
"type": "boolean"
|
|
626
791
|
},
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"name": "project",
|
|
792
|
+
"label": {
|
|
793
|
+
"description": "Human-readable label",
|
|
794
|
+
"name": "label",
|
|
631
795
|
"required": true,
|
|
632
796
|
"hasDynamicHelp": false,
|
|
633
797
|
"multiple": false,
|
|
634
798
|
"type": "option"
|
|
635
799
|
},
|
|
636
|
-
"
|
|
637
|
-
"description": "
|
|
638
|
-
"name": "
|
|
800
|
+
"color": {
|
|
801
|
+
"description": "Color label",
|
|
802
|
+
"name": "color",
|
|
803
|
+
"default": "emerald",
|
|
804
|
+
"hasDynamicHelp": false,
|
|
805
|
+
"multiple": false,
|
|
806
|
+
"type": "option"
|
|
807
|
+
},
|
|
808
|
+
"position": {
|
|
809
|
+
"description": "Sort position",
|
|
810
|
+
"name": "position",
|
|
639
811
|
"hasDynamicHelp": false,
|
|
640
812
|
"multiple": false,
|
|
641
813
|
"type": "option"
|
|
814
|
+
},
|
|
815
|
+
"active": {
|
|
816
|
+
"description": "Whether the environment is active",
|
|
817
|
+
"name": "active",
|
|
818
|
+
"allowNo": true,
|
|
819
|
+
"type": "boolean"
|
|
820
|
+
},
|
|
821
|
+
"servers": {
|
|
822
|
+
"description": "Servers capability default",
|
|
823
|
+
"name": "servers",
|
|
824
|
+
"allowNo": true,
|
|
825
|
+
"type": "boolean"
|
|
826
|
+
},
|
|
827
|
+
"uptime": {
|
|
828
|
+
"description": "Uptime capability default",
|
|
829
|
+
"name": "uptime",
|
|
830
|
+
"allowNo": true,
|
|
831
|
+
"type": "boolean"
|
|
832
|
+
},
|
|
833
|
+
"secrets": {
|
|
834
|
+
"description": "Secrets capability default",
|
|
835
|
+
"name": "secrets",
|
|
836
|
+
"allowNo": true,
|
|
837
|
+
"type": "boolean"
|
|
642
838
|
}
|
|
643
839
|
},
|
|
644
840
|
"hasDynamicHelp": false,
|
|
645
841
|
"hiddenAliases": [],
|
|
646
|
-
"id": "
|
|
842
|
+
"id": "environments:create",
|
|
647
843
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
648
844
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
649
845
|
"pluginType": "core",
|
|
@@ -653,17 +849,22 @@
|
|
|
653
849
|
"relativePath": [
|
|
654
850
|
"dist",
|
|
655
851
|
"commands",
|
|
656
|
-
"
|
|
657
|
-
"
|
|
852
|
+
"environments",
|
|
853
|
+
"create.js"
|
|
658
854
|
]
|
|
659
855
|
},
|
|
660
|
-
"
|
|
856
|
+
"environments:delete": {
|
|
661
857
|
"aliases": [],
|
|
662
|
-
"args": {
|
|
663
|
-
|
|
858
|
+
"args": {
|
|
859
|
+
"environment": {
|
|
860
|
+
"description": "Environment id (UUID) or code",
|
|
861
|
+
"name": "environment",
|
|
862
|
+
"required": true
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
664
866
|
"examples": [
|
|
665
|
-
"<%= config.bin %>
|
|
666
|
-
"<%= config.bin %> analytics show -p acme-web --range 30d --environment production --json"
|
|
867
|
+
"<%= config.bin %> environments delete staging --confirm"
|
|
667
868
|
],
|
|
668
869
|
"flags": {
|
|
669
870
|
"json": {
|
|
@@ -673,78 +874,8 @@
|
|
|
673
874
|
"allowNo": false,
|
|
674
875
|
"type": "boolean"
|
|
675
876
|
},
|
|
676
|
-
"project": {
|
|
677
|
-
"char": "p",
|
|
678
|
-
"description": "Project id (UUID) or key",
|
|
679
|
-
"name": "project",
|
|
680
|
-
"required": true,
|
|
681
|
-
"hasDynamicHelp": false,
|
|
682
|
-
"multiple": false,
|
|
683
|
-
"type": "option"
|
|
684
|
-
},
|
|
685
|
-
"range": {
|
|
686
|
-
"description": "Time range",
|
|
687
|
-
"name": "range",
|
|
688
|
-
"hasDynamicHelp": false,
|
|
689
|
-
"multiple": false,
|
|
690
|
-
"options": [
|
|
691
|
-
"24h",
|
|
692
|
-
"7d",
|
|
693
|
-
"30d",
|
|
694
|
-
"1y"
|
|
695
|
-
],
|
|
696
|
-
"type": "option"
|
|
697
|
-
},
|
|
698
|
-
"environment": {
|
|
699
|
-
"description": "Filter by environment code",
|
|
700
|
-
"name": "environment",
|
|
701
|
-
"hasDynamicHelp": false,
|
|
702
|
-
"multiple": false,
|
|
703
|
-
"type": "option"
|
|
704
|
-
}
|
|
705
|
-
},
|
|
706
|
-
"hasDynamicHelp": false,
|
|
707
|
-
"hiddenAliases": [],
|
|
708
|
-
"id": "analytics:show",
|
|
709
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
710
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
711
|
-
"pluginType": "core",
|
|
712
|
-
"strict": true,
|
|
713
|
-
"enableJsonFlag": true,
|
|
714
|
-
"isESM": false,
|
|
715
|
-
"relativePath": [
|
|
716
|
-
"dist",
|
|
717
|
-
"commands",
|
|
718
|
-
"analytics",
|
|
719
|
-
"show.js"
|
|
720
|
-
]
|
|
721
|
-
},
|
|
722
|
-
"analytics:unshare": {
|
|
723
|
-
"aliases": [],
|
|
724
|
-
"args": {},
|
|
725
|
-
"description": "Revoke the public analytics dashboard link",
|
|
726
|
-
"examples": [
|
|
727
|
-
"<%= config.bin %> analytics unshare --project acme-web --confirm"
|
|
728
|
-
],
|
|
729
|
-
"flags": {
|
|
730
|
-
"json": {
|
|
731
|
-
"description": "Format output as json.",
|
|
732
|
-
"helpGroup": "GLOBAL",
|
|
733
|
-
"name": "json",
|
|
734
|
-
"allowNo": false,
|
|
735
|
-
"type": "boolean"
|
|
736
|
-
},
|
|
737
|
-
"project": {
|
|
738
|
-
"char": "p",
|
|
739
|
-
"description": "Project id (UUID) or key",
|
|
740
|
-
"name": "project",
|
|
741
|
-
"required": true,
|
|
742
|
-
"hasDynamicHelp": false,
|
|
743
|
-
"multiple": false,
|
|
744
|
-
"type": "option"
|
|
745
|
-
},
|
|
746
877
|
"confirm": {
|
|
747
|
-
"description": "Required: confirm
|
|
878
|
+
"description": "Required: confirm the deletion",
|
|
748
879
|
"name": "confirm",
|
|
749
880
|
"allowNo": false,
|
|
750
881
|
"type": "boolean"
|
|
@@ -752,7 +883,7 @@
|
|
|
752
883
|
},
|
|
753
884
|
"hasDynamicHelp": false,
|
|
754
885
|
"hiddenAliases": [],
|
|
755
|
-
"id": "
|
|
886
|
+
"id": "environments:delete",
|
|
756
887
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
757
888
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
758
889
|
"pluginType": "core",
|
|
@@ -762,17 +893,17 @@
|
|
|
762
893
|
"relativePath": [
|
|
763
894
|
"dist",
|
|
764
895
|
"commands",
|
|
765
|
-
"
|
|
766
|
-
"
|
|
896
|
+
"environments",
|
|
897
|
+
"delete.js"
|
|
767
898
|
]
|
|
768
899
|
},
|
|
769
|
-
"
|
|
900
|
+
"environments:list": {
|
|
770
901
|
"aliases": [],
|
|
771
902
|
"args": {},
|
|
772
|
-
"description": "List
|
|
903
|
+
"description": "List the environments (production, staging, …) in your organization",
|
|
773
904
|
"examples": [
|
|
774
|
-
"<%= config.bin %>
|
|
775
|
-
"<%= config.bin %>
|
|
905
|
+
"<%= config.bin %> environments list",
|
|
906
|
+
"<%= config.bin %> environments list --page 2 --json"
|
|
776
907
|
],
|
|
777
908
|
"flags": {
|
|
778
909
|
"json": {
|
|
@@ -789,32 +920,11 @@
|
|
|
789
920
|
"hasDynamicHelp": false,
|
|
790
921
|
"multiple": false,
|
|
791
922
|
"type": "option"
|
|
792
|
-
},
|
|
793
|
-
"project": {
|
|
794
|
-
"char": "p",
|
|
795
|
-
"description": "Filter by project id (UUID) or key",
|
|
796
|
-
"name": "project",
|
|
797
|
-
"hasDynamicHelp": false,
|
|
798
|
-
"multiple": false,
|
|
799
|
-
"type": "option"
|
|
800
|
-
},
|
|
801
|
-
"status": {
|
|
802
|
-
"description": "Filter by status",
|
|
803
|
-
"name": "status",
|
|
804
|
-
"hasDynamicHelp": false,
|
|
805
|
-
"multiple": false,
|
|
806
|
-
"options": [
|
|
807
|
-
"unknown",
|
|
808
|
-
"ok",
|
|
809
|
-
"late",
|
|
810
|
-
"missed"
|
|
811
|
-
],
|
|
812
|
-
"type": "option"
|
|
813
923
|
}
|
|
814
924
|
},
|
|
815
925
|
"hasDynamicHelp": false,
|
|
816
926
|
"hiddenAliases": [],
|
|
817
|
-
"id": "
|
|
927
|
+
"id": "environments:list",
|
|
818
928
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
819
929
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
820
930
|
"pluginType": "core",
|
|
@@ -824,22 +934,25 @@
|
|
|
824
934
|
"relativePath": [
|
|
825
935
|
"dist",
|
|
826
936
|
"commands",
|
|
827
|
-
"
|
|
937
|
+
"environments",
|
|
828
938
|
"list.js"
|
|
829
939
|
]
|
|
830
940
|
},
|
|
831
|
-
"
|
|
941
|
+
"environments:update": {
|
|
832
942
|
"aliases": [],
|
|
833
943
|
"args": {
|
|
834
|
-
"
|
|
835
|
-
"description": "
|
|
836
|
-
"name": "
|
|
944
|
+
"environment": {
|
|
945
|
+
"description": "Environment id (UUID) or code",
|
|
946
|
+
"name": "environment",
|
|
837
947
|
"required": true
|
|
838
948
|
}
|
|
839
949
|
},
|
|
840
|
-
"description": "
|
|
950
|
+
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
841
951
|
"examples": [
|
|
842
|
-
"<%= config.bin %>
|
|
952
|
+
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
953
|
+
"<%= config.bin %> environments update production --color indigo",
|
|
954
|
+
"<%= config.bin %> environments update staging --no-active",
|
|
955
|
+
"<%= config.bin %> environments update staging --no-uptime --servers"
|
|
843
956
|
],
|
|
844
957
|
"flags": {
|
|
845
958
|
"json": {
|
|
@@ -848,51 +961,17 @@
|
|
|
848
961
|
"name": "json",
|
|
849
962
|
"allowNo": false,
|
|
850
963
|
"type": "boolean"
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
"hasDynamicHelp": false,
|
|
854
|
-
"hiddenAliases": [],
|
|
855
|
-
"id": "cron-monitors:show",
|
|
856
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
857
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
858
|
-
"pluginType": "core",
|
|
859
|
-
"strict": true,
|
|
860
|
-
"enableJsonFlag": true,
|
|
861
|
-
"isESM": false,
|
|
862
|
-
"relativePath": [
|
|
863
|
-
"dist",
|
|
864
|
-
"commands",
|
|
865
|
-
"cron-monitors",
|
|
866
|
-
"show.js"
|
|
867
|
-
]
|
|
868
|
-
},
|
|
869
|
-
"environments:create": {
|
|
870
|
-
"aliases": [],
|
|
871
|
-
"args": {
|
|
964
|
+
},
|
|
872
965
|
"code": {
|
|
873
|
-
"description": "
|
|
966
|
+
"description": "New code (lowercase)",
|
|
874
967
|
"name": "code",
|
|
875
|
-
"
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
"description": "Create an environment (production, staging, …) in your organization",
|
|
879
|
-
"examples": [
|
|
880
|
-
"<%= config.bin %> environments create production --label Production",
|
|
881
|
-
"<%= config.bin %> environments create staging --label Staging --color amber",
|
|
882
|
-
"<%= config.bin %> environments create staging --label Staging --no-uptime"
|
|
883
|
-
],
|
|
884
|
-
"flags": {
|
|
885
|
-
"json": {
|
|
886
|
-
"description": "Format output as json.",
|
|
887
|
-
"helpGroup": "GLOBAL",
|
|
888
|
-
"name": "json",
|
|
889
|
-
"allowNo": false,
|
|
890
|
-
"type": "boolean"
|
|
968
|
+
"hasDynamicHelp": false,
|
|
969
|
+
"multiple": false,
|
|
970
|
+
"type": "option"
|
|
891
971
|
},
|
|
892
972
|
"label": {
|
|
893
|
-
"description": "
|
|
973
|
+
"description": "New label",
|
|
894
974
|
"name": "label",
|
|
895
|
-
"required": true,
|
|
896
975
|
"hasDynamicHelp": false,
|
|
897
976
|
"multiple": false,
|
|
898
977
|
"type": "option"
|
|
@@ -900,7 +979,6 @@
|
|
|
900
979
|
"color": {
|
|
901
980
|
"description": "Color label",
|
|
902
981
|
"name": "color",
|
|
903
|
-
"default": "emerald",
|
|
904
982
|
"hasDynamicHelp": false,
|
|
905
983
|
"multiple": false,
|
|
906
984
|
"type": "option"
|
|
@@ -939,7 +1017,7 @@
|
|
|
939
1017
|
},
|
|
940
1018
|
"hasDynamicHelp": false,
|
|
941
1019
|
"hiddenAliases": [],
|
|
942
|
-
"id": "environments:
|
|
1020
|
+
"id": "environments:update",
|
|
943
1021
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
944
1022
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
945
1023
|
"pluginType": "core",
|
|
@@ -950,21 +1028,16 @@
|
|
|
950
1028
|
"dist",
|
|
951
1029
|
"commands",
|
|
952
1030
|
"environments",
|
|
953
|
-
"
|
|
1031
|
+
"update.js"
|
|
954
1032
|
]
|
|
955
1033
|
},
|
|
956
|
-
"
|
|
1034
|
+
"errors:list": {
|
|
957
1035
|
"aliases": [],
|
|
958
|
-
"args": {
|
|
959
|
-
|
|
960
|
-
"description": "Environment id (UUID) or code",
|
|
961
|
-
"name": "environment",
|
|
962
|
-
"required": true
|
|
963
|
-
}
|
|
964
|
-
},
|
|
965
|
-
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
1036
|
+
"args": {},
|
|
1037
|
+
"description": "List error groups for a project",
|
|
966
1038
|
"examples": [
|
|
967
|
-
"<%= config.bin %>
|
|
1039
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
1040
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
968
1041
|
],
|
|
969
1042
|
"flags": {
|
|
970
1043
|
"json": {
|
|
@@ -974,16 +1047,34 @@
|
|
|
974
1047
|
"allowNo": false,
|
|
975
1048
|
"type": "boolean"
|
|
976
1049
|
},
|
|
977
|
-
"
|
|
978
|
-
"
|
|
979
|
-
"
|
|
980
|
-
"
|
|
981
|
-
"
|
|
1050
|
+
"project": {
|
|
1051
|
+
"char": "p",
|
|
1052
|
+
"description": "Project id (UUID) or key",
|
|
1053
|
+
"name": "project",
|
|
1054
|
+
"required": true,
|
|
1055
|
+
"hasDynamicHelp": false,
|
|
1056
|
+
"multiple": false,
|
|
1057
|
+
"type": "option"
|
|
1058
|
+
},
|
|
1059
|
+
"page": {
|
|
1060
|
+
"description": "Page number",
|
|
1061
|
+
"name": "page",
|
|
1062
|
+
"default": 1,
|
|
1063
|
+
"hasDynamicHelp": false,
|
|
1064
|
+
"multiple": false,
|
|
1065
|
+
"type": "option"
|
|
1066
|
+
},
|
|
1067
|
+
"status": {
|
|
1068
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
1069
|
+
"name": "status",
|
|
1070
|
+
"hasDynamicHelp": false,
|
|
1071
|
+
"multiple": false,
|
|
1072
|
+
"type": "option"
|
|
982
1073
|
}
|
|
983
1074
|
},
|
|
984
1075
|
"hasDynamicHelp": false,
|
|
985
1076
|
"hiddenAliases": [],
|
|
986
|
-
"id": "
|
|
1077
|
+
"id": "errors:list",
|
|
987
1078
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
988
1079
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
989
1080
|
"pluginType": "core",
|
|
@@ -993,17 +1084,22 @@
|
|
|
993
1084
|
"relativePath": [
|
|
994
1085
|
"dist",
|
|
995
1086
|
"commands",
|
|
996
|
-
"
|
|
997
|
-
"
|
|
1087
|
+
"errors",
|
|
1088
|
+
"list.js"
|
|
998
1089
|
]
|
|
999
1090
|
},
|
|
1000
|
-
"
|
|
1091
|
+
"errors:mute": {
|
|
1001
1092
|
"aliases": [],
|
|
1002
|
-
"args": {
|
|
1003
|
-
|
|
1093
|
+
"args": {
|
|
1094
|
+
"id": {
|
|
1095
|
+
"description": "Error group id",
|
|
1096
|
+
"name": "id",
|
|
1097
|
+
"required": true
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"description": "Mute an error group",
|
|
1004
1101
|
"examples": [
|
|
1005
|
-
"<%= config.bin %>
|
|
1006
|
-
"<%= config.bin %> environments list --page 2 --json"
|
|
1102
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
1007
1103
|
],
|
|
1008
1104
|
"flags": {
|
|
1009
1105
|
"json": {
|
|
@@ -1013,10 +1109,11 @@
|
|
|
1013
1109
|
"allowNo": false,
|
|
1014
1110
|
"type": "boolean"
|
|
1015
1111
|
},
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
1112
|
+
"project": {
|
|
1113
|
+
"char": "p",
|
|
1114
|
+
"description": "Project id (UUID) or key",
|
|
1115
|
+
"name": "project",
|
|
1116
|
+
"required": true,
|
|
1020
1117
|
"hasDynamicHelp": false,
|
|
1021
1118
|
"multiple": false,
|
|
1022
1119
|
"type": "option"
|
|
@@ -1024,7 +1121,7 @@
|
|
|
1024
1121
|
},
|
|
1025
1122
|
"hasDynamicHelp": false,
|
|
1026
1123
|
"hiddenAliases": [],
|
|
1027
|
-
"id": "
|
|
1124
|
+
"id": "errors:mute",
|
|
1028
1125
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1029
1126
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1030
1127
|
"pluginType": "core",
|
|
@@ -1034,25 +1131,22 @@
|
|
|
1034
1131
|
"relativePath": [
|
|
1035
1132
|
"dist",
|
|
1036
1133
|
"commands",
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
1134
|
+
"errors",
|
|
1135
|
+
"mute.js"
|
|
1039
1136
|
]
|
|
1040
1137
|
},
|
|
1041
|
-
"
|
|
1138
|
+
"errors:promote": {
|
|
1042
1139
|
"aliases": [],
|
|
1043
1140
|
"args": {
|
|
1044
|
-
"
|
|
1045
|
-
"description": "
|
|
1046
|
-
"name": "
|
|
1141
|
+
"id": {
|
|
1142
|
+
"description": "Error group id",
|
|
1143
|
+
"name": "id",
|
|
1047
1144
|
"required": true
|
|
1048
1145
|
}
|
|
1049
1146
|
},
|
|
1050
|
-
"description": "
|
|
1147
|
+
"description": "Promote an error group to a ticket",
|
|
1051
1148
|
"examples": [
|
|
1052
|
-
"<%= config.bin %>
|
|
1053
|
-
"<%= config.bin %> environments update production --color indigo",
|
|
1054
|
-
"<%= config.bin %> environments update staging --no-active",
|
|
1055
|
-
"<%= config.bin %> environments update staging --no-uptime --servers"
|
|
1149
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
1056
1150
|
],
|
|
1057
1151
|
"flags": {
|
|
1058
1152
|
"json": {
|
|
@@ -1062,62 +1156,207 @@
|
|
|
1062
1156
|
"allowNo": false,
|
|
1063
1157
|
"type": "boolean"
|
|
1064
1158
|
},
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1067
|
-
"
|
|
1159
|
+
"project": {
|
|
1160
|
+
"char": "p",
|
|
1161
|
+
"description": "Project id (UUID) or key",
|
|
1162
|
+
"name": "project",
|
|
1163
|
+
"required": true,
|
|
1068
1164
|
"hasDynamicHelp": false,
|
|
1069
1165
|
"multiple": false,
|
|
1070
1166
|
"type": "option"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"hasDynamicHelp": false,
|
|
1170
|
+
"hiddenAliases": [],
|
|
1171
|
+
"id": "errors:promote",
|
|
1172
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1173
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1174
|
+
"pluginType": "core",
|
|
1175
|
+
"strict": true,
|
|
1176
|
+
"enableJsonFlag": true,
|
|
1177
|
+
"isESM": false,
|
|
1178
|
+
"relativePath": [
|
|
1179
|
+
"dist",
|
|
1180
|
+
"commands",
|
|
1181
|
+
"errors",
|
|
1182
|
+
"promote.js"
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
"errors:reopen": {
|
|
1186
|
+
"aliases": [],
|
|
1187
|
+
"args": {
|
|
1188
|
+
"id": {
|
|
1189
|
+
"description": "Error group id",
|
|
1190
|
+
"name": "id",
|
|
1191
|
+
"required": true
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
"description": "Reopen a resolved error group",
|
|
1195
|
+
"examples": [
|
|
1196
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
1197
|
+
],
|
|
1198
|
+
"flags": {
|
|
1199
|
+
"json": {
|
|
1200
|
+
"description": "Format output as json.",
|
|
1201
|
+
"helpGroup": "GLOBAL",
|
|
1202
|
+
"name": "json",
|
|
1203
|
+
"allowNo": false,
|
|
1204
|
+
"type": "boolean"
|
|
1071
1205
|
},
|
|
1072
|
-
"
|
|
1073
|
-
"
|
|
1074
|
-
"
|
|
1206
|
+
"project": {
|
|
1207
|
+
"char": "p",
|
|
1208
|
+
"description": "Project id (UUID) or key",
|
|
1209
|
+
"name": "project",
|
|
1210
|
+
"required": true,
|
|
1075
1211
|
"hasDynamicHelp": false,
|
|
1076
1212
|
"multiple": false,
|
|
1077
1213
|
"type": "option"
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1216
|
+
"hasDynamicHelp": false,
|
|
1217
|
+
"hiddenAliases": [],
|
|
1218
|
+
"id": "errors:reopen",
|
|
1219
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1220
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1221
|
+
"pluginType": "core",
|
|
1222
|
+
"strict": true,
|
|
1223
|
+
"enableJsonFlag": true,
|
|
1224
|
+
"isESM": false,
|
|
1225
|
+
"relativePath": [
|
|
1226
|
+
"dist",
|
|
1227
|
+
"commands",
|
|
1228
|
+
"errors",
|
|
1229
|
+
"reopen.js"
|
|
1230
|
+
]
|
|
1231
|
+
},
|
|
1232
|
+
"errors:resolve": {
|
|
1233
|
+
"aliases": [],
|
|
1234
|
+
"args": {
|
|
1235
|
+
"id": {
|
|
1236
|
+
"description": "Error group id",
|
|
1237
|
+
"name": "id",
|
|
1238
|
+
"required": true
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"description": "Mark an error group as resolved",
|
|
1242
|
+
"examples": [
|
|
1243
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
1244
|
+
],
|
|
1245
|
+
"flags": {
|
|
1246
|
+
"json": {
|
|
1247
|
+
"description": "Format output as json.",
|
|
1248
|
+
"helpGroup": "GLOBAL",
|
|
1249
|
+
"name": "json",
|
|
1250
|
+
"allowNo": false,
|
|
1251
|
+
"type": "boolean"
|
|
1078
1252
|
},
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1081
|
-
"
|
|
1253
|
+
"project": {
|
|
1254
|
+
"char": "p",
|
|
1255
|
+
"description": "Project id (UUID) or key",
|
|
1256
|
+
"name": "project",
|
|
1257
|
+
"required": true,
|
|
1082
1258
|
"hasDynamicHelp": false,
|
|
1083
1259
|
"multiple": false,
|
|
1084
1260
|
"type": "option"
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
"hasDynamicHelp": false,
|
|
1264
|
+
"hiddenAliases": [],
|
|
1265
|
+
"id": "errors:resolve",
|
|
1266
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1267
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1268
|
+
"pluginType": "core",
|
|
1269
|
+
"strict": true,
|
|
1270
|
+
"enableJsonFlag": true,
|
|
1271
|
+
"isESM": false,
|
|
1272
|
+
"relativePath": [
|
|
1273
|
+
"dist",
|
|
1274
|
+
"commands",
|
|
1275
|
+
"errors",
|
|
1276
|
+
"resolve.js"
|
|
1277
|
+
]
|
|
1278
|
+
},
|
|
1279
|
+
"errors:show": {
|
|
1280
|
+
"aliases": [],
|
|
1281
|
+
"args": {
|
|
1282
|
+
"id": {
|
|
1283
|
+
"description": "Error group id",
|
|
1284
|
+
"name": "id",
|
|
1285
|
+
"required": true
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
1288
|
+
"description": "Show a single error group",
|
|
1289
|
+
"examples": [
|
|
1290
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
1291
|
+
],
|
|
1292
|
+
"flags": {
|
|
1293
|
+
"json": {
|
|
1294
|
+
"description": "Format output as json.",
|
|
1295
|
+
"helpGroup": "GLOBAL",
|
|
1296
|
+
"name": "json",
|
|
1297
|
+
"allowNo": false,
|
|
1298
|
+
"type": "boolean"
|
|
1085
1299
|
},
|
|
1086
|
-
"
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1300
|
+
"project": {
|
|
1301
|
+
"char": "p",
|
|
1302
|
+
"description": "Project id (UUID) or key",
|
|
1303
|
+
"name": "project",
|
|
1304
|
+
"required": true,
|
|
1089
1305
|
"hasDynamicHelp": false,
|
|
1090
1306
|
"multiple": false,
|
|
1091
1307
|
"type": "option"
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
"
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"hasDynamicHelp": false,
|
|
1311
|
+
"hiddenAliases": [],
|
|
1312
|
+
"id": "errors:show",
|
|
1313
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1314
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1315
|
+
"pluginType": "core",
|
|
1316
|
+
"strict": true,
|
|
1317
|
+
"enableJsonFlag": true,
|
|
1318
|
+
"isESM": false,
|
|
1319
|
+
"relativePath": [
|
|
1320
|
+
"dist",
|
|
1321
|
+
"commands",
|
|
1322
|
+
"errors",
|
|
1323
|
+
"show.js"
|
|
1324
|
+
]
|
|
1325
|
+
},
|
|
1326
|
+
"errors:unmute": {
|
|
1327
|
+
"aliases": [],
|
|
1328
|
+
"args": {
|
|
1329
|
+
"id": {
|
|
1330
|
+
"description": "Error group id",
|
|
1331
|
+
"name": "id",
|
|
1332
|
+
"required": true
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
"description": "Unmute an error group",
|
|
1336
|
+
"examples": [
|
|
1337
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
1338
|
+
],
|
|
1339
|
+
"flags": {
|
|
1340
|
+
"json": {
|
|
1341
|
+
"description": "Format output as json.",
|
|
1342
|
+
"helpGroup": "GLOBAL",
|
|
1343
|
+
"name": "json",
|
|
1344
|
+
"allowNo": false,
|
|
1109
1345
|
"type": "boolean"
|
|
1110
1346
|
},
|
|
1111
|
-
"
|
|
1112
|
-
"
|
|
1113
|
-
"
|
|
1114
|
-
"
|
|
1115
|
-
"
|
|
1347
|
+
"project": {
|
|
1348
|
+
"char": "p",
|
|
1349
|
+
"description": "Project id (UUID) or key",
|
|
1350
|
+
"name": "project",
|
|
1351
|
+
"required": true,
|
|
1352
|
+
"hasDynamicHelp": false,
|
|
1353
|
+
"multiple": false,
|
|
1354
|
+
"type": "option"
|
|
1116
1355
|
}
|
|
1117
1356
|
},
|
|
1118
1357
|
"hasDynamicHelp": false,
|
|
1119
1358
|
"hiddenAliases": [],
|
|
1120
|
-
"id": "
|
|
1359
|
+
"id": "errors:unmute",
|
|
1121
1360
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1122
1361
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1123
1362
|
"pluginType": "core",
|
|
@@ -1127,8 +1366,8 @@
|
|
|
1127
1366
|
"relativePath": [
|
|
1128
1367
|
"dist",
|
|
1129
1368
|
"commands",
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1369
|
+
"errors",
|
|
1370
|
+
"unmute.js"
|
|
1132
1371
|
]
|
|
1133
1372
|
},
|
|
1134
1373
|
"alerts:create": {
|
|
@@ -1468,354 +1707,15 @@
|
|
|
1468
1707
|
"type": "boolean"
|
|
1469
1708
|
},
|
|
1470
1709
|
"project": {
|
|
1471
|
-
"description": "Scope the rule to a project id (UUID)",
|
|
1472
|
-
"name": "project",
|
|
1473
|
-
"hasDynamicHelp": false,
|
|
1474
|
-
"multiple": false,
|
|
1475
|
-
"type": "option"
|
|
1476
|
-
},
|
|
1477
|
-
"environment": {
|
|
1478
|
-
"description": "Scope the rule to an environment id (UUID)",
|
|
1479
|
-
"name": "environment",
|
|
1480
|
-
"hasDynamicHelp": false,
|
|
1481
|
-
"multiple": false,
|
|
1482
|
-
"type": "option"
|
|
1483
|
-
}
|
|
1484
|
-
},
|
|
1485
|
-
"hasDynamicHelp": false,
|
|
1486
|
-
"hiddenAliases": [],
|
|
1487
|
-
"id": "alerts:update",
|
|
1488
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1489
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1490
|
-
"pluginType": "core",
|
|
1491
|
-
"strict": true,
|
|
1492
|
-
"enableJsonFlag": true,
|
|
1493
|
-
"isESM": false,
|
|
1494
|
-
"relativePath": [
|
|
1495
|
-
"dist",
|
|
1496
|
-
"commands",
|
|
1497
|
-
"alerts",
|
|
1498
|
-
"update.js"
|
|
1499
|
-
]
|
|
1500
|
-
},
|
|
1501
|
-
"errors:list": {
|
|
1502
|
-
"aliases": [],
|
|
1503
|
-
"args": {},
|
|
1504
|
-
"description": "List error groups for a project",
|
|
1505
|
-
"examples": [
|
|
1506
|
-
"<%= config.bin %> errors list --project acme-api",
|
|
1507
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1508
|
-
],
|
|
1509
|
-
"flags": {
|
|
1510
|
-
"json": {
|
|
1511
|
-
"description": "Format output as json.",
|
|
1512
|
-
"helpGroup": "GLOBAL",
|
|
1513
|
-
"name": "json",
|
|
1514
|
-
"allowNo": false,
|
|
1515
|
-
"type": "boolean"
|
|
1516
|
-
},
|
|
1517
|
-
"project": {
|
|
1518
|
-
"char": "p",
|
|
1519
|
-
"description": "Project id (UUID) or key",
|
|
1520
|
-
"name": "project",
|
|
1521
|
-
"required": true,
|
|
1522
|
-
"hasDynamicHelp": false,
|
|
1523
|
-
"multiple": false,
|
|
1524
|
-
"type": "option"
|
|
1525
|
-
},
|
|
1526
|
-
"page": {
|
|
1527
|
-
"description": "Page number",
|
|
1528
|
-
"name": "page",
|
|
1529
|
-
"default": 1,
|
|
1530
|
-
"hasDynamicHelp": false,
|
|
1531
|
-
"multiple": false,
|
|
1532
|
-
"type": "option"
|
|
1533
|
-
},
|
|
1534
|
-
"status": {
|
|
1535
|
-
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
1536
|
-
"name": "status",
|
|
1537
|
-
"hasDynamicHelp": false,
|
|
1538
|
-
"multiple": false,
|
|
1539
|
-
"type": "option"
|
|
1540
|
-
}
|
|
1541
|
-
},
|
|
1542
|
-
"hasDynamicHelp": false,
|
|
1543
|
-
"hiddenAliases": [],
|
|
1544
|
-
"id": "errors:list",
|
|
1545
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1546
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1547
|
-
"pluginType": "core",
|
|
1548
|
-
"strict": true,
|
|
1549
|
-
"enableJsonFlag": true,
|
|
1550
|
-
"isESM": false,
|
|
1551
|
-
"relativePath": [
|
|
1552
|
-
"dist",
|
|
1553
|
-
"commands",
|
|
1554
|
-
"errors",
|
|
1555
|
-
"list.js"
|
|
1556
|
-
]
|
|
1557
|
-
},
|
|
1558
|
-
"errors:mute": {
|
|
1559
|
-
"aliases": [],
|
|
1560
|
-
"args": {
|
|
1561
|
-
"id": {
|
|
1562
|
-
"description": "Error group id",
|
|
1563
|
-
"name": "id",
|
|
1564
|
-
"required": true
|
|
1565
|
-
}
|
|
1566
|
-
},
|
|
1567
|
-
"description": "Mute an error group",
|
|
1568
|
-
"examples": [
|
|
1569
|
-
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
1570
|
-
],
|
|
1571
|
-
"flags": {
|
|
1572
|
-
"json": {
|
|
1573
|
-
"description": "Format output as json.",
|
|
1574
|
-
"helpGroup": "GLOBAL",
|
|
1575
|
-
"name": "json",
|
|
1576
|
-
"allowNo": false,
|
|
1577
|
-
"type": "boolean"
|
|
1578
|
-
},
|
|
1579
|
-
"project": {
|
|
1580
|
-
"char": "p",
|
|
1581
|
-
"description": "Project id (UUID) or key",
|
|
1582
|
-
"name": "project",
|
|
1583
|
-
"required": true,
|
|
1584
|
-
"hasDynamicHelp": false,
|
|
1585
|
-
"multiple": false,
|
|
1586
|
-
"type": "option"
|
|
1587
|
-
}
|
|
1588
|
-
},
|
|
1589
|
-
"hasDynamicHelp": false,
|
|
1590
|
-
"hiddenAliases": [],
|
|
1591
|
-
"id": "errors:mute",
|
|
1592
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1593
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1594
|
-
"pluginType": "core",
|
|
1595
|
-
"strict": true,
|
|
1596
|
-
"enableJsonFlag": true,
|
|
1597
|
-
"isESM": false,
|
|
1598
|
-
"relativePath": [
|
|
1599
|
-
"dist",
|
|
1600
|
-
"commands",
|
|
1601
|
-
"errors",
|
|
1602
|
-
"mute.js"
|
|
1603
|
-
]
|
|
1604
|
-
},
|
|
1605
|
-
"errors:promote": {
|
|
1606
|
-
"aliases": [],
|
|
1607
|
-
"args": {
|
|
1608
|
-
"id": {
|
|
1609
|
-
"description": "Error group id",
|
|
1610
|
-
"name": "id",
|
|
1611
|
-
"required": true
|
|
1612
|
-
}
|
|
1613
|
-
},
|
|
1614
|
-
"description": "Promote an error group to a ticket",
|
|
1615
|
-
"examples": [
|
|
1616
|
-
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
1617
|
-
],
|
|
1618
|
-
"flags": {
|
|
1619
|
-
"json": {
|
|
1620
|
-
"description": "Format output as json.",
|
|
1621
|
-
"helpGroup": "GLOBAL",
|
|
1622
|
-
"name": "json",
|
|
1623
|
-
"allowNo": false,
|
|
1624
|
-
"type": "boolean"
|
|
1625
|
-
},
|
|
1626
|
-
"project": {
|
|
1627
|
-
"char": "p",
|
|
1628
|
-
"description": "Project id (UUID) or key",
|
|
1629
|
-
"name": "project",
|
|
1630
|
-
"required": true,
|
|
1631
|
-
"hasDynamicHelp": false,
|
|
1632
|
-
"multiple": false,
|
|
1633
|
-
"type": "option"
|
|
1634
|
-
}
|
|
1635
|
-
},
|
|
1636
|
-
"hasDynamicHelp": false,
|
|
1637
|
-
"hiddenAliases": [],
|
|
1638
|
-
"id": "errors:promote",
|
|
1639
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1640
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1641
|
-
"pluginType": "core",
|
|
1642
|
-
"strict": true,
|
|
1643
|
-
"enableJsonFlag": true,
|
|
1644
|
-
"isESM": false,
|
|
1645
|
-
"relativePath": [
|
|
1646
|
-
"dist",
|
|
1647
|
-
"commands",
|
|
1648
|
-
"errors",
|
|
1649
|
-
"promote.js"
|
|
1650
|
-
]
|
|
1651
|
-
},
|
|
1652
|
-
"errors:reopen": {
|
|
1653
|
-
"aliases": [],
|
|
1654
|
-
"args": {
|
|
1655
|
-
"id": {
|
|
1656
|
-
"description": "Error group id",
|
|
1657
|
-
"name": "id",
|
|
1658
|
-
"required": true
|
|
1659
|
-
}
|
|
1660
|
-
},
|
|
1661
|
-
"description": "Reopen a resolved error group",
|
|
1662
|
-
"examples": [
|
|
1663
|
-
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
1664
|
-
],
|
|
1665
|
-
"flags": {
|
|
1666
|
-
"json": {
|
|
1667
|
-
"description": "Format output as json.",
|
|
1668
|
-
"helpGroup": "GLOBAL",
|
|
1669
|
-
"name": "json",
|
|
1670
|
-
"allowNo": false,
|
|
1671
|
-
"type": "boolean"
|
|
1672
|
-
},
|
|
1673
|
-
"project": {
|
|
1674
|
-
"char": "p",
|
|
1675
|
-
"description": "Project id (UUID) or key",
|
|
1676
|
-
"name": "project",
|
|
1677
|
-
"required": true,
|
|
1678
|
-
"hasDynamicHelp": false,
|
|
1679
|
-
"multiple": false,
|
|
1680
|
-
"type": "option"
|
|
1681
|
-
}
|
|
1682
|
-
},
|
|
1683
|
-
"hasDynamicHelp": false,
|
|
1684
|
-
"hiddenAliases": [],
|
|
1685
|
-
"id": "errors:reopen",
|
|
1686
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1687
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1688
|
-
"pluginType": "core",
|
|
1689
|
-
"strict": true,
|
|
1690
|
-
"enableJsonFlag": true,
|
|
1691
|
-
"isESM": false,
|
|
1692
|
-
"relativePath": [
|
|
1693
|
-
"dist",
|
|
1694
|
-
"commands",
|
|
1695
|
-
"errors",
|
|
1696
|
-
"reopen.js"
|
|
1697
|
-
]
|
|
1698
|
-
},
|
|
1699
|
-
"errors:resolve": {
|
|
1700
|
-
"aliases": [],
|
|
1701
|
-
"args": {
|
|
1702
|
-
"id": {
|
|
1703
|
-
"description": "Error group id",
|
|
1704
|
-
"name": "id",
|
|
1705
|
-
"required": true
|
|
1706
|
-
}
|
|
1707
|
-
},
|
|
1708
|
-
"description": "Mark an error group as resolved",
|
|
1709
|
-
"examples": [
|
|
1710
|
-
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
1711
|
-
],
|
|
1712
|
-
"flags": {
|
|
1713
|
-
"json": {
|
|
1714
|
-
"description": "Format output as json.",
|
|
1715
|
-
"helpGroup": "GLOBAL",
|
|
1716
|
-
"name": "json",
|
|
1717
|
-
"allowNo": false,
|
|
1718
|
-
"type": "boolean"
|
|
1719
|
-
},
|
|
1720
|
-
"project": {
|
|
1721
|
-
"char": "p",
|
|
1722
|
-
"description": "Project id (UUID) or key",
|
|
1723
|
-
"name": "project",
|
|
1724
|
-
"required": true,
|
|
1725
|
-
"hasDynamicHelp": false,
|
|
1726
|
-
"multiple": false,
|
|
1727
|
-
"type": "option"
|
|
1728
|
-
}
|
|
1729
|
-
},
|
|
1730
|
-
"hasDynamicHelp": false,
|
|
1731
|
-
"hiddenAliases": [],
|
|
1732
|
-
"id": "errors:resolve",
|
|
1733
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1734
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1735
|
-
"pluginType": "core",
|
|
1736
|
-
"strict": true,
|
|
1737
|
-
"enableJsonFlag": true,
|
|
1738
|
-
"isESM": false,
|
|
1739
|
-
"relativePath": [
|
|
1740
|
-
"dist",
|
|
1741
|
-
"commands",
|
|
1742
|
-
"errors",
|
|
1743
|
-
"resolve.js"
|
|
1744
|
-
]
|
|
1745
|
-
},
|
|
1746
|
-
"errors:show": {
|
|
1747
|
-
"aliases": [],
|
|
1748
|
-
"args": {
|
|
1749
|
-
"id": {
|
|
1750
|
-
"description": "Error group id",
|
|
1751
|
-
"name": "id",
|
|
1752
|
-
"required": true
|
|
1753
|
-
}
|
|
1754
|
-
},
|
|
1755
|
-
"description": "Show a single error group",
|
|
1756
|
-
"examples": [
|
|
1757
|
-
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
1758
|
-
],
|
|
1759
|
-
"flags": {
|
|
1760
|
-
"json": {
|
|
1761
|
-
"description": "Format output as json.",
|
|
1762
|
-
"helpGroup": "GLOBAL",
|
|
1763
|
-
"name": "json",
|
|
1764
|
-
"allowNo": false,
|
|
1765
|
-
"type": "boolean"
|
|
1766
|
-
},
|
|
1767
|
-
"project": {
|
|
1768
|
-
"char": "p",
|
|
1769
|
-
"description": "Project id (UUID) or key",
|
|
1770
|
-
"name": "project",
|
|
1771
|
-
"required": true,
|
|
1772
|
-
"hasDynamicHelp": false,
|
|
1773
|
-
"multiple": false,
|
|
1774
|
-
"type": "option"
|
|
1775
|
-
}
|
|
1776
|
-
},
|
|
1777
|
-
"hasDynamicHelp": false,
|
|
1778
|
-
"hiddenAliases": [],
|
|
1779
|
-
"id": "errors:show",
|
|
1780
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1781
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1782
|
-
"pluginType": "core",
|
|
1783
|
-
"strict": true,
|
|
1784
|
-
"enableJsonFlag": true,
|
|
1785
|
-
"isESM": false,
|
|
1786
|
-
"relativePath": [
|
|
1787
|
-
"dist",
|
|
1788
|
-
"commands",
|
|
1789
|
-
"errors",
|
|
1790
|
-
"show.js"
|
|
1791
|
-
]
|
|
1792
|
-
},
|
|
1793
|
-
"errors:unmute": {
|
|
1794
|
-
"aliases": [],
|
|
1795
|
-
"args": {
|
|
1796
|
-
"id": {
|
|
1797
|
-
"description": "Error group id",
|
|
1798
|
-
"name": "id",
|
|
1799
|
-
"required": true
|
|
1800
|
-
}
|
|
1801
|
-
},
|
|
1802
|
-
"description": "Unmute an error group",
|
|
1803
|
-
"examples": [
|
|
1804
|
-
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
1805
|
-
],
|
|
1806
|
-
"flags": {
|
|
1807
|
-
"json": {
|
|
1808
|
-
"description": "Format output as json.",
|
|
1809
|
-
"helpGroup": "GLOBAL",
|
|
1810
|
-
"name": "json",
|
|
1811
|
-
"allowNo": false,
|
|
1812
|
-
"type": "boolean"
|
|
1813
|
-
},
|
|
1814
|
-
"project": {
|
|
1815
|
-
"char": "p",
|
|
1816
|
-
"description": "Project id (UUID) or key",
|
|
1710
|
+
"description": "Scope the rule to a project id (UUID)",
|
|
1817
1711
|
"name": "project",
|
|
1818
|
-
"
|
|
1712
|
+
"hasDynamicHelp": false,
|
|
1713
|
+
"multiple": false,
|
|
1714
|
+
"type": "option"
|
|
1715
|
+
},
|
|
1716
|
+
"environment": {
|
|
1717
|
+
"description": "Scope the rule to an environment id (UUID)",
|
|
1718
|
+
"name": "environment",
|
|
1819
1719
|
"hasDynamicHelp": false,
|
|
1820
1720
|
"multiple": false,
|
|
1821
1721
|
"type": "option"
|
|
@@ -1823,7 +1723,7 @@
|
|
|
1823
1723
|
},
|
|
1824
1724
|
"hasDynamicHelp": false,
|
|
1825
1725
|
"hiddenAliases": [],
|
|
1826
|
-
"id": "
|
|
1726
|
+
"id": "alerts:update",
|
|
1827
1727
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1828
1728
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1829
1729
|
"pluginType": "core",
|
|
@@ -1833,8 +1733,8 @@
|
|
|
1833
1733
|
"relativePath": [
|
|
1834
1734
|
"dist",
|
|
1835
1735
|
"commands",
|
|
1836
|
-
"
|
|
1837
|
-
"
|
|
1736
|
+
"alerts",
|
|
1737
|
+
"update.js"
|
|
1838
1738
|
]
|
|
1839
1739
|
},
|
|
1840
1740
|
"groups:create": {
|
|
@@ -3529,6 +3429,106 @@
|
|
|
3529
3429
|
"update.js"
|
|
3530
3430
|
]
|
|
3531
3431
|
},
|
|
3432
|
+
"cron-monitors:list": {
|
|
3433
|
+
"aliases": [],
|
|
3434
|
+
"args": {},
|
|
3435
|
+
"description": "List cron / heartbeat monitors across your visible projects",
|
|
3436
|
+
"examples": [
|
|
3437
|
+
"<%= config.bin %> cron-monitors list",
|
|
3438
|
+
"<%= config.bin %> cron-monitors list --status missed --project acme-api --json"
|
|
3439
|
+
],
|
|
3440
|
+
"flags": {
|
|
3441
|
+
"json": {
|
|
3442
|
+
"description": "Format output as json.",
|
|
3443
|
+
"helpGroup": "GLOBAL",
|
|
3444
|
+
"name": "json",
|
|
3445
|
+
"allowNo": false,
|
|
3446
|
+
"type": "boolean"
|
|
3447
|
+
},
|
|
3448
|
+
"page": {
|
|
3449
|
+
"description": "Page number",
|
|
3450
|
+
"name": "page",
|
|
3451
|
+
"default": 1,
|
|
3452
|
+
"hasDynamicHelp": false,
|
|
3453
|
+
"multiple": false,
|
|
3454
|
+
"type": "option"
|
|
3455
|
+
},
|
|
3456
|
+
"project": {
|
|
3457
|
+
"char": "p",
|
|
3458
|
+
"description": "Filter by project id (UUID) or key",
|
|
3459
|
+
"name": "project",
|
|
3460
|
+
"hasDynamicHelp": false,
|
|
3461
|
+
"multiple": false,
|
|
3462
|
+
"type": "option"
|
|
3463
|
+
},
|
|
3464
|
+
"status": {
|
|
3465
|
+
"description": "Filter by status",
|
|
3466
|
+
"name": "status",
|
|
3467
|
+
"hasDynamicHelp": false,
|
|
3468
|
+
"multiple": false,
|
|
3469
|
+
"options": [
|
|
3470
|
+
"unknown",
|
|
3471
|
+
"ok",
|
|
3472
|
+
"late",
|
|
3473
|
+
"missed"
|
|
3474
|
+
],
|
|
3475
|
+
"type": "option"
|
|
3476
|
+
}
|
|
3477
|
+
},
|
|
3478
|
+
"hasDynamicHelp": false,
|
|
3479
|
+
"hiddenAliases": [],
|
|
3480
|
+
"id": "cron-monitors:list",
|
|
3481
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3482
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3483
|
+
"pluginType": "core",
|
|
3484
|
+
"strict": true,
|
|
3485
|
+
"enableJsonFlag": true,
|
|
3486
|
+
"isESM": false,
|
|
3487
|
+
"relativePath": [
|
|
3488
|
+
"dist",
|
|
3489
|
+
"commands",
|
|
3490
|
+
"cron-monitors",
|
|
3491
|
+
"list.js"
|
|
3492
|
+
]
|
|
3493
|
+
},
|
|
3494
|
+
"cron-monitors:show": {
|
|
3495
|
+
"aliases": [],
|
|
3496
|
+
"args": {
|
|
3497
|
+
"id": {
|
|
3498
|
+
"description": "Cron monitor id",
|
|
3499
|
+
"name": "id",
|
|
3500
|
+
"required": true
|
|
3501
|
+
}
|
|
3502
|
+
},
|
|
3503
|
+
"description": "Show a cron / heartbeat monitor",
|
|
3504
|
+
"examples": [
|
|
3505
|
+
"<%= config.bin %> cron-monitors show <monitor-id>"
|
|
3506
|
+
],
|
|
3507
|
+
"flags": {
|
|
3508
|
+
"json": {
|
|
3509
|
+
"description": "Format output as json.",
|
|
3510
|
+
"helpGroup": "GLOBAL",
|
|
3511
|
+
"name": "json",
|
|
3512
|
+
"allowNo": false,
|
|
3513
|
+
"type": "boolean"
|
|
3514
|
+
}
|
|
3515
|
+
},
|
|
3516
|
+
"hasDynamicHelp": false,
|
|
3517
|
+
"hiddenAliases": [],
|
|
3518
|
+
"id": "cron-monitors:show",
|
|
3519
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3520
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3521
|
+
"pluginType": "core",
|
|
3522
|
+
"strict": true,
|
|
3523
|
+
"enableJsonFlag": true,
|
|
3524
|
+
"isESM": false,
|
|
3525
|
+
"relativePath": [
|
|
3526
|
+
"dist",
|
|
3527
|
+
"commands",
|
|
3528
|
+
"cron-monitors",
|
|
3529
|
+
"show.js"
|
|
3530
|
+
]
|
|
3531
|
+
},
|
|
3532
3532
|
"logs:link": {
|
|
3533
3533
|
"aliases": [],
|
|
3534
3534
|
"args": {
|
|
@@ -3979,9 +3979,160 @@
|
|
|
3979
3979
|
"multiple": false,
|
|
3980
3980
|
"type": "option"
|
|
3981
3981
|
},
|
|
3982
|
-
"handle": {
|
|
3983
|
-
"description": "New handle (global; a-z, 0-9, underscore)",
|
|
3984
|
-
"name": "handle",
|
|
3982
|
+
"handle": {
|
|
3983
|
+
"description": "New handle (global; a-z, 0-9, underscore)",
|
|
3984
|
+
"name": "handle",
|
|
3985
|
+
"hasDynamicHelp": false,
|
|
3986
|
+
"multiple": false,
|
|
3987
|
+
"type": "option"
|
|
3988
|
+
}
|
|
3989
|
+
},
|
|
3990
|
+
"hasDynamicHelp": false,
|
|
3991
|
+
"hiddenAliases": [],
|
|
3992
|
+
"id": "members:update",
|
|
3993
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3994
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3995
|
+
"pluginType": "core",
|
|
3996
|
+
"strict": true,
|
|
3997
|
+
"enableJsonFlag": true,
|
|
3998
|
+
"isESM": false,
|
|
3999
|
+
"relativePath": [
|
|
4000
|
+
"dist",
|
|
4001
|
+
"commands",
|
|
4002
|
+
"members",
|
|
4003
|
+
"update.js"
|
|
4004
|
+
]
|
|
4005
|
+
},
|
|
4006
|
+
"metrics:list": {
|
|
4007
|
+
"aliases": [],
|
|
4008
|
+
"args": {},
|
|
4009
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
4010
|
+
"examples": [
|
|
4011
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
4012
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
4013
|
+
],
|
|
4014
|
+
"flags": {
|
|
4015
|
+
"json": {
|
|
4016
|
+
"description": "Format output as json.",
|
|
4017
|
+
"helpGroup": "GLOBAL",
|
|
4018
|
+
"name": "json",
|
|
4019
|
+
"allowNo": false,
|
|
4020
|
+
"type": "boolean"
|
|
4021
|
+
},
|
|
4022
|
+
"project": {
|
|
4023
|
+
"char": "p",
|
|
4024
|
+
"description": "Project id (UUID) or key",
|
|
4025
|
+
"name": "project",
|
|
4026
|
+
"required": true,
|
|
4027
|
+
"hasDynamicHelp": false,
|
|
4028
|
+
"multiple": false,
|
|
4029
|
+
"type": "option"
|
|
4030
|
+
},
|
|
4031
|
+
"page": {
|
|
4032
|
+
"description": "Page number",
|
|
4033
|
+
"name": "page",
|
|
4034
|
+
"default": 1,
|
|
4035
|
+
"hasDynamicHelp": false,
|
|
4036
|
+
"multiple": false,
|
|
4037
|
+
"type": "option"
|
|
4038
|
+
},
|
|
4039
|
+
"kind": {
|
|
4040
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
4041
|
+
"name": "kind",
|
|
4042
|
+
"hasDynamicHelp": false,
|
|
4043
|
+
"multiple": false,
|
|
4044
|
+
"type": "option"
|
|
4045
|
+
}
|
|
4046
|
+
},
|
|
4047
|
+
"hasDynamicHelp": false,
|
|
4048
|
+
"hiddenAliases": [],
|
|
4049
|
+
"id": "metrics:list",
|
|
4050
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4051
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4052
|
+
"pluginType": "core",
|
|
4053
|
+
"strict": true,
|
|
4054
|
+
"enableJsonFlag": true,
|
|
4055
|
+
"isESM": false,
|
|
4056
|
+
"relativePath": [
|
|
4057
|
+
"dist",
|
|
4058
|
+
"commands",
|
|
4059
|
+
"metrics",
|
|
4060
|
+
"list.js"
|
|
4061
|
+
]
|
|
4062
|
+
},
|
|
4063
|
+
"metrics:promote": {
|
|
4064
|
+
"aliases": [],
|
|
4065
|
+
"args": {
|
|
4066
|
+
"id": {
|
|
4067
|
+
"description": "Metric group id",
|
|
4068
|
+
"name": "id",
|
|
4069
|
+
"required": true
|
|
4070
|
+
}
|
|
4071
|
+
},
|
|
4072
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
4073
|
+
"examples": [
|
|
4074
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
4075
|
+
],
|
|
4076
|
+
"flags": {
|
|
4077
|
+
"json": {
|
|
4078
|
+
"description": "Format output as json.",
|
|
4079
|
+
"helpGroup": "GLOBAL",
|
|
4080
|
+
"name": "json",
|
|
4081
|
+
"allowNo": false,
|
|
4082
|
+
"type": "boolean"
|
|
4083
|
+
},
|
|
4084
|
+
"project": {
|
|
4085
|
+
"char": "p",
|
|
4086
|
+
"description": "Project id (UUID) or key",
|
|
4087
|
+
"name": "project",
|
|
4088
|
+
"required": true,
|
|
4089
|
+
"hasDynamicHelp": false,
|
|
4090
|
+
"multiple": false,
|
|
4091
|
+
"type": "option"
|
|
4092
|
+
}
|
|
4093
|
+
},
|
|
4094
|
+
"hasDynamicHelp": false,
|
|
4095
|
+
"hiddenAliases": [],
|
|
4096
|
+
"id": "metrics:promote",
|
|
4097
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4098
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4099
|
+
"pluginType": "core",
|
|
4100
|
+
"strict": true,
|
|
4101
|
+
"enableJsonFlag": true,
|
|
4102
|
+
"isESM": false,
|
|
4103
|
+
"relativePath": [
|
|
4104
|
+
"dist",
|
|
4105
|
+
"commands",
|
|
4106
|
+
"metrics",
|
|
4107
|
+
"promote.js"
|
|
4108
|
+
]
|
|
4109
|
+
},
|
|
4110
|
+
"metrics:show": {
|
|
4111
|
+
"aliases": [],
|
|
4112
|
+
"args": {
|
|
4113
|
+
"id": {
|
|
4114
|
+
"description": "Metric group id",
|
|
4115
|
+
"name": "id",
|
|
4116
|
+
"required": true
|
|
4117
|
+
}
|
|
4118
|
+
},
|
|
4119
|
+
"description": "Show a single metric group",
|
|
4120
|
+
"examples": [
|
|
4121
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
4122
|
+
],
|
|
4123
|
+
"flags": {
|
|
4124
|
+
"json": {
|
|
4125
|
+
"description": "Format output as json.",
|
|
4126
|
+
"helpGroup": "GLOBAL",
|
|
4127
|
+
"name": "json",
|
|
4128
|
+
"allowNo": false,
|
|
4129
|
+
"type": "boolean"
|
|
4130
|
+
},
|
|
4131
|
+
"project": {
|
|
4132
|
+
"char": "p",
|
|
4133
|
+
"description": "Project id (UUID) or key",
|
|
4134
|
+
"name": "project",
|
|
4135
|
+
"required": true,
|
|
3985
4136
|
"hasDynamicHelp": false,
|
|
3986
4137
|
"multiple": false,
|
|
3987
4138
|
"type": "option"
|
|
@@ -3989,7 +4140,7 @@
|
|
|
3989
4140
|
},
|
|
3990
4141
|
"hasDynamicHelp": false,
|
|
3991
4142
|
"hiddenAliases": [],
|
|
3992
|
-
"id": "
|
|
4143
|
+
"id": "metrics:show",
|
|
3993
4144
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3994
4145
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3995
4146
|
"pluginType": "core",
|
|
@@ -3999,8 +4150,8 @@
|
|
|
3999
4150
|
"relativePath": [
|
|
4000
4151
|
"dist",
|
|
4001
4152
|
"commands",
|
|
4002
|
-
"
|
|
4003
|
-
"
|
|
4153
|
+
"metrics",
|
|
4154
|
+
"show.js"
|
|
4004
4155
|
]
|
|
4005
4156
|
},
|
|
4006
4157
|
"milestones:create": {
|
|
@@ -4313,93 +4464,13 @@
|
|
|
4313
4464
|
"update.js"
|
|
4314
4465
|
]
|
|
4315
4466
|
},
|
|
4316
|
-
"
|
|
4317
|
-
"aliases": [],
|
|
4318
|
-
"args": {
|
|
4319
|
-
"code": {
|
|
4320
|
-
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
4321
|
-
"name": "code",
|
|
4322
|
-
"required": true
|
|
4323
|
-
}
|
|
4324
|
-
},
|
|
4325
|
-
"description": "Create a platform (a device/system your projects run on)",
|
|
4326
|
-
"examples": [
|
|
4327
|
-
"<%= config.bin %> platforms create ios --label iOS",
|
|
4328
|
-
"<%= config.bin %> platforms create android --label Android --color emerald --position 2",
|
|
4329
|
-
"<%= config.bin %> platforms create web --label Web --supports-uptime"
|
|
4330
|
-
],
|
|
4331
|
-
"flags": {
|
|
4332
|
-
"json": {
|
|
4333
|
-
"description": "Format output as json.",
|
|
4334
|
-
"helpGroup": "GLOBAL",
|
|
4335
|
-
"name": "json",
|
|
4336
|
-
"allowNo": false,
|
|
4337
|
-
"type": "boolean"
|
|
4338
|
-
},
|
|
4339
|
-
"label": {
|
|
4340
|
-
"description": "Human-readable label",
|
|
4341
|
-
"name": "label",
|
|
4342
|
-
"required": true,
|
|
4343
|
-
"hasDynamicHelp": false,
|
|
4344
|
-
"multiple": false,
|
|
4345
|
-
"type": "option"
|
|
4346
|
-
},
|
|
4347
|
-
"color": {
|
|
4348
|
-
"description": "Color label",
|
|
4349
|
-
"name": "color",
|
|
4350
|
-
"default": "sky",
|
|
4351
|
-
"hasDynamicHelp": false,
|
|
4352
|
-
"multiple": false,
|
|
4353
|
-
"type": "option"
|
|
4354
|
-
},
|
|
4355
|
-
"position": {
|
|
4356
|
-
"description": "Sort position",
|
|
4357
|
-
"name": "position",
|
|
4358
|
-
"hasDynamicHelp": false,
|
|
4359
|
-
"multiple": false,
|
|
4360
|
-
"type": "option"
|
|
4361
|
-
},
|
|
4362
|
-
"active": {
|
|
4363
|
-
"description": "Whether the platform is active",
|
|
4364
|
-
"name": "active",
|
|
4365
|
-
"allowNo": true,
|
|
4366
|
-
"type": "boolean"
|
|
4367
|
-
},
|
|
4368
|
-
"supports-uptime": {
|
|
4369
|
-
"description": "Whether projects declaring this platform can enable uptime monitoring",
|
|
4370
|
-
"name": "supports-uptime",
|
|
4371
|
-
"allowNo": true,
|
|
4372
|
-
"type": "boolean"
|
|
4373
|
-
}
|
|
4374
|
-
},
|
|
4375
|
-
"hasDynamicHelp": false,
|
|
4376
|
-
"hiddenAliases": [],
|
|
4377
|
-
"id": "platforms:create",
|
|
4378
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4379
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4380
|
-
"pluginType": "core",
|
|
4381
|
-
"strict": true,
|
|
4382
|
-
"enableJsonFlag": true,
|
|
4383
|
-
"isESM": false,
|
|
4384
|
-
"relativePath": [
|
|
4385
|
-
"dist",
|
|
4386
|
-
"commands",
|
|
4387
|
-
"platforms",
|
|
4388
|
-
"create.js"
|
|
4389
|
-
]
|
|
4390
|
-
},
|
|
4391
|
-
"platforms:delete": {
|
|
4467
|
+
"org:show": {
|
|
4392
4468
|
"aliases": [],
|
|
4393
|
-
"args": {
|
|
4394
|
-
|
|
4395
|
-
"description": "Platform id (UUID) or code",
|
|
4396
|
-
"name": "platform",
|
|
4397
|
-
"required": true
|
|
4398
|
-
}
|
|
4399
|
-
},
|
|
4400
|
-
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
4469
|
+
"args": {},
|
|
4470
|
+
"description": "Show your organization settings",
|
|
4401
4471
|
"examples": [
|
|
4402
|
-
"<%= config.bin %>
|
|
4472
|
+
"<%= config.bin %> org show",
|
|
4473
|
+
"<%= config.bin %> org show --json"
|
|
4403
4474
|
],
|
|
4404
4475
|
"flags": {
|
|
4405
4476
|
"json": {
|
|
@@ -4408,17 +4479,11 @@
|
|
|
4408
4479
|
"name": "json",
|
|
4409
4480
|
"allowNo": false,
|
|
4410
4481
|
"type": "boolean"
|
|
4411
|
-
},
|
|
4412
|
-
"confirm": {
|
|
4413
|
-
"description": "Required: confirm the deletion",
|
|
4414
|
-
"name": "confirm",
|
|
4415
|
-
"allowNo": false,
|
|
4416
|
-
"type": "boolean"
|
|
4417
4482
|
}
|
|
4418
4483
|
},
|
|
4419
4484
|
"hasDynamicHelp": false,
|
|
4420
4485
|
"hiddenAliases": [],
|
|
4421
|
-
"id": "
|
|
4486
|
+
"id": "org:show",
|
|
4422
4487
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4423
4488
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4424
4489
|
"pluginType": "core",
|
|
@@ -4428,17 +4493,19 @@
|
|
|
4428
4493
|
"relativePath": [
|
|
4429
4494
|
"dist",
|
|
4430
4495
|
"commands",
|
|
4431
|
-
"
|
|
4432
|
-
"
|
|
4496
|
+
"org",
|
|
4497
|
+
"show.js"
|
|
4433
4498
|
]
|
|
4434
4499
|
},
|
|
4435
|
-
"
|
|
4500
|
+
"org:update": {
|
|
4436
4501
|
"aliases": [],
|
|
4437
4502
|
"args": {},
|
|
4438
|
-
"description": "
|
|
4503
|
+
"description": "Update your organization settings (requires organization.manage)",
|
|
4439
4504
|
"examples": [
|
|
4440
|
-
"<%= config.bin %>
|
|
4441
|
-
"<%= config.bin %>
|
|
4505
|
+
"<%= config.bin %> org update --name \"Acme Inc\"",
|
|
4506
|
+
"<%= config.bin %> org update --slug acme-inc",
|
|
4507
|
+
"<%= config.bin %> org update --projects-view table",
|
|
4508
|
+
"<%= config.bin %> org update --logs-retention-days 30 --analytics-retention-days 365"
|
|
4442
4509
|
],
|
|
4443
4510
|
"flags": {
|
|
4444
4511
|
"json": {
|
|
@@ -4448,10 +4515,41 @@
|
|
|
4448
4515
|
"allowNo": false,
|
|
4449
4516
|
"type": "boolean"
|
|
4450
4517
|
},
|
|
4451
|
-
"
|
|
4452
|
-
"description": "
|
|
4453
|
-
"name": "
|
|
4454
|
-
"
|
|
4518
|
+
"name": {
|
|
4519
|
+
"description": "New organization name",
|
|
4520
|
+
"name": "name",
|
|
4521
|
+
"hasDynamicHelp": false,
|
|
4522
|
+
"multiple": false,
|
|
4523
|
+
"type": "option"
|
|
4524
|
+
},
|
|
4525
|
+
"slug": {
|
|
4526
|
+
"description": "New organization slug (lowercase, a-z 0-9 and hyphens)",
|
|
4527
|
+
"name": "slug",
|
|
4528
|
+
"hasDynamicHelp": false,
|
|
4529
|
+
"multiple": false,
|
|
4530
|
+
"type": "option"
|
|
4531
|
+
},
|
|
4532
|
+
"projects-view": {
|
|
4533
|
+
"description": "Default projects list view",
|
|
4534
|
+
"name": "projects-view",
|
|
4535
|
+
"hasDynamicHelp": false,
|
|
4536
|
+
"multiple": false,
|
|
4537
|
+
"options": [
|
|
4538
|
+
"cards",
|
|
4539
|
+
"table"
|
|
4540
|
+
],
|
|
4541
|
+
"type": "option"
|
|
4542
|
+
},
|
|
4543
|
+
"logs-retention-days": {
|
|
4544
|
+
"description": "Org-level log retention in days (blank inherits the god default)",
|
|
4545
|
+
"name": "logs-retention-days",
|
|
4546
|
+
"hasDynamicHelp": false,
|
|
4547
|
+
"multiple": false,
|
|
4548
|
+
"type": "option"
|
|
4549
|
+
},
|
|
4550
|
+
"analytics-retention-days": {
|
|
4551
|
+
"description": "Org-level analytics retention in days (blank inherits the god default)",
|
|
4552
|
+
"name": "analytics-retention-days",
|
|
4455
4553
|
"hasDynamicHelp": false,
|
|
4456
4554
|
"multiple": false,
|
|
4457
4555
|
"type": "option"
|
|
@@ -4459,7 +4557,7 @@
|
|
|
4459
4557
|
},
|
|
4460
4558
|
"hasDynamicHelp": false,
|
|
4461
4559
|
"hiddenAliases": [],
|
|
4462
|
-
"id": "
|
|
4560
|
+
"id": "org:update",
|
|
4463
4561
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4464
4562
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4465
4563
|
"pluginType": "core",
|
|
@@ -4469,25 +4567,24 @@
|
|
|
4469
4567
|
"relativePath": [
|
|
4470
4568
|
"dist",
|
|
4471
4569
|
"commands",
|
|
4472
|
-
"
|
|
4473
|
-
"
|
|
4570
|
+
"org",
|
|
4571
|
+
"update.js"
|
|
4474
4572
|
]
|
|
4475
4573
|
},
|
|
4476
|
-
"platforms:
|
|
4574
|
+
"platforms:create": {
|
|
4477
4575
|
"aliases": [],
|
|
4478
4576
|
"args": {
|
|
4479
|
-
"
|
|
4480
|
-
"description": "Platform
|
|
4481
|
-
"name": "
|
|
4577
|
+
"code": {
|
|
4578
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
4579
|
+
"name": "code",
|
|
4482
4580
|
"required": true
|
|
4483
4581
|
}
|
|
4484
4582
|
},
|
|
4485
|
-
"description": "
|
|
4583
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
4486
4584
|
"examples": [
|
|
4487
|
-
"<%= config.bin %> platforms
|
|
4488
|
-
"<%= config.bin %> platforms
|
|
4489
|
-
"<%= config.bin %> platforms
|
|
4490
|
-
"<%= config.bin %> platforms update web --supports-uptime"
|
|
4585
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
4586
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2",
|
|
4587
|
+
"<%= config.bin %> platforms create web --label Web --supports-uptime"
|
|
4491
4588
|
],
|
|
4492
4589
|
"flags": {
|
|
4493
4590
|
"json": {
|
|
@@ -4497,16 +4594,10 @@
|
|
|
4497
4594
|
"allowNo": false,
|
|
4498
4595
|
"type": "boolean"
|
|
4499
4596
|
},
|
|
4500
|
-
"code": {
|
|
4501
|
-
"description": "New code",
|
|
4502
|
-
"name": "code",
|
|
4503
|
-
"hasDynamicHelp": false,
|
|
4504
|
-
"multiple": false,
|
|
4505
|
-
"type": "option"
|
|
4506
|
-
},
|
|
4507
4597
|
"label": {
|
|
4508
|
-
"description": "
|
|
4598
|
+
"description": "Human-readable label",
|
|
4509
4599
|
"name": "label",
|
|
4600
|
+
"required": true,
|
|
4510
4601
|
"hasDynamicHelp": false,
|
|
4511
4602
|
"multiple": false,
|
|
4512
4603
|
"type": "option"
|
|
@@ -4514,6 +4605,7 @@
|
|
|
4514
4605
|
"color": {
|
|
4515
4606
|
"description": "Color label",
|
|
4516
4607
|
"name": "color",
|
|
4608
|
+
"default": "sky",
|
|
4517
4609
|
"hasDynamicHelp": false,
|
|
4518
4610
|
"multiple": false,
|
|
4519
4611
|
"type": "option"
|
|
@@ -4521,59 +4613,26 @@
|
|
|
4521
4613
|
"position": {
|
|
4522
4614
|
"description": "Sort position",
|
|
4523
4615
|
"name": "position",
|
|
4524
|
-
"hasDynamicHelp": false,
|
|
4525
|
-
"multiple": false,
|
|
4526
|
-
"type": "option"
|
|
4527
|
-
},
|
|
4528
|
-
"active": {
|
|
4529
|
-
"description": "Whether the platform is active",
|
|
4530
|
-
"name": "active",
|
|
4531
|
-
"allowNo": true,
|
|
4532
|
-
"type": "boolean"
|
|
4533
|
-
},
|
|
4534
|
-
"supports-uptime": {
|
|
4535
|
-
"description": "Whether projects declaring this platform can enable uptime monitoring",
|
|
4536
|
-
"name": "supports-uptime",
|
|
4537
|
-
"allowNo": true,
|
|
4538
|
-
"type": "boolean"
|
|
4539
|
-
}
|
|
4540
|
-
},
|
|
4541
|
-
"hasDynamicHelp": false,
|
|
4542
|
-
"hiddenAliases": [],
|
|
4543
|
-
"id": "platforms:update",
|
|
4544
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4545
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4546
|
-
"pluginType": "core",
|
|
4547
|
-
"strict": true,
|
|
4548
|
-
"enableJsonFlag": true,
|
|
4549
|
-
"isESM": false,
|
|
4550
|
-
"relativePath": [
|
|
4551
|
-
"dist",
|
|
4552
|
-
"commands",
|
|
4553
|
-
"platforms",
|
|
4554
|
-
"update.js"
|
|
4555
|
-
]
|
|
4556
|
-
},
|
|
4557
|
-
"org:show": {
|
|
4558
|
-
"aliases": [],
|
|
4559
|
-
"args": {},
|
|
4560
|
-
"description": "Show your organization settings",
|
|
4561
|
-
"examples": [
|
|
4562
|
-
"<%= config.bin %> org show",
|
|
4563
|
-
"<%= config.bin %> org show --json"
|
|
4564
|
-
],
|
|
4565
|
-
"flags": {
|
|
4566
|
-
"json": {
|
|
4567
|
-
"description": "Format output as json.",
|
|
4568
|
-
"helpGroup": "GLOBAL",
|
|
4569
|
-
"name": "json",
|
|
4570
|
-
"allowNo": false,
|
|
4616
|
+
"hasDynamicHelp": false,
|
|
4617
|
+
"multiple": false,
|
|
4618
|
+
"type": "option"
|
|
4619
|
+
},
|
|
4620
|
+
"active": {
|
|
4621
|
+
"description": "Whether the platform is active",
|
|
4622
|
+
"name": "active",
|
|
4623
|
+
"allowNo": true,
|
|
4624
|
+
"type": "boolean"
|
|
4625
|
+
},
|
|
4626
|
+
"supports-uptime": {
|
|
4627
|
+
"description": "Whether projects declaring this platform can enable uptime monitoring",
|
|
4628
|
+
"name": "supports-uptime",
|
|
4629
|
+
"allowNo": true,
|
|
4571
4630
|
"type": "boolean"
|
|
4572
4631
|
}
|
|
4573
4632
|
},
|
|
4574
4633
|
"hasDynamicHelp": false,
|
|
4575
4634
|
"hiddenAliases": [],
|
|
4576
|
-
"id": "
|
|
4635
|
+
"id": "platforms:create",
|
|
4577
4636
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4578
4637
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4579
4638
|
"pluginType": "core",
|
|
@@ -4583,19 +4642,22 @@
|
|
|
4583
4642
|
"relativePath": [
|
|
4584
4643
|
"dist",
|
|
4585
4644
|
"commands",
|
|
4586
|
-
"
|
|
4587
|
-
"
|
|
4645
|
+
"platforms",
|
|
4646
|
+
"create.js"
|
|
4588
4647
|
]
|
|
4589
4648
|
},
|
|
4590
|
-
"
|
|
4649
|
+
"platforms:delete": {
|
|
4591
4650
|
"aliases": [],
|
|
4592
|
-
"args": {
|
|
4593
|
-
|
|
4651
|
+
"args": {
|
|
4652
|
+
"platform": {
|
|
4653
|
+
"description": "Platform id (UUID) or code",
|
|
4654
|
+
"name": "platform",
|
|
4655
|
+
"required": true
|
|
4656
|
+
}
|
|
4657
|
+
},
|
|
4658
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
4594
4659
|
"examples": [
|
|
4595
|
-
"<%= config.bin %>
|
|
4596
|
-
"<%= config.bin %> org update --slug acme-inc",
|
|
4597
|
-
"<%= config.bin %> org update --projects-view table",
|
|
4598
|
-
"<%= config.bin %> org update --logs-retention-days 30 --analytics-retention-days 365"
|
|
4660
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
4599
4661
|
],
|
|
4600
4662
|
"flags": {
|
|
4601
4663
|
"json": {
|
|
@@ -4605,49 +4667,16 @@
|
|
|
4605
4667
|
"allowNo": false,
|
|
4606
4668
|
"type": "boolean"
|
|
4607
4669
|
},
|
|
4608
|
-
"
|
|
4609
|
-
"description": "
|
|
4610
|
-
"name": "
|
|
4611
|
-
"
|
|
4612
|
-
"
|
|
4613
|
-
"type": "option"
|
|
4614
|
-
},
|
|
4615
|
-
"slug": {
|
|
4616
|
-
"description": "New organization slug (lowercase, a-z 0-9 and hyphens)",
|
|
4617
|
-
"name": "slug",
|
|
4618
|
-
"hasDynamicHelp": false,
|
|
4619
|
-
"multiple": false,
|
|
4620
|
-
"type": "option"
|
|
4621
|
-
},
|
|
4622
|
-
"projects-view": {
|
|
4623
|
-
"description": "Default projects list view",
|
|
4624
|
-
"name": "projects-view",
|
|
4625
|
-
"hasDynamicHelp": false,
|
|
4626
|
-
"multiple": false,
|
|
4627
|
-
"options": [
|
|
4628
|
-
"cards",
|
|
4629
|
-
"table"
|
|
4630
|
-
],
|
|
4631
|
-
"type": "option"
|
|
4632
|
-
},
|
|
4633
|
-
"logs-retention-days": {
|
|
4634
|
-
"description": "Org-level log retention in days (blank inherits the god default)",
|
|
4635
|
-
"name": "logs-retention-days",
|
|
4636
|
-
"hasDynamicHelp": false,
|
|
4637
|
-
"multiple": false,
|
|
4638
|
-
"type": "option"
|
|
4639
|
-
},
|
|
4640
|
-
"analytics-retention-days": {
|
|
4641
|
-
"description": "Org-level analytics retention in days (blank inherits the god default)",
|
|
4642
|
-
"name": "analytics-retention-days",
|
|
4643
|
-
"hasDynamicHelp": false,
|
|
4644
|
-
"multiple": false,
|
|
4645
|
-
"type": "option"
|
|
4670
|
+
"confirm": {
|
|
4671
|
+
"description": "Required: confirm the deletion",
|
|
4672
|
+
"name": "confirm",
|
|
4673
|
+
"allowNo": false,
|
|
4674
|
+
"type": "boolean"
|
|
4646
4675
|
}
|
|
4647
4676
|
},
|
|
4648
4677
|
"hasDynamicHelp": false,
|
|
4649
4678
|
"hiddenAliases": [],
|
|
4650
|
-
"id": "
|
|
4679
|
+
"id": "platforms:delete",
|
|
4651
4680
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4652
4681
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4653
4682
|
"pluginType": "core",
|
|
@@ -4657,17 +4686,17 @@
|
|
|
4657
4686
|
"relativePath": [
|
|
4658
4687
|
"dist",
|
|
4659
4688
|
"commands",
|
|
4660
|
-
"
|
|
4661
|
-
"
|
|
4689
|
+
"platforms",
|
|
4690
|
+
"delete.js"
|
|
4662
4691
|
]
|
|
4663
4692
|
},
|
|
4664
|
-
"
|
|
4693
|
+
"platforms:list": {
|
|
4665
4694
|
"aliases": [],
|
|
4666
4695
|
"args": {},
|
|
4667
|
-
"description": "List
|
|
4696
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
4668
4697
|
"examples": [
|
|
4669
|
-
"<%= config.bin %>
|
|
4670
|
-
"<%= config.bin %>
|
|
4698
|
+
"<%= config.bin %> platforms list",
|
|
4699
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
4671
4700
|
],
|
|
4672
4701
|
"flags": {
|
|
4673
4702
|
"json": {
|
|
@@ -4677,15 +4706,6 @@
|
|
|
4677
4706
|
"allowNo": false,
|
|
4678
4707
|
"type": "boolean"
|
|
4679
4708
|
},
|
|
4680
|
-
"project": {
|
|
4681
|
-
"char": "p",
|
|
4682
|
-
"description": "Project id (UUID) or key",
|
|
4683
|
-
"name": "project",
|
|
4684
|
-
"required": true,
|
|
4685
|
-
"hasDynamicHelp": false,
|
|
4686
|
-
"multiple": false,
|
|
4687
|
-
"type": "option"
|
|
4688
|
-
},
|
|
4689
4709
|
"page": {
|
|
4690
4710
|
"description": "Page number",
|
|
4691
4711
|
"name": "page",
|
|
@@ -4693,18 +4713,11 @@
|
|
|
4693
4713
|
"hasDynamicHelp": false,
|
|
4694
4714
|
"multiple": false,
|
|
4695
4715
|
"type": "option"
|
|
4696
|
-
},
|
|
4697
|
-
"kind": {
|
|
4698
|
-
"description": "Filter by metric kind (e.g. sql, method)",
|
|
4699
|
-
"name": "kind",
|
|
4700
|
-
"hasDynamicHelp": false,
|
|
4701
|
-
"multiple": false,
|
|
4702
|
-
"type": "option"
|
|
4703
4716
|
}
|
|
4704
4717
|
},
|
|
4705
4718
|
"hasDynamicHelp": false,
|
|
4706
4719
|
"hiddenAliases": [],
|
|
4707
|
-
"id": "
|
|
4720
|
+
"id": "platforms:list",
|
|
4708
4721
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4709
4722
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4710
4723
|
"pluginType": "core",
|
|
@@ -4714,22 +4727,25 @@
|
|
|
4714
4727
|
"relativePath": [
|
|
4715
4728
|
"dist",
|
|
4716
4729
|
"commands",
|
|
4717
|
-
"
|
|
4730
|
+
"platforms",
|
|
4718
4731
|
"list.js"
|
|
4719
4732
|
]
|
|
4720
4733
|
},
|
|
4721
|
-
"
|
|
4734
|
+
"platforms:update": {
|
|
4722
4735
|
"aliases": [],
|
|
4723
4736
|
"args": {
|
|
4724
|
-
"
|
|
4725
|
-
"description": "
|
|
4726
|
-
"name": "
|
|
4737
|
+
"platform": {
|
|
4738
|
+
"description": "Platform id (UUID) or code",
|
|
4739
|
+
"name": "platform",
|
|
4727
4740
|
"required": true
|
|
4728
4741
|
}
|
|
4729
4742
|
},
|
|
4730
|
-
"description": "
|
|
4743
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate, toggle uptime support)",
|
|
4731
4744
|
"examples": [
|
|
4732
|
-
"<%= config.bin %>
|
|
4745
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
4746
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
4747
|
+
"<%= config.bin %> platforms update legacy --no-active",
|
|
4748
|
+
"<%= config.bin %> platforms update web --supports-uptime"
|
|
4733
4749
|
],
|
|
4734
4750
|
"flags": {
|
|
4735
4751
|
"json": {
|
|
@@ -4739,19 +4755,50 @@
|
|
|
4739
4755
|
"allowNo": false,
|
|
4740
4756
|
"type": "boolean"
|
|
4741
4757
|
},
|
|
4742
|
-
"
|
|
4743
|
-
"
|
|
4744
|
-
"
|
|
4745
|
-
"
|
|
4746
|
-
"
|
|
4758
|
+
"code": {
|
|
4759
|
+
"description": "New code",
|
|
4760
|
+
"name": "code",
|
|
4761
|
+
"hasDynamicHelp": false,
|
|
4762
|
+
"multiple": false,
|
|
4763
|
+
"type": "option"
|
|
4764
|
+
},
|
|
4765
|
+
"label": {
|
|
4766
|
+
"description": "New label",
|
|
4767
|
+
"name": "label",
|
|
4747
4768
|
"hasDynamicHelp": false,
|
|
4748
4769
|
"multiple": false,
|
|
4749
4770
|
"type": "option"
|
|
4771
|
+
},
|
|
4772
|
+
"color": {
|
|
4773
|
+
"description": "Color label",
|
|
4774
|
+
"name": "color",
|
|
4775
|
+
"hasDynamicHelp": false,
|
|
4776
|
+
"multiple": false,
|
|
4777
|
+
"type": "option"
|
|
4778
|
+
},
|
|
4779
|
+
"position": {
|
|
4780
|
+
"description": "Sort position",
|
|
4781
|
+
"name": "position",
|
|
4782
|
+
"hasDynamicHelp": false,
|
|
4783
|
+
"multiple": false,
|
|
4784
|
+
"type": "option"
|
|
4785
|
+
},
|
|
4786
|
+
"active": {
|
|
4787
|
+
"description": "Whether the platform is active",
|
|
4788
|
+
"name": "active",
|
|
4789
|
+
"allowNo": true,
|
|
4790
|
+
"type": "boolean"
|
|
4791
|
+
},
|
|
4792
|
+
"supports-uptime": {
|
|
4793
|
+
"description": "Whether projects declaring this platform can enable uptime monitoring",
|
|
4794
|
+
"name": "supports-uptime",
|
|
4795
|
+
"allowNo": true,
|
|
4796
|
+
"type": "boolean"
|
|
4750
4797
|
}
|
|
4751
4798
|
},
|
|
4752
4799
|
"hasDynamicHelp": false,
|
|
4753
4800
|
"hiddenAliases": [],
|
|
4754
|
-
"id": "
|
|
4801
|
+
"id": "platforms:update",
|
|
4755
4802
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4756
4803
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4757
4804
|
"pluginType": "core",
|
|
@@ -4761,22 +4808,17 @@
|
|
|
4761
4808
|
"relativePath": [
|
|
4762
4809
|
"dist",
|
|
4763
4810
|
"commands",
|
|
4764
|
-
"
|
|
4765
|
-
"
|
|
4811
|
+
"platforms",
|
|
4812
|
+
"update.js"
|
|
4766
4813
|
]
|
|
4767
4814
|
},
|
|
4768
|
-
"
|
|
4815
|
+
"releases:list": {
|
|
4769
4816
|
"aliases": [],
|
|
4770
|
-
"args": {
|
|
4771
|
-
|
|
4772
|
-
"description": "Metric group id",
|
|
4773
|
-
"name": "id",
|
|
4774
|
-
"required": true
|
|
4775
|
-
}
|
|
4776
|
-
},
|
|
4777
|
-
"description": "Show a single metric group",
|
|
4817
|
+
"args": {},
|
|
4818
|
+
"description": "List the releases of a project (tracked from CI)",
|
|
4778
4819
|
"examples": [
|
|
4779
|
-
"<%= config.bin %>
|
|
4820
|
+
"<%= config.bin %> releases list --project acme-api",
|
|
4821
|
+
"<%= config.bin %> releases list -p acme-api --page 2 --json"
|
|
4780
4822
|
],
|
|
4781
4823
|
"flags": {
|
|
4782
4824
|
"json": {
|
|
@@ -4794,11 +4836,19 @@
|
|
|
4794
4836
|
"hasDynamicHelp": false,
|
|
4795
4837
|
"multiple": false,
|
|
4796
4838
|
"type": "option"
|
|
4839
|
+
},
|
|
4840
|
+
"page": {
|
|
4841
|
+
"description": "Page number",
|
|
4842
|
+
"name": "page",
|
|
4843
|
+
"default": 1,
|
|
4844
|
+
"hasDynamicHelp": false,
|
|
4845
|
+
"multiple": false,
|
|
4846
|
+
"type": "option"
|
|
4797
4847
|
}
|
|
4798
4848
|
},
|
|
4799
4849
|
"hasDynamicHelp": false,
|
|
4800
4850
|
"hiddenAliases": [],
|
|
4801
|
-
"id": "
|
|
4851
|
+
"id": "releases:list",
|
|
4802
4852
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4803
4853
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4804
4854
|
"pluginType": "core",
|
|
@@ -4808,8 +4858,8 @@
|
|
|
4808
4858
|
"relativePath": [
|
|
4809
4859
|
"dist",
|
|
4810
4860
|
"commands",
|
|
4811
|
-
"
|
|
4812
|
-
"
|
|
4861
|
+
"releases",
|
|
4862
|
+
"list.js"
|
|
4813
4863
|
]
|
|
4814
4864
|
},
|
|
4815
4865
|
"monitors:create": {
|
|
@@ -5338,57 +5388,7 @@
|
|
|
5338
5388
|
},
|
|
5339
5389
|
"group-id": {
|
|
5340
5390
|
"description": "Uptime group id to attach the monitor to (org-level)",
|
|
5341
|
-
"name": "group-id",
|
|
5342
|
-
"hasDynamicHelp": false,
|
|
5343
|
-
"multiple": false,
|
|
5344
|
-
"type": "option"
|
|
5345
|
-
}
|
|
5346
|
-
},
|
|
5347
|
-
"hasDynamicHelp": false,
|
|
5348
|
-
"hiddenAliases": [],
|
|
5349
|
-
"id": "monitors:update",
|
|
5350
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5351
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5352
|
-
"pluginType": "core",
|
|
5353
|
-
"strict": true,
|
|
5354
|
-
"enableJsonFlag": true,
|
|
5355
|
-
"isESM": false,
|
|
5356
|
-
"relativePath": [
|
|
5357
|
-
"dist",
|
|
5358
|
-
"commands",
|
|
5359
|
-
"monitors",
|
|
5360
|
-
"update.js"
|
|
5361
|
-
]
|
|
5362
|
-
},
|
|
5363
|
-
"releases:list": {
|
|
5364
|
-
"aliases": [],
|
|
5365
|
-
"args": {},
|
|
5366
|
-
"description": "List the releases of a project (tracked from CI)",
|
|
5367
|
-
"examples": [
|
|
5368
|
-
"<%= config.bin %> releases list --project acme-api",
|
|
5369
|
-
"<%= config.bin %> releases list -p acme-api --page 2 --json"
|
|
5370
|
-
],
|
|
5371
|
-
"flags": {
|
|
5372
|
-
"json": {
|
|
5373
|
-
"description": "Format output as json.",
|
|
5374
|
-
"helpGroup": "GLOBAL",
|
|
5375
|
-
"name": "json",
|
|
5376
|
-
"allowNo": false,
|
|
5377
|
-
"type": "boolean"
|
|
5378
|
-
},
|
|
5379
|
-
"project": {
|
|
5380
|
-
"char": "p",
|
|
5381
|
-
"description": "Project id (UUID) or key",
|
|
5382
|
-
"name": "project",
|
|
5383
|
-
"required": true,
|
|
5384
|
-
"hasDynamicHelp": false,
|
|
5385
|
-
"multiple": false,
|
|
5386
|
-
"type": "option"
|
|
5387
|
-
},
|
|
5388
|
-
"page": {
|
|
5389
|
-
"description": "Page number",
|
|
5390
|
-
"name": "page",
|
|
5391
|
-
"default": 1,
|
|
5391
|
+
"name": "group-id",
|
|
5392
5392
|
"hasDynamicHelp": false,
|
|
5393
5393
|
"multiple": false,
|
|
5394
5394
|
"type": "option"
|
|
@@ -5396,7 +5396,7 @@
|
|
|
5396
5396
|
},
|
|
5397
5397
|
"hasDynamicHelp": false,
|
|
5398
5398
|
"hiddenAliases": [],
|
|
5399
|
-
"id": "
|
|
5399
|
+
"id": "monitors:update",
|
|
5400
5400
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5401
5401
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5402
5402
|
"pluginType": "core",
|
|
@@ -5406,8 +5406,8 @@
|
|
|
5406
5406
|
"relativePath": [
|
|
5407
5407
|
"dist",
|
|
5408
5408
|
"commands",
|
|
5409
|
-
"
|
|
5410
|
-
"
|
|
5409
|
+
"monitors",
|
|
5410
|
+
"update.js"
|
|
5411
5411
|
]
|
|
5412
5412
|
},
|
|
5413
5413
|
"projects:create": {
|
|
@@ -5541,6 +5541,95 @@
|
|
|
5541
5541
|
"delete.js"
|
|
5542
5542
|
]
|
|
5543
5543
|
},
|
|
5544
|
+
"projects:github-connect": {
|
|
5545
|
+
"aliases": [],
|
|
5546
|
+
"args": {},
|
|
5547
|
+
"description": "Connect a project to a repository available to the organization GitHub App",
|
|
5548
|
+
"examples": [
|
|
5549
|
+
"<%= config.bin %> projects github-connect -p CYAG --repository bussolabs/closeyourit-agent"
|
|
5550
|
+
],
|
|
5551
|
+
"flags": {
|
|
5552
|
+
"json": {
|
|
5553
|
+
"description": "Format output as json.",
|
|
5554
|
+
"helpGroup": "GLOBAL",
|
|
5555
|
+
"name": "json",
|
|
5556
|
+
"allowNo": false,
|
|
5557
|
+
"type": "boolean"
|
|
5558
|
+
},
|
|
5559
|
+
"project": {
|
|
5560
|
+
"char": "p",
|
|
5561
|
+
"description": "Project id (UUID) or key",
|
|
5562
|
+
"name": "project",
|
|
5563
|
+
"required": true,
|
|
5564
|
+
"hasDynamicHelp": false,
|
|
5565
|
+
"multiple": false,
|
|
5566
|
+
"type": "option"
|
|
5567
|
+
},
|
|
5568
|
+
"repository": {
|
|
5569
|
+
"description": "GitHub repository as owner/name",
|
|
5570
|
+
"name": "repository",
|
|
5571
|
+
"required": true,
|
|
5572
|
+
"hasDynamicHelp": false,
|
|
5573
|
+
"multiple": false,
|
|
5574
|
+
"type": "option"
|
|
5575
|
+
}
|
|
5576
|
+
},
|
|
5577
|
+
"hasDynamicHelp": false,
|
|
5578
|
+
"hiddenAliases": [],
|
|
5579
|
+
"id": "projects:github-connect",
|
|
5580
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5581
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5582
|
+
"pluginType": "core",
|
|
5583
|
+
"strict": true,
|
|
5584
|
+
"enableJsonFlag": true,
|
|
5585
|
+
"isESM": false,
|
|
5586
|
+
"relativePath": [
|
|
5587
|
+
"dist",
|
|
5588
|
+
"commands",
|
|
5589
|
+
"projects",
|
|
5590
|
+
"github-connect.js"
|
|
5591
|
+
]
|
|
5592
|
+
},
|
|
5593
|
+
"projects:github-map": {
|
|
5594
|
+
"aliases": [],
|
|
5595
|
+
"args": {},
|
|
5596
|
+
"description": "List the project → GitHub repository mapping for local automation",
|
|
5597
|
+
"examples": [
|
|
5598
|
+
"<%= config.bin %> projects github-map",
|
|
5599
|
+
"<%= config.bin %> projects github-map --connected-only",
|
|
5600
|
+
"<%= config.bin %> projects github-map --connected-only --json"
|
|
5601
|
+
],
|
|
5602
|
+
"flags": {
|
|
5603
|
+
"json": {
|
|
5604
|
+
"description": "Format output as json.",
|
|
5605
|
+
"helpGroup": "GLOBAL",
|
|
5606
|
+
"name": "json",
|
|
5607
|
+
"allowNo": false,
|
|
5608
|
+
"type": "boolean"
|
|
5609
|
+
},
|
|
5610
|
+
"connected-only": {
|
|
5611
|
+
"description": "Show only projects connected to a GitHub repository",
|
|
5612
|
+
"name": "connected-only",
|
|
5613
|
+
"allowNo": false,
|
|
5614
|
+
"type": "boolean"
|
|
5615
|
+
}
|
|
5616
|
+
},
|
|
5617
|
+
"hasDynamicHelp": false,
|
|
5618
|
+
"hiddenAliases": [],
|
|
5619
|
+
"id": "projects:github-map",
|
|
5620
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5621
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5622
|
+
"pluginType": "core",
|
|
5623
|
+
"strict": true,
|
|
5624
|
+
"enableJsonFlag": true,
|
|
5625
|
+
"isESM": false,
|
|
5626
|
+
"relativePath": [
|
|
5627
|
+
"dist",
|
|
5628
|
+
"commands",
|
|
5629
|
+
"projects",
|
|
5630
|
+
"github-map.js"
|
|
5631
|
+
]
|
|
5632
|
+
},
|
|
5544
5633
|
"projects:github-update": {
|
|
5545
5634
|
"aliases": [],
|
|
5546
5635
|
"args": {},
|
|
@@ -10250,18 +10339,199 @@
|
|
|
10250
10339
|
"show.js"
|
|
10251
10340
|
]
|
|
10252
10341
|
},
|
|
10253
|
-
"uptime-groups:unpublish": {
|
|
10342
|
+
"uptime-groups:unpublish": {
|
|
10343
|
+
"aliases": [],
|
|
10344
|
+
"args": {
|
|
10345
|
+
"id": {
|
|
10346
|
+
"description": "Uptime group id",
|
|
10347
|
+
"name": "id",
|
|
10348
|
+
"required": true
|
|
10349
|
+
}
|
|
10350
|
+
},
|
|
10351
|
+
"description": "Unpublish (retract) the public status page for an uptime group",
|
|
10352
|
+
"examples": [
|
|
10353
|
+
"<%= config.bin %> uptime-groups unpublish <group-id>"
|
|
10354
|
+
],
|
|
10355
|
+
"flags": {
|
|
10356
|
+
"json": {
|
|
10357
|
+
"description": "Format output as json.",
|
|
10358
|
+
"helpGroup": "GLOBAL",
|
|
10359
|
+
"name": "json",
|
|
10360
|
+
"allowNo": false,
|
|
10361
|
+
"type": "boolean"
|
|
10362
|
+
}
|
|
10363
|
+
},
|
|
10364
|
+
"hasDynamicHelp": false,
|
|
10365
|
+
"hiddenAliases": [],
|
|
10366
|
+
"id": "uptime-groups:unpublish",
|
|
10367
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10368
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10369
|
+
"pluginType": "core",
|
|
10370
|
+
"strict": true,
|
|
10371
|
+
"enableJsonFlag": true,
|
|
10372
|
+
"isESM": false,
|
|
10373
|
+
"relativePath": [
|
|
10374
|
+
"dist",
|
|
10375
|
+
"commands",
|
|
10376
|
+
"uptime-groups",
|
|
10377
|
+
"unpublish.js"
|
|
10378
|
+
]
|
|
10379
|
+
},
|
|
10380
|
+
"uptime-groups:update": {
|
|
10381
|
+
"aliases": [],
|
|
10382
|
+
"args": {
|
|
10383
|
+
"id": {
|
|
10384
|
+
"description": "Uptime group id",
|
|
10385
|
+
"name": "id",
|
|
10386
|
+
"required": true
|
|
10387
|
+
}
|
|
10388
|
+
},
|
|
10389
|
+
"description": "Update an uptime monitor group (only the provided fields)",
|
|
10390
|
+
"examples": [
|
|
10391
|
+
"<%= config.bin %> uptime-groups update <group-id> --name \"New name\" --color emerald"
|
|
10392
|
+
],
|
|
10393
|
+
"flags": {
|
|
10394
|
+
"json": {
|
|
10395
|
+
"description": "Format output as json.",
|
|
10396
|
+
"helpGroup": "GLOBAL",
|
|
10397
|
+
"name": "json",
|
|
10398
|
+
"allowNo": false,
|
|
10399
|
+
"type": "boolean"
|
|
10400
|
+
},
|
|
10401
|
+
"name": {
|
|
10402
|
+
"description": "Group name",
|
|
10403
|
+
"name": "name",
|
|
10404
|
+
"hasDynamicHelp": false,
|
|
10405
|
+
"multiple": false,
|
|
10406
|
+
"type": "option"
|
|
10407
|
+
},
|
|
10408
|
+
"color": {
|
|
10409
|
+
"description": "Accent color (Tailwind palette name)",
|
|
10410
|
+
"name": "color",
|
|
10411
|
+
"hasDynamicHelp": false,
|
|
10412
|
+
"multiple": false,
|
|
10413
|
+
"type": "option"
|
|
10414
|
+
},
|
|
10415
|
+
"icon": {
|
|
10416
|
+
"description": "Icon name",
|
|
10417
|
+
"name": "icon",
|
|
10418
|
+
"hasDynamicHelp": false,
|
|
10419
|
+
"multiple": false,
|
|
10420
|
+
"type": "option"
|
|
10421
|
+
},
|
|
10422
|
+
"description": {
|
|
10423
|
+
"description": "Group description",
|
|
10424
|
+
"name": "description",
|
|
10425
|
+
"hasDynamicHelp": false,
|
|
10426
|
+
"multiple": false,
|
|
10427
|
+
"type": "option"
|
|
10428
|
+
}
|
|
10429
|
+
},
|
|
10430
|
+
"hasDynamicHelp": false,
|
|
10431
|
+
"hiddenAliases": [],
|
|
10432
|
+
"id": "uptime-groups:update",
|
|
10433
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10434
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10435
|
+
"pluginType": "core",
|
|
10436
|
+
"strict": true,
|
|
10437
|
+
"enableJsonFlag": true,
|
|
10438
|
+
"isESM": false,
|
|
10439
|
+
"relativePath": [
|
|
10440
|
+
"dist",
|
|
10441
|
+
"commands",
|
|
10442
|
+
"uptime-groups",
|
|
10443
|
+
"update.js"
|
|
10444
|
+
]
|
|
10445
|
+
},
|
|
10446
|
+
"analytics:goals:create": {
|
|
10447
|
+
"aliases": [],
|
|
10448
|
+
"args": {},
|
|
10449
|
+
"description": "Create a conversion goal on a project",
|
|
10450
|
+
"examples": [
|
|
10451
|
+
"<%= config.bin %> analytics goals create -p acme-web --kind custom_event --display-name Signup --event-name signup",
|
|
10452
|
+
"<%= config.bin %> analytics goals create -p acme-web --kind pageview_path --display-name Pricing --path-pattern \"/pricing\""
|
|
10453
|
+
],
|
|
10454
|
+
"flags": {
|
|
10455
|
+
"json": {
|
|
10456
|
+
"description": "Format output as json.",
|
|
10457
|
+
"helpGroup": "GLOBAL",
|
|
10458
|
+
"name": "json",
|
|
10459
|
+
"allowNo": false,
|
|
10460
|
+
"type": "boolean"
|
|
10461
|
+
},
|
|
10462
|
+
"project": {
|
|
10463
|
+
"char": "p",
|
|
10464
|
+
"description": "Project id (UUID) or key",
|
|
10465
|
+
"name": "project",
|
|
10466
|
+
"required": true,
|
|
10467
|
+
"hasDynamicHelp": false,
|
|
10468
|
+
"multiple": false,
|
|
10469
|
+
"type": "option"
|
|
10470
|
+
},
|
|
10471
|
+
"kind": {
|
|
10472
|
+
"description": "Goal kind",
|
|
10473
|
+
"name": "kind",
|
|
10474
|
+
"required": true,
|
|
10475
|
+
"hasDynamicHelp": false,
|
|
10476
|
+
"multiple": false,
|
|
10477
|
+
"options": [
|
|
10478
|
+
"pageview_path",
|
|
10479
|
+
"custom_event"
|
|
10480
|
+
],
|
|
10481
|
+
"type": "option"
|
|
10482
|
+
},
|
|
10483
|
+
"display-name": {
|
|
10484
|
+
"description": "Human-readable goal name",
|
|
10485
|
+
"name": "display-name",
|
|
10486
|
+
"required": true,
|
|
10487
|
+
"hasDynamicHelp": false,
|
|
10488
|
+
"multiple": false,
|
|
10489
|
+
"type": "option"
|
|
10490
|
+
},
|
|
10491
|
+
"event-name": {
|
|
10492
|
+
"description": "Custom event name (required for custom_event goals)",
|
|
10493
|
+
"name": "event-name",
|
|
10494
|
+
"hasDynamicHelp": false,
|
|
10495
|
+
"multiple": false,
|
|
10496
|
+
"type": "option"
|
|
10497
|
+
},
|
|
10498
|
+
"path-pattern": {
|
|
10499
|
+
"description": "Path pattern, \"*\" suffix = prefix match (required for pageview_path goals)",
|
|
10500
|
+
"name": "path-pattern",
|
|
10501
|
+
"hasDynamicHelp": false,
|
|
10502
|
+
"multiple": false,
|
|
10503
|
+
"type": "option"
|
|
10504
|
+
}
|
|
10505
|
+
},
|
|
10506
|
+
"hasDynamicHelp": false,
|
|
10507
|
+
"hiddenAliases": [],
|
|
10508
|
+
"id": "analytics:goals:create",
|
|
10509
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10510
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10511
|
+
"pluginType": "core",
|
|
10512
|
+
"strict": true,
|
|
10513
|
+
"enableJsonFlag": true,
|
|
10514
|
+
"isESM": false,
|
|
10515
|
+
"relativePath": [
|
|
10516
|
+
"dist",
|
|
10517
|
+
"commands",
|
|
10518
|
+
"analytics",
|
|
10519
|
+
"goals",
|
|
10520
|
+
"create.js"
|
|
10521
|
+
]
|
|
10522
|
+
},
|
|
10523
|
+
"analytics:goals:delete": {
|
|
10254
10524
|
"aliases": [],
|
|
10255
10525
|
"args": {
|
|
10256
10526
|
"id": {
|
|
10257
|
-
"description": "
|
|
10527
|
+
"description": "Goal id",
|
|
10258
10528
|
"name": "id",
|
|
10259
10529
|
"required": true
|
|
10260
10530
|
}
|
|
10261
10531
|
},
|
|
10262
|
-
"description": "
|
|
10532
|
+
"description": "Delete a conversion goal (irreversible)",
|
|
10263
10533
|
"examples": [
|
|
10264
|
-
"<%= config.bin %>
|
|
10534
|
+
"<%= config.bin %> analytics goals delete <goal-id> --project acme-web --confirm"
|
|
10265
10535
|
],
|
|
10266
10536
|
"flags": {
|
|
10267
10537
|
"json": {
|
|
@@ -10270,11 +10540,26 @@
|
|
|
10270
10540
|
"name": "json",
|
|
10271
10541
|
"allowNo": false,
|
|
10272
10542
|
"type": "boolean"
|
|
10543
|
+
},
|
|
10544
|
+
"project": {
|
|
10545
|
+
"char": "p",
|
|
10546
|
+
"description": "Project id (UUID) or key",
|
|
10547
|
+
"name": "project",
|
|
10548
|
+
"required": true,
|
|
10549
|
+
"hasDynamicHelp": false,
|
|
10550
|
+
"multiple": false,
|
|
10551
|
+
"type": "option"
|
|
10552
|
+
},
|
|
10553
|
+
"confirm": {
|
|
10554
|
+
"description": "Required: confirm the irreversible deletion",
|
|
10555
|
+
"name": "confirm",
|
|
10556
|
+
"allowNo": false,
|
|
10557
|
+
"type": "boolean"
|
|
10273
10558
|
}
|
|
10274
10559
|
},
|
|
10275
10560
|
"hasDynamicHelp": false,
|
|
10276
10561
|
"hiddenAliases": [],
|
|
10277
|
-
"id": "
|
|
10562
|
+
"id": "analytics:goals:delete",
|
|
10278
10563
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10279
10564
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10280
10565
|
"pluginType": "core",
|
|
@@ -10284,22 +10569,17 @@
|
|
|
10284
10569
|
"relativePath": [
|
|
10285
10570
|
"dist",
|
|
10286
10571
|
"commands",
|
|
10287
|
-
"
|
|
10288
|
-
"
|
|
10572
|
+
"analytics",
|
|
10573
|
+
"goals",
|
|
10574
|
+
"delete.js"
|
|
10289
10575
|
]
|
|
10290
10576
|
},
|
|
10291
|
-
"
|
|
10577
|
+
"analytics:goals:list": {
|
|
10292
10578
|
"aliases": [],
|
|
10293
|
-
"args": {
|
|
10294
|
-
|
|
10295
|
-
"description": "Uptime group id",
|
|
10296
|
-
"name": "id",
|
|
10297
|
-
"required": true
|
|
10298
|
-
}
|
|
10299
|
-
},
|
|
10300
|
-
"description": "Update an uptime monitor group (only the provided fields)",
|
|
10579
|
+
"args": {},
|
|
10580
|
+
"description": "List the conversion goals of a project",
|
|
10301
10581
|
"examples": [
|
|
10302
|
-
"<%= config.bin %>
|
|
10582
|
+
"<%= config.bin %> analytics goals list --project acme-web"
|
|
10303
10583
|
],
|
|
10304
10584
|
"flags": {
|
|
10305
10585
|
"json": {
|
|
@@ -10309,30 +10589,11 @@
|
|
|
10309
10589
|
"allowNo": false,
|
|
10310
10590
|
"type": "boolean"
|
|
10311
10591
|
},
|
|
10312
|
-
"
|
|
10313
|
-
"
|
|
10314
|
-
"
|
|
10315
|
-
"
|
|
10316
|
-
"
|
|
10317
|
-
"type": "option"
|
|
10318
|
-
},
|
|
10319
|
-
"color": {
|
|
10320
|
-
"description": "Accent color (Tailwind palette name)",
|
|
10321
|
-
"name": "color",
|
|
10322
|
-
"hasDynamicHelp": false,
|
|
10323
|
-
"multiple": false,
|
|
10324
|
-
"type": "option"
|
|
10325
|
-
},
|
|
10326
|
-
"icon": {
|
|
10327
|
-
"description": "Icon name",
|
|
10328
|
-
"name": "icon",
|
|
10329
|
-
"hasDynamicHelp": false,
|
|
10330
|
-
"multiple": false,
|
|
10331
|
-
"type": "option"
|
|
10332
|
-
},
|
|
10333
|
-
"description": {
|
|
10334
|
-
"description": "Group description",
|
|
10335
|
-
"name": "description",
|
|
10592
|
+
"project": {
|
|
10593
|
+
"char": "p",
|
|
10594
|
+
"description": "Project id (UUID) or key",
|
|
10595
|
+
"name": "project",
|
|
10596
|
+
"required": true,
|
|
10336
10597
|
"hasDynamicHelp": false,
|
|
10337
10598
|
"multiple": false,
|
|
10338
10599
|
"type": "option"
|
|
@@ -10340,7 +10601,7 @@
|
|
|
10340
10601
|
},
|
|
10341
10602
|
"hasDynamicHelp": false,
|
|
10342
10603
|
"hiddenAliases": [],
|
|
10343
|
-
"id": "
|
|
10604
|
+
"id": "analytics:goals:list",
|
|
10344
10605
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10345
10606
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10346
10607
|
"pluginType": "core",
|
|
@@ -10350,8 +10611,9 @@
|
|
|
10350
10611
|
"relativePath": [
|
|
10351
10612
|
"dist",
|
|
10352
10613
|
"commands",
|
|
10353
|
-
"
|
|
10354
|
-
"
|
|
10614
|
+
"analytics",
|
|
10615
|
+
"goals",
|
|
10616
|
+
"list.js"
|
|
10355
10617
|
]
|
|
10356
10618
|
},
|
|
10357
10619
|
"agents:runs:list": {
|
|
@@ -10570,179 +10832,6 @@
|
|
|
10570
10832
|
"revoke.js"
|
|
10571
10833
|
]
|
|
10572
10834
|
},
|
|
10573
|
-
"analytics:goals:create": {
|
|
10574
|
-
"aliases": [],
|
|
10575
|
-
"args": {},
|
|
10576
|
-
"description": "Create a conversion goal on a project",
|
|
10577
|
-
"examples": [
|
|
10578
|
-
"<%= config.bin %> analytics goals create -p acme-web --kind custom_event --display-name Signup --event-name signup",
|
|
10579
|
-
"<%= config.bin %> analytics goals create -p acme-web --kind pageview_path --display-name Pricing --path-pattern \"/pricing\""
|
|
10580
|
-
],
|
|
10581
|
-
"flags": {
|
|
10582
|
-
"json": {
|
|
10583
|
-
"description": "Format output as json.",
|
|
10584
|
-
"helpGroup": "GLOBAL",
|
|
10585
|
-
"name": "json",
|
|
10586
|
-
"allowNo": false,
|
|
10587
|
-
"type": "boolean"
|
|
10588
|
-
},
|
|
10589
|
-
"project": {
|
|
10590
|
-
"char": "p",
|
|
10591
|
-
"description": "Project id (UUID) or key",
|
|
10592
|
-
"name": "project",
|
|
10593
|
-
"required": true,
|
|
10594
|
-
"hasDynamicHelp": false,
|
|
10595
|
-
"multiple": false,
|
|
10596
|
-
"type": "option"
|
|
10597
|
-
},
|
|
10598
|
-
"kind": {
|
|
10599
|
-
"description": "Goal kind",
|
|
10600
|
-
"name": "kind",
|
|
10601
|
-
"required": true,
|
|
10602
|
-
"hasDynamicHelp": false,
|
|
10603
|
-
"multiple": false,
|
|
10604
|
-
"options": [
|
|
10605
|
-
"pageview_path",
|
|
10606
|
-
"custom_event"
|
|
10607
|
-
],
|
|
10608
|
-
"type": "option"
|
|
10609
|
-
},
|
|
10610
|
-
"display-name": {
|
|
10611
|
-
"description": "Human-readable goal name",
|
|
10612
|
-
"name": "display-name",
|
|
10613
|
-
"required": true,
|
|
10614
|
-
"hasDynamicHelp": false,
|
|
10615
|
-
"multiple": false,
|
|
10616
|
-
"type": "option"
|
|
10617
|
-
},
|
|
10618
|
-
"event-name": {
|
|
10619
|
-
"description": "Custom event name (required for custom_event goals)",
|
|
10620
|
-
"name": "event-name",
|
|
10621
|
-
"hasDynamicHelp": false,
|
|
10622
|
-
"multiple": false,
|
|
10623
|
-
"type": "option"
|
|
10624
|
-
},
|
|
10625
|
-
"path-pattern": {
|
|
10626
|
-
"description": "Path pattern, \"*\" suffix = prefix match (required for pageview_path goals)",
|
|
10627
|
-
"name": "path-pattern",
|
|
10628
|
-
"hasDynamicHelp": false,
|
|
10629
|
-
"multiple": false,
|
|
10630
|
-
"type": "option"
|
|
10631
|
-
}
|
|
10632
|
-
},
|
|
10633
|
-
"hasDynamicHelp": false,
|
|
10634
|
-
"hiddenAliases": [],
|
|
10635
|
-
"id": "analytics:goals:create",
|
|
10636
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10637
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10638
|
-
"pluginType": "core",
|
|
10639
|
-
"strict": true,
|
|
10640
|
-
"enableJsonFlag": true,
|
|
10641
|
-
"isESM": false,
|
|
10642
|
-
"relativePath": [
|
|
10643
|
-
"dist",
|
|
10644
|
-
"commands",
|
|
10645
|
-
"analytics",
|
|
10646
|
-
"goals",
|
|
10647
|
-
"create.js"
|
|
10648
|
-
]
|
|
10649
|
-
},
|
|
10650
|
-
"analytics:goals:delete": {
|
|
10651
|
-
"aliases": [],
|
|
10652
|
-
"args": {
|
|
10653
|
-
"id": {
|
|
10654
|
-
"description": "Goal id",
|
|
10655
|
-
"name": "id",
|
|
10656
|
-
"required": true
|
|
10657
|
-
}
|
|
10658
|
-
},
|
|
10659
|
-
"description": "Delete a conversion goal (irreversible)",
|
|
10660
|
-
"examples": [
|
|
10661
|
-
"<%= config.bin %> analytics goals delete <goal-id> --project acme-web --confirm"
|
|
10662
|
-
],
|
|
10663
|
-
"flags": {
|
|
10664
|
-
"json": {
|
|
10665
|
-
"description": "Format output as json.",
|
|
10666
|
-
"helpGroup": "GLOBAL",
|
|
10667
|
-
"name": "json",
|
|
10668
|
-
"allowNo": false,
|
|
10669
|
-
"type": "boolean"
|
|
10670
|
-
},
|
|
10671
|
-
"project": {
|
|
10672
|
-
"char": "p",
|
|
10673
|
-
"description": "Project id (UUID) or key",
|
|
10674
|
-
"name": "project",
|
|
10675
|
-
"required": true,
|
|
10676
|
-
"hasDynamicHelp": false,
|
|
10677
|
-
"multiple": false,
|
|
10678
|
-
"type": "option"
|
|
10679
|
-
},
|
|
10680
|
-
"confirm": {
|
|
10681
|
-
"description": "Required: confirm the irreversible deletion",
|
|
10682
|
-
"name": "confirm",
|
|
10683
|
-
"allowNo": false,
|
|
10684
|
-
"type": "boolean"
|
|
10685
|
-
}
|
|
10686
|
-
},
|
|
10687
|
-
"hasDynamicHelp": false,
|
|
10688
|
-
"hiddenAliases": [],
|
|
10689
|
-
"id": "analytics:goals:delete",
|
|
10690
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10691
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10692
|
-
"pluginType": "core",
|
|
10693
|
-
"strict": true,
|
|
10694
|
-
"enableJsonFlag": true,
|
|
10695
|
-
"isESM": false,
|
|
10696
|
-
"relativePath": [
|
|
10697
|
-
"dist",
|
|
10698
|
-
"commands",
|
|
10699
|
-
"analytics",
|
|
10700
|
-
"goals",
|
|
10701
|
-
"delete.js"
|
|
10702
|
-
]
|
|
10703
|
-
},
|
|
10704
|
-
"analytics:goals:list": {
|
|
10705
|
-
"aliases": [],
|
|
10706
|
-
"args": {},
|
|
10707
|
-
"description": "List the conversion goals of a project",
|
|
10708
|
-
"examples": [
|
|
10709
|
-
"<%= config.bin %> analytics goals list --project acme-web"
|
|
10710
|
-
],
|
|
10711
|
-
"flags": {
|
|
10712
|
-
"json": {
|
|
10713
|
-
"description": "Format output as json.",
|
|
10714
|
-
"helpGroup": "GLOBAL",
|
|
10715
|
-
"name": "json",
|
|
10716
|
-
"allowNo": false,
|
|
10717
|
-
"type": "boolean"
|
|
10718
|
-
},
|
|
10719
|
-
"project": {
|
|
10720
|
-
"char": "p",
|
|
10721
|
-
"description": "Project id (UUID) or key",
|
|
10722
|
-
"name": "project",
|
|
10723
|
-
"required": true,
|
|
10724
|
-
"hasDynamicHelp": false,
|
|
10725
|
-
"multiple": false,
|
|
10726
|
-
"type": "option"
|
|
10727
|
-
}
|
|
10728
|
-
},
|
|
10729
|
-
"hasDynamicHelp": false,
|
|
10730
|
-
"hiddenAliases": [],
|
|
10731
|
-
"id": "analytics:goals:list",
|
|
10732
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
10733
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
10734
|
-
"pluginType": "core",
|
|
10735
|
-
"strict": true,
|
|
10736
|
-
"enableJsonFlag": true,
|
|
10737
|
-
"isESM": false,
|
|
10738
|
-
"relativePath": [
|
|
10739
|
-
"dist",
|
|
10740
|
-
"commands",
|
|
10741
|
-
"analytics",
|
|
10742
|
-
"goals",
|
|
10743
|
-
"list.js"
|
|
10744
|
-
]
|
|
10745
|
-
},
|
|
10746
10835
|
"alerts:channels:create": {
|
|
10747
10836
|
"aliases": [],
|
|
10748
10837
|
"args": {
|
|
@@ -12847,5 +12936,5 @@
|
|
|
12847
12936
|
]
|
|
12848
12937
|
}
|
|
12849
12938
|
},
|
|
12850
|
-
"version": "0.0
|
|
12939
|
+
"version": "0.2.0"
|
|
12851
12940
|
}
|