eas-cli 7.8.1 → 7.8.3
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 +59 -59
- package/build/build/local.js +1 -1
- package/build/commands/build/version/get.js +1 -0
- package/build/commands/build/version/set.js +1 -0
- package/build/commands/build/version/sync.js +1 -0
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +7 -1
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.js +41 -5
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +7 -2
- package/build/credentials/ios/actions/PushKeyUtils.js +7 -2
- package/build/credentials/ios/actions/RemoveDistributionCertificate.js +8 -3
- package/build/credentials/ios/actions/RemovePushKey.js +7 -2
- package/build/credentials/ios/api/GraphqlClient.js +1 -1
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +7 -1
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.js +41 -5
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +11 -3
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +77 -53
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +7 -1
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.js +41 -5
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +7 -1
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.js +41 -5
- package/build/devices/actions/create/action.js +1 -1
- package/build/devices/actions/create/developerPortalMethod.d.ts +2 -2
- package/build/devices/actions/create/developerPortalMethod.js +5 -5
- package/build/graphql/generated.d.ts +279 -178
- package/build/project/android/applicationId.d.ts +2 -1
- package/build/project/android/applicationId.js +12 -3
- package/build/project/applicationIdentifier.d.ts +2 -1
- package/build/project/applicationIdentifier.js +3 -1
- package/build/project/ios/bundleIdentifier.d.ts +2 -1
- package/build/project/ios/bundleIdentifier.js +6 -2
- package/build/project/publish.js +5 -4
- package/build/project/resolveRuntimeVersionAsync.js +5 -4
- package/build/utils/expoUpdatesCli.d.ts +2 -0
- package/build/utils/expoUpdatesCli.js +12 -4
- package/build/utils/relay.d.ts +6 -0
- package/build/utils/relay.js +40 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -137,7 +137,7 @@ ALIASES
|
|
|
137
137
|
$ eas login
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
140
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/account/login.ts)_
|
|
141
141
|
|
|
142
142
|
## `eas account:logout`
|
|
143
143
|
|
|
@@ -154,7 +154,7 @@ ALIASES
|
|
|
154
154
|
$ eas logout
|
|
155
155
|
```
|
|
156
156
|
|
|
157
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
157
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/account/logout.ts)_
|
|
158
158
|
|
|
159
159
|
## `eas account:view`
|
|
160
160
|
|
|
@@ -171,7 +171,7 @@ ALIASES
|
|
|
171
171
|
$ eas whoami
|
|
172
172
|
```
|
|
173
173
|
|
|
174
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
174
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/account/view.ts)_
|
|
175
175
|
|
|
176
176
|
## `eas analytics [STATUS]`
|
|
177
177
|
|
|
@@ -185,7 +185,7 @@ DESCRIPTION
|
|
|
185
185
|
display or change analytics settings
|
|
186
186
|
```
|
|
187
187
|
|
|
188
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
188
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/analytics.ts)_
|
|
189
189
|
|
|
190
190
|
## `eas autocomplete [SHELL]`
|
|
191
191
|
|
|
@@ -237,7 +237,7 @@ DESCRIPTION
|
|
|
237
237
|
create a branch
|
|
238
238
|
```
|
|
239
239
|
|
|
240
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
240
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/branch/create.ts)_
|
|
241
241
|
|
|
242
242
|
## `eas branch:delete [NAME]`
|
|
243
243
|
|
|
@@ -258,7 +258,7 @@ DESCRIPTION
|
|
|
258
258
|
delete a branch
|
|
259
259
|
```
|
|
260
260
|
|
|
261
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
261
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
262
262
|
|
|
263
263
|
## `eas branch:list`
|
|
264
264
|
|
|
@@ -278,7 +278,7 @@ DESCRIPTION
|
|
|
278
278
|
list all branches
|
|
279
279
|
```
|
|
280
280
|
|
|
281
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
281
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/branch/list.ts)_
|
|
282
282
|
|
|
283
283
|
## `eas branch:rename`
|
|
284
284
|
|
|
@@ -298,7 +298,7 @@ DESCRIPTION
|
|
|
298
298
|
rename a branch
|
|
299
299
|
```
|
|
300
300
|
|
|
301
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
301
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
302
302
|
|
|
303
303
|
## `eas branch:view [NAME]`
|
|
304
304
|
|
|
@@ -321,7 +321,7 @@ DESCRIPTION
|
|
|
321
321
|
view a branch
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/branch/view.ts)_
|
|
325
325
|
|
|
326
326
|
## `eas build`
|
|
327
327
|
|
|
@@ -356,7 +356,7 @@ DESCRIPTION
|
|
|
356
356
|
start a build
|
|
357
357
|
```
|
|
358
358
|
|
|
359
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
359
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/index.ts)_
|
|
360
360
|
|
|
361
361
|
## `eas build:cancel [BUILD_ID]`
|
|
362
362
|
|
|
@@ -375,7 +375,7 @@ DESCRIPTION
|
|
|
375
375
|
cancel a build
|
|
376
376
|
```
|
|
377
377
|
|
|
378
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
378
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
379
379
|
|
|
380
380
|
## `eas build:configure`
|
|
381
381
|
|
|
@@ -392,7 +392,7 @@ DESCRIPTION
|
|
|
392
392
|
configure the project to support EAS Build
|
|
393
393
|
```
|
|
394
394
|
|
|
395
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
395
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/configure.ts)_
|
|
396
396
|
|
|
397
397
|
## `eas build:delete [BUILD_ID]`
|
|
398
398
|
|
|
@@ -411,7 +411,7 @@ DESCRIPTION
|
|
|
411
411
|
delete a build
|
|
412
412
|
```
|
|
413
413
|
|
|
414
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
414
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/delete.ts)_
|
|
415
415
|
|
|
416
416
|
## `eas build:inspect`
|
|
417
417
|
|
|
@@ -446,7 +446,7 @@ DESCRIPTION
|
|
|
446
446
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
447
447
|
```
|
|
448
448
|
|
|
449
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
449
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
450
450
|
|
|
451
451
|
## `eas build:list`
|
|
452
452
|
|
|
@@ -487,7 +487,7 @@ DESCRIPTION
|
|
|
487
487
|
list all builds for your project
|
|
488
488
|
```
|
|
489
489
|
|
|
490
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
490
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/list.ts)_
|
|
491
491
|
|
|
492
492
|
## `eas build:resign`
|
|
493
493
|
|
|
@@ -513,7 +513,7 @@ DESCRIPTION
|
|
|
513
513
|
re-sign a build archive
|
|
514
514
|
```
|
|
515
515
|
|
|
516
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
516
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/resign.ts)_
|
|
517
517
|
|
|
518
518
|
## `eas build:run`
|
|
519
519
|
|
|
@@ -539,7 +539,7 @@ DESCRIPTION
|
|
|
539
539
|
run simulator/emulator builds from eas-cli
|
|
540
540
|
```
|
|
541
541
|
|
|
542
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
542
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/run.ts)_
|
|
543
543
|
|
|
544
544
|
## `eas build:submit`
|
|
545
545
|
|
|
@@ -589,7 +589,7 @@ DESCRIPTION
|
|
|
589
589
|
get the latest version from EAS servers
|
|
590
590
|
```
|
|
591
591
|
|
|
592
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
592
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
593
593
|
|
|
594
594
|
## `eas build:version:set`
|
|
595
595
|
|
|
@@ -608,7 +608,7 @@ DESCRIPTION
|
|
|
608
608
|
update version of an app
|
|
609
609
|
```
|
|
610
610
|
|
|
611
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
611
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
612
612
|
|
|
613
613
|
## `eas build:version:sync`
|
|
614
614
|
|
|
@@ -627,7 +627,7 @@ DESCRIPTION
|
|
|
627
627
|
update a version in native code with a value stored on EAS servers
|
|
628
628
|
```
|
|
629
629
|
|
|
630
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
630
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
631
631
|
|
|
632
632
|
## `eas build:view [BUILD_ID]`
|
|
633
633
|
|
|
@@ -644,7 +644,7 @@ DESCRIPTION
|
|
|
644
644
|
view a build for your project
|
|
645
645
|
```
|
|
646
646
|
|
|
647
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
647
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/build/view.ts)_
|
|
648
648
|
|
|
649
649
|
## `eas channel:create [NAME]`
|
|
650
650
|
|
|
@@ -665,7 +665,7 @@ DESCRIPTION
|
|
|
665
665
|
create a channel
|
|
666
666
|
```
|
|
667
667
|
|
|
668
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
668
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/channel/create.ts)_
|
|
669
669
|
|
|
670
670
|
## `eas channel:edit [NAME]`
|
|
671
671
|
|
|
@@ -687,7 +687,7 @@ DESCRIPTION
|
|
|
687
687
|
point a channel at a new branch
|
|
688
688
|
```
|
|
689
689
|
|
|
690
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
690
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
691
691
|
|
|
692
692
|
## `eas channel:list`
|
|
693
693
|
|
|
@@ -707,7 +707,7 @@ DESCRIPTION
|
|
|
707
707
|
list all channels
|
|
708
708
|
```
|
|
709
709
|
|
|
710
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
710
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/channel/list.ts)_
|
|
711
711
|
|
|
712
712
|
## `eas channel:rollout [CHANNEL]`
|
|
713
713
|
|
|
@@ -739,7 +739,7 @@ DESCRIPTION
|
|
|
739
739
|
Roll a new branch out on a channel incrementally.
|
|
740
740
|
```
|
|
741
741
|
|
|
742
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
742
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
743
743
|
|
|
744
744
|
## `eas channel:view [NAME]`
|
|
745
745
|
|
|
@@ -762,7 +762,7 @@ DESCRIPTION
|
|
|
762
762
|
view a channel
|
|
763
763
|
```
|
|
764
764
|
|
|
765
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
765
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/channel/view.ts)_
|
|
766
766
|
|
|
767
767
|
## `eas config`
|
|
768
768
|
|
|
@@ -783,7 +783,7 @@ DESCRIPTION
|
|
|
783
783
|
display project configuration (app.json + eas.json)
|
|
784
784
|
```
|
|
785
785
|
|
|
786
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
786
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/config.ts)_
|
|
787
787
|
|
|
788
788
|
## `eas credentials`
|
|
789
789
|
|
|
@@ -800,7 +800,7 @@ DESCRIPTION
|
|
|
800
800
|
manage credentials
|
|
801
801
|
```
|
|
802
802
|
|
|
803
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
803
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
804
804
|
|
|
805
805
|
## `eas credentials:configure-build`
|
|
806
806
|
|
|
@@ -818,7 +818,7 @@ DESCRIPTION
|
|
|
818
818
|
Set up credentials for building your project.
|
|
819
819
|
```
|
|
820
820
|
|
|
821
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
821
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
822
822
|
|
|
823
823
|
## `eas device:create`
|
|
824
824
|
|
|
@@ -832,7 +832,7 @@ DESCRIPTION
|
|
|
832
832
|
register new Apple Devices to use for internal distribution
|
|
833
833
|
```
|
|
834
834
|
|
|
835
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
835
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/device/create.ts)_
|
|
836
836
|
|
|
837
837
|
## `eas device:delete`
|
|
838
838
|
|
|
@@ -852,7 +852,7 @@ DESCRIPTION
|
|
|
852
852
|
remove a registered device from your account
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
855
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/device/delete.ts)_
|
|
856
856
|
|
|
857
857
|
## `eas device:list`
|
|
858
858
|
|
|
@@ -873,7 +873,7 @@ DESCRIPTION
|
|
|
873
873
|
list all registered devices for your account
|
|
874
874
|
```
|
|
875
875
|
|
|
876
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
876
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/device/list.ts)_
|
|
877
877
|
|
|
878
878
|
## `eas device:rename`
|
|
879
879
|
|
|
@@ -894,7 +894,7 @@ DESCRIPTION
|
|
|
894
894
|
rename a registered device
|
|
895
895
|
```
|
|
896
896
|
|
|
897
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
897
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/device/rename.ts)_
|
|
898
898
|
|
|
899
899
|
## `eas device:view [UDID]`
|
|
900
900
|
|
|
@@ -908,7 +908,7 @@ DESCRIPTION
|
|
|
908
908
|
view a device for your project
|
|
909
909
|
```
|
|
910
910
|
|
|
911
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
911
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/device/view.ts)_
|
|
912
912
|
|
|
913
913
|
## `eas diagnostics`
|
|
914
914
|
|
|
@@ -922,7 +922,7 @@ DESCRIPTION
|
|
|
922
922
|
display environment info
|
|
923
923
|
```
|
|
924
924
|
|
|
925
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
925
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
926
926
|
|
|
927
927
|
## `eas help [COMMAND]`
|
|
928
928
|
|
|
@@ -1010,7 +1010,7 @@ DESCRIPTION
|
|
|
1010
1010
|
validate the local store configuration
|
|
1011
1011
|
```
|
|
1012
1012
|
|
|
1013
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1013
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1014
1014
|
|
|
1015
1015
|
## `eas metadata:pull`
|
|
1016
1016
|
|
|
@@ -1027,7 +1027,7 @@ DESCRIPTION
|
|
|
1027
1027
|
generate the local store configuration from the app stores
|
|
1028
1028
|
```
|
|
1029
1029
|
|
|
1030
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1030
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1031
1031
|
|
|
1032
1032
|
## `eas metadata:push`
|
|
1033
1033
|
|
|
@@ -1044,7 +1044,7 @@ DESCRIPTION
|
|
|
1044
1044
|
sync the local store configuration to the app stores
|
|
1045
1045
|
```
|
|
1046
1046
|
|
|
1047
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1047
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1048
1048
|
|
|
1049
1049
|
## `eas open`
|
|
1050
1050
|
|
|
@@ -1058,7 +1058,7 @@ DESCRIPTION
|
|
|
1058
1058
|
open the project page in a web browser
|
|
1059
1059
|
```
|
|
1060
1060
|
|
|
1061
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1061
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/open.ts)_
|
|
1062
1062
|
|
|
1063
1063
|
## `eas project:info`
|
|
1064
1064
|
|
|
@@ -1072,7 +1072,7 @@ DESCRIPTION
|
|
|
1072
1072
|
information about the current project
|
|
1073
1073
|
```
|
|
1074
1074
|
|
|
1075
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1075
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/project/info.ts)_
|
|
1076
1076
|
|
|
1077
1077
|
## `eas project:init`
|
|
1078
1078
|
|
|
@@ -1094,7 +1094,7 @@ ALIASES
|
|
|
1094
1094
|
$ eas init
|
|
1095
1095
|
```
|
|
1096
1096
|
|
|
1097
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1097
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/project/init.ts)_
|
|
1098
1098
|
|
|
1099
1099
|
## `eas secret:create`
|
|
1100
1100
|
|
|
@@ -1117,7 +1117,7 @@ DESCRIPTION
|
|
|
1117
1117
|
create an environment secret on the current project or owner account
|
|
1118
1118
|
```
|
|
1119
1119
|
|
|
1120
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1120
|
+
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1121
1121
|
|
|
1122
1122
|
## `eas secret:delete`
|
|
1123
1123
|
|
|
@@ -1135,7 +1135,7 @@ DESCRIPTION
|
|
|
1135
1135
|
delete an environment secret by ID
|
|
1136
1136
|
```
|
|
1137
1137
|
|
|
1138
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1138
|
+
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1139
1139
|
|
|
1140
1140
|
## `eas secret:list`
|
|
1141
1141
|
|
|
@@ -1149,7 +1149,7 @@ DESCRIPTION
|
|
|
1149
1149
|
list environment secrets available for your current app
|
|
1150
1150
|
```
|
|
1151
1151
|
|
|
1152
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1152
|
+
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1153
1153
|
|
|
1154
1154
|
## `eas secret:push`
|
|
1155
1155
|
|
|
@@ -1169,7 +1169,7 @@ DESCRIPTION
|
|
|
1169
1169
|
read environment secrets from env file and store on the server
|
|
1170
1170
|
```
|
|
1171
1171
|
|
|
1172
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1172
|
+
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1173
1173
|
|
|
1174
1174
|
## `eas submit`
|
|
1175
1175
|
|
|
@@ -1200,7 +1200,7 @@ ALIASES
|
|
|
1200
1200
|
$ eas build:submit
|
|
1201
1201
|
```
|
|
1202
1202
|
|
|
1203
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1203
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/submit.ts)_
|
|
1204
1204
|
|
|
1205
1205
|
## `eas update`
|
|
1206
1206
|
|
|
@@ -1233,7 +1233,7 @@ DESCRIPTION
|
|
|
1233
1233
|
publish an update group
|
|
1234
1234
|
```
|
|
1235
1235
|
|
|
1236
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1236
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/index.ts)_
|
|
1237
1237
|
|
|
1238
1238
|
## `eas update:configure`
|
|
1239
1239
|
|
|
@@ -1251,7 +1251,7 @@ DESCRIPTION
|
|
|
1251
1251
|
configure the project to support EAS Update
|
|
1252
1252
|
```
|
|
1253
1253
|
|
|
1254
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1254
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1255
1255
|
|
|
1256
1256
|
## `eas update:delete GROUPID`
|
|
1257
1257
|
|
|
@@ -1272,7 +1272,7 @@ DESCRIPTION
|
|
|
1272
1272
|
delete all the updates in an update group
|
|
1273
1273
|
```
|
|
1274
1274
|
|
|
1275
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1275
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1276
1276
|
|
|
1277
1277
|
## `eas update:list`
|
|
1278
1278
|
|
|
@@ -1294,7 +1294,7 @@ DESCRIPTION
|
|
|
1294
1294
|
view the recent updates
|
|
1295
1295
|
```
|
|
1296
1296
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1297
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/list.ts)_
|
|
1298
1298
|
|
|
1299
1299
|
## `eas update:republish`
|
|
1300
1300
|
|
|
@@ -1321,7 +1321,7 @@ DESCRIPTION
|
|
|
1321
1321
|
roll back to an existing update
|
|
1322
1322
|
```
|
|
1323
1323
|
|
|
1324
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1324
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1325
1325
|
|
|
1326
1326
|
## `eas update:roll-back-to-embedded`
|
|
1327
1327
|
|
|
@@ -1348,7 +1348,7 @@ DESCRIPTION
|
|
|
1348
1348
|
roll back to the embedded update
|
|
1349
1349
|
```
|
|
1350
1350
|
|
|
1351
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1351
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1352
1352
|
|
|
1353
1353
|
## `eas update:rollback`
|
|
1354
1354
|
|
|
@@ -1367,7 +1367,7 @@ DESCRIPTION
|
|
|
1367
1367
|
roll back to an embedded update or an existing update
|
|
1368
1368
|
```
|
|
1369
1369
|
|
|
1370
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1370
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1371
1371
|
|
|
1372
1372
|
## `eas update:view GROUPID`
|
|
1373
1373
|
|
|
@@ -1387,7 +1387,7 @@ DESCRIPTION
|
|
|
1387
1387
|
update group details
|
|
1388
1388
|
```
|
|
1389
1389
|
|
|
1390
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1390
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/update/view.ts)_
|
|
1391
1391
|
|
|
1392
1392
|
## `eas webhook:create`
|
|
1393
1393
|
|
|
@@ -1408,7 +1408,7 @@ DESCRIPTION
|
|
|
1408
1408
|
create a webhook
|
|
1409
1409
|
```
|
|
1410
1410
|
|
|
1411
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1411
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1412
1412
|
|
|
1413
1413
|
## `eas webhook:delete [ID]`
|
|
1414
1414
|
|
|
@@ -1428,7 +1428,7 @@ DESCRIPTION
|
|
|
1428
1428
|
delete a webhook
|
|
1429
1429
|
```
|
|
1430
1430
|
|
|
1431
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1431
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1432
1432
|
|
|
1433
1433
|
## `eas webhook:list`
|
|
1434
1434
|
|
|
@@ -1446,7 +1446,7 @@ DESCRIPTION
|
|
|
1446
1446
|
list webhooks
|
|
1447
1447
|
```
|
|
1448
1448
|
|
|
1449
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1449
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1450
1450
|
|
|
1451
1451
|
## `eas webhook:update`
|
|
1452
1452
|
|
|
@@ -1468,7 +1468,7 @@ DESCRIPTION
|
|
|
1468
1468
|
update a webhook
|
|
1469
1469
|
```
|
|
1470
1470
|
|
|
1471
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1471
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1472
1472
|
|
|
1473
1473
|
## `eas webhook:view ID`
|
|
1474
1474
|
|
|
@@ -1485,7 +1485,7 @@ DESCRIPTION
|
|
|
1485
1485
|
view a webhook
|
|
1486
1486
|
```
|
|
1487
1487
|
|
|
1488
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.8.
|
|
1488
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v7.8.3/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1489
1489
|
|
|
1490
1490
|
## `eas whoami`
|
|
1491
1491
|
|
package/build/build/local.js
CHANGED
|
@@ -6,7 +6,7 @@ const spawn_async_1 = tslib_1.__importDefault(require("@expo/spawn-async"));
|
|
|
6
6
|
const semver_1 = tslib_1.__importDefault(require("semver"));
|
|
7
7
|
const ora_1 = require("../ora");
|
|
8
8
|
const PLUGIN_PACKAGE_NAME = 'eas-cli-local-build-plugin';
|
|
9
|
-
const PLUGIN_PACKAGE_VERSION = '1.0.
|
|
9
|
+
const PLUGIN_PACKAGE_VERSION = '1.0.100';
|
|
10
10
|
var LocalBuildMode;
|
|
11
11
|
(function (LocalBuildMode) {
|
|
12
12
|
/**
|
|
@@ -55,6 +55,7 @@ class BuildVersionGetView extends EasCommand_1.default {
|
|
|
55
55
|
buildProfile: profile,
|
|
56
56
|
platform,
|
|
57
57
|
vcsClient,
|
|
58
|
+
nonInteractive: flags['non-interactive'],
|
|
58
59
|
});
|
|
59
60
|
const remoteVersions = await AppVersionQuery_1.AppVersionQuery.latestVersionAsync(graphqlClient, projectId, (0, AppPlatform_1.toAppPlatform)(platform), applicationIdentifier);
|
|
60
61
|
if (remoteVersions === null || remoteVersions === void 0 ? void 0 : remoteVersions.buildVersion) {
|
|
@@ -41,6 +41,7 @@ class BuildVersionSetView extends EasCommand_1.default {
|
|
|
41
41
|
buildProfile: profile,
|
|
42
42
|
platform,
|
|
43
43
|
vcsClient,
|
|
44
|
+
nonInteractive: false,
|
|
44
45
|
});
|
|
45
46
|
const remoteVersions = await AppVersionQuery_1.AppVersionQuery.latestVersionAsync(graphqlClient, projectId, (0, AppPlatform_1.toAppPlatform)(platform), applicationIdentifier);
|
|
46
47
|
const currentStateMessage = (remoteVersions === null || remoteVersions === void 0 ? void 0 : remoteVersions.buildVersion)
|
|
@@ -54,6 +54,7 @@ class BuildVersionSyncView extends EasCommand_1.default {
|
|
|
54
54
|
buildProfile: profileInfo.profile,
|
|
55
55
|
platform: profileInfo.platform,
|
|
56
56
|
vcsClient,
|
|
57
|
+
nonInteractive: false,
|
|
57
58
|
});
|
|
58
59
|
const remoteVersions = await AppVersionQuery_1.AppVersionQuery.latestVersionAsync(graphqlClient, projectId, (0, AppPlatform_1.toAppPlatform)(profileInfo.platform), applicationIdentifier);
|
|
59
60
|
const workflow = await (0, workflow_1.resolveWorkflowAsync)(projectDir, profileInfo.platform, vcsClient);
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { ExpoGraphqlClient } from '../../../../../commandUtils/context/contextUtils/createGraphqlClient';
|
|
2
|
-
import { GoogleServiceAccountKeyFragment } from '../../../../../graphql/generated';
|
|
2
|
+
import { GoogleServiceAccountKeyFragment, GoogleServiceAccountKeysPaginatedByAccountQuery } from '../../../../../graphql/generated';
|
|
3
3
|
export declare const GoogleServiceAccountKeyQuery: {
|
|
4
4
|
getAllForAccountAsync(graphqlClient: ExpoGraphqlClient, accountName: string): Promise<GoogleServiceAccountKeyFragment[]>;
|
|
5
|
+
getAllForAccountPaginatedAsync(graphqlClient: ExpoGraphqlClient, accountName: string, { after, first, before, last, }: {
|
|
6
|
+
after?: string | undefined;
|
|
7
|
+
first?: number | undefined;
|
|
8
|
+
before?: string | undefined;
|
|
9
|
+
last?: number | undefined;
|
|
10
|
+
}): Promise<GoogleServiceAccountKeysPaginatedByAccountQuery['account']['byName']['googleServiceAccountKeysPaginated']>;
|
|
5
11
|
};
|
|
@@ -6,17 +6,49 @@ const graphql_1 = require("graphql");
|
|
|
6
6
|
const graphql_tag_1 = tslib_1.__importDefault(require("graphql-tag"));
|
|
7
7
|
const client_1 = require("../../../../../graphql/client");
|
|
8
8
|
const GoogleServiceAccountKey_1 = require("../../../../../graphql/types/credentials/GoogleServiceAccountKey");
|
|
9
|
+
const relay_1 = require("../../../../../utils/relay");
|
|
9
10
|
exports.GoogleServiceAccountKeyQuery = {
|
|
10
11
|
async getAllForAccountAsync(graphqlClient, accountName) {
|
|
12
|
+
const paginatedGetterAsync = async (relayArgs) => {
|
|
13
|
+
return await exports.GoogleServiceAccountKeyQuery.getAllForAccountPaginatedAsync(graphqlClient, accountName, relayArgs);
|
|
14
|
+
};
|
|
15
|
+
return await (0, relay_1.fetchEntireDatasetAsync)({
|
|
16
|
+
paginatedGetterAsync,
|
|
17
|
+
progressBarLabel: 'fetching Google Service Account Keys...',
|
|
18
|
+
});
|
|
19
|
+
},
|
|
20
|
+
async getAllForAccountPaginatedAsync(graphqlClient, accountName, { after, first, before, last, }) {
|
|
11
21
|
const data = await (0, client_1.withErrorHandlingAsync)(graphqlClient
|
|
12
22
|
.query((0, graphql_tag_1.default) `
|
|
13
|
-
query
|
|
23
|
+
query GoogleServiceAccountKeysPaginatedByAccountQuery(
|
|
24
|
+
$accountName: String!
|
|
25
|
+
$after: String
|
|
26
|
+
$first: Int
|
|
27
|
+
$before: String
|
|
28
|
+
$last: Int
|
|
29
|
+
) {
|
|
14
30
|
account {
|
|
15
31
|
byName(accountName: $accountName) {
|
|
16
32
|
id
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
33
|
+
googleServiceAccountKeysPaginated(
|
|
34
|
+
after: $after
|
|
35
|
+
first: $first
|
|
36
|
+
before: $before
|
|
37
|
+
last: $last
|
|
38
|
+
) {
|
|
39
|
+
edges {
|
|
40
|
+
cursor
|
|
41
|
+
node {
|
|
42
|
+
id
|
|
43
|
+
...GoogleServiceAccountKeyFragment
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
pageInfo {
|
|
47
|
+
hasNextPage
|
|
48
|
+
hasPreviousPage
|
|
49
|
+
startCursor
|
|
50
|
+
endCursor
|
|
51
|
+
}
|
|
20
52
|
}
|
|
21
53
|
}
|
|
22
54
|
}
|
|
@@ -24,10 +56,14 @@ exports.GoogleServiceAccountKeyQuery = {
|
|
|
24
56
|
${(0, graphql_1.print)(GoogleServiceAccountKey_1.GoogleServiceAccountKeyFragmentNode)}
|
|
25
57
|
`, {
|
|
26
58
|
accountName,
|
|
59
|
+
after,
|
|
60
|
+
first,
|
|
61
|
+
before,
|
|
62
|
+
last,
|
|
27
63
|
}, {
|
|
28
64
|
additionalTypenames: ['GoogleServiceAccountKey'],
|
|
29
65
|
})
|
|
30
66
|
.toPromise());
|
|
31
|
-
return data.account.byName.
|
|
67
|
+
return data.account.byName.googleServiceAccountKeysPaginated;
|
|
32
68
|
},
|
|
33
69
|
};
|