shipthis 0.0.41 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/README.md +17 -17
  2. package/dist/{AppleBundleIdDetails-n1_U8IqK.js → AppleBundleIdDetails-BF-Pm1Ia.js} +19 -7
  3. package/dist/Command-BrfJSeOC.js +1077 -0
  4. package/dist/CommandGame-D9wl8hfX.js +8 -0
  5. package/dist/{NextSteps-CK9zHOCt.js → NextSteps-DKcjSHZ3.js} +1 -1
  6. package/dist/ProjectCredentialsTable-BVvkIPjN.js +36 -0
  7. package/dist/{StatusTable-CxuX_R1D.js → StatusTable-BzsNF75L.js} +2 -7
  8. package/dist/{UserCredentialsTable-A_YlFeJX.js → UserCredentialsTable-DUFQqHVt.js} +11 -5
  9. package/dist/{baseAppleCommand-DK5-Cvg4.js → baseAppleCommand-BSJhK8GA.js} +1 -1
  10. package/dist/baseGameAndroidCommand-CPAtReqy.js +43 -0
  11. package/dist/commands/apple/apiKey/create.js +24 -10
  12. package/dist/commands/apple/apiKey/export.js +23 -9
  13. package/dist/commands/apple/apiKey/import.js +23 -9
  14. package/dist/commands/apple/apiKey/status.js +25 -13
  15. package/dist/commands/apple/certificate/create.js +25 -11
  16. package/dist/commands/apple/certificate/export.js +23 -9
  17. package/dist/commands/apple/certificate/import.js +23 -9
  18. package/dist/commands/apple/certificate/status.js +26 -14
  19. package/dist/commands/apple/login.js +9 -3
  20. package/dist/commands/apple/status.js +27 -13
  21. package/dist/commands/dashboard.js +11 -5
  22. package/dist/commands/game/android/apiKey/connect.js +73 -0
  23. package/dist/commands/game/android/apiKey/create.js +70 -0
  24. package/dist/commands/game/android/apiKey/export.js +83 -0
  25. package/dist/commands/game/android/apiKey/import.js +92 -0
  26. package/dist/commands/game/android/apiKey/invite.js +81 -0
  27. package/dist/commands/game/android/apiKey/status.js +86 -0
  28. package/dist/commands/game/android/keyStore/create.js +67 -0
  29. package/dist/commands/game/android/keyStore/export.js +82 -0
  30. package/dist/commands/game/android/keyStore/import.js +91 -0
  31. package/dist/commands/game/android/keyStore/status.js +69 -0
  32. package/dist/commands/game/android/status.js +84 -0
  33. package/dist/commands/game/android/wizard.js +53 -0
  34. package/dist/commands/game/build/download.js +23 -9
  35. package/dist/commands/game/build/list.js +25 -14
  36. package/dist/commands/game/create.js +18 -10
  37. package/dist/commands/game/details.js +28 -19
  38. package/dist/commands/game/export.js +11 -5
  39. package/dist/commands/game/ios/app/addTester.js +25 -12
  40. package/dist/commands/game/ios/app/create.js +26 -13
  41. package/dist/commands/game/ios/app/status.js +27 -13
  42. package/dist/commands/game/ios/app/sync.js +23 -9
  43. package/dist/commands/game/ios/profile/create.js +22 -8
  44. package/dist/commands/game/ios/profile/export.js +23 -9
  45. package/dist/commands/game/ios/profile/import.js +23 -9
  46. package/dist/commands/game/ios/profile/status.js +26 -71
  47. package/dist/commands/game/ios/status.js +28 -15
  48. package/dist/commands/game/ios/wizard.js +125 -0
  49. package/dist/commands/game/job/list.js +26 -14
  50. package/dist/commands/game/job/status.js +26 -71
  51. package/dist/commands/game/list.js +26 -12
  52. package/dist/commands/game/ship.js +7 -4
  53. package/dist/commands/game/status.js +63 -25
  54. package/dist/commands/game/wizard.js +41 -99
  55. package/dist/commands/internal/fastlane.js +74 -0
  56. package/dist/commands/internal/readme.js +1452 -0
  57. package/dist/commands/login.js +9 -3
  58. package/dist/commands/status.js +23 -10
  59. package/dist/{export-C16psune.js → export-B0FJT0EU.js} +1 -1
  60. package/dist/{import-hte2Jy0K.js → import-CLDJ2iPu.js} +1 -1
  61. package/dist/{baseGameCommand-B3NbuvDu.js → index-CF0fIsx2.js} +112 -37
  62. package/dist/index-CFHmtzfq.js +24 -0
  63. package/dist/{index-ZHJdUrwJ.js → index-Df8uXQ4s.js} +14 -3
  64. package/dist/{upload-DADrkIUB.js → upload-C5L82Yq0.js} +1 -1
  65. package/dist/useAndroidServiceAccountTestResult-BnxNuoG3.js +52 -0
  66. package/dist/{useAppleApp-Cr3VcGVs.js → useAppleApp-IXRdsK5w.js} +1 -1
  67. package/dist/{useAppleBundleId-BxtyGpHy.js → useAppleBundleId-DYC5ISKT.js} +1 -1
  68. package/docs/game/android/apiKey/connect.md +27 -0
  69. package/docs/game/android/apiKey/create.md +25 -0
  70. package/docs/game/android/apiKey/export.md +25 -0
  71. package/docs/game/android/apiKey/import.md +25 -0
  72. package/docs/game/android/apiKey/invite.md +27 -0
  73. package/docs/game/android/apiKey/status.md +23 -0
  74. package/docs/game/android/apiKey.md +165 -0
  75. package/docs/game/android/keyStore/create.md +24 -0
  76. package/docs/game/android/keyStore/export.md +25 -0
  77. package/docs/game/android/keyStore/import.md +25 -0
  78. package/docs/game/android/keyStore/status.md +23 -0
  79. package/docs/game/android/keyStore.md +108 -0
  80. package/docs/game/android/status.md +23 -0
  81. package/docs/game/android/wizard.md +28 -0
  82. package/docs/game/android.md +339 -0
  83. package/docs/game/create.md +12 -7
  84. package/docs/game/ios/wizard.md +21 -0
  85. package/docs/game/wizard.md +12 -18
  86. package/oclif.manifest.json +914 -161
  87. package/package.json +54 -19
  88. package/dist/App-BfoOFeZ-.js +0 -21
  89. package/dist/RunWithSpinner-BVXNWGD3.js +0 -27
  90. package/dist/Title-BCQtayg6.js +0 -6
  91. package/dist/cacheKeys-CShA-ZjE.js +0 -9
  92. package/dist/useBuilds-JHqMwpWS.js +0 -41
  93. package/dist/useJob-Bc9fdiyP.js +0 -34
