eas-cli 18.10.0 → 18.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +107 -102
  2. package/build/build/runBuildAndSubmit.d.ts +3 -1
  3. package/build/build/runBuildAndSubmit.js +12 -4
  4. package/build/build/utils/repository.js +8 -0
  5. package/build/build/validateLockfile.d.ts +1 -0
  6. package/build/build/validateLockfile.js +37 -0
  7. package/build/commandUtils/buildFlags.d.ts +1 -0
  8. package/build/commandUtils/buildFlags.js +18 -0
  9. package/build/commandUtils/convex.d.ts +1 -0
  10. package/build/commandUtils/convex.js +8 -2
  11. package/build/commands/build/dev.d.ts +1 -0
  12. package/build/commands/build/dev.js +12 -2
  13. package/build/commands/build/run.d.ts +1 -0
  14. package/build/commands/build/run.js +12 -3
  15. package/build/commands/integrations/convex/connect.js +12 -4
  16. package/build/commands/integrations/convex/team/invite.js +6 -1
  17. package/build/commands/observe/events.js +12 -24
  18. package/build/commands/observe/logs.d.ts +29 -0
  19. package/build/commands/observe/logs.js +163 -0
  20. package/build/commands/observe/metrics.js +11 -19
  21. package/build/commands/observe/versions.js +11 -19
  22. package/build/commands/simulator/start.js +84 -5
  23. package/build/commands/simulator/stop.js +1 -1
  24. package/build/graphql/generated.d.ts +180 -6
  25. package/build/graphql/generated.js +16 -3
  26. package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +2 -2
  27. package/build/graphql/mutations/DeviceRunSessionMutation.js +4 -4
  28. package/build/graphql/queries/ObserveQuery.d.ts +21 -1
  29. package/build/graphql/queries/ObserveQuery.js +80 -0
  30. package/build/graphql/types/ConvexTeamConnection.d.ts +1 -1
  31. package/build/graphql/types/ConvexTeamConnection.js +1 -0
  32. package/build/graphql/types/Observe.d.ts +1 -0
  33. package/build/graphql/types/Observe.js +26 -1
  34. package/build/observe/fetchCustomEvents.d.ts +19 -0
  35. package/build/observe/fetchCustomEvents.js +21 -0
  36. package/build/observe/formatCustomEvents.d.ts +70 -0
  37. package/build/observe/formatCustomEvents.js +140 -0
  38. package/build/observe/formatEvents.js +5 -34
  39. package/build/observe/formatMetrics.js +2 -7
  40. package/build/observe/formatUtils.d.ts +27 -0
  41. package/build/observe/formatUtils.js +64 -0
  42. package/build/observe/formatVersions.js +2 -9
  43. package/build/observe/platforms.d.ts +21 -0
  44. package/build/observe/platforms.js +48 -0
  45. package/build/observe/resolveProjectContext.d.ts +22 -0
  46. package/build/observe/resolveProjectContext.js +21 -0
  47. package/build/run/ios/run.d.ts +2 -1
  48. package/build/run/ios/run.js +6 -2
  49. package/build/run/ios/simulator.d.ts +4 -1
  50. package/build/run/ios/simulator.js +14 -2
  51. package/build/run/run.d.ts +2 -1
  52. package/build/run/run.js +2 -2
  53. package/oclif.manifest.json +955 -762
  54. package/package.json +2 -2
@@ -1802,6 +1802,13 @@
1802
1802
  "name": "skip-bundler",
1803
1803
  "allowNo": false,
1804
1804
  "type": "boolean"
1805
+ },
1806
+ "simulator": {
1807
+ "description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
1808
+ "name": "simulator",
1809
+ "hasDynamicHelp": false,
1810
+ "multiple": false,
1811
+ "type": "option"
1805
1812
  }
1806
1813
  },
1807
1814
  "hasDynamicHelp": false,
@@ -2902,6 +2909,13 @@
2902
2909
  "multiple": false,
2903
2910
  "type": "option"
2904
2911
  },
2912
+ "simulator": {
2913
+ "description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
2914
+ "name": "simulator",
2915
+ "hasDynamicHelp": false,
2916
+ "multiple": false,
2917
+ "type": "option"
2918
+ },
2905
2919
  "offset": {
2906
2920
  "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
2907
2921
  "name": "offset",
@@ -4152,23 +4166,79 @@
4152
4166
  "index.js"
4153
4167
  ]
4154
4168
  },
