-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathsimctl.ts
executable file
·979 lines (978 loc) · 29.2 KB
/
simctl.ts
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
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
import { describe } from "node:test";
const completionSpec: Fig.Spec = {
name: "simctl",
description: "",
subcommands: [
{
name: "addmedia",
description:
"Add photos, live photos, videos, or contacts to the library of a device",
args: [
{
name: "device",
},
{
name: "path",
isVariadic: true,
},
],
},
{
name: "boot",
description: "Boot a device or device pair",
args: {
name: "device",
},
options: [
{
name: "--arch",
description:
"Specify the architecture to use when booting the simulator (eg: 'arm64' or 'x86_64')",
requiresSeparator: "=",
isRepeatable: true,
},
{
name: "--disabledJob",
description:
"Disables the given launchd job. Multiple jobs can be disabled by passing multiple flags",
requiresSeparator: "=",
isRepeatable: true,
},
{
name: "--enabledJob",
description:
"Enables the given launchd job when it would normally be disabled. Multiple jobs can be enabled by passing multiple flags",
requiresSeparator: "=",
isRepeatable: true,
},
],
},
{
name: "clone",
description: "Clone an existing device",
args: [
{
name: "device",
},
{
name: "new name",
},
{
name: "destination device set",
isVariadic: true,
},
],
},
{
name: "create",
description: "Create a new device",
args: [
{
name: "name",
},
{
name: "device type id",
description:
"A valid available device type. Find these by running 'xcrun simctl list devicetypes'. Examples: ('iPhone X', 'com.apple.CoreSimulator.SimDeviceType.iPhone-X')",
},
{
name: "runtime id",
isVariadic: true,
description:
"A valid and available runtime. Find these by running 'xcrun simctl list runtimes'. If no runtime is specified the newest runtime compatible with the device type is chosen. Examples: ('watchOS3', 'watchOS3.2', 'watchOS 3.2', 'com.apple.CoreSimulator.SimRuntime.watchOS-3-2', '/Volumes/path/to/Runtimes/watchOS 3.2.simruntime')",
},
],
},
{
name: "delete",
description:
"Delete specified devices, unavailable devices, or all devices",
args: [
{
name: "device",
isVariadic: true,
},
{
name: "unavailable",
description:
"Specifying unavailable will delete devices that are not supported by the current Xcode SDK",
},
{
name: "all",
},
],
},
{
name: "diagnose",
description: "Collect diagnostic information and logs",
options: [
{
name: "-b",
description:
"Do NOT show the resulting archive in a Finder window upon completion",
},
{
name: "-X",
description:
"Run all diagnostics with no timeout. It ignores the --timeout value if it is specified",
exclusiveOn: ["timeout"],
},
{
name: "--timeout",
description:
"Specify a duration (in seconds) to wait for the log collection before timeout",
requiresSeparator: "=",
},
{
name: "--output",
description:
"Specify the output directory. If not provided the temporary directory is used",
requiresSeparator: "=",
},
{
name: "--no-archive",
description:
"Do not create an archive, leave the collected files uncompressed",
},
{
name: "--all-logs",
description: "Include all device logs, even for non-booted devices",
},
{
name: "--data-containers",
description:
"Include booted device(s) data directory. Warning: May include private information, app data containers, and increases the size of the archive! Default is NOT to collect the data container",
},
{
name: "--udid",
description:
"Collect diagnostics only from the specified device. This option may be specified more than once to consider multiple devices. The --all-logs option causes all --udid options to be ignored",
requiresSeparator: "=",
isRepeatable: true,
},
],
},
{
name: "erase",
description: "Erase a device's contents and settings",
args: [
{
name: "device",
isVariadic: true,
},
{
name: "all",
description: "Specifying all will erase all existing devices",
},
],
},
{
name: "get_app_container",
description: "Print the path of the installed app's container",
args: [
{
name: "device",
},
{
name: "app bundle identifier",
},
{
name: "container",
description:
"Optionally specify the container. Defaults to app.\napp The .app bundle\ndata The application's data container\ngroups The App Group containers\n<group identifier> A specific App Group container",
isOptional: true,
default: "app",
suggestions: [
{
name: "app",
description: "The .app bundle",
},
{
name: "data",
description: "The application's data container",
},
{
name: "groups",
description: "The App Group containers",
},
{
name: "<group identifier>",
description: "A specific App Group container",
},
],
},
],
},
{
name: "getenv",
description: "Print an environment variable from a running device",
args: [
{
name: "device",
},
{
name: "variable name",
},
],
},
{
name: "help",
description: "Prints the usage for a given subcommand",
loadSpec: "simctl",
},
{
name: "icloud_sync",
description: "Trigger iCloud sync on a device",
args: {
name: "device",
},
},
{
name: "install",
description: "Install an app on a device",
args: [
{
name: "device",
},
{
name: "path",
},
],
},
{
name: "install_app_data",
description:
"Install an xcappdata package to a device, replacing the current contents of the container",
args: [
{
name: "device",
},
{
name: "path to xcappdata package",
},
],
},
{
name: "io",
description: "Set up a device IO operation",
args: {
name: "device",
},
subcommands: [
{
name: "enumerate",
description: "Lists all available IO ports and descriptor states",
options: [
{
name: "--poll",
description: "Poll after enumeration",
},
],
},
{
name: "poll",
description: "Polls all available IO ports for events",
},
{
name: "recordVideo",
description:
"Records the display to a QuickTime movie at the specified file or url",
args: {
name: "file or url",
},
options: [
{
name: "--codec",
description:
"Specifies the codec type: 'h264' or 'hevc'. Default is 'hevc'",
requiresSeparator: "=",
},
{
name: "--display",
description:
// eslint-disable-next-line @withfig/fig-linter/conventional-descriptions
"iOS: supports 'internal' or 'external'. Default is 'internal'. tvOS: supports only 'external' watchOS: supports only 'internal'",
requiresSeparator: "=",
},
{
name: "--mask",
description:
"For non-rectangular displays, handle the mask by policy: ignored: The mask is ignored and the unmasked framebuffer is saved. alpha: Not supported, but retained for compatibility; the mask is rendered black. black: The mask is rendered black",
requiresSeparator: "=",
},
{
name: "--force",
description:
"Force the output file to be written to, even if the file already exists",
},
],
},
{
name: "screenshot",
description:
"Saves a screenshot as a PNG to the specified file or url(use '-' for stdout)",
args: {
name: "file or url",
},
options: [
{
name: "--type",
description:
"Can be 'png', 'tiff', 'bmp', 'gif', 'jpeg'. Default is png",
requiresSeparator: "=",
},
{
name: "--display",
description:
// eslint-disable-next-line @withfig/fig-linter/conventional-descriptions
"iOS: supports 'internal' or 'external'. Default is 'internal'. tvOS: supports only 'external' watchOS: supports only 'internal'. You may also specify a port by UUID",
requiresSeparator: "=",
},
{
name: "--mask",
description:
"For non-rectangular displays, handle the mask by policy: ignored: The mask is ignored and the unmasked framebuffer is saved. alpha: The mask is used as premultiplied alpha. black: The mask is rendered black",
requiresSeparator: "=",
},
],
},
],
},
{
name: "keychain",
description: "Manipulate a device's keychain",
subcommands: [
{
name: "add-root-cert",
description: "Add a certificate to the trusted root store",
args: {
name: "path",
},
},
{
name: "add-cert",
description: "Add a certificate to the keychain",
args: {
name: "path",
},
},
{
name: "reset",
description: "Reset the keychain",
},
],
},
{
name: "launch",
description: "Launch an application by identifier on a device",
args: [
{
name: "device",
},
{
name: "app bundle identifier",
},
{
name: "argv",
isVariadic: true,
},
],
options: [
{
name: ["-w", "--wait-for-debugger"],
},
{
name: "--console",
description:
"Block and print the application's stdout and stderr to the current terminal. Signals received by simctl are passed through to the application. (Cannot be combined with --stdout or --stderr)",
exclusiveOn: ["console-pty", "stdout", "stderr"],
},
{
name: "--console-pty",
description:
"Block and print the application's stdout and stderr to the current terminal via a PTY. Signals received by simctl are passed through to the application. (Cannot be combined with --stdout or --stderr)",
exclusiveOn: ["console", "stdout", "stderr"],
},
{
name: "--stdout",
description: "Redirect the application's standard output to a file",
requiresSeparator: "=",
args: {
name: "path",
},
exclusiveOn: ["console", "console-pty"],
},
{
name: "--stderr",
description: "Redirect the application's standard error to a file",
requiresSeparator: "=",
args: {
name: "path",
},
exclusiveOn: ["console", "console-pty"],
},
{
name: "--terminate-running-process",
description:
"Terminate any running copy of the application. Note: Log output is often directed to stderr, not stdout",
},
],
},
{
name: "list",
description:
"List available devices, device types, runtimes, or device pairs",
args: [
{
name: "type",
suggestions: ["devices", "deviceTypes", "runtimes", "pairs"],
},
{
name: "search term",
suggestions: ["available"],
},
],
options: [
{
name: ["-j", "--json"],
description: "Print as JSON",
},
{
name: ["-e", "--no-escape-slashes"],
description: "Encode slashes without escapes in JSON output",
},
{
name: "-v",
description: "More verbose output",
},
],
},
{
name: "location",
description: "Control a device's simulated location",
args: [
{
name: "device",
},
{
name: "empty",
},
],
subcommands: [
{
name: "list",
description: "List available simulation scenarios",
},
{
name: "clear",
description:
"Stop any running scenario and clear any simulated location",
},
{
name: "set",
description: "Set the location to a specific latitude and longitude",
args: {
name: "lat,lon",
},
},
{
name: "run",
description:
"Run a simulated location scenario (use the list action to get a list of scenarios)",
args: {
name: "scenario",
},
},
{
name: "start",
description:
"Set the location to a series of waypoints specified as 'lat,lon' pairs, interpolating between them over time.\nAt least two waypoints are required. Use '-' to read waypoints from stdin, one waypoint per li\nSpeed specifies how quickly to move between waypoints in meters per second. If not specified 20m/s is us\nThe system will issue location updates along the path between each pair of waypoints. Use distance or interval to \ncontrol how often those updates are issued. Distance will issue an update every <meters> travelled without regard\nfor the time between updates. Interval will issue updates at fixed times without regard for how much\nthe location moves between updates.\nIf neither are specified an interval of 1.0 seconds is used. If both are specified the system picks on\nExample simulating a direct line between San Francisco and New York City, with updates every km:\nset --distance=1000 --speed=260 37.629538,-122.395733 40.628083,-73.768254",
args: {
name: "lat,lon",
isVariadic: true,
},
options: [
{
name: "speed",
requiresSeparator: "=",
},
{
name: "distance",
requiresSeparator: "=",
},
{
name: "interval",
requiresSeparator: "=",
},
],
},
],
},
{
name: "logverbose",
description:
"Enable or disable verbose logging for a device.\nNOTE: You may need to reboot the affected device before logging changes will be effective",
args: [
{
name: "device",
description:
"The device. If not provided all booted devices are affected",
},
{
name: "enable/disable",
description: "Enable or Disable verbose logging",
suggestions: ["enable", "disable"],
},
],
},
{
name: "openurl",
description: "Open a URL in a device",
args: [
{
name: "device",
},
{
name: "URL",
},
],
},
{
name: "pair",
description: "Create a new watch and phone pair",
args: [
{
name: "watch device",
},
{
name: "phone device",
},
],
},
{
name: "pair_activate",
description: "Set a given pair as active",
args: {
name: "pair",
},
},
{
name: "pbcopy",
description: "Copy standard input onto the device pasteboard",
args: {
name: "device of 'host'",
},
options: [
{
name: "-v",
},
],
},
{
name: "pbpaste",
description:
"Print the contents of the device's pasteboard to standard output",
args: {
name: "device of 'host'",
},
options: [
{
name: "-v",
},
],
},
{
name: "pbsync",
description: "Sync the pasteboard content from one pasteboard to another",
args: [
{
name: "source device or 'host'",
},
{
name: "destination device or 'host'",
},
],
options: [
{
name: "-p",
description:
"Causes simctl to use promise data for secondary types. simctl will continue to run to provide that promise data until something else replaces it on the pasteboard",
},
{
name: "-v",
},
],
},
{
name: "privacy",
description: "Grant, revoke, or reset privacy and permissions",
args: [
{
name: "device",
},
{
name: "action",
description: "",
suggestions: ["grant", "revoke", "reset"],
},
{
name: "service",
description: "",
suggestions: [
"all",
"calendar",
"contacts-limited",
"contacts",
"location",
"location-always",
"photos-add",
"photos",
"media-library",
"microphone",
"motion",
"reminders",
"siri",
],
},
{
name: "bundle identifier",
description: "The bundle identifier of the target application",
},
],
},
{
name: "push",
description: "Send a simulated push notification",
args: [
{
name: "device",
},
{
name: "bundle identifier",
description:
"The bundle identifier of the target application If the payload file contains a 'Simulator Target Bundle' top-level key this parameter may be omitted. If both are provided this argument will override the value from the payload",
},
{
name: "json file",
description:
"Path to a JSON payload or '-' to read from stdin. The payload must:\n- Contain an object at the top level.\n- Contain an 'aps' key with valid Apple Push Notification values.\n- Be 4096 bytes or less",
suggestions: ["-"],
},
],
},
{
name: "rename",
description: "Rename a device",
args: [
{
name: "device",
},
{
name: "name",
},
],
},
{
name: "runtime",
description: "Perform operations on runtimes",
subcommands: [
{
name: "add",
description:
"Add a runtime disk image to the secure storage area. The image will be staged, verified, and mounted. When possible the image file will be cloned so no additional disk space will be used. If stdout is a terminal and a copy is required then progress will be reported",
args: {
name: "path",
},
options: [
{
name: ["-m", "--move"],
description:
"Remove the original file if the image is added successfully. If the image cannot be staged or the add fails the original is not removed",
},
{
name: ["-a", "--async"],
description:
"Print the UUID of the new image then exit, do not wait on the results of the add operation",
},
],
},
{
name: "delete",
description:
"Delete a simulator runtime from the secure storage area. If runtime is a disk image any booted simulators are shutdown and the disk is unmounted first. Use the alias 'all' to delete all images",
args: {
name: "identifier",
},
options: [
{
name: ["-d", "--notUsedSinceDays"],
description: "Delete images not used within the past <days> days",
},
{
name: ["-n", "--dry-run"],
description:
"Print what images would be deleted without actually deleting anything",
exclusiveOn: ["identifier"],
},
],
},
{
name: "verify",
description: "Re-verify the signature of a given runtime",
args: {
name: "identifier",
},
},
{
name: "list",
description: "",
options: [
{
name: "-v",
description: "Print more verbose output",
},
{
name: ["-j", "--json"],
description: "Print as JSON",
},
],
},
{
name: "match list",
description:
"List the SDK build to runtime build mapping rules for the selected Xcode. Preferred means the runtime was either bundled with Xcode, exactly matched your SDK version, or the downloadable index indicated a better match for your SDK Manual overrides using 'match set' have the highest priority",
options: [
{
name: "-v",
description:
"Verbose mode. Includes the full preferred build map, user override map, and known SDK names",
},
{
name: ["-j", "--json"],
description: "Print as JSON",
},
],
},
{
name: "match set",
description:
"Override the SDK to runtime build mapping. This controls which build of a given runtime Xcode will prefer for building and running when using that SDK. This matters most often during Beta releases when there are multiple builds for a given OS version. If --sdkBuild is not specified it is assumed you mean the SDK build for the currently selected Xcode.\n\nNote: Remember this is about build numbers, not semantic versions. When using the iOS 16.0 SDK Xcwill always prefer an iOS 16.0 runtime. Matching policy controls what to do when there are multiiOS 16.0 runtimes availabeg if the iOS 16.0 SDK is 20A245 and the available runtimes are (20A248, 20A252, 20A254) which should Xcode use for building, SwiftUI Previews, and when launching iOS 16.0 Simulators? They are all iOS 16.0 runtimes so a policy must decide which one is selected",
args: [
{
name: "sdk canonical name",
},
{
name: "runtime build",
},
],
options: [
{
name: "--default",
description:
"Clear the override for the given SDK and revert to default behavior",
exclusiveOn: ["runtime build"],
},
{
name: "--sdkBuild",
description:
"Explicitly specify the SDK build, eg for an Xcode other than the selected Xcode",
},
],
},
],
},
{
name: "shutdown",
description: "Shutdown a device",
args: [
{
name: "device",
},
{
name: "all",
suggestions: ["all"],
},
],
},
{
name: "spawn",
description:
"Spawn a process by executing a given executable on a device",
args: [
{
name: "device",
},
{
name: "path to executable",
},
{
name: "argv",
isVariadic: true,
},
],
options: [
{
name: ["-w", "--wait-for-debugger"],
},
{
name: ["-s", "--standalone"],
},
{
name: ["-a", "--arch"],
},
],
},
{
name: "status_bar",
description: "Set or clear status bar overrides",
args: {
name: "device",
},
subcommands: [
{
name: "list",
description: "List existing overrides",
},
{
name: "clear",
description: "Clear all existing status bar overrides",
},
{
name: "override",
description:
"Set status bar override values, according to these flags. You may specify any combination of these flags (at least one is required)",
options: [
{
name: "--time",
description:
"Set the date or time to a fixed value. If the string is a valid ISO date string it will also set the date on relevant devices",
},
{
name: "--dataNetwork",
description:
"If specified must be one of 'hide', 'wifi', '3g', '4g', 'lte', 'lte-a', 'lte+', '5g', '5g+', '5g-uwb', or '5g-uc'",
},
{
name: "--wifiMode",
description:
"If specified must be one of 'searching', 'failed', or 'active'",
},
{
name: "--wifiBars",
description: "If specified must be 0-3",
},
{
name: "--cellularMode",
description:
"If specified must be one of 'notSupported', 'searching', 'failed', or 'active'",
},
{
name: "--cellularBars",
description: "If specified must be 0-4",
},
{
name: "--operatorName",
description:
"Set the cellular operator/carrier name. Use '' for the empty string",
},
{
name: "--batteryState",
description:
"If specified must be one of 'charging', 'charged', or 'discharging'",
},
{
name: "--batteryLevel",
description: "If specified must be 0-100",
},
],
},
],
},
{
name: "terminate",
description: "Terminate an application by identifier on a device",
args: [
{
name: "device",
},
{
name: "app bundle identifier",
},
],
},
{
name: "ui",
description: "Get or Set UI options",
args: {
name: "device",
},
subcommands: [
{
name: "appearance",
description:
"When invoked without arguments prints the current user interface appearance style:\nlight\nThe Light appearance style.\ndark\nThe Dark appearance style.\nunsupported\nThe platform or runtime version do not support appearance styles.\nunknown\nThe current style is unknown or there was an error detecting it",
additionalSuggestions: ["light", "dark"],
},
{
name: "increase_contrast",
description:
"When invoked without arguments prints whether the Increase Contrast mode is currently enabled:\nenabled\nIncrease Contrast is enabled.\ndisabled\nIncrease Contrast is disabled.\nunsupported\nThe platform or runtime version do not support the Increase Contrast setting.\nunknown\nThe current setting is unknown or there was an error detecting it",
additionalSuggestions: ["enabled", "disabled"],
},
{
name: "content_size",
description:
"When invoked without arguments prints the current preferred content size category, from the following possible values:",
additionalSuggestions: [
"extra-small",
"small",
"medium",
"large",
"extra-large",
"extra-extra-large",
"extra-extra-extra-large",
"accessibility-medium",
"accessibility-large",
"accessibility-extra-large",
"accessibility-extra-extra-large",
"accessibility-extra-extra-extra-large",
"unknown",
"unsupported",
],
},
],
},
{
name: "uninstall",
description: "Uninstall an app from a device",
args: [
{
name: "device",
},
{
name: "app bundle identifier",
},
],
},
{
name: "unpair",
description: "Unpair a watch and phone pair",
args: {
name: "pair UUID",
},
},
{
name: "upgrade",
description: "Upgrade a device to a newer runtime",
args: [
{
name: "device",
},
{
name: "runtime id",
},
],
},
],
};
export default completionSpec;