eas-cli 18.6.0 → 18.8.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 (43) hide show
  1. package/README.md +149 -91
  2. package/build/channel/insights/formatInsights.d.ts +47 -0
  3. package/build/channel/insights/formatInsights.js +108 -0
  4. package/build/commands/build/dev.d.ts +1 -0
  5. package/build/commands/build/dev.js +10 -2
  6. package/build/commands/channel/insights.d.ts +18 -0
  7. package/build/commands/channel/insights.js +71 -0
  8. package/build/commands/observe/events.d.ts +1 -0
  9. package/build/commands/observe/events.js +17 -4
  10. package/build/commands/observe/metrics.d.ts +1 -0
  11. package/build/commands/observe/metrics.js +18 -6
  12. package/build/commands/observe/versions.d.ts +1 -0
  13. package/build/commands/observe/versions.js +17 -4
  14. package/build/commands/update/insights.d.ts +19 -0
  15. package/build/commands/update/insights.js +75 -0
  16. package/build/commands/update/view.d.ts +4 -0
  17. package/build/commands/update/view.js +47 -2
  18. package/build/credentials/ios/appstore/capabilityIdentifiers.js +28 -3
  19. package/build/graphql/client.d.ts +13 -0
  20. package/build/graphql/client.js +36 -1
  21. package/build/graphql/generated.d.ts +193 -0
  22. package/build/graphql/generated.js +8 -2
  23. package/build/graphql/queries/ChannelInsightsQuery.d.ts +12 -0
  24. package/build/graphql/queries/ChannelInsightsQuery.js +81 -0
  25. package/build/graphql/queries/UpdateInsightsQuery.d.ts +10 -0
  26. package/build/graphql/queries/UpdateInsightsQuery.js +53 -0
  27. package/build/graphql/types/Observe.js +1 -0
  28. package/build/insights/formatTimespan.d.ts +7 -0
  29. package/build/insights/formatTimespan.js +15 -0
  30. package/build/insights/timeRange.d.ts +10 -0
  31. package/build/insights/timeRange.js +10 -0
  32. package/build/metadata/apple/tasks/previews.js +41 -15
  33. package/build/observe/formatEvents.d.ts +3 -0
  34. package/build/observe/formatEvents.js +4 -0
  35. package/build/observe/formatMetrics.d.ts +3 -2
  36. package/build/observe/formatMetrics.js +16 -27
  37. package/build/observe/formatVersions.js +2 -8
  38. package/build/update/insights/formatInsights.d.ts +34 -0
  39. package/build/update/insights/formatInsights.js +128 -0
  40. package/build/utils/renderTextTable.d.ts +6 -0
  41. package/build/utils/renderTextTable.js +23 -0
  42. package/oclif.manifest.json +773 -469
  43. package/package.json +5 -5
@@ -1796,6 +1796,12 @@
1796
1796
  "name": "skip-build-if-not-found",
1797
1797
  "allowNo": false,
1798
1798
  "type": "boolean"
1799
+ },
1800
+ "skip-bundler": {
1801
+ "description": "Install and run the development build without starting the bundler server.",
1802
+ "name": "skip-bundler",
1803
+ "allowNo": false,
1804
+ "type": "boolean"
1799
1805
  }
1800
1806
  },
1801
1807
  "hasDynamicHelp": false,
@@ -3282,6 +3288,132 @@
3282
3288
  "edit.js"
3283
3289
  ]
3284
3290
  },
3291
+ "channel:insights": {
3292
+ "aliases": [],
3293
+ "args": {},
3294
+ "description": "display adoption, crash, and unique-user insights for a channel + runtime version",
3295
+ "flags": {
3296
+ "channel": {
3297
+ "description": "Name of the channel.",
3298
+ "name": "channel",
3299
+ "required": true,
3300
+ "hasDynamicHelp": false,
3301
+ "multiple": false,
3302
+ "type": "option"
3303
+ },
3304
+ "runtime-version": {
3305
+ "description": "Runtime version to query insights for.",
3306
+ "name": "runtime-version",
3307
+ "required": true,
3308
+ "hasDynamicHelp": false,
3309
+ "multiple": false,
3310
+ "type": "option"
3311
+ },
3312
+ "days": {
3313
+ "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
3314
+ "exclusive": [
3315
+ "start",
3316
+ "end"
3317
+ ],
3318
+ "name": "days",
3319
+ "hasDynamicHelp": false,
3320
+ "multiple": false,
3321
+ "type": "option"
3322
+ },
3323
+ "start": {
3324
+ "description": "Start of insights time range (ISO date).",
3325
+ "exclusive": [
3326
+ "days"
3327
+ ],
3328
+ "name": "start",
3329
+ "hasDynamicHelp": false,
3330
+ "multiple": false,
3331
+ "type": "option"
3332
+ },
3333
+ "end": {
3334
+ "description": "End of insights time range (ISO date).",
3335
+ "exclusive": [
3336
+ "days"
3337
+ ],
3338
+ "name": "end",
3339
+ "hasDynamicHelp": false,
3340
+ "multiple": false,
3341
+ "type": "option"
3342
+ },
3343
+ "json": {
3344
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
3345
+ "name": "json",
3346
+ "allowNo": false,
3347
+ "type": "boolean"
3348
+ },
3349
+ "non-interactive": {
3350
+ "description": "Run the command in non-interactive mode.",
3351
+ "name": "non-interactive",
3352
+ "noCacheDefault": true,
3353
+ "allowNo": false,
3354
+ "type": "boolean"
3355
+ }
3356
+ },
3357
+ "hasDynamicHelp": false,
3358
+ "hiddenAliases": [],
3359
+ "id": "channel:insights",
3360
+ "pluginAlias": "eas-cli",
3361
+ "pluginName": "eas-cli",
3362
+ "pluginType": "core",
3363
+ "strict": true,
3364
+ "enableJsonFlag": false,
3365
+ "ContextOptions": {
3366
+ "LoggedIn": {
3367
+ "loggedIn": {}
3368
+ },
3369
+ "MaybeLoggedIn": {
3370
+ "maybeLoggedIn": {}
3371
+ },
3372
+ "DynamicLoggedIn": {
3373
+ "getDynamicLoggedInAsync": {}
3374
+ },
3375
+ "SessionManagment": {
3376
+ "sessionManager": {}
3377
+ },
3378
+ "OptionalProjectConfig": {
3379
+ "optionalPrivateProjectConfig": {}
3380
+ },
3381
+ "ProjectDir": {
3382
+ "projectDir": {}
3383
+ },
3384
+ "DynamicProjectConfig": {
3385
+ "getDynamicPublicProjectConfigAsync": {},
3386
+ "getDynamicPrivateProjectConfigAsync": {}
3387
+ },
3388
+ "ProjectConfig": {
3389
+ "loggedIn": {},
3390
+ "privateProjectConfig": {}
3391
+ },
3392
+ "Analytics": {
3393
+ "analytics": {}
3394
+ },
3395
+ "Vcs": {
3396
+ "vcsClient": {}
3397
+ },
3398
+ "ServerSideEnvironmentVariables": {
3399
+ "getServerSideEnvironmentVariablesAsync": {}
3400
+ },
3401
+ "ProjectId": {
3402
+ "projectId": {}
3403
+ }
3404
+ },
3405
+ "contextDefinition": {
3406
+ "projectId": {},
3407
+ "loggedIn": {}
3408
+ },
3409
+ "isESM": false,
3410
+ "relativePath": [
3411
+ "build",
3412
+ "commands",
3413
+ "channel",
3414
+ "insights.js"
3415
+ ]
3416
+ },
3285
3417
  "channel:list": {
3286
3418
  "aliases": [],
3287
3419
  "args": {},
@@ -3991,14 +4123,90 @@
3991
4123
  "index.js"
3992
4124
  ]