@@ -184,6 +184,54 @@
184
184
  "hasDynamicHelp": false,
185
185
  "multiple": false,
186
186
  "type": "option"
187
+ },
188
+ "buildNumber": {
189
+ "char": "b",
190
+ "description": "Set the build number",
191
+ "name": "buildNumber",
192
+ "hasDynamicHelp": false,
193
+ "multiple": false,
194
+ "type": "option"
195
+ },
196
+ "semanticVersion": {
197
+ "char": "s",
198
+ "description": "Set the semantic version",
199
+ "name": "semanticVersion",
200
+ "hasDynamicHelp": false,
201
+ "multiple": false,
202
+ "type": "option"
203
+ },
204
+ "gameEngine": {
205
+ "char": "e",
206
+ "description": "Set the game engine",
207
+ "name": "gameEngine",
208
+ "hasDynamicHelp": false,
209
+ "multiple": false,
210
+ "type": "option"
211
+ },
212
+ "gameEngineVersion": {
213
+ "char": "v",
214
+ "description": "Set the game engine version",
215
+ "name": "gameEngineVersion",
216
+ "hasDynamicHelp": false,
217
+ "multiple": false,
218
+ "type": "option"
219
+ },
220
+ "iosBundleId": {
221
+ "char": "i",
222
+ "description": "Set the iOS bundle ID",
223
+ "name": "iosBundleId",
224
+ "hasDynamicHelp": false,
225
+ "multiple": false,
226
+ "type": "option"
227
+ },
228
+ "androidPackageName": {
229
+ "char": "a",
230
+ "description": "Set the Android package name",
231
+ "name": "androidPackageName",
232
+ "hasDynamicHelp": false,
233
+ "multiple": false,
234
+ "type": "option"
187
235
  }
188
236
  },
189
237
  "hasDynamicHelp": false,
@@ -228,6 +276,14 @@
228
276
  "allowNo": false,
229
277
  "type": "boolean"
230
278
  },
279
+ "name": {
280
+ "char": "n",
281
+ "description": "The name of the game",
282
+ "name": "name",
283
+ "hasDynamicHelp": false,
284
+ "multiple": false,
285
+ "type": "option"
286
+ },
231
287
  "buildNumber": {
232
288
  "char": "b",
233
289
  "description": "Set the build number",
@@ -470,37 +526,126 @@
470
526
  },
