eas-cli 20.1.0 → 20.3.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 (46) hide show
  1. package/README.md +223 -120
  2. package/build/commandUtils/posthog.d.ts +4 -0
  3. package/build/commandUtils/posthog.js +23 -0
  4. package/build/commands/account/audit.d.ts +17 -0
  5. package/build/commands/account/audit.js +112 -0
  6. package/build/commands/integrations/posthog/connect.d.ts +27 -0
  7. package/build/commands/integrations/posthog/connect.js +432 -0
  8. package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
  9. package/build/commands/integrations/posthog/dashboard.js +66 -0
  10. package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
  11. package/build/commands/integrations/posthog/disconnect.js +80 -0
  12. package/build/commands/simulator/start.d.ts +1 -0
  13. package/build/commands/simulator/start.js +5 -0
  14. package/build/commands/update/rollback.d.ts +11 -0
  15. package/build/commands/update/rollback.js +117 -14
  16. package/build/commands/update/view.d.ts +7 -0
  17. package/build/commands/update/view.js +30 -3
  18. package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +20 -0
  19. package/build/credentials/ios/actions/AscApiKeyUtils.js +64 -0
  20. package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +2 -4
  21. package/build/credentials/ios/actions/CreateProvisioningProfile.js +2 -4
  22. package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +3 -20
  23. package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +10 -0
  24. package/build/credentials/ios/actions/SetUpProvisioningProfile.js +39 -5
  25. package/build/credentials/ios/appstore/resolveCredentials.d.ts +1 -0
  26. package/build/credentials/ios/appstore/resolveCredentials.js +1 -0
  27. package/build/graphql/generated.d.ts +611 -30
  28. package/build/graphql/generated.js +29 -5
  29. package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
  30. package/build/graphql/mutations/PostHogMutation.js +55 -0
  31. package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
  32. package/build/graphql/queries/AuditLogQuery.js +57 -0
  33. package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
  34. package/build/graphql/queries/PostHogQuery.d.ts +6 -0
  35. package/build/graphql/queries/PostHogQuery.js +49 -0
  36. package/build/graphql/queries/UpdateQuery.d.ts +2 -1
  37. package/build/graphql/queries/UpdateQuery.js +52 -0
  38. package/build/graphql/types/AuditLog.d.ts +1 -0
  39. package/build/graphql/types/AuditLog.js +18 -0
  40. package/build/graphql/types/PostHogConnection.d.ts +7 -0
  41. package/build/graphql/types/PostHogConnection.js +30 -0
  42. package/build/simulator/utils.js +28 -5
  43. package/build/user/SessionManager.d.ts +1 -22
  44. package/build/user/SessionManager.js +7 -89
  45. package/oclif.manifest.json +920 -488
  46. package/package.json +5 -2
@@ -676,6 +676,103 @@
676
676
  "upload.js"
677
677
  ]
678
678
  },
679
+ "account:audit": {
680
+ "aliases": [],
681
+ "args": {
682
+ "ACCOUNT_NAME": {
683
+ "description": "Account name to view audit logs for. If not provided, the account will be selected interactively (or defaults to the only account if there is just one)",
684
+ "name": "ACCOUNT_NAME"
685
+ }
686
+ },
687
+ "description": "view the audit logs for an account",
688
+ "flags": {
689
+ "limit": {
690
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
691
+ "name": "limit",
692
+ "hasDynamicHelp": false,
693
+ "multiple": false,
694
+ "type": "option"
695
+ },
696
+ "after": {
697
+ "description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
698
+ "name": "after",
699
+ "hasDynamicHelp": false,
700
+ "multiple": false,
701
+ "type": "option"
702
+ },
703
+ "json": {
704
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
705
+ "name": "json",
706
+ "allowNo": false,
707
+ "type": "boolean"
708
+ },
709
+ "non-interactive": {
710
+ "description": "Run the command in non-interactive mode.",
711
+ "name": "non-interactive",
712
+ "noCacheDefault": true,
713
+ "allowNo": false,
714
+ "type": "boolean"
715
+ }
716
+ },
717
+ "hasDynamicHelp": false,
718
+ "hiddenAliases": [],
719
+ "id": "account:audit",
720
+ "pluginAlias": "eas-cli",
721
+ "pluginName": "eas-cli",
722
+ "pluginType": "core",
723
+ "strict": true,
724
+ "enableJsonFlag": false,
725
+ "ContextOptions": {
726
+ "LoggedIn": {
727
+ "loggedIn": {}
728
+ },
729
+ "MaybeLoggedIn": {
730
+ "maybeLoggedIn": {}
731
+ },
732
+ "DynamicLoggedIn": {
733
+ "getDynamicLoggedInAsync": {}
734
+ },
735
+ "SessionManagment": {
736
+ "sessionManager": {}
737
+ },
738
+ "OptionalProjectConfig": {
739
+ "optionalPrivateProjectConfig": {}
740
+ },
741
+ "ProjectDir": {
742
+ "projectDir": {}
743
+ },
744
+ "DynamicProjectConfig": {
745
+ "getDynamicPublicProjectConfigAsync": {},
746
+ "getDynamicPrivateProjectConfigAsync": {}
747
+ },
748
+ "ProjectConfig": {
749
+ "loggedIn": {},
750
+ "privateProjectConfig": {}
751
+ },
752
+ "Analytics": {
753
+ "analytics": {}
754
+ },
755
+ "Vcs": {
756
+ "vcsClient": {}
757
+ },
758
+ "ServerSideEnvironmentVariables": {
759
+ "getServerSideEnvironmentVariablesAsync": {}
760
+ },
761
+ "ProjectId": {
762
+ "projectId": {}
763
+ }
764
+ },
765
+ "contextDefinition": {
766
+ "loggedIn": {}
767
+ },
768
+ "isESM": false,
769
+ "relativePath": [
770
+ "build",
771
+ "commands",
772
+ "account",
773
+ "audit.js"
774
+ ]
775
+ },
679
776
  "account:login": {
680
777
  "aliases": [
681
778
  "login"
@@ -4186,38 +4283,17 @@
4186
4283
  "index.js"
4187
4284
  ]
4188
4285
  },
4189
- "deploy:delete": {
4190
- "aliases": [
4191
- "worker:delete"
4192
- ],
4193
- "args": {
4194
- "DEPLOYMENT_ID": {
4195
- "name": "DEPLOYMENT_ID"
4196
- }
4197
- },
4198
- "description": "Delete a deployment.",
4199
- "flags": {
4200
- "json": {
4201
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4202
- "name": "json",
4203
- "allowNo": false,
4204
- "type": "boolean"
4205
- },
4206
- "non-interactive": {
4207
- "description": "Run the command in non-interactive mode.",
4208
- "name": "non-interactive",
4209
- "noCacheDefault": true,
4210
- "allowNo": false,
4211
- "type": "boolean"
4212
- }
4213
- },
4286
+ "device:create": {
4287
+ "aliases": [],
4288
+ "args": {},
4289
+ "description": "register new Apple Devices to use for internal distribution",
4290
+ "flags": {},
4214
4291
  "hasDynamicHelp": false,
4215
4292
  "hiddenAliases": [],
4216
- "id": "deploy:delete",
4293
+ "id": "device:create",
4217
4294
  "pluginAlias": "eas-cli",
4218
4295
  "pluginName": "eas-cli",
4219
4296
  "pluginType": "core",
4220
- "state": "preview",
4221
4297
  "strict": true,
4222
4298
  "enableJsonFlag": false,
4223
4299
  "ContextOptions": {
@@ -4261,75 +4337,32 @@
4261
4337
  }
4262
4338
  },
4263
4339
  "contextDefinition": {
4264
- "getDynamicPublicProjectConfigAsync": {},
4265
- "getDynamicPrivateProjectConfigAsync": {},
4266
- "projectDir": {},
4267
- "loggedIn": {}
4340
+ "loggedIn": {},
4341
+ "optionalPrivateProjectConfig": {}
4268
4342
  },
4269
4343
  "isESM": false,
4270
4344
  "relativePath": [
4271
4345
  "build",
4272
4346
  "commands",
4273
- "deploy",
4274
- "delete.js"
4347
+ "device",
4348
+ "create.js"
4275
4349
  ]
4276
4350
  },
