shipthis 0.0.27 → 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/dist/commands/apple/apiKey/status.js +17 -15
- package/dist/commands/apple/certificate/status.js +1 -1
- package/dist/commands/apple/status.js +1 -1
- package/dist/commands/game/ios/app/status.js +2 -2
- package/dist/commands/game/ios/profile/status.js +1 -1
- package/dist/commands/game/ios/status.js +2 -2
- package/dist/commands/game/job/status.js +1 -1
- package/dist/commands/game/status.js +1 -1
- package/dist/commands/status.js +1 -1
- package/oclif.manifest.json +37 -37
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs,
|
|
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';
|
|
@@ -19,9 +19,9 @@ import Spinner from 'ink-spinner';
|
|
|
19
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(
|
|
61
|
-
/* @__PURE__ */
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
/* @__PURE__ */ jsxs(
|
|
65
|
-
/* @__PURE__ */
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
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';
|
package/dist/commands/status.js
CHANGED
|
@@ -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/oclif.manifest.json
CHANGED
|
@@ -514,10 +514,10 @@
|
|
|
514
514
|
"wizard.js"
|
|
515
515
|
]
|
|
516
516
|
},
|
|
517
|
-
"apple:
|
|
517
|
+
"apple:certificate:create": {
|
|
518
518
|
"aliases": [],
|
|
519
519
|
"args": {},
|
|
520
|
-
"description": "Creates an
|
|
520
|
+
"description": "Creates an iOS Distribution Certificate in your Apple Developer account.\nSaves the certificate with the private key to your ShipThis account",
|
|
521
521
|
"examples": [
|
|
522
522
|
"<%= config.bin %> <%= command.id %>",
|
|
523
523
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
},
|
|
540
540
|
"hasDynamicHelp": false,
|
|
541
541
|
"hiddenAliases": [],
|
|
542
|
-
"id": "apple:
|
|
542
|
+
"id": "apple:certificate:create",
|
|
543
543
|
"pluginAlias": "shipthis",
|
|
544
544
|
"pluginName": "shipthis",
|
|
545
545
|
"pluginType": "core",
|
|
@@ -549,11 +549,11 @@
|
|
|
549
549
|
"dist",
|
|
550
550
|
"commands",
|
|
551
551
|
"apple",
|
|
552
|
-
"
|
|
552
|
+
"certificate",
|
|
553
553
|
"create.js"
|
|
554
554
|
]
|
|
555
555
|
},
|
|
556
|
-
"apple:
|
|
556
|
+
"apple:certificate:export": {
|
|
557
557
|
"aliases": [],
|
|
558
558
|
"args": {
|
|
559
559
|
"file": {
|
|
@@ -562,9 +562,9 @@
|
|
|
562
562
|
"required": true
|
|
563
563
|
}
|
|
564
564
|
},
|
|
565
|
-
"description": "Saves the current
|
|
565
|
+
"description": "Saves the current Apple Distribution Certificate to a ZIP file.",
|
|
566
566
|
"examples": [
|
|
567
|
-
"<%= config.bin %> <%= command.id %>
|
|
567
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
568
568
|
],
|
|
569
569
|
"flags": {
|
|
570
570
|
"force": {
|
|
@@ -577,7 +577,7 @@
|
|
|
577
577
|
},
|
|
578
578
|
"hasDynamicHelp": false,
|
|
579
579
|
"hiddenAliases": [],
|
|
580
|
-
"id": "apple:
|
|
580
|
+
"id": "apple:certificate:export",
|
|
581
581
|
"pluginAlias": "shipthis",
|
|
582
582
|
"pluginName": "shipthis",
|
|
583
583
|
"pluginType": "core",
|
|
@@ -588,11 +588,11 @@
|
|
|
588
588
|
"dist",
|
|
589
589
|
"commands",
|
|
590
590
|
"apple",
|
|
591
|
-
"
|
|
591
|
+
"certificate",
|
|
592
592
|
"export.js"
|
|
593
593
|
]
|
|
594
594
|
},
|
|
595
|
-
"apple:
|
|
595
|
+
"apple:certificate:import": {
|
|
596
596
|
"aliases": [],
|
|
597
597
|
"args": {
|
|
598
598
|
"file": {
|
|
@@ -601,9 +601,9 @@
|
|
|
601
601
|
"required": true
|
|
602
602
|
}
|
|
603
603
|
},
|
|
604
|
-
"description": "Imports an
|
|
604
|
+
"description": "Imports an iOS Distribution Certificate to your ShipThis account",
|
|
605
605
|
"examples": [
|
|
606
|
-
"<%= config.bin %> <%= command.id %>
|
|
606
|
+
"<%= config.bin %> <%= command.id %> userCert.zip"
|
|
607
607
|
],
|
|
608
608
|
"flags": {
|
|
609
609
|
"force": {
|
|
@@ -615,7 +615,7 @@
|
|
|
615
615
|
},
|
|
616
616
|
"hasDynamicHelp": false,
|
|
617
617
|
"hiddenAliases": [],
|
|
618
|
-
"id": "apple:
|
|
618
|
+
"id": "apple:certificate:import",
|
|
619
619
|
"pluginAlias": "shipthis",
|
|
620
620
|
"pluginName": "shipthis",
|
|
621
621
|
"pluginType": "core",
|
|
@@ -626,14 +626,14 @@
|
|
|
626
626
|
"dist",
|
|
627
627
|
"commands",
|
|
628
628
|
"apple",
|
|
629
|
-
"
|
|
629
|
+
"certificate",
|
|
630
630
|
"import.js"
|
|
631
631
|
]
|
|
632
632
|
},
|
|
633
|
-
"apple:
|
|
633
|
+
"apple:certificate:status": {
|
|
634
634
|
"aliases": [],
|
|
635
635
|
"args": {},
|
|
636
|
-
"description": "Displays the status of
|
|
636
|
+
"description": "Displays the status of the iOS Distribution certificates in your Apple and ShipThis accounts.\nThese are used to sign all of your iOS apps.",
|
|
637
637
|
"examples": [
|
|
638
638
|
"<%= config.bin %> <%= command.id %>",
|
|
639
639
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
},
|
|
649
649
|
"hasDynamicHelp": false,
|
|
650
650
|
"hiddenAliases": [],
|
|
651
|
-
"id": "apple:
|
|
651
|
+
"id": "apple:certificate:status",
|
|
652
652
|
"pluginAlias": "shipthis",
|
|
653
653
|
"pluginName": "shipthis",
|
|
654
654
|
"pluginType": "core",
|
|
@@ -659,7 +659,7 @@
|
|
|
659
659
|
"dist",
|
|
660
660
|
"commands",
|
|
661
661
|
"apple",
|
|
662
|
-
"
|
|
662
|
+
"certificate",
|
|
663
663
|
"status.js"
|
|
664
664
|
]
|
|
665
665
|
},
|
|
@@ -796,10 +796,10 @@
|
|
|
796
796
|
"list.js"
|
|
797
797
|
]
|
|
798
798
|
},
|
|
799
|
-
"apple:
|
|
799
|
+
"apple:apiKey:create": {
|
|
800
800
|
"aliases": [],
|
|
801
801
|
"args": {},
|
|
802
|
-
"description": "Creates an
|
|
802
|
+
"description": "Creates an App Store Connect API Key in your Apple Developer account.\nSaves the private key in your ShipThis account.",
|
|
803
803
|
"examples": [
|
|
804
804
|
"<%= config.bin %> <%= command.id %>",
|
|
805
805
|
"<%= config.bin %> <%= command.id %> --force"
|
|
@@ -821,7 +821,7 @@
|
|
|
821
821
|
},
|
|
822
822
|
"hasDynamicHelp": false,
|
|
823
823
|
"hiddenAliases": [],
|
|
824
|
-
"id": "apple:
|
|
824
|
+
"id": "apple:apiKey:create",
|
|
825
825
|
"pluginAlias": "shipthis",
|
|
826
826
|
"pluginName": "shipthis",
|
|
827
827
|
"pluginType": "core",
|
|
@@ -831,11 +831,11 @@
|
|
|
831
831
|
"dist",
|
|
832
832
|
"commands",
|
|
833
833
|
"apple",
|
|
834
|
-
"
|
|
834
|
+
"apiKey",
|
|
835
835
|
"create.js"
|
|
836
836
|
]
|
|
837
837
|
},
|
|
838
|
-
"apple:
|
|
838
|
+
"apple:apiKey:export": {
|
|
839
839
|
"aliases": [],
|
|
840
840
|
"args": {
|
|
841
841
|
"file": {
|
|
@@ -844,9 +844,9 @@
|
|
|
844
844
|
"required": true
|
|
845
845
|
}
|
|
846
846
|
},
|
|
847
|
-
"description": "Saves the current
|
|
847
|
+
"description": "Saves the current App Store Connect API Key to a ZIP file",
|
|
848
848
|
"examples": [
|
|
849
|
-
"<%= config.bin %> <%= command.id %>
|
|
849
|
+
"<%= config.bin %> <%= command.id %> userApiKey.zip"
|
|
850
850
|
],
|
|
851
851
|
"flags": {
|
|
852
852
|
"force": {
|
|
@@ -859,7 +859,7 @@
|
|
|
859
859
|
},
|
|
860
860
|
"hasDynamicHelp": false,
|
|
861
861
|
"hiddenAliases": [],
|
|
862
|
-
"id": "apple:
|
|
862
|
+
"id": "apple:apiKey:export",
|
|
863
863
|
"pluginAlias": "shipthis",
|
|
864
864
|
"pluginName": "shipthis",
|
|
865
865
|
"pluginType": "core",
|
|
@@ -870,11 +870,11 @@
|
|
|
870
870
|
"dist",
|
|
871
871
|
"commands",
|
|
872
872
|
"apple",
|
|
873
|
-
"
|
|
873
|
+
"apiKey",
|
|
874
874
|
"export.js"
|
|
875
875
|
]
|
|
876
876
|
},
|
|
877
|
-
"apple:
|
|
877
|
+
"apple:apiKey:import": {
|
|
878
878
|
"aliases": [],
|
|
879
879
|
"args": {
|
|
880
880
|
"file": {
|
|
@@ -883,9 +883,9 @@
|
|
|
883
883
|
"required": true
|
|
884
884
|
}
|
|
885
885
|
},
|
|
886
|
-
"description": "Imports an
|
|
886
|
+
"description": "Imports an App Store Connect API Key ZIP file into your ShipThis account",
|
|
887
887
|
"examples": [
|
|
888
|
-
"<%= config.bin %> <%= command.id %>
|
|
888
|
+
"<%= config.bin %> <%= command.id %> userApiKey.zip"
|
|
889
889
|
],
|
|
890
890
|
"flags": {
|
|
891
891
|
"force": {
|
|
@@ -897,7 +897,7 @@
|
|
|
897
897
|
},
|
|
898
898
|
"hasDynamicHelp": false,
|
|
899
899
|
"hiddenAliases": [],
|
|
900
|
-
"id": "apple:
|
|
900
|
+
"id": "apple:apiKey:import",
|
|
901
901
|
"pluginAlias": "shipthis",
|
|
902
902
|
"pluginName": "shipthis",
|
|
903
903
|
"pluginType": "core",
|
|
@@ -908,14 +908,14 @@
|
|
|
908
908
|
"dist",
|
|
909
909
|
"commands",
|
|
910
910
|
"apple",
|
|
911
|
-
"
|
|
911
|
+
"apiKey",
|
|
912
912
|
"import.js"
|
|
913
913
|
]
|
|
914
914
|
},
|
|
915
|
-
"apple:
|
|
915
|
+
"apple:apiKey:status": {
|
|
916
916
|
"aliases": [],
|
|
917
917
|
"args": {},
|
|
918
|
-
"description": "Displays the status of
|
|
918
|
+
"description": "Displays the status of App Store Connect API Keys in your Apple and ShipThis accounts.\nThis API key is used to automatically publish your games to the App Store.",
|
|
919
919
|
"examples": [
|
|
920
920
|
"<%= config.bin %> <%= command.id %>",
|
|
921
921
|
"<%= config.bin %> <%= command.id %> --noAppleAuth"
|
|
@@ -930,7 +930,7 @@
|
|
|
930
930
|
},
|
|
931
931
|
"hasDynamicHelp": false,
|
|
932
932
|
"hiddenAliases": [],
|
|
933
|
-
"id": "apple:
|
|
933
|
+
"id": "apple:apiKey:status",
|
|
934
934
|
"pluginAlias": "shipthis",
|
|
935
935
|
"pluginName": "shipthis",
|
|
936
936
|
"pluginType": "core",
|
|
@@ -941,7 +941,7 @@
|
|
|
941
941
|
"dist",
|
|
942
942
|
"commands",
|
|
943
943
|
"apple",
|
|
944
|
-
"
|
|
944
|
+
"apiKey",
|
|
945
945
|
"status.js"
|
|
946
946
|
]
|
|
947
947
|
},
|
|
@@ -1508,5 +1508,5 @@
|
|
|
1508
1508
|
]
|
|
1509
1509
|
}
|
|
1510
1510
|
},
|
|
1511
|
-
"version": "0.0.
|
|
1511
|
+
"version": "0.0.28"
|
|
1512
1512
|
}
|