4155
- "deploy:delete": {
4156
- "aliases": [
4157
- "worker:delete"
4158
- ],
4169
+ "env:create": {
4170
+ "aliases": [],
4159
4171
  "args": {
4160
- "DEPLOYMENT_ID": {
4161
- "name": "DEPLOYMENT_ID"
4172
+ "environment": {
4173
+ "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
4174
+ "name": "environment",
4175
+ "required": false
4162
4176
  }
4163
4177
  },
4164
- "description": "Delete a deployment.",
4178
+ "description": "create an environment variable for the current project or account",
4165
4179
  "flags": {
4166
- "json": {
4167
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4168
- "name": "json",
4180
+ "name": {
4181
+ "description": "Name of the variable",
4182
+ "name": "name",
4183
+ "hasDynamicHelp": false,
4184
+ "multiple": false,
4185
+ "type": "option"
4186
+ },
4187
+ "value": {
4188
+ "description": "Text value or the variable",
4189
+ "name": "value",
4190
+ "hasDynamicHelp": false,
4191
+ "multiple": false,
4192
+ "type": "option"
4193
+ },
4194
+ "force": {
4195
+ "description": "Overwrite existing variable",
4196
+ "name": "force",
4169
4197
  "allowNo": false,
4170
4198
  "type": "boolean"
4171
4199
  },
4200
+ "type": {
4201
+ "description": "The type of variable",
4202
+ "name": "type",
4203
+ "hasDynamicHelp": false,
4204
+ "multiple": false,
4205
+ "options": [
4206
+ "string",
4207
+ "file"
4208
+ ],
4209
+ "type": "option"
4210
+ },
4211
+ "visibility": {
4212
+ "description": "Visibility of the variable",
4213
+ "name": "visibility",
4214
+ "hasDynamicHelp": false,
4215
+ "multiple": false,
4216
+ "options": [
4217
+ "plaintext",
4218
+ "sensitive",
4219
+ "secret"
4220
+ ],
4221
+ "type": "option"
4222
+ },
4223
+ "scope": {
4224
+ "description": "Scope for the variable",
4225
+ "name": "scope",
4226
+ "default": "project",
4227
+ "hasDynamicHelp": false,
4228
+ "multiple": false,
4229
+ "options": [
4230
+ "project",
4231
+ "account"
4232
+ ],
4233
+ "type": "option"
4234
+ },
4235
+ "environment": {
4236
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4237
+ "name": "environment",
4238
+ "hasDynamicHelp": false,
4239
+ "multiple": true,
4240
+ "type": "option"
4241
+ },
4172
4242
  "non-interactive": {
4173
4243
  "description": "Run the command in non-interactive mode.",
4174
4244
  "name": "non-interactive",
@@ -4179,11 +4249,10 @@
4179
4249
  },
4180
4250
  "hasDynamicHelp": false,
4181
4251
  "hiddenAliases": [],
4182
- "id": "deploy:delete",
4252
+ "id": "env:create",
4183
4253
  "pluginAlias": "eas-cli",
4184
4254
  "pluginName": "eas-cli",
4185
4255
  "pluginType": "core",
4186
- "state": "preview",
4187
4256
  "strict": true,
4188
4257
  "enableJsonFlag": false,
4189
4258
  "ContextOptions": {
@@ -4227,85 +4296,55 @@
4227
4296
  }
4228
4297
  },
4229
4298
  "contextDefinition": {
4230
- "getDynamicPublicProjectConfigAsync": {},
4231
- "getDynamicPrivateProjectConfigAsync": {},
4232
- "projectDir": {},
4299
+ "projectId": {},
4300
+ "analytics": {},
4233
4301
  "loggedIn": {}
4234
4302
  },
4235
4303
  "isESM": false,
4236
4304
  "relativePath": [
4237
4305
  "build",
4238
4306
  "commands",
4239
- "deploy",
4240
- "delete.js"
4307
+ "env",
4308
+ "create.js"
4241
4309
  ]
4242
4310
  },
4243
- "deploy": {
4244
- "aliases": [
4245
- "worker:deploy"
4246
- ],
4247
- "args": {},
4248
- "description": "deploy your Expo Router web build and API Routes",
4311
+ "env:delete": {
4312
+ "aliases": [],
4313
+ "args": {
4314
+ "environment": {
4315
+ "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
4316
+ "name": "environment",
4317
+ "required": false
4318
+ }
4319
+ },
4320
+ "description": "delete an environment variable for the current project or account",
4249
4321
  "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",
4322
+ "variable-name": {
4323
+ "description": "Name of the variable to delete",
4324
+ "name": "variable-name",
4270
4325
  "hasDynamicHelp": false,
4271
- "helpValue": "xyz123",
4272
4326
  "multiple": false,
4273
4327
  "type": "option"
4274
4328
  },
4275
- "export-dir": {
4276
- "description": "Directory where the Expo project was exported.",
4277
- "name": "export-dir",
4278
- "default": "dist",
4329
+ "variable-environment": {
4330
+ "description": "Current environment of the variable to delete",
4331
+ "name": "variable-environment",
4279
4332
  "hasDynamicHelp": false,
4280
- "helpValue": "dir",
4281
4333
  "multiple": false,
4282
4334
  "type": "option"
4283
4335
  },
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",
4336
+ "scope": {
4337
+ "description": "Scope for the variable",
4338
+ "name": "scope",
4339
+ "default": "project",
4299
4340
  "hasDynamicHelp": false,
4300
4341
  "multiple": false,
4342
+ "options": [
4343
+ "project",
4344
+ "account"
4345
+ ],
4301
4346
  "type": "option"
4302
4347
  },
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
4348
  "non-interactive": {
4310
4349
  "description": "Run the command in non-interactive mode.",
4311
4350
  "name": "non-interactive",
@@ -4316,16 +4355,11 @@
4316
4355
  },
4317
4356
  "hasDynamicHelp": false,
4318
4357
  "hiddenAliases": [],
4319
- "id": "deploy",
4358
+ "id": "env:delete",
4320
4359
  "pluginAlias": "eas-cli",
4321
4360
  "pluginName": "eas-cli",
4322
4361
  "pluginType": "core",
4323
- "state": "preview",
4324
4362
  "strict": true,
4325
- "usage": [
4326
- "deploy [options]",
4327
- "deploy --prod"
4328
- ],
4329
4363
  "enableJsonFlag": false,
4330
4364
  "ContextOptions": {
4331
4365
  "LoggedIn": {
@@ -4368,27 +4402,44 @@
4368
4402
  }
4369
4403
  },
4370
4404
  "contextDefinition": {
4371
- "getDynamicPublicProjectConfigAsync": {},
4372
- "getDynamicPrivateProjectConfigAsync": {},
4373
- "projectDir": {},
4405
+ "projectId": {},
4374
4406
  "loggedIn": {}
4375
4407
  },
4376
4408
  "isESM": false,
4377
4409
  "relativePath": [
4378
4410
  "build",
4379
4411
  "commands",
4380
- "deploy",
4381
- "index.js"
4412
+ "env",
4413
+ "delete.js"
4382
4414
  ]
4383
4415
  },
4384
- "device:create": {
4416
+ "env:exec": {
4385
4417
  "aliases": [],
4386
- "args": {},
4387
- "description": "register new Apple Devices to use for internal distribution",
4388
- "flags": {},
4418
+ "args": {
4419
+ "environment": {
4420
+ "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
4421
+ "name": "environment",
4422
+ "required": true
4423
+ },
4424
+ "bash_command": {
4425
+ "description": "bash command to execute with the environment variables from the environment",
4426
+ "name": "bash_command",
4427
+ "required": true
4428
+ }
4429
+ },
4430
+ "description": "execute a command with environment variables from the selected environment",
4431
+ "flags": {
4432
+ "non-interactive": {
4433
+ "description": "Run the command in non-interactive mode.",
4434
+ "name": "non-interactive",
4435
+ "noCacheDefault": true,
4436
+ "allowNo": false,
4437
+ "type": "boolean"
4438
+ }
4439
+ },
4389
4440
  "hasDynamicHelp": false,
4390
4441
  "hiddenAliases": [],
4391
- "id": "device:create",
4442
+ "id": "env:exec",
4392
4443
  "pluginAlias": "eas-cli",
4393
4444
  "pluginName": "eas-cli",
4394
4445
  "pluginType": "core",
@@ -4435,41 +4486,65 @@
4435
4486
  }
4436
4487
  },
4437
4488
  "contextDefinition": {
4438
- "loggedIn": {},
4439
- "optionalPrivateProjectConfig": {}
4489
+ "projectId": {},
4490
+ "loggedIn": {}
4440
4491
  },
4441
4492
  "isESM": false,
4442
4493
  "relativePath": [
4443
4494
  "build",
4444
4495
  "commands",
4445
- "device",
4446
- "create.js"
4496
+ "env",
4497
+ "exec.js"
4447
4498
  ]
4448
4499
  },
4449
- "device:delete": {
4500
+ "env:get": {
4450
4501
  "aliases": [],
4451
- "args": {},
4452
- "description": "remove a registered device from your account",
4502
+ "args": {
4503
+ "environment": {
4504
+ "description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
4505
+ "name": "environment",
4506
+ "required": false
4507
+ }
4508
+ },
4509
+ "description": "view an environment variable for the current project or account",
4453
4510
  "flags": {
4454
- "apple-team-id": {
4455
- "description": "The Apple team ID on which to find the device",
4456
- "name": "apple-team-id",
4511
+ "variable-name": {
4512
+ "description": "Name of the variable",
4513
+ "name": "variable-name",
4457
4514
  "hasDynamicHelp": false,
4458
4515
  "multiple": false,
4459
4516
  "type": "option"
4460
4517
  },
4461
- "udid": {
4462
- "description": "The Apple device ID to disable",
4463
- "name": "udid",
4518
+ "variable-environment": {
4519
+ "description": "Current environment of the variable",
4520
+ "name": "variable-environment",
4464
4521
  "hasDynamicHelp": false,
4465
4522
  "multiple": false,
4466
4523
  "type": "option"
4467
4524
  },
4468
- "json": {
4469
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4470
- "name": "json",
4471
- "allowNo": false,
4472
- "type": "boolean"
4525
+ "format": {
4526
+ "description": "Output format",
4527
+ "name": "format",
4528
+ "default": "short",
4529
+ "hasDynamicHelp": false,
4530
+ "multiple": false,
4531
+ "options": [
4532
+ "long",
4533
+ "short"
4534
+ ],
4535
+ "type": "option"
4536
+ },
4537
+ "scope": {
4538
+ "description": "Scope for the variable",
4539
+ "name": "scope",
4540
+ "default": "project",
4541
+ "hasDynamicHelp": false,
4542
+ "multiple": false,
4543
+ "options": [
4544
+ "project",
4545
+ "account"
4546
+ ],
4547
+ "type": "option"
4473
4548
  },
4474
4549
  "non-interactive": {
4475
4550
  "description": "Run the command in non-interactive mode.",
@@ -4481,7 +4556,7 @@
4481
4556
  },
4482
4557
  "hasDynamicHelp": false,
4483
4558
  "hiddenAliases": [],
4484
- "id": "device:delete",
4559
+ "id": "env:get",
4485
4560
  "pluginAlias": "eas-cli",
4486
4561
  "pluginName": "eas-cli",
4487
4562
  "pluginType": "core",
@@ -4535,52 +4610,68 @@
4535
4610
  "relativePath": [
4536
4611
  "build",
4537
4612
  "commands",
4538
- "device",
4539
- "delete.js"
4613
+ "env",
4614
+ "get.js"
4540
4615
  ]
4541
4616
  },
4542
- "device:list": {
4617
+ "env:list": {
4543
4618
  "aliases": [],
4544
- "args": {},
4545
- "description": "list all registered devices for your account",
4619
+ "args": {
4620
+ "environment": {
4621
+ "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
4622
+ "name": "environment",
4623
+ "required": false
4624
+ }
4625
+ },
4626
+ "description": "list environment variables for the current project or account",
4546
4627
  "flags": {
4547
- "apple-team-id": {
4548
- "name": "apple-team-id",
4628
+ "include-sensitive": {
4629
+ "description": "Display sensitive values in the output",
4630
+ "name": "include-sensitive",
4631
+ "allowNo": false,
4632
+ "type": "boolean"
4633
+ },
4634
+ "include-file-content": {
4635
+ "description": "Display files content in the output",
4636
+ "name": "include-file-content",
4637
+ "allowNo": false,
4638
+ "type": "boolean"
4639
+ },
4640
+ "environment": {
4641
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4642
+ "name": "environment",
4549
4643
  "hasDynamicHelp": false,
4550
- "multiple": false,
4644
+ "multiple": true,
4551
4645
  "type": "option"
4552
4646
  },
4553
- "offset": {
4554
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
4555
- "name": "offset",
4647
+ "format": {
4648
+ "description": "Output format",
4649
+ "name": "format",
4650
+ "default": "short",
4556
4651
  "hasDynamicHelp": false,
4557
4652
  "multiple": false,
4653
+ "options": [
4654
+ "long",
4655
+ "short"
4656
+ ],
4558
4657
  "type": "option"
4559
4658
  },
4560
- "limit": {
4561
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
4562
- "name": "limit",
4659
+ "scope": {
4660
+ "description": "Scope for the variable",
4661
+ "name": "scope",
4662
+ "default": "project",
4563
4663
  "hasDynamicHelp": false,
4564
4664
  "multiple": false,
4665
+ "options": [
4666
+ "project",
4667
+ "account"
4668
+ ],
4565
4669
  "type": "option"
4566
- },
4567
- "json": {
4568
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4569
- "name": "json",
4570
- "allowNo": false,
4571
- "type": "boolean"
4572
- },
4573
- "non-interactive": {
4574
- "description": "Run the command in non-interactive mode.",
4575
- "name": "non-interactive",
4576
- "noCacheDefault": true,
4577
- "allowNo": false,
4578
- "type": "boolean"
4579
4670
  }
4580
4671
  },
4581
4672
  "hasDynamicHelp": false,
4582
4673
  "hiddenAliases": [],
4583
- "id": "device:list",
4674
+ "id": "env:list",
4584
4675
  "pluginAlias": "eas-cli",
4585
4676
  "pluginName": "eas-cli",
4586
4677
  "pluginType": "core",
@@ -4634,53 +4725,47 @@
4634
4725
  "relativePath": [
4635
4726
  "build",
4636
4727
  "commands",
4637
- "device",
4728
+ "env",
4638
4729
  "list.js"
4639
4730
  ]
4640
4731
  },
4641
- "device:rename": {
4732
+ "env:pull": {
4642
4733
  "aliases": [],
4643
- "args": {},
4644
- "description": "rename a registered device",
4734
+ "args": {
4735
+ "environment": {
4736
+ "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
4737
+ "name": "environment",
4738
+ "required": false
4739
+ }
4740
+ },
4741
+ "description": "pull environment variables for the selected environment to .env file",
4645
4742
  "flags": {
4646
- "apple-team-id": {
4647
- "description": "The Apple team ID on which to find the device",
4648
- "name": "apple-team-id",
4649
- "hasDynamicHelp": false,
4650
- "multiple": false,
4651
- "type": "option"
4743
+ "non-interactive": {
4744
+ "description": "Run the command in non-interactive mode.",
4745
+ "name": "non-interactive",
4746
+ "noCacheDefault": true,
4747
+ "allowNo": false,
4748
+ "type": "boolean"
4652
4749
  },
4653
- "udid": {
4654
- "description": "The Apple device ID to rename",
4655
- "name": "udid",
4750
+ "environment": {
4751
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4752
+ "name": "environment",
4656
4753
  "hasDynamicHelp": false,
4657
4754
  "multiple": false,
4658
4755
  "type": "option"
4659
4756
  },
4660
- "name": {
4661
- "description": "The new name for the device",
4662
- "name": "name",
4757
+ "path": {
4758
+ "description": "Path to the result `.env` file",
4759
+ "name": "path",
4760
+ "default": ".env.local",
4663
4761
  "hasDynamicHelp": false,
4664
4762
  "multiple": false,
4665
4763
  "type": "option"
4666
- },
4667
- "json": {
4668
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4669
- "name": "json",
4670
- "allowNo": false,
4671
- "type": "boolean"
4672
- },
4673
- "non-interactive": {
4674
- "description": "Run the command in non-interactive mode.",
4675
- "name": "non-interactive",
4676
- "noCacheDefault": true,
4677
- "allowNo": false,
4678
- "type": "boolean"
4679
4764
  }
4680
4765
  },
4681
4766
  "hasDynamicHelp": false,
4682
4767
  "hiddenAliases": [],
4683
- "id": "device:rename",
4768
+ "id": "env:pull",
4684
4769
  "pluginAlias": "eas-cli",
4685
4770
  "pluginName": "eas-cli",
4686
4771
  "pluginType": "core",
@@ -4728,28 +4813,53 @@
4728
4813
  },
4729
4814
  "contextDefinition": {
4730
4815
  "projectId": {},
4731
- "loggedIn": {}
4816
+ "loggedIn": {},
4817
+ "projectDir": {}
4732
4818
  },
4733
4819
  "isESM": false,
4734
4820
  "relativePath": [
4735
4821
  "build",
4736
4822
  "commands",
4737
- "device",
4738
- "rename.js"
4823
+ "env",
4824
+ "pull.js"
4739
4825
  ]
4740
4826
  },
4741
- "device:view": {
4827
+ "env:push": {
4742
4828
  "aliases": [],
4743
4829
  "args": {
4744
- "UDID": {
4745
- "name": "UDID"
4830
+ "environment": {
4831
+ "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
4832
+ "name": "environment",
4833
+ "required": false
4834
+ }
4835
+ },
4836
+ "description": "push environment variables from .env file to the selected environment",
4837
+ "flags": {
4838
+ "environment": {
4839
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4840
+ "name": "environment",
4841
+ "hasDynamicHelp": false,
4842
+ "multiple": true,
4843
+ "type": "option"
4844
+ },
4845
+ "path": {
4846
+ "description": "Path to the input `.env` file",
4847
+ "name": "path",
4848
+ "default": ".env.local",
4849
+ "hasDynamicHelp": false,
4850
+ "multiple": false,
4851
+ "type": "option"
4852
+ },
4853
+ "force": {
4854
+ "description": "Skip confirmation and automatically override existing variables",
4855
+ "name": "force",
4856
+ "allowNo": false,
4857
+ "type": "boolean"
4746
4858
  }
4747
4859
  },
4748
- "description": "view a device for your project",
4749
- "flags": {},
4750
4860
  "hasDynamicHelp": false,
4751
4861
  "hiddenAliases": [],
4752
- "id": "device:view",
4862
+ "id": "env:push",
4753
4863
  "pluginAlias": "eas-cli",
4754
4864
  "pluginName": "eas-cli",
4755
4865
  "pluginType": "core",
@@ -4803,41 +4913,49 @@
4803
4913
  "relativePath": [
4804
4914
  "build",
4805
4915
  "commands",
4806
- "device",
4807
- "view.js"
4916
+ "env",
4917
+ "push.js"
4808
4918
  ]
4809
4919
  },
4810
- "env:create": {
4920
+ "env:update": {
4811
4921
  "aliases": [],
4812
4922
  "args": {
4813
4923
  "environment": {
4814
- "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
4924
+ "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
4815
4925
  "name": "environment",
4816
4926
  "required": false
4817
4927
  }
4818
4928
  },
4819
- "description": "create an environment variable for the current project or account",
4929
+ "description": "update an environment variable on the current project or account",
4820
4930
  "flags": {
4931
+ "variable-name": {
4932
+ "description": "Current name of the variable",
4933
+ "name": "variable-name",
4934
+ "hasDynamicHelp": false,
4935
+ "multiple": false,
4936
+ "type": "option"
4937
+ },
4938
+ "variable-environment": {
4939
+ "description": "Current environment of the variable to update",
4940
+ "name": "variable-environment",
4941
+ "hasDynamicHelp": false,
4942
+ "multiple": false,
4943
+ "type": "option"
4944
+ },
4821
4945
  "name": {
4822
- "description": "Name of the variable",
4946
+ "description": "New name of the variable",
4823
4947
  "name": "name",
4824
4948
  "hasDynamicHelp": false,
4825
4949
  "multiple": false,
4826
4950
  "type": "option"
4827
4951
  },
4828
4952
  "value": {
4829
- "description": "Text value or the variable",
4953
+ "description": "New value or the variable",
4830
4954
  "name": "value",
4831
4955
  "hasDynamicHelp": false,
4832
4956
  "multiple": false,
4833
4957
  "type": "option"
4834
4958
  },
4835
- "force": {
4836
- "description": "Overwrite existing variable",
4837
- "name": "force",
4838
- "allowNo": false,
4839
- "type": "boolean"
4840
- },
4841
4959
  "type": {
4842
4960
  "description": "The type of variable",
4843
4961
  "name": "type",
@@ -4890,7 +5008,7 @@
4890
5008
  },
4891
5009
  "hasDynamicHelp": false,
4892
5010
  "hiddenAliases": [],
4893
- "id": "env:create",
5011
+ "id": "env:update",
4894
5012
  "pluginAlias": "eas-cli",
4895
5013
  "pluginName": "eas-cli",
4896
5014
  "pluginType": "core",
@@ -4946,46 +5064,74 @@
4946
5064
  "build",
4947
5065
  "commands",
4948
5066
  "env",
4949
- "create.js"
5067
+ "update.js"
4950
5068
  ]
4951
5069
  },
4952
- "env:delete": {
5070
+ "fingerprint:compare": {
4953
5071
  "aliases": [],
4954
5072
  "args": {
4955
- "environment": {
4956
- "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
4957
- "name": "environment",
5073
+ "hash1": {
5074
+ "description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
5075
+ "name": "hash1",
5076
+ "required": false
5077
+ },
5078
+ "hash2": {
5079
+ "description": "If two hashes are provided, HASH1 is compared against HASH2.",
5080
+ "name": "hash2",
4958
5081
  "required": false
4959
5082
  }
4960
5083
  },
4961
- "description": "delete an environment variable for the current project or account",
4962
- "flags": {
4963
- "variable-name": {
4964
- "description": "Name of the variable to delete",
4965
- "name": "variable-name",
4966
- "hasDynamicHelp": false,
4967
- "multiple": false,
4968
- "type": "option"
4969
- },
4970
- "variable-environment": {
4971
- "description": "Current environment of the variable to delete",
4972
- "name": "variable-environment",
5084
+ "description": "compare fingerprints of the current project, builds, and updates",
5085
+ "examples": [
5086
+ "$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
5087
+ "$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
5088
+ "$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
5089
+ "$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
5090
+ "$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
5091
+ "$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
5092
+ "$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
5093
+ "$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
5094
+ ],
5095
+ "flags": {
5096
+ "build-id": {
5097
+ "aliases": [
5098
+ "buildId"
5099
+ ],
5100
+ "description": "Compare the fingerprint with the build with the specified ID",
5101
+ "name": "build-id",
4973
5102
  "hasDynamicHelp": false,
4974
- "multiple": false,
5103
+ "multiple": true,
4975
5104
  "type": "option"
4976
5105
  },
4977
- "scope": {
4978
- "description": "Scope for the variable",
4979
- "name": "scope",
4980
- "default": "project",
5106
+ "update-id": {
5107
+ "aliases": [
5108
+ "updateId"
5109
+ ],
5110
+ "description": "Compare the fingerprint with the update with the specified ID",
5111
+ "name": "update-id",
5112
+ "hasDynamicHelp": false,
5113
+ "multiple": true,
5114
+ "type": "option"
5115
+ },
5116
+ "open": {
5117
+ "description": "Open the fingerprint comparison in the browser",
5118
+ "name": "open",
5119
+ "allowNo": false,
5120
+ "type": "boolean"
5121
+ },
5122
+ "environment": {
5123
+ "description": "If generating a fingerprint from the local directory, use the specified environment.",
5124
+ "name": "environment",
4981
5125
  "hasDynamicHelp": false,
4982
5126
  "multiple": false,
4983
- "options": [
4984
- "project",
4985
- "account"
4986
- ],
4987
5127
  "type": "option"
4988
5128
  },
5129
+ "json": {
5130
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5131
+ "name": "json",
5132
+ "allowNo": false,
5133
+ "type": "boolean"
5134
+ },
4989
5135
  "non-interactive": {
4990
5136
  "description": "Run the command in non-interactive mode.",
4991
5137
  "name": "non-interactive",
@@ -4996,11 +5142,11 @@
4996
5142
  },
4997
5143
  "hasDynamicHelp": false,
4998
5144
  "hiddenAliases": [],
4999
- "id": "env:delete",
5145
+ "id": "fingerprint:compare",
5000
5146
  "pluginAlias": "eas-cli",
5001
5147
  "pluginName": "eas-cli",
5002
5148
  "pluginType": "core",
5003
- "strict": true,
5149
+ "strict": false,
5004
5150
  "enableJsonFlag": false,
5005
5151
  "ContextOptions": {
5006
5152
  "LoggedIn": {
@@ -5044,32 +5190,68 @@
5044
5190
  },
5045
5191
  "contextDefinition": {
5046
5192
  "projectId": {},
5047
- "loggedIn": {}
5193
+ "loggedIn": {},
5194
+ "privateProjectConfig": {},
5195
+ "vcsClient": {},
5196
+ "getServerSideEnvironmentVariablesAsync": {}
5048
5197
  },
5049
5198
  "isESM": false,
5050
5199
  "relativePath": [
5051
5200
  "build",
5052
5201
  "commands",
5053
- "env",
5054
- "delete.js"
5202
+ "fingerprint",
5203
+ "compare.js"
5055
5204
  ]
5056
5205
  },
5057
- "env:exec": {
5206
+ "fingerprint:generate": {
5058
5207
  "aliases": [],
5059
- "args": {
5208
+ "args": {},
5209
+ "description": "generate fingerprints from the current project",
5210
+ "examples": [
5211
+ "$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
5212
+ "$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
5213
+ "$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
5214
+ "$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
5215
+ ],
5216
+ "flags": {
5217
+ "platform": {
5218
+ "char": "p",
5219
+ "name": "platform",
5220
+ "hasDynamicHelp": false,
5221
+ "multiple": false,
5222
+ "options": [
5223
+ "android",
5224
+ "ios"
5225
+ ],
5226
+ "type": "option"
5227
+ },
5060
5228
  "environment": {
5061
- "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
5229
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5230
+ "exclusive": [
5231
+ "build-profile"
5232
+ ],
5062
5233
  "name": "environment",
5063
- "required": true
5234
+ "hasDynamicHelp": false,
5235
+ "multiple": false,
5236
+ "type": "option"
5237
+ },
5238
+ "build-profile": {
5239
+ "char": "e",
5240
+ "description": "Name of the build profile from eas.json.",
5241
+ "exclusive": [
5242
+ "environment"
5243
+ ],
5244
+ "name": "build-profile",
5245
+ "hasDynamicHelp": false,
5246
+ "multiple": false,
5247
+ "type": "option"
5248
+ },
5249
+ "json": {
5250
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5251
+ "name": "json",
5252
+ "allowNo": false,
5253
+ "type": "boolean"
5064
5254
  },
5065
- "bash_command": {
5066
- "description": "bash command to execute with the environment variables from the environment",
5067
- "name": "bash_command",
5068
- "required": true
5069
- }
5070
- },
5071
- "description": "execute a command with environment variables from the selected environment",
5072
- "flags": {
5073
5255
  "non-interactive": {
5074
5256
  "description": "Run the command in non-interactive mode.",
5075
5257
  "name": "non-interactive",
@@ -5080,11 +5262,11 @@
5080
5262
  },
5081
5263
  "hasDynamicHelp": false,
5082
5264
  "hiddenAliases": [],
5083
- "id": "env:exec",
5265
+ "id": "fingerprint:generate",
5084
5266
  "pluginAlias": "eas-cli",
5085
5267
  "pluginName": "eas-cli",
5086
5268
  "pluginType": "core",
5087
- "strict": true,
5269
+ "strict": false,
5088
5270
  "enableJsonFlag": false,
5089
5271
  "ContextOptions": {
5090
5272
  "LoggedIn": {
@@ -5128,64 +5310,110 @@
5128
5310
  },
5129
5311
  "contextDefinition": {
5130
5312
  "projectId": {},
5131
- "loggedIn": {}
5313
+ "loggedIn": {},
5314
+ "privateProjectConfig": {},
5315
+ "vcsClient": {},
5316
+ "getServerSideEnvironmentVariablesAsync": {},
5317
+ "getDynamicPublicProjectConfigAsync": {},
5318
+ "getDynamicPrivateProjectConfigAsync": {}
5132
5319
  },
5133
5320
  "isESM": false,
5134
5321
  "relativePath": [
5135
5322
  "build",
5136
5323
  "commands",
5137
- "env",
5138
- "exec.js"
5324
+ "fingerprint",
5325
+ "generate.js"
5139
5326
  ]
5140
5327
  },
5141
- "env:get": {
5328
+ "device:create": {
5142
5329
  "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
5330
+ "args": {},
5331
+ "description": "register new Apple Devices to use for internal distribution",
5332
+ "flags": {},
5333
+ "hasDynamicHelp": false,
5334
+ "hiddenAliases": [],
5335
+ "id": "device:create",
5336
+ "pluginAlias": "eas-cli",
5337
+ "pluginName": "eas-cli",
5338
+ "pluginType": "core",
5339
+ "strict": true,
5340
+ "enableJsonFlag": false,
5341
+ "ContextOptions": {
5342
+ "LoggedIn": {
5343
+ "loggedIn": {}
5344
+ },
5345
+ "MaybeLoggedIn": {
5346
+ "maybeLoggedIn": {}
5347
+ },
5348
+ "DynamicLoggedIn": {
5349
+ "getDynamicLoggedInAsync": {}
5350
+ },
5351
+ "SessionManagment": {
5352
+ "sessionManager": {}
5353
+ },
5354
+ "OptionalProjectConfig": {
5355
+ "optionalPrivateProjectConfig": {}
5356
+ },
5357
+ "ProjectDir": {
5358
+ "projectDir": {}
5359
+ },
5360
+ "DynamicProjectConfig": {
5361
+ "getDynamicPublicProjectConfigAsync": {},
5362
+ "getDynamicPrivateProjectConfigAsync": {}
5363
+ },
5364
+ "ProjectConfig": {
5365
+ "loggedIn": {},
5366
+ "privateProjectConfig": {}
5367
+ },
5368
+ "Analytics": {
5369
+ "analytics": {}
5370
+ },
5371
+ "Vcs": {
5372
+ "vcsClient": {}
5373
+ },
5374
+ "ServerSideEnvironmentVariables": {
5375
+ "getServerSideEnvironmentVariablesAsync": {}
5376
+ },
5377
+ "ProjectId": {
5378
+ "projectId": {}
5148
5379
  }
5149
5380
  },
5150
- "description": "view an environment variable for the current project or account",
5381
+ "contextDefinition": {
5382
+ "loggedIn": {},
5383
+ "optionalPrivateProjectConfig": {}
5384
+ },
5385
+ "isESM": false,
5386
+ "relativePath": [
5387
+ "build",
5388
+ "commands",
5389
+ "device",
5390
+ "create.js"
5391
+ ]
5392
+ },
5393
+ "device:delete": {
5394
+ "aliases": [],
5395
+ "args": {},
5396
+ "description": "remove a registered device from your account",
5151
5397
  "flags": {
5152
- "variable-name": {
5153
- "description": "Name of the variable",
5154
- "name": "variable-name",
5155
- "hasDynamicHelp": false,
5156
- "multiple": false,
5157
- "type": "option"
5158
- },
5159
- "variable-environment": {
5160
- "description": "Current environment of the variable",
5161
- "name": "variable-environment",
5398
+ "apple-team-id": {
5399
+ "description": "The Apple team ID on which to find the device",
5400
+ "name": "apple-team-id",
5162
5401
  "hasDynamicHelp": false,
5163
5402
  "multiple": false,
5164
5403
  "type": "option"
5165
5404
  },
5166
- "format": {
5167
- "description": "Output format",
5168
- "name": "format",
5169
- "default": "short",
5405
+ "udid": {
5406
+ "description": "The Apple device ID to disable",
5407
+ "name": "udid",
5170
5408
  "hasDynamicHelp": false,
5171
5409
  "multiple": false,
5172
- "options": [
5173
- "long",
5174
- "short"
5175
- ],
5176
5410
  "type": "option"
5177
5411
  },
5178
- "scope": {
5179
- "description": "Scope for the variable",
5180
- "name": "scope",
5181
- "default": "project",
5182
- "hasDynamicHelp": false,
5183
- "multiple": false,
5184
- "options": [
5185
- "project",
5186
- "account"
5187
- ],
5188
- "type": "option"
5412
+ "json": {
5413
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5414
+ "name": "json",
5415
+ "allowNo": false,
5416
+ "type": "boolean"
5189
5417
  },
5190
5418
  "non-interactive": {
5191
5419
  "description": "Run the command in non-interactive mode.",
@@ -5197,7 +5425,7 @@
5197
5425
  },
5198
5426
  "hasDynamicHelp": false,
5199
5427
  "hiddenAliases": [],
5200
- "id": "env:get",
5428
+ "id": "device:delete",
5201
5429
  "pluginAlias": "eas-cli",
5202
5430
  "pluginName": "eas-cli",
5203
5431
  "pluginType": "core",
@@ -5251,162 +5479,52 @@
5251
5479
  "relativePath": [
5252
5480
  "build",
5253
5481
  "commands",
5254
- "env",
5255
- "get.js"
5482
+ "device",
5483
+ "delete.js"
5256
5484
  ]
5257
5485
  },
5258
- "env:list": {
5486
+ "device:list": {
5259
5487
  "aliases": [],
5260
- "args": {
5261
- "environment": {
5262
- "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
5263
- "name": "environment",
5264
- "required": false
5265
- }
5266
- },
5267
- "description": "list environment variables for the current project or account",
5488
+ "args": {},
5489
+ "description": "list all registered devices for your account",
5268
5490
  "flags": {
5269
- "include-sensitive": {
5270
- "description": "Display sensitive values in the output",
5271
- "name": "include-sensitive",
5272
- "allowNo": false,
5273
- "type": "boolean"
5274
- },
5275
- "include-file-content": {
5276
- "description": "Display files content in the output",
5277
- "name": "include-file-content",
5278
- "allowNo": false,
5279
- "type": "boolean"
5280
- },
5281
- "environment": {
5282
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5283
- "name": "environment",
5491
+ "apple-team-id": {
5492
+ "name": "apple-team-id",
5284
5493
  "hasDynamicHelp": false,
5285
- "multiple": true,
5494
+ "multiple": false,
5286
5495
  "type": "option"
5287
5496
  },
5288
- "format": {
5289
- "description": "Output format",
5290
- "name": "format",
5291
- "default": "short",
5497
+ "offset": {
5498
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
5499
+ "name": "offset",
5292
5500
  "hasDynamicHelp": false,
5293
5501
  "multiple": false,
5294
- "options": [
5295
- "long",
5296
- "short"
5297
- ],
5298
5502
  "type": "option"
5299
5503
  },
5300
- "scope": {
5301
- "description": "Scope for the variable",
5302
- "name": "scope",
5303
- "default": "project",
5504
+ "limit": {
5505
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
5506
+ "name": "limit",
5304
5507
  "hasDynamicHelp": false,
5305
5508
  "multiple": false,
5306
- "options": [
5307
- "project",
5308
- "account"
5309
- ],
5310
5509
  "type": "option"
5311
- }
5312
- },
5313
- "hasDynamicHelp": false,
5314
- "hiddenAliases": [],
5315
- "id": "env:list",
5316
- "pluginAlias": "eas-cli",
5317
- "pluginName": "eas-cli",
5318
- "pluginType": "core",
5319
- "strict": true,
5320
- "enableJsonFlag": false,
5321
- "ContextOptions": {
5322
- "LoggedIn": {
5323
- "loggedIn": {}
5324
5510
  },
5325
- "MaybeLoggedIn": {
5326
- "maybeLoggedIn": {}
5327
- },
5328
- "DynamicLoggedIn": {
5329
- "getDynamicLoggedInAsync": {}
5330
- },
5331
- "SessionManagment": {
5332
- "sessionManager": {}
5333
- },
5334
- "OptionalProjectConfig": {
5335
- "optionalPrivateProjectConfig": {}
5336
- },
5337
- "ProjectDir": {
5338
- "projectDir": {}
5339
- },
5340
- "DynamicProjectConfig": {
5341
- "getDynamicPublicProjectConfigAsync": {},
5342
- "getDynamicPrivateProjectConfigAsync": {}
5343
- },
5344
- "ProjectConfig": {
5345
- "loggedIn": {},
5346
- "privateProjectConfig": {}
5347
- },
5348
- "Analytics": {
5349
- "analytics": {}
5350
- },
5351
- "Vcs": {
5352
- "vcsClient": {}
5353
- },
5354
- "ServerSideEnvironmentVariables": {
5355
- "getServerSideEnvironmentVariablesAsync": {}
5511
+ "json": {
5512
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5513
+ "name": "json",
5514
+ "allowNo": false,
5515
+ "type": "boolean"
5356
5516
  },
5357
- "ProjectId": {
5358
- "projectId": {}
5359
- }
5360
- },
5361
- "contextDefinition": {
5362
- "projectId": {},
5363
- "loggedIn": {}
5364
- },
5365
- "isESM": false,
5366
- "relativePath": [
5367
- "build",
5368
- "commands",
5369
- "env",
5370
- "list.js"
5371
- ]
5372
- },
5373
- "env:pull": {
5374
- "aliases": [],
5375
- "args": {
5376
- "environment": {
5377
- "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
5378
- "name": "environment",
5379
- "required": false
5380
- }
5381
- },
5382
- "description": "pull environment variables for the selected environment to .env file",
5383
- "flags": {
5384
5517
  "non-interactive": {
5385
5518
  "description": "Run the command in non-interactive mode.",
5386
5519
  "name": "non-interactive",
5387
5520
  "noCacheDefault": true,
5388
5521
  "allowNo": false,
5389
5522
  "type": "boolean"
5390
- },
5391
- "environment": {
5392
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5393
- "name": "environment",
5394
- "hasDynamicHelp": false,
5395
- "multiple": false,
5396
- "type": "option"
5397
- },
5398
- "path": {
5399
- "description": "Path to the result `.env` file",
5400
- "name": "path",
5401
- "default": ".env.local",
5402
- "hasDynamicHelp": false,
5403
- "multiple": false,
5404
- "type": "option"
5405
5523
  }
5406
5524
  },
5407
5525
  "hasDynamicHelp": false,
5408
5526
  "hiddenAliases": [],
5409
- "id": "env:pull",
5527
+ "id": "device:list",
5410
5528
  "pluginAlias": "eas-cli",
5411
5529
  "pluginName": "eas-cli",
5412
5530
  "pluginType": "core",
@@ -5454,53 +5572,59 @@
5454
5572
  },
5455
5573
  "contextDefinition": {
5456
5574
  "projectId": {},
5457
- "loggedIn": {},
5458
- "projectDir": {}
5575
+ "loggedIn": {}
5459
5576
  },
5460
5577
  "isESM": false,
5461
5578
  "relativePath": [
5462
5579
  "build",
5463
5580
  "commands",
5464
- "env",
5465
- "pull.js"
5581
+ "device",
5582
+ "list.js"
5466
5583
  ]
5467
5584
  },
5468
- "env:push": {
5585
+ "device:rename": {
5469
5586
  "aliases": [],
5470
- "args": {
5471
- "environment": {
5472
- "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
5473
- "name": "environment",
5474
- "required": false
5475
- }
5476
- },
5477
- "description": "push environment variables from .env file to the selected environment",
5587
+ "args": {},
5588
+ "description": "rename a registered device",
5478
5589
  "flags": {
5479
- "environment": {
5480
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5481
- "name": "environment",
5590
+ "apple-team-id": {
5591
+ "description": "The Apple team ID on which to find the device",
5592
+ "name": "apple-team-id",
5482
5593
  "hasDynamicHelp": false,
5483
- "multiple": true,
5594
+ "multiple": false,
5484
5595
  "type": "option"
5485
5596
  },
5486
- "path": {
5487
- "description": "Path to the input `.env` file",
5488
- "name": "path",
5489
- "default": ".env.local",
5597
+ "udid": {
5598
+ "description": "The Apple device ID to rename",
5599
+ "name": "udid",
5490
5600
  "hasDynamicHelp": false,
5491
5601
  "multiple": false,
5492
5602
  "type": "option"
5493
5603
  },
5494
- "force": {
5495
- "description": "Skip confirmation and automatically override existing variables",
5496
- "name": "force",
5604
+ "name": {
5605
+ "description": "The new name for the device",
5606
+ "name": "name",
5607
+ "hasDynamicHelp": false,
5608
+ "multiple": false,
5609
+ "type": "option"
5610
+ },
5611
+ "json": {
5612
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5613
+ "name": "json",
5614
+ "allowNo": false,
5615
+ "type": "boolean"
5616
+ },
5617
+ "non-interactive": {
5618
+ "description": "Run the command in non-interactive mode.",
5619
+ "name": "non-interactive",
5620
+ "noCacheDefault": true,
5497
5621
  "allowNo": false,
5498
5622
  "type": "boolean"
5499
5623
  }
5500
5624
  },
5501
5625
  "hasDynamicHelp": false,
5502
5626
  "hiddenAliases": [],
5503
- "id": "env:push",
5627
+ "id": "device:rename",
5504
5628
  "pluginAlias": "eas-cli",
5505
5629
  "pluginName": "eas-cli",
5506
5630
  "pluginType": "core",
@@ -5554,102 +5678,22 @@
5554
5678
  "relativePath": [
5555
5679
  "build",
5556
5680
  "commands",
5557
- "env",
5558
- "push.js"
5681
+ "device",
5682
+ "rename.js"
5559
5683
  ]
5560
5684
  },
5561
- "env:update": {
5685
+ "device:view": {
5562
5686
  "aliases": [],
5563
5687
  "args": {
5564
- "environment": {
5565
- "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
5566
- "name": "environment",
5567
- "required": false
5568
- }
5569
- },
5570
- "description": "update an environment variable on the current project or account",
5571
- "flags": {
5572
- "variable-name": {
5573
- "description": "Current name of the variable",
5574
- "name": "variable-name",
5575
- "hasDynamicHelp": false,
5576
- "multiple": false,
5577
- "type": "option"
5578
- },
5579
- "variable-environment": {
5580
- "description": "Current environment of the variable to update",
5581
- "name": "variable-environment",
5582
- "hasDynamicHelp": false,
5583
- "multiple": false,
5584
- "type": "option"
5585
- },
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",
5603
- "hasDynamicHelp": false,
5604
- "multiple": false,
5605
- "options": [
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"
5620
- ],
5621
- "type": "option"
5622
- },
5623
- "scope": {
5624
- "description": "Scope for the variable",
5625
- "name": "scope",
5626
- "default": "project",
5627
- "hasDynamicHelp": false,
5628
- "multiple": false,
5629
- "options": [
5630
- "project",
5631
- "account"
5632
- ],
5633
- "type": "option"
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
- },
5642
- "non-interactive": {
5643
- "description": "Run the command in non-interactive mode.",
5644
- "name": "non-interactive",
5645
- "noCacheDefault": true,
5646
- "allowNo": false,
5647
- "type": "boolean"
5688
+ "UDID": {
5689
+ "name": "UDID"
5648
5690
  }
5649
5691
  },
5692
+ "description": "view a device for your project",
5693
+ "flags": {},
5650
5694
  "hasDynamicHelp": false,
5651
5695
  "hiddenAliases": [],
5652
- "id": "env:update",
5696
+ "id": "device:view",
5653
5697
  "pluginAlias": "eas-cli",
5654
5698
  "pluginName": "eas-cli",
5655
5699
  "pluginType": "core",
@@ -5697,76 +5741,27 @@
5697
5741
  },
5698
5742
  "contextDefinition": {
5699
5743
  "projectId": {},
5700
- "analytics": {},
5701
5744
  "loggedIn": {}
5702
5745
  },
5703
5746
  "isESM": false,
5704
5747
  "relativePath": [
5705
5748
  "build",
5706
5749
  "commands",
5707
- "env",
5708
- "update.js"
5750
+ "device",
5751
+ "view.js"
5709
5752
  ]
5710
5753
  },
5711
- "fingerprint:compare": {
5712
- "aliases": [],
5754
+ "deploy:delete": {
5755
+ "aliases": [
5756
+ "worker:delete"
5757
+ ],
5713
5758
  "args": {
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",
5722
- "required": false
5759
+ "DEPLOYMENT_ID": {
5760
+ "name": "DEPLOYMENT_ID"
5723
5761
  }
5724
5762
  },
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
- ],
5763
+ "description": "Delete a deployment.",
5736
5764
  "flags": {
5737
- "build-id": {
5738
- "aliases": [
5739
- "buildId"
5740
- ],
5741
- "description": "Compare the fingerprint with the build with the specified ID",
5742
- "name": "build-id",
5743
- "hasDynamicHelp": false,
5744
- "multiple": true,
5745
- "type": "option"
5746
- },
5747
- "update-id": {
5748
- "aliases": [
5749
- "updateId"
5750
- ],
5751
- "description": "Compare the fingerprint with the update with the specified ID",
5752
- "name": "update-id",
5753
- "hasDynamicHelp": false,
5754
- "multiple": true,
5755
- "type": "option"
5756
- },
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",
5766
- "hasDynamicHelp": false,
5767
- "multiple": false,
5768
- "type": "option"
5769
- },
5770
5765
  "json": {
5771
5766
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5772
5767
  "name": "json",
@@ -5783,11 +5778,12 @@
5783
5778
  },
5784
5779
  "hasDynamicHelp": false,
5785
5780
  "hiddenAliases": [],
5786
- "id": "fingerprint:compare",
5781
+ "id": "deploy:delete",
5787
5782
  "pluginAlias": "eas-cli",
5788
5783
  "pluginName": "eas-cli",
5789
5784
  "pluginType": "core",
5790
- "strict": false,
5785
+ "state": "preview",
5786
+ "strict": true,
5791
5787
  "enableJsonFlag": false,
5792
5788
  "ContextOptions": {
5793
5789
  "LoggedIn": {
@@ -5830,59 +5826,75 @@
5830
5826
  }
5831
5827
  },
5832
5828
  "contextDefinition": {
5833
- "projectId": {},
5834
- "loggedIn": {},
5835
- "privateProjectConfig": {},
5836
- "vcsClient": {},
5837
- "getServerSideEnvironmentVariablesAsync": {}
5829
+ "getDynamicPublicProjectConfigAsync": {},
5830
+ "getDynamicPrivateProjectConfigAsync": {},
5831
+ "projectDir": {},
5832
+ "loggedIn": {}
5838
5833
  },
5839
5834
  "isESM": false,
5840
5835
  "relativePath": [
5841
5836
  "build",
5842
5837
  "commands",
5843
- "fingerprint",
5844
- "compare.js"
5838
+ "deploy",
5839
+ "delete.js"
5845
5840
  ]
5846
5841
  },
5847
- "fingerprint:generate": {
5848
- "aliases": [],
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"
5842
+ "deploy": {
5843
+ "aliases": [
5844
+ "worker:deploy"
5856
5845
  ],
5846
+ "args": {},
5847
+ "description": "deploy your Expo Router web build and API Routes",
5857
5848
  "flags": {
5858
- "platform": {
5859
- "char": "p",
5860
- "name": "platform",
5849
+ "prod": {
5850
+ "aliases": [
5851
+ "production"
5852
+ ],
5853
+ "description": "Create a new production deployment.",
5854
+ "name": "prod",
5855
+ "allowNo": false,
5856
+ "type": "boolean"
5857
+ },
5858
+ "alias": {
5859
+ "description": "Custom alias to assign to the new deployment.",
5860
+ "name": "alias",
5861
+ "hasDynamicHelp": false,
5862
+ "helpValue": "name",
5863
+ "multiple": false,
5864
+ "type": "option"
5865
+ },
5866
+ "id": {
5867
+ "description": "Custom unique identifier for the new deployment.",
5868
+ "name": "id",
5861
5869
  "hasDynamicHelp": false,
5870
+ "helpValue": "xyz123",
5862
5871
  "multiple": false,
5863
- "options": [
5864
- "android",
5865
- "ios"
5866
- ],
5867
5872
  "type": "option"
5868
5873
  },
5869
- "environment": {
5870
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5871
- "exclusive": [
5872
- "build-profile"
5873
- ],
5874
- "name": "environment",
5874
+ "export-dir": {
5875
+ "description": "Directory where the Expo project was exported.",
5876
+ "name": "export-dir",
5877
+ "default": "dist",
5875
5878
  "hasDynamicHelp": false,
5879
+ "helpValue": "dir",
5876
5880
  "multiple": false,
5877
5881
  "type": "option"
5878
5882
  },
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",
5883
+ "dry-run": {
5884
+ "description": "Outputs a tarball of the new deployment instead of uploading it.",
5885
+ "name": "dry-run",
5886
+ "allowNo": false,
5887
+ "type": "boolean"
5888
+ },
5889
+ "source-maps": {
5890
+ "description": "Include source maps in the deployment.",
5891
+ "name": "source-maps",
5892
+ "allowNo": true,
5893
+ "type": "boolean"
5894
+ },
5895
+ "environment": {
5896
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5897
+ "name": "environment",
5886
5898
  "hasDynamicHelp": false,
5887
5899
  "multiple": false,
5888
5900
  "type": "option"
@@ -5903,11 +5915,16 @@
5903
5915
  },
5904
5916
  "hasDynamicHelp": false,
5905
5917
  "hiddenAliases": [],
5906
- "id": "fingerprint:generate",
5918
+ "id": "deploy",
5907
5919
  "pluginAlias": "eas-cli",
5908
5920
  "pluginName": "eas-cli",
5909
5921
  "pluginType": "core",
5910
- "strict": false,
5922
+ "state": "preview",
5923
+ "strict": true,
5924
+ "usage": [
5925
+ "deploy [options]",
5926
+ "deploy --prod"
5927
+ ],
5911
5928
  "enableJsonFlag": false,
5912
5929
  "ContextOptions": {
5913
5930
  "LoggedIn": {
@@ -5950,20 +5967,17 @@
5950
5967
  }
5951
5968
  },
5952
5969
  "contextDefinition": {
5953
- "projectId": {},
5954
- "loggedIn": {},
5955
- "privateProjectConfig": {},
5956
- "vcsClient": {},
5957
- "getServerSideEnvironmentVariablesAsync": {},
5958
5970
  "getDynamicPublicProjectConfigAsync": {},
5959
- "getDynamicPrivateProjectConfigAsync": {}
5971
+ "getDynamicPrivateProjectConfigAsync": {},
5972
+ "projectDir": {},
5973
+ "loggedIn": {}
5960
5974
  },
5961
5975
  "isESM": false,
5962
5976
  "relativePath": [
5963
5977
  "build",
5964
5978
  "commands",
5965
- "fingerprint",
5966
- "generate.js"
5979
+ "deploy",
5980
+ "index.js"
5967
5981
  ]
5968
5982
  },
5969
5983
  "metadata:lint": {
@@ -6398,6 +6412,185 @@
6398
6412
  "events.js"
6399
6413
  ]
6400
6414
  },
6415
+ "observe:logs": {
6416
+ "aliases": [],
6417
+ "args": {
6418
+ "eventName": {
6419
+ "description": "Custom event name to filter by",
6420
+ "name": "eventName",
6421
+ "required": false
6422
+ }
6423
+ },
6424
+ "description": "display individual custom events (logs) emitted by the app, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.",
6425
+ "flags": {
6426
+ "platform": {
6427
+ "description": "Filter by platform",
6428
+ "name": "platform",
6429
+ "hasDynamicHelp": false,
6430
+ "multiple": false,
6431
+ "options": [
6432
+ "android",
6433
+ "ios"
6434
+ ],
6435
+ "type": "option"
6436
+ },
6437
+ "after": {
6438
+ "description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
6439
+ "name": "after",
6440
+ "hasDynamicHelp": false,
6441
+ "multiple": false,
6442
+ "type": "option"
6443
+ },
6444
+ "limit": {
6445
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
6446
+ "name": "limit",
6447
+ "hasDynamicHelp": false,
6448
+ "multiple": false,
6449
+ "type": "option"
6450
+ },
6451
+ "start": {
6452
+ "description": "Start of time range (ISO date)",
6453
+ "exclusive": [
6454
+ "days"
6455
+ ],
6456
+ "name": "start",
6457
+ "hasDynamicHelp": false,
6458
+ "multiple": false,
6459
+ "type": "option"
6460
+ },
6461
+ "end": {
6462
+ "description": "End of time range (ISO date)",
6463
+ "exclusive": [
6464
+ "days"
6465
+ ],
6466
+ "name": "end",
6467
+ "hasDynamicHelp": false,
6468
+ "multiple": false,
6469
+ "type": "option"
6470
+ },
6471
+ "days": {
6472
+ "description": "Show events from the last N days (mutually exclusive with --start/--end)",
6473
+ "exclusive": [
6474
+ "start",
6475
+ "end"
6476
+ ],
6477
+ "name": "days",
6478
+ "hasDynamicHelp": false,
6479
+ "multiple": false,
6480
+ "type": "option"
6481
+ },
6482
+ "app-version": {
6483
+ "description": "Filter by app version",
6484
+ "name": "app-version",
6485
+ "hasDynamicHelp": false,
6486
+ "multiple": false,
6487
+ "type": "option"
6488
+ },
6489
+ "update-id": {
6490
+ "description": "Filter by EAS update ID",
6491
+ "name": "update-id",
6492
+ "hasDynamicHelp": false,
6493
+ "multiple": false,
6494
+ "type": "option"
6495
+ },
6496
+ "session-id": {
6497
+ "description": "Filter by session ID",
6498
+ "name": "session-id",
6499
+ "hasDynamicHelp": false,
6500
+ "multiple": false,
6501
+ "type": "option"
6502
+ },
6503
+ "all-events": {
6504
+ "description": "When no event name argument is provided, list all events across all event names instead of a summary of event names + counts.",
6505
+ "name": "all-events",
6506
+ "allowNo": false,
6507
+ "type": "boolean"
6508
+ },
6509
+ "project-id": {
6510
+ "description": "EAS project ID (defaults to the project ID of the current directory)",
6511
+ "name": "project-id",
6512
+ "hasDynamicHelp": false,
6513
+ "multiple": false,
6514
+ "type": "option"
6515
+ },
6516
+ "json": {
6517
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
6518
+ "name": "json",
6519
+ "allowNo": false,
6520
+ "type": "boolean"
6521
+ },
6522
+ "non-interactive": {
6523
+ "description": "Run the command in non-interactive mode.",
6524
+ "name": "non-interactive",
6525
+ "noCacheDefault": true,
6526
+ "allowNo": false,
6527
+ "type": "boolean"
6528
+ }
6529
+ },
6530
+ "hasDynamicHelp": false,
6531
+ "hidden": true,
6532
+ "hiddenAliases": [],
6533
+ "id": "observe:logs",
6534
+ "pluginAlias": "eas-cli",
6535
+ "pluginName": "eas-cli",
6536
+ "pluginType": "core",
6537
+ "strict": true,
6538
+ "enableJsonFlag": false,
6539
+ "ContextOptions": {
6540
+ "LoggedIn": {
6541
+ "loggedIn": {}
6542
+ },
6543
+ "MaybeLoggedIn": {
6544
+ "maybeLoggedIn": {}
6545
+ },
6546
+ "DynamicLoggedIn": {
6547
+ "getDynamicLoggedInAsync": {}
6548
+ },
6549
+ "SessionManagment": {
6550
+ "sessionManager": {}
6551
+ },
6552
+ "OptionalProjectConfig": {
6553
+ "optionalPrivateProjectConfig": {}
6554
+ },
6555
+ "ProjectDir": {
6556
+ "projectDir": {}
6557
+ },
6558
+ "DynamicProjectConfig": {
6559
+ "getDynamicPublicProjectConfigAsync": {},
6560
+ "getDynamicPrivateProjectConfigAsync": {}
6561
+ },
6562
+ "ProjectConfig": {
6563
+ "loggedIn": {},
6564
+ "privateProjectConfig": {}
6565
+ },
6566
+ "Analytics": {
6567
+ "analytics": {}
6568
+ },
6569
+ "Vcs": {
6570
+ "vcsClient": {}
6571
+ },
6572
+ "ServerSideEnvironmentVariables": {
6573
+ "getServerSideEnvironmentVariablesAsync": {}
6574
+ },
6575
+ "ProjectId": {
6576
+ "projectId": {}
6577
+ }
6578
+ },
6579
+ "contextDefinition": {
6580
+ "projectId": {},
6581
+ "loggedIn": {}
6582
+ },
6583
+ "loggedInOnlyContextDefinition": {
6584
+ "loggedIn": {}
6585
+ },
6586
+ "isESM": false,
6587
+ "relativePath": [
6588
+ "build",
6589
+ "commands",
6590
+ "observe",
6591
+ "logs.js"
6592
+ ]
6593
+ },
6401
6594
  "observe:metrics": {
6402
6595
  "aliases": [],
6403
6596
  "args": {},
@@ -10718,49 +10911,47 @@
10718
10911
  "index.js"
10719
10912
  ]
10720
10913
  },
10721
- "integrations:asc:connect": {
10914
+ "integrations:convex:connect": {
10722
10915
  "aliases": [],
10723
10916
  "args": {},
10724
- "description": "connect a project to an App Store Connect app",
10917
+ "description": "connect Convex to your Expo project",
10725
10918
  "flags": {
10726
- "api-key-id": {
10727
- "description": "Apple App Store Connect API Key ID",
10728
- "name": "api-key-id",
10919
+ "non-interactive": {
10920
+ "description": "Run the command in non-interactive mode.",
10921
+ "name": "non-interactive",
10922
+ "noCacheDefault": true,
10923
+ "allowNo": false,
10924
+ "type": "boolean"
10925
+ },
10926
+ "region": {
10927
+ "description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
10928
+ "name": "region",
10729
10929
  "hasDynamicHelp": false,
10730
10930
  "multiple": false,
10931
+ "options": [
10932
+ "aws-us-east-1",
10933
+ "aws-eu-west-1"
10934
+ ],
10731
10935
  "type": "option"
10732
10936
  },
10733
- "asc-app-id": {
10734
- "description": "App Store Connect app identifier",
10735
- "name": "asc-app-id",
10937
+ "team-name": {
10938
+ "description": "Name for the new Convex team (defaults to EAS account name)",
10939
+ "name": "team-name",
10736
10940
  "hasDynamicHelp": false,
10737
10941
  "multiple": false,
10738
10942
  "type": "option"
10739
10943
  },
10740
- "bundle-id": {
10741
- "description": "Filter discovered apps by bundle identifier",
10742
- "name": "bundle-id",
10944
+ "project-name": {
10945
+ "description": "Name for the Convex project (defaults to app slug)",
10946
+ "name": "project-name",
10743
10947
  "hasDynamicHelp": false,
10744
10948
  "multiple": false,
10745
10949
  "type": "option"
10746
- },
10747
- "json": {
10748
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10749
- "name": "json",
10750
- "allowNo": false,
10751
- "type": "boolean"
10752
- },
10753
- "non-interactive": {
10754
- "description": "Run the command in non-interactive mode.",
10755
- "name": "non-interactive",
10756
- "noCacheDefault": true,
10757
- "allowNo": false,
10758
- "type": "boolean"
10759
10950
  }
10760
10951
  },
10761
10952
  "hasDynamicHelp": false,
10762
10953
  "hiddenAliases": [],
10763
- "id": "integrations:asc:connect",
10954
+ "id": "integrations:convex:connect",
10764
10955
  "pluginAlias": "eas-cli",
10765
10956
  "pluginName": "eas-cli",
10766
10957
  "pluginType": "core",
@@ -10807,49 +10998,26 @@
10807
10998
  }
10808
10999
  },
10809
11000
  "contextDefinition": {
10810
- "projectId": {},
10811
- "projectDir": {},
10812
11001
  "loggedIn": {},
10813
- "analytics": {},
10814
- "vcsClient": {}
11002
+ "privateProjectConfig": {}
10815
11003
  },
10816
11004
  "isESM": false,
10817
11005
  "relativePath": [
10818
11006
  "build",
10819
11007
  "commands",
10820
11008
  "integrations",
10821
- "asc",
11009
+ "convex",
10822
11010
  "connect.js"
10823
11011
  ]
10824
11012
  },
10825
- "integrations:asc:disconnect": {
11013
+ "integrations:convex:dashboard": {
10826
11014
  "aliases": [],
10827
11015
  "args": {},
10828
- "description": "disconnect the current project from its App Store Connect app",
10829
- "flags": {
10830
- "yes": {
10831
- "description": "Skip confirmation prompt",
10832
- "name": "yes",
10833
- "allowNo": false,
10834
- "type": "boolean"
10835
- },
10836
- "json": {
10837
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10838
- "name": "json",
10839
- "allowNo": false,
10840
- "type": "boolean"
10841
- },
10842
- "non-interactive": {
10843
- "description": "Run the command in non-interactive mode.",
10844
- "name": "non-interactive",
10845
- "noCacheDefault": true,
10846
- "allowNo": false,
10847
- "type": "boolean"
10848
- }
10849
- },
11016
+ "description": "open the Convex dashboard for the linked Convex project",
11017
+ "flags": {},
10850
11018
  "hasDynamicHelp": false,
10851
11019
  "hiddenAliases": [],
10852
- "id": "integrations:asc:disconnect",
11020
+ "id": "integrations:convex:dashboard",
10853
11021
  "pluginAlias": "eas-cli",
10854
11022
  "pluginName": "eas-cli",
10855
11023
  "pluginType": "core",
@@ -10896,40 +11064,26 @@
10896
11064
  }
10897
11065
  },
10898
11066
  "contextDefinition": {
10899
- "projectId": {},
10900
- "loggedIn": {}
11067
+ "loggedIn": {},
11068
+ "privateProjectConfig": {}
10901
11069
  },
10902
11070
  "isESM": false,
10903
11071
  "relativePath": [
10904
11072
  "build",
10905
11073
  "commands",
10906
11074
  "integrations",
10907
- "asc",
10908
- "disconnect.js"
11075
+ "convex",
11076
+ "dashboard.js"
10909
11077
  ]
10910
11078
  },
10911
- "integrations:asc:status": {
11079
+ "integrations:convex:project": {
10912
11080
  "aliases": [],
10913
11081
  "args": {},
10914
- "description": "show the App Store Connect app link status for the current project",
10915
- "flags": {
10916
- "json": {
10917
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
10918
- "name": "json",
10919
- "allowNo": false,
10920
- "type": "boolean"
10921
- },
10922
- "non-interactive": {
10923
- "description": "Run the command in non-interactive mode.",
10924
- "name": "non-interactive",
10925
- "noCacheDefault": true,
10926
- "allowNo": false,
10927
- "type": "boolean"
10928
- }
10929
- },
11082
+ "description": "display the Convex project linked to the current Expo app",
11083
+ "flags": {},
10930
11084
  "hasDynamicHelp": false,
10931
11085
  "hiddenAliases": [],
10932
- "id": "integrations:asc:status",
11086
+ "id": "integrations:convex:project",
10933
11087
  "pluginAlias": "eas-cli",
10934
11088
  "pluginName": "eas-cli",
10935
11089
  "pluginType": "core",
@@ -10976,59 +11130,26 @@
10976
11130
  }
10977
11131
  },
10978
11132
  "contextDefinition": {
10979
- "projectId": {},
10980
- "loggedIn": {}
11133
+ "loggedIn": {},
11134
+ "privateProjectConfig": {}
10981
11135
  },
10982
11136
  "isESM": false,
10983
11137
  "relativePath": [
10984
11138
  "build",
10985
11139
  "commands",
10986
11140
  "integrations",
10987
- "asc",
10988
- "status.js"
11141
+ "convex",
11142
+ "project.js"
10989
11143
  ]
10990
11144
  },
10991
- "integrations:convex:connect": {
11145
+ "integrations:convex:team": {
10992
11146
  "aliases": [],
10993
11147
  "args": {},
10994
- "description": "connect Convex to your Expo project",
10995
- "flags": {
10996
- "non-interactive": {
10997
- "description": "Run the command in non-interactive mode.",
10998
- "name": "non-interactive",
10999
- "noCacheDefault": true,
11000
- "allowNo": false,
11001
- "type": "boolean"
11002
- },
11003
- "region": {
11004
- "description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
11005
- "name": "region",
11006
- "hasDynamicHelp": false,
11007
- "multiple": false,
11008
- "options": [
11009
- "aws-us-east-1",
11010
- "aws-eu-west-1"
11011
- ],
11012
- "type": "option"
11013
- },
11014
- "team-name": {
11015
- "description": "Name for the new Convex team (defaults to EAS account name)",
11016
- "name": "team-name",
11017
- "hasDynamicHelp": false,
11018
- "multiple": false,
11019
- "type": "option"
11020
- },
11021
- "project-name": {
11022
- "description": "Name for the Convex project (defaults to app slug)",
11023
- "name": "project-name",
11024
- "hasDynamicHelp": false,
11025
- "multiple": false,
11026
- "type": "option"
11027
- }
11028
- },
11148
+ "description": "display Convex teams linked to the current Expo app's owner account",
11149
+ "flags": {},
11029
11150
  "hasDynamicHelp": false,
11030
11151
  "hiddenAliases": [],
11031
- "id": "integrations:convex:connect",
11152
+ "id": "integrations:convex:team",
11032
11153
  "pluginAlias": "eas-cli",
11033
11154
  "pluginName": "eas-cli",
11034
11155
  "pluginType": "core",
@@ -11084,17 +11205,52 @@
11084
11205
  "commands",
11085
11206
  "integrations",
11086
11207
  "convex",
11087
- "connect.js"
11208
+ "team.js"
11088
11209
  ]
11089
11210
  },
11090
- "integrations:convex:dashboard": {
11211
+ "integrations:asc:connect": {
11091
11212
  "aliases": [],
11092
11213
  "args": {},
11093
- "description": "open the Convex dashboard for the linked Convex project",
11094
- "flags": {},
11214
+ "description": "connect a project to an App Store Connect app",
11215
+ "flags": {
11216
+ "api-key-id": {
11217
+ "description": "Apple App Store Connect API Key ID",
11218
+ "name": "api-key-id",
11219
+ "hasDynamicHelp": false,
11220
+ "multiple": false,
11221
+ "type": "option"
11222
+ },
11223
+ "asc-app-id": {
11224
+ "description": "App Store Connect app identifier",
11225
+ "name": "asc-app-id",
11226
+ "hasDynamicHelp": false,
11227
+ "multiple": false,
11228
+ "type": "option"
11229
+ },
11230
+ "bundle-id": {
11231
+ "description": "Filter discovered apps by bundle identifier",
11232
+ "name": "bundle-id",
11233
+ "hasDynamicHelp": false,
11234
+ "multiple": false,
11235
+ "type": "option"
11236
+ },
11237
+ "json": {
11238
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
11239
+ "name": "json",
11240
+ "allowNo": false,
11241
+ "type": "boolean"
11242
+ },
11243
+ "non-interactive": {
11244
+ "description": "Run the command in non-interactive mode.",
11245
+ "name": "non-interactive",
11246
+ "noCacheDefault": true,
11247
+ "allowNo": false,
11248
+ "type": "boolean"
11249
+ }
11250
+ },
11095
11251
  "hasDynamicHelp": false,
11096
11252
  "hiddenAliases": [],
11097
- "id": "integrations:convex:dashboard",
11253
+ "id": "integrations:asc:connect",
11098
11254
  "pluginAlias": "eas-cli",
11099
11255
  "pluginName": "eas-cli",
11100
11256
  "pluginType": "core",
@@ -11141,26 +11297,49 @@
11141
11297
  }
11142
11298
  },
11143
11299
  "contextDefinition": {
11300
+ "projectId": {},
11301
+ "projectDir": {},
11144
11302
  "loggedIn": {},
11145
- "privateProjectConfig": {}
11303
+ "analytics": {},
11304
+ "vcsClient": {}
11146
11305
  },
11147
11306
  "isESM": false,
11148
11307
  "relativePath": [
11149
11308
  "build",
11150
11309
  "commands",
11151
11310
  "integrations",
11152
- "convex",
11153
- "dashboard.js"
11311
+ "asc",
11312
+ "connect.js"
11154
11313
  ]
11155
11314
  },
11156
- "integrations:convex:project": {
11315
+ "integrations:asc:disconnect": {
11157
11316
  "aliases": [],
11158
11317
  "args": {},
11159
- "description": "display the Convex project linked to the current Expo app",
11160
- "flags": {},
11318
+ "description": "disconnect the current project from its App Store Connect app",
11319
+ "flags": {
11320
+ "yes": {
11321
+ "description": "Skip confirmation prompt",
11322
+ "name": "yes",
11323
+ "allowNo": false,
11324
+ "type": "boolean"
11325
+ },
11326
+ "json": {
11327
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
11328
+ "name": "json",
11329
+ "allowNo": false,
11330
+ "type": "boolean"
11331
+ },
11332
+ "non-interactive": {
11333
+ "description": "Run the command in non-interactive mode.",
11334
+ "name": "non-interactive",
11335
+ "noCacheDefault": true,
11336
+ "allowNo": false,
11337
+ "type": "boolean"
11338
+ }
11339
+ },
11161
11340
  "hasDynamicHelp": false,
11162
11341
  "hiddenAliases": [],
11163
- "id": "integrations:convex:project",
11342
+ "id": "integrations:asc:disconnect",
11164
11343
  "pluginAlias": "eas-cli",
11165
11344
  "pluginName": "eas-cli",
11166
11345
  "pluginType": "core",
@@ -11207,26 +11386,40 @@
11207
11386
  }
11208
11387
  },
11209
11388
  "contextDefinition": {
11210
- "loggedIn": {},
11211
- "privateProjectConfig": {}
11389
+ "projectId": {},
11390
+ "loggedIn": {}
11212
11391
  },
11213
11392
  "isESM": false,
11214
11393
  "relativePath": [
11215
11394
  "build",
11216
11395
  "commands",
11217
11396
  "integrations",
11218
- "convex",
11219
- "project.js"
11397
+ "asc",
11398
+ "disconnect.js"
11220
11399
  ]
11221
11400
  },
11222
- "integrations:convex:team": {
11401
+ "integrations:asc:status": {
11223
11402
  "aliases": [],
11224
11403
  "args": {},
11225
- "description": "display Convex teams linked to the current Expo app's owner account",
11226
- "flags": {},
11404
+ "description": "show the App Store Connect app link status for the current project",
11405
+ "flags": {
11406
+ "json": {
11407
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
11408
+ "name": "json",
11409
+ "allowNo": false,
11410
+ "type": "boolean"
11411
+ },
11412
+ "non-interactive": {
11413
+ "description": "Run the command in non-interactive mode.",
11414
+ "name": "non-interactive",
11415
+ "noCacheDefault": true,
11416
+ "allowNo": false,
11417
+ "type": "boolean"
11418
+ }
11419
+ },
11227
11420
  "hasDynamicHelp": false,
11228
11421
  "hiddenAliases": [],
11229
- "id": "integrations:convex:team",
11422
+ "id": "integrations:asc:status",
11230
11423
  "pluginAlias": "eas-cli",
11231
11424
  "pluginName": "eas-cli",
11232
11425
  "pluginType": "core",
@@ -11273,16 +11466,16 @@
11273
11466
  }
11274
11467
  },
11275
11468
  "contextDefinition": {
11276
- "loggedIn": {},
11277
- "privateProjectConfig": {}
11469
+ "projectId": {},
11470
+ "loggedIn": {}
11278
11471
  },
11279
11472
  "isESM": false,
11280
11473
  "relativePath": [
11281
11474
  "build",
11282
11475
  "commands",
11283
11476
  "integrations",
11284
- "convex",
11285
- "team.js"
11477
+ "asc",
11478
+ "status.js"
11286
11479
  ]
11287
11480
  },
11288
11481
  "integrations:convex:project:delete": {
@@ -11537,5 +11730,5 @@
11537
11730
  ]
11538
11731
  }
11539
11732
  },
11540
- "version": "18.10.0"
11733
+ "version": "18.11.0"
11541
11734
  }