shipthis 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -67
- package/dist/{App-CRcDsay7.js → App-Cp2dHD6n.js} +1 -1
- package/dist/{AppleBundleIdDetails-UNAVT0U6.js → AppleBundleIdDetails-ENjeKNOv.js} +3 -3
- package/dist/{UserCredentialsTable-CPx_wwST.js → UserCredentialsTable-BMYMmTfG.js} +2 -2
- package/dist/{baseAppleCommand-BUDjh10x.js → baseAppleCommand-BLSOrhPf.js} +1 -1
- package/dist/{baseGameCommand-DvFilbRN.js → baseGameCommand-DDj0395o.js} +1 -1
- package/dist/commands/apple/apiKey/create.js +4 -4
- package/dist/commands/apple/apiKey/export.js +3 -3
- package/dist/commands/apple/apiKey/import.js +3 -3
- package/dist/commands/apple/apiKey/status.js +4 -4
- package/dist/commands/apple/certificate/create.js +4 -4
- package/dist/commands/apple/certificate/export.js +3 -3
- package/dist/commands/apple/certificate/import.js +3 -3
- package/dist/commands/apple/certificate/status.js +4 -4
- package/dist/commands/apple/login.js +2 -6
- package/dist/commands/apple/status.js +3 -3
- package/dist/commands/dashboard.js +1 -1
- package/dist/commands/game/build/download.js +2 -2
- package/dist/commands/game/build/list.js +5 -5
- package/dist/commands/game/create.js +2 -2
- package/dist/commands/game/details.js +3 -3
- package/dist/commands/game/export.js +1 -1
- package/dist/commands/game/ios/app/addTester.js +4 -4
- package/dist/commands/game/ios/app/create.js +3 -3
- package/dist/commands/game/ios/app/status.js +5 -5
- package/dist/commands/game/ios/app/sync.js +3 -3
- package/dist/commands/game/ios/profile/create.js +4 -4
- package/dist/commands/game/ios/profile/export.js +3 -3
- package/dist/commands/game/ios/profile/import.js +3 -3
- package/dist/commands/game/ios/profile/status.js +3 -3
- package/dist/commands/game/ios/status.js +6 -6
- package/dist/commands/game/job/list.js +4 -4
- package/dist/commands/game/job/status.js +5 -5
- package/dist/commands/game/list.js +3 -3
- package/dist/commands/game/ship.js +2 -2
- package/dist/commands/game/status.js +3 -3
- package/dist/commands/game/wizard.js +1 -1
- package/dist/commands/login.js +20 -8
- package/dist/commands/status.js +2 -2
- package/dist/{export-DnCkwLrK.js → export-B1yFtX2m.js} +1 -1
- package/dist/{import-CMzGrYJE.js → import-CZoi54_C.js} +1 -1
- package/dist/{index-Bw_nDHi8.js → index-DCqAd30u.js} +1 -1
- package/dist/{upload-O-TtkVJK.js → upload-S09gow_I.js} +1 -1
- package/dist/{useAppleApp-aigGCahA.js → useAppleApp-DUGmY7Zx.js} +1 -1
- package/dist/{useAppleBundleId-Csd5x81b.js → useAppleBundleId-2Lguhhia.js} +1 -1
- package/dist/{useBuilds-v-UBnSnM.js → useBuilds-FnvpFuuU.js} +3 -3
- package/dist/{useJob-DJQrqUh2.js → useJob-CV3YKClU.js} +2 -2
- package/oclif.manifest.json +37 -37
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,37 +1,6 @@
|
|
|
1
1
|
shipthis
|
|
2
2
|
=================
|
|
3
3
|
|
|
4
|
-
# Development Notes
|
|
5
|
-
|
|
6
|
-
To build and run locally:
|
|
7
|
-
|
|
8
|
-
```
|
|
9
|
-
npm run build
|
|
10
|
-
npm link
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
When you add or remove a command you will need to update the `"exports"` section in the `package.json` file using:
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
find src/commands/ -type f | sed "s/src\([^\.]*\)\..*$/dist\1.js/g"
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
# Zero to iOS shipping steps
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
shipthis login
|
|
23
|
-
shipthis game create
|
|
24
|
-
shipthis apple login
|
|
25
|
-
shipthis apple apiKey create
|
|
26
|
-
shipthis apple certificate create
|
|
27
|
-
shipthis game ios app create
|
|
28
|
-
shipthis game ios app sync
|
|
29
|
-
shipthis game ios profile create
|
|
30
|
-
shipthis game ship
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
4
|
# Introduction
|
|
36
5
|
|
|
37
6
|
Mobile Game Shipping Tool
|
|
@@ -41,8 +10,6 @@ Mobile Game Shipping Tool
|
|
|
41
10
|
|
|
42
11
|
|
|
43
12
|
<!-- toc -->
|
|
44
|
-
* [Development Notes](#development-notes)
|
|
45
|
-
* [Zero to iOS shipping steps](#zero-to-ios-shipping-steps)
|
|
46
13
|
* [Introduction](#introduction)
|
|
47
14
|
* [Usage](#usage)
|
|
48
15
|
* [Commands](#commands)
|
|
@@ -54,7 +21,7 @@ $ npm install -g shipthis
|
|
|
54
21
|
$ shipthis COMMAND
|
|
55
22
|
running command...
|
|
56
23
|
$ shipthis (--version)
|
|
57
|
-
shipthis/0.0.
|
|
24
|
+
shipthis/0.0.5 linux-x64 node-v20.17.0
|
|
58
25
|
$ shipthis --help [COMMAND]
|
|
59
26
|
USAGE
|
|
60
27
|
$ shipthis COMMAND
|
|
@@ -120,7 +87,7 @@ EXAMPLES
|
|
|
120
87
|
$ shipthis apple apiKey create --force
|
|
121
88
|
```
|
|
122
89
|
|
|
123
|
-
_See code: [src/commands/apple/apiKey/create.ts](https://
|
|
90
|
+
_See code: [src/commands/apple/apiKey/create.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/apiKey/create.ts)_
|
|
124
91
|
|
|
125
92
|
## `shipthis apple apiKey export FILE`
|
|
126
93
|
|
|
@@ -143,7 +110,7 @@ EXAMPLES
|
|
|
143
110
|
$ shipthis apple apiKey export userApiKey.zip
|
|
144
111
|
```
|
|
145
112
|
|
|
146
|
-
_See code: [src/commands/apple/apiKey/export.ts](https://
|
|
113
|
+
_See code: [src/commands/apple/apiKey/export.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/apiKey/export.ts)_
|
|
147
114
|
|
|
148
115
|
## `shipthis apple apiKey import FILE`
|
|
149
116
|
|
|
@@ -166,7 +133,7 @@ EXAMPLES
|
|
|
166
133
|
$ shipthis apple apiKey import userApiKey.zip
|
|
167
134
|
```
|
|
168
135
|
|
|
169
|
-
_See code: [src/commands/apple/apiKey/import.ts](https://
|
|
136
|
+
_See code: [src/commands/apple/apiKey/import.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/apiKey/import.ts)_
|
|
170
137
|
|
|
171
138
|
## `shipthis apple apiKey status`
|
|
172
139
|
|
|
@@ -189,7 +156,7 @@ EXAMPLES
|
|
|
189
156
|
$ shipthis apple apiKey status --noAppleAuth
|
|
190
157
|
```
|
|
191
158
|
|
|
192
|
-
_See code: [src/commands/apple/apiKey/status.ts](https://
|
|
159
|
+
_See code: [src/commands/apple/apiKey/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/apiKey/status.ts)_
|
|
193
160
|
|
|
194
161
|
## `shipthis apple certificate create`
|
|
195
162
|
|
|
@@ -213,7 +180,7 @@ EXAMPLES
|
|
|
213
180
|
$ shipthis apple certificate create --force
|
|
214
181
|
```
|
|
215
182
|
|
|
216
|
-
_See code: [src/commands/apple/certificate/create.ts](https://
|
|
183
|
+
_See code: [src/commands/apple/certificate/create.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/certificate/create.ts)_
|
|
217
184
|
|
|
218
185
|
## `shipthis apple certificate export FILE`
|
|
219
186
|
|
|
@@ -236,7 +203,7 @@ EXAMPLES
|
|
|
236
203
|
$ shipthis apple certificate export userCert.zip
|
|
237
204
|
```
|
|
238
205
|
|
|
239
|
-
_See code: [src/commands/apple/certificate/export.ts](https://
|
|
206
|
+
_See code: [src/commands/apple/certificate/export.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/certificate/export.ts)_
|
|
240
207
|
|
|
241
208
|
## `shipthis apple certificate import FILE`
|
|
242
209
|
|
|
@@ -259,7 +226,7 @@ EXAMPLES
|
|
|
259
226
|
$ shipthis apple certificate import userCert.zip
|
|
260
227
|
```
|
|
261
228
|
|
|
262
|
-
_See code: [src/commands/apple/certificate/import.ts](https://
|
|
229
|
+
_See code: [src/commands/apple/certificate/import.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/certificate/import.ts)_
|
|
263
230
|
|
|
264
231
|
## `shipthis apple certificate status`
|
|
265
232
|
|
|
@@ -282,7 +249,7 @@ EXAMPLES
|
|
|
282
249
|
$ shipthis apple certificate status --noAppleAuth
|
|
283
250
|
```
|
|
284
251
|
|
|
285
|
-
_See code: [src/commands/apple/certificate/status.ts](https://
|
|
252
|
+
_See code: [src/commands/apple/certificate/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/certificate/status.ts)_
|
|
286
253
|
|
|
287
254
|
## `shipthis apple login`
|
|
288
255
|
|
|
@@ -306,7 +273,7 @@ EXAMPLES
|
|
|
306
273
|
$ shipthis apple login --force --appleEmail me@email.nowhere
|
|
307
274
|
```
|
|
308
275
|
|
|
309
|
-
_See code: [src/commands/apple/login.ts](https://
|
|
276
|
+
_See code: [src/commands/apple/login.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/login.ts)_
|
|
310
277
|
|
|
311
278
|
## `shipthis apple status`
|
|
312
279
|
|
|
@@ -323,7 +290,7 @@ EXAMPLES
|
|
|
323
290
|
$ shipthis apple status
|
|
324
291
|
```
|
|
325
292
|
|
|
326
|
-
_See code: [src/commands/apple/status.ts](https://
|
|
293
|
+
_See code: [src/commands/apple/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/apple/status.ts)_
|
|
327
294
|
|
|
328
295
|
## `shipthis dashboard`
|
|
329
296
|
|
|
@@ -340,7 +307,7 @@ EXAMPLES
|
|
|
340
307
|
$ shipthis dashboard
|
|
341
308
|
```
|
|
342
309
|
|
|
343
|
-
_See code: [src/commands/dashboard.ts](https://
|
|
310
|
+
_See code: [src/commands/dashboard.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/dashboard.ts)_
|
|
344
311
|
|
|
345
312
|
## `shipthis game build download BUILD_ID FILE`
|
|
346
313
|
|
|
@@ -367,7 +334,7 @@ EXAMPLES
|
|
|
367
334
|
$ shipthis game build download --gameId 0c179fc4 e4b9a3d7 output.apk
|
|
368
335
|
```
|
|
369
336
|
|
|
370
|
-
_See code: [src/commands/game/build/download.ts](https://
|
|
337
|
+
_See code: [src/commands/game/build/download.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/build/download.ts)_
|
|
371
338
|
|
|
372
339
|
## `shipthis game build list`
|
|
373
340
|
|
|
@@ -397,7 +364,7 @@ EXAMPLES
|
|
|
397
364
|
$ shipthis game build list --gameId 0c179fc4 --pageSize 20 --pageNumber 1
|
|
398
365
|
```
|
|
399
366
|
|
|
400
|
-
_See code: [src/commands/game/build/list.ts](https://
|
|
367
|
+
_See code: [src/commands/game/build/list.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/build/list.ts)_
|
|
401
368
|
|
|
402
369
|
## `shipthis game create`
|
|
403
370
|
|
|
@@ -419,7 +386,7 @@ EXAMPLES
|
|
|
419
386
|
$ shipthis game create
|
|
420
387
|
```
|
|
421
388
|
|
|
422
|
-
_See code: [src/commands/game/create.ts](https://
|
|
389
|
+
_See code: [src/commands/game/create.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/create.ts)_
|
|
423
390
|
|
|
424
391
|
## `shipthis game details`
|
|
425
392
|
|
|
@@ -453,7 +420,7 @@ EXAMPLES
|
|
|
453
420
|
$ shipthis game details --gameEngine godot --gameEngineVersion 4.2 --force
|
|
454
421
|
```
|
|
455
422
|
|
|
456
|
-
_See code: [src/commands/game/details.ts](https://
|
|
423
|
+
_See code: [src/commands/game/details.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/details.ts)_
|
|
457
424
|
|
|
458
425
|
## `shipthis game export GAME_ID`
|
|
459
426
|
|
|
@@ -478,7 +445,7 @@ EXAMPLES
|
|
|
478
445
|
$ shipthis game export abcd1234 --force
|
|
479
446
|
```
|
|
480
447
|
|
|
481
|
-
_See code: [src/commands/game/export.ts](https://
|
|
448
|
+
_See code: [src/commands/game/export.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/export.ts)_
|
|
482
449
|
|
|
483
450
|
## `shipthis game ios app addTester`
|
|
484
451
|
|
|
@@ -501,7 +468,7 @@ EXAMPLES
|
|
|
501
468
|
$ shipthis game ios app addTester
|
|
502
469
|
```
|
|
503
470
|
|
|
504
|
-
_See code: [src/commands/game/ios/app/addTester.ts](https://
|
|
471
|
+
_See code: [src/commands/game/ios/app/addTester.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/app/addTester.ts)_
|
|
505
472
|
|
|
506
473
|
## `shipthis game ios app create`
|
|
507
474
|
|
|
@@ -526,7 +493,7 @@ EXAMPLES
|
|
|
526
493
|
$ shipthis game ios app create
|
|
527
494
|
```
|
|
528
495
|
|
|
529
|
-
_See code: [src/commands/game/ios/app/create.ts](https://
|
|
496
|
+
_See code: [src/commands/game/ios/app/create.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/app/create.ts)_
|
|
530
497
|
|
|
531
498
|
## `shipthis game ios app status`
|
|
532
499
|
|
|
@@ -546,7 +513,7 @@ EXAMPLES
|
|
|
546
513
|
$ shipthis game ios app status
|
|
547
514
|
```
|
|
548
515
|
|
|
549
|
-
_See code: [src/commands/game/ios/app/status.ts](https://
|
|
516
|
+
_See code: [src/commands/game/ios/app/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/app/status.ts)_
|
|
550
517
|
|
|
551
518
|
## `shipthis game ios app sync`
|
|
552
519
|
|
|
@@ -569,7 +536,7 @@ EXAMPLES
|
|
|
569
536
|
$ shipthis game ios app sync
|
|
570
537
|
```
|
|
571
538
|
|
|
572
|
-
_See code: [src/commands/game/ios/app/sync.ts](https://
|
|
539
|
+
_See code: [src/commands/game/ios/app/sync.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/app/sync.ts)_
|
|
573
540
|
|
|
574
541
|
## `shipthis game ios profile create`
|
|
575
542
|
|
|
@@ -592,7 +559,7 @@ EXAMPLES
|
|
|
592
559
|
$ shipthis game ios profile create
|
|
593
560
|
```
|
|
594
561
|
|
|
595
|
-
_See code: [src/commands/game/ios/profile/create.ts](https://
|
|
562
|
+
_See code: [src/commands/game/ios/profile/create.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/profile/create.ts)_
|
|
596
563
|
|
|
597
564
|
## `shipthis game ios profile export FILE`
|
|
598
565
|
|
|
@@ -616,7 +583,7 @@ EXAMPLES
|
|
|
616
583
|
$ shipthis game ios profile export userProfile.zip
|
|
617
584
|
```
|
|
618
585
|
|
|
619
|
-
_See code: [src/commands/game/ios/profile/export.ts](https://
|
|
586
|
+
_See code: [src/commands/game/ios/profile/export.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/profile/export.ts)_
|
|
620
587
|
|
|
621
588
|
## `shipthis game ios profile import FILE`
|
|
622
589
|
|
|
@@ -640,7 +607,7 @@ EXAMPLES
|
|
|
640
607
|
$ shipthis game ios profile import profile.zip
|
|
641
608
|
```
|
|
642
609
|
|
|
643
|
-
_See code: [src/commands/game/ios/profile/import.ts](https://
|
|
610
|
+
_See code: [src/commands/game/ios/profile/import.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/profile/import.ts)_
|
|
644
611
|
|
|
645
612
|
## `shipthis game ios profile status`
|
|
646
613
|
|
|
@@ -662,7 +629,7 @@ EXAMPLES
|
|
|
662
629
|
$ shipthis game ios profile status
|
|
663
630
|
```
|
|
664
631
|
|
|
665
|
-
_See code: [src/commands/game/ios/profile/status.ts](https://
|
|
632
|
+
_See code: [src/commands/game/ios/profile/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/profile/status.ts)_
|
|
666
633
|
|
|
667
634
|
## `shipthis game ios status`
|
|
668
635
|
|
|
@@ -684,7 +651,7 @@ EXAMPLES
|
|
|
684
651
|
$ shipthis game ios status --gameId 0c179fc4
|
|
685
652
|
```
|
|
686
653
|
|
|
687
|
-
_See code: [src/commands/game/ios/status.ts](https://
|
|
654
|
+
_See code: [src/commands/game/ios/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ios/status.ts)_
|
|
688
655
|
|
|
689
656
|
## `shipthis game job list`
|
|
690
657
|
|
|
@@ -712,7 +679,7 @@ EXAMPLES
|
|
|
712
679
|
$ shipthis game job list --gameId 0c179fc4
|
|
713
680
|
```
|
|
714
681
|
|
|
715
|
-
_See code: [src/commands/game/job/list.ts](https://
|
|
682
|
+
_See code: [src/commands/game/job/list.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/job/list.ts)_
|
|
716
683
|
|
|
717
684
|
## `shipthis game job status JOB_ID`
|
|
718
685
|
|
|
@@ -741,7 +708,7 @@ EXAMPLES
|
|
|
741
708
|
$ shipthis game job status --gameId 0c179fc4 --lines 20 --follow 4d32239e
|
|
742
709
|
```
|
|
743
710
|
|
|
744
|
-
_See code: [src/commands/game/job/status.ts](https://
|
|
711
|
+
_See code: [src/commands/game/job/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/job/status.ts)_
|
|
745
712
|
|
|
746
713
|
## `shipthis game list`
|
|
747
714
|
|
|
@@ -766,7 +733,7 @@ EXAMPLES
|
|
|
766
733
|
$ shipthis game list
|
|
767
734
|
```
|
|
768
735
|
|
|
769
|
-
_See code: [src/commands/game/list.ts](https://
|
|
736
|
+
_See code: [src/commands/game/list.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/list.ts)_
|
|
770
737
|
|
|
771
738
|
## `shipthis game ship`
|
|
772
739
|
|
|
@@ -786,7 +753,7 @@ EXAMPLES
|
|
|
786
753
|
$ shipthis game ship
|
|
787
754
|
```
|
|
788
755
|
|
|
789
|
-
_See code: [src/commands/game/ship.ts](https://
|
|
756
|
+
_See code: [src/commands/game/ship.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/ship.ts)_
|
|
790
757
|
|
|
791
758
|
## `shipthis game status`
|
|
792
759
|
|
|
@@ -808,7 +775,7 @@ EXAMPLES
|
|
|
808
775
|
$ shipthis game status --gameId 0c179fc4
|
|
809
776
|
```
|
|
810
777
|
|
|
811
|
-
_See code: [src/commands/game/status.ts](https://
|
|
778
|
+
_See code: [src/commands/game/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/status.ts)_
|
|
812
779
|
|
|
813
780
|
## `shipthis game wizard`
|
|
814
781
|
|
|
@@ -830,7 +797,7 @@ EXAMPLES
|
|
|
830
797
|
$ shipthis game wizard
|
|
831
798
|
```
|
|
832
799
|
|
|
833
|
-
_See code: [src/commands/game/wizard.ts](https://
|
|
800
|
+
_See code: [src/commands/game/wizard.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/game/wizard.ts)_
|
|
834
801
|
|
|
835
802
|
## `shipthis help [COMMAND]`
|
|
836
803
|
|
|
@@ -873,7 +840,7 @@ EXAMPLES
|
|
|
873
840
|
$ shipthis login --force --email me@email.nowhere
|
|
874
841
|
```
|
|
875
842
|
|
|
876
|
-
_See code: [src/commands/login.ts](https://
|
|
843
|
+
_See code: [src/commands/login.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/login.ts)_
|
|
877
844
|
|
|
878
845
|
## `shipthis status`
|
|
879
846
|
|
|
@@ -890,5 +857,5 @@ EXAMPLES
|
|
|
890
857
|
$ shipthis status
|
|
891
858
|
```
|
|
892
859
|
|
|
893
|
-
_See code: [src/commands/status.ts](https://
|
|
860
|
+
_See code: [src/commands/status.ts](https://gitlab.com/shipthis.cc/shipthis-cli/blob/v0.0.5/src/commands/status.ts)_
|
|
894
861
|
<!-- commandsstop -->
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { Box } from 'ink';
|
|
3
3
|
import { QueryClientProvider } from '@tanstack/react-query';
|
|
4
|
-
import { Q as queryClient } from './baseGameCommand-
|
|
4
|
+
import { Q as queryClient } from './baseGameCommand-DDj0395o.js';
|
|
5
5
|
import 'luxon';
|
|
6
6
|
import '@expo/apple-utils/build/index.js';
|
|
7
7
|
import 'crypto';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import { Box, Text } from 'ink';
|
|
3
3
|
import Spinner from 'ink-spinner';
|
|
4
|
-
import './baseGameCommand-
|
|
4
|
+
import './baseGameCommand-DDj0395o.js';
|
|
5
5
|
import 'luxon';
|
|
6
6
|
import '@tanstack/react-query';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
8
|
-
import { u as useAppleApp } from './useAppleApp-
|
|
8
|
+
import { u as useAppleApp } from './useAppleApp-DUGmY7Zx.js';
|
|
9
9
|
import 'crypto';
|
|
10
10
|
import 'fs';
|
|
11
11
|
import 'readline-sync';
|
|
@@ -16,7 +16,7 @@ import 'socket.io-client';
|
|
|
16
16
|
import 'isomorphic-git';
|
|
17
17
|
import { T as Title } from './Title-BCQtayg6.js';
|
|
18
18
|
import { T as Table } from './Table-CvM6pccN.js';
|
|
19
|
-
import { u as useAppleBundleId } from './useAppleBundleId-
|
|
19
|
+
import { u as useAppleBundleId } from './useAppleBundleId-2Lguhhia.js';
|
|
20
20
|
|
|
21
21
|
const AppleAppDetails = (props) => {
|
|
22
22
|
const { data, isLoading } = useAppleApp(props);
|
|
@@ -8,12 +8,12 @@ import 'node:readline';
|
|
|
8
8
|
import 'react';
|
|
9
9
|
import axios from 'axios';
|
|
10
10
|
import { useQuery } from '@tanstack/react-query';
|
|
11
|
-
import { f as getShortDate, o as getAuthedHeaders, p as API_URL, I as castArrayObjectDates } from './baseGameCommand-
|
|
11
|
+
import { f as getShortDate, o as getAuthedHeaders, p as API_URL, I as castArrayObjectDates } from './baseGameCommand-DDj0395o.js';
|
|
12
12
|
import 'luxon';
|
|
13
13
|
import 'socket.io-client';
|
|
14
14
|
import '@expo/apple-utils/build/index.js';
|
|
15
15
|
import { c as cacheKeys } from './cacheKeys-CShA-ZjE.js';
|
|
16
|
-
import { g as getShortUUID } from './index-
|
|
16
|
+
import { g as getShortUUID } from './index-DCqAd30u.js';
|
|
17
17
|
import 'isomorphic-git';
|
|
18
18
|
import { T as Table } from './Table-CvM6pccN.js';
|
|
19
19
|
import { T as Title } from './Title-BCQtayg6.js';
|
|
@@ -615,4 +615,4 @@ class BaseGameCommand extends BaseAuthenticatedCommand {
|
|
|
615
615
|
}
|
|
616
616
|
}
|
|
617
617
|
|
|
618
|
-
export {
|
|
618
|
+
export { WS_URL as $, ApiKey as A, BaseAuthenticatedCommand as B, CredentialsType as C, DEFAULT_SHIPPED_FILES_GLOBS as D, getGodotProjectName as E, getBuild as F, GODOT_CAPABILITIES as G, getShortDateTime as H, castArrayObjectDates as I, getProjectJobs as J, JobStatus as K, getShortTimeDelta as L, getJob as M, getNewUploadTicket as N, startJobsFromUpload as O, Platform as P, queryClient as Q, JobStage as R, LogLevel as S, getSingleUseUrl as T, UserRole as U, BaseCommand as V, WEB_URL as W, setAuthToken as X, acceptTerms as Y, Auth as Z, DOMAIN as _, ApiKeyType as a, getAuthToken as a0, castObjectDates as a1, castJobDates as a2, getShortTime as a3, getProject as b, DEFAULT_IGNORED_FILES_GLOBS as c, BaseGameCommand as d, getProjectPlatformProgress as e, getShortDate as f, getUserCredentials as g, CapabilityTypeOption as h, isCWDGodotGame as i, BetaGroup as j, App as k, getGodotAppleBundleIdentifier as l, BundleId as m, getProjectCredentials as n, getAuthedHeaders as o, API_URL as p, Certificate as q, CertificateType as r, Profile as s, ProfileType as t, getGodotProjectCapabilities as u, CapabilityType as v, getProjects as w, GameEngine as x, getGodotVersion as y, createProject as z };
|
|
@@ -3,7 +3,7 @@ import { Flags } from '@oclif/core';
|
|
|
3
3
|
import { render } from 'ink';
|
|
4
4
|
import 'path';
|
|
5
5
|
import 'fs';
|
|
6
|
-
import { g as getUserCredentials, P as Platform, C as CredentialsType, A as ApiKey, U as UserRole, a as ApiKeyType } from '../../../baseGameCommand-
|
|
6
|
+
import { g as getUserCredentials, P as Platform, C as CredentialsType, A as ApiKey, U as UserRole, a as ApiKeyType } from '../../../baseGameCommand-DDj0395o.js';
|
|
7
7
|
import 'axios';
|
|
8
8
|
import 'luxon';
|
|
9
9
|
import 'crypto';
|
|
@@ -13,13 +13,13 @@ import 'react';
|
|
|
13
13
|
import '@tanstack/react-query';
|
|
14
14
|
import 'socket.io-client';
|
|
15
15
|
import 'isomorphic-git';
|
|
16
|
-
import { B as BaseAppleCommand } from '../../../baseAppleCommand-
|
|
17
|
-
import { A as App } from '../../../App-
|
|
16
|
+
import { B as BaseAppleCommand } from '../../../baseAppleCommand-BLSOrhPf.js';
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import 'ink-spinner';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
21
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
22
|
-
import { u as uploadUserCredentials } from '../../../upload-
|
|
22
|
+
import { u as uploadUserCredentials } from '../../../upload-S09gow_I.js';
|
|
23
23
|
import '@expo/apple-utils/build/index.js';
|
|
24
24
|
import 'ini';
|
|
25
25
|
import 'deepmerge';
|
|
@@ -2,7 +2,7 @@ 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, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-DDj0395o.js';
|
|
6
6
|
import 'path';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
8
8
|
import 'axios';
|
|
@@ -14,12 +14,12 @@ import 'react';
|
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import 'ink-spinner';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
21
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
22
|
-
import { e as exportCredential } from '../../../export-
|
|
22
|
+
import { e as exportCredential } from '../../../export-B1yFtX2m.js';
|
|
23
23
|
import 'ini';
|
|
24
24
|
import 'deepmerge';
|
|
25
25
|
|
|
@@ -2,7 +2,7 @@ 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, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-DDj0395o.js';
|
|
6
6
|
import 'path';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
8
8
|
import 'axios';
|
|
@@ -14,12 +14,12 @@ import 'react';
|
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import 'ink-spinner';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
21
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
22
|
-
import { i as importCredential } from '../../../import-
|
|
22
|
+
import { i as importCredential } from '../../../import-CZoi54_C.js';
|
|
23
23
|
import 'ini';
|
|
24
24
|
import 'deepmerge';
|
|
25
25
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import { Flags } from '@oclif/core';
|
|
3
3
|
import { Box, Text, render } from 'ink';
|
|
4
|
-
import { f as getShortDate, A as ApiKey, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../baseGameCommand-
|
|
4
|
+
import { f as getShortDate, A as ApiKey, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../baseGameCommand-DDj0395o.js';
|
|
5
5
|
import 'path';
|
|
6
6
|
import 'fs';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -14,9 +14,9 @@ import 'react';
|
|
|
14
14
|
import { useQuery } from '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import Spinner from 'ink-spinner';
|
|
19
|
-
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-
|
|
19
|
+
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-BMYMmTfG.js';
|
|
20
20
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
21
21
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
22
22
|
import 'string-length';
|
|
@@ -25,7 +25,7 @@ import { N as NextSteps } from '../../../NextSteps-CK9zHOCt.js';
|
|
|
25
25
|
import 'ini';
|
|
26
26
|
import 'deepmerge';
|
|
27
27
|
import '../../../cacheKeys-CShA-ZjE.js';
|
|
28
|
-
import '../../../index-
|
|
28
|
+
import '../../../index-DCqAd30u.js';
|
|
29
29
|
|
|
30
30
|
async function queryAppleApiKeys({ ctx }) {
|
|
31
31
|
const keys = await ApiKey.getAsync(ctx);
|
|
@@ -5,7 +5,7 @@ import 'path';
|
|
|
5
5
|
import 'fs';
|
|
6
6
|
import '@expo/apple-utils/build/index.js';
|
|
7
7
|
import 'axios';
|
|
8
|
-
import { q as Certificate, r as CertificateType, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-
|
|
8
|
+
import { q as Certificate, r as CertificateType, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-DDj0395o.js';
|
|
9
9
|
import 'luxon';
|
|
10
10
|
import 'crypto';
|
|
11
11
|
import 'readline-sync';
|
|
@@ -14,14 +14,14 @@ import 'react';
|
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { B as BaseAppleCommand } from '../../../baseAppleCommand-
|
|
18
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { B as BaseAppleCommand } from '../../../baseAppleCommand-BLSOrhPf.js';
|
|
18
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
19
19
|
import 'ink-spinner';
|
|
20
20
|
import 'string-length';
|
|
21
21
|
import 'strip-ansi';
|
|
22
22
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
23
23
|
import forge from 'node-forge';
|
|
24
|
-
import { u as uploadUserCredentials } from '../../../upload-
|
|
24
|
+
import { u as uploadUserCredentials } from '../../../upload-S09gow_I.js';
|
|
25
25
|
import 'ini';
|
|
26
26
|
import 'deepmerge';
|
|
27
27
|
|
|
@@ -2,7 +2,7 @@ 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, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-DDj0395o.js';
|
|
6
6
|
import 'path';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
8
8
|
import 'axios';
|
|
@@ -14,12 +14,12 @@ import 'react';
|
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import 'ink-spinner';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
21
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
22
|
-
import { e as exportCredential } from '../../../export-
|
|
22
|
+
import { e as exportCredential } from '../../../export-B1yFtX2m.js';
|
|
23
23
|
import 'ini';
|
|
24
24
|
import 'deepmerge';
|
|
25
25
|
|
|
@@ -2,7 +2,7 @@ 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, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-
|
|
5
|
+
import { B as BaseAuthenticatedCommand, g as getUserCredentials, P as Platform, C as CredentialsType } from '../../../baseGameCommand-DDj0395o.js';
|
|
6
6
|
import 'path';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
8
8
|
import 'axios';
|
|
@@ -14,12 +14,12 @@ import 'react';
|
|
|
14
14
|
import '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import 'ink-spinner';
|
|
19
19
|
import 'string-length';
|
|
20
20
|
import 'strip-ansi';
|
|
21
21
|
import { R as RunWithSpinner } from '../../../RunWithSpinner-BVXNWGD3.js';
|
|
22
|
-
import { i as importCredential } from '../../../import-
|
|
22
|
+
import { i as importCredential } from '../../../import-CZoi54_C.js';
|
|
23
23
|
import 'ini';
|
|
24
24
|
import 'deepmerge';
|
|
25
25
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import { Flags } from '@oclif/core';
|
|
3
3
|
import { Box, Text, render } from 'ink';
|
|
4
|
-
import { f as getShortDate, q as Certificate, r as CertificateType, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../baseGameCommand-
|
|
4
|
+
import { f as getShortDate, q as Certificate, r as CertificateType, P as Platform, C as CredentialsType, B as BaseAuthenticatedCommand } from '../../../baseGameCommand-DDj0395o.js';
|
|
5
5
|
import 'path';
|
|
6
6
|
import 'fs';
|
|
7
7
|
import '@expo/apple-utils/build/index.js';
|
|
@@ -14,10 +14,10 @@ import 'react';
|
|
|
14
14
|
import { useQuery } from '@tanstack/react-query';
|
|
15
15
|
import 'socket.io-client';
|
|
16
16
|
import 'isomorphic-git';
|
|
17
|
-
import { A as App } from '../../../App-
|
|
17
|
+
import { A as App } from '../../../App-Cp2dHD6n.js';
|
|
18
18
|
import Spinner from 'ink-spinner';
|
|
19
|
-
import { g as getShortUUID } from '../../../index-
|
|
20
|
-
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-
|
|
19
|
+
import { g as getShortUUID } from '../../../index-DCqAd30u.js';
|
|
20
|
+
import { u as useUserCredentials, U as UserCredentialsTable } from '../../../UserCredentialsTable-BMYMmTfG.js';
|
|
21
21
|
import { T as Title } from '../../../Title-BCQtayg6.js';
|
|
22
22
|
import { T as Table } from '../../../Table-CvM6pccN.js';
|
|
23
23
|
import 'string-length';
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { Flags } from '@oclif/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Z as Auth, B as BaseAuthenticatedCommand } from '../../baseGameCommand-DDj0395o.js';
|
|
3
3
|
import 'path';
|
|
4
4
|
import 'fs';
|
|
5
5
|
import '@expo/apple-utils/build/index.js';
|
|
6
6
|
import 'axios';
|
|
7
7
|
import 'luxon';
|
|
8
|
-
import { a as getInput, f as getMaskedInput } from '../../index-
|
|
9
|
-
import 'tough-cookie';
|
|
10
|
-
import 'nativescript/lib/services/apple-portal/apple-portal-cookie-service.js';
|
|
11
|
-
import 'nativescript/lib/services/apple-portal/apple-portal-session-service.js';
|
|
12
|
-
import 'nativescript/lib/common/http-client.js';
|
|
8
|
+
import { a as getInput, f as getMaskedInput } from '../../index-DCqAd30u.js';
|
|
13
9
|
import 'crypto';
|
|
14
10
|
import 'readline-sync';
|
|
15
11
|
import 'node:readline';
|