eas-cli 10.2.3 → 11.0.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 +63 -65
- package/build/branch/actions/SelectBranch.d.ts +1 -1
- package/build/branch/actions/SelectBranch.js +2 -2
- package/build/branch/queries.js +3 -1
- package/build/build/android/build.js +1 -1
- package/build/build/android/version.js +1 -1
- package/build/build/build.js +21 -10
- package/build/build/context.d.ts +1 -0
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +6 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.d.ts +16 -0
- package/build/build/evaluateConfigWithEnvVarsAsync.js +44 -0
- package/build/build/ios/build.js +4 -4
- package/build/build/local.d.ts +1 -1
- package/build/build/local.js +3 -2
- package/build/build/queries.js +3 -1
- package/build/build/runBuildAndSubmit.d.ts +2 -0
- package/build/build/runBuildAndSubmit.js +14 -7
- package/build/build/utils/printBuildInfo.js +6 -2
- package/build/build/validate.js +2 -2
- package/build/channel/actions/SelectChannel.d.ts +1 -1
- package/build/channel/actions/SelectChannel.js +2 -2
- package/build/channel/queries.js +6 -2
- package/build/commandUtils/EasCommand.js +2 -2
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -1
- package/build/commandUtils/flags.d.ts +16 -0
- package/build/commandUtils/flags.js +61 -1
- package/build/commandUtils/gating/FeatureGating.js +6 -2
- package/build/commands/analytics.js +1 -1
- package/build/commands/build/index.d.ts +4 -1
- package/build/commands/build/index.js +3 -0
- package/build/commands/build/resign.d.ts +4 -1
- package/build/commands/build/resign.js +12 -3
- package/build/commands/build/version/get.d.ts +1 -0
- package/build/commands/build/version/get.js +9 -2
- package/build/commands/build/version/set.d.ts +1 -0
- package/build/commands/build/version/set.js +11 -1
- package/build/commands/build/version/sync.d.ts +1 -0
- package/build/commands/build/version/sync.js +13 -5
- package/build/commands/config.d.ts +2 -0
- package/build/commands/config.js +10 -3
- package/build/commands/device/delete.js +1 -1
- package/build/commands/device/rename.js +1 -1
- package/build/commands/env/create.d.ts +23 -0
- package/build/commands/env/create.js +169 -0
- package/build/commands/env/delete.d.ts +18 -0
- package/build/commands/env/delete.js +95 -0
- package/build/commands/env/get.d.ts +19 -0
- package/build/commands/env/get.js +100 -0
- package/build/commands/env/link.d.ts +15 -0
- package/build/commands/env/link.js +59 -0
- package/build/commands/env/list.d.ts +18 -0
- package/build/commands/env/list.js +82 -0
- package/build/commands/env/pull.d.ts +15 -0
- package/build/commands/env/pull.js +64 -0
- package/build/commands/env/push.d.ts +17 -0
- package/build/commands/env/push.js +148 -0
- package/build/commands/env/unlink.d.ts +15 -0
- package/build/commands/env/unlink.js +65 -0
- package/build/commands/env/update.d.ts +21 -0
- package/build/commands/env/update.js +135 -0
- package/build/commands/metadata/lint.js +4 -2
- package/build/commands/project/onboarding.js +1 -1
- package/build/commands/update/edit.d.ts +19 -0
- package/build/commands/update/edit.js +102 -0
- package/build/commands/update/index.d.ts +1 -2
- package/build/commands/update/index.js +53 -25
- package/build/commands/update/list.js +6 -3
- package/build/commands/update/roll-back-to-embedded.js +1 -1
- package/build/credentials/android/AndroidCredentialsProvider.d.ts +2 -2
- package/build/credentials/android/actions/AssignFcm.d.ts +1 -1
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.d.ts +1 -1
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.d.ts +1 -1
- package/build/credentials/android/actions/CreateFcm.d.ts +1 -1
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +1 -1
- package/build/credentials/android/actions/CreateKeystore.d.ts +1 -1
- package/build/credentials/android/actions/DownloadKeystore.d.ts +2 -2
- package/build/credentials/android/actions/RemoveFcm.d.ts +1 -1
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +2 -2
- package/build/credentials/android/actions/RemoveKeystore.d.ts +1 -1
- package/build/credentials/android/actions/SetUpBuildCredentials.d.ts +1 -1
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.d.ts +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.d.ts +1 -1
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +1 -1
- package/build/credentials/android/api/GraphqlClient.js +3 -3
- package/build/credentials/context.d.ts +2 -2
- package/build/credentials/context.js +1 -1
- package/build/credentials/ios/IosCredentialsProvider.d.ts +2 -2
- package/build/credentials/ios/IosCredentialsProvider.js +1 -1
- package/build/credentials/ios/actions/AscApiKeyUtils.js +1 -1
- 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/ConfigureProvisioningProfile.d.ts +4 -4
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +1 -1
- package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +1 -1
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +3 -3
- package/build/credentials/ios/actions/CreatePushKey.d.ts +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +5 -5
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +2 -2
- package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +3 -3
- package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +2 -2
- package/build/credentials/ios/actions/RemovePushKey.d.ts +2 -2
- 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 +2 -2
- package/build/credentials/ios/actions/SetUpBuildCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +2 -2
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +3 -3
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpPushKey.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/actions/UpdateCredentialsJson.d.ts +3 -3
- package/build/credentials/ios/api/GraphqlClient.js +4 -4
- package/build/credentials/ios/appstore/AppStoreApi.js +4 -4
- package/build/credentials/ios/appstore/authenticate.js +1 -1
- package/build/credentials/ios/appstore/bundleId.js +1 -1
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +1 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +1 -1
- package/build/credentials/ios/appstore/keychain.js +8 -6
- package/build/credentials/ios/appstore/provisioningProfile.js +1 -1
- package/build/credentials/ios/appstore/pushKey.js +1 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +2 -2
- package/build/credentials/ios/credentials.js +1 -1
- package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.js +2 -4
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +3 -3
- package/build/credentials/manager/CreateAndroidBuildCredentials.d.ts +1 -1
- package/build/credentials/manager/ManageAndroid.js +2 -1
- package/build/credentials/manager/ManageIos.js +3 -2
- package/build/credentials/manager/SelectAndroidBuildCredentials.d.ts +2 -2
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +2 -2
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.d.ts +1 -1
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.js +1 -1
- package/build/credentials/manager/SelectPlatform.js +3 -2
- package/build/credentials/manager/SetDefaultAndroidKeystore.d.ts +1 -1
- package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +1 -1
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +3 -2
- package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +1 -1
- package/build/devices/actions/create/action.d.ts +4 -4
- package/build/devices/actions/create/registrationUrlMethod.js +3 -1
- package/build/devices/manager.d.ts +4 -4
- package/build/devices/queries.js +3 -1
- package/build/easMultiselect.js +6 -2
- package/build/graphql/generated.d.ts +874 -62
- package/build/graphql/generated.js +92 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +39 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.js +133 -0
- package/build/graphql/mutations/PublishMutation.d.ts +1 -0
- package/build/graphql/mutations/PublishMutation.js +16 -0
- package/build/graphql/queries/BranchQuery.d.ts +7 -1
- package/build/graphql/queries/BranchQuery.js +42 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +22 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.js +106 -0
- package/build/graphql/types/EnvironmentVariable.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariable.js +16 -0
- package/build/graphql/types/Update.js +4 -0
- package/build/metadata/apple/config/reader.js +1 -1
- package/build/metadata/apple/tasks/age-rating.js +1 -1
- package/build/metadata/apple/tasks/app-review-detail.js +2 -1
- package/build/metadata/apple/tasks/app-version.d.ts +1 -1
- package/build/metadata/config/resolve.js +2 -1
- package/build/metadata/errors.js +2 -1
- package/build/metadata/utils/log.js +1 -1
- package/build/metadata/utils/retry.js +1 -1
- package/build/onboarding/runCommand.js +1 -1
- package/build/ora.js +12 -4
- package/build/project/android/applicationId.js +1 -1
- package/build/project/applicationIdentifier.d.ts +3 -2
- package/build/project/applicationIdentifier.js +2 -2
- package/build/project/expoConfig.js +2 -2
- package/build/project/ios/entitlements.js +1 -1
- package/build/project/publish.d.ts +31 -18
- package/build/project/publish.js +61 -37
- package/build/project/resolveRuntimeVersionAsync.d.ts +4 -1
- package/build/project/resolveRuntimeVersionAsync.js +9 -3
- package/build/rollout/actions/CreateRollout.d.ts +2 -2
- package/build/rollout/actions/EditRollout.d.ts +2 -2
- package/build/rollout/actions/EndRollout.d.ts +2 -2
- package/build/rollout/actions/ManageRollout.d.ts +2 -2
- package/build/rollout/actions/NonInteractiveRollout.d.ts +1 -1
- package/build/rollout/actions/RolloutMainMenu.d.ts +1 -1
- package/build/rollout/actions/SelectRuntime.d.ts +3 -3
- package/build/run/android/adb.js +1 -1
- package/build/run/ios/simctl.js +1 -1
- package/build/run/ios/systemRequirements.js +1 -1
- package/build/submit/ArchiveSource.js +15 -15
- package/build/submit/BaseSubmitter.js +2 -2
- package/build/submit/submit.js +1 -1
- package/build/update/android/UpdatesModule.js +1 -1
- package/build/update/configure.d.ts +1 -1
- package/build/update/queries.js +8 -3
- package/build/update/republish.js +2 -1
- package/build/update/utils.d.ts +1 -0
- package/build/update/utils.js +7 -0
- package/build/user/expoSsoLauncher.js +1 -1
- package/build/utils/download.js +2 -2
- package/build/utils/filterAsync.js +1 -1
- package/build/utils/formatVariable.d.ts +2 -0
- package/build/utils/formatVariable.js +16 -0
- package/build/utils/image.js +2 -2
- package/build/utils/progress.js +1 -1
- package/build/utils/promise.js +1 -1
- package/build/utils/prompts.d.ts +9 -0
- package/build/utils/prompts.js +68 -0
- package/build/utils/queries.js +2 -2
- package/build/vcs/clients/git.d.ts +1 -1
- package/build/vcs/local.d.ts +1 -1
- package/oclif.manifest.json +627 -22
- package/package.json +15 -15
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "11.0.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -54,6 +54,19 @@
|
|
|
54
54
|
"hidden": true,
|
|
55
55
|
"allowNo": false
|
|
56
56
|
},
|
|
57
|
+
"environment": {
|
|
58
|
+
"name": "environment",
|
|
59
|
+
"type": "option",
|
|
60
|
+
"description": "Environment variable's environment",
|
|
61
|
+
"hidden": true,
|
|
62
|
+
"helpValue": "(development|preview|production)",
|
|
63
|
+
"multiple": false,
|
|
64
|
+
"options": [
|
|
65
|
+
"development",
|
|
66
|
+
"preview",
|
|
67
|
+
"production"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
57
70
|
"json": {
|
|
58
71
|
"name": "json",
|
|
59
72
|
"type": "boolean",
|
|
@@ -74,7 +87,8 @@
|
|
|
74
87
|
"contextDefinition": {
|
|
75
88
|
"getDynamicPublicProjectConfigAsync": {},
|
|
76
89
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
77
|
-
"projectDir": {}
|
|
90
|
+
"projectDir": {},
|
|
91
|
+
"loggedIn": {}
|
|
78
92
|
}
|
|
79
93
|
},
|
|
80
94
|
"diagnostics": {
|
|
@@ -773,6 +787,19 @@
|
|
|
773
787
|
"type": "boolean",
|
|
774
788
|
"description": "Run the command in non-interactive mode.",
|
|
775
789
|
"allowNo": false
|
|
790
|
+
},
|
|
791
|
+
"environment": {
|
|
792
|
+
"name": "environment",
|
|
793
|
+
"type": "option",
|
|
794
|
+
"description": "Environment variable's environment",
|
|
795
|
+
"hidden": true,
|
|
796
|
+
"helpValue": "(development|preview|production)",
|
|
797
|
+
"multiple": false,
|
|
798
|
+
"options": [
|
|
799
|
+
"development",
|
|
800
|
+
"preview",
|
|
801
|
+
"production"
|
|
802
|
+
]
|
|
776
803
|
}
|
|
777
804
|
},
|
|
778
805
|
"args": {},
|
|
@@ -781,6 +808,7 @@
|
|
|
781
808
|
"getDynamicPublicProjectConfigAsync": {},
|
|
782
809
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
783
810
|
"projectDir": {},
|
|
811
|
+
"privateProjectConfig": {},
|
|
784
812
|
"analytics": {},
|
|
785
813
|
"vcsClient": {}
|
|
786
814
|
}
|
|
@@ -1155,6 +1183,19 @@
|
|
|
1155
1183
|
"type": "boolean",
|
|
1156
1184
|
"description": "Run the command in non-interactive mode.",
|
|
1157
1185
|
"allowNo": false
|
|
1186
|
+
},
|
|
1187
|
+
"environment": {
|
|
1188
|
+
"name": "environment",
|
|
1189
|
+
"type": "option",
|
|
1190
|
+
"description": "Environment variable's environment",
|
|
1191
|
+
"hidden": true,
|
|
1192
|
+
"helpValue": "(development|preview|production)",
|
|
1193
|
+
"multiple": false,
|
|
1194
|
+
"options": [
|
|
1195
|
+
"development",
|
|
1196
|
+
"preview",
|
|
1197
|
+
"production"
|
|
1198
|
+
]
|
|
1158
1199
|
}
|
|
1159
1200
|
},
|
|
1160
1201
|
"args": {},
|
|
@@ -1849,6 +1890,499 @@
|
|
|
1849
1890
|
"privateProjectConfig": {}
|
|
1850
1891
|
}
|
|
1851
1892
|
},
|
|
1893
|
+
"env:create": {
|
|
1894
|
+
"id": "env:create",
|
|
1895
|
+
"description": "create an environment variable on the current project or owner account",
|
|
1896
|
+
"strict": true,
|
|
1897
|
+
"pluginName": "eas-cli",
|
|
1898
|
+
"pluginAlias": "eas-cli",
|
|
1899
|
+
"pluginType": "core",
|
|
1900
|
+
"hidden": true,
|
|
1901
|
+
"aliases": [],
|
|
1902
|
+
"flags": {
|
|
1903
|
+
"name": {
|
|
1904
|
+
"name": "name",
|
|
1905
|
+
"type": "option",
|
|
1906
|
+
"description": "Name of the variable",
|
|
1907
|
+
"multiple": false
|
|
1908
|
+
},
|
|
1909
|
+
"value": {
|
|
1910
|
+
"name": "value",
|
|
1911
|
+
"type": "option",
|
|
1912
|
+
"description": "Text value or the variable",
|
|
1913
|
+
"multiple": false
|
|
1914
|
+
},
|
|
1915
|
+
"link": {
|
|
1916
|
+
"name": "link",
|
|
1917
|
+
"type": "boolean",
|
|
1918
|
+
"description": "Link shared variable to the current project",
|
|
1919
|
+
"allowNo": false
|
|
1920
|
+
},
|
|
1921
|
+
"force": {
|
|
1922
|
+
"name": "force",
|
|
1923
|
+
"type": "boolean",
|
|
1924
|
+
"description": "Overwrite existing variable",
|
|
1925
|
+
"allowNo": false
|
|
1926
|
+
},
|
|
1927
|
+
"visibility": {
|
|
1928
|
+
"name": "visibility",
|
|
1929
|
+
"type": "option",
|
|
1930
|
+
"description": "Visibility of the variable",
|
|
1931
|
+
"helpValue": "(secret|sensitive|public)",
|
|
1932
|
+
"multiple": false,
|
|
1933
|
+
"options": [
|
|
1934
|
+
"secret",
|
|
1935
|
+
"sensitive",
|
|
1936
|
+
"public"
|
|
1937
|
+
]
|
|
1938
|
+
},
|
|
1939
|
+
"scope": {
|
|
1940
|
+
"name": "scope",
|
|
1941
|
+
"type": "option",
|
|
1942
|
+
"description": "Scope for the variable",
|
|
1943
|
+
"helpValue": "(shared|project)",
|
|
1944
|
+
"multiple": false,
|
|
1945
|
+
"options": [
|
|
1946
|
+
"shared",
|
|
1947
|
+
"project"
|
|
1948
|
+
],
|
|
1949
|
+
"default": "PROJECT"
|
|
1950
|
+
},
|
|
1951
|
+
"environment": {
|
|
1952
|
+
"name": "environment",
|
|
1953
|
+
"type": "option",
|
|
1954
|
+
"description": "Environment variable's environment",
|
|
1955
|
+
"helpValue": "(development|preview|production)",
|
|
1956
|
+
"multiple": false,
|
|
1957
|
+
"options": [
|
|
1958
|
+
"development",
|
|
1959
|
+
"preview",
|
|
1960
|
+
"production"
|
|
1961
|
+
]
|
|
1962
|
+
},
|
|
1963
|
+
"non-interactive": {
|
|
1964
|
+
"name": "non-interactive",
|
|
1965
|
+
"type": "boolean",
|
|
1966
|
+
"description": "Run the command in non-interactive mode.",
|
|
1967
|
+
"allowNo": false
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1970
|
+
"args": {},
|
|
1971
|
+
"contextDefinition": {
|
|
1972
|
+
"loggedIn": {},
|
|
1973
|
+
"privateProjectConfig": {},
|
|
1974
|
+
"analytics": {}
|
|
1975
|
+
}
|
|
1976
|
+
},
|
|
1977
|
+
"env:delete": {
|
|
1978
|
+
"id": "env:delete",
|
|
1979
|
+
"description": "delete an environment variable by name",
|
|
1980
|
+
"strict": true,
|
|
1981
|
+
"pluginName": "eas-cli",
|
|
1982
|
+
"pluginAlias": "eas-cli",
|
|
1983
|
+
"pluginType": "core",
|
|
1984
|
+
"hidden": true,
|
|
1985
|
+
"aliases": [],
|
|
1986
|
+
"flags": {
|
|
1987
|
+
"name": {
|
|
1988
|
+
"name": "name",
|
|
1989
|
+
"type": "option",
|
|
1990
|
+
"description": "Name of the variable to delete",
|
|
1991
|
+
"multiple": false
|
|
1992
|
+
},
|
|
1993
|
+
"scope": {
|
|
1994
|
+
"name": "scope",
|
|
1995
|
+
"type": "option",
|
|
1996
|
+
"description": "Scope for the variable",
|
|
1997
|
+
"helpValue": "(shared|project)",
|
|
1998
|
+
"multiple": false,
|
|
1999
|
+
"options": [
|
|
2000
|
+
"shared",
|
|
2001
|
+
"project"
|
|
2002
|
+
],
|
|
2003
|
+
"default": "PROJECT"
|
|
2004
|
+
},
|
|
2005
|
+
"environment": {
|
|
2006
|
+
"name": "environment",
|
|
2007
|
+
"type": "option",
|
|
2008
|
+
"description": "Environment variable's environment",
|
|
2009
|
+
"helpValue": "(development|preview|production)",
|
|
2010
|
+
"multiple": false,
|
|
2011
|
+
"options": [
|
|
2012
|
+
"development",
|
|
2013
|
+
"preview",
|
|
2014
|
+
"production"
|
|
2015
|
+
]
|
|
2016
|
+
},
|
|
2017
|
+
"non-interactive": {
|
|
2018
|
+
"name": "non-interactive",
|
|
2019
|
+
"type": "boolean",
|
|
2020
|
+
"description": "Run the command in non-interactive mode.",
|
|
2021
|
+
"allowNo": false
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
"args": {},
|
|
2025
|
+
"contextDefinition": {
|
|
2026
|
+
"loggedIn": {},
|
|
2027
|
+
"privateProjectConfig": {}
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"env:get": {
|
|
2031
|
+
"id": "env:get",
|
|
2032
|
+
"description": "get environment variable",
|
|
2033
|
+
"strict": true,
|
|
2034
|
+
"pluginName": "eas-cli",
|
|
2035
|
+
"pluginAlias": "eas-cli",
|
|
2036
|
+
"pluginType": "core",
|
|
2037
|
+
"hidden": true,
|
|
2038
|
+
"aliases": [],
|
|
2039
|
+
"flags": {
|
|
2040
|
+
"name": {
|
|
2041
|
+
"name": "name",
|
|
2042
|
+
"type": "option",
|
|
2043
|
+
"description": "Name of the variable",
|
|
2044
|
+
"multiple": false
|
|
2045
|
+
},
|
|
2046
|
+
"format": {
|
|
2047
|
+
"name": "format",
|
|
2048
|
+
"type": "option",
|
|
2049
|
+
"description": "Output format",
|
|
2050
|
+
"helpValue": "(long|short)",
|
|
2051
|
+
"multiple": false,
|
|
2052
|
+
"options": [
|
|
2053
|
+
"long",
|
|
2054
|
+
"short"
|
|
2055
|
+
],
|
|
2056
|
+
"default": "short"
|
|
2057
|
+
},
|
|
2058
|
+
"scope": {
|
|
2059
|
+
"name": "scope",
|
|
2060
|
+
"type": "option",
|
|
2061
|
+
"description": "Scope for the variable",
|
|
2062
|
+
"helpValue": "(shared|project)",
|
|
2063
|
+
"multiple": false,
|
|
2064
|
+
"options": [
|
|
2065
|
+
"shared",
|
|
2066
|
+
"project"
|
|
2067
|
+
],
|
|
2068
|
+
"default": "PROJECT"
|
|
2069
|
+
},
|
|
2070
|
+
"non-interactive": {
|
|
2071
|
+
"name": "non-interactive",
|
|
2072
|
+
"type": "boolean",
|
|
2073
|
+
"description": "Run the command in non-interactive mode.",
|
|
2074
|
+
"allowNo": false
|
|
2075
|
+
},
|
|
2076
|
+
"environment": {
|
|
2077
|
+
"name": "environment",
|
|
2078
|
+
"type": "option",
|
|
2079
|
+
"description": "Environment variable's environment",
|
|
2080
|
+
"helpValue": "(development|preview|production)",
|
|
2081
|
+
"multiple": false,
|
|
2082
|
+
"options": [
|
|
2083
|
+
"development",
|
|
2084
|
+
"preview",
|
|
2085
|
+
"production"
|
|
2086
|
+
]
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"args": {},
|
|
2090
|
+
"contextDefinition": {
|
|
2091
|
+
"loggedIn": {},
|
|
2092
|
+
"privateProjectConfig": {}
|
|
2093
|
+
}
|
|
2094
|
+
},
|
|
2095
|
+
"env:link": {
|
|
2096
|
+
"id": "env:link",
|
|
2097
|
+
"description": "link a shared environment variable to the current project",
|
|
2098
|
+
"strict": true,
|
|
2099
|
+
"pluginName": "eas-cli",
|
|
2100
|
+
"pluginAlias": "eas-cli",
|
|
2101
|
+
"pluginType": "core",
|
|
2102
|
+
"hidden": true,
|
|
2103
|
+
"aliases": [],
|
|
2104
|
+
"flags": {
|
|
2105
|
+
"name": {
|
|
2106
|
+
"name": "name",
|
|
2107
|
+
"type": "option",
|
|
2108
|
+
"description": "Name of the variable",
|
|
2109
|
+
"multiple": false
|
|
2110
|
+
},
|
|
2111
|
+
"environment": {
|
|
2112
|
+
"name": "environment",
|
|
2113
|
+
"type": "option",
|
|
2114
|
+
"description": "Environment variable's environment",
|
|
2115
|
+
"helpValue": "(development|preview|production)",
|
|
2116
|
+
"multiple": false,
|
|
2117
|
+
"options": [
|
|
2118
|
+
"development",
|
|
2119
|
+
"preview",
|
|
2120
|
+
"production"
|
|
2121
|
+
]
|
|
2122
|
+
},
|
|
2123
|
+
"non-interactive": {
|
|
2124
|
+
"name": "non-interactive",
|
|
2125
|
+
"type": "boolean",
|
|
2126
|
+
"description": "Run the command in non-interactive mode.",
|
|
2127
|
+
"allowNo": false
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
"args": {},
|
|
2131
|
+
"contextDefinition": {
|
|
2132
|
+
"loggedIn": {},
|
|
2133
|
+
"privateProjectConfig": {}
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"env:list": {
|
|
2137
|
+
"id": "env:list",
|
|
2138
|
+
"description": "list environment variables for the current project",
|
|
2139
|
+
"strict": true,
|
|
2140
|
+
"pluginName": "eas-cli",
|
|
2141
|
+
"pluginAlias": "eas-cli",
|
|
2142
|
+
"pluginType": "core",
|
|
2143
|
+
"hidden": true,
|
|
2144
|
+
"aliases": [],
|
|
2145
|
+
"flags": {
|
|
2146
|
+
"include-sensitive": {
|
|
2147
|
+
"name": "include-sensitive",
|
|
2148
|
+
"type": "boolean",
|
|
2149
|
+
"description": "Display sensitive values in the output",
|
|
2150
|
+
"allowNo": false
|
|
2151
|
+
},
|
|
2152
|
+
"format": {
|
|
2153
|
+
"name": "format",
|
|
2154
|
+
"type": "option",
|
|
2155
|
+
"description": "Output format",
|
|
2156
|
+
"helpValue": "(long|short)",
|
|
2157
|
+
"multiple": false,
|
|
2158
|
+
"options": [
|
|
2159
|
+
"long",
|
|
2160
|
+
"short"
|
|
2161
|
+
],
|
|
2162
|
+
"default": "short"
|
|
2163
|
+
},
|
|
2164
|
+
"scope": {
|
|
2165
|
+
"name": "scope",
|
|
2166
|
+
"type": "option",
|
|
2167
|
+
"description": "Scope for the variable",
|
|
2168
|
+
"helpValue": "(shared|project)",
|
|
2169
|
+
"multiple": false,
|
|
2170
|
+
"options": [
|
|
2171
|
+
"shared",
|
|
2172
|
+
"project"
|
|
2173
|
+
],
|
|
2174
|
+
"default": "PROJECT"
|
|
2175
|
+
},
|
|
2176
|
+
"environment": {
|
|
2177
|
+
"name": "environment",
|
|
2178
|
+
"type": "option",
|
|
2179
|
+
"description": "Environment variable's environment",
|
|
2180
|
+
"helpValue": "(development|preview|production)",
|
|
2181
|
+
"multiple": false,
|
|
2182
|
+
"options": [
|
|
2183
|
+
"development",
|
|
2184
|
+
"preview",
|
|
2185
|
+
"production"
|
|
2186
|
+
]
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"args": {},
|
|
2190
|
+
"contextDefinition": {
|
|
2191
|
+
"loggedIn": {},
|
|
2192
|
+
"privateProjectConfig": {}
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
"env:pull": {
|
|
2196
|
+
"id": "env:pull",
|
|
2197
|
+
"description": "pull env file",
|
|
2198
|
+
"strict": true,
|
|
2199
|
+
"pluginName": "eas-cli",
|
|
2200
|
+
"pluginAlias": "eas-cli",
|
|
2201
|
+
"pluginType": "core",
|
|
2202
|
+
"hidden": true,
|
|
2203
|
+
"aliases": [],
|
|
2204
|
+
"flags": {
|
|
2205
|
+
"environment": {
|
|
2206
|
+
"name": "environment",
|
|
2207
|
+
"type": "option",
|
|
2208
|
+
"description": "Environment variable's environment",
|
|
2209
|
+
"helpValue": "(development|preview|production)",
|
|
2210
|
+
"multiple": false,
|
|
2211
|
+
"options": [
|
|
2212
|
+
"development",
|
|
2213
|
+
"preview",
|
|
2214
|
+
"production"
|
|
2215
|
+
]
|
|
2216
|
+
},
|
|
2217
|
+
"non-interactive": {
|
|
2218
|
+
"name": "non-interactive",
|
|
2219
|
+
"type": "boolean",
|
|
2220
|
+
"description": "Run the command in non-interactive mode.",
|
|
2221
|
+
"allowNo": false
|
|
2222
|
+
},
|
|
2223
|
+
"path": {
|
|
2224
|
+
"name": "path",
|
|
2225
|
+
"type": "option",
|
|
2226
|
+
"description": "Path to the result `.env` file",
|
|
2227
|
+
"multiple": false,
|
|
2228
|
+
"default": ".env.local"
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"args": {},
|
|
2232
|
+
"contextDefinition": {
|
|
2233
|
+
"loggedIn": {},
|
|
2234
|
+
"privateProjectConfig": {}
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
"env:push": {
|
|
2238
|
+
"id": "env:push",
|
|
2239
|
+
"description": "push env file",
|
|
2240
|
+
"strict": true,
|
|
2241
|
+
"pluginName": "eas-cli",
|
|
2242
|
+
"pluginAlias": "eas-cli",
|
|
2243
|
+
"pluginType": "core",
|
|
2244
|
+
"hidden": true,
|
|
2245
|
+
"aliases": [],
|
|
2246
|
+
"flags": {
|
|
2247
|
+
"environment": {
|
|
2248
|
+
"name": "environment",
|
|
2249
|
+
"type": "option",
|
|
2250
|
+
"description": "Environment variable's environment",
|
|
2251
|
+
"helpValue": "(development|preview|production)",
|
|
2252
|
+
"multiple": false,
|
|
2253
|
+
"options": [
|
|
2254
|
+
"development",
|
|
2255
|
+
"preview",
|
|
2256
|
+
"production"
|
|
2257
|
+
]
|
|
2258
|
+
},
|
|
2259
|
+
"path": {
|
|
2260
|
+
"name": "path",
|
|
2261
|
+
"type": "option",
|
|
2262
|
+
"description": "Path to the input `.env` file",
|
|
2263
|
+
"multiple": false,
|
|
2264
|
+
"default": ".env.local"
|
|
2265
|
+
}
|
|
2266
|
+
},
|
|
2267
|
+
"args": {},
|
|
2268
|
+
"contextDefinition": {
|
|
2269
|
+
"loggedIn": {},
|
|
2270
|
+
"privateProjectConfig": {}
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
2273
|
+
"env:unlink": {
|
|
2274
|
+
"id": "env:unlink",
|
|
2275
|
+
"description": "unlink a shared environment variable to the current project",
|
|
2276
|
+
"strict": true,
|
|
2277
|
+
"pluginName": "eas-cli",
|
|
2278
|
+
"pluginAlias": "eas-cli",
|
|
2279
|
+
"pluginType": "core",
|
|
2280
|
+
"hidden": true,
|
|
2281
|
+
"aliases": [],
|
|
2282
|
+
"flags": {
|
|
2283
|
+
"name": {
|
|
2284
|
+
"name": "name",
|
|
2285
|
+
"type": "option",
|
|
2286
|
+
"description": "Name of the variable",
|
|
2287
|
+
"multiple": false
|
|
2288
|
+
},
|
|
2289
|
+
"environment": {
|
|
2290
|
+
"name": "environment",
|
|
2291
|
+
"type": "option",
|
|
2292
|
+
"description": "Environment variable's environment",
|
|
2293
|
+
"helpValue": "(development|preview|production)",
|
|
2294
|
+
"multiple": false,
|
|
2295
|
+
"options": [
|
|
2296
|
+
"development",
|
|
2297
|
+
"preview",
|
|
2298
|
+
"production"
|
|
2299
|
+
]
|
|
2300
|
+
},
|
|
2301
|
+
"non-interactive": {
|
|
2302
|
+
"name": "non-interactive",
|
|
2303
|
+
"type": "boolean",
|
|
2304
|
+
"description": "Run the command in non-interactive mode.",
|
|
2305
|
+
"allowNo": false
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2308
|
+
"args": {},
|
|
2309
|
+
"contextDefinition": {
|
|
2310
|
+
"loggedIn": {},
|
|
2311
|
+
"privateProjectConfig": {}
|
|
2312
|
+
}
|
|
2313
|
+
},
|
|
2314
|
+
"env:update": {
|
|
2315
|
+
"id": "env:update",
|
|
2316
|
+
"description": "update an environment variable on the current project or owner account",
|
|
2317
|
+
"strict": true,
|
|
2318
|
+
"pluginName": "eas-cli",
|
|
2319
|
+
"pluginAlias": "eas-cli",
|
|
2320
|
+
"pluginType": "core",
|
|
2321
|
+
"hidden": true,
|
|
2322
|
+
"aliases": [],
|
|
2323
|
+
"flags": {
|
|
2324
|
+
"name": {
|
|
2325
|
+
"name": "name",
|
|
2326
|
+
"type": "option",
|
|
2327
|
+
"description": "Name of the variable",
|
|
2328
|
+
"multiple": false
|
|
2329
|
+
},
|
|
2330
|
+
"value": {
|
|
2331
|
+
"name": "value",
|
|
2332
|
+
"type": "option",
|
|
2333
|
+
"description": "Text value or the variable",
|
|
2334
|
+
"multiple": false
|
|
2335
|
+
},
|
|
2336
|
+
"visibility": {
|
|
2337
|
+
"name": "visibility",
|
|
2338
|
+
"type": "option",
|
|
2339
|
+
"description": "Visibility of the variable",
|
|
2340
|
+
"helpValue": "(secret|sensitive|public)",
|
|
2341
|
+
"multiple": false,
|
|
2342
|
+
"options": [
|
|
2343
|
+
"secret",
|
|
2344
|
+
"sensitive",
|
|
2345
|
+
"public"
|
|
2346
|
+
]
|
|
2347
|
+
},
|
|
2348
|
+
"scope": {
|
|
2349
|
+
"name": "scope",
|
|
2350
|
+
"type": "option",
|
|
2351
|
+
"description": "Scope for the variable",
|
|
2352
|
+
"helpValue": "(shared|project)",
|
|
2353
|
+
"multiple": false,
|
|
2354
|
+
"options": [
|
|
2355
|
+
"shared",
|
|
2356
|
+
"project"
|
|
2357
|
+
],
|
|
2358
|
+
"default": "PROJECT"
|
|
2359
|
+
},
|
|
2360
|
+
"environment": {
|
|
2361
|
+
"name": "environment",
|
|
2362
|
+
"type": "option",
|
|
2363
|
+
"description": "Environment variable's environment",
|
|
2364
|
+
"helpValue": "(development|preview|production)",
|
|
2365
|
+
"multiple": false,
|
|
2366
|
+
"options": [
|
|
2367
|
+
"development",
|
|
2368
|
+
"preview",
|
|
2369
|
+
"production"
|
|
2370
|
+
]
|
|
2371
|
+
},
|
|
2372
|
+
"non-interactive": {
|
|
2373
|
+
"name": "non-interactive",
|
|
2374
|
+
"type": "boolean",
|
|
2375
|
+
"description": "Run the command in non-interactive mode.",
|
|
2376
|
+
"allowNo": false
|
|
2377
|
+
}
|
|
2378
|
+
},
|
|
2379
|
+
"args": {},
|
|
2380
|
+
"contextDefinition": {
|
|
2381
|
+
"loggedIn": {},
|
|
2382
|
+
"privateProjectConfig": {},
|
|
2383
|
+
"analytics": {}
|
|
2384
|
+
}
|
|
2385
|
+
},
|
|
1852
2386
|
"metadata:lint": {
|
|
1853
2387
|
"id": "metadata:lint",
|
|
1854
2388
|
"description": "validate the local store configuration",
|
|
@@ -2230,6 +2764,50 @@
|
|
|
2230
2764
|
"loggedIn": {}
|
|
2231
2765
|
}
|
|
2232
2766
|
},
|
|
2767
|
+
"update:edit": {
|
|
2768
|
+
"id": "update:edit",
|
|
2769
|
+
"description": "edit all the updates in an update group",
|
|
2770
|
+
"strict": true,
|
|
2771
|
+
"pluginName": "eas-cli",
|
|
2772
|
+
"pluginAlias": "eas-cli",
|
|
2773
|
+
"pluginType": "core",
|
|
2774
|
+
"hidden": true,
|
|
2775
|
+
"aliases": [],
|
|
2776
|
+
"flags": {
|
|
2777
|
+
"rollout-percentage": {
|
|
2778
|
+
"name": "rollout-percentage",
|
|
2779
|
+
"type": "option",
|
|
2780
|
+
"description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
|
|
2781
|
+
"required": false,
|
|
2782
|
+
"multiple": false
|
|
2783
|
+
},
|
|
2784
|
+
"json": {
|
|
2785
|
+
"name": "json",
|
|
2786
|
+
"type": "boolean",
|
|
2787
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
2788
|
+
"allowNo": false,
|
|
2789
|
+
"dependsOn": [
|
|
2790
|
+
"non-interactive"
|
|
2791
|
+
]
|
|
2792
|
+
},
|
|
2793
|
+
"non-interactive": {
|
|
2794
|
+
"name": "non-interactive",
|
|
2795
|
+
"type": "boolean",
|
|
2796
|
+
"description": "Run the command in non-interactive mode.",
|
|
2797
|
+
"allowNo": false
|
|
2798
|
+
}
|
|
2799
|
+
},
|
|
2800
|
+
"args": {
|
|
2801
|
+
"groupId": {
|
|
2802
|
+
"name": "groupId",
|
|
2803
|
+
"description": "The ID of an update group to edit.",
|
|
2804
|
+
"required": true
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2807
|
+
"contextDefinition": {
|
|
2808
|
+
"loggedIn": {}
|
|
2809
|
+
}
|
|
2810
|
+
},
|
|
2233
2811
|
"update": {
|
|
2234
2812
|
"id": "update",
|
|
2235
2813
|
"description": "publish an update group",
|
|
@@ -2261,26 +2839,6 @@
|
|
|
2261
2839
|
"required": false,
|
|
2262
2840
|
"multiple": false
|
|
2263
2841
|
},
|
|
2264
|
-
"republish": {
|
|
2265
|
-
"name": "republish",
|
|
2266
|
-
"type": "boolean",
|
|
2267
|
-
"description": "Republish an update group (deprecated, see republish command)",
|
|
2268
|
-
"allowNo": false,
|
|
2269
|
-
"exclusive": [
|
|
2270
|
-
"input-dir",
|
|
2271
|
-
"skip-bundler"
|
|
2272
|
-
]
|
|
2273
|
-
},
|
|
2274
|
-
"group": {
|
|
2275
|
-
"name": "group",
|
|
2276
|
-
"type": "option",
|
|
2277
|
-
"description": "Update group to republish (deprecated, see republish command)",
|
|
2278
|
-
"multiple": false,
|
|
2279
|
-
"exclusive": [
|
|
2280
|
-
"input-dir",
|
|
2281
|
-
"skip-bundler"
|
|
2282
|
-
]
|
|
2283
|
-
},
|
|
2284
2842
|
"input-dir": {
|
|
2285
2843
|
"name": "input-dir",
|
|
2286
2844
|
"type": "option",
|
|
@@ -2307,6 +2865,14 @@
|
|
|
2307
2865
|
"description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
|
|
2308
2866
|
"allowNo": false
|
|
2309
2867
|
},
|
|
2868
|
+
"rollout-percentage": {
|
|
2869
|
+
"name": "rollout-percentage",
|
|
2870
|
+
"type": "option",
|
|
2871
|
+
"description": "Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.",
|
|
2872
|
+
"hidden": true,
|
|
2873
|
+
"required": false,
|
|
2874
|
+
"multiple": false
|
|
2875
|
+
},
|
|
2310
2876
|
"platform": {
|
|
2311
2877
|
"name": "platform",
|
|
2312
2878
|
"type": "option",
|
|
@@ -2842,6 +3408,19 @@
|
|
|
2842
3408
|
"helpValue": "PROFILE_NAME",
|
|
2843
3409
|
"multiple": false
|
|
2844
3410
|
},
|
|
3411
|
+
"environment": {
|
|
3412
|
+
"name": "environment",
|
|
3413
|
+
"type": "option",
|
|
3414
|
+
"description": "Environment variable's environment",
|
|
3415
|
+
"hidden": true,
|
|
3416
|
+
"helpValue": "(development|preview|production)",
|
|
3417
|
+
"multiple": false,
|
|
3418
|
+
"options": [
|
|
3419
|
+
"development",
|
|
3420
|
+
"preview",
|
|
3421
|
+
"production"
|
|
3422
|
+
]
|
|
3423
|
+
},
|
|
2845
3424
|
"json": {
|
|
2846
3425
|
"name": "json",
|
|
2847
3426
|
"type": "boolean",
|
|
@@ -2894,6 +3473,19 @@
|
|
|
2894
3473
|
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2895
3474
|
"helpValue": "PROFILE_NAME",
|
|
2896
3475
|
"multiple": false
|
|
3476
|
+
},
|
|
3477
|
+
"environment": {
|
|
3478
|
+
"name": "environment",
|
|
3479
|
+
"type": "option",
|
|
3480
|
+
"description": "Environment variable's environment",
|
|
3481
|
+
"hidden": true,
|
|
3482
|
+
"helpValue": "(development|preview|production)",
|
|
3483
|
+
"multiple": false,
|
|
3484
|
+
"options": [
|
|
3485
|
+
"development",
|
|
3486
|
+
"preview",
|
|
3487
|
+
"production"
|
|
3488
|
+
]
|
|
2897
3489
|
}
|
|
2898
3490
|
},
|
|
2899
3491
|
"args": {},
|
|
@@ -2933,6 +3525,19 @@
|
|
|
2933
3525
|
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2934
3526
|
"helpValue": "PROFILE_NAME",
|
|
2935
3527
|
"multiple": false
|
|
3528
|
+
},
|
|
3529
|
+
"environment": {
|
|
3530
|
+
"name": "environment",
|
|
3531
|
+
"type": "option",
|
|
3532
|
+
"description": "Environment variable's environment",
|
|
3533
|
+
"hidden": true,
|
|
3534
|
+
"helpValue": "(development|preview|production)",
|
|
3535
|
+
"multiple": false,
|
|
3536
|
+
"options": [
|
|
3537
|
+
"development",
|
|
3538
|
+
"preview",
|
|
3539
|
+
"production"
|
|
3540
|
+
]
|
|
2936
3541
|
}
|
|
2937
3542
|
},
|
|
2938
3543
|
"args": {},
|