shipthis 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -34
- package/dist/{App-Cp2dHD6n.js → App-SiSXLW2s.js} +1 -1
- package/dist/{AppleBundleIdDetails-ENjeKNOv.js → AppleBundleIdDetails-Nk85zNWP.js} +3 -3
- package/dist/{UserCredentialsTable-BMYMmTfG.js → UserCredentialsTable-CyNAsFc1.js} +2 -2
- package/dist/{baseAppleCommand-BLSOrhPf.js → baseAppleCommand-IhowpKpk.js} +1 -1
- package/dist/{baseGameCommand-DDj0395o.js → baseGameCommand-BeUNc6Wy.js} +1 -1
- package/dist/commands/apple/apiKey/create.js +4 -4
- package/dist/commands/apple/apiKey/export.js +3 -3
- package/dist/commands/apple/apiKey/import.js +3 -3
- package/dist/commands/apple/apiKey/status.js +4 -4
- package/dist/commands/apple/certificate/create.js +4 -4
- package/dist/commands/apple/certificate/export.js +3 -3
- package/dist/commands/apple/certificate/import.js +3 -3
- package/dist/commands/apple/certificate/status.js +4 -4
- package/dist/commands/apple/login.js +2 -2
- package/dist/commands/apple/status.js +3 -3
- package/dist/commands/dashboard.js +1 -1
- package/dist/commands/game/build/download.js +2 -2
- package/dist/commands/game/build/list.js +5 -5
- package/dist/commands/game/create.js +2 -2
- package/dist/commands/game/details.js +3 -3
- package/dist/commands/game/export.js +1 -1
- package/dist/commands/game/ios/app/addTester.js +4 -4
- package/dist/commands/game/ios/app/create.js +3 -3
- package/dist/commands/game/ios/app/status.js +5 -5
- package/dist/commands/game/ios/app/sync.js +3 -3
- package/dist/commands/game/ios/profile/create.js +4 -4
- package/dist/commands/game/ios/profile/export.js +3 -3
- package/dist/commands/game/ios/profile/import.js +3 -3
- package/dist/commands/game/ios/profile/status.js +3 -3
- package/dist/commands/game/ios/status.js +6 -6
- package/dist/commands/game/job/list.js +4 -4
- package/dist/commands/game/job/status.js +5 -5
- package/dist/commands/game/list.js +3 -3
- package/dist/commands/game/ship.js +2 -2
- package/dist/commands/game/status.js +3 -3
- package/dist/commands/game/wizard.js +1 -1
- package/dist/commands/login.js +2 -2
- package/dist/commands/status.js +2 -2
- package/dist/{export-B1yFtX2m.js → export-CQ_P94We.js} +1 -1
- package/dist/{import-CZoi54_C.js → import-BGHUTVNR.js} +1 -1
- package/dist/{index-DCqAd30u.js → index-CNME7EEo.js} +1 -1
- package/dist/{upload-S09gow_I.js → upload-D6ScllRL.js} +1 -1
- package/dist/{useAppleApp-DUGmY7Zx.js → useAppleApp-D0wyTA6C.js} +1 -1
- package/dist/{useAppleBundleId-2Lguhhia.js → useAppleBundleId-VKmaX7sP.js} +1 -1
- package/dist/{useBuilds-FnvpFuuU.js → useBuilds-e6LIXrOH.js} +3 -3
- package/dist/{useJob-CV3YKClU.js → useJob-D8xNld5t.js} +2 -2
- package/oclif.manifest.json +134 -134
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -661,6 +661,139 @@
|
|
|
661
661
|
"status.js"
|
|
662
662
|
]
|
|
663
663
|
},
|
|
664
|
+
"game:build:download": {
|
|
665
|
+
"aliases": [],
|
|
666
|
+
"args": {
|
|
667
|
+
"build_id": {
|
|
668
|
+
"description": "The ID of the build to download",
|
|
669
|
+
"name": "build_id",
|
|
670
|
+
"required": true
|
|
671
|
+
},
|
|
672
|
+
"file": {
|
|
673
|
+
"description": "Name of the file to output",
|
|
674
|
+
"name": "file",
|
|
675
|
+
"required": true
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"description": "Downloads the given build artifact to the specified file",
|
|
679
|
+
"examples": [
|
|
680
|
+
"<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
|
|
681
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
|
|
682
|
+
],
|
|
683
|
+
"flags": {
|
|
684
|
+
"gameId": {
|
|
685
|
+
"char": "g",
|
|
686
|
+
"description": "The ID of the game",
|
|
687
|
+
"name": "gameId",
|
|
688
|
+
"hasDynamicHelp": false,
|
|
689
|
+
"multiple": false,
|
|
690
|
+
"type": "option"
|
|
691
|
+
},
|
|
692
|
+
"force": {
|
|
693
|
+
"char": "f",
|
|
694
|
+
"description": "Overwrite the file if it already exists",
|
|
695
|
+
"name": "force",
|
|
696
|
+
"allowNo": false,
|
|
697
|
+
"type": "boolean"
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
"hasDynamicHelp": false,
|
|
701
|
+
"hiddenAliases": [],
|
|
702
|
+
"id": "game:build:download",
|
|
703
|
+
"pluginAlias": "shipthis",
|
|
704
|
+
"pluginName": "shipthis",
|
|
705
|
+
"pluginType": "core",
|
|
706
|
+
"strict": true,
|
|
707
|
+
"enableJsonFlag": false,
|
|
708
|
+
"isESM": true,
|
|
709
|
+
"relativePath": [
|
|
710
|
+
"dist",
|
|
711
|
+
"commands",
|
|
712
|
+
"game",
|
|
713
|
+
"build",
|
|
714
|
+
"download.js"
|
|
715
|
+
]
|
|
716
|
+
},
|
|
717
|
+
"game:build:list": {
|
|
718
|
+
"aliases": [],
|
|
719
|
+
"args": {},
|
|
720
|
+
"description": "Lists the builds for successful jobs of a game.",
|
|
721
|
+
"examples": [
|
|
722
|
+
"<%= config.bin %> <%= command.id %>",
|
|
723
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
724
|
+
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
725
|
+
],
|
|
726
|
+
"flags": {
|
|
727
|
+
"gameId": {
|
|
728
|
+
"char": "g",
|
|
729
|
+
"description": "The ID of the game",
|
|
730
|
+
"name": "gameId",
|
|
731
|
+
"hasDynamicHelp": false,
|
|
732
|
+
"multiple": false,
|
|
733
|
+
"type": "option"
|
|
734
|
+
},
|
|
735
|
+
"pageNumber": {
|
|
736
|
+
"char": "p",
|
|
737
|
+
"description": "The page number to show (starts at 0)",
|
|
738
|
+
"name": "pageNumber",
|
|
739
|
+
"default": 0,
|
|
740
|
+
"hasDynamicHelp": false,
|
|
741
|
+
"multiple": false,
|
|
742
|
+
"type": "option"
|
|
743
|
+
},
|
|
744
|
+
"pageSize": {
|
|
745
|
+
"char": "s",
|
|
746
|
+
"description": "The number of items to show per page",
|
|
747
|
+
"name": "pageSize",
|
|
748
|
+
"default": 10,
|
|
749
|
+
"hasDynamicHelp": false,
|
|
750
|
+
"multiple": false,
|
|
751
|
+
"type": "option"
|
|
752
|
+
},
|
|
753
|
+
"orderBy": {
|
|
754
|
+
"char": "o",
|
|
755
|
+
"description": "The field to order by",
|
|
756
|
+
"name": "orderBy",
|
|
757
|
+
"default": "createdAt",
|
|
758
|
+
"hasDynamicHelp": false,
|
|
759
|
+
"multiple": false,
|
|
760
|
+
"options": [
|
|
761
|
+
"createdAt",
|
|
762
|
+
"updatedAt"
|
|
763
|
+
],
|
|
764
|
+
"type": "option"
|
|
765
|
+
},
|
|
766
|
+
"order": {
|
|
767
|
+
"char": "r",
|
|
768
|
+
"description": "The order to sort by",
|
|
769
|
+
"name": "order",
|
|
770
|
+
"default": "desc",
|
|
771
|
+
"hasDynamicHelp": false,
|
|
772
|
+
"multiple": false,
|
|
773
|
+
"options": [
|
|
774
|
+
"asc",
|
|
775
|
+
"desc"
|
|
776
|
+
],
|
|
777
|
+
"type": "option"
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"hasDynamicHelp": false,
|
|
781
|
+
"hiddenAliases": [],
|
|
782
|
+
"id": "game:build:list",
|
|
783
|
+
"pluginAlias": "shipthis",
|
|
784
|
+
"pluginName": "shipthis",
|
|
785
|
+
"pluginType": "core",
|
|
786
|
+
"strict": true,
|
|
787
|
+
"enableJsonFlag": false,
|
|
788
|
+
"isESM": true,
|
|
789
|
+
"relativePath": [
|
|
790
|
+
"dist",
|
|
791
|
+
"commands",
|
|
792
|
+
"game",
|
|
793
|
+
"build",
|
|
794
|
+
"list.js"
|
|
795
|
+
]
|
|
796
|
+
},
|
|
664
797
|
"apple:apiKey:create": {
|
|
665
798
|
"aliases": [],
|
|
666
799
|
"args": {},
|
|
@@ -810,139 +943,6 @@
|
|
|
810
943
|
"status.js"
|
|
811
944
|
]
|
|
812
945
|
},
|
|
813
|
-
"game:build:download": {
|
|
814
|
-
"aliases": [],
|
|
815
|
-
"args": {
|
|
816
|
-
"build_id": {
|
|
817
|
-
"description": "The ID of the build to download",
|
|
818
|
-
"name": "build_id",
|
|
819
|
-
"required": true
|
|
820
|
-
},
|
|
821
|
-
"file": {
|
|
822
|
-
"description": "Name of the file to output",
|
|
823
|
-
"name": "file",
|
|
824
|
-
"required": true
|
|
825
|
-
}
|
|
826
|
-
},
|
|
827
|
-
"description": "Downloads the given build artifact to the specified file",
|
|
828
|
-
"examples": [
|
|
829
|
-
"<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
|
|
830
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
|
|
831
|
-
],
|
|
832
|
-
"flags": {
|
|
833
|
-
"gameId": {
|
|
834
|
-
"char": "g",
|
|
835
|
-
"description": "The ID of the game",
|
|
836
|
-
"name": "gameId",
|
|
837
|
-
"hasDynamicHelp": false,
|
|
838
|
-
"multiple": false,
|
|
839
|
-
"type": "option"
|
|
840
|
-
},
|
|
841
|
-
"force": {
|
|
842
|
-
"char": "f",
|
|
843
|
-
"description": "Overwrite the file if it already exists",
|
|
844
|
-
"name": "force",
|
|
845
|
-
"allowNo": false,
|
|
846
|
-
"type": "boolean"
|
|
847
|
-
}
|
|
848
|
-
},
|
|
849
|
-
"hasDynamicHelp": false,
|
|
850
|
-
"hiddenAliases": [],
|
|
851
|
-
"id": "game:build:download",
|
|
852
|
-
"pluginAlias": "shipthis",
|
|
853
|
-
"pluginName": "shipthis",
|
|
854
|
-
"pluginType": "core",
|
|
855
|
-
"strict": true,
|
|
856
|
-
"enableJsonFlag": false,
|
|
857
|
-
"isESM": true,
|
|
858
|
-
"relativePath": [
|
|
859
|
-
"dist",
|
|
860
|
-
"commands",
|
|
861
|
-
"game",
|
|
862
|
-
"build",
|
|
863
|
-
"download.js"
|
|
864
|
-
]
|
|
865
|
-
},
|
|
866
|
-
"game:build:list": {
|
|
867
|
-
"aliases": [],
|
|
868
|
-
"args": {},
|
|
869
|
-
"description": "Lists the builds for successful jobs of a game.",
|
|
870
|
-
"examples": [
|
|
871
|
-
"<%= config.bin %> <%= command.id %>",
|
|
872
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
|
|
873
|
-
"<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
|
|
874
|
-
],
|
|
875
|
-
"flags": {
|
|
876
|
-
"gameId": {
|
|
877
|
-
"char": "g",
|
|
878
|
-
"description": "The ID of the game",
|
|
879
|
-
"name": "gameId",
|
|
880
|
-
"hasDynamicHelp": false,
|
|
881
|
-
"multiple": false,
|
|
882
|
-
"type": "option"
|
|
883
|
-
},
|
|
884
|
-
"pageNumber": {
|
|
885
|
-
"char": "p",
|
|
886
|
-
"description": "The page number to show (starts at 0)",
|
|
887
|
-
"name": "pageNumber",
|
|
888
|
-
"default": 0,
|
|
889
|
-
"hasDynamicHelp": false,
|
|
890
|
-
"multiple": false,
|
|
891
|
-
"type": "option"
|
|
892
|
-
},
|
|
893
|
-
"pageSize": {
|
|
894
|
-
"char": "s",
|
|
895
|
-
"description": "The number of items to show per page",
|
|
896
|
-
"name": "pageSize",
|
|
897
|
-
"default": 10,
|
|
898
|
-
"hasDynamicHelp": false,
|
|
899
|
-
"multiple": false,
|
|
900
|
-
"type": "option"
|
|
901
|
-
},
|
|
902
|
-
"orderBy": {
|
|
903
|
-
"char": "o",
|
|
904
|
-
"description": "The field to order by",
|
|
905
|
-
"name": "orderBy",
|
|
906
|
-
"default": "createdAt",
|
|
907
|
-
"hasDynamicHelp": false,
|
|
908
|
-
"multiple": false,
|
|
909
|
-
"options": [
|
|
910
|
-
"createdAt",
|
|
911
|
-
"updatedAt"
|
|
912
|
-
],
|
|
913
|
-
"type": "option"
|
|
914
|
-
},
|
|
915
|
-
"order": {
|
|
916
|
-
"char": "r",
|
|
917
|
-
"description": "The order to sort by",
|
|
918
|
-
"name": "order",
|
|
919
|
-
"default": "desc",
|
|
920
|
-
"hasDynamicHelp": false,
|
|
921
|
-
"multiple": false,
|
|
922
|
-
"options": [
|
|
923
|
-
"asc",
|
|
924
|
-
"desc"
|
|
925
|
-
],
|
|
926
|
-
"type": "option"
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
"hasDynamicHelp": false,
|
|
930
|
-
"hiddenAliases": [],
|
|
931
|
-
"id": "game:build:list",
|
|
932
|
-
"pluginAlias": "shipthis",
|
|
933
|
-
"pluginName": "shipthis",
|
|
934
|
-
"pluginType": "core",
|
|
935
|
-
"strict": true,
|
|
936
|
-
"enableJsonFlag": false,
|
|
937
|
-
"isESM": true,
|
|
938
|
-
"relativePath": [
|
|
939
|
-
"dist",
|
|
940
|
-
"commands",
|
|
941
|
-
"game",
|
|
942
|
-
"build",
|
|
943
|
-
"list.js"
|
|
944
|
-
]
|
|
945
|
-
},
|
|
946
946
|
"game:ios:status": {
|
|
947
947
|
"aliases": [],
|
|
948
948
|
"args": {},
|
|
@@ -1506,5 +1506,5 @@
|
|
|
1506
1506
|
]
|
|
1507
1507
|
}
|
|
1508
1508
|
},
|
|
1509
|
-
"version": "0.0.
|
|
1509
|
+
"version": "0.0.7"
|
|
1510
1510
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "Game Shipping Tool",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.7",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://gitlab.com/shipthis.cc/shipthis-cli/-/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@expo/apple-utils": "
|
|
11
|
+
"@expo/apple-utils": "2.0.3",
|
|
12
12
|
"@expo/json-file": "^8.3.3",
|
|
13
13
|
"@oclif/core": "^4",
|
|
14
14
|
"@oclif/plugin-help": "^6",
|