shipthis 0.0.40 → 0.1.0

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 +11 -4
  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 +821 -68
  87. package/package.json +53 -18
  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,339 @@
1
+ # Topic: `game android`
2
+
3
+ Commands related to the Android platform for a specific game
4
+
5
+ ## Topics
6
+
7
+
8
+ # Topic: `game android apiKey`
9
+
10
+ Commands related to they Android Service Account API Key for a specific game
11
+
12
+
13
+ ## Commands
14
+
15
+
16
+ ### `game android apiKey connect`
17
+
18
+ #### Description
19
+
20
+ Connects ShipThis with Google for managing Service Account API Keys for an Android game
21
+
22
+ #### Help Output
23
+
24
+ ```
25
+ USAGE
26
+ $ shipthis game android apiKey connect [-g <value>] [-f] [-d]
27
+
28
+ FLAGS
29
+ -d, --disconnect
30
+ -f, --force
31
+ -g, --gameId=<value> The ID of the game
32
+
33
+ DESCRIPTION
34
+ Connects ShipThis with Google for managing Service Account API Keys for an Android game
35
+
36
+ EXAMPLES
37
+ $ shipthis game android apiKey connect
38
+
39
+ $ shipthis game android apiKey connect --force
40
+
41
+ $ shipthis game android apiKey connect --disconnect
42
+ ```
43
+
44
+ ### `game android apiKey create`
45
+
46
+ #### Description
47
+
48
+ Creates a new Android Service Account API Key for a game
49
+
50
+ #### Help Output
51
+
52
+ ```
53
+ USAGE
54
+ $ shipthis game android apiKey create [-g <value>] [-w] [-f]
55
+
56
+ FLAGS
57
+ -f, --force
58
+ -g, --gameId=<value> The ID of the game
59
+ -w, --waitForAuth Wait for Google Authentication (10 mins).
60
+
61
+ DESCRIPTION
62
+ Creates a new Android Service Account API Key for a game
63
+
64
+ EXAMPLES
65
+ $ shipthis game android apiKey create
66
+
67
+ $ shipthis game android apiKey create --gameId 0c179fc4
68
+ ```
69
+
70
+ ### `game android apiKey export`
71
+
72
+ #### Description
73
+
74
+ Saves the current Android Service Account API Key to a ZIP file
75
+
76
+ #### Help Output
77
+
78
+ ```
79
+ USAGE
80
+ $ shipthis game android apiKey export FILE [-g <value>] [-f]
81
+
82
+ ARGUMENTS
83
+ FILE Name of the ZIP file to create
84
+
85
+ FLAGS
86
+ -f, --force Overwrite the file if it already exists
87
+ -g, --gameId=<value> The ID of the game
88
+
89
+ DESCRIPTION
90
+ Saves the current Android Service Account API Key to a ZIP file
91
+
92
+ EXAMPLES
93
+ $ shipthis game android apiKey export keyStore.zip
94
+ ```
95
+
96
+ ### `game android apiKey import`
97
+
98
+ #### Description
99
+
100
+ Imports an Android Service Account API Key to your ShipThis account for the specified game.
101
+
102
+ #### Help Output
103
+
104
+ ```
105
+ USAGE
106
+ $ shipthis game android apiKey import FILE [-g <value>] [-f]
107
+
108
+ ARGUMENTS
109
+ FILE Name of the ZIP file to import (must be in the same format as the export)
110
+
111
+ FLAGS
112
+ -f, --force
113
+ -g, --gameId=<value> The ID of the game
114
+
115
+ DESCRIPTION
116
+ Imports an Android Service Account API Key to your ShipThis account for the specified game.
117
+
118
+ EXAMPLES
119
+ $ shipthis game android apiKey import
120
+ ```
121
+
122
+ ### `game android apiKey invite`
123
+
124
+ #### Description
125
+
126
+ Invites the Service Account to your Google Play Account.
127
+
128
+ #### Help Output
129
+
130
+ ```
131
+ USAGE
132
+ $ shipthis game android apiKey invite [ACCOUNTID] [-g <value>] [-p] [-p] [-w]
133
+
134
+ ARGUMENTS
135
+ ACCOUNTID The Google Play Account ID
136
+
137
+ FLAGS
138
+ -g, --gameId=<value> The ID of the game
139
+ -p, --prompt Prompt for the Google Play Account ID
140
+ -p, --waitForGoogleApp Waits for the Google Play app to be created (10 mins).
141
+ -w, --waitForAuth Wait for Google Authentication (10 mins).
142
+
143
+ DESCRIPTION
144
+ Invites the Service Account to your Google Play Account.
145
+
146
+ EXAMPLES
147
+ $ shipthis game android apiKey invite
148
+ ```
149
+
150
+ ### `game android apiKey status`
151
+
152
+ #### Description
153
+
154
+ Displays the status of the Android Service Account API Key for a specific game.
155
+
156
+ #### Help Output
157
+
158
+ ```
159
+ USAGE
160
+ $ shipthis game android apiKey status [-g <value>]
161
+
162
+ FLAGS
163
+ -g, --gameId=<value> The ID of the game
164
+
165
+ DESCRIPTION
166
+ Displays the status of the Android Service Account API Key for a specific game.
167
+
168
+ EXAMPLES
169
+ $ shipthis game android apiKey status
170
+
171
+ $ shipthis game android apiKey status --gameId 0c179fc4
172
+ ```
173
+
174
+
175
+ # Topic: `game android keyStore`
176
+
177
+ Commands related to the Android KeyStore for a specific game
178
+
179
+
180
+ ## Commands
181
+
182
+
183
+ ### `game android keyStore create`
184
+
185
+ #### Description
186
+
187
+ Creates a new Android Keystore for a game
188
+
189
+ #### Help Output
190
+
191
+ ```
192
+ USAGE
193
+ $ shipthis game android keyStore create [-g <value>] [-f]
194
+
195
+ FLAGS
196
+ -f, --force
197
+ -g, --gameId=<value> The ID of the game
198
+
199
+ DESCRIPTION
200
+ Creates a new Android Keystore for a game
201
+
202
+ EXAMPLES
203
+ $ shipthis game android keyStore create
204
+
205
+ $ shipthis game android keyStore create --gameId 0c179fc4
206
+ ```
207
+
208
+ ### `game android keyStore export`
209
+
210
+ #### Description
211
+
212
+ Saves the current Android Keystore to a ZIP file
213
+
214
+ #### Help Output
215
+
216
+ ```
217
+ USAGE
218
+ $ shipthis game android keyStore export FILE [-g <value>] [-f]
219
+
220
+ ARGUMENTS
221
+ FILE Name of the ZIP file to create
222
+
223
+ FLAGS
224
+ -f, --force Overwrite the file if it already exists
225
+ -g, --gameId=<value> The ID of the game
226
+
227
+ DESCRIPTION
228
+ Saves the current Android Keystore to a ZIP file
229
+
230
+ EXAMPLES
231
+ $ shipthis game android keyStore export keyStore.zip
232
+ ```
233
+
234
+ ### `game android keyStore import`
235
+
236
+ #### Description
237
+
238
+ Imports an Android Keystore to your ShipThis account for the specified game.
239
+
240
+ #### Help Output
241
+
242
+ ```
243
+ USAGE
244
+ $ shipthis game android keyStore import FILE [-g <value>] [-f]
245
+
246
+ ARGUMENTS
247
+ FILE Name of the ZIP file to import (must be in the same format as the export)
248
+
249
+ FLAGS
250
+ -f, --force
251
+ -g, --gameId=<value> The ID of the game
252
+
253
+ DESCRIPTION
254
+ Imports an Android Keystore to your ShipThis account for the specified game.
255
+
256
+ EXAMPLES
257
+ $ shipthis game android keyStore import
258
+ ```
259
+
260
+ ### `game android keyStore status`
261
+
262
+ #### Description
263
+
264
+ Displays the status of the Android Keystore for a specific game.
265
+
266
+ #### Help Output
267
+
268
+ ```
269
+ USAGE
270
+ $ shipthis game android keyStore status [-g <value>]
271
+
272
+ FLAGS
273
+ -g, --gameId=<value> The ID of the game
274
+
275
+ DESCRIPTION
276
+ Displays the status of the Android Keystore for a specific game.
277
+
278
+ EXAMPLES
279
+ $ shipthis game android keyStore status
280
+
281
+ $ shipthis game android keyStore status --gameId 0c179fc4
282
+ ```
283
+
284
+
285
+ ## Commands
286
+
287
+
288
+ ### `game android status`
289
+
290
+ #### Description
291
+
292
+ Shows the status of the setup for the Android platform for a specific game.
293
+
294
+ #### Help Output
295
+
296
+ ```
297
+ USAGE
298
+ $ shipthis game android status [-g <value>]
299
+
300
+ FLAGS
301
+ -g, --gameId=<value> The ID of the game
302
+
303
+ DESCRIPTION
304
+ Shows the status of the setup for the Android platform for a specific game.
305
+
306
+ EXAMPLES
307
+ $ shipthis game android status
308
+
309
+ $ shipthis game android status --gameId 0c179fc4
310
+ ```
311
+
312
+ ### `game android wizard`
313
+
314
+ #### Description
315
+
316
+ Prototype Android Wizard
317
+
318
+ #### Help Output
319
+
320
+ ```
321
+ USAGE
322
+ $ shipthis game android wizard [-n <value>] [-b <value>] [-s <value>] [-e <value>] [-v <value>] [-i <value>] [-a
323
+ <value>]
324
+
325
+ FLAGS
326
+ -a, --androidPackageName=<value> Set the Android package name
327
+ -b, --buildNumber=<value> Set the build number
328
+ -e, --gameEngine=<value> Set the game engine
329
+ -i, --iosBundleId=<value> Set the iOS bundle ID
330
+ -n, --name=<value> The name of the game
331
+ -s, --semanticVersion=<value> Set the semantic version
332
+ -v, --gameEngineVersion=<value> Set the game engine version
333
+
334
+ DESCRIPTION
335
+ Prototype Android Wizard
336
+
337
+ EXAMPLES
338
+ $ shipthis game android wizard
339
+ ```
@@ -10,7 +10,7 @@ The `shipthis game create` command is the first step run by the wizard
10
10
  Creates a new game in your [ShipThis account](https://shipthis.cc/games).
11
11
 
12
12
  ShipThis will read the name of your game from your **project.godot** file. You will be
13
- prompted to confirm this name, or you can specify one with the `--name` flag.
13
+ prompted to confirm this name, or you can specify one with the `--name` flag.
14
14
 
15
15
  If there is already a ShipThis game config file (**shipthis.json**) in the current
16
16
  directory then you will need to use the `--force` flag to create a new game and
@@ -24,22 +24,27 @@ command.
24
24
 
25
25
  [![asciicast](https://asciinema.org/a/Oxf8qnYoVViPNVA40EXKBWG36.svg)](https://asciinema.org/a/Oxf8qnYoVViPNVA40EXKBWG36)
26
26
 
27
-
28
-
29
27
  ## Help Output
30
28
 
31
29
  ```
32
30
  USAGE
33
- $ shipthis game create [-q] [-f] [-n <value>]
31
+ $ shipthis game create [-q] [-f] [-n <value>] [-b <value>] [-s <value>] [-e <value>] [-v <value>] [-i <value>]
32
+ [-a <value>]
34
33
 
35
34
  FLAGS
35
+ -a, --androidPackageName=<value> Set the Android package name
36
+ -b, --buildNumber=<value> Set the build number
37
+ -e, --gameEngine=<value> Set the game engine
36
38
  -f, --force
37
- -n, --name=<value> The name of the game
38
- -q, --quiet Avoid output except for interactions and errors
39
+ -i, --iosBundleId=<value> Set the iOS bundle ID
40
+ -n, --name=<value> The name of the game
41
+ -q, --quiet Avoid output except for interactions and errors
42
+ -s, --semanticVersion=<value> Set the semantic version
43
+ -v, --gameEngineVersion=<value> Set the game engine version
39
44
 
40
45
  DESCRIPTION
41
46
  Create a new game in ShipThis.
42
47
 
43
48
  EXAMPLES
44
49
  $ shipthis game create
45
- ```
50
+ ```
@@ -0,0 +1,21 @@
1
+ # Command: `game ios wizard`
2
+
3
+ ## Description
4
+
5
+ Runs all the steps for iOS
6
+
7
+ ## Help Output
8
+
9
+ ```
10
+ USAGE
11
+ $ shipthis game ios wizard [-f <value>]
12
+
13
+ FLAGS
14
+ -f, --forceStep=<value> Force a specific step to run.
15
+
16
+ DESCRIPTION
17
+ Runs all the steps for iOS
18
+
19
+ EXAMPLES
20
+ $ shipthis game ios wizard
21
+ ```
@@ -2,8 +2,10 @@
2
2
 
3
3
  ## Description
4
4
 
5
- Runs all the steps for the specific platform. Please see [The Game Wizard 🧙🪄✨](/docs/wizard)
6
- page for more info about the wizard.
5
+ Runs all the steps for the specific platform.
6
+
7
+ To see the iOS steps run by the wizard, please refer to the [Set up iOS](/docs/ios) page.
8
+ To see the Android steps run by the wizard, please refer to the [Set up Android](/docs/android) page.
7
9
 
8
10
  :::tip
9
11
  You will need to be authenticated against ShipThis before you can use the wizard.
@@ -13,17 +15,6 @@ To do that please run the following command first:
13
15
 
14
16
  :::
15
17
 
16
- This command runs the following other commands:
17
-
18
- - [`shipthis game create`](/docs/reference/game/create)
19
- - [`shipthis apple login`](/docs/reference/apple/login)
20
- - [`shipthis apple apiKey create`](/docs/reference/apple/apiKey)
21
- - [`shipthis apple certificate create`](/docs/reference/apple/certificate)
22
- - [`shipthis game ios app create`](/docs/reference/game/ios/app)
23
- - [`shipthis game ios app sync`](/docs/reference/game/ios/app)
24
- - [`shipthis game ios profile create`](/docs/reference/game/ios/profile)
25
-
26
-
27
18
  ## Example
28
19
 
29
20
  [![asciicast](https://asciinema.org/a/hOV55wY2oCeccoQXr0OgxWuhk.svg)](https://asciinema.org/a/hOV55wY2oCeccoQXr0OgxWuhk#shipthis-col120row32)
@@ -32,16 +23,19 @@ This command runs the following other commands:
32
23
 
33
24
  ```
34
25
  USAGE
35
- $ shipthis game wizard [-f <value>] [-p ios]
26
+ $ shipthis game wizard PLATFORM [-f <value>]
27
+
28
+ ARGUMENTS
29
+ PLATFORM The platform to run the wizard for
36
30
 
37
31
  FLAGS
38
32
  -f, --forceStep=<value> Force a specific step to run.
39
- -p, --platform=<option> [default: ios] The platform to run the wizard for
40
- <options: ios>
41
33
 
42
34
  DESCRIPTION
43
35
  Runs all the steps for the specific platform
44
36
 
45
37
  EXAMPLES
46
- $ shipthis game wizard
47
- ```
38
+ $ shipthis game wizard ios
39
+
40
+ $ shipthis game wizard android
41
+ ```