shipthis 0.0.26 → 0.0.28

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 CHANGED
@@ -1,20 +1,18 @@
1
- # ShipThis CLI Reference
1
+ # ShipThis CLI
2
2
 
3
3
  ## Introduction
4
4
 
5
- ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games on iOS to the App Store.
5
+ ShipThis is a tool which helps you manage releasing your [Godot](https://godotengine.org/) games to the iOS App Store.
6
6
 
7
- This is all done with an easy to use command line tool called `shipthis`.
7
+ :::tip Info
8
+ You don't need an Apple computer to use ShipThis.
9
+ :::
8
10
 
9
11
  ## Quickstart
10
12
 
11
13
  Let's discover **ShipThis in less than 5 minutes**.
12
14
 
13
- ### Getting Started
14
-
15
- ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games to the App Store.
16
-
17
- #### What you'll need
15
+ ### What you'll need
18
16
 
19
17
  - A Godot game
20
18
  - [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
@@ -23,9 +21,9 @@ ShipThis is a platform that helps you manage shipping your [Godot](https://godot
23
21
 
24
22
  ### 1. Install ShipThis
25
23
 
26
- ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
24
+ ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
27
25
 
28
- ```
26
+ ```bash
29
27
  npm install -g shipthis
30
28
  ```
31
29
 
@@ -33,7 +31,7 @@ npm install -g shipthis
33
31
 
34
32
  Set up an account with ShipThis by logging in for the first time using the [`shipthis login`](https://shipthis.cc/docs/reference/login) command.
35
33
 
36
- ```
34
+ ```bash
37
35
  shipthis login
38
36
  ```
39
37
 
@@ -41,7 +39,7 @@ shipthis login
41
39
 
42
40
  Set up your ShipThis configuration using the built in [wizard](https://shipthis.cc/docs/wizard):
43
41
 
44
- ```
42
+ ```bash
45
43
  shipthis game wizard
46
44
  ```
47
45
 
@@ -49,14 +47,13 @@ shipthis game wizard
49
47
 
50
48
  Now you can publish your game to TestFlight with the [`shipthis game ship`](https://shipthis.cc/docs/reference/game/ship) command:
51
49
 
52
- ```
50
+ ```bash
53
51
  shipthis game ship
54
52
  ```
55
53
 
56
54
  Once you are happy with the build you can submit it to Apple using [App Store
57
55
  Connect](https://appstoreconnect.apple.com/).
58
56
 
59
-
60
57
  ## Topics
61
58
 
62
59
  - [apple](https://shipthis.cc/docs/reference/apple) - Commands that relate to linking your ShipThis account with your Apple Developer Account
@@ -68,4 +65,3 @@ Connect](https://appstoreconnect.apple.com/).
68
65
  - [login](https://shipthis.cc/docs/reference/login) - Signin or create a new account
69
66
  - [status](https://shipthis.cc/docs/reference/status) - Display your overall ShipThis account status
70
67
  - [help](https://shipthis.cc/docs/reference/help) - Display help for a specific topic or command
71
-
@@ -69,7 +69,7 @@ const UserCredentialsTable = ({ credentialTypeName, queryProps, ...boxProps }) =
69
69
  /* @__PURE__ */ jsx(Title, { children: `${credentialTypeName}s in your ShipThis account` }),
70
70
  /* @__PURE__ */ jsx(Box, { marginLeft: 2, marginBottom: 1, flexDirection: "column", children: /* @__PURE__ */ jsx(Text, { children: hasActive ? `You have an active ${credentialTypeName} in your ShipThis account.` : `You DO NOT have an active ${credentialTypeName} which ShipThis can use.` }) }),
71
71
  isLoading && /* @__PURE__ */ jsx(Spinner, { type: "dots" }),
72
- data && /* @__PURE__ */ jsx(Table, { data: data.data.map(getUserCredentialSummary) })
72
+ data && data.data.length > 0 && /* @__PURE__ */ jsx(Table, { data: data.data.map(getUserCredentialSummary) })
73
73
  ] });
74
74
  };
75
75
 
@@ -1,4 +1,4 @@
1
- import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
1
+ import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
2
2
  import { Flags } from '@oclif/core';
3
3
  import { Box, Text, render } from 'ink';
4
4
  import { f as getShortDate, A as ApiKey, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../baseGameCommand-B3NbuvDu.js';
@@ -16,12 +16,12 @@ import 'socket.io-client';
16
16
  import 'isomorphic-git';
17
17
  import { A as App } from '../../../App-BfoOFeZ-.js';
18
18
  import Spinner from 'ink-spinner';
19
- import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-D2Nm0QP_.js';
19
+ import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-A_YlFeJX.js';
20
20
  import { T as Title } from '../../../Title-BCQtayg6.js';
21
21
  import { T as Table } from '../../../Table-CvM6pccN.js';
22
+ import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
22
23
  import 'string-length';
23
24
  import 'strip-ansi';
24
- import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
25
25
  import 'ini';
26
26
  import 'deepmerge';
27
27
  import '../../../cacheKeys-CShA-ZjE.js';
@@ -57,17 +57,20 @@ const AppleApiKeysTable = ({ ctx, ...boxProps }) => {
57
57
  const { data: userCredentialsResponse } = useUserCredentials({ platform: Platform.IOS, type: CredentialsType.KEY });
58
58
  const { data: keys, isLoading } = useAppleApiKeys({ ctx });
59
59
  const hasUsable = keys && userCredentialsResponse && keys.some((key) => canAppleApiKeyBeUsed(key, userCredentialsResponse.data));
60
- return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginBottom: 1, ...boxProps, children: [
61
- /* @__PURE__ */ jsx(Title, { children: "App Store Connect API Keys in your Apple account" }),
62
- isLoading && /* @__PURE__ */ jsx(Spinner, { type: "dots" }),
63
- keys && userCredentialsResponse && /* @__PURE__ */ jsxs(Fragment, { children: [
64
- /* @__PURE__ */ jsxs(Box, { marginLeft: 2, marginBottom: 1, flexDirection: "column", children: [
65
- /* @__PURE__ */ jsx(Text, { children: `You have ${keys.length} App Store Connect API Keys in your Apple account` }),
66
- /* @__PURE__ */ jsx(Text, { children: `${hasUsable ? "One" : "None"} of these can be used by ShipThis` })
67
- ] }),
68
- /* @__PURE__ */ jsx(Table, { data: keys.map((key) => getAppleApiKeySummary(key, userCredentialsResponse.data)) }),
69
- !hasUsable && /* @__PURE__ */ jsx(Box, { marginTop: 1, children: /* @__PURE__ */ jsx(Text, { bold: true, children: "You do not have a usable App Store Connect API Key. To ship an iOS game, you will need a usable App Store Connect API Key." }) })
70
- ] })
60
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
61
+ /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginBottom: 1, ...boxProps, children: [
62
+ /* @__PURE__ */ jsx(Title, { children: "App Store Connect API Keys in your Apple account" }),
63
+ isLoading && /* @__PURE__ */ jsx(Spinner, { type: "dots" }),
64
+ keys && userCredentialsResponse && /* @__PURE__ */ jsxs(Fragment, { children: [
65
+ /* @__PURE__ */ jsxs(Box, { marginLeft: 2, marginBottom: 1, flexDirection: "column", children: [
66
+ /* @__PURE__ */ jsx(Text, { children: `You have ${keys.length} App Store Connect API Keys in your Apple account` }),
67
+ /* @__PURE__ */ jsx(Text, { children: `${hasUsable ? "One" : "None"} of these can be used by ShipThis` })
68
+ ] }),
69
+ keys.length > 0 && /* @__PURE__ */ jsx(Table, { data: keys.map((key) => getAppleApiKeySummary(key, userCredentialsResponse.data)) }),
70
+ !hasUsable && /* @__PURE__ */ jsx(Box, { marginTop: 1, children: /* @__PURE__ */ jsx(Text, { bold: true, children: "You do not have a usable App Store Connect API Key. To ship an iOS game, you will need a usable App Store Connect API Key." }) })
71
+ ] })
72
+ ] }),
73
+ keys && !hasUsable && /* @__PURE__ */ jsx(NextSteps, { steps: ["shipthis apple apiKey create"] })
71
74
  ] });
72
75
  };
73
76
 
@@ -98,8 +101,7 @@ class AppleApiKeyStatus extends BaseAuthenticatedCommand {
98
101
  queryProps: { type: CredentialsType.KEY, platform: Platform.IOS }
99
102
  }
100
103
  ),
101
- showApple && /* @__PURE__ */ jsx(AppleApiKeysTable, { ctx }),
102
- /* @__PURE__ */ jsx(NextSteps, { steps: [] })
104
+ showApple && /* @__PURE__ */ jsx(AppleApiKeysTable, { ctx })
103
105
  ] })
