Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
# Print an optspec for argparse to handle cmd's options that are independent of any subcommand.
function __fish_ordinary_global_optspecs
	string join \n p/project= api-domain= insecure danger-accept-invalid-certs v/verbose q/quiet pretty h/help V/version
end

function __fish_ordinary_needs_command
	# Figure out if the current invocation already has a command.
	set -l cmd (commandline -opc)
	set -e cmd[1]
	argparse -s (__fish_ordinary_global_optspecs) -- $cmd 2>/dev/null
	or return
	if set -q argv[1]
		# Also print the command, so this can be used to figure out what it is.
		echo $argv[1]
		return 1
	end
	return 0
end

function __fish_ordinary_using_subcommand
	set -l cmd (__fish_ordinary_needs_command)
	test -z "$cmd"
	and return 1
	contains -- $cmd[1] $argv
end

complete -c ordinary -n "__fish_ordinary_needs_command" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_needs_command" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_needs_command" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_needs_command" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_needs_command" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "build" -d 'build your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "publish" -d 'combines `build`, `content update`, `assets write`, `templates upload`, `actions install`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "templates" -d 'manage templates in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "content" -d 'manage content in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "models" -d 'manage models in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "actions" -d 'manage actions in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "integrations" -d 'manage integrations in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "root"
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l path -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s c -l contacts -d 'contacts for Let\'s Encrypt (auto-TLS) [source](https://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s e -l error-page -d 'include generated 404.html as error page'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s s -l inline-styles -d 'accommodate inline styles in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s r -l inline-scripts -d 'accommodate inline scripts in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s m -l inline-images -d 'accommodate inline images in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s i -l ignore-cache -d 'build project without checking the cache'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l provision -d 'what mode TLS certs should be provisioned in' -r -f -a "staging\t''
production\t''
localhost\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l port -d 'specify HTTP(s) port for server' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l redirect-port -d 'specify HTTP port for server when running in secure mode' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-ttl-hours -d 'max period of time logs are stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-rotation-file-size -d 'max size (in bytes) per log file' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-rotation-mins -d 'max amount of time a log file is appended to before being compressed and stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l redacted-header-hash -d '"none" | "blake2" | "blake3"' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l data-dir -d 'specify the data directory' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs-fmt -d 'how to format stdio logs' -r -f -a "concise\t''
pretty\t''
json\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-level -d 'base log level for every component' -r -f -a "error\t''
warn\t''
info\t''
debug\t''
trace\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l insecure -d 'run without HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l insecure-cookies -d 'run with insecure cookies'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-headers -d 'whether HTTP request and response headers are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-ips -d 'whether IP Addresses are logged with HTTP requests'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stored-logs -d 'persists JSON formatted log lines to <data-dir>/logs/<domain>/'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs -d 'logs events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l journald-logs -d 'logs events to `journald` (only works on Linux distros that use `systemd`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-sizes -d 'whether storage and certain payload sizes are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs-timing -d 'whether span timing is logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s d -l disable-defaults -d 'disables these defaults set for development: `--stdio-logs` `--stdio-logs-fmt concise` `--insecure` `--insecure-cookies`'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s e -l error -d 'whether the template is an error template' -r -f -a "true\t''
false\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s n -l name -d 'name of a specific template to upload (optional). will upload all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "add" -d 'add a content definition to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "edit" -d 'edit a content definition to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "add" -d 'add a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "edit" -d 'edit a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "delete" -d 'delete a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s n -l name -d 'name of a specific asset to write (optional). will write all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from help" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -f -a "list" -d 'list model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s n -l name -d 'name of a specific action to install (optional). will install all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l password -d 'password for your new account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l invite -d 'base64 encoded invite token' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l password -d 'password for your existing account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l mfa -d '6 digit TOTP MFA code' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -f -a "get" -d 'get access'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "reset" -d 'reset your password'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "forgot" -d 'recover your password'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "reset" -d 'reset MFA TOTP secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "lost" -d 'recovery MFA TOTP secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -f -a "reset" -d 'reset recovery codes'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l password -d 'password for your existing account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l mfa -d '6 digit TOTP MFA code' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s u -l url -d 'url override. will use project domain by default' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s o -l out -d 'where to store downloaded files' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from help" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s a -l account -d 'account to be locked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s a -l account -d 'account to be unlocked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s f -l fix -d 'auto fix installs' -r -f -a "all\t''
rust\t''
wasm\t''
wasm-opt\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l v -d 'uuid version' -r -f -a "4\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s u -l unit -d 'unit of time' -r -f -a "seconds\t''
millis\t''
micros\t''
nanos\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s f -l fmt -d 'formatting (uses `time` crate <https://time-rs.github.io/book/api/format-description.html>)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "minify" -d 'minify HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "minify" -d 'minify CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "minify" -d 'minify JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "to-html" -d 'process and place an .html file next to the referenced .md file'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "tool" -d '[`exiftool`](https://exiftool.org) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "build" -d 'build your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "publish" -d 'combines `build`, `content update`, `assets write`, `templates upload`, `actions install`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "templates" -d 'manage templates in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "content" -d 'manage content in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "models" -d 'manage models in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "actions" -d 'manage actions in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "integrations" -d 'manage integrations in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "root"
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from ssg" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from templates" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from templates" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from assets" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from models" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from models" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from actions" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from actions" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from integrations" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from secrets" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'