eas-cli 18.9.0 → 18.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2801,6 +2801,9 @@
2801
2801
  "description": "download a simulator/emulator build by build ID or fingerprint hash",
2802
2802
  "flags": {
2803
2803
  "build-id": {
2804
+ "aliases": [
2805
+ "id"
2806
+ ],
2804
2807
  "description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
2805
2808
  "exclusive": [
2806
2809
  "fingerprint",
@@ -4149,6 +4152,235 @@
4149
4152
  "index.js"
4150
4153
  ]
4151
4154
  },
4155
+ "deploy:delete": {
4156
+ "aliases": [
4157
+ "worker:delete"
4158
+ ],
4159
+ "args": {
4160
+ "DEPLOYMENT_ID": {
4161
+ "name": "DEPLOYMENT_ID"
4162
+ }
4163
+ },
4164
+ "description": "Delete a deployment.",
4165
+ "flags": {
4166
+ "json": {
4167
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4168
+ "name": "json",
4169
+ "allowNo": false,
4170
+ "type": "boolean"
4171
+ },
4172
+ "non-interactive": {
4173
+ "description": "Run the command in non-interactive mode.",
4174
+ "name": "non-interactive",
4175
+ "noCacheDefault": true,
4176
+ "allowNo": false,
4177
+ "type": "boolean"
4178
+ }
4179
+ },
4180
+ "hasDynamicHelp": false,
4181
+ "hiddenAliases": [],
4182
+ "id": "deploy:delete",
4183
+ "pluginAlias": "eas-cli",
4184
+ "pluginName": "eas-cli",
4185
+ "pluginType": "core",
4186
+ "state": "preview",
4187
+ "strict": true,
4188
+ "enableJsonFlag": false,
4189
+ "ContextOptions": {
4190
+ "LoggedIn": {
4191
+ "loggedIn": {}
4192
+ },
4193
+ "MaybeLoggedIn": {
4194
+ "maybeLoggedIn": {}
4195
+ },
4196
+ "DynamicLoggedIn": {
4197
+ "getDynamicLoggedInAsync": {}
4198
+ },
4199
+ "SessionManagment": {
4200
+ "sessionManager": {}
4201
+ },
4202
+ "OptionalProjectConfig": {
4203
+ "optionalPrivateProjectConfig": {}
4204
+ },
4205
+ "ProjectDir": {
4206
+ "projectDir": {}
4207
+ },
4208
+ "DynamicProjectConfig": {
4209
+ "getDynamicPublicProjectConfigAsync": {},
4210
+ "getDynamicPrivateProjectConfigAsync": {}
4211
+ },
4212
+ "ProjectConfig": {
4213
+ "loggedIn": {},
4214
+ "privateProjectConfig": {}
4215
+ },
4216
+ "Analytics": {
4217
+ "analytics": {}
4218
+ },
4219
+ "Vcs": {
4220
+ "vcsClient": {}
4221
+ },
4222
+ "ServerSideEnvironmentVariables": {
4223
+ "getServerSideEnvironmentVariablesAsync": {}
4224
+ },
4225
+ "ProjectId": {
4226
+ "projectId": {}
4227
+ }
4228
+ },
4229
+ "contextDefinition": {
4230
+ "getDynamicPublicProjectConfigAsync": {},
4231
+ "getDynamicPrivateProjectConfigAsync": {},
4232
+ "projectDir": {},
4233
+ "loggedIn": {}
4234
+ },
4235
+ "isESM": false,
4236
+ "relativePath": [
4237
+ "build",
4238
+ "commands",
4239
+ "deploy",
4240
+ "delete.js"
4241
+ ]
4242
+ },
4243
+ "deploy": {
4244
+ "aliases": [
4245
+ "worker:deploy"
4246
+ ],
4247
+ "args": {},
4248
+ "description": "deploy your Expo Router web build and API Routes",
4249
+ "flags": {
4250
+ "prod": {
4251
+ "aliases": [
4252
+ "production"
4253
+ ],
4254
+ "description": "Create a new production deployment.",
4255
+ "name": "prod",
4256
+ "allowNo": false,
4257
+ "type": "boolean"
4258
+ },
4259
+ "alias": {
4260
+ "description": "Custom alias to assign to the new deployment.",
4261
+ "name": "alias",
4262
+ "hasDynamicHelp": false,
4263
+ "helpValue": "name",
4264
+ "multiple": false,
4265
+ "type": "option"
4266
+ },
4267
+ "id": {
4268
+ "description": "Custom unique identifier for the new deployment.",
4269
+ "name": "id",
4270
+ "hasDynamicHelp": false,
4271
+ "helpValue": "xyz123",
4272
+ "multiple": false,
4273
+ "type": "option"
4274
+ },
4275
+ "export-dir": {
4276
+ "description": "Directory where the Expo project was exported.",
4277
+ "name": "export-dir",
4278
+ "default": "dist",
4279
+ "hasDynamicHelp": false,
4280
+ "helpValue": "dir",
4281
+ "multiple": false,
4282
+ "type": "option"
4283
+ },
4284
+ "dry-run": {
4285
+ "description": "Outputs a tarball of the new deployment instead of uploading it.",
4286
+ "name": "dry-run",
4287
+ "allowNo": false,
4288
+ "type": "boolean"
4289
+ },
4290
+ "source-maps": {
4291
+ "description": "Include source maps in the deployment.",
4292
+ "name": "source-maps",
4293
+ "allowNo": true,
4294
+ "type": "boolean"
4295
+ },
4296
+ "environment": {
4297
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4298
+ "name": "environment",
4299
+ "hasDynamicHelp": false,
4300
+ "multiple": false,
4301
+ "type": "option"
4302
+ },
4303
+ "json": {
4304
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4305
+ "name": "json",
4306
+ "allowNo": false,
4307
+ "type": "boolean"
4308
+ },
4309
+ "non-interactive": {
4310
+ "description": "Run the command in non-interactive mode.",
4311
+ "name": "non-interactive",
4312
+ "noCacheDefault": true,
4313
+ "allowNo": false,
4314
+ "type": "boolean"
4315
+ }
4316
+ },
4317
+ "hasDynamicHelp": false,
4318
+ "hiddenAliases": [],
4319
+ "id": "deploy",
4320
+ "pluginAlias": "eas-cli",
4321
+ "pluginName": "eas-cli",
4322
+ "pluginType": "core",
4323
+ "state": "preview",
4324
+ "strict": true,
4325
+ "usage": [
4326
+ "deploy [options]",
4327
+ "deploy --prod"
4328
+ ],
4329
+ "enableJsonFlag": false,
4330
+ "ContextOptions": {
4331
+ "LoggedIn": {
4332
+ "loggedIn": {}
4333
+ },
4334
+ "MaybeLoggedIn": {
4335
+ "maybeLoggedIn": {}
4336
+ },
4337
+ "DynamicLoggedIn": {
4338
+ "getDynamicLoggedInAsync": {}
4339
+ },
4340
+ "SessionManagment": {
4341
+ "sessionManager": {}
4342
+ },
4343
+ "OptionalProjectConfig": {
4344
+ "optionalPrivateProjectConfig": {}
4345
+ },
4346
+ "ProjectDir": {
4347
+ "projectDir": {}
4348
+ },
4349
+ "DynamicProjectConfig": {
4350
+ "getDynamicPublicProjectConfigAsync": {},
4351
+ "getDynamicPrivateProjectConfigAsync": {}
4352
+ },
4353
+ "ProjectConfig": {
4354
+ "loggedIn": {},
4355
+ "privateProjectConfig": {}
4356
+ },
4357
+ "Analytics": {
4358
+ "analytics": {}
4359
+ },
4360
+ "Vcs": {
4361
+ "vcsClient": {}
4362
+ },
4363
+ "ServerSideEnvironmentVariables": {
4364
+ "getServerSideEnvironmentVariablesAsync": {}
4365
+ },
4366
+ "ProjectId": {
4367
+ "projectId": {}
4368
+ }
4369
+ },
4370
+ "contextDefinition": {
4371
+ "getDynamicPublicProjectConfigAsync": {},
4372
+ "getDynamicPrivateProjectConfigAsync": {},
4373
+ "projectDir": {},
4374
+ "loggedIn": {}
4375
+ },
4376
+ "isESM": false,
4377
+ "relativePath": [
4378
+ "build",
4379
+ "commands",
4380
+ "deploy",
4381
+ "index.js"
4382
+ ]
4383
+ },
4152
4384
  "device:create": {
4153
4385
  "aliases": [],
4154
4386
  "args": {},
@@ -4575,70 +4807,78 @@
4575
4807
  "view.js"
4576
4808
  ]
4577
4809
  },
