eas-cli 20.0.0 → 20.2.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 +197 -116
- package/build/commands/simulator/exec.d.ts +12 -0
- package/build/commands/simulator/exec.js +42 -0
- package/build/commands/simulator/get.d.ts +2 -1
- package/build/commands/simulator/get.js +13 -7
- package/build/commands/simulator/start.d.ts +4 -0
- package/build/commands/simulator/start.js +70 -5
- package/build/commands/simulator/stop.d.ts +2 -1
- package/build/commands/simulator/stop.js +16 -9
- package/build/commands/update/embedded/delete.d.ts +15 -0
- package/build/commands/update/embedded/delete.js +55 -0
- package/build/commands/update/embedded/list.d.ts +19 -0
- package/build/commands/update/embedded/list.js +132 -0
- package/build/commands/update/embedded/view.d.ts +17 -0
- package/build/commands/update/embedded/view.js +75 -0
- package/build/commands/update/rollback.d.ts +11 -0
- package/build/commands/update/rollback.js +117 -14
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +20 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.js +64 -0
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +2 -4
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +2 -4
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +3 -20
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +10 -0
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +39 -5
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +1 -0
- package/build/credentials/ios/appstore/resolveCredentials.js +1 -0
- package/build/graphql/generated.d.ts +457 -4
- package/build/graphql/generated.js +35 -1
- package/build/graphql/mutations/EmbeddedUpdateMutation.d.ts +5 -0
- package/build/graphql/mutations/EmbeddedUpdateMutation.js +14 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.d.ts +18 -0
- package/build/graphql/queries/EmbeddedUpdateQuery.js +81 -0
- package/build/graphql/queries/UpdateQuery.d.ts +2 -1
- package/build/graphql/queries/UpdateQuery.js +52 -0
- package/build/simulator/env.d.ts +7 -0
- package/build/simulator/env.js +44 -0
- package/build/simulator/utils.d.ts +3 -1
- package/build/simulator/utils.js +26 -7
- package/oclif.manifest.json +945 -525
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -4841,70 +4841,78 @@
|
|
|
4841
4841
|
"view.js"
|
|
4842
4842
|
]
|
|
4843
4843
|
},
|
|
4844
|
-
"
|
|
4844
|
+
"env:create": {
|
|
4845
4845
|
"aliases": [],
|
|
4846
4846
|
"args": {
|
|
4847
|
-
"
|
|
4848
|
-
"description": "
|
|
4849
|
-
"name": "
|
|
4850
|
-
"required": false
|
|
4851
|
-
},
|
|
4852
|
-
"hash2": {
|
|
4853
|
-
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
4854
|
-
"name": "hash2",
|
|
4847
|
+
"environment": {
|
|
4848
|
+
"description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
|
|
4849
|
+
"name": "environment",
|
|
4855
4850
|
"required": false
|
|
4856
4851
|
}
|
|
4857
4852
|
},
|
|
4858
|
-
"description": "
|
|
4859
|
-
"examples": [
|
|
4860
|
-
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
4861
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
4862
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
4863
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
4864
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
4865
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
4866
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
4867
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
4868
|
-
],
|
|
4853
|
+
"description": "create an environment variable for the current project or account",
|
|
4869
4854
|
"flags": {
|
|
4870
|
-
"
|
|
4871
|
-
"
|
|
4872
|
-
|
|
4873
|
-
],
|
|
4874
|
-
"description": "Compare the fingerprint with the build with the specified ID",
|
|
4875
|
-
"name": "build-id",
|
|
4855
|
+
"name": {
|
|
4856
|
+
"description": "Name of the variable",
|
|
4857
|
+
"name": "name",
|
|
4876
4858
|
"hasDynamicHelp": false,
|
|
4877
|
-
"multiple":
|
|
4859
|
+
"multiple": false,
|
|
4878
4860
|
"type": "option"
|
|
4879
4861
|
},
|
|
4880
|
-
"
|
|
4881
|
-
"
|
|
4882
|
-
|
|
4883
|
-
],
|
|
4884
|
-
"description": "Compare the fingerprint with the update with the specified ID",
|
|
4885
|
-
"name": "update-id",
|
|
4862
|
+
"value": {
|
|
4863
|
+
"description": "Text value or the variable",
|
|
4864
|
+
"name": "value",
|
|
4886
4865
|
"hasDynamicHelp": false,
|
|
4887
|
-
"multiple":
|
|
4866
|
+
"multiple": false,
|
|
4888
4867
|
"type": "option"
|
|
4889
4868
|
},
|
|
4890
|
-
"
|
|
4891
|
-
"description": "
|
|
4892
|
-
"name": "
|
|
4869
|
+
"force": {
|
|
4870
|
+
"description": "Overwrite existing variable",
|
|
4871
|
+
"name": "force",
|
|
4893
4872
|
"allowNo": false,
|
|
4894
4873
|
"type": "boolean"
|
|
4895
4874
|
},
|
|
4896
|
-
"
|
|
4897
|
-
"description": "
|
|
4898
|
-
"name": "
|
|
4875
|
+
"type": {
|
|
4876
|
+
"description": "The type of variable",
|
|
4877
|
+
"name": "type",
|
|
4899
4878
|
"hasDynamicHelp": false,
|
|
4900
4879
|
"multiple": false,
|
|
4880
|
+
"options": [
|
|
4881
|
+
"string",
|
|
4882
|
+
"file"
|
|
4883
|
+
],
|
|
4901
4884
|
"type": "option"
|
|
4902
4885
|
},
|
|
4903
|
-
"
|
|
4904
|
-
"description": "
|
|
4905
|
-
"name": "
|
|
4906
|
-
"
|
|
4907
|
-
"
|
|
4886
|
+
"visibility": {
|
|
4887
|
+
"description": "Visibility of the variable",
|
|
4888
|
+
"name": "visibility",
|
|
4889
|
+
"hasDynamicHelp": false,
|
|
4890
|
+
"multiple": false,
|
|
4891
|
+
"options": [
|
|
4892
|
+
"plaintext",
|
|
4893
|
+
"sensitive",
|
|
4894
|
+
"secret"
|
|
4895
|
+
],
|
|
4896
|
+
"type": "option"
|
|
4897
|
+
},
|
|
4898
|
+
"scope": {
|
|
4899
|
+
"description": "Scope for the variable",
|
|
4900
|
+
"name": "scope",
|
|
4901
|
+
"default": "project",
|
|
4902
|
+
"hasDynamicHelp": false,
|
|
4903
|
+
"multiple": false,
|
|
4904
|
+
"options": [
|
|
4905
|
+
"project",
|
|
4906
|
+
"account"
|
|
4907
|
+
],
|
|
4908
|
+
"type": "option"
|
|
4909
|
+
},
|
|
4910
|
+
"environment": {
|
|
4911
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4912
|
+
"name": "environment",
|
|
4913
|
+
"hasDynamicHelp": false,
|
|
4914
|
+
"multiple": true,
|
|
4915
|
+
"type": "option"
|
|
4908
4916
|
},
|
|
4909
4917
|
"non-interactive": {
|
|
4910
4918
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4916,11 +4924,11 @@
|
|
|
4916
4924
|
},
|
|
4917
4925
|
"hasDynamicHelp": false,
|
|
4918
4926
|
"hiddenAliases": [],
|
|
4919
|
-
"id": "
|
|
4927
|
+
"id": "env:create",
|
|
4920
4928
|
"pluginAlias": "eas-cli",
|
|
4921
4929
|
"pluginName": "eas-cli",
|
|
4922
4930
|
"pluginType": "core",
|
|
4923
|
-
"strict":
|
|
4931
|
+
"strict": true,
|
|
4924
4932
|
"enableJsonFlag": false,
|
|
4925
4933
|
"ContextOptions": {
|
|
4926
4934
|
"LoggedIn": {
|
|
@@ -4964,68 +4972,54 @@
|
|
|
4964
4972
|
},
|
|
4965
4973
|
"contextDefinition": {
|
|
4966
4974
|
"projectId": {},
|
|
4967
|
-
"
|
|
4968
|
-
"
|
|
4969
|
-
"vcsClient": {},
|
|
4970
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
4975
|
+
"analytics": {},
|
|
4976
|
+
"loggedIn": {}
|
|
4971
4977
|
},
|
|
4972
4978
|
"isESM": false,
|
|
4973
4979
|
"relativePath": [
|
|
4974
4980
|
"build",
|
|
4975
4981
|
"commands",
|
|
4976
|
-
"
|
|
4977
|
-
"
|
|
4982
|
+
"env",
|
|
4983
|
+
"create.js"
|
|
4978
4984
|
]
|
|
4979
4985
|
},
|
|
4980
|
-
"
|
|
4986
|
+
"env:delete": {
|
|
4981
4987
|
"aliases": [],
|
|
4982
|
-
"args": {
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4988
|
+
"args": {
|
|
4989
|
+
"environment": {
|
|
4990
|
+
"description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
|
|
4991
|
+
"name": "environment",
|
|
4992
|
+
"required": false
|
|
4993
|
+
}
|
|
4994
|
+
},
|
|
4995
|
+
"description": "delete an environment variable for the current project or account",
|
|
4990
4996
|
"flags": {
|
|
4991
|
-
"
|
|
4992
|
-
"
|
|
4993
|
-
"name": "
|
|
4997
|
+
"variable-name": {
|
|
4998
|
+
"description": "Name of the variable to delete",
|
|
4999
|
+
"name": "variable-name",
|
|
4994
5000
|
"hasDynamicHelp": false,
|
|
4995
5001
|
"multiple": false,
|
|
4996
|
-
"options": [
|
|
4997
|
-
"android",
|
|
4998
|
-
"ios"
|
|
4999
|
-
],
|
|
5000
5002
|
"type": "option"
|
|
5001
5003
|
},
|
|
5002
|
-
"environment": {
|
|
5003
|
-
"description": "
|
|
5004
|
-
"
|
|
5005
|
-
"build-profile"
|
|
5006
|
-
],
|
|
5007
|
-
"name": "environment",
|
|
5004
|
+
"variable-environment": {
|
|
5005
|
+
"description": "Current environment of the variable to delete",
|
|
5006
|
+
"name": "variable-environment",
|
|
5008
5007
|
"hasDynamicHelp": false,
|
|
5009
5008
|
"multiple": false,
|
|
5010
5009
|
"type": "option"
|
|
5011
5010
|
},
|
|
5012
|
-
"
|
|
5013
|
-
"
|
|
5014
|
-
"
|
|
5015
|
-
"
|
|
5016
|
-
"environment"
|
|
5017
|
-
],
|
|
5018
|
-
"name": "build-profile",
|
|
5011
|
+
"scope": {
|
|
5012
|
+
"description": "Scope for the variable",
|
|
5013
|
+
"name": "scope",
|
|
5014
|
+
"default": "project",
|
|
5019
5015
|
"hasDynamicHelp": false,
|
|
5020
5016
|
"multiple": false,
|
|
5017
|
+
"options": [
|
|
5018
|
+
"project",
|
|
5019
|
+
"account"
|
|
5020
|
+
],
|
|
5021
5021
|
"type": "option"
|
|
5022
5022
|
},
|
|
5023
|
-
"json": {
|
|
5024
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5025
|
-
"name": "json",
|
|
5026
|
-
"allowNo": false,
|
|
5027
|
-
"type": "boolean"
|
|
5028
|
-
},
|
|
5029
5023
|
"non-interactive": {
|
|
5030
5024
|
"description": "Run the command in non-interactive mode.",
|
|
5031
5025
|
"name": "non-interactive",
|
|
@@ -5036,11 +5030,11 @@
|
|
|
5036
5030
|
},
|
|
5037
5031
|
"hasDynamicHelp": false,
|
|
5038
5032
|
"hiddenAliases": [],
|
|
5039
|
-
"id": "
|
|
5033
|
+
"id": "env:delete",
|
|
5040
5034
|
"pluginAlias": "eas-cli",
|
|
5041
5035
|
"pluginName": "eas-cli",
|
|
5042
5036
|
"pluginType": "core",
|
|
5043
|
-
"strict":
|
|
5037
|
+
"strict": true,
|
|
5044
5038
|
"enableJsonFlag": false,
|
|
5045
5039
|
"ContextOptions": {
|
|
5046
5040
|
"LoggedIn": {
|
|
@@ -5084,94 +5078,32 @@
|
|
|
5084
5078
|
},
|
|
5085
5079
|
"contextDefinition": {
|
|
5086
5080
|
"projectId": {},
|
|
5087
|
-
"loggedIn": {}
|
|
5088
|
-
"privateProjectConfig": {},
|
|
5089
|
-
"vcsClient": {},
|
|
5090
|
-
"getServerSideEnvironmentVariablesAsync": {},
|
|
5091
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5092
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5081
|
+
"loggedIn": {}
|
|
5093
5082
|
},
|
|
5094
5083
|
"isESM": false,
|
|
5095
5084
|
"relativePath": [
|
|
5096
5085
|
"build",
|
|
5097
5086
|
"commands",
|
|
5098
|
-
"
|
|
5099
|
-
"
|
|
5087
|
+
"env",
|
|
5088
|
+
"delete.js"
|
|
5100
5089
|
]
|
|
5101
5090
|
},
|
|
5102
|
-
"env:
|
|
5091
|
+
"env:exec": {
|
|
5103
5092
|
"aliases": [],
|
|
5104
5093
|
"args": {
|
|
5105
5094
|
"environment": {
|
|
5106
|
-
"description": "Environment to
|
|
5095
|
+
"description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
|
|
5107
5096
|
"name": "environment",
|
|
5108
|
-
"required":
|
|
5097
|
+
"required": true
|
|
5098
|
+
},
|
|
5099
|
+
"bash_command": {
|
|
5100
|
+
"description": "bash command to execute with the environment variables from the environment",
|
|
5101
|
+
"name": "bash_command",
|
|
5102
|
+
"required": true
|
|
5109
5103
|
}
|
|
5110
5104
|
},
|
|
5111
|
-
"description": "
|
|
5105
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
5112
5106
|
"flags": {
|
|
5113
|
-
"name": {
|
|
5114
|
-
"description": "Name of the variable",
|
|
5115
|
-
"name": "name",
|
|
5116
|
-
"hasDynamicHelp": false,
|
|
5117
|
-
"multiple": false,
|
|
5118
|
-
"type": "option"
|
|
5119
|
-
},
|
|
5120
|
-
"value": {
|
|
5121
|
-
"description": "Text value or the variable",
|
|
5122
|
-
"name": "value",
|
|
5123
|
-
"hasDynamicHelp": false,
|
|
5124
|
-
"multiple": false,
|
|
5125
|
-
"type": "option"
|
|
5126
|
-
},
|
|
5127
|
-
"force": {
|
|
5128
|
-
"description": "Overwrite existing variable",
|
|
5129
|
-
"name": "force",
|
|
5130
|
-
"allowNo": false,
|
|
5131
|
-
"type": "boolean"
|
|
5132
|
-
},
|
|
5133
|
-
"type": {
|
|
5134
|
-
"description": "The type of variable",
|
|
5135
|
-
"name": "type",
|
|
5136
|
-
"hasDynamicHelp": false,
|
|
5137
|
-
"multiple": false,
|
|
5138
|
-
"options": [
|
|
5139
|
-
"string",
|
|
5140
|
-
"file"
|
|
5141
|
-
],
|
|
5142
|
-
"type": "option"
|
|
5143
|
-
},
|
|
5144
|
-
"visibility": {
|
|
5145
|
-
"description": "Visibility of the variable",
|
|
5146
|
-
"name": "visibility",
|
|
5147
|
-
"hasDynamicHelp": false,
|
|
5148
|
-
"multiple": false,
|
|
5149
|
-
"options": [
|
|
5150
|
-
"plaintext",
|
|
5151
|
-
"sensitive",
|
|
5152
|
-
"secret"
|
|
5153
|
-
],
|
|
5154
|
-
"type": "option"
|
|
5155
|
-
},
|
|
5156
|
-
"scope": {
|
|
5157
|
-
"description": "Scope for the variable",
|
|
5158
|
-
"name": "scope",
|
|
5159
|
-
"default": "project",
|
|
5160
|
-
"hasDynamicHelp": false,
|
|
5161
|
-
"multiple": false,
|
|
5162
|
-
"options": [
|
|
5163
|
-
"project",
|
|
5164
|
-
"account"
|
|
5165
|
-
],
|
|
5166
|
-
"type": "option"
|
|
5167
|
-
},
|
|
5168
|
-
"environment": {
|
|
5169
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5170
|
-
"name": "environment",
|
|
5171
|
-
"hasDynamicHelp": false,
|
|
5172
|
-
"multiple": true,
|
|
5173
|
-
"type": "option"
|
|
5174
|
-
},
|
|
5175
5107
|
"non-interactive": {
|
|
5176
5108
|
"description": "Run the command in non-interactive mode.",
|
|
5177
5109
|
"name": "non-interactive",
|
|
@@ -5182,7 +5114,7 @@
|
|
|
5182
5114
|
},
|
|
5183
5115
|
"hasDynamicHelp": false,
|
|
5184
5116
|
"hiddenAliases": [],
|
|
5185
|
-
"id": "env:
|
|
5117
|
+
"id": "env:exec",
|
|
5186
5118
|
"pluginAlias": "eas-cli",
|
|
5187
5119
|
"pluginName": "eas-cli",
|
|
5188
5120
|
"pluginType": "core",
|
|
@@ -5230,7 +5162,6 @@
|
|
|
5230
5162
|
},
|
|
5231
5163
|
"contextDefinition": {
|
|
5232
5164
|
"projectId": {},
|
|
5233
|
-
"analytics": {},
|
|
5234
5165
|
"loggedIn": {}
|
|
5235
5166
|
},
|
|
5236
5167
|
"isESM": false,
|
|
@@ -5238,34 +5169,46 @@
|
|
|
5238
5169
|
"build",
|
|
5239
5170
|
"commands",
|
|
5240
5171
|
"env",
|
|
5241
|
-
"
|
|
5172
|
+
"exec.js"
|
|
5242
5173
|
]
|
|
5243
5174
|
},
|
|
5244
|
-
"env:
|
|
5175
|
+
"env:get": {
|
|
5245
5176
|
"aliases": [],
|
|
5246
5177
|
"args": {
|
|
5247
5178
|
"environment": {
|
|
5248
|
-
"description": "Current environment of the variable
|
|
5179
|
+
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
5249
5180
|
"name": "environment",
|
|
5250
5181
|
"required": false
|
|
5251
5182
|
}
|
|
5252
5183
|
},
|
|
5253
|
-
"description": "
|
|
5184
|
+
"description": "view an environment variable for the current project or account",
|
|
5254
5185
|
"flags": {
|
|
5255
5186
|
"variable-name": {
|
|
5256
|
-
"description": "Name of the variable
|
|
5187
|
+
"description": "Name of the variable",
|
|
5257
5188
|
"name": "variable-name",
|
|
5258
5189
|
"hasDynamicHelp": false,
|
|
5259
5190
|
"multiple": false,
|
|
5260
5191
|
"type": "option"
|
|
5261
5192
|
},
|
|
5262
5193
|
"variable-environment": {
|
|
5263
|
-
"description": "Current environment of the variable
|
|
5194
|
+
"description": "Current environment of the variable",
|
|
5264
5195
|
"name": "variable-environment",
|
|
5265
5196
|
"hasDynamicHelp": false,
|
|
5266
5197
|
"multiple": false,
|
|
5267
5198
|
"type": "option"
|
|
5268
5199
|
},
|
|
5200
|
+
"format": {
|
|
5201
|
+
"description": "Output format",
|
|
5202
|
+
"name": "format",
|
|
5203
|
+
"default": "short",
|
|
5204
|
+
"hasDynamicHelp": false,
|
|
5205
|
+
"multiple": false,
|
|
5206
|
+
"options": [
|
|
5207
|
+
"long",
|
|
5208
|
+
"short"
|
|
5209
|
+
],
|
|
5210
|
+
"type": "option"
|
|
5211
|
+
},
|
|
5269
5212
|
"scope": {
|
|
5270
5213
|
"description": "Scope for the variable",
|
|
5271
5214
|
"name": "scope",
|
|
@@ -5288,7 +5231,7 @@
|
|
|
5288
5231
|
},
|
|
5289
5232
|
"hasDynamicHelp": false,
|
|
5290
5233
|
"hiddenAliases": [],
|
|
5291
|
-
"id": "env:
|
|
5234
|
+
"id": "env:get",
|
|
5292
5235
|
"pluginAlias": "eas-cli",
|
|
5293
5236
|
"pluginName": "eas-cli",
|
|
5294
5237
|
"pluginType": "core",
|
|
@@ -5343,36 +5286,67 @@
|
|
|
5343
5286
|
"build",
|
|
5344
5287
|
"commands",
|
|
5345
5288
|
"env",
|
|
5346
|
-
"
|
|
5289
|
+
"get.js"
|
|
5347
5290
|
]
|
|
5348
5291
|
},
|
|
5349
|
-
"env:
|
|
5292
|
+
"env:list": {
|
|
5350
5293
|
"aliases": [],
|
|
5351
5294
|
"args": {
|
|
5352
5295
|
"environment": {
|
|
5353
|
-
"description": "Environment to
|
|
5296
|
+
"description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
5354
5297
|
"name": "environment",
|
|
5355
|
-
"required":
|
|
5356
|
-
},
|
|
5357
|
-
"bash_command": {
|
|
5358
|
-
"description": "bash command to execute with the environment variables from the environment",
|
|
5359
|
-
"name": "bash_command",
|
|
5360
|
-
"required": true
|
|
5298
|
+
"required": false
|
|
5361
5299
|
}
|
|
5362
5300
|
},
|
|
5363
|
-
"description": "
|
|
5301
|
+
"description": "list environment variables for the current project or account",
|
|
5364
5302
|
"flags": {
|
|
5365
|
-
"
|
|
5366
|
-
"description": "
|
|
5367
|
-
"name": "
|
|
5368
|
-
"noCacheDefault": true,
|
|
5303
|
+
"include-sensitive": {
|
|
5304
|
+
"description": "Display sensitive values in the output",
|
|
5305
|
+
"name": "include-sensitive",
|
|
5369
5306
|
"allowNo": false,
|
|
5370
5307
|
"type": "boolean"
|
|
5308
|
+
},
|
|
5309
|
+
"include-file-content": {
|
|
5310
|
+
"description": "Display files content in the output",
|
|
5311
|
+
"name": "include-file-content",
|
|
5312
|
+
"allowNo": false,
|
|
5313
|
+
"type": "boolean"
|
|
5314
|
+
},
|
|
5315
|
+
"environment": {
|
|
5316
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5317
|
+
"name": "environment",
|
|
5318
|
+
"hasDynamicHelp": false,
|
|
5319
|
+
"multiple": true,
|
|
5320
|
+
"type": "option"
|
|
5321
|
+
},
|
|
5322
|
+
"format": {
|
|
5323
|
+
"description": "Output format",
|
|
5324
|
+
"name": "format",
|
|
5325
|
+
"default": "short",
|
|
5326
|
+
"hasDynamicHelp": false,
|
|
5327
|
+
"multiple": false,
|
|
5328
|
+
"options": [
|
|
5329
|
+
"long",
|
|
5330
|
+
"short"
|
|
5331
|
+
],
|
|
5332
|
+
"type": "option"
|
|
5333
|
+
},
|
|
5334
|
+
"scope": {
|
|
5335
|
+
"description": "Scope for the variable",
|
|
5336
|
+
"name": "scope",
|
|
5337
|
+
"default": "project",
|
|
5338
|
+
"hasDynamicHelp": false,
|
|
5339
|
+
"multiple": false,
|
|
5340
|
+
"options": [
|
|
5341
|
+
"project",
|
|
5342
|
+
"account"
|
|
5343
|
+
],
|
|
5344
|
+
"type": "option"
|
|
5371
5345
|
}
|
|
5372
5346
|
},
|
|
5373
5347
|
"hasDynamicHelp": false,
|
|
5374
5348
|
"hiddenAliases": [],
|
|
5375
|
-
"id": "env:
|
|
5349
|
+
"id": "env:list",
|
|
5376
5350
|
"pluginAlias": "eas-cli",
|
|
5377
5351
|
"pluginName": "eas-cli",
|
|
5378
5352
|
"pluginType": "core",
|
|
@@ -5427,69 +5401,46 @@
|
|
|
5427
5401
|
"build",
|
|
5428
5402
|
"commands",
|
|
5429
5403
|
"env",
|
|
5430
|
-
"
|
|
5404
|
+
"list.js"
|
|
5431
5405
|
]
|
|
5432
5406
|
},
|
|
5433
|
-
"env:
|
|
5407
|
+
"env:pull": {
|
|
5434
5408
|
"aliases": [],
|
|
5435
5409
|
"args": {
|
|
5436
5410
|
"environment": {
|
|
5437
|
-
"description": "
|
|
5411
|
+
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
5438
5412
|
"name": "environment",
|
|
5439
5413
|
"required": false
|
|
5440
5414
|
}
|
|
5441
5415
|
},
|
|
5442
|
-
"description": "
|
|
5416
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
5443
5417
|
"flags": {
|
|
5444
|
-
"variable-name": {
|
|
5445
|
-
"description": "Name of the variable",
|
|
5446
|
-
"name": "variable-name",
|
|
5447
|
-
"hasDynamicHelp": false,
|
|
5448
|
-
"multiple": false,
|
|
5449
|
-
"type": "option"
|
|
5450
|
-
},
|
|
5451
|
-
"variable-environment": {
|
|
5452
|
-
"description": "Current environment of the variable",
|
|
5453
|
-
"name": "variable-environment",
|
|
5454
|
-
"hasDynamicHelp": false,
|
|
5455
|
-
"multiple": false,
|
|
5456
|
-
"type": "option"
|
|
5457
|
-
},
|
|
5458
|
-
"format": {
|
|
5459
|
-
"description": "Output format",
|
|
5460
|
-
"name": "format",
|
|
5461
|
-
"default": "short",
|
|
5462
|
-
"hasDynamicHelp": false,
|
|
5463
|
-
"multiple": false,
|
|
5464
|
-
"options": [
|
|
5465
|
-
"long",
|
|
5466
|
-
"short"
|
|
5467
|
-
],
|
|
5468
|
-
"type": "option"
|
|
5469
|
-
},
|
|
5470
|
-
"scope": {
|
|
5471
|
-
"description": "Scope for the variable",
|
|
5472
|
-
"name": "scope",
|
|
5473
|
-
"default": "project",
|
|
5474
|
-
"hasDynamicHelp": false,
|
|
5475
|
-
"multiple": false,
|
|
5476
|
-
"options": [
|
|
5477
|
-
"project",
|
|
5478
|
-
"account"
|
|
5479
|
-
],
|
|
5480
|
-
"type": "option"
|
|
5481
|
-
},
|
|
5482
5418
|
"non-interactive": {
|
|
5483
5419
|
"description": "Run the command in non-interactive mode.",
|
|
5484
5420
|
"name": "non-interactive",
|
|
5485
5421
|
"noCacheDefault": true,
|
|
5486
5422
|
"allowNo": false,
|
|
5487
5423
|
"type": "boolean"
|
|
5424
|
+
},
|
|
5425
|
+
"environment": {
|
|
5426
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5427
|
+
"name": "environment",
|
|
5428
|
+
"hasDynamicHelp": false,
|
|
5429
|
+
"multiple": false,
|
|
5430
|
+
"type": "option"
|
|
5431
|
+
},
|
|
5432
|
+
"path": {
|
|
5433
|
+
"description": "Path to the result `.env` file",
|
|
5434
|
+
"name": "path",
|
|
5435
|
+
"default": ".env.local",
|
|
5436
|
+
"hasDynamicHelp": false,
|
|
5437
|
+
"multiple": false,
|
|
5438
|
+
"type": "option"
|
|
5488
5439
|
}
|
|
5489
5440
|
},
|
|
5490
5441
|
"hasDynamicHelp": false,
|
|
5491
5442
|
"hiddenAliases": [],
|
|
5492
|
-
"id": "env:
|
|
5443
|
+
"id": "env:pull",
|
|
5493
5444
|
"pluginAlias": "eas-cli",
|
|
5494
5445
|
"pluginName": "eas-cli",
|
|
5495
5446
|
"pluginType": "core",
|
|
@@ -5537,39 +5488,28 @@
|
|
|
5537
5488
|
},
|
|
5538
5489
|
"contextDefinition": {
|
|
5539
5490
|
"projectId": {},
|
|
5540
|
-
"loggedIn": {}
|
|
5491
|
+
"loggedIn": {},
|
|
5492
|
+
"projectDir": {}
|
|
5541
5493
|
},
|
|
5542
5494
|
"isESM": false,
|
|
5543
5495
|
"relativePath": [
|
|
5544
5496
|
"build",
|
|
5545
5497
|
"commands",
|
|
5546
5498
|
"env",
|
|
5547
|
-
"
|
|
5499
|
+
"pull.js"
|
|
5548
5500
|
]
|
|
5549
5501
|
},
|
|
5550
|
-
"env:
|
|
5502
|
+
"env:push": {
|
|
5551
5503
|
"aliases": [],
|
|
5552
5504
|
"args": {
|
|
5553
5505
|
"environment": {
|
|
5554
|
-
"description": "Environment to
|
|
5506
|
+
"description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
|
|
5555
5507
|
"name": "environment",
|
|
5556
5508
|
"required": false
|
|
5557
5509
|
}
|
|
5558
5510
|
},
|
|
5559
|
-
"description": "
|
|
5511
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
5560
5512
|
"flags": {
|
|
5561
|
-
"include-sensitive": {
|
|
5562
|
-
"description": "Display sensitive values in the output",
|
|
5563
|
-
"name": "include-sensitive",
|
|
5564
|
-
"allowNo": false,
|
|
5565
|
-
"type": "boolean"
|
|
5566
|
-
},
|
|
5567
|
-
"include-file-content": {
|
|
5568
|
-
"description": "Display files content in the output",
|
|
5569
|
-
"name": "include-file-content",
|
|
5570
|
-
"allowNo": false,
|
|
5571
|
-
"type": "boolean"
|
|
5572
|
-
},
|
|
5573
5513
|
"environment": {
|
|
5574
5514
|
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5575
5515
|
"name": "environment",
|
|
@@ -5577,34 +5517,24 @@
|
|
|
5577
5517
|
"multiple": true,
|
|
5578
5518
|
"type": "option"
|
|
5579
5519
|
},
|
|
5580
|
-
"
|
|
5581
|
-
"description": "
|
|
5582
|
-
"name": "
|
|
5583
|
-
"default": "
|
|
5520
|
+
"path": {
|
|
5521
|
+
"description": "Path to the input `.env` file",
|
|
5522
|
+
"name": "path",
|
|
5523
|
+
"default": ".env.local",
|
|
5584
5524
|
"hasDynamicHelp": false,
|
|
5585
5525
|
"multiple": false,
|
|
5586
|
-
"options": [
|
|
5587
|
-
"long",
|
|
5588
|
-
"short"
|
|
5589
|
-
],
|
|
5590
5526
|
"type": "option"
|
|
5591
5527
|
},
|
|
5592
|
-
"
|
|
5593
|
-
"description": "
|
|
5594
|
-
"name": "
|
|
5595
|
-
"
|
|
5596
|
-
"
|
|
5597
|
-
"multiple": false,
|
|
5598
|
-
"options": [
|
|
5599
|
-
"project",
|
|
5600
|
-
"account"
|
|
5601
|
-
],
|
|
5602
|
-
"type": "option"
|
|
5528
|
+
"force": {
|
|
5529
|
+
"description": "Skip confirmation and automatically override existing variables",
|
|
5530
|
+
"name": "force",
|
|
5531
|
+
"allowNo": false,
|
|
5532
|
+
"type": "boolean"
|
|
5603
5533
|
}
|
|
5604
5534
|
},
|
|
5605
5535
|
"hasDynamicHelp": false,
|
|
5606
5536
|
"hiddenAliases": [],
|
|
5607
|
-
"id": "env:
|
|
5537
|
+
"id": "env:push",
|
|
5608
5538
|
"pluginAlias": "eas-cli",
|
|
5609
5539
|
"pluginName": "eas-cli",
|
|
5610
5540
|
"pluginType": "core",
|
|
@@ -5659,46 +5589,101 @@
|
|
|
5659
5589
|
"build",
|
|
5660
5590
|
"commands",
|
|
5661
5591
|
"env",
|
|
5662
|
-
"
|
|
5592
|
+
"push.js"
|
|
5663
5593
|
]
|
|
5664
5594
|
},
|
|
5665
|
-
"env:
|
|
5595
|
+
"env:update": {
|
|
5666
5596
|
"aliases": [],
|
|
5667
5597
|
"args": {
|
|
5668
5598
|
"environment": {
|
|
5669
|
-
"description": "
|
|
5599
|
+
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
5670
5600
|
"name": "environment",
|
|
5671
5601
|
"required": false
|
|
5672
5602
|
}
|
|
5673
5603
|
},
|
|
5674
|
-
"description": "
|
|
5604
|
+
"description": "update an environment variable on the current project or account",
|
|
5675
5605
|
"flags": {
|
|
5676
|
-
"
|
|
5677
|
-
"description": "
|
|
5678
|
-
"name": "
|
|
5679
|
-
"
|
|
5680
|
-
"
|
|
5681
|
-
"type": "
|
|
5606
|
+
"variable-name": {
|
|
5607
|
+
"description": "Current name of the variable",
|
|
5608
|
+
"name": "variable-name",
|
|
5609
|
+
"hasDynamicHelp": false,
|
|
5610
|
+
"multiple": false,
|
|
5611
|
+
"type": "option"
|
|
5682
5612
|
},
|
|
5683
|
-
"environment": {
|
|
5684
|
-
"description": "
|
|
5685
|
-
"name": "environment",
|
|
5613
|
+
"variable-environment": {
|
|
5614
|
+
"description": "Current environment of the variable to update",
|
|
5615
|
+
"name": "variable-environment",
|
|
5686
5616
|
"hasDynamicHelp": false,
|
|
5687
5617
|
"multiple": false,
|
|
5688
5618
|
"type": "option"
|
|
5689
5619
|
},
|
|
5690
|
-
"
|
|
5691
|
-
"description": "
|
|
5692
|
-
"name": "
|
|
5693
|
-
"
|
|
5620
|
+
"name": {
|
|
5621
|
+
"description": "New name of the variable",
|
|
5622
|
+
"name": "name",
|
|
5623
|
+
"hasDynamicHelp": false,
|
|
5624
|
+
"multiple": false,
|
|
5625
|
+
"type": "option"
|
|
5626
|
+
},
|
|
5627
|
+
"value": {
|
|
5628
|
+
"description": "New value or the variable",
|
|
5629
|
+
"name": "value",
|
|
5630
|
+
"hasDynamicHelp": false,
|
|
5631
|
+
"multiple": false,
|
|
5632
|
+
"type": "option"
|
|
5633
|
+
},
|
|
5634
|
+
"type": {
|
|
5635
|
+
"description": "The type of variable",
|
|
5636
|
+
"name": "type",
|
|
5637
|
+
"hasDynamicHelp": false,
|
|
5638
|
+
"multiple": false,
|
|
5639
|
+
"options": [
|
|
5640
|
+
"string",
|
|
5641
|
+
"file"
|
|
5642
|
+
],
|
|
5643
|
+
"type": "option"
|
|
5644
|
+
},
|
|
5645
|
+
"visibility": {
|
|
5646
|
+
"description": "Visibility of the variable",
|
|
5647
|
+
"name": "visibility",
|
|
5648
|
+
"hasDynamicHelp": false,
|
|
5649
|
+
"multiple": false,
|
|
5650
|
+
"options": [
|
|
5651
|
+
"plaintext",
|
|
5652
|
+
"sensitive",
|
|
5653
|
+
"secret"
|
|
5654
|
+
],
|
|
5655
|
+
"type": "option"
|
|
5656
|
+
},
|
|
5657
|
+
"scope": {
|
|
5658
|
+
"description": "Scope for the variable",
|
|
5659
|
+
"name": "scope",
|
|
5660
|
+
"default": "project",
|
|
5694
5661
|
"hasDynamicHelp": false,
|
|
5695
5662
|
"multiple": false,
|
|
5663
|
+
"options": [
|
|
5664
|
+
"project",
|
|
5665
|
+
"account"
|
|
5666
|
+
],
|
|
5667
|
+
"type": "option"
|
|
5668
|
+
},
|
|
5669
|
+
"environment": {
|
|
5670
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5671
|
+
"name": "environment",
|
|
5672
|
+
"hasDynamicHelp": false,
|
|
5673
|
+
"multiple": true,
|
|
5696
5674
|
"type": "option"
|
|
5675
|
+
},
|
|
5676
|
+
"non-interactive": {
|
|
5677
|
+
"description": "Run the command in non-interactive mode.",
|
|
5678
|
+
"name": "non-interactive",
|
|
5679
|
+
"noCacheDefault": true,
|
|
5680
|
+
"allowNo": false,
|
|
5681
|
+
"type": "boolean"
|
|
5697
5682
|
}
|
|
5698
5683
|
},
|
|
5699
5684
|
"hasDynamicHelp": false,
|
|
5700
5685
|
"hiddenAliases": [],
|
|
5701
|
-
"id": "env:
|
|
5686
|
+
"id": "env:update",
|
|
5702
5687
|
"pluginAlias": "eas-cli",
|
|
5703
5688
|
"pluginName": "eas-cli",
|
|
5704
5689
|
"pluginType": "core",
|
|
@@ -5746,57 +5731,97 @@
|
|
|
5746
5731
|
},
|
|
5747
5732
|
"contextDefinition": {
|
|
5748
5733
|
"projectId": {},
|
|
5749
|
-
"
|
|
5750
|
-
"
|
|
5734
|
+
"analytics": {},
|
|
5735
|
+
"loggedIn": {}
|
|
5751
5736
|
},
|
|
5752
5737
|
"isESM": false,
|
|
5753
5738
|
"relativePath": [
|
|
5754
5739
|
"build",
|
|
5755
5740
|
"commands",
|
|
5756
5741
|
"env",
|
|
5757
|
-
"
|
|
5742
|
+
"update.js"
|
|
5758
5743
|
]
|
|
5759
5744
|
},
|
|
5760
|
-
"
|
|
5745
|
+
"fingerprint:compare": {
|
|
5761
5746
|
"aliases": [],
|
|
5762
5747
|
"args": {
|
|
5763
|
-
"
|
|
5764
|
-
"description": "
|
|
5765
|
-
"name": "
|
|
5748
|
+
"hash1": {
|
|
5749
|
+
"description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
|
|
5750
|
+
"name": "hash1",
|
|
5751
|
+
"required": false
|
|
5752
|
+
},
|
|
5753
|
+
"hash2": {
|
|
5754
|
+
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
5755
|
+
"name": "hash2",
|
|
5766
5756
|
"required": false
|
|
5767
5757
|
}
|
|
5768
5758
|
},
|
|
5769
|
-
"description": "
|
|
5759
|
+
"description": "compare fingerprints of the current project, builds, and updates",
|
|
5760
|
+
"examples": [
|
|
5761
|
+
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
5762
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
5763
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
5764
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
5765
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
5766
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
5767
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
5768
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
5769
|
+
],
|
|
5770
5770
|
"flags": {
|
|
5771
|
-
"
|
|
5772
|
-
"
|
|
5773
|
-
|
|
5771
|
+
"build-id": {
|
|
5772
|
+
"aliases": [
|
|
5773
|
+
"buildId"
|
|
5774
|
+
],
|
|
5775
|
+
"description": "Compare the fingerprint with the build with the specified ID",
|
|
5776
|
+
"name": "build-id",
|
|
5774
5777
|
"hasDynamicHelp": false,
|
|
5775
5778
|
"multiple": true,
|
|
5776
5779
|
"type": "option"
|
|
5777
5780
|
},
|
|
5778
|
-
"
|
|
5779
|
-
"
|
|
5780
|
-
|
|
5781
|
-
|
|
5781
|
+
"update-id": {
|
|
5782
|
+
"aliases": [
|
|
5783
|
+
"updateId"
|
|
5784
|
+
],
|
|
5785
|
+
"description": "Compare the fingerprint with the update with the specified ID",
|
|
5786
|
+
"name": "update-id",
|
|
5787
|
+
"hasDynamicHelp": false,
|
|
5788
|
+
"multiple": true,
|
|
5789
|
+
"type": "option"
|
|
5790
|
+
},
|
|
5791
|
+
"open": {
|
|
5792
|
+
"description": "Open the fingerprint comparison in the browser",
|
|
5793
|
+
"name": "open",
|
|
5794
|
+
"allowNo": false,
|
|
5795
|
+
"type": "boolean"
|
|
5796
|
+
},
|
|
5797
|
+
"environment": {
|
|
5798
|
+
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
5799
|
+
"name": "environment",
|
|
5782
5800
|
"hasDynamicHelp": false,
|
|
5783
5801
|
"multiple": false,
|
|
5784
5802
|
"type": "option"
|
|
5785
5803
|
},
|
|
5786
|
-
"
|
|
5787
|
-
"description": "
|
|
5788
|
-
"name": "
|
|
5804
|
+
"json": {
|
|
5805
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5806
|
+
"name": "json",
|
|
5807
|
+
"allowNo": false,
|
|
5808
|
+
"type": "boolean"
|
|
5809
|
+
},
|
|
5810
|
+
"non-interactive": {
|
|
5811
|
+
"description": "Run the command in non-interactive mode.",
|
|
5812
|
+
"name": "non-interactive",
|
|
5813
|
+
"noCacheDefault": true,
|
|
5789
5814
|
"allowNo": false,
|
|
5790
5815
|
"type": "boolean"
|
|
5791
5816
|
}
|
|
5792
5817
|
},
|
|
5793
5818
|
"hasDynamicHelp": false,
|
|
5794
5819
|
"hiddenAliases": [],
|
|
5795
|
-
"id": "
|
|
5820
|
+
"id": "fingerprint:compare",
|
|
5796
5821
|
"pluginAlias": "eas-cli",
|
|
5797
5822
|
"pluginName": "eas-cli",
|
|
5798
5823
|
"pluginType": "core",
|
|
5799
|
-
"strict":
|
|
5824
|
+
"strict": false,
|
|
5800
5825
|
"enableJsonFlag": false,
|
|
5801
5826
|
"ContextOptions": {
|
|
5802
5827
|
"LoggedIn": {
|
|
@@ -5840,96 +5865,67 @@
|
|
|
5840
5865
|
},
|
|
5841
5866
|
"contextDefinition": {
|
|
5842
5867
|
"projectId": {},
|
|
5843
|
-
"loggedIn": {}
|
|
5868
|
+
"loggedIn": {},
|
|
5869
|
+
"privateProjectConfig": {},
|
|
5870
|
+
"vcsClient": {},
|
|
5871
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
5844
5872
|
},
|
|
5845
5873
|
"isESM": false,
|
|
5846
5874
|
"relativePath": [
|
|
5847
5875
|
"build",
|
|
5848
5876
|
"commands",
|
|
5849
|
-
"
|
|
5850
|
-
"
|
|
5877
|
+
"fingerprint",
|
|
5878
|
+
"compare.js"
|
|
5851
5879
|
]
|
|
5852
5880
|
},
|
|
5853
|
-
"
|
|
5881
|
+
"fingerprint:generate": {
|
|
5854
5882
|
"aliases": [],
|
|
5855
|
-
"args": {
|
|
5856
|
-
|
|
5857
|
-
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
5883
|
+
"args": {},
|
|
5884
|
+
"description": "generate fingerprints from the current project",
|
|
5885
|
+
"examples": [
|
|
5886
|
+
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5887
|
+
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5888
|
+
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5889
|
+
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5890
|
+
],
|
|
5863
5891
|
"flags": {
|
|
5864
|
-
"
|
|
5865
|
-
"
|
|
5866
|
-
"name": "
|
|
5867
|
-
"hasDynamicHelp": false,
|
|
5868
|
-
"multiple": false,
|
|
5869
|
-
"type": "option"
|
|
5870
|
-
},
|
|
5871
|
-
"variable-environment": {
|
|
5872
|
-
"description": "Current environment of the variable to update",
|
|
5873
|
-
"name": "variable-environment",
|
|
5874
|
-
"hasDynamicHelp": false,
|
|
5875
|
-
"multiple": false,
|
|
5876
|
-
"type": "option"
|
|
5877
|
-
},
|
|
5878
|
-
"name": {
|
|
5879
|
-
"description": "New name of the variable",
|
|
5880
|
-
"name": "name",
|
|
5881
|
-
"hasDynamicHelp": false,
|
|
5882
|
-
"multiple": false,
|
|
5883
|
-
"type": "option"
|
|
5884
|
-
},
|
|
5885
|
-
"value": {
|
|
5886
|
-
"description": "New value or the variable",
|
|
5887
|
-
"name": "value",
|
|
5888
|
-
"hasDynamicHelp": false,
|
|
5889
|
-
"multiple": false,
|
|
5890
|
-
"type": "option"
|
|
5891
|
-
},
|
|
5892
|
-
"type": {
|
|
5893
|
-
"description": "The type of variable",
|
|
5894
|
-
"name": "type",
|
|
5892
|
+
"platform": {
|
|
5893
|
+
"char": "p",
|
|
5894
|
+
"name": "platform",
|
|
5895
5895
|
"hasDynamicHelp": false,
|
|
5896
5896
|
"multiple": false,
|
|
5897
5897
|
"options": [
|
|
5898
|
-
"
|
|
5899
|
-
"
|
|
5898
|
+
"android",
|
|
5899
|
+
"ios"
|
|
5900
5900
|
],
|
|
5901
5901
|
"type": "option"
|
|
5902
5902
|
},
|
|
5903
|
-
"
|
|
5904
|
-
"description": "
|
|
5905
|
-
"
|
|
5903
|
+
"environment": {
|
|
5904
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5905
|
+
"exclusive": [
|
|
5906
|
+
"build-profile"
|
|
5907
|
+
],
|
|
5908
|
+
"name": "environment",
|
|
5906
5909
|
"hasDynamicHelp": false,
|
|
5907
5910
|
"multiple": false,
|
|
5908
|
-
"options": [
|
|
5909
|
-
"plaintext",
|
|
5910
|
-
"sensitive",
|
|
5911
|
-
"secret"
|
|
5912
|
-
],
|
|
5913
5911
|
"type": "option"
|
|
5914
5912
|
},
|
|
5915
|
-
"
|
|
5916
|
-
"
|
|
5917
|
-
"
|
|
5918
|
-
"
|
|
5913
|
+
"build-profile": {
|
|
5914
|
+
"char": "e",
|
|
5915
|
+
"description": "Name of the build profile from eas.json.",
|
|
5916
|
+
"exclusive": [
|
|
5917
|
+
"environment"
|
|
5918
|
+
],
|
|
5919
|
+
"name": "build-profile",
|
|
5919
5920
|
"hasDynamicHelp": false,
|
|
5920
5921
|
"multiple": false,
|
|
5921
|
-
"options": [
|
|
5922
|
-
"project",
|
|
5923
|
-
"account"
|
|
5924
|
-
],
|
|
5925
5922
|
"type": "option"
|
|
5926
5923
|
},
|
|
5927
|
-
"
|
|
5928
|
-
"description": "
|
|
5929
|
-
"name": "
|
|
5930
|
-
"
|
|
5931
|
-
"
|
|
5932
|
-
"type": "option"
|
|
5924
|
+
"json": {
|
|
5925
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5926
|
+
"name": "json",
|
|
5927
|
+
"allowNo": false,
|
|
5928
|
+
"type": "boolean"
|
|
5933
5929
|
},
|
|
5934
5930
|
"non-interactive": {
|
|
5935
5931
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -5941,11 +5937,11 @@
|
|
|
5941
5937
|
},
|
|
5942
5938
|
"hasDynamicHelp": false,
|
|
5943
5939
|
"hiddenAliases": [],
|
|
5944
|
-
"id": "
|
|
5940
|
+
"id": "fingerprint:generate",
|
|
5945
5941
|
"pluginAlias": "eas-cli",
|
|
5946
5942
|
"pluginName": "eas-cli",
|
|
5947
5943
|
"pluginType": "core",
|
|
5948
|
-
"strict":
|
|
5944
|
+
"strict": false,
|
|
5949
5945
|
"enableJsonFlag": false,
|
|
5950
5946
|
"ContextOptions": {
|
|
5951
5947
|
"LoggedIn": {
|
|
@@ -5989,15 +5985,19 @@
|
|
|
5989
5985
|
},
|
|
5990
5986
|
"contextDefinition": {
|
|
5991
5987
|
"projectId": {},
|
|
5992
|
-
"
|
|
5993
|
-
"
|
|
5988
|
+
"loggedIn": {},
|
|
5989
|
+
"privateProjectConfig": {},
|
|
5990
|
+
"vcsClient": {},
|
|
5991
|
+
"getServerSideEnvironmentVariablesAsync": {},
|
|
5992
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5993
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5994
5994
|
},
|
|
5995
5995
|
"isESM": false,
|
|
5996
5996
|
"relativePath": [
|
|
5997
5997
|
"build",
|
|
5998
5998
|
"commands",
|
|
5999
|
-
"
|
|
6000
|
-
"
|
|
5999
|
+
"fingerprint",
|
|
6000
|
+
"generate.js"
|
|
6001
6001
|
]
|
|
6002
6002
|
},
|
|
6003
6003
|
"metadata:lint": {
|
|
@@ -7780,45 +7780,19 @@
|
|
|
7780
7780
|
"push.js"
|
|
7781
7781
|
]
|
|
7782
7782
|
},
|
|
7783
|
-
"
|
|
7783
|
+
"simulator:exec": {
|
|
7784
7784
|
"aliases": [],
|
|
7785
7785
|
"args": {},
|
|
7786
|
-
"
|
|
7787
|
-
|
|
7788
|
-
"name": "platform",
|
|
7789
|
-
"required": true,
|
|
7790
|
-
"hasDynamicHelp": false,
|
|
7791
|
-
"multiple": false,
|
|
7792
|
-
"options": [
|
|
7793
|
-
"android",
|
|
7794
|
-
"ios"
|
|
7795
|
-
],
|
|
7796
|
-
"type": "option"
|
|
7797
|
-
},
|
|
7798
|
-
"profile": {
|
|
7799
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7800
|
-
"name": "profile",
|
|
7801
|
-
"hasDynamicHelp": false,
|
|
7802
|
-
"multiple": false,
|
|
7803
|
-
"type": "option"
|
|
7804
|
-
},
|
|
7805
|
-
"id": {
|
|
7806
|
-
"description": "ID of the build to submit",
|
|
7807
|
-
"name": "id",
|
|
7808
|
-
"required": true,
|
|
7809
|
-
"hasDynamicHelp": false,
|
|
7810
|
-
"multiple": false,
|
|
7811
|
-
"type": "option"
|
|
7812
|
-
}
|
|
7813
|
-
},
|
|
7786
|
+
"description": "[EXPERIMENTAL] execute a simulator command with .env.eas-simulator environment loaded",
|
|
7787
|
+
"flags": {},
|
|
7814
7788
|
"hasDynamicHelp": false,
|
|
7815
7789
|
"hidden": true,
|
|
7816
7790
|
"hiddenAliases": [],
|
|
7817
|
-
"id": "
|
|
7791
|
+
"id": "simulator:exec",
|
|
7818
7792
|
"pluginAlias": "eas-cli",
|
|
7819
7793
|
"pluginName": "eas-cli",
|
|
7820
7794
|
"pluginType": "core",
|
|
7821
|
-
"strict":
|
|
7795
|
+
"strict": false,
|
|
7822
7796
|
"enableJsonFlag": false,
|
|
7823
7797
|
"ContextOptions": {
|
|
7824
7798
|
"LoggedIn": {
|
|
@@ -7861,18 +7835,14 @@
|
|
|
7861
7835
|
}
|
|
7862
7836
|
},
|
|
7863
7837
|
"contextDefinition": {
|
|
7864
|
-
"
|
|
7865
|
-
"privateProjectConfig": {},
|
|
7866
|
-
"projectDir": {},
|
|
7867
|
-
"analytics": {},
|
|
7868
|
-
"vcsClient": {}
|
|
7838
|
+
"projectDir": {}
|
|
7869
7839
|
},
|
|
7870
7840
|
"isESM": false,
|
|
7871
7841
|
"relativePath": [
|
|
7872
7842
|
"build",
|
|
7873
7843
|
"commands",
|
|
7874
|
-
"
|
|
7875
|
-
"
|
|
7844
|
+
"simulator",
|
|
7845
|
+
"exec.js"
|
|
7876
7846
|
]
|
|
7877
7847
|
},
|
|
7878
7848
|
"simulator:get": {
|
|
@@ -7881,9 +7851,8 @@
|
|
|
7881
7851
|
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7882
7852
|
"flags": {
|
|
7883
7853
|
"id": {
|
|
7884
|
-
"description": "Device run session ID",
|
|
7854
|
+
"description": "Device run session ID. Defaults to .env.eas-simulator.",
|
|
7885
7855
|
"name": "id",
|
|
7886
|
-
"required": true,
|
|
7887
7856
|
"hasDynamicHelp": false,
|
|
7888
7857
|
"multiple": false,
|
|
7889
7858
|
"type": "option"
|
|
@@ -7952,7 +7921,8 @@
|
|
|
7952
7921
|
}
|
|
7953
7922
|
},
|
|
7954
7923
|
"contextDefinition": {
|
|
7955
|
-
"loggedIn": {}
|
|
7924
|
+
"loggedIn": {},
|
|
7925
|
+
"projectDir": {}
|
|
7956
7926
|
},
|
|
7957
7927
|
"isESM": false,
|
|
7958
7928
|
"relativePath": [
|
|
@@ -8129,6 +8099,31 @@
|
|
|
8129
8099
|
"multiple": false,
|
|
8130
8100
|
"type": "option"
|
|
8131
8101
|
},
|
|
8102
|
+
"max-duration-minutes": {
|
|
8103
|
+
"description": "Maximum duration of the device run session in minutes before it is automatically stopped. Only customizable on paid plans. Defaults to a value derived from the job run priority when omitted.",
|
|
8104
|
+
"name": "max-duration-minutes",
|
|
8105
|
+
"hasDynamicHelp": false,
|
|
8106
|
+
"multiple": false,
|
|
8107
|
+
"type": "option"
|
|
8108
|
+
},
|
|
8109
|
+
"force": {
|
|
8110
|
+
"description": "[default: true] Create a new device session even when an existing simulator session is present in the environment.",
|
|
8111
|
+
"name": "force",
|
|
8112
|
+
"allowNo": true,
|
|
8113
|
+
"type": "boolean"
|
|
8114
|
+
},
|
|
8115
|
+
"out-config-type": {
|
|
8116
|
+
"description": "How to output simulator connection configuration. Use \"env\" to print shell exports, or \"dotenv\" to write .env.eas-simulator.",
|
|
8117
|
+
"name": "out-config-type",
|
|
8118
|
+
"default": "dotenv",
|
|
8119
|
+
"hasDynamicHelp": false,
|
|
8120
|
+
"multiple": false,
|
|
8121
|
+
"options": [
|
|
8122
|
+
"env",
|
|
8123
|
+
"dotenv"
|
|
8124
|
+
],
|
|
8125
|
+
"type": "option"
|
|
8126
|
+
},
|
|
8132
8127
|
"json": {
|
|
8133
8128
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8134
8129
|
"name": "json",
|
|
@@ -8194,6 +8189,7 @@
|
|
|
8194
8189
|
},
|
|
8195
8190
|
"contextDefinition": {
|
|
8196
8191
|
"projectId": {},
|
|
8192
|
+
"projectDir": {},
|
|
8197
8193
|
"loggedIn": {}
|
|
8198
8194
|
},
|
|
8199
8195
|
"isESM": false,
|
|
@@ -8210,31 +8206,122 @@
|
|
|
8210
8206
|
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
8211
8207
|
"flags": {
|
|
8212
8208
|
"id": {
|
|
8213
|
-
"description": "Device run session ID",
|
|
8209
|
+
"description": "Device run session ID. Defaults to .env.eas-simulator.",
|
|
8210
|
+
"name": "id",
|
|
8211
|
+
"hasDynamicHelp": false,
|
|
8212
|
+
"multiple": false,
|
|
8213
|
+
"type": "option"
|
|
8214
|
+
},
|
|
8215
|
+
"json": {
|
|
8216
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8217
|
+
"name": "json",
|
|
8218
|
+
"allowNo": false,
|
|
8219
|
+
"type": "boolean"
|
|
8220
|
+
},
|
|
8221
|
+
"non-interactive": {
|
|
8222
|
+
"description": "Run the command in non-interactive mode.",
|
|
8223
|
+
"name": "non-interactive",
|
|
8224
|
+
"noCacheDefault": true,
|
|
8225
|
+
"allowNo": false,
|
|
8226
|
+
"type": "boolean"
|
|
8227
|
+
}
|
|
8228
|
+
},
|
|
8229
|
+
"hasDynamicHelp": false,
|
|
8230
|
+
"hidden": true,
|
|
8231
|
+
"hiddenAliases": [],
|
|
8232
|
+
"id": "simulator:stop",
|
|
8233
|
+
"pluginAlias": "eas-cli",
|
|
8234
|
+
"pluginName": "eas-cli",
|
|
8235
|
+
"pluginType": "core",
|
|
8236
|
+
"strict": true,
|
|
8237
|
+
"enableJsonFlag": false,
|
|
8238
|
+
"ContextOptions": {
|
|
8239
|
+
"LoggedIn": {
|
|
8240
|
+
"loggedIn": {}
|
|
8241
|
+
},
|
|
8242
|
+
"MaybeLoggedIn": {
|
|
8243
|
+
"maybeLoggedIn": {}
|
|
8244
|
+
},
|
|
8245
|
+
"DynamicLoggedIn": {
|
|
8246
|
+
"getDynamicLoggedInAsync": {}
|
|
8247
|
+
},
|
|
8248
|
+
"SessionManagment": {
|
|
8249
|
+
"sessionManager": {}
|
|
8250
|
+
},
|
|
8251
|
+
"OptionalProjectConfig": {
|
|
8252
|
+
"optionalPrivateProjectConfig": {}
|
|
8253
|
+
},
|
|
8254
|
+
"ProjectDir": {
|
|
8255
|
+
"projectDir": {}
|
|
8256
|
+
},
|
|
8257
|
+
"DynamicProjectConfig": {
|
|
8258
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
8259
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
8260
|
+
},
|
|
8261
|
+
"ProjectConfig": {
|
|
8262
|
+
"loggedIn": {},
|
|
8263
|
+
"privateProjectConfig": {}
|
|
8264
|
+
},
|
|
8265
|
+
"Analytics": {
|
|
8266
|
+
"analytics": {}
|
|
8267
|
+
},
|
|
8268
|
+
"Vcs": {
|
|
8269
|
+
"vcsClient": {}
|
|
8270
|
+
},
|
|
8271
|
+
"ServerSideEnvironmentVariables": {
|
|
8272
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
8273
|
+
},
|
|
8274
|
+
"ProjectId": {
|
|
8275
|
+
"projectId": {}
|
|
8276
|
+
}
|
|
8277
|
+
},
|
|
8278
|
+
"contextDefinition": {
|
|
8279
|
+
"loggedIn": {},
|
|
8280
|
+
"projectDir": {}
|
|
8281
|
+
},
|
|
8282
|
+
"isESM": false,
|
|
8283
|
+
"relativePath": [
|
|
8284
|
+
"build",
|
|
8285
|
+
"commands",
|
|
8286
|
+
"simulator",
|
|
8287
|
+
"stop.js"
|
|
8288
|
+
]
|
|
8289
|
+
},
|
|
8290
|
+
"submit:internal": {
|
|
8291
|
+
"aliases": [],
|
|
8292
|
+
"args": {},
|
|
8293
|
+
"flags": {
|
|
8294
|
+
"platform": {
|
|
8295
|
+
"name": "platform",
|
|
8296
|
+
"required": true,
|
|
8297
|
+
"hasDynamicHelp": false,
|
|
8298
|
+
"multiple": false,
|
|
8299
|
+
"options": [
|
|
8300
|
+
"android",
|
|
8301
|
+
"ios"
|
|
8302
|
+
],
|
|
8303
|
+
"type": "option"
|
|
8304
|
+
},
|
|
8305
|
+
"profile": {
|
|
8306
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
8307
|
+
"name": "profile",
|
|
8308
|
+
"hasDynamicHelp": false,
|
|
8309
|
+
"multiple": false,
|
|
8310
|
+
"type": "option"
|
|
8311
|
+
},
|
|
8312
|
+
"id": {
|
|
8313
|
+
"description": "ID of the build to submit",
|
|
8214
8314
|
"name": "id",
|
|
8215
8315
|
"required": true,
|
|
8216
8316
|
"hasDynamicHelp": false,
|
|
8217
8317
|
"multiple": false,
|
|
8218
8318
|
"type": "option"
|
|
8219
|
-
},
|
|
8220
|
-
"json": {
|
|
8221
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8222
|
-
"name": "json",
|
|
8223
|
-
"allowNo": false,
|
|
8224
|
-
"type": "boolean"
|
|
8225
|
-
},
|
|
8226
|
-
"non-interactive": {
|
|
8227
|
-
"description": "Run the command in non-interactive mode.",
|
|
8228
|
-
"name": "non-interactive",
|
|
8229
|
-
"noCacheDefault": true,
|
|
8230
|
-
"allowNo": false,
|
|
8231
|
-
"type": "boolean"
|
|
8232
8319
|
}
|
|
8233
8320
|
},
|
|
8234
8321
|
"hasDynamicHelp": false,
|
|
8235
8322
|
"hidden": true,
|
|
8236
8323
|
"hiddenAliases": [],
|
|
8237
|
-
"id": "
|
|
8324
|
+
"id": "submit:internal",
|
|
8238
8325
|
"pluginAlias": "eas-cli",
|
|
8239
8326
|
"pluginName": "eas-cli",
|
|
8240
8327
|
"pluginType": "core",
|
|
@@ -8281,14 +8368,18 @@
|
|
|
8281
8368
|
}
|
|
8282
8369
|
},
|
|
8283
8370
|
"contextDefinition": {
|
|
8284
|
-
"loggedIn": {}
|
|
8371
|
+
"loggedIn": {},
|
|
8372
|
+
"privateProjectConfig": {},
|
|
8373
|
+
"projectDir": {},
|
|
8374
|
+
"analytics": {},
|
|
8375
|
+
"vcsClient": {}
|
|
8285
8376
|
},
|
|
8286
8377
|
"isESM": false,
|
|
8287
8378
|
"relativePath": [
|
|
8288
8379
|
"build",
|
|
8289
8380
|
"commands",
|
|
8290
|
-
"
|
|
8291
|
-
"
|
|
8381
|
+
"submit",
|
|
8382
|
+
"internal.js"
|
|
8292
8383
|
]
|
|
8293
8384
|
},
|
|
8294
8385
|
"update:configure": {
|
|
@@ -9460,9 +9551,38 @@
|
|
|
9460
9551
|
},
|
|
9461
9552
|
"update:rollback": {
|
|
9462
9553
|
"aliases": [],
|
|
9463
|
-
"args": {
|
|
9464
|
-
|
|
9554
|
+
"args": {
|
|
9555
|
+
"groupId": {
|
|
9556
|
+
"description": "The ID of the update group to roll back. Must be the latest update for its branch and runtime version. The update group published before it is republished; if there is none, a roll back to the embedded update is published. Required in non-interactive mode.",
|
|
9557
|
+
"name": "groupId",
|
|
9558
|
+
"required": false
|
|
9559
|
+
}
|
|
9560
|
+
},
|
|
9561
|
+
"description": "roll back to an embedded update or an existing update",
|
|
9465
9562
|
"flags": {
|
|
9563
|
+
"message": {
|
|
9564
|
+
"char": "m",
|
|
9565
|
+
"description": "Short message describing the rollback update",
|
|
9566
|
+
"name": "message",
|
|
9567
|
+
"required": false,
|
|
9568
|
+
"hasDynamicHelp": false,
|
|
9569
|
+
"multiple": false,
|
|
9570
|
+
"type": "option"
|
|
9571
|
+
},
|
|
9572
|
+
"platform": {
|
|
9573
|
+
"char": "p",
|
|
9574
|
+
"name": "platform",
|
|
9575
|
+
"required": false,
|
|
9576
|
+
"default": "all",
|
|
9577
|
+
"hasDynamicHelp": false,
|
|
9578
|
+
"multiple": false,
|
|
9579
|
+
"options": [
|
|
9580
|
+
"android",
|
|
9581
|
+
"ios",
|
|
9582
|
+
"all"
|
|
9583
|
+
],
|
|
9584
|
+
"type": "option"
|
|
9585
|
+
},
|
|
9466
9586
|
"private-key-path": {
|
|
9467
9587
|
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9468
9588
|
"name": "private-key-path",
|
|
@@ -9470,6 +9590,19 @@
|
|
|
9470
9590
|
"hasDynamicHelp": false,
|
|
9471
9591
|
"multiple": false,
|
|
9472
9592
|
"type": "option"
|
|
9593
|
+
},
|
|
9594
|
+
"json": {
|
|
9595
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9596
|
+
"name": "json",
|
|
9597
|
+
"allowNo": false,
|
|
9598
|
+
"type": "boolean"
|
|
9599
|
+
},
|
|
9600
|
+
"non-interactive": {
|
|
9601
|
+
"description": "Run the command in non-interactive mode.",
|
|
9602
|
+
"name": "non-interactive",
|
|
9603
|
+
"noCacheDefault": true,
|
|
9604
|
+
"allowNo": false,
|
|
9605
|
+
"type": "boolean"
|
|
9473
9606
|
}
|
|
9474
9607
|
},
|
|
9475
9608
|
"hasDynamicHelp": false,
|
|
@@ -9520,7 +9653,10 @@
|
|
|
9520
9653
|
"projectId": {}
|
|
9521
9654
|
}
|
|
9522
9655
|
},
|
|
9523
|
-
"contextDefinition": {
|
|
9656
|
+
"contextDefinition": {
|
|
9657
|
+
"loggedIn": {},
|
|
9658
|
+
"privateProjectConfig": {}
|
|
9659
|
+
},
|
|
9524
9660
|
"isESM": false,
|
|
9525
9661
|
"relativePath": [
|
|
9526
9662
|
"build",
|
|
@@ -11550,28 +11686,193 @@
|
|
|
11550
11686
|
"disconnect.js"
|
|
11551
11687
|
]
|
|
11552
11688
|
},
|
|
11553
|
-
"integrations:asc:status": {
|
|
11689
|
+
"integrations:asc:status": {
|
|
11690
|
+
"aliases": [],
|
|
11691
|
+
"args": {},
|
|
11692
|
+
"description": "show the App Store Connect app link status for the current project",
|
|
11693
|
+
"flags": {
|
|
11694
|
+
"json": {
|
|
11695
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11696
|
+
"name": "json",
|
|
11697
|
+
"allowNo": false,
|
|
11698
|
+
"type": "boolean"
|
|
11699
|
+
},
|
|
11700
|
+
"non-interactive": {
|
|
11701
|
+
"description": "Run the command in non-interactive mode.",
|
|
11702
|
+
"name": "non-interactive",
|
|
11703
|
+
"noCacheDefault": true,
|
|
11704
|
+
"allowNo": false,
|
|
11705
|
+
"type": "boolean"
|
|
11706
|
+
}
|
|
11707
|
+
},
|
|
11708
|
+
"hasDynamicHelp": false,
|
|
11709
|
+
"hiddenAliases": [],
|
|
11710
|
+
"id": "integrations:asc:status",
|
|
11711
|
+
"pluginAlias": "eas-cli",
|
|
11712
|
+
"pluginName": "eas-cli",
|
|
11713
|
+
"pluginType": "core",
|
|
11714
|
+
"strict": true,
|
|
11715
|
+
"enableJsonFlag": false,
|
|
11716
|
+
"ContextOptions": {
|
|
11717
|
+
"LoggedIn": {
|
|
11718
|
+
"loggedIn": {}
|
|
11719
|
+
},
|
|
11720
|
+
"MaybeLoggedIn": {
|
|
11721
|
+
"maybeLoggedIn": {}
|
|
11722
|
+
},
|
|
11723
|
+
"DynamicLoggedIn": {
|
|
11724
|
+
"getDynamicLoggedInAsync": {}
|
|
11725
|
+
},
|
|
11726
|
+
"SessionManagment": {
|
|
11727
|
+
"sessionManager": {}
|
|
11728
|
+
},
|
|
11729
|
+
"OptionalProjectConfig": {
|
|
11730
|
+
"optionalPrivateProjectConfig": {}
|
|
11731
|
+
},
|
|
11732
|
+
"ProjectDir": {
|
|
11733
|
+
"projectDir": {}
|
|
11734
|
+
},
|
|
11735
|
+
"DynamicProjectConfig": {
|
|
11736
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
11737
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
11738
|
+
},
|
|
11739
|
+
"ProjectConfig": {
|
|
11740
|
+
"loggedIn": {},
|
|
11741
|
+
"privateProjectConfig": {}
|
|
11742
|
+
},
|
|
11743
|
+
"Analytics": {
|
|
11744
|
+
"analytics": {}
|
|
11745
|
+
},
|
|
11746
|
+
"Vcs": {
|
|
11747
|
+
"vcsClient": {}
|
|
11748
|
+
},
|
|
11749
|
+
"ServerSideEnvironmentVariables": {
|
|
11750
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
11751
|
+
},
|
|
11752
|
+
"ProjectId": {
|
|
11753
|
+
"projectId": {}
|
|
11754
|
+
}
|
|
11755
|
+
},
|
|
11756
|
+
"contextDefinition": {
|
|
11757
|
+
"projectId": {},
|
|
11758
|
+
"loggedIn": {}
|
|
11759
|
+
},
|
|
11760
|
+
"isESM": false,
|
|
11761
|
+
"relativePath": [
|
|
11762
|
+
"build",
|
|
11763
|
+
"commands",
|
|
11764
|
+
"integrations",
|
|
11765
|
+
"asc",
|
|
11766
|
+
"status.js"
|
|
11767
|
+
]
|
|
11768
|
+
},
|
|
11769
|
+
"integrations:convex:connect": {
|
|
11770
|
+
"aliases": [],
|
|
11771
|
+
"args": {},
|
|
11772
|
+
"description": "connect Convex to your Expo project",
|
|
11773
|
+
"flags": {
|
|
11774
|
+
"non-interactive": {
|
|
11775
|
+
"description": "Run the command in non-interactive mode.",
|
|
11776
|
+
"name": "non-interactive",
|
|
11777
|
+
"noCacheDefault": true,
|
|
11778
|
+
"allowNo": false,
|
|
11779
|
+
"type": "boolean"
|
|
11780
|
+
},
|
|
11781
|
+
"region": {
|
|
11782
|
+
"description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
|
|
11783
|
+
"name": "region",
|
|
11784
|
+
"hasDynamicHelp": false,
|
|
11785
|
+
"multiple": false,
|
|
11786
|
+
"options": [
|
|
11787
|
+
"aws-us-east-1",
|
|
11788
|
+
"aws-eu-west-1"
|
|
11789
|
+
],
|
|
11790
|
+
"type": "option"
|
|
11791
|
+
},
|
|
11792
|
+
"team-name": {
|
|
11793
|
+
"description": "Name for the new Convex team (defaults to EAS account name)",
|
|
11794
|
+
"name": "team-name",
|
|
11795
|
+
"hasDynamicHelp": false,
|
|
11796
|
+
"multiple": false,
|
|
11797
|
+
"type": "option"
|
|
11798
|
+
},
|
|
11799
|
+
"project-name": {
|
|
11800
|
+
"description": "Name for the Convex project (defaults to app slug)",
|
|
11801
|
+
"name": "project-name",
|
|
11802
|
+
"hasDynamicHelp": false,
|
|
11803
|
+
"multiple": false,
|
|
11804
|
+
"type": "option"
|
|
11805
|
+
}
|
|
11806
|
+
},
|
|
11807
|
+
"hasDynamicHelp": false,
|
|
11808
|
+
"hiddenAliases": [],
|
|
11809
|
+
"id": "integrations:convex:connect",
|
|
11810
|
+
"pluginAlias": "eas-cli",
|
|
11811
|
+
"pluginName": "eas-cli",
|
|
11812
|
+
"pluginType": "core",
|
|
11813
|
+
"strict": true,
|
|
11814
|
+
"enableJsonFlag": false,
|
|
11815
|
+
"ContextOptions": {
|
|
11816
|
+
"LoggedIn": {
|
|
11817
|
+
"loggedIn": {}
|
|
11818
|
+
},
|
|
11819
|
+
"MaybeLoggedIn": {
|
|
11820
|
+
"maybeLoggedIn": {}
|
|
11821
|
+
},
|
|
11822
|
+
"DynamicLoggedIn": {
|
|
11823
|
+
"getDynamicLoggedInAsync": {}
|
|
11824
|
+
},
|
|
11825
|
+
"SessionManagment": {
|
|
11826
|
+
"sessionManager": {}
|
|
11827
|
+
},
|
|
11828
|
+
"OptionalProjectConfig": {
|
|
11829
|
+
"optionalPrivateProjectConfig": {}
|
|
11830
|
+
},
|
|
11831
|
+
"ProjectDir": {
|
|
11832
|
+
"projectDir": {}
|
|
11833
|
+
},
|
|
11834
|
+
"DynamicProjectConfig": {
|
|
11835
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
11836
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
11837
|
+
},
|
|
11838
|
+
"ProjectConfig": {
|
|
11839
|
+
"loggedIn": {},
|
|
11840
|
+
"privateProjectConfig": {}
|
|
11841
|
+
},
|
|
11842
|
+
"Analytics": {
|
|
11843
|
+
"analytics": {}
|
|
11844
|
+
},
|
|
11845
|
+
"Vcs": {
|
|
11846
|
+
"vcsClient": {}
|
|
11847
|
+
},
|
|
11848
|
+
"ServerSideEnvironmentVariables": {
|
|
11849
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
11850
|
+
},
|
|
11851
|
+
"ProjectId": {
|
|
11852
|
+
"projectId": {}
|
|
11853
|
+
}
|
|
11854
|
+
},
|
|
11855
|
+
"contextDefinition": {
|
|
11856
|
+
"loggedIn": {},
|
|
11857
|
+
"privateProjectConfig": {}
|
|
11858
|
+
},
|
|
11859
|
+
"isESM": false,
|
|
11860
|
+
"relativePath": [
|
|
11861
|
+
"build",
|
|
11862
|
+
"commands",
|
|
11863
|
+
"integrations",
|
|
11864
|
+
"convex",
|
|
11865
|
+
"connect.js"
|
|
11866
|
+
]
|
|
11867
|
+
},
|
|
11868
|
+
"integrations:convex:dashboard": {
|
|
11554
11869
|
"aliases": [],
|
|
11555
11870
|
"args": {},
|
|
11556
|
-
"description": "
|
|
11557
|
-
"flags": {
|
|
11558
|
-
"json": {
|
|
11559
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11560
|
-
"name": "json",
|
|
11561
|
-
"allowNo": false,
|
|
11562
|
-
"type": "boolean"
|
|
11563
|
-
},
|
|
11564
|
-
"non-interactive": {
|
|
11565
|
-
"description": "Run the command in non-interactive mode.",
|
|
11566
|
-
"name": "non-interactive",
|
|
11567
|
-
"noCacheDefault": true,
|
|
11568
|
-
"allowNo": false,
|
|
11569
|
-
"type": "boolean"
|
|
11570
|
-
}
|
|
11571
|
-
},
|
|
11871
|
+
"description": "open the Convex dashboard for the linked Convex project",
|
|
11872
|
+
"flags": {},
|
|
11572
11873
|
"hasDynamicHelp": false,
|
|
11573
11874
|
"hiddenAliases": [],
|
|
11574
|
-
"id": "integrations:
|
|
11875
|
+
"id": "integrations:convex:dashboard",
|
|
11575
11876
|
"pluginAlias": "eas-cli",
|
|
11576
11877
|
"pluginName": "eas-cli",
|
|
11577
11878
|
"pluginType": "core",
|
|
@@ -11618,59 +11919,26 @@
|
|
|
11618
11919
|
}
|
|
11619
11920
|
},
|
|
11620
11921
|
"contextDefinition": {
|
|
11621
|
-
"
|
|
11622
|
-
"
|
|
11922
|
+
"loggedIn": {},
|
|
11923
|
+
"privateProjectConfig": {}
|
|
11623
11924
|
},
|
|
11624
11925
|
"isESM": false,
|
|
11625
11926
|
"relativePath": [
|
|
11626
11927
|
"build",
|
|
11627
11928
|
"commands",
|
|
11628
11929
|
"integrations",
|
|
11629
|
-
"
|
|
11630
|
-
"
|
|
11930
|
+
"convex",
|
|
11931
|
+
"dashboard.js"
|
|
11631
11932
|
]
|
|
11632
11933
|
},
|
|
11633
|
-
"integrations:convex:
|
|
11934
|
+
"integrations:convex:project": {
|
|
11634
11935
|
"aliases": [],
|
|
11635
11936
|
"args": {},
|
|
11636
|
-
"description": "
|
|
11637
|
-
"flags": {
|
|
11638
|
-
"non-interactive": {
|
|
11639
|
-
"description": "Run the command in non-interactive mode.",
|
|
11640
|
-
"name": "non-interactive",
|
|
11641
|
-
"noCacheDefault": true,
|
|
11642
|
-
"allowNo": false,
|
|
11643
|
-
"type": "boolean"
|
|
11644
|
-
},
|
|
11645
|
-
"region": {
|
|
11646
|
-
"description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
|
|
11647
|
-
"name": "region",
|
|
11648
|
-
"hasDynamicHelp": false,
|
|
11649
|
-
"multiple": false,
|
|
11650
|
-
"options": [
|
|
11651
|
-
"aws-us-east-1",
|
|
11652
|
-
"aws-eu-west-1"
|
|
11653
|
-
],
|
|
11654
|
-
"type": "option"
|
|
11655
|
-
},
|
|
11656
|
-
"team-name": {
|
|
11657
|
-
"description": "Name for the new Convex team (defaults to EAS account name)",
|
|
11658
|
-
"name": "team-name",
|
|
11659
|
-
"hasDynamicHelp": false,
|
|
11660
|
-
"multiple": false,
|
|
11661
|
-
"type": "option"
|
|
11662
|
-
},
|
|
11663
|
-
"project-name": {
|
|
11664
|
-
"description": "Name for the Convex project (defaults to app slug)",
|
|
11665
|
-
"name": "project-name",
|
|
11666
|
-
"hasDynamicHelp": false,
|
|
11667
|
-
"multiple": false,
|
|
11668
|
-
"type": "option"
|
|
11669
|
-
}
|
|
11670
|
-
},
|
|
11937
|
+
"description": "display the Convex project linked to the current Expo app",
|
|
11938
|
+
"flags": {},
|
|
11671
11939
|
"hasDynamicHelp": false,
|
|
11672
11940
|
"hiddenAliases": [],
|
|
11673
|
-
"id": "integrations:convex:
|
|
11941
|
+
"id": "integrations:convex:project",
|
|
11674
11942
|
"pluginAlias": "eas-cli",
|
|
11675
11943
|
"pluginName": "eas-cli",
|
|
11676
11944
|
"pluginType": "core",
|
|
@@ -11726,17 +11994,17 @@
|
|
|
11726
11994
|
"commands",
|
|
11727
11995
|
"integrations",
|
|
11728
11996
|
"convex",
|
|
11729
|
-
"
|
|
11997
|
+
"project.js"
|
|
11730
11998
|
]
|
|
11731
11999
|
},
|
|
11732
|
-
"integrations:convex:
|
|
12000
|
+
"integrations:convex:team": {
|
|
11733
12001
|
"aliases": [],
|
|
11734
12002
|
"args": {},
|
|
11735
|
-
"description": "
|
|
12003
|
+
"description": "display Convex teams linked to the current Expo app's owner account",
|
|
11736
12004
|
"flags": {},
|
|
11737
12005
|
"hasDynamicHelp": false,
|
|
11738
12006
|
"hiddenAliases": [],
|
|
11739
|
-
"id": "integrations:convex:
|
|
12007
|
+
"id": "integrations:convex:team",
|
|
11740
12008
|
"pluginAlias": "eas-cli",
|
|
11741
12009
|
"pluginName": "eas-cli",
|
|
11742
12010
|
"pluginType": "core",
|
|
@@ -11792,17 +12060,37 @@
|
|
|
11792
12060
|
"commands",
|
|
11793
12061
|
"integrations",
|
|
11794
12062
|
"convex",
|
|
11795
|
-
"
|
|
12063
|
+
"team.js"
|
|
11796
12064
|
]
|
|
11797
12065
|
},
|
|
11798
|
-
"
|
|
12066
|
+
"update:embedded:delete": {
|
|
11799
12067
|
"aliases": [],
|
|
11800
|
-
"args": {
|
|
11801
|
-
|
|
11802
|
-
|
|
12068
|
+
"args": {
|
|
12069
|
+
"id": {
|
|
12070
|
+
"description": "The ID of the embedded update (manifest UUID from app.manifest).",
|
|
12071
|
+
"name": "id",
|
|
12072
|
+
"required": true
|
|
12073
|
+
}
|
|
12074
|
+
},
|
|
12075
|
+
"description": "delete an embedded update registered with EAS Update",
|
|
12076
|
+
"flags": {
|
|
12077
|
+
"json": {
|
|
12078
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
12079
|
+
"name": "json",
|
|
12080
|
+
"allowNo": false,
|
|
12081
|
+
"type": "boolean"
|
|
12082
|
+
},
|
|
12083
|
+
"non-interactive": {
|
|
12084
|
+
"description": "Run the command in non-interactive mode.",
|
|
12085
|
+
"name": "non-interactive",
|
|
12086
|
+
"noCacheDefault": true,
|
|
12087
|
+
"allowNo": false,
|
|
12088
|
+
"type": "boolean"
|
|
12089
|
+
}
|
|
12090
|
+
},
|
|
11803
12091
|
"hasDynamicHelp": false,
|
|
11804
12092
|
"hiddenAliases": [],
|
|
11805
|
-
"id": "
|
|
12093
|
+
"id": "update:embedded:delete",
|
|
11806
12094
|
"pluginAlias": "eas-cli",
|
|
11807
12095
|
"pluginName": "eas-cli",
|
|
11808
12096
|
"pluginType": "core",
|
|
@@ -11849,26 +12137,79 @@
|
|
|
11849
12137
|
}
|
|
11850
12138
|
},
|
|
11851
12139
|
"contextDefinition": {
|
|
11852
|
-
"loggedIn": {}
|
|
11853
|
-
"privateProjectConfig": {}
|
|
12140
|
+
"loggedIn": {}
|
|
11854
12141
|
},
|
|
11855
12142
|
"isESM": false,
|
|
11856
12143
|
"relativePath": [
|
|
11857
12144
|
"build",
|
|
11858
12145
|
"commands",
|
|
11859
|
-
"
|
|
11860
|
-
"
|
|
11861
|
-
"
|
|
12146
|
+
"update",
|
|
12147
|
+
"embedded",
|
|
12148
|
+
"delete.js"
|
|
11862
12149
|
]
|
|
11863
12150
|
},
|
|
11864
|
-
"
|
|
12151
|
+
"update:embedded:list": {
|
|
11865
12152
|
"aliases": [],
|
|
11866
12153
|
"args": {},
|
|
11867
|
-
"description": "
|
|
11868
|
-
"flags": {
|
|
12154
|
+
"description": "list embedded updates registered with EAS Update for this project",
|
|
12155
|
+
"flags": {
|
|
12156
|
+
"platform": {
|
|
12157
|
+
"char": "p",
|
|
12158
|
+
"description": "Filter by platform",
|
|
12159
|
+
"name": "platform",
|
|
12160
|
+
"hasDynamicHelp": false,
|
|
12161
|
+
"multiple": false,
|
|
12162
|
+
"options": [
|
|
12163
|
+
"ios",
|
|
12164
|
+
"android"
|
|
12165
|
+
],
|
|
12166
|
+
"type": "option"
|
|
12167
|
+
},
|
|
12168
|
+
"runtime-version": {
|
|
12169
|
+
"description": "Filter by runtime version",
|
|
12170
|
+
"name": "runtime-version",
|
|
12171
|
+
"hasDynamicHelp": false,
|
|
12172
|
+
"multiple": false,
|
|
12173
|
+
"type": "option"
|
|
12174
|
+
},
|
|
12175
|
+
"channel": {
|
|
12176
|
+
"description": "Filter by channel name (pass \"all\" to skip the channel prompt)",
|
|
12177
|
+
"name": "channel",
|
|
12178
|
+
"hasDynamicHelp": false,
|
|
12179
|
+
"multiple": false,
|
|
12180
|
+
"type": "option"
|
|
12181
|
+
},
|
|
12182
|
+
"limit": {
|
|
12183
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
12184
|
+
"name": "limit",
|
|
12185
|
+
"hasDynamicHelp": false,
|
|
12186
|
+
"multiple": false,
|
|
12187
|
+
"type": "option"
|
|
12188
|
+
},
|
|
12189
|
+
"after-cursor": {
|
|
12190
|
+
"description": "Return items after this cursor (for pagination)",
|
|
12191
|
+
"name": "after-cursor",
|
|
12192
|
+
"hasDynamicHelp": false,
|
|
12193
|
+
"multiple": false,
|
|
12194
|
+
"type": "option"
|
|
12195
|
+
},
|
|
12196
|
+
"json": {
|
|
12197
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
12198
|
+
"name": "json",
|
|
12199
|
+
"allowNo": false,
|
|
12200
|
+
"type": "boolean"
|
|
12201
|
+
},
|
|
12202
|
+
"non-interactive": {
|
|
12203
|
+
"description": "Run the command in non-interactive mode.",
|
|
12204
|
+
"name": "non-interactive",
|
|
12205
|
+
"noCacheDefault": true,
|
|
12206
|
+
"allowNo": false,
|
|
12207
|
+
"type": "boolean"
|
|
12208
|
+
}
|
|
12209
|
+
},
|
|
11869
12210
|
"hasDynamicHelp": false,
|
|
11870
12211
|
"hiddenAliases": [],
|
|
11871
|
-
"id": "
|
|
12212
|
+
"id": "update:embedded:list",
|
|
11872
12213
|
"pluginAlias": "eas-cli",
|
|
11873
12214
|
"pluginName": "eas-cli",
|
|
11874
12215
|
"pluginType": "core",
|
|
@@ -11915,16 +12256,16 @@
|
|
|
11915
12256
|
}
|
|
11916
12257
|
},
|
|
11917
12258
|
"contextDefinition": {
|
|
11918
|
-
"
|
|
11919
|
-
"
|
|
12259
|
+
"projectId": {},
|
|
12260
|
+
"loggedIn": {}
|
|
11920
12261
|
},
|
|
11921
12262
|
"isESM": false,
|
|
11922
12263
|
"relativePath": [
|
|
11923
12264
|
"build",
|
|
11924
12265
|
"commands",
|
|
11925
|
-
"
|
|
11926
|
-
"
|
|
11927
|
-
"
|
|
12266
|
+
"update",
|
|
12267
|
+
"embedded",
|
|
12268
|
+
"list.js"
|
|
11928
12269
|
]
|
|
11929
12270
|
},
|
|
11930
12271
|
"update:embedded:upload": {
|
|
@@ -12056,6 +12397,85 @@
|
|
|
12056
12397
|
"upload.js"
|
|
12057
12398
|
]
|
|
12058
12399
|
},
|
|
12400
|
+
"update:embedded:view": {
|
|
12401
|
+
"aliases": [],
|
|
12402
|
+
"args": {
|
|
12403
|
+
"id": {
|
|
12404
|
+
"description": "The ID of the embedded update (manifest UUID from app.manifest).",
|
|
12405
|
+
"name": "id",
|
|
12406
|
+
"required": true
|
|
12407
|
+
}
|
|
12408
|
+
},
|
|
12409
|
+
"description": "view details of an embedded update registered with EAS Update",
|
|
12410
|
+
"flags": {
|
|
12411
|
+
"json": {
|
|
12412
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
12413
|
+
"name": "json",
|
|
12414
|
+
"allowNo": false,
|
|
12415
|
+
"type": "boolean"
|
|
12416
|
+
}
|
|
12417
|
+
},
|
|
12418
|
+
"hasDynamicHelp": false,
|
|
12419
|
+
"hiddenAliases": [],
|
|
12420
|
+
"id": "update:embedded:view",
|
|
12421
|
+
"pluginAlias": "eas-cli",
|
|
12422
|
+
"pluginName": "eas-cli",
|
|
12423
|
+
"pluginType": "core",
|
|
12424
|
+
"strict": true,
|
|
12425
|
+
"enableJsonFlag": false,
|
|
12426
|
+
"ContextOptions": {
|
|
12427
|
+
"LoggedIn": {
|
|
12428
|
+
"loggedIn": {}
|
|
12429
|
+
},
|
|
12430
|
+
"MaybeLoggedIn": {
|
|
12431
|
+
"maybeLoggedIn": {}
|
|
12432
|
+
},
|
|
12433
|
+
"DynamicLoggedIn": {
|
|
12434
|
+
"getDynamicLoggedInAsync": {}
|
|
12435
|
+
},
|
|
12436
|
+
"SessionManagment": {
|
|
12437
|
+
"sessionManager": {}
|
|
12438
|
+
},
|
|
12439
|
+
"OptionalProjectConfig": {
|
|
12440
|
+
"optionalPrivateProjectConfig": {}
|
|
12441
|
+
},
|
|
12442
|
+
"ProjectDir": {
|
|
12443
|
+
"projectDir": {}
|
|
12444
|
+
},
|
|
12445
|
+
"DynamicProjectConfig": {
|
|
12446
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
12447
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
12448
|
+
},
|
|
12449
|
+
"ProjectConfig": {
|
|
12450
|
+
"loggedIn": {},
|
|
12451
|
+
"privateProjectConfig": {}
|
|
12452
|
+
},
|
|
12453
|
+
"Analytics": {
|
|
12454
|
+
"analytics": {}
|
|
12455
|
+
},
|
|
12456
|
+
"Vcs": {
|
|
12457
|
+
"vcsClient": {}
|
|
12458
|
+
},
|
|
12459
|
+
"ServerSideEnvironmentVariables": {
|
|
12460
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
12461
|
+
},
|
|
12462
|
+
"ProjectId": {
|
|
12463
|
+
"projectId": {}
|
|
12464
|
+
}
|
|
12465
|
+
},
|
|
12466
|
+
"contextDefinition": {
|
|
12467
|
+
"projectId": {},
|
|
12468
|
+
"loggedIn": {}
|
|
12469
|
+
},
|
|
12470
|
+
"isESM": false,
|
|
12471
|
+
"relativePath": [
|
|
12472
|
+
"build",
|
|
12473
|
+
"commands",
|
|
12474
|
+
"update",
|
|
12475
|
+
"embedded",
|
|
12476
|
+
"view.js"
|
|
12477
|
+
]
|
|
12478
|
+
},
|
|
12059
12479
|
"integrations:convex:project:delete": {
|
|
12060
12480
|
"aliases": [],
|
|
12061
12481
|
"args": {},
|
|
@@ -12308,5 +12728,5 @@
|
|
|
12308
12728
|
]
|
|
12309
12729
|
}
|
|
12310
12730
|
},
|
|
12311
|
-
"version": "20.
|
|
12731
|
+
"version": "20.2.0"
|
|
12312
12732
|
}
|