eas-cli 19.0.8 → 19.1.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 +104 -101
- package/build/build/createContext.d.ts +2 -1
- package/build/build/createContext.js +3 -1
- package/build/build/ios/credentials.js +5 -1
- package/build/build/ios/prepareJob.js +3 -0
- package/build/build/runBuildAndSubmit.d.ts +1 -0
- package/build/build/runBuildAndSubmit.js +1 -0
- package/build/build/types.d.ts +1 -0
- package/build/commands/build/index.d.ts +1 -0
- package/build/commands/build/index.js +13 -0
- package/build/commands/build/internal.d.ts +1 -0
- package/build/commands/build/internal.js +5 -0
- package/build/credentials/context.d.ts +2 -0
- package/build/credentials/context.js +2 -0
- package/build/credentials/ios/actions/DeviceUtils.d.ts +2 -0
- package/build/credentials/ios/actions/DeviceUtils.js +21 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +1 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +76 -14
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +8 -0
- package/oclif.manifest.json +622 -610
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -3085,6 +3085,12 @@
|
|
|
3085
3085
|
"allowNo": false,
|
|
3086
3086
|
"type": "boolean"
|
|
3087
3087
|
},
|
|
3088
|
+
"refresh-ad-hoc-provisioning-profile": {
|
|
3089
|
+
"description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
|
|
3090
|
+
"name": "refresh-ad-hoc-provisioning-profile",
|
|
3091
|
+
"allowNo": false,
|
|
3092
|
+
"type": "boolean"
|
|
3093
|
+
},
|
|
3088
3094
|
"verbose-logs": {
|
|
3089
3095
|
"description": "Use verbose logs for the build process",
|
|
3090
3096
|
"name": "verbose-logs",
|
|
@@ -3340,6 +3346,12 @@
|
|
|
3340
3346
|
"helpValue": "PROFILE_NAME",
|
|
3341
3347
|
"multiple": false,
|
|
3342
3348
|
"type": "option"
|
|
3349
|
+
},
|
|
3350
|
+
"refresh-ad-hoc-provisioning-profile": {
|
|
3351
|
+
"description": "Refresh managed ad-hoc provisioning profiles from App Store Connect before gathering build credentials",
|
|
3352
|
+
"name": "refresh-ad-hoc-provisioning-profile",
|
|
3353
|
+
"allowNo": false,
|
|
3354
|
+
"type": "boolean"
|
|
3343
3355
|
}
|
|
3344
3356
|
},
|
|
3345
3357
|
"hasDynamicHelp": false,
|
|
@@ -8282,29 +8294,32 @@
|
|
|
8282
8294
|
"internal.js"
|
|
8283
8295
|
]
|
|
8284
8296
|
},
|
|
8285
|
-
"
|
|
8297
|
+
"webhook:create": {
|
|
8286
8298
|
"aliases": [],
|
|
8287
8299
|
"args": {},
|
|
8288
|
-
"description": "
|
|
8300
|
+
"description": "create a webhook",
|
|
8289
8301
|
"flags": {
|
|
8290
|
-
"
|
|
8291
|
-
"
|
|
8292
|
-
"
|
|
8293
|
-
"name": "platform",
|
|
8294
|
-
"default": "all",
|
|
8302
|
+
"event": {
|
|
8303
|
+
"description": "Event type that triggers the webhook",
|
|
8304
|
+
"name": "event",
|
|
8295
8305
|
"hasDynamicHelp": false,
|
|
8296
8306
|
"multiple": false,
|
|
8297
8307
|
"options": [
|
|
8298
|
-
"
|
|
8299
|
-
"
|
|
8300
|
-
"all"
|
|
8308
|
+
"BUILD",
|
|
8309
|
+
"SUBMIT"
|
|
8301
8310
|
],
|
|
8302
8311
|
"type": "option"
|
|
8303
8312
|
},
|
|
8304
|
-
"
|
|
8305
|
-
"description": "
|
|
8306
|
-
"name": "
|
|
8307
|
-
"
|
|
8313
|
+
"url": {
|
|
8314
|
+
"description": "Webhook URL",
|
|
8315
|
+
"name": "url",
|
|
8316
|
+
"hasDynamicHelp": false,
|
|
8317
|
+
"multiple": false,
|
|
8318
|
+
"type": "option"
|
|
8319
|
+
},
|
|
8320
|
+
"secret": {
|
|
8321
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
8322
|
+
"name": "secret",
|
|
8308
8323
|
"hasDynamicHelp": false,
|
|
8309
8324
|
"multiple": false,
|
|
8310
8325
|
"type": "option"
|
|
@@ -8319,7 +8334,7 @@
|
|
|
8319
8334
|
},
|
|
8320
8335
|
"hasDynamicHelp": false,
|
|
8321
8336
|
"hiddenAliases": [],
|
|
8322
|
-
"id": "
|
|
8337
|
+
"id": "webhook:create",
|
|
8323
8338
|
"pluginAlias": "eas-cli",
|
|
8324
8339
|
"pluginName": "eas-cli",
|
|
8325
8340
|
"pluginType": "core",
|
|
@@ -8366,35 +8381,28 @@
|
|
|
8366
8381
|
}
|
|
8367
8382
|
},
|
|
8368
8383
|
"contextDefinition": {
|
|
8369
|
-
"
|
|
8370
|
-
"
|
|
8371
|
-
"vcsClient": {}
|
|
8384
|
+
"projectId": {},
|
|
8385
|
+
"loggedIn": {}
|
|
8372
8386
|
},
|
|
8373
8387
|
"isESM": false,
|
|
8374
8388
|
"relativePath": [
|
|
8375
8389
|
"build",
|
|
8376
8390
|
"commands",
|
|
8377
|
-
"
|
|
8378
|
-
"
|
|
8391
|
+
"webhook",
|
|
8392
|
+
"create.js"
|
|
8379
8393
|
]
|
|
8380
8394
|
},
|
|
8381
|
-
"
|
|
8395
|
+
"webhook:delete": {
|
|
8382
8396
|
"aliases": [],
|
|
8383
8397
|
"args": {
|
|
8384
|
-
"
|
|
8385
|
-
"description": "
|
|
8386
|
-
"name": "
|
|
8387
|
-
"required":
|
|
8398
|
+
"ID": {
|
|
8399
|
+
"description": "ID of the webhook to delete",
|
|
8400
|
+
"name": "ID",
|
|
8401
|
+
"required": false
|
|
8388
8402
|
}
|
|
8389
8403
|
},
|
|
8390
|
-
"description": "delete
|
|
8404
|
+
"description": "delete a webhook",
|
|
8391
8405
|
"flags": {
|
|
8392
|
-
"json": {
|
|
8393
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8394
|
-
"name": "json",
|
|
8395
|
-
"allowNo": false,
|
|
8396
|
-
"type": "boolean"
|
|
8397
|
-
},
|
|
8398
8406
|
"non-interactive": {
|
|
8399
8407
|
"description": "Run the command in non-interactive mode.",
|
|
8400
8408
|
"name": "non-interactive",
|
|
@@ -8405,7 +8413,7 @@
|
|
|
8405
8413
|
},
|
|
8406
8414
|
"hasDynamicHelp": false,
|
|
8407
8415
|
"hiddenAliases": [],
|
|
8408
|
-
"id": "
|
|
8416
|
+
"id": "webhook:delete",
|
|
8409
8417
|
"pluginAlias": "eas-cli",
|
|
8410
8418
|
"pluginName": "eas-cli",
|
|
8411
8419
|
"pluginType": "core",
|
|
@@ -8452,58 +8460,43 @@
|
|
|
8452
8460
|
}
|
|
8453
8461
|
},
|
|
8454
8462
|
"contextDefinition": {
|
|
8463
|
+
"projectId": {},
|
|
8455
8464
|
"loggedIn": {}
|
|
8456
8465
|
},
|
|
8457
8466
|
"isESM": false,
|
|
8458
8467
|
"relativePath": [
|
|
8459
8468
|
"build",
|
|
8460
8469
|
"commands",
|
|
8461
|
-
"
|
|
8470
|
+
"webhook",
|
|
8462
8471
|
"delete.js"
|
|
8463
8472
|
]
|
|
8464
8473
|
},
|
|
8465
|
-
"
|
|
8474
|
+
"webhook:list": {
|
|
8466
8475
|
"aliases": [],
|
|
8467
|
-
"args": {
|
|
8468
|
-
|
|
8469
|
-
"description": "The ID of an update group to edit.",
|
|
8470
|
-
"name": "groupId"
|
|
8471
|
-
}
|
|
8472
|
-
},
|
|
8473
|
-
"description": "edit all the updates in an update group",
|
|
8476
|
+
"args": {},
|
|
8477
|
+
"description": "list webhooks",
|
|
8474
8478
|
"flags": {
|
|
8475
|
-
"
|
|
8476
|
-
"description": "
|
|
8477
|
-
"name": "
|
|
8478
|
-
"required": false,
|
|
8479
|
-
"hasDynamicHelp": false,
|
|
8480
|
-
"multiple": false,
|
|
8481
|
-
"type": "option"
|
|
8482
|
-
},
|
|
8483
|
-
"branch": {
|
|
8484
|
-
"description": "Branch for which to list updates to select from",
|
|
8485
|
-
"name": "branch",
|
|
8479
|
+
"event": {
|
|
8480
|
+
"description": "Event type that triggers the webhook",
|
|
8481
|
+
"name": "event",
|
|
8486
8482
|
"hasDynamicHelp": false,
|
|
8487
8483
|
"multiple": false,
|
|
8484
|
+
"options": [
|
|
8485
|
+
"BUILD",
|
|
8486
|
+
"SUBMIT"
|
|
8487
|
+
],
|
|
8488
8488
|
"type": "option"
|
|
8489
8489
|
},
|
|
8490
8490
|
"json": {
|
|
8491
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
8491
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
8492
8492
|
"name": "json",
|
|
8493
8493
|
"allowNo": false,
|
|
8494
8494
|
"type": "boolean"
|
|
8495
|
-
},
|
|
8496
|
-
"non-interactive": {
|
|
8497
|
-
"description": "Run the command in non-interactive mode.",
|
|
8498
|
-
"name": "non-interactive",
|
|
8499
|
-
"noCacheDefault": true,
|
|
8500
|
-
"allowNo": false,
|
|
8501
|
-
"type": "boolean"
|
|
8502
8495
|
}
|
|
8503
8496
|
},
|
|
8504
8497
|
"hasDynamicHelp": false,
|
|
8505
8498
|
"hiddenAliases": [],
|
|
8506
|
-
"id": "
|
|
8499
|
+
"id": "webhook:list",
|
|
8507
8500
|
"pluginAlias": "eas-cli",
|
|
8508
8501
|
"pluginName": "eas-cli",
|
|
8509
8502
|
"pluginType": "core",
|
|
@@ -8557,133 +8550,48 @@
|
|
|
8557
8550
|
"relativePath": [
|
|
8558
8551
|
"build",
|
|
8559
8552
|
"commands",
|
|
8560
|
-
"
|
|
8561
|
-
"
|
|
8553
|
+
"webhook",
|
|
8554
|
+
"list.js"
|
|
8562
8555
|
]
|
|
8563
8556
|
},
|
|
8564
|
-
"update": {
|
|
8557
|
+
"webhook:update": {
|
|
8565
8558
|
"aliases": [],
|
|
8566
8559
|
"args": {},
|
|
8567
|
-
"description": "
|
|
8560
|
+
"description": "update a webhook",
|
|
8568
8561
|
"flags": {
|
|
8569
|
-
"
|
|
8570
|
-
"description": "
|
|
8571
|
-
"name": "
|
|
8572
|
-
"required":
|
|
8573
|
-
"hasDynamicHelp": false,
|
|
8574
|
-
"multiple": false,
|
|
8575
|
-
"type": "option"
|
|
8576
|
-
},
|
|
8577
|
-
"channel": {
|
|
8578
|
-
"description": "Channel that the published update should affect",
|
|
8579
|
-
"name": "channel",
|
|
8580
|
-
"required": false,
|
|
8581
|
-
"hasDynamicHelp": false,
|
|
8582
|
-
"multiple": false,
|
|
8583
|
-
"type": "option"
|
|
8584
|
-
},
|
|
8585
|
-
"message": {
|
|
8586
|
-
"char": "m",
|
|
8587
|
-
"description": "A short message describing the update",
|
|
8588
|
-
"name": "message",
|
|
8589
|
-
"required": false,
|
|
8590
|
-
"hasDynamicHelp": false,
|
|
8591
|
-
"multiple": false,
|
|
8592
|
-
"type": "option"
|
|
8593
|
-
},
|
|
8594
|
-
"input-dir": {
|
|
8595
|
-
"description": "Location of the bundle",
|
|
8596
|
-
"name": "input-dir",
|
|
8597
|
-
"required": false,
|
|
8598
|
-
"default": "dist",
|
|
8599
|
-
"hasDynamicHelp": false,
|
|
8600
|
-
"multiple": false,
|
|
8601
|
-
"type": "option"
|
|
8602
|
-
},
|
|
8603
|
-
"skip-bundler": {
|
|
8604
|
-
"description": "Skip running Expo CLI to bundle the app before publishing",
|
|
8605
|
-
"name": "skip-bundler",
|
|
8606
|
-
"allowNo": false,
|
|
8607
|
-
"type": "boolean"
|
|
8608
|
-
},
|
|
8609
|
-
"clear-cache": {
|
|
8610
|
-
"description": "Clear the bundler cache before publishing",
|
|
8611
|
-
"name": "clear-cache",
|
|
8612
|
-
"allowNo": false,
|
|
8613
|
-
"type": "boolean"
|
|
8614
|
-
},
|
|
8615
|
-
"no-bytecode": {
|
|
8616
|
-
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
8617
|
-
"hidden": true,
|
|
8618
|
-
"name": "no-bytecode",
|
|
8619
|
-
"allowNo": false,
|
|
8620
|
-
"type": "boolean"
|
|
8621
|
-
},
|
|
8622
|
-
"source-maps": {
|
|
8623
|
-
"description": "Emit source maps. Options: true (default), inline, false",
|
|
8624
|
-
"hidden": true,
|
|
8625
|
-
"name": "source-maps",
|
|
8626
|
-
"default": "true",
|
|
8627
|
-
"hasDynamicHelp": false,
|
|
8628
|
-
"multiple": false,
|
|
8629
|
-
"type": "option"
|
|
8630
|
-
},
|
|
8631
|
-
"emit-metadata": {
|
|
8632
|
-
"description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
|
|
8633
|
-
"name": "emit-metadata",
|
|
8634
|
-
"allowNo": false,
|
|
8635
|
-
"type": "boolean"
|
|
8636
|
-
},
|
|
8637
|
-
"rollout-percentage": {
|
|
8638
|
-
"description": "Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.",
|
|
8639
|
-
"name": "rollout-percentage",
|
|
8640
|
-
"required": false,
|
|
8562
|
+
"id": {
|
|
8563
|
+
"description": "Webhook ID",
|
|
8564
|
+
"name": "id",
|
|
8565
|
+
"required": true,
|
|
8641
8566
|
"hasDynamicHelp": false,
|
|
8642
8567
|
"multiple": false,
|
|
8643
8568
|
"type": "option"
|
|
8644
8569
|
},
|
|
8645
|
-
"
|
|
8646
|
-
"
|
|
8647
|
-
"name": "
|
|
8648
|
-
"required": false,
|
|
8649
|
-
"default": "all",
|
|
8570
|
+
"event": {
|
|
8571
|
+
"description": "Event type that triggers the webhook",
|
|
8572
|
+
"name": "event",
|
|
8650
8573
|
"hasDynamicHelp": false,
|
|
8651
8574
|
"multiple": false,
|
|
8652
8575
|
"options": [
|
|
8653
|
-
"
|
|
8654
|
-
"
|
|
8655
|
-
"all"
|
|
8576
|
+
"BUILD",
|
|
8577
|
+
"SUBMIT"
|
|
8656
8578
|
],
|
|
8657
8579
|
"type": "option"
|
|
8658
8580
|
},
|
|
8659
|
-
"
|
|
8660
|
-
"description": "
|
|
8661
|
-
"name": "
|
|
8662
|
-
"allowNo": false,
|
|
8663
|
-
"type": "boolean"
|
|
8664
|
-
},
|
|
8665
|
-
"private-key-path": {
|
|
8666
|
-
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
8667
|
-
"name": "private-key-path",
|
|
8668
|
-
"required": false,
|
|
8581
|
+
"url": {
|
|
8582
|
+
"description": "Webhook URL",
|
|
8583
|
+
"name": "url",
|
|
8669
8584
|
"hasDynamicHelp": false,
|
|
8670
8585
|
"multiple": false,
|
|
8671
8586
|
"type": "option"
|
|
8672
8587
|
},
|
|
8673
|
-
"
|
|
8674
|
-
"description": "
|
|
8675
|
-
"name": "
|
|
8676
|
-
"required": false,
|
|
8588
|
+
"secret": {
|
|
8589
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
8590
|
+
"name": "secret",
|
|
8677
8591
|
"hasDynamicHelp": false,
|
|
8678
8592
|
"multiple": false,
|
|
8679
8593
|
"type": "option"
|
|
8680
8594
|
},
|
|
8681
|
-
"json": {
|
|
8682
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8683
|
-
"name": "json",
|
|
8684
|
-
"allowNo": false,
|
|
8685
|
-
"type": "boolean"
|
|
8686
|
-
},
|
|
8687
8595
|
"non-interactive": {
|
|
8688
8596
|
"description": "Run the command in non-interactive mode.",
|
|
8689
8597
|
"name": "non-interactive",
|
|
@@ -8694,7 +8602,7 @@
|
|
|
8694
8602
|
},
|
|
8695
8603
|
"hasDynamicHelp": false,
|
|
8696
8604
|
"hiddenAliases": [],
|
|
8697
|
-
"id": "update",
|
|
8605
|
+
"id": "webhook:update",
|
|
8698
8606
|
"pluginAlias": "eas-cli",
|
|
8699
8607
|
"pluginName": "eas-cli",
|
|
8700
8608
|
"pluginType": "core",
|
|
@@ -8741,90 +8649,30 @@
|
|
|
8741
8649
|
}
|
|
8742
8650
|
},
|
|
8743
8651
|
"contextDefinition": {
|
|
8744
|
-
"
|
|
8745
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
8746
|
-
"loggedIn": {},
|
|
8747
|
-
"vcsClient": {},
|
|
8748
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
8652
|
+
"loggedIn": {}
|
|
8749
8653
|
},
|
|
8750
8654
|
"isESM": false,
|
|
8751
8655
|
"relativePath": [
|
|
8752
8656
|
"build",
|
|
8753
8657
|
"commands",
|
|
8754
|
-
"
|
|
8755
|
-
"
|
|
8658
|
+
"webhook",
|
|
8659
|
+
"update.js"
|
|
8756
8660
|
]
|
|
8757
8661
|
},
|
|
8758
|
-
"
|
|
8662
|
+
"webhook:view": {
|
|
8759
8663
|
"aliases": [],
|
|
8760
8664
|
"args": {
|
|
8761
|
-
"
|
|
8762
|
-
"description": "
|
|
8763
|
-
"name": "
|
|
8665
|
+
"ID": {
|
|
8666
|
+
"description": "ID of the webhook to view",
|
|
8667
|
+
"name": "ID",
|
|
8764
8668
|
"required": true
|
|
8765
8669
|
}
|
|
8766
8670
|
},
|
|
8767
|
-
"description": "
|
|
8768
|
-
"flags": {
|
|
8769
|
-
"platform": {
|
|
8770
|
-
"description": "Filter to a single platform.",
|
|
8771
|
-
"name": "platform",
|
|
8772
|
-
"hasDynamicHelp": false,
|
|
8773
|
-
"multiple": false,
|
|
8774
|
-
"options": [
|
|
8775
|
-
"ios",
|
|
8776
|
-
"android"
|
|
8777
|
-
],
|
|
8778
|
-
"type": "option"
|
|
8779
|
-
},
|
|
8780
|
-
"days": {
|
|
8781
|
-
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
8782
|
-
"exclusive": [
|
|
8783
|
-
"start",
|
|
8784
|
-
"end"
|
|
8785
|
-
],
|
|
8786
|
-
"name": "days",
|
|
8787
|
-
"hasDynamicHelp": false,
|
|
8788
|
-
"multiple": false,
|
|
8789
|
-
"type": "option"
|
|
8790
|
-
},
|
|
8791
|
-
"start": {
|
|
8792
|
-
"description": "Start of insights time range (ISO date).",
|
|
8793
|
-
"exclusive": [
|
|
8794
|
-
"days"
|
|
8795
|
-
],
|
|
8796
|
-
"name": "start",
|
|
8797
|
-
"hasDynamicHelp": false,
|
|
8798
|
-
"multiple": false,
|
|
8799
|
-
"type": "option"
|
|
8800
|
-
},
|
|
8801
|
-
"end": {
|
|
8802
|
-
"description": "End of insights time range (ISO date).",
|
|
8803
|
-
"exclusive": [
|
|
8804
|
-
"days"
|
|
8805
|
-
],
|
|
8806
|
-
"name": "end",
|
|
8807
|
-
"hasDynamicHelp": false,
|
|
8808
|
-
"multiple": false,
|
|
8809
|
-
"type": "option"
|
|
8810
|
-
},
|
|
8811
|
-
"json": {
|
|
8812
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8813
|
-
"name": "json",
|
|
8814
|
-
"allowNo": false,
|
|
8815
|
-
"type": "boolean"
|
|
8816
|
-
},
|
|
8817
|
-
"non-interactive": {
|
|
8818
|
-
"description": "Run the command in non-interactive mode.",
|
|
8819
|
-
"name": "non-interactive",
|
|
8820
|
-
"noCacheDefault": true,
|
|
8821
|
-
"allowNo": false,
|
|
8822
|
-
"type": "boolean"
|
|
8823
|
-
}
|
|
8824
|
-
},
|
|
8671
|
+
"description": "view a webhook",
|
|
8672
|
+
"flags": {},
|
|
8825
8673
|
"hasDynamicHelp": false,
|
|
8826
8674
|
"hiddenAliases": [],
|
|
8827
|
-
"id": "
|
|
8675
|
+
"id": "webhook:view",
|
|
8828
8676
|
"pluginAlias": "eas-cli",
|
|
8829
8677
|
"pluginName": "eas-cli",
|
|
8830
8678
|
"pluginType": "core",
|
|
@@ -8877,38 +8725,20 @@
|
|
|
8877
8725
|
"relativePath": [
|
|
8878
8726
|
"build",
|
|
8879
8727
|
"commands",
|
|
8880
|
-
"
|
|
8881
|
-
"
|
|
8728
|
+
"webhook",
|
|
8729
|
+
"view.js"
|
|
8882
8730
|
]
|
|
8883
8731
|
},
|
|
8884
|
-
"update:
|
|
8732
|
+
"update:configure": {
|
|
8885
8733
|
"aliases": [],
|
|
8886
8734
|
"args": {},
|
|
8887
|
-
"description": "
|
|
8735
|
+
"description": "configure the project to support EAS Update",
|
|
8888
8736
|
"flags": {
|
|
8889
|
-
"branch": {
|
|
8890
|
-
"description": "List updates only on this branch",
|
|
8891
|
-
"exclusive": [
|
|
8892
|
-
"all"
|
|
8893
|
-
],
|
|
8894
|
-
"name": "branch",
|
|
8895
|
-
"hasDynamicHelp": false,
|
|
8896
|
-
"multiple": false,
|
|
8897
|
-
"type": "option"
|
|
8898
|
-
},
|
|
8899
|
-
"all": {
|
|
8900
|
-
"description": "List updates on all branches",
|
|
8901
|
-
"exclusive": [
|
|
8902
|
-
"branch"
|
|
8903
|
-
],
|
|
8904
|
-
"name": "all",
|
|
8905
|
-
"allowNo": false,
|
|
8906
|
-
"type": "boolean"
|
|
8907
|
-
},
|
|
8908
8737
|
"platform": {
|
|
8909
8738
|
"char": "p",
|
|
8910
|
-
"description": "
|
|
8739
|
+
"description": "Platform to configure",
|
|
8911
8740
|
"name": "platform",
|
|
8741
|
+
"default": "all",
|
|
8912
8742
|
"hasDynamicHelp": false,
|
|
8913
8743
|
"multiple": false,
|
|
8914
8744
|
"options": [
|
|
@@ -8918,33 +8748,14 @@
|
|
|
8918
8748
|
],
|
|
8919
8749
|
"type": "option"
|
|
8920
8750
|
},
|
|
8921
|
-
"
|
|
8922
|
-
"description": "
|
|
8923
|
-
"name": "
|
|
8924
|
-
"
|
|
8925
|
-
"multiple": false,
|
|
8926
|
-
"type": "option"
|
|
8927
|
-
},
|
|
8928
|
-
"offset": {
|
|
8929
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
8930
|
-
"name": "offset",
|
|
8931
|
-
"hasDynamicHelp": false,
|
|
8932
|
-
"multiple": false,
|
|
8933
|
-
"type": "option"
|
|
8934
|
-
},
|
|
8935
|
-
"limit": {
|
|
8936
|
-
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
8937
|
-
"name": "limit",
|
|
8751
|
+
"environment": {
|
|
8752
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
|
|
8753
|
+
"name": "environment",
|
|
8754
|
+
"required": false,
|
|
8938
8755
|
"hasDynamicHelp": false,
|
|
8939
8756
|
"multiple": false,
|
|
8940
8757
|
"type": "option"
|
|
8941
8758
|
},
|
|
8942
|
-
"json": {
|
|
8943
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8944
|
-
"name": "json",
|
|
8945
|
-
"allowNo": false,
|
|
8946
|
-
"type": "boolean"
|
|
8947
|
-
},
|
|
8948
8759
|
"non-interactive": {
|
|
8949
8760
|
"description": "Run the command in non-interactive mode.",
|
|
8950
8761
|
"name": "non-interactive",
|
|
@@ -8955,7 +8766,7 @@
|
|
|
8955
8766
|
},
|
|
8956
8767
|
"hasDynamicHelp": false,
|
|
8957
8768
|
"hiddenAliases": [],
|
|
8958
|
-
"id": "update:
|
|
8769
|
+
"id": "update:configure",
|
|
8959
8770
|
"pluginAlias": "eas-cli",
|
|
8960
8771
|
"pluginName": "eas-cli",
|
|
8961
8772
|
"pluginType": "core",
|
|
@@ -9002,114 +8813,29 @@
|
|
|
9002
8813
|
}
|
|
9003
8814
|
},
|
|
9004
8815
|
"contextDefinition": {
|
|
9005
|
-
"
|
|
9006
|
-
"
|
|
8816
|
+
"loggedIn": {},
|
|
8817
|
+
"privateProjectConfig": {},
|
|
8818
|
+
"vcsClient": {}
|
|
9007
8819
|
},
|
|
9008
8820
|
"isESM": false,
|
|
9009
8821
|
"relativePath": [
|
|
9010
8822
|
"build",
|
|
9011
8823
|
"commands",
|
|
9012
8824
|
"update",
|
|
9013
|
-
"
|
|
8825
|
+
"configure.js"
|
|
9014
8826
|
]
|
|
9015
8827
|
},
|
|
9016
|
-
"update:
|
|
8828
|
+
"update:delete": {
|
|
9017
8829
|
"aliases": [],
|
|
9018
|
-
"args": {
|
|
9019
|
-
|
|
8830
|
+
"args": {
|
|
8831
|
+
"groupId": {
|
|
8832
|
+
"description": "The ID of an update group to delete.",
|
|
8833
|
+
"name": "groupId",
|
|
8834
|
+
"required": true
|
|
8835
|
+
}
|
|
8836
|
+
},
|
|
8837
|
+
"description": "delete all the updates in an update group",
|
|
9020
8838
|
"flags": {
|
|
9021
|
-
"channel": {
|
|
9022
|
-
"description": "Channel name to select an update group to republish from",
|
|
9023
|
-
"exclusive": [
|
|
9024
|
-
"branch",
|
|
9025
|
-
"group"
|
|
9026
|
-
],
|
|
9027
|
-
"name": "channel",
|
|
9028
|
-
"hasDynamicHelp": false,
|
|
9029
|
-
"multiple": false,
|
|
9030
|
-
"type": "option"
|
|
9031
|
-
},
|
|
9032
|
-
"branch": {
|
|
9033
|
-
"description": "Branch name to select an update group to republish from",
|
|
9034
|
-
"exclusive": [
|
|
9035
|
-
"channel",
|
|
9036
|
-
"group"
|
|
9037
|
-
],
|
|
9038
|
-
"name": "branch",
|
|
9039
|
-
"hasDynamicHelp": false,
|
|
9040
|
-
"multiple": false,
|
|
9041
|
-
"type": "option"
|
|
9042
|
-
},
|
|
9043
|
-
"group": {
|
|
9044
|
-
"description": "Update group ID to republish",
|
|
9045
|
-
"exclusive": [
|
|
9046
|
-
"branch",
|
|
9047
|
-
"channel"
|
|
9048
|
-
],
|
|
9049
|
-
"name": "group",
|
|
9050
|
-
"hasDynamicHelp": false,
|
|
9051
|
-
"multiple": false,
|
|
9052
|
-
"type": "option"
|
|
9053
|
-
},
|
|
9054
|
-
"destination-channel": {
|
|
9055
|
-
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
9056
|
-
"exclusive": [
|
|
9057
|
-
"destination-branch"
|
|
9058
|
-
],
|
|
9059
|
-
"name": "destination-channel",
|
|
9060
|
-
"hasDynamicHelp": false,
|
|
9061
|
-
"multiple": false,
|
|
9062
|
-
"type": "option"
|
|
9063
|
-
},
|
|
9064
|
-
"destination-branch": {
|
|
9065
|
-
"description": "Branch name to republish to if republishing to a different branch",
|
|
9066
|
-
"exclusive": [
|
|
9067
|
-
"destination-channel"
|
|
9068
|
-
],
|
|
9069
|
-
"name": "destination-branch",
|
|
9070
|
-
"hasDynamicHelp": false,
|
|
9071
|
-
"multiple": false,
|
|
9072
|
-
"type": "option"
|
|
9073
|
-
},
|
|
9074
|
-
"message": {
|
|
9075
|
-
"char": "m",
|
|
9076
|
-
"description": "Short message describing the republished update group",
|
|
9077
|
-
"name": "message",
|
|
9078
|
-
"required": false,
|
|
9079
|
-
"hasDynamicHelp": false,
|
|
9080
|
-
"multiple": false,
|
|
9081
|
-
"type": "option"
|
|
9082
|
-
},
|
|
9083
|
-
"platform": {
|
|
9084
|
-
"char": "p",
|
|
9085
|
-
"name": "platform",
|
|
9086
|
-
"required": false,
|
|
9087
|
-
"default": "all",
|
|
9088
|
-
"hasDynamicHelp": false,
|
|
9089
|
-
"multiple": false,
|
|
9090
|
-
"options": [
|
|
9091
|
-
"android",
|
|
9092
|
-
"ios",
|
|
9093
|
-
"all"
|
|
9094
|
-
],
|
|
9095
|
-
"type": "option"
|
|
9096
|
-
},
|
|
9097
|
-
"private-key-path": {
|
|
9098
|
-
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9099
|
-
"name": "private-key-path",
|
|
9100
|
-
"required": false,
|
|
9101
|
-
"hasDynamicHelp": false,
|
|
9102
|
-
"multiple": false,
|
|
9103
|
-
"type": "option"
|
|
9104
|
-
},
|
|
9105
|
-
"rollout-percentage": {
|
|
9106
|
-
"description": "Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.",
|
|
9107
|
-
"name": "rollout-percentage",
|
|
9108
|
-
"required": false,
|
|
9109
|
-
"hasDynamicHelp": false,
|
|
9110
|
-
"multiple": false,
|
|
9111
|
-
"type": "option"
|
|
9112
|
-
},
|
|
9113
8839
|
"json": {
|
|
9114
8840
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9115
8841
|
"name": "json",
|
|
@@ -9126,7 +8852,7 @@
|
|
|
9126
8852
|
},
|
|
9127
8853
|
"hasDynamicHelp": false,
|
|
9128
8854
|
"hiddenAliases": [],
|
|
9129
|
-
"id": "update:
|
|
8855
|
+
"id": "update:delete",
|
|
9130
8856
|
"pluginAlias": "eas-cli",
|
|
9131
8857
|
"pluginName": "eas-cli",
|
|
9132
8858
|
"pluginType": "core",
|
|
@@ -9173,68 +8899,37 @@
|
|
|
9173
8899
|
}
|
|
9174
8900
|
},
|
|
9175
8901
|
"contextDefinition": {
|
|
9176
|
-
"loggedIn": {}
|
|
9177
|
-
"privateProjectConfig": {}
|
|
8902
|
+
"loggedIn": {}
|
|
9178
8903
|
},
|
|
9179
8904
|
"isESM": false,
|
|
9180
8905
|
"relativePath": [
|
|
9181
8906
|
"build",
|
|
9182
8907
|
"commands",
|
|
9183
8908
|
"update",
|
|
9184
|
-
"
|
|
8909
|
+
"delete.js"
|
|
9185
8910
|
]
|
|
9186
8911
|
},
|
|
9187
|
-
"update:
|
|
8912
|
+
"update:edit": {
|
|
9188
8913
|
"aliases": [],
|
|
9189
|
-
"args": {
|
|
9190
|
-
|
|
8914
|
+
"args": {
|
|
8915
|
+
"groupId": {
|
|
8916
|
+
"description": "The ID of an update group to edit.",
|
|
8917
|
+
"name": "groupId"
|
|
8918
|
+
}
|
|
8919
|
+
},
|
|
8920
|
+
"description": "edit all the updates in an update group",
|
|
9191
8921
|
"flags": {
|
|
9192
|
-
"
|
|
9193
|
-
"description": "
|
|
9194
|
-
"
|
|
9195
|
-
"branch",
|
|
9196
|
-
"group"
|
|
9197
|
-
],
|
|
9198
|
-
"name": "channel",
|
|
9199
|
-
"hasDynamicHelp": false,
|
|
9200
|
-
"multiple": false,
|
|
9201
|
-
"type": "option"
|
|
9202
|
-
},
|
|
9203
|
-
"branch": {
|
|
9204
|
-
"description": "Branch name to select an update group to revert the rollout update from",
|
|
9205
|
-
"exclusive": [
|
|
9206
|
-
"channel",
|
|
9207
|
-
"group"
|
|
9208
|
-
],
|
|
9209
|
-
"name": "branch",
|
|
9210
|
-
"hasDynamicHelp": false,
|
|
9211
|
-
"multiple": false,
|
|
9212
|
-
"type": "option"
|
|
9213
|
-
},
|
|
9214
|
-
"group": {
|
|
9215
|
-
"description": "Rollout update group ID to revert",
|
|
9216
|
-
"exclusive": [
|
|
9217
|
-
"branch",
|
|
9218
|
-
"channel"
|
|
9219
|
-
],
|
|
9220
|
-
"name": "group",
|
|
9221
|
-
"hasDynamicHelp": false,
|
|
9222
|
-
"multiple": false,
|
|
9223
|
-
"type": "option"
|
|
9224
|
-
},
|
|
9225
|
-
"message": {
|
|
9226
|
-
"char": "m",
|
|
9227
|
-
"description": "Short message describing the revert",
|
|
9228
|
-
"name": "message",
|
|
8922
|
+
"rollout-percentage": {
|
|
8923
|
+
"description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
|
|
8924
|
+
"name": "rollout-percentage",
|
|
9229
8925
|
"required": false,
|
|
9230
8926
|
"hasDynamicHelp": false,
|
|
9231
8927
|
"multiple": false,
|
|
9232
8928
|
"type": "option"
|
|
9233
8929
|
},
|
|
9234
|
-
"
|
|
9235
|
-
"description": "
|
|
9236
|
-
"name": "
|
|
9237
|
-
"required": false,
|
|
8930
|
+
"branch": {
|
|
8931
|
+
"description": "Branch for which to list updates to select from",
|
|
8932
|
+
"name": "branch",
|
|
9238
8933
|
"hasDynamicHelp": false,
|
|
9239
8934
|
"multiple": false,
|
|
9240
8935
|
"type": "option"
|
|
@@ -9255,7 +8950,7 @@
|
|
|
9255
8950
|
},
|
|
9256
8951
|
"hasDynamicHelp": false,
|
|
9257
8952
|
"hiddenAliases": [],
|
|
9258
|
-
"id": "update:
|
|
8953
|
+
"id": "update:edit",
|
|
9259
8954
|
"pluginAlias": "eas-cli",
|
|
9260
8955
|
"pluginName": "eas-cli",
|
|
9261
8956
|
"pluginType": "core",
|
|
@@ -9302,25 +8997,24 @@
|
|
|
9302
8997
|
}
|
|
9303
8998
|
},
|
|
9304
8999
|
"contextDefinition": {
|
|
9305
|
-
"
|
|
9306
|
-
"
|
|
9307
|
-
"vcsClient": {}
|
|
9000
|
+
"projectId": {},
|
|
9001
|
+
"loggedIn": {}
|
|
9308
9002
|
},
|
|
9309
9003
|
"isESM": false,
|
|
9310
9004
|
"relativePath": [
|
|
9311
9005
|
"build",
|
|
9312
9006
|
"commands",
|
|
9313
9007
|
"update",
|
|
9314
|
-
"
|
|
9008
|
+
"edit.js"
|
|
9315
9009
|
]
|
|
9316
9010
|
},
|
|
9317
|
-
"update
|
|
9011
|
+
"update": {
|
|
9318
9012
|
"aliases": [],
|
|
9319
9013
|
"args": {},
|
|
9320
|
-
"description": "
|
|
9014
|
+
"description": "publish an update group",
|
|
9321
9015
|
"flags": {
|
|
9322
9016
|
"branch": {
|
|
9323
|
-
"description": "Branch to publish the
|
|
9017
|
+
"description": "Branch to publish the update group on",
|
|
9324
9018
|
"name": "branch",
|
|
9325
9019
|
"required": false,
|
|
9326
9020
|
"hasDynamicHelp": false,
|
|
@@ -9328,24 +9022,68 @@
|
|
|
9328
9022
|
"type": "option"
|
|
9329
9023
|
},
|
|
9330
9024
|
"channel": {
|
|
9331
|
-
"description": "Channel that the published
|
|
9025
|
+
"description": "Channel that the published update should affect",
|
|
9332
9026
|
"name": "channel",
|
|
9333
9027
|
"required": false,
|
|
9334
9028
|
"hasDynamicHelp": false,
|
|
9335
9029
|
"multiple": false,
|
|
9336
9030
|
"type": "option"
|
|
9337
9031
|
},
|
|
9338
|
-
"
|
|
9339
|
-
"
|
|
9340
|
-
"
|
|
9032
|
+
"message": {
|
|
9033
|
+
"char": "m",
|
|
9034
|
+
"description": "A short message describing the update",
|
|
9035
|
+
"name": "message",
|
|
9341
9036
|
"required": false,
|
|
9342
9037
|
"hasDynamicHelp": false,
|
|
9343
9038
|
"multiple": false,
|
|
9344
9039
|
"type": "option"
|
|
9345
9040
|
},
|
|
9346
|
-
"
|
|
9347
|
-
"description": "
|
|
9348
|
-
"name": "
|
|
9041
|
+
"input-dir": {
|
|
9042
|
+
"description": "Location of the bundle",
|
|
9043
|
+
"name": "input-dir",
|
|
9044
|
+
"required": false,
|
|
9045
|
+
"default": "dist",
|
|
9046
|
+
"hasDynamicHelp": false,
|
|
9047
|
+
"multiple": false,
|
|
9048
|
+
"type": "option"
|
|
9049
|
+
},
|
|
9050
|
+
"skip-bundler": {
|
|
9051
|
+
"description": "Skip running Expo CLI to bundle the app before publishing",
|
|
9052
|
+
"name": "skip-bundler",
|
|
9053
|
+
"allowNo": false,
|
|
9054
|
+
"type": "boolean"
|
|
9055
|
+
},
|
|
9056
|
+
"clear-cache": {
|
|
9057
|
+
"description": "Clear the bundler cache before publishing",
|
|
9058
|
+
"name": "clear-cache",
|
|
9059
|
+
"allowNo": false,
|
|
9060
|
+
"type": "boolean"
|
|
9061
|
+
},
|
|
9062
|
+
"no-bytecode": {
|
|
9063
|
+
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
9064
|
+
"hidden": true,
|
|
9065
|
+
"name": "no-bytecode",
|
|
9066
|
+
"allowNo": false,
|
|
9067
|
+
"type": "boolean"
|
|
9068
|
+
},
|
|
9069
|
+
"source-maps": {
|
|
9070
|
+
"description": "Emit source maps. Options: true (default), inline, false",
|
|
9071
|
+
"hidden": true,
|
|
9072
|
+
"name": "source-maps",
|
|
9073
|
+
"default": "true",
|
|
9074
|
+
"hasDynamicHelp": false,
|
|
9075
|
+
"multiple": false,
|
|
9076
|
+
"type": "option"
|
|
9077
|
+
},
|
|
9078
|
+
"emit-metadata": {
|
|
9079
|
+
"description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
|
|
9080
|
+
"name": "emit-metadata",
|
|
9081
|
+
"allowNo": false,
|
|
9082
|
+
"type": "boolean"
|
|
9083
|
+
},
|
|
9084
|
+
"rollout-percentage": {
|
|
9085
|
+
"description": "Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.",
|
|
9086
|
+
"name": "rollout-percentage",
|
|
9349
9087
|
"required": false,
|
|
9350
9088
|
"hasDynamicHelp": false,
|
|
9351
9089
|
"multiple": false,
|
|
@@ -9365,6 +9103,12 @@
|
|
|
9365
9103
|
],
|
|
9366
9104
|
"type": "option"
|
|
9367
9105
|
},
|
|
9106
|
+
"auto": {
|
|
9107
|
+
"description": "Use the current git branch and commit message for the EAS branch and update message",
|
|
9108
|
+
"name": "auto",
|
|
9109
|
+
"allowNo": false,
|
|
9110
|
+
"type": "boolean"
|
|
9111
|
+
},
|
|
9368
9112
|
"private-key-path": {
|
|
9369
9113
|
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9370
9114
|
"name": "private-key-path",
|
|
@@ -9373,6 +9117,14 @@
|
|
|
9373
9117
|
"multiple": false,
|
|
9374
9118
|
"type": "option"
|
|
9375
9119
|
},
|
|
9120
|
+
"environment": {
|
|
9121
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\". Required for projects using Expo SDK 55 or greater.",
|
|
9122
|
+
"name": "environment",
|
|
9123
|
+
"required": false,
|
|
9124
|
+
"hasDynamicHelp": false,
|
|
9125
|
+
"multiple": false,
|
|
9126
|
+
"type": "option"
|
|
9127
|
+
},
|
|
9376
9128
|
"json": {
|
|
9377
9129
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9378
9130
|
"name": "json",
|
|
@@ -9389,7 +9141,7 @@
|
|
|
9389
9141
|
},
|
|
9390
9142
|
"hasDynamicHelp": false,
|
|
9391
9143
|
"hiddenAliases": [],
|
|
9392
|
-
"id": "update
|
|
9144
|
+
"id": "update",
|
|
9393
9145
|
"pluginAlias": "eas-cli",
|
|
9394
9146
|
"pluginName": "eas-cli",
|
|
9395
9147
|
"pluginType": "core",
|
|
@@ -9439,33 +9191,87 @@
|
|
|
9439
9191
|
"getDynamicPublicProjectConfigAsync": {},
|
|
9440
9192
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
9441
9193
|
"loggedIn": {},
|
|
9442
|
-
"vcsClient": {}
|
|
9194
|
+
"vcsClient": {},
|
|
9195
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9443
9196
|
},
|
|
9444
9197
|
"isESM": false,
|
|
9445
9198
|
"relativePath": [
|
|
9446
9199
|
"build",
|
|
9447
9200
|
"commands",
|
|
9448
9201
|
"update",
|
|
9449
|
-
"
|
|
9202
|
+
"index.js"
|
|
9450
9203
|
]
|
|
9451
9204
|
},
|
|
9452
|
-
"update:
|
|
9205
|
+
"update:insights": {
|
|
9453
9206
|
"aliases": [],
|
|
9454
|
-
"args": {
|
|
9455
|
-
|
|
9207
|
+
"args": {
|
|
9208
|
+
"groupId": {
|
|
9209
|
+
"description": "The ID of an update group.",
|
|
9210
|
+
"name": "groupId",
|
|
9211
|
+
"required": true
|
|
9212
|
+
}
|
|
9213
|
+
},
|
|
9214
|
+
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
9456
9215
|
"flags": {
|
|
9457
|
-
"
|
|
9458
|
-
"description": "
|
|
9459
|
-
"name": "
|
|
9460
|
-
"
|
|
9216
|
+
"platform": {
|
|
9217
|
+
"description": "Filter to a single platform.",
|
|
9218
|
+
"name": "platform",
|
|
9219
|
+
"hasDynamicHelp": false,
|
|
9220
|
+
"multiple": false,
|
|
9221
|
+
"options": [
|
|
9222
|
+
"ios",
|
|
9223
|
+
"android"
|
|
9224
|
+
],
|
|
9225
|
+
"type": "option"
|
|
9226
|
+
},
|
|
9227
|
+
"days": {
|
|
9228
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
9229
|
+
"exclusive": [
|
|
9230
|
+
"start",
|
|
9231
|
+
"end"
|
|
9232
|
+
],
|
|
9233
|
+
"name": "days",
|
|
9234
|
+
"hasDynamicHelp": false,
|
|
9235
|
+
"multiple": false,
|
|
9236
|
+
"type": "option"
|
|
9237
|
+
},
|
|
9238
|
+
"start": {
|
|
9239
|
+
"description": "Start of insights time range (ISO date).",
|
|
9240
|
+
"exclusive": [
|
|
9241
|
+
"days"
|
|
9242
|
+
],
|
|
9243
|
+
"name": "start",
|
|
9461
9244
|
"hasDynamicHelp": false,
|
|
9462
9245
|
"multiple": false,
|
|
9463
9246
|
"type": "option"
|
|
9247
|
+
},
|
|
9248
|
+
"end": {
|
|
9249
|
+
"description": "End of insights time range (ISO date).",
|
|
9250
|
+
"exclusive": [
|
|
9251
|
+
"days"
|
|
9252
|
+
],
|
|
9253
|
+
"name": "end",
|
|
9254
|
+
"hasDynamicHelp": false,
|
|
9255
|
+
"multiple": false,
|
|
9256
|
+
"type": "option"
|
|
9257
|
+
},
|
|
9258
|
+
"json": {
|
|
9259
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9260
|
+
"name": "json",
|
|
9261
|
+
"allowNo": false,
|
|
9262
|
+
"type": "boolean"
|
|
9263
|
+
},
|
|
9264
|
+
"non-interactive": {
|
|
9265
|
+
"description": "Run the command in non-interactive mode.",
|
|
9266
|
+
"name": "non-interactive",
|
|
9267
|
+
"noCacheDefault": true,
|
|
9268
|
+
"allowNo": false,
|
|
9269
|
+
"type": "boolean"
|
|
9464
9270
|
}
|
|
9465
9271
|
},
|
|
9466
9272
|
"hasDynamicHelp": false,
|
|
9467
9273
|
"hiddenAliases": [],
|
|
9468
|
-
"id": "update:
|
|
9274
|
+
"id": "update:insights",
|
|
9469
9275
|
"pluginAlias": "eas-cli",
|
|
9470
9276
|
"pluginName": "eas-cli",
|
|
9471
9277
|
"pluginType": "core",
|
|
@@ -9511,73 +9317,92 @@
|
|
|
9511
9317
|
"projectId": {}
|
|
9512
9318
|
}
|
|
9513
9319
|
},
|
|
9514
|
-
"contextDefinition": {
|
|
9320
|
+
"contextDefinition": {
|
|
9321
|
+
"loggedIn": {}
|
|
9322
|
+
},
|
|
9515
9323
|
"isESM": false,
|
|
9516
9324
|
"relativePath": [
|
|
9517
9325
|
"build",
|
|
9518
9326
|
"commands",
|
|
9519
9327
|
"update",
|
|
9520
|
-
"
|
|
9328
|
+
"insights.js"
|
|
9521
9329
|
]
|
|
9522
9330
|
},
|
|
9523
|
-
"update:
|
|
9331
|
+
"update:list": {
|
|
9524
9332
|
"aliases": [],
|
|
9525
|
-
"args": {
|
|
9526
|
-
|
|
9527
|
-
"description": "The ID of an update group.",
|
|
9528
|
-
"name": "groupId",
|
|
9529
|
-
"required": true
|
|
9530
|
-
}
|
|
9531
|
-
},
|
|
9532
|
-
"description": "update group details",
|
|
9333
|
+
"args": {},
|
|
9334
|
+
"description": "view the recent updates",
|
|
9533
9335
|
"flags": {
|
|
9534
|
-
"
|
|
9535
|
-
"description": "
|
|
9536
|
-
"name": "insights",
|
|
9537
|
-
"allowNo": false,
|
|
9538
|
-
"type": "boolean"
|
|
9539
|
-
},
|
|
9540
|
-
"days": {
|
|
9541
|
-
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
9336
|
+
"branch": {
|
|
9337
|
+
"description": "List updates only on this branch",
|
|
9542
9338
|
"exclusive": [
|
|
9543
|
-
"
|
|
9544
|
-
"end"
|
|
9339
|
+
"all"
|
|
9545
9340
|
],
|
|
9546
|
-
"name": "
|
|
9341
|
+
"name": "branch",
|
|
9547
9342
|
"hasDynamicHelp": false,
|
|
9548
9343
|
"multiple": false,
|
|
9549
9344
|
"type": "option"
|
|
9550
9345
|
},
|
|
9551
|
-
"
|
|
9552
|
-
"description": "
|
|
9346
|
+
"all": {
|
|
9347
|
+
"description": "List updates on all branches",
|
|
9553
9348
|
"exclusive": [
|
|
9554
|
-
"
|
|
9349
|
+
"branch"
|
|
9555
9350
|
],
|
|
9556
|
-
"name": "
|
|
9351
|
+
"name": "all",
|
|
9352
|
+
"allowNo": false,
|
|
9353
|
+
"type": "boolean"
|
|
9354
|
+
},
|
|
9355
|
+
"platform": {
|
|
9356
|
+
"char": "p",
|
|
9357
|
+
"description": "Filter updates by platform",
|
|
9358
|
+
"name": "platform",
|
|
9557
9359
|
"hasDynamicHelp": false,
|
|
9558
9360
|
"multiple": false,
|
|
9361
|
+
"options": [
|
|
9362
|
+
"android",
|
|
9363
|
+
"ios",
|
|
9364
|
+
"all"
|
|
9365
|
+
],
|
|
9559
9366
|
"type": "option"
|
|
9560
9367
|
},
|
|
9561
|
-
"
|
|
9562
|
-
"description": "
|
|
9563
|
-
"
|
|
9564
|
-
|
|
9565
|
-
|
|
9566
|
-
"
|
|
9368
|
+
"runtime-version": {
|
|
9369
|
+
"description": "Filter updates by runtime version",
|
|
9370
|
+
"name": "runtime-version",
|
|
9371
|
+
"hasDynamicHelp": false,
|
|
9372
|
+
"multiple": false,
|
|
9373
|
+
"type": "option"
|
|
9374
|
+
},
|
|
9375
|
+
"offset": {
|
|
9376
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
9377
|
+
"name": "offset",
|
|
9378
|
+
"hasDynamicHelp": false,
|
|
9379
|
+
"multiple": false,
|
|
9380
|
+
"type": "option"
|
|
9381
|
+
},
|
|
9382
|
+
"limit": {
|
|
9383
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
9384
|
+
"name": "limit",
|
|
9567
9385
|
"hasDynamicHelp": false,
|
|
9568
9386
|
"multiple": false,
|
|
9569
9387
|
"type": "option"
|
|
9570
9388
|
},
|
|
9571
9389
|
"json": {
|
|
9572
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9390
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9573
9391
|
"name": "json",
|
|
9574
9392
|
"allowNo": false,
|
|
9575
9393
|
"type": "boolean"
|
|
9394
|
+
},
|
|
9395
|
+
"non-interactive": {
|
|
9396
|
+
"description": "Run the command in non-interactive mode.",
|
|
9397
|
+
"name": "non-interactive",
|
|
9398
|
+
"noCacheDefault": true,
|
|
9399
|
+
"allowNo": false,
|
|
9400
|
+
"type": "boolean"
|
|
9576
9401
|
}
|
|
9577
9402
|
},
|
|
9578
9403
|
"hasDynamicHelp": false,
|
|
9579
9404
|
"hiddenAliases": [],
|
|
9580
|
-
"id": "update:
|
|
9405
|
+
"id": "update:list",
|
|
9581
9406
|
"pluginAlias": "eas-cli",
|
|
9582
9407
|
"pluginName": "eas-cli",
|
|
9583
9408
|
"pluginType": "core",
|
|
@@ -9624,6 +9449,7 @@
|
|
|
9624
9449
|
}
|
|
9625
9450
|
},
|
|
9626
9451
|
"contextDefinition": {
|
|
9452
|
+
"projectId": {},
|
|
9627
9453
|
"loggedIn": {}
|
|
9628
9454
|
},
|
|
9629
9455
|
"isESM": false,
|
|
@@ -9631,39 +9457,112 @@
|
|
|
9631
9457
|
"build",
|
|
9632
9458
|
"commands",
|
|
9633
9459
|
"update",
|
|
9634
|
-
"
|
|
9460
|
+
"list.js"
|
|
9635
9461
|
]
|
|
9636
9462
|
},
|
|
9637
|
-
"
|
|
9463
|
+
"update:republish": {
|
|
9638
9464
|
"aliases": [],
|
|
9639
9465
|
"args": {},
|
|
9640
|
-
"description": "
|
|
9466
|
+
"description": "roll back to an existing update",
|
|
9641
9467
|
"flags": {
|
|
9642
|
-
"
|
|
9643
|
-
"description": "
|
|
9644
|
-
"
|
|
9468
|
+
"channel": {
|
|
9469
|
+
"description": "Channel name to select an update group to republish from",
|
|
9470
|
+
"exclusive": [
|
|
9471
|
+
"branch",
|
|
9472
|
+
"group"
|
|
9473
|
+
],
|
|
9474
|
+
"name": "channel",
|
|
9475
|
+
"hasDynamicHelp": false,
|
|
9476
|
+
"multiple": false,
|
|
9477
|
+
"type": "option"
|
|
9478
|
+
},
|
|
9479
|
+
"branch": {
|
|
9480
|
+
"description": "Branch name to select an update group to republish from",
|
|
9481
|
+
"exclusive": [
|
|
9482
|
+
"channel",
|
|
9483
|
+
"group"
|
|
9484
|
+
],
|
|
9485
|
+
"name": "branch",
|
|
9486
|
+
"hasDynamicHelp": false,
|
|
9487
|
+
"multiple": false,
|
|
9488
|
+
"type": "option"
|
|
9489
|
+
},
|
|
9490
|
+
"group": {
|
|
9491
|
+
"description": "Update group ID to republish",
|
|
9492
|
+
"exclusive": [
|
|
9493
|
+
"branch",
|
|
9494
|
+
"channel"
|
|
9495
|
+
],
|
|
9496
|
+
"name": "group",
|
|
9497
|
+
"hasDynamicHelp": false,
|
|
9498
|
+
"multiple": false,
|
|
9499
|
+
"type": "option"
|
|
9500
|
+
},
|
|
9501
|
+
"destination-channel": {
|
|
9502
|
+
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
9503
|
+
"exclusive": [
|
|
9504
|
+
"destination-branch"
|
|
9505
|
+
],
|
|
9506
|
+
"name": "destination-channel",
|
|
9507
|
+
"hasDynamicHelp": false,
|
|
9508
|
+
"multiple": false,
|
|
9509
|
+
"type": "option"
|
|
9510
|
+
},
|
|
9511
|
+
"destination-branch": {
|
|
9512
|
+
"description": "Branch name to republish to if republishing to a different branch",
|
|
9513
|
+
"exclusive": [
|
|
9514
|
+
"destination-channel"
|
|
9515
|
+
],
|
|
9516
|
+
"name": "destination-branch",
|
|
9517
|
+
"hasDynamicHelp": false,
|
|
9518
|
+
"multiple": false,
|
|
9519
|
+
"type": "option"
|
|
9520
|
+
},
|
|
9521
|
+
"message": {
|
|
9522
|
+
"char": "m",
|
|
9523
|
+
"description": "Short message describing the republished update group",
|
|
9524
|
+
"name": "message",
|
|
9525
|
+
"required": false,
|
|
9526
|
+
"hasDynamicHelp": false,
|
|
9527
|
+
"multiple": false,
|
|
9528
|
+
"type": "option"
|
|
9529
|
+
},
|
|
9530
|
+
"platform": {
|
|
9531
|
+
"char": "p",
|
|
9532
|
+
"name": "platform",
|
|
9533
|
+
"required": false,
|
|
9534
|
+
"default": "all",
|
|
9645
9535
|
"hasDynamicHelp": false,
|
|
9646
9536
|
"multiple": false,
|
|
9647
9537
|
"options": [
|
|
9648
|
-
"
|
|
9649
|
-
"
|
|
9538
|
+
"android",
|
|
9539
|
+
"ios",
|
|
9540
|
+
"all"
|
|
9650
9541
|
],
|
|
9651
9542
|
"type": "option"
|
|
9652
9543
|
},
|
|
9653
|
-
"
|
|
9654
|
-
"description": "
|
|
9655
|
-
"name": "
|
|
9544
|
+
"private-key-path": {
|
|
9545
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9546
|
+
"name": "private-key-path",
|
|
9547
|
+
"required": false,
|
|
9656
9548
|
"hasDynamicHelp": false,
|
|
9657
9549
|
"multiple": false,
|
|
9658
9550
|
"type": "option"
|
|
9659
9551
|
},
|
|
9660
|
-
"
|
|
9661
|
-
"description": "
|
|
9662
|
-
"name": "
|
|
9552
|
+
"rollout-percentage": {
|
|
9553
|
+
"description": "Percentage of users this update should be immediately available to. Users not in the rollout will be served the previous latest update on the branch, even if that update is itself being rolled out. The specified number must be an integer between 1 and 100. When not specified, this defaults to 100.",
|
|
9554
|
+
"name": "rollout-percentage",
|
|
9555
|
+
"required": false,
|
|
9663
9556
|
"hasDynamicHelp": false,
|
|
9664
9557
|
"multiple": false,
|
|
9665
9558
|
"type": "option"
|
|
9666
9559
|
},
|
|
9560
|
+
"json": {
|
|
9561
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9562
|
+
"name": "json",
|
|
9563
|
+
"allowNo": false,
|
|
9564
|
+
"type": "boolean"
|
|
9565
|
+
},
|
|
9667
9566
|
"non-interactive": {
|
|
9668
9567
|
"description": "Run the command in non-interactive mode.",
|
|
9669
9568
|
"name": "non-interactive",
|
|
@@ -9674,7 +9573,7 @@
|
|
|
9674
9573
|
},
|
|
9675
9574
|
"hasDynamicHelp": false,
|
|
9676
9575
|
"hiddenAliases": [],
|
|
9677
|
-
"id": "
|
|
9576
|
+
"id": "update:republish",
|
|
9678
9577
|
"pluginAlias": "eas-cli",
|
|
9679
9578
|
"pluginName": "eas-cli",
|
|
9680
9579
|
"pluginType": "core",
|
|
@@ -9707,42 +9606,92 @@
|
|
|
9707
9606
|
"loggedIn": {},
|
|
9708
9607
|
"privateProjectConfig": {}
|
|
9709
9608
|
},
|
|
9710
|
-
"Analytics": {
|
|
9711
|
-
"analytics": {}
|
|
9609
|
+
"Analytics": {
|
|
9610
|
+
"analytics": {}
|
|
9611
|
+
},
|
|
9612
|
+
"Vcs": {
|
|
9613
|
+
"vcsClient": {}
|
|
9614
|
+
},
|
|
9615
|
+
"ServerSideEnvironmentVariables": {
|
|
9616
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9617
|
+
},
|
|
9618
|
+
"ProjectId": {
|
|
9619
|
+
"projectId": {}
|
|
9620
|
+
}
|
|
9621
|
+
},
|
|
9622
|
+
"contextDefinition": {
|
|
9623
|
+
"loggedIn": {},
|
|
9624
|
+
"privateProjectConfig": {}
|
|
9625
|
+
},
|
|
9626
|
+
"isESM": false,
|
|
9627
|
+
"relativePath": [
|
|
9628
|
+
"build",
|
|
9629
|
+
"commands",
|
|
9630
|
+
"update",
|
|
9631
|
+
"republish.js"
|
|
9632
|
+
]
|
|
9633
|
+
},
|
|
9634
|
+
"update:revert-update-rollout": {
|
|
9635
|
+
"aliases": [],
|
|
9636
|
+
"args": {},
|
|
9637
|
+
"description": "revert a rollout update for a project",
|
|
9638
|
+
"flags": {
|
|
9639
|
+
"channel": {
|
|
9640
|
+
"description": "Channel name to select an update group to revert the rollout update from",
|
|
9641
|
+
"exclusive": [
|
|
9642
|
+
"branch",
|
|
9643
|
+
"group"
|
|
9644
|
+
],
|
|
9645
|
+
"name": "channel",
|
|
9646
|
+
"hasDynamicHelp": false,
|
|
9647
|
+
"multiple": false,
|
|
9648
|
+
"type": "option"
|
|
9649
|
+
},
|
|
9650
|
+
"branch": {
|
|
9651
|
+
"description": "Branch name to select an update group to revert the rollout update from",
|
|
9652
|
+
"exclusive": [
|
|
9653
|
+
"channel",
|
|
9654
|
+
"group"
|
|
9655
|
+
],
|
|
9656
|
+
"name": "branch",
|
|
9657
|
+
"hasDynamicHelp": false,
|
|
9658
|
+
"multiple": false,
|
|
9659
|
+
"type": "option"
|
|
9660
|
+
},
|
|
9661
|
+
"group": {
|
|
9662
|
+
"description": "Rollout update group ID to revert",
|
|
9663
|
+
"exclusive": [
|
|
9664
|
+
"branch",
|
|
9665
|
+
"channel"
|
|
9666
|
+
],
|
|
9667
|
+
"name": "group",
|
|
9668
|
+
"hasDynamicHelp": false,
|
|
9669
|
+
"multiple": false,
|
|
9670
|
+
"type": "option"
|
|
9671
|
+
},
|
|
9672
|
+
"message": {
|
|
9673
|
+
"char": "m",
|
|
9674
|
+
"description": "Short message describing the revert",
|
|
9675
|
+
"name": "message",
|
|
9676
|
+
"required": false,
|
|
9677
|
+
"hasDynamicHelp": false,
|
|
9678
|
+
"multiple": false,
|
|
9679
|
+
"type": "option"
|
|
9712
9680
|
},
|
|
9713
|
-
"
|
|
9714
|
-
"
|
|
9681
|
+
"private-key-path": {
|
|
9682
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9683
|
+
"name": "private-key-path",
|
|
9684
|
+
"required": false,
|
|
9685
|
+
"hasDynamicHelp": false,
|
|
9686
|
+
"multiple": false,
|
|
9687
|
+
"type": "option"
|
|
9715
9688
|
},
|
|
9716
|
-
"
|
|
9717
|
-
"
|
|
9689
|
+
"json": {
|
|
9690
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9691
|
+
"name": "json",
|
|
9692
|
+
"allowNo": false,
|
|
9693
|
+
"type": "boolean"
|
|
9718
9694
|
},
|
|
9719
|
-
"ProjectId": {
|
|
9720
|
-
"projectId": {}
|
|
9721
|
-
}
|
|
9722
|
-
},
|
|
9723
|
-
"contextDefinition": {
|
|
9724
|
-
"projectId": {},
|
|
9725
|
-
"loggedIn": {}
|
|
9726
|
-
},
|
|
9727
|
-
"isESM": false,
|
|
9728
|
-
"relativePath": [
|
|
9729
|
-
"build",
|
|
9730
|
-
"commands",
|
|
9731
|
-
"webhook",
|
|
9732
|
-
"create.js"
|
|
9733
|
-
]
|
|
9734
|
-
},
|
|
9735
|
-
"webhook:delete": {
|
|
9736
|
-
"aliases": [],
|
|
9737
|
-
"args": {
|
|
9738
|
-
"ID": {
|
|
9739
|
-
"description": "ID of the webhook to delete",
|
|
9740
|
-
"name": "ID",
|
|
9741
|
-
"required": false
|
|
9742
|
-
}
|
|
9743
|
-
},
|
|
9744
|
-
"description": "delete a webhook",
|
|
9745
|
-
"flags": {
|
|
9746
9695
|
"non-interactive": {
|
|
9747
9696
|
"description": "Run the command in non-interactive mode.",
|
|
9748
9697
|
"name": "non-interactive",
|
|
@@ -9753,7 +9702,7 @@
|
|
|
9753
9702
|
},
|
|
9754
9703
|
"hasDynamicHelp": false,
|
|
9755
9704
|
"hiddenAliases": [],
|
|
9756
|
-
"id": "
|
|
9705
|
+
"id": "update:revert-update-rollout",
|
|
9757
9706
|
"pluginAlias": "eas-cli",
|
|
9758
9707
|
"pluginName": "eas-cli",
|
|
9759
9708
|
"pluginType": "core",
|
|
@@ -9800,43 +9749,94 @@
|
|
|
9800
9749
|
}
|
|
9801
9750
|
},
|
|
9802
9751
|
"contextDefinition": {
|
|
9803
|
-
"
|
|
9804
|
-
"
|
|
9752
|
+
"loggedIn": {},
|
|
9753
|
+
"privateProjectConfig": {},
|
|
9754
|
+
"vcsClient": {}
|
|
9805
9755
|
},
|
|
9806
9756
|
"isESM": false,
|
|
9807
9757
|
"relativePath": [
|
|
9808
9758
|
"build",
|
|
9809
9759
|
"commands",
|
|
9810
|
-
"
|
|
9811
|
-
"
|
|
9760
|
+
"update",
|
|
9761
|
+
"revert-update-rollout.js"
|
|
9812
9762
|
]
|
|
9813
9763
|
},
|
|
9814
|
-
"
|
|
9764
|
+
"update:roll-back-to-embedded": {
|
|
9815
9765
|
"aliases": [],
|
|
9816
9766
|
"args": {},
|
|
9817
|
-
"description": "
|
|
9767
|
+
"description": "roll back to the embedded update",
|
|
9818
9768
|
"flags": {
|
|
9819
|
-
"
|
|
9820
|
-
"description": "
|
|
9821
|
-
"name": "
|
|
9769
|
+
"branch": {
|
|
9770
|
+
"description": "Branch to publish the rollback to embedded update group on",
|
|
9771
|
+
"name": "branch",
|
|
9772
|
+
"required": false,
|
|
9773
|
+
"hasDynamicHelp": false,
|
|
9774
|
+
"multiple": false,
|
|
9775
|
+
"type": "option"
|
|
9776
|
+
},
|
|
9777
|
+
"channel": {
|
|
9778
|
+
"description": "Channel that the published rollback to embedded update should affect",
|
|
9779
|
+
"name": "channel",
|
|
9780
|
+
"required": false,
|
|
9781
|
+
"hasDynamicHelp": false,
|
|
9782
|
+
"multiple": false,
|
|
9783
|
+
"type": "option"
|
|
9784
|
+
},
|
|
9785
|
+
"runtime-version": {
|
|
9786
|
+
"description": "Runtime version that the rollback to embedded update should target",
|
|
9787
|
+
"name": "runtime-version",
|
|
9788
|
+
"required": false,
|
|
9789
|
+
"hasDynamicHelp": false,
|
|
9790
|
+
"multiple": false,
|
|
9791
|
+
"type": "option"
|
|
9792
|
+
},
|
|
9793
|
+
"message": {
|
|
9794
|
+
"description": "A short message describing the rollback to embedded update",
|
|
9795
|
+
"name": "message",
|
|
9796
|
+
"required": false,
|
|
9797
|
+
"hasDynamicHelp": false,
|
|
9798
|
+
"multiple": false,
|
|
9799
|
+
"type": "option"
|
|
9800
|
+
},
|
|
9801
|
+
"platform": {
|
|
9802
|
+
"char": "p",
|
|
9803
|
+
"name": "platform",
|
|
9804
|
+
"required": false,
|
|
9805
|
+
"default": "all",
|
|
9822
9806
|
"hasDynamicHelp": false,
|
|
9823
9807
|
"multiple": false,
|
|
9824
9808
|
"options": [
|
|
9825
|
-
"
|
|
9826
|
-
"
|
|
9809
|
+
"android",
|
|
9810
|
+
"ios",
|
|
9811
|
+
"all"
|
|
9827
9812
|
],
|
|
9828
9813
|
"type": "option"
|
|
9829
9814
|
},
|
|
9815
|
+
"private-key-path": {
|
|
9816
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9817
|
+
"name": "private-key-path",
|
|
9818
|
+
"required": false,
|
|
9819
|
+
"hasDynamicHelp": false,
|
|
9820
|
+
"multiple": false,
|
|
9821
|
+
"type": "option"
|
|
9822
|
+
},
|
|
9830
9823
|
"json": {
|
|
9831
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9824
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9832
9825
|
"name": "json",
|
|
9833
9826
|
"allowNo": false,
|
|
9834
9827
|
"type": "boolean"
|
|
9828
|
+
},
|
|
9829
|
+
"non-interactive": {
|
|
9830
|
+
"description": "Run the command in non-interactive mode.",
|
|
9831
|
+
"name": "non-interactive",
|
|
9832
|
+
"noCacheDefault": true,
|
|
9833
|
+
"allowNo": false,
|
|
9834
|
+
"type": "boolean"
|
|
9835
9835
|
}
|
|
9836
9836
|
},
|
|
9837
9837
|
"hasDynamicHelp": false,
|
|
9838
9838
|
"hiddenAliases": [],
|
|
9839
|
-
"id": "
|
|
9839
|
+
"id": "update:roll-back-to-embedded",
|
|
9840
9840
|
"pluginAlias": "eas-cli",
|
|
9841
9841
|
"pluginName": "eas-cli",
|
|
9842
9842
|
"pluginType": "core",
|
|
@@ -9883,66 +9883,36 @@
|
|
|
9883
9883
|
}
|
|
9884
9884
|
},
|
|
9885
9885
|
"contextDefinition": {
|
|
9886
|
-
"
|
|
9887
|
-
"
|
|
9886
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9887
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9888
|
+
"loggedIn": {},
|
|
9889
|
+
"vcsClient": {}
|
|
9888
9890
|
},
|
|
9889
9891
|
"isESM": false,
|
|
9890
9892
|
"relativePath": [
|
|
9891
9893
|
"build",
|
|
9892
9894
|
"commands",
|
|
9893
|
-
"
|
|
9894
|
-
"
|
|
9895
|
+
"update",
|
|
9896
|
+
"roll-back-to-embedded.js"
|
|
9895
9897
|
]
|
|
9896
9898
|
},
|
|
9897
|
-
"
|
|
9899
|
+
"update:rollback": {
|
|
9898
9900
|
"aliases": [],
|
|
9899
9901
|
"args": {},
|
|
9900
|
-
"description": "update
|
|
9902
|
+
"description": "Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute \"eas update:republish\" or \"eas update:roll-back-to-embedded\".",
|
|
9901
9903
|
"flags": {
|
|
9902
|
-
"
|
|
9903
|
-
"description": "
|
|
9904
|
-
"name": "
|
|
9905
|
-
"required":
|
|
9906
|
-
"hasDynamicHelp": false,
|
|
9907
|
-
"multiple": false,
|
|
9908
|
-
"type": "option"
|
|
9909
|
-
},
|
|
9910
|
-
"event": {
|
|
9911
|
-
"description": "Event type that triggers the webhook",
|
|
9912
|
-
"name": "event",
|
|
9913
|
-
"hasDynamicHelp": false,
|
|
9914
|
-
"multiple": false,
|
|
9915
|
-
"options": [
|
|
9916
|
-
"BUILD",
|
|
9917
|
-
"SUBMIT"
|
|
9918
|
-
],
|
|
9919
|
-
"type": "option"
|
|
9920
|
-
},
|
|
9921
|
-
"url": {
|
|
9922
|
-
"description": "Webhook URL",
|
|
9923
|
-
"name": "url",
|
|
9924
|
-
"hasDynamicHelp": false,
|
|
9925
|
-
"multiple": false,
|
|
9926
|
-
"type": "option"
|
|
9927
|
-
},
|
|
9928
|
-
"secret": {
|
|
9929
|
-
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
9930
|
-
"name": "secret",
|
|
9904
|
+
"private-key-path": {
|
|
9905
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
9906
|
+
"name": "private-key-path",
|
|
9907
|
+
"required": false,
|
|
9931
9908
|
"hasDynamicHelp": false,
|
|
9932
9909
|
"multiple": false,
|
|
9933
9910
|
"type": "option"
|
|
9934
|
-
},
|
|
9935
|
-
"non-interactive": {
|
|
9936
|
-
"description": "Run the command in non-interactive mode.",
|
|
9937
|
-
"name": "non-interactive",
|
|
9938
|
-
"noCacheDefault": true,
|
|
9939
|
-
"allowNo": false,
|
|
9940
|
-
"type": "boolean"
|
|
9941
9911
|
}
|
|
9942
9912
|
},
|
|
9943
9913
|
"hasDynamicHelp": false,
|
|
9944
9914
|
"hiddenAliases": [],
|
|
9945
|
-
"id": "
|
|
9915
|
+
"id": "update:rollback",
|
|
9946
9916
|
"pluginAlias": "eas-cli",
|
|
9947
9917
|
"pluginName": "eas-cli",
|
|
9948
9918
|
"pluginType": "core",
|
|
@@ -9988,31 +9958,73 @@
|
|
|
9988
9958
|
"projectId": {}
|
|
9989
9959
|
}
|
|
9990
9960
|
},
|
|
9991
|
-
"contextDefinition": {
|
|
9992
|
-
"loggedIn": {}
|
|
9993
|
-
},
|
|
9961
|
+
"contextDefinition": {},
|
|
9994
9962
|
"isESM": false,
|
|
9995
9963
|
"relativePath": [
|
|
9996
9964
|
"build",
|
|
9997
9965
|
"commands",
|
|
9998
|
-
"
|
|
9999
|
-
"
|
|
9966
|
+
"update",
|
|
9967
|
+
"rollback.js"
|
|
10000
9968
|
]
|
|
10001
9969
|
},
|
|
10002
|
-
"
|
|
9970
|
+
"update:view": {
|
|
10003
9971
|
"aliases": [],
|
|
10004
9972
|
"args": {
|
|
10005
|
-
"
|
|
10006
|
-
"description": "ID of
|
|
10007
|
-
"name": "
|
|
9973
|
+
"groupId": {
|
|
9974
|
+
"description": "The ID of an update group.",
|
|
9975
|
+
"name": "groupId",
|
|
10008
9976
|
"required": true
|
|
10009
9977
|
}
|
|
10010
9978
|
},
|
|
10011
|
-
"description": "
|
|
10012
|
-
"flags": {
|
|
9979
|
+
"description": "update group details",
|
|
9980
|
+
"flags": {
|
|
9981
|
+
"insights": {
|
|
9982
|
+
"description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
|
|
9983
|
+
"name": "insights",
|
|
9984
|
+
"allowNo": false,
|
|
9985
|
+
"type": "boolean"
|
|
9986
|
+
},
|
|
9987
|
+
"days": {
|
|
9988
|
+
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
9989
|
+
"exclusive": [
|
|
9990
|
+
"start",
|
|
9991
|
+
"end"
|
|
9992
|
+
],
|
|
9993
|
+
"name": "days",
|
|
9994
|
+
"hasDynamicHelp": false,
|
|
9995
|
+
"multiple": false,
|
|
9996
|
+
"type": "option"
|
|
9997
|
+
},
|
|
9998
|
+
"start": {
|
|
9999
|
+
"description": "Start of insights time range (ISO date). Only used with --insights.",
|
|
10000
|
+
"exclusive": [
|
|
10001
|
+
"days"
|
|
10002
|
+
],
|
|
10003
|
+
"name": "start",
|
|
10004
|
+
"hasDynamicHelp": false,
|
|
10005
|
+
"multiple": false,
|
|
10006
|
+
"type": "option"
|
|
10007
|
+
},
|
|
10008
|
+
"end": {
|
|
10009
|
+
"description": "End of insights time range (ISO date). Only used with --insights.",
|
|
10010
|
+
"exclusive": [
|
|
10011
|
+
"days"
|
|
10012
|
+
],
|
|
10013
|
+
"name": "end",
|
|
10014
|
+
"hasDynamicHelp": false,
|
|
10015
|
+
"multiple": false,
|
|
10016
|
+
"type": "option"
|
|
10017
|
+
},
|
|
10018
|
+
"json": {
|
|
10019
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10020
|
+
"name": "json",
|
|
10021
|
+
"allowNo": false,
|
|
10022
|
+
"type": "boolean"
|
|
10023
|
+
}
|
|
10024
|
+
},
|
|
10013
10025
|
"hasDynamicHelp": false,
|
|
10014
10026
|
"hiddenAliases": [],
|
|
10015
|
-
"id": "
|
|
10027
|
+
"id": "update:view",
|
|
10016
10028
|
"pluginAlias": "eas-cli",
|
|
10017
10029
|
"pluginName": "eas-cli",
|
|
10018
10030
|
"pluginType": "core",
|
|
@@ -10065,7 +10077,7 @@
|
|
|
10065
10077
|
"relativePath": [
|
|
10066
10078
|
"build",
|
|
10067
10079
|
"commands",
|
|
10068
|
-
"
|
|
10080
|
+
"update",
|
|
10069
10081
|
"view.js"
|
|
10070
10082
|
]
|
|
10071
10083
|
},
|
|
@@ -12170,5 +12182,5 @@
|
|
|
12170
12182
|
]
|
|
12171
12183
|
}
|
|
12172
12184
|
},
|
|
12173
|
-
"version": "19.0
|
|
12185
|
+
"version": "19.1.0"
|
|
12174
12186
|
}
|