4578
- "fingerprint:compare": {
4810
+ "env:create": {
4579
4811
  "aliases": [],
4580
4812
  "args": {
4581
- "hash1": {
4582
- "description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
4583
- "name": "hash1",
4584
- "required": false
4585
- },
4586
- "hash2": {
4587
- "description": "If two hashes are provided, HASH1 is compared against HASH2.",
4588
- "name": "hash2",
4813
+ "environment": {
4814
+ "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
4815
+ "name": "environment",
4589
4816
  "required": false
4590
4817
  }
4591
4818
  },
4592
- "description": "compare fingerprints of the current project, builds, and updates",
4593
- "examples": [
4594
- "$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
4595
- "$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
4596
- "$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
4597
- "$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
4598
- "$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
4599
- "$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
4600
- "$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
4601
- "$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
4602
- ],
4819
+ "description": "create an environment variable for the current project or account",
4603
4820
  "flags": {
4604
- "build-id": {
4605
- "aliases": [
4606
- "buildId"
4607
- ],
4608
- "description": "Compare the fingerprint with the build with the specified ID",
4609
- "name": "build-id",
4821
+ "name": {
4822
+ "description": "Name of the variable",
4823
+ "name": "name",
4610
4824
  "hasDynamicHelp": false,
4611
- "multiple": true,
4825
+ "multiple": false,
4612
4826
  "type": "option"
4613
4827
  },
4614
- "update-id": {
4615
- "aliases": [
4616
- "updateId"
4617
- ],
4618
- "description": "Compare the fingerprint with the update with the specified ID",
4619
- "name": "update-id",
4828
+ "value": {
4829
+ "description": "Text value or the variable",
4830
+ "name": "value",
4620
4831
  "hasDynamicHelp": false,
4621
- "multiple": true,
4832
+ "multiple": false,
4622
4833
  "type": "option"
4623
4834
  },
4624
- "open": {
4625
- "description": "Open the fingerprint comparison in the browser",
4626
- "name": "open",
4835
+ "force": {
4836
+ "description": "Overwrite existing variable",
4837
+ "name": "force",
4627
4838
  "allowNo": false,
4628
4839
  "type": "boolean"
4629
4840
  },
4630
- "environment": {
4631
- "description": "If generating a fingerprint from the local directory, use the specified environment.",
4632
- "name": "environment",
4841
+ "type": {
4842
+ "description": "The type of variable",
4843
+ "name": "type",
4633
4844
  "hasDynamicHelp": false,
4634
4845
  "multiple": false,
4846
+ "options": [
4847
+ "string",
4848
+ "file"
4849
+ ],
4635
4850
  "type": "option"
4636
4851
  },
4637
- "json": {
4638
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4639
- "name": "json",
4640
- "allowNo": false,
4641
- "type": "boolean"
4852
+ "visibility": {
4853
+ "description": "Visibility of the variable",
4854
+ "name": "visibility",
4855
+ "hasDynamicHelp": false,
4856
+ "multiple": false,
4857
+ "options": [
4858
+ "plaintext",
4859
+ "sensitive",
4860
+ "secret"
4861
+ ],
4862
+ "type": "option"
4863
+ },
4864
+ "scope": {
4865
+ "description": "Scope for the variable",
4866
+ "name": "scope",
4867
+ "default": "project",
4868
+ "hasDynamicHelp": false,
4869
+ "multiple": false,
4870
+ "options": [
4871
+ "project",
4872
+ "account"
4873
+ ],
4874
+ "type": "option"
4875
+ },
4876
+ "environment": {
4877
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4878
+ "name": "environment",
4879
+ "hasDynamicHelp": false,
4880
+ "multiple": true,
4881
+ "type": "option"
4642
4882
  },
4643
4883
  "non-interactive": {
4644
4884
  "description": "Run the command in non-interactive mode.",
@@ -4650,11 +4890,11 @@
4650
4890
  },
4651
4891
  "hasDynamicHelp": false,
4652
4892
  "hiddenAliases": [],
4653
- "id": "fingerprint:compare",
4893
+ "id": "env:create",
4654
4894
  "pluginAlias": "eas-cli",
4655
4895
  "pluginName": "eas-cli",
4656
4896
  "pluginType": "core",
4657
- "strict": false,
4897
+ "strict": true,
4658
4898
  "enableJsonFlag": false,
4659
4899
  "ContextOptions": {
4660
4900
  "LoggedIn": {
@@ -4698,68 +4938,54 @@
4698
4938
  },
4699
4939
  "contextDefinition": {
4700
4940
  "projectId": {},
4701
- "loggedIn": {},
4702
- "privateProjectConfig": {},
4703
- "vcsClient": {},
4704
- "getServerSideEnvironmentVariablesAsync": {}
4941
+ "analytics": {},
4942
+ "loggedIn": {}
4705
4943
  },
4706
4944
  "isESM": false,
4707
4945
  "relativePath": [
4708
4946
  "build",
4709
4947
  "commands",
4710
- "fingerprint",
4711
- "compare.js"
4948
+ "env",
4949
+ "create.js"
4712
4950
  ]
4713
4951
  },
4714
- "fingerprint:generate": {
4952
+ "env:delete": {
4715
4953
  "aliases": [],
4716
- "args": {},
4717
- "description": "generate fingerprints from the current project",
4718
- "examples": [
4719
- "$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
4720
- "$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
4721
- "$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
4722
- "$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
4723
- ],
4954
+ "args": {
4955
+ "environment": {
4956
+ "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
4957
+ "name": "environment",
4958
+ "required": false
4959
+ }
4960
+ },
4961
+ "description": "delete an environment variable for the current project or account",
4724
4962
  "flags": {
4725
- "platform": {
4726
- "char": "p",
4727
- "name": "platform",
4963
+ "variable-name": {
4964
+ "description": "Name of the variable to delete",
4965
+ "name": "variable-name",
4728
4966
  "hasDynamicHelp": false,
4729
4967
  "multiple": false,
4730
- "options": [
4731
- "android",
4732
- "ios"
4733
- ],
4734
4968
  "type": "option"
4735
4969
  },
4736
- "environment": {
4737
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4738
- "exclusive": [
4739
- "build-profile"
4740
- ],
4741
- "name": "environment",
4970
+ "variable-environment": {
4971
+ "description": "Current environment of the variable to delete",
4972
+ "name": "variable-environment",
4742
4973
  "hasDynamicHelp": false,
4743
4974
  "multiple": false,
4744
4975
  "type": "option"
4745
4976
  },
4746
- "build-profile": {
4747
- "char": "e",
4748
- "description": "Name of the build profile from eas.json.",
4749
- "exclusive": [
4750
- "environment"
4751
- ],
4752
- "name": "build-profile",
4977
+ "scope": {
4978
+ "description": "Scope for the variable",
4979
+ "name": "scope",
4980
+ "default": "project",
4753
4981
  "hasDynamicHelp": false,
4754
4982
  "multiple": false,
4983
+ "options": [
4984
+ "project",
4985
+ "account"
4986
+ ],
4755
4987
  "type": "option"
4756
4988
  },
4757
- "json": {
4758
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4759
- "name": "json",
4760
- "allowNo": false,
4761
- "type": "boolean"
4762
- },
4763
4989
  "non-interactive": {
4764
4990
  "description": "Run the command in non-interactive mode.",
4765
4991
  "name": "non-interactive",
@@ -4770,11 +4996,11 @@
4770
4996
  },
4771
4997
  "hasDynamicHelp": false,
4772
4998
  "hiddenAliases": [],
4773
- "id": "fingerprint:generate",
4999
+ "id": "env:delete",
4774
5000
  "pluginAlias": "eas-cli",
4775
5001
  "pluginName": "eas-cli",
4776
5002
  "pluginType": "core",
4777
- "strict": false,
5003
+ "strict": true,
4778
5004
  "enableJsonFlag": false,
4779
5005
  "ContextOptions": {
4780
5006
  "LoggedIn": {
@@ -4818,38 +5044,32 @@
4818
5044
  },
4819
5045
  "contextDefinition": {
4820
5046
  "projectId": {},
4821
- "loggedIn": {},
4822
- "privateProjectConfig": {},
4823
- "vcsClient": {},
4824
- "getServerSideEnvironmentVariablesAsync": {},
4825
- "getDynamicPublicProjectConfigAsync": {},
4826
- "getDynamicPrivateProjectConfigAsync": {}
5047
+ "loggedIn": {}
4827
5048
  },
4828
5049
  "isESM": false,
4829
5050
  "relativePath": [
4830
5051
  "build",
4831
5052
  "commands",
4832
- "fingerprint",
4833
- "generate.js"
5053
+ "env",
5054
+ "delete.js"
4834
5055
  ]
4835
5056
  },
4836
- "deploy:delete": {
4837
- "aliases": [
4838
- "worker:delete"
4839
- ],
5057
+ "env:exec": {
5058
+ "aliases": [],
4840
5059
  "args": {
4841
- "DEPLOYMENT_ID": {
4842
- "name": "DEPLOYMENT_ID"
5060
+ "environment": {
5061
+ "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
5062
+ "name": "environment",
5063
+ "required": true
5064
+ },
5065
+ "bash_command": {
5066
+ "description": "bash command to execute with the environment variables from the environment",
5067
+ "name": "bash_command",
5068
+ "required": true
4843
5069
  }
4844
5070
  },
4845
- "description": "Delete a deployment.",
5071
+ "description": "execute a command with environment variables from the selected environment",
4846
5072
  "flags": {
4847
- "json": {
4848
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4849
- "name": "json",
4850
- "allowNo": false,
4851
- "type": "boolean"
4852
- },
4853
5073
  "non-interactive": {
4854
5074
  "description": "Run the command in non-interactive mode.",
4855
5075
  "name": "non-interactive",
@@ -4860,11 +5080,10 @@
4860
5080
  },
4861
5081
  "hasDynamicHelp": false,
4862
5082
  "hiddenAliases": [],
4863
- "id": "deploy:delete",
5083
+ "id": "env:exec",
4864
5084
  "pluginAlias": "eas-cli",
4865
5085
  "pluginName": "eas-cli",
4866
5086
  "pluginType": "core",
4867
- "state": "preview",
4868
5087
  "strict": true,
4869
5088
  "enableJsonFlag": false,
4870
5089
  "ContextOptions": {
@@ -4908,85 +5127,66 @@
4908
5127
  }
4909
5128
  },
4910
5129
  "contextDefinition": {
4911
- "getDynamicPublicProjectConfigAsync": {},
4912
- "getDynamicPrivateProjectConfigAsync": {},
4913
- "projectDir": {},
5130
+ "projectId": {},
4914
5131
  "loggedIn": {}
4915
5132
  },
4916
5133
  "isESM": false,
4917
5134
  "relativePath": [
4918
5135
  "build",
4919
5136
  "commands",
4920
- "deploy",
4921
- "delete.js"
5137
+ "env",
5138
+ "exec.js"
4922
5139
  ]
4923
5140
  },
4924
- "deploy": {
4925
- "aliases": [
4926
- "worker:deploy"
4927
- ],
4928
- "args": {},
4929
- "description": "deploy your Expo Router web build and API Routes",
5141
+ "env:get": {
5142
+ "aliases": [],
5143
+ "args": {
5144
+ "environment": {
5145
+ "description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
5146
+ "name": "environment",
5147
+ "required": false
5148
+ }
5149
+ },
5150
+ "description": "view an environment variable for the current project or account",
4930
5151
  "flags": {
4931
- "prod": {
4932
- "aliases": [
4933
- "production"
4934
- ],
4935
- "description": "Create a new production deployment.",
4936
- "name": "prod",
4937
- "allowNo": false,
4938
- "type": "boolean"
4939
- },
4940
- "alias": {
4941
- "description": "Custom alias to assign to the new deployment.",
4942
- "name": "alias",
5152
+ "variable-name": {
5153
+ "description": "Name of the variable",
5154
+ "name": "variable-name",
4943
5155
  "hasDynamicHelp": false,
4944
- "helpValue": "name",
4945
5156
  "multiple": false,
4946
5157
  "type": "option"
4947
5158
  },
4948
- "id": {
4949
- "description": "Custom unique identifier for the new deployment.",
4950
- "name": "id",
5159
+ "variable-environment": {
5160
+ "description": "Current environment of the variable",
5161
+ "name": "variable-environment",
4951
5162
  "hasDynamicHelp": false,
4952
- "helpValue": "xyz123",
4953
5163
  "multiple": false,
4954
5164
  "type": "option"
4955
5165
  },
4956
- "export-dir": {
4957
- "description": "Directory where the Expo project was exported.",
4958
- "name": "export-dir",
4959
- "default": "dist",
5166
+ "format": {
5167
+ "description": "Output format",
5168
+ "name": "format",
5169
+ "default": "short",
4960
5170
  "hasDynamicHelp": false,
4961
- "helpValue": "dir",
4962
5171
  "multiple": false,
5172
+ "options": [
5173
+ "long",
5174
+ "short"
5175
+ ],
4963
5176
  "type": "option"
4964
5177
  },
4965
- "dry-run": {
4966
- "description": "Outputs a tarball of the new deployment instead of uploading it.",
4967
- "name": "dry-run",
4968
- "allowNo": false,
4969
- "type": "boolean"
4970
- },
4971
- "source-maps": {
4972
- "description": "Include source maps in the deployment.",
4973
- "name": "source-maps",
4974
- "allowNo": true,
4975
- "type": "boolean"
4976
- },
4977
- "environment": {
4978
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4979
- "name": "environment",
5178
+ "scope": {
5179
+ "description": "Scope for the variable",
5180
+ "name": "scope",
5181
+ "default": "project",
4980
5182
  "hasDynamicHelp": false,
4981
5183
  "multiple": false,
5184
+ "options": [
5185
+ "project",
5186
+ "account"
5187
+ ],
4982
5188
  "type": "option"
4983
5189
  },
4984
- "json": {
4985
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4986
- "name": "json",
4987
- "allowNo": false,
4988
- "type": "boolean"
4989
- },
4990
5190
  "non-interactive": {
4991
5191
  "description": "Run the command in non-interactive mode.",
4992
5192
  "name": "non-interactive",
@@ -4997,16 +5197,11 @@
4997
5197
  },
4998
5198
  "hasDynamicHelp": false,
4999
5199
  "hiddenAliases": [],
5000
- "id": "deploy",
5200
+ "id": "env:get",
5001
5201
  "pluginAlias": "eas-cli",
5002
5202
  "pluginName": "eas-cli",
5003
5203
  "pluginType": "core",
5004
- "state": "preview",
5005
5204
  "strict": true,
5006
- "usage": [
5007
- "deploy [options]",
5008
- "deploy --prod"
5009
- ],
5010
5205
  "enableJsonFlag": false,
5011
5206
  "ContextOptions": {
5012
5207
  "LoggedIn": {
@@ -5049,70 +5244,56 @@
5049
5244
  }
5050
5245
  },
5051
5246
  "contextDefinition": {
5052
- "getDynamicPublicProjectConfigAsync": {},
5053
- "getDynamicPrivateProjectConfigAsync": {},
5054
- "projectDir": {},
5247
+ "projectId": {},
5055
5248
  "loggedIn": {}
5056
5249
  },
5057
5250
  "isESM": false,
5058
5251
  "relativePath": [
5059
5252
  "build",
5060
5253
  "commands",
5061
- "deploy",
5062
- "index.js"
5254
+ "env",
5255
+ "get.js"
5063
5256
  ]
5064
5257
  },
5065
- "env:create": {
5258
+ "env:list": {
5066
5259
  "aliases": [],
5067
5260
  "args": {
5068
5261
  "environment": {
5069
- "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
5262
+ "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
5070
5263
  "name": "environment",
5071
5264
  "required": false
5072
5265
  }
5073
5266
  },
5074
- "description": "create an environment variable for the current project or account",
5267
+ "description": "list environment variables for the current project or account",
5075
5268
  "flags": {
5076
- "name": {
5077
- "description": "Name of the variable",
5078
- "name": "name",
5079
- "hasDynamicHelp": false,
5080
- "multiple": false,
5081
- "type": "option"
5082
- },
5083
- "value": {
5084
- "description": "Text value or the variable",
5085
- "name": "value",
5086
- "hasDynamicHelp": false,
5087
- "multiple": false,
5088
- "type": "option"
5269
+ "include-sensitive": {
5270
+ "description": "Display sensitive values in the output",
5271
+ "name": "include-sensitive",
5272
+ "allowNo": false,
5273
+ "type": "boolean"
5089
5274
  },
5090
- "force": {
5091
- "description": "Overwrite existing variable",
5092
- "name": "force",
5275
+ "include-file-content": {
5276
+ "description": "Display files content in the output",
5277
+ "name": "include-file-content",
5093
5278
  "allowNo": false,
5094
5279
  "type": "boolean"
5095
5280
  },
5096
- "type": {
5097
- "description": "The type of variable",
5098
- "name": "type",
5281
+ "environment": {
5282
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5283
+ "name": "environment",
5099
5284
  "hasDynamicHelp": false,
5100
- "multiple": false,
5101
- "options": [
5102
- "string",
5103
- "file"
5104
- ],
5285
+ "multiple": true,
5105
5286
  "type": "option"
5106
5287
  },
5107
- "visibility": {
5108
- "description": "Visibility of the variable",
5109
- "name": "visibility",
5288
+ "format": {
5289
+ "description": "Output format",
5290
+ "name": "format",
5291
+ "default": "short",
5110
5292
  "hasDynamicHelp": false,
5111
5293
  "multiple": false,
5112
5294
  "options": [
5113
- "plaintext",
5114
- "sensitive",
5115
- "secret"
5295
+ "long",
5296
+ "short"
5116
5297
  ],
5117
5298
  "type": "option"
5118
5299
  },
@@ -5127,25 +5308,11 @@
5127
5308
  "account"
5128
5309
  ],
5129
5310
  "type": "option"
5130
- },
5131
- "environment": {
5132
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5133
- "name": "environment",
5134
- "hasDynamicHelp": false,
5135
- "multiple": true,
5136
- "type": "option"
5137
- },
5138
- "non-interactive": {
5139
- "description": "Run the command in non-interactive mode.",
5140
- "name": "non-interactive",
5141
- "noCacheDefault": true,
5142
- "allowNo": false,
5143
- "type": "boolean"
5144
5311
  }
5145
5312
  },
5146
5313
  "hasDynamicHelp": false,
5147
5314
  "hiddenAliases": [],
5148
- "id": "env:create",
5315
+ "id": "env:list",
5149
5316
  "pluginAlias": "eas-cli",
5150
5317
  "pluginName": "eas-cli",
5151
5318
  "pluginType": "core",
@@ -5193,7 +5360,6 @@
5193
5360
  },
5194
5361
  "contextDefinition": {
5195
5362
  "projectId": {},
5196
- "analytics": {},
5197
5363
  "loggedIn": {}
5198
5364
  },
5199
5365
  "isESM": false,
@@ -5201,57 +5367,46 @@
5201
5367
  "build",
5202
5368
  "commands",
5203
5369
  "env",
5204
- "create.js"
5370
+ "list.js"
5205
5371
  ]
5206
5372
  },
5207
- "env:delete": {
5373
+ "env:pull": {
5208
5374
  "aliases": [],
5209
5375
  "args": {
5210
5376
  "environment": {
5211
- "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
5377
+ "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
5212
5378
  "name": "environment",
5213
5379
  "required": false
5214
5380
  }
5215
5381
  },
5216
- "description": "delete an environment variable for the current project or account",
5382
+ "description": "pull environment variables for the selected environment to .env file",
5217
5383
  "flags": {
5218
- "variable-name": {
5219
- "description": "Name of the variable to delete",
5220
- "name": "variable-name",
5221
- "hasDynamicHelp": false,
5222
- "multiple": false,
5223
- "type": "option"
5384
+ "non-interactive": {
5385
+ "description": "Run the command in non-interactive mode.",
5386
+ "name": "non-interactive",
5387
+ "noCacheDefault": true,
5388
+ "allowNo": false,
5389
+ "type": "boolean"
5224
5390
  },
5225
- "variable-environment": {
5226
- "description": "Current environment of the variable to delete",
5227
- "name": "variable-environment",
5391
+ "environment": {
5392
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5393
+ "name": "environment",
5228
5394
  "hasDynamicHelp": false,
5229
5395
  "multiple": false,
5230
5396
  "type": "option"
5231
5397
  },
5232
- "scope": {
5233
- "description": "Scope for the variable",
5234
- "name": "scope",
5235
- "default": "project",
5398
+ "path": {
5399
+ "description": "Path to the result `.env` file",
5400
+ "name": "path",
5401
+ "default": ".env.local",
5236
5402
  "hasDynamicHelp": false,
5237
5403
  "multiple": false,
5238
- "options": [
5239
- "project",
5240
- "account"
5241
- ],
5242
5404
  "type": "option"
5243
- },
5244
- "non-interactive": {
5245
- "description": "Run the command in non-interactive mode.",
5246
- "name": "non-interactive",
5247
- "noCacheDefault": true,
5248
- "allowNo": false,
5249
- "type": "boolean"
5250
5405
  }
5251
5406
  },
5252
5407
  "hasDynamicHelp": false,
5253
5408
  "hiddenAliases": [],
5254
- "id": "env:delete",
5409
+ "id": "env:pull",
5255
5410
  "pluginAlias": "eas-cli",
5256
5411
  "pluginName": "eas-cli",
5257
5412
  "pluginType": "core",
@@ -5299,43 +5454,53 @@
5299
5454
  },
5300
5455
  "contextDefinition": {
5301
5456
  "projectId": {},
5302
- "loggedIn": {}
5457
+ "loggedIn": {},
5458
+ "projectDir": {}
5303
5459
  },
5304
5460
  "isESM": false,
5305
5461
  "relativePath": [
5306
5462
  "build",
5307
5463
  "commands",
5308
5464
  "env",
5309
- "delete.js"
5465
+ "pull.js"
5310
5466
  ]
5311
5467
  },
5312
- "env:exec": {
5468
+ "env:push": {
5313
5469
  "aliases": [],
5314
5470
  "args": {
5315
5471
  "environment": {
5316
- "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
5472
+ "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
5317
5473
  "name": "environment",
5318
- "required": true
5319
- },
5320
- "bash_command": {
5321
- "description": "bash command to execute with the environment variables from the environment",
5322
- "name": "bash_command",
5323
- "required": true
5474
+ "required": false
5324
5475
  }
5325
5476
  },
5326
- "description": "execute a command with environment variables from the selected environment",
5477
+ "description": "push environment variables from .env file to the selected environment",
5327
5478
  "flags": {
5328
- "non-interactive": {
5329
- "description": "Run the command in non-interactive mode.",
5330
- "name": "non-interactive",
5331
- "noCacheDefault": true,
5479
+ "environment": {
5480
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5481
+ "name": "environment",
5482
+ "hasDynamicHelp": false,
5483
+ "multiple": true,
5484
+ "type": "option"
5485
+ },
5486
+ "path": {
5487
+ "description": "Path to the input `.env` file",
5488
+ "name": "path",
5489
+ "default": ".env.local",
5490
+ "hasDynamicHelp": false,
5491
+ "multiple": false,
5492
+ "type": "option"
5493
+ },
5494
+ "force": {
5495
+ "description": "Skip confirmation and automatically override existing variables",
5496
+ "name": "force",
5332
5497
  "allowNo": false,
5333
5498
  "type": "boolean"
5334
5499
  }
5335
5500
  },
5336
5501
  "hasDynamicHelp": false,
5337
5502
  "hiddenAliases": [],
5338
- "id": "env:exec",
5503
+ "id": "env:push",
5339
5504
  "pluginAlias": "eas-cli",
5340
5505
  "pluginName": "eas-cli",
5341
5506
  "pluginType": "core",
@@ -5390,43 +5555,68 @@
5390
5555
  "build",
5391
5556
  "commands",
5392
5557
  "env",
5393
- "exec.js"
5558
+ "push.js"
5394
5559
  ]
5395
5560
  },
5396
- "env:get": {
5561
+ "env:update": {
5397
5562
  "aliases": [],
5398
5563
  "args": {
5399
5564
  "environment": {
5400
- "description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
5565
+ "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
5401
5566
  "name": "environment",
5402
5567
  "required": false
5403
5568
  }
5404
5569
  },
5405
- "description": "view an environment variable for the current project or account",
5570
+ "description": "update an environment variable on the current project or account",
5406
5571
  "flags": {
5407
5572
  "variable-name": {
5408
- "description": "Name of the variable",
5573
+ "description": "Current name of the variable",
5409
5574
  "name": "variable-name",
5410
5575
  "hasDynamicHelp": false,
5411
5576
  "multiple": false,
5412
5577
  "type": "option"
5413
5578
  },
5414
5579
  "variable-environment": {
5415
- "description": "Current environment of the variable",
5580
+ "description": "Current environment of the variable to update",
5416
5581
  "name": "variable-environment",
5417
5582
  "hasDynamicHelp": false,
5418
5583
  "multiple": false,
5419
5584
  "type": "option"
5420
5585
  },
5421
- "format": {
5422
- "description": "Output format",
5423
- "name": "format",
5424
- "default": "short",
5586
+ "name": {
5587
+ "description": "New name of the variable",
5588
+ "name": "name",
5589
+ "hasDynamicHelp": false,
5590
+ "multiple": false,
5591
+ "type": "option"
5592
+ },
5593
+ "value": {
5594
+ "description": "New value or the variable",
5595
+ "name": "value",
5596
+ "hasDynamicHelp": false,
5597
+ "multiple": false,
5598
+ "type": "option"
5599
+ },
5600
+ "type": {
5601
+ "description": "The type of variable",
5602
+ "name": "type",
5425
5603
  "hasDynamicHelp": false,
5426
5604
  "multiple": false,
5427
5605
  "options": [
5428
- "long",
5429
- "short"
5606
+ "string",
5607
+ "file"
5608
+ ],
5609
+ "type": "option"
5610
+ },
5611
+ "visibility": {
5612
+ "description": "Visibility of the variable",
5613
+ "name": "visibility",
5614
+ "hasDynamicHelp": false,
5615
+ "multiple": false,
5616
+ "options": [
5617
+ "plaintext",
5618
+ "sensitive",
5619
+ "secret"
5430
5620
  ],
5431
5621
  "type": "option"
5432
5622
  },
@@ -5442,6 +5632,13 @@
5442
5632
  ],
5443
5633
  "type": "option"
5444
5634
  },
5635
+ "environment": {
5636
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5637
+ "name": "environment",
5638
+ "hasDynamicHelp": false,
5639
+ "multiple": true,
5640
+ "type": "option"
5641
+ },
5445
5642
  "non-interactive": {
5446
5643
  "description": "Run the command in non-interactive mode.",
5447
5644
  "name": "non-interactive",
@@ -5452,7 +5649,7 @@
5452
5649
  },
5453
5650
  "hasDynamicHelp": false,
5454
5651
  "hiddenAliases": [],
5455
- "id": "env:get",
5652
+ "id": "env:update",
5456
5653
  "pluginAlias": "eas-cli",
5457
5654
  "pluginName": "eas-cli",
5458
5655
  "pluginType": "core",
@@ -5500,6 +5697,7 @@
5500
5697
  },
5501
5698
  "contextDefinition": {
5502
5699
  "projectId": {},
5700
+ "analytics": {},
5503
5701
  "loggedIn": {}
5504
5702
  },
5505
5703
  "isESM": false,
@@ -5507,71 +5705,89 @@
5507
5705
  "build",
5508
5706
  "commands",
5509
5707
  "env",
5510
- "get.js"
5708
+ "update.js"
5511
5709
  ]
5512
5710
  },
5513
- "env:list": {
5711
+ "fingerprint:compare": {
5514
5712
  "aliases": [],
5515
5713
  "args": {
5516
- "environment": {
5517
- "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
5518
- "name": "environment",
5714
+ "hash1": {
5715
+ "description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
5716
+ "name": "hash1",
5717
+ "required": false
5718
+ },
5719
+ "hash2": {
5720
+ "description": "If two hashes are provided, HASH1 is compared against HASH2.",
5721
+ "name": "hash2",
5519
5722
  "required": false
5520
5723
  }
5521
5724
  },
5522
- "description": "list environment variables for the current project or account",
5725
+ "description": "compare fingerprints of the current project, builds, and updates",
5726
+ "examples": [
5727
+ "$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
5728
+ "$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
5729
+ "$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
5730
+ "$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
5731
+ "$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
5732
+ "$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
5733
+ "$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
5734
+ "$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
5735
+ ],
5523
5736
  "flags": {
5524
- "include-sensitive": {
5525
- "description": "Display sensitive values in the output",
5526
- "name": "include-sensitive",
5527
- "allowNo": false,
5528
- "type": "boolean"
5529
- },
5530
- "include-file-content": {
5531
- "description": "Display files content in the output",
5532
- "name": "include-file-content",
5533
- "allowNo": false,
5534
- "type": "boolean"
5535
- },
5536
- "environment": {
5537
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5538
- "name": "environment",
5737
+ "build-id": {
5738
+ "aliases": [
5739
+ "buildId"
5740
+ ],
5741
+ "description": "Compare the fingerprint with the build with the specified ID",
5742
+ "name": "build-id",
5539
5743
  "hasDynamicHelp": false,
5540
5744
  "multiple": true,
5541
5745
  "type": "option"
5542
5746
  },
5543
- "format": {
5544
- "description": "Output format",
5545
- "name": "format",
5546
- "default": "short",
5547
- "hasDynamicHelp": false,
5548
- "multiple": false,
5549
- "options": [
5550
- "long",
5551
- "short"
5747
+ "update-id": {
5748
+ "aliases": [
5749
+ "updateId"
5552
5750
  ],
5751
+ "description": "Compare the fingerprint with the update with the specified ID",
5752
+ "name": "update-id",
5753
+ "hasDynamicHelp": false,
5754
+ "multiple": true,
5553
5755
  "type": "option"
5554
5756
  },
5555
- "scope": {
5556
- "description": "Scope for the variable",
5557
- "name": "scope",
5558
- "default": "project",
5757
+ "open": {
5758
+ "description": "Open the fingerprint comparison in the browser",
5759
+ "name": "open",
5760
+ "allowNo": false,
5761
+ "type": "boolean"
5762
+ },
5763
+ "environment": {
5764
+ "description": "If generating a fingerprint from the local directory, use the specified environment.",
5765
+ "name": "environment",
5559
5766
  "hasDynamicHelp": false,
5560
5767
  "multiple": false,
5561
- "options": [
5562
- "project",
5563
- "account"
5564
- ],
5565
5768
  "type": "option"
5769
+ },
5770
+ "json": {
5771
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5772
+ "name": "json",
5773
+ "allowNo": false,
5774
+ "type": "boolean"
5775
+ },
5776
+ "non-interactive": {
5777
+ "description": "Run the command in non-interactive mode.",
5778
+ "name": "non-interactive",
5779
+ "noCacheDefault": true,
5780
+ "allowNo": false,
5781
+ "type": "boolean"
5566
5782
  }
5567
5783
  },
5568
5784
  "hasDynamicHelp": false,
5569
5785
  "hiddenAliases": [],
5570
- "id": "env:list",
5786
+ "id": "fingerprint:compare",
5571
5787
  "pluginAlias": "eas-cli",
5572
5788
  "pluginName": "eas-cli",
5573
5789
  "pluginType": "core",
5574
- "strict": true,
5790
+ "strict": false,
5575
5791
  "enableJsonFlag": false,
5576
5792
  "ContextOptions": {
5577
5793
  "LoggedIn": {
@@ -5615,57 +5831,83 @@
5615
5831
  },
5616
5832
  "contextDefinition": {
5617
5833
  "projectId": {},
5618
- "loggedIn": {}
5834
+ "loggedIn": {},
5835
+ "privateProjectConfig": {},
5836
+ "vcsClient": {},
5837
+ "getServerSideEnvironmentVariablesAsync": {}
5619
5838
  },
5620
5839
  "isESM": false,
5621
5840
  "relativePath": [
5622
5841
  "build",
5623
5842
  "commands",
5624
- "env",
5625
- "list.js"
5843
+ "fingerprint",
5844
+ "compare.js"
5626
5845
  ]
5627
5846
  },
5628
- "env:pull": {
5847
+ "fingerprint:generate": {
5629
5848
  "aliases": [],
5630
- "args": {
5631
- "environment": {
5632
- "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
5633
- "name": "environment",
5634
- "required": false
5635
- }
5636
- },
5637
- "description": "pull environment variables for the selected environment to .env file",
5849
+ "args": {},
5850
+ "description": "generate fingerprints from the current project",
5851
+ "examples": [
5852
+ "$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
5853
+ "$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
5854
+ "$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
5855
+ "$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
5856
+ ],
5638
5857
  "flags": {
5639
- "non-interactive": {
5640
- "description": "Run the command in non-interactive mode.",
5641
- "name": "non-interactive",
5642
- "noCacheDefault": true,
5643
- "allowNo": false,
5644
- "type": "boolean"
5858
+ "platform": {
5859
+ "char": "p",
5860
+ "name": "platform",
5861
+ "hasDynamicHelp": false,
5862
+ "multiple": false,
5863
+ "options": [
5864
+ "android",
5865
+ "ios"
5866
+ ],
5867
+ "type": "option"
5645
5868
  },
5646
5869
  "environment": {
5647
5870
  "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5871
+ "exclusive": [
5872
+ "build-profile"
5873
+ ],
5648
5874
  "name": "environment",
5649
5875
  "hasDynamicHelp": false,
5650
5876
  "multiple": false,
5651
5877
  "type": "option"
5652
5878
  },
5653
- "path": {
5654
- "description": "Path to the result `.env` file",
5655
- "name": "path",
5656
- "default": ".env.local",
5879
+ "build-profile": {
5880
+ "char": "e",
5881
+ "description": "Name of the build profile from eas.json.",
5882
+ "exclusive": [
5883
+ "environment"
5884
+ ],
5885
+ "name": "build-profile",
5657
5886
  "hasDynamicHelp": false,
5658
5887
  "multiple": false,
5659
5888
  "type": "option"
5889
+ },
5890
+ "json": {
5891
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5892
+ "name": "json",
5893
+ "allowNo": false,
5894
+ "type": "boolean"
5895
+ },
5896
+ "non-interactive": {
5897
+ "description": "Run the command in non-interactive mode.",
5898
+ "name": "non-interactive",
5899
+ "noCacheDefault": true,
5900
+ "allowNo": false,
5901
+ "type": "boolean"
5660
5902
  }
5661
5903
  },
5662
5904
  "hasDynamicHelp": false,
5663
5905
  "hiddenAliases": [],
5664
- "id": "env:pull",
5906
+ "id": "fingerprint:generate",
5665
5907
  "pluginAlias": "eas-cli",
5666
5908
  "pluginName": "eas-cli",
5667
5909
  "pluginType": "core",
5668
- "strict": true,
5910
+ "strict": false,
5669
5911
  "enableJsonFlag": false,
5670
5912
  "ContextOptions": {
5671
5913
  "LoggedIn": {
@@ -5710,52 +5952,42 @@
5710
5952
  "contextDefinition": {
5711
5953
  "projectId": {},
5712
5954
  "loggedIn": {},
5713
- "projectDir": {}
5955
+ "privateProjectConfig": {},
5956
+ "vcsClient": {},
5957
+ "getServerSideEnvironmentVariablesAsync": {},
5958
+ "getDynamicPublicProjectConfigAsync": {},
5959
+ "getDynamicPrivateProjectConfigAsync": {}
5714
5960
  },
5715
5961
  "isESM": false,
5716
5962
  "relativePath": [
5717
5963
  "build",
5718
5964
  "commands",
5719
- "env",
5720
- "pull.js"
5965
+ "fingerprint",
5966
+ "generate.js"
5721
5967
  ]
5722
5968
  },
5723
- "env:push": {
5969
+ "metadata:lint": {
5724
5970
  "aliases": [],
5725
- "args": {
5726
- "environment": {
5727
- "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
5728
- "name": "environment",
5729
- "required": false
5730
- }
5731
- },
5732
- "description": "push environment variables from .env file to the selected environment",
5971
+ "args": {},
5972
+ "description": "validate the local store configuration",
5733
5973
  "flags": {
5734
- "environment": {
5735
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5736
- "name": "environment",
5737
- "hasDynamicHelp": false,
5738
- "multiple": true,
5739
- "type": "option"
5974
+ "json": {
5975
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr",
5976
+ "name": "json",
5977
+ "allowNo": false,
5978
+ "type": "boolean"
5740
5979
  },
5741
- "path": {
5742
- "description": "Path to the input `.env` file",
5743
- "name": "path",
5744
- "default": ".env.local",
5980
+ "profile": {
5981
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5982
+ "name": "profile",
5745
5983
  "hasDynamicHelp": false,
5746
5984
  "multiple": false,
5747
5985
  "type": "option"
5748
- },
5749
- "force": {
5750
- "description": "Skip confirmation and automatically override existing variables",
5751
- "name": "force",
5752
- "allowNo": false,
5753
- "type": "boolean"
5754
5986
  }
5755
5987
  },
5756
5988
  "hasDynamicHelp": false,
5757
5989
  "hiddenAliases": [],
5758
- "id": "env:push",
5990
+ "id": "metadata:lint",
5759
5991
  "pluginAlias": "eas-cli",
5760
5992
  "pluginName": "eas-cli",
5761
5993
  "pluginType": "core",
@@ -5802,254 +6034,25 @@
5802
6034
  }
5803
6035
  },
5804
6036
  "contextDefinition": {
5805
- "projectId": {},
5806
- "loggedIn": {}
6037
+ "projectDir": {}
5807
6038
  },
5808
6039
  "isESM": false,
5809
6040
  "relativePath": [
5810
6041
  "build",
5811
6042
  "commands",
5812
- "env",
5813
- "push.js"
6043
+ "metadata",
6044
+ "lint.js"
5814
6045
  ]
5815
6046
  },
5816
- "env:update": {
6047
+ "metadata:pull": {
5817
6048
  "aliases": [],
5818
- "args": {
5819
- "environment": {
5820
- "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
5821
- "name": "environment",
5822
- "required": false
5823
- }
5824
- },
5825
- "description": "update an environment variable on the current project or account",
6049
+ "args": {},
6050
+ "description": "generate the local store configuration from the app stores",
5826
6051
  "flags": {
5827
- "variable-name": {
5828
- "description": "Current name of the variable",
5829
- "name": "variable-name",
5830
- "hasDynamicHelp": false,
5831
- "multiple": false,
5832
- "type": "option"
5833
- },
5834
- "variable-environment": {
5835
- "description": "Current environment of the variable to update",
5836
- "name": "variable-environment",
5837
- "hasDynamicHelp": false,
5838
- "multiple": false,
5839
- "type": "option"
5840
- },
5841
- "name": {
5842
- "description": "New name of the variable",
5843
- "name": "name",
5844
- "hasDynamicHelp": false,
5845
- "multiple": false,
5846
- "type": "option"
5847
- },
5848
- "value": {
5849
- "description": "New value or the variable",
5850
- "name": "value",
5851
- "hasDynamicHelp": false,
5852
- "multiple": false,
5853
- "type": "option"
5854
- },
5855
- "type": {
5856
- "description": "The type of variable",
5857
- "name": "type",
5858
- "hasDynamicHelp": false,
5859
- "multiple": false,
5860
- "options": [
5861
- "string",
5862
- "file"
5863
- ],
5864
- "type": "option"
5865
- },
5866
- "visibility": {
5867
- "description": "Visibility of the variable",
5868
- "name": "visibility",
5869
- "hasDynamicHelp": false,
5870
- "multiple": false,
5871
- "options": [
5872
- "plaintext",
5873
- "sensitive",
5874
- "secret"
5875
- ],
5876
- "type": "option"
5877
- },
5878
- "scope": {
5879
- "description": "Scope for the variable",
5880
- "name": "scope",
5881
- "default": "project",
5882
- "hasDynamicHelp": false,
5883
- "multiple": false,
5884
- "options": [
5885
- "project",
5886
- "account"
5887
- ],
5888
- "type": "option"
5889
- },
5890
- "environment": {
5891
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5892
- "name": "environment",
5893
- "hasDynamicHelp": false,
5894
- "multiple": true,
5895
- "type": "option"
5896
- },
5897
- "non-interactive": {
5898
- "description": "Run the command in non-interactive mode.",
5899
- "name": "non-interactive",
5900
- "noCacheDefault": true,
5901
- "allowNo": false,
5902
- "type": "boolean"
5903
- }
5904
- },
5905
- "hasDynamicHelp": false,
5906
- "hiddenAliases": [],
5907
- "id": "env:update",
5908
- "pluginAlias": "eas-cli",
5909
- "pluginName": "eas-cli",
5910
- "pluginType": "core",
5911
- "strict": true,
5912
- "enableJsonFlag": false,
5913
- "ContextOptions": {
5914
- "LoggedIn": {
5915
- "loggedIn": {}
5916
- },
5917
- "MaybeLoggedIn": {
5918
- "maybeLoggedIn": {}
5919
- },
5920
- "DynamicLoggedIn": {
5921
- "getDynamicLoggedInAsync": {}
5922
- },
5923
- "SessionManagment": {
5924
- "sessionManager": {}
5925
- },
5926
- "OptionalProjectConfig": {
5927
- "optionalPrivateProjectConfig": {}
5928
- },
5929
- "ProjectDir": {
5930
- "projectDir": {}
5931
- },
5932
- "DynamicProjectConfig": {
5933
- "getDynamicPublicProjectConfigAsync": {},
5934
- "getDynamicPrivateProjectConfigAsync": {}
5935
- },
5936
- "ProjectConfig": {
5937
- "loggedIn": {},
5938
- "privateProjectConfig": {}
5939
- },
5940
- "Analytics": {
5941
- "analytics": {}
5942
- },
5943
- "Vcs": {
5944
- "vcsClient": {}
5945
- },
5946
- "ServerSideEnvironmentVariables": {
5947
- "getServerSideEnvironmentVariablesAsync": {}
5948
- },
5949
- "ProjectId": {
5950
- "projectId": {}
5951
- }
5952
- },
5953
- "contextDefinition": {
5954
- "projectId": {},
5955
- "analytics": {},
5956
- "loggedIn": {}
5957
- },
5958
- "isESM": false,
5959
- "relativePath": [
5960
- "build",
5961
- "commands",
5962
- "env",
5963
- "update.js"
5964
- ]
5965
- },
5966
- "metadata:lint": {
5967
- "aliases": [],
5968
- "args": {},
5969
- "description": "validate the local store configuration",
5970
- "flags": {
5971
- "json": {
5972
- "description": "Enable JSON output, non-JSON messages will be printed to stderr",
5973
- "name": "json",
5974
- "allowNo": false,
5975
- "type": "boolean"
5976
- },
5977
- "profile": {
5978
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
5979
- "name": "profile",
5980
- "hasDynamicHelp": false,
5981
- "multiple": false,
5982
- "type": "option"
5983
- }
5984
- },
5985
- "hasDynamicHelp": false,
5986
- "hiddenAliases": [],
5987
- "id": "metadata:lint",
5988
- "pluginAlias": "eas-cli",
5989
- "pluginName": "eas-cli",
5990
- "pluginType": "core",
5991
- "strict": true,
5992
- "enableJsonFlag": false,
5993
- "ContextOptions": {
5994
- "LoggedIn": {
5995
- "loggedIn": {}
5996
- },
5997
- "MaybeLoggedIn": {
5998
- "maybeLoggedIn": {}
5999
- },
6000
- "DynamicLoggedIn": {
6001
- "getDynamicLoggedInAsync": {}
6002
- },
6003
- "SessionManagment": {
6004
- "sessionManager": {}
6005
- },
6006
- "OptionalProjectConfig": {
6007
- "optionalPrivateProjectConfig": {}
6008
- },
6009
- "ProjectDir": {
6010
- "projectDir": {}
6011
- },
6012
- "DynamicProjectConfig": {
6013
- "getDynamicPublicProjectConfigAsync": {},
6014
- "getDynamicPrivateProjectConfigAsync": {}
6015
- },
6016
- "ProjectConfig": {
6017
- "loggedIn": {},
6018
- "privateProjectConfig": {}
6019
- },
6020
- "Analytics": {
6021
- "analytics": {}
6022
- },
6023
- "Vcs": {
6024
- "vcsClient": {}
6025
- },
6026
- "ServerSideEnvironmentVariables": {
6027
- "getServerSideEnvironmentVariablesAsync": {}
6028
- },
6029
- "ProjectId": {
6030
- "projectId": {}
6031
- }
6032
- },
6033
- "contextDefinition": {
6034
- "projectDir": {}
6035
- },
6036
- "isESM": false,
6037
- "relativePath": [
6038
- "build",
6039
- "commands",
6040
- "metadata",
6041
- "lint.js"
6042
- ]
6043
- },
6044
- "metadata:pull": {
6045
- "aliases": [],
6046
- "args": {},
6047
- "description": "generate the local store configuration from the app stores",
6048
- "flags": {
6049
- "profile": {
6050
- "char": "e",
6051
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
6052
- "name": "profile",
6052
+ "profile": {
6053
+ "char": "e",
6054
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
6055
+ "name": "profile",
6053
6056
  "hasDynamicHelp": false,
6054
6057
  "multiple": false,
6055
6058
  "type": "option"
@@ -7366,11 +7369,13 @@
7366
7369
  "push.js"
7367
7370
  ]
7368
7371
  },
7369
- "submit:internal": {
7372
+ "simulator:start": {
7370
7373
  "aliases": [],
7371
7374
  "args": {},
7375
+ "description": "[EXPERIMENTAL] start a remote simulator session on EAS and get the credentials to connect to it with the CLI tool of your choice",
7372
7376
  "flags": {
7373
7377
  "platform": {
7378
+ "description": "Device platform",
7374
7379
  "name": "platform",
7375
7380
  "required": true,
7376
7381
  "hasDynamicHelp": false,
@@ -7381,26 +7386,36 @@
7381
7386
  ],
7382
7387
  "type": "option"
7383
7388
  },
7384
- "profile": {
7385
- "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
7386
- "name": "profile",
7389
+ "type": {
7390
+ "description": "Type of device run session to create",
7391
+ "name": "type",
7392
+ "default": "agent-device",
7387
7393
  "hasDynamicHelp": false,
7388
7394
  "multiple": false,
7395
+ "options": [
7396
+ "agent-device"
7397
+ ],
7389
7398
  "type": "option"
7390
7399
  },
7391
- "id": {
7392
- "description": "ID of the build to submit",
7393
- "name": "id",
7394
- "required": true,
7400
+ "package-version": {
7401
+ "description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
7402
+ "name": "package-version",
7395
7403
  "hasDynamicHelp": false,
7396
7404
  "multiple": false,
7397
7405
  "type": "option"
7406
+ },
7407
+ "non-interactive": {
7408
+ "description": "Run the command in non-interactive mode.",
7409
+ "name": "non-interactive",
7410
+ "noCacheDefault": true,
7411
+ "allowNo": false,
7412
+ "type": "boolean"
7398
7413
  }
7399
7414
  },
7400
7415
  "hasDynamicHelp": false,
7401
7416
  "hidden": true,
7402
7417
  "hiddenAliases": [],
7403
- "id": "submit:internal",
7418
+ "id": "simulator:start",
7404
7419
  "pluginAlias": "eas-cli",
7405
7420
  "pluginName": "eas-cli",
7406
7421
  "pluginType": "core",
@@ -7447,53 +7462,28 @@
7447
7462
  }
7448
7463
  },
7449
7464
  "contextDefinition": {
7450
- "loggedIn": {},
7451
- "privateProjectConfig": {},
7452
- "projectDir": {},
7453
- "analytics": {},
7454
- "vcsClient": {}
7465
+ "projectId": {},
7466
+ "loggedIn": {}
7455
7467
  },
7456
7468
  "isESM": false,
7457
7469
  "relativePath": [
7458
7470
  "build",
7459
7471
  "commands",
7460
- "submit",
7461
- "internal.js"
7472
+ "simulator",
7473
+ "start.js"
7462
7474
  ]
7463
7475
  },
7464
- "simulator:start": {
7476
+ "simulator:stop": {
7465
7477
  "aliases": [],
7466
7478
  "args": {},
7467
- "description": "[EXPERIMENTAL] start a remote simulator session on EAS and get the credentials to connect to it with the CLI tool of your choice",
7479
+ "description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
7468
7480
  "flags": {
7469
- "platform": {
7470
- "description": "Device platform",
7471
- "name": "platform",
7481
+ "id": {
7482
+ "description": "Device run session ID",
7483
+ "name": "id",
7472
7484
  "required": true,
7473
7485
  "hasDynamicHelp": false,
7474
7486
  "multiple": false,
7475
- "options": [
7476
- "android",
7477
- "ios"
7478
- ],
7479
- "type": "option"
7480
- },
7481
- "type": {
7482
- "description": "Type of device run session to create",
7483
- "name": "type",
7484
- "default": "agent-device",
7485
- "hasDynamicHelp": false,
7486
- "multiple": false,
7487
- "options": [
7488
- "agent-device"
7489
- ],
7490
- "type": "option"
7491
- },
7492
- "package-version": {
7493
- "description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
7494
- "name": "package-version",
7495
- "hasDynamicHelp": false,
7496
- "multiple": false,
7497
7487
  "type": "option"
7498
7488
  },
7499
7489
  "non-interactive": {
@@ -7507,7 +7497,7 @@
7507
7497
  "hasDynamicHelp": false,
7508
7498
  "hidden": true,
7509
7499
  "hiddenAliases": [],
7510
- "id": "simulator:start",
7500
+ "id": "simulator:stop",
7511
7501
  "pluginAlias": "eas-cli",
7512
7502
  "pluginName": "eas-cli",
7513
7503
  "pluginType": "core",
@@ -7554,7 +7544,6 @@
7554
7544
  }
7555
7545
  },
7556
7546
  "contextDefinition": {
7557
- "projectId": {},
7558
7547
  "loggedIn": {}
7559
7548
  },
7560
7549
  "isESM": false,
@@ -7562,34 +7551,44 @@
7562
7551
  "build",
7563
7552
  "commands",
7564
7553
  "simulator",
7565
- "start.js"
7554
+ "stop.js"
7566
7555
  ]
7567
7556
  },
7568
- "simulator:stop": {
7557
+ "submit:internal": {
7569
7558
  "aliases": [],
7570
7559
  "args": {},
7571
- "description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
7572
7560
  "flags": {
7561
+ "platform": {
7562
+ "name": "platform",
7563
+ "required": true,
7564
+ "hasDynamicHelp": false,
7565
+ "multiple": false,
7566
+ "options": [
7567
+ "android",
7568
+ "ios"
7569
+ ],
7570
+ "type": "option"
7571
+ },
7572
+ "profile": {
7573
+ "description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
7574
+ "name": "profile",
7575
+ "hasDynamicHelp": false,
7576
+ "multiple": false,
7577
+ "type": "option"
7578
+ },
7573
7579
  "id": {
7574
- "description": "Device run session ID",
7580
+ "description": "ID of the build to submit",
7575
7581
  "name": "id",
7576
7582
  "required": true,
7577
7583
  "hasDynamicHelp": false,
7578
7584
  "multiple": false,
7579
7585
  "type": "option"
7580
- },
7581
- "non-interactive": {
7582
- "description": "Run the command in non-interactive mode.",
7583
- "name": "non-interactive",
7584
- "noCacheDefault": true,
7585
- "allowNo": false,
7586
- "type": "boolean"
7587
7586
  }
7588
7587
  },
7589
7588
  "hasDynamicHelp": false,
7590
7589
  "hidden": true,
7591
7590
  "hiddenAliases": [],
7592
- "id": "simulator:stop",
7591
+ "id": "submit:internal",
7593
7592
  "pluginAlias": "eas-cli",
7594
7593
  "pluginName": "eas-cli",
7595
7594
  "pluginType": "core",
@@ -7636,42 +7635,43 @@
7636
7635
  }
7637
7636
  },
7638
7637
  "contextDefinition": {
7639
- "loggedIn": {}
7638
+ "loggedIn": {},
7639
+ "privateProjectConfig": {},
7640
+ "projectDir": {},
7641
+ "analytics": {},
7642
+ "vcsClient": {}
7640
7643
  },
7641
7644
  "isESM": false,
7642
7645
  "relativePath": [
7643
7646
  "build",
7644
7647
  "commands",
7645
- "simulator",
7646
- "stop.js"
7648
+ "submit",
7649
+ "internal.js"
7647
7650
  ]
7648
7651
  },
7649
- "webhook:create": {
7652
+ "update:configure": {
7650
7653
  "aliases": [],
7651
7654
  "args": {},
7652
- "description": "create a webhook",
7655
+ "description": "configure the project to support EAS Update",
7653
7656
  "flags": {
7654
- "event": {
7655
- "description": "Event type that triggers the webhook",
7656
- "name": "event",
7657
+ "platform": {
7658
+ "char": "p",
7659
+ "description": "Platform to configure",
7660
+ "name": "platform",
7661
+ "default": "all",
7657
7662
  "hasDynamicHelp": false,
7658
7663
  "multiple": false,
7659
7664
  "options": [
7660
- "BUILD",
7661
- "SUBMIT"
7665
+ "android",
7666
+ "ios",
7667
+ "all"
7662
7668
  ],
7663
7669
  "type": "option"
7664
7670
  },
7665
- "url": {
7666
- "description": "Webhook URL",
7667
- "name": "url",
7668
- "hasDynamicHelp": false,
7669
- "multiple": false,
7670
- "type": "option"
7671
- },
7672
- "secret": {
7673
- "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
7674
- "name": "secret",
7671
+ "environment": {
7672
+ "description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
7673
+ "name": "environment",
7674
+ "required": false,
7675
7675
  "hasDynamicHelp": false,
7676
7676
  "multiple": false,
7677
7677
  "type": "option"
@@ -7686,7 +7686,7 @@
7686
7686
  },
7687
7687
  "hasDynamicHelp": false,
7688
7688
  "hiddenAliases": [],
7689
- "id": "webhook:create",
7689
+ "id": "update:configure",
7690
7690
  "pluginAlias": "eas-cli",
7691
7691
  "pluginName": "eas-cli",
7692
7692
  "pluginType": "core",
@@ -7733,28 +7733,35 @@
7733
7733
  }
7734
7734
  },
7735
7735
  "contextDefinition": {
7736
- "projectId": {},
7737
- "loggedIn": {}
7736
+ "loggedIn": {},
7737
+ "privateProjectConfig": {},
7738
+ "vcsClient": {}
7738
7739
  },
7739
7740
  "isESM": false,
7740
7741
  "relativePath": [
7741
7742
  "build",
7742
7743
  "commands",
7743
- "webhook",
7744
- "create.js"
7744
+ "update",
7745
+ "configure.js"
7745
7746
  ]
7746
7747
  },
7747
- "webhook:delete": {
7748
+ "update:delete": {
7748
7749
  "aliases": [],
7749
7750
  "args": {
7750
- "ID": {
7751
- "description": "ID of the webhook to delete",
7752
- "name": "ID",
7753
- "required": false
7751
+ "groupId": {
7752
+ "description": "The ID of an update group to delete.",
7753
+ "name": "groupId",
7754
+ "required": true
7754
7755
  }
7755
7756
  },
7756
- "description": "delete a webhook",
7757
+ "description": "delete all the updates in an update group",
7757
7758
  "flags": {
7759
+ "json": {
7760
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
7761
+ "name": "json",
7762
+ "allowNo": false,
7763
+ "type": "boolean"
7764
+ },
7758
7765
  "non-interactive": {
7759
7766
  "description": "Run the command in non-interactive mode.",
7760
7767
  "name": "non-interactive",
@@ -7765,7 +7772,7 @@
7765
7772
  },
7766
7773
  "hasDynamicHelp": false,
7767
7774
  "hiddenAliases": [],
7768
- "id": "webhook:delete",
7775
+ "id": "update:delete",
7769
7776
  "pluginAlias": "eas-cli",
7770
7777
  "pluginName": "eas-cli",
7771
7778
  "pluginType": "core",
@@ -7812,43 +7819,58 @@
7812
7819
  }
7813
7820
  },
7814
7821
  "contextDefinition": {
7815
- "projectId": {},
7816
7822
  "loggedIn": {}
7817
7823
  },
7818
7824
  "isESM": false,
7819
7825
  "relativePath": [
7820
7826
  "build",
7821
7827
  "commands",
7822
- "webhook",
7828
+ "update",
7823
7829
  "delete.js"
7824
7830
  ]
7825
7831
  },
7826
- "webhook:list": {
7832
+ "update:edit": {
7827
7833
  "aliases": [],
7828
- "args": {},
7829
- "description": "list webhooks",
7834
+ "args": {
7835
+ "groupId": {
7836
+ "description": "The ID of an update group to edit.",
7837
+ "name": "groupId"
7838
+ }
7839
+ },
7840
+ "description": "edit all the updates in an update group",
7830
7841
  "flags": {
7831
- "event": {
7832
- "description": "Event type that triggers the webhook",
7833
- "name": "event",
7842
+ "rollout-percentage": {
7843
+ "description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
7844
+ "name": "rollout-percentage",
7845
+ "required": false,
7846
+ "hasDynamicHelp": false,
7847
+ "multiple": false,
7848
+ "type": "option"
7849
+ },
7850
+ "branch": {
7851
+ "description": "Branch for which to list updates to select from",
7852
+ "name": "branch",
7834
7853
  "hasDynamicHelp": false,
7835
7854
  "multiple": false,
7836
- "options": [
7837
- "BUILD",
7838
- "SUBMIT"
7839
- ],
7840
7855
  "type": "option"
7841
7856
  },
7842
7857
  "json": {
7843
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
7858
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
7844
7859
  "name": "json",
7845
7860
  "allowNo": false,
7846
7861
  "type": "boolean"
7862
+ },
7863
+ "non-interactive": {
7864
+ "description": "Run the command in non-interactive mode.",
7865
+ "name": "non-interactive",
7866
+ "noCacheDefault": true,
7867
+ "allowNo": false,
7868
+ "type": "boolean"
7847
7869
  }
7848
7870
  },
7849
7871
  "hasDynamicHelp": false,
7850
7872
  "hiddenAliases": [],
7851
- "id": "webhook:list",
7873
+ "id": "update:edit",
7852
7874
  "pluginAlias": "eas-cli",
7853
7875
  "pluginName": "eas-cli",
7854
7876
  "pluginType": "core",
@@ -7902,76 +7924,161 @@
7902
7924
  "relativePath": [
7903
7925
  "build",
7904
7926
  "commands",
7905
- "webhook",
7906
- "list.js"
7927
+ "update",
7928
+ "edit.js"
7907
7929
  ]
7908
7930
  },
7909
- "webhook:update": {
7931
+ "update": {
7910
7932
  "aliases": [],
7911
7933
  "args": {},
7912
- "description": "update a webhook",
7934
+ "description": "publish an update group",
7913
7935
  "flags": {
7914
- "id": {
7915
- "description": "Webhook ID",
7916
- "name": "id",
7917
- "required": true,
7936
+ "branch": {
7937
+ "description": "Branch to publish the update group on",
7938
+ "name": "branch",
7939
+ "required": false,
7918
7940
  "hasDynamicHelp": false,
7919
7941
  "multiple": false,
7920
7942
  "type": "option"
7921
7943
  },
7922
- "event": {
7923
- "description": "Event type that triggers the webhook",
7924
- "name": "event",
7944
+ "channel": {
7945
+ "description": "Channel that the published update should affect",
7946
+ "name": "channel",
7947
+ "required": false,
7925
7948
  "hasDynamicHelp": false,
7926
7949
  "multiple": false,
7927
- "options": [
7928
- "BUILD",
7929
- "SUBMIT"
7930
- ],
7931
7950
  "type": "option"
7932
7951
  },
7933
- "url": {
7934
- "description": "Webhook URL",
7935
- "name": "url",
7952
+ "message": {
7953
+ "char": "m",
7954
+ "description": "A short message describing the update",
7955
+ "name": "message",
7956
+ "required": false,
7936
7957
  "hasDynamicHelp": false,
7937
7958
  "multiple": false,
7938
7959
  "type": "option"
7939
7960
  },
7940
- "secret": {
7941
- "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
7942
- "name": "secret",
7961
+ "input-dir": {
7962
+ "description": "Location of the bundle",
7963
+ "name": "input-dir",
7964
+ "required": false,
7965
+ "default": "dist",
7943
7966
  "hasDynamicHelp": false,
7944
7967
  "multiple": false,
7945
7968
  "type": "option"
7946
7969
  },
7947
- "non-interactive": {
7948
- "description": "Run the command in non-interactive mode.",
7949
- "name": "non-interactive",
7950
- "noCacheDefault": true,
7970
+ "skip-bundler": {
7971
+ "description": "Skip running Expo CLI to bundle the app before publishing",
7972
+ "name": "skip-bundler",
7951
7973
  "allowNo": false,
7952
7974
  "type": "boolean"
7953
- }
7954
- },
7955
- "hasDynamicHelp": false,
7956
- "hiddenAliases": [],
7957
- "id": "webhook:update",
7958
- "pluginAlias": "eas-cli",
7959
- "pluginName": "eas-cli",
7960
- "pluginType": "core",
7961
- "strict": true,
7962
- "enableJsonFlag": false,
7963
- "ContextOptions": {
7964
- "LoggedIn": {
7965
- "loggedIn": {}
7966
7975
  },
7967
- "MaybeLoggedIn": {
7968
- "maybeLoggedIn": {}
7969
- },
7970
- "DynamicLoggedIn": {
7971
- "getDynamicLoggedInAsync": {}
7976
+ "clear-cache": {
7977
+ "description": "Clear the bundler cache before publishing",
7978
+ "name": "clear-cache",
7979
+ "allowNo": false,
7980
+ "type": "boolean"
7972
7981
  },
7973
- "SessionManagment": {
7974
- "sessionManager": {}
7982
+ "no-bytecode": {
7983
+ "description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
7984
+ "hidden": true,
7985
+ "name": "no-bytecode",
7986
+ "allowNo": false,
7987
+ "type": "boolean"
7988
+ },
7989
+ "source-maps": {
7990
+ "description": "Emit source maps. Options: true (default), inline, false",
7991
+ "hidden": true,
7992
+ "name": "source-maps",
7993
+ "default": "true",
7994
+ "hasDynamicHelp": false,
7995
+ "multiple": false,
7996
+ "type": "option"
7997
+ },
7998
+ "emit-metadata": {
7999
+ "description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
8000
+ "name": "emit-metadata",
8001
+ "allowNo": false,
8002
+ "type": "boolean"
8003
+ },
8004
+ "rollout-percentage": {
8005
+ "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.",
8006
+ "name": "rollout-percentage",
8007
+ "required": false,
8008
+ "hasDynamicHelp": false,
8009
+ "multiple": false,
8010
+ "type": "option"
8011
+ },
8012
+ "platform": {
8013
+ "char": "p",
8014
+ "name": "platform",
8015
+ "required": false,
8016
+ "default": "all",
8017
+ "hasDynamicHelp": false,
8018
+ "multiple": false,
8019
+ "options": [
8020
+ "android",
8021
+ "ios",
8022
+ "all"
8023
+ ],
8024
+ "type": "option"
8025
+ },
8026
+ "auto": {
8027
+ "description": "Use the current git branch and commit message for the EAS branch and update message",
8028
+ "name": "auto",
8029
+ "allowNo": false,
8030
+ "type": "boolean"
8031
+ },
8032
+ "private-key-path": {
8033
+ "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/",
8034
+ "name": "private-key-path",
8035
+ "required": false,
8036
+ "hasDynamicHelp": false,
8037
+ "multiple": false,
8038
+ "type": "option"
8039
+ },
8040
+ "environment": {
8041
+ "description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\". Required for projects using Expo SDK 55 or greater.",
8042
+ "name": "environment",
8043
+ "required": false,
8044
+ "hasDynamicHelp": false,
8045
+ "multiple": false,
8046
+ "type": "option"
8047
+ },
8048
+ "json": {
8049
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8050
+ "name": "json",
8051
+ "allowNo": false,
8052
+ "type": "boolean"
8053
+ },
8054
+ "non-interactive": {
8055
+ "description": "Run the command in non-interactive mode.",
8056
+ "name": "non-interactive",
8057
+ "noCacheDefault": true,
8058
+ "allowNo": false,
8059
+ "type": "boolean"
8060
+ }
8061
+ },
8062
+ "hasDynamicHelp": false,
8063
+ "hiddenAliases": [],
8064
+ "id": "update",
8065
+ "pluginAlias": "eas-cli",
8066
+ "pluginName": "eas-cli",
8067
+ "pluginType": "core",
8068
+ "strict": true,
8069
+ "enableJsonFlag": false,
8070
+ "ContextOptions": {
8071
+ "LoggedIn": {
8072
+ "loggedIn": {}
8073
+ },
8074
+ "MaybeLoggedIn": {
8075
+ "maybeLoggedIn": {}
8076
+ },
8077
+ "DynamicLoggedIn": {
8078
+ "getDynamicLoggedInAsync": {}
8079
+ },
8080
+ "SessionManagment": {
8081
+ "sessionManager": {}
7975
8082
  },
7976
8083
  "OptionalProjectConfig": {
7977
8084
  "optionalPrivateProjectConfig": {}
@@ -8001,30 +8108,90 @@
8001
8108
  }
8002
8109
  },
8003
8110
  "contextDefinition": {
8004
- "loggedIn": {}
8111
+ "getDynamicPublicProjectConfigAsync": {},
8112
+ "getDynamicPrivateProjectConfigAsync": {},
8113
+ "loggedIn": {},
8114
+ "vcsClient": {},
8115
+ "getServerSideEnvironmentVariablesAsync": {}
8005
8116
  },
8006
8117
  "isESM": false,
8007
8118
  "relativePath": [
8008
8119
  "build",
8009
8120
  "commands",
8010
- "webhook",
8011
- "update.js"
8121
+ "update",
8122
+ "index.js"
8012
8123
  ]
8013
8124
  },
8014
- "webhook:view": {
8125
+ "update:insights": {
8015
8126
  "aliases": [],
8016
8127
  "args": {
8017
- "ID": {
8018
- "description": "ID of the webhook to view",
8019
- "name": "ID",
8128
+ "groupId": {
8129
+ "description": "The ID of an update group.",
8130
+ "name": "groupId",
8020
8131
  "required": true
8021
8132
  }
8022
8133
  },
8023
- "description": "view a webhook",
8024
- "flags": {},
8134
+ "description": "display launch, crash, unique-user, and size insights for an update group",
8135
+ "flags": {
8136
+ "platform": {
8137
+ "description": "Filter to a single platform.",
8138
+ "name": "platform",
8139
+ "hasDynamicHelp": false,
8140
+ "multiple": false,
8141
+ "options": [
8142
+ "ios",
8143
+ "android"
8144
+ ],
8145
+ "type": "option"
8146
+ },
8147
+ "days": {
8148
+ "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
8149
+ "exclusive": [
8150
+ "start",
8151
+ "end"
8152
+ ],
8153
+ "name": "days",
8154
+ "hasDynamicHelp": false,
8155
+ "multiple": false,
8156
+ "type": "option"
8157
+ },
8158
+ "start": {
8159
+ "description": "Start of insights time range (ISO date).",
8160
+ "exclusive": [
8161
+ "days"
8162
+ ],
8163
+ "name": "start",
8164
+ "hasDynamicHelp": false,
8165
+ "multiple": false,
8166
+ "type": "option"
8167
+ },
8168
+ "end": {
8169
+ "description": "End of insights time range (ISO date).",
8170
+ "exclusive": [
8171
+ "days"
8172
+ ],
8173
+ "name": "end",
8174
+ "hasDynamicHelp": false,
8175
+ "multiple": false,
8176
+ "type": "option"
8177
+ },
8178
+ "json": {
8179
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8180
+ "name": "json",
8181
+ "allowNo": false,
8182
+ "type": "boolean"
8183
+ },
8184
+ "non-interactive": {
8185
+ "description": "Run the command in non-interactive mode.",
8186
+ "name": "non-interactive",
8187
+ "noCacheDefault": true,
8188
+ "allowNo": false,
8189
+ "type": "boolean"
8190
+ }
8191
+ },
8025
8192
  "hasDynamicHelp": false,
8026
8193
  "hiddenAliases": [],
8027
- "id": "webhook:view",
8194
+ "id": "update:insights",
8028
8195
  "pluginAlias": "eas-cli",
8029
8196
  "pluginName": "eas-cli",
8030
8197
  "pluginType": "core",
@@ -8077,15 +8244,74 @@
8077
8244
  "relativePath": [
8078
8245
  "build",
8079
8246
  "commands",
8080
- "webhook",
8081
- "view.js"
8247
+ "update",
8248
+ "insights.js"
8082
8249
  ]
8083
8250
  },
8084
- "workflow:cancel": {
8251
+ "update:list": {
8085
8252
  "aliases": [],
8086
8253
  "args": {},
8087
- "description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
8254
+ "description": "view the recent updates",
8088
8255
  "flags": {
8256
+ "branch": {
8257
+ "description": "List updates only on this branch",
8258
+ "exclusive": [
8259
+ "all"
8260
+ ],
8261
+ "name": "branch",
8262
+ "hasDynamicHelp": false,
8263
+ "multiple": false,
8264
+ "type": "option"
8265
+ },
8266
+ "all": {
8267
+ "description": "List updates on all branches",
8268
+ "exclusive": [
8269
+ "branch"
8270
+ ],
8271
+ "name": "all",
8272
+ "allowNo": false,
8273
+ "type": "boolean"
8274
+ },
8275
+ "platform": {
8276
+ "char": "p",
8277
+ "description": "Filter updates by platform",
8278
+ "name": "platform",
8279
+ "hasDynamicHelp": false,
8280
+ "multiple": false,
8281
+ "options": [
8282
+ "android",
8283
+ "ios",
8284
+ "all"
8285
+ ],
8286
+ "type": "option"
8287
+ },
8288
+ "runtime-version": {
8289
+ "description": "Filter updates by runtime version",
8290
+ "name": "runtime-version",
8291
+ "hasDynamicHelp": false,
8292
+ "multiple": false,
8293
+ "type": "option"
8294
+ },
8295
+ "offset": {
8296
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
8297
+ "name": "offset",
8298
+ "hasDynamicHelp": false,
8299
+ "multiple": false,
8300
+ "type": "option"
8301
+ },
8302
+ "limit": {
8303
+ "description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
8304
+ "name": "limit",
8305
+ "hasDynamicHelp": false,
8306
+ "multiple": false,
8307
+ "type": "option"
8308
+ },
8309
+ "json": {
8310
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8311
+ "name": "json",
8312
+ "allowNo": false,
8313
+ "type": "boolean"
8314
+ },
8089
8315
  "non-interactive": {
8090
8316
  "description": "Run the command in non-interactive mode.",
8091
8317
  "name": "non-interactive",
@@ -8096,11 +8322,11 @@
8096
8322
  },
8097
8323
  "hasDynamicHelp": false,
8098
8324
  "hiddenAliases": [],
8099
- "id": "workflow:cancel",
8325
+ "id": "update:list",
8100
8326
  "pluginAlias": "eas-cli",
8101
8327
  "pluginName": "eas-cli",
8102
8328
  "pluginType": "core",
8103
- "strict": false,
8329
+ "strict": true,
8104
8330
  "enableJsonFlag": false,
8105
8331
  "ContextOptions": {
8106
8332
  "LoggedIn": {
@@ -8150,175 +8376,109 @@
8150
8376
  "relativePath": [
8151
8377
  "build",
8152
8378
  "commands",
8153
- "workflow",
8154
- "cancel.js"
8379
+ "update",
8380
+ "list.js"
8155
8381
  ]
8156
8382
  },
8157
- "workflow:create": {
8158
- "aliases": [],
8159
- "args": {
8160
- "name": {
8161
- "description": "Name of the workflow file (must end with .yml or .yaml)",
8162
- "name": "name",
8163
- "required": false
8164
- }
8165
- },
8166
- "description": "create a new workflow configuration YAML file",
8167
- "flags": {
8168
- "skip-validation": {
8169
- "description": "If set, the workflow file will not be validated before being created",
8170
- "name": "skip-validation",
8171
- "allowNo": false,
8172
- "type": "boolean"
8173
- }
8174
- },
8175
- "hasDynamicHelp": false,
8176
- "hiddenAliases": [],
8177
- "id": "workflow:create",
8178
- "pluginAlias": "eas-cli",
8179
- "pluginName": "eas-cli",
8180
- "pluginType": "core",
8181
- "strict": true,
8182
- "enableJsonFlag": false,
8183
- "ContextOptions": {
8184
- "LoggedIn": {
8185
- "loggedIn": {}
8186
- },
8187
- "MaybeLoggedIn": {
8188
- "maybeLoggedIn": {}
8189
- },
8190
- "DynamicLoggedIn": {
8191
- "getDynamicLoggedInAsync": {}
8192
- },
8193
- "SessionManagment": {
8194
- "sessionManager": {}
8195
- },
8196
- "OptionalProjectConfig": {
8197
- "optionalPrivateProjectConfig": {}
8198
- },
8199
- "ProjectDir": {
8200
- "projectDir": {}
8201
- },
8202
- "DynamicProjectConfig": {
8203
- "getDynamicPublicProjectConfigAsync": {},
8204
- "getDynamicPrivateProjectConfigAsync": {}
8205
- },
8206
- "ProjectConfig": {
8207
- "loggedIn": {},
8208
- "privateProjectConfig": {}
8209
- },
8210
- "Analytics": {
8211
- "analytics": {}
8212
- },
8213
- "Vcs": {
8214
- "vcsClient": {}
8215
- },
8216
- "ServerSideEnvironmentVariables": {
8217
- "getServerSideEnvironmentVariablesAsync": {}
8218
- },
8219
- "ProjectId": {
8220
- "projectId": {}
8221
- }
8222
- },
8223
- "contextDefinition": {
8224
- "getDynamicPublicProjectConfigAsync": {},
8225
- "getDynamicPrivateProjectConfigAsync": {},
8226
- "projectDir": {},
8227
- "loggedIn": {}
8228
- },
8229
- "isESM": false,
8230
- "relativePath": [
8231
- "build",
8232
- "commands",
8233
- "workflow",
8234
- "create.js"
8235
- ]
8236
- },
8237
- "workflow:list": {
8383
+ "update:republish": {
8238
8384
  "aliases": [],
8239
8385
  "args": {},
8240
- "description": "List workflows for the current project",
8386
+ "description": "roll back to an existing update",
8241
8387
  "flags": {
8242
- "json": {
8243
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8244
- "name": "json",
8245
- "allowNo": false,
8246
- "type": "boolean"
8247
- }
8248
- },
8249
- "hasDynamicHelp": false,
8250
- "hidden": true,
8251
- "hiddenAliases": [],
8252
- "id": "workflow:list",
8253
- "pluginAlias": "eas-cli",
8254
- "pluginName": "eas-cli",
8255
- "pluginType": "core",
8256
- "strict": true,
8257
- "enableJsonFlag": false,
8258
- "ContextOptions": {
8259
- "LoggedIn": {
8260
- "loggedIn": {}
8261
- },
8262
- "MaybeLoggedIn": {
8263
- "maybeLoggedIn": {}
8264
- },
8265
- "DynamicLoggedIn": {
8266
- "getDynamicLoggedInAsync": {}
8388
+ "channel": {
8389
+ "description": "Channel name to select an update group to republish from",
8390
+ "exclusive": [
8391
+ "branch",
8392
+ "group"
8393
+ ],
8394
+ "name": "channel",
8395
+ "hasDynamicHelp": false,
8396
+ "multiple": false,
8397
+ "type": "option"
8267
8398
  },
8268
- "SessionManagment": {
8269
- "sessionManager": {}
8399
+ "branch": {
8400
+ "description": "Branch name to select an update group to republish from",
8401
+ "exclusive": [
8402
+ "channel",
8403
+ "group"
8404
+ ],
8405
+ "name": "branch",
8406
+ "hasDynamicHelp": false,
8407
+ "multiple": false,
8408
+ "type": "option"
8270
8409
  },
8271
- "OptionalProjectConfig": {
8272
- "optionalPrivateProjectConfig": {}
8410
+ "group": {
8411
+ "description": "Update group ID to republish",
8412
+ "exclusive": [
8413
+ "branch",
8414
+ "channel"
8415
+ ],
8416
+ "name": "group",
8417
+ "hasDynamicHelp": false,
8418
+ "multiple": false,
8419
+ "type": "option"
8273
8420
  },
8274
- "ProjectDir": {
8275
- "projectDir": {}
8421
+ "destination-channel": {
8422
+ "description": "Channel name to select a branch to republish to if republishing to a different branch",
8423
+ "exclusive": [
8424
+ "destination-branch"
8425
+ ],
8426
+ "name": "destination-channel",
8427
+ "hasDynamicHelp": false,
8428
+ "multiple": false,
8429
+ "type": "option"
8276
8430
  },
8277
- "DynamicProjectConfig": {
8278
- "getDynamicPublicProjectConfigAsync": {},
8279
- "getDynamicPrivateProjectConfigAsync": {}
8431
+ "destination-branch": {
8432
+ "description": "Branch name to republish to if republishing to a different branch",
8433
+ "exclusive": [
8434
+ "destination-channel"
8435
+ ],
8436
+ "name": "destination-branch",
8437
+ "hasDynamicHelp": false,
8438
+ "multiple": false,
8439
+ "type": "option"
8280
8440
  },
8281
- "ProjectConfig": {
8282
- "loggedIn": {},
8283
- "privateProjectConfig": {}
8441
+ "message": {
8442
+ "char": "m",
8443
+ "description": "Short message describing the republished update group",
8444
+ "name": "message",
8445
+ "required": false,
8446
+ "hasDynamicHelp": false,
8447
+ "multiple": false,
8448
+ "type": "option"
8284
8449
  },
8285
- "Analytics": {
8286
- "analytics": {}
8450
+ "platform": {
8451
+ "char": "p",
8452
+ "name": "platform",
8453
+ "required": false,
8454
+ "default": "all",
8455
+ "hasDynamicHelp": false,
8456
+ "multiple": false,
8457
+ "options": [
8458
+ "android",
8459
+ "ios",
8460
+ "all"
8461
+ ],
8462
+ "type": "option"
8287
8463
  },
8288
- "Vcs": {
8289
- "vcsClient": {}
8464
+ "private-key-path": {
8465
+ "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/",
8466
+ "name": "private-key-path",
8467
+ "required": false,
8468
+ "hasDynamicHelp": false,
8469
+ "multiple": false,
8470
+ "type": "option"
8290
8471
  },
8291
- "ServerSideEnvironmentVariables": {
8292
- "getServerSideEnvironmentVariablesAsync": {}
8472
+ "rollout-percentage": {
8473
+ "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.",
8474
+ "name": "rollout-percentage",
8475
+ "required": false,
8476
+ "hasDynamicHelp": false,
8477
+ "multiple": false,
8478
+ "type": "option"
8293
8479
  },
8294
- "ProjectId": {
8295
- "projectId": {}
8296
- }
8297
- },
8298
- "contextDefinition": {
8299
- "projectId": {},
8300
- "loggedIn": {}
8301
- },
8302
- "isESM": false,
8303
- "relativePath": [
8304
- "build",
8305
- "commands",
8306
- "workflow",
8307
- "list.js"
8308
- ]
8309
- },
8310
- "workflow:logs": {
8311
- "aliases": [],
8312
- "args": {
8313
- "id": {
8314
- "description": "ID of the workflow run or workflow job to view logs for",
8315
- "name": "id"
8316
- }
8317
- },
8318
- "description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
8319
- "flags": {
8320
8480
  "json": {
8321
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8481
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8322
8482
  "name": "json",
8323
8483
  "allowNo": false,
8324
8484
  "type": "boolean"
@@ -8329,17 +8489,11 @@
8329
8489
  "noCacheDefault": true,
8330
8490
  "allowNo": false,
8331
8491
  "type": "boolean"
8332
- },
8333
- "all-steps": {
8334
- "description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
8335
- "name": "all-steps",
8336
- "allowNo": false,
8337
- "type": "boolean"
8338
8492
  }
8339
8493
  },
8340
8494
  "hasDynamicHelp": false,
8341
8495
  "hiddenAliases": [],
8342
- "id": "workflow:logs",
8496
+ "id": "update:republish",
8343
8497
  "pluginAlias": "eas-cli",
8344
8498
  "pluginName": "eas-cli",
8345
8499
  "pluginType": "core",
@@ -8386,179 +8540,89 @@
8386
8540
  }
8387
8541
  },
8388
8542
  "contextDefinition": {
8389
- "projectId": {},
8390
- "loggedIn": {}
8543
+ "loggedIn": {},
8544
+ "privateProjectConfig": {}
8391
8545
  },
8392
8546
  "isESM": false,
8393
8547
  "relativePath": [
8394
8548
  "build",
8395
8549
  "commands",
8396
- "workflow",
8397
- "logs.js"
8550
+ "update",
8551
+ "republish.js"
8398
8552
  ]
8399
8553
  },
8400
- "workflow:run": {
8554
+ "update:revert-update-rollout": {
8401
8555
  "aliases": [],
8402
- "args": {
8403
- "file": {
8404
- "description": "Path to the workflow file to run",
8405
- "name": "file",
8406
- "required": true
8407
- }
8408
- },
8409
- "description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
8556
+ "args": {},
8557
+ "description": "revert a rollout update for a project",
8410
8558
  "flags": {
8411
- "non-interactive": {
8412
- "description": "Run the command in non-interactive mode.",
8413
- "name": "non-interactive",
8414
- "noCacheDefault": true,
8415
- "allowNo": false,
8416
- "type": "boolean"
8417
- },
8418
- "wait": {
8419
- "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
8420
- "name": "wait",
8421
- "summary": "Wait for workflow run to complete. Defaults to false.",
8422
- "allowNo": true,
8423
- "type": "boolean"
8424
- },
8425
- "input": {
8426
- "aliases": [
8427
- "f",
8428
- "field"
8559
+ "channel": {
8560
+ "description": "Channel name to select an update group to revert the rollout update from",
8561
+ "exclusive": [
8562
+ "branch",
8563
+ "group"
8429
8564
  ],
8430
- "char": "F",
8431
- "description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
8432
- "name": "input",
8433
- "summary": "Set workflow inputs",
8565
+ "name": "channel",
8434
8566
  "hasDynamicHelp": false,
8435
- "multiple": true,
8567
+ "multiple": false,
8436
8568
  "type": "option"
8437
8569
  },
8438
- "ref": {
8439
- "description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
8440
- "name": "ref",
8441
- "summary": "Git reference to run the workflow on",
8570
+ "branch": {
8571
+ "description": "Branch name to select an update group to revert the rollout update from",
8572
+ "exclusive": [
8573
+ "channel",
8574
+ "group"
8575
+ ],
8576
+ "name": "branch",
8442
8577
  "hasDynamicHelp": false,
8443
8578
  "multiple": false,
8444
8579
  "type": "option"
8445
8580
  },
8446
- "json": {
8447
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8448
- "name": "json",
8449
- "allowNo": false,
8450
- "type": "boolean"
8451
- }
8452
- },
8453
- "hasDynamicHelp": false,
8454
- "hiddenAliases": [],
8455
- "id": "workflow:run",
8456
- "pluginAlias": "eas-cli",
8457
- "pluginName": "eas-cli",
8458
- "pluginType": "core",
8459
- "strict": true,
8460
- "enableJsonFlag": false,
8461
- "ContextOptions": {
8462
- "LoggedIn": {
8463
- "loggedIn": {}
8464
- },
8465
- "MaybeLoggedIn": {
8466
- "maybeLoggedIn": {}
8467
- },
8468
- "DynamicLoggedIn": {
8469
- "getDynamicLoggedInAsync": {}
8470
- },
8471
- "SessionManagment": {
8472
- "sessionManager": {}
8473
- },
8474
- "OptionalProjectConfig": {
8475
- "optionalPrivateProjectConfig": {}
8476
- },
8477
- "ProjectDir": {
8478
- "projectDir": {}
8479
- },
8480
- "DynamicProjectConfig": {
8481
- "getDynamicPublicProjectConfigAsync": {},
8482
- "getDynamicPrivateProjectConfigAsync": {}
8483
- },
8484
- "ProjectConfig": {
8485
- "loggedIn": {},
8486
- "privateProjectConfig": {}
8487
- },
8488
- "Analytics": {
8489
- "analytics": {}
8490
- },
8491
- "Vcs": {
8492
- "vcsClient": {}
8493
- },
8494
- "ServerSideEnvironmentVariables": {
8495
- "getServerSideEnvironmentVariablesAsync": {}
8581
+ "group": {
8582
+ "description": "Rollout update group ID to revert",
8583
+ "exclusive": [
8584
+ "branch",
8585
+ "channel"
8586
+ ],
8587
+ "name": "group",
8588
+ "hasDynamicHelp": false,
8589
+ "multiple": false,
8590
+ "type": "option"
8496
8591
  },
8497
- "ProjectId": {
8498
- "projectId": {}
8499
- }
8500
- },
8501
- "contextDefinition": {
8502
- "getDynamicPublicProjectConfigAsync": {},
8503
- "getDynamicPrivateProjectConfigAsync": {},
8504
- "projectDir": {},
8505
- "vcsClient": {},
8506
- "loggedIn": {}
8507
- },
8508
- "isESM": false,
8509
- "relativePath": [
8510
- "build",
8511
- "commands",
8512
- "workflow",
8513
- "run.js"
8514
- ]
8515
- },
8516
- "workflow:runs": {
8517
- "aliases": [],
8518
- "args": {},
8519
- "description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
8520
- "flags": {
8521
- "workflow": {
8522
- "description": "If present, the query will only return runs for the specified workflow file name",
8523
- "name": "workflow",
8592
+ "message": {
8593
+ "char": "m",
8594
+ "description": "Short message describing the revert",
8595
+ "name": "message",
8524
8596
  "required": false,
8525
8597
  "hasDynamicHelp": false,
8526
8598
  "multiple": false,
8527
8599
  "type": "option"
8528
8600
  },
8529
- "status": {
8530
- "description": "If present, filter the returned runs to select those with the specified status",
8531
- "name": "status",
8601
+ "private-key-path": {
8602
+ "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/",
8603
+ "name": "private-key-path",
8532
8604
  "required": false,
8533
8605
  "hasDynamicHelp": false,
8534
8606
  "multiple": false,
8535
- "options": [
8536
- "ACTION_REQUIRED",
8537
- "CANCELED",
8538
- "FAILURE",
8539
- "IN_PROGRESS",
8540
- "NEW",
8541
- "SUCCESS"
8542
- ],
8543
8607
  "type": "option"
8544
8608
  },
8545
8609
  "json": {
8546
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8610
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8547
8611
  "name": "json",
8548
8612
  "allowNo": false,
8549
8613
  "type": "boolean"
8550
8614
  },
8551
- "limit": {
8552
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
8553
- "name": "limit",
8554
- "hasDynamicHelp": false,
8555
- "multiple": false,
8556
- "type": "option"
8615
+ "non-interactive": {
8616
+ "description": "Run the command in non-interactive mode.",
8617
+ "name": "non-interactive",
8618
+ "noCacheDefault": true,
8619
+ "allowNo": false,
8620
+ "type": "boolean"
8557
8621
  }
8558
8622
  },
8559
8623
  "hasDynamicHelp": false,
8560
8624
  "hiddenAliases": [],
8561
- "id": "workflow:runs",
8625
+ "id": "update:revert-update-rollout",
8562
8626
  "pluginAlias": "eas-cli",
8563
8627
  "pluginName": "eas-cli",
8564
8628
  "pluginType": "core",
@@ -8605,51 +8669,94 @@
8605
8669
  }
8606
8670
  },
8607
8671
  "contextDefinition": {
8608
- "projectId": {},
8609
- "loggedIn": {}
8672
+ "loggedIn": {},
8673
+ "privateProjectConfig": {},
8674
+ "vcsClient": {}
8610
8675
  },
8611
8676
  "isESM": false,
8612
8677
  "relativePath": [
8613
8678
  "build",
8614
8679
  "commands",
8615
- "workflow",
8616
- "runs.js"
8680
+ "update",
8681
+ "revert-update-rollout.js"
8617
8682
  ]
8618
8683
  },
8619
- "workflow:status": {
8684
+ "update:roll-back-to-embedded": {
8620
8685
  "aliases": [],
8621
- "args": {
8622
- "WORKFLOW_RUN_ID": {
8623
- "description": "A workflow run ID.",
8624
- "name": "WORKFLOW_RUN_ID"
8625
- }
8626
- },
8627
- "description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
8686
+ "args": {},
8687
+ "description": "roll back to the embedded update",
8628
8688
  "flags": {
8629
- "non-interactive": {
8630
- "description": "Run the command in non-interactive mode.",
8631
- "name": "non-interactive",
8632
- "noCacheDefault": true,
8633
- "allowNo": false,
8634
- "type": "boolean"
8689
+ "branch": {
8690
+ "description": "Branch to publish the rollback to embedded update group on",
8691
+ "name": "branch",
8692
+ "required": false,
8693
+ "hasDynamicHelp": false,
8694
+ "multiple": false,
8695
+ "type": "option"
8635
8696
  },
8636
- "wait": {
8637
- "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
8638
- "name": "wait",
8639
- "summary": "Wait for workflow run to complete. Defaults to false.",
8640
- "allowNo": true,
8641
- "type": "boolean"
8697
+ "channel": {
8698
+ "description": "Channel that the published rollback to embedded update should affect",
8699
+ "name": "channel",
8700
+ "required": false,
8701
+ "hasDynamicHelp": false,
8702
+ "multiple": false,
8703
+ "type": "option"
8704
+ },
8705
+ "runtime-version": {
8706
+ "description": "Runtime version that the rollback to embedded update should target",
8707
+ "name": "runtime-version",
8708
+ "required": false,
8709
+ "hasDynamicHelp": false,
8710
+ "multiple": false,
8711
+ "type": "option"
8712
+ },
8713
+ "message": {
8714
+ "description": "A short message describing the rollback to embedded update",
8715
+ "name": "message",
8716
+ "required": false,
8717
+ "hasDynamicHelp": false,
8718
+ "multiple": false,
8719
+ "type": "option"
8720
+ },
8721
+ "platform": {
8722
+ "char": "p",
8723
+ "name": "platform",
8724
+ "required": false,
8725
+ "default": "all",
8726
+ "hasDynamicHelp": false,
8727
+ "multiple": false,
8728
+ "options": [
8729
+ "android",
8730
+ "ios",
8731
+ "all"
8732
+ ],
8733
+ "type": "option"
8734
+ },
8735
+ "private-key-path": {
8736
+ "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/",
8737
+ "name": "private-key-path",
8738
+ "required": false,
8739
+ "hasDynamicHelp": false,
8740
+ "multiple": false,
8741
+ "type": "option"
8642
8742
  },
8643
8743
  "json": {
8644
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8744
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8645
8745
  "name": "json",
8646
8746
  "allowNo": false,
8647
8747
  "type": "boolean"
8748
+ },
8749
+ "non-interactive": {
8750
+ "description": "Run the command in non-interactive mode.",
8751
+ "name": "non-interactive",
8752
+ "noCacheDefault": true,
8753
+ "allowNo": false,
8754
+ "type": "boolean"
8648
8755
  }
8649
8756
  },
8650
8757
  "hasDynamicHelp": false,
8651
8758
  "hiddenAliases": [],
8652
- "id": "workflow:status",
8759
+ "id": "update:roll-back-to-embedded",
8653
8760
  "pluginAlias": "eas-cli",
8654
8761
  "pluginName": "eas-cli",
8655
8762
  "pluginType": "core",
@@ -8698,40 +8805,34 @@
8698
8805
  "contextDefinition": {
8699
8806
  "getDynamicPublicProjectConfigAsync": {},
8700
8807
  "getDynamicPrivateProjectConfigAsync": {},
8701
- "projectDir": {},
8702
- "vcsClient": {},
8703
- "loggedIn": {}
8808
+ "loggedIn": {},
8809
+ "vcsClient": {}
8704
8810
  },
8705
8811
  "isESM": false,
8706
8812
  "relativePath": [
8707
8813
  "build",
8708
8814
  "commands",
8709
- "workflow",
8710
- "status.js"
8815
+ "update",
8816
+ "roll-back-to-embedded.js"
8711
8817
  ]
8712
8818
  },
8713
- "workflow:validate": {
8819
+ "update:rollback": {
8714
8820
  "aliases": [],
8715
- "args": {
8716
- "path": {
8717
- "description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
8718
- "name": "path",
8719
- "required": true
8720
- }
8721
- },
8722
- "description": "validate a workflow configuration yaml file",
8821
+ "args": {},
8822
+ "description": "Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute \"eas update:republish\" or \"eas update:roll-back-to-embedded\".",
8723
8823
  "flags": {
8724
- "non-interactive": {
8725
- "description": "Run the command in non-interactive mode.",
8726
- "name": "non-interactive",
8727
- "noCacheDefault": true,
8728
- "allowNo": false,
8729
- "type": "boolean"
8824
+ "private-key-path": {
8825
+ "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/",
8826
+ "name": "private-key-path",
8827
+ "required": false,
8828
+ "hasDynamicHelp": false,
8829
+ "multiple": false,
8830
+ "type": "option"
8730
8831
  }
8731
8832
  },
8732
8833
  "hasDynamicHelp": false,
8733
8834
  "hiddenAliases": [],
8734
- "id": "workflow:validate",
8835
+ "id": "update:rollback",
8735
8836
  "pluginAlias": "eas-cli",
8736
8837
  "pluginName": "eas-cli",
8737
8838
  "pluginType": "core",
@@ -8777,48 +8878,73 @@
8777
8878
  "projectId": {}
8778
8879
  }
8779
8880
  },
8780
- "contextDefinition": {
8781
- "getDynamicPublicProjectConfigAsync": {},
8782
- "getDynamicPrivateProjectConfigAsync": {},
8783
- "projectDir": {},
8784
- "projectId": {},
8785
- "loggedIn": {}
8786
- },
8881
+ "contextDefinition": {},
8787
8882
  "isESM": false,
8788
8883
  "relativePath": [
8789
8884
  "build",
8790
8885
  "commands",
8791
- "workflow",
8792
- "validate.js"
8886
+ "update",
8887
+ "rollback.js"
8793
8888
  ]
8794
8889
  },
8795
- "workflow:view": {
8890
+ "update:view": {
8796
8891
  "aliases": [],
8797
8892
  "args": {
8798
- "id": {
8799
- "description": "ID of the workflow run to view",
8800
- "name": "id"
8893
+ "groupId": {
8894
+ "description": "The ID of an update group.",
8895
+ "name": "groupId",
8896
+ "required": true
8801
8897
  }
8802
8898
  },
8803
- "description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
8899
+ "description": "update group details",
8804
8900
  "flags": {
8901
+ "insights": {
8902
+ "description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
8903
+ "name": "insights",
8904
+ "allowNo": false,
8905
+ "type": "boolean"
8906
+ },
8907
+ "days": {
8908
+ "description": "Show insights from the last N days (default 7). Only used with --insights.",
8909
+ "exclusive": [
8910
+ "start",
8911
+ "end"
8912
+ ],
8913
+ "name": "days",
8914
+ "hasDynamicHelp": false,
8915
+ "multiple": false,
8916
+ "type": "option"
8917
+ },
8918
+ "start": {
8919
+ "description": "Start of insights time range (ISO date). Only used with --insights.",
8920
+ "exclusive": [
8921
+ "days"
8922
+ ],
8923
+ "name": "start",
8924
+ "hasDynamicHelp": false,
8925
+ "multiple": false,
8926
+ "type": "option"
8927
+ },
8928
+ "end": {
8929
+ "description": "End of insights time range (ISO date). Only used with --insights.",
8930
+ "exclusive": [
8931
+ "days"
8932
+ ],
8933
+ "name": "end",
8934
+ "hasDynamicHelp": false,
8935
+ "multiple": false,
8936
+ "type": "option"
8937
+ },
8805
8938
  "json": {
8806
8939
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8807
8940
  "name": "json",
8808
8941
  "allowNo": false,
8809
8942
  "type": "boolean"
8810
- },
8811
- "non-interactive": {
8812
- "description": "Run the command in non-interactive mode.",
8813
- "name": "non-interactive",
8814
- "noCacheDefault": true,
8815
- "allowNo": false,
8816
- "type": "boolean"
8817
8943
  }
8818
8944
  },
8819
8945
  "hasDynamicHelp": false,
8820
8946
  "hiddenAliases": [],
8821
- "id": "workflow:view",
8947
+ "id": "update:view",
8822
8948
  "pluginAlias": "eas-cli",
8823
8949
  "pluginName": "eas-cli",
8824
8950
  "pluginType": "core",
@@ -8865,40 +8991,42 @@
8865
8991
  }
8866
8992
  },
8867
8993
  "contextDefinition": {
8868
- "projectId": {},
8869
8994
  "loggedIn": {}
8870
8995
  },
8871
8996
  "isESM": false,
8872
8997
  "relativePath": [
8873
8998
  "build",
8874
8999
  "commands",
8875
- "workflow",
9000
+ "update",
8876
9001
  "view.js"
8877
9002
  ]
8878
9003
  },
8879
- "update:configure": {
9004
+ "webhook:create": {
8880
9005
  "aliases": [],
8881
9006
  "args": {},
8882
- "description": "configure the project to support EAS Update",
9007
+ "description": "create a webhook",
8883
9008
  "flags": {
8884
- "platform": {
8885
- "char": "p",
8886
- "description": "Platform to configure",
8887
- "name": "platform",
8888
- "default": "all",
9009
+ "event": {
9010
+ "description": "Event type that triggers the webhook",
9011
+ "name": "event",
8889
9012
  "hasDynamicHelp": false,
8890
9013
  "multiple": false,
8891
9014
  "options": [
8892
- "android",
8893
- "ios",
8894
- "all"
9015
+ "BUILD",
9016
+ "SUBMIT"
8895
9017
  ],
8896
9018
  "type": "option"
8897
9019
  },
8898
- "environment": {
8899
- "description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
8900
- "name": "environment",
8901
- "required": false,
9020
+ "url": {
9021
+ "description": "Webhook URL",
9022
+ "name": "url",
9023
+ "hasDynamicHelp": false,
9024
+ "multiple": false,
9025
+ "type": "option"
9026
+ },
9027
+ "secret": {
9028
+ "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
9029
+ "name": "secret",
8902
9030
  "hasDynamicHelp": false,
8903
9031
  "multiple": false,
8904
9032
  "type": "option"
@@ -8913,7 +9041,7 @@
8913
9041
  },
8914
9042
  "hasDynamicHelp": false,
8915
9043
  "hiddenAliases": [],
8916
- "id": "update:configure",
9044
+ "id": "webhook:create",
8917
9045
  "pluginAlias": "eas-cli",
8918
9046
  "pluginName": "eas-cli",
8919
9047
  "pluginType": "core",
@@ -8960,35 +9088,28 @@
8960
9088
  }
8961
9089
  },
8962
9090
  "contextDefinition": {
8963
- "loggedIn": {},
8964
- "privateProjectConfig": {},
8965
- "vcsClient": {}
9091
+ "projectId": {},
9092
+ "loggedIn": {}
8966
9093
  },
8967
9094
  "isESM": false,
8968
9095
  "relativePath": [
8969
9096
  "build",
8970
9097
  "commands",
8971
- "update",
8972
- "configure.js"
9098
+ "webhook",
9099
+ "create.js"
8973
9100
  ]
8974
9101
  },
8975
- "update:delete": {
9102
+ "webhook:delete": {
8976
9103
  "aliases": [],
8977
9104
  "args": {
8978
- "groupId": {
8979
- "description": "The ID of an update group to delete.",
8980
- "name": "groupId",
8981
- "required": true
9105
+ "ID": {
9106
+ "description": "ID of the webhook to delete",
9107
+ "name": "ID",
9108
+ "required": false
8982
9109
  }
8983
9110
  },
8984
- "description": "delete all the updates in an update group",
9111
+ "description": "delete a webhook",
8985
9112
  "flags": {
8986
- "json": {
8987
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
8988
- "name": "json",
8989
- "allowNo": false,
8990
- "type": "boolean"
8991
- },
8992
9113
  "non-interactive": {
8993
9114
  "description": "Run the command in non-interactive mode.",
8994
9115
  "name": "non-interactive",
@@ -8999,7 +9120,7 @@
8999
9120
  },
9000
9121
  "hasDynamicHelp": false,
9001
9122
  "hiddenAliases": [],
9002
- "id": "update:delete",
9123
+ "id": "webhook:delete",
9003
9124
  "pluginAlias": "eas-cli",
9004
9125
  "pluginName": "eas-cli",
9005
9126
  "pluginType": "core",
@@ -9046,58 +9167,43 @@
9046
9167
  }
9047
9168
  },
9048
9169
  "contextDefinition": {
9170
+ "projectId": {},
9049
9171
  "loggedIn": {}
9050
9172
  },
9051
9173
  "isESM": false,
9052
9174
  "relativePath": [
9053
9175
  "build",
9054
9176
  "commands",
9055
- "update",
9177
+ "webhook",
9056
9178
  "delete.js"
9057
9179
  ]
9058
9180
  },
9059
- "update:edit": {
9181
+ "webhook:list": {
9060
9182
  "aliases": [],
9061
- "args": {
9062
- "groupId": {
9063
- "description": "The ID of an update group to edit.",
9064
- "name": "groupId"
9065
- }
9066
- },
9067
- "description": "edit all the updates in an update group",
9183
+ "args": {},
9184
+ "description": "list webhooks",
9068
9185
  "flags": {
9069
- "rollout-percentage": {
9070
- "description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
9071
- "name": "rollout-percentage",
9072
- "required": false,
9073
- "hasDynamicHelp": false,
9074
- "multiple": false,
9075
- "type": "option"
9076
- },
9077
- "branch": {
9078
- "description": "Branch for which to list updates to select from",
9079
- "name": "branch",
9186
+ "event": {
9187
+ "description": "Event type that triggers the webhook",
9188
+ "name": "event",
9080
9189
  "hasDynamicHelp": false,
9081
9190
  "multiple": false,
9191
+ "options": [
9192
+ "BUILD",
9193
+ "SUBMIT"
9194
+ ],
9082
9195
  "type": "option"
9083
9196
  },
9084
9197
  "json": {
9085
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9198
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9086
9199
  "name": "json",
9087
9200
  "allowNo": false,
9088
9201
  "type": "boolean"
9089
- },
9090
- "non-interactive": {
9091
- "description": "Run the command in non-interactive mode.",
9092
- "name": "non-interactive",
9093
- "noCacheDefault": true,
9094
- "allowNo": false,
9095
- "type": "boolean"
9096
9202
  }
9097
9203
  },
9098
9204
  "hasDynamicHelp": false,
9099
9205
  "hiddenAliases": [],
9100
- "id": "update:edit",
9206
+ "id": "webhook:list",
9101
9207
  "pluginAlias": "eas-cli",
9102
9208
  "pluginName": "eas-cli",
9103
9209
  "pluginType": "core",
@@ -9151,133 +9257,190 @@
9151
9257
  "relativePath": [
9152
9258
  "build",
9153
9259
  "commands",
9154
- "update",
9155
- "edit.js"
9260
+ "webhook",
9261
+ "list.js"
9156
9262
  ]
9157
9263
  },
9158
- "update": {
9264
+ "webhook:update": {
9159
9265
  "aliases": [],
9160
9266
  "args": {},
9161
- "description": "publish an update group",
9267
+ "description": "update a webhook",
9162
9268
  "flags": {
9163
- "branch": {
9164
- "description": "Branch to publish the update group on",
9165
- "name": "branch",
9166
- "required": false,
9269
+ "id": {
9270
+ "description": "Webhook ID",
9271
+ "name": "id",
9272
+ "required": true,
9167
9273
  "hasDynamicHelp": false,
9168
9274
  "multiple": false,
9169
9275
  "type": "option"
9170
9276
  },
9171
- "channel": {
9172
- "description": "Channel that the published update should affect",
9173
- "name": "channel",
9174
- "required": false,
9277
+ "event": {
9278
+ "description": "Event type that triggers the webhook",
9279
+ "name": "event",
9175
9280
  "hasDynamicHelp": false,
9176
9281
  "multiple": false,
9282
+ "options": [
9283
+ "BUILD",
9284
+ "SUBMIT"
9285
+ ],
9177
9286
  "type": "option"
9178
9287
  },
9179
- "message": {
9180
- "char": "m",
9181
- "description": "A short message describing the update",
9182
- "name": "message",
9183
- "required": false,
9288
+ "url": {
9289
+ "description": "Webhook URL",
9290
+ "name": "url",
9184
9291
  "hasDynamicHelp": false,
9185
9292
  "multiple": false,
9186
9293
  "type": "option"
9187
9294
  },
9188
- "input-dir": {
9189
- "description": "Location of the bundle",
9190
- "name": "input-dir",
9191
- "required": false,
9192
- "default": "dist",
9295
+ "secret": {
9296
+ "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
9297
+ "name": "secret",
9193
9298
  "hasDynamicHelp": false,
9194
9299
  "multiple": false,
9195
9300
  "type": "option"
9196
9301
  },
9197
- "skip-bundler": {
9198
- "description": "Skip running Expo CLI to bundle the app before publishing",
9199
- "name": "skip-bundler",
9302
+ "non-interactive": {
9303
+ "description": "Run the command in non-interactive mode.",
9304
+ "name": "non-interactive",
9305
+ "noCacheDefault": true,
9200
9306
  "allowNo": false,
9201
9307
  "type": "boolean"
9308
+ }
9309
+ },
9310
+ "hasDynamicHelp": false,
9311
+ "hiddenAliases": [],
9312
+ "id": "webhook:update",
9313
+ "pluginAlias": "eas-cli",
9314
+ "pluginName": "eas-cli",
9315
+ "pluginType": "core",
9316
+ "strict": true,
9317
+ "enableJsonFlag": false,
9318
+ "ContextOptions": {
9319
+ "LoggedIn": {
9320
+ "loggedIn": {}
9202
9321
  },
9203
- "clear-cache": {
9204
- "description": "Clear the bundler cache before publishing",
9205
- "name": "clear-cache",
9206
- "allowNo": false,
9207
- "type": "boolean"
9322
+ "MaybeLoggedIn": {
9323
+ "maybeLoggedIn": {}
9324
+ },
9325
+ "DynamicLoggedIn": {
9326
+ "getDynamicLoggedInAsync": {}
9327
+ },
9328
+ "SessionManagment": {
9329
+ "sessionManager": {}
9330
+ },
9331
+ "OptionalProjectConfig": {
9332
+ "optionalPrivateProjectConfig": {}
9333
+ },
9334
+ "ProjectDir": {
9335
+ "projectDir": {}
9336
+ },
9337
+ "DynamicProjectConfig": {
9338
+ "getDynamicPublicProjectConfigAsync": {},
9339
+ "getDynamicPrivateProjectConfigAsync": {}
9340
+ },
9341
+ "ProjectConfig": {
9342
+ "loggedIn": {},
9343
+ "privateProjectConfig": {}
9344
+ },
9345
+ "Analytics": {
9346
+ "analytics": {}
9347
+ },
9348
+ "Vcs": {
9349
+ "vcsClient": {}
9350
+ },
9351
+ "ServerSideEnvironmentVariables": {
9352
+ "getServerSideEnvironmentVariablesAsync": {}
9353
+ },
9354
+ "ProjectId": {
9355
+ "projectId": {}
9356
+ }
9357
+ },
9358
+ "contextDefinition": {
9359
+ "loggedIn": {}
9360
+ },
9361
+ "isESM": false,
9362
+ "relativePath": [
9363
+ "build",
9364
+ "commands",
9365
+ "webhook",
9366
+ "update.js"
9367
+ ]
9368
+ },
9369
+ "webhook:view": {
9370
+ "aliases": [],
9371
+ "args": {
9372
+ "ID": {
9373
+ "description": "ID of the webhook to view",
9374
+ "name": "ID",
9375
+ "required": true
9376
+ }
9377
+ },
9378
+ "description": "view a webhook",
9379
+ "flags": {},
9380
+ "hasDynamicHelp": false,
9381
+ "hiddenAliases": [],
9382
+ "id": "webhook:view",
9383
+ "pluginAlias": "eas-cli",
9384
+ "pluginName": "eas-cli",
9385
+ "pluginType": "core",
9386
+ "strict": true,
9387
+ "enableJsonFlag": false,
9388
+ "ContextOptions": {
9389
+ "LoggedIn": {
9390
+ "loggedIn": {}
9208
9391
  },
9209
- "no-bytecode": {
9210
- "description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
9211
- "hidden": true,
9212
- "name": "no-bytecode",
9213
- "allowNo": false,
9214
- "type": "boolean"
9392
+ "MaybeLoggedIn": {
9393
+ "maybeLoggedIn": {}
9215
9394
  },
9216
- "source-maps": {
9217
- "description": "Emit source maps. Options: true (default), inline, false",
9218
- "hidden": true,
9219
- "name": "source-maps",
9220
- "default": "true",
9221
- "hasDynamicHelp": false,
9222
- "multiple": false,
9223
- "type": "option"
9395
+ "DynamicLoggedIn": {
9396
+ "getDynamicLoggedInAsync": {}
9224
9397
  },
9225
- "emit-metadata": {
9226
- "description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
9227
- "name": "emit-metadata",
9228
- "allowNo": false,
9229
- "type": "boolean"
9398
+ "SessionManagment": {
9399
+ "sessionManager": {}
9230
9400
  },
9231
- "rollout-percentage": {
9232
- "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.",
9233
- "name": "rollout-percentage",
9234
- "required": false,
9235
- "hasDynamicHelp": false,
9236
- "multiple": false,
9237
- "type": "option"
9401
+ "OptionalProjectConfig": {
9402
+ "optionalPrivateProjectConfig": {}
9238
9403
  },
9239
- "platform": {
9240
- "char": "p",
9241
- "name": "platform",
9242
- "required": false,
9243
- "default": "all",
9244
- "hasDynamicHelp": false,
9245
- "multiple": false,
9246
- "options": [
9247
- "android",
9248
- "ios",
9249
- "all"
9250
- ],
9251
- "type": "option"
9404
+ "ProjectDir": {
9405
+ "projectDir": {}
9252
9406
  },
9253
- "auto": {
9254
- "description": "Use the current git branch and commit message for the EAS branch and update message",
9255
- "name": "auto",
9256
- "allowNo": false,
9257
- "type": "boolean"
9407
+ "DynamicProjectConfig": {
9408
+ "getDynamicPublicProjectConfigAsync": {},
9409
+ "getDynamicPrivateProjectConfigAsync": {}
9258
9410
  },
9259
- "private-key-path": {
9260
- "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/",
9261
- "name": "private-key-path",
9262
- "required": false,
9263
- "hasDynamicHelp": false,
9264
- "multiple": false,
9265
- "type": "option"
9411
+ "ProjectConfig": {
9412
+ "loggedIn": {},
9413
+ "privateProjectConfig": {}
9266
9414
  },
9267
- "environment": {
9268
- "description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\". Required for projects using Expo SDK 55 or greater.",
9269
- "name": "environment",
9270
- "required": false,
9271
- "hasDynamicHelp": false,
9272
- "multiple": false,
9273
- "type": "option"
9415
+ "Analytics": {
9416
+ "analytics": {}
9274
9417
  },
9275
- "json": {
9276
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9277
- "name": "json",
9278
- "allowNo": false,
9279
- "type": "boolean"
9418
+ "Vcs": {
9419
+ "vcsClient": {}
9420
+ },
9421
+ "ServerSideEnvironmentVariables": {
9422
+ "getServerSideEnvironmentVariablesAsync": {}
9280
9423
  },
9424
+ "ProjectId": {
9425
+ "projectId": {}
9426
+ }
9427
+ },
9428
+ "contextDefinition": {
9429
+ "loggedIn": {}
9430
+ },
9431
+ "isESM": false,
9432
+ "relativePath": [
9433
+ "build",
9434
+ "commands",
9435
+ "webhook",
9436
+ "view.js"
9437
+ ]
9438
+ },
9439
+ "workflow:cancel": {
9440
+ "aliases": [],
9441
+ "args": {},
9442
+ "description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
9443
+ "flags": {
9281
9444
  "non-interactive": {
9282
9445
  "description": "Run the command in non-interactive mode.",
9283
9446
  "name": "non-interactive",
@@ -9288,11 +9451,11 @@
9288
9451
  },
9289
9452
  "hasDynamicHelp": false,
9290
9453
  "hiddenAliases": [],
9291
- "id": "update",
9454
+ "id": "workflow:cancel",
9292
9455
  "pluginAlias": "eas-cli",
9293
9456
  "pluginName": "eas-cli",
9294
9457
  "pluginType": "core",
9295
- "strict": true,
9458
+ "strict": false,
9296
9459
  "enableJsonFlag": false,
9297
9460
  "ContextOptions": {
9298
9461
  "LoggedIn": {
@@ -9335,90 +9498,38 @@
9335
9498
  }
9336
9499
  },
9337
9500
  "contextDefinition": {
9338
- "getDynamicPublicProjectConfigAsync": {},
9339
- "getDynamicPrivateProjectConfigAsync": {},
9340
- "loggedIn": {},
9341
- "vcsClient": {},
9342
- "getServerSideEnvironmentVariablesAsync": {}
9501
+ "projectId": {},
9502
+ "loggedIn": {}
9343
9503
  },
9344
9504
  "isESM": false,
9345
9505
  "relativePath": [
9346
9506
  "build",
9347
9507
  "commands",
9348
- "update",
9349
- "index.js"
9508
+ "workflow",
9509
+ "cancel.js"
9350
9510
  ]
9351
9511
  },
9352
- "update:insights": {
9512
+ "workflow:create": {
9353
9513
  "aliases": [],
9354
9514
  "args": {
9355
- "groupId": {
9356
- "description": "The ID of an update group.",
9357
- "name": "groupId",
9358
- "required": true
9515
+ "name": {
9516
+ "description": "Name of the workflow file (must end with .yml or .yaml)",
9517
+ "name": "name",
9518
+ "required": false
9359
9519
  }
9360
9520
  },
9361
- "description": "display launch, crash, unique-user, and size insights for an update group",
9521
+ "description": "create a new workflow configuration YAML file",
9362
9522
  "flags": {
9363
- "platform": {
9364
- "description": "Filter to a single platform.",
9365
- "name": "platform",
9366
- "hasDynamicHelp": false,
9367
- "multiple": false,
9368
- "options": [
9369
- "ios",
9370
- "android"
9371
- ],
9372
- "type": "option"
9373
- },
9374
- "days": {
9375
- "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
9376
- "exclusive": [
9377
- "start",
9378
- "end"
9379
- ],
9380
- "name": "days",
9381
- "hasDynamicHelp": false,
9382
- "multiple": false,
9383
- "type": "option"
9384
- },
9385
- "start": {
9386
- "description": "Start of insights time range (ISO date).",
9387
- "exclusive": [
9388
- "days"
9389
- ],
9390
- "name": "start",
9391
- "hasDynamicHelp": false,
9392
- "multiple": false,
9393
- "type": "option"
9394
- },
9395
- "end": {
9396
- "description": "End of insights time range (ISO date).",
9397
- "exclusive": [
9398
- "days"
9399
- ],
9400
- "name": "end",
9401
- "hasDynamicHelp": false,
9402
- "multiple": false,
9403
- "type": "option"
9404
- },
9405
- "json": {
9406
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9407
- "name": "json",
9408
- "allowNo": false,
9409
- "type": "boolean"
9410
- },
9411
- "non-interactive": {
9412
- "description": "Run the command in non-interactive mode.",
9413
- "name": "non-interactive",
9414
- "noCacheDefault": true,
9523
+ "skip-validation": {
9524
+ "description": "If set, the workflow file will not be validated before being created",
9525
+ "name": "skip-validation",
9415
9526
  "allowNo": false,
9416
9527
  "type": "boolean"
9417
9528
  }
9418
9529
  },
9419
9530
  "hasDynamicHelp": false,
9420
9531
  "hiddenAliases": [],
9421
- "id": "update:insights",
9532
+ "id": "workflow:create",
9422
9533
  "pluginAlias": "eas-cli",
9423
9534
  "pluginName": "eas-cli",
9424
9535
  "pluginType": "core",
@@ -9465,91 +9576,35 @@
9465
9576
  }
9466
9577
  },
9467
9578
  "contextDefinition": {
9579
+ "getDynamicPublicProjectConfigAsync": {},
9580
+ "getDynamicPrivateProjectConfigAsync": {},
9581
+ "projectDir": {},
9468
9582
  "loggedIn": {}
9469
9583
  },
9470
9584
  "isESM": false,
9471
9585
  "relativePath": [
9472
9586
  "build",
9473
9587
  "commands",
9474
- "update",
9475
- "insights.js"
9588
+ "workflow",
9589
+ "create.js"
9476
9590
  ]
9477
9591
  },
9478
- "update:list": {
9592
+ "workflow:list": {
9479
9593
  "aliases": [],
9480
9594
  "args": {},
9481
- "description": "view the recent updates",
9595
+ "description": "List workflows for the current project",
9482
9596
  "flags": {
9483
- "branch": {
9484
- "description": "List updates only on this branch",
9485
- "exclusive": [
9486
- "all"
9487
- ],
9488
- "name": "branch",
9489
- "hasDynamicHelp": false,
9490
- "multiple": false,
9491
- "type": "option"
9492
- },
9493
- "all": {
9494
- "description": "List updates on all branches",
9495
- "exclusive": [
9496
- "branch"
9497
- ],
9498
- "name": "all",
9499
- "allowNo": false,
9500
- "type": "boolean"
9501
- },
9502
- "platform": {
9503
- "char": "p",
9504
- "description": "Filter updates by platform",
9505
- "name": "platform",
9506
- "hasDynamicHelp": false,
9507
- "multiple": false,
9508
- "options": [
9509
- "android",
9510
- "ios",
9511
- "all"
9512
- ],
9513
- "type": "option"
9514
- },
9515
- "runtime-version": {
9516
- "description": "Filter updates by runtime version",
9517
- "name": "runtime-version",
9518
- "hasDynamicHelp": false,
9519
- "multiple": false,
9520
- "type": "option"
9521
- },
9522
- "offset": {
9523
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
9524
- "name": "offset",
9525
- "hasDynamicHelp": false,
9526
- "multiple": false,
9527
- "type": "option"
9528
- },
9529
- "limit": {
9530
- "description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
9531
- "name": "limit",
9532
- "hasDynamicHelp": false,
9533
- "multiple": false,
9534
- "type": "option"
9535
- },
9536
9597
  "json": {
9537
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9598
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9538
9599
  "name": "json",
9539
9600
  "allowNo": false,
9540
9601
  "type": "boolean"
9541
- },
9542
- "non-interactive": {
9543
- "description": "Run the command in non-interactive mode.",
9544
- "name": "non-interactive",
9545
- "noCacheDefault": true,
9546
- "allowNo": false,
9547
- "type": "boolean"
9548
9602
  }
9549
9603
  },
9550
9604
  "hasDynamicHelp": false,
9605
+ "hidden": true,
9551
9606
  "hiddenAliases": [],
9552
- "id": "update:list",
9607
+ "id": "workflow:list",
9553
9608
  "pluginAlias": "eas-cli",
9554
9609
  "pluginName": "eas-cli",
9555
9610
  "pluginType": "core",
@@ -9603,109 +9658,22 @@
9603
9658
  "relativePath": [
9604
9659
  "build",
9605
9660
  "commands",
9606
- "update",
9661
+ "workflow",
9607
9662
  "list.js"
9608
9663
  ]
9609
9664
  },
9610
- "update:republish": {
9665
+ "workflow:logs": {
9611
9666
  "aliases": [],
9612
- "args": {},
9613
- "description": "roll back to an existing update",
9667
+ "args": {
9668
+ "id": {
9669
+ "description": "ID of the workflow run or workflow job to view logs for",
9670
+ "name": "id"
9671
+ }
9672
+ },
9673
+ "description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
9614
9674
  "flags": {
9615
- "channel": {
9616
- "description": "Channel name to select an update group to republish from",
9617
- "exclusive": [
9618
- "branch",
9619
- "group"
9620
- ],
9621
- "name": "channel",
9622
- "hasDynamicHelp": false,
9623
- "multiple": false,
9624
- "type": "option"
9625
- },
9626
- "branch": {
9627
- "description": "Branch name to select an update group to republish from",
9628
- "exclusive": [
9629
- "channel",
9630
- "group"
9631
- ],
9632
- "name": "branch",
9633
- "hasDynamicHelp": false,
9634
- "multiple": false,
9635
- "type": "option"
9636
- },
9637
- "group": {
9638
- "description": "Update group ID to republish",
9639
- "exclusive": [
9640
- "branch",
9641
- "channel"
9642
- ],
9643
- "name": "group",
9644
- "hasDynamicHelp": false,
9645
- "multiple": false,
9646
- "type": "option"
9647
- },
9648
- "destination-channel": {
9649
- "description": "Channel name to select a branch to republish to if republishing to a different branch",
9650
- "exclusive": [
9651
- "destination-branch"
9652
- ],
9653
- "name": "destination-channel",
9654
- "hasDynamicHelp": false,
9655
- "multiple": false,
9656
- "type": "option"
9657
- },
9658
- "destination-branch": {
9659
- "description": "Branch name to republish to if republishing to a different branch",
9660
- "exclusive": [
9661
- "destination-channel"
9662
- ],
9663
- "name": "destination-branch",
9664
- "hasDynamicHelp": false,
9665
- "multiple": false,
9666
- "type": "option"
9667
- },
9668
- "message": {
9669
- "char": "m",
9670
- "description": "Short message describing the republished update group",
9671
- "name": "message",
9672
- "required": false,
9673
- "hasDynamicHelp": false,
9674
- "multiple": false,
9675
- "type": "option"
9676
- },
9677
- "platform": {
9678
- "char": "p",
9679
- "name": "platform",
9680
- "required": false,
9681
- "default": "all",
9682
- "hasDynamicHelp": false,
9683
- "multiple": false,
9684
- "options": [
9685
- "android",
9686
- "ios",
9687
- "all"
9688
- ],
9689
- "type": "option"
9690
- },
9691
- "private-key-path": {
9692
- "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/",
9693
- "name": "private-key-path",
9694
- "required": false,
9695
- "hasDynamicHelp": false,
9696
- "multiple": false,
9697
- "type": "option"
9698
- },
9699
- "rollout-percentage": {
9700
- "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.",
9701
- "name": "rollout-percentage",
9702
- "required": false,
9703
- "hasDynamicHelp": false,
9704
- "multiple": false,
9705
- "type": "option"
9706
- },
9707
9675
  "json": {
9708
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9676
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9709
9677
  "name": "json",
9710
9678
  "allowNo": false,
9711
9679
  "type": "boolean"
@@ -9716,11 +9684,17 @@
9716
9684
  "noCacheDefault": true,
9717
9685
  "allowNo": false,
9718
9686
  "type": "boolean"
9687
+ },
9688
+ "all-steps": {
9689
+ "description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
9690
+ "name": "all-steps",
9691
+ "allowNo": false,
9692
+ "type": "boolean"
9719
9693
  }
9720
9694
  },
9721
9695
  "hasDynamicHelp": false,
9722
9696
  "hiddenAliases": [],
9723
- "id": "update:republish",
9697
+ "id": "workflow:logs",
9724
9698
  "pluginAlias": "eas-cli",
9725
9699
  "pluginName": "eas-cli",
9726
9700
  "pluginType": "core",
@@ -9767,89 +9741,179 @@
9767
9741
  }
9768
9742
  },
9769
9743
  "contextDefinition": {
9770
- "loggedIn": {},
9771
- "privateProjectConfig": {}
9744
+ "projectId": {},
9745
+ "loggedIn": {}
9772
9746
  },
9773
9747
  "isESM": false,
9774
9748
  "relativePath": [
9775
9749
  "build",
9776
9750
  "commands",
9777
- "update",
9778
- "republish.js"
9751
+ "workflow",
9752
+ "logs.js"
9779
9753
  ]
9780
9754
  },
9781
- "update:revert-update-rollout": {
9755
+ "workflow:run": {
9782
9756
  "aliases": [],
9783
- "args": {},
9784
- "description": "revert a rollout update for a project",
9757
+ "args": {
9758
+ "file": {
9759
+ "description": "Path to the workflow file to run",
9760
+ "name": "file",
9761
+ "required": true
9762
+ }
9763
+ },
9764
+ "description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
9785
9765
  "flags": {
9786
- "channel": {
9787
- "description": "Channel name to select an update group to revert the rollout update from",
9788
- "exclusive": [
9789
- "branch",
9790
- "group"
9791
- ],
9792
- "name": "channel",
9793
- "hasDynamicHelp": false,
9794
- "multiple": false,
9795
- "type": "option"
9766
+ "non-interactive": {
9767
+ "description": "Run the command in non-interactive mode.",
9768
+ "name": "non-interactive",
9769
+ "noCacheDefault": true,
9770
+ "allowNo": false,
9771
+ "type": "boolean"
9796
9772
  },
9797
- "branch": {
9798
- "description": "Branch name to select an update group to revert the rollout update from",
9799
- "exclusive": [
9800
- "channel",
9801
- "group"
9773
+ "wait": {
9774
+ "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
9775
+ "name": "wait",
9776
+ "summary": "Wait for workflow run to complete. Defaults to false.",
9777
+ "allowNo": true,
9778
+ "type": "boolean"
9779
+ },
9780
+ "input": {
9781
+ "aliases": [
9782
+ "f",
9783
+ "field"
9802
9784
  ],
9803
- "name": "branch",
9785
+ "char": "F",
9786
+ "description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
9787
+ "name": "input",
9788
+ "summary": "Set workflow inputs",
9804
9789
  "hasDynamicHelp": false,
9805
- "multiple": false,
9790
+ "multiple": true,
9806
9791
  "type": "option"
9807
9792
  },
9808
- "group": {
9809
- "description": "Rollout update group ID to revert",
9810
- "exclusive": [
9811
- "branch",
9812
- "channel"
9813
- ],
9814
- "name": "group",
9793
+ "ref": {
9794
+ "description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
9795
+ "name": "ref",
9796
+ "summary": "Git reference to run the workflow on",
9815
9797
  "hasDynamicHelp": false,
9816
9798
  "multiple": false,
9817
9799
  "type": "option"
9818
9800
  },
9819
- "message": {
9820
- "char": "m",
9821
- "description": "Short message describing the revert",
9822
- "name": "message",
9801
+ "json": {
9802
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9803
+ "name": "json",
9804
+ "allowNo": false,
9805
+ "type": "boolean"
9806
+ }
9807
+ },
9808
+ "hasDynamicHelp": false,
9809
+ "hiddenAliases": [],
9810
+ "id": "workflow:run",
9811
+ "pluginAlias": "eas-cli",
9812
+ "pluginName": "eas-cli",
9813
+ "pluginType": "core",
9814
+ "strict": true,
9815
+ "enableJsonFlag": false,
9816
+ "ContextOptions": {
9817
+ "LoggedIn": {
9818
+ "loggedIn": {}
9819
+ },
9820
+ "MaybeLoggedIn": {
9821
+ "maybeLoggedIn": {}
9822
+ },
9823
+ "DynamicLoggedIn": {
9824
+ "getDynamicLoggedInAsync": {}
9825
+ },
9826
+ "SessionManagment": {
9827
+ "sessionManager": {}
9828
+ },
9829
+ "OptionalProjectConfig": {
9830
+ "optionalPrivateProjectConfig": {}
9831
+ },
9832
+ "ProjectDir": {
9833
+ "projectDir": {}
9834
+ },
9835
+ "DynamicProjectConfig": {
9836
+ "getDynamicPublicProjectConfigAsync": {},
9837
+ "getDynamicPrivateProjectConfigAsync": {}
9838
+ },
9839
+ "ProjectConfig": {
9840
+ "loggedIn": {},
9841
+ "privateProjectConfig": {}
9842
+ },
9843
+ "Analytics": {
9844
+ "analytics": {}
9845
+ },
9846
+ "Vcs": {
9847
+ "vcsClient": {}
9848
+ },
9849
+ "ServerSideEnvironmentVariables": {
9850
+ "getServerSideEnvironmentVariablesAsync": {}
9851
+ },
9852
+ "ProjectId": {
9853
+ "projectId": {}
9854
+ }
9855
+ },
9856
+ "contextDefinition": {
9857
+ "getDynamicPublicProjectConfigAsync": {},
9858
+ "getDynamicPrivateProjectConfigAsync": {},
9859
+ "projectDir": {},
9860
+ "vcsClient": {},
9861
+ "loggedIn": {}
9862
+ },
9863
+ "isESM": false,
9864
+ "relativePath": [
9865
+ "build",
9866
+ "commands",
9867
+ "workflow",
9868
+ "run.js"
9869
+ ]
9870
+ },
9871
+ "workflow:runs": {
9872
+ "aliases": [],
9873
+ "args": {},
9874
+ "description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
9875
+ "flags": {
9876
+ "workflow": {
9877
+ "description": "If present, the query will only return runs for the specified workflow file name",
9878
+ "name": "workflow",
9823
9879
  "required": false,
9824
9880
  "hasDynamicHelp": false,
9825
9881
  "multiple": false,
9826
9882
  "type": "option"
9827
9883
  },
9828
- "private-key-path": {
9829
- "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/",
9830
- "name": "private-key-path",
9884
+ "status": {
9885
+ "description": "If present, filter the returned runs to select those with the specified status",
9886
+ "name": "status",
9831
9887
  "required": false,
9832
9888
  "hasDynamicHelp": false,
9833
9889
  "multiple": false,
9890
+ "options": [
9891
+ "ACTION_REQUIRED",
9892
+ "CANCELED",
9893
+ "FAILURE",
9894
+ "IN_PROGRESS",
9895
+ "NEW",
9896
+ "SUCCESS"
9897
+ ],
9834
9898
  "type": "option"
9835
9899
  },
9836
9900
  "json": {
9837
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9901
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9838
9902
  "name": "json",
9839
9903
  "allowNo": false,
9840
9904
  "type": "boolean"
9841
9905
  },
9842
- "non-interactive": {
9843
- "description": "Run the command in non-interactive mode.",
9844
- "name": "non-interactive",
9845
- "noCacheDefault": true,
9846
- "allowNo": false,
9847
- "type": "boolean"
9906
+ "limit": {
9907
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
9908
+ "name": "limit",
9909
+ "hasDynamicHelp": false,
9910
+ "multiple": false,
9911
+ "type": "option"
9848
9912
  }
9849
9913
  },
9850
9914
  "hasDynamicHelp": false,
9851
9915
  "hiddenAliases": [],
9852
- "id": "update:revert-update-rollout",
9916
+ "id": "workflow:runs",
9853
9917
  "pluginAlias": "eas-cli",
9854
9918
  "pluginName": "eas-cli",
9855
9919
  "pluginType": "core",
@@ -9896,94 +9960,51 @@
9896
9960
  }
9897
9961
  },
9898
9962
  "contextDefinition": {
9899
- "loggedIn": {},
9900
- "privateProjectConfig": {},
9901
- "vcsClient": {}
9963
+ "projectId": {},
9964
+ "loggedIn": {}
9902
9965
  },
9903
9966
  "isESM": false,
9904
9967
  "relativePath": [
9905
9968
  "build",
9906
9969
  "commands",
9907
- "update",
9908
- "revert-update-rollout.js"
9970
+ "workflow",
9971
+ "runs.js"
9909
9972
  ]
9910
9973
  },
9911
- "update:roll-back-to-embedded": {
9974
+ "workflow:status": {
9912
9975
  "aliases": [],
9913
- "args": {},
9914
- "description": "roll back to the embedded update",
9976
+ "args": {
9977
+ "WORKFLOW_RUN_ID": {
9978
+ "description": "A workflow run ID.",
9979
+ "name": "WORKFLOW_RUN_ID"
9980
+ }
9981
+ },
9982
+ "description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
9915
9983
  "flags": {
9916
- "branch": {
9917
- "description": "Branch to publish the rollback to embedded update group on",
9918
- "name": "branch",
9919
- "required": false,
9920
- "hasDynamicHelp": false,
9921
- "multiple": false,
9922
- "type": "option"
9923
- },
9924
- "channel": {
9925
- "description": "Channel that the published rollback to embedded update should affect",
9926
- "name": "channel",
9927
- "required": false,
9928
- "hasDynamicHelp": false,
9929
- "multiple": false,
9930
- "type": "option"
9931
- },
9932
- "runtime-version": {
9933
- "description": "Runtime version that the rollback to embedded update should target",
9934
- "name": "runtime-version",
9935
- "required": false,
9936
- "hasDynamicHelp": false,
9937
- "multiple": false,
9938
- "type": "option"
9939
- },
9940
- "message": {
9941
- "description": "A short message describing the rollback to embedded update",
9942
- "name": "message",
9943
- "required": false,
9944
- "hasDynamicHelp": false,
9945
- "multiple": false,
9946
- "type": "option"
9947
- },
9948
- "platform": {
9949
- "char": "p",
9950
- "name": "platform",
9951
- "required": false,
9952
- "default": "all",
9953
- "hasDynamicHelp": false,
9954
- "multiple": false,
9955
- "options": [
9956
- "android",
9957
- "ios",
9958
- "all"
9959
- ],
9960
- "type": "option"
9961
- },
9962
- "private-key-path": {
9963
- "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/",
9964
- "name": "private-key-path",
9965
- "required": false,
9966
- "hasDynamicHelp": false,
9967
- "multiple": false,
9968
- "type": "option"
9969
- },
9970
- "json": {
9971
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9972
- "name": "json",
9973
- "allowNo": false,
9974
- "type": "boolean"
9975
- },
9976
9984
  "non-interactive": {
9977
9985
  "description": "Run the command in non-interactive mode.",
9978
9986
  "name": "non-interactive",
9979
9987
  "noCacheDefault": true,
9980
9988
  "allowNo": false,
9981
9989
  "type": "boolean"
9990
+ },
9991
+ "wait": {
9992
+ "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
9993
+ "name": "wait",
9994
+ "summary": "Wait for workflow run to complete. Defaults to false.",
9995
+ "allowNo": true,
9996
+ "type": "boolean"
9997
+ },
9998
+ "json": {
9999
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10000
+ "name": "json",
10001
+ "allowNo": false,
10002
+ "type": "boolean"
9982
10003
  }
9983
10004
  },
9984
10005
  "hasDynamicHelp": false,
9985
10006
  "hiddenAliases": [],
9986
- "id": "update:roll-back-to-embedded",
10007
+ "id": "workflow:status",
9987
10008
  "pluginAlias": "eas-cli",
9988
10009
  "pluginName": "eas-cli",
9989
10010
  "pluginType": "core",
@@ -10032,34 +10053,40 @@
10032
10053
  "contextDefinition": {
10033
10054
  "getDynamicPublicProjectConfigAsync": {},
10034
10055
  "getDynamicPrivateProjectConfigAsync": {},
10035
- "loggedIn": {},
10036
- "vcsClient": {}
10056
+ "projectDir": {},
10057
+ "vcsClient": {},
10058
+ "loggedIn": {}
10037
10059
  },
10038
10060
  "isESM": false,
10039
10061
  "relativePath": [
10040
10062
  "build",
10041
10063
  "commands",
10042
- "update",
10043
- "roll-back-to-embedded.js"
10064
+ "workflow",
10065
+ "status.js"
10044
10066
  ]
10045
10067
  },
10046
- "update:rollback": {
10068
+ "workflow:validate": {
10047
10069
  "aliases": [],
10048
- "args": {},
10049
- "description": "Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute \"eas update:republish\" or \"eas update:roll-back-to-embedded\".",
10070
+ "args": {
10071
+ "path": {
10072
+ "description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
10073
+ "name": "path",
10074
+ "required": true
10075
+ }
10076
+ },
10077
+ "description": "validate a workflow configuration yaml file",
10050
10078
  "flags": {
10051
- "private-key-path": {
10052
- "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/",
10053
- "name": "private-key-path",
10054
- "required": false,
10055
- "hasDynamicHelp": false,
10056
- "multiple": false,
10057
- "type": "option"
10079
+ "non-interactive": {
10080
+ "description": "Run the command in non-interactive mode.",
10081
+ "name": "non-interactive",
10082
+ "noCacheDefault": true,
10083
+ "allowNo": false,
10084
+ "type": "boolean"
10058
10085
  }
10059
10086
  },
10060
10087
  "hasDynamicHelp": false,
10061
10088
  "hiddenAliases": [],
10062
- "id": "update:rollback",
10089
+ "id": "workflow:validate",
10063
10090
  "pluginAlias": "eas-cli",
10064
10091
  "pluginName": "eas-cli",
10065
10092
  "pluginType": "core",
@@ -10105,73 +10132,48 @@
10105
10132
  "projectId": {}
10106
10133
  }
10107
10134
  },
10108
- "contextDefinition": {},
10135
+ "contextDefinition": {
10136
+ "getDynamicPublicProjectConfigAsync": {},
10137
+ "getDynamicPrivateProjectConfigAsync": {},
10138
+ "projectDir": {},
10139
+ "projectId": {},
10140
+ "loggedIn": {}
10141
+ },
10109
10142
  "isESM": false,
10110
10143
  "relativePath": [
10111
10144
  "build",
10112
10145
  "commands",
10113
- "update",
10114
- "rollback.js"
10146
+ "workflow",
10147
+ "validate.js"
10115
10148
  ]
10116
10149
  },
10117
- "update:view": {
10150
+ "workflow:view": {
10118
10151
  "aliases": [],
10119
10152
  "args": {
10120
- "groupId": {
10121
- "description": "The ID of an update group.",
10122
- "name": "groupId",
10123
- "required": true
10153
+ "id": {
10154
+ "description": "ID of the workflow run to view",
10155
+ "name": "id"
10124
10156
  }
10125
10157
  },
10126
- "description": "update group details",
10158
+ "description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
10127
10159
  "flags": {
10128
- "insights": {
10129
- "description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
10130
- "name": "insights",
10131
- "allowNo": false,
10132
- "type": "boolean"
10133
- },
10134
- "days": {
10135
- "description": "Show insights from the last N days (default 7). Only used with --insights.",
10136
- "exclusive": [
10137
- "start",
10138
- "end"
10139
- ],
10140
- "name": "days",
10141
- "hasDynamicHelp": false,
10142
- "multiple": false,
10143
- "type": "option"
10144
- },
10145
- "start": {
10146
- "description": "Start of insights time range (ISO date). Only used with --insights.",
10147
- "exclusive": [
10148
- "days"
10149
- ],
10150
- "name": "start",
10151
- "hasDynamicHelp": false,
10152
- "multiple": false,
10153
- "type": "option"
10154
- },
10155
- "end": {
10156
- "description": "End of insights time range (ISO date). Only used with --insights.",
10157
- "exclusive": [
10158
- "days"
10159
- ],
10160
- "name": "end",
10161
- "hasDynamicHelp": false,
10162
- "multiple": false,
10163
- "type": "option"
10164
- },
10165
10160
  "json": {
10166
10161
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10167
10162
  "name": "json",
10168
10163
  "allowNo": false,
10169
10164
  "type": "boolean"
10165
+ },
10166
+ "non-interactive": {
10167
+ "description": "Run the command in non-interactive mode.",
10168
+ "name": "non-interactive",
10169
+ "noCacheDefault": true,
10170
+ "allowNo": false,
10171
+ "type": "boolean"
10170
10172
  }
10171
10173
  },
10172
10174
  "hasDynamicHelp": false,
10173
10175
  "hiddenAliases": [],
10174
- "id": "update:view",
10176
+ "id": "workflow:view",
10175
10177
  "pluginAlias": "eas-cli",
10176
10178
  "pluginName": "eas-cli",
10177
10179
  "pluginType": "core",
@@ -10218,13 +10220,14 @@
10218
10220
  }
10219
10221
  },
10220
10222
  "contextDefinition": {
10223
+ "projectId": {},
10221
10224
  "loggedIn": {}
10222
10225
  },
10223
10226
  "isESM": false,
10224
10227
  "relativePath": [
10225
10228
  "build",
10226
10229
  "commands",
10227
- "update",
10230
+ "workflow",
10228
10231
  "view.js"
10229
10232
  ]
10230
10233
  },
@@ -10986,5 +10989,5 @@
10986
10989
  ]
10987
10990
  }
10988
10991
  },
10989
- "version": "18.9.0"
10992
+ "version": "18.9.1"
10990
10993
  }