shipthis 0.0.39 → 0.0.41
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/dist/commands/login.js +2 -1
- package/oclif.manifest.json +150 -150
- package/package.json +2 -1
package/dist/commands/login.js
CHANGED
|
@@ -55,7 +55,8 @@ class Login extends BaseCommand {
|
|
|
55
55
|
return otp2;
|
|
56
56
|
};
|
|
57
57
|
const otp = await getOTP();
|
|
58
|
-
const
|
|
58
|
+
const source = `shipthis-cli-${this.config.version}`;
|
|
59
|
+
const { data: shipThisUser } = await axios.post(`${API_URL}/auth/email/verify`, { email, otp, source });
|
|
59
60
|
const getAcceptedTermsResponse = async () => {
|
|
60
61
|
console.log(
|
|
61
62
|
`Please review the following documents:
|
package/oclif.manifest.json
CHANGED
|
@@ -514,155 +514,6 @@
|
|
|
514
514
|
"wizard.js"
|
|
515
515
|
]
|
|
516
516
|
},
|
|
517
|
-
"apple:certificate:create": {
|
|
518
|
-
"aliases": [],
|
|
519
|
-
"args": {},
|
|
520
|
-
"description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
|
|
521
|
-
"examples": [
|
|
522
|
-
"<%= config.bin %> <%= command.id %>",
|
|
523
|
-
"<%= config.bin %> <%= command.id %> --force"
|
|
524
|
-
],
|
|
525
|
-
"flags": {
|
|
526
|
-
"force": {
|
|
527
|
-
"char": "f",
|
|
528
|
-
"name": "force",
|
|
529
|
-
"allowNo": false,
|
|
530
|
-
"type": "boolean"
|
|
531
|
-
},
|
|
532
|
-
"quiet": {
|
|
533
|
-
"char": "q",
|
|
534
|
-
"description": "Avoid output except for interactions and errors",
|
|
535
|
-
"name": "quiet",
|
|
536
|
-
"allowNo": false,
|
|
537
|
-
"type": "boolean"
|
|
538
|
-
}
|
|
539
|
-
},
|
|
540
|
-
"hasDynamicHelp": false,
|
|
541
|
-
"hiddenAliases": [],
|
|
542
|
-
"id": "apple:certificate:create",
|
|
543
|
-
"pluginAlias": "shipthis",
|
|
544
|
-
"pluginName": "shipthis",
|
|
545
|
-
"pluginType": "core",
|
|
546
|
-
"strict": true,
|
|
547
|
-
"isESM": true,
|
|
548
|
-
"relativePath": [
|
|
549
|
-
"dist",
|
|
550
|
-
"commands",
|
|
551
|
-
"apple",
|
|
552
|
-
"certificate",
|
|
553
|
-
"create.js"
|
|
554
|
-
]
|
|
555
|
-
},
|
|
556
|
-
"apple:certificate:export": {
|
|
557
|
-
"aliases": [],
|
|
558
|
-
"args": {
|
|
559
|
-
"file": {
|
|
560
|
-
"description": "Name of the ZIP file to create",
|
|
561
|
-
"name": "file",
|
|
562
|
-
"required": true
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
"description": "Saves the current Apple Distribution Certificate to a ZIP file.",
|
|
566
|
-
"examples": [
|
|
567
|
-
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
568
|
-
],
|
|
569
|
-
"flags": {
|
|
570
|
-
"force": {
|
|
571
|
-
"char": "f",
|
|
572
|
-
"description": "Overwrite the file if it already exists",
|
|
573
|
-
"name": "force",
|
|
574
|
-
"allowNo": false,
|
|
575
|
-
"type": "boolean"
|
|
576
|
-
}
|
|
577
|
-
},
|
|
578
|
-
"hasDynamicHelp": false,
|
|
579
|
-
"hiddenAliases": [],
|
|
580
|
-
"id": "apple:certificate:export",
|
|
581
|
-
"pluginAlias": "shipthis",
|
|
582
|
-
"pluginName": "shipthis",
|
|
583
|
-
"pluginType": "core",
|
|
584
|
-
"strict": true,
|
|
585
|
-
"enableJsonFlag": false,
|
|
586
|
-
"isESM": true,
|
|
587
|
-
"relativePath": [
|
|
588
|
-
"dist",
|
|
589
|
-
"commands",
|
|
590
|
-
"apple",
|
|
591
|
-
"certificate",
|
|
592
|
-
"export.js"
|
|
593
|
-
]
|
|
594
|
-
},
|
|
595
|
-
"apple:certificate:import": {
|
|
596
|
-
"aliases": [],
|
|
597
|
-
"args": {
|
|
598
|
-
"file": {
|
|
599
|
-
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
600
|
-
"name": "file",
|
|
601
|
-
"required": true
|
|
602
|
-
}
|
|
603
|
-
},
|
|
604
|
-
"description": "Imports an iOS Distribution Certificate to your ShipThis account",
|
|
605
|
-
"examples": [
|
|
606
|
-
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
607
|
-
],
|
|
608
|
-
"flags": {
|
|
609
|
-
"force": {
|
|
610
|
-
"char": "f",
|
|
611
|
-
"name": "force",
|
|
612
|
-
"allowNo": false,
|
|
613
|
-
"type": "boolean"
|
|
614
|
-
}
|
|
615
|
-
},
|
|
616
|
-
"hasDynamicHelp": false,
|
|
617
|
-
"hiddenAliases": [],
|
|
618
|
-
"id": "apple:certificate:import",
|
|
619
|
-
"pluginAlias": "shipthis",
|
|
620
|
-
"pluginName": "shipthis",
|
|
621
|
-
"pluginType": "core",
|
|
622
|
-
"strict": true,
|
|
623
|
-
"enableJsonFlag": false,
|
|
624
|
-
"isESM": true,
|
|
625
|
-
"relativePath": [
|
|
626
|
-
"dist",
|
|
627
|
-
"commands",
|
|
628
|
-
"apple",
|
|
629
|
-
"certificate",
|
|
630
|
-
"import.js"
|
|
631
|
-
]
|
|
632
|
-
},
|
|
633
|
-
"apple:certificate:status": {
|
|
634
|
-
"aliases": [],
|
|
635
|
-
"args": {},
|
|
636
|
-
"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.",
|
|
637
|
-
"examples": [
|
|
638
|
-
"<%= config.bin %> <%= command.id %>",
|
|
639
|
-
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
640
|
-
],
|
|
641
|
-
"flags": {
|
|
642
|
-
"noAppleAuth": {
|
|
643
|
-
"char": "f",
|
|
644
|
-
"name": "noAppleAuth",
|
|
645
|
-
"allowNo": false,
|
|
646
|
-
"type": "boolean"
|
|
647
|
-
}
|
|
648
|
-
},
|
|
649
|
-
"hasDynamicHelp": false,
|
|
650
|
-
"hiddenAliases": [],
|
|
651
|
-
"id": "apple:certificate:status",
|
|
652
|
-
"pluginAlias": "shipthis",
|
|
653
|
-
"pluginName": "shipthis",
|
|
654
|
-
"pluginType": "core",
|
|
655
|
-
"strict": true,
|
|
656
|
-
"enableJsonFlag": false,
|
|
657
|
-
"isESM": true,
|
|
658
|
-
"relativePath": [
|
|
659
|
-
"dist",
|
|
660
|
-
"commands",
|
|
661
|
-
"apple",
|
|
662
|
-
"certificate",
|
|
663
|
-
"status.js"
|
|
664
|
-
]
|
|
665
|
-
},
|
|
666
517
|
"apple:apiKey:create": {
|
|
667
518
|
"aliases": [],
|
|
668
519
|
"args": {},
|
|
@@ -945,6 +796,155 @@
|
|
|
945
796
|
"list.js"
|
|
946
797
|
]
|
|
947
798
|
},
|
|
799
|
+
"apple:certificate:create": {
|
|
800
|
+
"aliases": [],
|
|
801
|
+
"args": {},
|
|
802
|
+
"description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
|
|
803
|
+
"examples": [
|
|
804
|
+
"<%= config.bin %> <%= command.id %>",
|
|
805
|
+
"<%= config.bin %> <%= command.id %> --force"
|
|
806
|
+
],
|
|
807
|
+
"flags": {
|
|
808
|
+
"force": {
|
|
809
|
+
"char": "f",
|
|
810
|
+
"name": "force",
|
|
811
|
+
"allowNo": false,
|
|
812
|
+
"type": "boolean"
|
|
813
|
+
},
|
|
814
|
+
"quiet": {
|
|
815
|
+
"char": "q",
|
|
816
|
+
"description": "Avoid output except for interactions and errors",
|
|
817
|
+
"name": "quiet",
|
|
818
|
+
"allowNo": false,
|
|
819
|
+
"type": "boolean"
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"hasDynamicHelp": false,
|
|
823
|
+
"hiddenAliases": [],
|
|
824
|
+
"id": "apple:certificate:create",
|
|
825
|
+
"pluginAlias": "shipthis",
|
|
826
|
+
"pluginName": "shipthis",
|
|
827
|
+
"pluginType": "core",
|
|
828
|
+
"strict": true,
|
|
829
|
+
"isESM": true,
|
|
830
|
+
"relativePath": [
|
|
831
|
+
"dist",
|
|
832
|
+
"commands",
|
|
833
|
+
"apple",
|
|
834
|
+
"certificate",
|
|
835
|
+
"create.js"
|
|
836
|
+
]
|
|
837
|
+
},
|
|
838
|
+
"apple:certificate:export": {
|
|
839
|
+
"aliases": [],
|
|
840
|
+
"args": {
|
|
841
|
+
"file": {
|
|
842
|
+
"description": "Name of the ZIP file to create",
|
|
843
|
+
"name": "file",
|
|
844
|
+
"required": true
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"description": "Saves the current Apple Distribution Certificate to a ZIP file.",
|
|
848
|
+
"examples": [
|
|
849
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
850
|
+
],
|
|
851
|
+
"flags": {
|
|
852
|
+
"force": {
|
|
853
|
+
"char": "f",
|
|
854
|
+
"description": "Overwrite the file if it already exists",
|
|
855
|
+
"name": "force",
|
|
856
|
+
"allowNo": false,
|
|
857
|
+
"type": "boolean"
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
"hasDynamicHelp": false,
|
|
861
|
+
"hiddenAliases": [],
|
|
862
|
+
"id": "apple:certificate:export",
|
|
863
|
+
"pluginAlias": "shipthis",
|
|
864
|
+
"pluginName": "shipthis",
|
|
865
|
+
"pluginType": "core",
|
|
866
|
+
"strict": true,
|
|
867
|
+
"enableJsonFlag": false,
|
|
868
|
+
"isESM": true,
|
|
869
|
+
"relativePath": [
|
|
870
|
+
"dist",
|
|
871
|
+
"commands",
|
|
872
|
+
"apple",
|
|
873
|
+
"certificate",
|
|
874
|
+
"export.js"
|
|
875
|
+
]
|
|
876
|
+
},
|
|
877
|
+
"apple:certificate:import": {
|
|
878
|
+
"aliases": [],
|
|
879
|
+
"args": {
|
|
880
|
+
"file": {
|
|
881
|
+
"description": "Name of the ZIP file to import (must be in the same format as the export)",
|
|
882
|
+
"name": "file",
|
|
883
|
+
"required": true
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
"description": "Imports an iOS Distribution Certificate to your ShipThis account",
|
|
887
|
+
"examples": [
|
|
888
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
889
|
+
],
|
|
890
|
+
"flags": {
|
|
891
|
+
"force": {
|
|
892
|
+
"char": "f",
|
|
893
|
+
"name": "force",
|
|
894
|
+
"allowNo": false,
|
|
895
|
+
"type": "boolean"
|
|
896
|
+
}
|
|
897
|
+
},
|
|
898
|
+
"hasDynamicHelp": false,
|
|
899
|
+
"hiddenAliases": [],
|
|
900
|
+
"id": "apple:certificate:import",
|
|
901
|
+
"pluginAlias": "shipthis",
|
|
902
|
+
"pluginName": "shipthis",
|
|
903
|
+
"pluginType": "core",
|
|
904
|
+
"strict": true,
|
|
905
|
+
"enableJsonFlag": false,
|
|
906
|
+
"isESM": true,
|
|
907
|
+
"relativePath": [
|
|
908
|
+
"dist",
|
|
909
|
+
"commands",
|
|
910
|
+
"apple",
|
|
911
|
+
"certificate",
|
|
912
|
+
"import.js"
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
"apple:certificate:status": {
|
|
916
|
+
"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.",
|
|
919
|
+
"examples": [
|
|
920
|
+
"<%= config.bin %> <%= command.id %>",
|
|
921
|
+
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
922
|
+
],
|
|
923
|
+
"flags": {
|
|
924
|
+
"noAppleAuth": {
|
|
925
|
+
"char": "f",
|
|
926
|
+
"name": "noAppleAuth",
|
|
927
|
+
"allowNo": false,
|
|
928
|
+
"type": "boolean"
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"hasDynamicHelp": false,
|
|
932
|
+
"hiddenAliases": [],
|
|
933
|
+
"id": "apple:certificate:status",
|
|
934
|
+
"pluginAlias": "shipthis",
|
|
935
|
+
"pluginName": "shipthis",
|
|
936
|
+
"pluginType": "core",
|
|
937
|
+
"strict": true,
|
|
938
|
+
"enableJsonFlag": false,
|
|
939
|
+
"isESM": true,
|
|
940
|
+
"relativePath": [
|
|
941
|
+
"dist",
|
|
942
|
+
"commands",
|
|
943
|
+
"apple",
|
|
944
|
+
"certificate",
|
|
945
|
+
"status.js"
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
948
|
"game:ios:status": {
|
|
949
949
|
"aliases": [],
|
|
950
950
|
"args": {},
|
|
@@ -1508,5 +1508,5 @@
|
|
|
1508
1508
|
]
|
|
1509
1509
|
}
|
|
1510
1510
|
},
|
|
1511
|
-
"version": "0.0.
|
|
1511
|
+
"version": "0.0.41"
|
|
1512
1512
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipthis",
|
|
3
3
|
"description": "A command line tool which manages releasing your Godot games to the iOS App Store.",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.41",
|
|
5
5
|
"author": "Hello Invent Ltd",
|
|
6
6
|
"bin": {
|
|
7
7
|
"shipthis": "./bin/run.js"
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
],
|
|
81
81
|
"homepage": "https://shipthis.cc",
|
|
82
82
|
"keywords": [
|
|
83
|
+
"cli",
|
|
83
84
|
"godot",
|
|
84
85
|
"apple",
|
|
85
86
|
"ios",
|