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
@@ -0,0 +1,165 @@
1
+ # Topic: `game android apiKey`
2
+
3
+ Commands related to they Android Service Account API Key for a specific game
4
+
5
+
6
+ ## Commands
7
+
8
+
9
+ ### `game android apiKey connect`
10
+
11
+ #### Description
12
+
13
+ Connects ShipThis with Google for managing Service Account API Keys for an Android game
14
+
15
+ #### Help Output
16
+
17
+ ```
18
+ USAGE
19
+ $ shipthis game android apiKey connect [-g <value>] [-f] [-d]
20
+
21
+ FLAGS
22
+ -d, --disconnect
23
+ -f, --force
24
+ -g, --gameId=<value> The ID of the game
25
+
26
+ DESCRIPTION
27
+ Connects ShipThis with Google for managing Service Account API Keys for an Android game
28
+
29
+ EXAMPLES
30
+ $ shipthis game android apiKey connect
31
+
32
+ $ shipthis game android apiKey connect --force
33
+
34
+ $ shipthis game android apiKey connect --disconnect
35
+ ```
36
+
37
+ ### `game android apiKey create`
38
+
39
+ #### Description
40
+
41
+ Creates a new Android Service Account API Key for a game
42
+
43
+ #### Help Output
44
+
45
+ ```
46
+ USAGE
47
+ $ shipthis game android apiKey create [-g <value>] [-w] [-f]
48
+
49
+ FLAGS
50
+ -f, --force
51
+ -g, --gameId=<value> The ID of the game
52
+ -w, --waitForAuth Wait for Google Authentication (10 mins).
53
+
54
+ DESCRIPTION
55
+ Creates a new Android Service Account API Key for a game
56
+
57
+ EXAMPLES
58
+ $ shipthis game android apiKey create
59
+
60
+ $ shipthis game android apiKey create --gameId 0c179fc4
61
+ ```
62
+
63
+ ### `game android apiKey export`
64
+
65
+ #### Description
66
+
67
+ Saves the current Android Service Account API Key to a ZIP file
68
+
69
+ #### Help Output
70
+
71
+ ```
72
+ USAGE
73
+ $ shipthis game android apiKey export FILE [-g <value>] [-f]
74
+
75
+ ARGUMENTS
76
+ FILE Name of the ZIP file to create
77
+
78
+ FLAGS
79
+ -f, --force Overwrite the file if it already exists
80
+ -g, --gameId=<value> The ID of the game
81
+
82
+ DESCRIPTION
83
+ Saves the current Android Service Account API Key to a ZIP file
84
+
85
+ EXAMPLES
86
+ $ shipthis game android apiKey export keyStore.zip
87
+ ```
88
+
89
+ ### `game android apiKey import`
90
+
91
+ #### Description
92
+
93
+ Imports an Android Service Account API Key to your ShipThis account for the specified game.
94
+
95
+ #### Help Output
96
+
97
+ ```
98
+ USAGE
99
+ $ shipthis game android apiKey import FILE [-g <value>] [-f]
100
+
101
+ ARGUMENTS
102
+ FILE Name of the ZIP file to import (must be in the same format as the export)
103
+
104
+ FLAGS
105
+ -f, --force
106
+ -g, --gameId=<value> The ID of the game
107
+
108
+ DESCRIPTION
109
+ Imports an Android Service Account API Key to your ShipThis account for the specified game.
110
+
111
+ EXAMPLES
112
+ $ shipthis game android apiKey import
113
+ ```
114
+
115
+ ### `game android apiKey invite`
116
+
117
+ #### Description
118
+
119
+ Invites the Service Account to your Google Play Account.
120
+
121
+ #### Help Output
122
+
123
+ ```
124
+ USAGE
125
+ $ shipthis game android apiKey invite [ACCOUNTID] [-g <value>] [-p] [-p] [-w]
126
+
127
+ ARGUMENTS
128
+ ACCOUNTID The Google Play Account ID
129
+
130
+ FLAGS
131
+ -g, --gameId=<value> The ID of the game
132
+ -p, --prompt Prompt for the Google Play Account ID
133
+ -p, --waitForGoogleApp Waits for the Google Play app to be created (10 mins).
134
+ -w, --waitForAuth Wait for Google Authentication (10 mins).
135
+
136
+ DESCRIPTION
137
+ Invites the Service Account to your Google Play Account.
138
+
139
+ EXAMPLES
140
+ $ shipthis game android apiKey invite
141
+ ```
142
+
143
+ ### `game android apiKey status`
144
+
145
+ #### Description
146
+
147
+ Displays the status of the Android Service Account API Key for a specific game.
148
+
149
+ #### Help Output
150
+
151
+ ```
152
+ USAGE
153
+ $ shipthis game android apiKey status [-g <value>]
154
+
155
+ FLAGS
156
+ -g, --gameId=<value> The ID of the game
157
+
158
+ DESCRIPTION
159
+ Displays the status of the Android Service Account API Key for a specific game.
160
+
161
+ EXAMPLES
162
+ $ shipthis game android apiKey status
163
+
164
+ $ shipthis game android apiKey status --gameId 0c179fc4
165
+ ```
@@ -0,0 +1,24 @@
1
+ # Command: `game android keyStore create`
2
+
3
+ ## Description
4
+
5
+ Creates a new Android Keystore for a game
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android keyStore create [-g <value>] [-f]
12
+
13
+ FLAGS
14
+ -f, --force
15
+ -g, --gameId=<value> The ID of the game
16
+
17
+ DESCRIPTION
18
+ Creates a new Android Keystore for a game
19
+
20
+ EXAMPLES
21
+ $ shipthis game android keyStore create
22
+
23
+ $ shipthis game android keyStore create --gameId 0c179fc4
24
+ ```
@@ -0,0 +1,25 @@
1
+ # Command: `game android keyStore export`
2
+
3
+ ## Description
4
+
5
+ Saves the current Android Keystore to a ZIP file
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android keyStore export FILE [-g <value>] [-f]
12
+
13
+ ARGUMENTS
14
+ FILE Name of the ZIP file to create
15
+
16
+ FLAGS
17
+ -f, --force Overwrite the file if it already exists
18
+ -g, --gameId=<value> The ID of the game
19
+
20
+ DESCRIPTION
21
+ Saves the current Android Keystore to a ZIP file
22
+
23
+ EXAMPLES
24
+ $ shipthis game android keyStore export keyStore.zip
25
+ ```
@@ -0,0 +1,25 @@
1
+ # Command: `game android keyStore import`
2
+
3
+ ## Description
4
+
5
+ Imports an Android Keystore to your ShipThis account for the specified game.
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android keyStore import FILE [-g <value>] [-f]
12
+
13
+ ARGUMENTS
14
+ FILE Name of the ZIP file to import (must be in the same format as the export)
15
+
16
+ FLAGS
17
+ -f, --force
18
+ -g, --gameId=<value> The ID of the game
19
+
20
+ DESCRIPTION
21
+ Imports an Android Keystore to your ShipThis account for the specified game.
22
+
23
+ EXAMPLES
24
+ $ shipthis game android keyStore import
25
+ ```
@@ -0,0 +1,23 @@
1
+ # Command: `game android keyStore status`
2
+
3
+ ## Description
4
+
5
+ Displays the status of the Android Keystore for a specific game.
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android keyStore status [-g <value>]
12
+
13
+ FLAGS
14
+ -g, --gameId=<value> The ID of the game
15
+
16
+ DESCRIPTION
17
+ Displays the status of the Android Keystore for a specific game.
18
+
19
+ EXAMPLES
20
+ $ shipthis game android keyStore status
21
+
22
+ $ shipthis game android keyStore status --gameId 0c179fc4
23
+ ```
@@ -0,0 +1,108 @@
1
+ # Topic: `game android keyStore`
2
+
3
+ Commands related to the Android KeyStore for a specific game
4
+
5
+
6
+ ## Commands
7
+
8
+
9
+ ### `game android keyStore create`
10
+
11
+ #### Description
12
+
13
+ Creates a new Android Keystore for a game
14
+
15
+ #### Help Output
16
+
17
+ ```
18
+ USAGE
19
+ $ shipthis game android keyStore create [-g <value>] [-f]
20
+
21
+ FLAGS
22
+ -f, --force
23
+ -g, --gameId=<value> The ID of the game
24
+
25
+ DESCRIPTION
26
+ Creates a new Android Keystore for a game
27
+
28
+ EXAMPLES
29
+ $ shipthis game android keyStore create
30
+
31
+ $ shipthis game android keyStore create --gameId 0c179fc4
32
+ ```
33
+
34
+ ### `game android keyStore export`
35
+
36
+ #### Description
37
+
38
+ Saves the current Android Keystore to a ZIP file
39
+
40
+ #### Help Output
41
+
42
+ ```
43
+ USAGE
44
+ $ shipthis game android keyStore export FILE [-g <value>] [-f]
45
+
46
+ ARGUMENTS
47
+ FILE Name of the ZIP file to create
48
+
49
+ FLAGS
50
+ -f, --force Overwrite the file if it already exists
51
+ -g, --gameId=<value> The ID of the game
52
+
53
+ DESCRIPTION
54
+ Saves the current Android Keystore to a ZIP file
55
+
56
+ EXAMPLES
57
+ $ shipthis game android keyStore export keyStore.zip
58
+ ```
59
+
60
+ ### `game android keyStore import`
61
+
62
+ #### Description
63
+
64
+ Imports an Android Keystore to your ShipThis account for the specified game.
65
+
66
+ #### Help Output
67
+
68
+ ```
69
+ USAGE
70
+ $ shipthis game android keyStore import FILE [-g <value>] [-f]
71
+
72
+ ARGUMENTS
73
+ FILE Name of the ZIP file to import (must be in the same format as the export)
74
+
75
+ FLAGS
76
+ -f, --force
77
+ -g, --gameId=<value> The ID of the game
78
+
79
+ DESCRIPTION
80
+ Imports an Android Keystore to your ShipThis account for the specified game.
81
+
82
+ EXAMPLES
83
+ $ shipthis game android keyStore import
84
+ ```
85
+
86
+ ### `game android keyStore status`
87
+
88
+ #### Description
89
+
90
+ Displays the status of the Android Keystore for a specific game.
91
+
92
+ #### Help Output
93
+
94
+ ```
95
+ USAGE
96
+ $ shipthis game android keyStore status [-g <value>]
97
+
98
+ FLAGS
99
+ -g, --gameId=<value> The ID of the game
100
+
101
+ DESCRIPTION
102
+ Displays the status of the Android Keystore for a specific game.
103
+
104
+ EXAMPLES
105
+ $ shipthis game android keyStore status
106
+
107
+ $ shipthis game android keyStore status --gameId 0c179fc4
108
+ ```
@@ -0,0 +1,23 @@
1
+ # Command: `game android status`
2
+
3
+ ## Description
4
+
5
+ Shows the status of the setup for the Android platform for a specific game.
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android status [-g <value>]
12
+
13
+ FLAGS
14
+ -g, --gameId=<value> The ID of the game
15
+
16
+ DESCRIPTION
17
+ Shows the status of the setup for the Android platform for a specific game.
18
+
19
+ EXAMPLES
20
+ $ shipthis game android status
21
+
22
+ $ shipthis game android status --gameId 0c179fc4
23
+ ```
@@ -0,0 +1,28 @@
1
+ # Command: `game android wizard`
2
+
3
+ ## Description
4
+
5
+ Prototype Android Wizard
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game android wizard [-n <value>] [-b <value>] [-s <value>] [-e <value>] [-v <value>] [-i <value>] [-a
12
+ <value>]
13
+
14
+ FLAGS
15
+ -a, --androidPackageName=<value> Set the Android package name
16
+ -b, --buildNumber=<value> Set the build number
17
+ -e, --gameEngine=<value> Set the game engine
18
+ -i, --iosBundleId=<value> Set the iOS bundle ID
19
+ -n, --name=<value> The name of the game
20
+ -s, --semanticVersion=<value> Set the semantic version
21
+ -v, --gameEngineVersion=<value> Set the game engine version
22
+
23
+ DESCRIPTION
24
+ Prototype Android Wizard
25
+
26
+ EXAMPLES
27
+ $ shipthis game android wizard
28
+ ```