3993
4125
  },
3994
- "device:create": {
4126
+ "env:create": {
3995
4127
  "aliases": [],
3996
- "args": {},
3997
- "description": "register new Apple Devices to use for internal distribution",
3998
- "flags": {},
4128
+ "args": {
4129
+ "environment": {
4130
+ "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
4131
+ "name": "environment",
4132
+ "required": false
4133
+ }
4134
+ },
4135
+ "description": "create an environment variable for the current project or account",
4136
+ "flags": {
4137
+ "name": {
4138
+ "description": "Name of the variable",
4139
+ "name": "name",
4140
+ "hasDynamicHelp": false,
4141
+ "multiple": false,
4142
+ "type": "option"
4143
+ },
4144
+ "value": {
4145
+ "description": "Text value or the variable",
4146
+ "name": "value",
4147
+ "hasDynamicHelp": false,
4148
+ "multiple": false,
4149
+ "type": "option"
4150
+ },
4151
+ "force": {
4152
+ "description": "Overwrite existing variable",
4153
+ "name": "force",
4154
+ "allowNo": false,
4155
+ "type": "boolean"
4156
+ },
4157
+ "type": {
4158
+ "description": "The type of variable",
4159
+ "name": "type",
4160
+ "hasDynamicHelp": false,
4161
+ "multiple": false,
4162
+ "options": [
4163
+ "string",
4164
+ "file"
4165
+ ],
4166
+ "type": "option"
4167
+ },
4168
+ "visibility": {
4169
+ "description": "Visibility of the variable",
4170
+ "name": "visibility",
4171
+ "hasDynamicHelp": false,
4172
+ "multiple": false,
4173
+ "options": [
4174
+ "plaintext",
4175
+ "sensitive",
4176
+ "secret"
4177
+ ],
4178
+ "type": "option"
4179
+ },
4180
+ "scope": {
4181
+ "description": "Scope for the variable",
4182
+ "name": "scope",
4183
+ "default": "project",
4184
+ "hasDynamicHelp": false,
4185
+ "multiple": false,
4186
+ "options": [
4187
+ "project",
4188
+ "account"
4189
+ ],
4190
+ "type": "option"
4191
+ },
4192
+ "environment": {
4193
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4194
+ "name": "environment",
4195
+ "hasDynamicHelp": false,
4196
+ "multiple": true,
4197
+ "type": "option"
4198
+ },
4199
+ "non-interactive": {
4200
+ "description": "Run the command in non-interactive mode.",
4201
+ "name": "non-interactive",
4202
+ "noCacheDefault": true,
4203
+ "allowNo": false,
4204
+ "type": "boolean"
4205
+ }
4206
+ },
3999
4207
  "hasDynamicHelp": false,
4000
4208
  "hiddenAliases": [],
4001
- "id": "device:create",
4209
+ "id": "env:create",
4002
4210
  "pluginAlias": "eas-cli",
4003
4211
  "pluginName": "eas-cli",
4004
4212
  "pluginType": "core",
@@ -4045,41 +4253,54 @@
4045
4253
  }
4046
4254
  },
4047
4255
  "contextDefinition": {
4048
- "loggedIn": {},
4049
- "optionalPrivateProjectConfig": {}
4256
+ "projectId": {},
4257
+ "analytics": {},
4258
+ "loggedIn": {}
4050
4259
  },
4051
4260
  "isESM": false,
4052
4261
  "relativePath": [
4053
4262
  "build",
4054
4263
  "commands",
4055
- "device",
4264
+ "env",
4056
4265
  "create.js"
4057
4266
  ]
4058
4267
  },