104
106
  );
105
107
  }
@@ -16,13 +16,13 @@ import 'socket.io-client';
16
16
  import 'isomorphic-git';
17
17
  import { A as App } from '../../../App-BfoOFeZ-.js';
18
18
  import Spinner from 'ink-spinner';
19
+ import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
19
20
  import { g as getShortUUID } from '../../../index-ZHJdUrwJ.js';
20
- import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-D2Nm0QP_.js';
21
+ import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-A_YlFeJX.js';
21
22
  import { T as Title } from '../../../Title-BCQtayg6.js';
22
23
  import { T as Table } from '../../../Table-CvM6pccN.js';
23
24
  import 'string-length';
24
25
  import 'strip-ansi';
25
- import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
26
26
  import 'ini';
27
27
  import 'deepmerge';
28
28
  import '../../../cacheKeys-CShA-ZjE.js';
@@ -16,10 +16,10 @@ import 'isomorphic-git';
16
16
  import { A as App } from '../../App-BfoOFeZ-.js';
17
17
  import { render } from 'ink';
18
18
  import 'ink-spinner';
19
+ import { N as NextSteps } from '../../NextSteps-CK9zHOCt.js';
19
20
  import { S as StatusTable } from '../../StatusTable-CxuX_R1D.js';
20
21
  import 'string-length';
21
22
  import 'strip-ansi';
22
- import { N as NextSteps } from '../../NextSteps-CK9zHOCt.js';
23
23
  import 'ini';
24
24
  import 'deepmerge';
25
25
  import '../../Title-BCQtayg6.js';
@@ -15,15 +15,15 @@ import 'luxon';
15
15
  import 'socket.io-client';
16
16
  import '@expo/apple-utils/build/index.js';
17
17
  import 'isomorphic-git';
18
+ import { N as NextSteps } from '../../../../NextSteps-CK9zHOCt.js';
18
19
  import { A as AppleAppDetails, a as AppleBundleIdDetails } from '../../../../AppleBundleIdDetails-n1_U8IqK.js';
19
20
  import 'string-length';
20
21
  import 'strip-ansi';
21
- import { N as NextSteps } from '../../../../NextSteps-CK9zHOCt.js';
22
22
  import 'path';
23
23
  import 'ini';
24
24
  import 'deepmerge';
25
- import '../../../../useAppleApp-Cr3VcGVs.js';
26
25
  import '../../../../Title-BCQtayg6.js';
26
+ import '../../../../useAppleApp-Cr3VcGVs.js';
27
27
  import '../../../../Table-CvM6pccN.js';
28
28
  import '../../../../useAppleBundleId-BxtyGpHy.js';
29
29
 
@@ -15,13 +15,13 @@ import { DateTime } from 'luxon';
15
15
  import 'socket.io-client';
16
16
  import '@expo/apple-utils/build/index.js';
17
17
  import 'isomorphic-git';
18
+ import { N as NextSteps } from '../../../../NextSteps-CK9zHOCt.js';
18
19
  import { c as cacheKeys } from '../../../../cacheKeys-CShA-ZjE.js';
19
20
  import { g as getShortUUID } from '../../../../index-ZHJdUrwJ.js';
20
21
  import { T as Title } from '../../../../Title-BCQtayg6.js';
21
22
  import { T as Table } from '../../../../Table-CvM6pccN.js';
22
23
  import 'string-length';
23
24
  import 'strip-ansi';
24
- import { N as NextSteps } from '../../../../NextSteps-CK9zHOCt.js';
25
25
  import 'path';
26
26
  import 'ini';
27
27
  import 'deepmerge';
@@ -6,6 +6,7 @@ import 'ink-spinner';
6
6
  import { d as BaseGameCommand, e as getProjectPlatformProgress, P as Platform, f as getShortDate } from '../../../baseGameCommand-B3NbuvDu.js';
