shipthis 0.0.23 → 0.0.25

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 (61) hide show
  1. package/dist/commands/game/list.js +3 -2
  2. package/docs/README.md +50 -1
  3. package/docs/apple/apiKey.md +1 -1
  4. package/docs/apple/certificate.md +1 -1
  5. package/docs/apple/login.md +12 -1
  6. package/docs/apple/status.md +7 -3
  7. package/docs/apple.md +2 -2
  8. package/docs/dashboard.md +14 -2
  9. package/docs/game/build.md +1 -1
  10. package/docs/game/create.md +17 -4
  11. package/docs/game/details.md +22 -5
  12. package/docs/game/export.md +1 -1
  13. package/docs/game/ios/app.md +1 -27
  14. package/docs/game/ios/profile.md +1 -1
  15. package/docs/game/ios/status.md +1 -1
  16. package/docs/game/ios.md +1 -2
  17. package/docs/game/job.md +1 -1
  18. package/docs/game/list.md +1 -1
  19. package/docs/game/ship.md +1 -1
  20. package/docs/game/status.md +1 -1
  21. package/docs/game/wizard.md +1 -1
  22. package/docs/game.md +4 -4
  23. package/docs/help.md +2 -2
  24. package/docs/login.md +1 -1
  25. package/docs/status.md +1 -1
  26. package/oclif.manifest.json +1 -1
  27. package/package.json +1 -1
  28. package/docs/apple/apiKey/create +0 -26
  29. package/docs/apple/apiKey/export +0 -24
  30. package/docs/apple/apiKey/import +0 -24
  31. package/docs/apple/apiKey/status +0 -25
  32. package/docs/apple/certificate/create +0 -26
  33. package/docs/apple/certificate/export +0 -24
  34. package/docs/apple/certificate/import +0 -24
  35. package/docs/apple/certificate/status +0 -25
  36. package/docs/apple/login +0 -25
  37. package/docs/apple/status +0 -18
  38. package/docs/dashboard +0 -18
  39. package/docs/game/build/download +0 -28
  40. package/docs/game/build/list +0 -31
  41. package/docs/game/create +0 -23
  42. package/docs/game/details +0 -35
  43. package/docs/game/export +0 -26
  44. package/docs/game/ios/app/addTester +0 -24
  45. package/docs/game/ios/app/create +0 -25
  46. package/docs/game/ios/app/status +0 -21
  47. package/docs/game/ios/app/sync +0 -23
  48. package/docs/game/ios/profile/create +0 -23
  49. package/docs/game/ios/profile/export +0 -25
  50. package/docs/game/ios/profile/import +0 -25
  51. package/docs/game/ios/profile/status +0 -22
  52. package/docs/game/ios/status +0 -23
  53. package/docs/game/job/list +0 -29
  54. package/docs/game/job/status +0 -30
  55. package/docs/game/list +0 -26
  56. package/docs/game/ship +0 -21
  57. package/docs/game/status +0 -23
  58. package/docs/game/wizard +0 -23
  59. package/docs/help +0 -21
  60. package/docs/login +0 -24
  61. package/docs/status +0 -18
