shipthis 0.1.23 → 0.1.24
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/{AppleBundleIdDetails-C9C5WSPR.js → AppleBundleIdDetails-mPUG2R4N.js} +1 -1
- package/dist/{Command-BQCJ9Wf-.js → Command-B3AmRt2w.js} +1 -1
- package/dist/{CommandGame-CkGqTno0.js → CommandGame-BCMzP9pc.js} +2 -2
- package/dist/{Create-t_E231OA.js → Create-CsJxpzUs.js} +1 -1
- package/dist/{Import-Ljz1gxXd.js → Import-v0M_ygyF.js} +1 -1
- package/dist/{JobProgress-D9tHgBvi.js → JobProgress-9uvq8IBn.js} +2 -2
- package/dist/{JobStatusTable-DmI7qCHc.js → JobStatusTable-Bf7J9WXe.js} +21 -33
- package/dist/commands/apple/apiKey/create.js +2 -2
- package/dist/commands/apple/apiKey/export.js +2 -2
- package/dist/commands/apple/apiKey/import.js +2 -2
- package/dist/commands/apple/apiKey/status.js +2 -2
- package/dist/commands/apple/certificate/create.js +2 -2
- package/dist/commands/apple/certificate/export.js +2 -2
- package/dist/commands/apple/certificate/import.js +2 -2
- package/dist/commands/apple/certificate/status.js +2 -2
- package/dist/commands/apple/status.js +2 -2
- package/dist/commands/game/android/apiKey/connect.js +4 -4
- package/dist/commands/game/android/apiKey/create.js +4 -4
- package/dist/commands/game/android/apiKey/export.js +2 -2
- package/dist/commands/game/android/apiKey/import.js +2 -2
- package/dist/commands/game/android/apiKey/status.js +2 -2
- package/dist/commands/game/android/keyStore/create.js +4 -4
- package/dist/commands/game/android/keyStore/export.js +2 -2
- package/dist/commands/game/android/keyStore/import.js +4 -4
- package/dist/commands/game/android/keyStore/status.js +2 -2
- package/dist/commands/game/android/status.js +2 -2
- package/dist/commands/game/build/download.js +2 -2
- package/dist/commands/game/build/list.js +3 -3
- package/dist/commands/game/details.js +2 -2
- package/dist/commands/game/ios/app/addTester.js +2 -2
- package/dist/commands/game/ios/app/create.js +2 -2
- package/dist/commands/game/ios/app/status.js +3 -3
- package/dist/commands/game/ios/app/sync.js +2 -2
- package/dist/commands/game/ios/profile/create.js +2 -2
- package/dist/commands/game/ios/profile/export.js +2 -2
- package/dist/commands/game/ios/profile/import.js +2 -2
- package/dist/commands/game/ios/profile/status.js +2 -2
- package/dist/commands/game/ios/status.js +3 -3
- package/dist/commands/game/ios/wizard.js +1 -1
- package/dist/commands/game/job/list.js +2 -2
- package/dist/commands/game/job/status.js +4 -4
- package/dist/commands/game/list.js +2 -2
- package/dist/commands/game/ship.js +21 -10
- package/dist/commands/game/status.js +2 -2
- package/dist/commands/game/wizard.js +8 -8
- package/dist/commands/status.js +2 -2
- package/dist/{index-DyOv-ge5.js → index-BD1WLuFJ.js} +1 -1
- package/dist/{index-DrcGhlrc.js → index-CboPN9aq.js} +1 -1
- package/dist/{index-vMXsdSCy.js → index-nnzhQ3nY.js} +8 -7
- package/dist/{useJobWatching-BZSUa8E-.js → useJobWatching--BvVn7xS.js} +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +146 -135
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ import { u as useAppleApp } from './useAppleApp-B16WbUxJ.js';
|
|
|
21
21
|
import 'fast-glob';
|
|
22
22
|
import 'yazl';
|
|
23
23
|
import '@inkjs/ui';
|
|
24
|
-
import './index-
|
|
24
|
+
import './index-nnzhQ3nY.js';
|
|
25
25
|
import 'open';
|
|
26
26
|
import { T as Table } from './Table-CvM6pccN.js';
|
|
27
27
|
import { T as Title } from './Title-BCQtayg6.js';
|
|
@@ -18,7 +18,7 @@ import 'uuid';
|
|
|
18
18
|
import 'socket.io-client';
|
|
19
19
|
import 'fast-glob';
|
|
20
20
|
import 'yazl';
|
|
21
|
-
import { C as CommandProvider } from './index-
|
|
21
|
+
import { C as CommandProvider } from './index-nnzhQ3nY.js';
|
|
22
22
|
|
|
23
23
|
const Command = ({ children, command }) => {
|
|
24
24
|
const width = process.stdout.columns || 80;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { G as GameProvider } from './index-
|
|
3
|
-
import { C as Command } from './Command-
|
|
2
|
+
import { G as GameProvider } from './index-nnzhQ3nY.js';
|
|
3
|
+
import { C as Command } from './Command-B3AmRt2w.js';
|
|
4
4
|
|
|
5
5
|
const CommandGame = ({ children, command }) => {
|
|
6
6
|
return /* @__PURE__ */ jsx(Command, { command, children: /* @__PURE__ */ jsx(GameProvider, { children }) });
|
|
@@ -5,7 +5,7 @@ import { useContext } from 'react';
|
|
|
5
5
|
import { useQueryClient } from '@tanstack/react-query';
|
|
6
6
|
import { p as getAuthedHeaders, q as API_URL } from './index-DkNQs11R.js';
|
|
7
7
|
import { c as cacheKeys } from './useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
8
|
-
import { b as GameContext } from './index-
|
|
8
|
+
import { b as GameContext } from './index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import '@inkjs/ui';
|
|
11
11
|
import 'fs';
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { useContext, useState, useEffect } from 'react';
|
|
3
3
|
import { Box, Text } from 'ink';
|
|
4
4
|
import Spinner from 'ink-spinner';
|
|
5
|
-
import { b as GameContext } from './index-
|
|
5
|
+
import { b as GameContext } from './index-nnzhQ3nY.js';
|
|
6
6
|
import { M as queryClient, P as Platform, C as CredentialsType } from './index-DkNQs11R.js';
|
|
7
7
|
import 'axios';
|
|
8
8
|
import 'crypto-js';
|
|
@@ -11,7 +11,7 @@ import { g as getCWDGitInfo } from './git-DREGq-jc.js';
|
|
|
11
11
|
import { jsx, Fragment } from 'react/jsx-runtime';
|
|
12
12
|
import { useRef } from 'react';
|
|
13
13
|
import 'ink';
|
|
14
|
-
import './index-
|
|
14
|
+
import './index-nnzhQ3nY.js';
|
|
15
15
|
import 'ink-spinner';
|
|
16
16
|
import 'crypto-js';
|
|
17
17
|
import 'luxon';
|
|
@@ -25,7 +25,7 @@ import 'qrcode';
|
|
|
25
25
|
import 'string-length';
|
|
26
26
|
import 'strip-ansi';
|
|
27
27
|
import 'socket.io-client';
|
|
28
|
-
import { u as useJobWatching } from './useJobWatching
|
|
28
|
+
import { u as useJobWatching } from './useJobWatching--BvVn7xS.js';
|
|
29
29
|
|
|
30
30
|
async function ship({ command, log = () => {
|
|
31
31
|
} }) {
|
|
@@ -25,8 +25,8 @@ import { u as useWebSocket } from './useWebSocket-ByuNoqRw.js';
|
|
|
25
25
|
import { T as Title } from './Title-BCQtayg6.js';
|
|
26
26
|
import stringLength from 'string-length';
|
|
27
27
|
import stripAnsi from 'strip-ansi';
|
|
28
|
-
import { a as getJobSummary
|
|
29
|
-
import { u as useJobWatching } from './useJobWatching
|
|
28
|
+
import { a as getJobSummary } from './index-nnzhQ3nY.js';
|
|
29
|
+
import { u as useJobWatching } from './useJobWatching--BvVn7xS.js';
|
|
30
30
|
import { a as StatusRow, b as StatusRowLabel } from './StatusTable-Dm5St4g-.js';
|
|
31
31
|
|
|
32
32
|
function arrayToDictionary(array, key = "id") {
|
|
@@ -162,42 +162,30 @@ const JobStatusTable = ({ jobId, projectId, isWatching, onJobUpdate }) => {
|
|
|
162
162
|
}, []);
|
|
163
163
|
const isJobInProgress = job && ![JobStatus.COMPLETED, JobStatus.FAILED].includes(job.status);
|
|
164
164
|
const summary = job ? getJobSummary(job, time) : null;
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
/* @__PURE__ */
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
/* @__PURE__ */
|
|
172
|
-
|
|
173
|
-
/* @__PURE__ */ jsx(
|
|
174
|
-
/* @__PURE__ */
|
|
175
|
-
/* @__PURE__ */ jsx(StatusRowLabel, { label: "Status" }),
|
|
176
|
-
/* @__PURE__ */ jsx(JobStatusSpinner, { status: job.status, showSpinner: isWatching && !!isJobInProgress })
|
|
177
|
-
] }),
|
|
178
|
-
/* @__PURE__ */ jsxs(Box, { flexDirection: "row", children: [
|
|
179
|
-
/* @__PURE__ */ jsx(StatusRowLabel, { label: "Stage" }),
|
|
180
|
-
stage && /* @__PURE__ */ jsx(Text, { color: getStageColor(stage), children: `${stage}` })
|
|
181
|
-
] })
|
|
165
|
+
return /* @__PURE__ */ jsx(Box, { flexDirection: "row", children: /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginBottom: 1, children: [
|
|
166
|
+
/* @__PURE__ */ jsx(Title, { children: "Job Details" }),
|
|
167
|
+
isLoading && /* @__PURE__ */ jsx(Spinner, { type: "dots" }),
|
|
168
|
+
summary && job && /* @__PURE__ */ jsxs(Box, { flexDirection: "row", children: [
|
|
169
|
+
/* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginLeft: 2, children: [
|
|
170
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "ID", value: summary.id }),
|
|
171
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "Platform", value: summary.platform }),
|
|
172
|
+
/* @__PURE__ */ jsxs(Box, { flexDirection: "row", children: [
|
|
173
|
+
/* @__PURE__ */ jsx(StatusRowLabel, { label: "Status" }),
|
|
174
|
+
/* @__PURE__ */ jsx(JobStatusSpinner, { status: job.status, showSpinner: isWatching && !!isJobInProgress })
|
|
182
175
|
] }),
|
|
183
|
-
/* @__PURE__ */ jsxs(Box, { flexDirection: "
|
|
184
|
-
/* @__PURE__ */ jsx(
|
|
185
|
-
/* @__PURE__ */ jsx(
|
|
186
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "Started At", value: summary.createdAt }),
|
|
187
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "Runtime", value: summary.runtime })
|
|
176
|
+
/* @__PURE__ */ jsxs(Box, { flexDirection: "row", children: [
|
|
177
|
+
/* @__PURE__ */ jsx(StatusRowLabel, { label: "Stage" }),
|
|
178
|
+
stage && /* @__PURE__ */ jsx(Text, { color: getStageColor(stage), children: `${stage}` })
|
|
188
179
|
] })
|
|
189
|
-
] })
|
|
190
|
-
] }),
|
|
191
|
-
buildSummary && /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginBottom: 1, marginLeft: 3, borderStyle: "single", padding: 1, children: [
|
|
192
|
-
/* @__PURE__ */ jsx(Title, { children: "Build Details" }),
|
|
180
|
+
] }),
|
|
193
181
|
/* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginLeft: 2, children: [
|
|
194
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "
|
|
195
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "
|
|
196
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "
|
|
197
|
-
/* @__PURE__ */ jsx(StatusRow, { label: "
|
|
182
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "Version", value: summary.version }),
|
|
183
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "Git Info", value: summary.gitInfo }),
|
|
184
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "Started At", value: summary.createdAt }),
|
|
185
|
+
/* @__PURE__ */ jsx(StatusRow, { label: "Runtime", value: summary.runtime })
|
|
198
186
|
] })
|
|
199
187
|
] })
|
|
200
|
-
] });
|
|
188
|
+
] }) });
|
|
201
189
|
};
|
|
202
190
|
|
|
203
191
|
export { JobStatusTable as J, JobLogTail as a };
|
|
@@ -4,7 +4,7 @@ import { render } from 'ink';
|
|
|
4
4
|
import { P as Platform, C as CredentialsType, A as ApiKey, a as ApiKeyType, U as UserRole } from '../../../index-DkNQs11R.js';
|
|
5
5
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
6
6
|
import 'react';
|
|
7
|
-
import '../../../index-
|
|
7
|
+
import '../../../index-nnzhQ3nY.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { B as BaseAppleCommand } from '../../../baseAppleCommand-IGl6KTvv.js';
|
|
35
35
|
import { u as uploadUserCredentials } from '../../../upload-CRE2nVdd.js';
|
|
36
36
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DkNQs11R.js';
|
|
6
6
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../index-
|
|
8
|
+
import '../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { e as exportCredential } from '../../../export-CVs_xoDN.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DkNQs11R.js';
|
|
6
6
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../index-
|
|
8
|
+
import '../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { i as importCredential } from '../../../import-Ch5O7xfN.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -3,7 +3,7 @@ import { Flags } from '@oclif/core';
|
|
|
3
3
|
import { Box, Text, render } from 'ink';
|
|
4
4
|
import { b as getShortDate, A as ApiKey, C as CredentialsType, P as Platform, B as BaseAuthenticatedCommand } from '../../../index-DkNQs11R.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import '../../../index-
|
|
6
|
+
import '../../../index-nnzhQ3nY.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -32,7 +32,7 @@ import { u as useUserCredentials, U as UserCredentialsTable } from '../../../Use
|
|
|
32
32
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
33
33
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
34
34
|
import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
35
|
-
import { C as Command } from '../../../Command-
|
|
35
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
36
36
|
import '@expo/apple-utils/build/index.js';
|
|
37
37
|
import 'ini';
|
|
38
38
|
import 'deepmerge';
|
|
@@ -4,7 +4,7 @@ import { render } from 'ink';
|
|
|
4
4
|
import { m as CertificateType, l as Certificate, P as Platform, C as CredentialsType } from '../../../index-DkNQs11R.js';
|
|
5
5
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
6
6
|
import 'react';
|
|
7
|
-
import '../../../index-
|
|
7
|
+
import '../../../index-nnzhQ3nY.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import forge from 'node-forge';
|
|
35
35
|
import { B as BaseAppleCommand } from '../../../baseAppleCommand-IGl6KTvv.js';
|
|
36
36
|
import { u as uploadUserCredentials } from '../../../upload-CRE2nVdd.js';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DkNQs11R.js';
|
|
6
6
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../index-
|
|
8
|
+
import '../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { e as exportCredential } from '../../../export-CVs_xoDN.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DkNQs11R.js';
|
|
6
6
|
import { g as getUserCredentials } from '../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../index-
|
|
8
|
+
import '../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../Command-
|
|
33
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { i as importCredential } from '../../../import-Ch5O7xfN.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -3,7 +3,7 @@ import { Flags } from '@oclif/core';
|
|
|
3
3
|
import { Box, Text, render } from 'ink';
|
|
4
4
|
import { b as getShortDate, l as Certificate, m as CertificateType, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../index-DkNQs11R.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import '../../../index-
|
|
6
|
+
import '../../../index-nnzhQ3nY.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -33,7 +33,7 @@ import { u as useUserCredentials, U as UserCredentialsTable } from '../../../Use
|
|
|
33
33
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
34
34
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
35
35
|
import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
36
|
-
import { C as Command } from '../../../Command-
|
|
36
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
37
37
|
import '@expo/apple-utils/build/index.js';
|
|
38
38
|
import 'ini';
|
|
39
39
|
import 'deepmerge';
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { B as BaseAuthenticatedCommand } from '../../index-DkNQs11R.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import { render } from 'ink';
|
|
5
|
-
import '../../index-
|
|
5
|
+
import '../../index-nnzhQ3nY.js';
|
|
6
6
|
import 'ink-spinner';
|
|
7
7
|
import 'axios';
|
|
8
8
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { S as StatusTable } from '../../StatusTable-Dm5St4g-.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../Command-
|
|
33
|
+
import { C as Command } from '../../Command-B3AmRt2w.js';
|
|
34
34
|
import '@expo/apple-utils/build/index.js';
|
|
35
35
|
import 'ini';
|
|
36
36
|
import 'deepmerge';
|
|
@@ -3,7 +3,7 @@ import { render } from 'ink';
|
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import { T as getGoogleStatus, X as disconnectGoogle } from '../../../../index-DkNQs11R.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import '../../../../index-
|
|
6
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import '@inkjs/ui';
|
|
9
9
|
import 'axios';
|
|
@@ -20,14 +20,14 @@ import 'luxon';
|
|
|
20
20
|
import 'isomorphic-git';
|
|
21
21
|
import 'fast-glob';
|
|
22
22
|
import 'socket.io-client';
|
|
23
|
-
import { C as ConnectGoogle } from '../../../../index-
|
|
23
|
+
import { C as ConnectGoogle } from '../../../../index-BD1WLuFJ.js';
|
|
24
24
|
import 'marked';
|
|
25
25
|
import 'marked-terminal';
|
|
26
26
|
import 'path';
|
|
27
27
|
import 'qrcode';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
30
|
+
import { C as CommandGame } from '../../../../CommandGame-BCMzP9pc.js';
|
|
31
31
|
import 'open';
|
|
32
32
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
33
33
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -37,7 +37,7 @@ import 'deepmerge';
|
|
|
37
37
|
import '../../../../index-BB00V5oF.js';
|
|
38
38
|
import '../../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
39
39
|
import '../../../../useWebSocket-ByuNoqRw.js';
|
|
40
|
-
import '../../../../Command-
|
|
40
|
+
import '../../../../Command-B3AmRt2w.js';
|
|
41
41
|
|
|
42
42
|
class GameAndroidApiKeyConnect extends BaseGameAndroidCommand {
|
|
43
43
|
static args = {};
|
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import 'react';
|
|
5
|
-
import '../../../../index-
|
|
5
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
6
6
|
import { P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
@@ -29,8 +29,8 @@ import 'path';
|
|
|
29
29
|
import 'qrcode';
|
|
30
30
|
import 'string-length';
|
|
31
31
|
import 'strip-ansi';
|
|
32
|
-
import { C as CreateServiceAccountKey } from '../../../../index-
|
|
33
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
32
|
+
import { C as CreateServiceAccountKey } from '../../../../index-CboPN9aq.js';
|
|
33
|
+
import { C as CommandGame } from '../../../../CommandGame-BCMzP9pc.js';
|
|
34
34
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
35
35
|
import '../../../../index-BB00V5oF.js';
|
|
36
36
|
import '../../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
@@ -40,7 +40,7 @@ import 'deepmerge';
|
|
|
40
40
|
import '../../../../useWebSocket-ByuNoqRw.js';
|
|
41
41
|
import '../../../../useProjectCredentials-Btnr7WK3.js';
|
|
42
42
|
import '../../../../ProgressSpinner-6pw1T8Iw.js';
|
|
43
|
-
import '../../../../Command-
|
|
43
|
+
import '../../../../Command-B3AmRt2w.js';
|
|
44
44
|
|
|
45
45
|
class GameAndroidApiKeyCreate extends BaseGameAndroidCommand {
|
|
46
46
|
static args = {};
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
6
6
|
import { a as getProjectCredentials } from '../../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../../index-
|
|
8
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../../Command-
|
|
33
|
+
import { C as Command } from '../../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
35
35
|
import { e as exportCredential } from '../../../../export-CVs_xoDN.js';
|
|
36
36
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
6
6
|
import { a as getProjectCredentials } from '../../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../../index-
|
|
8
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../../Command-
|
|
33
|
+
import { C as Command } from '../../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
35
35
|
import { i as importCredential } from '../../../../import-Ch5O7xfN.js';
|
|
36
36
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import 'react';
|
|
5
|
-
import '../../../../index-
|
|
5
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
6
6
|
import { P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
@@ -31,7 +31,7 @@ import 'qrcode';
|
|
|
31
31
|
import { T as Table } from '../../../../Table-CvM6pccN.js';
|
|
32
32
|
import 'string-length';
|
|
33
33
|
import 'strip-ansi';
|
|
34
|
-
import { C as Command } from '../../../../Command-
|
|
34
|
+
import { C as Command } from '../../../../Command-B3AmRt2w.js';
|
|
35
35
|
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-CTkP1mvy.js';
|
|
36
36
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
37
37
|
import '../../../../index-BB00V5oF.js';
|
|
@@ -2,7 +2,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import 'react';
|
|
5
|
-
import '../../../../index-
|
|
5
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
6
6
|
import { P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
@@ -12,7 +12,7 @@ import 'fs';
|
|
|
12
12
|
import 'luxon';
|
|
13
13
|
import { a as getProjectCredentials } from '../../../../index-CIa2EDQ6.js';
|
|
14
14
|
import '@inkjs/ui';
|
|
15
|
-
import { C as CreateKeystore } from '../../../../Create-
|
|
15
|
+
import { C as CreateKeystore } from '../../../../Create-CsJxpzUs.js';
|
|
16
16
|
import 'yazl';
|
|
17
17
|
import '@tanstack/react-query';
|
|
18
18
|
import 'crypto';
|
|
@@ -30,7 +30,7 @@ import 'path';
|
|
|
30
30
|
import 'qrcode';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
33
|
+
import { C as CommandGame } from '../../../../CommandGame-BCMzP9pc.js';
|
|
34
34
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
35
35
|
import '../../../../index-BB00V5oF.js';
|
|
36
36
|
import '../../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
@@ -38,7 +38,7 @@ import '@expo/apple-utils/build/index.js';
|
|
|
38
38
|
import 'ini';
|
|
39
39
|
import 'deepmerge';
|
|
40
40
|
import '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
41
|
-
import '../../../../Command-
|
|
41
|
+
import '../../../../Command-B3AmRt2w.js';
|
|
42
42
|
|
|
43
43
|
class GameAndroidKeyStoreCreate extends BaseGameAndroidCommand {
|
|
44
44
|
static args = {};
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
6
6
|
import { a as getProjectCredentials } from '../../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../../index-
|
|
8
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -30,7 +30,7 @@ import 'qrcode';
|
|
|
30
30
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as Command } from '../../../../Command-
|
|
33
|
+
import { C as Command } from '../../../../Command-B3AmRt2w.js';
|
|
34
34
|
import { e as exportCredential } from '../../../../export-CVs_xoDN.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -5,7 +5,7 @@ import * as fs from 'fs';
|
|
|
5
5
|
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
6
6
|
import { a as getProjectCredentials } from '../../../../index-CIa2EDQ6.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import '../../../../index-
|
|
8
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -13,7 +13,7 @@ import 'uuid';
|
|
|
13
13
|
import 'luxon';
|
|
14
14
|
import '@inkjs/ui';
|
|
15
15
|
import '@tanstack/react-query';
|
|
16
|
-
import { I as ImportKeystore } from '../../../../Import-
|
|
16
|
+
import { I as ImportKeystore } from '../../../../Import-v0M_ygyF.js';
|
|
17
17
|
import 'open';
|
|
18
18
|
import 'crypto';
|
|
19
19
|
import 'readline-sync';
|
|
@@ -30,7 +30,7 @@ import 'path';
|
|
|
30
30
|
import 'qrcode';
|
|
31
31
|
import 'string-length';
|
|
32
32
|
import 'strip-ansi';
|
|
33
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
33
|
+
import { C as CommandGame } from '../../../../CommandGame-BCMzP9pc.js';
|
|
34
34
|
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DFn4zMvq.js';
|
|
35
35
|
import '@expo/apple-utils/build/index.js';
|
|
36
36
|
import 'ini';
|
|
@@ -38,7 +38,7 @@ import 'deepmerge';
|
|
|
38
38
|
import '../../../../index-BB00V5oF.js';
|
|
39
39
|
import '../../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
40
40
|
import '../../../../import-Ch5O7xfN.js';
|
|
41
|
-
import '../../../../Command-
|
|
41
|
+
import '../../../../Command-B3AmRt2w.js';
|
|
42
42
|
|
|
43
43
|
class GameAndroidKeyStoreImport extends BaseGameCommand {
|
|
44
44
|
static args = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import 'react';
|
|
4
|
-
import '../../../../index-
|
|
4
|
+
import '../../../../index-nnzhQ3nY.js';
|
|
5
5
|
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-DkNQs11R.js';
|
|
6
6
|
import 'ink-spinner';
|
|
7
7
|
import 'axios';
|
|
@@ -28,7 +28,7 @@ import 'path';
|
|
|
28
28
|
import 'qrcode';
|
|
29
29
|
import 'string-length';
|
|
30
30
|
import 'strip-ansi';
|
|
31
|
-
import { C as Command } from '../../../../Command-
|
|
31
|
+
import { C as Command } from '../../../../Command-B3AmRt2w.js';
|
|
32
32
|
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-CTkP1mvy.js';
|
|
33
33
|
import '../../../../index-BB00V5oF.js';
|
|
34
34
|
import '../../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import 'react';
|
|
5
|
-
import '../../../index-
|
|
5
|
+
import '../../../index-nnzhQ3nY.js';
|
|
6
6
|
import { c as BaseGameCommand, k as getProjectPlatformProgress, P as Platform, b as getShortDate } from '../../../index-DkNQs11R.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import '@inkjs/ui';
|
|
@@ -23,7 +23,7 @@ import 'string-length';
|
|
|
23
23
|
import 'strip-ansi';
|
|
24
24
|
import 'luxon';
|
|
25
25
|
import 'fast-glob';
|
|
26
|
-
import { C as Command } from '../../../Command-
|
|
26
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
27
27
|
import 'socket.io-client';
|
|
28
28
|
import '../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
29
29
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -4,7 +4,7 @@ import { render } from 'ink';
|
|
|
4
4
|
import * as fs from 'fs';
|
|
5
5
|
import { c as BaseGameCommand, K as downloadBuildById } from '../../../index-DkNQs11R.js';
|
|
6
6
|
import 'react';
|
|
7
|
-
import '../../../index-
|
|
7
|
+
import '../../../index-nnzhQ3nY.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import '@inkjs/ui';
|
|
10
10
|
import 'axios';
|
|
@@ -28,7 +28,7 @@ import 'qrcode';
|
|
|
28
28
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
29
29
|
import 'string-length';
|
|
30
30
|
import 'strip-ansi';
|
|
31
|
-
import { C as Command } from '../../../Command-
|
|
31
|
+
import { C as Command } from '../../../Command-B3AmRt2w.js';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'crypto-js';
|
|
34
34
|
import 'ini';
|
|
@@ -3,7 +3,7 @@ import { Box, Text, render } from 'ink';
|
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import { c as BaseGameCommand } from '../../../index-DkNQs11R.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import { c as useBuilds, d as getBuildSummary } from '../../../index-
|
|
6
|
+
import { c as useBuilds, d as getBuildSummary } from '../../../index-nnzhQ3nY.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -28,7 +28,7 @@ import 'path';
|
|
|
28
28
|
import 'qrcode';
|
|
29
29
|
import 'string-length';
|
|
30
30
|
import 'strip-ansi';
|
|
31
|
-
import { C as CommandGame } from '../../../CommandGame-
|
|
31
|
+
import { C as CommandGame } from '../../../CommandGame-BCMzP9pc.js';
|
|
32
32
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
33
33
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
34
34
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -36,7 +36,7 @@ import 'ini';
|
|
|
36
36
|
import 'deepmerge';
|
|
37
37
|
import '../../../index-BB00V5oF.js';
|
|
38
38
|
import '../../../useAndroidServiceAccountTestResult-DcYDam-p.js';
|
|
39
|
-
import '../../../Command-
|
|
39
|
+
import '../../../Command-B3AmRt2w.js';
|
|
40
40
|
|
|
41
41
|
const BuildsTable = ({ queryProps, ...boxProps }) => {
|
|
42
42
|
const { isLoading, data } = useBuilds(queryProps);
|