7
7
  import { g as getShortUUID, m as makeHumanReadable } from '../../../index-ZHJdUrwJ.js';
8
8
  import 'react';
9
+ import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
9
10
  import { A as AppleAppDetails, a as AppleBundleIdDetails } from '../../../AppleBundleIdDetails-n1_U8IqK.js';
10
11
  import { S as StatusTable } from '../../../StatusTable-CxuX_R1D.js';
11
12
  import 'axios';
@@ -14,7 +15,6 @@ import 'socket.io-client';
14
15
  import 'string-length';
15
16
  import 'strip-ansi';
16
17
  import 'luxon';
17
- import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
18
18
  import 'path';
19
19
  import 'fs';
20
20
  import '@expo/apple-utils/build/index.js';
@@ -24,8 +24,8 @@ import 'node:readline';
24
24
  import 'isomorphic-git';
25
25
  import 'ini';
26
26
  import 'deepmerge';
27
- import '../../../useAppleApp-Cr3VcGVs.js';
28
27
  import '../../../Title-BCQtayg6.js';
28
+ import '../../../useAppleApp-Cr3VcGVs.js';
29
29
  import '../../../Table-CvM6pccN.js';
30
30
  import '../../../useAppleBundleId-BxtyGpHy.js';
31
31
 
@@ -16,6 +16,7 @@ import { DateTime } from 'luxon';
16
16
  import 'isomorphic-git';
17
17
  import { A as App } from '../../../App-BfoOFeZ-.js';
18
18
  import Spinner from 'ink-spinner';
19
+ import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
19
20
  import { h as getStageColor, j as getMessageColor, d as getJobStatusColor } from '../../../index-ZHJdUrwJ.js';
20
21
  import { c as cacheKeys } from '../../../cacheKeys-CShA-ZjE.js';
21
22
  import { T as Title } from '../../../Title-BCQtayg6.js';
@@ -24,7 +25,6 @@ import stripAnsi from 'strip-ansi';
24
25
  import { u as useJob, a as getJobSummary } from '../../../useJob-Bc9fdiyP.js';
25
26
  import { a as StatusRow, b as StatusRowLabel } from '../../../StatusTable-CxuX_R1D.js';
26
27
  import { g as getBuildSummary } from '../../../useBuilds-JHqMwpWS.js';
27
- import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
28
28
  import 'ini';
29
29
  import 'deepmerge';
30
30
 
@@ -6,6 +6,7 @@ import 'ink-spinner';
6
6
  import { d as BaseGameCommand, e as getProjectPlatformProgress, P as Platform, f as getShortDate } from '../../baseGameCommand-B3NbuvDu.js';
7
7
  import { g as getShortUUID, m as makeHumanReadable } from '../../index-ZHJdUrwJ.js';
8
8
  import 'react';
9
+ import { N as NextSteps } from '../../NextSteps-CK9zHOCt.js';
9
10
  import 'luxon';
10
11
  import '@tanstack/react-query';
11
12
  import '@expo/apple-utils/build/index.js';
@@ -14,7 +15,6 @@ import { S as StatusTable } from '../../StatusTable-CxuX_R1D.js';
14
15
  import 'socket.io-client';
15
16
  import 'string-length';
16
17
  import 'strip-ansi';
17
- import { N as NextSteps } from '../../NextSteps-CK9zHOCt.js';
18
18
  import 'path';
19
19
  import 'fs';
20
20
  import 'crypto';
@@ -14,10 +14,10 @@ import '@tanstack/react-query';
14
14
  import 'socket.io-client';
15
15
  import '@expo/apple-utils/build/index.js';
16
16
  import { i as isCWDGitRepo } from '../git-DREGq-jc.js';
17
+ import { N as NextSteps } from '../NextSteps-CK9zHOCt.js';
17
18
  import { S as StatusTable } from '../StatusTable-CxuX_R1D.js';
18
19
  import 'string-length';
19
20
  import 'strip-ansi';
20
- import { N as NextSteps } from '../NextSteps-CK9zHOCt.js';
21
21
  import '@oclif/core';
22
22
  import 'path';
23
23
  import 'ini';
package/docs/README.md CHANGED
@@ -1,20 +1,18 @@
1
- # ShipThis CLI Reference
1
+ # ShipThis CLI
2
2
 
3
3
  ## Introduction
4
4
 