package/docs/dashboard DELETED
@@ -1,18 +0,0 @@
1
- # dashboard
2
-
3
- ## Description
4
-
5
- Opens the web-browser to your ShipThis dashboard
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis dashboard
12
-
13
- DESCRIPTION
14
- Opens the web-browser to your ShipThis dashboard
15
-
16
- EXAMPLES
17
- $ shipthis dashboard
18
- ```
@@ -1,28 +0,0 @@
1
- # game build download
2
-
3
- ## Description
4
-
5
- Downloads the given build artifact to the specified file
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game build download BUILD_ID FILE [-g <value>] [-f]
12
-
13
- ARGUMENTS
14
- BUILD_ID The ID of the build to download
15
- FILE Name of the file to output
16
-
17
- FLAGS
18
- -f, --force Overwrite the file if it already exists
19
- -g, --gameId=<value> The ID of the game
20
-
21
- DESCRIPTION
22
- Downloads the given build artifact to the specified file
23
-
24
- EXAMPLES
25
- $ shipthis game build download 7a3f5c92 output.ipa
26
-
27
- $ shipthis game build download --gameId 0c179fc4 e4b9a3d7 output.apk
28
- ```
@@ -1,31 +0,0 @@
1
- # game build list
2
-
3
- ## Description
4
-
5
- Lists the builds for successful jobs of a game.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game build list [-g <value>] [-p <value>] [-s <value>] [-o createdAt|updatedAt] [-r asc|desc]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
- -o, --orderBy=<option> [default: createdAt] The field to order by
16
- <options: createdAt|updatedAt>
17
- -p, --pageNumber=<value> The page number to show (starts at 0)
18
- -r, --order=<option> [default: desc] The order to sort by
19
- <options: asc|desc>
20
- -s, --pageSize=<value> [default: 10] The number of items to show per page
21
-
22
- DESCRIPTION
23
- Lists the builds for successful jobs of a game.
24
-
25
- EXAMPLES
26
- $ shipthis game build list
27
-
28
- $ shipthis game build list --gameId 0c179fc4
29
-
30
- $ shipthis game build list --gameId 0c179fc4 --pageSize 20 --pageNumber 1
31
- ```
package/docs/game/create DELETED
@@ -1,23 +0,0 @@
1
- # game create
2
-
3
- ## Description
4
-
5
- Create a new game in ShipThis.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game create [-q] [-f] [-n <value>]
12
-
13
- FLAGS
14
- -f, --force
15
- -n, --name=<value> The name of the game
16
- -q, --quiet Avoid output except for interactions and errors
17
-
18
- DESCRIPTION
19
- Create a new game in ShipThis.
20
-
21
- EXAMPLES
22
- $ shipthis game create
23
- ```
package/docs/game/details DELETED
@@ -1,35 +0,0 @@
1
- # game details
2
-
3
- ## Description
4
-
5
- Shows and sets the details of a game.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game details [-g <value>] [-f] [-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
- -f, --force Force the command to run
19
- -g, --gameId=<value> The ID of the game
20
- -i, --iosBundleId=<value> Set the iOS bundle ID
21
- -s, --semanticVersion=<value> Set the semantic version
22
- -v, --gameEngineVersion=<value> Set the game engine version
23
-
24
- DESCRIPTION
25
- Shows and sets the details of a game.
26
-
27
- EXAMPLES
28
- $ shipthis game details
29
-
30
- $ shipthis game details --gameId 0c179fc4
31
-
32
- $ shipthis game details --buildNumber 5 --semanticVersion 1.2.3
33
-
34
- $ shipthis game details --gameEngine godot --gameEngineVersion 4.2 --force
35
- ```
package/docs/game/export DELETED
@@ -1,26 +0,0 @@
1
- # game export
2
-
3
- ## Description
4
-
5
- Downloads the shipthis.json file for a given game into the current directory.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game export GAME_ID [-f]
12
-
13
- ARGUMENTS
14
- GAME_ID The ID of the game to export (use "list" to get the ID)
15
-
16
- FLAGS
17
- -f, --force
18
-
19
- DESCRIPTION
20
- Downloads the shipthis.json file for a given game into the current directory.
21
-
22
- EXAMPLES
23
- $ shipthis game export abcd1234
24
-
25
- $ shipthis game export abcd1234 --force
26
- ```
@@ -1,24 +0,0 @@
1
- # game ios app addTester
2
-
3
- ## Description
4
-
5
- Adds a test user to the game in App Store Connect.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios app addTester [-g <value>] [-e <value>] [-f <value>] [-l <value>]
12
-
13
- FLAGS
14
- -e, --email=<value> The email address of the tester
15
- -f, --firstName=<value> The first name of the tester
16
- -g, --gameId=<value> The ID of the game
17
- -l, --lastName=<value> The last name of the tester
18
-
19
- DESCRIPTION
20
- Adds a test user to the game in App Store Connect.
21
-
22
- EXAMPLES
23
- $ shipthis game ios app addTester
24
- ```
@@ -1,25 +0,0 @@
1
- # game ios app create
2
-
3
- ## Description
4
-
5
- Creates an App and BundleId in the Apple Developer Portal.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios app create [-q] [-g <value>] [-n <value>] [-b <value>] [-f]
12
-
13
- FLAGS
14
- -b, --bundleId=<value> The BundleId in the Apple Developer Portal
15
- -f, --force
16
- -g, --gameId=<value> The ID of the game
17
- -n, --appName=<value> The name of the App in the Apple Developer Portal
18
- -q, --quiet Avoid output except for interactions and errors
19
-
20
- DESCRIPTION
21
- Creates an App and BundleId in the Apple Developer Portal.
22
-
23
- EXAMPLES
24
- $ shipthis game ios app create
25
- ```
@@ -1,21 +0,0 @@
1
- # game ios app status
2
-
3
- ## Description
4
-
5
- Shows the Game iOS App status.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios app status [-g <value>]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
-
16
- DESCRIPTION
17
- Shows the Game iOS App status.
18
-
19
- EXAMPLES
20
- $ shipthis game ios app status
21
- ```
@@ -1,23 +0,0 @@
1
- # game ios app sync
2
-
3
- ## Description
4
-
5
- Synchronies the Apple App &#34;BundleId&#34; with the capabilities from the local project.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios app sync [-q] [-g <value>] [-f]
12
-
13
- FLAGS
14
- -f, --force
15
- -g, --gameId=<value> The ID of the game
16
- -q, --quiet Avoid output except for interactions and errors
17
-
18
- DESCRIPTION
19
- Synchronies the Apple App "BundleId" with the capabilities from the local project.
20
-
21
- EXAMPLES
22
- $ shipthis game ios app sync
23
- ```
@@ -1,23 +0,0 @@
1
- # game ios profile create
2
-
3
- ## Description
4
-
5
- Creates a Mobile Provisioning Profile in the Apple Developer Portal.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios profile create [-q] [-g <value>] [-f]
12
-
13
- FLAGS
14
- -f, --force
15
- -g, --gameId=<value> The ID of the game
16
- -q, --quiet Avoid output except for interactions and errors
17
-
18
- DESCRIPTION
19
- Creates a Mobile Provisioning Profile in the Apple Developer Portal.
20
-
21
- EXAMPLES
22
- $ shipthis game ios profile create
23
- ```
@@ -1,25 +0,0 @@
1
- # game ios profile export
2
-
3
- ## Description
4
-
5
- Saves the current Mobile Provisioning Profile to a ZIP file
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios profile 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 Mobile Provisioning Profile to a ZIP file
22
-
23
- EXAMPLES
24
- $ shipthis game ios profile export userProfile.zip
25
- ```
@@ -1,25 +0,0 @@
1
- # game ios profile import
2
-
3
- ## Description
4
-
5
- Imports an Mobile Provisioning Profile to your ShipThis account
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios profile 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 Mobile Provisioning Profile to your ShipThis account
22
-
23
- EXAMPLES
24
- $ shipthis game ios profile import profile.zip
25
- ```
@@ -1,22 +0,0 @@
1
- # game ios profile status
2
-
3
- ## Description
4
-
5
- Shows the Game iOS Mobile Provisioning Profile Status.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios profile status [-g <value>] [-f]
12
-
13
- FLAGS
14
- -f, --noAppleAuth
15
- -g, --gameId=<value> The ID of the game
16
-
17
- DESCRIPTION
18
- Shows the Game iOS Mobile Provisioning Profile Status.
19
-
20
- EXAMPLES
21
- $ shipthis game ios profile status
22
- ```
@@ -1,23 +0,0 @@
1
- # game ios status
2
-
3
- ## Description
4
-
5
- Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ios status [-g <value>]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
-
16
- DESCRIPTION
17
- Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.
18
-
19
- EXAMPLES
20
- $ shipthis game ios status
21
-
22
- $ shipthis game ios status --gameId 0c179fc4
23
- ```
@@ -1,29 +0,0 @@
1
- # game job list
2
-
3
- ## Description
4
-
5
- Lists the jobs for a game.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game job list [-g <value>] [-p <value>] [-s <value>] [-o createdAt|updatedAt] [-r asc|desc]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
- -o, --orderBy=<option> [default: createdAt] The field to order by
16
- <options: createdAt|updatedAt>
17
- -p, --pageNumber=<value> The page number to show (starts at 0)
18
- -r, --order=<option> [default: desc] The order to sort by
19
- <options: asc|desc>
20
- -s, --pageSize=<value> [default: 10] The number of items to show per page
21
-
22
- DESCRIPTION
23
- Lists the jobs for a game.
24
-
25
- EXAMPLES
26
- $ shipthis game job list
27
-
28
- $ shipthis game job list --gameId 0c179fc4
29
- ```
@@ -1,30 +0,0 @@
1
- # game job status
2
-
3
- ## Description
4
-
5
- Shows the real-time status of a job.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game job status JOB_ID [-g <value>] [-n <value>] [-f]
12
-
13
- ARGUMENTS
14
- JOB_ID The id of the job to get the status of
15
-
16
- FLAGS
17
- -f, --follow Follow the log in real-time
18
- -g, --gameId=<value> The ID of the game
19
- -n, --lines=<value> [default: 10] The number of lines to show
20
-
21
- DESCRIPTION
22
- Shows the real-time status of a job.
23
-
24
- EXAMPLES
25
- $ shipthis game job status 4d32239e
26
-
27
- $ shipthis game job status --gameId 0c179fc4 4d32239e
28
-
29
- $ shipthis game job status --gameId 0c179fc4 --lines 20 --follow 4d32239e
30
- ```
package/docs/game/list DELETED
@@ -1,26 +0,0 @@
1
- # game list
2
-
3
- ## Description
4
-
5
- Shows a list of all your games.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game list [-p <value>] [-s <value>] [-o createdAt|updatedAt|name] [-r asc|desc]
12
-
13
- FLAGS
14
- -o, --orderBy=<option> [default: createdAt] The field to order by
15
- <options: createdAt|updatedAt|name>
16
- -p, --pageNumber=<value> The page number to show (starts at 0)
17
- -r, --order=<option> [default: desc] The order to sort by
18
- <options: asc|desc>
19
- -s, --pageSize=<value> [default: 10] The number of items to show per page
20
-
21
- DESCRIPTION
22
- Shows a list of all your games.
23
-
24
- EXAMPLES
25
- $ shipthis game list
26
- ```
package/docs/game/ship DELETED
@@ -1,21 +0,0 @@
1
- # game ship
2
-
3
- ## Description
4
-
5
- Builds the app (for all platforms with valid credentials) and ships it to the stores.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game ship [-g <value>]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
-
16
- DESCRIPTION
17
- Builds the app (for all platforms with valid credentials) and ships it to the stores.
18
-
19
- EXAMPLES
20
- $ shipthis game ship
21
- ```
package/docs/game/status DELETED
@@ -1,23 +0,0 @@
1
- # game status
2
-
3
- ## Description
4
-
5
- Shows the status of the current game.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game status [-g <value>]
12
-
13
- FLAGS
14
- -g, --gameId=<value> The ID of the game
15
-
16
- DESCRIPTION
17
- Shows the status of the current game.
18
-
19
- EXAMPLES
20
- $ shipthis game status
21
-
22
- $ shipthis game status --gameId 0c179fc4
23
- ```
package/docs/game/wizard DELETED
@@ -1,23 +0,0 @@
1
- # game wizard
2
-
3
- ## Description
4
-
5
- Runs all the steps for the specific platform
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis game wizard [-f <value>] [-p ios]
12
-
13
- FLAGS
14
- -f, --forceStep=<value> Force a specific step to run.
15
- -p, --platform=<option> [default: ios] The platform to run the wizard for
16
- <options: ios>
17
-
18
- DESCRIPTION
19
- Runs all the steps for the specific platform
20
-
21
- EXAMPLES
22
- $ shipthis game wizard
23
- ```
package/docs/help DELETED
@@ -1,21 +0,0 @@
1
- # help
2
-
3
- ## Description
4
-
5
- Display help for &lt;%= config.bin %&gt;.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis help [COMMAND...] [-n]
12
-
13
- ARGUMENTS
14
- COMMAND... Command to show help for.
15
-
16
- FLAGS
17
- -n, --nested-commands Include all nested commands in the output.
18
-
19
- DESCRIPTION
20
- Display help for shipthis.
21
- ```
package/docs/login DELETED
@@ -1,24 +0,0 @@
1
- # login
2
-
3
- ## Description
4
-
5
- Authenticate - will create a new account if one does not exist.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis login [-f] [-e <value>]
12
-
13
- FLAGS
14
- -e, --email=<value> Your email address
15
- -f, --force
16
-
17
- DESCRIPTION
18
- Authenticate - will create a new account if one does not exist.
19
-
20
- EXAMPLES
21
- $ shipthis login
22
-
23
- $ shipthis login --force --email me@email.nowhere
24
- ```
package/docs/status DELETED
@@ -1,18 +0,0 @@
1
- # status
2
-
3
- ## Description
4
-
5
- Displays the current overall status.
6
-
7
- ## Help Output
8
-
9
- ```
10
- USAGE
11
- $ shipthis status
12
-
13
- DESCRIPTION
14
- Displays the current overall status.
15
-
16
- EXAMPLES
17
- $ shipthis status
18
- ```