4059
- "device:delete": {
4268
+ "env:delete": {
4060
4269
  "aliases": [],
4061
- "args": {},
4062
- "description": "remove a registered device from your account",
4270
+ "args": {
4271
+ "environment": {
4272
+ "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
4273
+ "name": "environment",
4274
+ "required": false
4275
+ }
4276
+ },
4277
+ "description": "delete an environment variable for the current project or account",
4063
4278
  "flags": {
4064
- "apple-team-id": {
4065
- "description": "The Apple team ID on which to find the device",
4066
- "name": "apple-team-id",
4279
+ "variable-name": {
4280
+ "description": "Name of the variable to delete",
4281
+ "name": "variable-name",
4067
4282
  "hasDynamicHelp": false,
4068
4283
  "multiple": false,
4069
4284
  "type": "option"
4070
4285
  },
4071
- "udid": {
4072
- "description": "The Apple device ID to disable",
4073
- "name": "udid",
4286
+ "variable-environment": {
4287
+ "description": "Current environment of the variable to delete",
4288
+ "name": "variable-environment",
4074
4289
  "hasDynamicHelp": false,
4075
4290
  "multiple": false,
4076
4291
  "type": "option"
4077
4292
  },
4078
- "json": {
4079
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4080
- "name": "json",
4081
- "allowNo": false,
4082
- "type": "boolean"
4293
+ "scope": {
4294
+ "description": "Scope for the variable",
4295
+ "name": "scope",
4296
+ "default": "project",
4297
+ "hasDynamicHelp": false,
4298
+ "multiple": false,
4299
+ "options": [
4300
+ "project",
4301
+ "account"
4302
+ ],
4303
+ "type": "option"
4083
4304
  },
4084
4305
  "non-interactive": {
4085
4306
  "description": "Run the command in non-interactive mode.",
@@ -4091,7 +4312,7 @@
4091
4312
  },
4092
4313
  "hasDynamicHelp": false,
4093
4314
  "hiddenAliases": [],
4094
- "id": "device:delete",
4315
+ "id": "env:delete",
4095
4316
  "pluginAlias": "eas-cli",
4096
4317
  "pluginName": "eas-cli",
4097
4318
  "pluginType": "core",
@@ -4145,41 +4366,26 @@
4145
4366
  "relativePath": [
4146
4367
  "build",
4147
4368
  "commands",
4148
- "device",
4369
+ "env",
4149
4370
  "delete.js"
4150
4371
  ]
4151
4372
  },
4152
- "device:list": {
4373
+ "env:exec": {
4153
4374
  "aliases": [],
4154
- "args": {},
4155
- "description": "list all registered devices for your account",
4156
- "flags": {
4157
- "apple-team-id": {
4158
- "name": "apple-team-id",
4159
- "hasDynamicHelp": false,
4160
- "multiple": false,
4161
- "type": "option"
4162
- },
4163
- "offset": {
4164
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
4165
- "name": "offset",
4166
- "hasDynamicHelp": false,
4167
- "multiple": false,
4168
- "type": "option"
4169
- },
4170
- "limit": {
4171
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
4172
- "name": "limit",
4173
- "hasDynamicHelp": false,
4174
- "multiple": false,
4175
- "type": "option"
4176
- },
4177
- "json": {
4178
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4179
- "name": "json",
4180
- "allowNo": false,
4181
- "type": "boolean"
4375
+ "args": {
4376
+ "environment": {
4377
+ "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
4378
+ "name": "environment",
4379
+ "required": true
4182
4380
  },
4381
+ "bash_command": {
4382
+ "description": "bash command to execute with the environment variables from the environment",
4383
+ "name": "bash_command",
4384
+ "required": true
4385
+ }
4386
+ },
4387
+ "description": "execute a command with environment variables from the selected environment",
4388
+ "flags": {
4183
4389
  "non-interactive": {
4184
4390
  "description": "Run the command in non-interactive mode.",
4185
4391
  "name": "non-interactive",
@@ -4190,7 +4396,7 @@
4190
4396
  },
4191
4397
  "hasDynamicHelp": false,
4192
4398
  "hiddenAliases": [],
4193
- "id": "device:list",
4399
+ "id": "env:exec",
4194
4400
  "pluginAlias": "eas-cli",
4195
4401
  "pluginName": "eas-cli",
4196
4402
  "pluginType": "core",
@@ -4244,41 +4450,58 @@
4244
4450
  "relativePath": [
4245
4451
  "build",
4246
4452
  "commands",
4247
- "device",
4248
- "list.js"
4453
+ "env",
4454
+ "exec.js"
4249
4455
  ]
4250
4456
  },
4251
- "device:rename": {
4457
+ "env:get": {
4252
4458
  "aliases": [],
4253
- "args": {},
4254
- "description": "rename a registered device",
4459
+ "args": {
4460
+ "environment": {
4461
+ "description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
4462
+ "name": "environment",
4463
+ "required": false
4464
+ }
4465
+ },
4466
+ "description": "view an environment variable for the current project or account",
4255
4467
  "flags": {
4256
- "apple-team-id": {
4257
- "description": "The Apple team ID on which to find the device",
4258
- "name": "apple-team-id",
4468
+ "variable-name": {
4469
+ "description": "Name of the variable",
4470
+ "name": "variable-name",
4259
4471
  "hasDynamicHelp": false,
4260
4472
  "multiple": false,
4261
4473
  "type": "option"
4262
4474
  },
4263
- "udid": {
4264
- "description": "The Apple device ID to rename",
4265
- "name": "udid",
4475
+ "variable-environment": {
4476
+ "description": "Current environment of the variable",
4477
+ "name": "variable-environment",
4266
4478
  "hasDynamicHelp": false,
4267
4479
  "multiple": false,
4268
4480
  "type": "option"
4269
4481
  },
4270
- "name": {
4271
- "description": "The new name for the device",
4272
- "name": "name",
4482
+ "format": {
4483
+ "description": "Output format",
4484
+ "name": "format",
4485
+ "default": "short",
4273
4486
  "hasDynamicHelp": false,
4274
4487
  "multiple": false,
4488
+ "options": [
4489
+ "long",
4490
+ "short"
4491
+ ],
4275
4492
  "type": "option"
4276
4493
  },
4277
- "json": {
4278
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4279
- "name": "json",
4280
- "allowNo": false,
4281
- "type": "boolean"
4494
+ "scope": {
4495
+ "description": "Scope for the variable",
4496
+ "name": "scope",
4497
+ "default": "project",
4498
+ "hasDynamicHelp": false,
4499
+ "multiple": false,
4500
+ "options": [
4501
+ "project",
4502
+ "account"
4503
+ ],
4504
+ "type": "option"
4282
4505
  },
4283
4506
  "non-interactive": {
4284
4507
  "description": "Run the command in non-interactive mode.",
@@ -4290,7 +4513,7 @@
4290
4513
  },
4291
4514
  "hasDynamicHelp": false,
4292
4515
  "hiddenAliases": [],
4293
- "id": "device:rename",
4516
+ "id": "env:get",
4294
4517
  "pluginAlias": "eas-cli",
4295
4518
  "pluginName": "eas-cli",
4296
4519
  "pluginType": "core",
@@ -4344,22 +4567,68 @@
4344
4567
  "relativePath": [
4345
4568
  "build",
4346
4569
  "commands",
4347
- "device",
4348
- "rename.js"
4570
+ "env",
4571
+ "get.js"
4349
4572
  ]
4350
4573
  },
4351
- "device:view": {
4574
+ "env:list": {
4352
4575
  "aliases": [],
4353
4576
  "args": {
4354
- "UDID": {
4355
- "name": "UDID"
4577
+ "environment": {
4578
+ "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
4579
+ "name": "environment",
4580
+ "required": false
4581
+ }
4582
+ },
4583
+ "description": "list environment variables for the current project or account",
4584
+ "flags": {
4585
+ "include-sensitive": {
4586
+ "description": "Display sensitive values in the output",
4587
+ "name": "include-sensitive",
4588
+ "allowNo": false,
4589
+ "type": "boolean"
4590
+ },
4591
+ "include-file-content": {
4592
+ "description": "Display files content in the output",
4593
+ "name": "include-file-content",
4594
+ "allowNo": false,
4595
+ "type": "boolean"
4596
+ },
4597
+ "environment": {
4598
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4599
+ "name": "environment",
4600
+ "hasDynamicHelp": false,
4601
+ "multiple": true,
4602
+ "type": "option"
4603
+ },
4604
+ "format": {
4605
+ "description": "Output format",
4606
+ "name": "format",
4607
+ "default": "short",
4608
+ "hasDynamicHelp": false,
4609
+ "multiple": false,
4610
+ "options": [
4611
+ "long",
4612
+ "short"
4613
+ ],
4614
+ "type": "option"
4615
+ },
4616
+ "scope": {
4617
+ "description": "Scope for the variable",
4618
+ "name": "scope",
4619
+ "default": "project",
4620
+ "hasDynamicHelp": false,
4621
+ "multiple": false,
4622
+ "options": [
4623
+ "project",
4624
+ "account"
4625
+ ],
4626
+ "type": "option"
4356
4627
  }
4357
4628
  },
4358
- "description": "view a device for your project",
4359
- "flags": {},
4360
4629
  "hasDynamicHelp": false,
4361
4630
  "hiddenAliases": [],
4362
- "id": "device:view",
4631
+ "id": "env:list",
4363
4632
  "pluginAlias": "eas-cli",
4364
4633
  "pluginName": "eas-cli",
4365
4634
  "pluginType": "core",
@@ -4413,42 +4682,50 @@
4413
4682
  "relativePath": [
4414
4683
  "build",
4415
4684
  "commands",
4416
- "device",
4417
- "view.js"
4685
+ "env",
4686
+ "list.js"
4418
4687
  ]
4419
4688
  },
4420
- "deploy:delete": {
4421
- "aliases": [
4422
- "worker:delete"
4423
- ],
4689
+ "env:pull": {
4690
+ "aliases": [],
4424
4691
  "args": {
4425
- "DEPLOYMENT_ID": {
4426
- "name": "DEPLOYMENT_ID"
4692
+ "environment": {
4693
+ "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
4694
+ "name": "environment",
4695
+ "required": false
4427
4696
  }
4428
4697
  },
4429
- "description": "Delete a deployment.",
4698
+ "description": "pull environment variables for the selected environment to .env file",
4430
4699
  "flags": {
4431
- "json": {
4432
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4433
- "name": "json",
4434
- "allowNo": false,
4435
- "type": "boolean"
4436
- },
4437
4700
  "non-interactive": {
4438
4701
  "description": "Run the command in non-interactive mode.",
4439
4702
  "name": "non-interactive",
4440
4703
  "noCacheDefault": true,
4441
4704
  "allowNo": false,
4442
4705
  "type": "boolean"
4706
+ },
4707
+ "environment": {
4708
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4709
+ "name": "environment",
4710
+ "hasDynamicHelp": false,
4711
+ "multiple": false,
4712
+ "type": "option"
4713
+ },
4714
+ "path": {
4715
+ "description": "Path to the result `.env` file",
4716
+ "name": "path",
4717
+ "default": ".env.local",
4718
+ "hasDynamicHelp": false,
4719
+ "multiple": false,
4720
+ "type": "option"
4443
4721
  }
4444
4722
  },
4445
4723
  "hasDynamicHelp": false,
4446
4724
  "hiddenAliases": [],
4447
- "id": "deploy:delete",
4725
+ "id": "env:pull",
4448
4726
  "pluginAlias": "eas-cli",
4449
4727
  "pluginName": "eas-cli",
4450
4728
  "pluginType": "core",
4451
- "state": "preview",
4452
4729
  "strict": true,
4453
4730
  "enableJsonFlag": false,
4454
4731
  "ContextOptions": {
@@ -4492,105 +4769,58 @@
4492
4769
  }
4493
4770
  },
4494
4771
  "contextDefinition": {
4495
- "getDynamicPublicProjectConfigAsync": {},
4496
- "getDynamicPrivateProjectConfigAsync": {},
4497
- "projectDir": {},
4498
- "loggedIn": {}
4772
+ "projectId": {},
4773
+ "loggedIn": {},
4774
+ "projectDir": {}
4499
4775
  },
4500
4776
  "isESM": false,
4501
4777
  "relativePath": [
4502
4778
  "build",
4503
4779
  "commands",
4504
- "deploy",
4505
- "delete.js"
4780
+ "env",
4781
+ "pull.js"
4506
4782
  ]
4507
4783
  },
4508
- "deploy": {
4509
- "aliases": [
4510
- "worker:deploy"
4511
- ],
4512
- "args": {},
4513
- "description": "deploy your Expo Router web build and API Routes",
4784
+ "env:push": {
4785
+ "aliases": [],
4786
+ "args": {
4787
+ "environment": {
4788
+ "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
4789
+ "name": "environment",
4790
+ "required": false
4791
+ }
4792
+ },
4793
+ "description": "push environment variables from .env file to the selected environment",
4514
4794
  "flags": {
4515
- "prod": {
4516
- "aliases": [
4517
- "production"
4518
- ],
4519
- "description": "Create a new production deployment.",
4520
- "name": "prod",
4521
- "allowNo": false,
4522
- "type": "boolean"
4523
- },
4524
- "alias": {
4525
- "description": "Custom alias to assign to the new deployment.",
4526
- "name": "alias",
4527
- "hasDynamicHelp": false,
4528
- "helpValue": "name",
4529
- "multiple": false,
4530
- "type": "option"
4531
- },
4532
- "id": {
4533
- "description": "Custom unique identifier for the new deployment.",
4534
- "name": "id",
4535
- "hasDynamicHelp": false,
4536
- "helpValue": "xyz123",
4537
- "multiple": false,
4538
- "type": "option"
4539
- },
4540
- "export-dir": {
4541
- "description": "Directory where the Expo project was exported.",
4542
- "name": "export-dir",
4543
- "default": "dist",
4544
- "hasDynamicHelp": false,
4545
- "helpValue": "dir",
4546
- "multiple": false,
4547
- "type": "option"
4548
- },
4549
- "dry-run": {
4550
- "description": "Outputs a tarball of the new deployment instead of uploading it.",
4551
- "name": "dry-run",
4552
- "allowNo": false,
4553
- "type": "boolean"
4554
- },
4555
- "source-maps": {
4556
- "description": "Include source maps in the deployment.",
4557
- "name": "source-maps",
4558
- "allowNo": true,
4559
- "type": "boolean"
4560
- },
4561
4795
  "environment": {
4562
4796
  "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4563
4797
  "name": "environment",
4564
4798
  "hasDynamicHelp": false,
4565
- "multiple": false,
4799
+ "multiple": true,
4566
4800
  "type": "option"
4567
4801
  },
4568
- "json": {
4569
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4570
- "name": "json",
4571
- "allowNo": false,
4572
- "type": "boolean"
4802
+ "path": {
4803
+ "description": "Path to the input `.env` file",
4804
+ "name": "path",
4805
+ "default": ".env.local",
4806
+ "hasDynamicHelp": false,
4807
+ "multiple": false,
4808
+ "type": "option"
4573
4809
  },
4574
- "non-interactive": {
4575
- "description": "Run the command in non-interactive mode.",
4576
- "name": "non-interactive",
4577
- "noCacheDefault": true,
4810
+ "force": {
4811
+ "description": "Skip confirmation and automatically override existing variables",
4812
+ "name": "force",
4578
4813
  "allowNo": false,
4579
4814
  "type": "boolean"
4580
4815
  }
4581
4816
  },
4582
4817
  "hasDynamicHelp": false,
4583
4818
  "hiddenAliases": [],
4584
- "id": "deploy",
4819
+ "id": "env:push",
4585
4820
  "pluginAlias": "eas-cli",
4586
4821
  "pluginName": "eas-cli",
4587
4822
  "pluginType": "core",
4588
- "state": "preview",
4589
4823
  "strict": true,
4590
- "usage": [
4591
- "deploy [options]",
4592
- "deploy --prod"
4593
- ],
4594
4824
  "enableJsonFlag": false,
4595
4825
  "ContextOptions": {
4596
4826
  "LoggedIn": {
@@ -4633,50 +4863,56 @@
4633
4863
  }
4634
4864
  },
4635
4865
  "contextDefinition": {
4636
- "getDynamicPublicProjectConfigAsync": {},
4637
- "getDynamicPrivateProjectConfigAsync": {},
4638
- "projectDir": {},
4866
+ "projectId": {},
4639
4867
  "loggedIn": {}
4640
4868
  },
4641
4869
  "isESM": false,
4642
4870
  "relativePath": [
4643
4871
  "build",
4644
4872
  "commands",
4645
- "deploy",
4646
- "index.js"
4873
+ "env",
4874
+ "push.js"
4647
4875
  ]
4648
4876
  },
4649
- "env:create": {
4877
+ "env:update": {
4650
4878
  "aliases": [],
4651
4879
  "args": {
4652
4880
  "environment": {
4653
- "description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
4881
+ "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
4654
4882
  "name": "environment",
4655
4883
  "required": false
4656
4884
  }
4657
4885
  },
4658
- "description": "create an environment variable for the current project or account",
4886
+ "description": "update an environment variable on the current project or account",
4659
4887
  "flags": {
4888
+ "variable-name": {
4889
+ "description": "Current name of the variable",
4890
+ "name": "variable-name",
4891
+ "hasDynamicHelp": false,
4892
+ "multiple": false,
4893
+ "type": "option"
4894
+ },
4895
+ "variable-environment": {
4896
+ "description": "Current environment of the variable to update",
4897
+ "name": "variable-environment",
4898
+ "hasDynamicHelp": false,
4899
+ "multiple": false,
4900
+ "type": "option"
4901
+ },
4660
4902
  "name": {
4661
- "description": "Name of the variable",
4903
+ "description": "New name of the variable",
4662
4904
  "name": "name",
4663
4905
  "hasDynamicHelp": false,
4664
4906
  "multiple": false,
4665
4907
  "type": "option"
4666
4908
  },
4667
4909
  "value": {
4668
- "description": "Text value or the variable",
4910
+ "description": "New value or the variable",
4669
4911
  "name": "value",
4670
4912
  "hasDynamicHelp": false,
4671
4913
  "multiple": false,
4672
4914
  "type": "option"
4673
4915
  },
4674
- "force": {
4675
- "description": "Overwrite existing variable",
4676
- "name": "force",
4677
- "allowNo": false,
4678
- "type": "boolean"
4679
- },
4680
4916
  "type": {
4681
4917
  "description": "The type of variable",
4682
4918
  "name": "type",
@@ -4729,7 +4965,7 @@
4729
4965
  },
4730
4966
  "hasDynamicHelp": false,
4731
4967
  "hiddenAliases": [],
4732
- "id": "env:create",
4968
+ "id": "env:update",
4733
4969
  "pluginAlias": "eas-cli",
4734
4970
  "pluginName": "eas-cli",
4735
4971
  "pluginType": "core",
@@ -4785,57 +5021,17 @@
4785
5021
  "build",
4786
5022
  "commands",
4787
5023
  "env",
4788
- "create.js"
5024
+ "update.js"
4789
5025
  ]
4790
5026
  },
4791
- "env:delete": {
5027
+ "device:create": {
4792
5028
  "aliases": [],
4793
- "args": {
4794
- "environment": {
4795
- "description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
4796
- "name": "environment",
4797
- "required": false
4798
- }
4799
- },
4800
- "description": "delete an environment variable for the current project or account",
4801
- "flags": {
4802
- "variable-name": {
4803
- "description": "Name of the variable to delete",
4804
- "name": "variable-name",
4805
- "hasDynamicHelp": false,
4806
- "multiple": false,
4807
- "type": "option"
4808
- },
4809
- "variable-environment": {
4810
- "description": "Current environment of the variable to delete",
4811
- "name": "variable-environment",
4812
- "hasDynamicHelp": false,
4813
- "multiple": false,
4814
- "type": "option"
4815
- },
4816
- "scope": {
4817
- "description": "Scope for the variable",
4818
- "name": "scope",
4819
- "default": "project",
4820
- "hasDynamicHelp": false,
4821
- "multiple": false,
4822
- "options": [
4823
- "project",
4824
- "account"
4825
- ],
4826
- "type": "option"
4827
- },
4828
- "non-interactive": {
4829
- "description": "Run the command in non-interactive mode.",
4830
- "name": "non-interactive",
4831
- "noCacheDefault": true,
4832
- "allowNo": false,
4833
- "type": "boolean"
4834
- }
4835
- },
5029
+ "args": {},
5030
+ "description": "register new Apple Devices to use for internal distribution",
5031
+ "flags": {},
4836
5032
  "hasDynamicHelp": false,
4837
5033
  "hiddenAliases": [],
4838
- "id": "env:delete",
5034
+ "id": "device:create",
4839
5035
  "pluginAlias": "eas-cli",
4840
5036
  "pluginName": "eas-cli",
4841
5037
  "pluginType": "core",
@@ -4882,33 +5078,42 @@
4882
5078
  }
4883
5079
  },
4884
5080
  "contextDefinition": {
4885
- "projectId": {},
4886
- "loggedIn": {}
5081
+ "loggedIn": {},
5082
+ "optionalPrivateProjectConfig": {}
4887
5083
  },
4888
5084
  "isESM": false,
4889
5085
  "relativePath": [
4890
5086
  "build",
4891
5087
  "commands",
4892
- "env",
4893
- "delete.js"
5088
+ "device",
5089
+ "create.js"
4894
5090
  ]
4895
5091
  },
4896
- "env:exec": {
5092
+ "device:delete": {
4897
5093
  "aliases": [],
4898
- "args": {
4899
- "environment": {
4900
- "description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
4901
- "name": "environment",
4902
- "required": true
4903
- },
4904
- "bash_command": {
4905
- "description": "bash command to execute with the environment variables from the environment",
4906
- "name": "bash_command",
4907
- "required": true
4908
- }
4909
- },
4910
- "description": "execute a command with environment variables from the selected environment",
5094
+ "args": {},
5095
+ "description": "remove a registered device from your account",
4911
5096
  "flags": {
5097
+ "apple-team-id": {
5098
+ "description": "The Apple team ID on which to find the device",
5099
+ "name": "apple-team-id",
5100
+ "hasDynamicHelp": false,
5101
+ "multiple": false,
5102
+ "type": "option"
5103
+ },
5104
+ "udid": {
5105
+ "description": "The Apple device ID to disable",
5106
+ "name": "udid",
5107
+ "hasDynamicHelp": false,
5108
+ "multiple": false,
5109
+ "type": "option"
5110
+ },
5111
+ "json": {
5112
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5113
+ "name": "json",
5114
+ "allowNo": false,
5115
+ "type": "boolean"
5116
+ },
4912
5117
  "non-interactive": {
4913
5118
  "description": "Run the command in non-interactive mode.",
4914
5119
  "name": "non-interactive",
@@ -4919,7 +5124,7 @@
4919
5124
  },
4920
5125
  "hasDynamicHelp": false,
4921
5126
  "hiddenAliases": [],
4922
- "id": "env:exec",
5127
+ "id": "device:delete",
4923
5128
  "pluginAlias": "eas-cli",
4924
5129
  "pluginName": "eas-cli",
4925
5130
  "pluginType": "core",
@@ -4973,58 +5178,40 @@
4973
5178
  "relativePath": [
4974
5179
  "build",
4975
5180
  "commands",
4976
- "env",
4977
- "exec.js"
5181
+ "device",
5182
+ "delete.js"
4978
5183
  ]
4979
5184
  },
4980
- "env:get": {
5185
+ "device:list": {
4981
5186
  "aliases": [],
4982
- "args": {
4983
- "environment": {
4984
- "description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
4985
- "name": "environment",
4986
- "required": false
4987
- }
4988
- },
4989
- "description": "view an environment variable for the current project or account",
5187
+ "args": {},
5188
+ "description": "list all registered devices for your account",
4990
5189
  "flags": {
4991
- "variable-name": {
4992
- "description": "Name of the variable",
4993
- "name": "variable-name",
5190
+ "apple-team-id": {
5191
+ "name": "apple-team-id",
4994
5192
  "hasDynamicHelp": false,
4995
5193
  "multiple": false,
4996
5194
  "type": "option"
4997
5195
  },
4998
- "variable-environment": {
4999
- "description": "Current environment of the variable",
5000
- "name": "variable-environment",
5196
+ "offset": {
5197
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
5198
+ "name": "offset",
5001
5199
  "hasDynamicHelp": false,
5002
5200
  "multiple": false,
5003
5201
  "type": "option"
5004
5202
  },
5005
- "format": {
5006
- "description": "Output format",
5007
- "name": "format",
5008
- "default": "short",
5203
+ "limit": {
5204
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
5205
+ "name": "limit",
5009
5206
  "hasDynamicHelp": false,
5010
5207
  "multiple": false,
5011
- "options": [
5012
- "long",
5013
- "short"
5014
- ],
5015
5208
  "type": "option"
5016
5209
  },
5017
- "scope": {
5018
- "description": "Scope for the variable",
5019
- "name": "scope",
5020
- "default": "project",
5021
- "hasDynamicHelp": false,
5022
- "multiple": false,
5023
- "options": [
5024
- "project",
5025
- "account"
5026
- ],
5027
- "type": "option"
5210
+ "json": {
5211
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5212
+ "name": "json",
5213
+ "allowNo": false,
5214
+ "type": "boolean"
5028
5215
  },
5029
5216
  "non-interactive": {
5030
5217
  "description": "Run the command in non-interactive mode.",
@@ -5036,7 +5223,7 @@
5036
5223
  },
5037
5224
  "hasDynamicHelp": false,
5038
5225
  "hiddenAliases": [],
5039
- "id": "env:get",
5226
+ "id": "device:list",
5040
5227
  "pluginAlias": "eas-cli",
5041
5228
  "pluginName": "eas-cli",
5042
5229
  "pluginType": "core",
@@ -5090,68 +5277,53 @@
5090
5277
  "relativePath": [
5091
5278
  "build",
5092
5279
  "commands",
5093
- "env",
5094
- "get.js"
5280
+ "device",
5281
+ "list.js"
5095
5282
  ]
5096
5283
  },
5097
- "env:list": {
5284
+ "device:rename": {
5098
5285
  "aliases": [],
5099
- "args": {
5100
- "environment": {
5101
- "description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
5102
- "name": "environment",
5103
- "required": false
5104
- }
5105
- },
5106
- "description": "list environment variables for the current project or account",
5286
+ "args": {},
5287
+ "description": "rename a registered device",
5107
5288
  "flags": {
5108
- "include-sensitive": {
5109
- "description": "Display sensitive values in the output",
5110
- "name": "include-sensitive",
5111
- "allowNo": false,
5112
- "type": "boolean"
5113
- },
5114
- "include-file-content": {
5115
- "description": "Display files content in the output",
5116
- "name": "include-file-content",
5117
- "allowNo": false,
5118
- "type": "boolean"
5119
- },
5120
- "environment": {
5121
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5122
- "name": "environment",
5289
+ "apple-team-id": {
5290
+ "description": "The Apple team ID on which to find the device",
5291
+ "name": "apple-team-id",
5123
5292
  "hasDynamicHelp": false,
5124
- "multiple": true,
5293
+ "multiple": false,
5125
5294
  "type": "option"
5126
5295
  },
5127
- "format": {
5128
- "description": "Output format",
5129
- "name": "format",
5130
- "default": "short",
5296
+ "udid": {
5297
+ "description": "The Apple device ID to rename",
5298
+ "name": "udid",
5131
5299
  "hasDynamicHelp": false,
5132
5300
  "multiple": false,
5133
- "options": [
5134
- "long",
5135
- "short"
5136
- ],
5137
5301
  "type": "option"
5138
5302
  },
5139
- "scope": {
5140
- "description": "Scope for the variable",
5141
- "name": "scope",
5142
- "default": "project",
5303
+ "name": {
5304
+ "description": "The new name for the device",
5305
+ "name": "name",
5143
5306
  "hasDynamicHelp": false,
5144
5307
  "multiple": false,
5145
- "options": [
5146
- "project",
5147
- "account"
5148
- ],
5149
5308
  "type": "option"
5309
+ },
5310
+ "json": {
5311
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5312
+ "name": "json",
5313
+ "allowNo": false,
5314
+ "type": "boolean"
5315
+ },
5316
+ "non-interactive": {
5317
+ "description": "Run the command in non-interactive mode.",
5318
+ "name": "non-interactive",
5319
+ "noCacheDefault": true,
5320
+ "allowNo": false,
5321
+ "type": "boolean"
5150
5322
  }
5151
5323
  },
5152
5324
  "hasDynamicHelp": false,
5153
5325
  "hiddenAliases": [],
5154
- "id": "env:list",
5326
+ "id": "device:rename",
5155
5327
  "pluginAlias": "eas-cli",
5156
5328
  "pluginName": "eas-cli",
5157
5329
  "pluginType": "core",
@@ -5205,47 +5377,22 @@
5205
5377
  "relativePath": [
5206
5378
  "build",
5207
5379
  "commands",
5208
- "env",
5209
- "list.js"
5380
+ "device",
5381
+ "rename.js"
5210
5382
  ]
5211
5383
  },
5212
- "env:pull": {
5384
+ "device:view": {
5213
5385
  "aliases": [],
5214
5386
  "args": {
5215
- "environment": {
5216
- "description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
5217
- "name": "environment",
5218
- "required": false
5219
- }
5220
- },
5221
- "description": "pull environment variables for the selected environment to .env file",
5222
- "flags": {
5223
- "non-interactive": {
5224
- "description": "Run the command in non-interactive mode.",
5225
- "name": "non-interactive",
5226
- "noCacheDefault": true,
5227
- "allowNo": false,
5228
- "type": "boolean"
5229
- },
5230
- "environment": {
5231
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5232
- "name": "environment",
5233
- "hasDynamicHelp": false,
5234
- "multiple": false,
5235
- "type": "option"
5236
- },
5237
- "path": {
5238
- "description": "Path to the result `.env` file",
5239
- "name": "path",
5240
- "default": ".env.local",
5241
- "hasDynamicHelp": false,
5242
- "multiple": false,
5243
- "type": "option"
5387
+ "UDID": {
5388
+ "name": "UDID"
5244
5389
  }
5245
5390
  },
5391
+ "description": "view a device for your project",
5392
+ "flags": {},
5246
5393
  "hasDynamicHelp": false,
5247
5394
  "hiddenAliases": [],
5248
- "id": "env:pull",
5395
+ "id": "device:view",
5249
5396
  "pluginAlias": "eas-cli",
5250
5397
  "pluginName": "eas-cli",
5251
5398
  "pluginType": "core",
@@ -5293,56 +5440,48 @@
5293
5440
  },
5294
5441
  "contextDefinition": {
5295
5442
  "projectId": {},
5296
- "loggedIn": {},
5297
- "projectDir": {}
5443
+ "loggedIn": {}
5298
5444
  },
5299
5445
  "isESM": false,
5300
5446
  "relativePath": [
5301
5447
  "build",
5302
5448
  "commands",
5303
- "env",
5304
- "pull.js"
5449
+ "device",
5450
+ "view.js"
5305
5451
  ]
5306
5452
  },
5307
- "env:push": {
5308
- "aliases": [],
5453
+ "deploy:delete": {
5454
+ "aliases": [
5455
+ "worker:delete"
5456
+ ],
5309
5457
  "args": {
5310
- "environment": {
5311
- "description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
5312
- "name": "environment",
5313
- "required": false
5458
+ "DEPLOYMENT_ID": {
5459
+ "name": "DEPLOYMENT_ID"
5314
5460
  }
5315
5461
  },
5316
- "description": "push environment variables from .env file to the selected environment",
5462
+ "description": "Delete a deployment.",
5317
5463
  "flags": {
5318
- "environment": {
5319
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5320
- "name": "environment",
5321
- "hasDynamicHelp": false,
5322
- "multiple": true,
5323
- "type": "option"
5324
- },
5325
- "path": {
5326
- "description": "Path to the input `.env` file",
5327
- "name": "path",
5328
- "default": ".env.local",
5329
- "hasDynamicHelp": false,
5330
- "multiple": false,
5331
- "type": "option"
5464
+ "json": {
5465
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5466
+ "name": "json",
5467
+ "allowNo": false,
5468
+ "type": "boolean"
5332
5469
  },
5333
- "force": {
5334
- "description": "Skip confirmation and automatically override existing variables",
5335
- "name": "force",
5470
+ "non-interactive": {
5471
+ "description": "Run the command in non-interactive mode.",
5472
+ "name": "non-interactive",
5473
+ "noCacheDefault": true,
5336
5474
  "allowNo": false,
5337
5475
  "type": "boolean"
5338
5476
  }
5339
5477
  },
5340
5478
  "hasDynamicHelp": false,
5341
5479
  "hiddenAliases": [],
5342
- "id": "env:push",
5480
+ "id": "deploy:delete",
5343
5481
  "pluginAlias": "eas-cli",
5344
5482
  "pluginName": "eas-cli",
5345
5483
  "pluginType": "core",
5484
+ "state": "preview",
5346
5485
  "strict": true,
5347
5486
  "enableJsonFlag": false,
5348
5487
  "ContextOptions": {
@@ -5386,98 +5525,85 @@
5386
5525
  }
5387
5526
  },
5388
5527
  "contextDefinition": {
5389
- "projectId": {},
5528
+ "getDynamicPublicProjectConfigAsync": {},
5529
+ "getDynamicPrivateProjectConfigAsync": {},
5530
+ "projectDir": {},
5390
5531
  "loggedIn": {}
5391
5532
  },
5392
5533
  "isESM": false,
5393
5534
  "relativePath": [
5394
5535
  "build",
5395
5536
  "commands",
5396
- "env",
5397
- "push.js"
5398
- ]
5399
- },
5400
- "env:update": {
5401
- "aliases": [],
5402
- "args": {
5403
- "environment": {
5404
- "description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
5405
- "name": "environment",
5406
- "required": false
5407
- }
5408
- },
5409
- "description": "update an environment variable on the current project or account",
5410
- "flags": {
5411
- "variable-name": {
5412
- "description": "Current name of the variable",
5413
- "name": "variable-name",
5414
- "hasDynamicHelp": false,
5415
- "multiple": false,
5416
- "type": "option"
5417
- },
5418
- "variable-environment": {
5419
- "description": "Current environment of the variable to update",
5420
- "name": "variable-environment",
5421
- "hasDynamicHelp": false,
5422
- "multiple": false,
5423
- "type": "option"
5537
+ "deploy",
5538
+ "delete.js"
5539
+ ]
5540
+ },
5541
+ "deploy": {
5542
+ "aliases": [
5543
+ "worker:deploy"
5544
+ ],
5545
+ "args": {},
5546
+ "description": "deploy your Expo Router web build and API Routes",
5547
+ "flags": {
5548
+ "prod": {
5549
+ "aliases": [
5550
+ "production"
5551
+ ],
5552
+ "description": "Create a new production deployment.",
5553
+ "name": "prod",
5554
+ "allowNo": false,
5555
+ "type": "boolean"
5424
5556
  },
5425
- "name": {
5426
- "description": "New name of the variable",
5427
- "name": "name",
5557
+ "alias": {
5558
+ "description": "Custom alias to assign to the new deployment.",
5559
+ "name": "alias",
5428
5560
  "hasDynamicHelp": false,
5561
+ "helpValue": "name",
5429
5562
  "multiple": false,
5430
5563
  "type": "option"
5431
5564
  },
5432
- "value": {
5433
- "description": "New value or the variable",
5434
- "name": "value",
5565
+ "id": {
5566
+ "description": "Custom unique identifier for the new deployment.",
5567
+ "name": "id",
5435
5568
  "hasDynamicHelp": false,
5569
+ "helpValue": "xyz123",
5436
5570
  "multiple": false,
5437
5571
  "type": "option"
5438
5572
  },
5439
- "type": {
5440
- "description": "The type of variable",
5441
- "name": "type",
5573
+ "export-dir": {
5574
+ "description": "Directory where the Expo project was exported.",
5575
+ "name": "export-dir",
5576
+ "default": "dist",
5442
5577
  "hasDynamicHelp": false,
5578
+ "helpValue": "dir",
5443
5579
  "multiple": false,
5444
- "options": [
5445
- "string",
5446
- "file"
5447
- ],
5448
5580
  "type": "option"
5449
5581
  },
5450
- "visibility": {
5451
- "description": "Visibility of the variable",
5452
- "name": "visibility",
5453
- "hasDynamicHelp": false,
5454
- "multiple": false,
5455
- "options": [
5456
- "plaintext",
5457
- "sensitive",
5458
- "secret"
5459
- ],
5460
- "type": "option"
5582
+ "dry-run": {
5583
+ "description": "Outputs a tarball of the new deployment instead of uploading it.",
5584
+ "name": "dry-run",
5585
+ "allowNo": false,
5586
+ "type": "boolean"
5461
5587
  },
5462
- "scope": {
5463
- "description": "Scope for the variable",
5464
- "name": "scope",
5465
- "default": "project",
5466
- "hasDynamicHelp": false,
5467
- "multiple": false,
5468
- "options": [
5469
- "project",
5470
- "account"
5471
- ],
5472
- "type": "option"
5588
+ "source-maps": {
5589
+ "description": "Include source maps in the deployment.",
5590
+ "name": "source-maps",
5591
+ "allowNo": true,
5592
+ "type": "boolean"
5473
5593
  },
5474
5594
  "environment": {
5475
5595
  "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
5476
5596
  "name": "environment",
5477
5597
  "hasDynamicHelp": false,
5478
- "multiple": true,
5598
+ "multiple": false,
5479
5599
  "type": "option"
5480
5600
  },
5601
+ "json": {
5602
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
5603
+ "name": "json",
5604
+ "allowNo": false,
5605
+ "type": "boolean"
5606
+ },
5481
5607
  "non-interactive": {
5482
5608
  "description": "Run the command in non-interactive mode.",
5483
5609
  "name": "non-interactive",
@@ -5488,11 +5614,16 @@
5488
5614
  },
5489
5615
  "hasDynamicHelp": false,
5490
5616
  "hiddenAliases": [],
5491
- "id": "env:update",
5617
+ "id": "deploy",
5492
5618
  "pluginAlias": "eas-cli",
5493
5619
  "pluginName": "eas-cli",
5494
5620
  "pluginType": "core",
5621
+ "state": "preview",
5495
5622
  "strict": true,
5623
+ "usage": [
5624
+ "deploy [options]",
5625
+ "deploy --prod"
5626
+ ],
5496
5627
  "enableJsonFlag": false,
5497
5628
  "ContextOptions": {
5498
5629
  "LoggedIn": {
@@ -5535,16 +5666,17 @@
5535
5666
  }
5536
5667
  },
5537
5668
  "contextDefinition": {
5538
- "projectId": {},
5539
- "analytics": {},
5669
+ "getDynamicPublicProjectConfigAsync": {},
5670
+ "getDynamicPrivateProjectConfigAsync": {},
5671
+ "projectDir": {},
5540
5672
  "loggedIn": {}
5541
5673
  },
5542
5674
  "isESM": false,
5543
5675
  "relativePath": [
5544
5676
  "build",
5545
5677
  "commands",
5546
- "env",
5547
- "update.js"
5678
+ "deploy",
5679
+ "index.js"
5548
5680
  ]
5549
5681
  },
5550
5682
  "fingerprint:compare": {
@@ -6226,6 +6358,9 @@
6226
6358
  "projectId": {},
6227
6359
  "loggedIn": {}
6228
6360
  },
6361
+ "loggedInOnlyContextDefinition": {
6362
+ "loggedIn": {}
6363
+ },
6229
6364
  "isESM": false,
6230
6365
  "relativePath": [
6231
6366
  "build",
@@ -6386,6 +6521,9 @@
6386
6521
  "projectId": {},
6387
6522
  "loggedIn": {}
6388
6523
  },
6524
+ "loggedInOnlyContextDefinition": {
6525
+ "loggedIn": {}
6526
+ },
6389
6527
  "isESM": false,
6390
6528
  "relativePath": [
6391
6529
  "build",
@@ -6515,6 +6653,9 @@
6515
6653
  "projectId": {},
6516
6654
  "loggedIn": {}
6517
6655
  },
6656
+ "loggedInOnlyContextDefinition": {
6657
+ "loggedIn": {}
6658
+ },
6518
6659
  "isESM": false,
6519
6660
  "relativePath": [
6520
6661
  "build",
@@ -7767,6 +7908,132 @@
7767
7908
  "index.js"
7768
7909
  ]
7769
7910
  },
7911
+ "update:insights": {
7912
+ "aliases": [],
7913
+ "args": {
7914
+ "groupId": {
7915
+ "description": "The ID of an update group.",
7916
+ "name": "groupId",
7917
+ "required": true
7918
+ }
7919
+ },
7920
+ "description": "display launch, crash, unique-user, and size insights for an update group",
7921
+ "flags": {
7922
+ "platform": {
7923
+ "description": "Filter to a single platform.",
7924
+ "name": "platform",
7925
+ "hasDynamicHelp": false,
7926
+ "multiple": false,
7927
+ "options": [
7928
+ "ios",
7929
+ "android"
7930
+ ],
7931
+ "type": "option"
7932
+ },
7933
+ "days": {
7934
+ "description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
7935
+ "exclusive": [
7936
+ "start",
7937
+ "end"
7938
+ ],
7939
+ "name": "days",
7940
+ "hasDynamicHelp": false,
7941
+ "multiple": false,
7942
+ "type": "option"
7943
+ },
7944
+ "start": {
7945
+ "description": "Start of insights time range (ISO date).",
7946
+ "exclusive": [
7947
+ "days"
7948
+ ],
7949
+ "name": "start",
7950
+ "hasDynamicHelp": false,
7951
+ "multiple": false,
7952
+ "type": "option"
7953
+ },
7954
+ "end": {
7955
+ "description": "End of insights time range (ISO date).",
7956
+ "exclusive": [
7957
+ "days"
7958
+ ],
7959
+ "name": "end",
7960
+ "hasDynamicHelp": false,
7961
+ "multiple": false,
7962
+ "type": "option"
7963
+ },
7964
+ "json": {
7965
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
7966
+ "name": "json",
7967
+ "allowNo": false,
7968
+ "type": "boolean"
7969
+ },
7970
+ "non-interactive": {
7971
+ "description": "Run the command in non-interactive mode.",
7972
+ "name": "non-interactive",
7973
+ "noCacheDefault": true,
7974
+ "allowNo": false,
7975
+ "type": "boolean"
7976
+ }
7977
+ },
7978
+ "hasDynamicHelp": false,
7979
+ "hiddenAliases": [],
7980
+ "id": "update:insights",
7981
+ "pluginAlias": "eas-cli",
7982
+ "pluginName": "eas-cli",
7983
+ "pluginType": "core",
7984
+ "strict": true,
7985
+ "enableJsonFlag": false,
7986
+ "ContextOptions": {
7987
+ "LoggedIn": {
7988
+ "loggedIn": {}
7989
+ },
7990
+ "MaybeLoggedIn": {
7991
+ "maybeLoggedIn": {}
7992
+ },
7993
+ "DynamicLoggedIn": {
7994
+ "getDynamicLoggedInAsync": {}
7995
+ },
7996
+ "SessionManagment": {
7997
+ "sessionManager": {}
7998
+ },
7999
+ "OptionalProjectConfig": {
8000
+ "optionalPrivateProjectConfig": {}
8001
+ },
8002
+ "ProjectDir": {
8003
+ "projectDir": {}
8004
+ },
8005
+ "DynamicProjectConfig": {
8006
+ "getDynamicPublicProjectConfigAsync": {},
8007
+ "getDynamicPrivateProjectConfigAsync": {}
8008
+ },
8009
+ "ProjectConfig": {
8010
+ "loggedIn": {},
8011
+ "privateProjectConfig": {}
8012
+ },
8013
+ "Analytics": {
8014
+ "analytics": {}
8015
+ },
8016
+ "Vcs": {
8017
+ "vcsClient": {}
8018
+ },
8019
+ "ServerSideEnvironmentVariables": {
8020
+ "getServerSideEnvironmentVariablesAsync": {}
8021
+ },
8022
+ "ProjectId": {
8023
+ "projectId": {}
8024
+ }
8025
+ },
8026
+ "contextDefinition": {
8027
+ "loggedIn": {}
8028
+ },
8029
+ "isESM": false,
8030
+ "relativePath": [
8031
+ "build",
8032
+ "commands",
8033
+ "update",
8034
+ "insights.js"
8035
+ ]
8036
+ },
7770
8037
  "update:list": {
7771
8038
  "aliases": [],
7772
8039
  "args": {},
@@ -8417,6 +8684,43 @@
8417
8684
  },
8418
8685
  "description": "update group details",
8419
8686
  "flags": {
8687
+ "insights": {
8688
+ "description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
8689
+ "name": "insights",
8690
+ "allowNo": false,
8691
+ "type": "boolean"
8692
+ },
8693
+ "days": {
8694
+ "description": "Show insights from the last N days (default 7). Only used with --insights.",
8695
+ "exclusive": [
8696
+ "start",
8697
+ "end"
8698
+ ],
8699
+ "name": "days",
8700
+ "hasDynamicHelp": false,
8701
+ "multiple": false,
8702
+ "type": "option"
8703
+ },
8704
+ "start": {
8705
+ "description": "Start of insights time range (ISO date). Only used with --insights.",
8706
+ "exclusive": [
8707
+ "days"
8708
+ ],
8709
+ "name": "start",
8710
+ "hasDynamicHelp": false,
8711
+ "multiple": false,
8712
+ "type": "option"
8713
+ },
8714
+ "end": {
8715
+ "description": "End of insights time range (ISO date). Only used with --insights.",
8716
+ "exclusive": [
8717
+ "days"
8718
+ ],
8719
+ "name": "end",
8720
+ "hasDynamicHelp": false,
8721
+ "multiple": false,
8722
+ "type": "option"
8723
+ },
8420
8724
  "json": {
8421
8725
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
8422
8726
  "name": "json",
@@ -10201,5 +10505,5 @@
10201
10505
  ]
10202
10506
  }
10203
10507
  },
10204
- "version": "18.6.0"
10508
+ "version": "18.8.0"
10205
10509
  }