eas-cli 20.2.0 → 20.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +202 -110
- package/build/commandUtils/posthog.d.ts +4 -0
- package/build/commandUtils/posthog.js +23 -0
- package/build/commands/account/audit.d.ts +17 -0
- package/build/commands/account/audit.js +112 -0
- package/build/commands/integrations/posthog/connect.d.ts +27 -0
- package/build/commands/integrations/posthog/connect.js +432 -0
- package/build/commands/integrations/posthog/dashboard.d.ts +13 -0
- package/build/commands/integrations/posthog/dashboard.js +66 -0
- package/build/commands/integrations/posthog/disconnect.d.ts +14 -0
- package/build/commands/integrations/posthog/disconnect.js +80 -0
- package/build/commands/update/view.d.ts +7 -0
- package/build/commands/update/view.js +30 -3
- package/build/graphql/generated.d.ts +519 -30
- package/build/graphql/generated.js +29 -5
- package/build/graphql/mutations/PostHogMutation.d.ts +8 -0
- package/build/graphql/mutations/PostHogMutation.js +55 -0
- package/build/graphql/queries/AuditLogQuery.d.ts +6 -0
- package/build/graphql/queries/AuditLogQuery.js +57 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +1 -0
- package/build/graphql/queries/PostHogQuery.d.ts +6 -0
- package/build/graphql/queries/PostHogQuery.js +49 -0
- package/build/graphql/types/AuditLog.d.ts +1 -0
- package/build/graphql/types/AuditLog.js +18 -0
- package/build/graphql/types/PostHogConnection.d.ts +7 -0
- package/build/graphql/types/PostHogConnection.js +30 -0
- package/build/simulator/utils.js +28 -5
- package/build/user/SessionManager.d.ts +1 -22
- package/build/user/SessionManager.js +7 -89
- package/oclif.manifest.json +566 -186
- package/package.json +5 -2
package/oclif.manifest.json
CHANGED
|
@@ -676,6 +676,103 @@
|
|
|
676
676
|
"upload.js"
|
|
677
677
|
]
|
|
678
678
|
},
|
|
679
|
+
"account:audit": {
|
|
680
|
+
"aliases": [],
|
|
681
|
+
"args": {
|
|
682
|
+
"ACCOUNT_NAME": {
|
|
683
|
+
"description": "Account name to view audit logs for. If not provided, the account will be selected interactively (or defaults to the only account if there is just one)",
|
|
684
|
+
"name": "ACCOUNT_NAME"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
"description": "view the audit logs for an account",
|
|
688
|
+
"flags": {
|
|
689
|
+
"limit": {
|
|
690
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
691
|
+
"name": "limit",
|
|
692
|
+
"hasDynamicHelp": false,
|
|
693
|
+
"multiple": false,
|
|
694
|
+
"type": "option"
|
|
695
|
+
},
|
|
696
|
+
"after": {
|
|
697
|
+
"description": "Cursor for pagination. Use the endCursor from a previous query to fetch the next page.",
|
|
698
|
+
"name": "after",
|
|
699
|
+
"hasDynamicHelp": false,
|
|
700
|
+
"multiple": false,
|
|
701
|
+
"type": "option"
|
|
702
|
+
},
|
|
703
|
+
"json": {
|
|
704
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
705
|
+
"name": "json",
|
|
706
|
+
"allowNo": false,
|
|
707
|
+
"type": "boolean"
|
|
708
|
+
},
|
|
709
|
+
"non-interactive": {
|
|
710
|
+
"description": "Run the command in non-interactive mode.",
|
|
711
|
+
"name": "non-interactive",
|
|
712
|
+
"noCacheDefault": true,
|
|
713
|
+
"allowNo": false,
|
|
714
|
+
"type": "boolean"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"hasDynamicHelp": false,
|
|
718
|
+
"hiddenAliases": [],
|
|
719
|
+
"id": "account:audit",
|
|
720
|
+
"pluginAlias": "eas-cli",
|
|
721
|
+
"pluginName": "eas-cli",
|
|
722
|
+
"pluginType": "core",
|
|
723
|
+
"strict": true,
|
|
724
|
+
"enableJsonFlag": false,
|
|
725
|
+
"ContextOptions": {
|
|
726
|
+
"LoggedIn": {
|
|
727
|
+
"loggedIn": {}
|
|
728
|
+
},
|
|
729
|
+
"MaybeLoggedIn": {
|
|
730
|
+
"maybeLoggedIn": {}
|
|
731
|
+
},
|
|
732
|
+
"DynamicLoggedIn": {
|
|
733
|
+
"getDynamicLoggedInAsync": {}
|
|
734
|
+
},
|
|
735
|
+
"SessionManagment": {
|
|
736
|
+
"sessionManager": {}
|
|
737
|
+
},
|
|
738
|
+
"OptionalProjectConfig": {
|
|
739
|
+
"optionalPrivateProjectConfig": {}
|
|
740
|
+
},
|
|
741
|
+
"ProjectDir": {
|
|
742
|
+
"projectDir": {}
|
|
743
|
+
},
|
|
744
|
+
"DynamicProjectConfig": {
|
|
745
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
746
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
747
|
+
},
|
|
748
|
+
"ProjectConfig": {
|
|
749
|
+
"loggedIn": {},
|
|
750
|
+
"privateProjectConfig": {}
|
|
751
|
+
},
|
|
752
|
+
"Analytics": {
|
|
753
|
+
"analytics": {}
|
|
754
|
+
},
|
|
755
|
+
"Vcs": {
|
|
756
|
+
"vcsClient": {}
|
|
757
|
+
},
|
|
758
|
+
"ServerSideEnvironmentVariables": {
|
|
759
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
760
|
+
},
|
|
761
|
+
"ProjectId": {
|
|
762
|
+
"projectId": {}
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"contextDefinition": {
|
|
766
|
+
"loggedIn": {}
|
|
767
|
+
},
|
|
768
|
+
"isESM": false,
|
|
769
|
+
"relativePath": [
|
|
770
|
+
"build",
|
|
771
|
+
"commands",
|
|
772
|
+
"account",
|
|
773
|
+
"audit.js"
|
|
774
|
+
]
|
|
775
|
+
},
|
|
679
776
|
"account:login": {
|
|
680
777
|
"aliases": [
|
|
681
778
|
"login"
|
|
@@ -4186,38 +4283,17 @@
|
|
|
4186
4283
|
"index.js"
|
|
4187
4284
|
]
|
|
4188
4285
|
},
|
|
4189
|
-
"
|
|
4190
|
-
"aliases": [
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
"
|
|
4194
|
-
"DEPLOYMENT_ID": {
|
|
4195
|
-
"name": "DEPLOYMENT_ID"
|
|
4196
|
-
}
|
|
4197
|
-
},
|
|
4198
|
-
"description": "Delete a deployment.",
|
|
4199
|
-
"flags": {
|
|
4200
|
-
"json": {
|
|
4201
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4202
|
-
"name": "json",
|
|
4203
|
-
"allowNo": false,
|
|
4204
|
-
"type": "boolean"
|
|
4205
|
-
},
|
|
4206
|
-
"non-interactive": {
|
|
4207
|
-
"description": "Run the command in non-interactive mode.",
|
|
4208
|
-
"name": "non-interactive",
|
|
4209
|
-
"noCacheDefault": true,
|
|
4210
|
-
"allowNo": false,
|
|
4211
|
-
"type": "boolean"
|
|
4212
|
-
}
|
|
4213
|
-
},
|
|
4286
|
+
"device:create": {
|
|
4287
|
+
"aliases": [],
|
|
4288
|
+
"args": {},
|
|
4289
|
+
"description": "register new Apple Devices to use for internal distribution",
|
|
4290
|
+
"flags": {},
|
|
4214
4291
|
"hasDynamicHelp": false,
|
|
4215
4292
|
"hiddenAliases": [],
|
|
4216
|
-
"id": "
|
|
4293
|
+
"id": "device:create",
|
|
4217
4294
|
"pluginAlias": "eas-cli",
|
|
4218
4295
|
"pluginName": "eas-cli",
|
|
4219
4296
|
"pluginType": "core",
|
|
4220
|
-
"state": "preview",
|
|
4221
4297
|
"strict": true,
|
|
4222
4298
|
"enableJsonFlag": false,
|
|
4223
4299
|
"ContextOptions": {
|
|
@@ -4261,75 +4337,32 @@
|
|
|
4261
4337
|
}
|
|
4262
4338
|
},
|
|
4263
4339
|
"contextDefinition": {
|
|
4264
|
-
"
|
|
4265
|
-
"
|
|
4266
|
-
"projectDir": {},
|
|
4267
|
-
"loggedIn": {}
|
|
4340
|
+
"loggedIn": {},
|
|
4341
|
+
"optionalPrivateProjectConfig": {}
|
|
4268
4342
|
},
|
|
4269
4343
|
"isESM": false,
|
|
4270
4344
|
"relativePath": [
|
|
4271
4345
|
"build",
|
|
4272
4346
|
"commands",
|
|
4273
|
-
"
|
|
4274
|
-
"
|
|
4347
|
+
"device",
|
|
4348
|
+
"create.js"
|
|
4275
4349
|
]
|
|
4276
4350
|
},
|
|
4277
|
-
"
|
|
4278
|
-
"aliases": [
|
|
4279
|
-
"worker:deploy"
|
|
4280
|
-
],
|
|
4351
|
+
"device:delete": {
|
|
4352
|
+
"aliases": [],
|
|
4281
4353
|
"args": {},
|
|
4282
|
-
"description": "
|
|
4354
|
+
"description": "remove a registered device from your account",
|
|
4283
4355
|
"flags": {
|
|
4284
|
-
"
|
|
4285
|
-
"
|
|
4286
|
-
|
|
4287
|
-
],
|
|
4288
|
-
"description": "Create a new production deployment.",
|
|
4289
|
-
"name": "prod",
|
|
4290
|
-
"allowNo": false,
|
|
4291
|
-
"type": "boolean"
|
|
4292
|
-
},
|
|
4293
|
-
"alias": {
|
|
4294
|
-
"description": "Custom alias to assign to the new deployment.",
|
|
4295
|
-
"name": "alias",
|
|
4296
|
-
"hasDynamicHelp": false,
|
|
4297
|
-
"helpValue": "name",
|
|
4298
|
-
"multiple": false,
|
|
4299
|
-
"type": "option"
|
|
4300
|
-
},
|
|
4301
|
-
"id": {
|
|
4302
|
-
"description": "Custom unique identifier for the new deployment.",
|
|
4303
|
-
"name": "id",
|
|
4304
|
-
"hasDynamicHelp": false,
|
|
4305
|
-
"helpValue": "xyz123",
|
|
4306
|
-
"multiple": false,
|
|
4307
|
-
"type": "option"
|
|
4308
|
-
},
|
|
4309
|
-
"export-dir": {
|
|
4310
|
-
"description": "Directory where the Expo project was exported.",
|
|
4311
|
-
"name": "export-dir",
|
|
4312
|
-
"default": "dist",
|
|
4356
|
+
"apple-team-id": {
|
|
4357
|
+
"description": "The Apple team ID on which to find the device",
|
|
4358
|
+
"name": "apple-team-id",
|
|
4313
4359
|
"hasDynamicHelp": false,
|
|
4314
|
-
"helpValue": "dir",
|
|
4315
4360
|
"multiple": false,
|
|
4316
4361
|
"type": "option"
|
|
4317
4362
|
},
|
|
4318
|
-
"
|
|
4319
|
-
"description": "
|
|
4320
|
-
"name": "
|
|
4321
|
-
"allowNo": false,
|
|
4322
|
-
"type": "boolean"
|
|
4323
|
-
},
|
|
4324
|
-
"source-maps": {
|
|
4325
|
-
"description": "Include source maps in the deployment.",
|
|
4326
|
-
"name": "source-maps",
|
|
4327
|
-
"allowNo": true,
|
|
4328
|
-
"type": "boolean"
|
|
4329
|
-
},
|
|
4330
|
-
"environment": {
|
|
4331
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4332
|
-
"name": "environment",
|
|
4363
|
+
"udid": {
|
|
4364
|
+
"description": "The Apple device ID to disable",
|
|
4365
|
+
"name": "udid",
|
|
4333
4366
|
"hasDynamicHelp": false,
|
|
4334
4367
|
"multiple": false,
|
|
4335
4368
|
"type": "option"
|
|
@@ -4350,16 +4383,11 @@
|
|
|
4350
4383
|
},
|
|
4351
4384
|
"hasDynamicHelp": false,
|
|
4352
4385
|
"hiddenAliases": [],
|
|
4353
|
-
"id": "
|
|
4386
|
+
"id": "device:delete",
|
|
4354
4387
|
"pluginAlias": "eas-cli",
|
|
4355
4388
|
"pluginName": "eas-cli",
|
|
4356
4389
|
"pluginType": "core",
|
|
4357
|
-
"state": "preview",
|
|
4358
4390
|
"strict": true,
|
|
4359
|
-
"usage": [
|
|
4360
|
-
"deploy [options]",
|
|
4361
|
-
"deploy --prod"
|
|
4362
|
-
],
|
|
4363
4391
|
"enableJsonFlag": false,
|
|
4364
4392
|
"ContextOptions": {
|
|
4365
4393
|
"LoggedIn": {
|
|
@@ -4402,27 +4430,59 @@
|
|
|
4402
4430
|
}
|
|
4403
4431
|
},
|
|
4404
4432
|
"contextDefinition": {
|
|
4405
|
-
"
|
|
4406
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
4407
|
-
"projectDir": {},
|
|
4433
|
+
"projectId": {},
|
|
4408
4434
|
"loggedIn": {}
|
|
4409
4435
|
},
|
|
4410
4436
|
"isESM": false,
|
|
4411
4437
|
"relativePath": [
|
|
4412
4438
|
"build",
|
|
4413
4439
|
"commands",
|
|
4414
|
-
"
|
|
4415
|
-
"
|
|
4440
|
+
"device",
|
|
4441
|
+
"delete.js"
|
|
4416
4442
|
]
|
|
4417
4443
|
},
|
|
4418
|
-
"device:
|
|
4444
|
+
"device:list": {
|
|
4419
4445
|
"aliases": [],
|
|
4420
4446
|
"args": {},
|
|
4421
|
-
"description": "
|
|
4422
|
-
"flags": {
|
|
4447
|
+
"description": "list all registered devices for your account",
|
|
4448
|
+
"flags": {
|
|
4449
|
+
"apple-team-id": {
|
|
4450
|
+
"name": "apple-team-id",
|
|
4451
|
+
"hasDynamicHelp": false,
|
|
4452
|
+
"multiple": false,
|
|
4453
|
+
"type": "option"
|
|
4454
|
+
},
|
|
4455
|
+
"offset": {
|
|
4456
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
4457
|
+
"name": "offset",
|
|
4458
|
+
"hasDynamicHelp": false,
|
|
4459
|
+
"multiple": false,
|
|
4460
|
+
"type": "option"
|
|
4461
|
+
},
|
|
4462
|
+
"limit": {
|
|
4463
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
4464
|
+
"name": "limit",
|
|
4465
|
+
"hasDynamicHelp": false,
|
|
4466
|
+
"multiple": false,
|
|
4467
|
+
"type": "option"
|
|
4468
|
+
},
|
|
4469
|
+
"json": {
|
|
4470
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4471
|
+
"name": "json",
|
|
4472
|
+
"allowNo": false,
|
|
4473
|
+
"type": "boolean"
|
|
4474
|
+
},
|
|
4475
|
+
"non-interactive": {
|
|
4476
|
+
"description": "Run the command in non-interactive mode.",
|
|
4477
|
+
"name": "non-interactive",
|
|
4478
|
+
"noCacheDefault": true,
|
|
4479
|
+
"allowNo": false,
|
|
4480
|
+
"type": "boolean"
|
|
4481
|
+
}
|
|
4482
|
+
},
|
|
4423
4483
|
"hasDynamicHelp": false,
|
|
4424
4484
|
"hiddenAliases": [],
|
|
4425
|
-
"id": "device:
|
|
4485
|
+
"id": "device:list",
|
|
4426
4486
|
"pluginAlias": "eas-cli",
|
|
4427
4487
|
"pluginName": "eas-cli",
|
|
4428
4488
|
"pluginType": "core",
|
|
@@ -4469,21 +4529,21 @@
|
|
|
4469
4529
|
}
|
|
4470
4530
|
},
|
|
4471
4531
|
"contextDefinition": {
|
|
4472
|
-
"
|
|
4473
|
-
"
|
|
4532
|
+
"projectId": {},
|
|
4533
|
+
"loggedIn": {}
|
|
4474
4534
|
},
|
|
4475
4535
|
"isESM": false,
|
|
4476
4536
|
"relativePath": [
|
|
4477
4537
|
"build",
|
|
4478
4538
|
"commands",
|
|
4479
4539
|
"device",
|
|
4480
|
-
"
|
|
4540
|
+
"list.js"
|
|
4481
4541
|
]
|
|
4482
4542
|
},
|
|
4483
|
-
"device:
|
|
4543
|
+
"device:rename": {
|
|
4484
4544
|
"aliases": [],
|
|
4485
4545
|
"args": {},
|
|
4486
|
-
"description": "
|
|
4546
|
+
"description": "rename a registered device",
|
|
4487
4547
|
"flags": {
|
|
4488
4548
|
"apple-team-id": {
|
|
4489
4549
|
"description": "The Apple team ID on which to find the device",
|
|
@@ -4493,12 +4553,19 @@
|
|
|
4493
4553
|
"type": "option"
|
|
4494
4554
|
},
|
|
4495
4555
|
"udid": {
|
|
4496
|
-
"description": "The Apple device ID to
|
|
4556
|
+
"description": "The Apple device ID to rename",
|
|
4497
4557
|
"name": "udid",
|
|
4498
4558
|
"hasDynamicHelp": false,
|
|
4499
4559
|
"multiple": false,
|
|
4500
4560
|
"type": "option"
|
|
4501
4561
|
},
|
|
4562
|
+
"name": {
|
|
4563
|
+
"description": "The new name for the device",
|
|
4564
|
+
"name": "name",
|
|
4565
|
+
"hasDynamicHelp": false,
|
|
4566
|
+
"multiple": false,
|
|
4567
|
+
"type": "option"
|
|
4568
|
+
},
|
|
4502
4569
|
"json": {
|
|
4503
4570
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4504
4571
|
"name": "json",
|
|
@@ -4515,7 +4582,7 @@
|
|
|
4515
4582
|
},
|
|
4516
4583
|
"hasDynamicHelp": false,
|
|
4517
4584
|
"hiddenAliases": [],
|
|
4518
|
-
"id": "device:
|
|
4585
|
+
"id": "device:rename",
|
|
4519
4586
|
"pluginAlias": "eas-cli",
|
|
4520
4587
|
"pluginName": "eas-cli",
|
|
4521
4588
|
"pluginType": "core",
|
|
@@ -4570,51 +4637,21 @@
|
|
|
4570
4637
|
"build",
|
|
4571
4638
|
"commands",
|
|
4572
4639
|
"device",
|
|
4573
|
-
"
|
|
4640
|
+
"rename.js"
|
|
4574
4641
|
]
|
|
4575
4642
|
},
|
|
4576
|
-
"device:
|
|
4643
|
+
"device:view": {
|
|
4577
4644
|
"aliases": [],
|
|
4578
|
-
"args": {
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
"apple-team-id": {
|
|
4582
|
-
"name": "apple-team-id",
|
|
4583
|
-
"hasDynamicHelp": false,
|
|
4584
|
-
"multiple": false,
|
|
4585
|
-
"type": "option"
|
|
4586
|
-
},
|
|
4587
|
-
"offset": {
|
|
4588
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
4589
|
-
"name": "offset",
|
|
4590
|
-
"hasDynamicHelp": false,
|
|
4591
|
-
"multiple": false,
|
|
4592
|
-
"type": "option"
|
|
4593
|
-
},
|
|
4594
|
-
"limit": {
|
|
4595
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
4596
|
-
"name": "limit",
|
|
4597
|
-
"hasDynamicHelp": false,
|
|
4598
|
-
"multiple": false,
|
|
4599
|
-
"type": "option"
|
|
4600
|
-
},
|
|
4601
|
-
"json": {
|
|
4602
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4603
|
-
"name": "json",
|
|
4604
|
-
"allowNo": false,
|
|
4605
|
-
"type": "boolean"
|
|
4606
|
-
},
|
|
4607
|
-
"non-interactive": {
|
|
4608
|
-
"description": "Run the command in non-interactive mode.",
|
|
4609
|
-
"name": "non-interactive",
|
|
4610
|
-
"noCacheDefault": true,
|
|
4611
|
-
"allowNo": false,
|
|
4612
|
-
"type": "boolean"
|
|
4645
|
+
"args": {
|
|
4646
|
+
"UDID": {
|
|
4647
|
+
"name": "UDID"
|
|
4613
4648
|
}
|
|
4614
4649
|
},
|
|
4650
|
+
"description": "view a device for your project",
|
|
4651
|
+
"flags": {},
|
|
4615
4652
|
"hasDynamicHelp": false,
|
|
4616
4653
|
"hiddenAliases": [],
|
|
4617
|
-
"id": "device:
|
|
4654
|
+
"id": "device:view",
|
|
4618
4655
|
"pluginAlias": "eas-cli",
|
|
4619
4656
|
"pluginName": "eas-cli",
|
|
4620
4657
|
"pluginType": "core",
|
|
@@ -4669,35 +4706,20 @@
|
|
|
4669
4706
|
"build",
|
|
4670
4707
|
"commands",
|
|
4671
4708
|
"device",
|
|
4672
|
-
"
|
|
4709
|
+
"view.js"
|
|
4673
4710
|
]
|
|
4674
4711
|
},
|
|
4675
|
-
"
|
|
4676
|
-
"aliases": [
|
|
4677
|
-
|
|
4678
|
-
|
|
4712
|
+
"deploy:delete": {
|
|
4713
|
+
"aliases": [
|
|
4714
|
+
"worker:delete"
|
|
4715
|
+
],
|
|
4716
|
+
"args": {
|
|
4717
|
+
"DEPLOYMENT_ID": {
|
|
4718
|
+
"name": "DEPLOYMENT_ID"
|
|
4719
|
+
}
|
|
4720
|
+
},
|
|
4721
|
+
"description": "Delete a deployment.",
|
|
4679
4722
|
"flags": {
|
|
4680
|
-
"apple-team-id": {
|
|
4681
|
-
"description": "The Apple team ID on which to find the device",
|
|
4682
|
-
"name": "apple-team-id",
|
|
4683
|
-
"hasDynamicHelp": false,
|
|
4684
|
-
"multiple": false,
|
|
4685
|
-
"type": "option"
|
|
4686
|
-
},
|
|
4687
|
-
"udid": {
|
|
4688
|
-
"description": "The Apple device ID to rename",
|
|
4689
|
-
"name": "udid",
|
|
4690
|
-
"hasDynamicHelp": false,
|
|
4691
|
-
"multiple": false,
|
|
4692
|
-
"type": "option"
|
|
4693
|
-
},
|
|
4694
|
-
"name": {
|
|
4695
|
-
"description": "The new name for the device",
|
|
4696
|
-
"name": "name",
|
|
4697
|
-
"hasDynamicHelp": false,
|
|
4698
|
-
"multiple": false,
|
|
4699
|
-
"type": "option"
|
|
4700
|
-
},
|
|
4701
4723
|
"json": {
|
|
4702
4724
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4703
4725
|
"name": "json",
|
|
@@ -4714,10 +4736,11 @@
|
|
|
4714
4736
|
},
|
|
4715
4737
|
"hasDynamicHelp": false,
|
|
4716
4738
|
"hiddenAliases": [],
|
|
4717
|
-
"id": "
|
|
4739
|
+
"id": "deploy:delete",
|
|
4718
4740
|
"pluginAlias": "eas-cli",
|
|
4719
4741
|
"pluginName": "eas-cli",
|
|
4720
4742
|
"pluginType": "core",
|
|
4743
|
+
"state": "preview",
|
|
4721
4744
|
"strict": true,
|
|
4722
4745
|
"enableJsonFlag": false,
|
|
4723
4746
|
"ContextOptions": {
|
|
@@ -4761,33 +4784,105 @@
|
|
|
4761
4784
|
}
|
|
4762
4785
|
},
|
|
4763
4786
|
"contextDefinition": {
|
|
4764
|
-
"
|
|
4787
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4788
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4789
|
+
"projectDir": {},
|
|
4765
4790
|
"loggedIn": {}
|
|
4766
4791
|
},
|
|
4767
4792
|
"isESM": false,
|
|
4768
4793
|
"relativePath": [
|
|
4769
4794
|
"build",
|
|
4770
4795
|
"commands",
|
|
4771
|
-
"
|
|
4772
|
-
"
|
|
4796
|
+
"deploy",
|
|
4797
|
+
"delete.js"
|
|
4773
4798
|
]
|
|
4774
4799
|
},
|
|
4775
|
-
"
|
|
4776
|
-
"aliases": [
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4800
|
+
"deploy": {
|
|
4801
|
+
"aliases": [
|
|
4802
|
+
"worker:deploy"
|
|
4803
|
+
],
|
|
4804
|
+
"args": {},
|
|
4805
|
+
"description": "deploy your Expo Router web build and API Routes",
|
|
4806
|
+
"flags": {
|
|
4807
|
+
"prod": {
|
|
4808
|
+
"aliases": [
|
|
4809
|
+
"production"
|
|
4810
|
+
],
|
|
4811
|
+
"description": "Create a new production deployment.",
|
|
4812
|
+
"name": "prod",
|
|
4813
|
+
"allowNo": false,
|
|
4814
|
+
"type": "boolean"
|
|
4815
|
+
},
|
|
4816
|
+
"alias": {
|
|
4817
|
+
"description": "Custom alias to assign to the new deployment.",
|
|
4818
|
+
"name": "alias",
|
|
4819
|
+
"hasDynamicHelp": false,
|
|
4820
|
+
"helpValue": "name",
|
|
4821
|
+
"multiple": false,
|
|
4822
|
+
"type": "option"
|
|
4823
|
+
},
|
|
4824
|
+
"id": {
|
|
4825
|
+
"description": "Custom unique identifier for the new deployment.",
|
|
4826
|
+
"name": "id",
|
|
4827
|
+
"hasDynamicHelp": false,
|
|
4828
|
+
"helpValue": "xyz123",
|
|
4829
|
+
"multiple": false,
|
|
4830
|
+
"type": "option"
|
|
4831
|
+
},
|
|
4832
|
+
"export-dir": {
|
|
4833
|
+
"description": "Directory where the Expo project was exported.",
|
|
4834
|
+
"name": "export-dir",
|
|
4835
|
+
"default": "dist",
|
|
4836
|
+
"hasDynamicHelp": false,
|
|
4837
|
+
"helpValue": "dir",
|
|
4838
|
+
"multiple": false,
|
|
4839
|
+
"type": "option"
|
|
4840
|
+
},
|
|
4841
|
+
"dry-run": {
|
|
4842
|
+
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4843
|
+
"name": "dry-run",
|
|
4844
|
+
"allowNo": false,
|
|
4845
|
+
"type": "boolean"
|
|
4846
|
+
},
|
|
4847
|
+
"source-maps": {
|
|
4848
|
+
"description": "Include source maps in the deployment.",
|
|
4849
|
+
"name": "source-maps",
|
|
4850
|
+
"allowNo": true,
|
|
4851
|
+
"type": "boolean"
|
|
4852
|
+
},
|
|
4853
|
+
"environment": {
|
|
4854
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4855
|
+
"name": "environment",
|
|
4856
|
+
"hasDynamicHelp": false,
|
|
4857
|
+
"multiple": false,
|
|
4858
|
+
"type": "option"
|
|
4859
|
+
},
|
|
4860
|
+
"json": {
|
|
4861
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4862
|
+
"name": "json",
|
|
4863
|
+
"allowNo": false,
|
|
4864
|
+
"type": "boolean"
|
|
4865
|
+
},
|
|
4866
|
+
"non-interactive": {
|
|
4867
|
+
"description": "Run the command in non-interactive mode.",
|
|
4868
|
+
"name": "non-interactive",
|
|
4869
|
+
"noCacheDefault": true,
|
|
4870
|
+
"allowNo": false,
|
|
4871
|
+
"type": "boolean"
|
|
4780
4872
|
}
|
|
4781
4873
|
},
|
|
4782
|
-
"description": "view a device for your project",
|
|
4783
|
-
"flags": {},
|
|
4784
4874
|
"hasDynamicHelp": false,
|
|
4785
4875
|
"hiddenAliases": [],
|
|
4786
|
-
"id": "
|
|
4876
|
+
"id": "deploy",
|
|
4787
4877
|
"pluginAlias": "eas-cli",
|
|
4788
4878
|
"pluginName": "eas-cli",
|
|
4789
4879
|
"pluginType": "core",
|
|
4880
|
+
"state": "preview",
|
|
4790
4881
|
"strict": true,
|
|
4882
|
+
"usage": [
|
|
4883
|
+
"deploy [options]",
|
|
4884
|
+
"deploy --prod"
|
|
4885
|
+
],
|
|
4791
4886
|
"enableJsonFlag": false,
|
|
4792
4887
|
"ContextOptions": {
|
|
4793
4888
|
"LoggedIn": {
|
|
@@ -4830,15 +4925,17 @@
|
|
|
4830
4925
|
}
|
|
4831
4926
|
},
|
|
4832
4927
|
"contextDefinition": {
|
|
4833
|
-
"
|
|
4928
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4929
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4930
|
+
"projectDir": {},
|
|
4834
4931
|
"loggedIn": {}
|
|
4835
4932
|
},
|
|
4836
4933
|
"isESM": false,
|
|
4837
4934
|
"relativePath": [
|
|
4838
4935
|
"build",
|
|
4839
4936
|
"commands",
|
|
4840
|
-
"
|
|
4841
|
-
"
|
|
4937
|
+
"deploy",
|
|
4938
|
+
"index.js"
|
|
4842
4939
|
]
|
|
4843
4940
|
},
|
|
4844
4941
|
"env:create": {
|
|
@@ -9669,7 +9766,7 @@
|
|
|
9669
9766
|
"aliases": [],
|
|
9670
9767
|
"args": {
|
|
9671
9768
|
"groupId": {
|
|
9672
|
-
"description": "The ID of an update group.",
|
|
9769
|
+
"description": "The ID of an update group, or the ID of a platform-specific update.",
|
|
9673
9770
|
"name": "groupId",
|
|
9674
9771
|
"required": true
|
|
9675
9772
|
}
|
|
@@ -12063,6 +12160,289 @@
|
|
|
12063
12160
|
"team.js"
|
|
12064
12161
|
]
|
|
12065
12162
|
},
|
|
12163
|
+
"integrations:posthog:connect": {
|
|
12164
|
+
"aliases": [],
|
|
12165
|
+
"args": {},
|
|
12166
|
+
"description": "connect PostHog to your Expo project",
|
|
12167
|
+
"flags": {
|
|
12168
|
+
"json": {
|
|
12169
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
12170
|
+
"name": "json",
|
|
12171
|
+
"allowNo": false,
|
|
12172
|
+
"type": "boolean"
|
|
12173
|
+
},
|
|
12174
|
+
"non-interactive": {
|
|
12175
|
+
"description": "Run the command in non-interactive mode.",
|
|
12176
|
+
"name": "non-interactive",
|
|
12177
|
+
"noCacheDefault": true,
|
|
12178
|
+
"allowNo": false,
|
|
12179
|
+
"type": "boolean"
|
|
12180
|
+
},
|
|
12181
|
+
"region": {
|
|
12182
|
+
"description": "PostHog region",
|
|
12183
|
+
"name": "region",
|
|
12184
|
+
"hasDynamicHelp": false,
|
|
12185
|
+
"multiple": false,
|
|
12186
|
+
"options": [
|
|
12187
|
+
"US",
|
|
12188
|
+
"EU"
|
|
12189
|
+
],
|
|
12190
|
+
"type": "option"
|
|
12191
|
+
},
|
|
12192
|
+
"session-replay": {
|
|
12193
|
+
"description": "Set up PostHog session replay (default: yes)",
|
|
12194
|
+
"name": "session-replay",
|
|
12195
|
+
"allowNo": true,
|
|
12196
|
+
"type": "boolean"
|
|
12197
|
+
},
|
|
12198
|
+
"error-tracking": {
|
|
12199
|
+
"description": "Set up PostHog error tracking / source maps (requires a personal API key)",
|
|
12200
|
+
"name": "error-tracking",
|
|
12201
|
+
"allowNo": true,
|
|
12202
|
+
"type": "boolean"
|
|
12203
|
+
},
|
|
12204
|
+
"posthog-cli-api-key": {
|
|
12205
|
+
"description": "PostHog personal API key for error-tracking source-map uploads (enables error tracking non-interactively)",
|
|
12206
|
+
"name": "posthog-cli-api-key",
|
|
12207
|
+
"hasDynamicHelp": false,
|
|
12208
|
+
"multiple": false,
|
|
12209
|
+
"type": "option"
|
|
12210
|
+
},
|
|
12211
|
+
"overwrite": {
|
|
12212
|
+
"description": "Overwrite existing PostHog environment variables without prompting",
|
|
12213
|
+
"name": "overwrite",
|
|
12214
|
+
"allowNo": false,
|
|
12215
|
+
"type": "boolean"
|
|
12216
|
+
}
|
|
12217
|
+
},
|
|
12218
|
+
"hasDynamicHelp": false,
|
|
12219
|
+
"hiddenAliases": [],
|
|
12220
|
+
"id": "integrations:posthog:connect",
|
|
12221
|
+
"pluginAlias": "eas-cli",
|
|
12222
|
+
"pluginName": "eas-cli",
|
|
12223
|
+
"pluginType": "core",
|
|
12224
|
+
"strict": true,
|
|
12225
|
+
"enableJsonFlag": false,
|
|
12226
|
+
"ContextOptions": {
|
|
12227
|
+
"LoggedIn": {
|
|
12228
|
+
"loggedIn": {}
|
|
12229
|
+
},
|
|
12230
|
+
"MaybeLoggedIn": {
|
|
12231
|
+
"maybeLoggedIn": {}
|
|
12232
|
+
},
|
|
12233
|
+
"DynamicLoggedIn": {
|
|
12234
|
+
"getDynamicLoggedInAsync": {}
|
|
12235
|
+
},
|
|
12236
|
+
"SessionManagment": {
|
|
12237
|
+
"sessionManager": {}
|
|
12238
|
+
},
|
|
12239
|
+
"OptionalProjectConfig": {
|
|
12240
|
+
"optionalPrivateProjectConfig": {}
|
|
12241
|
+
},
|
|
12242
|
+
"ProjectDir": {
|
|
12243
|
+
"projectDir": {}
|
|
12244
|
+
},
|
|
12245
|
+
"DynamicProjectConfig": {
|
|
12246
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
12247
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
12248
|
+
},
|
|
12249
|
+
"ProjectConfig": {
|
|
12250
|
+
"loggedIn": {},
|
|
12251
|
+
"privateProjectConfig": {}
|
|
12252
|
+
},
|
|
12253
|
+
"Analytics": {
|
|
12254
|
+
"analytics": {}
|
|
12255
|
+
},
|
|
12256
|
+
"Vcs": {
|
|
12257
|
+
"vcsClient": {}
|
|
12258
|
+
},
|
|
12259
|
+
"ServerSideEnvironmentVariables": {
|
|
12260
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
12261
|
+
},
|
|
12262
|
+
"ProjectId": {
|
|
12263
|
+
"projectId": {}
|
|
12264
|
+
}
|
|
12265
|
+
},
|
|
12266
|
+
"contextDefinition": {
|
|
12267
|
+
"loggedIn": {},
|
|
12268
|
+
"privateProjectConfig": {}
|
|
12269
|
+
},
|
|
12270
|
+
"isESM": false,
|
|
12271
|
+
"relativePath": [
|
|
12272
|
+
"build",
|
|
12273
|
+
"commands",
|
|
12274
|
+
"integrations",
|
|
12275
|
+
"posthog",
|
|
12276
|
+
"connect.js"
|
|
12277
|
+
]
|
|
12278
|
+
},
|
|
12279
|
+
"integrations:posthog:dashboard": {
|
|
12280
|
+
"aliases": [],
|
|
12281
|
+
"args": {},
|
|
12282
|
+
"description": "open the PostHog dashboard for the linked PostHog project",
|
|
12283
|
+
"flags": {
|
|
12284
|
+
"json": {
|
|
12285
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
12286
|
+
"name": "json",
|
|
12287
|
+
"allowNo": false,
|
|
12288
|
+
"type": "boolean"
|
|
12289
|
+
},
|
|
12290
|
+
"non-interactive": {
|
|
12291
|
+
"description": "Run the command in non-interactive mode.",
|
|
12292
|
+
"name": "non-interactive",
|
|
12293
|
+
"noCacheDefault": true,
|
|
12294
|
+
"allowNo": false,
|
|
12295
|
+
"type": "boolean"
|
|
12296
|
+
}
|
|
12297
|
+
},
|
|
12298
|
+
"hasDynamicHelp": false,
|
|
12299
|
+
"hiddenAliases": [],
|
|
12300
|
+
"id": "integrations:posthog:dashboard",
|
|
12301
|
+
"pluginAlias": "eas-cli",
|
|
12302
|
+
"pluginName": "eas-cli",
|
|
12303
|
+
"pluginType": "core",
|
|
12304
|
+
"strict": true,
|
|
12305
|
+
"enableJsonFlag": false,
|
|
12306
|
+
"ContextOptions": {
|
|
12307
|
+
"LoggedIn": {
|
|
12308
|
+
"loggedIn": {}
|
|
12309
|
+
},
|
|
12310
|
+
"MaybeLoggedIn": {
|
|
12311
|
+
"maybeLoggedIn": {}
|
|
12312
|
+
},
|
|
12313
|
+
"DynamicLoggedIn": {
|
|
12314
|
+
"getDynamicLoggedInAsync": {}
|
|
12315
|
+
},
|
|
12316
|
+
"SessionManagment": {
|
|
12317
|
+
"sessionManager": {}
|
|
12318
|
+
},
|
|
12319
|
+
"OptionalProjectConfig": {
|
|
12320
|
+
"optionalPrivateProjectConfig": {}
|
|
12321
|
+
},
|
|
12322
|
+
"ProjectDir": {
|
|
12323
|
+
"projectDir": {}
|
|
12324
|
+
},
|
|
12325
|
+
"DynamicProjectConfig": {
|
|
12326
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
12327
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
12328
|
+
},
|
|
12329
|
+
"ProjectConfig": {
|
|
12330
|
+
"loggedIn": {},
|
|
12331
|
+
"privateProjectConfig": {}
|
|
12332
|
+
},
|
|
12333
|
+
"Analytics": {
|
|
12334
|
+
"analytics": {}
|
|
12335
|
+
},
|
|
12336
|
+
"Vcs": {
|
|
12337
|
+
"vcsClient": {}
|
|
12338
|
+
},
|
|
12339
|
+
"ServerSideEnvironmentVariables": {
|
|
12340
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
12341
|
+
},
|
|
12342
|
+
"ProjectId": {
|
|
12343
|
+
"projectId": {}
|
|
12344
|
+
}
|
|
12345
|
+
},
|
|
12346
|
+
"contextDefinition": {
|
|
12347
|
+
"loggedIn": {},
|
|
12348
|
+
"privateProjectConfig": {}
|
|
12349
|
+
},
|
|
12350
|
+
"isESM": false,
|
|
12351
|
+
"relativePath": [
|
|
12352
|
+
"build",
|
|
12353
|
+
"commands",
|
|
12354
|
+
"integrations",
|
|
12355
|
+
"posthog",
|
|
12356
|
+
"dashboard.js"
|
|
12357
|
+
]
|
|
12358
|
+
},
|
|
12359
|
+
"integrations:posthog:disconnect": {
|
|
12360
|
+
"aliases": [],
|
|
12361
|
+
"args": {},
|
|
12362
|
+
"description": "remove the PostHog project link for the current Expo app from EAS servers",
|
|
12363
|
+
"flags": {
|
|
12364
|
+
"json": {
|
|
12365
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
12366
|
+
"name": "json",
|
|
12367
|
+
"allowNo": false,
|
|
12368
|
+
"type": "boolean"
|
|
12369
|
+
},
|
|
12370
|
+
"non-interactive": {
|
|
12371
|
+
"description": "Run the command in non-interactive mode.",
|
|
12372
|
+
"name": "non-interactive",
|
|
12373
|
+
"noCacheDefault": true,
|
|
12374
|
+
"allowNo": false,
|
|
12375
|
+
"type": "boolean"
|
|
12376
|
+
},
|
|
12377
|
+
"yes": {
|
|
12378
|
+
"char": "y",
|
|
12379
|
+
"description": "Skip confirmation prompt",
|
|
12380
|
+
"name": "yes",
|
|
12381
|
+
"allowNo": false,
|
|
12382
|
+
"type": "boolean"
|
|
12383
|
+
}
|
|
12384
|
+
},
|
|
12385
|
+
"hasDynamicHelp": false,
|
|
12386
|
+
"hiddenAliases": [],
|
|
12387
|
+
"id": "integrations:posthog:disconnect",
|
|
12388
|
+
"pluginAlias": "eas-cli",
|
|
12389
|
+
"pluginName": "eas-cli",
|
|
12390
|
+
"pluginType": "core",
|
|
12391
|
+
"strict": true,
|
|
12392
|
+
"enableJsonFlag": false,
|
|
12393
|
+
"ContextOptions": {
|
|
12394
|
+
"LoggedIn": {
|
|
12395
|
+
"loggedIn": {}
|
|
12396
|
+
},
|
|
12397
|
+
"MaybeLoggedIn": {
|
|
12398
|
+
"maybeLoggedIn": {}
|
|
12399
|
+
},
|
|
12400
|
+
"DynamicLoggedIn": {
|
|
12401
|
+
"getDynamicLoggedInAsync": {}
|
|
12402
|
+
},
|
|
12403
|
+
"SessionManagment": {
|
|
12404
|
+
"sessionManager": {}
|
|
12405
|
+
},
|
|
12406
|
+
"OptionalProjectConfig": {
|
|
12407
|
+
"optionalPrivateProjectConfig": {}
|
|
12408
|
+
},
|
|
12409
|
+
"ProjectDir": {
|
|
12410
|
+
"projectDir": {}
|
|
12411
|
+
},
|
|
12412
|
+
"DynamicProjectConfig": {
|
|
12413
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
12414
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
12415
|
+
},
|
|
12416
|
+
"ProjectConfig": {
|
|
12417
|
+
"loggedIn": {},
|
|
12418
|
+
"privateProjectConfig": {}
|
|
12419
|
+
},
|
|
12420
|
+
"Analytics": {
|
|
12421
|
+
"analytics": {}
|
|
12422
|
+
},
|
|
12423
|
+
"Vcs": {
|
|
12424
|
+
"vcsClient": {}
|
|
12425
|
+
},
|
|
12426
|
+
"ServerSideEnvironmentVariables": {
|
|
12427
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
12428
|
+
},
|
|
12429
|
+
"ProjectId": {
|
|
12430
|
+
"projectId": {}
|
|
12431
|
+
}
|
|
12432
|
+
},
|
|
12433
|
+
"contextDefinition": {
|
|
12434
|
+
"loggedIn": {},
|
|
12435
|
+
"privateProjectConfig": {}
|
|
12436
|
+
},
|
|
12437
|
+
"isESM": false,
|
|
12438
|
+
"relativePath": [
|
|
12439
|
+
"build",
|
|
12440
|
+
"commands",
|
|
12441
|
+
"integrations",
|
|
12442
|
+
"posthog",
|
|
12443
|
+
"disconnect.js"
|
|
12444
|
+
]
|
|
12445
|
+
},
|
|
12066
12446
|
"update:embedded:delete": {
|
|
12067
12447
|
"aliases": [],
|
|
12068
12448
|
"args": {
|
|
@@ -12728,5 +13108,5 @@
|
|
|
12728
13108
|
]
|
|
12729
13109
|
}
|
|
12730
13110
|
},
|
|
12731
|
-
"version": "20.
|
|
13111
|
+
"version": "20.3.0"
|
|
12732
13112
|
}
|