eas-cli 2.1.0 → 2.2.1
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 +179 -133
- package/build/branch/queries.d.ts +10 -2
- package/build/branch/queries.js +30 -30
- package/build/branch/utils.d.ts +4 -0
- package/build/branch/utils.js +15 -0
- package/build/build/android/build.js +3 -3
- package/build/build/android/prepareJob.js +1 -2
- package/build/build/android/syncProjectConfiguration.d.ts +2 -1
- package/build/build/android/syncProjectConfiguration.js +2 -2
- package/build/build/build.js +15 -4
- package/build/build/configure.js +2 -2
- package/build/build/createContext.d.ts +5 -1
- package/build/build/createContext.js +8 -14
- package/build/build/ios/build.js +2 -1
- package/build/build/ios/credentials.js +1 -1
- package/build/build/ios/prepareJob.js +1 -2
- package/build/build/ios/syncProjectConfiguration.d.ts +2 -1
- package/build/build/ios/syncProjectConfiguration.js +2 -2
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +1 -2
- package/build/build/queries.d.ts +9 -0
- package/build/build/queries.js +51 -0
- package/build/build/runBuildAndSubmit.d.ts +3 -1
- package/build/build/runBuildAndSubmit.js +15 -7
- package/build/build/utils/repository.js +5 -1
- package/build/channel/queries.d.ts +17 -0
- package/build/channel/queries.js +137 -0
- package/build/channel/utils.d.ts +22 -0
- package/build/channel/utils.js +87 -0
- package/build/commandUtils/EasCommand.d.ts +68 -7
- package/build/commandUtils/EasCommand.js +60 -79
- package/build/commandUtils/context/ActorContextField.d.ts +5 -0
- package/build/commandUtils/context/ActorContextField.js +11 -0
- package/build/commandUtils/context/ContextField.d.ts +6 -0
- package/build/commandUtils/context/ContextField.js +5 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +11 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.js +27 -0
- package/build/commandUtils/context/OptionalProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/OptionalProjectConfigContextField.js +37 -0
- package/build/commandUtils/context/ProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/ProjectConfigContextField.js +23 -0
- package/build/commandUtils/context/ProjectDirContextField.d.ts +4 -0
- package/build/commandUtils/context/ProjectDirContextField.js +11 -0
- package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.d.ts +21 -0
- package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.js +75 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.d.ts +17 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +102 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +24 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +108 -0
- package/build/commandUtils/flags.d.ts +10 -0
- package/build/commandUtils/flags.js +23 -0
- package/build/commandUtils/pagination.d.ts +7 -4
- package/build/commandUtils/pagination.js +11 -15
- package/build/commands/account/login.d.ts +0 -2
- package/build/commands/account/login.js +2 -7
- package/build/commands/account/logout.d.ts +0 -2
- package/build/commands/account/logout.js +0 -5
- package/build/commands/account/view.d.ts +0 -2
- package/build/commands/account/view.js +0 -5
- package/build/commands/analytics.d.ts +0 -1
- package/build/commands/analytics.js +0 -4
- package/build/commands/branch/create.d.ts +4 -0
- package/build/commands/branch/create.js +18 -18
- package/build/commands/branch/delete.d.ts +4 -0
- package/build/commands/branch/delete.js +29 -26
- package/build/commands/branch/list.d.ts +5 -2
- package/build/commands/branch/list.js +13 -8
- package/build/commands/branch/rename.d.ts +5 -1
- package/build/commands/branch/rename.js +15 -13
- package/build/commands/branch/view.d.ts +5 -2
- package/build/commands/branch/view.js +31 -13
- package/build/commands/build/cancel.d.ts +7 -0
- package/build/commands/build/cancel.js +50 -23
- package/build/commands/build/configure.d.ts +3 -0
- package/build/commands/build/configure.js +12 -7
- package/build/commands/build/index.d.ts +7 -2
- package/build/commands/build/index.js +31 -23
- package/build/commands/build/inspect.d.ts +5 -0
- package/build/commands/build/inspect.js +12 -3
- package/build/commands/build/list.d.ts +7 -2
- package/build/commands/build/list.js +36 -59
- package/build/commands/build/version/set.d.ts +5 -0
- package/build/commands/build/version/set.js +22 -14
- package/build/commands/build/version/sync.d.ts +5 -0
- package/build/commands/build/version/sync.js +22 -13
- package/build/commands/build/view.d.ts +3 -0
- package/build/commands/build/view.js +20 -14
- package/build/commands/channel/create.d.ts +4 -0
- package/build/commands/channel/create.js +32 -25
- package/build/commands/channel/delete.d.ts +3 -0
- package/build/commands/channel/delete.js +36 -59
- package/build/commands/channel/edit.d.ts +7 -7
- package/build/commands/channel/edit.js +39 -72
- package/build/commands/channel/list.d.ts +6 -0
- package/build/commands/channel/list.js +20 -76
- package/build/commands/channel/rollout.d.ts +5 -1
- package/build/commands/channel/rollout.js +34 -35
- package/build/commands/channel/view.d.ts +6 -33
- package/build/commands/channel/view.js +31 -132
- package/build/commands/config.d.ts +6 -2
- package/build/commands/config.js +22 -13
- package/build/commands/credentials.d.ts +4 -0
- package/build/commands/credentials.js +10 -1
- package/build/commands/device/create.d.ts +4 -0
- package/build/commands/device/create.js +15 -3
- package/build/commands/device/delete.d.ts +13 -8
- package/build/commands/device/delete.js +81 -130
- package/build/commands/device/list.d.ts +7 -0
- package/build/commands/device/list.js +42 -63
- package/build/commands/device/view.d.ts +3 -0
- package/build/commands/device/view.js +10 -5
- package/build/commands/diagnostics.d.ts +3 -1
- package/build/commands/diagnostics.js +10 -8
- package/build/commands/metadata/pull.d.ts +4 -0
- package/build/commands/metadata/pull.js +13 -8
- package/build/commands/metadata/push.d.ts +4 -0
- package/build/commands/metadata/push.js +13 -8
- package/build/commands/open.d.ts +3 -0
- package/build/commands/open.js +11 -9
- package/build/commands/project/info.d.ts +3 -0
- package/build/commands/project/info.js +9 -6
- package/build/commands/project/init.d.ts +12 -0
- package/build/commands/project/init.js +155 -8
- package/build/commands/secret/create.d.ts +6 -0
- package/build/commands/secret/create.js +88 -30
- package/build/commands/secret/delete.d.ts +4 -0
- package/build/commands/secret/delete.js +28 -19
- package/build/commands/secret/list.d.ts +3 -0
- package/build/commands/secret/list.js +19 -13
- package/build/commands/submit.d.ts +5 -0
- package/build/commands/submit.js +16 -7
- package/build/commands/update/configure.d.ts +3 -0
- package/build/commands/update/configure.js +22 -16
- package/build/commands/update/delete.d.ts +1 -0
- package/build/commands/update/delete.js +4 -7
- package/build/commands/update/index.d.ts +8 -12
- package/build/commands/update/index.js +90 -166
- package/build/commands/update/list.d.ts +8 -2
- package/build/commands/update/list.js +51 -81
- package/build/commands/update/view.d.ts +0 -4
- package/build/commands/update/view.js +14 -51
- package/build/commands/webhook/create.d.ts +4 -0
- package/build/commands/webhook/create.js +10 -5
- package/build/commands/webhook/delete.d.ts +6 -0
- package/build/commands/webhook/delete.js +26 -14
- package/build/commands/webhook/list.d.ts +3 -0
- package/build/commands/webhook/list.js +13 -9
- package/build/commands/webhook/update.d.ts +1 -0
- package/build/commands/webhook/update.js +3 -1
- package/build/credentials/android/actions/BuildCredentialsUtils.js +2 -6
- package/build/credentials/android/actions/CreateFcm.d.ts +2 -3
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/actions/CreateKeystore.d.ts +2 -3
- package/build/credentials/android/actions/CreateKeystore.js +1 -2
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +2 -3
- package/build/credentials/android/api/GraphqlClient.d.ts +6 -7
- package/build/credentials/context.d.ts +8 -4
- package/build/credentials/context.js +8 -23
- package/build/credentials/ios/IosCredentialsProvider.js +11 -6
- package/build/credentials/ios/actions/AppleTeamFormatting.d.ts +2 -0
- package/build/credentials/ios/actions/AppleTeamFormatting.js +7 -0
- package/build/credentials/ios/actions/AppleTeamUtils.d.ts +1 -2
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -5
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +3 -4
- package/build/credentials/ios/actions/AscApiKeyUtils.js +2 -2
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/AssignPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/BuildCredentialsUtils.d.ts +3 -3
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +8 -12
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +2 -3
- package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +2 -2
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/CreatePushKey.d.ts +2 -3
- package/build/credentials/ios/actions/DeviceUtils.d.ts +0 -1
- package/build/credentials/ios/actions/DeviceUtils.js +3 -19
- package/build/credentials/ios/actions/DistributionCertificateUtils.d.ts +3 -4
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +2 -2
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.d.ts +2 -3
- package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +2 -3
- package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +3 -4
- package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/RemovePushKey.d.ts +2 -3
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +1 -1
- package/build/credentials/ios/api/GraphqlClient.d.ts +9 -15
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +2 -3
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +3 -1
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +3 -3
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +20 -6
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.d.ts +2 -2
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +8 -7
- package/build/credentials/ios/api/graphql/types/AppLookupParams.d.ts +7 -0
- package/build/credentials/ios/api/graphql/types/AppLookupParams.js +2 -0
- package/build/credentials/ios/types.d.ts +2 -3
- package/build/credentials/ios/utils/printCredentials.d.ts +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.js +1 -1
- package/build/credentials/manager/HelperActions.d.ts +4 -1
- package/build/credentials/manager/ManageAndroid.js +4 -14
- package/build/credentials/manager/ManageIos.js +12 -15
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +1 -1
- package/build/credentials/manager/SelectBuildProfileFromEasJson.js +3 -3
- package/build/credentials/manager/SelectPlatform.d.ts +5 -1
- package/build/credentials/manager/SelectPlatform.js +5 -3
- package/build/devices/actions/create/action.d.ts +2 -3
- package/build/devices/context.d.ts +3 -5
- package/build/devices/context.js +2 -11
- package/build/devices/manager.d.ts +4 -5
- package/build/devices/manager.js +9 -16
- package/build/devices/queries.d.ts +21 -0
- package/build/devices/queries.js +121 -0
- package/build/devices/utils/errors.d.ts +3 -0
- package/build/devices/utils/errors.js +9 -0
- package/build/devices/utils/formatDevice.d.ts +3 -3
- package/build/devices/utils/formatDevice.js +8 -3
- package/build/graphql/generated.d.ts +1101 -191
- package/build/graphql/generated.js +13 -2
- package/build/graphql/mutations/EnvironmentSecretMutation.d.ts +3 -1
- package/build/graphql/queries/AppQuery.d.ts +1 -0
- package/build/graphql/queries/AppQuery.js +19 -0
- package/build/graphql/queries/BranchQuery.d.ts +5 -6
- package/build/graphql/queries/BranchQuery.js +44 -3
- package/build/graphql/queries/BuildQuery.d.ts +2 -20
- package/build/graphql/queries/BuildQuery.js +2 -2
- package/build/graphql/queries/ChannelQuery.d.ts +5 -2
- package/build/graphql/queries/ChannelQuery.js +45 -19
- package/build/graphql/queries/EnvironmentSecretsQuery.d.ts +5 -3
- package/build/graphql/queries/EnvironmentSecretsQuery.js +14 -28
- package/build/graphql/queries/UpdateQuery.d.ts +4 -6
- package/build/graphql/queries/UpdateQuery.js +59 -50
- package/build/graphql/queries/UserQuery.js +8 -1
- package/build/graphql/types/Account.d.ts +1 -0
- package/build/graphql/types/Account.js +17 -0
- package/build/graphql/types/App.js +7 -0
- package/build/graphql/types/EnvironmentSecret.d.ts +7 -0
- package/build/graphql/types/EnvironmentSecret.js +16 -1
- package/build/graphql/types/Update.d.ts +1 -0
- package/build/graphql/types/Update.js +30 -0
- package/build/graphql/types/UpdateBranch.js +4 -15
- package/build/metadata/context.d.ts +1 -1
- package/build/metadata/context.js +7 -9
- package/build/project/android/applicationId.d.ts +2 -1
- package/build/project/android/applicationId.js +7 -7
- package/build/project/android/versions.js +1 -1
- package/build/project/applicationIdentifier.d.ts +2 -1
- package/build/project/applicationIdentifier.js +2 -2
- package/build/project/expoConfig.d.ts +3 -3
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.d.ts +22 -0
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +93 -0
- package/build/project/ios/bundleIdentifier.d.ts +2 -1
- package/build/project/ios/bundleIdentifier.js +7 -7
- package/build/project/ios/scheme.d.ts +1 -1
- package/build/project/ios/target.d.ts +17 -2
- package/build/project/ios/target.js +51 -4
- package/build/project/projectUtils.d.ts +4 -31
- package/build/project/projectUtils.js +13 -123
- package/build/project/remoteVersionSource.d.ts +2 -2
- package/build/project/remoteVersionSource.js +8 -7
- package/build/submit/android/ServiceAccountSource.js +1 -2
- package/build/submit/context.d.ts +3 -1
- package/build/submit/context.js +12 -14
- package/build/submit/ios/CredentialsServiceSource.js +1 -2
- package/build/submit/utils/builds.js +3 -1
- package/build/update/android/UpdatesModule.d.ts +1 -1
- package/build/update/android/UpdatesModule.js +2 -3
- package/build/update/ios/UpdatesModule.d.ts +1 -1
- package/build/update/ios/UpdatesModule.js +2 -3
- package/build/update/queries.d.ts +16 -1
- package/build/update/queries.js +96 -30
- package/build/update/utils.d.ts +21 -8
- package/build/update/utils.js +75 -14
- package/build/user/actions.d.ts +2 -8
- package/build/user/actions.js +4 -63
- package/build/utils/profiles.d.ts +3 -3
- package/build/utils/profiles.js +6 -5
- package/build/vcs/clients/git.d.ts +1 -1
- package/build/vcs/clients/git.js +1 -1
- package/build/vcs/vcs.d.ts +1 -1
- package/build/webhooks/input.d.ts +2 -1
- package/build/webhooks/input.js +10 -1
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
- package/build/project/ensureProjectExists.d.ts +0 -21
- package/build/project/ensureProjectExists.js +0 -88
- package/build/user/Account.d.ts +0 -3
- package/build/user/Account.js +0 -7
package/README.md
CHANGED
|
@@ -125,7 +125,7 @@ ALIASES
|
|
|
125
125
|
$ eas login
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
128
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
129
129
|
|
|
130
130
|
## `eas account:logout`
|
|
131
131
|
|
|
@@ -142,7 +142,7 @@ ALIASES
|
|
|
142
142
|
$ eas logout
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
145
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
146
146
|
|
|
147
147
|
## `eas account:view`
|
|
148
148
|
|
|
@@ -159,7 +159,7 @@ ALIASES
|
|
|
159
159
|
$ eas whoami
|
|
160
160
|
```
|
|
161
161
|
|
|
162
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
162
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
163
163
|
|
|
164
164
|
## `eas analytics [STATUS]`
|
|
165
165
|
|
|
@@ -173,7 +173,7 @@ DESCRIPTION
|
|
|
173
173
|
display or change analytics settings
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
176
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
177
177
|
|
|
178
178
|
## `eas autocomplete [SHELL]`
|
|
179
179
|
|
|
@@ -210,19 +210,20 @@ create a branch
|
|
|
210
210
|
|
|
211
211
|
```
|
|
212
212
|
USAGE
|
|
213
|
-
$ eas branch:create [NAME] [--json]
|
|
213
|
+
$ eas branch:create [NAME] [--json --non-interactive]
|
|
214
214
|
|
|
215
215
|
ARGUMENTS
|
|
216
216
|
NAME Name of the branch to create
|
|
217
217
|
|
|
218
218
|
FLAGS
|
|
219
|
-
--json
|
|
219
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
220
|
+
--non-interactive Run the command in non-interactive mode.
|
|
220
221
|
|
|
221
222
|
DESCRIPTION
|
|
222
223
|
create a branch
|
|
223
224
|
```
|
|
224
225
|
|
|
225
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
226
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
226
227
|
|
|
227
228
|
## `eas branch:delete [NAME]`
|
|
228
229
|
|
|
@@ -230,19 +231,20 @@ delete a branch
|
|
|
230
231
|
|
|
231
232
|
```
|
|
232
233
|
USAGE
|
|
233
|
-
$ eas branch:delete [NAME] [--json]
|
|
234
|
+
$ eas branch:delete [NAME] [--json --non-interactive]
|
|
234
235
|
|
|
235
236
|
ARGUMENTS
|
|
236
237
|
NAME Name of the branch to delete
|
|
237
238
|
|
|
238
239
|
FLAGS
|
|
239
|
-
--json
|
|
240
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
241
|
+
--non-interactive Run the command in non-interactive mode.
|
|
240
242
|
|
|
241
243
|
DESCRIPTION
|
|
242
244
|
delete a branch
|
|
243
245
|
```
|
|
244
246
|
|
|
245
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
247
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
246
248
|
|
|
247
249
|
## `eas branch:list`
|
|
248
250
|
|
|
@@ -250,12 +252,11 @@ list all branches
|
|
|
250
252
|
|
|
251
253
|
```
|
|
252
254
|
USAGE
|
|
253
|
-
$ eas branch:list [--offset <value>] [--limit <value>] [--json
|
|
255
|
+
$ eas branch:list [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
254
256
|
|
|
255
257
|
FLAGS
|
|
256
258
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
257
|
-
--limit=<value> The number of
|
|
258
|
-
lower value may help increase command speed.
|
|
259
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
259
260
|
--non-interactive Run the command in non-interactive mode.
|
|
260
261
|
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
261
262
|
|
|
@@ -263,7 +264,7 @@ DESCRIPTION
|
|
|
263
264
|
list all branches
|
|
264
265
|
```
|
|
265
266
|
|
|
266
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
267
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
267
268
|
|
|
268
269
|
## `eas branch:rename`
|
|
269
270
|
|
|
@@ -271,18 +272,19 @@ rename a branch
|
|
|
271
272
|
|
|
272
273
|
```
|
|
273
274
|
USAGE
|
|
274
|
-
$ eas branch:rename [--from <value>] [--to <value>] [--json]
|
|
275
|
+
$ eas branch:rename [--from <value>] [--to <value>] [--json --non-interactive]
|
|
275
276
|
|
|
276
277
|
FLAGS
|
|
277
|
-
--from=<value>
|
|
278
|
-
--json
|
|
279
|
-
--
|
|
278
|
+
--from=<value> current name of the branch.
|
|
279
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
280
|
+
--non-interactive Run the command in non-interactive mode.
|
|
281
|
+
--to=<value> new name of the branch.
|
|
280
282
|
|
|
281
283
|
DESCRIPTION
|
|
282
284
|
rename a branch
|
|
283
285
|
```
|
|
284
286
|
|
|
285
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
287
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
286
288
|
|
|
287
289
|
## `eas branch:view [NAME]`
|
|
288
290
|
|
|
@@ -290,15 +292,14 @@ view a branch
|
|
|
290
292
|
|
|
291
293
|
```
|
|
292
294
|
USAGE
|
|
293
|
-
$ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json
|
|
295
|
+
$ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
294
296
|
|
|
295
297
|
ARGUMENTS
|
|
296
298
|
NAME Name of the branch to view
|
|
297
299
|
|
|
298
300
|
FLAGS
|
|
299
301
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
300
|
-
--limit=<value> The number of
|
|
301
|
-
lower value may help increase command speed.
|
|
302
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
302
303
|
--non-interactive Run the command in non-interactive mode.
|
|
303
304
|
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
304
305
|
|
|
@@ -306,7 +307,7 @@ DESCRIPTION
|
|
|
306
307
|
view a branch
|
|
307
308
|
```
|
|
308
309
|
|
|
309
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
310
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
310
311
|
|
|
311
312
|
## `eas build`
|
|
312
313
|
|
|
@@ -314,29 +315,29 @@ start a build
|
|
|
314
315
|
|
|
315
316
|
```
|
|
316
317
|
USAGE
|
|
317
|
-
$ eas build [-p android|ios|all] [--
|
|
318
|
-
|
|
318
|
+
$ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
|
|
319
|
+
[--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--json --non-interactive]
|
|
319
320
|
|
|
320
321
|
FLAGS
|
|
322
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
323
|
+
in eas.json.
|
|
321
324
|
-m, --message=<value> A short message describing the build
|
|
322
325
|
-p, --platform=(android|ios|all)
|
|
323
326
|
--auto-submit Submit on build complete using the submit profile with the same name as the
|
|
324
327
|
build profile
|
|
325
328
|
--auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
|
|
326
329
|
--clear-cache Clear cache before the build
|
|
327
|
-
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
330
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
328
331
|
--local Run build locally [experimental]
|
|
329
|
-
--non-interactive Run command in non-interactive mode
|
|
332
|
+
--non-interactive Run the command in non-interactive mode.
|
|
330
333
|
--output=<value> Output path for local build
|
|
331
|
-
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
332
|
-
in eas.json.
|
|
333
334
|
--[no-]wait Wait for build(s) to complete
|
|
334
335
|
|
|
335
336
|
DESCRIPTION
|
|
336
337
|
start a build
|
|
337
338
|
```
|
|
338
339
|
|
|
339
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
340
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
340
341
|
|
|
341
342
|
## `eas build:cancel [BUILD_ID]`
|
|
342
343
|
|
|
@@ -344,13 +345,16 @@ cancel a build
|
|
|
344
345
|
|
|
345
346
|
```
|
|
346
347
|
USAGE
|
|
347
|
-
$ eas build:cancel [BUILD_ID]
|
|
348
|
+
$ eas build:cancel [BUILD_ID] [--non-interactive]
|
|
349
|
+
|
|
350
|
+
FLAGS
|
|
351
|
+
--non-interactive Run the command in non-interactive mode.
|
|
348
352
|
|
|
349
353
|
DESCRIPTION
|
|
350
354
|
cancel a build
|
|
351
355
|
```
|
|
352
356
|
|
|
353
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
357
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
354
358
|
|
|
355
359
|
## `eas build:configure`
|
|
356
360
|
|
|
@@ -367,7 +371,7 @@ DESCRIPTION
|
|
|
367
371
|
configure the project to support EAS Build
|
|
368
372
|
```
|
|
369
373
|
|
|
370
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
374
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
371
375
|
|
|
372
376
|
## `eas build:inspect`
|
|
373
377
|
|
|
@@ -375,9 +379,12 @@ inspect the state of the project at specific build stages, useful for troublesho
|
|
|
375
379
|
|
|
376
380
|
```
|
|
377
381
|
USAGE
|
|
378
|
-
$ eas build:inspect -p android|ios -s archive|pre-build|post-build -o <value> [
|
|
382
|
+
$ eas build:inspect -p android|ios -s archive|pre-build|post-build -o <value> [-e <value>] [--force] [-v]
|
|
379
383
|
|
|
380
384
|
FLAGS
|
|
385
|
+
-e, --profile=PROFILE_NAME
|
|
386
|
+
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
387
|
+
|
|
381
388
|
-o, --output=OUTPUT_DIRECTORY
|
|
382
389
|
(required) Output directory.
|
|
383
390
|
|
|
@@ -395,14 +402,11 @@ FLAGS
|
|
|
395
402
|
--force
|
|
396
403
|
Delete OUTPUT_DIRECTORY if it already exists.
|
|
397
404
|
|
|
398
|
-
--profile=PROFILE_NAME
|
|
399
|
-
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
400
|
-
|
|
401
405
|
DESCRIPTION
|
|
402
406
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
403
407
|
```
|
|
404
408
|
|
|
405
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
409
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
406
410
|
|
|
407
411
|
## `eas build:list`
|
|
408
412
|
|
|
@@ -410,10 +414,10 @@ list all builds for your project
|
|
|
410
414
|
|
|
411
415
|
```
|
|
412
416
|
USAGE
|
|
413
|
-
$ eas build:list [--platform all|android|ios] [--
|
|
414
|
-
|
|
415
|
-
[--
|
|
416
|
-
[--
|
|
417
|
+
$ eas build:list [--platform all|android|ios] [--status new|in-queue|in-progress|errored|finished|canceled]
|
|
418
|
+
[--distribution store|internal|simulator] [--channel <value>] [--appVersion <value>] [--appBuildVersion <value>]
|
|
419
|
+
[--sdkVersion <value>] [--runtimeVersion <value>] [--appIdentifier <value>] [--buildProfile <value>]
|
|
420
|
+
[--gitCommitHash <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
417
421
|
|
|
418
422
|
FLAGS
|
|
419
423
|
--appBuildVersion=<value>
|
|
@@ -424,8 +428,12 @@ FLAGS
|
|
|
424
428
|
--distribution=(store|internal|simulator)
|
|
425
429
|
--gitCommitHash=<value>
|
|
426
430
|
--json Enable JSON output, non-JSON messages will be printed
|
|
427
|
-
to stderr
|
|
428
|
-
--limit=<value>
|
|
431
|
+
to stderr.
|
|
432
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10
|
|
433
|
+
and is capped at 50.
|
|
434
|
+
--non-interactive Run the command in non-interactive mode.
|
|
435
|
+
--offset=<value> Start queries from specified index. Use for paginating
|
|
436
|
+
results. Defaults to 0.
|
|
429
437
|
--platform=(all|android|ios)
|
|
430
438
|
--runtimeVersion=<value>
|
|
431
439
|
--sdkVersion=<value>
|
|
@@ -435,7 +443,7 @@ DESCRIPTION
|
|
|
435
443
|
list all builds for your project
|
|
436
444
|
```
|
|
437
445
|
|
|
438
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
446
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
439
447
|
|
|
440
448
|
## `eas build:submit`
|
|
441
449
|
|
|
@@ -443,17 +451,17 @@ submit app binary to App Store and/or Play Store
|
|
|
443
451
|
|
|
444
452
|
```
|
|
445
453
|
USAGE
|
|
446
|
-
$ eas build:submit [-p android|ios|all] [
|
|
447
|
-
|
|
454
|
+
$ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
455
|
+
[--verbose] [--wait] [--non-interactive]
|
|
448
456
|
|
|
449
457
|
FLAGS
|
|
458
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
459
|
+
eas.json.
|
|
450
460
|
-p, --platform=(android|ios|all)
|
|
451
461
|
--id=<value> ID of the build to submit
|
|
452
462
|
--latest Submit the latest build for specified platform
|
|
453
463
|
--non-interactive Run command in non-interactive mode
|
|
454
464
|
--path=<value> Path to the .apk/.aab/.ipa file
|
|
455
|
-
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
456
|
-
eas.json.
|
|
457
465
|
--url=<value> App archive url
|
|
458
466
|
--verbose Always print logs from Submission Service
|
|
459
467
|
--[no-]wait Wait for submission to complete
|
|
@@ -471,18 +479,18 @@ Update version of an app.
|
|
|
471
479
|
|
|
472
480
|
```
|
|
473
481
|
USAGE
|
|
474
|
-
$ eas build:version:set [-p android|ios] [
|
|
482
|
+
$ eas build:version:set [-p android|ios] [-e <value>]
|
|
475
483
|
|
|
476
484
|
FLAGS
|
|
477
|
-
-
|
|
478
|
-
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
485
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
479
486
|
eas.json.
|
|
487
|
+
-p, --platform=(android|ios)
|
|
480
488
|
|
|
481
489
|
DESCRIPTION
|
|
482
490
|
Update version of an app.
|
|
483
491
|
```
|
|
484
492
|
|
|
485
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
493
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
486
494
|
|
|
487
495
|
## `eas build:version:sync`
|
|
488
496
|
|
|
@@ -490,18 +498,18 @@ Update a version in native code with a value stored on EAS servers
|
|
|
490
498
|
|
|
491
499
|
```
|
|
492
500
|
USAGE
|
|
493
|
-
$ eas build:version:sync [-p android|ios|all] [
|
|
501
|
+
$ eas build:version:sync [-p android|ios|all] [-e <value>]
|
|
494
502
|
|
|
495
503
|
FLAGS
|
|
496
|
-
-
|
|
497
|
-
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
504
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
498
505
|
eas.json.
|
|
506
|
+
-p, --platform=(android|ios|all)
|
|
499
507
|
|
|
500
508
|
DESCRIPTION
|
|
501
509
|
Update a version in native code with a value stored on EAS servers
|
|
502
510
|
```
|
|
503
511
|
|
|
504
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
512
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
505
513
|
|
|
506
514
|
## `eas build:view [BUILD_ID]`
|
|
507
515
|
|
|
@@ -512,13 +520,13 @@ USAGE
|
|
|
512
520
|
$ eas build:view [BUILD_ID] [--json]
|
|
513
521
|
|
|
514
522
|
FLAGS
|
|
515
|
-
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
523
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
516
524
|
|
|
517
525
|
DESCRIPTION
|
|
518
526
|
view a build for your project
|
|
519
527
|
```
|
|
520
528
|
|
|
521
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
529
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
522
530
|
|
|
523
531
|
## `eas channel:create [NAME]`
|
|
524
532
|
|
|
@@ -526,19 +534,20 @@ create a channel
|
|
|
526
534
|
|
|
527
535
|
```
|
|
528
536
|
USAGE
|
|
529
|
-
$ eas channel:create [NAME] [--json]
|
|
537
|
+
$ eas channel:create [NAME] [--json --non-interactive]
|
|
530
538
|
|
|
531
539
|
ARGUMENTS
|
|
532
540
|
NAME Name of the channel to create
|
|
533
541
|
|
|
534
542
|
FLAGS
|
|
535
|
-
--json
|
|
543
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
544
|
+
--non-interactive Run the command in non-interactive mode.
|
|
536
545
|
|
|
537
546
|
DESCRIPTION
|
|
538
547
|
create a channel
|
|
539
548
|
```
|
|
540
549
|
|
|
541
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
550
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
542
551
|
|
|
543
552
|
## `eas channel:edit [NAME]`
|
|
544
553
|
|
|
@@ -546,20 +555,21 @@ point a channel at a new branch
|
|
|
546
555
|
|
|
547
556
|
```
|
|
548
557
|
USAGE
|
|
549
|
-
$ eas channel:edit [NAME] [--branch <value>] [--json]
|
|
558
|
+
$ eas channel:edit [NAME] [--branch <value>] [--json --non-interactive]
|
|
550
559
|
|
|
551
560
|
ARGUMENTS
|
|
552
561
|
NAME Name of the channel to edit
|
|
553
562
|
|
|
554
563
|
FLAGS
|
|
555
|
-
--branch=<value>
|
|
556
|
-
--json
|
|
564
|
+
--branch=<value> Name of the branch to point to
|
|
565
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
566
|
+
--non-interactive Run the command in non-interactive mode.
|
|
557
567
|
|
|
558
568
|
DESCRIPTION
|
|
559
569
|
point a channel at a new branch
|
|
560
570
|
```
|
|
561
571
|
|
|
562
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
572
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
563
573
|
|
|
564
574
|
## `eas channel:list`
|
|
565
575
|
|
|
@@ -567,16 +577,19 @@ list all channels
|
|
|
567
577
|
|
|
568
578
|
```
|
|
569
579
|
USAGE
|
|
570
|
-
$ eas channel:list [--json]
|
|
580
|
+
$ eas channel:list [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
571
581
|
|
|
572
582
|
FLAGS
|
|
573
|
-
--json
|
|
583
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
584
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 25.
|
|
585
|
+
--non-interactive Run the command in non-interactive mode.
|
|
586
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
574
587
|
|
|
575
588
|
DESCRIPTION
|
|
576
589
|
list all channels
|
|
577
590
|
```
|
|
578
591
|
|
|
579
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
592
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
580
593
|
|
|
581
594
|
## `eas channel:view [NAME]`
|
|
582
595
|
|
|
@@ -584,19 +597,22 @@ view a channel
|
|
|
584
597
|
|
|
585
598
|
```
|
|
586
599
|
USAGE
|
|
587
|
-
$ eas channel:view [NAME] [--json]
|
|
600
|
+
$ eas channel:view [NAME] [--json --non-interactive] [--offset <value>] [--limit <value>]
|
|
588
601
|
|
|
589
602
|
ARGUMENTS
|
|
590
603
|
NAME Name of the channel to view
|
|
591
604
|
|
|
592
605
|
FLAGS
|
|
593
|
-
--json
|
|
606
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
607
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
608
|
+
--non-interactive Run the command in non-interactive mode.
|
|
609
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
594
610
|
|
|
595
611
|
DESCRIPTION
|
|
596
612
|
view a channel
|
|
597
613
|
```
|
|
598
614
|
|
|
599
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
615
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
600
616
|
|
|
601
617
|
## `eas config`
|
|
602
618
|
|
|
@@ -604,17 +620,18 @@ display project configuration (app.json + eas.json)
|
|
|
604
620
|
|
|
605
621
|
```
|
|
606
622
|
USAGE
|
|
607
|
-
$ eas config [-p android|ios] [
|
|
623
|
+
$ eas config [-p android|ios] [-e <value>]
|
|
608
624
|
|
|
609
625
|
FLAGS
|
|
626
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
|
|
627
|
+
eas.json.
|
|
610
628
|
-p, --platform=(android|ios)
|
|
611
|
-
--profile=<value>
|
|
612
629
|
|
|
613
630
|
DESCRIPTION
|
|
614
631
|
display project configuration (app.json + eas.json)
|
|
615
632
|
```
|
|
616
633
|
|
|
617
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
634
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/config.ts)_
|
|
618
635
|
|
|
619
636
|
## `eas credentials`
|
|
620
637
|
|
|
@@ -631,7 +648,7 @@ DESCRIPTION
|
|
|
631
648
|
manage credentials
|
|
632
649
|
```
|
|
633
650
|
|
|
634
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
651
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/credentials.ts)_
|
|
635
652
|
|
|
636
653
|
## `eas device:create`
|
|
637
654
|
|
|
@@ -645,7 +662,7 @@ DESCRIPTION
|
|
|
645
662
|
register new Apple Devices to use for internal distribution
|
|
646
663
|
```
|
|
647
664
|
|
|
648
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
665
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
649
666
|
|
|
650
667
|
## `eas device:delete`
|
|
651
668
|
|
|
@@ -653,17 +670,19 @@ remove a registered device from your account
|
|
|
653
670
|
|
|
654
671
|
```
|
|
655
672
|
USAGE
|
|
656
|
-
$ eas device:delete [--apple-team-id <value>] [--udid <value>]
|
|
673
|
+
$ eas device:delete [--apple-team-id <value>] [--udid <value>] [--json --non-interactive]
|
|
657
674
|
|
|
658
675
|
FLAGS
|
|
659
|
-
--apple-team-id=<value>
|
|
660
|
-
--
|
|
676
|
+
--apple-team-id=<value> The Apple team ID on which to find the device
|
|
677
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
678
|
+
--non-interactive Run the command in non-interactive mode.
|
|
679
|
+
--udid=<value> The Apple device ID to disable
|
|
661
680
|
|
|
662
681
|
DESCRIPTION
|
|
663
682
|
remove a registered device from your account
|
|
664
683
|
```
|
|
665
684
|
|
|
666
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
685
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
667
686
|
|
|
668
687
|
## `eas device:list`
|
|
669
688
|
|
|
@@ -671,16 +690,20 @@ list all registered devices for your account
|
|
|
671
690
|
|
|
672
691
|
```
|
|
673
692
|
USAGE
|
|
674
|
-
$ eas device:list [--apple-team-id <value>]
|
|
693
|
+
$ eas device:list [--apple-team-id <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
675
694
|
|
|
676
695
|
FLAGS
|
|
677
696
|
--apple-team-id=<value>
|
|
697
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
698
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
699
|
+
--non-interactive Run the command in non-interactive mode.
|
|
700
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
678
701
|
|
|
679
702
|
DESCRIPTION
|
|
680
703
|
list all registered devices for your account
|
|
681
704
|
```
|
|
682
705
|
|
|
683
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
706
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
684
707
|
|
|
685
708
|
## `eas device:view [UDID]`
|
|
686
709
|
|
|
@@ -694,7 +717,7 @@ DESCRIPTION
|
|
|
694
717
|
view a device for your project
|
|
695
718
|
```
|
|
696
719
|
|
|
697
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
720
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
698
721
|
|
|
699
722
|
## `eas diagnostics`
|
|
700
723
|
|
|
@@ -708,7 +731,7 @@ DESCRIPTION
|
|
|
708
731
|
display environment info
|
|
709
732
|
```
|
|
710
733
|
|
|
711
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
734
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
712
735
|
|
|
713
736
|
## `eas help [COMMAND]`
|
|
714
737
|
|
|
@@ -736,7 +759,12 @@ create or link an EAS project
|
|
|
736
759
|
|
|
737
760
|
```
|
|
738
761
|
USAGE
|
|
739
|
-
$ eas init
|
|
762
|
+
$ eas init [--force --id <value>] [--non-interactive ]
|
|
763
|
+
|
|
764
|
+
FLAGS
|
|
765
|
+
--force Whether to overwrite any existing project ID
|
|
766
|
+
--id=<value> ID of the EAS project to link
|
|
767
|
+
--non-interactive Run the command in non-interactive mode.
|
|
740
768
|
|
|
741
769
|
DESCRIPTION
|
|
742
770
|
create or link an EAS project
|
|
@@ -781,16 +809,16 @@ generate the local store configuration from the app stores
|
|
|
781
809
|
|
|
782
810
|
```
|
|
783
811
|
USAGE
|
|
784
|
-
$ eas metadata:pull [
|
|
812
|
+
$ eas metadata:pull [-e <value>]
|
|
785
813
|
|
|
786
814
|
FLAGS
|
|
787
|
-
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
815
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
788
816
|
|
|
789
817
|
DESCRIPTION
|
|
790
818
|
generate the local store configuration from the app stores
|
|
791
819
|
```
|
|
792
820
|
|
|
793
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
821
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
794
822
|
|
|
795
823
|
## `eas metadata:push`
|
|
796
824
|
|
|
@@ -798,16 +826,16 @@ sync the local store configuration to the app stores
|
|
|
798
826
|
|
|
799
827
|
```
|
|
800
828
|
USAGE
|
|
801
|
-
$ eas metadata:push [
|
|
829
|
+
$ eas metadata:push [-e <value>]
|
|
802
830
|
|
|
803
831
|
FLAGS
|
|
804
|
-
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
832
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
805
833
|
|
|
806
834
|
DESCRIPTION
|
|
807
835
|
sync the local store configuration to the app stores
|
|
808
836
|
```
|
|
809
837
|
|
|
810
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
838
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
811
839
|
|
|
812
840
|
## `eas open`
|
|
813
841
|
|
|
@@ -821,7 +849,7 @@ DESCRIPTION
|
|
|
821
849
|
open the project page in a web browser
|
|
822
850
|
```
|
|
823
851
|
|
|
824
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
852
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/open.ts)_
|
|
825
853
|
|
|
826
854
|
## `eas project:info`
|
|
827
855
|
|
|
@@ -835,7 +863,7 @@ DESCRIPTION
|
|
|
835
863
|
information about the current project
|
|
836
864
|
```
|
|
837
865
|
|
|
838
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
866
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
839
867
|
|
|
840
868
|
## `eas project:init`
|
|
841
869
|
|
|
@@ -843,7 +871,12 @@ create or link an EAS project
|
|
|
843
871
|
|
|
844
872
|
```
|
|
845
873
|
USAGE
|
|
846
|
-
$ eas project:init
|
|
874
|
+
$ eas project:init [--force --id <value>] [--non-interactive ]
|
|
875
|
+
|
|
876
|
+
FLAGS
|
|
877
|
+
--force Whether to overwrite any existing project ID
|
|
878
|
+
--id=<value> ID of the EAS project to link
|
|
879
|
+
--non-interactive Run the command in non-interactive mode.
|
|
847
880
|
|
|
848
881
|
DESCRIPTION
|
|
849
882
|
create or link an EAS project
|
|
@@ -852,7 +885,7 @@ ALIASES
|
|
|
852
885
|
$ eas init
|
|
853
886
|
```
|
|
854
887
|
|
|
855
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
888
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
856
889
|
|
|
857
890
|
## `eas secret:create`
|
|
858
891
|
|
|
@@ -860,19 +893,22 @@ create an environment secret on the current project or owner account
|
|
|
860
893
|
|
|
861
894
|
```
|
|
862
895
|
USAGE
|
|
863
|
-
$ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
|
|
896
|
+
$ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
|
|
897
|
+
[--non-interactive]
|
|
864
898
|
|
|
865
899
|
FLAGS
|
|
866
900
|
--force Delete and recreate existing secrets
|
|
867
901
|
--name=<value> Name of the secret
|
|
902
|
+
--non-interactive Run the command in non-interactive mode.
|
|
868
903
|
--scope=(account|project) [default: project] Scope for the secret
|
|
869
|
-
--
|
|
904
|
+
--type=(string|file) The type of secret
|
|
905
|
+
--value=<value> Text value or path to a file to store in the secret
|
|
870
906
|
|
|
871
907
|
DESCRIPTION
|
|
872
908
|
create an environment secret on the current project or owner account
|
|
873
909
|
```
|
|
874
910
|
|
|
875
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
911
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/secret/create.ts)_
|
|
876
912
|
|
|
877
913
|
## `eas secret:delete`
|
|
878
914
|
|
|
@@ -880,16 +916,17 @@ delete an environment secret by ID
|
|
|
880
916
|
|
|
881
917
|
```
|
|
882
918
|
USAGE
|
|
883
|
-
$ eas secret:delete [--id <value>]
|
|
919
|
+
$ eas secret:delete [--id <value>] [--non-interactive]
|
|
884
920
|
|
|
885
921
|
FLAGS
|
|
886
|
-
--id=<value>
|
|
922
|
+
--id=<value> ID of the secret to delete
|
|
923
|
+
--non-interactive Run the command in non-interactive mode.
|
|
887
924
|
|
|
888
925
|
DESCRIPTION
|
|
889
926
|
delete an environment secret by ID
|
|
890
927
|
```
|
|
891
928
|
|
|
892
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
929
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
893
930
|
|
|
894
931
|
## `eas secret:list`
|
|
895
932
|
|
|
@@ -903,7 +940,7 @@ DESCRIPTION
|
|
|
903
940
|
list environment secrets available for your current app
|
|
904
941
|
```
|
|
905
942
|
|
|
906
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
943
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/secret/list.ts)_
|
|
907
944
|
|
|
908
945
|
## `eas submit`
|
|
909
946
|
|
|
@@ -911,17 +948,17 @@ submit app binary to App Store and/or Play Store
|
|
|
911
948
|
|
|
912
949
|
```
|
|
913
950
|
USAGE
|
|
914
|
-
$ eas submit [-p android|ios|all] [
|
|
915
|
-
|
|
951
|
+
$ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
952
|
+
[--verbose] [--wait] [--non-interactive]
|
|
916
953
|
|
|
917
954
|
FLAGS
|
|
955
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
956
|
+
eas.json.
|
|
918
957
|
-p, --platform=(android|ios|all)
|
|
919
958
|
--id=<value> ID of the build to submit
|
|
920
959
|
--latest Submit the latest build for specified platform
|
|
921
960
|
--non-interactive Run command in non-interactive mode
|
|
922
961
|
--path=<value> Path to the .apk/.aab/.ipa file
|
|
923
|
-
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
924
|
-
eas.json.
|
|
925
962
|
--url=<value> App archive url
|
|
926
963
|
--verbose Always print logs from Submission Service
|
|
927
964
|
--[no-]wait Wait for submission to complete
|
|
@@ -933,7 +970,7 @@ ALIASES
|
|
|
933
970
|
$ eas build:submit
|
|
934
971
|
```
|
|
935
972
|
|
|
936
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
973
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/submit.ts)_
|
|
937
974
|
|
|
938
975
|
## `eas update`
|
|
939
976
|
|
|
@@ -942,7 +979,7 @@ publish an update group
|
|
|
942
979
|
```
|
|
943
980
|
USAGE
|
|
944
981
|
$ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
|
|
945
|
-
[--group <value> | | ] [-p android|ios|all] [--
|
|
982
|
+
[--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json --non-interactive]
|
|
946
983
|
|
|
947
984
|
FLAGS
|
|
948
985
|
-p, --platform=(android|ios|all) [default: all]
|
|
@@ -950,9 +987,9 @@ FLAGS
|
|
|
950
987
|
--branch=<value> Branch to publish the update group on
|
|
951
988
|
--group=<value> Update group to republish
|
|
952
989
|
--input-dir=<value> [default: dist] Location of the bundle
|
|
953
|
-
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
990
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
954
991
|
--message=<value> A short message describing the update
|
|
955
|
-
--non-interactive Run command in non-interactive mode
|
|
992
|
+
--non-interactive Run the command in non-interactive mode.
|
|
956
993
|
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
957
994
|
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
958
995
|
certificate's directory.
|
|
@@ -963,7 +1000,7 @@ DESCRIPTION
|
|
|
963
1000
|
publish an update group
|
|
964
1001
|
```
|
|
965
1002
|
|
|
966
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1003
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
967
1004
|
|
|
968
1005
|
## `eas update:configure`
|
|
969
1006
|
|
|
@@ -980,7 +1017,7 @@ DESCRIPTION
|
|
|
980
1017
|
configure the project to support EAS Update
|
|
981
1018
|
```
|
|
982
1019
|
|
|
983
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1020
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
984
1021
|
|
|
985
1022
|
## `eas update:delete GROUPID`
|
|
986
1023
|
|
|
@@ -988,38 +1025,42 @@ delete all the updates in an update group
|
|
|
988
1025
|
|
|
989
1026
|
```
|
|
990
1027
|
USAGE
|
|
991
|
-
$ eas update:delete [GROUPID] [--json]
|
|
1028
|
+
$ eas update:delete [GROUPID] [--json --non-interactive]
|
|
992
1029
|
|
|
993
1030
|
ARGUMENTS
|
|
994
1031
|
GROUPID The ID of an update group to delete.
|
|
995
1032
|
|
|
996
1033
|
FLAGS
|
|
997
|
-
--json
|
|
1034
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1035
|
+
--non-interactive Run the command in non-interactive mode.
|
|
998
1036
|
|
|
999
1037
|
DESCRIPTION
|
|
1000
1038
|
delete all the updates in an update group
|
|
1001
1039
|
```
|
|
1002
1040
|
|
|
1003
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1041
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1004
1042
|
|
|
1005
1043
|
## `eas update:list`
|
|
1006
1044
|
|
|
1007
|
-
view the recent updates
|
|
1045
|
+
view the recent updates
|
|
1008
1046
|
|
|
1009
1047
|
```
|
|
1010
1048
|
USAGE
|
|
1011
|
-
$ eas update:list [--branch <value> | --all] [--json]
|
|
1049
|
+
$ eas update:list [--branch <value> | --all] [--offset <value>] [--limit <value>] [--json --non-interactive]
|
|
1012
1050
|
|
|
1013
1051
|
FLAGS
|
|
1014
|
-
--all
|
|
1015
|
-
--branch=<value>
|
|
1016
|
-
--json
|
|
1052
|
+
--all List updates on all branches
|
|
1053
|
+
--branch=<value> List updates only on this branch
|
|
1054
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1055
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
1056
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1057
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1017
1058
|
|
|
1018
1059
|
DESCRIPTION
|
|
1019
|
-
view the recent updates
|
|
1060
|
+
view the recent updates
|
|
1020
1061
|
```
|
|
1021
1062
|
|
|
1022
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1063
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1023
1064
|
|
|
1024
1065
|
## `eas update:view GROUPID`
|
|
1025
1066
|
|
|
@@ -1033,13 +1074,13 @@ ARGUMENTS
|
|
|
1033
1074
|
GROUPID The ID of an update group.
|
|
1034
1075
|
|
|
1035
1076
|
FLAGS
|
|
1036
|
-
--json
|
|
1077
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1037
1078
|
|
|
1038
1079
|
DESCRIPTION
|
|
1039
1080
|
update group details
|
|
1040
1081
|
```
|
|
1041
1082
|
|
|
1042
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1083
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1043
1084
|
|
|
1044
1085
|
## `eas webhook:create`
|
|
1045
1086
|
|
|
@@ -1047,10 +1088,11 @@ create a webhook
|
|
|
1047
1088
|
|
|
1048
1089
|
```
|
|
1049
1090
|
USAGE
|
|
1050
|
-
$ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
1091
|
+
$ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
|
|
1051
1092
|
|
|
1052
1093
|
FLAGS
|
|
1053
1094
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
1095
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1054
1096
|
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
1055
1097
|
'Expo-Signature' header.
|
|
1056
1098
|
--url=<value> Webhook URL
|
|
@@ -1059,7 +1101,7 @@ DESCRIPTION
|
|
|
1059
1101
|
create a webhook
|
|
1060
1102
|
```
|
|
1061
1103
|
|
|
1062
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1104
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1063
1105
|
|
|
1064
1106
|
## `eas webhook:delete [ID]`
|
|
1065
1107
|
|
|
@@ -1067,16 +1109,19 @@ delete a webhook
|
|
|
1067
1109
|
|
|
1068
1110
|
```
|
|
1069
1111
|
USAGE
|
|
1070
|
-
$ eas webhook:delete [ID]
|
|
1112
|
+
$ eas webhook:delete [ID] [--non-interactive]
|
|
1071
1113
|
|
|
1072
1114
|
ARGUMENTS
|
|
1073
1115
|
ID ID of the webhook to delete
|
|
1074
1116
|
|
|
1117
|
+
FLAGS
|
|
1118
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1119
|
+
|
|
1075
1120
|
DESCRIPTION
|
|
1076
1121
|
delete a webhook
|
|
1077
1122
|
```
|
|
1078
1123
|
|
|
1079
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1124
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1080
1125
|
|
|
1081
1126
|
## `eas webhook:list`
|
|
1082
1127
|
|
|
@@ -1093,7 +1138,7 @@ DESCRIPTION
|
|
|
1093
1138
|
list webhooks
|
|
1094
1139
|
```
|
|
1095
1140
|
|
|
1096
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1141
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1097
1142
|
|
|
1098
1143
|
## `eas webhook:update`
|
|
1099
1144
|
|
|
@@ -1101,11 +1146,12 @@ update a webhook
|
|
|
1101
1146
|
|
|
1102
1147
|
```
|
|
1103
1148
|
USAGE
|
|
1104
|
-
$ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
1149
|
+
$ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
|
|
1105
1150
|
|
|
1106
1151
|
FLAGS
|
|
1107
1152
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
1108
1153
|
--id=<value> (required) Webhook ID
|
|
1154
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1109
1155
|
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
1110
1156
|
'Expo-Signature' header.
|
|
1111
1157
|
--url=<value> Webhook URL
|
|
@@ -1114,7 +1160,7 @@ DESCRIPTION
|
|
|
1114
1160
|
update a webhook
|
|
1115
1161
|
```
|
|
1116
1162
|
|
|
1117
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1163
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1118
1164
|
|
|
1119
1165
|
## `eas webhook:view ID`
|
|
1120
1166
|
|
|
@@ -1131,7 +1177,7 @@ DESCRIPTION
|
|
|
1131
1177
|
view a webhook
|
|
1132
1178
|
```
|
|
1133
1179
|
|
|
1134
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v2.1
|
|
1180
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v2.2.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1135
1181
|
|
|
1136
1182
|
## `eas whoami`
|
|
1137
1183
|
|