shipthis 0.1.5 → 0.1.6
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-Df30MPFC.js +73 -0
- package/dist/Command-DxmQn3XT.js +204 -0
- package/dist/CommandGame-DspVLTPZ.js +8 -0
- package/dist/CreateKeystore-D8uTRamD.js +56 -0
- package/dist/JobProgress-Dk0UoNah.js +108 -0
- package/dist/JobStatusTable-q4atKzhu.js +75 -0
- package/dist/ProgressSpinner-6pw1T8Iw.js +16 -0
- package/dist/ProjectCredentialsTable-BIWBAXCh.js +37 -0
- package/dist/UserCredentialsTable-CeJS3_hd.js +82 -0
- package/dist/baseAppleCommand-D-G4h8zQ.js +10 -0
- package/dist/baseGameAndroidCommand-DD0H8iy-.js +43 -0
- package/dist/commands/apple/apiKey/create.js +7 -7
- package/dist/commands/apple/apiKey/export.js +6 -6
- package/dist/commands/apple/apiKey/import.js +6 -6
- package/dist/commands/apple/apiKey/status.js +6 -6
- package/dist/commands/apple/certificate/create.js +7 -7
- package/dist/commands/apple/certificate/export.js +6 -6
- package/dist/commands/apple/certificate/import.js +6 -6
- package/dist/commands/apple/certificate/status.js +6 -6
- package/dist/commands/apple/login.js +2 -2
- package/dist/commands/apple/status.js +4 -4
- package/dist/commands/dashboard.js +1 -1
- package/dist/commands/game/android/apiKey/connect.js +8 -8
- package/dist/commands/game/android/apiKey/create.js +11 -10
- package/dist/commands/game/android/apiKey/export.js +7 -7
- package/dist/commands/game/android/apiKey/import.js +7 -7
- package/dist/commands/game/android/apiKey/invite.js +4 -4
- package/dist/commands/game/android/apiKey/status.js +7 -7
- package/dist/commands/game/android/keyStore/create.js +8 -8
- package/dist/commands/game/android/keyStore/export.js +6 -6
- package/dist/commands/game/android/keyStore/import.js +6 -6
- package/dist/commands/game/android/keyStore/status.js +6 -6
- package/dist/commands/game/android/status.js +4 -4
- package/dist/commands/game/android/wizard.js +18 -81
- package/dist/commands/game/build/download.js +4 -4
- package/dist/commands/game/build/list.js +5 -5
- package/dist/commands/game/create.js +2 -2
- package/dist/commands/game/details.js +4 -4
- package/dist/commands/game/export.js +1 -1
- package/dist/commands/game/ios/app/addTester.js +5 -5
- package/dist/commands/game/ios/app/create.js +4 -4
- package/dist/commands/game/ios/app/status.js +7 -7
- package/dist/commands/game/ios/app/sync.js +5 -5
- package/dist/commands/game/ios/profile/create.js +7 -7
- package/dist/commands/game/ios/profile/export.js +6 -6
- package/dist/commands/game/ios/profile/import.js +6 -6
- package/dist/commands/game/ios/profile/status.js +7 -7
- package/dist/commands/game/ios/status.js +7 -7
- package/dist/commands/game/ios/wizard.js +2 -2
- package/dist/commands/game/job/list.js +4 -4
- package/dist/commands/game/job/status.js +10 -59
- package/dist/commands/game/list.js +4 -4
- package/dist/commands/game/ship.js +73 -50
- package/dist/commands/game/status.js +4 -4
- package/dist/commands/game/wizard.js +1 -1
- package/dist/commands/internal/fastlane.js +1 -1
- package/dist/commands/internal/readme.js +1 -1
- package/dist/commands/login.js +2 -2
- package/dist/commands/status.js +4 -4
- package/dist/export-BDxGDZdh.js +36 -0
- package/dist/import-BrlJuE2Z.js +38 -0
- package/dist/index-BDFKyTPb.js +24 -0
- package/dist/index-BL-1G60K.js +135 -0
- package/dist/index-DBrQda8r.js +122 -0
- package/dist/index-DdABTtYO.js +693 -0
- package/dist/index-wyPoxiTc.js +136 -0
- package/dist/upload-LXRr4pMa.js +60 -0
- package/dist/useAndroidServiceAccountTestResult-InDf5WSl.js +52 -0
- package/dist/useAppleApp-DgE0wEaq.js +32 -0
- package/dist/useAppleBundleId-DtLODy3p.js +64 -0
- package/dist/useJobWatching-P5oC7mNB.js +45 -0
- package/dist/useProjectCredentials-BRffcsO3.js +54 -0
- package/dist/useWebSocket-D8PojLtx.js +36 -0
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { c as BaseGameCommand, O as getGodotAndroidPackageName, Q as getGoogleStatus } from './index-DdABTtYO.js';
|
|
2
|
+
import { b as generatePackageName, a as getInput } from './index-wyPoxiTc.js';
|
|
3
|
+
|
|
4
|
+
class BaseGameAndroidCommand extends BaseGameCommand {
|
|
5
|
+
async init() {
|
|
6
|
+
await super.init();
|
|
7
|
+
await this.ensureWeHaveAndroidPackageName();
|
|
8
|
+
}
|
|
9
|
+
// Prompts the user for the Android package name
|
|
10
|
+
async getAndroidPackageName(gameId) {
|
|
11
|
+
const game = await this.getGame();
|
|
12
|
+
const generated = generatePackageName(game.name);
|
|
13
|
+
const suggested = game.details?.iosBundleId || getGodotAndroidPackageName() || generated || "com.example.game";
|
|
14
|
+
const question = `Please enter the Android Package Name, or press enter to use ${suggested}: `;
|
|
15
|
+
const entered = await getInput(question);
|
|
16
|
+
return entered || suggested;
|
|
17
|
+
}
|
|
18
|
+
// Forces us to have the androidPackageName in the game details
|
|
19
|
+
async ensureWeHaveAndroidPackageName() {
|
|
20
|
+
const game = await this.getGame();
|
|
21
|
+
if (!game.details?.androidPackageName) {
|
|
22
|
+
const androidPackageName = await this.getAndroidPackageName(game.id);
|
|
23
|
+
await this.updateGame({ details: { ...game.details, androidPackageName } });
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
async checkGoogleAuth(waitForAuth = false) {
|
|
27
|
+
let status = await getGoogleStatus();
|
|
28
|
+
if (status.isAuthenticated) return;
|
|
29
|
+
if (!waitForAuth)
|
|
30
|
+
this.error("You must connect to Google first. Run `shipthis game android apiKey connect`", { exit: 1 });
|
|
31
|
+
this.log("Waiting for Google authentication...");
|
|
32
|
+
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
33
|
+
for (let i = 0; i < 600; i++) {
|
|
34
|
+
process.stdout.write(".");
|
|
35
|
+
await sleep(1e3 * 10);
|
|
36
|
+
status = await getGoogleStatus();
|
|
37
|
+
if (status.isAuthenticated) return;
|
|
38
|
+
}
|
|
39
|
+
this.error("Google authentication failed. Please try again.", { exit: 1 });
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { BaseGameAndroidCommand as B };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
|
-
import { P as Platform, C as CredentialsType, A as ApiKey, a as ApiKeyType, U as UserRole } from '../../../index-
|
|
5
|
-
import { g as getUserCredentials } from '../../../index-
|
|
4
|
+
import { P as Platform, C as CredentialsType, A as ApiKey, a as ApiKeyType, U as UserRole } from '../../../index-DdABTtYO.js';
|
|
5
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
6
6
|
import 'react';
|
|
7
|
-
import { C as Command } from '../../../Command-
|
|
7
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import 'crypto-js';
|
|
@@ -27,14 +27,14 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { B as BaseAppleCommand } from '../../../baseAppleCommand-
|
|
31
|
-
import { u as uploadUserCredentials } from '../../../upload-
|
|
30
|
+
import { B as BaseAppleCommand } from '../../../baseAppleCommand-D-G4h8zQ.js';
|
|
31
|
+
import { u as uploadUserCredentials } from '../../../upload-LXRr4pMa.js';
|
|
32
32
|
import 'path';
|
|
33
33
|
import '@expo/apple-utils/build/index.js';
|
|
34
34
|
import 'ini';
|
|
35
35
|
import 'deepmerge';
|
|
36
|
-
import '../../../index-
|
|
37
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
36
|
+
import '../../../index-wyPoxiTc.js';
|
|
37
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
38
38
|
import 'marked';
|
|
39
39
|
import 'marked-terminal';
|
|
40
40
|
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-
|
|
6
|
-
import { g as getUserCredentials } from '../../../index-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DdABTtYO.js';
|
|
6
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../Command-
|
|
8
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,13 +27,13 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { e as exportCredential } from '../../../export-
|
|
30
|
+
import { e as exportCredential } from '../../../export-BDxGDZdh.js';
|
|
31
31
|
import 'path';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'ini';
|
|
34
34
|
import 'deepmerge';
|
|
35
|
-
import '../../../index-
|
|
36
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
39
|
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-
|
|
6
|
-
import { g as getUserCredentials } from '../../../index-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DdABTtYO.js';
|
|
6
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../Command-
|
|
8
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,13 +27,13 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { i as importCredential } from '../../../import-
|
|
30
|
+
import { i as importCredential } from '../../../import-BrlJuE2Z.js';
|
|
31
31
|
import 'path';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'ini';
|
|
34
34
|
import 'deepmerge';
|
|
35
|
-
import '../../../index-
|
|
36
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
39
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
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
|
-
import { b as getShortDate, A as ApiKey, C as CredentialsType, P as Platform, B as BaseAuthenticatedCommand } from '../../../index-
|
|
4
|
+
import { b as getShortDate, A as ApiKey, C as CredentialsType, P as Platform, B as BaseAuthenticatedCommand } from '../../../index-DdABTtYO.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import { C as Command } from '../../../Command-
|
|
6
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -25,16 +25,16 @@ import 'isomorphic-git';
|
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-
|
|
28
|
+
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-CeJS3_hd.js';
|
|
29
|
+
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
29
30
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
30
31
|
import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
31
|
-
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
32
32
|
import 'path';
|
|
33
33
|
import '@expo/apple-utils/build/index.js';
|
|
34
34
|
import 'ini';
|
|
35
35
|
import 'deepmerge';
|
|
36
|
-
import '../../../index-
|
|
37
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
36
|
+
import '../../../index-wyPoxiTc.js';
|
|
37
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
38
38
|
import 'marked';
|
|
39
39
|
import 'marked-terminal';
|
|
40
40
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
|
-
import { m as CertificateType, l as Certificate, P as Platform, C as CredentialsType } from '../../../index-
|
|
5
|
-
import { g as getUserCredentials } from '../../../index-
|
|
4
|
+
import { m as CertificateType, l as Certificate, P as Platform, C as CredentialsType } from '../../../index-DdABTtYO.js';
|
|
5
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
6
6
|
import 'react';
|
|
7
|
-
import { C as Command } from '../../../Command-
|
|
7
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import 'crypto-js';
|
|
@@ -28,14 +28,14 @@ import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
30
|
import forge from 'node-forge';
|
|
31
|
-
import { B as BaseAppleCommand } from '../../../baseAppleCommand-
|
|
32
|
-
import { u as uploadUserCredentials } from '../../../upload-
|
|
31
|
+
import { B as BaseAppleCommand } from '../../../baseAppleCommand-D-G4h8zQ.js';
|
|
32
|
+
import { u as uploadUserCredentials } from '../../../upload-LXRr4pMa.js';
|
|
33
33
|
import 'path';
|
|
34
34
|
import '@expo/apple-utils/build/index.js';
|
|
35
35
|
import 'ini';
|
|
36
36
|
import 'deepmerge';
|
|
37
|
-
import '../../../index-
|
|
38
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
37
|
+
import '../../../index-wyPoxiTc.js';
|
|
38
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
39
39
|
import 'marked';
|
|
40
40
|
import 'marked-terminal';
|
|
41
41
|
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-
|
|
6
|
-
import { g as getUserCredentials } from '../../../index-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DdABTtYO.js';
|
|
6
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../Command-
|
|
8
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,13 +27,13 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { e as exportCredential } from '../../../export-
|
|
30
|
+
import { e as exportCredential } from '../../../export-BDxGDZdh.js';
|
|
31
31
|
import 'path';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'ini';
|
|
34
34
|
import 'deepmerge';
|
|
35
|
-
import '../../../index-
|
|
36
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
39
|
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-
|
|
6
|
-
import { g as getUserCredentials } from '../../../index-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, P as Platform, C as CredentialsType } from '../../../index-DdABTtYO.js';
|
|
6
|
+
import { g as getUserCredentials } from '../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../Command-
|
|
8
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,13 +27,13 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { i as importCredential } from '../../../import-
|
|
30
|
+
import { i as importCredential } from '../../../import-BrlJuE2Z.js';
|
|
31
31
|
import 'path';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'ini';
|
|
34
34
|
import 'deepmerge';
|
|
35
|
-
import '../../../index-
|
|
36
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
39
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
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
|
-
import { b as getShortDate, l as Certificate, m as CertificateType, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../index-
|
|
4
|
+
import { b as getShortDate, l as Certificate, m as CertificateType, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../index-DdABTtYO.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import { C as Command } from '../../../Command-
|
|
6
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -25,16 +25,16 @@ import 'isomorphic-git';
|
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { g as getShortUUID } from '../../../index-
|
|
29
|
-
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-
|
|
28
|
+
import { g as getShortUUID } from '../../../index-wyPoxiTc.js';
|
|
29
|
+
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-CeJS3_hd.js';
|
|
30
|
+
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
30
31
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
31
32
|
import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
32
|
-
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
33
33
|
import 'path';
|
|
34
34
|
import '@expo/apple-utils/build/index.js';
|
|
35
35
|
import 'ini';
|
|
36
36
|
import 'deepmerge';
|
|
37
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
37
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
38
38
|
import 'marked';
|
|
39
39
|
import 'marked-terminal';
|
|
40
40
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Flags } from '@oclif/core';
|
|
2
|
-
import {
|
|
3
|
-
import { a as getInput, e as getMaskedInput } from '../../index-
|
|
2
|
+
import { _ as Auth, B as BaseAuthenticatedCommand } from '../../index-DdABTtYO.js';
|
|
3
|
+
import { a as getInput, e as getMaskedInput } from '../../index-wyPoxiTc.js';
|
|
4
4
|
import 'path';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { B as BaseAuthenticatedCommand } from '../../index-
|
|
2
|
+
import { B as BaseAuthenticatedCommand } from '../../index-DdABTtYO.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import { render } from 'ink';
|
|
5
|
-
import { C as Command } from '../../Command-
|
|
5
|
+
import { C as Command } from '../../Command-DxmQn3XT.js';
|
|
6
6
|
import 'ink-spinner';
|
|
7
7
|
import 'axios';
|
|
8
8
|
import 'crypto-js';
|
|
@@ -31,8 +31,8 @@ import 'path';
|
|
|
31
31
|
import '@expo/apple-utils/build/index.js';
|
|
32
32
|
import 'ini';
|
|
33
33
|
import 'deepmerge';
|
|
34
|
-
import '../../index-
|
|
35
|
-
import '../../useAndroidServiceAccountTestResult-
|
|
34
|
+
import '../../index-wyPoxiTc.js';
|
|
35
|
+
import '../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
36
36
|
import 'marked';
|
|
37
37
|
import 'marked-terminal';
|
|
38
38
|
import '../../Title-BCQtayg6.js';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
|
-
import {
|
|
4
|
+
import { Q as getGoogleStatus, S as disconnectGoogle } from '../../../../index-DdABTtYO.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import '../../../../Command-
|
|
6
|
+
import '../../../../Command-DxmQn3XT.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import '@inkjs/ui';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import '@tanstack/react-query';
|
|
11
|
-
import { C as ConnectGoogle } from '../../../../index-
|
|
11
|
+
import { C as ConnectGoogle } from '../../../../index-DBrQda8r.js';
|
|
12
12
|
import 'crypto';
|
|
13
13
|
import 'fs';
|
|
14
14
|
import 'readline-sync';
|
|
@@ -24,19 +24,19 @@ import 'isomorphic-git';
|
|
|
24
24
|
import 'qrcode';
|
|
25
25
|
import 'string-length';
|
|
26
26
|
import 'strip-ansi';
|
|
27
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
28
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
27
|
+
import { C as CommandGame } from '../../../../CommandGame-DspVLTPZ.js';
|
|
28
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
29
29
|
import 'path';
|
|
30
30
|
import '@expo/apple-utils/build/index.js';
|
|
31
31
|
import 'crypto-js';
|
|
32
32
|
import 'ini';
|
|
33
33
|
import 'deepmerge';
|
|
34
34
|
import 'open';
|
|
35
|
-
import '../../../../index-
|
|
36
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
|
-
import '../../../../useWebSocket-
|
|
39
|
+
import '../../../../useWebSocket-D8PojLtx.js';
|
|
40
40
|
|
|
41
41
|
class GameAndroidApiKeyConnect extends BaseGameAndroidCommand {
|
|
42
42
|
static args = {};
|
|
@@ -2,14 +2,14 @@ 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 '../../../../Command-
|
|
6
|
-
import { P as Platform, C as CredentialsType } from '../../../../index-
|
|
5
|
+
import '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
10
10
|
import 'uuid';
|
|
11
11
|
import 'luxon';
|
|
12
|
-
import { a as getProjectCredentials } from '../../../../index-
|
|
12
|
+
import { a as getProjectCredentials } from '../../../../index-BDFKyTPb.js';
|
|
13
13
|
import '@inkjs/ui';
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'open';
|
|
@@ -26,19 +26,20 @@ import 'isomorphic-git';
|
|
|
26
26
|
import 'qrcode';
|
|
27
27
|
import 'string-length';
|
|
28
28
|
import 'strip-ansi';
|
|
29
|
-
import { C as CreateServiceAccountKey } from '../../../../index-
|
|
30
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
31
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
32
|
-
import '../../../../index-
|
|
33
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
29
|
+
import { C as CreateServiceAccountKey } from '../../../../index-BL-1G60K.js';
|
|
30
|
+
import { C as CommandGame } from '../../../../CommandGame-DspVLTPZ.js';
|
|
31
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
32
|
+
import '../../../../index-wyPoxiTc.js';
|
|
33
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
34
34
|
import 'marked';
|
|
35
35
|
import 'marked-terminal';
|
|
36
36
|
import 'path';
|
|
37
37
|
import '@expo/apple-utils/build/index.js';
|
|
38
38
|
import 'ini';
|
|
39
39
|
import 'deepmerge';
|
|
40
|
-
import '../../../../useWebSocket-
|
|
41
|
-
import '../../../../useProjectCredentials-
|
|
40
|
+
import '../../../../useWebSocket-D8PojLtx.js';
|
|
41
|
+
import '../../../../useProjectCredentials-BRffcsO3.js';
|
|
42
|
+
import '../../../../ProgressSpinner-6pw1T8Iw.js';
|
|
42
43
|
|
|
43
44
|
class GameAndroidApiKeyCreate extends BaseGameAndroidCommand {
|
|
44
45
|
static args = {};
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { P as Platform, C as CredentialsType } from '../../../../index-
|
|
6
|
-
import { a as getProjectCredentials } from '../../../../index-
|
|
5
|
+
import { P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
6
|
+
import { a as getProjectCredentials } from '../../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../../Command-
|
|
8
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,14 +27,14 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
31
|
-
import { e as exportCredential } from '../../../../export-
|
|
30
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
31
|
+
import { e as exportCredential } from '../../../../export-BDxGDZdh.js';
|
|
32
32
|
import 'path';
|
|
33
33
|
import '@expo/apple-utils/build/index.js';
|
|
34
34
|
import 'ini';
|
|
35
35
|
import 'deepmerge';
|
|
36
|
-
import '../../../../index-
|
|
37
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
36
|
+
import '../../../../index-wyPoxiTc.js';
|
|
37
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
38
38
|
import 'marked';
|
|
39
39
|
import 'marked-terminal';
|
|
40
40
|
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { P as Platform, C as CredentialsType } from '../../../../index-
|
|
6
|
-
import { a as getProjectCredentials } from '../../../../index-
|
|
5
|
+
import { P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
6
|
+
import { a as getProjectCredentials } from '../../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../../Command-
|
|
8
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,14 +27,14 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
31
|
-
import { i as importCredential } from '../../../../import-
|
|
30
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
31
|
+
import { i as importCredential } from '../../../../import-BrlJuE2Z.js';
|
|
32
32
|
import 'path';
|
|
33
33
|
import '@expo/apple-utils/build/index.js';
|
|
34
34
|
import 'ini';
|
|
35
35
|
import 'deepmerge';
|
|
36
|
-
import '../../../../index-
|
|
37
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
36
|
+
import '../../../../index-wyPoxiTc.js';
|
|
37
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
38
38
|
import 'marked';
|
|
39
39
|
import 'marked-terminal';
|
|
40
40
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Args, Flags } from '@oclif/core';
|
|
2
|
-
import {
|
|
3
|
-
import { f as fetchKeyTestResult, K as KeyTestStatus, a as KeyTestError, n as niceError } from '../../../../useAndroidServiceAccountTestResult-
|
|
4
|
-
import { a as getInput } from '../../../../index-
|
|
5
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
2
|
+
import { R as inviteServiceAccount } from '../../../../index-DdABTtYO.js';
|
|
3
|
+
import { f as fetchKeyTestResult, K as KeyTestStatus, a as KeyTestError, n as niceError } from '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
4
|
+
import { a as getInput } from '../../../../index-wyPoxiTc.js';
|
|
5
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
6
6
|
import 'path';
|
|
7
7
|
import 'fs';
|
|
8
8
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -2,8 +2,8 @@ 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 { C as Command } from '../../../../Command-
|
|
6
|
-
import { P as Platform, C as CredentialsType } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -18,7 +18,7 @@ import 'readline-sync';
|
|
|
18
18
|
import 'node:readline';
|
|
19
19
|
import 'node:path';
|
|
20
20
|
import 'node:url';
|
|
21
|
-
import { f as fetchKeyTestResult, n as niceError, K as KeyTestStatus } from '../../../../useAndroidServiceAccountTestResult-
|
|
21
|
+
import { f as fetchKeyTestResult, n as niceError, K as KeyTestStatus } from '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
22
22
|
import 'fast-glob';
|
|
23
23
|
import 'yazl';
|
|
24
24
|
import 'socket.io-client';
|
|
@@ -28,16 +28,16 @@ import 'qrcode';
|
|
|
28
28
|
import { T as Table } from '../../../../Table-CvM6pccN.js';
|
|
29
29
|
import 'string-length';
|
|
30
30
|
import 'strip-ansi';
|
|
31
|
-
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-
|
|
32
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
33
|
-
import '../../../../index-
|
|
31
|
+
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-BIWBAXCh.js';
|
|
32
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
33
|
+
import '../../../../index-wyPoxiTc.js';
|
|
34
34
|
import 'marked';
|
|
35
35
|
import 'marked-terminal';
|
|
36
36
|
import 'path';
|
|
37
37
|
import '@expo/apple-utils/build/index.js';
|
|
38
38
|
import 'ini';
|
|
39
39
|
import 'deepmerge';
|
|
40
|
-
import '../../../../useProjectCredentials-
|
|
40
|
+
import '../../../../useProjectCredentials-BRffcsO3.js';
|
|
41
41
|
|
|
42
42
|
class GameAndroidApiKeyStatus extends BaseGameAndroidCommand {
|
|
43
43
|
static args = {};
|
|
@@ -2,16 +2,16 @@ 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 '../../../../Command-
|
|
6
|
-
import { P as Platform, C as CredentialsType } from '../../../../index-
|
|
5
|
+
import '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
10
10
|
import 'uuid';
|
|
11
11
|
import 'luxon';
|
|
12
|
-
import { a as getProjectCredentials } from '../../../../index-
|
|
12
|
+
import { a as getProjectCredentials } from '../../../../index-BDFKyTPb.js';
|
|
13
13
|
import '@inkjs/ui';
|
|
14
|
-
import { C as CreateKeystore } from '../../../../CreateKeystore-
|
|
14
|
+
import { C as CreateKeystore } from '../../../../CreateKeystore-D8uTRamD.js';
|
|
15
15
|
import 'open';
|
|
16
16
|
import 'crypto';
|
|
17
17
|
import 'fs';
|
|
@@ -27,10 +27,10 @@ import 'isomorphic-git';
|
|
|
27
27
|
import 'qrcode';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { C as CommandGame } from '../../../../CommandGame-
|
|
31
|
-
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-
|
|
32
|
-
import '../../../../index-
|
|
33
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
30
|
+
import { C as CommandGame } from '../../../../CommandGame-DspVLTPZ.js';
|
|
31
|
+
import { B as BaseGameAndroidCommand } from '../../../../baseGameAndroidCommand-DD0H8iy-.js';
|
|
32
|
+
import '../../../../index-wyPoxiTc.js';
|
|
33
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
34
34
|
import 'marked';
|
|
35
35
|
import 'marked-terminal';
|
|
36
36
|
import 'path';
|
|
@@ -2,10 +2,10 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Args, Flags } from '@oclif/core';
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import * as fs from 'fs';
|
|
5
|
-
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-
|
|
6
|
-
import { a as getProjectCredentials } from '../../../../index-
|
|
5
|
+
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
6
|
+
import { a as getProjectCredentials } from '../../../../index-BDFKyTPb.js';
|
|
7
7
|
import 'react';
|
|
8
|
-
import { C as Command } from '../../../../Command-
|
|
8
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
9
9
|
import 'ink-spinner';
|
|
10
10
|
import 'axios';
|
|
11
11
|
import 'crypto-js';
|
|
@@ -27,13 +27,13 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import { e as exportCredential } from '../../../../export-
|
|
30
|
+
import { e as exportCredential } from '../../../../export-BDxGDZdh.js';
|
|
31
31
|
import 'path';
|
|
32
32
|
import '@expo/apple-utils/build/index.js';
|
|
33
33
|
import 'ini';
|
|
34
34
|
import 'deepmerge';
|
|
35
|
-
import '../../../../index-
|
|
36
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
35
|
+
import '../../../../index-wyPoxiTc.js';
|
|
36
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
37
37
|
import 'marked';
|
|
38
38
|
import 'marked-terminal';
|
|
39
39
|
|