4277
- "deploy": {
4278
- "aliases": [
4279
- "worker:deploy"
4280
- ],
4351
+ "device:delete": {
4352
+ "aliases": [],
4281
4353
  "args": {},
4282
- "description": "deploy your Expo Router web build and API Routes",
4354
+ "description": "remove a registered device from your account",
4283
4355
  "flags": {
4284
- "prod": {
4285
- "aliases": [
4286
- "production"
4287
- ],
4288
- "description": "Create a new production deployment.",
4289
- "name": "prod",
4290
- "allowNo": false,
4291
- "type": "boolean"
4292
- },
4293
- "alias": {
4294
- "description": "Custom alias to assign to the new deployment.",
4295
- "name": "alias",
4296
- "hasDynamicHelp": false,
4297
- "helpValue": "name",
4298
- "multiple": false,
4299
- "type": "option"
4300
- },
4301
- "id": {
4302
- "description": "Custom unique identifier for the new deployment.",
4303
- "name": "id",
4304
- "hasDynamicHelp": false,
4305
- "helpValue": "xyz123",
4306
- "multiple": false,
4307
- "type": "option"
4308
- },
4309
- "export-dir": {
4310
- "description": "Directory where the Expo project was exported.",
4311
- "name": "export-dir",
4312
- "default": "dist",
4356
+ "apple-team-id": {
4357
+ "description": "The Apple team ID on which to find the device",
4358
+ "name": "apple-team-id",
4313
4359
  "hasDynamicHelp": false,
4314
- "helpValue": "dir",
4315
4360
  "multiple": false,
4316
4361
  "type": "option"
4317
4362
  },
4318
- "dry-run": {
4319
- "description": "Outputs a tarball of the new deployment instead of uploading it.",
4320
- "name": "dry-run",
4321
- "allowNo": false,
4322
- "type": "boolean"
4323
- },
4324
- "source-maps": {
4325
- "description": "Include source maps in the deployment.",
4326
- "name": "source-maps",
4327
- "allowNo": true,
4328
- "type": "boolean"
4329
- },
4330
- "environment": {
4331
- "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4332
- "name": "environment",
4363
+ "udid": {
4364
+ "description": "The Apple device ID to disable",
4365
+ "name": "udid",
4333
4366
  "hasDynamicHelp": false,
4334
4367
  "multiple": false,
4335
4368
  "type": "option"
@@ -4350,16 +4383,11 @@
4350
4383
  },
4351
4384
  "hasDynamicHelp": false,
4352
4385
  "hiddenAliases": [],
4353
- "id": "deploy",
4386
+ "id": "device:delete",
4354
4387
  "pluginAlias": "eas-cli",
4355
4388
  "pluginName": "eas-cli",
4356
4389
  "pluginType": "core",
4357
- "state": "preview",
4358
4390
  "strict": true,
4359
- "usage": [
4360
- "deploy [options]",
4361
- "deploy --prod"
4362
- ],
4363
4391
  "enableJsonFlag": false,
4364
4392
  "ContextOptions": {
4365
4393
  "LoggedIn": {
@@ -4402,27 +4430,59 @@
4402
4430
  }
4403
4431
  },
4404
4432
  "contextDefinition": {
4405
- "getDynamicPublicProjectConfigAsync": {},
4406
- "getDynamicPrivateProjectConfigAsync": {},
4407
- "projectDir": {},
4433
+ "projectId": {},
4408
4434
  "loggedIn": {}
4409
4435
  },
4410
4436
  "isESM": false,
4411
4437
  "relativePath": [
4412
4438
  "build",
4413
4439
  "commands",
4414
- "deploy",
4415
- "index.js"
4440
+ "device",
4441
+ "delete.js"
4416
4442
  ]
4417
4443
  },
4418
- "device:create": {
4444
+ "device:list": {
4419
4445
  "aliases": [],
4420
4446
  "args": {},
4421
- "description": "register new Apple Devices to use for internal distribution",
4422
- "flags": {},
4447
+ "description": "list all registered devices for your account",
4448
+ "flags": {
4449
+ "apple-team-id": {
4450
+ "name": "apple-team-id",
4451
+ "hasDynamicHelp": false,
4452
+ "multiple": false,
4453
+ "type": "option"
4454
+ },
4455
+ "offset": {
4456
+ "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
4457
+ "name": "offset",
4458
+ "hasDynamicHelp": false,
4459
+ "multiple": false,
4460
+ "type": "option"
4461
+ },
4462
+ "limit": {
4463
+ "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
4464
+ "name": "limit",
4465
+ "hasDynamicHelp": false,
4466
+ "multiple": false,
4467
+ "type": "option"
4468
+ },
4469
+ "json": {
4470
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4471
+ "name": "json",
4472
+ "allowNo": false,
4473
+ "type": "boolean"
4474
+ },
4475
+ "non-interactive": {
4476
+ "description": "Run the command in non-interactive mode.",
4477
+ "name": "non-interactive",
4478
+ "noCacheDefault": true,
4479
+ "allowNo": false,
4480
+ "type": "boolean"
4481
+ }
4482
+ },
4423
4483
  "hasDynamicHelp": false,
4424
4484
  "hiddenAliases": [],
4425
- "id": "device:create",
4485
+ "id": "device:list",
4426
4486
  "pluginAlias": "eas-cli",
4427
4487
  "pluginName": "eas-cli",
4428
4488
  "pluginType": "core",
@@ -4469,21 +4529,21 @@
4469
4529
  }
4470
4530
  },
4471
4531
  "contextDefinition": {
4472
- "loggedIn": {},
4473
- "optionalPrivateProjectConfig": {}
4532
+ "projectId": {},
4533
+ "loggedIn": {}
4474
4534
  },
4475
4535
  "isESM": false,
4476
4536
  "relativePath": [
4477
4537
  "build",
4478
4538
  "commands",
4479
4539
  "device",
4480
- "create.js"
4540
+ "list.js"
4481
4541
  ]
4482
4542
  },
4483
- "device:delete": {
4543
+ "device:rename": {
4484
4544
  "aliases": [],
4485
4545
  "args": {},
4486
- "description": "remove a registered device from your account",
4546
+ "description": "rename a registered device",
4487
4547
  "flags": {
4488
4548
  "apple-team-id": {
4489
4549
  "description": "The Apple team ID on which to find the device",
@@ -4493,12 +4553,19 @@
4493
4553
  "type": "option"
4494
4554
  },
4495
4555
  "udid": {
4496
- "description": "The Apple device ID to disable",
4556
+ "description": "The Apple device ID to rename",
4497
4557
  "name": "udid",
4498
4558
  "hasDynamicHelp": false,
4499
4559
  "multiple": false,
4500
4560
  "type": "option"
4501
4561
  },
4562
+ "name": {
4563
+ "description": "The new name for the device",
4564
+ "name": "name",
4565
+ "hasDynamicHelp": false,
4566
+ "multiple": false,
4567
+ "type": "option"
4568
+ },
4502
4569
  "json": {
4503
4570
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4504
4571
  "name": "json",
@@ -4515,7 +4582,7 @@
4515
4582
  },
4516
4583
  "hasDynamicHelp": false,
4517
4584
  "hiddenAliases": [],
4518
- "id": "device:delete",
4585
+ "id": "device:rename",
4519
4586
  "pluginAlias": "eas-cli",
4520
4587
  "pluginName": "eas-cli",
4521
4588
  "pluginType": "core",
@@ -4570,51 +4637,21 @@
4570
4637
  "build",
4571
4638
  "commands",
4572
4639
  "device",
4573
- "delete.js"
4640
+ "rename.js"
4574
4641
  ]
4575
4642
  },
4576
- "device:list": {
4643
+ "device:view": {
4577
4644
  "aliases": [],
4578
- "args": {},
4579
- "description": "list all registered devices for your account",
4580
- "flags": {
4581
- "apple-team-id": {
4582
- "name": "apple-team-id",
4583
- "hasDynamicHelp": false,
4584
- "multiple": false,
4585
- "type": "option"
4586
- },
4587
- "offset": {
4588
- "description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
4589
- "name": "offset",
4590
- "hasDynamicHelp": false,
4591
- "multiple": false,
4592
- "type": "option"
4593
- },
4594
- "limit": {
4595
- "description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
4596
- "name": "limit",
4597
- "hasDynamicHelp": false,
4598
- "multiple": false,
4599
- "type": "option"
4600
- },
4601
- "json": {
4602
- "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4603
- "name": "json",
4604
- "allowNo": false,
4605
- "type": "boolean"
4606
- },
4607
- "non-interactive": {
4608
- "description": "Run the command in non-interactive mode.",
4609
- "name": "non-interactive",
4610
- "noCacheDefault": true,
4611
- "allowNo": false,
4612
- "type": "boolean"
4645
+ "args": {
4646
+ "UDID": {
4647
+ "name": "UDID"
4613
4648
  }
4614
4649
  },
4650
+ "description": "view a device for your project",
4651
+ "flags": {},
4615
4652
  "hasDynamicHelp": false,
4616
4653
  "hiddenAliases": [],
4617
- "id": "device:list",
4654
+ "id": "device:view",
4618
4655
  "pluginAlias": "eas-cli",
4619
4656
  "pluginName": "eas-cli",
4620
4657
  "pluginType": "core",
@@ -4669,35 +4706,20 @@
4669
4706
  "build",
4670
4707
  "commands",
4671
4708
  "device",
4672
- "list.js"
4709
+ "view.js"
4673
4710
  ]
4674
4711
  },
4675
- "device:rename": {
4676
- "aliases": [],
4677
- "args": {},
4678
- "description": "rename a registered device",
4712
+ "deploy:delete": {
4713
+ "aliases": [
4714
+ "worker:delete"
4715
+ ],
4716
+ "args": {
4717
+ "DEPLOYMENT_ID": {
4718
+ "name": "DEPLOYMENT_ID"
4719
+ }
4720
+ },
4721
+ "description": "Delete a deployment.",
4679
4722
  "flags": {
4680
- "apple-team-id": {
4681
- "description": "The Apple team ID on which to find the device",
4682
- "name": "apple-team-id",
4683
- "hasDynamicHelp": false,
4684
- "multiple": false,
4685
- "type": "option"
4686
- },
4687
- "udid": {
4688
- "description": "The Apple device ID to rename",
4689
- "name": "udid",
4690
- "hasDynamicHelp": false,
4691
- "multiple": false,
4692
- "type": "option"
4693
- },
4694
- "name": {
4695
- "description": "The new name for the device",
4696
- "name": "name",
4697
- "hasDynamicHelp": false,
4698
- "multiple": false,
4699
- "type": "option"
4700
- },
4701
4723
  "json": {
4702
4724
  "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4703
4725
  "name": "json",
@@ -4714,10 +4736,11 @@
4714
4736
  },
4715
4737
  "hasDynamicHelp": false,
4716
4738
  "hiddenAliases": [],
4717
- "id": "device:rename",
4739
+ "id": "deploy:delete",
4718
4740
  "pluginAlias": "eas-cli",
4719
4741
  "pluginName": "eas-cli",
4720
4742
  "pluginType": "core",
4743
+ "state": "preview",
4721
4744
  "strict": true,
4722
4745
  "enableJsonFlag": false,
4723
4746
  "ContextOptions": {
@@ -4761,33 +4784,105 @@
4761
4784
  }
4762
4785
  },
4763
4786
  "contextDefinition": {
4764
- "projectId": {},
4787
+ "getDynamicPublicProjectConfigAsync": {},
4788
+ "getDynamicPrivateProjectConfigAsync": {},
4789
+ "projectDir": {},
4765
4790
  "loggedIn": {}
4766
4791
  },
4767
4792
  "isESM": false,
4768
4793
  "relativePath": [
4769
4794
  "build",
4770
4795
  "commands",
4771
- "device",
4772
- "rename.js"
4796
+ "deploy",
4797
+ "delete.js"
4773
4798
  ]
4774
4799
  },
4775
- "device:view": {
4776
- "aliases": [],
4777
- "args": {
4778
- "UDID": {
4779
- "name": "UDID"
4800
+ "deploy": {
4801
+ "aliases": [
4802
+ "worker:deploy"
4803
+ ],
4804
+ "args": {},
4805
+ "description": "deploy your Expo Router web build and API Routes",
4806
+ "flags": {
4807
+ "prod": {
4808
+ "aliases": [
4809
+ "production"
4810
+ ],
4811
+ "description": "Create a new production deployment.",
4812
+ "name": "prod",
4813
+ "allowNo": false,
4814
+ "type": "boolean"
4815
+ },
4816
+ "alias": {
4817
+ "description": "Custom alias to assign to the new deployment.",
4818
+ "name": "alias",
4819
+ "hasDynamicHelp": false,
4820
+ "helpValue": "name",
4821
+ "multiple": false,
4822
+ "type": "option"
4823
+ },
4824
+ "id": {
4825
+ "description": "Custom unique identifier for the new deployment.",
4826
+ "name": "id",
4827
+ "hasDynamicHelp": false,
4828
+ "helpValue": "xyz123",
4829
+ "multiple": false,
4830
+ "type": "option"
4831
+ },
4832
+ "export-dir": {
4833
+ "description": "Directory where the Expo project was exported.",
4834
+ "name": "export-dir",
4835
+ "default": "dist",
4836
+ "hasDynamicHelp": false,
4837
+ "helpValue": "dir",
4838
+ "multiple": false,
4839
+ "type": "option"
4840
+ },
4841
+ "dry-run": {
4842
+ "description": "Outputs a tarball of the new deployment instead of uploading it.",
4843
+ "name": "dry-run",
4844
+ "allowNo": false,
4845
+ "type": "boolean"
4846
+ },
4847
+ "source-maps": {
4848
+ "description": "Include source maps in the deployment.",
4849
+ "name": "source-maps",
4850
+ "allowNo": true,
4851
+ "type": "boolean"
4852
+ },
4853
+ "environment": {
4854
+ "description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
4855
+ "name": "environment",
4856
+ "hasDynamicHelp": false,
4857
+ "multiple": false,
4858
+ "type": "option"
4859
+ },
4860
+ "json": {
4861
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
4862
+ "name": "json",
4863
+ "allowNo": false,
4864
+ "type": "boolean"
4865
+ },
4866
+ "non-interactive": {
4867
+ "description": "Run the command in non-interactive mode.",
4868
+ "name": "non-interactive",
4869
+ "noCacheDefault": true,
4870
+ "allowNo": false,
4871
+ "type": "boolean"
4780
4872
  }
4781
4873
  },
4782
- "description": "view a device for your project",
4783
- "flags": {},
4784
4874
  "hasDynamicHelp": false,
4785
4875
  "hiddenAliases": [],
4786
- "id": "device:view",
4876
+ "id": "deploy",
4787
4877
  "pluginAlias": "eas-cli",
4788
4878
  "pluginName": "eas-cli",
4789
4879
  "pluginType": "core",
4880
+ "state": "preview",
4790
4881
  "strict": true,
4882
+ "usage": [
4883
+ "deploy [options]",
4884
+ "deploy --prod"
4885
+ ],
4791
4886
  "enableJsonFlag": false,
4792
4887
  "ContextOptions": {
4793
4888
  "LoggedIn": {
@@ -4830,15 +4925,17 @@
4830
4925
  }
4831
4926
  },
4832
4927
  "contextDefinition": {
4833
- "projectId": {},
4928
+ "getDynamicPublicProjectConfigAsync": {},
4929
+ "getDynamicPrivateProjectConfigAsync": {},
4930
+ "projectDir": {},
4834
4931
  "loggedIn": {}
4835
4932
  },
4836
4933
  "isESM": false,
4837
4934
  "relativePath": [
4838
4935
  "build",
4839
4936
  "commands",
4840
- "device",
4841
- "view.js"
4937
+ "deploy",
4938
+ "index.js"
4842
4939
  ]
4843
4940
  },
4844
4941
  "env:create": {
@@ -8099,6 +8196,13 @@
8099
8196
  "multiple": false,
8100
8197
  "type": "option"
8101
8198
  },
8199
+ "max-duration-minutes": {
8200
+ "description": "Maximum duration of the device run session in minutes before it is automatically stopped. Only customizable on paid plans. Defaults to a value derived from the job run priority when omitted.",
8201
+ "name": "max-duration-minutes",
8202
+ "hasDynamicHelp": false,
8203
+ "multiple": false,
8204
+ "type": "option"
8205
+ },
8102
8206
  "force": {
8103
8207
  "description": "[default: true] Create a new device session even when an existing simulator session is present in the environment.",
8104
8208
  "name": "force",
@@ -9544,9 +9648,38 @@
9544
9648
  },
9545
9649
  "update:rollback": {
9546
9650
  "aliases": [],
9547
- "args": {},
9548
- "description": "Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute \"eas update:republish\" or \"eas update:roll-back-to-embedded\".",
9651
+ "args": {
9652
+ "groupId": {
9653
+ "description": "The ID of the update group to roll back. Must be the latest update for its branch and runtime version. The update group published before it is republished; if there is none, a roll back to the embedded update is published. Required in non-interactive mode.",
9654
+ "name": "groupId",
9655
+ "required": false
9656
+ }
9657
+ },
9658
+ "description": "roll back to an embedded update or an existing update",
9549
9659
  "flags": {
9660
+ "message": {
9661
+ "char": "m",
9662
+ "description": "Short message describing the rollback update",
9663
+ "name": "message",
9664
+ "required": false,
9665
+ "hasDynamicHelp": false,
9666
+ "multiple": false,
9667
+ "type": "option"
9668
+ },
9669
+ "platform": {
9670
+ "char": "p",
9671
+ "name": "platform",
9672
+ "required": false,
9673
+ "default": "all",
9674
+ "hasDynamicHelp": false,
9675
+ "multiple": false,
9676
+ "options": [
9677
+ "android",
9678
+ "ios",
9679
+ "all"
9680
+ ],
9681
+ "type": "option"
9682
+ },
9550
9683
  "private-key-path": {
9551
9684
  "description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
9552
9685
  "name": "private-key-path",
@@ -9554,6 +9687,19 @@
9554
9687
  "hasDynamicHelp": false,
9555
9688
  "multiple": false,
9556
9689
  "type": "option"
9690
+ },
9691
+ "json": {
9692
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
9693
+ "name": "json",
9694
+ "allowNo": false,
9695
+ "type": "boolean"
9696
+ },
9697
+ "non-interactive": {
9698
+ "description": "Run the command in non-interactive mode.",
9699
+ "name": "non-interactive",
9700
+ "noCacheDefault": true,
9701
+ "allowNo": false,
9702
+ "type": "boolean"
9557
9703
  }
9558
9704
  },
9559
9705
  "hasDynamicHelp": false,
@@ -9604,7 +9750,10 @@
9604
9750
  "projectId": {}
9605
9751
  }
9606
9752
  },
9607
- "contextDefinition": {},
9753
+ "contextDefinition": {
9754
+ "loggedIn": {},
9755
+ "privateProjectConfig": {}
9756
+ },
9608
9757
  "isESM": false,
9609
9758
  "relativePath": [
9610
9759
  "build",
@@ -9617,7 +9766,7 @@
9617
9766
  "aliases": [],
9618
9767
  "args": {
9619
9768
  "groupId": {
9620
- "description": "The ID of an update group.",
9769
+ "description": "The ID of an update group, or the ID of a platform-specific update.",
9621
9770
  "name": "groupId",
9622
9771
  "required": true
9623
9772
  }
@@ -9727,11 +9876,36 @@
9727
9876
  "view.js"
9728
9877
  ]
9729
9878
  },
9730
- "workflow:cancel": {
9879
+ "webhook:create": {
9731
9880
  "aliases": [],
9732
9881
  "args": {},
9733
- "description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
9882
+ "description": "create a webhook",
9734
9883
  "flags": {
9884
+ "event": {
9885
+ "description": "Event type that triggers the webhook",
9886
+ "name": "event",
9887
+ "hasDynamicHelp": false,
9888
+ "multiple": false,
9889
+ "options": [
9890
+ "BUILD",
9891
+ "SUBMIT"
9892
+ ],
9893
+ "type": "option"
9894
+ },
9895
+ "url": {
9896
+ "description": "Webhook URL",
9897
+ "name": "url",
9898
+ "hasDynamicHelp": false,
9899
+ "multiple": false,
9900
+ "type": "option"
9901
+ },
9902
+ "secret": {
9903
+ "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
9904
+ "name": "secret",
9905
+ "hasDynamicHelp": false,
9906
+ "multiple": false,
9907
+ "type": "option"
9908
+ },
9735
9909
  "non-interactive": {
9736
9910
  "description": "Run the command in non-interactive mode.",
9737
9911
  "name": "non-interactive",
@@ -9742,11 +9916,11 @@
9742
9916
  },
9743
9917
  "hasDynamicHelp": false,
9744
9918
  "hiddenAliases": [],
9745
- "id": "workflow:cancel",
9919
+ "id": "webhook:create",
9746
9920
  "pluginAlias": "eas-cli",
9747
9921
  "pluginName": "eas-cli",
9748
9922
  "pluginType": "core",
9749
- "strict": false,
9923
+ "strict": true,
9750
9924
  "enableJsonFlag": false,
9751
9925
  "ContextOptions": {
9752
9926
  "LoggedIn": {
@@ -9796,31 +9970,32 @@
9796
9970
  "relativePath": [
9797
9971
  "build",
9798
9972
  "commands",
9799
- "workflow",
9800
- "cancel.js"
9973
+ "webhook",
9974
+ "create.js"
9801
9975
  ]
9802
9976
  },
9803
- "workflow:create": {
9977
+ "webhook:delete": {
9804
9978
  "aliases": [],
9805
9979
  "args": {
9806
- "name": {
9807
- "description": "Name of the workflow file (must end with .yml or .yaml)",
9808
- "name": "name",
9980
+ "ID": {
9981
+ "description": "ID of the webhook to delete",
9982
+ "name": "ID",
9809
9983
  "required": false
9810
9984
  }
9811
9985
  },
9812
- "description": "create a new workflow configuration YAML file",
9986
+ "description": "delete a webhook",
9813
9987
  "flags": {
9814
- "skip-validation": {
9815
- "description": "If set, the workflow file will not be validated before being created",
9816
- "name": "skip-validation",
9988
+ "non-interactive": {
9989
+ "description": "Run the command in non-interactive mode.",
9990
+ "name": "non-interactive",
9991
+ "noCacheDefault": true,
9817
9992
  "allowNo": false,
9818
9993
  "type": "boolean"
9819
9994
  }
9820
9995
  },
9821
9996
  "hasDynamicHelp": false,
9822
9997
  "hiddenAliases": [],
9823
- "id": "workflow:create",
9998
+ "id": "webhook:delete",
9824
9999
  "pluginAlias": "eas-cli",
9825
10000
  "pluginName": "eas-cli",
9826
10001
  "pluginType": "core",
@@ -9867,24 +10042,33 @@
9867
10042
  }
9868
10043
  },
9869
10044
  "contextDefinition": {
9870
- "getDynamicPublicProjectConfigAsync": {},
9871
- "getDynamicPrivateProjectConfigAsync": {},
9872
- "projectDir": {},
10045
+ "projectId": {},
9873
10046
  "loggedIn": {}
9874
10047
  },
9875
10048
  "isESM": false,
9876
10049
  "relativePath": [
9877
10050
  "build",
9878
10051
  "commands",
9879
- "workflow",
9880
- "create.js"
10052
+ "webhook",
10053
+ "delete.js"
9881
10054
  ]
9882
10055
  },
9883
- "workflow:list": {
10056
+ "webhook:list": {
9884
10057
  "aliases": [],
9885
10058
  "args": {},
9886
- "description": "List workflows for the current project",
10059
+ "description": "list webhooks",
9887
10060
  "flags": {
10061
+ "event": {
10062
+ "description": "Event type that triggers the webhook",
10063
+ "name": "event",
10064
+ "hasDynamicHelp": false,
10065
+ "multiple": false,
10066
+ "options": [
10067
+ "BUILD",
10068
+ "SUBMIT"
10069
+ ],
10070
+ "type": "option"
10071
+ },
9888
10072
  "json": {
9889
10073
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9890
10074
  "name": "json",
@@ -9893,9 +10077,8 @@
9893
10077
  }
9894
10078
  },
9895
10079
  "hasDynamicHelp": false,
9896
- "hidden": true,
9897
10080
  "hiddenAliases": [],
9898
- "id": "workflow:list",
10081
+ "id": "webhook:list",
9899
10082
  "pluginAlias": "eas-cli",
9900
10083
  "pluginName": "eas-cli",
9901
10084
  "pluginType": "core",
@@ -9949,25 +10132,47 @@
9949
10132
  "relativePath": [
9950
10133
  "build",
9951
10134
  "commands",
9952
- "workflow",
10135
+ "webhook",
9953
10136
  "list.js"
9954
10137
  ]
9955
10138
  },
9956
- "workflow:logs": {
10139
+ "webhook:update": {
9957
10140
  "aliases": [],
9958
- "args": {
9959
- "id": {
9960
- "description": "ID of the workflow run or workflow job to view logs for",
9961
- "name": "id"
9962
- }
9963
- },
9964
- "description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
10141
+ "args": {},
10142
+ "description": "update a webhook",
9965
10143
  "flags": {
9966
- "json": {
9967
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
9968
- "name": "json",
9969
- "allowNo": false,
9970
- "type": "boolean"
10144
+ "id": {
10145
+ "description": "Webhook ID",
10146
+ "name": "id",
10147
+ "required": true,
10148
+ "hasDynamicHelp": false,
10149
+ "multiple": false,
10150
+ "type": "option"
10151
+ },
10152
+ "event": {
10153
+ "description": "Event type that triggers the webhook",
10154
+ "name": "event",
10155
+ "hasDynamicHelp": false,
10156
+ "multiple": false,
10157
+ "options": [
10158
+ "BUILD",
10159
+ "SUBMIT"
10160
+ ],
10161
+ "type": "option"
10162
+ },
10163
+ "url": {
10164
+ "description": "Webhook URL",
10165
+ "name": "url",
10166
+ "hasDynamicHelp": false,
10167
+ "multiple": false,
10168
+ "type": "option"
10169
+ },
10170
+ "secret": {
10171
+ "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
10172
+ "name": "secret",
10173
+ "hasDynamicHelp": false,
10174
+ "multiple": false,
10175
+ "type": "option"
9971
10176
  },
9972
10177
  "non-interactive": {
9973
10178
  "description": "Run the command in non-interactive mode.",
@@ -9975,17 +10180,11 @@
9975
10180
  "noCacheDefault": true,
9976
10181
  "allowNo": false,
9977
10182
  "type": "boolean"
9978
- },
9979
- "all-steps": {
9980
- "description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
9981
- "name": "all-steps",
9982
- "allowNo": false,
9983
- "type": "boolean"
9984
10183
  }
9985
10184
  },
9986
10185
  "hasDynamicHelp": false,
9987
10186
  "hiddenAliases": [],
9988
- "id": "workflow:logs",
10187
+ "id": "webhook:update",
9989
10188
  "pluginAlias": "eas-cli",
9990
10189
  "pluginName": "eas-cli",
9991
10190
  "pluginType": "core",
@@ -10032,73 +10231,30 @@
10032
10231
  }
10033
10232
  },
10034
10233
  "contextDefinition": {
10035
- "projectId": {},
10036
10234
  "loggedIn": {}
10037
10235
  },
10038
10236
  "isESM": false,
10039
10237
  "relativePath": [
10040
10238
  "build",
10041
10239
  "commands",
10042
- "workflow",
10043
- "logs.js"
10240
+ "webhook",
10241
+ "update.js"
10044
10242
  ]
10045
10243
  },
10046
- "workflow:run": {
10244
+ "webhook:view": {
10047
10245
  "aliases": [],
10048
10246
  "args": {
10049
- "file": {
10050
- "description": "Path to the workflow file to run",
10051
- "name": "file",
10247
+ "ID": {
10248
+ "description": "ID of the webhook to view",
10249
+ "name": "ID",
10052
10250
  "required": true
10053
10251
  }
10054
10252
  },
10055
- "description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
10056
- "flags": {
10057
- "non-interactive": {
10058
- "description": "Run the command in non-interactive mode.",
10059
- "name": "non-interactive",
10060
- "noCacheDefault": true,
10061
- "allowNo": false,
10062
- "type": "boolean"
10063
- },
10064
- "wait": {
10065
- "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
10066
- "name": "wait",
10067
- "summary": "Wait for workflow run to complete. Defaults to false.",
10068
- "allowNo": true,
10069
- "type": "boolean"
10070
- },
10071
- "input": {
10072
- "aliases": [
10073
- "f",
10074
- "field"
10075
- ],
10076
- "char": "F",
10077
- "description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
10078
- "name": "input",
10079
- "summary": "Set workflow inputs",
10080
- "hasDynamicHelp": false,
10081
- "multiple": true,
10082
- "type": "option"
10083
- },
10084
- "ref": {
10085
- "description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
10086
- "name": "ref",
10087
- "summary": "Git reference to run the workflow on",
10088
- "hasDynamicHelp": false,
10089
- "multiple": false,
10090
- "type": "option"
10091
- },
10092
- "json": {
10093
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10094
- "name": "json",
10095
- "allowNo": false,
10096
- "type": "boolean"
10097
- }
10098
- },
10253
+ "description": "view a webhook",
10254
+ "flags": {},
10099
10255
  "hasDynamicHelp": false,
10100
10256
  "hiddenAliases": [],
10101
- "id": "workflow:run",
10257
+ "id": "webhook:view",
10102
10258
  "pluginAlias": "eas-cli",
10103
10259
  "pluginName": "eas-cli",
10104
10260
  "pluginType": "core",
@@ -10145,70 +10301,36 @@
10145
10301
  }
10146
10302
  },
10147
10303
  "contextDefinition": {
10148
- "getDynamicPublicProjectConfigAsync": {},
10149
- "getDynamicPrivateProjectConfigAsync": {},
10150
- "projectDir": {},
10151
- "vcsClient": {},
10152
10304
  "loggedIn": {}
10153
10305
  },
10154
10306
  "isESM": false,
10155
10307
  "relativePath": [
10156
10308
  "build",
10157
10309
  "commands",
10158
- "workflow",
10159
- "run.js"
10310
+ "webhook",
10311
+ "view.js"
10160
10312
  ]
10161
10313
  },
10162
- "workflow:runs": {
10314
+ "workflow:cancel": {
10163
10315
  "aliases": [],
10164
10316
  "args": {},
10165
- "description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
10317
+ "description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
10166
10318
  "flags": {
10167
- "workflow": {
10168
- "description": "If present, the query will only return runs for the specified workflow file name",
10169
- "name": "workflow",
10170
- "required": false,
10171
- "hasDynamicHelp": false,
10172
- "multiple": false,
10173
- "type": "option"
10174
- },
10175
- "status": {
10176
- "description": "If present, filter the returned runs to select those with the specified status",
10177
- "name": "status",
10178
- "required": false,
10179
- "hasDynamicHelp": false,
10180
- "multiple": false,
10181
- "options": [
10182
- "ACTION_REQUIRED",
10183
- "CANCELED",
10184
- "FAILURE",
10185
- "IN_PROGRESS",
10186
- "NEW",
10187
- "SUCCESS"
10188
- ],
10189
- "type": "option"
10190
- },
10191
- "json": {
10192
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10193
- "name": "json",
10319
+ "non-interactive": {
10320
+ "description": "Run the command in non-interactive mode.",
10321
+ "name": "non-interactive",
10322
+ "noCacheDefault": true,
10194
10323
  "allowNo": false,
10195
10324
  "type": "boolean"
10196
- },
10197
- "limit": {
10198
- "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
10199
- "name": "limit",
10200
- "hasDynamicHelp": false,
10201
- "multiple": false,
10202
- "type": "option"
10203
10325
  }
10204
10326
  },
10205
10327
  "hasDynamicHelp": false,
10206
10328
  "hiddenAliases": [],
10207
- "id": "workflow:runs",
10329
+ "id": "workflow:cancel",
10208
10330
  "pluginAlias": "eas-cli",
10209
10331
  "pluginName": "eas-cli",
10210
10332
  "pluginType": "core",
10211
- "strict": true,
10333
+ "strict": false,
10212
10334
  "enableJsonFlag": false,
10213
10335
  "ContextOptions": {
10214
10336
  "LoggedIn": {
@@ -10259,43 +10381,30 @@
10259
10381
  "build",
10260
10382
  "commands",
10261
10383
  "workflow",
10262
- "runs.js"
10384
+ "cancel.js"
10263
10385
  ]
10264
10386
  },
10265
- "workflow:status": {
10387
+ "workflow:create": {
10266
10388
  "aliases": [],
10267
10389
  "args": {
10268
- "WORKFLOW_RUN_ID": {
10269
- "description": "A workflow run ID.",
10270
- "name": "WORKFLOW_RUN_ID"
10390
+ "name": {
10391
+ "description": "Name of the workflow file (must end with .yml or .yaml)",
10392
+ "name": "name",
10393
+ "required": false
10271
10394
  }
10272
10395
  },
10273
- "description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
10396
+ "description": "create a new workflow configuration YAML file",
10274
10397
  "flags": {
10275
- "non-interactive": {
10276
- "description": "Run the command in non-interactive mode.",
10277
- "name": "non-interactive",
10278
- "noCacheDefault": true,
10279
- "allowNo": false,
10280
- "type": "boolean"
10281
- },
10282
- "wait": {
10283
- "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
10284
- "name": "wait",
10285
- "summary": "Wait for workflow run to complete. Defaults to false.",
10286
- "allowNo": true,
10287
- "type": "boolean"
10288
- },
10289
- "json": {
10290
- "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10291
- "name": "json",
10398
+ "skip-validation": {
10399
+ "description": "If set, the workflow file will not be validated before being created",
10400
+ "name": "skip-validation",
10292
10401
  "allowNo": false,
10293
10402
  "type": "boolean"
10294
10403
  }
10295
10404
  },
10296
10405
  "hasDynamicHelp": false,
10297
10406
  "hiddenAliases": [],
10298
- "id": "workflow:status",
10407
+ "id": "workflow:create",
10299
10408
  "pluginAlias": "eas-cli",
10300
10409
  "pluginName": "eas-cli",
10301
10410
  "pluginType": "core",
@@ -10345,7 +10454,6 @@
10345
10454
  "getDynamicPublicProjectConfigAsync": {},
10346
10455
  "getDynamicPrivateProjectConfigAsync": {},
10347
10456
  "projectDir": {},
10348
- "vcsClient": {},
10349
10457
  "loggedIn": {}
10350
10458
  },
10351
10459
  "isESM": false,
@@ -10353,31 +10461,25 @@
10353
10461
  "build",
10354
10462
  "commands",
10355
10463
  "workflow",
10356
- "status.js"
10464
+ "create.js"
10357
10465
  ]
10358
10466
  },
10359
- "workflow:validate": {
10467
+ "workflow:list": {
10360
10468
  "aliases": [],
10361
- "args": {
10362
- "path": {
10363
- "description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
10364
- "name": "path",
10365
- "required": true
10366
- }
10367
- },
10368
- "description": "validate a workflow configuration yaml file",
10469
+ "args": {},
10470
+ "description": "List workflows for the current project",
10369
10471
  "flags": {
10370
- "non-interactive": {
10371
- "description": "Run the command in non-interactive mode.",
10372
- "name": "non-interactive",
10373
- "noCacheDefault": true,
10472
+ "json": {
10473
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10474
+ "name": "json",
10374
10475
  "allowNo": false,
10375
10476
  "type": "boolean"
10376
10477
  }
10377
10478
  },
10378
10479
  "hasDynamicHelp": false,
10480
+ "hidden": true,
10379
10481
  "hiddenAliases": [],
10380
- "id": "workflow:validate",
10482
+ "id": "workflow:list",
10381
10483
  "pluginAlias": "eas-cli",
10382
10484
  "pluginName": "eas-cli",
10383
10485
  "pluginType": "core",
@@ -10424,9 +10526,6 @@
10424
10526
  }
10425
10527
  },
10426
10528
  "contextDefinition": {
10427
- "getDynamicPublicProjectConfigAsync": {},
10428
- "getDynamicPrivateProjectConfigAsync": {},
10429
- "projectDir": {},
10430
10529
  "projectId": {},
10431
10530
  "loggedIn": {}
10432
10531
  },
@@ -10435,18 +10534,18 @@
10435
10534
  "build",
10436
10535
  "commands",
10437
10536
  "workflow",
10438
- "validate.js"
10537
+ "list.js"
10439
10538
  ]
10440
10539
  },
10441
- "workflow:view": {
10540
+ "workflow:logs": {
10442
10541
  "aliases": [],
10443
10542
  "args": {
10444
10543
  "id": {
10445
- "description": "ID of the workflow run to view",
10544
+ "description": "ID of the workflow run or workflow job to view logs for",
10446
10545
  "name": "id"
10447
10546
  }
10448
10547
  },
10449
- "description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
10548
+ "description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
10450
10549
  "flags": {
10451
10550
  "json": {
10452
10551
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
@@ -10460,11 +10559,17 @@
10460
10559
  "noCacheDefault": true,
10461
10560
  "allowNo": false,
10462
10561
  "type": "boolean"
10562
+ },
10563
+ "all-steps": {
10564
+ "description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
10565
+ "name": "all-steps",
10566
+ "allowNo": false,
10567
+ "type": "boolean"
10463
10568
  }
10464
10569
  },
10465
10570
  "hasDynamicHelp": false,
10466
10571
  "hiddenAliases": [],
10467
- "id": "workflow:view",
10572
+ "id": "workflow:logs",
10468
10573
  "pluginAlias": "eas-cli",
10469
10574
  "pluginName": "eas-cli",
10470
10575
  "pluginType": "core",
@@ -10519,50 +10624,65 @@
10519
10624
  "build",
10520
10625
  "commands",
10521
10626
  "workflow",
10522
- "view.js"
10627
+ "logs.js"
10523
10628
  ]
10524
10629
  },
10525
- "webhook:create": {
10630
+ "workflow:run": {
10526
10631
  "aliases": [],
10527
- "args": {},
10528
- "description": "create a webhook",
10632
+ "args": {
10633
+ "file": {
10634
+ "description": "Path to the workflow file to run",
10635
+ "name": "file",
10636
+ "required": true
10637
+ }
10638
+ },
10639
+ "description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
10529
10640
  "flags": {
10530
- "event": {
10531
- "description": "Event type that triggers the webhook",
10532
- "name": "event",
10533
- "hasDynamicHelp": false,
10534
- "multiple": false,
10535
- "options": [
10536
- "BUILD",
10537
- "SUBMIT"
10538
- ],
10539
- "type": "option"
10641
+ "non-interactive": {
10642
+ "description": "Run the command in non-interactive mode.",
10643
+ "name": "non-interactive",
10644
+ "noCacheDefault": true,
10645
+ "allowNo": false,
10646
+ "type": "boolean"
10540
10647
  },
10541
- "url": {
10542
- "description": "Webhook URL",
10543
- "name": "url",
10648
+ "wait": {
10649
+ "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
10650
+ "name": "wait",
10651
+ "summary": "Wait for workflow run to complete. Defaults to false.",
10652
+ "allowNo": true,
10653
+ "type": "boolean"
10654
+ },
10655
+ "input": {
10656
+ "aliases": [
10657
+ "f",
10658
+ "field"
10659
+ ],
10660
+ "char": "F",
10661
+ "description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
10662
+ "name": "input",
10663
+ "summary": "Set workflow inputs",
10544
10664
  "hasDynamicHelp": false,
10545
- "multiple": false,
10665
+ "multiple": true,
10546
10666
  "type": "option"
10547
10667
  },
10548
- "secret": {
10549
- "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
10550
- "name": "secret",
10668
+ "ref": {
10669
+ "description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
10670
+ "name": "ref",
10671
+ "summary": "Git reference to run the workflow on",
10551
10672
  "hasDynamicHelp": false,
10552
10673
  "multiple": false,
10553
10674
  "type": "option"
10554
10675
  },
10555
- "non-interactive": {
10556
- "description": "Run the command in non-interactive mode.",
10557
- "name": "non-interactive",
10558
- "noCacheDefault": true,
10676
+ "json": {
10677
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10678
+ "name": "json",
10559
10679
  "allowNo": false,
10560
10680
  "type": "boolean"
10561
10681
  }
10562
10682
  },
10563
10683
  "hasDynamicHelp": false,
10564
10684
  "hiddenAliases": [],
10565
- "id": "webhook:create",
10685
+ "id": "workflow:run",
10566
10686
  "pluginAlias": "eas-cli",
10567
10687
  "pluginName": "eas-cli",
10568
10688
  "pluginType": "core",
@@ -10609,39 +10729,66 @@
10609
10729
  }
10610
10730
  },
10611
10731
  "contextDefinition": {
10612
- "projectId": {},
10732
+ "getDynamicPublicProjectConfigAsync": {},
10733
+ "getDynamicPrivateProjectConfigAsync": {},
10734
+ "projectDir": {},
10735
+ "vcsClient": {},
10613
10736
  "loggedIn": {}
10614
10737
  },
10615
10738
  "isESM": false,
10616
10739
  "relativePath": [
10617
10740
  "build",
10618
10741
  "commands",
10619
- "webhook",
10620
- "create.js"
10742
+ "workflow",
10743
+ "run.js"
10621
10744
  ]
10622
10745
  },
10623
- "webhook:delete": {
10746
+ "workflow:runs": {
10624
10747
  "aliases": [],
10625
- "args": {
10626
- "ID": {
10627
- "description": "ID of the webhook to delete",
10628
- "name": "ID",
10629
- "required": false
10630
- }
10631
- },
10632
- "description": "delete a webhook",
10748
+ "args": {},
10749
+ "description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
10633
10750
  "flags": {
10634
- "non-interactive": {
10635
- "description": "Run the command in non-interactive mode.",
10636
- "name": "non-interactive",
10637
- "noCacheDefault": true,
10751
+ "workflow": {
10752
+ "description": "If present, the query will only return runs for the specified workflow file name",
10753
+ "name": "workflow",
10754
+ "required": false,
10755
+ "hasDynamicHelp": false,
10756
+ "multiple": false,
10757
+ "type": "option"
10758
+ },
10759
+ "status": {
10760
+ "description": "If present, filter the returned runs to select those with the specified status",
10761
+ "name": "status",
10762
+ "required": false,
10763
+ "hasDynamicHelp": false,
10764
+ "multiple": false,
10765
+ "options": [
10766
+ "ACTION_REQUIRED",
10767
+ "CANCELED",
10768
+ "FAILURE",
10769
+ "IN_PROGRESS",
10770
+ "NEW",
10771
+ "SUCCESS"
10772
+ ],
10773
+ "type": "option"
10774
+ },
10775
+ "json": {
10776
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
10777
+ "name": "json",
10638
10778
  "allowNo": false,
10639
10779
  "type": "boolean"
10780
+ },
10781
+ "limit": {
10782
+ "description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
10783
+ "name": "limit",
10784
+ "hasDynamicHelp": false,
10785
+ "multiple": false,
10786
+ "type": "option"
10640
10787
  }
10641
10788
  },
10642
10789
  "hasDynamicHelp": false,
10643
10790
  "hiddenAliases": [],
10644
- "id": "webhook:delete",
10791
+ "id": "workflow:runs",
10645
10792
  "pluginAlias": "eas-cli",
10646
10793
  "pluginName": "eas-cli",
10647
10794
  "pluginType": "core",
@@ -10695,25 +10842,33 @@
10695
10842
  "relativePath": [
10696
10843
  "build",
10697
10844
  "commands",
10698
- "webhook",
10699
- "delete.js"
10845
+ "workflow",
10846
+ "runs.js"
10700
10847
  ]
10701
10848
  },
10702
- "webhook:list": {
10849
+ "workflow:status": {
10703
10850
  "aliases": [],
10704
- "args": {},
10705
- "description": "list webhooks",
10851
+ "args": {
10852
+ "WORKFLOW_RUN_ID": {
10853
+ "description": "A workflow run ID.",
10854
+ "name": "WORKFLOW_RUN_ID"
10855
+ }
10856
+ },
10857
+ "description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
10706
10858
  "flags": {
10707
- "event": {
10708
- "description": "Event type that triggers the webhook",
10709
- "name": "event",
10710
- "hasDynamicHelp": false,
10711
- "multiple": false,
10712
- "options": [
10713
- "BUILD",
10714
- "SUBMIT"
10715
- ],
10716
- "type": "option"
10859
+ "non-interactive": {
10860
+ "description": "Run the command in non-interactive mode.",
10861
+ "name": "non-interactive",
10862
+ "noCacheDefault": true,
10863
+ "allowNo": false,
10864
+ "type": "boolean"
10865
+ },
10866
+ "wait": {
10867
+ "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
10868
+ "name": "wait",
10869
+ "summary": "Wait for workflow run to complete. Defaults to false.",
10870
+ "allowNo": true,
10871
+ "type": "boolean"
10717
10872
  },
10718
10873
  "json": {
10719
10874
  "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
@@ -10724,7 +10879,7 @@
10724
10879
  },
10725
10880
  "hasDynamicHelp": false,
10726
10881
  "hiddenAliases": [],
10727
- "id": "webhook:list",
10882
+ "id": "workflow:status",
10728
10883
  "pluginAlias": "eas-cli",
10729
10884
  "pluginName": "eas-cli",
10730
10885
  "pluginType": "core",
@@ -10771,55 +10926,31 @@
10771
10926
  }
10772
10927
  },
10773
10928
  "contextDefinition": {
10774
- "projectId": {},
10929
+ "getDynamicPublicProjectConfigAsync": {},
10930
+ "getDynamicPrivateProjectConfigAsync": {},
10931
+ "projectDir": {},
10932
+ "vcsClient": {},
10775
10933
  "loggedIn": {}
10776
10934
  },
10777
10935
  "isESM": false,
10778
10936
  "relativePath": [
10779
10937
  "build",
10780
10938
  "commands",
10781
- "webhook",
10782
- "list.js"
10939
+ "workflow",
10940
+ "status.js"
10783
10941
  ]
10784
10942
  },
10785
- "webhook:update": {
10943
+ "workflow:validate": {
10786
10944
  "aliases": [],
10787
- "args": {},
10788
- "description": "update a webhook",
10945
+ "args": {
10946
+ "path": {
10947
+ "description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
10948
+ "name": "path",
10949
+ "required": true
10950
+ }
10951
+ },
10952
+ "description": "validate a workflow configuration yaml file",
10789
10953
  "flags": {
10790
- "id": {
10791
- "description": "Webhook ID",
10792
- "name": "id",
10793
- "required": true,
10794
- "hasDynamicHelp": false,
10795
- "multiple": false,
10796
- "type": "option"
10797
- },
10798
- "event": {
10799
- "description": "Event type that triggers the webhook",
10800
- "name": "event",
10801
- "hasDynamicHelp": false,
10802
- "multiple": false,
10803
- "options": [
10804
- "BUILD",
10805
- "SUBMIT"
10806
- ],
10807
- "type": "option"
10808
- },
10809
- "url": {
10810
- "description": "Webhook URL",
10811
- "name": "url",
10812
- "hasDynamicHelp": false,
10813
- "multiple": false,
10814
- "type": "option"
10815
- },
10816
- "secret": {
10817
- "description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
10818
- "name": "secret",
10819
- "hasDynamicHelp": false,
10820
- "multiple": false,
10821
- "type": "option"
10822
- },
10823
10954
  "non-interactive": {
10824
10955
  "description": "Run the command in non-interactive mode.",
10825
10956
  "name": "non-interactive",
@@ -10830,7 +10961,7 @@
10830
10961
  },
10831
10962
  "hasDynamicHelp": false,
10832
10963
  "hiddenAliases": [],
10833
- "id": "webhook:update",
10964
+ "id": "workflow:validate",
10834
10965
  "pluginAlias": "eas-cli",
10835
10966
  "pluginName": "eas-cli",
10836
10967
  "pluginType": "core",
@@ -10877,30 +11008,47 @@
10877
11008
  }
10878
11009
  },
10879
11010
  "contextDefinition": {
11011
+ "getDynamicPublicProjectConfigAsync": {},
11012
+ "getDynamicPrivateProjectConfigAsync": {},
11013
+ "projectDir": {},
11014
+ "projectId": {},
10880
11015
  "loggedIn": {}
10881
11016
  },
10882
11017
  "isESM": false,
10883
11018
  "relativePath": [
10884
11019
  "build",
10885
11020
  "commands",
10886
- "webhook",
10887
- "update.js"
11021
+ "workflow",
11022
+ "validate.js"
10888
11023
  ]
10889
11024
  },
10890
- "webhook:view": {
11025
+ "workflow:view": {
10891
11026
  "aliases": [],
10892
11027
  "args": {
10893
- "ID": {
10894
- "description": "ID of the webhook to view",
10895
- "name": "ID",
10896
- "required": true
11028
+ "id": {
11029
+ "description": "ID of the workflow run to view",
11030
+ "name": "id"
11031
+ }
11032
+ },
11033
+ "description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
11034
+ "flags": {
11035
+ "json": {
11036
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
11037
+ "name": "json",
11038
+ "allowNo": false,
11039
+ "type": "boolean"
11040
+ },
11041
+ "non-interactive": {
11042
+ "description": "Run the command in non-interactive mode.",
11043
+ "name": "non-interactive",
11044
+ "noCacheDefault": true,
11045
+ "allowNo": false,
11046
+ "type": "boolean"
10897
11047
  }
10898
11048
  },
10899
- "description": "view a webhook",
10900
- "flags": {},
10901
11049
  "hasDynamicHelp": false,
10902
11050
  "hiddenAliases": [],
10903
- "id": "webhook:view",
11051
+ "id": "workflow:view",
10904
11052
  "pluginAlias": "eas-cli",
10905
11053
  "pluginName": "eas-cli",
10906
11054
  "pluginType": "core",
@@ -10947,13 +11095,14 @@
10947
11095
  }
10948
11096
  },
10949
11097
  "contextDefinition": {
11098
+ "projectId": {},
10950
11099
  "loggedIn": {}
10951
11100
  },
10952
11101
  "isESM": false,
10953
11102
  "relativePath": [
10954
11103
  "build",
10955
11104
  "commands",
10956
- "webhook",
11105
+ "workflow",
10957
11106
  "view.js"
10958
11107
  ]
10959
11108
  },
@@ -12011,6 +12160,289 @@
12011
12160
  "team.js"
12012
12161
  ]
12013
12162
  },
12163
+ "integrations:posthog:connect": {
12164
+ "aliases": [],
12165
+ "args": {},
12166
+ "description": "connect PostHog to your Expo project",
12167
+ "flags": {
12168
+ "json": {
12169
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
12170
+ "name": "json",
12171
+ "allowNo": false,
12172
+ "type": "boolean"
12173
+ },
12174
+ "non-interactive": {
12175
+ "description": "Run the command in non-interactive mode.",
12176
+ "name": "non-interactive",
12177
+ "noCacheDefault": true,
12178
+ "allowNo": false,
12179
+ "type": "boolean"
12180
+ },
12181
+ "region": {
12182
+ "description": "PostHog region",
12183
+ "name": "region",
12184
+ "hasDynamicHelp": false,
12185
+ "multiple": false,
12186
+ "options": [
12187
+ "US",
12188
+ "EU"
12189
+ ],
12190
+ "type": "option"
12191
+ },
12192
+ "session-replay": {
12193
+ "description": "Set up PostHog session replay (default: yes)",
12194
+ "name": "session-replay",
12195
+ "allowNo": true,
12196
+ "type": "boolean"
12197
+ },
12198
+ "error-tracking": {
12199
+ "description": "Set up PostHog error tracking / source maps (requires a personal API key)",
12200
+ "name": "error-tracking",
12201
+ "allowNo": true,
12202
+ "type": "boolean"
12203
+ },
12204
+ "posthog-cli-api-key": {
12205
+ "description": "PostHog personal API key for error-tracking source-map uploads (enables error tracking non-interactively)",
12206
+ "name": "posthog-cli-api-key",
12207
+ "hasDynamicHelp": false,
12208
+ "multiple": false,
12209
+ "type": "option"
12210
+ },
12211
+ "overwrite": {
12212
+ "description": "Overwrite existing PostHog environment variables without prompting",
12213
+ "name": "overwrite",
12214
+ "allowNo": false,
12215
+ "type": "boolean"
12216
+ }
12217
+ },
12218
+ "hasDynamicHelp": false,
12219
+ "hiddenAliases": [],
12220
+ "id": "integrations:posthog:connect",
12221
+ "pluginAlias": "eas-cli",
12222
+ "pluginName": "eas-cli",
12223
+ "pluginType": "core",
12224
+ "strict": true,
12225
+ "enableJsonFlag": false,
12226
+ "ContextOptions": {
12227
+ "LoggedIn": {
12228
+ "loggedIn": {}
12229
+ },
12230
+ "MaybeLoggedIn": {
12231
+ "maybeLoggedIn": {}
12232
+ },
12233
+ "DynamicLoggedIn": {
12234
+ "getDynamicLoggedInAsync": {}
12235
+ },
12236
+ "SessionManagment": {
12237
+ "sessionManager": {}
12238
+ },
12239
+ "OptionalProjectConfig": {
12240
+ "optionalPrivateProjectConfig": {}
12241
+ },
12242
+ "ProjectDir": {
12243
+ "projectDir": {}
12244
+ },
12245
+ "DynamicProjectConfig": {
12246
+ "getDynamicPublicProjectConfigAsync": {},
12247
+ "getDynamicPrivateProjectConfigAsync": {}
12248
+ },
12249
+ "ProjectConfig": {
12250
+ "loggedIn": {},
12251
+ "privateProjectConfig": {}
12252
+ },
12253
+ "Analytics": {
12254
+ "analytics": {}
12255
+ },
12256
+ "Vcs": {
12257
+ "vcsClient": {}
12258
+ },
12259
+ "ServerSideEnvironmentVariables": {
12260
+ "getServerSideEnvironmentVariablesAsync": {}
12261
+ },
12262
+ "ProjectId": {
12263
+ "projectId": {}
12264
+ }
12265
+ },
12266
+ "contextDefinition": {
12267
+ "loggedIn": {},
12268
+ "privateProjectConfig": {}
12269
+ },
12270
+ "isESM": false,
12271
+ "relativePath": [
12272
+ "build",
12273
+ "commands",
12274
+ "integrations",
12275
+ "posthog",
12276
+ "connect.js"
12277
+ ]
12278
+ },
12279
+ "integrations:posthog:dashboard": {
12280
+ "aliases": [],
12281
+ "args": {},
12282
+ "description": "open the PostHog dashboard for the linked PostHog project",
12283
+ "flags": {
12284
+ "json": {
12285
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
12286
+ "name": "json",
12287
+ "allowNo": false,
12288
+ "type": "boolean"
12289
+ },
12290
+ "non-interactive": {
12291
+ "description": "Run the command in non-interactive mode.",
12292
+ "name": "non-interactive",
12293
+ "noCacheDefault": true,
12294
+ "allowNo": false,
12295
+ "type": "boolean"
12296
+ }
12297
+ },
12298
+ "hasDynamicHelp": false,
12299
+ "hiddenAliases": [],
12300
+ "id": "integrations:posthog:dashboard",
12301
+ "pluginAlias": "eas-cli",
12302
+ "pluginName": "eas-cli",
12303
+ "pluginType": "core",
12304
+ "strict": true,
12305
+ "enableJsonFlag": false,
12306
+ "ContextOptions": {
12307
+ "LoggedIn": {
12308
+ "loggedIn": {}
12309
+ },
12310
+ "MaybeLoggedIn": {
12311
+ "maybeLoggedIn": {}
12312
+ },
12313
+ "DynamicLoggedIn": {
12314
+ "getDynamicLoggedInAsync": {}
12315
+ },
12316
+ "SessionManagment": {
12317
+ "sessionManager": {}
12318
+ },
12319
+ "OptionalProjectConfig": {
12320
+ "optionalPrivateProjectConfig": {}
12321
+ },
12322
+ "ProjectDir": {
12323
+ "projectDir": {}
12324
+ },
12325
+ "DynamicProjectConfig": {
12326
+ "getDynamicPublicProjectConfigAsync": {},
12327
+ "getDynamicPrivateProjectConfigAsync": {}
12328
+ },
12329
+ "ProjectConfig": {
12330
+ "loggedIn": {},
12331
+ "privateProjectConfig": {}
12332
+ },
12333
+ "Analytics": {
12334
+ "analytics": {}
12335
+ },
12336
+ "Vcs": {
12337
+ "vcsClient": {}
12338
+ },
12339
+ "ServerSideEnvironmentVariables": {
12340
+ "getServerSideEnvironmentVariablesAsync": {}
12341
+ },
12342
+ "ProjectId": {
12343
+ "projectId": {}
12344
+ }
12345
+ },
12346
+ "contextDefinition": {
12347
+ "loggedIn": {},
12348
+ "privateProjectConfig": {}
12349
+ },
12350
+ "isESM": false,
12351
+ "relativePath": [
12352
+ "build",
12353
+ "commands",
12354
+ "integrations",
12355
+ "posthog",
12356
+ "dashboard.js"
12357
+ ]
12358
+ },
12359
+ "integrations:posthog:disconnect": {
12360
+ "aliases": [],
12361
+ "args": {},
12362
+ "description": "remove the PostHog project link for the current Expo app from EAS servers",
12363
+ "flags": {
12364
+ "json": {
12365
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
12366
+ "name": "json",
12367
+ "allowNo": false,
12368
+ "type": "boolean"
12369
+ },
12370
+ "non-interactive": {
12371
+ "description": "Run the command in non-interactive mode.",
12372
+ "name": "non-interactive",
12373
+ "noCacheDefault": true,
12374
+ "allowNo": false,
12375
+ "type": "boolean"
12376
+ },
12377
+ "yes": {
12378
+ "char": "y",
12379
+ "description": "Skip confirmation prompt",
12380
+ "name": "yes",
12381
+ "allowNo": false,
12382
+ "type": "boolean"
12383
+ }
12384
+ },
12385
+ "hasDynamicHelp": false,
12386
+ "hiddenAliases": [],
12387
+ "id": "integrations:posthog:disconnect",
12388
+ "pluginAlias": "eas-cli",
12389
+ "pluginName": "eas-cli",
12390
+ "pluginType": "core",
12391
+ "strict": true,
12392
+ "enableJsonFlag": false,
12393
+ "ContextOptions": {
12394
+ "LoggedIn": {
12395
+ "loggedIn": {}
12396
+ },
12397
+ "MaybeLoggedIn": {
12398
+ "maybeLoggedIn": {}
12399
+ },
12400
+ "DynamicLoggedIn": {
12401
+ "getDynamicLoggedInAsync": {}
12402
+ },
12403
+ "SessionManagment": {
12404
+ "sessionManager": {}
12405
+ },
12406
+ "OptionalProjectConfig": {
12407
+ "optionalPrivateProjectConfig": {}
12408
+ },
12409
+ "ProjectDir": {
12410
+ "projectDir": {}
12411
+ },
12412
+ "DynamicProjectConfig": {
12413
+ "getDynamicPublicProjectConfigAsync": {},
12414
+ "getDynamicPrivateProjectConfigAsync": {}
12415
+ },
12416
+ "ProjectConfig": {
12417
+ "loggedIn": {},
12418
+ "privateProjectConfig": {}
12419
+ },
12420
+ "Analytics": {
12421
+ "analytics": {}
12422
+ },
12423
+ "Vcs": {
12424
+ "vcsClient": {}
12425
+ },
12426
+ "ServerSideEnvironmentVariables": {
12427
+ "getServerSideEnvironmentVariablesAsync": {}
12428
+ },
12429
+ "ProjectId": {
12430
+ "projectId": {}
12431
+ }
12432
+ },
12433
+ "contextDefinition": {
12434
+ "loggedIn": {},
12435
+ "privateProjectConfig": {}
12436
+ },
12437
+ "isESM": false,
12438
+ "relativePath": [
12439
+ "build",
12440
+ "commands",
12441
+ "integrations",
12442
+ "posthog",
12443
+ "disconnect.js"
12444
+ ]
12445
+ },
12014
12446
  "update:embedded:delete": {
12015
12447
  "aliases": [],
12016
12448
  "args": {
@@ -12676,5 +13108,5 @@
12676
13108
  ]
12677
13109
  }
12678
13110
  },
12679
- "version": "20.1.0"
13111
+ "version": "20.3.0"
12680
13112
  }