eas-cli 0.54.1 → 0.56.0
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 +44 -44
- package/build/build/android/build.js +2 -1
- package/build/build/android/version.d.ts +5 -0
- package/build/build/android/version.js +16 -9
- package/build/build/build.d.ts +2 -2
- package/build/build/build.js +16 -5
- package/build/build/context.d.ts +4 -3
- package/build/build/createContext.d.ts +5 -2
- package/build/build/createContext.js +3 -1
- package/build/build/ios/build.js +3 -17
- package/build/build/ios/syncProjectConfiguration.d.ts +3 -3
- package/build/build/ios/syncProjectConfiguration.js +2 -2
- package/build/build/ios/version.d.ts +10 -3
- package/build/build/ios/version.js +57 -28
- package/build/build/metadata.js +1 -1
- package/build/build/runBuildAndSubmit.d.ts +2 -0
- package/build/build/runBuildAndSubmit.js +19 -3
- package/build/build/types.d.ts +4 -0
- package/build/build/types.js +6 -1
- package/build/commands/build/index.d.ts +2 -0
- package/build/commands/build/index.js +8 -1
- package/build/commands/build/version/set.d.ts +10 -0
- package/build/commands/build/version/set.js +82 -0
- package/build/commands/build/version/sync.d.ts +12 -0
- package/build/commands/build/version/sync.js +124 -0
- package/build/commands/update/index.d.ts +1 -0
- package/build/commands/update/index.js +15 -4
- package/build/credentials/ios/types.d.ts +2 -0
- package/build/env.d.ts +11 -0
- package/build/env.js +12 -0
- package/build/graphql/generated.d.ts +102 -2
- package/build/graphql/generated.js +10 -1
- package/build/graphql/mutations/AppVersionMutation.d.ts +11 -0
- package/build/graphql/mutations/AppVersionMutation.js +28 -0
- package/build/graphql/mutations/BuildMutation.d.ts +3 -1
- package/build/graphql/mutations/BuildMutation.js +14 -2
- package/build/graphql/queries/AppVersionQuery.d.ts +4 -0
- package/build/graphql/queries/AppVersionQuery.js +37 -0
- package/build/graphql/queries/WebhookQuery.d.ts +1 -1
- package/build/metadata/apple/config/reader.d.ts +2 -1
- package/build/metadata/apple/config/reader.js +66 -9
- package/build/metadata/apple/config/writer.d.ts +3 -2
- package/build/metadata/apple/config/writer.js +64 -12
- package/build/metadata/apple/data.d.ts +2 -1
- package/build/metadata/apple/tasks/app-review-detail.d.ts +14 -0
- package/build/metadata/apple/tasks/app-review-detail.js +49 -0
- package/build/metadata/apple/tasks/app-version.js +2 -2
- package/build/metadata/apple/tasks/index.js +2 -1
- package/build/metadata/apple/types.d.ts +9 -11
- package/build/metadata/errors.d.ts +5 -0
- package/build/metadata/errors.js +18 -9
- package/build/metadata/upload.js +13 -3
- package/build/platform.d.ts +1 -0
- package/build/platform.js +17 -1
- package/build/project/android/applicationId.js +6 -2
- package/build/project/android/versions.d.ts +3 -0
- package/build/project/android/versions.js +23 -0
- package/build/project/applicationIdentifier.d.ts +4 -0
- package/build/project/applicationIdentifier.js +37 -0
- package/build/project/ios/bundleIdentifier.js +2 -2
- package/build/project/ios/target.js +14 -1
- package/build/project/ios/versions.d.ts +3 -0
- package/build/project/ios/versions.js +17 -0
- package/build/project/publish.d.ts +1 -2
- package/build/project/publish.js +15 -14
- package/build/project/remoteVersionSource.d.ts +6 -0
- package/build/project/remoteVersionSource.js +52 -0
- package/build/project/workflow.js +13 -11
- package/build/submit/utils/files.js +1 -1
- package/build/uploads.d.ts +9 -2
- package/build/uploads.js +21 -7
- package/oclif.manifest.json +1 -1
- package/package.json +9 -5
- package/schema/metadata-0.json +396 -336
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ ALIASES
|
|
|
100
100
|
$ eas login
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
103
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
104
104
|
|
|
105
105
|
## `eas account:logout`
|
|
106
106
|
|
|
@@ -117,7 +117,7 @@ ALIASES
|
|
|
117
117
|
$ eas logout
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
120
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
121
121
|
|
|
122
122
|
## `eas account:view`
|
|
123
123
|
|
|
@@ -134,7 +134,7 @@ ALIASES
|
|
|
134
134
|
$ eas whoami
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
137
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
138
138
|
|
|
139
139
|
## `eas analytics [STATUS]`
|
|
140
140
|
|
|
@@ -148,7 +148,7 @@ DESCRIPTION
|
|
|
148
148
|
display or change analytics settings
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
151
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
152
152
|
|
|
153
153
|
## `eas autocomplete [SHELL]`
|
|
154
154
|
|
|
@@ -197,7 +197,7 @@ DESCRIPTION
|
|
|
197
197
|
create a branch
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
200
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
201
201
|
|
|
202
202
|
## `eas branch:delete [NAME]`
|
|
203
203
|
|
|
@@ -217,7 +217,7 @@ DESCRIPTION
|
|
|
217
217
|
delete a branch
|
|
218
218
|
```
|
|
219
219
|
|
|
220
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
220
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
221
221
|
|
|
222
222
|
## `eas branch:list`
|
|
223
223
|
|
|
@@ -234,7 +234,7 @@ DESCRIPTION
|
|
|
234
234
|
list all branches
|
|
235
235
|
```
|
|
236
236
|
|
|
237
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
237
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
238
238
|
|
|
239
239
|
## `eas branch:rename`
|
|
240
240
|
|
|
@@ -253,7 +253,7 @@ DESCRIPTION
|
|
|
253
253
|
rename a branch
|
|
254
254
|
```
|
|
255
255
|
|
|
256
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
256
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
257
257
|
|
|
258
258
|
## `eas branch:view [NAME]`
|
|
259
259
|
|
|
@@ -273,7 +273,7 @@ DESCRIPTION
|
|
|
273
273
|
view a branch
|
|
274
274
|
```
|
|
275
275
|
|
|
276
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
276
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
277
277
|
|
|
278
278
|
## `eas build`
|
|
279
279
|
|
|
@@ -302,7 +302,7 @@ DESCRIPTION
|
|
|
302
302
|
start a build
|
|
303
303
|
```
|
|
304
304
|
|
|
305
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
305
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
306
306
|
|
|
307
307
|
## `eas build:cancel [BUILD_ID]`
|
|
308
308
|
|
|
@@ -316,7 +316,7 @@ DESCRIPTION
|
|
|
316
316
|
cancel a build
|
|
317
317
|
```
|
|
318
318
|
|
|
319
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
319
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
320
320
|
|
|
321
321
|
## `eas build:configure`
|
|
322
322
|
|
|
@@ -333,7 +333,7 @@ DESCRIPTION
|
|
|
333
333
|
configure the project to support EAS Build
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
336
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
337
337
|
|
|
338
338
|
## `eas build:inspect`
|
|
339
339
|
|
|
@@ -368,7 +368,7 @@ DESCRIPTION
|
|
|
368
368
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
369
369
|
```
|
|
370
370
|
|
|
371
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
371
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
372
372
|
|
|
373
373
|
## `eas build:list`
|
|
374
374
|
|
|
@@ -401,7 +401,7 @@ DESCRIPTION
|
|
|
401
401
|
list all builds for your project
|
|
402
402
|
```
|
|
403
403
|
|
|
404
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
404
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
405
405
|
|
|
406
406
|
## `eas build:submit`
|
|
407
407
|
|
|
@@ -446,7 +446,7 @@ DESCRIPTION
|
|
|
446
446
|
view a build for your project
|
|
447
447
|
```
|
|
448
448
|
|
|
449
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
449
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
450
450
|
|
|
451
451
|
## `eas channel:create [NAME]`
|
|
452
452
|
|
|
@@ -466,7 +466,7 @@ DESCRIPTION
|
|
|
466
466
|
create a channel
|
|
467
467
|
```
|
|
468
468
|
|
|
469
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
469
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
470
470
|
|
|
471
471
|
## `eas channel:edit [NAME]`
|
|
472
472
|
|
|
@@ -487,7 +487,7 @@ DESCRIPTION
|
|
|
487
487
|
point a channel at a new branch
|
|
488
488
|
```
|
|
489
489
|
|
|
490
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
490
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
491
491
|
|
|
492
492
|
## `eas channel:list`
|
|
493
493
|
|
|
@@ -504,7 +504,7 @@ DESCRIPTION
|
|
|
504
504
|
list all channels
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
507
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
508
508
|
|
|
509
509
|
## `eas channel:view [NAME]`
|
|
510
510
|
|
|
@@ -524,7 +524,7 @@ DESCRIPTION
|
|
|
524
524
|
view a channel
|
|
525
525
|
```
|
|
526
526
|
|
|
527
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
527
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
528
528
|
|
|
529
529
|
## `eas config`
|
|
530
530
|
|
|
@@ -542,7 +542,7 @@ DESCRIPTION
|
|
|
542
542
|
display project configuration (app.json + eas.json)
|
|
543
543
|
```
|
|
544
544
|
|
|
545
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
545
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/config.ts)_
|
|
546
546
|
|
|
547
547
|
## `eas credentials`
|
|
548
548
|
|
|
@@ -556,7 +556,7 @@ DESCRIPTION
|
|
|
556
556
|
manage credentials
|
|
557
557
|
```
|
|
558
558
|
|
|
559
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
559
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/credentials.ts)_
|
|
560
560
|
|
|
561
561
|
## `eas device:create`
|
|
562
562
|
|
|
@@ -570,7 +570,7 @@ DESCRIPTION
|
|
|
570
570
|
register new Apple Devices to use for internal distribution
|
|
571
571
|
```
|
|
572
572
|
|
|
573
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
573
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
574
574
|
|
|
575
575
|
## `eas device:delete`
|
|
576
576
|
|
|
@@ -588,7 +588,7 @@ DESCRIPTION
|
|
|
588
588
|
remove a registered device from your account
|
|
589
589
|
```
|
|
590
590
|
|
|
591
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
591
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
592
592
|
|
|
593
593
|
## `eas device:list`
|
|
594
594
|
|
|
@@ -605,7 +605,7 @@ DESCRIPTION
|
|
|
605
605
|
list all registered devices for your account
|
|
606
606
|
```
|
|
607
607
|
|
|
608
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
608
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
609
609
|
|
|
610
610
|
## `eas device:view [UDID]`
|
|
611
611
|
|
|
@@ -619,7 +619,7 @@ DESCRIPTION
|
|
|
619
619
|
view a device for your project
|
|
620
620
|
```
|
|
621
621
|
|
|
622
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
622
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
623
623
|
|
|
624
624
|
## `eas diagnostics`
|
|
625
625
|
|
|
@@ -633,7 +633,7 @@ DESCRIPTION
|
|
|
633
633
|
display environment info
|
|
634
634
|
```
|
|
635
635
|
|
|
636
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
636
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
637
637
|
|
|
638
638
|
## `eas help [COMMAND]`
|
|
639
639
|
|
|
@@ -715,7 +715,7 @@ DESCRIPTION
|
|
|
715
715
|
generate the local store configuration from the app stores
|
|
716
716
|
```
|
|
717
717
|
|
|
718
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
718
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
719
719
|
|
|
720
720
|
## `eas metadata:push`
|
|
721
721
|
|
|
@@ -732,7 +732,7 @@ DESCRIPTION
|
|
|
732
732
|
sync the local store configuration to the app stores
|
|
733
733
|
```
|
|
734
734
|
|
|
735
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
735
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
736
736
|
|
|
737
737
|
## `eas project:info`
|
|
738
738
|
|
|
@@ -746,7 +746,7 @@ DESCRIPTION
|
|
|
746
746
|
information about the current project
|
|
747
747
|
```
|
|
748
748
|
|
|
749
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
749
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
750
750
|
|
|
751
751
|
## `eas project:init`
|
|
752
752
|
|
|
@@ -763,7 +763,7 @@ ALIASES
|
|
|
763
763
|
$ eas init
|
|
764
764
|
```
|
|
765
765
|
|
|
766
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
766
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
767
767
|
|
|
768
768
|
## `eas secret:create`
|
|
769
769
|
|
|
@@ -783,7 +783,7 @@ DESCRIPTION
|
|
|
783
783
|
create an environment secret on the current project or owner account
|
|
784
784
|
```
|
|
785
785
|
|
|
786
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
786
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
787
787
|
|
|
788
788
|
## `eas secret:delete`
|
|
789
789
|
|
|
@@ -800,7 +800,7 @@ DESCRIPTION
|
|
|
800
800
|
delete an environment secret by ID
|
|
801
801
|
```
|
|
802
802
|
|
|
803
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
803
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
804
804
|
|
|
805
805
|
## `eas secret:list`
|
|
806
806
|
|
|
@@ -814,7 +814,7 @@ DESCRIPTION
|
|
|
814
814
|
list environment secrets available for your current app
|
|
815
815
|
```
|
|
816
816
|
|
|
817
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
817
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
818
818
|
|
|
819
819
|
## `eas submit`
|
|
820
820
|
|
|
@@ -844,7 +844,7 @@ ALIASES
|
|
|
844
844
|
$ eas build:submit
|
|
845
845
|
```
|
|
846
846
|
|
|
847
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
847
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/submit.ts)_
|
|
848
848
|
|
|
849
849
|
## `eas update`
|
|
850
850
|
|
|
@@ -874,7 +874,7 @@ DESCRIPTION
|
|
|
874
874
|
publish an update group
|
|
875
875
|
```
|
|
876
876
|
|
|
877
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
877
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
878
878
|
|
|
879
879
|
## `eas update:configure`
|
|
880
880
|
|
|
@@ -891,7 +891,7 @@ DESCRIPTION
|
|
|
891
891
|
configure the project to support EAS Update
|
|
892
892
|
```
|
|
893
893
|
|
|
894
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
894
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
895
895
|
|
|
896
896
|
## `eas update:delete GROUPID`
|
|
897
897
|
|
|
@@ -911,7 +911,7 @@ DESCRIPTION
|
|
|
911
911
|
delete all the updates in an update group
|
|
912
912
|
```
|
|
913
913
|
|
|
914
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
914
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
915
915
|
|
|
916
916
|
## `eas update:list`
|
|
917
917
|
|
|
@@ -930,7 +930,7 @@ DESCRIPTION
|
|
|
930
930
|
view the recent updates for a branch
|
|
931
931
|
```
|
|
932
932
|
|
|
933
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
933
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
934
934
|
|
|
935
935
|
## `eas update:view GROUPID`
|
|
936
936
|
|
|
@@ -950,7 +950,7 @@ DESCRIPTION
|
|
|
950
950
|
update group details
|
|
951
951
|
```
|
|
952
952
|
|
|
953
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
953
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
954
954
|
|
|
955
955
|
## `eas webhook:create`
|
|
956
956
|
|
|
@@ -970,7 +970,7 @@ DESCRIPTION
|
|
|
970
970
|
create a webhook
|
|
971
971
|
```
|
|
972
972
|
|
|
973
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
973
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
974
974
|
|
|
975
975
|
## `eas webhook:delete [ID]`
|
|
976
976
|
|
|
@@ -987,7 +987,7 @@ DESCRIPTION
|
|
|
987
987
|
delete a webhook
|
|
988
988
|
```
|
|
989
989
|
|
|
990
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
990
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
991
991
|
|
|
992
992
|
## `eas webhook:list`
|
|
993
993
|
|
|
@@ -1004,7 +1004,7 @@ DESCRIPTION
|
|
|
1004
1004
|
list webhooks
|
|
1005
1005
|
```
|
|
1006
1006
|
|
|
1007
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
1007
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1008
1008
|
|
|
1009
1009
|
## `eas webhook:update`
|
|
1010
1010
|
|
|
@@ -1025,7 +1025,7 @@ DESCRIPTION
|
|
|
1025
1025
|
update a webhook
|
|
1026
1026
|
```
|
|
1027
1027
|
|
|
1028
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
1028
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1029
1029
|
|
|
1030
1030
|
## `eas webhook:view ID`
|
|
1031
1031
|
|
|
@@ -1042,7 +1042,7 @@ DESCRIPTION
|
|
|
1042
1042
|
view a webhook
|
|
1043
1043
|
```
|
|
1044
1044
|
|
|
1045
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
1045
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.56.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1046
1046
|
|
|
1047
1047
|
## `eas whoami`
|
|
1048
1048
|
|
|
@@ -59,13 +59,14 @@ async function prepareAndroidBuildAsync(ctx) {
|
|
|
59
59
|
prepareJobAsync: async (ctx, jobData) => {
|
|
60
60
|
return await (0, prepareJob_1.prepareJobAsync)(ctx, jobData);
|
|
61
61
|
},
|
|
62
|
-
sendBuildRequestAsync: async (appId, job, metadata) => {
|
|
62
|
+
sendBuildRequestAsync: async (appId, job, metadata, buildParams) => {
|
|
63
63
|
const graphqlMetadata = (0, graphql_1.transformMetadata)(metadata);
|
|
64
64
|
const graphqlJob = (0, graphql_2.transformJob)(job);
|
|
65
65
|
return await BuildMutation_1.BuildMutation.createAndroidBuildAsync({
|
|
66
66
|
appId,
|
|
67
67
|
job: graphqlJob,
|
|
68
68
|
metadata: graphqlMetadata,
|
|
69
|
+
buildParams,
|
|
69
70
|
});
|
|
70
71
|
},
|
|
71
72
|
});
|
|
@@ -20,3 +20,8 @@ export declare function maybeResolveVersionsAsync(projectDir: string, exp: ExpoC
|
|
|
20
20
|
appVersion?: string;
|
|
21
21
|
appBuildVersion?: string;
|
|
22
22
|
}>;
|
|
23
|
+
export declare function updateNativeVersionsAsync({ projectDir, version, versionCode, }: {
|
|
24
|
+
projectDir: string;
|
|
25
|
+
version?: string;
|
|
26
|
+
versionCode?: number;
|
|
27
|
+
}): Promise<void>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.maybeResolveVersionsAsync = exports.bumpVersionInAppJsonAsync = exports.bumpVersionAsync = exports.BumpStrategy = void 0;
|
|
3
|
+
exports.updateNativeVersionsAsync = exports.maybeResolveVersionsAsync = exports.bumpVersionInAppJsonAsync = exports.bumpVersionAsync = exports.BumpStrategy = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const config_plugins_1 = require("@expo/config-plugins");
|
|
6
6
|
const eas_build_job_1 = require("@expo/eas-build-job");
|
|
@@ -8,6 +8,7 @@ const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
|
8
8
|
const fs_extra_1 = tslib_1.__importDefault(require("fs-extra"));
|
|
9
9
|
const log_1 = tslib_1.__importDefault(require("../../log"));
|
|
10
10
|
const gradleUtils_1 = require("../../project/android/gradleUtils");
|
|
11
|
+
const versions_1 = require("../../project/android/versions");
|
|
11
12
|
const workflow_1 = require("../../project/workflow");
|
|
12
13
|
const appJson_1 = require("../utils/appJson");
|
|
13
14
|
const version_1 = require("../utils/version");
|
|
@@ -18,7 +19,7 @@ var BumpStrategy;
|
|
|
18
19
|
BumpStrategy[BumpStrategy["NOOP"] = 2] = "NOOP";
|
|
19
20
|
})(BumpStrategy = exports.BumpStrategy || (exports.BumpStrategy = {}));
|
|
20
21
|
async function bumpVersionAsync({ bumpStrategy, projectDir, exp, }) {
|
|
21
|
-
var _a, _b;
|
|
22
|
+
var _a, _b, _c;
|
|
22
23
|
if (bumpStrategy === BumpStrategy.NOOP) {
|
|
23
24
|
return;
|
|
24
25
|
}
|
|
@@ -30,9 +31,10 @@ async function bumpVersionAsync({ bumpStrategy, projectDir, exp, }) {
|
|
|
30
31
|
}
|
|
31
32
|
await bumpVersionInAppJsonAsync({ bumpStrategy, projectDir, exp });
|
|
32
33
|
log_1.default.log('Updated versions in app.json');
|
|
33
|
-
await
|
|
34
|
+
await updateNativeVersionsAsync({
|
|
34
35
|
projectDir,
|
|
35
|
-
exp,
|
|
36
|
+
version: exp.version,
|
|
37
|
+
versionCode: (_c = exp.android) === null || _c === void 0 ? void 0 : _c.versionCode,
|
|
36
38
|
});
|
|
37
39
|
log_1.default.log('Synchronized versions with build gradle');
|
|
38
40
|
}
|
|
@@ -50,7 +52,7 @@ async function bumpVersionInAppJsonAsync({ bumpStrategy, projectDir, exp, }) {
|
|
|
50
52
|
}
|
|
51
53
|
else {
|
|
52
54
|
const versionCode = config_plugins_1.AndroidConfig.Version.getVersionCode(exp);
|
|
53
|
-
const bumpedVersionCode = versionCode
|
|
55
|
+
const bumpedVersionCode = (0, versions_1.getNextVersionCode)(versionCode);
|
|
54
56
|
log_1.default.log(`Bumping ${chalk_1.default.bold('expo.android.versionCode')} from ${chalk_1.default.bold(versionCode)} to ${chalk_1.default.bold(bumpedVersionCode)}`);
|
|
55
57
|
await (0, appJson_1.updateAppJsonConfigAsync)({ projectDir, exp }, config => {
|
|
56
58
|
config.android = { ...config.android, versionCode: bumpedVersionCode };
|
|
@@ -84,16 +86,21 @@ async function maybeResolveVersionsAsync(projectDir, exp, buildProfile) {
|
|
|
84
86
|
}
|
|
85
87
|
}
|
|
86
88
|
exports.maybeResolveVersionsAsync = maybeResolveVersionsAsync;
|
|
87
|
-
async function
|
|
89
|
+
async function updateNativeVersionsAsync({ projectDir, version, versionCode, }) {
|
|
88
90
|
const buildGradle = await readBuildGradleAsync(projectDir);
|
|
89
91
|
if (!buildGradle) {
|
|
90
92
|
throw new Error('This project is missing a build.gradle file.');
|
|
91
93
|
}
|
|
92
|
-
let updatedBuildGradle =
|
|
93
|
-
|
|
94
|
+
let updatedBuildGradle = buildGradle;
|
|
95
|
+
if (version !== undefined) {
|
|
96
|
+
updatedBuildGradle = updatedBuildGradle.replace(new RegExp(`versionName ".*"`), `versionName "${version}"`);
|
|
97
|
+
}
|
|
98
|
+
if (versionCode !== undefined) {
|
|
99
|
+
updatedBuildGradle = updatedBuildGradle.replace(new RegExp(`versionCode.*`), `versionCode ${versionCode}`);
|
|
100
|
+
}
|
|
94
101
|
await writeBuildGradleAsync({ projectDir, buildGradle: updatedBuildGradle });
|
|
95
|
-
return updatedBuildGradle;
|
|
96
102
|
}
|
|
103
|
+
exports.updateNativeVersionsAsync = updateNativeVersionsAsync;
|
|
97
104
|
async function readBuildGradleAsync(projectDir) {
|
|
98
105
|
const buildGradlePath = config_plugins_1.AndroidConfig.Paths.getAppBuildGradleFilePath(projectDir);
|
|
99
106
|
if (!(await fs_extra_1.default.pathExists(buildGradlePath))) {
|
package/build/build/build.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ArchiveSource, Job, Metadata, Platform } from '@expo/eas-build-job';
|
|
2
2
|
import { CredentialsSource } from '@expo/eas-json';
|
|
3
|
-
import { BuildFragment } from '../graphql/generated';
|
|
3
|
+
import { BuildFragment, BuildParamsInput } from '../graphql/generated';
|
|
4
4
|
import { BuildResult } from '../graphql/mutations/BuildMutation';
|
|
5
5
|
import { BuildContext } from './context';
|
|
6
6
|
export interface CredentialsResult<Credentials> {
|
|
@@ -16,7 +16,7 @@ interface Builder<TPlatform extends Platform, Credentials, TJob extends Job> {
|
|
|
16
16
|
ensureCredentialsAsync(ctx: BuildContext<TPlatform>): Promise<CredentialsResult<Credentials> | undefined>;
|
|
17
17
|
syncProjectConfigurationAsync(ctx: BuildContext<TPlatform>): Promise<void>;
|
|
18
18
|
prepareJobAsync(ctx: BuildContext<TPlatform>, jobData: JobData<Credentials>): Promise<Job>;
|
|
19
|
-
sendBuildRequestAsync(appId: string, job: TJob, metadata: Metadata): Promise<BuildResult>;
|
|
19
|
+
sendBuildRequestAsync(appId: string, job: TJob, metadata: Metadata, buildParams: BuildParamsInput): Promise<BuildResult>;
|
|
20
20
|
}
|
|
21
21
|
export declare type BuildRequestSender = () => Promise<BuildFragment | undefined>;
|
|
22
22
|
export declare function prepareBuildRequestForPlatformAsync<TPlatform extends Platform, Credentials, TJob extends Job>(builder: Builder<TPlatform, Credentials, TJob>): Promise<BuildRequestSender>;
|
package/build/build/build.js
CHANGED
|
@@ -24,6 +24,11 @@ const local_1 = require("./local");
|
|
|
24
24
|
const metadata_1 = require("./metadata");
|
|
25
25
|
const printBuildInfo_1 = require("./utils/printBuildInfo");
|
|
26
26
|
const repository_1 = require("./utils/repository");
|
|
27
|
+
function resolveBuildParamsInput(ctx) {
|
|
28
|
+
return {
|
|
29
|
+
resourceClass: ctx.resourceClass,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
27
32
|
async function prepareBuildRequestForPlatformAsync(builder) {
|
|
28
33
|
const { ctx } = builder;
|
|
29
34
|
const credentialsResult = await (0, common_1.withAnalyticsAsync)(async () => await builder.ensureCredentialsAsync(ctx), {
|
|
@@ -52,6 +57,7 @@ async function prepareBuildRequestForPlatformAsync(builder) {
|
|
|
52
57
|
bucketKey: await uploadProjectAsync(ctx),
|
|
53
58
|
};
|
|
54
59
|
const metadata = await (0, metadata_1.collectMetadataAsync)(ctx);
|
|
60
|
+
const buildParams = resolveBuildParamsInput(ctx);
|
|
55
61
|
const job = await builder.prepareJobAsync(ctx, {
|
|
56
62
|
projectArchive,
|
|
57
63
|
credentials: credentialsResult === null || credentialsResult === void 0 ? void 0 : credentialsResult.credentials,
|
|
@@ -63,7 +69,7 @@ async function prepareBuildRequestForPlatformAsync(builder) {
|
|
|
63
69
|
}
|
|
64
70
|
else {
|
|
65
71
|
try {
|
|
66
|
-
return await sendBuildRequestAsync(builder, job, metadata);
|
|
72
|
+
return await sendBuildRequestAsync(builder, job, metadata, buildParams);
|
|
67
73
|
}
|
|
68
74
|
catch (error) {
|
|
69
75
|
handleBuildRequestError(error, job.platform);
|
|
@@ -103,7 +109,7 @@ async function uploadProjectAsync(ctx) {
|
|
|
103
109
|
log_1.default.log(`Compressing project files and uploading to EAS Build. ${(0, log_1.learnMore)('https://expo.fyi/eas-build-archive')}`);
|
|
104
110
|
const projectTarball = await (0, repository_1.makeProjectTarballAsync)();
|
|
105
111
|
projectTarballPath = projectTarball.path;
|
|
106
|
-
const { bucketKey } = await (0, uploads_1.
|
|
112
|
+
const { bucketKey } = await (0, uploads_1.uploadFileAtPathToS3Async)(generated_1.UploadSessionType.EasBuildProjectSources, projectTarball.path, (0, progress_1.createProgressTracker)({
|
|
107
113
|
total: projectTarball.size,
|
|
108
114
|
message: ratio => `Uploading to EAS Build (${(0, files_1.formatBytes)(projectTarball.size * ratio)} / ${(0, files_1.formatBytes)(projectTarball.size)})`,
|
|
109
115
|
completedMessage: (duration) => `Uploaded to EAS ${chalk_1.default.dim(duration)}`,
|
|
@@ -122,13 +128,13 @@ async function uploadProjectAsync(ctx) {
|
|
|
122
128
|
}
|
|
123
129
|
}
|
|
124
130
|
}
|
|
125
|
-
async function sendBuildRequestAsync(builder, job, metadata) {
|
|
131
|
+
async function sendBuildRequestAsync(builder, job, metadata, buildParams) {
|
|
126
132
|
const { ctx } = builder;
|
|
127
133
|
return await (0, common_1.withAnalyticsAsync)(async () => {
|
|
128
134
|
if (log_1.default.isDebug) {
|
|
129
135
|
log_1.default.log(`Starting ${platform_1.requestedPlatformDisplayNames[job.platform]} build`);
|
|
130
136
|
}
|
|
131
|
-
const { build, deprecationInfo } = await builder.sendBuildRequestAsync(ctx.projectId, job, metadata);
|
|
137
|
+
const { build, deprecationInfo } = await builder.sendBuildRequestAsync(ctx.projectId, job, metadata, buildParams);
|
|
132
138
|
(0, printBuildInfo_1.printDeprecationWarnings)(deprecationInfo);
|
|
133
139
|
return build;
|
|
134
140
|
}, {
|
|
@@ -219,7 +225,7 @@ async function handleSingleBuildProgressAsync({ build, accountName }, { spinner
|
|
|
219
225
|
log_1.default.log(`Sign up for EAS Production or Enterprise at ${chalk_1.default.underline(formatAccountSubscriptionsUrl(accountName))}`);
|
|
220
226
|
}
|
|
221
227
|
log_1.default.newLine();
|
|
222
|
-
log_1.default.log(
|
|
228
|
+
log_1.default.log(`Waiting in ${priorityToQueueDisplayName[build.priority]}`);
|
|
223
229
|
queueProgressBar.start(build.initialQueuePosition + 1, build.initialQueuePosition - build.queuePosition + 1, progressBarPayload);
|
|
224
230
|
queueProgressBarStarted = true;
|
|
225
231
|
}
|
|
@@ -248,6 +254,11 @@ async function handleSingleBuildProgressAsync({ build, accountName }, { spinner
|
|
|
248
254
|
}
|
|
249
255
|
return { refetch: true };
|
|
250
256
|
}
|
|
257
|
+
const priorityToQueueDisplayName = {
|
|
258
|
+
[generated_1.BuildPriority.Normal]: 'queue',
|
|
259
|
+
[generated_1.BuildPriority.NormalPlus]: 'queue',
|
|
260
|
+
[generated_1.BuildPriority.High]: 'priority queue',
|
|
261
|
+
};
|
|
251
262
|
const statusToDisplayName = {
|
|
252
263
|
[generated_1.BuildStatus.New]: 'waiting to enter the queue (concurrency limit reached)',
|
|
253
264
|
[generated_1.BuildStatus.InQueue]: 'in queue',
|
package/build/build/context.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ExpoConfig } from '@expo/config';
|
|
2
2
|
import { Platform, Workflow } from '@expo/eas-build-job';
|
|
3
|
-
import { BuildProfile } from '@expo/eas-json';
|
|
4
|
-
import type { XCBuildConfiguration } from 'xcode';
|
|
3
|
+
import { BuildProfile, EasJson } from '@expo/eas-json';
|
|
5
4
|
import { TrackingContext } from '../analytics/common';
|
|
6
5
|
import { CredentialsContext } from '../credentials/context';
|
|
7
6
|
import { Target } from '../credentials/ios/types';
|
|
7
|
+
import { BuildResourceClass } from '../graphql/generated';
|
|
8
8
|
import { GradleBuildContext } from '../project/android/gradle';
|
|
9
9
|
import { XcodeBuildContext } from '../project/ios/scheme';
|
|
10
10
|
import { Actor } from '../user/User';
|
|
@@ -16,15 +16,16 @@ export interface AndroidBuildContext {
|
|
|
16
16
|
}
|
|
17
17
|
export interface IosBuildContext {
|
|
18
18
|
bundleIdentifier: string;
|
|
19
|
-
applicationTargetBuildSettings: XCBuildConfiguration['buildSettings'];
|
|
20
19
|
applicationTarget: Target;
|
|
21
20
|
targets: Target[];
|
|
22
21
|
xcodeBuildContext: XcodeBuildContext;
|
|
23
22
|
}
|
|
24
23
|
export interface BuildContext<T extends Platform> {
|
|
25
24
|
accountName: string;
|
|
25
|
+
easJsonCliConfig: EasJson['cli'];
|
|
26
26
|
buildProfile: BuildProfile<T>;
|
|
27
27
|
buildProfileName: string;
|
|
28
|
+
resourceClass: BuildResourceClass;
|
|
28
29
|
clearCache: boolean;
|
|
29
30
|
credentialsCtx: CredentialsContext;
|
|
30
31
|
exp: ExpoConfig;
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { Platform } from '@expo/eas-build-job';
|
|
2
|
-
import { BuildProfile } from '@expo/eas-json';
|
|
2
|
+
import { BuildProfile, EasJson } from '@expo/eas-json';
|
|
3
|
+
import { BuildResourceClass } from '../graphql/generated';
|
|
3
4
|
import { BuildContext } from './context';
|
|
4
5
|
import { LocalBuildOptions } from './local';
|
|
5
|
-
export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, clearCache, localBuildOptions, nonInteractive, platform, projectDir, }: {
|
|
6
|
+
export declare function createBuildContextAsync<T extends Platform>({ buildProfileName, buildProfile, easJsonCliConfig, clearCache, localBuildOptions, nonInteractive, platform, projectDir, resourceClass, }: {
|
|
6
7
|
buildProfileName: string;
|
|
7
8
|
buildProfile: BuildProfile<T>;
|
|
9
|
+
easJsonCliConfig: EasJson['cli'];
|
|
8
10
|
clearCache: boolean;
|
|
9
11
|
localBuildOptions: LocalBuildOptions;
|
|
10
12
|
nonInteractive: boolean;
|
|
11
13
|
platform: T;
|
|
12
14
|
projectDir: string;
|
|
15
|
+
resourceClass: BuildResourceClass;
|
|
13
16
|
}): Promise<BuildContext<T>>;
|
|
@@ -15,7 +15,7 @@ const Account_1 = require("../user/Account");
|
|
|
15
15
|
const actions_1 = require("../user/actions");
|
|
16
16
|
const build_1 = require("./android/build");
|
|
17
17
|
const build_2 = require("./ios/build");
|
|
18
|
-
async function createBuildContextAsync({ buildProfileName, buildProfile, clearCache = false, localBuildOptions, nonInteractive = false, platform, projectDir, }) {
|
|
18
|
+
async function createBuildContextAsync({ buildProfileName, buildProfile, easJsonCliConfig, clearCache = false, localBuildOptions, nonInteractive = false, platform, projectDir, resourceClass, }) {
|
|
19
19
|
var _a;
|
|
20
20
|
const exp = (0, expoConfig_1.getExpoConfig)(projectDir, { env: buildProfile.env });
|
|
21
21
|
const user = await (0, actions_1.ensureLoggedInAsync)();
|
|
@@ -49,6 +49,8 @@ async function createBuildContextAsync({ buildProfileName, buildProfile, clearCa
|
|
|
49
49
|
accountName,
|
|
50
50
|
buildProfile,
|
|
51
51
|
buildProfileName,
|
|
52
|
+
resourceClass,
|
|
53
|
+
easJsonCliConfig,
|
|
52
54
|
clearCache,
|
|
53
55
|
credentialsCtx,
|
|
54
56
|
exp,
|