471
527
  "game:wizard": {
472
528
  "aliases": [],
473
- "args": {},
529
+ "args": {
530
+ "platform": {
531
+ "description": "The platform to run the wizard for. This can be \"android\" or \"ios\"",
532
+ "name": "platform",
533
+ "required": false
534
+ }
535
+ },
474
536
  "description": "Runs all the steps for the specific platform",
475
537
  "examples": [
476
- "<%= config.bin %> <%= command.id %>"
538
+ "<%= config.bin %> <%= command.id %> ios",
539
+ "<%= config.bin %> <%= command.id %> android"
540
+ ],
541
+ "flags": {},
542
+ "hasDynamicHelp": false,
543
+ "hiddenAliases": [],
544
+ "id": "game:wizard",
545
+ "pluginAlias": "shipthis",
546
+ "pluginName": "shipthis",
547
+ "pluginType": "core",
548
+ "strict": true,
549
+ "enableJsonFlag": false,
550
+ "isESM": true,
551
+ "relativePath": [
552
+ "dist",
553
+ "commands",
554
+ "game",
555
+ "wizard.js"
556
+ ]
557
+ },
558
+ "internal:fastlane": {
559
+ "aliases": [],
560
+ "args": {
561
+ "username": {
562
+ "description": "Your Apple email address",
563
+ "name": "username",
564
+ "required": true
565
+ },
566
+ "file": {
567
+ "description": "Path where the fastlane session will be written",
568
+ "name": "file",
569
+ "required": true
570
+ }
571
+ },
572
+ "description": "Output a fastlane session file which can be used with xcodes",
573
+ "examples": [
574
+ "<%= config.bin %> <%= command.id %>",
575
+ "<%= config.bin %> <%= command.id %> --force --username me@email.nowhere"
477
576
  ],
478
577
  "flags": {
479
- "forceStep": {
578
+ "force": {
480
579
  "char": "f",
481
- "description": "Force a specific step to run.",
482
- "name": "forceStep",
580
+ "name": "force",
581
+ "allowNo": false,
582
+ "type": "boolean"
583
+ }
584
+ },
585
+ "hasDynamicHelp": false,
586
+ "hiddenAliases": [],
587
+ "id": "internal:fastlane",
588
+ "pluginAlias": "shipthis",
589
+ "pluginName": "shipthis",
590
+ "pluginType": "core",
591
+ "strict": true,
592
+ "enableJsonFlag": false,
593
+ "isESM": true,
594
+ "relativePath": [
595
+ "dist",
596
+ "commands",
597
+ "internal",
598
+ "fastlane.js"
599
+ ]
600
+ },
601
+ "internal:readme": {
602
+ "aliases": [],
603
+ "args": {
604
+ "outputDir": {
605
+ "description": "The directory where the readme files will be written",
606
+ "name": "outputDir",
607
+ "required": true
608
+ }
609
+ },
610
+ "description": "Generate the readme files for the commands",
611
+ "examples": [
612
+ "<%= config.bin %> <%= command.id %>"
613
+ ],
614
+ "flags": {
615
+ "notDryRun": {
616
+ "char": "n",
617
+ "description": "Set to actually write the files (will not overwrite)",
618
+ "name": "notDryRun",
619
+ "allowNo": false,
620
+ "type": "boolean"
621
+ },
622
+ "overWrite": {
623
+ "char": "o",
624
+ "description": "Overwrite existing files",
625
+ "name": "overWrite",
626
+ "allowNo": false,
627
+ "type": "boolean"
628
+ },
629
+ "depth": {
630
+ "char": "d",
631
+ "description": "The depth of the topic tree to render as separate files",
632
+ "name": "depth",
483
633
  "hasDynamicHelp": false,
484
634
  "multiple": false,
485
635
  "type": "option"
486
636
  },
487
- "platform": {
488
- "char": "p",
489
- "description": "The platform to run the wizard for",
490
- "name": "platform",
491
- "required": false,
492
- "default": "ios",
637
+ "only": {
638
+ "char": "l",
639
+ "description": "Glob pattern - will only write the files which match",
640
+ "name": "only",
493
641
  "hasDynamicHelp": false,
494
642
  "multiple": false,
495
- "options": [
496
- "ios"
497
- ],
498
643
  "type": "option"
499
644
  }
500
645
  },
501
646
  "hasDynamicHelp": false,
502
647
  "hiddenAliases": [],
503
- "id": "game:wizard",
648
+ "id": "internal:readme",
504
649
  "pluginAlias": "shipthis",
505
650
  "pluginName": "shipthis",
506
651
  "pluginType": "core",
@@ -510,8 +655,8 @@
510
655
  "relativePath": [
511
656
  "dist",
512
657
  "commands",
513
- "game",
514
- "wizard.js"
658
+ "internal",
659
+ "readme.js"
515
660
  ]
516
661
  },
517
662
  "apple:apiKey:create": {
@@ -663,34 +808,59 @@
663
808
  "status.js"
664
809
  ]
665
810
  },
666
- "game:build:download": {
811
+ "apple:certificate:create": {
667
812
  "aliases": [],
668
- "args": {
669
- "build_id": {
670
- "description": "The ID of the build to download",
671
- "name": "build_id",
672
- "required": true
813
+ "args": {},
814
+ "description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
815
+ "examples": [
816
+ "<%= config.bin %> <%= command.id %>",
817
+ "<%= config.bin %> <%= command.id %> --force"
818
+ ],
819
+ "flags": {
820
+ "force": {
821
+ "char": "f",
822
+ "name": "force",
823
+ "allowNo": false,
824
+ "type": "boolean"
673
825
  },
826
+ "quiet": {
827
+ "char": "q",
828
+ "description": "Avoid output except for interactions and errors",
829
+ "name": "quiet",
830
+ "allowNo": false,
831
+ "type": "boolean"
832
+ }
833
+ },
834
+ "hasDynamicHelp": false,
835
+ "hiddenAliases": [],
836
+ "id": "apple:certificate:create",
837
+ "pluginAlias": "shipthis",
838
+ "pluginName": "shipthis",
839
+ "pluginType": "core",
840
+ "strict": true,
841
+ "isESM": true,
842
+ "relativePath": [
843
+ "dist",
844
+ "commands",
845
+ "apple",
846
+ "certificate",
847
+ "create.js"
848
+ ]
849
+ },
850
+ "apple:certificate:export": {
851
+ "aliases": [],
852
+ "args": {
674
853
  "file": {
675
- "description": "Name of the file to output",
854
+ "description": "Name of the ZIP file to create",
676
855
  "name": "file",
677
856
  "required": true
678
857
  }
679
858
  },
680
- "description": "Downloads the given build artifact to the specified file",
859
+ "description": "Saves the current Apple Distribution Certificate to a ZIP file.",
681
860
  "examples": [
682
- "<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
683
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
861
+ "<%= config.bin %> <%= command.id %> userCert.zip"
684
862
  ],
685
863
  "flags": {
686
- "gameId": {
687
- "char": "g",
688
- "description": "The ID of the game",
689
- "name": "gameId",
690
- "hasDynamicHelp": false,
691
- "multiple": false,
692
- "type": "option"
693
- },
694
864
  "force": {
695
865
  "char": "f",
696
866
  "description": "Overwrite the file if it already exists",
@@ -701,7 +871,7 @@
701
871
  },
702
872
  "hasDynamicHelp": false,
703
873
  "hiddenAliases": [],
704
- "id": "game:build:download",
874
+ "id": "apple:certificate:export",
705
875
  "pluginAlias": "shipthis",
706
876
  "pluginName": "shipthis",
707
877
  "pluginType": "core",
@@ -711,23 +881,412 @@
711
881
  "relativePath": [
712
882
  "dist",
713
883
  "commands",
714
- "game",
715
- "build",
716
- "download.js"
884
+ "apple",
885
+ "certificate",
886
+ "export.js"
717
887
  ]
718
888
  },
719
- "game:build:list": {
889
+ "apple:certificate:import": {
890
+ "aliases": [],
891
+ "args": {
892
+ "file": {
893
+ "description": "Name of the ZIP file to import (must be in the same format as the export)",
894
+ "name": "file",
895
+ "required": true
896
+ }
897
+ },
898
+ "description": "Imports an iOS Distribution Certificate to your ShipThis account",
899
+ "examples": [
900
+ "<%= config.bin %> <%= command.id %> userCert.zip"
901
+ ],
902
+ "flags": {
903
+ "force": {
904
+ "char": "f",
905
+ "name": "force",
906
+ "allowNo": false,
907
+ "type": "boolean"
908
+ }
909
+ },
910
+ "hasDynamicHelp": false,
911
+ "hiddenAliases": [],
912
+ "id": "apple:certificate:import",
913
+ "pluginAlias": "shipthis",
914
+ "pluginName": "shipthis",
915
+ "pluginType": "core",
916
+ "strict": true,
917
+ "enableJsonFlag": false,
918
+ "isESM": true,
919
+ "relativePath": [
920
+ "dist",
921
+ "commands",
922
+ "apple",
923
+ "certificate",
924
+ "import.js"
925
+ ]
926
+ },
927
+ "apple:certificate:status": {
720
928
  "aliases": [],
721
929
  "args": {},
722
- "description": "Lists the builds for successful jobs of a game.",
930
+ "description": "Displays the status of the iOS Distribution certificates in your Apple and ShipThis accounts.\nThese are used to sign all of your iOS apps.",
723
931
  "examples": [
724
932
  "<%= config.bin %> <%= command.id %>",
725
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
726
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
933
+ "<%= config.bin %> <%= command.id %> --noAppleAuth"
727
934
  ],
728
935
  "flags": {
729
- "gameId": {
730
- "char": "g",
936
+ "noAppleAuth": {
937
+ "char": "f",
938
+ "name": "noAppleAuth",
939
+ "allowNo": false,
940
+ "type": "boolean"
941
+ }
942
+ },
943
+ "hasDynamicHelp": false,
944
+ "hiddenAliases": [],
945
+ "id": "apple:certificate:status",
946
+ "pluginAlias": "shipthis",
947
+ "pluginName": "shipthis",
948
+ "pluginType": "core",
949
+ "strict": true,
950
+ "enableJsonFlag": false,
951
+ "isESM": true,
952
+ "relativePath": [
953
+ "dist",
954
+ "commands",
955
+ "apple",
956
+ "certificate",
957
+ "status.js"
958
+ ]
959
+ },
960
+ "game:android:status": {
961
+ "aliases": [],
962
+ "args": {},
963
+ "description": "Shows the status of the setup for the Android platform for a specific game.",
964
+ "examples": [
965
+ "<%= config.bin %> <%= command.id %>",
966
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
967
+ ],
968
+ "flags": {
969
+ "gameId": {
970
+ "char": "g",
971
+ "description": "The ID of the game",
972
+ "name": "gameId",
973
+ "hasDynamicHelp": false,
974
+ "multiple": false,
975
+ "type": "option"
976
+ }
977
+ },
978
+ "hasDynamicHelp": false,
979
+ "hiddenAliases": [],
980
+ "id": "game:android:status",
981
+ "pluginAlias": "shipthis",
982
+ "pluginName": "shipthis",
983
+ "pluginType": "core",
984
+ "strict": true,
985
+ "enableJsonFlag": false,
986
+ "isESM": true,
987
+ "relativePath": [
988
+ "dist",
989
+ "commands",
990
+ "game",
991
+ "android",
992
+ "status.js"
993
+ ]
994
+ },
995
+ "game:android:wizard": {
996
+ "aliases": [],
997
+ "args": {},
998
+ "description": "Prototype Android Wizard",
999
+ "examples": [
1000
+ "<%= config.bin %> <%= command.id %>"
1001
+ ],
1002
+ "flags": {
1003
+ "name": {
1004
+ "char": "n",
1005
+ "description": "The name of the game",
1006
+ "name": "name",
1007
+ "hasDynamicHelp": false,
1008
+ "multiple": false,
1009
+ "type": "option"
1010
+ },
1011
+ "buildNumber": {
1012
+ "char": "b",
1013
+ "description": "Set the build number",
1014
+ "name": "buildNumber",
1015
+ "hasDynamicHelp": false,
1016
+ "multiple": false,
1017
+ "type": "option"
1018
+ },
1019
+ "semanticVersion": {
1020
+ "char": "s",
1021
+ "description": "Set the semantic version",
1022
+ "name": "semanticVersion",
1023
+ "hasDynamicHelp": false,
1024
+ "multiple": false,
1025
+ "type": "option"
1026
+ },
1027
+ "gameEngine": {
1028
+ "char": "e",
1029
+ "description": "Set the game engine",
1030
+ "name": "gameEngine",
1031
+ "hasDynamicHelp": false,
1032
+ "multiple": false,
1033
+ "type": "option"
1034
+ },
1035
+ "gameEngineVersion": {
1036
+ "char": "v",
1037
+ "description": "Set the game engine version",
1038
+ "name": "gameEngineVersion",
1039
+ "hasDynamicHelp": false,
1040
+ "multiple": false,
1041
+ "type": "option"
1042
+ },
1043
+ "iosBundleId": {
1044
+ "char": "i",
1045
+ "description": "Set the iOS bundle ID",
1046
+ "name": "iosBundleId",
1047
+ "hasDynamicHelp": false,
1048
+ "multiple": false,
1049
+ "type": "option"
1050
+ },
1051
+ "androidPackageName": {
1052
+ "char": "a",
1053
+ "description": "Set the Android package name",
1054
+ "name": "androidPackageName",
1055
+ "hasDynamicHelp": false,
1056
+ "multiple": false,
1057
+ "type": "option"
1058
+ }
1059
+ },
1060
+ "hasDynamicHelp": false,
1061
+ "hiddenAliases": [],
1062
+ "id": "game:android:wizard",
1063
+ "pluginAlias": "shipthis",
1064
+ "pluginName": "shipthis",
1065
+ "pluginType": "core",
1066
+ "strict": true,
1067
+ "enableJsonFlag": false,
1068
+ "isESM": true,
1069
+ "relativePath": [
1070
+ "dist",
1071
+ "commands",
1072
+ "game",
1073
+ "android",
1074
+ "wizard.js"
1075
+ ]
1076
+ },
1077
+ "game:build:download": {
1078
+ "aliases": [],
1079
+ "args": {
1080
+ "build_id": {
1081
+ "description": "The ID of the build to download",
1082
+ "name": "build_id",
1083
+ "required": true
1084
+ },
1085
+ "file": {
1086
+ "description": "Name of the file to output",
1087
+ "name": "file",
1088
+ "required": true
1089
+ }
1090
+ },
1091
+ "description": "Downloads the given build artifact to the specified file",
1092
+ "examples": [
1093
+ "<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
1094
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
1095
+ ],
1096
+ "flags": {
1097
+ "gameId": {
1098
+ "char": "g",
1099
+ "description": "The ID of the game",
1100
+ "name": "gameId",
1101
+ "hasDynamicHelp": false,
1102
+ "multiple": false,
1103
+ "type": "option"
1104
+ },
1105
+ "force": {
1106
+ "char": "f",
1107
+ "description": "Overwrite the file if it already exists",
1108
+ "name": "force",
1109
+ "allowNo": false,
1110
+ "type": "boolean"
1111
+ }
1112
+ },
1113
+ "hasDynamicHelp": false,
1114
+ "hiddenAliases": [],
1115
+ "id": "game:build:download",
1116
+ "pluginAlias": "shipthis",
1117
+ "pluginName": "shipthis",
1118
+ "pluginType": "core",
1119
+ "strict": true,
1120
+ "enableJsonFlag": false,
1121
+ "isESM": true,
1122
+ "relativePath": [
1123
+ "dist",
1124
+ "commands",
1125
+ "game",
1126
+ "build",
1127
+ "download.js"
1128
+ ]
1129
+ },
1130
+ "game:build:list": {
1131
+ "aliases": [],
1132
+ "args": {},
1133
+ "description": "Lists the builds for successful jobs of a game.",
1134
+ "examples": [
1135
+ "<%= config.bin %> <%= command.id %>",
1136
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
1137
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
1138
+ ],
1139
+ "flags": {
1140
+ "gameId": {
1141
+ "char": "g",
1142
+ "description": "The ID of the game",
1143
+ "name": "gameId",
1144
+ "hasDynamicHelp": false,
1145
+ "multiple": false,
1146
+ "type": "option"
1147
+ },
1148
+ "pageNumber": {
1149
+ "char": "p",
1150
+ "description": "The page number to show (starts at 0)",
1151
+ "name": "pageNumber",
1152
+ "default": 0,
1153
+ "hasDynamicHelp": false,
1154
+ "multiple": false,
1155
+ "type": "option"
1156
+ },
1157
+ "pageSize": {
1158
+ "char": "s",
1159
+ "description": "The number of items to show per page",
1160
+ "name": "pageSize",
1161
+ "default": 10,
1162
+ "hasDynamicHelp": false,
1163
+ "multiple": false,
1164
+ "type": "option"
1165
+ },
1166
+ "orderBy": {
1167
+ "char": "o",
1168
+ "description": "The field to order by",
1169
+ "name": "orderBy",
1170
+ "default": "createdAt",
1171
+ "hasDynamicHelp": false,
1172
+ "multiple": false,
1173
+ "options": [
1174
+ "createdAt",
1175
+ "updatedAt"
1176
+ ],
1177
+ "type": "option"
1178
+ },
1179
+ "order": {
1180
+ "char": "r",
1181
+ "description": "The order to sort by",
1182
+ "name": "order",
1183
+ "default": "desc",
1184
+ "hasDynamicHelp": false,
1185
+ "multiple": false,
1186
+ "options": [
1187
+ "asc",
1188
+ "desc"
1189
+ ],
1190
+ "type": "option"
1191
+ }
1192
+ },
1193
+ "hasDynamicHelp": false,
1194
+ "hiddenAliases": [],
1195
+ "id": "game:build:list",
1196
+ "pluginAlias": "shipthis",
1197
+ "pluginName": "shipthis",
1198
+ "pluginType": "core",
1199
+ "strict": true,
1200
+ "enableJsonFlag": false,
1201
+ "isESM": true,
1202
+ "relativePath": [
1203
+ "dist",
1204
+ "commands",
1205
+ "game",
1206
+ "build",
1207
+ "list.js"
1208
+ ]
1209
+ },
1210
+ "game:ios:status": {
1211
+ "aliases": [],
1212
+ "args": {},
1213
+ "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
1214
+ "examples": [
1215
+ "<%= config.bin %> <%= command.id %>",
1216
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1217
+ ],
1218
+ "flags": {
1219
+ "gameId": {
1220
+ "char": "g",
1221
+ "description": "The ID of the game",
1222
+ "name": "gameId",
1223
+ "hasDynamicHelp": false,
1224
+ "multiple": false,
1225
+ "type": "option"
1226
+ }
1227
+ },
1228
+ "hasDynamicHelp": false,
1229
+ "hiddenAliases": [],
1230
+ "id": "game:ios:status",
1231
+ "pluginAlias": "shipthis",
1232
+ "pluginName": "shipthis",
1233
+ "pluginType": "core",
1234
+ "strict": true,
1235
+ "enableJsonFlag": false,
1236
+ "isESM": true,
1237
+ "relativePath": [
1238
+ "dist",
1239
+ "commands",
1240
+ "game",
1241
+ "ios",
1242
+ "status.js"
1243
+ ]
1244
+ },
1245
+ "game:ios:wizard": {
1246
+ "aliases": [],
1247
+ "args": {},
1248
+ "description": "Runs all the steps for iOS",
1249
+ "examples": [
1250
+ "<%= config.bin %> <%= command.id %>"
1251
+ ],
1252
+ "flags": {
1253
+ "forceStep": {
1254
+ "char": "f",
1255
+ "description": "Force a specific step to run.",
1256
+ "name": "forceStep",
1257
+ "hasDynamicHelp": false,
1258
+ "multiple": false,
1259
+ "type": "option"
1260
+ }
1261
+ },
1262
+ "hasDynamicHelp": false,
1263
+ "hiddenAliases": [],
1264
+ "id": "game:ios:wizard",
1265
+ "pluginAlias": "shipthis",
1266
+ "pluginName": "shipthis",
1267
+ "pluginType": "core",
1268
+ "strict": true,
1269
+ "enableJsonFlag": false,
1270
+ "isESM": true,
1271
+ "relativePath": [
1272
+ "dist",
1273
+ "commands",
1274
+ "game",
1275
+ "ios",
1276
+ "wizard.js"
1277
+ ]
1278
+ },
1279
+ "game:job:list": {
1280
+ "aliases": [],
1281
+ "args": {},
1282
+ "description": "Lists the jobs for a game.",
1283
+ "examples": [
1284
+ "<%= config.bin %> <%= command.id %>",
1285
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1286
+ ],
1287
+ "flags": {
1288
+ "gameId": {
1289
+ "char": "g",
731
1290
  "description": "The ID of the game",
732
1291
  "name": "gameId",
733
1292
  "hasDynamicHelp": false,
@@ -781,47 +1340,161 @@
781
1340
  },
782
1341
  "hasDynamicHelp": false,
783
1342
  "hiddenAliases": [],
784
- "id": "game:build:list",
1343
+ "id": "game:job:list",
1344
+ "pluginAlias": "shipthis",
1345
+ "pluginName": "shipthis",
1346
+ "pluginType": "core",
1347
+ "strict": true,
1348
+ "enableJsonFlag": false,
1349
+ "isESM": true,
1350
+ "relativePath": [
1351
+ "dist",
1352
+ "commands",
1353
+ "game",
1354
+ "job",
1355
+ "list.js"
1356
+ ]
1357
+ },
1358
+ "game:job:status": {
1359
+ "aliases": [],
1360
+ "args": {
1361
+ "job_id": {
1362
+ "description": "The id of the job to get the status of",
1363
+ "name": "job_id",
1364
+ "required": true
1365
+ }
1366
+ },
1367
+ "description": "Shows the real-time status of a job.",
1368
+ "examples": [
1369
+ "<%= config.bin %> <%= command.id %> 4d32239e",
1370
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 4d32239e",
1371
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --lines 20 --follow 4d32239e"
1372
+ ],
1373
+ "flags": {
1374
+ "gameId": {
1375
+ "char": "g",
1376
+ "description": "The ID of the game",
1377
+ "name": "gameId",
1378
+ "hasDynamicHelp": false,
1379
+ "multiple": false,
1380
+ "type": "option"
1381
+ },
1382
+ "lines": {
1383
+ "char": "n",
1384
+ "description": "The number of lines to show",
1385
+ "name": "lines",
1386
+ "default": 10,
1387
+ "hasDynamicHelp": false,
1388
+ "multiple": false,
1389
+ "type": "option"
1390
+ },
1391
+ "follow": {
1392
+ "char": "f",
1393
+ "description": "Follow the log in real-time",
1394
+ "name": "follow",
1395
+ "allowNo": false,
1396
+ "type": "boolean"
1397
+ }
1398
+ },
1399
+ "hasDynamicHelp": false,
1400
+ "hiddenAliases": [],
1401
+ "id": "game:job:status",
1402
+ "pluginAlias": "shipthis",
1403
+ "pluginName": "shipthis",
1404
+ "pluginType": "core",
1405
+ "strict": true,
1406
+ "enableJsonFlag": false,
1407
+ "isESM": true,
1408
+ "relativePath": [
1409
+ "dist",
1410
+ "commands",
1411
+ "game",
1412
+ "job",
1413
+ "status.js"
1414
+ ]
1415
+ },
1416
+ "game:android:apiKey:connect": {
1417
+ "aliases": [],
1418
+ "args": {},
1419
+ "description": "Connects ShipThis with Google for managing Service Account API Keys for an Android game",
1420
+ "examples": [
1421
+ "<%= config.bin %> <%= command.id %>",
1422
+ "<%= config.bin %> <%= command.id %> --force",
1423
+ "<%= config.bin %> <%= command.id %> --disconnect"
1424
+ ],
1425
+ "flags": {
1426
+ "gameId": {
1427
+ "char": "g",
1428
+ "description": "The ID of the game",
1429
+ "name": "gameId",
1430
+ "hasDynamicHelp": false,
1431
+ "multiple": false,
1432
+ "type": "option"
1433
+ },
1434
+ "force": {
1435
+ "char": "f",
1436
+ "name": "force",
1437
+ "allowNo": false,
1438
+ "type": "boolean"
1439
+ },
1440
+ "disconnect": {
1441
+ "char": "d",
1442
+ "name": "disconnect",
1443
+ "allowNo": false,
1444
+ "type": "boolean"
1445
+ }
1446
+ },
1447
+ "hasDynamicHelp": false,
1448
+ "hiddenAliases": [],
1449
+ "id": "game:android:apiKey:connect",
785
1450
  "pluginAlias": "shipthis",
786
1451
  "pluginName": "shipthis",
787
1452
  "pluginType": "core",
788
1453
  "strict": true,
789
- "enableJsonFlag": false,
790
1454
  "isESM": true,
791
1455
  "relativePath": [
792
1456
  "dist",
793
1457
  "commands",
794
1458
  "game",
795
- "build",
796
- "list.js"
1459
+ "android",
1460
+ "apiKey",
1461
+ "connect.js"
797
1462
  ]
798
1463
  },
799
- "apple:certificate:create": {
1464
+ "game:android:apiKey:create": {
800
1465
  "aliases": [],
801
1466
  "args": {},
802
- "description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
1467
+ "description": "Creates a new Android Service Account API Key for a game",
803
1468
  "examples": [
804
1469
  "<%= config.bin %> <%= command.id %>",
805
- "<%= config.bin %> <%= command.id %> --force"
1470
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
806
1471
  ],
807
1472
  "flags": {
808
- "force": {
809
- "char": "f",
810
- "name": "force",
1473
+ "gameId": {
1474
+ "char": "g",
1475
+ "description": "The ID of the game",
1476
+ "name": "gameId",
1477
+ "hasDynamicHelp": false,
1478
+ "multiple": false,
1479
+ "type": "option"
1480
+ },
1481
+ "waitForAuth": {
1482
+ "char": "w",
1483
+ "description": "Wait for Google Authentication (10 mins).",
1484
+ "name": "waitForAuth",
811
1485
  "allowNo": false,
812
1486
  "type": "boolean"
813
1487
  },
814
- "quiet": {
815
- "char": "q",
816
- "description": "Avoid output except for interactions and errors",
817
- "name": "quiet",
1488
+ "force": {
1489
+ "char": "f",
1490
+ "name": "force",
818
1491
  "allowNo": false,
819
1492
  "type": "boolean"
820
1493
  }
821
1494
  },
822
1495
  "hasDynamicHelp": false,
823
1496
  "hiddenAliases": [],
824
- "id": "apple:certificate:create",
1497
+ "id": "game:android:apiKey:create",
825
1498
  "pluginAlias": "shipthis",
826
1499
  "pluginName": "shipthis",
827
1500
  "pluginType": "core",
@@ -830,12 +1503,13 @@
830
1503
  "relativePath": [
831
1504
  "dist",
832
1505
  "commands",
833
- "apple",
834
- "certificate",
1506
+ "game",
1507
+ "android",
1508
+ "apiKey",
835
1509
  "create.js"
836
1510
  ]
837
1511
  },
838
- "apple:certificate:export": {
1512
+ "game:android:apiKey:export": {
839
1513
  "aliases": [],
840
1514
  "args": {
841
1515
  "file": {
@@ -844,11 +1518,19 @@
844
1518
  "required": true
845
1519
  }
846
1520
  },
847
- "description": "Saves the current Apple Distribution Certificate to a ZIP file.",
1521
+ "description": "Saves the current Android Service Account API Key to a ZIP file",
848
1522
  "examples": [
849
- "<%= config.bin %> <%= command.id %> userCert.zip"
1523
+ "<%= config.bin %> <%= command.id %> keyStore.zip"
850
1524
  ],
851
1525
  "flags": {
1526
+ "gameId": {
1527
+ "char": "g",
1528
+ "description": "The ID of the game",
1529
+ "name": "gameId",
1530
+ "hasDynamicHelp": false,
1531
+ "multiple": false,
1532
+ "type": "option"
1533
+ },
852
1534
  "force": {
853
1535
  "char": "f",
854
1536
  "description": "Overwrite the file if it already exists",
@@ -859,22 +1541,22 @@
859
1541
  },
860
1542
  "hasDynamicHelp": false,
861
1543
  "hiddenAliases": [],
862
- "id": "apple:certificate:export",
1544
+ "id": "game:android:apiKey:export",
863
1545
  "pluginAlias": "shipthis",
864
1546
  "pluginName": "shipthis",
865
1547
  "pluginType": "core",
866
1548
  "strict": true,
867
- "enableJsonFlag": false,
868
1549
  "isESM": true,
869
1550
  "relativePath": [
870
1551
  "dist",
871
1552
  "commands",
872
- "apple",
873
- "certificate",
1553
+ "game",
1554
+ "android",
1555
+ "apiKey",
874
1556
  "export.js"
875
1557
  ]
876
1558
  },
877
- "apple:certificate:import": {
1559
+ "game:android:apiKey:import": {
878
1560
  "aliases": [],
879
1561
  "args": {
880
1562
  "file": {
@@ -883,11 +1565,19 @@
883
1565
  "required": true
884
1566
  }
885
1567
  },
886
- "description": "Imports an iOS Distribution Certificate to your ShipThis account",
1568
+ "description": "Imports an Android Service Account API Key to your ShipThis account for the specified game.",
887
1569
  "examples": [
888
- "<%= config.bin %> <%= command.id %> userCert.zip"
1570
+ "<%= config.bin %> <%= command.id %>"
889
1571
  ],
890
1572
  "flags": {
1573
+ "gameId": {
1574
+ "char": "g",
1575
+ "description": "The ID of the game",
1576
+ "name": "gameId",
1577
+ "hasDynamicHelp": false,
1578
+ "multiple": false,
1579
+ "type": "option"
1580
+ },
891
1581
  "force": {
892
1582
  "char": "f",
893
1583
  "name": "force",
@@ -897,58 +1587,86 @@
897
1587
  },
898
1588
  "hasDynamicHelp": false,
899
1589
  "hiddenAliases": [],
900
- "id": "apple:certificate:import",
1590
+ "id": "game:android:apiKey:import",
901
1591
  "pluginAlias": "shipthis",
902
1592
  "pluginName": "shipthis",
903
1593
  "pluginType": "core",
904
1594
  "strict": true,
905
- "enableJsonFlag": false,
906
1595
  "isESM": true,
907
1596
  "relativePath": [
908
1597
  "dist",
909
1598
  "commands",
910
- "apple",
911
- "certificate",
1599
+ "game",
1600
+ "android",
1601
+ "apiKey",
912
1602
  "import.js"
913
1603
  ]
914
1604
  },
915
- "apple:certificate:status": {
1605
+ "game:android:apiKey:invite": {
916
1606
  "aliases": [],
917
- "args": {},
918
- "description": "Displays the status of the iOS Distribution certificates in your Apple and ShipThis accounts.\nThese are used to sign all of your iOS apps.",
1607
+ "args": {
1608
+ "accountId": {
1609
+ "description": "The Google Play Account ID",
1610
+ "name": "accountId",
1611
+ "required": false
1612
+ }
1613
+ },
1614
+ "description": "Invites the Service Account to your Google Play Account.",
919
1615
  "examples": [
920
- "<%= config.bin %> <%= command.id %>",
921
- "<%= config.bin %> <%= command.id %> --noAppleAuth"
1616
+ "<%= config.bin %> <%= command.id %>"
922
1617
  ],
923
1618
  "flags": {
924
- "noAppleAuth": {
925
- "char": "f",
926
- "name": "noAppleAuth",
1619
+ "gameId": {
1620
+ "char": "g",
1621
+ "description": "The ID of the game",
1622
+ "name": "gameId",
1623
+ "hasDynamicHelp": false,
1624
+ "multiple": false,
1625
+ "type": "option"
1626
+ },
1627
+ "prompt": {
1628
+ "char": "p",
1629
+ "description": "Prompt for the Google Play Account ID",
1630
+ "name": "prompt",
1631
+ "allowNo": false,
1632
+ "type": "boolean"
1633
+ },
1634
+ "waitForGoogleApp": {
1635
+ "char": "p",
1636
+ "description": "Waits for the Google Play app to be created (10 mins).",
1637
+ "name": "waitForGoogleApp",
1638
+ "allowNo": false,
1639
+ "type": "boolean"
1640
+ },
1641
+ "waitForAuth": {
1642
+ "char": "w",
1643
+ "description": "Wait for Google Authentication (10 mins).",
1644
+ "name": "waitForAuth",
927
1645
  "allowNo": false,
928
1646
  "type": "boolean"
929
1647
  }
930
1648
  },
931
1649
  "hasDynamicHelp": false,
932
1650
  "hiddenAliases": [],
933
- "id": "apple:certificate:status",
1651
+ "id": "game:android:apiKey:invite",
934
1652
  "pluginAlias": "shipthis",
935
1653
  "pluginName": "shipthis",
936
1654
  "pluginType": "core",
937
1655
  "strict": true,
938
- "enableJsonFlag": false,
939
1656
  "isESM": true,
940
1657
  "relativePath": [
941
1658
  "dist",
942
1659
  "commands",
943
- "apple",
944
- "certificate",
945
- "status.js"
1660
+ "game",
1661
+ "android",
1662
+ "apiKey",
1663
+ "invite.js"
946
1664
  ]
947
1665
  },
948
- "game:ios:status": {
1666
+ "game:android:apiKey:status": {
949
1667
  "aliases": [],
950
1668
  "args": {},
951
- "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
1669
+ "description": "Displays the status of the Android Service Account API Key for a specific game.",
952
1670
  "examples": [
953
1671
  "<%= config.bin %> <%= command.id %>",
954
1672
  "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
@@ -965,25 +1683,25 @@
965
1683
  },
966
1684
  "hasDynamicHelp": false,
967
1685
  "hiddenAliases": [],
968
- "id": "game:ios:status",
1686
+ "id": "game:android:apiKey:status",
969
1687
  "pluginAlias": "shipthis",
970
1688
  "pluginName": "shipthis",
971
1689
  "pluginType": "core",
972
1690
  "strict": true,
973
- "enableJsonFlag": false,
974
1691
  "isESM": true,
975
1692
  "relativePath": [
976
1693
  "dist",
977
1694
  "commands",
978
1695
  "game",
979
- "ios",
1696
+ "android",
1697
+ "apiKey",
980
1698
  "status.js"
981
1699
  ]
982
1700
  },
983
- "game:job:list": {
1701
+ "game:android:keyStore:create": {
984
1702
  "aliases": [],
985
1703
  "args": {},
986
- "description": "Lists the jobs for a game.",
1704
+ "description": "Creates a new Android Keystore for a game",
987
1705
  "examples": [
988
1706
  "<%= config.bin %> <%= command.id %>",
989
1707
  "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
@@ -997,54 +1715,63 @@
997
1715
  "multiple": false,
998
1716
  "type": "option"
999
1717
  },
1000
- "pageNumber": {
1001
- "char": "p",
1002
- "description": "The page number to show (starts at 0)",
1003
- "name": "pageNumber",
1004
- "default": 0,
1005
- "hasDynamicHelp": false,
1006
- "multiple": false,
1007
- "type": "option"
1008
- },
1009
- "pageSize": {
1010
- "char": "s",
1011
- "description": "The number of items to show per page",
1012
- "name": "pageSize",
1013
- "default": 10,
1014
- "hasDynamicHelp": false,
1015
- "multiple": false,
1016
- "type": "option"
1017
- },
1018
- "orderBy": {
1019
- "char": "o",
1020
- "description": "The field to order by",
1021
- "name": "orderBy",
1022
- "default": "createdAt",
1718
+ "force": {
1719
+ "char": "f",
1720
+ "name": "force",
1721
+ "allowNo": false,
1722
+ "type": "boolean"
1723
+ }
1724
+ },
1725
+ "hasDynamicHelp": false,
1726
+ "hiddenAliases": [],
1727
+ "id": "game:android:keyStore:create",
1728
+ "pluginAlias": "shipthis",
1729
+ "pluginName": "shipthis",
1730
+ "pluginType": "core",
1731
+ "strict": true,
1732
+ "isESM": true,
1733
+ "relativePath": [
1734
+ "dist",
1735
+ "commands",
1736
+ "game",
1737
+ "android",
1738
+ "keyStore",
1739
+ "create.js"
1740
+ ]
1741
+ },
1742
+ "game:android:keyStore:export": {
1743
+ "aliases": [],
1744
+ "args": {
1745
+ "file": {
1746
+ "description": "Name of the ZIP file to create",
1747
+ "name": "file",
1748
+ "required": true
1749
+ }
1750
+ },
1751
+ "description": "Saves the current Android Keystore to a ZIP file",
1752
+ "examples": [
1753
+ "<%= config.bin %> <%= command.id %> keyStore.zip"
1754
+ ],
1755
+ "flags": {
1756
+ "gameId": {
1757
+ "char": "g",
1758
+ "description": "The ID of the game",
1759
+ "name": "gameId",
1023
1760
  "hasDynamicHelp": false,
1024
1761
  "multiple": false,
1025
- "options": [
1026
- "createdAt",
1027
- "updatedAt"
1028
- ],
1029
1762
  "type": "option"
1030
1763
  },
1031
- "order": {
1032
- "char": "r",
1033
- "description": "The order to sort by",
1034
- "name": "order",
1035
- "default": "desc",
1036
- "hasDynamicHelp": false,
1037
- "multiple": false,
1038
- "options": [
1039
- "asc",
1040
- "desc"
1041
- ],
1042
- "type": "option"
1764
+ "force": {
1765
+ "char": "f",
1766
+ "description": "Overwrite the file if it already exists",
1767
+ "name": "force",
1768
+ "allowNo": false,
1769
+ "type": "boolean"
1043
1770
  }
1044
1771
  },
1045
1772
  "hasDynamicHelp": false,
1046
1773
  "hiddenAliases": [],
1047
- "id": "game:job:list",
1774
+ "id": "game:android:keyStore:export",
1048
1775
  "pluginAlias": "shipthis",
1049
1776
  "pluginName": "shipthis",
1050
1777
  "pluginType": "core",
@@ -1055,24 +1782,23 @@
1055
1782
  "dist",
1056
1783
  "commands",
1057
1784
  "game",
1058
- "job",
1059
- "list.js"
1785
+ "android",
1786
+ "keyStore",
1787
+ "export.js"
1060
1788
  ]
1061
1789
  },
1062
- "game:job:status": {
1790
+ "game:android:keyStore:import": {
1063
1791
  "aliases": [],
1064
1792
  "args": {
1065
- "job_id": {
1066
- "description": "The id of the job to get the status of",
1067
- "name": "job_id",
1793
+ "file": {
1794
+ "description": "Name of the ZIP file to import (must be in the same format as the export)",
1795
+ "name": "file",
1068
1796
  "required": true
1069
1797
  }
1070
1798
  },
1071
- "description": "Shows the real-time status of a job.",
1799
+ "description": "Imports an Android Keystore to your ShipThis account for the specified game.",
1072
1800
  "examples": [
1073
- "<%= config.bin %> <%= command.id %> 4d32239e",
1074
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 4d32239e",
1075
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --lines 20 --follow 4d32239e"
1801
+ "<%= config.bin %> <%= command.id %>"
1076
1802
  ],
1077
1803
  "flags": {
1078
1804
  "gameId": {
@@ -1083,26 +1809,16 @@
1083
1809
  "multiple": false,
1084
1810
  "type": "option"
1085
1811
  },
1086
- "lines": {
1087
- "char": "n",
1088
- "description": "The number of lines to show",
1089
- "name": "lines",
1090
- "default": 10,
1091
- "hasDynamicHelp": false,
1092
- "multiple": false,
1093
- "type": "option"
1094
- },
1095
- "follow": {
1812
+ "force": {
1096
1813
  "char": "f",
1097
- "description": "Follow the log in real-time",
1098
- "name": "follow",
1814
+ "name": "force",
1099
1815
  "allowNo": false,
1100
1816
  "type": "boolean"
1101
1817
  }
1102
1818
  },
1103
1819
  "hasDynamicHelp": false,
1104
1820
  "hiddenAliases": [],
1105
- "id": "game:job:status",
1821
+ "id": "game:android:keyStore:import",
1106
1822
  "pluginAlias": "shipthis",
1107
1823
  "pluginName": "shipthis",
1108
1824
  "pluginType": "core",
@@ -1113,7 +1829,44 @@
1113
1829
  "dist",
1114
1830
  "commands",
1115
1831
  "game",
1116
- "job",
1832
+ "android",
1833
+ "keyStore",
1834
+ "import.js"
1835
+ ]
1836
+ },
1837
+ "game:android:keyStore:status": {
1838
+ "aliases": [],
1839
+ "args": {},
1840
+ "description": "Displays the status of the Android Keystore for a specific game.",
1841
+ "examples": [
1842
+ "<%= config.bin %> <%= command.id %>",
1843
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1844
+ ],
1845
+ "flags": {
1846
+ "gameId": {
1847
+ "char": "g",
1848
+ "description": "The ID of the game",
1849
+ "name": "gameId",
1850
+ "hasDynamicHelp": false,
1851
+ "multiple": false,
1852
+ "type": "option"
1853
+ }
1854
+ },
1855
+ "hasDynamicHelp": false,
1856
+ "hiddenAliases": [],
1857
+ "id": "game:android:keyStore:status",
1858
+ "pluginAlias": "shipthis",
1859
+ "pluginName": "shipthis",
1860
+ "pluginType": "core",
1861
+ "strict": true,
1862
+ "enableJsonFlag": false,
1863
+ "isESM": true,
1864
+ "relativePath": [
1865
+ "dist",
1866
+ "commands",
1867
+ "game",
1868
+ "android",
1869
+ "keyStore",
1117
1870
  "status.js"
1118
1871
  ]
1119
1872
  },
@@ -1508,5 +2261,5 @@
1508
2261
  ]
1509
2262
  }
1510
2263
  },
1511
- "version": "0.0.41"
2264
+ "version": "0.1.1"
1512
2265
  }