5
- ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games on iOS to the App Store.
5
+ ShipThis is a tool which helps you manage releasing your [Godot](https://godotengine.org/) games to the iOS App Store.
6
6
 
7
- This is all done with an easy to use command line tool called `shipthis`.
7
+ :::tip Info
8
+ You don't need an Apple computer to use ShipThis.
9
+ :::
8
10
 
9
11
  ## Quickstart
10
12
 
11
13
  Let's discover **ShipThis in less than 5 minutes**.
12
14
 
13
- ### Getting Started
14
-
15
- ShipThis is a platform that helps you manage shipping your [Godot](https://godotengine.org/) games to the App Store.
16
-
17
- #### What you'll need
15
+ ### What you'll need
18
16
 
19
17
  - A Godot game
20
18
  - [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
@@ -23,9 +21,9 @@ ShipThis is a platform that helps you manage shipping your [Godot](https://godot
23
21
 
24
22
  ### 1. Install ShipThis
25
23
 
26
- ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
24
+ ShipThis can be installed as a package via the [NPM package manager](https://www.npmjs.com/). Run the following at the command line:
27
25
 
28
- ```
26
+ ```bash
29
27
  npm install -g shipthis
30
28
  ```
31
29
 
@@ -33,7 +31,7 @@ npm install -g shipthis
33
31
 
34
32
  Set up an account with ShipThis by logging in for the first time using the [`shipthis login`](https://shipthis.cc/docs/reference/login) command.
35
33
 
36
- ```
34
+ ```bash
37
35
  shipthis login
38
36
  ```
39
37
 
@@ -41,7 +39,7 @@ shipthis login
41
39
 
42
40
  Set up your ShipThis configuration using the built in [wizard](https://shipthis.cc/docs/wizard):
43
41
 
44
- ```
42
+ ```bash
45
43
  shipthis game wizard
46
44
  ```
47
45
 
@@ -49,7 +47,7 @@ shipthis game wizard
49
47
 
50
48
  Now you can publish your game to TestFlight with the [`shipthis game ship`](https://shipthis.cc/docs/reference/game/ship) command:
51
49
 
52
- ```
50
+ ```bash
53
51
  shipthis game ship
54
52
  ```
55
53
 
@@ -68,4 +66,3 @@ Connect](https://appstoreconnect.apple.com/).
68
66
  - [login](https://shipthis.cc/docs/reference/login) - Signin or create a new account
69
67
  - [status](https://shipthis.cc/docs/reference/status) - Display your overall ShipThis account status
70
68
  - [help](https://shipthis.cc/docs/reference/help) - Display help for a specific topic or command
71
-
@@ -1,6 +1,21 @@
1
1
  # Topic: `apple apiKey`
2
2
 
3
- Commands related to App Store Connect API Keys
3
+ Commands in the apple apiKey topic are prefixed `shipthis apple apiKey`. These commands relate to App Store Connect API Keys.
4
+
5
+ - You can view the App Store Connect API Keys in the [Apple Developer Portal](https://appstoreconnect.apple.com/access/integrations/api).
6
+ - You can view the keys which ShipThis can use in the [ShipThis Dashboard](https://shipthis.cc/credentials)
7
+
8
+ :::tip
9
+ You will need to be authenticated against ShipThis and Apple before you can use
10
+ these commands. To do that please run the following commands first:
11
+
12
+ - [`shipthis login`](/docs/reference/login)
13
+ - [`shipthis apple login`](/docs/reference/apple/login)
14
+ :::
15
+
16
+ ## Example
17
+
18
+
4
19
 
5
20
 
6
21
  ## Commands
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## Description
4
4
 
5
+ :::tip
6
+ We recommend configuring your game using the [`shipthis game wizard`](/docs/reference/game/wizard).
7
+ The `shipthis game create` command is the first step run by the wizard
8
+ :::
9
+
5
10
  Creates a new game in your [ShipThis account](https://shipthis.cc/games).
6
11
 
7
12
  It will read the name of your game from your `project.godot` file. You will be
@@ -663,6 +663,139 @@
663
663
  "status.js"
664
664
  ]
665
665
  },
666
+ "game:build:download": {
667
+ "aliases": [],
668
+ "args": {
669
+ "build_id": {
670
+ "description": "The ID of the build to download",
671
+ "name": "build_id",
672
+ "required": true
673
+ },
674
+ "file": {
675
+ "description": "Name of the file to output",
676
+ "name": "file",
677
+ "required": true
678
+ }
679
+ },
680
+ "description": "Downloads the given build artifact to the specified file",
681
+ "examples": [
682
+ "<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
683
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
684
+ ],
685
+ "flags": {
686
+ "gameId": {
687
+ "char": "g",
688
+ "description": "The ID of the game",
689
+ "name": "gameId",
690
+ "hasDynamicHelp": false,
691
+ "multiple": false,
692
+ "type": "option"
693
+ },
694
+ "force": {
695
+ "char": "f",
696
+ "description": "Overwrite the file if it already exists",
697
+ "name": "force",
698
+ "allowNo": false,
699
+ "type": "boolean"
700
+ }
701
+ },
702
+ "hasDynamicHelp": false,
703
+ "hiddenAliases": [],
704
+ "id": "game:build:download",
705
+ "pluginAlias": "shipthis",
706
+ "pluginName": "shipthis",
707
+ "pluginType": "core",
708
+ "strict": true,
709
+ "enableJsonFlag": false,
710
+ "isESM": true,
711
+ "relativePath": [
712
+ "dist",
713
+ "commands",
714
+ "game",
715
+ "build",
716
+ "download.js"
717
+ ]
718
+ },
719
+ "game:build:list": {
720
+ "aliases": [],
721
+ "args": {},
722
+ "description": "Lists the builds for successful jobs of a game.",
723
+ "examples": [
724
+ "<%= config.bin %> <%= command.id %>",
725
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
726
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
727
+ ],
728
+ "flags": {
729
+ "gameId": {
730
+ "char": "g",
731
+ "description": "The ID of the game",
732
+ "name": "gameId",
733
+ "hasDynamicHelp": false,
734
+ "multiple": false,
735
+ "type": "option"
736
+ },
737
+ "pageNumber": {
738
+ "char": "p",
739
+ "description": "The page number to show (starts at 0)",
740
+ "name": "pageNumber",
741
+ "default": 0,
742
+ "hasDynamicHelp": false,
743
+ "multiple": false,
744
+ "type": "option"
745
+ },
746
+ "pageSize": {
747
+ "char": "s",
748
+ "description": "The number of items to show per page",
749
+ "name": "pageSize",
750
+ "default": 10,
751
+ "hasDynamicHelp": false,
752
+ "multiple": false,
753
+ "type": "option"
754
+ },
755
+ "orderBy": {
756
+ "char": "o",
757
+ "description": "The field to order by",
758
+ "name": "orderBy",
759
+ "default": "createdAt",
760
+ "hasDynamicHelp": false,
761
+ "multiple": false,
762
+ "options": [
763
+ "createdAt",
764
+ "updatedAt"
765
+ ],
766
+ "type": "option"
767
+ },
768
+ "order": {
769
+ "char": "r",
770
+ "description": "The order to sort by",
771
+ "name": "order",
772
+ "default": "desc",
773
+ "hasDynamicHelp": false,
774
+ "multiple": false,
775
+ "options": [
776
+ "asc",
777
+ "desc"
778
+ ],
779
+ "type": "option"
780
+ }
781
+ },
782
+ "hasDynamicHelp": false,
783
+ "hiddenAliases": [],
784
+ "id": "game:build:list",
785
+ "pluginAlias": "shipthis",
786
+ "pluginName": "shipthis",
787
+ "pluginType": "core",
788
+ "strict": true,
789
+ "enableJsonFlag": false,
790
+ "isESM": true,
791
+ "relativePath": [
792
+ "dist",
793
+ "commands",
794
+ "game",
795
+ "build",
796
+ "list.js"
797
+ ]
798
+ },
666
799
  "apple:apiKey:create": {
667
800
  "aliases": [],
668
801
  "args": {},
@@ -812,24 +945,13 @@
812
945
  "status.js"
813
946
  ]
814
947
  },
815
- "game:build:download": {
948
+ "game:ios:status": {
816
949
  "aliases": [],
817
- "args": {
818
- "build_id": {
819
- "description": "The ID of the build to download",
820
- "name": "build_id",
821
- "required": true
822
- },
823
- "file": {
824
- "description": "Name of the file to output",
825
- "name": "file",
826
- "required": true
827
- }
828
- },
829
- "description": "Downloads the given build artifact to the specified file",
950
+ "args": {},
951
+ "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
830
952
  "examples": [
831
- "<%= config.bin %> <%= command.id %> 7a3f5c92 output.ipa",
832
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 e4b9a3d7 output.apk"
953
+ "<%= config.bin %> <%= command.id %>",
954
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
833
955
  ],
834
956
  "flags": {
835
957
  "gameId": {
@@ -839,18 +961,11 @@
839
961
  "hasDynamicHelp": false,
840
962
  "multiple": false,
841
963
  "type": "option"
842
- },
843
- "force": {
844
- "char": "f",
845
- "description": "Overwrite the file if it already exists",
846
- "name": "force",
847
- "allowNo": false,
848
- "type": "boolean"
849
964
  }
850
965
  },
851
966
  "hasDynamicHelp": false,
852
967
  "hiddenAliases": [],
853
- "id": "game:build:download",
968
+ "id": "game:ios:status",
854
969
  "pluginAlias": "shipthis",
855
970
  "pluginName": "shipthis",
856
971
  "pluginType": "core",
@@ -861,18 +976,17 @@
861
976
  "dist",
862
977
  "commands",
863
978
  "game",
864
- "build",
865
- "download.js"
979
+ "ios",
980
+ "status.js"
866
981
  ]
867
982
  },
868
- "game:build:list": {
983
+ "game:job:list": {
869
984
  "aliases": [],
870
985
  "args": {},
871
- "description": "Lists the builds for successful jobs of a game.",
986
+ "description": "Lists the jobs for a game.",
872
987
  "examples": [
873
988
  "<%= config.bin %> <%= command.id %>",
874
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4",
875
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --pageSize 20 --pageNumber 1"
989
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
876
990
  ],
877
991
  "flags": {
878
992
  "gameId": {
@@ -930,7 +1044,7 @@
930
1044
  },
931
1045
  "hasDynamicHelp": false,
932
1046
  "hiddenAliases": [],
933
- "id": "game:build:list",
1047
+ "id": "game:job:list",
934
1048
  "pluginAlias": "shipthis",
935
1049
  "pluginName": "shipthis",
936
1050
  "pluginType": "core",
@@ -941,17 +1055,24 @@
941
1055
  "dist",
942
1056
  "commands",
943
1057
  "game",
944
- "build",
1058
+ "job",
945
1059
  "list.js"
946
1060
  ]
947
1061
  },
948
- "game:ios:status": {
1062
+ "game:job:status": {
949
1063
  "aliases": [],
950
- "args": {},
951
- "description": "Shows the Game iOS Platform status. If --gameId is not provided it will look in the current directory.",
1064
+ "args": {
1065
+ "job_id": {
1066
+ "description": "The id of the job to get the status of",
1067
+ "name": "job_id",
1068
+ "required": true
1069
+ }
1070
+ },
1071
+ "description": "Shows the real-time status of a job.",
952
1072
  "examples": [
953
- "<%= config.bin %> <%= command.id %>",
954
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1073
+ "<%= config.bin %> <%= command.id %> 4d32239e",
1074
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 4d32239e",
1075
+ "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --lines 20 --follow 4d32239e"
955
1076
  ],
956
1077
  "flags": {
957
1078
  "gameId": {
@@ -961,11 +1082,27 @@
961
1082
  "hasDynamicHelp": false,
962
1083
  "multiple": false,
963
1084
  "type": "option"
1085
+ },
1086
+ "lines": {
1087
+ "char": "n",
1088
+ "description": "The number of lines to show",
1089
+ "name": "lines",
1090
+ "default": 10,
1091
+ "hasDynamicHelp": false,
1092
+ "multiple": false,
1093
+ "type": "option"
1094
+ },
1095
+ "follow": {
1096
+ "char": "f",
1097
+ "description": "Follow the log in real-time",
1098
+ "name": "follow",
1099
+ "allowNo": false,
1100
+ "type": "boolean"
964
1101
  }
965
1102
  },
966
1103
  "hasDynamicHelp": false,
967
1104
  "hiddenAliases": [],
968
- "id": "game:ios:status",
1105
+ "id": "game:job:status",
969
1106
  "pluginAlias": "shipthis",
970
1107
  "pluginName": "shipthis",
971
1108
  "pluginType": "core",
@@ -976,17 +1113,16 @@
976
1113
  "dist",
977
1114
  "commands",
978
1115
  "game",
979
- "ios",
1116
+ "job",
980
1117
  "status.js"
981
1118
  ]
982
1119
  },
983
- "game:job:list": {
1120
+ "game:ios:app:addTester": {
984
1121
  "aliases": [],
985
1122
  "args": {},
986
- "description": "Lists the jobs for a game.",
1123
+ "description": "Adds a test user to the game in App Store Connect.",
987
1124
  "examples": [
988
- "<%= config.bin %> <%= command.id %>",
989
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4"
1125
+ "<%= config.bin %> <%= command.id %>"
990
1126
  ],
991
1127
  "flags": {
992
1128
  "gameId": {
@@ -997,112 +1133,34 @@
997
1133
  "multiple": false,
998
1134
  "type": "option"
999
1135
  },
1000
- "pageNumber": {
1001
- "char": "p",
1002
- "description": "The page number to show (starts at 0)",
1003
- "name": "pageNumber",
1004
- "default": 0,
1136
+ "email": {
1137
+ "char": "e",
1138
+ "description": "The email address of the tester",
1139
+ "name": "email",
1005
1140
  "hasDynamicHelp": false,
1006
1141
  "multiple": false,
1007
1142
  "type": "option"
1008
1143
  },
1009
- "pageSize": {
1010
- "char": "s",
1011
- "description": "The number of items to show per page",
1012
- "name": "pageSize",
1013
- "default": 10,
1144
+ "firstName": {
1145
+ "char": "f",
1146
+ "description": "The first name of the tester",
1147
+ "name": "firstName",
1014
1148
  "hasDynamicHelp": false,
1015
1149
  "multiple": false,
1016
1150
  "type": "option"
1017
1151
  },
1018
- "orderBy": {
1019
- "char": "o",
1020
- "description": "The field to order by",
1021
- "name": "orderBy",
1022
- "default": "createdAt",
1152
+ "lastName": {
1153
+ "char": "l",
1154
+ "description": "The last name of the tester",
1155
+ "name": "lastName",
1023
1156
  "hasDynamicHelp": false,
1024
1157
  "multiple": false,
1025
- "options": [
1026
- "createdAt",
1027
- "updatedAt"
1028
- ],
1029
1158
  "type": "option"
1030
- },
1031
- "order": {
1032
- "char": "r",
1033
- "description": "The order to sort by",
1034
- "name": "order",
1035
- "default": "desc",
1036
- "hasDynamicHelp": false,
1037
- "multiple": false,
1038
- "options": [
1039
- "asc",
1040
- "desc"
1041
- ],
1042
- "type": "option"
1043
- }
1044
- },
1045
- "hasDynamicHelp": false,
1046
- "hiddenAliases": [],
1047
- "id": "game:job:list",
1048
- "pluginAlias": "shipthis",
1049
- "pluginName": "shipthis",
1050
- "pluginType": "core",
1051
- "strict": true,
1052
- "enableJsonFlag": false,
1053
- "isESM": true,
1054
- "relativePath": [
1055
- "dist",
1056
- "commands",
1057
- "game",
1058
- "job",
1059
- "list.js"
1060
- ]
1061
- },
1062
- "game:job:status": {
1063
- "aliases": [],
1064
- "args": {
1065
- "job_id": {
1066
- "description": "The id of the job to get the status of",
1067
- "name": "job_id",
1068
- "required": true
1069
- }
1070
- },
1071
- "description": "Shows the real-time status of a job.",
1072
- "examples": [
1073
- "<%= config.bin %> <%= command.id %> 4d32239e",
1074
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 4d32239e",
1075
- "<%= config.bin %> <%= command.id %> --gameId 0c179fc4 --lines 20 --follow 4d32239e"
1076
- ],
1077
- "flags": {
1078
- "gameId": {
1079
- "char": "g",
1080
- "description": "The ID of the game",
1081
- "name": "gameId",
1082
- "hasDynamicHelp": false,
1083
- "multiple": false,
1084
- "type": "option"
1085
- },
1086
- "lines": {
1087
- "char": "n",
1088
- "description": "The number of lines to show",
1089
- "name": "lines",
1090
- "default": 10,
1091
- "hasDynamicHelp": false,
1092
- "multiple": false,
1093
- "type": "option"
1094
- },
1095
- "follow": {
1096
- "char": "f",
1097
- "description": "Follow the log in real-time",
1098
- "name": "follow",
1099
- "allowNo": false,
1100
- "type": "boolean"
1101
1159
  }
1102
1160
  },
1103
1161
  "hasDynamicHelp": false,
1104
1162
  "hiddenAliases": [],
1105
- "id": "game:job:status",
1163
+ "id": "game:ios:app:addTester",
1106
1164
  "pluginAlias": "shipthis",
1107
1165
  "pluginName": "shipthis",
1108
1166
  "pluginType": "core",
@@ -1113,14 +1171,15 @@
1113
1171
  "dist",
1114
1172
  "commands",
1115
1173
  "game",
1116
- "job",
1117
- "status.js"
1174
+ "ios",
1175
+ "app",
1176
+ "addTester.js"
1118
1177
  ]
1119
1178
  },
1120
- "game:ios:profile:create": {
1179
+ "game:ios:app:create": {
1121
1180
  "aliases": [],
1122
1181
  "args": {},
1123
- "description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.",
1182
+ "description": "Creates an App and BundleId in the Apple Developer Portal.",
1124
1183
  "examples": [
1125
1184
  "<%= config.bin %> <%= command.id %>"
1126
1185
  ],
@@ -1140,6 +1199,22 @@
1140
1199
  "multiple": false,
1141
1200
  "type": "option"
1142
1201
  },
1202
+ "appName": {
1203
+ "char": "n",
1204
+ "description": "The name of the App in the Apple Developer Portal",
1205
+ "name": "appName",
1206
+ "hasDynamicHelp": false,
1207
+ "multiple": false,
1208
+ "type": "option"
1209
+ },
1210
+ "bundleId": {
1211
+ "char": "b",
1212
+ "description": "The BundleId in the Apple Developer Portal",
1213
+ "name": "bundleId",
1214
+ "hasDynamicHelp": false,
1215
+ "multiple": false,
1216
+ "type": "option"
1217
+ },
1143
1218
  "force": {
1144
1219
  "char": "f",
1145
1220
  "name": "force",
@@ -1149,7 +1224,7 @@
1149
1224
  },
1150
1225
  "hasDynamicHelp": false,
1151
1226
  "hiddenAliases": [],
1152
- "id": "game:ios:profile:create",
1227
+ "id": "game:ios:app:create",
1153
1228
  "pluginAlias": "shipthis",
1154
1229
  "pluginName": "shipthis",
1155
1230
  "pluginType": "core",
@@ -1161,22 +1236,16 @@
1161
1236
  "commands",
1162
1237
  "game",
1163
1238
  "ios",
1164
- "profile",
1239
+ "app",
1165
1240
  "create.js"
1166
1241
  ]
1167
1242
  },
1168
- "game:ios:profile:export": {
1243
+ "game:ios:app:status": {
1169
1244
  "aliases": [],
1170
- "args": {
1171
- "file": {
1172
- "description": "Name of the ZIP file to create",
1173
- "name": "file",
1174
- "required": true
1175
- }
1176
- },
1177
- "description": "Saves the current Mobile Provisioning Profile to a ZIP file",
1245
+ "args": {},
1246
+ "description": "Shows the Game iOS App status. ",
1178
1247
  "examples": [
1179
- "<%= config.bin %> <%= command.id %> userProfile.zip"
1248
+ "<%= config.bin %> <%= command.id %>"
1180
1249
  ],
1181
1250
  "flags": {
1182
1251
  "gameId": {
@@ -1186,18 +1255,11 @@
1186
1255
  "hasDynamicHelp": false,
1187
1256
  "multiple": false,
1188
1257
  "type": "option"
1189
- },
1190
- "force": {
1191
- "char": "f",
1192
- "description": "Overwrite the file if it already exists",
1193
- "name": "force",
1194
- "allowNo": false,
1195
- "type": "boolean"
1196
1258
  }
1197
1259
  },
1198
1260
  "hasDynamicHelp": false,
1199
1261
  "hiddenAliases": [],
1200
- "id": "game:ios:profile:export",
1262
+ "id": "game:ios:app:status",
1201
1263
  "pluginAlias": "shipthis",
1202
1264
  "pluginName": "shipthis",
1203
1265
  "pluginType": "core",
@@ -1209,24 +1271,25 @@
1209
1271
  "commands",
1210
1272
  "game",
1211
1273
  "ios",
1212
- "profile",
1213
- "export.js"
1274
+ "app",
1275
+ "status.js"
1214
1276
  ]
1215
1277
  },
1216
- "game:ios:profile:import": {
1278
+ "game:ios:app:sync": {
1217
1279
  "aliases": [],
1218
- "args": {
1219
- "file": {
1220
- "description": "Name of the ZIP file to import (must be in the same format as the export)",
1221
- "name": "file",
1222
- "required": true
1223
- }
1224
- },
1225
- "description": "Imports an Mobile Provisioning Profile to your ShipThis account",
1280
+ "args": {},
1281
+ "description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.",
1226
1282
  "examples": [
1227
- "<%= config.bin %> <%= command.id %> profile.zip"
1283
+ "<%= config.bin %> <%= command.id %>"
1228
1284
  ],
1229
1285
  "flags": {
1286
+ "quiet": {
1287
+ "char": "q",
1288
+ "description": "Avoid output except for interactions and errors",
1289
+ "name": "quiet",
1290
+ "allowNo": false,
1291
+ "type": "boolean"
1292
+ },
1230
1293
  "gameId": {
1231
1294
  "char": "g",
1232
1295
  "description": "The ID of the game",
@@ -1244,7 +1307,7 @@
1244
1307
  },
1245
1308
  "hasDynamicHelp": false,
1246
1309
  "hiddenAliases": [],
1247
- "id": "game:ios:profile:import",
1310
+ "id": "game:ios:app:sync",
1248
1311
  "pluginAlias": "shipthis",
1249
1312
  "pluginName": "shipthis",
1250
1313
  "pluginType": "core",
@@ -1256,18 +1319,25 @@
1256
1319
  "commands",
1257
1320
  "game",
1258
1321
  "ios",
1259
- "profile",
1260
- "import.js"
1322
+ "app",
1323
+ "sync.js"
1261
1324
  ]
1262
1325
  },
1263
- "game:ios:profile:status": {
1326
+ "game:ios:profile:create": {
1264
1327
  "aliases": [],
1265
1328
  "args": {},
1266
- "description": "Shows the Game iOS Mobile Provisioning Profile Status.",
1329
+ "description": "Creates a Mobile Provisioning Profile in the Apple Developer Portal.",
1267
1330
  "examples": [
1268
1331
  "<%= config.bin %> <%= command.id %>"
1269
1332
  ],
1270
1333
  "flags": {
1334
+ "quiet": {
1335
+ "char": "q",
1336
+ "description": "Avoid output except for interactions and errors",
1337
+ "name": "quiet",
1338
+ "allowNo": false,
1339
+ "type": "boolean"
1340
+ },
1271
1341
  "gameId": {
1272
1342
  "char": "g",
1273
1343
  "description": "The ID of the game",
@@ -1276,16 +1346,16 @@
1276
1346
  "multiple": false,
1277
1347
  "type": "option"
1278
1348
  },
1279
- "noAppleAuth": {
1349
+ "force": {
1280
1350
  "char": "f",
1281
- "name": "noAppleAuth",
1351
+ "name": "force",
1282
1352
  "allowNo": false,
1283
1353
  "type": "boolean"
1284
1354
  }
1285
1355
  },
1286
1356
  "hasDynamicHelp": false,
1287
1357
  "hiddenAliases": [],
1288
- "id": "game:ios:profile:status",
1358
+ "id": "game:ios:profile:create",
1289
1359
  "pluginAlias": "shipthis",
1290
1360
  "pluginName": "shipthis",
1291
1361
  "pluginType": "core",
@@ -1298,83 +1368,23 @@
1298
1368
  "game",
1299
1369
  "ios",
1300
1370
  "profile",
1301
- "status.js"
1371
+ "create.js"
1302
1372
  ]
1303
1373
  },
1304
- "game:ios:app:addTester": {
1374
+ "game:ios:profile:export": {
1305
1375
  "aliases": [],
1306
- "args": {},
1307
- "description": "Adds a test user to the game in App Store Connect.",
1308
- "examples": [
1309
- "<%= config.bin %> <%= command.id %>"
1310
- ],
1311
- "flags": {
1312
- "gameId": {
1313
- "char": "g",
1314
- "description": "The ID of the game",
1315
- "name": "gameId",
1316
- "hasDynamicHelp": false,
1317
- "multiple": false,
1318
- "type": "option"
1319
- },
1320
- "email": {
1321
- "char": "e",
1322
- "description": "The email address of the tester",
1323
- "name": "email",
1324
- "hasDynamicHelp": false,
1325
- "multiple": false,
1326
- "type": "option"
1327
- },
1328
- "firstName": {
1329
- "char": "f",
1330
- "description": "The first name of the tester",
1331
- "name": "firstName",
1332
- "hasDynamicHelp": false,
1333
- "multiple": false,
1334
- "type": "option"
1335
- },
1336
- "lastName": {
1337
- "char": "l",
1338
- "description": "The last name of the tester",
1339
- "name": "lastName",
1340
- "hasDynamicHelp": false,
1341
- "multiple": false,
1342
- "type": "option"
1376
+ "args": {
1377
+ "file": {
1378
+ "description": "Name of the ZIP file to create",
1379
+ "name": "file",
1380
+ "required": true
1343
1381
  }
1344
1382
  },
1345
- "hasDynamicHelp": false,
1346
- "hiddenAliases": [],
1347
- "id": "game:ios:app:addTester",
1348
- "pluginAlias": "shipthis",
1349
- "pluginName": "shipthis",
1350
- "pluginType": "core",
1351
- "strict": true,
1352
- "enableJsonFlag": false,
1353
- "isESM": true,
1354
- "relativePath": [
1355
- "dist",
1356
- "commands",
1357
- "game",
1358
- "ios",
1359
- "app",
1360
- "addTester.js"
1361
- ]
1362
- },
1363
- "game:ios:app:create": {
1364
- "aliases": [],
1365
- "args": {},
1366
- "description": "Creates an App and BundleId in the Apple Developer Portal.",
1383
+ "description": "Saves the current Mobile Provisioning Profile to a ZIP file",
1367
1384
  "examples": [
1368
- "<%= config.bin %> <%= command.id %>"
1385
+ "<%= config.bin %> <%= command.id %> userProfile.zip"
1369
1386
  ],
1370
1387
  "flags": {
1371
- "quiet": {
1372
- "char": "q",
1373
- "description": "Avoid output except for interactions and errors",
1374
- "name": "quiet",
1375
- "allowNo": false,
1376
- "type": "boolean"
1377
- },
1378
1388
  "gameId": {
1379
1389
  "char": "g",
1380
1390
  "description": "The ID of the game",
@@ -1383,24 +1393,9 @@
1383
1393
  "multiple": false,
1384
1394
  "type": "option"
1385
1395
  },
1386
- "appName": {
1387
- "char": "n",
1388
- "description": "The name of the App in the Apple Developer Portal",
1389
- "name": "appName",
1390
- "hasDynamicHelp": false,
1391
- "multiple": false,
1392
- "type": "option"
1393
- },
1394
- "bundleId": {
1395
- "char": "b",
1396
- "description": "The BundleId in the Apple Developer Portal",
1397
- "name": "bundleId",
1398
- "hasDynamicHelp": false,
1399
- "multiple": false,
1400
- "type": "option"
1401
- },
1402
1396
  "force": {
1403
1397
  "char": "f",
1398
+ "description": "Overwrite the file if it already exists",
1404
1399
  "name": "force",
1405
1400
  "allowNo": false,
1406
1401
  "type": "boolean"
@@ -1408,7 +1403,7 @@
1408
1403
  },
1409
1404
  "hasDynamicHelp": false,
1410
1405
  "hiddenAliases": [],
1411
- "id": "game:ios:app:create",
1406
+ "id": "game:ios:profile:export",
1412
1407
  "pluginAlias": "shipthis",
1413
1408
  "pluginName": "shipthis",
1414
1409
  "pluginType": "core",
@@ -1420,16 +1415,22 @@
1420
1415
  "commands",
1421
1416
  "game",
1422
1417
  "ios",
1423
- "app",
1424
- "create.js"
1418
+ "profile",
1419
+ "export.js"
1425
1420
  ]
1426
1421
  },
1427
- "game:ios:app:status": {
1422
+ "game:ios:profile:import": {
1428
1423
  "aliases": [],
1429
- "args": {},
1430
- "description": "Shows the Game iOS App status. ",
1424
+ "args": {
1425
+ "file": {
1426
+ "description": "Name of the ZIP file to import (must be in the same format as the export)",
1427
+ "name": "file",
1428
+ "required": true
1429
+ }
1430
+ },
1431
+ "description": "Imports an Mobile Provisioning Profile to your ShipThis account",
1431
1432
  "examples": [
1432
- "<%= config.bin %> <%= command.id %>"
1433
+ "<%= config.bin %> <%= command.id %> profile.zip"
1433
1434
  ],
1434
1435
  "flags": {
1435
1436
  "gameId": {
@@ -1439,11 +1440,17 @@
1439
1440
  "hasDynamicHelp": false,
1440
1441
  "multiple": false,
1441
1442
  "type": "option"
1443
+ },
1444
+ "force": {
1445
+ "char": "f",
1446
+ "name": "force",
1447
+ "allowNo": false,
1448
+ "type": "boolean"
1442
1449
  }
1443
1450
  },
1444
1451
  "hasDynamicHelp": false,
1445
1452
  "hiddenAliases": [],
1446
- "id": "game:ios:app:status",
1453
+ "id": "game:ios:profile:import",
1447
1454
  "pluginAlias": "shipthis",
1448
1455
  "pluginName": "shipthis",
1449
1456
  "pluginType": "core",
@@ -1455,25 +1462,18 @@
1455
1462
  "commands",
1456
1463
  "game",
1457
1464
  "ios",
1458
- "app",
1459
- "status.js"
1465
+ "profile",
1466
+ "import.js"
1460
1467
  ]
1461
1468
  },
1462
- "game:ios:app:sync": {
1469
+ "game:ios:profile:status": {
1463
1470
  "aliases": [],
1464
1471
  "args": {},
1465
- "description": "Synchronies the Apple App \"BundleId\" with the capabilities from the local project.",
1472
+ "description": "Shows the Game iOS Mobile Provisioning Profile Status.",
1466
1473
  "examples": [
1467
1474
  "<%= config.bin %> <%= command.id %>"
1468
1475
  ],
1469
1476
  "flags": {
1470
- "quiet": {
1471
- "char": "q",
1472
- "description": "Avoid output except for interactions and errors",
1473
- "name": "quiet",
1474
- "allowNo": false,
1475
- "type": "boolean"
1476
- },
1477
1477
  "gameId": {
1478
1478
  "char": "g",
1479
1479
  "description": "The ID of the game",
@@ -1482,16 +1482,16 @@
1482
1482
  "multiple": false,
1483
1483
  "type": "option"
1484
1484
  },
1485
- "force": {
1485
+ "noAppleAuth": {
1486
1486
  "char": "f",
1487
- "name": "force",
1487
+ "name": "noAppleAuth",
1488
1488
  "allowNo": false,
1489
1489
  "type": "boolean"
1490
1490
  }
1491
1491
  },
1492
1492
  "hasDynamicHelp": false,
1493
1493
  "hiddenAliases": [],
1494
- "id": "game:ios:app:sync",
1494
+ "id": "game:ios:profile:status",
1495
1495
  "pluginAlias": "shipthis",
1496
1496
  "pluginName": "shipthis",
1497
1497
  "pluginType": "core",
@@ -1503,10 +1503,10 @@
1503
1503
  "commands",
1504
1504
  "game",
1505
1505
  "ios",
1506
- "app",
1507
- "sync.js"
1506
+ "profile",
1507
+ "status.js"
1508
1508
  ]
1509
1509
  }
1510
1510
  },
1511
- "version": "0.0.26"
1511
+ "version": "0.0.28"
1512
1512
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shipthis",
3
3
  "description": "Game Shipping Tool",
4
- "version": "0.0.26",
4
+ "version": "0.0.28",
5
5
  "author": "Hello Invent Ltd",
6
6
  "bin": {
7
7
  "shipthis": "./bin/run.js"