eas-cli 18.12.0 → 18.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +100 -100
- package/build/commands/simulator/get.d.ts +13 -0
- package/build/commands/simulator/get.js +60 -0
- package/build/commands/simulator/start.js +11 -20
- package/build/graphql/generated.d.ts +92 -2
- package/build/graphql/generated.js +1 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +12 -0
- package/build/graphql/types/App.js +1 -0
- package/build/simulator/utils.d.ts +5 -0
- package/build/simulator/utils.js +20 -0
- package/oclif.manifest.json +1696 -1614
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -4395,14 +4395,90 @@
|
|
|
4395
4395
|
"index.js"
|
|
4396
4396
|
]
|
|
4397
4397
|
},
|
|
4398
|
-
"
|
|
4398
|
+
"env:create": {
|
|
4399
4399
|
"aliases": [],
|
|
4400
|
-
"args": {
|
|
4401
|
-
|
|
4402
|
-
|
|
4400
|
+
"args": {
|
|
4401
|
+
"environment": {
|
|
4402
|
+
"description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
|
|
4403
|
+
"name": "environment",
|
|
4404
|
+
"required": false
|
|
4405
|
+
}
|
|
4406
|
+
},
|
|
4407
|
+
"description": "create an environment variable for the current project or account",
|
|
4408
|
+
"flags": {
|
|
4409
|
+
"name": {
|
|
4410
|
+
"description": "Name of the variable",
|
|
4411
|
+
"name": "name",
|
|
4412
|
+
"hasDynamicHelp": false,
|
|
4413
|
+
"multiple": false,
|
|
4414
|
+
"type": "option"
|
|
4415
|
+
},
|
|
4416
|
+
"value": {
|
|
4417
|
+
"description": "Text value or the variable",
|
|
4418
|
+
"name": "value",
|
|
4419
|
+
"hasDynamicHelp": false,
|
|
4420
|
+
"multiple": false,
|
|
4421
|
+
"type": "option"
|
|
4422
|
+
},
|
|
4423
|
+
"force": {
|
|
4424
|
+
"description": "Overwrite existing variable",
|
|
4425
|
+
"name": "force",
|
|
4426
|
+
"allowNo": false,
|
|
4427
|
+
"type": "boolean"
|
|
4428
|
+
},
|
|
4429
|
+
"type": {
|
|
4430
|
+
"description": "The type of variable",
|
|
4431
|
+
"name": "type",
|
|
4432
|
+
"hasDynamicHelp": false,
|
|
4433
|
+
"multiple": false,
|
|
4434
|
+
"options": [
|
|
4435
|
+
"string",
|
|
4436
|
+
"file"
|
|
4437
|
+
],
|
|
4438
|
+
"type": "option"
|
|
4439
|
+
},
|
|
4440
|
+
"visibility": {
|
|
4441
|
+
"description": "Visibility of the variable",
|
|
4442
|
+
"name": "visibility",
|
|
4443
|
+
"hasDynamicHelp": false,
|
|
4444
|
+
"multiple": false,
|
|
4445
|
+
"options": [
|
|
4446
|
+
"plaintext",
|
|
4447
|
+
"sensitive",
|
|
4448
|
+
"secret"
|
|
4449
|
+
],
|
|
4450
|
+
"type": "option"
|
|
4451
|
+
},
|
|
4452
|
+
"scope": {
|
|
4453
|
+
"description": "Scope for the variable",
|
|
4454
|
+
"name": "scope",
|
|
4455
|
+
"default": "project",
|
|
4456
|
+
"hasDynamicHelp": false,
|
|
4457
|
+
"multiple": false,
|
|
4458
|
+
"options": [
|
|
4459
|
+
"project",
|
|
4460
|
+
"account"
|
|
4461
|
+
],
|
|
4462
|
+
"type": "option"
|
|
4463
|
+
},
|
|
4464
|
+
"environment": {
|
|
4465
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4466
|
+
"name": "environment",
|
|
4467
|
+
"hasDynamicHelp": false,
|
|
4468
|
+
"multiple": true,
|
|
4469
|
+
"type": "option"
|
|
4470
|
+
},
|
|
4471
|
+
"non-interactive": {
|
|
4472
|
+
"description": "Run the command in non-interactive mode.",
|
|
4473
|
+
"name": "non-interactive",
|
|
4474
|
+
"noCacheDefault": true,
|
|
4475
|
+
"allowNo": false,
|
|
4476
|
+
"type": "boolean"
|
|
4477
|
+
}
|
|
4478
|
+
},
|
|
4403
4479
|
"hasDynamicHelp": false,
|
|
4404
4480
|
"hiddenAliases": [],
|
|
4405
|
-
"id": "
|
|
4481
|
+
"id": "env:create",
|
|
4406
4482
|
"pluginAlias": "eas-cli",
|
|
4407
4483
|
"pluginName": "eas-cli",
|
|
4408
4484
|
"pluginType": "core",
|
|
@@ -4449,41 +4525,54 @@
|
|
|
4449
4525
|
}
|
|
4450
4526
|
},
|
|
4451
4527
|
"contextDefinition": {
|
|
4452
|
-
"
|
|
4453
|
-
"
|
|
4528
|
+
"projectId": {},
|
|
4529
|
+
"analytics": {},
|
|
4530
|
+
"loggedIn": {}
|
|
4454
4531
|
},
|
|
4455
4532
|
"isESM": false,
|
|
4456
4533
|
"relativePath": [
|
|
4457
4534
|
"build",
|
|
4458
4535
|
"commands",
|
|
4459
|
-
"
|
|
4536
|
+
"env",
|
|
4460
4537
|
"create.js"
|
|
4461
4538
|
]
|
|
4462
4539
|
},
|
|
4463
|
-
"
|
|
4540
|
+
"env:delete": {
|
|
4464
4541
|
"aliases": [],
|
|
4465
|
-
"args": {
|
|
4466
|
-
|
|
4542
|
+
"args": {
|
|
4543
|
+
"environment": {
|
|
4544
|
+
"description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
|
|
4545
|
+
"name": "environment",
|
|
4546
|
+
"required": false
|
|
4547
|
+
}
|
|
4548
|
+
},
|
|
4549
|
+
"description": "delete an environment variable for the current project or account",
|
|
4467
4550
|
"flags": {
|
|
4468
|
-
"
|
|
4469
|
-
"description": "
|
|
4470
|
-
"name": "
|
|
4551
|
+
"variable-name": {
|
|
4552
|
+
"description": "Name of the variable to delete",
|
|
4553
|
+
"name": "variable-name",
|
|
4471
4554
|
"hasDynamicHelp": false,
|
|
4472
4555
|
"multiple": false,
|
|
4473
4556
|
"type": "option"
|
|
4474
4557
|
},
|
|
4475
|
-
"
|
|
4476
|
-
"description": "
|
|
4477
|
-
"name": "
|
|
4558
|
+
"variable-environment": {
|
|
4559
|
+
"description": "Current environment of the variable to delete",
|
|
4560
|
+
"name": "variable-environment",
|
|
4478
4561
|
"hasDynamicHelp": false,
|
|
4479
4562
|
"multiple": false,
|
|
4480
4563
|
"type": "option"
|
|
4481
4564
|
},
|
|
4482
|
-
"
|
|
4483
|
-
"description": "
|
|
4484
|
-
"name": "
|
|
4485
|
-
"
|
|
4486
|
-
"
|
|
4565
|
+
"scope": {
|
|
4566
|
+
"description": "Scope for the variable",
|
|
4567
|
+
"name": "scope",
|
|
4568
|
+
"default": "project",
|
|
4569
|
+
"hasDynamicHelp": false,
|
|
4570
|
+
"multiple": false,
|
|
4571
|
+
"options": [
|
|
4572
|
+
"project",
|
|
4573
|
+
"account"
|
|
4574
|
+
],
|
|
4575
|
+
"type": "option"
|
|
4487
4576
|
},
|
|
4488
4577
|
"non-interactive": {
|
|
4489
4578
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4495,7 +4584,7 @@
|
|
|
4495
4584
|
},
|
|
4496
4585
|
"hasDynamicHelp": false,
|
|
4497
4586
|
"hiddenAliases": [],
|
|
4498
|
-
"id": "
|
|
4587
|
+
"id": "env:delete",
|
|
4499
4588
|
"pluginAlias": "eas-cli",
|
|
4500
4589
|
"pluginName": "eas-cli",
|
|
4501
4590
|
"pluginType": "core",
|
|
@@ -4549,41 +4638,26 @@
|
|
|
4549
4638
|
"relativePath": [
|
|
4550
4639
|
"build",
|
|
4551
4640
|
"commands",
|
|
4552
|
-
"
|
|
4641
|
+
"env",
|
|
4553
4642
|
"delete.js"
|
|
4554
4643
|
]
|
|
4555
4644
|
},
|
|
4556
|
-
"
|
|
4645
|
+
"env:exec": {
|
|
4557
4646
|
"aliases": [],
|
|
4558
|
-
"args": {
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
"
|
|
4563
|
-
"hasDynamicHelp": false,
|
|
4564
|
-
"multiple": false,
|
|
4565
|
-
"type": "option"
|
|
4566
|
-
},
|
|
4567
|
-
"offset": {
|
|
4568
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
4569
|
-
"name": "offset",
|
|
4570
|
-
"hasDynamicHelp": false,
|
|
4571
|
-
"multiple": false,
|
|
4572
|
-
"type": "option"
|
|
4573
|
-
},
|
|
4574
|
-
"limit": {
|
|
4575
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
4576
|
-
"name": "limit",
|
|
4577
|
-
"hasDynamicHelp": false,
|
|
4578
|
-
"multiple": false,
|
|
4579
|
-
"type": "option"
|
|
4580
|
-
},
|
|
4581
|
-
"json": {
|
|
4582
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4583
|
-
"name": "json",
|
|
4584
|
-
"allowNo": false,
|
|
4585
|
-
"type": "boolean"
|
|
4647
|
+
"args": {
|
|
4648
|
+
"environment": {
|
|
4649
|
+
"description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
|
|
4650
|
+
"name": "environment",
|
|
4651
|
+
"required": true
|
|
4586
4652
|
},
|
|
4653
|
+
"bash_command": {
|
|
4654
|
+
"description": "bash command to execute with the environment variables from the environment",
|
|
4655
|
+
"name": "bash_command",
|
|
4656
|
+
"required": true
|
|
4657
|
+
}
|
|
4658
|
+
},
|
|
4659
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
4660
|
+
"flags": {
|
|
4587
4661
|
"non-interactive": {
|
|
4588
4662
|
"description": "Run the command in non-interactive mode.",
|
|
4589
4663
|
"name": "non-interactive",
|
|
@@ -4594,7 +4668,7 @@
|
|
|
4594
4668
|
},
|
|
4595
4669
|
"hasDynamicHelp": false,
|
|
4596
4670
|
"hiddenAliases": [],
|
|
4597
|
-
"id": "
|
|
4671
|
+
"id": "env:exec",
|
|
4598
4672
|
"pluginAlias": "eas-cli",
|
|
4599
4673
|
"pluginName": "eas-cli",
|
|
4600
4674
|
"pluginType": "core",
|
|
@@ -4648,41 +4722,58 @@
|
|
|
4648
4722
|
"relativePath": [
|
|
4649
4723
|
"build",
|
|
4650
4724
|
"commands",
|
|
4651
|
-
"
|
|
4652
|
-
"
|
|
4725
|
+
"env",
|
|
4726
|
+
"exec.js"
|
|
4653
4727
|
]
|
|
4654
4728
|
},
|
|
4655
|
-
"
|
|
4729
|
+
"env:get": {
|
|
4656
4730
|
"aliases": [],
|
|
4657
|
-
"args": {
|
|
4658
|
-
|
|
4731
|
+
"args": {
|
|
4732
|
+
"environment": {
|
|
4733
|
+
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
4734
|
+
"name": "environment",
|
|
4735
|
+
"required": false
|
|
4736
|
+
}
|
|
4737
|
+
},
|
|
4738
|
+
"description": "view an environment variable for the current project or account",
|
|
4659
4739
|
"flags": {
|
|
4660
|
-
"
|
|
4661
|
-
"description": "
|
|
4662
|
-
"name": "
|
|
4740
|
+
"variable-name": {
|
|
4741
|
+
"description": "Name of the variable",
|
|
4742
|
+
"name": "variable-name",
|
|
4663
4743
|
"hasDynamicHelp": false,
|
|
4664
4744
|
"multiple": false,
|
|
4665
4745
|
"type": "option"
|
|
4666
4746
|
},
|
|
4667
|
-
"
|
|
4668
|
-
"description": "
|
|
4669
|
-
"name": "
|
|
4747
|
+
"variable-environment": {
|
|
4748
|
+
"description": "Current environment of the variable",
|
|
4749
|
+
"name": "variable-environment",
|
|
4670
4750
|
"hasDynamicHelp": false,
|
|
4671
4751
|
"multiple": false,
|
|
4672
4752
|
"type": "option"
|
|
4673
4753
|
},
|
|
4674
|
-
"
|
|
4675
|
-
"description": "
|
|
4676
|
-
"name": "
|
|
4754
|
+
"format": {
|
|
4755
|
+
"description": "Output format",
|
|
4756
|
+
"name": "format",
|
|
4757
|
+
"default": "short",
|
|
4677
4758
|
"hasDynamicHelp": false,
|
|
4678
4759
|
"multiple": false,
|
|
4760
|
+
"options": [
|
|
4761
|
+
"long",
|
|
4762
|
+
"short"
|
|
4763
|
+
],
|
|
4679
4764
|
"type": "option"
|
|
4680
4765
|
},
|
|
4681
|
-
"
|
|
4682
|
-
"description": "
|
|
4683
|
-
"name": "
|
|
4684
|
-
"
|
|
4685
|
-
"
|
|
4766
|
+
"scope": {
|
|
4767
|
+
"description": "Scope for the variable",
|
|
4768
|
+
"name": "scope",
|
|
4769
|
+
"default": "project",
|
|
4770
|
+
"hasDynamicHelp": false,
|
|
4771
|
+
"multiple": false,
|
|
4772
|
+
"options": [
|
|
4773
|
+
"project",
|
|
4774
|
+
"account"
|
|
4775
|
+
],
|
|
4776
|
+
"type": "option"
|
|
4686
4777
|
},
|
|
4687
4778
|
"non-interactive": {
|
|
4688
4779
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4694,7 +4785,7 @@
|
|
|
4694
4785
|
},
|
|
4695
4786
|
"hasDynamicHelp": false,
|
|
4696
4787
|
"hiddenAliases": [],
|
|
4697
|
-
"id": "
|
|
4788
|
+
"id": "env:get",
|
|
4698
4789
|
"pluginAlias": "eas-cli",
|
|
4699
4790
|
"pluginName": "eas-cli",
|
|
4700
4791
|
"pluginType": "core",
|
|
@@ -4748,130 +4839,49 @@
|
|
|
4748
4839
|
"relativePath": [
|
|
4749
4840
|
"build",
|
|
4750
4841
|
"commands",
|
|
4751
|
-
"
|
|
4752
|
-
"
|
|
4842
|
+
"env",
|
|
4843
|
+
"get.js"
|
|
4753
4844
|
]
|
|
4754
4845
|
},
|
|
4755
|
-
"
|
|
4846
|
+
"env:list": {
|
|
4756
4847
|
"aliases": [],
|
|
4757
4848
|
"args": {
|
|
4758
|
-
"
|
|
4759
|
-
"
|
|
4849
|
+
"environment": {
|
|
4850
|
+
"description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4851
|
+
"name": "environment",
|
|
4852
|
+
"required": false
|
|
4760
4853
|
}
|
|
4761
4854
|
},
|
|
4762
|
-
"description": "
|
|
4763
|
-
"flags": {},
|
|
4764
|
-
"hasDynamicHelp": false,
|
|
4765
|
-
"hiddenAliases": [],
|
|
4766
|
-
"id": "device:view",
|
|
4767
|
-
"pluginAlias": "eas-cli",
|
|
4768
|
-
"pluginName": "eas-cli",
|
|
4769
|
-
"pluginType": "core",
|
|
4770
|
-
"strict": true,
|
|
4771
|
-
"enableJsonFlag": false,
|
|
4772
|
-
"ContextOptions": {
|
|
4773
|
-
"LoggedIn": {
|
|
4774
|
-
"loggedIn": {}
|
|
4775
|
-
},
|
|
4776
|
-
"MaybeLoggedIn": {
|
|
4777
|
-
"maybeLoggedIn": {}
|
|
4778
|
-
},
|
|
4779
|
-
"DynamicLoggedIn": {
|
|
4780
|
-
"getDynamicLoggedInAsync": {}
|
|
4781
|
-
},
|
|
4782
|
-
"SessionManagment": {
|
|
4783
|
-
"sessionManager": {}
|
|
4784
|
-
},
|
|
4785
|
-
"OptionalProjectConfig": {
|
|
4786
|
-
"optionalPrivateProjectConfig": {}
|
|
4787
|
-
},
|
|
4788
|
-
"ProjectDir": {
|
|
4789
|
-
"projectDir": {}
|
|
4790
|
-
},
|
|
4791
|
-
"DynamicProjectConfig": {
|
|
4792
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
4793
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
4794
|
-
},
|
|
4795
|
-
"ProjectConfig": {
|
|
4796
|
-
"loggedIn": {},
|
|
4797
|
-
"privateProjectConfig": {}
|
|
4798
|
-
},
|
|
4799
|
-
"Analytics": {
|
|
4800
|
-
"analytics": {}
|
|
4801
|
-
},
|
|
4802
|
-
"Vcs": {
|
|
4803
|
-
"vcsClient": {}
|
|
4804
|
-
},
|
|
4805
|
-
"ServerSideEnvironmentVariables": {
|
|
4806
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
4807
|
-
},
|
|
4808
|
-
"ProjectId": {
|
|
4809
|
-
"projectId": {}
|
|
4810
|
-
}
|
|
4811
|
-
},
|
|
4812
|
-
"contextDefinition": {
|
|
4813
|
-
"projectId": {},
|
|
4814
|
-
"loggedIn": {}
|
|
4815
|
-
},
|
|
4816
|
-
"isESM": false,
|
|
4817
|
-
"relativePath": [
|
|
4818
|
-
"build",
|
|
4819
|
-
"commands",
|
|
4820
|
-
"device",
|
|
4821
|
-
"view.js"
|
|
4822
|
-
]
|
|
4823
|
-
},
|
|
4824
|
-
"env:create": {
|
|
4825
|
-
"aliases": [],
|
|
4826
|
-
"args": {
|
|
4827
|
-
"environment": {
|
|
4828
|
-
"description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
|
|
4829
|
-
"name": "environment",
|
|
4830
|
-
"required": false
|
|
4831
|
-
}
|
|
4832
|
-
},
|
|
4833
|
-
"description": "create an environment variable for the current project or account",
|
|
4855
|
+
"description": "list environment variables for the current project or account",
|
|
4834
4856
|
"flags": {
|
|
4835
|
-
"
|
|
4836
|
-
"description": "
|
|
4837
|
-
"name": "
|
|
4838
|
-
"
|
|
4839
|
-
"
|
|
4840
|
-
"type": "option"
|
|
4841
|
-
},
|
|
4842
|
-
"value": {
|
|
4843
|
-
"description": "Text value or the variable",
|
|
4844
|
-
"name": "value",
|
|
4845
|
-
"hasDynamicHelp": false,
|
|
4846
|
-
"multiple": false,
|
|
4847
|
-
"type": "option"
|
|
4857
|
+
"include-sensitive": {
|
|
4858
|
+
"description": "Display sensitive values in the output",
|
|
4859
|
+
"name": "include-sensitive",
|
|
4860
|
+
"allowNo": false,
|
|
4861
|
+
"type": "boolean"
|
|
4848
4862
|
},
|
|
4849
|
-
"
|
|
4850
|
-
"description": "
|
|
4851
|
-
"name": "
|
|
4863
|
+
"include-file-content": {
|
|
4864
|
+
"description": "Display files content in the output",
|
|
4865
|
+
"name": "include-file-content",
|
|
4852
4866
|
"allowNo": false,
|
|
4853
4867
|
"type": "boolean"
|
|
4854
4868
|
},
|
|
4855
|
-
"
|
|
4856
|
-
"description": "
|
|
4857
|
-
"name": "
|
|
4869
|
+
"environment": {
|
|
4870
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4871
|
+
"name": "environment",
|
|
4858
4872
|
"hasDynamicHelp": false,
|
|
4859
|
-
"multiple":
|
|
4860
|
-
"options": [
|
|
4861
|
-
"string",
|
|
4862
|
-
"file"
|
|
4863
|
-
],
|
|
4873
|
+
"multiple": true,
|
|
4864
4874
|
"type": "option"
|
|
4865
4875
|
},
|
|
4866
|
-
"
|
|
4867
|
-
"description": "
|
|
4868
|
-
"name": "
|
|
4876
|
+
"format": {
|
|
4877
|
+
"description": "Output format",
|
|
4878
|
+
"name": "format",
|
|
4879
|
+
"default": "short",
|
|
4869
4880
|
"hasDynamicHelp": false,
|
|
4870
4881
|
"multiple": false,
|
|
4871
4882
|
"options": [
|
|
4872
|
-
"
|
|
4873
|
-
"
|
|
4874
|
-
"secret"
|
|
4883
|
+
"long",
|
|
4884
|
+
"short"
|
|
4875
4885
|
],
|
|
4876
4886
|
"type": "option"
|
|
4877
4887
|
},
|
|
@@ -4886,25 +4896,11 @@
|
|
|
4886
4896
|
"account"
|
|
4887
4897
|
],
|
|
4888
4898
|
"type": "option"
|
|
4889
|
-
},
|
|
4890
|
-
"environment": {
|
|
4891
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4892
|
-
"name": "environment",
|
|
4893
|
-
"hasDynamicHelp": false,
|
|
4894
|
-
"multiple": true,
|
|
4895
|
-
"type": "option"
|
|
4896
|
-
},
|
|
4897
|
-
"non-interactive": {
|
|
4898
|
-
"description": "Run the command in non-interactive mode.",
|
|
4899
|
-
"name": "non-interactive",
|
|
4900
|
-
"noCacheDefault": true,
|
|
4901
|
-
"allowNo": false,
|
|
4902
|
-
"type": "boolean"
|
|
4903
4899
|
}
|
|
4904
4900
|
},
|
|
4905
4901
|
"hasDynamicHelp": false,
|
|
4906
4902
|
"hiddenAliases": [],
|
|
4907
|
-
"id": "env:
|
|
4903
|
+
"id": "env:list",
|
|
4908
4904
|
"pluginAlias": "eas-cli",
|
|
4909
4905
|
"pluginName": "eas-cli",
|
|
4910
4906
|
"pluginType": "core",
|
|
@@ -4952,7 +4948,6 @@
|
|
|
4952
4948
|
},
|
|
4953
4949
|
"contextDefinition": {
|
|
4954
4950
|
"projectId": {},
|
|
4955
|
-
"analytics": {},
|
|
4956
4951
|
"loggedIn": {}
|
|
4957
4952
|
},
|
|
4958
4953
|
"isESM": false,
|
|
@@ -4960,57 +4955,46 @@
|
|
|
4960
4955
|
"build",
|
|
4961
4956
|
"commands",
|
|
4962
4957
|
"env",
|
|
4963
|
-
"
|
|
4958
|
+
"list.js"
|
|
4964
4959
|
]
|
|
4965
4960
|
},
|
|
4966
|
-
"env:
|
|
4961
|
+
"env:pull": {
|
|
4967
4962
|
"aliases": [],
|
|
4968
4963
|
"args": {
|
|
4969
4964
|
"environment": {
|
|
4970
|
-
"description": "
|
|
4965
|
+
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4971
4966
|
"name": "environment",
|
|
4972
4967
|
"required": false
|
|
4973
4968
|
}
|
|
4974
4969
|
},
|
|
4975
|
-
"description": "
|
|
4970
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
4976
4971
|
"flags": {
|
|
4977
|
-
"
|
|
4978
|
-
"description": "
|
|
4979
|
-
"name": "
|
|
4980
|
-
"
|
|
4981
|
-
"
|
|
4982
|
-
"type": "
|
|
4972
|
+
"non-interactive": {
|
|
4973
|
+
"description": "Run the command in non-interactive mode.",
|
|
4974
|
+
"name": "non-interactive",
|
|
4975
|
+
"noCacheDefault": true,
|
|
4976
|
+
"allowNo": false,
|
|
4977
|
+
"type": "boolean"
|
|
4983
4978
|
},
|
|
4984
|
-
"
|
|
4985
|
-
"description": "
|
|
4986
|
-
"name": "
|
|
4979
|
+
"environment": {
|
|
4980
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4981
|
+
"name": "environment",
|
|
4987
4982
|
"hasDynamicHelp": false,
|
|
4988
4983
|
"multiple": false,
|
|
4989
4984
|
"type": "option"
|
|
4990
4985
|
},
|
|
4991
|
-
"
|
|
4992
|
-
"description": "
|
|
4993
|
-
"name": "
|
|
4994
|
-
"default": "
|
|
4986
|
+
"path": {
|
|
4987
|
+
"description": "Path to the result `.env` file",
|
|
4988
|
+
"name": "path",
|
|
4989
|
+
"default": ".env.local",
|
|
4995
4990
|
"hasDynamicHelp": false,
|
|
4996
4991
|
"multiple": false,
|
|
4997
|
-
"options": [
|
|
4998
|
-
"project",
|
|
4999
|
-
"account"
|
|
5000
|
-
],
|
|
5001
4992
|
"type": "option"
|
|
5002
|
-
},
|
|
5003
|
-
"non-interactive": {
|
|
5004
|
-
"description": "Run the command in non-interactive mode.",
|
|
5005
|
-
"name": "non-interactive",
|
|
5006
|
-
"noCacheDefault": true,
|
|
5007
|
-
"allowNo": false,
|
|
5008
|
-
"type": "boolean"
|
|
5009
4993
|
}
|
|
5010
4994
|
},
|
|
5011
4995
|
"hasDynamicHelp": false,
|
|
5012
4996
|
"hiddenAliases": [],
|
|
5013
|
-
"id": "env:
|
|
4997
|
+
"id": "env:pull",
|
|
5014
4998
|
"pluginAlias": "eas-cli",
|
|
5015
4999
|
"pluginName": "eas-cli",
|
|
5016
5000
|
"pluginType": "core",
|
|
@@ -5058,43 +5042,53 @@
|
|
|
5058
5042
|
},
|
|
5059
5043
|
"contextDefinition": {
|
|
5060
5044
|
"projectId": {},
|
|
5061
|
-
"loggedIn": {}
|
|
5045
|
+
"loggedIn": {},
|
|
5046
|
+
"projectDir": {}
|
|
5062
5047
|
},
|
|
5063
5048
|
"isESM": false,
|
|
5064
5049
|
"relativePath": [
|
|
5065
5050
|
"build",
|
|
5066
5051
|
"commands",
|
|
5067
5052
|
"env",
|
|
5068
|
-
"
|
|
5053
|
+
"pull.js"
|
|
5069
5054
|
]
|
|
5070
5055
|
},
|
|
5071
|
-
"env:
|
|
5056
|
+
"env:push": {
|
|
5072
5057
|
"aliases": [],
|
|
5073
5058
|
"args": {
|
|
5074
5059
|
"environment": {
|
|
5075
|
-
"description": "Environment to
|
|
5060
|
+
"description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
|
|
5076
5061
|
"name": "environment",
|
|
5077
|
-
"required":
|
|
5078
|
-
},
|
|
5079
|
-
"bash_command": {
|
|
5080
|
-
"description": "bash command to execute with the environment variables from the environment",
|
|
5081
|
-
"name": "bash_command",
|
|
5082
|
-
"required": true
|
|
5062
|
+
"required": false
|
|
5083
5063
|
}
|
|
5084
5064
|
},
|
|
5085
|
-
"description": "
|
|
5065
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
5086
5066
|
"flags": {
|
|
5087
|
-
"
|
|
5088
|
-
"description": "
|
|
5089
|
-
"name": "
|
|
5090
|
-
"
|
|
5067
|
+
"environment": {
|
|
5068
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5069
|
+
"name": "environment",
|
|
5070
|
+
"hasDynamicHelp": false,
|
|
5071
|
+
"multiple": true,
|
|
5072
|
+
"type": "option"
|
|
5073
|
+
},
|
|
5074
|
+
"path": {
|
|
5075
|
+
"description": "Path to the input `.env` file",
|
|
5076
|
+
"name": "path",
|
|
5077
|
+
"default": ".env.local",
|
|
5078
|
+
"hasDynamicHelp": false,
|
|
5079
|
+
"multiple": false,
|
|
5080
|
+
"type": "option"
|
|
5081
|
+
},
|
|
5082
|
+
"force": {
|
|
5083
|
+
"description": "Skip confirmation and automatically override existing variables",
|
|
5084
|
+
"name": "force",
|
|
5091
5085
|
"allowNo": false,
|
|
5092
5086
|
"type": "boolean"
|
|
5093
5087
|
}
|
|
5094
5088
|
},
|
|
5095
5089
|
"hasDynamicHelp": false,
|
|
5096
5090
|
"hiddenAliases": [],
|
|
5097
|
-
"id": "env:
|
|
5091
|
+
"id": "env:push",
|
|
5098
5092
|
"pluginAlias": "eas-cli",
|
|
5099
5093
|
"pluginName": "eas-cli",
|
|
5100
5094
|
"pluginType": "core",
|
|
@@ -5149,56 +5143,88 @@
|
|
|
5149
5143
|
"build",
|
|
5150
5144
|
"commands",
|
|
5151
5145
|
"env",
|
|
5152
|
-
"
|
|
5146
|
+
"push.js"
|
|
5153
5147
|
]
|
|
5154
5148
|
},
|
|
5155
|
-
"env:
|
|
5149
|
+
"env:update": {
|
|
5156
5150
|
"aliases": [],
|
|
5157
5151
|
"args": {
|
|
5158
5152
|
"environment": {
|
|
5159
|
-
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
5153
|
+
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
5160
5154
|
"name": "environment",
|
|
5161
5155
|
"required": false
|
|
5162
5156
|
}
|
|
5163
5157
|
},
|
|
5164
|
-
"description": "
|
|
5158
|
+
"description": "update an environment variable on the current project or account",
|
|
5165
5159
|
"flags": {
|
|
5166
5160
|
"variable-name": {
|
|
5167
|
-
"description": "
|
|
5161
|
+
"description": "Current name of the variable",
|
|
5168
5162
|
"name": "variable-name",
|
|
5169
5163
|
"hasDynamicHelp": false,
|
|
5170
5164
|
"multiple": false,
|
|
5171
5165
|
"type": "option"
|
|
5172
5166
|
},
|
|
5173
5167
|
"variable-environment": {
|
|
5174
|
-
"description": "Current environment of the variable",
|
|
5168
|
+
"description": "Current environment of the variable to update",
|
|
5175
5169
|
"name": "variable-environment",
|
|
5176
5170
|
"hasDynamicHelp": false,
|
|
5177
5171
|
"multiple": false,
|
|
5178
5172
|
"type": "option"
|
|
5179
5173
|
},
|
|
5180
|
-
"
|
|
5181
|
-
"description": "
|
|
5182
|
-
"name": "
|
|
5183
|
-
"default": "short",
|
|
5174
|
+
"name": {
|
|
5175
|
+
"description": "New name of the variable",
|
|
5176
|
+
"name": "name",
|
|
5184
5177
|
"hasDynamicHelp": false,
|
|
5185
5178
|
"multiple": false,
|
|
5186
|
-
"options": [
|
|
5187
|
-
"long",
|
|
5188
|
-
"short"
|
|
5189
|
-
],
|
|
5190
5179
|
"type": "option"
|
|
5191
5180
|
},
|
|
5192
|
-
"
|
|
5193
|
-
"description": "
|
|
5194
|
-
"name": "
|
|
5195
|
-
"default": "project",
|
|
5181
|
+
"value": {
|
|
5182
|
+
"description": "New value or the variable",
|
|
5183
|
+
"name": "value",
|
|
5196
5184
|
"hasDynamicHelp": false,
|
|
5197
5185
|
"multiple": false,
|
|
5198
|
-
"
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5186
|
+
"type": "option"
|
|
5187
|
+
},
|
|
5188
|
+
"type": {
|
|
5189
|
+
"description": "The type of variable",
|
|
5190
|
+
"name": "type",
|
|
5191
|
+
"hasDynamicHelp": false,
|
|
5192
|
+
"multiple": false,
|
|
5193
|
+
"options": [
|
|
5194
|
+
"string",
|
|
5195
|
+
"file"
|
|
5196
|
+
],
|
|
5197
|
+
"type": "option"
|
|
5198
|
+
},
|
|
5199
|
+
"visibility": {
|
|
5200
|
+
"description": "Visibility of the variable",
|
|
5201
|
+
"name": "visibility",
|
|
5202
|
+
"hasDynamicHelp": false,
|
|
5203
|
+
"multiple": false,
|
|
5204
|
+
"options": [
|
|
5205
|
+
"plaintext",
|
|
5206
|
+
"sensitive",
|
|
5207
|
+
"secret"
|
|
5208
|
+
],
|
|
5209
|
+
"type": "option"
|
|
5210
|
+
},
|
|
5211
|
+
"scope": {
|
|
5212
|
+
"description": "Scope for the variable",
|
|
5213
|
+
"name": "scope",
|
|
5214
|
+
"default": "project",
|
|
5215
|
+
"hasDynamicHelp": false,
|
|
5216
|
+
"multiple": false,
|
|
5217
|
+
"options": [
|
|
5218
|
+
"project",
|
|
5219
|
+
"account"
|
|
5220
|
+
],
|
|
5221
|
+
"type": "option"
|
|
5222
|
+
},
|
|
5223
|
+
"environment": {
|
|
5224
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5225
|
+
"name": "environment",
|
|
5226
|
+
"hasDynamicHelp": false,
|
|
5227
|
+
"multiple": true,
|
|
5202
5228
|
"type": "option"
|
|
5203
5229
|
},
|
|
5204
5230
|
"non-interactive": {
|
|
@@ -5211,7 +5237,7 @@
|
|
|
5211
5237
|
},
|
|
5212
5238
|
"hasDynamicHelp": false,
|
|
5213
5239
|
"hiddenAliases": [],
|
|
5214
|
-
"id": "env:
|
|
5240
|
+
"id": "env:update",
|
|
5215
5241
|
"pluginAlias": "eas-cli",
|
|
5216
5242
|
"pluginName": "eas-cli",
|
|
5217
5243
|
"pluginType": "core",
|
|
@@ -5259,6 +5285,7 @@
|
|
|
5259
5285
|
},
|
|
5260
5286
|
"contextDefinition": {
|
|
5261
5287
|
"projectId": {},
|
|
5288
|
+
"analytics": {},
|
|
5262
5289
|
"loggedIn": {}
|
|
5263
5290
|
},
|
|
5264
5291
|
"isESM": false,
|
|
@@ -5266,71 +5293,89 @@
|
|
|
5266
5293
|
"build",
|
|
5267
5294
|
"commands",
|
|
5268
5295
|
"env",
|
|
5269
|
-
"
|
|
5296
|
+
"update.js"
|
|
5270
5297
|
]
|
|
5271
5298
|
},
|
|
5272
|
-
"
|
|
5299
|
+
"fingerprint:compare": {
|
|
5273
5300
|
"aliases": [],
|
|
5274
5301
|
"args": {
|
|
5275
|
-
"
|
|
5276
|
-
"description": "
|
|
5277
|
-
"name": "
|
|
5302
|
+
"hash1": {
|
|
5303
|
+
"description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
|
|
5304
|
+
"name": "hash1",
|
|
5305
|
+
"required": false
|
|
5306
|
+
},
|
|
5307
|
+
"hash2": {
|
|
5308
|
+
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
5309
|
+
"name": "hash2",
|
|
5278
5310
|
"required": false
|
|
5279
5311
|
}
|
|
5280
5312
|
},
|
|
5281
|
-
"description": "
|
|
5313
|
+
"description": "compare fingerprints of the current project, builds, and updates",
|
|
5314
|
+
"examples": [
|
|
5315
|
+
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
5316
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
5317
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
5318
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
5319
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
5320
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
5321
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
5322
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
5323
|
+
],
|
|
5282
5324
|
"flags": {
|
|
5283
|
-
"
|
|
5284
|
-
"
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
"
|
|
5288
|
-
|
|
5289
|
-
"include-file-content": {
|
|
5290
|
-
"description": "Display files content in the output",
|
|
5291
|
-
"name": "include-file-content",
|
|
5292
|
-
"allowNo": false,
|
|
5293
|
-
"type": "boolean"
|
|
5294
|
-
},
|
|
5295
|
-
"environment": {
|
|
5296
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5297
|
-
"name": "environment",
|
|
5325
|
+
"build-id": {
|
|
5326
|
+
"aliases": [
|
|
5327
|
+
"buildId"
|
|
5328
|
+
],
|
|
5329
|
+
"description": "Compare the fingerprint with the build with the specified ID",
|
|
5330
|
+
"name": "build-id",
|
|
5298
5331
|
"hasDynamicHelp": false,
|
|
5299
5332
|
"multiple": true,
|
|
5300
5333
|
"type": "option"
|
|
5301
5334
|
},
|
|
5302
|
-
"
|
|
5303
|
-
"
|
|
5304
|
-
|
|
5305
|
-
"default": "short",
|
|
5306
|
-
"hasDynamicHelp": false,
|
|
5307
|
-
"multiple": false,
|
|
5308
|
-
"options": [
|
|
5309
|
-
"long",
|
|
5310
|
-
"short"
|
|
5335
|
+
"update-id": {
|
|
5336
|
+
"aliases": [
|
|
5337
|
+
"updateId"
|
|
5311
5338
|
],
|
|
5339
|
+
"description": "Compare the fingerprint with the update with the specified ID",
|
|
5340
|
+
"name": "update-id",
|
|
5341
|
+
"hasDynamicHelp": false,
|
|
5342
|
+
"multiple": true,
|
|
5312
5343
|
"type": "option"
|
|
5313
5344
|
},
|
|
5314
|
-
"
|
|
5315
|
-
"description": "
|
|
5316
|
-
"name": "
|
|
5317
|
-
"
|
|
5345
|
+
"open": {
|
|
5346
|
+
"description": "Open the fingerprint comparison in the browser",
|
|
5347
|
+
"name": "open",
|
|
5348
|
+
"allowNo": false,
|
|
5349
|
+
"type": "boolean"
|
|
5350
|
+
},
|
|
5351
|
+
"environment": {
|
|
5352
|
+
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
5353
|
+
"name": "environment",
|
|
5318
5354
|
"hasDynamicHelp": false,
|
|
5319
5355
|
"multiple": false,
|
|
5320
|
-
"options": [
|
|
5321
|
-
"project",
|
|
5322
|
-
"account"
|
|
5323
|
-
],
|
|
5324
5356
|
"type": "option"
|
|
5357
|
+
},
|
|
5358
|
+
"json": {
|
|
5359
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5360
|
+
"name": "json",
|
|
5361
|
+
"allowNo": false,
|
|
5362
|
+
"type": "boolean"
|
|
5363
|
+
},
|
|
5364
|
+
"non-interactive": {
|
|
5365
|
+
"description": "Run the command in non-interactive mode.",
|
|
5366
|
+
"name": "non-interactive",
|
|
5367
|
+
"noCacheDefault": true,
|
|
5368
|
+
"allowNo": false,
|
|
5369
|
+
"type": "boolean"
|
|
5325
5370
|
}
|
|
5326
5371
|
},
|
|
5327
5372
|
"hasDynamicHelp": false,
|
|
5328
5373
|
"hiddenAliases": [],
|
|
5329
|
-
"id": "
|
|
5374
|
+
"id": "fingerprint:compare",
|
|
5330
5375
|
"pluginAlias": "eas-cli",
|
|
5331
5376
|
"pluginName": "eas-cli",
|
|
5332
5377
|
"pluginType": "core",
|
|
5333
|
-
"strict":
|
|
5378
|
+
"strict": false,
|
|
5334
5379
|
"enableJsonFlag": false,
|
|
5335
5380
|
"ContextOptions": {
|
|
5336
5381
|
"LoggedIn": {
|
|
@@ -5374,57 +5419,83 @@
|
|
|
5374
5419
|
},
|
|
5375
5420
|
"contextDefinition": {
|
|
5376
5421
|
"projectId": {},
|
|
5377
|
-
"loggedIn": {}
|
|
5422
|
+
"loggedIn": {},
|
|
5423
|
+
"privateProjectConfig": {},
|
|
5424
|
+
"vcsClient": {},
|
|
5425
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
5378
5426
|
},
|
|
5379
5427
|
"isESM": false,
|
|
5380
5428
|
"relativePath": [
|
|
5381
5429
|
"build",
|
|
5382
5430
|
"commands",
|
|
5383
|
-
"
|
|
5384
|
-
"
|
|
5431
|
+
"fingerprint",
|
|
5432
|
+
"compare.js"
|
|
5385
5433
|
]
|
|
5386
5434
|
},
|
|
5387
|
-
"
|
|
5435
|
+
"fingerprint:generate": {
|
|
5388
5436
|
"aliases": [],
|
|
5389
|
-
"args": {
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5437
|
+
"args": {},
|
|
5438
|
+
"description": "generate fingerprints from the current project",
|
|
5439
|
+
"examples": [
|
|
5440
|
+
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5441
|
+
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5442
|
+
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5443
|
+
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5444
|
+
],
|
|
5397
5445
|
"flags": {
|
|
5398
|
-
"
|
|
5399
|
-
"
|
|
5400
|
-
"name": "
|
|
5401
|
-
"
|
|
5402
|
-
"
|
|
5403
|
-
"
|
|
5446
|
+
"platform": {
|
|
5447
|
+
"char": "p",
|
|
5448
|
+
"name": "platform",
|
|
5449
|
+
"hasDynamicHelp": false,
|
|
5450
|
+
"multiple": false,
|
|
5451
|
+
"options": [
|
|
5452
|
+
"android",
|
|
5453
|
+
"ios"
|
|
5454
|
+
],
|
|
5455
|
+
"type": "option"
|
|
5404
5456
|
},
|
|
5405
5457
|
"environment": {
|
|
5406
5458
|
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5459
|
+
"exclusive": [
|
|
5460
|
+
"build-profile"
|
|
5461
|
+
],
|
|
5407
5462
|
"name": "environment",
|
|
5408
5463
|
"hasDynamicHelp": false,
|
|
5409
5464
|
"multiple": false,
|
|
5410
5465
|
"type": "option"
|
|
5411
5466
|
},
|
|
5412
|
-
"
|
|
5413
|
-
"
|
|
5414
|
-
"
|
|
5415
|
-
"
|
|
5467
|
+
"build-profile": {
|
|
5468
|
+
"char": "e",
|
|
5469
|
+
"description": "Name of the build profile from eas.json.",
|
|
5470
|
+
"exclusive": [
|
|
5471
|
+
"environment"
|
|
5472
|
+
],
|
|
5473
|
+
"name": "build-profile",
|
|
5416
5474
|
"hasDynamicHelp": false,
|
|
5417
5475
|
"multiple": false,
|
|
5418
5476
|
"type": "option"
|
|
5477
|
+
},
|
|
5478
|
+
"json": {
|
|
5479
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5480
|
+
"name": "json",
|
|
5481
|
+
"allowNo": false,
|
|
5482
|
+
"type": "boolean"
|
|
5483
|
+
},
|
|
5484
|
+
"non-interactive": {
|
|
5485
|
+
"description": "Run the command in non-interactive mode.",
|
|
5486
|
+
"name": "non-interactive",
|
|
5487
|
+
"noCacheDefault": true,
|
|
5488
|
+
"allowNo": false,
|
|
5489
|
+
"type": "boolean"
|
|
5419
5490
|
}
|
|
5420
5491
|
},
|
|
5421
5492
|
"hasDynamicHelp": false,
|
|
5422
5493
|
"hiddenAliases": [],
|
|
5423
|
-
"id": "
|
|
5494
|
+
"id": "fingerprint:generate",
|
|
5424
5495
|
"pluginAlias": "eas-cli",
|
|
5425
5496
|
"pluginName": "eas-cli",
|
|
5426
5497
|
"pluginType": "core",
|
|
5427
|
-
"strict":
|
|
5498
|
+
"strict": false,
|
|
5428
5499
|
"enableJsonFlag": false,
|
|
5429
5500
|
"ContextOptions": {
|
|
5430
5501
|
"LoggedIn": {
|
|
@@ -5469,52 +5540,28 @@
|
|
|
5469
5540
|
"contextDefinition": {
|
|
5470
5541
|
"projectId": {},
|
|
5471
5542
|
"loggedIn": {},
|
|
5472
|
-
"
|
|
5543
|
+
"privateProjectConfig": {},
|
|
5544
|
+
"vcsClient": {},
|
|
5545
|
+
"getServerSideEnvironmentVariablesAsync": {},
|
|
5546
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5547
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5473
5548
|
},
|
|
5474
5549
|
"isESM": false,
|
|
5475
5550
|
"relativePath": [
|
|
5476
5551
|
"build",
|
|
5477
5552
|
"commands",
|
|
5478
|
-
"
|
|
5479
|
-
"
|
|
5553
|
+
"fingerprint",
|
|
5554
|
+
"generate.js"
|
|
5480
5555
|
]
|
|
5481
5556
|
},
|
|
5482
|
-
"
|
|
5557
|
+
"device:create": {
|
|
5483
5558
|
"aliases": [],
|
|
5484
|
-
"args": {
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
"name": "environment",
|
|
5488
|
-
"required": false
|
|
5489
|
-
}
|
|
5490
|
-
},
|
|
5491
|
-
"description": "push environment variables from .env file to the selected environment",
|
|
5492
|
-
"flags": {
|
|
5493
|
-
"environment": {
|
|
5494
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5495
|
-
"name": "environment",
|
|
5496
|
-
"hasDynamicHelp": false,
|
|
5497
|
-
"multiple": true,
|
|
5498
|
-
"type": "option"
|
|
5499
|
-
},
|
|
5500
|
-
"path": {
|
|
5501
|
-
"description": "Path to the input `.env` file",
|
|
5502
|
-
"name": "path",
|
|
5503
|
-
"default": ".env.local",
|
|
5504
|
-
"hasDynamicHelp": false,
|
|
5505
|
-
"multiple": false,
|
|
5506
|
-
"type": "option"
|
|
5507
|
-
},
|
|
5508
|
-
"force": {
|
|
5509
|
-
"description": "Skip confirmation and automatically override existing variables",
|
|
5510
|
-
"name": "force",
|
|
5511
|
-
"allowNo": false,
|
|
5512
|
-
"type": "boolean"
|
|
5513
|
-
}
|
|
5514
|
-
},
|
|
5559
|
+
"args": {},
|
|
5560
|
+
"description": "register new Apple Devices to use for internal distribution",
|
|
5561
|
+
"flags": {},
|
|
5515
5562
|
"hasDynamicHelp": false,
|
|
5516
5563
|
"hiddenAliases": [],
|
|
5517
|
-
"id": "
|
|
5564
|
+
"id": "device:create",
|
|
5518
5565
|
"pluginAlias": "eas-cli",
|
|
5519
5566
|
"pluginName": "eas-cli",
|
|
5520
5567
|
"pluginType": "core",
|
|
@@ -5561,97 +5608,41 @@
|
|
|
5561
5608
|
}
|
|
5562
5609
|
},
|
|
5563
5610
|
"contextDefinition": {
|
|
5564
|
-
"
|
|
5565
|
-
"
|
|
5611
|
+
"loggedIn": {},
|
|
5612
|
+
"optionalPrivateProjectConfig": {}
|
|
5566
5613
|
},
|
|
5567
5614
|
"isESM": false,
|
|
5568
5615
|
"relativePath": [
|
|
5569
5616
|
"build",
|
|
5570
5617
|
"commands",
|
|
5571
|
-
"
|
|
5572
|
-
"
|
|
5618
|
+
"device",
|
|
5619
|
+
"create.js"
|
|
5573
5620
|
]
|
|
5574
5621
|
},
|
|
5575
|
-
"
|
|
5622
|
+
"device:delete": {
|
|
5576
5623
|
"aliases": [],
|
|
5577
|
-
"args": {
|
|
5578
|
-
|
|
5579
|
-
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
5580
|
-
"name": "environment",
|
|
5581
|
-
"required": false
|
|
5582
|
-
}
|
|
5583
|
-
},
|
|
5584
|
-
"description": "update an environment variable on the current project or account",
|
|
5624
|
+
"args": {},
|
|
5625
|
+
"description": "remove a registered device from your account",
|
|
5585
5626
|
"flags": {
|
|
5586
|
-
"
|
|
5587
|
-
"description": "
|
|
5588
|
-
"name": "
|
|
5589
|
-
"hasDynamicHelp": false,
|
|
5590
|
-
"multiple": false,
|
|
5591
|
-
"type": "option"
|
|
5592
|
-
},
|
|
5593
|
-
"variable-environment": {
|
|
5594
|
-
"description": "Current environment of the variable to update",
|
|
5595
|
-
"name": "variable-environment",
|
|
5596
|
-
"hasDynamicHelp": false,
|
|
5597
|
-
"multiple": false,
|
|
5598
|
-
"type": "option"
|
|
5599
|
-
},
|
|
5600
|
-
"name": {
|
|
5601
|
-
"description": "New name of the variable",
|
|
5602
|
-
"name": "name",
|
|
5603
|
-
"hasDynamicHelp": false,
|
|
5604
|
-
"multiple": false,
|
|
5605
|
-
"type": "option"
|
|
5606
|
-
},
|
|
5607
|
-
"value": {
|
|
5608
|
-
"description": "New value or the variable",
|
|
5609
|
-
"name": "value",
|
|
5610
|
-
"hasDynamicHelp": false,
|
|
5611
|
-
"multiple": false,
|
|
5612
|
-
"type": "option"
|
|
5613
|
-
},
|
|
5614
|
-
"type": {
|
|
5615
|
-
"description": "The type of variable",
|
|
5616
|
-
"name": "type",
|
|
5617
|
-
"hasDynamicHelp": false,
|
|
5618
|
-
"multiple": false,
|
|
5619
|
-
"options": [
|
|
5620
|
-
"string",
|
|
5621
|
-
"file"
|
|
5622
|
-
],
|
|
5623
|
-
"type": "option"
|
|
5624
|
-
},
|
|
5625
|
-
"visibility": {
|
|
5626
|
-
"description": "Visibility of the variable",
|
|
5627
|
-
"name": "visibility",
|
|
5627
|
+
"apple-team-id": {
|
|
5628
|
+
"description": "The Apple team ID on which to find the device",
|
|
5629
|
+
"name": "apple-team-id",
|
|
5628
5630
|
"hasDynamicHelp": false,
|
|
5629
5631
|
"multiple": false,
|
|
5630
|
-
"options": [
|
|
5631
|
-
"plaintext",
|
|
5632
|
-
"sensitive",
|
|
5633
|
-
"secret"
|
|
5634
|
-
],
|
|
5635
5632
|
"type": "option"
|
|
5636
5633
|
},
|
|
5637
|
-
"
|
|
5638
|
-
"description": "
|
|
5639
|
-
"name": "
|
|
5640
|
-
"default": "project",
|
|
5634
|
+
"udid": {
|
|
5635
|
+
"description": "The Apple device ID to disable",
|
|
5636
|
+
"name": "udid",
|
|
5641
5637
|
"hasDynamicHelp": false,
|
|
5642
5638
|
"multiple": false,
|
|
5643
|
-
"options": [
|
|
5644
|
-
"project",
|
|
5645
|
-
"account"
|
|
5646
|
-
],
|
|
5647
5639
|
"type": "option"
|
|
5648
5640
|
},
|
|
5649
|
-
"
|
|
5650
|
-
"description": "
|
|
5651
|
-
"name": "
|
|
5652
|
-
"
|
|
5653
|
-
"
|
|
5654
|
-
"type": "option"
|
|
5641
|
+
"json": {
|
|
5642
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5643
|
+
"name": "json",
|
|
5644
|
+
"allowNo": false,
|
|
5645
|
+
"type": "boolean"
|
|
5655
5646
|
},
|
|
5656
5647
|
"non-interactive": {
|
|
5657
5648
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -5663,7 +5654,7 @@
|
|
|
5663
5654
|
},
|
|
5664
5655
|
"hasDynamicHelp": false,
|
|
5665
5656
|
"hiddenAliases": [],
|
|
5666
|
-
"id": "
|
|
5657
|
+
"id": "device:delete",
|
|
5667
5658
|
"pluginAlias": "eas-cli",
|
|
5668
5659
|
"pluginName": "eas-cli",
|
|
5669
5660
|
"pluginType": "core",
|
|
@@ -5711,72 +5702,37 @@
|
|
|
5711
5702
|
},
|
|
5712
5703
|
"contextDefinition": {
|
|
5713
5704
|
"projectId": {},
|
|
5714
|
-
"analytics": {},
|
|
5715
5705
|
"loggedIn": {}
|
|
5716
5706
|
},
|
|
5717
5707
|
"isESM": false,
|
|
5718
5708
|
"relativePath": [
|
|
5719
5709
|
"build",
|
|
5720
5710
|
"commands",
|
|
5721
|
-
"
|
|
5722
|
-
"
|
|
5711
|
+
"device",
|
|
5712
|
+
"delete.js"
|
|
5723
5713
|
]
|
|
5724
5714
|
},
|
|
5725
|
-
"
|
|
5715
|
+
"device:list": {
|
|
5726
5716
|
"aliases": [],
|
|
5727
|
-
"args": {
|
|
5728
|
-
|
|
5729
|
-
"description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
|
|
5730
|
-
"name": "hash1",
|
|
5731
|
-
"required": false
|
|
5732
|
-
},
|
|
5733
|
-
"hash2": {
|
|
5734
|
-
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
5735
|
-
"name": "hash2",
|
|
5736
|
-
"required": false
|
|
5737
|
-
}
|
|
5738
|
-
},
|
|
5739
|
-
"description": "compare fingerprints of the current project, builds, and updates",
|
|
5740
|
-
"examples": [
|
|
5741
|
-
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
5742
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
5743
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
5744
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
5745
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
5746
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
5747
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
5748
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
5749
|
-
],
|
|
5717
|
+
"args": {},
|
|
5718
|
+
"description": "list all registered devices for your account",
|
|
5750
5719
|
"flags": {
|
|
5751
|
-
"
|
|
5752
|
-
"
|
|
5753
|
-
"buildId"
|
|
5754
|
-
],
|
|
5755
|
-
"description": "Compare the fingerprint with the build with the specified ID",
|
|
5756
|
-
"name": "build-id",
|
|
5720
|
+
"apple-team-id": {
|
|
5721
|
+
"name": "apple-team-id",
|
|
5757
5722
|
"hasDynamicHelp": false,
|
|
5758
|
-
"multiple":
|
|
5723
|
+
"multiple": false,
|
|
5759
5724
|
"type": "option"
|
|
5760
5725
|
},
|
|
5761
|
-
"
|
|
5762
|
-
"
|
|
5763
|
-
|
|
5764
|
-
],
|
|
5765
|
-
"description": "Compare the fingerprint with the update with the specified ID",
|
|
5766
|
-
"name": "update-id",
|
|
5726
|
+
"offset": {
|
|
5727
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
5728
|
+
"name": "offset",
|
|
5767
5729
|
"hasDynamicHelp": false,
|
|
5768
|
-
"multiple":
|
|
5730
|
+
"multiple": false,
|
|
5769
5731
|
"type": "option"
|
|
5770
5732
|
},
|
|
5771
|
-
"
|
|
5772
|
-
"description": "
|
|
5773
|
-
"name": "
|
|
5774
|
-
"allowNo": false,
|
|
5775
|
-
"type": "boolean"
|
|
5776
|
-
},
|
|
5777
|
-
"environment": {
|
|
5778
|
-
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
5779
|
-
"name": "environment",
|
|
5733
|
+
"limit": {
|
|
5734
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
5735
|
+
"name": "limit",
|
|
5780
5736
|
"hasDynamicHelp": false,
|
|
5781
5737
|
"multiple": false,
|
|
5782
5738
|
"type": "option"
|
|
@@ -5797,11 +5753,11 @@
|
|
|
5797
5753
|
},
|
|
5798
5754
|
"hasDynamicHelp": false,
|
|
5799
5755
|
"hiddenAliases": [],
|
|
5800
|
-
"id": "
|
|
5756
|
+
"id": "device:list",
|
|
5801
5757
|
"pluginAlias": "eas-cli",
|
|
5802
5758
|
"pluginName": "eas-cli",
|
|
5803
5759
|
"pluginType": "core",
|
|
5804
|
-
"strict":
|
|
5760
|
+
"strict": true,
|
|
5805
5761
|
"enableJsonFlag": false,
|
|
5806
5762
|
"ContextOptions": {
|
|
5807
5763
|
"LoggedIn": {
|
|
@@ -5845,58 +5801,38 @@
|
|
|
5845
5801
|
},
|
|
5846
5802
|
"contextDefinition": {
|
|
5847
5803
|
"projectId": {},
|
|
5848
|
-
"loggedIn": {}
|
|
5849
|
-
"privateProjectConfig": {},
|
|
5850
|
-
"vcsClient": {},
|
|
5851
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
5804
|
+
"loggedIn": {}
|
|
5852
5805
|
},
|
|
5853
5806
|
"isESM": false,
|
|
5854
5807
|
"relativePath": [
|
|
5855
5808
|
"build",
|
|
5856
5809
|
"commands",
|
|
5857
|
-
"
|
|
5858
|
-
"
|
|
5810
|
+
"device",
|
|
5811
|
+
"list.js"
|
|
5859
5812
|
]
|
|
5860
5813
|
},
|
|
5861
|
-
"
|
|
5814
|
+
"device:rename": {
|
|
5862
5815
|
"aliases": [],
|
|
5863
5816
|
"args": {},
|
|
5864
|
-
"description": "
|
|
5865
|
-
"examples": [
|
|
5866
|
-
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5867
|
-
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5868
|
-
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5869
|
-
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5870
|
-
],
|
|
5817
|
+
"description": "rename a registered device",
|
|
5871
5818
|
"flags": {
|
|
5872
|
-
"
|
|
5873
|
-
"
|
|
5874
|
-
"name": "
|
|
5819
|
+
"apple-team-id": {
|
|
5820
|
+
"description": "The Apple team ID on which to find the device",
|
|
5821
|
+
"name": "apple-team-id",
|
|
5875
5822
|
"hasDynamicHelp": false,
|
|
5876
5823
|
"multiple": false,
|
|
5877
|
-
"options": [
|
|
5878
|
-
"android",
|
|
5879
|
-
"ios"
|
|
5880
|
-
],
|
|
5881
5824
|
"type": "option"
|
|
5882
5825
|
},
|
|
5883
|
-
"
|
|
5884
|
-
"description": "
|
|
5885
|
-
"
|
|
5886
|
-
"build-profile"
|
|
5887
|
-
],
|
|
5888
|
-
"name": "environment",
|
|
5826
|
+
"udid": {
|
|
5827
|
+
"description": "The Apple device ID to rename",
|
|
5828
|
+
"name": "udid",
|
|
5889
5829
|
"hasDynamicHelp": false,
|
|
5890
5830
|
"multiple": false,
|
|
5891
5831
|
"type": "option"
|
|
5892
5832
|
},
|
|
5893
|
-
"
|
|
5894
|
-
"
|
|
5895
|
-
"
|
|
5896
|
-
"exclusive": [
|
|
5897
|
-
"environment"
|
|
5898
|
-
],
|
|
5899
|
-
"name": "build-profile",
|
|
5833
|
+
"name": {
|
|
5834
|
+
"description": "The new name for the device",
|
|
5835
|
+
"name": "name",
|
|
5900
5836
|
"hasDynamicHelp": false,
|
|
5901
5837
|
"multiple": false,
|
|
5902
5838
|
"type": "option"
|
|
@@ -5917,11 +5853,11 @@
|
|
|
5917
5853
|
},
|
|
5918
5854
|
"hasDynamicHelp": false,
|
|
5919
5855
|
"hiddenAliases": [],
|
|
5920
|
-
"id": "
|
|
5856
|
+
"id": "device:rename",
|
|
5921
5857
|
"pluginAlias": "eas-cli",
|
|
5922
5858
|
"pluginName": "eas-cli",
|
|
5923
5859
|
"pluginType": "core",
|
|
5924
|
-
"strict":
|
|
5860
|
+
"strict": true,
|
|
5925
5861
|
"enableJsonFlag": false,
|
|
5926
5862
|
"ContextOptions": {
|
|
5927
5863
|
"LoggedIn": {
|
|
@@ -5965,149 +5901,28 @@
|
|
|
5965
5901
|
},
|
|
5966
5902
|
"contextDefinition": {
|
|
5967
5903
|
"projectId": {},
|
|
5968
|
-
"loggedIn": {}
|
|
5969
|
-
"privateProjectConfig": {},
|
|
5970
|
-
"vcsClient": {},
|
|
5971
|
-
"getServerSideEnvironmentVariablesAsync": {},
|
|
5972
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5973
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5904
|
+
"loggedIn": {}
|
|
5974
5905
|
},
|
|
5975
5906
|
"isESM": false,
|
|
5976
5907
|
"relativePath": [
|
|
5977
5908
|
"build",
|
|
5978
5909
|
"commands",
|
|
5979
|
-
"
|
|
5980
|
-
"
|
|
5910
|
+
"device",
|
|
5911
|
+
"rename.js"
|
|
5981
5912
|
]
|
|
5982
5913
|
},
|
|
5983
|
-
"
|
|
5914
|
+
"device:view": {
|
|
5984
5915
|
"aliases": [],
|
|
5985
5916
|
"args": {
|
|
5986
|
-
"
|
|
5987
|
-
"
|
|
5988
|
-
"name": "metric",
|
|
5989
|
-
"options": [
|
|
5990
|
-
"tti",
|
|
5991
|
-
"ttr",
|
|
5992
|
-
"cold_launch",
|
|
5993
|
-
"warm_launch",
|
|
5994
|
-
"bundle_load"
|
|
5995
|
-
],
|
|
5996
|
-
"required": false
|
|
5997
|
-
}
|
|
5998
|
-
},
|
|
5999
|
-
"description": "display individual app performance events ordered by metric value",
|
|
6000
|
-
"flags": {
|
|
6001
|
-
"sort": {
|
|
6002
|
-
"description": "Sort order for events",
|
|
6003
|
-
"name": "sort",
|
|
6004
|
-
"required": false,
|
|
6005
|
-
"default": "oldest",
|
|
6006
|
-
"hasDynamicHelp": false,
|
|
6007
|
-
"multiple": false,
|
|
6008
|
-
"options": [
|
|
6009
|
-
"slowest",
|
|
6010
|
-
"fastest",
|
|
6011
|
-
"newest",
|
|
6012
|
-
"oldest"
|
|
6013
|
-
],
|
|
6014
|
-
"type": "option"
|
|
6015
|
-
},
|
|
6016
|
-
"platform": {
|
|
6017
|
-
"description": "Filter by platform",
|
|
6018
|
-
"name": "platform",
|
|
6019
|
-
"hasDynamicHelp": false,
|
|
6020
|
-
"multiple": false,
|
|
6021
|
-
"options": [
|
|
6022
|
-
"android",
|
|
6023
|
-
"ios"
|
|
6024
|
-
],
|
|
6025
|
-
"type": "option"
|
|
6026
|
-
},
|
|
6027
|
-
"after": {
|
|
6028
|
-
"description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
|
|
6029
|
-
"name": "after",
|
|
6030
|
-
"hasDynamicHelp": false,
|
|
6031
|
-
"multiple": false,
|
|
6032
|
-
"type": "option"
|
|
6033
|
-
},
|
|
6034
|
-
"limit": {
|
|
6035
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
6036
|
-
"name": "limit",
|
|
6037
|
-
"hasDynamicHelp": false,
|
|
6038
|
-
"multiple": false,
|
|
6039
|
-
"type": "option"
|
|
6040
|
-
},
|
|
6041
|
-
"start": {
|
|
6042
|
-
"description": "Start of time range (ISO date)",
|
|
6043
|
-
"exclusive": [
|
|
6044
|
-
"days"
|
|
6045
|
-
],
|
|
6046
|
-
"name": "start",
|
|
6047
|
-
"hasDynamicHelp": false,
|
|
6048
|
-
"multiple": false,
|
|
6049
|
-
"type": "option"
|
|
6050
|
-
},
|
|
6051
|
-
"end": {
|
|
6052
|
-
"description": "End of time range (ISO date)",
|
|
6053
|
-
"exclusive": [
|
|
6054
|
-
"days"
|
|
6055
|
-
],
|
|
6056
|
-
"name": "end",
|
|
6057
|
-
"hasDynamicHelp": false,
|
|
6058
|
-
"multiple": false,
|
|
6059
|
-
"type": "option"
|
|
6060
|
-
},
|
|
6061
|
-
"days": {
|
|
6062
|
-
"description": "Show events from the last N days (mutually exclusive with --start/--end)",
|
|
6063
|
-
"exclusive": [
|
|
6064
|
-
"start",
|
|
6065
|
-
"end"
|
|
6066
|
-
],
|
|
6067
|
-
"name": "days",
|
|
6068
|
-
"hasDynamicHelp": false,
|
|
6069
|
-
"multiple": false,
|
|
6070
|
-
"type": "option"
|
|
6071
|
-
},
|
|
6072
|
-
"app-version": {
|
|
6073
|
-
"description": "Filter by app version",
|
|
6074
|
-
"name": "app-version",
|
|
6075
|
-
"hasDynamicHelp": false,
|
|
6076
|
-
"multiple": false,
|
|
6077
|
-
"type": "option"
|
|
6078
|
-
},
|
|
6079
|
-
"update-id": {
|
|
6080
|
-
"description": "Filter by EAS update ID",
|
|
6081
|
-
"name": "update-id",
|
|
6082
|
-
"hasDynamicHelp": false,
|
|
6083
|
-
"multiple": false,
|
|
6084
|
-
"type": "option"
|
|
6085
|
-
},
|
|
6086
|
-
"project-id": {
|
|
6087
|
-
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6088
|
-
"name": "project-id",
|
|
6089
|
-
"hasDynamicHelp": false,
|
|
6090
|
-
"multiple": false,
|
|
6091
|
-
"type": "option"
|
|
6092
|
-
},
|
|
6093
|
-
"json": {
|
|
6094
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6095
|
-
"name": "json",
|
|
6096
|
-
"allowNo": false,
|
|
6097
|
-
"type": "boolean"
|
|
6098
|
-
},
|
|
6099
|
-
"non-interactive": {
|
|
6100
|
-
"description": "Run the command in non-interactive mode.",
|
|
6101
|
-
"name": "non-interactive",
|
|
6102
|
-
"noCacheDefault": true,
|
|
6103
|
-
"allowNo": false,
|
|
6104
|
-
"type": "boolean"
|
|
5917
|
+
"UDID": {
|
|
5918
|
+
"name": "UDID"
|
|
6105
5919
|
}
|
|
6106
5920
|
},
|
|
5921
|
+
"description": "view a device for your project",
|
|
5922
|
+
"flags": {},
|
|
6107
5923
|
"hasDynamicHelp": false,
|
|
6108
|
-
"hidden": true,
|
|
6109
5924
|
"hiddenAliases": [],
|
|
6110
|
-
"id": "
|
|
5925
|
+
"id": "device:view",
|
|
6111
5926
|
"pluginAlias": "eas-cli",
|
|
6112
5927
|
"pluginName": "eas-cli",
|
|
6113
5928
|
"pluginType": "core",
|
|
@@ -6157,136 +5972,36 @@
|
|
|
6157
5972
|
"projectId": {},
|
|
6158
5973
|
"loggedIn": {}
|
|
6159
5974
|
},
|
|
6160
|
-
"loggedInOnlyContextDefinition": {
|
|
6161
|
-
"loggedIn": {}
|
|
6162
|
-
},
|
|
6163
5975
|
"isESM": false,
|
|
6164
5976
|
"relativePath": [
|
|
6165
5977
|
"build",
|
|
6166
5978
|
"commands",
|
|
6167
|
-
"
|
|
6168
|
-
"
|
|
5979
|
+
"device",
|
|
5980
|
+
"view.js"
|
|
6169
5981
|
]
|
|
6170
5982
|
},
|
|
6171
|
-
"
|
|
5983
|
+
"metadata:lint": {
|
|
6172
5984
|
"aliases": [],
|
|
6173
|
-
"args": {
|
|
6174
|
-
|
|
6175
|
-
"description": "Custom event name to filter by",
|
|
6176
|
-
"name": "eventName",
|
|
6177
|
-
"required": false
|
|
6178
|
-
}
|
|
6179
|
-
},
|
|
6180
|
-
"description": "display individual custom events (logs) emitted by the app, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.",
|
|
5985
|
+
"args": {},
|
|
5986
|
+
"description": "validate the local store configuration",
|
|
6181
5987
|
"flags": {
|
|
6182
|
-
"
|
|
6183
|
-
"description": "
|
|
6184
|
-
"name": "
|
|
6185
|
-
"hasDynamicHelp": false,
|
|
6186
|
-
"multiple": false,
|
|
6187
|
-
"options": [
|
|
6188
|
-
"android",
|
|
6189
|
-
"ios"
|
|
6190
|
-
],
|
|
6191
|
-
"type": "option"
|
|
6192
|
-
},
|
|
6193
|
-
"after": {
|
|
6194
|
-
"description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
|
|
6195
|
-
"name": "after",
|
|
6196
|
-
"hasDynamicHelp": false,
|
|
6197
|
-
"multiple": false,
|
|
6198
|
-
"type": "option"
|
|
6199
|
-
},
|
|
6200
|
-
"limit": {
|
|
6201
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
6202
|
-
"name": "limit",
|
|
6203
|
-
"hasDynamicHelp": false,
|
|
6204
|
-
"multiple": false,
|
|
6205
|
-
"type": "option"
|
|
6206
|
-
},
|
|
6207
|
-
"start": {
|
|
6208
|
-
"description": "Start of time range (ISO date)",
|
|
6209
|
-
"exclusive": [
|
|
6210
|
-
"days"
|
|
6211
|
-
],
|
|
6212
|
-
"name": "start",
|
|
6213
|
-
"hasDynamicHelp": false,
|
|
6214
|
-
"multiple": false,
|
|
6215
|
-
"type": "option"
|
|
6216
|
-
},
|
|
6217
|
-
"end": {
|
|
6218
|
-
"description": "End of time range (ISO date)",
|
|
6219
|
-
"exclusive": [
|
|
6220
|
-
"days"
|
|
6221
|
-
],
|
|
6222
|
-
"name": "end",
|
|
6223
|
-
"hasDynamicHelp": false,
|
|
6224
|
-
"multiple": false,
|
|
6225
|
-
"type": "option"
|
|
6226
|
-
},
|
|
6227
|
-
"days": {
|
|
6228
|
-
"description": "Show events from the last N days (mutually exclusive with --start/--end)",
|
|
6229
|
-
"exclusive": [
|
|
6230
|
-
"start",
|
|
6231
|
-
"end"
|
|
6232
|
-
],
|
|
6233
|
-
"name": "days",
|
|
6234
|
-
"hasDynamicHelp": false,
|
|
6235
|
-
"multiple": false,
|
|
6236
|
-
"type": "option"
|
|
6237
|
-
},
|
|
6238
|
-
"app-version": {
|
|
6239
|
-
"description": "Filter by app version",
|
|
6240
|
-
"name": "app-version",
|
|
6241
|
-
"hasDynamicHelp": false,
|
|
6242
|
-
"multiple": false,
|
|
6243
|
-
"type": "option"
|
|
6244
|
-
},
|
|
6245
|
-
"update-id": {
|
|
6246
|
-
"description": "Filter by EAS update ID",
|
|
6247
|
-
"name": "update-id",
|
|
6248
|
-
"hasDynamicHelp": false,
|
|
6249
|
-
"multiple": false,
|
|
6250
|
-
"type": "option"
|
|
6251
|
-
},
|
|
6252
|
-
"session-id": {
|
|
6253
|
-
"description": "Filter by session ID",
|
|
6254
|
-
"name": "session-id",
|
|
6255
|
-
"hasDynamicHelp": false,
|
|
6256
|
-
"multiple": false,
|
|
6257
|
-
"type": "option"
|
|
6258
|
-
},
|
|
6259
|
-
"all-events": {
|
|
6260
|
-
"description": "When no event name argument is provided, list all events across all event names instead of a summary of event names + counts.",
|
|
6261
|
-
"name": "all-events",
|
|
5988
|
+
"json": {
|
|
5989
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr",
|
|
5990
|
+
"name": "json",
|
|
6262
5991
|
"allowNo": false,
|
|
6263
5992
|
"type": "boolean"
|
|
6264
5993
|
},
|
|
6265
|
-
"
|
|
6266
|
-
"description": "
|
|
6267
|
-
"name": "
|
|
5994
|
+
"profile": {
|
|
5995
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
5996
|
+
"name": "profile",
|
|
6268
5997
|
"hasDynamicHelp": false,
|
|
6269
5998
|
"multiple": false,
|
|
6270
5999
|
"type": "option"
|
|
6271
|
-
},
|
|
6272
|
-
"json": {
|
|
6273
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6274
|
-
"name": "json",
|
|
6275
|
-
"allowNo": false,
|
|
6276
|
-
"type": "boolean"
|
|
6277
|
-
},
|
|
6278
|
-
"non-interactive": {
|
|
6279
|
-
"description": "Run the command in non-interactive mode.",
|
|
6280
|
-
"name": "non-interactive",
|
|
6281
|
-
"noCacheDefault": true,
|
|
6282
|
-
"allowNo": false,
|
|
6283
|
-
"type": "boolean"
|
|
6284
6000
|
}
|
|
6285
6001
|
},
|
|
6286
6002
|
"hasDynamicHelp": false,
|
|
6287
|
-
"hidden": true,
|
|
6288
6003
|
"hiddenAliases": [],
|
|
6289
|
-
"id": "
|
|
6004
|
+
"id": "metadata:lint",
|
|
6290
6005
|
"pluginAlias": "eas-cli",
|
|
6291
6006
|
"pluginName": "eas-cli",
|
|
6292
6007
|
"pluginType": "core",
|
|
@@ -6333,111 +6048,29 @@
|
|
|
6333
6048
|
}
|
|
6334
6049
|
},
|
|
6335
6050
|
"contextDefinition": {
|
|
6336
|
-
"
|
|
6337
|
-
"loggedIn": {}
|
|
6338
|
-
},
|
|
6339
|
-
"loggedInOnlyContextDefinition": {
|
|
6340
|
-
"loggedIn": {}
|
|
6051
|
+
"projectDir": {}
|
|
6341
6052
|
},
|
|
6342
6053
|
"isESM": false,
|
|
6343
6054
|
"relativePath": [
|
|
6344
6055
|
"build",
|
|
6345
6056
|
"commands",
|
|
6346
|
-
"
|
|
6347
|
-
"
|
|
6057
|
+
"metadata",
|
|
6058
|
+
"lint.js"
|
|
6348
6059
|
]
|
|
6349
6060
|
},
|
|
6350
|
-
"
|
|
6061
|
+
"metadata:pull": {
|
|
6351
6062
|
"aliases": [],
|
|
6352
6063
|
"args": {},
|
|
6353
|
-
"description": "
|
|
6064
|
+
"description": "generate the local store configuration from the app stores",
|
|
6354
6065
|
"flags": {
|
|
6355
|
-
"
|
|
6356
|
-
"
|
|
6357
|
-
"
|
|
6066
|
+
"profile": {
|
|
6067
|
+
"char": "e",
|
|
6068
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6069
|
+
"name": "profile",
|
|
6358
6070
|
"hasDynamicHelp": false,
|
|
6359
6071
|
"multiple": false,
|
|
6360
|
-
"options": [
|
|
6361
|
-
"android",
|
|
6362
|
-
"ios"
|
|
6363
|
-
],
|
|
6364
6072
|
"type": "option"
|
|
6365
6073
|
},
|
|
6366
|
-
"metric": {
|
|
6367
|
-
"description": "Metric name to display (can be specified multiple times).",
|
|
6368
|
-
"name": "metric",
|
|
6369
|
-
"hasDynamicHelp": false,
|
|
6370
|
-
"multiple": true,
|
|
6371
|
-
"options": [
|
|
6372
|
-
"tti",
|
|
6373
|
-
"ttr",
|
|
6374
|
-
"cold_launch",
|
|
6375
|
-
"warm_launch",
|
|
6376
|
-
"bundle_load"
|
|
6377
|
-
],
|
|
6378
|
-
"type": "option"
|
|
6379
|
-
},
|
|
6380
|
-
"stat": {
|
|
6381
|
-
"description": "Statistic to display per metric (can be specified multiple times)",
|
|
6382
|
-
"name": "stat",
|
|
6383
|
-
"hasDynamicHelp": false,
|
|
6384
|
-
"multiple": true,
|
|
6385
|
-
"options": [
|
|
6386
|
-
"min",
|
|
6387
|
-
"median",
|
|
6388
|
-
"max",
|
|
6389
|
-
"average",
|
|
6390
|
-
"p80",
|
|
6391
|
-
"p90",
|
|
6392
|
-
"p99",
|
|
6393
|
-
"eventCount"
|
|
6394
|
-
],
|
|
6395
|
-
"type": "option"
|
|
6396
|
-
},
|
|
6397
|
-
"start": {
|
|
6398
|
-
"description": "Start of time range for metrics data (ISO date).",
|
|
6399
|
-
"exclusive": [
|
|
6400
|
-
"days"
|
|
6401
|
-
],
|
|
6402
|
-
"name": "start",
|
|
6403
|
-
"hasDynamicHelp": false,
|
|
6404
|
-
"multiple": false,
|
|
6405
|
-
"type": "option"
|
|
6406
|
-
},
|
|
6407
|
-
"end": {
|
|
6408
|
-
"description": "End of time range for metrics data (ISO date).",
|
|
6409
|
-
"exclusive": [
|
|
6410
|
-
"days"
|
|
6411
|
-
],
|
|
6412
|
-
"name": "end",
|
|
6413
|
-
"hasDynamicHelp": false,
|
|
6414
|
-
"multiple": false,
|
|
6415
|
-
"type": "option"
|
|
6416
|
-
},
|
|
6417
|
-
"days": {
|
|
6418
|
-
"description": "Show metrics from the last N days (mutually exclusive with --start/--end)",
|
|
6419
|
-
"exclusive": [
|
|
6420
|
-
"start",
|
|
6421
|
-
"end"
|
|
6422
|
-
],
|
|
6423
|
-
"name": "days",
|
|
6424
|
-
"hasDynamicHelp": false,
|
|
6425
|
-
"multiple": false,
|
|
6426
|
-
"type": "option"
|
|
6427
|
-
},
|
|
6428
|
-
"project-id": {
|
|
6429
|
-
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6430
|
-
"name": "project-id",
|
|
6431
|
-
"hasDynamicHelp": false,
|
|
6432
|
-
"multiple": false,
|
|
6433
|
-
"type": "option"
|
|
6434
|
-
},
|
|
6435
|
-
"json": {
|
|
6436
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6437
|
-
"name": "json",
|
|
6438
|
-
"allowNo": false,
|
|
6439
|
-
"type": "boolean"
|
|
6440
|
-
},
|
|
6441
6074
|
"non-interactive": {
|
|
6442
6075
|
"description": "Run the command in non-interactive mode.",
|
|
6443
6076
|
"name": "non-interactive",
|
|
@@ -6447,9 +6080,8 @@
|
|
|
6447
6080
|
}
|
|
6448
6081
|
},
|
|
6449
6082
|
"hasDynamicHelp": false,
|
|
6450
|
-
"hidden": true,
|
|
6451
6083
|
"hiddenAliases": [],
|
|
6452
|
-
"id": "
|
|
6084
|
+
"id": "metadata:pull",
|
|
6453
6085
|
"pluginAlias": "eas-cli",
|
|
6454
6086
|
"pluginName": "eas-cli",
|
|
6455
6087
|
"pluginType": "core",
|
|
@@ -6496,80 +6128,32 @@
|
|
|
6496
6128
|
}
|
|
6497
6129
|
},
|
|
6498
6130
|
"contextDefinition": {
|
|
6499
|
-
"
|
|
6500
|
-
"
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
"loggedIn": {}
|
|
6131
|
+
"loggedIn": {},
|
|
6132
|
+
"privateProjectConfig": {},
|
|
6133
|
+
"analytics": {},
|
|
6134
|
+
"vcsClient": {}
|
|
6504
6135
|
},
|
|
6505
6136
|
"isESM": false,
|
|
6506
6137
|
"relativePath": [
|
|
6507
6138
|
"build",
|
|
6508
6139
|
"commands",
|
|
6509
|
-
"
|
|
6510
|
-
"
|
|
6140
|
+
"metadata",
|
|
6141
|
+
"pull.js"
|
|
6511
6142
|
]
|
|
6512
6143
|
},
|
|
6513
|
-
"
|
|
6144
|
+
"metadata:push": {
|
|
6514
6145
|
"aliases": [],
|
|
6515
6146
|
"args": {},
|
|
6516
|
-
"description": "
|
|
6147
|
+
"description": "sync the local store configuration to the app stores",
|
|
6517
6148
|
"flags": {
|
|
6518
|
-
"
|
|
6519
|
-
"
|
|
6520
|
-
"
|
|
6521
|
-
"
|
|
6522
|
-
"multiple": false,
|
|
6523
|
-
"options": [
|
|
6524
|
-
"android",
|
|
6525
|
-
"ios"
|
|
6526
|
-
],
|
|
6527
|
-
"type": "option"
|
|
6528
|
-
},
|
|
6529
|
-
"start": {
|
|
6530
|
-
"description": "Start of time range (ISO date)",
|
|
6531
|
-
"exclusive": [
|
|
6532
|
-
"days"
|
|
6533
|
-
],
|
|
6534
|
-
"name": "start",
|
|
6535
|
-
"hasDynamicHelp": false,
|
|
6536
|
-
"multiple": false,
|
|
6537
|
-
"type": "option"
|
|
6538
|
-
},
|
|
6539
|
-
"end": {
|
|
6540
|
-
"description": "End of time range (ISO date)",
|
|
6541
|
-
"exclusive": [
|
|
6542
|
-
"days"
|
|
6543
|
-
],
|
|
6544
|
-
"name": "end",
|
|
6545
|
-
"hasDynamicHelp": false,
|
|
6546
|
-
"multiple": false,
|
|
6547
|
-
"type": "option"
|
|
6548
|
-
},
|
|
6549
|
-
"days": {
|
|
6550
|
-
"description": "Show versions from the last N days (mutually exclusive with --start/--end)",
|
|
6551
|
-
"exclusive": [
|
|
6552
|
-
"start",
|
|
6553
|
-
"end"
|
|
6554
|
-
],
|
|
6555
|
-
"name": "days",
|
|
6556
|
-
"hasDynamicHelp": false,
|
|
6557
|
-
"multiple": false,
|
|
6558
|
-
"type": "option"
|
|
6559
|
-
},
|
|
6560
|
-
"project-id": {
|
|
6561
|
-
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6562
|
-
"name": "project-id",
|
|
6149
|
+
"profile": {
|
|
6150
|
+
"char": "e",
|
|
6151
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6152
|
+
"name": "profile",
|
|
6563
6153
|
"hasDynamicHelp": false,
|
|
6564
6154
|
"multiple": false,
|
|
6565
6155
|
"type": "option"
|
|
6566
6156
|
},
|
|
6567
|
-
"json": {
|
|
6568
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6569
|
-
"name": "json",
|
|
6570
|
-
"allowNo": false,
|
|
6571
|
-
"type": "boolean"
|
|
6572
|
-
},
|
|
6573
6157
|
"non-interactive": {
|
|
6574
6158
|
"description": "Run the command in non-interactive mode.",
|
|
6575
6159
|
"name": "non-interactive",
|
|
@@ -6579,9 +6163,8 @@
|
|
|
6579
6163
|
}
|
|
6580
6164
|
},
|
|
6581
6165
|
"hasDynamicHelp": false,
|
|
6582
|
-
"hidden": true,
|
|
6583
6166
|
"hiddenAliases": [],
|
|
6584
|
-
"id": "
|
|
6167
|
+
"id": "metadata:push",
|
|
6585
6168
|
"pluginAlias": "eas-cli",
|
|
6586
6169
|
"pluginName": "eas-cli",
|
|
6587
6170
|
"pluginType": "core",
|
|
@@ -6628,102 +6211,132 @@
|
|
|
6628
6211
|
}
|
|
6629
6212
|
},
|
|
6630
6213
|
"contextDefinition": {
|
|
6631
|
-
"
|
|
6632
|
-
"
|
|
6633
|
-
|
|
6634
|
-
|
|
6635
|
-
"loggedIn": {}
|
|
6214
|
+
"loggedIn": {},
|
|
6215
|
+
"privateProjectConfig": {},
|
|
6216
|
+
"analytics": {},
|
|
6217
|
+
"vcsClient": {}
|
|
6636
6218
|
},
|
|
6637
6219
|
"isESM": false,
|
|
6638
6220
|
"relativePath": [
|
|
6639
6221
|
"build",
|
|
6640
6222
|
"commands",
|
|
6641
|
-
"
|
|
6642
|
-
"
|
|
6223
|
+
"metadata",
|
|
6224
|
+
"push.js"
|
|
6643
6225
|
]
|
|
6644
6226
|
},
|
|
6645
|
-
"
|
|
6227
|
+
"observe:events": {
|
|
6646
6228
|
"aliases": [],
|
|
6647
|
-
"args": {
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
"
|
|
6229
|
+
"args": {
|
|
6230
|
+
"metric": {
|
|
6231
|
+
"description": "Metric to query (e.g. tti, cold_launch)",
|
|
6232
|
+
"name": "metric",
|
|
6233
|
+
"options": [
|
|
6234
|
+
"tti",
|
|
6235
|
+
"ttr",
|
|
6236
|
+
"cold_launch",
|
|
6237
|
+
"warm_launch",
|
|
6238
|
+
"bundle_load"
|
|
6239
|
+
],
|
|
6240
|
+
"required": false
|
|
6241
|
+
}
|
|
6242
|
+
},
|
|
6243
|
+
"description": "display individual app performance events ordered by metric value",
|
|
6244
|
+
"flags": {
|
|
6245
|
+
"sort": {
|
|
6246
|
+
"description": "Sort order for events",
|
|
6247
|
+
"name": "sort",
|
|
6248
|
+
"required": false,
|
|
6249
|
+
"default": "oldest",
|
|
6250
|
+
"hasDynamicHelp": false,
|
|
6251
|
+
"multiple": false,
|
|
6252
|
+
"options": [
|
|
6253
|
+
"slowest",
|
|
6254
|
+
"fastest",
|
|
6255
|
+
"newest",
|
|
6256
|
+
"oldest"
|
|
6257
|
+
],
|
|
6258
|
+
"type": "option"
|
|
6667
6259
|
},
|
|
6668
|
-
"
|
|
6669
|
-
"
|
|
6260
|
+
"platform": {
|
|
6261
|
+
"description": "Filter by platform",
|
|
6262
|
+
"name": "platform",
|
|
6263
|
+
"hasDynamicHelp": false,
|
|
6264
|
+
"multiple": false,
|
|
6265
|
+
"options": [
|
|
6266
|
+
"android",
|
|
6267
|
+
"ios"
|
|
6268
|
+
],
|
|
6269
|
+
"type": "option"
|
|
6670
6270
|
},
|
|
6671
|
-
"
|
|
6672
|
-
"
|
|
6271
|
+
"after": {
|
|
6272
|
+
"description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
|
|
6273
|
+
"name": "after",
|
|
6274
|
+
"hasDynamicHelp": false,
|
|
6275
|
+
"multiple": false,
|
|
6276
|
+
"type": "option"
|
|
6673
6277
|
},
|
|
6674
|
-
"
|
|
6675
|
-
"
|
|
6278
|
+
"limit": {
|
|
6279
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
6280
|
+
"name": "limit",
|
|
6281
|
+
"hasDynamicHelp": false,
|
|
6282
|
+
"multiple": false,
|
|
6283
|
+
"type": "option"
|
|
6676
6284
|
},
|
|
6677
|
-
"
|
|
6678
|
-
"
|
|
6679
|
-
"
|
|
6285
|
+
"start": {
|
|
6286
|
+
"description": "Start of time range (ISO date)",
|
|
6287
|
+
"exclusive": [
|
|
6288
|
+
"days"
|
|
6289
|
+
],
|
|
6290
|
+
"name": "start",
|
|
6291
|
+
"hasDynamicHelp": false,
|
|
6292
|
+
"multiple": false,
|
|
6293
|
+
"type": "option"
|
|
6680
6294
|
},
|
|
6681
|
-
"
|
|
6682
|
-
"
|
|
6683
|
-
"
|
|
6295
|
+
"end": {
|
|
6296
|
+
"description": "End of time range (ISO date)",
|
|
6297
|
+
"exclusive": [
|
|
6298
|
+
"days"
|
|
6299
|
+
],
|
|
6300
|
+
"name": "end",
|
|
6301
|
+
"hasDynamicHelp": false,
|
|
6302
|
+
"multiple": false,
|
|
6303
|
+
"type": "option"
|
|
6684
6304
|
},
|
|
6685
|
-
"
|
|
6686
|
-
"
|
|
6305
|
+
"days": {
|
|
6306
|
+
"description": "Show events from the last N days (mutually exclusive with --start/--end)",
|
|
6307
|
+
"exclusive": [
|
|
6308
|
+
"start",
|
|
6309
|
+
"end"
|
|
6310
|
+
],
|
|
6311
|
+
"name": "days",
|
|
6312
|
+
"hasDynamicHelp": false,
|
|
6313
|
+
"multiple": false,
|
|
6314
|
+
"type": "option"
|
|
6687
6315
|
},
|
|
6688
|
-
"
|
|
6689
|
-
"
|
|
6316
|
+
"app-version": {
|
|
6317
|
+
"description": "Filter by app version",
|
|
6318
|
+
"name": "app-version",
|
|
6319
|
+
"hasDynamicHelp": false,
|
|
6320
|
+
"multiple": false,
|
|
6321
|
+
"type": "option"
|
|
6690
6322
|
},
|
|
6691
|
-
"
|
|
6692
|
-
"
|
|
6323
|
+
"update-id": {
|
|
6324
|
+
"description": "Filter by EAS update ID",
|
|
6325
|
+
"name": "update-id",
|
|
6326
|
+
"hasDynamicHelp": false,
|
|
6327
|
+
"multiple": false,
|
|
6328
|
+
"type": "option"
|
|
6693
6329
|
},
|
|
6694
|
-
"
|
|
6695
|
-
"
|
|
6696
|
-
|
|
6697
|
-
},
|
|
6698
|
-
"contextDefinition": {
|
|
6699
|
-
"projectId": {},
|
|
6700
|
-
"loggedIn": {}
|
|
6701
|
-
},
|
|
6702
|
-
"isESM": false,
|
|
6703
|
-
"relativePath": [
|
|
6704
|
-
"build",
|
|
6705
|
-
"commands",
|
|
6706
|
-
"project",
|
|
6707
|
-
"info.js"
|
|
6708
|
-
]
|
|
6709
|
-
},
|
|
6710
|
-
"project:init": {
|
|
6711
|
-
"aliases": [
|
|
6712
|
-
"init"
|
|
6713
|
-
],
|
|
6714
|
-
"args": {},
|
|
6715
|
-
"description": "create or link an EAS project",
|
|
6716
|
-
"flags": {
|
|
6717
|
-
"id": {
|
|
6718
|
-
"description": "ID of the EAS project to link",
|
|
6719
|
-
"name": "id",
|
|
6330
|
+
"project-id": {
|
|
6331
|
+
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6332
|
+
"name": "project-id",
|
|
6720
6333
|
"hasDynamicHelp": false,
|
|
6721
6334
|
"multiple": false,
|
|
6722
6335
|
"type": "option"
|
|
6723
6336
|
},
|
|
6724
|
-
"
|
|
6725
|
-
"description": "
|
|
6726
|
-
"name": "
|
|
6337
|
+
"json": {
|
|
6338
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6339
|
+
"name": "json",
|
|
6727
6340
|
"allowNo": false,
|
|
6728
6341
|
"type": "boolean"
|
|
6729
6342
|
},
|
|
@@ -6736,8 +6349,9 @@
|
|
|
6736
6349
|
}
|
|
6737
6350
|
},
|
|
6738
6351
|
"hasDynamicHelp": false,
|
|
6352
|
+
"hidden": true,
|
|
6739
6353
|
"hiddenAliases": [],
|
|
6740
|
-
"id": "
|
|
6354
|
+
"id": "observe:events",
|
|
6741
6355
|
"pluginAlias": "eas-cli",
|
|
6742
6356
|
"pluginName": "eas-cli",
|
|
6743
6357
|
"pluginType": "core",
|
|
@@ -6784,120 +6398,139 @@
|
|
|
6784
6398
|
}
|
|
6785
6399
|
},
|
|
6786
6400
|
"contextDefinition": {
|
|
6787
|
-
"
|
|
6788
|
-
"
|
|
6401
|
+
"projectId": {},
|
|
6402
|
+
"loggedIn": {}
|
|
6403
|
+
},
|
|
6404
|
+
"loggedInOnlyContextDefinition": {
|
|
6405
|
+
"loggedIn": {}
|
|
6789
6406
|
},
|
|
6790
6407
|
"isESM": false,
|
|
6791
6408
|
"relativePath": [
|
|
6792
6409
|
"build",
|
|
6793
6410
|
"commands",
|
|
6794
|
-
"
|
|
6795
|
-
"
|
|
6411
|
+
"observe",
|
|
6412
|
+
"events.js"
|
|
6796
6413
|
]
|
|
6797
6414
|
},
|
|
6798
|
-
"
|
|
6799
|
-
"aliases": [
|
|
6800
|
-
"new"
|
|
6801
|
-
],
|
|
6415
|
+
"observe:logs": {
|
|
6416
|
+
"aliases": [],
|
|
6802
6417
|
"args": {
|
|
6803
|
-
"
|
|
6804
|
-
"description": "
|
|
6805
|
-
"name": "
|
|
6418
|
+
"eventName": {
|
|
6419
|
+
"description": "Custom event name to filter by",
|
|
6420
|
+
"name": "eventName",
|
|
6806
6421
|
"required": false
|
|
6807
6422
|
}
|
|
6808
6423
|
},
|
|
6809
|
-
"description": "
|
|
6424
|
+
"description": "display individual custom events (logs) emitted by the app, filtered by the event name in the argument. With no arguments, a list of the available event names and associated event counts is returned.",
|
|
6810
6425
|
"flags": {
|
|
6811
|
-
"
|
|
6812
|
-
"
|
|
6813
|
-
"
|
|
6814
|
-
"name": "package-manager",
|
|
6815
|
-
"default": "npm",
|
|
6426
|
+
"platform": {
|
|
6427
|
+
"description": "Filter by platform",
|
|
6428
|
+
"name": "platform",
|
|
6816
6429
|
"hasDynamicHelp": false,
|
|
6817
6430
|
"multiple": false,
|
|
6818
6431
|
"options": [
|
|
6819
|
-
"
|
|
6820
|
-
"
|
|
6821
|
-
"pnpm",
|
|
6822
|
-
"yarn"
|
|
6432
|
+
"android",
|
|
6433
|
+
"ios"
|
|
6823
6434
|
],
|
|
6824
6435
|
"type": "option"
|
|
6825
|
-
}
|
|
6826
|
-
},
|
|
6827
|
-
"hasDynamicHelp": false,
|
|
6828
|
-
"hiddenAliases": [],
|
|
6829
|
-
"id": "project:new",
|
|
6830
|
-
"pluginAlias": "eas-cli",
|
|
6831
|
-
"pluginName": "eas-cli",
|
|
6832
|
-
"pluginType": "core",
|
|
6833
|
-
"strict": true,
|
|
6834
|
-
"enableJsonFlag": false,
|
|
6835
|
-
"ContextOptions": {
|
|
6836
|
-
"LoggedIn": {
|
|
6837
|
-
"loggedIn": {}
|
|
6838
6436
|
},
|
|
6839
|
-
"
|
|
6840
|
-
"
|
|
6437
|
+
"after": {
|
|
6438
|
+
"description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
|
|
6439
|
+
"name": "after",
|
|
6440
|
+
"hasDynamicHelp": false,
|
|
6441
|
+
"multiple": false,
|
|
6442
|
+
"type": "option"
|
|
6841
6443
|
},
|
|
6842
|
-
"
|
|
6843
|
-
"
|
|
6444
|
+
"limit": {
|
|
6445
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
6446
|
+
"name": "limit",
|
|
6447
|
+
"hasDynamicHelp": false,
|
|
6448
|
+
"multiple": false,
|
|
6449
|
+
"type": "option"
|
|
6844
6450
|
},
|
|
6845
|
-
"
|
|
6846
|
-
"
|
|
6451
|
+
"start": {
|
|
6452
|
+
"description": "Start of time range (ISO date)",
|
|
6453
|
+
"exclusive": [
|
|
6454
|
+
"days"
|
|
6455
|
+
],
|
|
6456
|
+
"name": "start",
|
|
6457
|
+
"hasDynamicHelp": false,
|
|
6458
|
+
"multiple": false,
|
|
6459
|
+
"type": "option"
|
|
6847
6460
|
},
|
|
6848
|
-
"
|
|
6849
|
-
"
|
|
6461
|
+
"end": {
|
|
6462
|
+
"description": "End of time range (ISO date)",
|
|
6463
|
+
"exclusive": [
|
|
6464
|
+
"days"
|
|
6465
|
+
],
|
|
6466
|
+
"name": "end",
|
|
6467
|
+
"hasDynamicHelp": false,
|
|
6468
|
+
"multiple": false,
|
|
6469
|
+
"type": "option"
|
|
6850
6470
|
},
|
|
6851
|
-
"
|
|
6852
|
-
"
|
|
6471
|
+
"days": {
|
|
6472
|
+
"description": "Show events from the last N days (mutually exclusive with --start/--end)",
|
|
6473
|
+
"exclusive": [
|
|
6474
|
+
"start",
|
|
6475
|
+
"end"
|
|
6476
|
+
],
|
|
6477
|
+
"name": "days",
|
|
6478
|
+
"hasDynamicHelp": false,
|
|
6479
|
+
"multiple": false,
|
|
6480
|
+
"type": "option"
|
|
6853
6481
|
},
|
|
6854
|
-
"
|
|
6855
|
-
"
|
|
6856
|
-
"
|
|
6482
|
+
"app-version": {
|
|
6483
|
+
"description": "Filter by app version",
|
|
6484
|
+
"name": "app-version",
|
|
6485
|
+
"hasDynamicHelp": false,
|
|
6486
|
+
"multiple": false,
|
|
6487
|
+
"type": "option"
|
|
6857
6488
|
},
|
|
6858
|
-
"
|
|
6859
|
-
"
|
|
6860
|
-
"
|
|
6489
|
+
"update-id": {
|
|
6490
|
+
"description": "Filter by EAS update ID",
|
|
6491
|
+
"name": "update-id",
|
|
6492
|
+
"hasDynamicHelp": false,
|
|
6493
|
+
"multiple": false,
|
|
6494
|
+
"type": "option"
|
|
6861
6495
|
},
|
|
6862
|
-
"
|
|
6863
|
-
"
|
|
6496
|
+
"session-id": {
|
|
6497
|
+
"description": "Filter by session ID",
|
|
6498
|
+
"name": "session-id",
|
|
6499
|
+
"hasDynamicHelp": false,
|
|
6500
|
+
"multiple": false,
|
|
6501
|
+
"type": "option"
|
|
6864
6502
|
},
|
|
6865
|
-
"
|
|
6866
|
-
"
|
|
6503
|
+
"all-events": {
|
|
6504
|
+
"description": "When no event name argument is provided, list all events across all event names instead of a summary of event names + counts.",
|
|
6505
|
+
"name": "all-events",
|
|
6506
|
+
"allowNo": false,
|
|
6507
|
+
"type": "boolean"
|
|
6867
6508
|
},
|
|
6868
|
-
"
|
|
6869
|
-
"
|
|
6509
|
+
"project-id": {
|
|
6510
|
+
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6511
|
+
"name": "project-id",
|
|
6512
|
+
"hasDynamicHelp": false,
|
|
6513
|
+
"multiple": false,
|
|
6514
|
+
"type": "option"
|
|
6515
|
+
},
|
|
6516
|
+
"json": {
|
|
6517
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6518
|
+
"name": "json",
|
|
6519
|
+
"allowNo": false,
|
|
6520
|
+
"type": "boolean"
|
|
6870
6521
|
},
|
|
6871
|
-
"
|
|
6872
|
-
"
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
|
|
6877
|
-
},
|
|
6878
|
-
"isESM": false,
|
|
6879
|
-
"relativePath": [
|
|
6880
|
-
"build",
|
|
6881
|
-
"commands",
|
|
6882
|
-
"project",
|
|
6883
|
-
"new.js"
|
|
6884
|
-
]
|
|
6885
|
-
},
|
|
6886
|
-
"project:onboarding": {
|
|
6887
|
-
"aliases": [
|
|
6888
|
-
"init:onboarding",
|
|
6889
|
-
"onboarding"
|
|
6890
|
-
],
|
|
6891
|
-
"args": {
|
|
6892
|
-
"TARGET_PROJECT_DIRECTORY": {
|
|
6893
|
-
"name": "TARGET_PROJECT_DIRECTORY"
|
|
6522
|
+
"non-interactive": {
|
|
6523
|
+
"description": "Run the command in non-interactive mode.",
|
|
6524
|
+
"name": "non-interactive",
|
|
6525
|
+
"noCacheDefault": true,
|
|
6526
|
+
"allowNo": false,
|
|
6527
|
+
"type": "boolean"
|
|
6894
6528
|
}
|
|
6895
6529
|
},
|
|
6896
|
-
"description": "continue onboarding process started on the https://expo.new website.",
|
|
6897
|
-
"flags": {},
|
|
6898
6530
|
"hasDynamicHelp": false,
|
|
6531
|
+
"hidden": true,
|
|
6899
6532
|
"hiddenAliases": [],
|
|
6900
|
-
"id": "
|
|
6533
|
+
"id": "observe:logs",
|
|
6901
6534
|
"pluginAlias": "eas-cli",
|
|
6902
6535
|
"pluginName": "eas-cli",
|
|
6903
6536
|
"pluginType": "core",
|
|
@@ -6944,39 +6577,123 @@
|
|
|
6944
6577
|
}
|
|
6945
6578
|
},
|
|
6946
6579
|
"contextDefinition": {
|
|
6947
|
-
"
|
|
6948
|
-
"
|
|
6580
|
+
"projectId": {},
|
|
6581
|
+
"loggedIn": {}
|
|
6582
|
+
},
|
|
6583
|
+
"loggedInOnlyContextDefinition": {
|
|
6584
|
+
"loggedIn": {}
|
|
6949
6585
|
},
|
|
6950
6586
|
"isESM": false,
|
|
6951
6587
|
"relativePath": [
|
|
6952
6588
|
"build",
|
|
6953
6589
|
"commands",
|
|
6954
|
-
"
|
|
6955
|
-
"
|
|
6590
|
+
"observe",
|
|
6591
|
+
"logs.js"
|
|
6956
6592
|
]
|
|
6957
6593
|
},
|
|
6958
|
-
"
|
|
6594
|
+
"observe:metrics": {
|
|
6959
6595
|
"aliases": [],
|
|
6960
6596
|
"args": {},
|
|
6961
|
-
"description": "
|
|
6597
|
+
"description": "display app performance metrics grouped by app version",
|
|
6962
6598
|
"flags": {
|
|
6599
|
+
"platform": {
|
|
6600
|
+
"description": "Filter by platform",
|
|
6601
|
+
"name": "platform",
|
|
6602
|
+
"hasDynamicHelp": false,
|
|
6603
|
+
"multiple": false,
|
|
6604
|
+
"options": [
|
|
6605
|
+
"android",
|
|
6606
|
+
"ios"
|
|
6607
|
+
],
|
|
6608
|
+
"type": "option"
|
|
6609
|
+
},
|
|
6610
|
+
"metric": {
|
|
6611
|
+
"description": "Metric name to display (can be specified multiple times).",
|
|
6612
|
+
"name": "metric",
|
|
6613
|
+
"hasDynamicHelp": false,
|
|
6614
|
+
"multiple": true,
|
|
6615
|
+
"options": [
|
|
6616
|
+
"tti",
|
|
6617
|
+
"ttr",
|
|
6618
|
+
"cold_launch",
|
|
6619
|
+
"warm_launch",
|
|
6620
|
+
"bundle_load"
|
|
6621
|
+
],
|
|
6622
|
+
"type": "option"
|
|
6623
|
+
},
|
|
6624
|
+
"stat": {
|
|
6625
|
+
"description": "Statistic to display per metric (can be specified multiple times)",
|
|
6626
|
+
"name": "stat",
|
|
6627
|
+
"hasDynamicHelp": false,
|
|
6628
|
+
"multiple": true,
|
|
6629
|
+
"options": [
|
|
6630
|
+
"min",
|
|
6631
|
+
"median",
|
|
6632
|
+
"max",
|
|
6633
|
+
"average",
|
|
6634
|
+
"p80",
|
|
6635
|
+
"p90",
|
|
6636
|
+
"p99",
|
|
6637
|
+
"eventCount"
|
|
6638
|
+
],
|
|
6639
|
+
"type": "option"
|
|
6640
|
+
},
|
|
6641
|
+
"start": {
|
|
6642
|
+
"description": "Start of time range for metrics data (ISO date).",
|
|
6643
|
+
"exclusive": [
|
|
6644
|
+
"days"
|
|
6645
|
+
],
|
|
6646
|
+
"name": "start",
|
|
6647
|
+
"hasDynamicHelp": false,
|
|
6648
|
+
"multiple": false,
|
|
6649
|
+
"type": "option"
|
|
6650
|
+
},
|
|
6651
|
+
"end": {
|
|
6652
|
+
"description": "End of time range for metrics data (ISO date).",
|
|
6653
|
+
"exclusive": [
|
|
6654
|
+
"days"
|
|
6655
|
+
],
|
|
6656
|
+
"name": "end",
|
|
6657
|
+
"hasDynamicHelp": false,
|
|
6658
|
+
"multiple": false,
|
|
6659
|
+
"type": "option"
|
|
6660
|
+
},
|
|
6661
|
+
"days": {
|
|
6662
|
+
"description": "Show metrics from the last N days (mutually exclusive with --start/--end)",
|
|
6663
|
+
"exclusive": [
|
|
6664
|
+
"start",
|
|
6665
|
+
"end"
|
|
6666
|
+
],
|
|
6667
|
+
"name": "days",
|
|
6668
|
+
"hasDynamicHelp": false,
|
|
6669
|
+
"multiple": false,
|
|
6670
|
+
"type": "option"
|
|
6671
|
+
},
|
|
6672
|
+
"project-id": {
|
|
6673
|
+
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6674
|
+
"name": "project-id",
|
|
6675
|
+
"hasDynamicHelp": false,
|
|
6676
|
+
"multiple": false,
|
|
6677
|
+
"type": "option"
|
|
6678
|
+
},
|
|
6963
6679
|
"json": {
|
|
6964
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr",
|
|
6680
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6965
6681
|
"name": "json",
|
|
6966
6682
|
"allowNo": false,
|
|
6967
6683
|
"type": "boolean"
|
|
6968
6684
|
},
|
|
6969
|
-
"
|
|
6970
|
-
"description": "
|
|
6971
|
-
"name": "
|
|
6972
|
-
"
|
|
6973
|
-
"
|
|
6974
|
-
"type": "
|
|
6685
|
+
"non-interactive": {
|
|
6686
|
+
"description": "Run the command in non-interactive mode.",
|
|
6687
|
+
"name": "non-interactive",
|
|
6688
|
+
"noCacheDefault": true,
|
|
6689
|
+
"allowNo": false,
|
|
6690
|
+
"type": "boolean"
|
|
6975
6691
|
}
|
|
6976
6692
|
},
|
|
6977
6693
|
"hasDynamicHelp": false,
|
|
6694
|
+
"hidden": true,
|
|
6978
6695
|
"hiddenAliases": [],
|
|
6979
|
-
"id": "
|
|
6696
|
+
"id": "observe:metrics",
|
|
6980
6697
|
"pluginAlias": "eas-cli",
|
|
6981
6698
|
"pluginName": "eas-cli",
|
|
6982
6699
|
"pluginType": "core",
|
|
@@ -7023,29 +6740,80 @@
|
|
|
7023
6740
|
}
|
|
7024
6741
|
},
|
|
7025
6742
|
"contextDefinition": {
|
|
7026
|
-
"
|
|
6743
|
+
"projectId": {},
|
|
6744
|
+
"loggedIn": {}
|
|
6745
|
+
},
|
|
6746
|
+
"loggedInOnlyContextDefinition": {
|
|
6747
|
+
"loggedIn": {}
|
|
7027
6748
|
},
|
|
7028
6749
|
"isESM": false,
|
|
7029
6750
|
"relativePath": [
|
|
7030
6751
|
"build",
|
|
7031
6752
|
"commands",
|
|
7032
|
-
"
|
|
7033
|
-
"
|
|
6753
|
+
"observe",
|
|
6754
|
+
"metrics.js"
|
|
7034
6755
|
]
|
|
7035
6756
|
},
|
|
7036
|
-
"
|
|
6757
|
+
"observe:versions": {
|
|
7037
6758
|
"aliases": [],
|
|
7038
6759
|
"args": {},
|
|
7039
|
-
"description": "
|
|
6760
|
+
"description": "display app versions with build and update details",
|
|
7040
6761
|
"flags": {
|
|
7041
|
-
"
|
|
7042
|
-
"
|
|
7043
|
-
"
|
|
7044
|
-
"
|
|
6762
|
+
"platform": {
|
|
6763
|
+
"description": "Filter by platform",
|
|
6764
|
+
"name": "platform",
|
|
6765
|
+
"hasDynamicHelp": false,
|
|
6766
|
+
"multiple": false,
|
|
6767
|
+
"options": [
|
|
6768
|
+
"android",
|
|
6769
|
+
"ios"
|
|
6770
|
+
],
|
|
6771
|
+
"type": "option"
|
|
6772
|
+
},
|
|
6773
|
+
"start": {
|
|
6774
|
+
"description": "Start of time range (ISO date)",
|
|
6775
|
+
"exclusive": [
|
|
6776
|
+
"days"
|
|
6777
|
+
],
|
|
6778
|
+
"name": "start",
|
|
6779
|
+
"hasDynamicHelp": false,
|
|
6780
|
+
"multiple": false,
|
|
6781
|
+
"type": "option"
|
|
6782
|
+
},
|
|
6783
|
+
"end": {
|
|
6784
|
+
"description": "End of time range (ISO date)",
|
|
6785
|
+
"exclusive": [
|
|
6786
|
+
"days"
|
|
6787
|
+
],
|
|
6788
|
+
"name": "end",
|
|
7045
6789
|
"hasDynamicHelp": false,
|
|
7046
6790
|
"multiple": false,
|
|
7047
6791
|
"type": "option"
|
|
7048
6792
|
},
|
|
6793
|
+
"days": {
|
|
6794
|
+
"description": "Show versions from the last N days (mutually exclusive with --start/--end)",
|
|
6795
|
+
"exclusive": [
|
|
6796
|
+
"start",
|
|
6797
|
+
"end"
|
|
6798
|
+
],
|
|
6799
|
+
"name": "days",
|
|
6800
|
+
"hasDynamicHelp": false,
|
|
6801
|
+
"multiple": false,
|
|
6802
|
+
"type": "option"
|
|
6803
|
+
},
|
|
6804
|
+
"project-id": {
|
|
6805
|
+
"description": "EAS project ID (defaults to the project ID of the current directory)",
|
|
6806
|
+
"name": "project-id",
|
|
6807
|
+
"hasDynamicHelp": false,
|
|
6808
|
+
"multiple": false,
|
|
6809
|
+
"type": "option"
|
|
6810
|
+
},
|
|
6811
|
+
"json": {
|
|
6812
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
6813
|
+
"name": "json",
|
|
6814
|
+
"allowNo": false,
|
|
6815
|
+
"type": "boolean"
|
|
6816
|
+
},
|
|
7049
6817
|
"non-interactive": {
|
|
7050
6818
|
"description": "Run the command in non-interactive mode.",
|
|
7051
6819
|
"name": "non-interactive",
|
|
@@ -7055,8 +6823,9 @@
|
|
|
7055
6823
|
}
|
|
7056
6824
|
},
|
|
7057
6825
|
"hasDynamicHelp": false,
|
|
6826
|
+
"hidden": true,
|
|
7058
6827
|
"hiddenAliases": [],
|
|
7059
|
-
"id": "
|
|
6828
|
+
"id": "observe:versions",
|
|
7060
6829
|
"pluginAlias": "eas-cli",
|
|
7061
6830
|
"pluginName": "eas-cli",
|
|
7062
6831
|
"pluginType": "core",
|
|
@@ -7103,43 +6872,28 @@
|
|
|
7103
6872
|
}
|
|
7104
6873
|
},
|
|
7105
6874
|
"contextDefinition": {
|
|
7106
|
-
"
|
|
7107
|
-
"
|
|
7108
|
-
|
|
7109
|
-
|
|
6875
|
+
"projectId": {},
|
|
6876
|
+
"loggedIn": {}
|
|
6877
|
+
},
|
|
6878
|
+
"loggedInOnlyContextDefinition": {
|
|
6879
|
+
"loggedIn": {}
|
|
7110
6880
|
},
|
|
7111
6881
|
"isESM": false,
|
|
7112
6882
|
"relativePath": [
|
|
7113
6883
|
"build",
|
|
7114
6884
|
"commands",
|
|
7115
|
-
"
|
|
7116
|
-
"
|
|
6885
|
+
"observe",
|
|
6886
|
+
"versions.js"
|
|
7117
6887
|
]
|
|
7118
6888
|
},
|
|
7119
|
-
"
|
|
6889
|
+
"project:info": {
|
|
7120
6890
|
"aliases": [],
|
|
7121
6891
|
"args": {},
|
|
7122
|
-
"description": "
|
|
7123
|
-
"flags": {
|
|
7124
|
-
"profile": {
|
|
7125
|
-
"char": "e",
|
|
7126
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7127
|
-
"name": "profile",
|
|
7128
|
-
"hasDynamicHelp": false,
|
|
7129
|
-
"multiple": false,
|
|
7130
|
-
"type": "option"
|
|
7131
|
-
},
|
|
7132
|
-
"non-interactive": {
|
|
7133
|
-
"description": "Run the command in non-interactive mode.",
|
|
7134
|
-
"name": "non-interactive",
|
|
7135
|
-
"noCacheDefault": true,
|
|
7136
|
-
"allowNo": false,
|
|
7137
|
-
"type": "boolean"
|
|
7138
|
-
}
|
|
7139
|
-
},
|
|
6892
|
+
"description": "information about the current project",
|
|
6893
|
+
"flags": {},
|
|
7140
6894
|
"hasDynamicHelp": false,
|
|
7141
6895
|
"hiddenAliases": [],
|
|
7142
|
-
"id": "
|
|
6896
|
+
"id": "project:info",
|
|
7143
6897
|
"pluginAlias": "eas-cli",
|
|
7144
6898
|
"pluginName": "eas-cli",
|
|
7145
6899
|
"pluginType": "core",
|
|
@@ -7186,63 +6940,33 @@
|
|
|
7186
6940
|
}
|
|
7187
6941
|
},
|
|
7188
6942
|
"contextDefinition": {
|
|
7189
|
-
"
|
|
7190
|
-
"
|
|
7191
|
-
"analytics": {},
|
|
7192
|
-
"vcsClient": {}
|
|
6943
|
+
"projectId": {},
|
|
6944
|
+
"loggedIn": {}
|
|
7193
6945
|
},
|
|
7194
6946
|
"isESM": false,
|
|
7195
6947
|
"relativePath": [
|
|
7196
6948
|
"build",
|
|
7197
6949
|
"commands",
|
|
7198
|
-
"
|
|
7199
|
-
"
|
|
6950
|
+
"project",
|
|
6951
|
+
"info.js"
|
|
7200
6952
|
]
|
|
7201
6953
|
},
|
|
7202
|
-
"
|
|
7203
|
-
"aliases": [
|
|
6954
|
+
"project:init": {
|
|
6955
|
+
"aliases": [
|
|
6956
|
+
"init"
|
|
6957
|
+
],
|
|
7204
6958
|
"args": {},
|
|
7205
|
-
"description": "create
|
|
6959
|
+
"description": "create or link an EAS project",
|
|
7206
6960
|
"flags": {
|
|
7207
|
-
"
|
|
7208
|
-
"description": "
|
|
7209
|
-
"name": "
|
|
7210
|
-
"default": "project",
|
|
7211
|
-
"hasDynamicHelp": false,
|
|
7212
|
-
"multiple": false,
|
|
7213
|
-
"options": [
|
|
7214
|
-
"account",
|
|
7215
|
-
"project"
|
|
7216
|
-
],
|
|
7217
|
-
"type": "option"
|
|
7218
|
-
},
|
|
7219
|
-
"name": {
|
|
7220
|
-
"description": "Name of the secret",
|
|
7221
|
-
"name": "name",
|
|
7222
|
-
"hasDynamicHelp": false,
|
|
7223
|
-
"multiple": false,
|
|
7224
|
-
"type": "option"
|
|
7225
|
-
},
|
|
7226
|
-
"value": {
|
|
7227
|
-
"description": "Text value or path to a file to store in the secret",
|
|
7228
|
-
"name": "value",
|
|
7229
|
-
"hasDynamicHelp": false,
|
|
7230
|
-
"multiple": false,
|
|
7231
|
-
"type": "option"
|
|
7232
|
-
},
|
|
7233
|
-
"type": {
|
|
7234
|
-
"description": "The type of secret",
|
|
7235
|
-
"name": "type",
|
|
6961
|
+
"id": {
|
|
6962
|
+
"description": "ID of the EAS project to link",
|
|
6963
|
+
"name": "id",
|
|
7236
6964
|
"hasDynamicHelp": false,
|
|
7237
6965
|
"multiple": false,
|
|
7238
|
-
"options": [
|
|
7239
|
-
"string",
|
|
7240
|
-
"file"
|
|
7241
|
-
],
|
|
7242
6966
|
"type": "option"
|
|
7243
6967
|
},
|
|
7244
6968
|
"force": {
|
|
7245
|
-
"description": "
|
|
6969
|
+
"description": "Whether to create a new project/link an existing project without additional prompts or overwrite any existing project ID when running with --id flag",
|
|
7246
6970
|
"name": "force",
|
|
7247
6971
|
"allowNo": false,
|
|
7248
6972
|
"type": "boolean"
|
|
@@ -7256,9 +6980,8 @@
|
|
|
7256
6980
|
}
|
|
7257
6981
|
},
|
|
7258
6982
|
"hasDynamicHelp": false,
|
|
7259
|
-
"hidden": true,
|
|
7260
6983
|
"hiddenAliases": [],
|
|
7261
|
-
"id": "
|
|
6984
|
+
"id": "project:init",
|
|
7262
6985
|
"pluginAlias": "eas-cli",
|
|
7263
6986
|
"pluginName": "eas-cli",
|
|
7264
6987
|
"pluginType": "core",
|
|
@@ -7305,41 +7028,49 @@
|
|
|
7305
7028
|
}
|
|
7306
7029
|
},
|
|
7307
7030
|
"contextDefinition": {
|
|
7308
|
-
"
|
|
7309
|
-
"
|
|
7031
|
+
"loggedIn": {},
|
|
7032
|
+
"projectDir": {}
|
|
7310
7033
|
},
|
|
7311
7034
|
"isESM": false,
|
|
7312
7035
|
"relativePath": [
|
|
7313
7036
|
"build",
|
|
7314
7037
|
"commands",
|
|
7315
|
-
"
|
|
7316
|
-
"
|
|
7038
|
+
"project",
|
|
7039
|
+
"init.js"
|
|
7317
7040
|
]
|
|
7318
7041
|
},
|
|
7319
|
-
"
|
|
7320
|
-
"aliases": [
|
|
7321
|
-
|
|
7322
|
-
|
|
7042
|
+
"project:new": {
|
|
7043
|
+
"aliases": [
|
|
7044
|
+
"new"
|
|
7045
|
+
],
|
|
7046
|
+
"args": {
|
|
7047
|
+
"path": {
|
|
7048
|
+
"description": "Path to create the project (defaults to current directory)",
|
|
7049
|
+
"name": "path",
|
|
7050
|
+
"required": false
|
|
7051
|
+
}
|
|
7052
|
+
},
|
|
7053
|
+
"description": "Create a new project configured with Expo Application Services (EAS)",
|
|
7323
7054
|
"flags": {
|
|
7324
|
-
"
|
|
7325
|
-
"
|
|
7326
|
-
"
|
|
7055
|
+
"package-manager": {
|
|
7056
|
+
"char": "p",
|
|
7057
|
+
"description": "Package manager to use for installing dependencies",
|
|
7058
|
+
"name": "package-manager",
|
|
7059
|
+
"default": "npm",
|
|
7327
7060
|
"hasDynamicHelp": false,
|
|
7328
7061
|
"multiple": false,
|
|
7062
|
+
"options": [
|
|
7063
|
+
"bun",
|
|
7064
|
+
"npm",
|
|
7065
|
+
"pnpm",
|
|
7066
|
+
"yarn"
|
|
7067
|
+
],
|
|
7329
7068
|
"type": "option"
|
|
7330
|
-
},
|
|
7331
|
-
"non-interactive": {
|
|
7332
|
-
"description": "Run the command in non-interactive mode.",
|
|
7333
|
-
"name": "non-interactive",
|
|
7334
|
-
"noCacheDefault": true,
|
|
7335
|
-
"allowNo": false,
|
|
7336
|
-
"type": "boolean"
|
|
7337
7069
|
}
|
|
7338
7070
|
},
|
|
7339
7071
|
"hasDynamicHelp": false,
|
|
7340
|
-
"hidden": true,
|
|
7341
7072
|
"hiddenAliases": [],
|
|
7342
|
-
"id": "
|
|
7073
|
+
"id": "project:new",
|
|
7343
7074
|
"pluginAlias": "eas-cli",
|
|
7344
7075
|
"pluginName": "eas-cli",
|
|
7345
7076
|
"pluginType": "core",
|
|
@@ -7386,26 +7117,31 @@
|
|
|
7386
7117
|
}
|
|
7387
7118
|
},
|
|
7388
7119
|
"contextDefinition": {
|
|
7389
|
-
"projectId": {},
|
|
7390
7120
|
"loggedIn": {}
|
|
7391
7121
|
},
|
|
7392
7122
|
"isESM": false,
|
|
7393
7123
|
"relativePath": [
|
|
7394
7124
|
"build",
|
|
7395
7125
|
"commands",
|
|
7396
|
-
"
|
|
7397
|
-
"
|
|
7126
|
+
"project",
|
|
7127
|
+
"new.js"
|
|
7398
7128
|
]
|
|
7399
7129
|
},
|
|
7400
|
-
"
|
|
7401
|
-
"aliases": [
|
|
7402
|
-
|
|
7403
|
-
|
|
7130
|
+
"project:onboarding": {
|
|
7131
|
+
"aliases": [
|
|
7132
|
+
"init:onboarding",
|
|
7133
|
+
"onboarding"
|
|
7134
|
+
],
|
|
7135
|
+
"args": {
|
|
7136
|
+
"TARGET_PROJECT_DIRECTORY": {
|
|
7137
|
+
"name": "TARGET_PROJECT_DIRECTORY"
|
|
7138
|
+
}
|
|
7139
|
+
},
|
|
7140
|
+
"description": "continue onboarding process started on the https://expo.new website.",
|
|
7404
7141
|
"flags": {},
|
|
7405
7142
|
"hasDynamicHelp": false,
|
|
7406
|
-
"hidden": true,
|
|
7407
7143
|
"hiddenAliases": [],
|
|
7408
|
-
"id": "
|
|
7144
|
+
"id": "project:onboarding",
|
|
7409
7145
|
"pluginAlias": "eas-cli",
|
|
7410
7146
|
"pluginName": "eas-cli",
|
|
7411
7147
|
"pluginType": "core",
|
|
@@ -7452,47 +7188,30 @@
|
|
|
7452
7188
|
}
|
|
7453
7189
|
},
|
|
7454
7190
|
"contextDefinition": {
|
|
7455
|
-
"
|
|
7456
|
-
"
|
|
7191
|
+
"loggedIn": {},
|
|
7192
|
+
"analytics": {}
|
|
7457
7193
|
},
|
|
7458
7194
|
"isESM": false,
|
|
7459
7195
|
"relativePath": [
|
|
7460
7196
|
"build",
|
|
7461
7197
|
"commands",
|
|
7462
|
-
"
|
|
7463
|
-
"
|
|
7198
|
+
"project",
|
|
7199
|
+
"onboarding.js"
|
|
7464
7200
|
]
|
|
7465
7201
|
},
|
|
7466
|
-
"
|
|
7202
|
+
"simulator:get": {
|
|
7467
7203
|
"aliases": [],
|
|
7468
7204
|
"args": {},
|
|
7469
|
-
"description": "
|
|
7205
|
+
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7470
7206
|
"flags": {
|
|
7471
|
-
"
|
|
7472
|
-
"description": "
|
|
7473
|
-
"name": "
|
|
7474
|
-
"
|
|
7475
|
-
"hasDynamicHelp": false,
|
|
7476
|
-
"multiple": false,
|
|
7477
|
-
"options": [
|
|
7478
|
-
"account",
|
|
7479
|
-
"project"
|
|
7480
|
-
],
|
|
7481
|
-
"type": "option"
|
|
7482
|
-
},
|
|
7483
|
-
"env-file": {
|
|
7484
|
-
"description": "Env file with secrets",
|
|
7485
|
-
"name": "env-file",
|
|
7207
|
+
"id": {
|
|
7208
|
+
"description": "Device run session ID",
|
|
7209
|
+
"name": "id",
|
|
7210
|
+
"required": true,
|
|
7486
7211
|
"hasDynamicHelp": false,
|
|
7487
7212
|
"multiple": false,
|
|
7488
7213
|
"type": "option"
|
|
7489
7214
|
},
|
|
7490
|
-
"force": {
|
|
7491
|
-
"description": "Delete and recreate existing secrets",
|
|
7492
|
-
"name": "force",
|
|
7493
|
-
"allowNo": false,
|
|
7494
|
-
"type": "boolean"
|
|
7495
|
-
},
|
|
7496
7215
|
"non-interactive": {
|
|
7497
7216
|
"description": "Run the command in non-interactive mode.",
|
|
7498
7217
|
"name": "non-interactive",
|
|
@@ -7504,7 +7223,7 @@
|
|
|
7504
7223
|
"hasDynamicHelp": false,
|
|
7505
7224
|
"hidden": true,
|
|
7506
7225
|
"hiddenAliases": [],
|
|
7507
|
-
"id": "
|
|
7226
|
+
"id": "simulator:get",
|
|
7508
7227
|
"pluginAlias": "eas-cli",
|
|
7509
7228
|
"pluginName": "eas-cli",
|
|
7510
7229
|
"pluginType": "core",
|
|
@@ -7551,22 +7270,23 @@
|
|
|
7551
7270
|
}
|
|
7552
7271
|
},
|
|
7553
7272
|
"contextDefinition": {
|
|
7554
|
-
"projectId": {},
|
|
7555
7273
|
"loggedIn": {}
|
|
7556
7274
|
},
|
|
7557
7275
|
"isESM": false,
|
|
7558
7276
|
"relativePath": [
|
|
7559
7277
|
"build",
|
|
7560
7278
|
"commands",
|
|
7561
|
-
"
|
|
7562
|
-
"
|
|
7279
|
+
"simulator",
|
|
7280
|
+
"get.js"
|
|
7563
7281
|
]
|
|
7564
7282
|
},
|
|
7565
|
-
"
|
|
7283
|
+
"simulator:start": {
|
|
7566
7284
|
"aliases": [],
|
|
7567
7285
|
"args": {},
|
|
7286
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7568
7287
|
"flags": {
|
|
7569
7288
|
"platform": {
|
|
7289
|
+
"description": "Device platform",
|
|
7570
7290
|
"name": "platform",
|
|
7571
7291
|
"required": true,
|
|
7572
7292
|
"hasDynamicHelp": false,
|
|
@@ -7577,26 +7297,37 @@
|
|
|
7577
7297
|
],
|
|
7578
7298
|
"type": "option"
|
|
7579
7299
|
},
|
|
7580
|
-
"
|
|
7581
|
-
"description": "
|
|
7582
|
-
"name": "
|
|
7300
|
+
"type": {
|
|
7301
|
+
"description": "Type of device run session to create",
|
|
7302
|
+
"name": "type",
|
|
7303
|
+
"default": "agent-device",
|
|
7583
7304
|
"hasDynamicHelp": false,
|
|
7584
7305
|
"multiple": false,
|
|
7306
|
+
"options": [
|
|
7307
|
+
"agent-device",
|
|
7308
|
+
"serve-sim"
|
|
7309
|
+
],
|
|
7585
7310
|
"type": "option"
|
|
7586
7311
|
},
|
|
7587
|
-
"
|
|
7588
|
-
"description": "
|
|
7589
|
-
"name": "
|
|
7590
|
-
"required": true,
|
|
7312
|
+
"package-version": {
|
|
7313
|
+
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7314
|
+
"name": "package-version",
|
|
7591
7315
|
"hasDynamicHelp": false,
|
|
7592
7316
|
"multiple": false,
|
|
7593
7317
|
"type": "option"
|
|
7318
|
+
},
|
|
7319
|
+
"non-interactive": {
|
|
7320
|
+
"description": "Run the command in non-interactive mode.",
|
|
7321
|
+
"name": "non-interactive",
|
|
7322
|
+
"noCacheDefault": true,
|
|
7323
|
+
"allowNo": false,
|
|
7324
|
+
"type": "boolean"
|
|
7594
7325
|
}
|
|
7595
7326
|
},
|
|
7596
7327
|
"hasDynamicHelp": false,
|
|
7597
7328
|
"hidden": true,
|
|
7598
7329
|
"hiddenAliases": [],
|
|
7599
|
-
"id": "
|
|
7330
|
+
"id": "simulator:start",
|
|
7600
7331
|
"pluginAlias": "eas-cli",
|
|
7601
7332
|
"pluginName": "eas-cli",
|
|
7602
7333
|
"pluginType": "core",
|
|
@@ -7643,53 +7374,28 @@
|
|
|
7643
7374
|
}
|
|
7644
7375
|
},
|
|
7645
7376
|
"contextDefinition": {
|
|
7646
|
-
"
|
|
7647
|
-
"
|
|
7648
|
-
"projectDir": {},
|
|
7649
|
-
"analytics": {},
|
|
7650
|
-
"vcsClient": {}
|
|
7377
|
+
"projectId": {},
|
|
7378
|
+
"loggedIn": {}
|
|
7651
7379
|
},
|
|
7652
7380
|
"isESM": false,
|
|
7653
7381
|
"relativePath": [
|
|
7654
7382
|
"build",
|
|
7655
7383
|
"commands",
|
|
7656
|
-
"
|
|
7657
|
-
"
|
|
7384
|
+
"simulator",
|
|
7385
|
+
"start.js"
|
|
7658
7386
|
]
|
|
7659
7387
|
},
|
|
7660
|
-
"simulator:
|
|
7388
|
+
"simulator:stop": {
|
|
7661
7389
|
"aliases": [],
|
|
7662
7390
|
"args": {},
|
|
7663
|
-
"description": "[EXPERIMENTAL]
|
|
7391
|
+
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
7664
7392
|
"flags": {
|
|
7665
|
-
"
|
|
7666
|
-
"description": "Device
|
|
7667
|
-
"name": "
|
|
7393
|
+
"id": {
|
|
7394
|
+
"description": "Device run session ID",
|
|
7395
|
+
"name": "id",
|
|
7668
7396
|
"required": true,
|
|
7669
7397
|
"hasDynamicHelp": false,
|
|
7670
7398
|
"multiple": false,
|
|
7671
|
-
"options": [
|
|
7672
|
-
"android",
|
|
7673
|
-
"ios"
|
|
7674
|
-
],
|
|
7675
|
-
"type": "option"
|
|
7676
|
-
},
|
|
7677
|
-
"type": {
|
|
7678
|
-
"description": "Type of device run session to create",
|
|
7679
|
-
"name": "type",
|
|
7680
|
-
"default": "agent-device",
|
|
7681
|
-
"hasDynamicHelp": false,
|
|
7682
|
-
"multiple": false,
|
|
7683
|
-
"options": [
|
|
7684
|
-
"agent-device"
|
|
7685
|
-
],
|
|
7686
|
-
"type": "option"
|
|
7687
|
-
},
|
|
7688
|
-
"package-version": {
|
|
7689
|
-
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7690
|
-
"name": "package-version",
|
|
7691
|
-
"hasDynamicHelp": false,
|
|
7692
|
-
"multiple": false,
|
|
7693
7399
|
"type": "option"
|
|
7694
7400
|
},
|
|
7695
7401
|
"non-interactive": {
|
|
@@ -7703,7 +7409,7 @@
|
|
|
7703
7409
|
"hasDynamicHelp": false,
|
|
7704
7410
|
"hidden": true,
|
|
7705
7411
|
"hiddenAliases": [],
|
|
7706
|
-
"id": "simulator:
|
|
7412
|
+
"id": "simulator:stop",
|
|
7707
7413
|
"pluginAlias": "eas-cli",
|
|
7708
7414
|
"pluginName": "eas-cli",
|
|
7709
7415
|
"pluginType": "core",
|
|
@@ -7750,7 +7456,6 @@
|
|
|
7750
7456
|
}
|
|
7751
7457
|
},
|
|
7752
7458
|
"contextDefinition": {
|
|
7753
|
-
"projectId": {},
|
|
7754
7459
|
"loggedIn": {}
|
|
7755
7460
|
},
|
|
7756
7461
|
"isESM": false,
|
|
@@ -7758,34 +7463,44 @@
|
|
|
7758
7463
|
"build",
|
|
7759
7464
|
"commands",
|
|
7760
7465
|
"simulator",
|
|
7761
|
-
"
|
|
7466
|
+
"stop.js"
|
|
7762
7467
|
]
|
|
7763
7468
|
},
|
|
7764
|
-
"
|
|
7469
|
+
"submit:internal": {
|
|
7765
7470
|
"aliases": [],
|
|
7766
7471
|
"args": {},
|
|
7767
|
-
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
7768
7472
|
"flags": {
|
|
7473
|
+
"platform": {
|
|
7474
|
+
"name": "platform",
|
|
7475
|
+
"required": true,
|
|
7476
|
+
"hasDynamicHelp": false,
|
|
7477
|
+
"multiple": false,
|
|
7478
|
+
"options": [
|
|
7479
|
+
"android",
|
|
7480
|
+
"ios"
|
|
7481
|
+
],
|
|
7482
|
+
"type": "option"
|
|
7483
|
+
},
|
|
7484
|
+
"profile": {
|
|
7485
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7486
|
+
"name": "profile",
|
|
7487
|
+
"hasDynamicHelp": false,
|
|
7488
|
+
"multiple": false,
|
|
7489
|
+
"type": "option"
|
|
7490
|
+
},
|
|
7769
7491
|
"id": {
|
|
7770
|
-
"description": "
|
|
7492
|
+
"description": "ID of the build to submit",
|
|
7771
7493
|
"name": "id",
|
|
7772
7494
|
"required": true,
|
|
7773
7495
|
"hasDynamicHelp": false,
|
|
7774
7496
|
"multiple": false,
|
|
7775
7497
|
"type": "option"
|
|
7776
|
-
},
|
|
7777
|
-
"non-interactive": {
|
|
7778
|
-
"description": "Run the command in non-interactive mode.",
|
|
7779
|
-
"name": "non-interactive",
|
|
7780
|
-
"noCacheDefault": true,
|
|
7781
|
-
"allowNo": false,
|
|
7782
|
-
"type": "boolean"
|
|
7783
7498
|
}
|
|
7784
7499
|
},
|
|
7785
7500
|
"hasDynamicHelp": false,
|
|
7786
7501
|
"hidden": true,
|
|
7787
7502
|
"hiddenAliases": [],
|
|
7788
|
-
"id": "
|
|
7503
|
+
"id": "submit:internal",
|
|
7789
7504
|
"pluginAlias": "eas-cli",
|
|
7790
7505
|
"pluginName": "eas-cli",
|
|
7791
7506
|
"pluginType": "core",
|
|
@@ -7832,14 +7547,18 @@
|
|
|
7832
7547
|
}
|
|
7833
7548
|
},
|
|
7834
7549
|
"contextDefinition": {
|
|
7835
|
-
"loggedIn": {}
|
|
7550
|
+
"loggedIn": {},
|
|
7551
|
+
"privateProjectConfig": {},
|
|
7552
|
+
"projectDir": {},
|
|
7553
|
+
"analytics": {},
|
|
7554
|
+
"vcsClient": {}
|
|
7836
7555
|
},
|
|
7837
7556
|
"isESM": false,
|
|
7838
7557
|
"relativePath": [
|
|
7839
7558
|
"build",
|
|
7840
7559
|
"commands",
|
|
7841
|
-
"
|
|
7842
|
-
"
|
|
7560
|
+
"submit",
|
|
7561
|
+
"internal.js"
|
|
7843
7562
|
]
|
|
7844
7563
|
},
|
|
7845
7564
|
"update:configure": {
|
|
@@ -9568,11 +9287,236 @@
|
|
|
9568
9287
|
"required": true
|
|
9569
9288
|
}
|
|
9570
9289
|
},
|
|
9571
|
-
"description": "view a webhook",
|
|
9572
|
-
"flags": {},
|
|
9290
|
+
"description": "view a webhook",
|
|
9291
|
+
"flags": {},
|
|
9292
|
+
"hasDynamicHelp": false,
|
|
9293
|
+
"hiddenAliases": [],
|
|
9294
|
+
"id": "webhook:view",
|
|
9295
|
+
"pluginAlias": "eas-cli",
|
|
9296
|
+
"pluginName": "eas-cli",
|
|
9297
|
+
"pluginType": "core",
|
|
9298
|
+
"strict": true,
|
|
9299
|
+
"enableJsonFlag": false,
|
|
9300
|
+
"ContextOptions": {
|
|
9301
|
+
"LoggedIn": {
|
|
9302
|
+
"loggedIn": {}
|
|
9303
|
+
},
|
|
9304
|
+
"MaybeLoggedIn": {
|
|
9305
|
+
"maybeLoggedIn": {}
|
|
9306
|
+
},
|
|
9307
|
+
"DynamicLoggedIn": {
|
|
9308
|
+
"getDynamicLoggedInAsync": {}
|
|
9309
|
+
},
|
|
9310
|
+
"SessionManagment": {
|
|
9311
|
+
"sessionManager": {}
|
|
9312
|
+
},
|
|
9313
|
+
"OptionalProjectConfig": {
|
|
9314
|
+
"optionalPrivateProjectConfig": {}
|
|
9315
|
+
},
|
|
9316
|
+
"ProjectDir": {
|
|
9317
|
+
"projectDir": {}
|
|
9318
|
+
},
|
|
9319
|
+
"DynamicProjectConfig": {
|
|
9320
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9321
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9322
|
+
},
|
|
9323
|
+
"ProjectConfig": {
|
|
9324
|
+
"loggedIn": {},
|
|
9325
|
+
"privateProjectConfig": {}
|
|
9326
|
+
},
|
|
9327
|
+
"Analytics": {
|
|
9328
|
+
"analytics": {}
|
|
9329
|
+
},
|
|
9330
|
+
"Vcs": {
|
|
9331
|
+
"vcsClient": {}
|
|
9332
|
+
},
|
|
9333
|
+
"ServerSideEnvironmentVariables": {
|
|
9334
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9335
|
+
},
|
|
9336
|
+
"ProjectId": {
|
|
9337
|
+
"projectId": {}
|
|
9338
|
+
}
|
|
9339
|
+
},
|
|
9340
|
+
"contextDefinition": {
|
|
9341
|
+
"loggedIn": {}
|
|
9342
|
+
},
|
|
9343
|
+
"isESM": false,
|
|
9344
|
+
"relativePath": [
|
|
9345
|
+
"build",
|
|
9346
|
+
"commands",
|
|
9347
|
+
"webhook",
|
|
9348
|
+
"view.js"
|
|
9349
|
+
]
|
|
9350
|
+
},
|
|
9351
|
+
"workflow:cancel": {
|
|
9352
|
+
"aliases": [],
|
|
9353
|
+
"args": {},
|
|
9354
|
+
"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.",
|
|
9355
|
+
"flags": {
|
|
9356
|
+
"non-interactive": {
|
|
9357
|
+
"description": "Run the command in non-interactive mode.",
|
|
9358
|
+
"name": "non-interactive",
|
|
9359
|
+
"noCacheDefault": true,
|
|
9360
|
+
"allowNo": false,
|
|
9361
|
+
"type": "boolean"
|
|
9362
|
+
}
|
|
9363
|
+
},
|
|
9364
|
+
"hasDynamicHelp": false,
|
|
9365
|
+
"hiddenAliases": [],
|
|
9366
|
+
"id": "workflow:cancel",
|
|
9367
|
+
"pluginAlias": "eas-cli",
|
|
9368
|
+
"pluginName": "eas-cli",
|
|
9369
|
+
"pluginType": "core",
|
|
9370
|
+
"strict": false,
|
|
9371
|
+
"enableJsonFlag": false,
|
|
9372
|
+
"ContextOptions": {
|
|
9373
|
+
"LoggedIn": {
|
|
9374
|
+
"loggedIn": {}
|
|
9375
|
+
},
|
|
9376
|
+
"MaybeLoggedIn": {
|
|
9377
|
+
"maybeLoggedIn": {}
|
|
9378
|
+
},
|
|
9379
|
+
"DynamicLoggedIn": {
|
|
9380
|
+
"getDynamicLoggedInAsync": {}
|
|
9381
|
+
},
|
|
9382
|
+
"SessionManagment": {
|
|
9383
|
+
"sessionManager": {}
|
|
9384
|
+
},
|
|
9385
|
+
"OptionalProjectConfig": {
|
|
9386
|
+
"optionalPrivateProjectConfig": {}
|
|
9387
|
+
},
|
|
9388
|
+
"ProjectDir": {
|
|
9389
|
+
"projectDir": {}
|
|
9390
|
+
},
|
|
9391
|
+
"DynamicProjectConfig": {
|
|
9392
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9393
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9394
|
+
},
|
|
9395
|
+
"ProjectConfig": {
|
|
9396
|
+
"loggedIn": {},
|
|
9397
|
+
"privateProjectConfig": {}
|
|
9398
|
+
},
|
|
9399
|
+
"Analytics": {
|
|
9400
|
+
"analytics": {}
|
|
9401
|
+
},
|
|
9402
|
+
"Vcs": {
|
|
9403
|
+
"vcsClient": {}
|
|
9404
|
+
},
|
|
9405
|
+
"ServerSideEnvironmentVariables": {
|
|
9406
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9407
|
+
},
|
|
9408
|
+
"ProjectId": {
|
|
9409
|
+
"projectId": {}
|
|
9410
|
+
}
|
|
9411
|
+
},
|
|
9412
|
+
"contextDefinition": {
|
|
9413
|
+
"projectId": {},
|
|
9414
|
+
"loggedIn": {}
|
|
9415
|
+
},
|
|
9416
|
+
"isESM": false,
|
|
9417
|
+
"relativePath": [
|
|
9418
|
+
"build",
|
|
9419
|
+
"commands",
|
|
9420
|
+
"workflow",
|
|
9421
|
+
"cancel.js"
|
|
9422
|
+
]
|
|
9423
|
+
},
|
|
9424
|
+
"workflow:create": {
|
|
9425
|
+
"aliases": [],
|
|
9426
|
+
"args": {
|
|
9427
|
+
"name": {
|
|
9428
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
9429
|
+
"name": "name",
|
|
9430
|
+
"required": false
|
|
9431
|
+
}
|
|
9432
|
+
},
|
|
9433
|
+
"description": "create a new workflow configuration YAML file",
|
|
9434
|
+
"flags": {
|
|
9435
|
+
"skip-validation": {
|
|
9436
|
+
"description": "If set, the workflow file will not be validated before being created",
|
|
9437
|
+
"name": "skip-validation",
|
|
9438
|
+
"allowNo": false,
|
|
9439
|
+
"type": "boolean"
|
|
9440
|
+
}
|
|
9441
|
+
},
|
|
9442
|
+
"hasDynamicHelp": false,
|
|
9443
|
+
"hiddenAliases": [],
|
|
9444
|
+
"id": "workflow:create",
|
|
9445
|
+
"pluginAlias": "eas-cli",
|
|
9446
|
+
"pluginName": "eas-cli",
|
|
9447
|
+
"pluginType": "core",
|
|
9448
|
+
"strict": true,
|
|
9449
|
+
"enableJsonFlag": false,
|
|
9450
|
+
"ContextOptions": {
|
|
9451
|
+
"LoggedIn": {
|
|
9452
|
+
"loggedIn": {}
|
|
9453
|
+
},
|
|
9454
|
+
"MaybeLoggedIn": {
|
|
9455
|
+
"maybeLoggedIn": {}
|
|
9456
|
+
},
|
|
9457
|
+
"DynamicLoggedIn": {
|
|
9458
|
+
"getDynamicLoggedInAsync": {}
|
|
9459
|
+
},
|
|
9460
|
+
"SessionManagment": {
|
|
9461
|
+
"sessionManager": {}
|
|
9462
|
+
},
|
|
9463
|
+
"OptionalProjectConfig": {
|
|
9464
|
+
"optionalPrivateProjectConfig": {}
|
|
9465
|
+
},
|
|
9466
|
+
"ProjectDir": {
|
|
9467
|
+
"projectDir": {}
|
|
9468
|
+
},
|
|
9469
|
+
"DynamicProjectConfig": {
|
|
9470
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9471
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9472
|
+
},
|
|
9473
|
+
"ProjectConfig": {
|
|
9474
|
+
"loggedIn": {},
|
|
9475
|
+
"privateProjectConfig": {}
|
|
9476
|
+
},
|
|
9477
|
+
"Analytics": {
|
|
9478
|
+
"analytics": {}
|
|
9479
|
+
},
|
|
9480
|
+
"Vcs": {
|
|
9481
|
+
"vcsClient": {}
|
|
9482
|
+
},
|
|
9483
|
+
"ServerSideEnvironmentVariables": {
|
|
9484
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9485
|
+
},
|
|
9486
|
+
"ProjectId": {
|
|
9487
|
+
"projectId": {}
|
|
9488
|
+
}
|
|
9489
|
+
},
|
|
9490
|
+
"contextDefinition": {
|
|
9491
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9492
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9493
|
+
"projectDir": {},
|
|
9494
|
+
"loggedIn": {}
|
|
9495
|
+
},
|
|
9496
|
+
"isESM": false,
|
|
9497
|
+
"relativePath": [
|
|
9498
|
+
"build",
|
|
9499
|
+
"commands",
|
|
9500
|
+
"workflow",
|
|
9501
|
+
"create.js"
|
|
9502
|
+
]
|
|
9503
|
+
},
|
|
9504
|
+
"workflow:list": {
|
|
9505
|
+
"aliases": [],
|
|
9506
|
+
"args": {},
|
|
9507
|
+
"description": "List workflows for the current project",
|
|
9508
|
+
"flags": {
|
|
9509
|
+
"json": {
|
|
9510
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9511
|
+
"name": "json",
|
|
9512
|
+
"allowNo": false,
|
|
9513
|
+
"type": "boolean"
|
|
9514
|
+
}
|
|
9515
|
+
},
|
|
9573
9516
|
"hasDynamicHelp": false,
|
|
9517
|
+
"hidden": true,
|
|
9574
9518
|
"hiddenAliases": [],
|
|
9575
|
-
"id": "
|
|
9519
|
+
"id": "workflow:list",
|
|
9576
9520
|
"pluginAlias": "eas-cli",
|
|
9577
9521
|
"pluginName": "eas-cli",
|
|
9578
9522
|
"pluginType": "core",
|
|
@@ -9619,36 +9563,54 @@
|
|
|
9619
9563
|
}
|
|
9620
9564
|
},
|
|
9621
9565
|
"contextDefinition": {
|
|
9566
|
+
"projectId": {},
|
|
9622
9567
|
"loggedIn": {}
|
|
9623
9568
|
},
|
|
9624
9569
|
"isESM": false,
|
|
9625
9570
|
"relativePath": [
|
|
9626
9571
|
"build",
|
|
9627
9572
|
"commands",
|
|
9628
|
-
"
|
|
9629
|
-
"
|
|
9573
|
+
"workflow",
|
|
9574
|
+
"list.js"
|
|
9630
9575
|
]
|
|
9631
9576
|
},
|
|
9632
|
-
"workflow:
|
|
9577
|
+
"workflow:logs": {
|
|
9633
9578
|
"aliases": [],
|
|
9634
|
-
"args": {
|
|
9635
|
-
|
|
9579
|
+
"args": {
|
|
9580
|
+
"id": {
|
|
9581
|
+
"description": "ID of the workflow run or workflow job to view logs for",
|
|
9582
|
+
"name": "id"
|
|
9583
|
+
}
|
|
9584
|
+
},
|
|
9585
|
+
"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.",
|
|
9636
9586
|
"flags": {
|
|
9587
|
+
"json": {
|
|
9588
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9589
|
+
"name": "json",
|
|
9590
|
+
"allowNo": false,
|
|
9591
|
+
"type": "boolean"
|
|
9592
|
+
},
|
|
9637
9593
|
"non-interactive": {
|
|
9638
9594
|
"description": "Run the command in non-interactive mode.",
|
|
9639
9595
|
"name": "non-interactive",
|
|
9640
9596
|
"noCacheDefault": true,
|
|
9641
9597
|
"allowNo": false,
|
|
9642
9598
|
"type": "boolean"
|
|
9599
|
+
},
|
|
9600
|
+
"all-steps": {
|
|
9601
|
+
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
9602
|
+
"name": "all-steps",
|
|
9603
|
+
"allowNo": false,
|
|
9604
|
+
"type": "boolean"
|
|
9643
9605
|
}
|
|
9644
9606
|
},
|
|
9645
9607
|
"hasDynamicHelp": false,
|
|
9646
9608
|
"hiddenAliases": [],
|
|
9647
|
-
"id": "workflow:
|
|
9609
|
+
"id": "workflow:logs",
|
|
9648
9610
|
"pluginAlias": "eas-cli",
|
|
9649
9611
|
"pluginName": "eas-cli",
|
|
9650
9612
|
"pluginType": "core",
|
|
9651
|
-
"strict":
|
|
9613
|
+
"strict": true,
|
|
9652
9614
|
"enableJsonFlag": false,
|
|
9653
9615
|
"ContextOptions": {
|
|
9654
9616
|
"LoggedIn": {
|
|
@@ -9699,30 +9661,65 @@
|
|
|
9699
9661
|
"build",
|
|
9700
9662
|
"commands",
|
|
9701
9663
|
"workflow",
|
|
9702
|
-
"
|
|
9664
|
+
"logs.js"
|
|
9703
9665
|
]
|
|
9704
9666
|
},
|
|
9705
|
-
"workflow:
|
|
9667
|
+
"workflow:run": {
|
|
9706
9668
|
"aliases": [],
|
|
9707
9669
|
"args": {
|
|
9708
|
-
"
|
|
9709
|
-
"description": "
|
|
9710
|
-
"name": "
|
|
9711
|
-
"required":
|
|
9670
|
+
"file": {
|
|
9671
|
+
"description": "Path to the workflow file to run",
|
|
9672
|
+
"name": "file",
|
|
9673
|
+
"required": true
|
|
9712
9674
|
}
|
|
9713
9675
|
},
|
|
9714
|
-
"description": "
|
|
9676
|
+
"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.",
|
|
9715
9677
|
"flags": {
|
|
9716
|
-
"
|
|
9717
|
-
"description": "
|
|
9718
|
-
"name": "
|
|
9678
|
+
"non-interactive": {
|
|
9679
|
+
"description": "Run the command in non-interactive mode.",
|
|
9680
|
+
"name": "non-interactive",
|
|
9681
|
+
"noCacheDefault": true,
|
|
9682
|
+
"allowNo": false,
|
|
9683
|
+
"type": "boolean"
|
|
9684
|
+
},
|
|
9685
|
+
"wait": {
|
|
9686
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9687
|
+
"name": "wait",
|
|
9688
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9689
|
+
"allowNo": true,
|
|
9690
|
+
"type": "boolean"
|
|
9691
|
+
},
|
|
9692
|
+
"input": {
|
|
9693
|
+
"aliases": [
|
|
9694
|
+
"f",
|
|
9695
|
+
"field"
|
|
9696
|
+
],
|
|
9697
|
+
"char": "F",
|
|
9698
|
+
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9699
|
+
"name": "input",
|
|
9700
|
+
"summary": "Set workflow inputs",
|
|
9701
|
+
"hasDynamicHelp": false,
|
|
9702
|
+
"multiple": true,
|
|
9703
|
+
"type": "option"
|
|
9704
|
+
},
|
|
9705
|
+
"ref": {
|
|
9706
|
+
"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.",
|
|
9707
|
+
"name": "ref",
|
|
9708
|
+
"summary": "Git reference to run the workflow on",
|
|
9709
|
+
"hasDynamicHelp": false,
|
|
9710
|
+
"multiple": false,
|
|
9711
|
+
"type": "option"
|
|
9712
|
+
},
|
|
9713
|
+
"json": {
|
|
9714
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9715
|
+
"name": "json",
|
|
9719
9716
|
"allowNo": false,
|
|
9720
9717
|
"type": "boolean"
|
|
9721
9718
|
}
|
|
9722
9719
|
},
|
|
9723
9720
|
"hasDynamicHelp": false,
|
|
9724
9721
|
"hiddenAliases": [],
|
|
9725
|
-
"id": "workflow:
|
|
9722
|
+
"id": "workflow:run",
|
|
9726
9723
|
"pluginAlias": "eas-cli",
|
|
9727
9724
|
"pluginName": "eas-cli",
|
|
9728
9725
|
"pluginType": "core",
|
|
@@ -9772,6 +9769,7 @@
|
|
|
9772
9769
|
"getDynamicPublicProjectConfigAsync": {},
|
|
9773
9770
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
9774
9771
|
"projectDir": {},
|
|
9772
|
+
"vcsClient": {},
|
|
9775
9773
|
"loggedIn": {}
|
|
9776
9774
|
},
|
|
9777
9775
|
"isESM": false,
|
|
@@ -9779,25 +9777,55 @@
|
|
|
9779
9777
|
"build",
|
|
9780
9778
|
"commands",
|
|
9781
9779
|
"workflow",
|
|
9782
|
-
"
|
|
9780
|
+
"run.js"
|
|
9783
9781
|
]
|
|
9784
9782
|
},
|
|
9785
|
-
"workflow:
|
|
9783
|
+
"workflow:runs": {
|
|
9786
9784
|
"aliases": [],
|
|
9787
9785
|
"args": {},
|
|
9788
|
-
"description": "
|
|
9786
|
+
"description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
|
|
9789
9787
|
"flags": {
|
|
9788
|
+
"workflow": {
|
|
9789
|
+
"description": "If present, the query will only return runs for the specified workflow file name",
|
|
9790
|
+
"name": "workflow",
|
|
9791
|
+
"required": false,
|
|
9792
|
+
"hasDynamicHelp": false,
|
|
9793
|
+
"multiple": false,
|
|
9794
|
+
"type": "option"
|
|
9795
|
+
},
|
|
9796
|
+
"status": {
|
|
9797
|
+
"description": "If present, filter the returned runs to select those with the specified status",
|
|
9798
|
+
"name": "status",
|
|
9799
|
+
"required": false,
|
|
9800
|
+
"hasDynamicHelp": false,
|
|
9801
|
+
"multiple": false,
|
|
9802
|
+
"options": [
|
|
9803
|
+
"ACTION_REQUIRED",
|
|
9804
|
+
"CANCELED",
|
|
9805
|
+
"FAILURE",
|
|
9806
|
+
"IN_PROGRESS",
|
|
9807
|
+
"NEW",
|
|
9808
|
+
"SUCCESS"
|
|
9809
|
+
],
|
|
9810
|
+
"type": "option"
|
|
9811
|
+
},
|
|
9790
9812
|
"json": {
|
|
9791
9813
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9792
9814
|
"name": "json",
|
|
9793
9815
|
"allowNo": false,
|
|
9794
9816
|
"type": "boolean"
|
|
9817
|
+
},
|
|
9818
|
+
"limit": {
|
|
9819
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
9820
|
+
"name": "limit",
|
|
9821
|
+
"hasDynamicHelp": false,
|
|
9822
|
+
"multiple": false,
|
|
9823
|
+
"type": "option"
|
|
9795
9824
|
}
|
|
9796
9825
|
},
|
|
9797
9826
|
"hasDynamicHelp": false,
|
|
9798
|
-
"hidden": true,
|
|
9799
9827
|
"hiddenAliases": [],
|
|
9800
|
-
"id": "workflow:
|
|
9828
|
+
"id": "workflow:runs",
|
|
9801
9829
|
"pluginAlias": "eas-cli",
|
|
9802
9830
|
"pluginName": "eas-cli",
|
|
9803
9831
|
"pluginType": "core",
|
|
@@ -9852,25 +9880,19 @@
|
|
|
9852
9880
|
"build",
|
|
9853
9881
|
"commands",
|
|
9854
9882
|
"workflow",
|
|
9855
|
-
"
|
|
9883
|
+
"runs.js"
|
|
9856
9884
|
]
|
|
9857
9885
|
},
|
|
9858
|
-
"workflow:
|
|
9886
|
+
"workflow:status": {
|
|
9859
9887
|
"aliases": [],
|
|
9860
9888
|
"args": {
|
|
9861
|
-
"
|
|
9862
|
-
"description": "
|
|
9863
|
-
"name": "
|
|
9889
|
+
"WORKFLOW_RUN_ID": {
|
|
9890
|
+
"description": "A workflow run ID.",
|
|
9891
|
+
"name": "WORKFLOW_RUN_ID"
|
|
9864
9892
|
}
|
|
9865
9893
|
},
|
|
9866
|
-
"description": "
|
|
9894
|
+
"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.",
|
|
9867
9895
|
"flags": {
|
|
9868
|
-
"json": {
|
|
9869
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9870
|
-
"name": "json",
|
|
9871
|
-
"allowNo": false,
|
|
9872
|
-
"type": "boolean"
|
|
9873
|
-
},
|
|
9874
9896
|
"non-interactive": {
|
|
9875
9897
|
"description": "Run the command in non-interactive mode.",
|
|
9876
9898
|
"name": "non-interactive",
|
|
@@ -9878,16 +9900,23 @@
|
|
|
9878
9900
|
"allowNo": false,
|
|
9879
9901
|
"type": "boolean"
|
|
9880
9902
|
},
|
|
9881
|
-
"
|
|
9882
|
-
"description": "
|
|
9883
|
-
"name": "
|
|
9903
|
+
"wait": {
|
|
9904
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9905
|
+
"name": "wait",
|
|
9906
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9907
|
+
"allowNo": true,
|
|
9908
|
+
"type": "boolean"
|
|
9909
|
+
},
|
|
9910
|
+
"json": {
|
|
9911
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9912
|
+
"name": "json",
|
|
9884
9913
|
"allowNo": false,
|
|
9885
9914
|
"type": "boolean"
|
|
9886
9915
|
}
|
|
9887
9916
|
},
|
|
9888
9917
|
"hasDynamicHelp": false,
|
|
9889
9918
|
"hiddenAliases": [],
|
|
9890
|
-
"id": "workflow:
|
|
9919
|
+
"id": "workflow:status",
|
|
9891
9920
|
"pluginAlias": "eas-cli",
|
|
9892
9921
|
"pluginName": "eas-cli",
|
|
9893
9922
|
"pluginType": "core",
|
|
@@ -9934,7 +9963,10 @@
|
|
|
9934
9963
|
}
|
|
9935
9964
|
},
|
|
9936
9965
|
"contextDefinition": {
|
|
9937
|
-
"
|
|
9966
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9967
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9968
|
+
"projectDir": {},
|
|
9969
|
+
"vcsClient": {},
|
|
9938
9970
|
"loggedIn": {}
|
|
9939
9971
|
},
|
|
9940
9972
|
"isESM": false,
|
|
@@ -9942,19 +9974,19 @@
|
|
|
9942
9974
|
"build",
|
|
9943
9975
|
"commands",
|
|
9944
9976
|
"workflow",
|
|
9945
|
-
"
|
|
9977
|
+
"status.js"
|
|
9946
9978
|
]
|
|
9947
9979
|
},
|
|
9948
|
-
"workflow:
|
|
9980
|
+
"workflow:validate": {
|
|
9949
9981
|
"aliases": [],
|
|
9950
9982
|
"args": {
|
|
9951
|
-
"
|
|
9952
|
-
"description": "Path to the workflow file
|
|
9953
|
-
"name": "
|
|
9983
|
+
"path": {
|
|
9984
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
9985
|
+
"name": "path",
|
|
9954
9986
|
"required": true
|
|
9955
9987
|
}
|
|
9956
9988
|
},
|
|
9957
|
-
"description": "
|
|
9989
|
+
"description": "validate a workflow configuration yaml file",
|
|
9958
9990
|
"flags": {
|
|
9959
9991
|
"non-interactive": {
|
|
9960
9992
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -9962,45 +9994,98 @@
|
|
|
9962
9994
|
"noCacheDefault": true,
|
|
9963
9995
|
"allowNo": false,
|
|
9964
9996
|
"type": "boolean"
|
|
9997
|
+
}
|
|
9998
|
+
},
|
|
9999
|
+
"hasDynamicHelp": false,
|
|
10000
|
+
"hiddenAliases": [],
|
|
10001
|
+
"id": "workflow:validate",
|
|
10002
|
+
"pluginAlias": "eas-cli",
|
|
10003
|
+
"pluginName": "eas-cli",
|
|
10004
|
+
"pluginType": "core",
|
|
10005
|
+
"strict": true,
|
|
10006
|
+
"enableJsonFlag": false,
|
|
10007
|
+
"ContextOptions": {
|
|
10008
|
+
"LoggedIn": {
|
|
10009
|
+
"loggedIn": {}
|
|
9965
10010
|
},
|
|
9966
|
-
"
|
|
9967
|
-
"
|
|
9968
|
-
"name": "wait",
|
|
9969
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9970
|
-
"allowNo": true,
|
|
9971
|
-
"type": "boolean"
|
|
10011
|
+
"MaybeLoggedIn": {
|
|
10012
|
+
"maybeLoggedIn": {}
|
|
9972
10013
|
},
|
|
9973
|
-
"
|
|
9974
|
-
"
|
|
9975
|
-
"f",
|
|
9976
|
-
"field"
|
|
9977
|
-
],
|
|
9978
|
-
"char": "F",
|
|
9979
|
-
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9980
|
-
"name": "input",
|
|
9981
|
-
"summary": "Set workflow inputs",
|
|
9982
|
-
"hasDynamicHelp": false,
|
|
9983
|
-
"multiple": true,
|
|
9984
|
-
"type": "option"
|
|
10014
|
+
"DynamicLoggedIn": {
|
|
10015
|
+
"getDynamicLoggedInAsync": {}
|
|
9985
10016
|
},
|
|
9986
|
-
"
|
|
9987
|
-
"
|
|
9988
|
-
|
|
9989
|
-
|
|
9990
|
-
"
|
|
9991
|
-
|
|
9992
|
-
|
|
10017
|
+
"SessionManagment": {
|
|
10018
|
+
"sessionManager": {}
|
|
10019
|
+
},
|
|
10020
|
+
"OptionalProjectConfig": {
|
|
10021
|
+
"optionalPrivateProjectConfig": {}
|
|
10022
|
+
},
|
|
10023
|
+
"ProjectDir": {
|
|
10024
|
+
"projectDir": {}
|
|
10025
|
+
},
|
|
10026
|
+
"DynamicProjectConfig": {
|
|
10027
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10028
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9993
10029
|
},
|
|
10030
|
+
"ProjectConfig": {
|
|
10031
|
+
"loggedIn": {},
|
|
10032
|
+
"privateProjectConfig": {}
|
|
10033
|
+
},
|
|
10034
|
+
"Analytics": {
|
|
10035
|
+
"analytics": {}
|
|
10036
|
+
},
|
|
10037
|
+
"Vcs": {
|
|
10038
|
+
"vcsClient": {}
|
|
10039
|
+
},
|
|
10040
|
+
"ServerSideEnvironmentVariables": {
|
|
10041
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
10042
|
+
},
|
|
10043
|
+
"ProjectId": {
|
|
10044
|
+
"projectId": {}
|
|
10045
|
+
}
|
|
10046
|
+
},
|
|
10047
|
+
"contextDefinition": {
|
|
10048
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10049
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10050
|
+
"projectDir": {},
|
|
10051
|
+
"projectId": {},
|
|
10052
|
+
"loggedIn": {}
|
|
10053
|
+
},
|
|
10054
|
+
"isESM": false,
|
|
10055
|
+
"relativePath": [
|
|
10056
|
+
"build",
|
|
10057
|
+
"commands",
|
|
10058
|
+
"workflow",
|
|
10059
|
+
"validate.js"
|
|
10060
|
+
]
|
|
10061
|
+
},
|
|
10062
|
+
"workflow:view": {
|
|
10063
|
+
"aliases": [],
|
|
10064
|
+
"args": {
|
|
10065
|
+
"id": {
|
|
10066
|
+
"description": "ID of the workflow run to view",
|
|
10067
|
+
"name": "id"
|
|
10068
|
+
}
|
|
10069
|
+
},
|
|
10070
|
+
"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.",
|
|
10071
|
+
"flags": {
|
|
9994
10072
|
"json": {
|
|
9995
10073
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9996
10074
|
"name": "json",
|
|
9997
10075
|
"allowNo": false,
|
|
9998
10076
|
"type": "boolean"
|
|
10077
|
+
},
|
|
10078
|
+
"non-interactive": {
|
|
10079
|
+
"description": "Run the command in non-interactive mode.",
|
|
10080
|
+
"name": "non-interactive",
|
|
10081
|
+
"noCacheDefault": true,
|
|
10082
|
+
"allowNo": false,
|
|
10083
|
+
"type": "boolean"
|
|
9999
10084
|
}
|
|
10000
10085
|
},
|
|
10001
10086
|
"hasDynamicHelp": false,
|
|
10002
10087
|
"hiddenAliases": [],
|
|
10003
|
-
"id": "workflow:
|
|
10088
|
+
"id": "workflow:view",
|
|
10004
10089
|
"pluginAlias": "eas-cli",
|
|
10005
10090
|
"pluginName": "eas-cli",
|
|
10006
10091
|
"pluginType": "core",
|
|
@@ -10047,10 +10132,7 @@
|
|
|
10047
10132
|
}
|
|
10048
10133
|
},
|
|
10049
10134
|
"contextDefinition": {
|
|
10050
|
-
"
|
|
10051
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10052
|
-
"projectDir": {},
|
|
10053
|
-
"vcsClient": {},
|
|
10135
|
+
"projectId": {},
|
|
10054
10136
|
"loggedIn": {}
|
|
10055
10137
|
},
|
|
10056
10138
|
"isESM": false,
|
|
@@ -10058,55 +10140,69 @@
|
|
|
10058
10140
|
"build",
|
|
10059
10141
|
"commands",
|
|
10060
10142
|
"workflow",
|
|
10061
|
-
"
|
|
10143
|
+
"view.js"
|
|
10062
10144
|
]
|
|
10063
10145
|
},
|
|
10064
|
-
"
|
|
10146
|
+
"secret:create": {
|
|
10065
10147
|
"aliases": [],
|
|
10066
10148
|
"args": {},
|
|
10067
|
-
"description": "
|
|
10149
|
+
"description": "create an environment secret on the current project or owner account",
|
|
10068
10150
|
"flags": {
|
|
10069
|
-
"
|
|
10070
|
-
"description": "
|
|
10071
|
-
"name": "
|
|
10072
|
-
"
|
|
10151
|
+
"scope": {
|
|
10152
|
+
"description": "Scope for the secret",
|
|
10153
|
+
"name": "scope",
|
|
10154
|
+
"default": "project",
|
|
10073
10155
|
"hasDynamicHelp": false,
|
|
10074
10156
|
"multiple": false,
|
|
10157
|
+
"options": [
|
|
10158
|
+
"account",
|
|
10159
|
+
"project"
|
|
10160
|
+
],
|
|
10075
10161
|
"type": "option"
|
|
10076
10162
|
},
|
|
10077
|
-
"
|
|
10078
|
-
"description": "
|
|
10079
|
-
"name": "
|
|
10080
|
-
"
|
|
10163
|
+
"name": {
|
|
10164
|
+
"description": "Name of the secret",
|
|
10165
|
+
"name": "name",
|
|
10166
|
+
"hasDynamicHelp": false,
|
|
10167
|
+
"multiple": false,
|
|
10168
|
+
"type": "option"
|
|
10169
|
+
},
|
|
10170
|
+
"value": {
|
|
10171
|
+
"description": "Text value or path to a file to store in the secret",
|
|
10172
|
+
"name": "value",
|
|
10173
|
+
"hasDynamicHelp": false,
|
|
10174
|
+
"multiple": false,
|
|
10175
|
+
"type": "option"
|
|
10176
|
+
},
|
|
10177
|
+
"type": {
|
|
10178
|
+
"description": "The type of secret",
|
|
10179
|
+
"name": "type",
|
|
10081
10180
|
"hasDynamicHelp": false,
|
|
10082
10181
|
"multiple": false,
|
|
10083
10182
|
"options": [
|
|
10084
|
-
"
|
|
10085
|
-
"
|
|
10086
|
-
"FAILURE",
|
|
10087
|
-
"IN_PROGRESS",
|
|
10088
|
-
"NEW",
|
|
10089
|
-
"SUCCESS"
|
|
10183
|
+
"string",
|
|
10184
|
+
"file"
|
|
10090
10185
|
],
|
|
10091
10186
|
"type": "option"
|
|
10092
10187
|
},
|
|
10093
|
-
"
|
|
10094
|
-
"description": "
|
|
10095
|
-
"name": "
|
|
10188
|
+
"force": {
|
|
10189
|
+
"description": "Delete and recreate existing secrets",
|
|
10190
|
+
"name": "force",
|
|
10096
10191
|
"allowNo": false,
|
|
10097
10192
|
"type": "boolean"
|
|
10098
10193
|
},
|
|
10099
|
-
"
|
|
10100
|
-
"description": "
|
|
10101
|
-
"name": "
|
|
10102
|
-
"
|
|
10103
|
-
"
|
|
10104
|
-
"type": "
|
|
10194
|
+
"non-interactive": {
|
|
10195
|
+
"description": "Run the command in non-interactive mode.",
|
|
10196
|
+
"name": "non-interactive",
|
|
10197
|
+
"noCacheDefault": true,
|
|
10198
|
+
"allowNo": false,
|
|
10199
|
+
"type": "boolean"
|
|
10105
10200
|
}
|
|
10106
10201
|
},
|
|
10107
10202
|
"hasDynamicHelp": false,
|
|
10203
|
+
"hidden": true,
|
|
10108
10204
|
"hiddenAliases": [],
|
|
10109
|
-
"id": "
|
|
10205
|
+
"id": "secret:create",
|
|
10110
10206
|
"pluginAlias": "eas-cli",
|
|
10111
10207
|
"pluginName": "eas-cli",
|
|
10112
10208
|
"pluginType": "core",
|
|
@@ -10160,44 +10256,34 @@
|
|
|
10160
10256
|
"relativePath": [
|
|
10161
10257
|
"build",
|
|
10162
10258
|
"commands",
|
|
10163
|
-
"
|
|
10164
|
-
"
|
|
10259
|
+
"secret",
|
|
10260
|
+
"create.js"
|
|
10165
10261
|
]
|
|
10166
10262
|
},
|
|
10167
|
-
"
|
|
10263
|
+
"secret:delete": {
|
|
10168
10264
|
"aliases": [],
|
|
10169
|
-
"args": {
|
|
10170
|
-
|
|
10171
|
-
"description": "A workflow run ID.",
|
|
10172
|
-
"name": "WORKFLOW_RUN_ID"
|
|
10173
|
-
}
|
|
10174
|
-
},
|
|
10175
|
-
"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.",
|
|
10265
|
+
"args": {},
|
|
10266
|
+
"description": "delete an environment secret by ID",
|
|
10176
10267
|
"flags": {
|
|
10268
|
+
"id": {
|
|
10269
|
+
"description": "ID of the secret to delete",
|
|
10270
|
+
"name": "id",
|
|
10271
|
+
"hasDynamicHelp": false,
|
|
10272
|
+
"multiple": false,
|
|
10273
|
+
"type": "option"
|
|
10274
|
+
},
|
|
10177
10275
|
"non-interactive": {
|
|
10178
10276
|
"description": "Run the command in non-interactive mode.",
|
|
10179
10277
|
"name": "non-interactive",
|
|
10180
10278
|
"noCacheDefault": true,
|
|
10181
10279
|
"allowNo": false,
|
|
10182
10280
|
"type": "boolean"
|
|
10183
|
-
},
|
|
10184
|
-
"wait": {
|
|
10185
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10186
|
-
"name": "wait",
|
|
10187
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10188
|
-
"allowNo": true,
|
|
10189
|
-
"type": "boolean"
|
|
10190
|
-
},
|
|
10191
|
-
"json": {
|
|
10192
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10193
|
-
"name": "json",
|
|
10194
|
-
"allowNo": false,
|
|
10195
|
-
"type": "boolean"
|
|
10196
10281
|
}
|
|
10197
10282
|
},
|
|
10198
10283
|
"hasDynamicHelp": false,
|
|
10284
|
+
"hidden": true,
|
|
10199
10285
|
"hiddenAliases": [],
|
|
10200
|
-
"id": "
|
|
10286
|
+
"id": "secret:delete",
|
|
10201
10287
|
"pluginAlias": "eas-cli",
|
|
10202
10288
|
"pluginName": "eas-cli",
|
|
10203
10289
|
"pluginType": "core",
|
|
@@ -10244,42 +10330,26 @@
|
|
|
10244
10330
|
}
|
|
10245
10331
|
},
|
|
10246
10332
|
"contextDefinition": {
|
|
10247
|
-
"
|
|
10248
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10249
|
-
"projectDir": {},
|
|
10250
|
-
"vcsClient": {},
|
|
10333
|
+
"projectId": {},
|
|
10251
10334
|
"loggedIn": {}
|
|
10252
10335
|
},
|
|
10253
10336
|
"isESM": false,
|
|
10254
10337
|
"relativePath": [
|
|
10255
10338
|
"build",
|
|
10256
10339
|
"commands",
|
|
10257
|
-
"
|
|
10258
|
-
"
|
|
10340
|
+
"secret",
|
|
10341
|
+
"delete.js"
|
|
10259
10342
|
]
|
|
10260
10343
|
},
|
|
10261
|
-
"
|
|
10344
|
+
"secret:list": {
|
|
10262
10345
|
"aliases": [],
|
|
10263
|
-
"args": {
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
"name": "path",
|
|
10267
|
-
"required": true
|
|
10268
|
-
}
|
|
10269
|
-
},
|
|
10270
|
-
"description": "validate a workflow configuration yaml file",
|
|
10271
|
-
"flags": {
|
|
10272
|
-
"non-interactive": {
|
|
10273
|
-
"description": "Run the command in non-interactive mode.",
|
|
10274
|
-
"name": "non-interactive",
|
|
10275
|
-
"noCacheDefault": true,
|
|
10276
|
-
"allowNo": false,
|
|
10277
|
-
"type": "boolean"
|
|
10278
|
-
}
|
|
10279
|
-
},
|
|
10346
|
+
"args": {},
|
|
10347
|
+
"description": "list environment secrets available for your current app",
|
|
10348
|
+
"flags": {},
|
|
10280
10349
|
"hasDynamicHelp": false,
|
|
10350
|
+
"hidden": true,
|
|
10281
10351
|
"hiddenAliases": [],
|
|
10282
|
-
"id": "
|
|
10352
|
+
"id": "secret:list",
|
|
10283
10353
|
"pluginAlias": "eas-cli",
|
|
10284
10354
|
"pluginName": "eas-cli",
|
|
10285
10355
|
"pluginType": "core",
|
|
@@ -10326,9 +10396,6 @@
|
|
|
10326
10396
|
}
|
|
10327
10397
|
},
|
|
10328
10398
|
"contextDefinition": {
|
|
10329
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10330
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10331
|
-
"projectDir": {},
|
|
10332
10399
|
"projectId": {},
|
|
10333
10400
|
"loggedIn": {}
|
|
10334
10401
|
},
|
|
@@ -10336,23 +10403,37 @@
|
|
|
10336
10403
|
"relativePath": [
|
|
10337
10404
|
"build",
|
|
10338
10405
|
"commands",
|
|
10339
|
-
"
|
|
10340
|
-
"
|
|
10406
|
+
"secret",
|
|
10407
|
+
"list.js"
|
|
10341
10408
|
]
|
|
10342
10409
|
},
|
|
10343
|
-
"
|
|
10410
|
+
"secret:push": {
|
|
10344
10411
|
"aliases": [],
|
|
10345
|
-
"args": {
|
|
10346
|
-
|
|
10347
|
-
"description": "ID of the workflow run to view",
|
|
10348
|
-
"name": "id"
|
|
10349
|
-
}
|
|
10350
|
-
},
|
|
10351
|
-
"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.",
|
|
10412
|
+
"args": {},
|
|
10413
|
+
"description": "read environment secrets from env file and store on the server",
|
|
10352
10414
|
"flags": {
|
|
10353
|
-
"
|
|
10354
|
-
"description": "
|
|
10355
|
-
"name": "
|
|
10415
|
+
"scope": {
|
|
10416
|
+
"description": "Scope for the secrets",
|
|
10417
|
+
"name": "scope",
|
|
10418
|
+
"default": "project",
|
|
10419
|
+
"hasDynamicHelp": false,
|
|
10420
|
+
"multiple": false,
|
|
10421
|
+
"options": [
|
|
10422
|
+
"account",
|
|
10423
|
+
"project"
|
|
10424
|
+
],
|
|
10425
|
+
"type": "option"
|
|
10426
|
+
},
|
|
10427
|
+
"env-file": {
|
|
10428
|
+
"description": "Env file with secrets",
|
|
10429
|
+
"name": "env-file",
|
|
10430
|
+
"hasDynamicHelp": false,
|
|
10431
|
+
"multiple": false,
|
|
10432
|
+
"type": "option"
|
|
10433
|
+
},
|
|
10434
|
+
"force": {
|
|
10435
|
+
"description": "Delete and recreate existing secrets",
|
|
10436
|
+
"name": "force",
|
|
10356
10437
|
"allowNo": false,
|
|
10357
10438
|
"type": "boolean"
|
|
10358
10439
|
},
|
|
@@ -10365,8 +10446,9 @@
|
|
|
10365
10446
|
}
|
|
10366
10447
|
},
|
|
10367
10448
|
"hasDynamicHelp": false,
|
|
10449
|
+
"hidden": true,
|
|
10368
10450
|
"hiddenAliases": [],
|
|
10369
|
-
"id": "
|
|
10451
|
+
"id": "secret:push",
|
|
10370
10452
|
"pluginAlias": "eas-cli",
|
|
10371
10453
|
"pluginName": "eas-cli",
|
|
10372
10454
|
"pluginType": "core",
|
|
@@ -10420,8 +10502,8 @@
|
|
|
10420
10502
|
"relativePath": [
|
|
10421
10503
|
"build",
|
|
10422
10504
|
"commands",
|
|
10423
|
-
"
|
|
10424
|
-
"
|
|
10505
|
+
"secret",
|
|
10506
|
+
"push.js"
|
|
10425
10507
|
]
|
|
10426
10508
|
},
|
|
10427
10509
|
"build:version:get": {
|
|
@@ -10911,49 +10993,47 @@
|
|
|
10911
10993
|
"index.js"
|
|
10912
10994
|
]
|
|
10913
10995
|
},
|
|
10914
|
-
"integrations:
|
|
10996
|
+
"integrations:convex:connect": {
|
|
10915
10997
|
"aliases": [],
|
|
10916
10998
|
"args": {},
|
|
10917
|
-
"description": "connect
|
|
10999
|
+
"description": "connect Convex to your Expo project",
|
|
10918
11000
|
"flags": {
|
|
10919
|
-
"
|
|
10920
|
-
"description": "
|
|
10921
|
-
"name": "
|
|
11001
|
+
"non-interactive": {
|
|
11002
|
+
"description": "Run the command in non-interactive mode.",
|
|
11003
|
+
"name": "non-interactive",
|
|
11004
|
+
"noCacheDefault": true,
|
|
11005
|
+
"allowNo": false,
|
|
11006
|
+
"type": "boolean"
|
|
11007
|
+
},
|
|
11008
|
+
"region": {
|
|
11009
|
+
"description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
|
|
11010
|
+
"name": "region",
|
|
10922
11011
|
"hasDynamicHelp": false,
|
|
10923
11012
|
"multiple": false,
|
|
11013
|
+
"options": [
|
|
11014
|
+
"aws-us-east-1",
|
|
11015
|
+
"aws-eu-west-1"
|
|
11016
|
+
],
|
|
10924
11017
|
"type": "option"
|
|
10925
11018
|
},
|
|
10926
|
-
"
|
|
10927
|
-
"description": "
|
|
10928
|
-
"name": "
|
|
11019
|
+
"team-name": {
|
|
11020
|
+
"description": "Name for the new Convex team (defaults to EAS account name)",
|
|
11021
|
+
"name": "team-name",
|
|
10929
11022
|
"hasDynamicHelp": false,
|
|
10930
11023
|
"multiple": false,
|
|
10931
11024
|
"type": "option"
|
|
10932
11025
|
},
|
|
10933
|
-
"
|
|
10934
|
-
"description": "
|
|
10935
|
-
"name": "
|
|
11026
|
+
"project-name": {
|
|
11027
|
+
"description": "Name for the Convex project (defaults to app slug)",
|
|
11028
|
+
"name": "project-name",
|
|
10936
11029
|
"hasDynamicHelp": false,
|
|
10937
11030
|
"multiple": false,
|
|
10938
11031
|
"type": "option"
|
|
10939
|
-
},
|
|
10940
|
-
"json": {
|
|
10941
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
10942
|
-
"name": "json",
|
|
10943
|
-
"allowNo": false,
|
|
10944
|
-
"type": "boolean"
|
|
10945
|
-
},
|
|
10946
|
-
"non-interactive": {
|
|
10947
|
-
"description": "Run the command in non-interactive mode.",
|
|
10948
|
-
"name": "non-interactive",
|
|
10949
|
-
"noCacheDefault": true,
|
|
10950
|
-
"allowNo": false,
|
|
10951
|
-
"type": "boolean"
|
|
10952
11032
|
}
|
|
10953
11033
|
},
|
|
10954
11034
|
"hasDynamicHelp": false,
|
|
10955
11035
|
"hiddenAliases": [],
|
|
10956
|
-
"id": "integrations:
|
|
11036
|
+
"id": "integrations:convex:connect",
|
|
10957
11037
|
"pluginAlias": "eas-cli",
|
|
10958
11038
|
"pluginName": "eas-cli",
|
|
10959
11039
|
"pluginType": "core",
|
|
@@ -11000,49 +11080,26 @@
|
|
|
11000
11080
|
}
|
|
11001
11081
|
},
|
|
11002
11082
|
"contextDefinition": {
|
|
11003
|
-
"projectId": {},
|
|
11004
|
-
"projectDir": {},
|
|
11005
11083
|
"loggedIn": {},
|
|
11006
|
-
"
|
|
11007
|
-
"vcsClient": {}
|
|
11084
|
+
"privateProjectConfig": {}
|
|
11008
11085
|
},
|
|
11009
11086
|
"isESM": false,
|
|
11010
11087
|
"relativePath": [
|
|
11011
11088
|
"build",
|
|
11012
11089
|
"commands",
|
|
11013
11090
|
"integrations",
|
|
11014
|
-
"
|
|
11091
|
+
"convex",
|
|
11015
11092
|
"connect.js"
|
|
11016
11093
|
]
|
|
11017
11094
|
},
|
|
11018
|
-
"integrations:
|
|
11095
|
+
"integrations:convex:dashboard": {
|
|
11019
11096
|
"aliases": [],
|
|
11020
11097
|
"args": {},
|
|
11021
|
-
"description": "
|
|
11022
|
-
"flags": {
|
|
11023
|
-
"yes": {
|
|
11024
|
-
"description": "Skip confirmation prompt",
|
|
11025
|
-
"name": "yes",
|
|
11026
|
-
"allowNo": false,
|
|
11027
|
-
"type": "boolean"
|
|
11028
|
-
},
|
|
11029
|
-
"json": {
|
|
11030
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11031
|
-
"name": "json",
|
|
11032
|
-
"allowNo": false,
|
|
11033
|
-
"type": "boolean"
|
|
11034
|
-
},
|
|
11035
|
-
"non-interactive": {
|
|
11036
|
-
"description": "Run the command in non-interactive mode.",
|
|
11037
|
-
"name": "non-interactive",
|
|
11038
|
-
"noCacheDefault": true,
|
|
11039
|
-
"allowNo": false,
|
|
11040
|
-
"type": "boolean"
|
|
11041
|
-
}
|
|
11042
|
-
},
|
|
11098
|
+
"description": "open the Convex dashboard for the linked Convex project",
|
|
11099
|
+
"flags": {},
|
|
11043
11100
|
"hasDynamicHelp": false,
|
|
11044
11101
|
"hiddenAliases": [],
|
|
11045
|
-
"id": "integrations:
|
|
11102
|
+
"id": "integrations:convex:dashboard",
|
|
11046
11103
|
"pluginAlias": "eas-cli",
|
|
11047
11104
|
"pluginName": "eas-cli",
|
|
11048
11105
|
"pluginType": "core",
|
|
@@ -11089,40 +11146,26 @@
|
|
|
11089
11146
|
}
|
|
11090
11147
|
},
|
|
11091
11148
|
"contextDefinition": {
|
|
11092
|
-
"
|
|
11093
|
-
"
|
|
11149
|
+
"loggedIn": {},
|
|
11150
|
+
"privateProjectConfig": {}
|
|
11094
11151
|
},
|
|
11095
11152
|
"isESM": false,
|
|
11096
11153
|
"relativePath": [
|
|
11097
11154
|
"build",
|
|
11098
11155
|
"commands",
|
|
11099
11156
|
"integrations",
|
|
11100
|
-
"
|
|
11101
|
-
"
|
|
11157
|
+
"convex",
|
|
11158
|
+
"dashboard.js"
|
|
11102
11159
|
]
|
|
11103
11160
|
},
|
|
11104
|
-
"integrations:
|
|
11161
|
+
"integrations:convex:project": {
|
|
11105
11162
|
"aliases": [],
|
|
11106
11163
|
"args": {},
|
|
11107
|
-
"description": "
|
|
11108
|
-
"flags": {
|
|
11109
|
-
"json": {
|
|
11110
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11111
|
-
"name": "json",
|
|
11112
|
-
"allowNo": false,
|
|
11113
|
-
"type": "boolean"
|
|
11114
|
-
},
|
|
11115
|
-
"non-interactive": {
|
|
11116
|
-
"description": "Run the command in non-interactive mode.",
|
|
11117
|
-
"name": "non-interactive",
|
|
11118
|
-
"noCacheDefault": true,
|
|
11119
|
-
"allowNo": false,
|
|
11120
|
-
"type": "boolean"
|
|
11121
|
-
}
|
|
11122
|
-
},
|
|
11164
|
+
"description": "display the Convex project linked to the current Expo app",
|
|
11165
|
+
"flags": {},
|
|
11123
11166
|
"hasDynamicHelp": false,
|
|
11124
11167
|
"hiddenAliases": [],
|
|
11125
|
-
"id": "integrations:
|
|
11168
|
+
"id": "integrations:convex:project",
|
|
11126
11169
|
"pluginAlias": "eas-cli",
|
|
11127
11170
|
"pluginName": "eas-cli",
|
|
11128
11171
|
"pluginType": "core",
|
|
@@ -11169,59 +11212,26 @@
|
|
|
11169
11212
|
}
|
|
11170
11213
|
},
|
|
11171
11214
|
"contextDefinition": {
|
|
11172
|
-
"
|
|
11173
|
-
"
|
|
11215
|
+
"loggedIn": {},
|
|
11216
|
+
"privateProjectConfig": {}
|
|
11174
11217
|
},
|
|
11175
11218
|
"isESM": false,
|
|
11176
11219
|
"relativePath": [
|
|
11177
11220
|
"build",
|
|
11178
11221
|
"commands",
|
|
11179
11222
|
"integrations",
|
|
11180
|
-
"
|
|
11181
|
-
"
|
|
11223
|
+
"convex",
|
|
11224
|
+
"project.js"
|
|
11182
11225
|
]
|
|
11183
11226
|
},
|
|
11184
|
-
"integrations:convex:
|
|
11227
|
+
"integrations:convex:team": {
|
|
11185
11228
|
"aliases": [],
|
|
11186
11229
|
"args": {},
|
|
11187
|
-
"description": "
|
|
11188
|
-
"flags": {
|
|
11189
|
-
"non-interactive": {
|
|
11190
|
-
"description": "Run the command in non-interactive mode.",
|
|
11191
|
-
"name": "non-interactive",
|
|
11192
|
-
"noCacheDefault": true,
|
|
11193
|
-
"allowNo": false,
|
|
11194
|
-
"type": "boolean"
|
|
11195
|
-
},
|
|
11196
|
-
"region": {
|
|
11197
|
-
"description": "Convex deployment region (e.g. aws-us-east-1, aws-eu-west-1)",
|
|
11198
|
-
"name": "region",
|
|
11199
|
-
"hasDynamicHelp": false,
|
|
11200
|
-
"multiple": false,
|
|
11201
|
-
"options": [
|
|
11202
|
-
"aws-us-east-1",
|
|
11203
|
-
"aws-eu-west-1"
|
|
11204
|
-
],
|
|
11205
|
-
"type": "option"
|
|
11206
|
-
},
|
|
11207
|
-
"team-name": {
|
|
11208
|
-
"description": "Name for the new Convex team (defaults to EAS account name)",
|
|
11209
|
-
"name": "team-name",
|
|
11210
|
-
"hasDynamicHelp": false,
|
|
11211
|
-
"multiple": false,
|
|
11212
|
-
"type": "option"
|
|
11213
|
-
},
|
|
11214
|
-
"project-name": {
|
|
11215
|
-
"description": "Name for the Convex project (defaults to app slug)",
|
|
11216
|
-
"name": "project-name",
|
|
11217
|
-
"hasDynamicHelp": false,
|
|
11218
|
-
"multiple": false,
|
|
11219
|
-
"type": "option"
|
|
11220
|
-
}
|
|
11221
|
-
},
|
|
11230
|
+
"description": "display Convex teams linked to the current Expo app's owner account",
|
|
11231
|
+
"flags": {},
|
|
11222
11232
|
"hasDynamicHelp": false,
|
|
11223
11233
|
"hiddenAliases": [],
|
|
11224
|
-
"id": "integrations:convex:
|
|
11234
|
+
"id": "integrations:convex:team",
|
|
11225
11235
|
"pluginAlias": "eas-cli",
|
|
11226
11236
|
"pluginName": "eas-cli",
|
|
11227
11237
|
"pluginType": "core",
|
|
@@ -11277,17 +11287,52 @@
|
|
|
11277
11287
|
"commands",
|
|
11278
11288
|
"integrations",
|
|
11279
11289
|
"convex",
|
|
11280
|
-
"
|
|
11290
|
+
"team.js"
|
|
11281
11291
|
]
|
|
11282
11292
|
},
|
|
11283
|
-
"integrations:
|
|
11293
|
+
"integrations:asc:connect": {
|
|
11284
11294
|
"aliases": [],
|
|
11285
11295
|
"args": {},
|
|
11286
|
-
"description": "
|
|
11287
|
-
"flags": {
|
|
11296
|
+
"description": "connect a project to an App Store Connect app",
|
|
11297
|
+
"flags": {
|
|
11298
|
+
"api-key-id": {
|
|
11299
|
+
"description": "Apple App Store Connect API Key ID",
|
|
11300
|
+
"name": "api-key-id",
|
|
11301
|
+
"hasDynamicHelp": false,
|
|
11302
|
+
"multiple": false,
|
|
11303
|
+
"type": "option"
|
|
11304
|
+
},
|
|
11305
|
+
"asc-app-id": {
|
|
11306
|
+
"description": "App Store Connect app identifier",
|
|
11307
|
+
"name": "asc-app-id",
|
|
11308
|
+
"hasDynamicHelp": false,
|
|
11309
|
+
"multiple": false,
|
|
11310
|
+
"type": "option"
|
|
11311
|
+
},
|
|
11312
|
+
"bundle-id": {
|
|
11313
|
+
"description": "Filter discovered apps by bundle identifier",
|
|
11314
|
+
"name": "bundle-id",
|
|
11315
|
+
"hasDynamicHelp": false,
|
|
11316
|
+
"multiple": false,
|
|
11317
|
+
"type": "option"
|
|
11318
|
+
},
|
|
11319
|
+
"json": {
|
|
11320
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11321
|
+
"name": "json",
|
|
11322
|
+
"allowNo": false,
|
|
11323
|
+
"type": "boolean"
|
|
11324
|
+
},
|
|
11325
|
+
"non-interactive": {
|
|
11326
|
+
"description": "Run the command in non-interactive mode.",
|
|
11327
|
+
"name": "non-interactive",
|
|
11328
|
+
"noCacheDefault": true,
|
|
11329
|
+
"allowNo": false,
|
|
11330
|
+
"type": "boolean"
|
|
11331
|
+
}
|
|
11332
|
+
},
|
|
11288
11333
|
"hasDynamicHelp": false,
|
|
11289
11334
|
"hiddenAliases": [],
|
|
11290
|
-
"id": "integrations:
|
|
11335
|
+
"id": "integrations:asc:connect",
|
|
11291
11336
|
"pluginAlias": "eas-cli",
|
|
11292
11337
|
"pluginName": "eas-cli",
|
|
11293
11338
|
"pluginType": "core",
|
|
@@ -11334,26 +11379,49 @@
|
|
|
11334
11379
|
}
|
|
11335
11380
|
},
|
|
11336
11381
|
"contextDefinition": {
|
|
11382
|
+
"projectId": {},
|
|
11383
|
+
"projectDir": {},
|
|
11337
11384
|
"loggedIn": {},
|
|
11338
|
-
"
|
|
11385
|
+
"analytics": {},
|
|
11386
|
+
"vcsClient": {}
|
|
11339
11387
|
},
|
|
11340
11388
|
"isESM": false,
|
|
11341
11389
|
"relativePath": [
|
|
11342
11390
|
"build",
|
|
11343
11391
|
"commands",
|
|
11344
11392
|
"integrations",
|
|
11345
|
-
"
|
|
11346
|
-
"
|
|
11393
|
+
"asc",
|
|
11394
|
+
"connect.js"
|
|
11347
11395
|
]
|
|
11348
11396
|
},
|
|
11349
|
-
"integrations:
|
|
11397
|
+
"integrations:asc:disconnect": {
|
|
11350
11398
|
"aliases": [],
|
|
11351
11399
|
"args": {},
|
|
11352
|
-
"description": "
|
|
11353
|
-
"flags": {
|
|
11400
|
+
"description": "disconnect the current project from its App Store Connect app",
|
|
11401
|
+
"flags": {
|
|
11402
|
+
"yes": {
|
|
11403
|
+
"description": "Skip confirmation prompt",
|
|
11404
|
+
"name": "yes",
|
|
11405
|
+
"allowNo": false,
|
|
11406
|
+
"type": "boolean"
|
|
11407
|
+
},
|
|
11408
|
+
"json": {
|
|
11409
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11410
|
+
"name": "json",
|
|
11411
|
+
"allowNo": false,
|
|
11412
|
+
"type": "boolean"
|
|
11413
|
+
},
|
|
11414
|
+
"non-interactive": {
|
|
11415
|
+
"description": "Run the command in non-interactive mode.",
|
|
11416
|
+
"name": "non-interactive",
|
|
11417
|
+
"noCacheDefault": true,
|
|
11418
|
+
"allowNo": false,
|
|
11419
|
+
"type": "boolean"
|
|
11420
|
+
}
|
|
11421
|
+
},
|
|
11354
11422
|
"hasDynamicHelp": false,
|
|
11355
11423
|
"hiddenAliases": [],
|
|
11356
|
-
"id": "integrations:
|
|
11424
|
+
"id": "integrations:asc:disconnect",
|
|
11357
11425
|
"pluginAlias": "eas-cli",
|
|
11358
11426
|
"pluginName": "eas-cli",
|
|
11359
11427
|
"pluginType": "core",
|
|
@@ -11400,26 +11468,40 @@
|
|
|
11400
11468
|
}
|
|
11401
11469
|
},
|
|
11402
11470
|
"contextDefinition": {
|
|
11403
|
-
"
|
|
11404
|
-
"
|
|
11471
|
+
"projectId": {},
|
|
11472
|
+
"loggedIn": {}
|
|
11405
11473
|
},
|
|
11406
11474
|
"isESM": false,
|
|
11407
11475
|
"relativePath": [
|
|
11408
11476
|
"build",
|
|
11409
11477
|
"commands",
|
|
11410
11478
|
"integrations",
|
|
11411
|
-
"
|
|
11412
|
-
"
|
|
11479
|
+
"asc",
|
|
11480
|
+
"disconnect.js"
|
|
11413
11481
|
]
|
|
11414
11482
|
},
|
|
11415
|
-
"integrations:
|
|
11483
|
+
"integrations:asc:status": {
|
|
11416
11484
|
"aliases": [],
|
|
11417
11485
|
"args": {},
|
|
11418
|
-
"description": "
|
|
11419
|
-
"flags": {
|
|
11486
|
+
"description": "show the App Store Connect app link status for the current project",
|
|
11487
|
+
"flags": {
|
|
11488
|
+
"json": {
|
|
11489
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
11490
|
+
"name": "json",
|
|
11491
|
+
"allowNo": false,
|
|
11492
|
+
"type": "boolean"
|
|
11493
|
+
},
|
|
11494
|
+
"non-interactive": {
|
|
11495
|
+
"description": "Run the command in non-interactive mode.",
|
|
11496
|
+
"name": "non-interactive",
|
|
11497
|
+
"noCacheDefault": true,
|
|
11498
|
+
"allowNo": false,
|
|
11499
|
+
"type": "boolean"
|
|
11500
|
+
}
|
|
11501
|
+
},
|
|
11420
11502
|
"hasDynamicHelp": false,
|
|
11421
11503
|
"hiddenAliases": [],
|
|
11422
|
-
"id": "integrations:
|
|
11504
|
+
"id": "integrations:asc:status",
|
|
11423
11505
|
"pluginAlias": "eas-cli",
|
|
11424
11506
|
"pluginName": "eas-cli",
|
|
11425
11507
|
"pluginType": "core",
|
|
@@ -11466,16 +11548,16 @@
|
|
|
11466
11548
|
}
|
|
11467
11549
|
},
|
|
11468
11550
|
"contextDefinition": {
|
|
11469
|
-
"
|
|
11470
|
-
"
|
|
11551
|
+
"projectId": {},
|
|
11552
|
+
"loggedIn": {}
|
|
11471
11553
|
},
|
|
11472
11554
|
"isESM": false,
|
|
11473
11555
|
"relativePath": [
|
|
11474
11556
|
"build",
|
|
11475
11557
|
"commands",
|
|
11476
11558
|
"integrations",
|
|
11477
|
-
"
|
|
11478
|
-
"
|
|
11559
|
+
"asc",
|
|
11560
|
+
"status.js"
|
|
11479
11561
|
]
|
|
11480
11562
|
},
|
|
11481
11563
|
"integrations:convex:project:delete": {
|
|
@@ -11730,5 +11812,5 @@
|
|
|
11730
11812
|
]
|
|
11731
11813
|
}
|
|
11732
11814
|
},
|
|
11733
|
-
"version": "18.12.
|
|
11815
|
+
"version": "18.12.1"
|
|
11734
11816
|
}
|