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
|
@@ -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 { 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,8 +1,8 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { render } from 'ink';
|
|
3
3
|
import 'react';
|
|
4
|
-
import { C as Command } from '../../../../Command-
|
|
5
|
-
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-
|
|
4
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
5
|
+
import { c as BaseGameCommand, P as Platform, C as CredentialsType } from '../../../../index-DdABTtYO.js';
|
|
6
6
|
import 'ink-spinner';
|
|
7
7
|
import 'axios';
|
|
8
8
|
import 'crypto-js';
|
|
@@ -25,16 +25,16 @@ import '@oclif/core';
|
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-
|
|
29
|
-
import '../../../../index-
|
|
30
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
28
|
+
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-BIWBAXCh.js';
|
|
29
|
+
import '../../../../index-wyPoxiTc.js';
|
|
30
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
31
31
|
import 'marked';
|
|
32
32
|
import 'marked-terminal';
|
|
33
33
|
import 'path';
|
|
34
34
|
import '@expo/apple-utils/build/index.js';
|
|
35
35
|
import 'ini';
|
|
36
36
|
import 'deepmerge';
|
|
37
|
-
import '../../../../useProjectCredentials-
|
|
37
|
+
import '../../../../useProjectCredentials-BRffcsO3.js';
|
|
38
38
|
import '../../../../Table-CvM6pccN.js';
|
|
39
39
|
import '../../../../Title-BCQtayg6.js';
|
|
40
40
|
|
|
@@ -2,14 +2,14 @@ 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 { c as BaseGameCommand, k as getProjectPlatformProgress, P as Platform, b as getShortDate } from '../../../index-
|
|
5
|
+
import { C as Command } from '../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand, k as getProjectPlatformProgress, P as Platform, b as getShortDate } from '../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import '@inkjs/ui';
|
|
9
9
|
import 'axios';
|
|
10
10
|
import '@tanstack/react-query';
|
|
11
11
|
import 'open';
|
|
12
|
-
import { g as getShortUUID, m as makeHumanReadable } from '../../../index-
|
|
12
|
+
import { g as getShortUUID, m as makeHumanReadable } from '../../../index-wyPoxiTc.js';
|
|
13
13
|
import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
14
14
|
import 'qrcode';
|
|
15
15
|
import { S as StatusTable } from '../../../StatusTable-Dm5St4g-.js';
|
|
@@ -21,7 +21,7 @@ import 'fast-glob';
|
|
|
21
21
|
import 'fs';
|
|
22
22
|
import 'yazl';
|
|
23
23
|
import 'socket.io-client';
|
|
24
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
24
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
25
25
|
import 'marked';
|
|
26
26
|
import 'marked-terminal';
|
|
27
27
|
import 'path';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { Text, Box, render } from 'ink';
|
|
3
|
-
import { p as getAuthedHeaders, q as API_URL,
|
|
3
|
+
import { p as getAuthedHeaders, q as API_URL, H as castArrayObjectDates, $ as queryClient, u as getGodotVersion, t as GameEngine, v as createProject, w as DEFAULT_IGNORED_FILES_GLOBS, x as DEFAULT_SHIPPED_FILES_GLOBS, P as Platform, J as JobStatus, X as WEB_URL, E as getProject, C as CredentialsType, Q as getGoogleStatus, B as BaseAuthenticatedCommand, D as DetailsFlags } from '../../../index-DdABTtYO.js';
|
|
4
4
|
import React, { useState, useContext, useEffect, useRef } from 'react';
|
|
5
|
-
import {
|
|
5
|
+
import { c as CommandContext, b as GameContext, d as useBuilds, M as Markdown, q as queryBuilds, G as GameProvider, e as CreateGooglePlayGame, C as Command } from '../../../Command-DxmQn3XT.js';
|
|
6
6
|
import Spinner from 'ink-spinner';
|
|
7
7
|
import { Alert, TextInput } from '@inkjs/ui';
|
|
8
8
|
import axios from 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
10
|
-
import
|
|
10
|
+
import 'uuid';
|
|
11
11
|
import 'luxon';
|
|
12
|
-
import
|
|
12
|
+
import 'fs';
|
|
13
13
|
import { useQuery, useMutation } from '@tanstack/react-query';
|
|
14
14
|
import 'open';
|
|
15
15
|
import 'crypto';
|
|
@@ -17,32 +17,34 @@ import 'readline-sync';
|
|
|
17
17
|
import 'node:readline';
|
|
18
18
|
import 'node:path';
|
|
19
19
|
import 'node:url';
|
|
20
|
-
import
|
|
21
|
-
import
|
|
20
|
+
import 'fast-glob';
|
|
21
|
+
import 'yazl';
|
|
22
22
|
import 'socket.io-client';
|
|
23
23
|
import 'isomorphic-git';
|
|
24
24
|
import '@oclif/core';
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { C as CreateKeystore } from '../../../CreateKeystore-
|
|
29
|
-
import { C as ConnectGoogle } from '../../../index-
|
|
30
|
-
import {
|
|
31
|
-
import { c as cacheKeys, f as fetchKeyTestResult, K as KeyTestStatus, a as KeyTestError } from '../../../useAndroidServiceAccountTestResult-
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import { u as useJobWatching } from '../../../useJobWatching-BcBJ5dy1.js';
|
|
35
|
-
import { a as getProjectCredentials } from '../../../index-BuZmCvZh.js';
|
|
28
|
+
import { C as CreateKeystore } from '../../../CreateKeystore-D8uTRamD.js';
|
|
29
|
+
import { C as ConnectGoogle } from '../../../index-DBrQda8r.js';
|
|
30
|
+
import { C as CreateServiceAccountKey } from '../../../index-BL-1G60K.js';
|
|
31
|
+
import { c as cacheKeys, f as fetchKeyTestResult, K as KeyTestStatus, a as KeyTestError } from '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
32
|
+
import { u as useShip, J as JobProgress } from '../../../JobProgress-Dk0UoNah.js';
|
|
33
|
+
import { a as getProjectCredentials } from '../../../index-BDFKyTPb.js';
|
|
36
34
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
37
35
|
import 'path';
|
|
38
36
|
import '@expo/apple-utils/build/index.js';
|
|
39
37
|
import 'ini';
|
|
40
38
|
import 'deepmerge';
|
|
39
|
+
import '../../../index-wyPoxiTc.js';
|
|
41
40
|
import 'marked';
|
|
42
41
|
import 'marked-terminal';
|
|
43
42
|
import '../../../RunWithSpinner-BVXNWGD3.js';
|
|
44
|
-
import '../../../useWebSocket-
|
|
45
|
-
import '../../../useProjectCredentials-
|
|
43
|
+
import '../../../useWebSocket-D8PojLtx.js';
|
|
44
|
+
import '../../../useProjectCredentials-BRffcsO3.js';
|
|
45
|
+
import '../../../ProgressSpinner-6pw1T8Iw.js';
|
|
46
|
+
import '../../../git-DREGq-jc.js';
|
|
47
|
+
import '../../../useJobWatching-P5oC7mNB.js';
|
|
46
48
|
|
|
47
49
|
async function queryJobs({ projectId, ...pageAndSortParams }) {
|
|
48
50
|
try {
|
|
@@ -66,52 +68,6 @@ const useJobs = (props) => {
|
|
|
66
68
|
return queryResult;
|
|
67
69
|
};
|
|
68
70
|
|
|
69
|
-
async function ship(command) {
|
|
70
|
-
const projectConfig = await command.getProjectConfig();
|
|
71
|
-
if (!projectConfig.project) throw new Error("No project found in project config");
|
|
72
|
-
const shippedFilesGlobs = projectConfig.shippedFilesGlobs || DEFAULT_SHIPPED_FILES_GLOBS;
|
|
73
|
-
const ignoredFilesGlobs = projectConfig.ignoredFilesGlobs || DEFAULT_IGNORED_FILES_GLOBS;
|
|
74
|
-
const files = await fg(shippedFilesGlobs, { dot: true, ignore: ignoredFilesGlobs });
|
|
75
|
-
const zipFile = new yazl.ZipFile();
|
|
76
|
-
for (const file of files) {
|
|
77
|
-
zipFile.addFile(file, file);
|
|
78
|
-
}
|
|
79
|
-
const outputZipToFile = (zip, fileName) => new Promise((resolve) => {
|
|
80
|
-
const outputStream = fs__default.createWriteStream(fileName);
|
|
81
|
-
zip.outputStream.pipe(outputStream).on("close", () => resolve());
|
|
82
|
-
zip.end();
|
|
83
|
-
});
|
|
84
|
-
const tmpZipFile = `${process.cwd()}/shipthis-${v4()}.zip`;
|
|
85
|
-
await outputZipToFile(zipFile, tmpZipFile);
|
|
86
|
-
const zipBuffer = fs__default.readFileSync(tmpZipFile);
|
|
87
|
-
const { size } = fs__default.statSync(tmpZipFile);
|
|
88
|
-
const uploadTicket = await getNewUploadTicket(projectConfig.project.id);
|
|
89
|
-
await axios.put(uploadTicket.url, zipBuffer, {
|
|
90
|
-
headers: {
|
|
91
|
-
"Content-length": size,
|
|
92
|
-
"Content-Type": "application/zip"
|
|
93
|
-
}
|
|
94
|
-
});
|
|
95
|
-
const gitInfo = await getCWDGitInfo();
|
|
96
|
-
const zipFileMd5 = await getFileHash(tmpZipFile);
|
|
97
|
-
const uploadDetails = {
|
|
98
|
-
...gitInfo,
|
|
99
|
-
zipFileMd5
|
|
100
|
-
};
|
|
101
|
-
const jobs = await startJobsFromUpload(uploadTicket.id, uploadDetails);
|
|
102
|
-
return jobs;
|
|
103
|
-
}
|
|
104
|
-
const useShip = () => {
|
|
105
|
-
return useMutation({
|
|
106
|
-
mutationFn: ship,
|
|
107
|
-
onSuccess: async (data) => {
|
|
108
|
-
queryClient.invalidateQueries({
|
|
109
|
-
queryKey: cacheKeys.jobs({ projectId: data[0].project.id, pageNumber: 0 })
|
|
110
|
-
});
|
|
111
|
-
}
|
|
112
|
-
});
|
|
113
|
-
};
|
|
114
|
-
|
|
115
71
|
const useInviteServiceAccount = () => {
|
|
116
72
|
return useMutation({
|
|
117
73
|
mutationFn: async ({ projectId, developerId }) => {
|
|
@@ -271,25 +227,6 @@ const FormTextInput = ({ label, labelProps, ...rest }) => /* @__PURE__ */ jsxs(B
|
|
|
271
227
|
/* @__PURE__ */ jsx(TextInput, { ...rest })
|
|
272
228
|
] });
|
|
273
229
|
|
|
274
|
-
const JobProgress = (props) => {
|
|
275
|
-
const prevJobStatus = useRef(props.job.status);
|
|
276
|
-
const handleJobUpdate = (job) => {
|
|
277
|
-
const completed = [JobStatus.COMPLETED, JobStatus.FAILED];
|
|
278
|
-
const wasRunning = !completed.includes(prevJobStatus.current);
|
|
279
|
-
if (completed.includes(job.status) && wasRunning) {
|
|
280
|
-
props.onComplete();
|
|
281
|
-
}
|
|
282
|
-
prevJobStatus.current = job.status;
|
|
283
|
-
};
|
|
284
|
-
const { progress } = useJobWatching({
|
|
285
|
-
projectId: props.job.project.id,
|
|
286
|
-
jobId: props.job.id,
|
|
287
|
-
isWatching: true,
|
|
288
|
-
onJobUpdate: handleJobUpdate
|
|
289
|
-
});
|
|
290
|
-
return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(ProgressSpinner, { progress, label: "Job progress...", spinnerType: "dots" }) });
|
|
291
|
-
};
|
|
292
|
-
|
|
293
230
|
const CreateInitialBuild = (props) => {
|
|
294
231
|
const { gameId } = useContext(GameContext);
|
|
295
232
|
return /* @__PURE__ */ jsx(Fragment, { children: gameId && /* @__PURE__ */ jsx(CreateForGame, { gameId, ...props }) });
|
|
@@ -2,9 +2,9 @@ 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,
|
|
5
|
+
import { c as BaseGameCommand, F as getBuild } from '../../../index-DdABTtYO.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 '@inkjs/ui';
|
|
10
10
|
import axios from 'axios';
|
|
@@ -30,8 +30,8 @@ import '@expo/apple-utils/build/index.js';
|
|
|
30
30
|
import 'crypto-js';
|
|
31
31
|
import 'ini';
|
|
32
32
|
import 'deepmerge';
|
|
33
|
-
import '../../../index-
|
|
34
|
-
import '../../../useAndroidServiceAccountTestResult-
|
|
33
|
+
import '../../../index-wyPoxiTc.js';
|
|
34
|
+
import '../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
35
35
|
import 'marked';
|
|
36
36
|
import 'marked-terminal';
|
|
37
37
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { Box, Text, render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
|
-
import { c as BaseGameCommand } from '../../../index-
|
|
4
|
+
import { c as BaseGameCommand } from '../../../index-DdABTtYO.js';
|
|
5
5
|
import 'react';
|
|
6
|
-
import {
|
|
6
|
+
import { d as useBuilds, a as getBuildSummary } from '../../../Command-DxmQn3XT.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -25,15 +25,15 @@ import 'isomorphic-git';
|
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { C as CommandGame } from '../../../CommandGame-
|
|
28
|
+
import { C as CommandGame } from '../../../CommandGame-DspVLTPZ.js';
|
|
29
29
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
30
30
|
import { T as Title } from '../../../Title-BCQtayg6.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,6 +1,6 @@
|
|
|
1
1
|
import { Flags } from '@oclif/core';
|
|
2
|
-
import { B as BaseAuthenticatedCommand, D as DetailsFlags, j as isCWDGodotGame, t as GameEngine, u as getGodotVersion, v as createProject, w as DEFAULT_IGNORED_FILES_GLOBS, x as DEFAULT_SHIPPED_FILES_GLOBS, y as getGodotProjectName } from '../../index-
|
|
3
|
-
import { a as getInput } from '../../index-
|
|
2
|
+
import { B as BaseAuthenticatedCommand, D as DetailsFlags, j as isCWDGodotGame, t as GameEngine, u as getGodotVersion, v as createProject, w as DEFAULT_IGNORED_FILES_GLOBS, x as DEFAULT_SHIPPED_FILES_GLOBS, y as getGodotProjectName } from '../../index-DdABTtYO.js';
|
|
3
|
+
import { a as getInput } from '../../index-wyPoxiTc.js';
|
|
4
4
|
import 'path';
|
|
5
5
|
import 'fs';
|
|
6
6
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -2,8 +2,8 @@ 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 { C as Command } from '../../Command-
|
|
6
|
-
import { c as BaseGameCommand, D as DetailsFlags, t as GameEngine } from '../../index-
|
|
5
|
+
import { C as Command } from '../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand, D as DetailsFlags, t as GameEngine } from '../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -13,7 +13,7 @@ import 'fs';
|
|
|
13
13
|
import '@inkjs/ui';
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'open';
|
|
16
|
-
import { i as isValidSemVer } from '../../index-
|
|
16
|
+
import { i as isValidSemVer } from '../../index-wyPoxiTc.js';
|
|
17
17
|
import 'qrcode';
|
|
18
18
|
import { S as StatusTable } from '../../StatusTable-Dm5St4g-.js';
|
|
19
19
|
import 'string-length';
|
|
@@ -21,7 +21,7 @@ import 'strip-ansi';
|
|
|
21
21
|
import 'fast-glob';
|
|
22
22
|
import 'yazl';
|
|
23
23
|
import 'socket.io-client';
|
|
24
|
-
import '../../useAndroidServiceAccountTestResult-
|
|
24
|
+
import '../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
25
25
|
import 'marked';
|
|
26
26
|
import 'marked-terminal';
|
|
27
27
|
import 'path';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Args, Flags } from '@oclif/core';
|
|
2
|
-
import { B as BaseAuthenticatedCommand, j as isCWDGodotGame,
|
|
2
|
+
import { B as BaseAuthenticatedCommand, j as isCWDGodotGame, E as getProject, w as DEFAULT_IGNORED_FILES_GLOBS, x as DEFAULT_SHIPPED_FILES_GLOBS } from '../../index-DdABTtYO.js';
|
|
3
3
|
import 'crypto';
|
|
4
4
|
import 'fs';
|
|
5
5
|
import 'readline-sync';
|
|
@@ -2,8 +2,8 @@ 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 { C as Command } from '../../../../Command-
|
|
6
|
-
import { c as BaseGameCommand, i as BetaGroup } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand, i as BetaGroup } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -13,16 +13,16 @@ import 'fs';
|
|
|
13
13
|
import '@inkjs/ui';
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'open';
|
|
16
|
-
import { a as getInput } from '../../../../index-
|
|
16
|
+
import { a as getInput } from '../../../../index-wyPoxiTc.js';
|
|
17
17
|
import 'qrcode';
|
|
18
18
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
|
-
import { q as queryAppleApp } from '../../../../useAppleApp-
|
|
21
|
+
import { q as queryAppleApp } from '../../../../useAppleApp-DgE0wEaq.js';
|
|
22
22
|
import 'fast-glob';
|
|
23
23
|
import 'yazl';
|
|
24
24
|
import 'socket.io-client';
|
|
25
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
25
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
26
26
|
import 'marked';
|
|
27
27
|
import 'marked-terminal';
|
|
28
28
|
import 'path';
|
|
@@ -2,8 +2,8 @@ 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 { C as Command } from '../../../../Command-
|
|
6
|
-
import { c as BaseGameCommand, d as getGodotAppleBundleIdentifier, e as BundleId, f as App } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand, d as getGodotAppleBundleIdentifier, e as BundleId, f as App } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -13,7 +13,7 @@ import 'fs';
|
|
|
13
13
|
import '@inkjs/ui';
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'open';
|
|
16
|
-
import { a as getInput, b as generatePackageName } from '../../../../index-
|
|
16
|
+
import { a as getInput, b as generatePackageName } from '../../../../index-wyPoxiTc.js';
|
|
17
17
|
import 'qrcode';
|
|
18
18
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
19
19
|
import 'string-length';
|
|
@@ -21,7 +21,7 @@ import 'strip-ansi';
|
|
|
21
21
|
import 'fast-glob';
|
|
22
22
|
import 'yazl';
|
|
23
23
|
import 'socket.io-client';
|
|
24
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
24
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
25
25
|
import 'marked';
|
|
26
26
|
import 'marked-terminal';
|
|
27
27
|
import 'path';
|
|
@@ -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 { c as BaseGameCommand } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -26,9 +26,9 @@ import { N as NextSteps } from '../../../../NextSteps-CK9zHOCt.js';
|
|
|
26
26
|
import 'qrcode';
|
|
27
27
|
import 'string-length';
|
|
28
28
|
import 'strip-ansi';
|
|
29
|
-
import { A as AppleAppDetails, a as AppleBundleIdDetails } from '../../../../AppleBundleIdDetails-
|
|
30
|
-
import '../../../../index-
|
|
31
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
29
|
+
import { A as AppleAppDetails, a as AppleBundleIdDetails } from '../../../../AppleBundleIdDetails-Df30MPFC.js';
|
|
30
|
+
import '../../../../index-wyPoxiTc.js';
|
|
31
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
32
32
|
import 'marked';
|
|
33
33
|
import 'marked-terminal';
|
|
34
34
|
import 'path';
|
|
@@ -36,9 +36,9 @@ import '@expo/apple-utils/build/index.js';
|
|
|
36
36
|
import 'ini';
|
|
37
37
|
import 'deepmerge';
|
|
38
38
|
import '../../../../Title-BCQtayg6.js';
|
|
39
|
-
import '../../../../useAppleApp-
|
|
39
|
+
import '../../../../useAppleApp-DgE0wEaq.js';
|
|
40
40
|
import '../../../../Table-CvM6pccN.js';
|
|
41
|
-
import '../../../../useAppleBundleId-
|
|
41
|
+
import '../../../../useAppleBundleId-DtLODy3p.js';
|
|
42
42
|
|
|
43
43
|
class GameIosAppStatus extends BaseGameCommand {
|
|
44
44
|
static args = {};
|
|
@@ -2,8 +2,8 @@ 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 { C as Command } from '../../../../Command-
|
|
6
|
-
import { c as BaseGameCommand, h as CapabilityTypeOption } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { c as BaseGameCommand, h as CapabilityTypeOption } 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 fetchBundleId } from '../../../../useAppleBundleId-
|
|
21
|
+
import { f as fetchBundleId } from '../../../../useAppleBundleId-DtLODy3p.js';
|
|
22
22
|
import 'fast-glob';
|
|
23
23
|
import 'yazl';
|
|
24
24
|
import 'socket.io-client';
|
|
@@ -27,8 +27,8 @@ import 'qrcode';
|
|
|
27
27
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
28
28
|
import 'string-length';
|
|
29
29
|
import 'strip-ansi';
|
|
30
|
-
import '../../../../index-
|
|
31
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
30
|
+
import '../../../../index-wyPoxiTc.js';
|
|
31
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
32
32
|
import 'marked';
|
|
33
33
|
import 'marked-terminal';
|
|
34
34
|
import 'path';
|
|
@@ -3,13 +3,13 @@ import { render } from 'ink';
|
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import axios from 'axios';
|
|
5
5
|
import 'react';
|
|
6
|
-
import { C as Command } from '../../../../Command-
|
|
7
|
-
import { c as BaseGameCommand, P as Platform, C as CredentialsType, l as Certificate, m as CertificateType, n as Profile, o as ProfileType } from '../../../../index-
|
|
6
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
7
|
+
import { c as BaseGameCommand, P as Platform, C as CredentialsType, l as Certificate, m as CertificateType, n as Profile, o as ProfileType } from '../../../../index-DdABTtYO.js';
|
|
8
8
|
import 'ink-spinner';
|
|
9
9
|
import 'crypto-js';
|
|
10
10
|
import 'uuid';
|
|
11
11
|
import 'luxon';
|
|
12
|
-
import { a as getProjectCredentials, g as getUserCredentials } from '../../../../index-
|
|
12
|
+
import { a as getProjectCredentials, g as getUserCredentials } from '../../../../index-BDFKyTPb.js';
|
|
13
13
|
import '@inkjs/ui';
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'open';
|
|
@@ -19,7 +19,7 @@ import 'readline-sync';
|
|
|
19
19
|
import 'node:readline';
|
|
20
20
|
import 'node:path';
|
|
21
21
|
import 'node:url';
|
|
22
|
-
import { f as fetchBundleId } from '../../../../useAppleBundleId-
|
|
22
|
+
import { f as fetchBundleId } from '../../../../useAppleBundleId-DtLODy3p.js';
|
|
23
23
|
import 'fast-glob';
|
|
24
24
|
import 'yazl';
|
|
25
25
|
import 'socket.io-client';
|
|
@@ -28,9 +28,9 @@ import 'qrcode';
|
|
|
28
28
|
import { R as RunWithSpinner } from '../../../../RunWithSpinner-BVXNWGD3.js';
|
|
29
29
|
import 'string-length';
|
|
30
30
|
import 'strip-ansi';
|
|
31
|
-
import { a as uploadProjectCredentials } from '../../../../upload-
|
|
32
|
-
import '../../../../index-
|
|
33
|
-
import '../../../../useAndroidServiceAccountTestResult-
|
|
31
|
+
import { a as uploadProjectCredentials } from '../../../../upload-LXRr4pMa.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
|
|
|
@@ -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 { 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
|
|
|
@@ -2,8 +2,8 @@ import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
|
2
2
|
import { Box, Text, render } from 'ink';
|
|
3
3
|
import { Flags } from '@oclif/core';
|
|
4
4
|
import 'react';
|
|
5
|
-
import { C as Command } from '../../../../Command-
|
|
6
|
-
import { b as getShortDate, n as Profile, o as ProfileType, C as CredentialsType, P as Platform, c as BaseGameCommand } from '../../../../index-
|
|
5
|
+
import { C as Command } from '../../../../Command-DxmQn3XT.js';
|
|
6
|
+
import { b as getShortDate, n as Profile, o as ProfileType, C as CredentialsType, P as Platform, c as BaseGameCommand } from '../../../../index-DdABTtYO.js';
|
|
7
7
|
import Spinner from 'ink-spinner';
|
|
8
8
|
import 'axios';
|
|
9
9
|
import 'crypto-js';
|
|
@@ -25,13 +25,13 @@ import 'isomorphic-git';
|
|
|
25
25
|
import 'qrcode';
|
|
26
26
|
import 'string-length';
|
|
27
27
|
import 'strip-ansi';
|
|
28
|
-
import { u as useProjectCredentials } from '../../../../useProjectCredentials-
|
|
28
|
+
import { u as useProjectCredentials } from '../../../../useProjectCredentials-BRffcsO3.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 {
|
|
32
|
-
import
|
|
33
|
-
import '../../../../
|
|
34
|
-
import '../../../../useAndroidServiceAccountTestResult-D_30xIJA.js';
|
|
32
|
+
import { P as ProjectCredentialsTable } from '../../../../ProjectCredentialsTable-BIWBAXCh.js';
|
|
33
|
+
import '../../../../index-wyPoxiTc.js';
|
|
34
|
+
import '../../../../useAndroidServiceAccountTestResult-InDf5WSl.js';
|
|
35
35
|
import 'marked';
|
|
36
36
|
import 'marked-terminal';
|
|
37
37
|
import 'path';
|