eas-cli 19.0.7 → 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/commands/go.d.ts +1 -0
- package/build/commands/go.js +23 -3
- 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 +908 -896
- 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,
|
|
@@ -7771,101 +7783,6 @@
|
|
|
7771
7783
|
"push.js"
|
|
7772
7784
|
]
|
|
7773
7785
|
},
|
|
7774
|
-
"submit:internal": {
|
|
7775
|
-
"aliases": [],
|
|
7776
|
-
"args": {},
|
|
7777
|
-
"flags": {
|
|
7778
|
-
"platform": {
|
|
7779
|
-
"name": "platform",
|
|
7780
|
-
"required": true,
|
|
7781
|
-
"hasDynamicHelp": false,
|
|
7782
|
-
"multiple": false,
|
|
7783
|
-
"options": [
|
|
7784
|
-
"android",
|
|
7785
|
-
"ios"
|
|
7786
|
-
],
|
|
7787
|
-
"type": "option"
|
|
7788
|
-
},
|
|
7789
|
-
"profile": {
|
|
7790
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7791
|
-
"name": "profile",
|
|
7792
|
-
"hasDynamicHelp": false,
|
|
7793
|
-
"multiple": false,
|
|
7794
|
-
"type": "option"
|
|
7795
|
-
},
|
|
7796
|
-
"id": {
|
|
7797
|
-
"description": "ID of the build to submit",
|
|
7798
|
-
"name": "id",
|
|
7799
|
-
"required": true,
|
|
7800
|
-
"hasDynamicHelp": false,
|
|
7801
|
-
"multiple": false,
|
|
7802
|
-
"type": "option"
|
|
7803
|
-
}
|
|
7804
|
-
},
|
|
7805
|
-
"hasDynamicHelp": false,
|
|
7806
|
-
"hidden": true,
|
|
7807
|
-
"hiddenAliases": [],
|
|
7808
|
-
"id": "submit:internal",
|
|
7809
|
-
"pluginAlias": "eas-cli",
|
|
7810
|
-
"pluginName": "eas-cli",
|
|
7811
|
-
"pluginType": "core",
|
|
7812
|
-
"strict": true,
|
|
7813
|
-
"enableJsonFlag": false,
|
|
7814
|
-
"ContextOptions": {
|
|
7815
|
-
"LoggedIn": {
|
|
7816
|
-
"loggedIn": {}
|
|
7817
|
-
},
|
|
7818
|
-
"MaybeLoggedIn": {
|
|
7819
|
-
"maybeLoggedIn": {}
|
|
7820
|
-
},
|
|
7821
|
-
"DynamicLoggedIn": {
|
|
7822
|
-
"getDynamicLoggedInAsync": {}
|
|
7823
|
-
},
|
|
7824
|
-
"SessionManagment": {
|
|
7825
|
-
"sessionManager": {}
|
|
7826
|
-
},
|
|
7827
|
-
"OptionalProjectConfig": {
|
|
7828
|
-
"optionalPrivateProjectConfig": {}
|
|
7829
|
-
},
|
|
7830
|
-
"ProjectDir": {
|
|
7831
|
-
"projectDir": {}
|
|
7832
|
-
},
|
|
7833
|
-
"DynamicProjectConfig": {
|
|
7834
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
7835
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
7836
|
-
},
|
|
7837
|
-
"ProjectConfig": {
|
|
7838
|
-
"loggedIn": {},
|
|
7839
|
-
"privateProjectConfig": {}
|
|
7840
|
-
},
|
|
7841
|
-
"Analytics": {
|
|
7842
|
-
"analytics": {}
|
|
7843
|
-
},
|
|
7844
|
-
"Vcs": {
|
|
7845
|
-
"vcsClient": {}
|
|
7846
|
-
},
|
|
7847
|
-
"ServerSideEnvironmentVariables": {
|
|
7848
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
7849
|
-
},
|
|
7850
|
-
"ProjectId": {
|
|
7851
|
-
"projectId": {}
|
|
7852
|
-
}
|
|
7853
|
-
},
|
|
7854
|
-
"contextDefinition": {
|
|
7855
|
-
"loggedIn": {},
|
|
7856
|
-
"privateProjectConfig": {},
|
|
7857
|
-
"projectDir": {},
|
|
7858
|
-
"analytics": {},
|
|
7859
|
-
"vcsClient": {}
|
|
7860
|
-
},
|
|
7861
|
-
"isESM": false,
|
|
7862
|
-
"relativePath": [
|
|
7863
|
-
"build",
|
|
7864
|
-
"commands",
|
|
7865
|
-
"submit",
|
|
7866
|
-
"internal.js"
|
|
7867
|
-
]
|
|
7868
|
-
},
|
|
7869
7786
|
"simulator:get": {
|
|
7870
7787
|
"aliases": [],
|
|
7871
7788
|
"args": {},
|
|
@@ -8282,6 +8199,101 @@
|
|
|
8282
8199
|
"stop.js"
|
|
8283
8200
|
]
|
|
8284
8201
|
},
|
|
8202
|
+
"submit:internal": {
|
|
8203
|
+
"aliases": [],
|
|
8204
|
+
"args": {},
|
|
8205
|
+
"flags": {
|
|
8206
|
+
"platform": {
|
|
8207
|
+
"name": "platform",
|
|
8208
|
+
"required": true,
|
|
8209
|
+
"hasDynamicHelp": false,
|
|
8210
|
+
"multiple": false,
|
|
8211
|
+
"options": [
|
|
8212
|
+
"android",
|
|
8213
|
+
"ios"
|
|
8214
|
+
],
|
|
8215
|
+
"type": "option"
|
|
8216
|
+
},
|
|
8217
|
+
"profile": {
|
|
8218
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
8219
|
+
"name": "profile",
|
|
8220
|
+
"hasDynamicHelp": false,
|
|
8221
|
+
"multiple": false,
|
|
8222
|
+
"type": "option"
|
|
8223
|
+
},
|
|
8224
|
+
"id": {
|
|
8225
|
+
"description": "ID of the build to submit",
|
|
8226
|
+
"name": "id",
|
|
8227
|
+
"required": true,
|
|
8228
|
+
"hasDynamicHelp": false,
|
|
8229
|
+
"multiple": false,
|
|
8230
|
+
"type": "option"
|
|
8231
|
+
}
|
|
8232
|
+
},
|
|
8233
|
+
"hasDynamicHelp": false,
|
|
8234
|
+
"hidden": true,
|
|
8235
|
+
"hiddenAliases": [],
|
|
8236
|
+
"id": "submit:internal",
|
|
8237
|
+
"pluginAlias": "eas-cli",
|
|
8238
|
+
"pluginName": "eas-cli",
|
|
8239
|
+
"pluginType": "core",
|
|
8240
|
+
"strict": true,
|
|
8241
|
+
"enableJsonFlag": false,
|
|
8242
|
+
"ContextOptions": {
|
|
8243
|
+
"LoggedIn": {
|
|
8244
|
+
"loggedIn": {}
|
|
8245
|
+
},
|
|
8246
|
+
"MaybeLoggedIn": {
|
|
8247
|
+
"maybeLoggedIn": {}
|
|
8248
|
+
},
|
|
8249
|
+
"DynamicLoggedIn": {
|
|
8250
|
+
"getDynamicLoggedInAsync": {}
|
|
8251
|
+
},
|
|
8252
|
+
"SessionManagment": {
|
|
8253
|
+
"sessionManager": {}
|
|
8254
|
+
},
|
|
8255
|
+
"OptionalProjectConfig": {
|
|
8256
|
+
"optionalPrivateProjectConfig": {}
|
|
8257
|
+
},
|
|
8258
|
+
"ProjectDir": {
|
|
8259
|
+
"projectDir": {}
|
|
8260
|
+
},
|
|
8261
|
+
"DynamicProjectConfig": {
|
|
8262
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
8263
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
8264
|
+
},
|
|
8265
|
+
"ProjectConfig": {
|
|
8266
|
+
"loggedIn": {},
|
|
8267
|
+
"privateProjectConfig": {}
|
|
8268
|
+
},
|
|
8269
|
+
"Analytics": {
|
|
8270
|
+
"analytics": {}
|
|
8271
|
+
},
|
|
8272
|
+
"Vcs": {
|
|
8273
|
+
"vcsClient": {}
|
|
8274
|
+
},
|
|
8275
|
+
"ServerSideEnvironmentVariables": {
|
|
8276
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
8277
|
+
},
|
|
8278
|
+
"ProjectId": {
|
|
8279
|
+
"projectId": {}
|
|
8280
|
+
}
|
|
8281
|
+
},
|
|
8282
|
+
"contextDefinition": {
|
|
8283
|
+
"loggedIn": {},
|
|
8284
|
+
"privateProjectConfig": {},
|
|
8285
|
+
"projectDir": {},
|
|
8286
|
+
"analytics": {},
|
|
8287
|
+
"vcsClient": {}
|
|
8288
|
+
},
|
|
8289
|
+
"isESM": false,
|
|
8290
|
+
"relativePath": [
|
|
8291
|
+
"build",
|
|
8292
|
+
"commands",
|
|
8293
|
+
"submit",
|
|
8294
|
+
"internal.js"
|
|
8295
|
+
]
|
|
8296
|
+
},
|
|
8285
8297
|
"webhook:create": {
|
|
8286
8298
|
"aliases": [],
|
|
8287
8299
|
"args": {},
|
|
@@ -8717,11 +8729,33 @@
|
|
|
8717
8729
|
"view.js"
|
|
8718
8730
|
]
|
|
8719
8731
|
},
|
|
8720
|
-
"
|
|
8732
|
+
"update:configure": {
|
|
8721
8733
|
"aliases": [],
|
|
8722
8734
|
"args": {},
|
|
8723
|
-
"description": "
|
|
8735
|
+
"description": "configure the project to support EAS Update",
|
|
8724
8736
|
"flags": {
|
|
8737
|
+
"platform": {
|
|
8738
|
+
"char": "p",
|
|
8739
|
+
"description": "Platform to configure",
|
|
8740
|
+
"name": "platform",
|
|
8741
|
+
"default": "all",
|
|
8742
|
+
"hasDynamicHelp": false,
|
|
8743
|
+
"multiple": false,
|
|
8744
|
+
"options": [
|
|
8745
|
+
"android",
|
|
8746
|
+
"ios",
|
|
8747
|
+
"all"
|
|
8748
|
+
],
|
|
8749
|
+
"type": "option"
|
|
8750
|
+
},
|
|
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,
|
|
8755
|
+
"hasDynamicHelp": false,
|
|
8756
|
+
"multiple": false,
|
|
8757
|
+
"type": "option"
|
|
8758
|
+
},
|
|
8725
8759
|
"non-interactive": {
|
|
8726
8760
|
"description": "Run the command in non-interactive mode.",
|
|
8727
8761
|
"name": "non-interactive",
|
|
@@ -8732,11 +8766,11 @@
|
|
|
8732
8766
|
},
|
|
8733
8767
|
"hasDynamicHelp": false,
|
|
8734
8768
|
"hiddenAliases": [],
|
|
8735
|
-
"id": "
|
|
8769
|
+
"id": "update:configure",
|
|
8736
8770
|
"pluginAlias": "eas-cli",
|
|
8737
8771
|
"pluginName": "eas-cli",
|
|
8738
8772
|
"pluginType": "core",
|
|
8739
|
-
"strict":
|
|
8773
|
+
"strict": true,
|
|
8740
8774
|
"enableJsonFlag": false,
|
|
8741
8775
|
"ContextOptions": {
|
|
8742
8776
|
"LoggedIn": {
|
|
@@ -8779,38 +8813,46 @@
|
|
|
8779
8813
|
}
|
|
8780
8814
|
},
|
|
8781
8815
|
"contextDefinition": {
|
|
8782
|
-
"
|
|
8783
|
-
"
|
|
8816
|
+
"loggedIn": {},
|
|
8817
|
+
"privateProjectConfig": {},
|
|
8818
|
+
"vcsClient": {}
|
|
8784
8819
|
},
|
|
8785
8820
|
"isESM": false,
|
|
8786
8821
|
"relativePath": [
|
|
8787
8822
|
"build",
|
|
8788
8823
|
"commands",
|
|
8789
|
-
"
|
|
8790
|
-
"
|
|
8824
|
+
"update",
|
|
8825
|
+
"configure.js"
|
|
8791
8826
|
]
|
|
8792
8827
|
},
|
|
8793
|
-
"
|
|
8828
|
+
"update:delete": {
|
|
8794
8829
|
"aliases": [],
|
|
8795
8830
|
"args": {
|
|
8796
|
-
"
|
|
8797
|
-
"description": "
|
|
8798
|
-
"name": "
|
|
8799
|
-
"required":
|
|
8831
|
+
"groupId": {
|
|
8832
|
+
"description": "The ID of an update group to delete.",
|
|
8833
|
+
"name": "groupId",
|
|
8834
|
+
"required": true
|
|
8800
8835
|
}
|
|
8801
8836
|
},
|
|
8802
|
-
"description": "
|
|
8837
|
+
"description": "delete all the updates in an update group",
|
|
8803
8838
|
"flags": {
|
|
8804
|
-
"
|
|
8805
|
-
"description": "
|
|
8806
|
-
"name": "
|
|
8839
|
+
"json": {
|
|
8840
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8841
|
+
"name": "json",
|
|
8807
8842
|
"allowNo": false,
|
|
8808
8843
|
"type": "boolean"
|
|
8809
|
-
}
|
|
8810
|
-
|
|
8811
|
-
|
|
8844
|
+
},
|
|
8845
|
+
"non-interactive": {
|
|
8846
|
+
"description": "Run the command in non-interactive mode.",
|
|
8847
|
+
"name": "non-interactive",
|
|
8848
|
+
"noCacheDefault": true,
|
|
8849
|
+
"allowNo": false,
|
|
8850
|
+
"type": "boolean"
|
|
8851
|
+
}
|
|
8852
|
+
},
|
|
8853
|
+
"hasDynamicHelp": false,
|
|
8812
8854
|
"hiddenAliases": [],
|
|
8813
|
-
"id": "
|
|
8855
|
+
"id": "update:delete",
|
|
8814
8856
|
"pluginAlias": "eas-cli",
|
|
8815
8857
|
"pluginName": "eas-cli",
|
|
8816
8858
|
"pluginType": "core",
|
|
@@ -8857,35 +8899,58 @@
|
|
|
8857
8899
|
}
|
|
8858
8900
|
},
|
|
8859
8901
|
"contextDefinition": {
|
|
8860
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
8861
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
8862
|
-
"projectDir": {},
|
|
8863
8902
|
"loggedIn": {}
|
|
8864
8903
|
},
|
|
8865
8904
|
"isESM": false,
|
|
8866
8905
|
"relativePath": [
|
|
8867
8906
|
"build",
|
|
8868
8907
|
"commands",
|
|
8869
|
-
"
|
|
8870
|
-
"
|
|
8908
|
+
"update",
|
|
8909
|
+
"delete.js"
|
|
8871
8910
|
]
|
|
8872
8911
|
},
|
|
8873
|
-
"
|
|
8912
|
+
"update:edit": {
|
|
8874
8913
|
"aliases": [],
|
|
8875
|
-
"args": {
|
|
8876
|
-
|
|
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",
|
|
8877
8921
|
"flags": {
|
|
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",
|
|
8925
|
+
"required": false,
|
|
8926
|
+
"hasDynamicHelp": false,
|
|
8927
|
+
"multiple": false,
|
|
8928
|
+
"type": "option"
|
|
8929
|
+
},
|
|
8930
|
+
"branch": {
|
|
8931
|
+
"description": "Branch for which to list updates to select from",
|
|
8932
|
+
"name": "branch",
|
|
8933
|
+
"hasDynamicHelp": false,
|
|
8934
|
+
"multiple": false,
|
|
8935
|
+
"type": "option"
|
|
8936
|
+
},
|
|
8878
8937
|
"json": {
|
|
8879
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
8938
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8880
8939
|
"name": "json",
|
|
8881
8940
|
"allowNo": false,
|
|
8882
8941
|
"type": "boolean"
|
|
8942
|
+
},
|
|
8943
|
+
"non-interactive": {
|
|
8944
|
+
"description": "Run the command in non-interactive mode.",
|
|
8945
|
+
"name": "non-interactive",
|
|
8946
|
+
"noCacheDefault": true,
|
|
8947
|
+
"allowNo": false,
|
|
8948
|
+
"type": "boolean"
|
|
8883
8949
|
}
|
|
8884
8950
|
},
|
|
8885
8951
|
"hasDynamicHelp": false,
|
|
8886
|
-
"hidden": true,
|
|
8887
8952
|
"hiddenAliases": [],
|
|
8888
|
-
"id": "
|
|
8953
|
+
"id": "update:edit",
|
|
8889
8954
|
"pluginAlias": "eas-cli",
|
|
8890
8955
|
"pluginName": "eas-cli",
|
|
8891
8956
|
"pluginType": "core",
|
|
@@ -8939,22 +9004,129 @@
|
|
|
8939
9004
|
"relativePath": [
|
|
8940
9005
|
"build",
|
|
8941
9006
|
"commands",
|
|
8942
|
-
"
|
|
8943
|
-
"
|
|
9007
|
+
"update",
|
|
9008
|
+
"edit.js"
|
|
8944
9009
|
]
|
|
8945
9010
|
},
|
|
8946
|
-
"
|
|
9011
|
+
"update": {
|
|
8947
9012
|
"aliases": [],
|
|
8948
|
-
"args": {
|
|
8949
|
-
|
|
8950
|
-
"description": "ID of the workflow run or workflow job to view logs for",
|
|
8951
|
-
"name": "id"
|
|
8952
|
-
}
|
|
8953
|
-
},
|
|
8954
|
-
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
9013
|
+
"args": {},
|
|
9014
|
+
"description": "publish an update group",
|
|
8955
9015
|
"flags": {
|
|
9016
|
+
"branch": {
|
|
9017
|
+
"description": "Branch to publish the update group on",
|
|
9018
|
+
"name": "branch",
|
|
9019
|
+
"required": false,
|
|
9020
|
+
"hasDynamicHelp": false,
|
|
9021
|
+
"multiple": false,
|
|
9022
|
+
"type": "option"
|
|
9023
|
+
},
|
|
9024
|
+
"channel": {
|
|
9025
|
+
"description": "Channel that the published update should affect",
|
|
9026
|
+
"name": "channel",
|
|
9027
|
+
"required": false,
|
|
9028
|
+
"hasDynamicHelp": false,
|
|
9029
|
+
"multiple": false,
|
|
9030
|
+
"type": "option"
|
|
9031
|
+
},
|
|
9032
|
+
"message": {
|
|
9033
|
+
"char": "m",
|
|
9034
|
+
"description": "A short message describing the update",
|
|
9035
|
+
"name": "message",
|
|
9036
|
+
"required": false,
|
|
9037
|
+
"hasDynamicHelp": false,
|
|
9038
|
+
"multiple": false,
|
|
9039
|
+
"type": "option"
|
|
9040
|
+
},
|
|
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",
|
|
9087
|
+
"required": false,
|
|
9088
|
+
"hasDynamicHelp": false,
|
|
9089
|
+
"multiple": false,
|
|
9090
|
+
"type": "option"
|
|
9091
|
+
},
|
|
9092
|
+
"platform": {
|
|
9093
|
+
"char": "p",
|
|
9094
|
+
"name": "platform",
|
|
9095
|
+
"required": false,
|
|
9096
|
+
"default": "all",
|
|
9097
|
+
"hasDynamicHelp": false,
|
|
9098
|
+
"multiple": false,
|
|
9099
|
+
"options": [
|
|
9100
|
+
"android",
|
|
9101
|
+
"ios",
|
|
9102
|
+
"all"
|
|
9103
|
+
],
|
|
9104
|
+
"type": "option"
|
|
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
|
+
},
|
|
9112
|
+
"private-key-path": {
|
|
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/",
|
|
9114
|
+
"name": "private-key-path",
|
|
9115
|
+
"required": false,
|
|
9116
|
+
"hasDynamicHelp": false,
|
|
9117
|
+
"multiple": false,
|
|
9118
|
+
"type": "option"
|
|
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
|
+
},
|
|
8956
9128
|
"json": {
|
|
8957
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9129
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8958
9130
|
"name": "json",
|
|
8959
9131
|
"allowNo": false,
|
|
8960
9132
|
"type": "boolean"
|
|
@@ -8965,17 +9137,11 @@
|
|
|
8965
9137
|
"noCacheDefault": true,
|
|
8966
9138
|
"allowNo": false,
|
|
8967
9139
|
"type": "boolean"
|
|
8968
|
-
},
|
|
8969
|
-
"all-steps": {
|
|
8970
|
-
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
8971
|
-
"name": "all-steps",
|
|
8972
|
-
"allowNo": false,
|
|
8973
|
-
"type": "boolean"
|
|
8974
9140
|
}
|
|
8975
9141
|
},
|
|
8976
9142
|
"hasDynamicHelp": false,
|
|
8977
9143
|
"hiddenAliases": [],
|
|
8978
|
-
"id": "
|
|
9144
|
+
"id": "update",
|
|
8979
9145
|
"pluginAlias": "eas-cli",
|
|
8980
9146
|
"pluginName": "eas-cli",
|
|
8981
9147
|
"pluginType": "core",
|
|
@@ -9022,73 +9188,90 @@
|
|
|
9022
9188
|
}
|
|
9023
9189
|
},
|
|
9024
9190
|
"contextDefinition": {
|
|
9025
|
-
"
|
|
9026
|
-
"
|
|
9191
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9192
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9193
|
+
"loggedIn": {},
|
|
9194
|
+
"vcsClient": {},
|
|
9195
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9027
9196
|
},
|
|
9028
9197
|
"isESM": false,
|
|
9029
9198
|
"relativePath": [
|
|
9030
9199
|
"build",
|
|
9031
9200
|
"commands",
|
|
9032
|
-
"
|
|
9033
|
-
"
|
|
9201
|
+
"update",
|
|
9202
|
+
"index.js"
|
|
9034
9203
|
]
|
|
9035
9204
|
},
|
|
9036
|
-
"
|
|
9205
|
+
"update:insights": {
|
|
9037
9206
|
"aliases": [],
|
|
9038
9207
|
"args": {
|
|
9039
|
-
"
|
|
9040
|
-
"description": "
|
|
9041
|
-
"name": "
|
|
9208
|
+
"groupId": {
|
|
9209
|
+
"description": "The ID of an update group.",
|
|
9210
|
+
"name": "groupId",
|
|
9042
9211
|
"required": true
|
|
9043
9212
|
}
|
|
9044
9213
|
},
|
|
9045
|
-
"description": "
|
|
9214
|
+
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
9046
9215
|
"flags": {
|
|
9047
|
-
"
|
|
9048
|
-
"description": "
|
|
9049
|
-
"name": "
|
|
9050
|
-
"
|
|
9051
|
-
"
|
|
9052
|
-
"
|
|
9053
|
-
|
|
9054
|
-
|
|
9055
|
-
|
|
9056
|
-
"
|
|
9057
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9058
|
-
"allowNo": true,
|
|
9059
|
-
"type": "boolean"
|
|
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"
|
|
9060
9226
|
},
|
|
9061
|
-
"
|
|
9062
|
-
"
|
|
9063
|
-
|
|
9064
|
-
"
|
|
9227
|
+
"days": {
|
|
9228
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
9229
|
+
"exclusive": [
|
|
9230
|
+
"start",
|
|
9231
|
+
"end"
|
|
9065
9232
|
],
|
|
9066
|
-
"
|
|
9067
|
-
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9068
|
-
"name": "input",
|
|
9069
|
-
"summary": "Set workflow inputs",
|
|
9233
|
+
"name": "days",
|
|
9070
9234
|
"hasDynamicHelp": false,
|
|
9071
|
-
"multiple":
|
|
9235
|
+
"multiple": false,
|
|
9072
9236
|
"type": "option"
|
|
9073
9237
|
},
|
|
9074
|
-
"
|
|
9075
|
-
"description": "
|
|
9076
|
-
"
|
|
9077
|
-
|
|
9238
|
+
"start": {
|
|
9239
|
+
"description": "Start of insights time range (ISO date).",
|
|
9240
|
+
"exclusive": [
|
|
9241
|
+
"days"
|
|
9242
|
+
],
|
|
9243
|
+
"name": "start",
|
|
9244
|
+
"hasDynamicHelp": false,
|
|
9245
|
+
"multiple": false,
|
|
9246
|
+
"type": "option"
|
|
9247
|
+
},
|
|
9248
|
+
"end": {
|
|
9249
|
+
"description": "End of insights time range (ISO date).",
|
|
9250
|
+
"exclusive": [
|
|
9251
|
+
"days"
|
|
9252
|
+
],
|
|
9253
|
+
"name": "end",
|
|
9078
9254
|
"hasDynamicHelp": false,
|
|
9079
9255
|
"multiple": false,
|
|
9080
9256
|
"type": "option"
|
|
9081
9257
|
},
|
|
9082
9258
|
"json": {
|
|
9083
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9259
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9084
9260
|
"name": "json",
|
|
9085
9261
|
"allowNo": false,
|
|
9086
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"
|
|
9087
9270
|
}
|
|
9088
9271
|
},
|
|
9089
9272
|
"hasDynamicHelp": false,
|
|
9090
9273
|
"hiddenAliases": [],
|
|
9091
|
-
"id": "
|
|
9274
|
+
"id": "update:insights",
|
|
9092
9275
|
"pluginAlias": "eas-cli",
|
|
9093
9276
|
"pluginName": "eas-cli",
|
|
9094
9277
|
"pluginType": "core",
|
|
@@ -9135,66 +9318,91 @@
|
|
|
9135
9318
|
}
|
|
9136
9319
|
},
|
|
9137
9320
|
"contextDefinition": {
|
|
9138
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
9139
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
9140
|
-
"projectDir": {},
|
|
9141
|
-
"vcsClient": {},
|
|
9142
9321
|
"loggedIn": {}
|
|
9143
9322
|
},
|
|
9144
9323
|
"isESM": false,
|
|
9145
9324
|
"relativePath": [
|
|
9146
9325
|
"build",
|
|
9147
9326
|
"commands",
|
|
9148
|
-
"
|
|
9149
|
-
"
|
|
9327
|
+
"update",
|
|
9328
|
+
"insights.js"
|
|
9150
9329
|
]
|
|
9151
9330
|
},
|
|
9152
|
-
"
|
|
9331
|
+
"update:list": {
|
|
9153
9332
|
"aliases": [],
|
|
9154
9333
|
"args": {},
|
|
9155
|
-
"description": "
|
|
9334
|
+
"description": "view the recent updates",
|
|
9156
9335
|
"flags": {
|
|
9157
|
-
"
|
|
9158
|
-
"description": "
|
|
9159
|
-
"
|
|
9160
|
-
|
|
9336
|
+
"branch": {
|
|
9337
|
+
"description": "List updates only on this branch",
|
|
9338
|
+
"exclusive": [
|
|
9339
|
+
"all"
|
|
9340
|
+
],
|
|
9341
|
+
"name": "branch",
|
|
9161
9342
|
"hasDynamicHelp": false,
|
|
9162
9343
|
"multiple": false,
|
|
9163
9344
|
"type": "option"
|
|
9164
9345
|
},
|
|
9165
|
-
"
|
|
9166
|
-
"description": "
|
|
9167
|
-
"
|
|
9168
|
-
|
|
9346
|
+
"all": {
|
|
9347
|
+
"description": "List updates on all branches",
|
|
9348
|
+
"exclusive": [
|
|
9349
|
+
"branch"
|
|
9350
|
+
],
|
|
9351
|
+
"name": "all",
|
|
9352
|
+
"allowNo": false,
|
|
9353
|
+
"type": "boolean"
|
|
9354
|
+
},
|
|
9355
|
+
"platform": {
|
|
9356
|
+
"char": "p",
|
|
9357
|
+
"description": "Filter updates by platform",
|
|
9358
|
+
"name": "platform",
|
|
9169
9359
|
"hasDynamicHelp": false,
|
|
9170
9360
|
"multiple": false,
|
|
9171
9361
|
"options": [
|
|
9172
|
-
"
|
|
9173
|
-
"
|
|
9174
|
-
"
|
|
9175
|
-
"IN_PROGRESS",
|
|
9176
|
-
"NEW",
|
|
9177
|
-
"SUCCESS"
|
|
9362
|
+
"android",
|
|
9363
|
+
"ios",
|
|
9364
|
+
"all"
|
|
9178
9365
|
],
|
|
9179
9366
|
"type": "option"
|
|
9180
9367
|
},
|
|
9181
|
-
"
|
|
9182
|
-
"description": "
|
|
9183
|
-
"name": "
|
|
9184
|
-
"
|
|
9185
|
-
"
|
|
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"
|
|
9186
9381
|
},
|
|
9187
9382
|
"limit": {
|
|
9188
|
-
"description": "The number of items to fetch each query. Defaults to
|
|
9383
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
9189
9384
|
"name": "limit",
|
|
9190
9385
|
"hasDynamicHelp": false,
|
|
9191
9386
|
"multiple": false,
|
|
9192
9387
|
"type": "option"
|
|
9388
|
+
},
|
|
9389
|
+
"json": {
|
|
9390
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9391
|
+
"name": "json",
|
|
9392
|
+
"allowNo": false,
|
|
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"
|
|
9193
9401
|
}
|
|
9194
9402
|
},
|
|
9195
9403
|
"hasDynamicHelp": false,
|
|
9196
9404
|
"hiddenAliases": [],
|
|
9197
|
-
"id": "
|
|
9405
|
+
"id": "update:list",
|
|
9198
9406
|
"pluginAlias": "eas-cli",
|
|
9199
9407
|
"pluginName": "eas-cli",
|
|
9200
9408
|
"pluginType": "core",
|
|
@@ -9248,44 +9456,124 @@
|
|
|
9248
9456
|
"relativePath": [
|
|
9249
9457
|
"build",
|
|
9250
9458
|
"commands",
|
|
9251
|
-
"
|
|
9252
|
-
"
|
|
9459
|
+
"update",
|
|
9460
|
+
"list.js"
|
|
9253
9461
|
]
|
|
9254
9462
|
},
|
|
9255
|
-
"
|
|
9463
|
+
"update:republish": {
|
|
9256
9464
|
"aliases": [],
|
|
9257
|
-
"args": {
|
|
9258
|
-
|
|
9259
|
-
"description": "A workflow run ID.",
|
|
9260
|
-
"name": "WORKFLOW_RUN_ID"
|
|
9261
|
-
}
|
|
9262
|
-
},
|
|
9263
|
-
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
9465
|
+
"args": {},
|
|
9466
|
+
"description": "roll back to an existing update",
|
|
9264
9467
|
"flags": {
|
|
9265
|
-
"
|
|
9266
|
-
"description": "
|
|
9267
|
-
"
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
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"
|
|
9271
9478
|
},
|
|
9272
|
-
"
|
|
9273
|
-
"description": "
|
|
9274
|
-
"
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
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",
|
|
9535
|
+
"hasDynamicHelp": false,
|
|
9536
|
+
"multiple": false,
|
|
9537
|
+
"options": [
|
|
9538
|
+
"android",
|
|
9539
|
+
"ios",
|
|
9540
|
+
"all"
|
|
9541
|
+
],
|
|
9542
|
+
"type": "option"
|
|
9543
|
+
},
|
|
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,
|
|
9548
|
+
"hasDynamicHelp": false,
|
|
9549
|
+
"multiple": false,
|
|
9550
|
+
"type": "option"
|
|
9551
|
+
},
|
|
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,
|
|
9556
|
+
"hasDynamicHelp": false,
|
|
9557
|
+
"multiple": false,
|
|
9558
|
+
"type": "option"
|
|
9278
9559
|
},
|
|
9279
9560
|
"json": {
|
|
9280
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9561
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9281
9562
|
"name": "json",
|
|
9282
9563
|
"allowNo": false,
|
|
9283
9564
|
"type": "boolean"
|
|
9565
|
+
},
|
|
9566
|
+
"non-interactive": {
|
|
9567
|
+
"description": "Run the command in non-interactive mode.",
|
|
9568
|
+
"name": "non-interactive",
|
|
9569
|
+
"noCacheDefault": true,
|
|
9570
|
+
"allowNo": false,
|
|
9571
|
+
"type": "boolean"
|
|
9284
9572
|
}
|
|
9285
9573
|
},
|
|
9286
9574
|
"hasDynamicHelp": false,
|
|
9287
9575
|
"hiddenAliases": [],
|
|
9288
|
-
"id": "
|
|
9576
|
+
"id": "update:republish",
|
|
9289
9577
|
"pluginAlias": "eas-cli",
|
|
9290
9578
|
"pluginName": "eas-cli",
|
|
9291
9579
|
"pluginType": "core",
|
|
@@ -9332,31 +9620,78 @@
|
|
|
9332
9620
|
}
|
|
9333
9621
|
},
|
|
9334
9622
|
"contextDefinition": {
|
|
9335
|
-
"
|
|
9336
|
-
"
|
|
9337
|
-
"projectDir": {},
|
|
9338
|
-
"vcsClient": {},
|
|
9339
|
-
"loggedIn": {}
|
|
9623
|
+
"loggedIn": {},
|
|
9624
|
+
"privateProjectConfig": {}
|
|
9340
9625
|
},
|
|
9341
9626
|
"isESM": false,
|
|
9342
9627
|
"relativePath": [
|
|
9343
9628
|
"build",
|
|
9344
9629
|
"commands",
|
|
9345
|
-
"
|
|
9346
|
-
"
|
|
9630
|
+
"update",
|
|
9631
|
+
"republish.js"
|
|
9347
9632
|
]
|
|
9348
9633
|
},
|
|
9349
|
-
"
|
|
9634
|
+
"update:revert-update-rollout": {
|
|
9350
9635
|
"aliases": [],
|
|
9351
|
-
"args": {
|
|
9352
|
-
|
|
9353
|
-
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
9354
|
-
"name": "path",
|
|
9355
|
-
"required": true
|
|
9356
|
-
}
|
|
9357
|
-
},
|
|
9358
|
-
"description": "validate a workflow configuration yaml file",
|
|
9636
|
+
"args": {},
|
|
9637
|
+
"description": "revert a rollout update for a project",
|
|
9359
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"
|
|
9680
|
+
},
|
|
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"
|
|
9688
|
+
},
|
|
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"
|
|
9694
|
+
},
|
|
9360
9695
|
"non-interactive": {
|
|
9361
9696
|
"description": "Run the command in non-interactive mode.",
|
|
9362
9697
|
"name": "non-interactive",
|
|
@@ -9367,7 +9702,7 @@
|
|
|
9367
9702
|
},
|
|
9368
9703
|
"hasDynamicHelp": false,
|
|
9369
9704
|
"hiddenAliases": [],
|
|
9370
|
-
"id": "
|
|
9705
|
+
"id": "update:revert-update-rollout",
|
|
9371
9706
|
"pluginAlias": "eas-cli",
|
|
9372
9707
|
"pluginName": "eas-cli",
|
|
9373
9708
|
"pluginType": "core",
|
|
@@ -9414,32 +9749,79 @@
|
|
|
9414
9749
|
}
|
|
9415
9750
|
},
|
|
9416
9751
|
"contextDefinition": {
|
|
9417
|
-
"
|
|
9418
|
-
"
|
|
9419
|
-
"
|
|
9420
|
-
"projectId": {},
|
|
9421
|
-
"loggedIn": {}
|
|
9752
|
+
"loggedIn": {},
|
|
9753
|
+
"privateProjectConfig": {},
|
|
9754
|
+
"vcsClient": {}
|
|
9422
9755
|
},
|
|
9423
9756
|
"isESM": false,
|
|
9424
9757
|
"relativePath": [
|
|
9425
9758
|
"build",
|
|
9426
9759
|
"commands",
|
|
9427
|
-
"
|
|
9428
|
-
"
|
|
9760
|
+
"update",
|
|
9761
|
+
"revert-update-rollout.js"
|
|
9429
9762
|
]
|
|
9430
9763
|
},
|
|
9431
|
-
"
|
|
9764
|
+
"update:roll-back-to-embedded": {
|
|
9432
9765
|
"aliases": [],
|
|
9433
|
-
"args": {
|
|
9434
|
-
|
|
9435
|
-
"description": "ID of the workflow run to view",
|
|
9436
|
-
"name": "id"
|
|
9437
|
-
}
|
|
9438
|
-
},
|
|
9439
|
-
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
9766
|
+
"args": {},
|
|
9767
|
+
"description": "roll back to the embedded update",
|
|
9440
9768
|
"flags": {
|
|
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",
|
|
9806
|
+
"hasDynamicHelp": false,
|
|
9807
|
+
"multiple": false,
|
|
9808
|
+
"options": [
|
|
9809
|
+
"android",
|
|
9810
|
+
"ios",
|
|
9811
|
+
"all"
|
|
9812
|
+
],
|
|
9813
|
+
"type": "option"
|
|
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
|
+
},
|
|
9441
9823
|
"json": {
|
|
9442
|
-
"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.",
|
|
9443
9825
|
"name": "json",
|
|
9444
9826
|
"allowNo": false,
|
|
9445
9827
|
"type": "boolean"
|
|
@@ -9454,7 +9836,7 @@
|
|
|
9454
9836
|
},
|
|
9455
9837
|
"hasDynamicHelp": false,
|
|
9456
9838
|
"hiddenAliases": [],
|
|
9457
|
-
"id": "
|
|
9839
|
+
"id": "update:roll-back-to-embedded",
|
|
9458
9840
|
"pluginAlias": "eas-cli",
|
|
9459
9841
|
"pluginName": "eas-cli",
|
|
9460
9842
|
"pluginType": "core",
|
|
@@ -9501,55 +9883,36 @@
|
|
|
9501
9883
|
}
|
|
9502
9884
|
},
|
|
9503
9885
|
"contextDefinition": {
|
|
9504
|
-
"
|
|
9505
|
-
"
|
|
9886
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9887
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9888
|
+
"loggedIn": {},
|
|
9889
|
+
"vcsClient": {}
|
|
9506
9890
|
},
|
|
9507
9891
|
"isESM": false,
|
|
9508
9892
|
"relativePath": [
|
|
9509
9893
|
"build",
|
|
9510
9894
|
"commands",
|
|
9511
|
-
"
|
|
9512
|
-
"
|
|
9895
|
+
"update",
|
|
9896
|
+
"roll-back-to-embedded.js"
|
|
9513
9897
|
]
|
|
9514
9898
|
},
|
|
9515
|
-
"update:
|
|
9899
|
+
"update:rollback": {
|
|
9516
9900
|
"aliases": [],
|
|
9517
9901
|
"args": {},
|
|
9518
|
-
"description": "
|
|
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\".",
|
|
9519
9903
|
"flags": {
|
|
9520
|
-
"
|
|
9521
|
-
"
|
|
9522
|
-
"
|
|
9523
|
-
"name": "platform",
|
|
9524
|
-
"default": "all",
|
|
9525
|
-
"hasDynamicHelp": false,
|
|
9526
|
-
"multiple": false,
|
|
9527
|
-
"options": [
|
|
9528
|
-
"android",
|
|
9529
|
-
"ios",
|
|
9530
|
-
"all"
|
|
9531
|
-
],
|
|
9532
|
-
"type": "option"
|
|
9533
|
-
},
|
|
9534
|
-
"environment": {
|
|
9535
|
-
"description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
|
|
9536
|
-
"name": "environment",
|
|
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",
|
|
9537
9907
|
"required": false,
|
|
9538
9908
|
"hasDynamicHelp": false,
|
|
9539
9909
|
"multiple": false,
|
|
9540
9910
|
"type": "option"
|
|
9541
|
-
},
|
|
9542
|
-
"non-interactive": {
|
|
9543
|
-
"description": "Run the command in non-interactive mode.",
|
|
9544
|
-
"name": "non-interactive",
|
|
9545
|
-
"noCacheDefault": true,
|
|
9546
|
-
"allowNo": false,
|
|
9547
|
-
"type": "boolean"
|
|
9548
9911
|
}
|
|
9549
9912
|
},
|
|
9550
9913
|
"hasDynamicHelp": false,
|
|
9551
9914
|
"hiddenAliases": [],
|
|
9552
|
-
"id": "update:
|
|
9915
|
+
"id": "update:rollback",
|
|
9553
9916
|
"pluginAlias": "eas-cli",
|
|
9554
9917
|
"pluginName": "eas-cli",
|
|
9555
9918
|
"pluginType": "core",
|
|
@@ -9595,47 +9958,73 @@
|
|
|
9595
9958
|
"projectId": {}
|
|
9596
9959
|
}
|
|
9597
9960
|
},
|
|
9598
|
-
"contextDefinition": {
|
|
9599
|
-
"loggedIn": {},
|
|
9600
|
-
"privateProjectConfig": {},
|
|
9601
|
-
"vcsClient": {}
|
|
9602
|
-
},
|
|
9961
|
+
"contextDefinition": {},
|
|
9603
9962
|
"isESM": false,
|
|
9604
9963
|
"relativePath": [
|
|
9605
9964
|
"build",
|
|
9606
9965
|
"commands",
|
|
9607
9966
|
"update",
|
|
9608
|
-
"
|
|
9967
|
+
"rollback.js"
|
|
9609
9968
|
]
|
|
9610
9969
|
},
|
|
9611
|
-
"update:
|
|
9970
|
+
"update:view": {
|
|
9612
9971
|
"aliases": [],
|
|
9613
9972
|
"args": {
|
|
9614
9973
|
"groupId": {
|
|
9615
|
-
"description": "The ID of an update group
|
|
9974
|
+
"description": "The ID of an update group.",
|
|
9616
9975
|
"name": "groupId",
|
|
9617
9976
|
"required": true
|
|
9618
9977
|
}
|
|
9619
9978
|
},
|
|
9620
|
-
"description": "
|
|
9979
|
+
"description": "update group details",
|
|
9621
9980
|
"flags": {
|
|
9622
|
-
"
|
|
9623
|
-
"description": "
|
|
9624
|
-
"name": "
|
|
9981
|
+
"insights": {
|
|
9982
|
+
"description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
|
|
9983
|
+
"name": "insights",
|
|
9625
9984
|
"allowNo": false,
|
|
9626
9985
|
"type": "boolean"
|
|
9627
9986
|
},
|
|
9628
|
-
"
|
|
9629
|
-
"description": "
|
|
9630
|
-
"
|
|
9631
|
-
|
|
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",
|
|
9632
10021
|
"allowNo": false,
|
|
9633
10022
|
"type": "boolean"
|
|
9634
10023
|
}
|
|
9635
10024
|
},
|
|
9636
10025
|
"hasDynamicHelp": false,
|
|
9637
10026
|
"hiddenAliases": [],
|
|
9638
|
-
"id": "update:
|
|
10027
|
+
"id": "update:view",
|
|
9639
10028
|
"pluginAlias": "eas-cli",
|
|
9640
10029
|
"pluginName": "eas-cli",
|
|
9641
10030
|
"pluginType": "core",
|
|
@@ -9689,40 +10078,14 @@
|
|
|
9689
10078
|
"build",
|
|
9690
10079
|
"commands",
|
|
9691
10080
|
"update",
|
|
9692
|
-
"
|
|
10081
|
+
"view.js"
|
|
9693
10082
|
]
|
|
9694
10083
|
},
|
|
9695
|
-
"
|
|
10084
|
+
"workflow:cancel": {
|
|
9696
10085
|
"aliases": [],
|
|
9697
|
-
"args": {
|
|
9698
|
-
|
|
9699
|
-
"description": "The ID of an update group to edit.",
|
|
9700
|
-
"name": "groupId"
|
|
9701
|
-
}
|
|
9702
|
-
},
|
|
9703
|
-
"description": "edit all the updates in an update group",
|
|
10086
|
+
"args": {},
|
|
10087
|
+
"description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
|
|
9704
10088
|
"flags": {
|
|
9705
|
-
"rollout-percentage": {
|
|
9706
|
-
"description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
|
|
9707
|
-
"name": "rollout-percentage",
|
|
9708
|
-
"required": false,
|
|
9709
|
-
"hasDynamicHelp": false,
|
|
9710
|
-
"multiple": false,
|
|
9711
|
-
"type": "option"
|
|
9712
|
-
},
|
|
9713
|
-
"branch": {
|
|
9714
|
-
"description": "Branch for which to list updates to select from",
|
|
9715
|
-
"name": "branch",
|
|
9716
|
-
"hasDynamicHelp": false,
|
|
9717
|
-
"multiple": false,
|
|
9718
|
-
"type": "option"
|
|
9719
|
-
},
|
|
9720
|
-
"json": {
|
|
9721
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9722
|
-
"name": "json",
|
|
9723
|
-
"allowNo": false,
|
|
9724
|
-
"type": "boolean"
|
|
9725
|
-
},
|
|
9726
10089
|
"non-interactive": {
|
|
9727
10090
|
"description": "Run the command in non-interactive mode.",
|
|
9728
10091
|
"name": "non-interactive",
|
|
@@ -9733,11 +10096,11 @@
|
|
|
9733
10096
|
},
|
|
9734
10097
|
"hasDynamicHelp": false,
|
|
9735
10098
|
"hiddenAliases": [],
|
|
9736
|
-
"id": "
|
|
10099
|
+
"id": "workflow:cancel",
|
|
9737
10100
|
"pluginAlias": "eas-cli",
|
|
9738
10101
|
"pluginName": "eas-cli",
|
|
9739
10102
|
"pluginType": "core",
|
|
9740
|
-
"strict":
|
|
10103
|
+
"strict": false,
|
|
9741
10104
|
"enableJsonFlag": false,
|
|
9742
10105
|
"ContextOptions": {
|
|
9743
10106
|
"LoggedIn": {
|
|
@@ -9787,144 +10150,31 @@
|
|
|
9787
10150
|
"relativePath": [
|
|
9788
10151
|
"build",
|
|
9789
10152
|
"commands",
|
|
9790
|
-
"
|
|
9791
|
-
"
|
|
10153
|
+
"workflow",
|
|
10154
|
+
"cancel.js"
|
|
9792
10155
|
]
|
|
9793
10156
|
},
|
|
9794
|
-
"
|
|
10157
|
+
"workflow:create": {
|
|
9795
10158
|
"aliases": [],
|
|
9796
|
-
"args": {
|
|
9797
|
-
|
|
10159
|
+
"args": {
|
|
10160
|
+
"name": {
|
|
10161
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
10162
|
+
"name": "name",
|
|
10163
|
+
"required": false
|
|
10164
|
+
}
|
|
10165
|
+
},
|
|
10166
|
+
"description": "create a new workflow configuration YAML file",
|
|
9798
10167
|
"flags": {
|
|
9799
|
-
"
|
|
9800
|
-
"description": "
|
|
9801
|
-
"name": "
|
|
9802
|
-
"required": false,
|
|
9803
|
-
"hasDynamicHelp": false,
|
|
9804
|
-
"multiple": false,
|
|
9805
|
-
"type": "option"
|
|
9806
|
-
},
|
|
9807
|
-
"channel": {
|
|
9808
|
-
"description": "Channel that the published update should affect",
|
|
9809
|
-
"name": "channel",
|
|
9810
|
-
"required": false,
|
|
9811
|
-
"hasDynamicHelp": false,
|
|
9812
|
-
"multiple": false,
|
|
9813
|
-
"type": "option"
|
|
9814
|
-
},
|
|
9815
|
-
"message": {
|
|
9816
|
-
"char": "m",
|
|
9817
|
-
"description": "A short message describing the update",
|
|
9818
|
-
"name": "message",
|
|
9819
|
-
"required": false,
|
|
9820
|
-
"hasDynamicHelp": false,
|
|
9821
|
-
"multiple": false,
|
|
9822
|
-
"type": "option"
|
|
9823
|
-
},
|
|
9824
|
-
"input-dir": {
|
|
9825
|
-
"description": "Location of the bundle",
|
|
9826
|
-
"name": "input-dir",
|
|
9827
|
-
"required": false,
|
|
9828
|
-
"default": "dist",
|
|
9829
|
-
"hasDynamicHelp": false,
|
|
9830
|
-
"multiple": false,
|
|
9831
|
-
"type": "option"
|
|
9832
|
-
},
|
|
9833
|
-
"skip-bundler": {
|
|
9834
|
-
"description": "Skip running Expo CLI to bundle the app before publishing",
|
|
9835
|
-
"name": "skip-bundler",
|
|
9836
|
-
"allowNo": false,
|
|
9837
|
-
"type": "boolean"
|
|
9838
|
-
},
|
|
9839
|
-
"clear-cache": {
|
|
9840
|
-
"description": "Clear the bundler cache before publishing",
|
|
9841
|
-
"name": "clear-cache",
|
|
9842
|
-
"allowNo": false,
|
|
9843
|
-
"type": "boolean"
|
|
9844
|
-
},
|
|
9845
|
-
"no-bytecode": {
|
|
9846
|
-
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
9847
|
-
"hidden": true,
|
|
9848
|
-
"name": "no-bytecode",
|
|
9849
|
-
"allowNo": false,
|
|
9850
|
-
"type": "boolean"
|
|
9851
|
-
},
|
|
9852
|
-
"source-maps": {
|
|
9853
|
-
"description": "Emit source maps. Options: true (default), inline, false",
|
|
9854
|
-
"hidden": true,
|
|
9855
|
-
"name": "source-maps",
|
|
9856
|
-
"default": "true",
|
|
9857
|
-
"hasDynamicHelp": false,
|
|
9858
|
-
"multiple": false,
|
|
9859
|
-
"type": "option"
|
|
9860
|
-
},
|
|
9861
|
-
"emit-metadata": {
|
|
9862
|
-
"description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
|
|
9863
|
-
"name": "emit-metadata",
|
|
9864
|
-
"allowNo": false,
|
|
9865
|
-
"type": "boolean"
|
|
9866
|
-
},
|
|
9867
|
-
"rollout-percentage": {
|
|
9868
|
-
"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.",
|
|
9869
|
-
"name": "rollout-percentage",
|
|
9870
|
-
"required": false,
|
|
9871
|
-
"hasDynamicHelp": false,
|
|
9872
|
-
"multiple": false,
|
|
9873
|
-
"type": "option"
|
|
9874
|
-
},
|
|
9875
|
-
"platform": {
|
|
9876
|
-
"char": "p",
|
|
9877
|
-
"name": "platform",
|
|
9878
|
-
"required": false,
|
|
9879
|
-
"default": "all",
|
|
9880
|
-
"hasDynamicHelp": false,
|
|
9881
|
-
"multiple": false,
|
|
9882
|
-
"options": [
|
|
9883
|
-
"android",
|
|
9884
|
-
"ios",
|
|
9885
|
-
"all"
|
|
9886
|
-
],
|
|
9887
|
-
"type": "option"
|
|
9888
|
-
},
|
|
9889
|
-
"auto": {
|
|
9890
|
-
"description": "Use the current git branch and commit message for the EAS branch and update message",
|
|
9891
|
-
"name": "auto",
|
|
9892
|
-
"allowNo": false,
|
|
9893
|
-
"type": "boolean"
|
|
9894
|
-
},
|
|
9895
|
-
"private-key-path": {
|
|
9896
|
-
"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/",
|
|
9897
|
-
"name": "private-key-path",
|
|
9898
|
-
"required": false,
|
|
9899
|
-
"hasDynamicHelp": false,
|
|
9900
|
-
"multiple": false,
|
|
9901
|
-
"type": "option"
|
|
9902
|
-
},
|
|
9903
|
-
"environment": {
|
|
9904
|
-
"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.",
|
|
9905
|
-
"name": "environment",
|
|
9906
|
-
"required": false,
|
|
9907
|
-
"hasDynamicHelp": false,
|
|
9908
|
-
"multiple": false,
|
|
9909
|
-
"type": "option"
|
|
9910
|
-
},
|
|
9911
|
-
"json": {
|
|
9912
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
9913
|
-
"name": "json",
|
|
9914
|
-
"allowNo": false,
|
|
9915
|
-
"type": "boolean"
|
|
9916
|
-
},
|
|
9917
|
-
"non-interactive": {
|
|
9918
|
-
"description": "Run the command in non-interactive mode.",
|
|
9919
|
-
"name": "non-interactive",
|
|
9920
|
-
"noCacheDefault": true,
|
|
10168
|
+
"skip-validation": {
|
|
10169
|
+
"description": "If set, the workflow file will not be validated before being created",
|
|
10170
|
+
"name": "skip-validation",
|
|
9921
10171
|
"allowNo": false,
|
|
9922
10172
|
"type": "boolean"
|
|
9923
10173
|
}
|
|
9924
10174
|
},
|
|
9925
10175
|
"hasDynamicHelp": false,
|
|
9926
10176
|
"hiddenAliases": [],
|
|
9927
|
-
"id": "
|
|
10177
|
+
"id": "workflow:create",
|
|
9928
10178
|
"pluginAlias": "eas-cli",
|
|
9929
10179
|
"pluginName": "eas-cli",
|
|
9930
10180
|
"pluginType": "core",
|
|
@@ -9973,88 +10223,33 @@
|
|
|
9973
10223
|
"contextDefinition": {
|
|
9974
10224
|
"getDynamicPublicProjectConfigAsync": {},
|
|
9975
10225
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
9976
|
-
"
|
|
9977
|
-
"
|
|
9978
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
10226
|
+
"projectDir": {},
|
|
10227
|
+
"loggedIn": {}
|
|
9979
10228
|
},
|
|
9980
10229
|
"isESM": false,
|
|
9981
10230
|
"relativePath": [
|
|
9982
10231
|
"build",
|
|
9983
10232
|
"commands",
|
|
9984
|
-
"
|
|
9985
|
-
"
|
|
10233
|
+
"workflow",
|
|
10234
|
+
"create.js"
|
|
9986
10235
|
]
|
|
9987
10236
|
},
|
|
9988
|
-
"
|
|
10237
|
+
"workflow:list": {
|
|
9989
10238
|
"aliases": [],
|
|
9990
|
-
"args": {
|
|
9991
|
-
|
|
9992
|
-
"description": "The ID of an update group.",
|
|
9993
|
-
"name": "groupId",
|
|
9994
|
-
"required": true
|
|
9995
|
-
}
|
|
9996
|
-
},
|
|
9997
|
-
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
10239
|
+
"args": {},
|
|
10240
|
+
"description": "List workflows for the current project",
|
|
9998
10241
|
"flags": {
|
|
9999
|
-
"platform": {
|
|
10000
|
-
"description": "Filter to a single platform.",
|
|
10001
|
-
"name": "platform",
|
|
10002
|
-
"hasDynamicHelp": false,
|
|
10003
|
-
"multiple": false,
|
|
10004
|
-
"options": [
|
|
10005
|
-
"ios",
|
|
10006
|
-
"android"
|
|
10007
|
-
],
|
|
10008
|
-
"type": "option"
|
|
10009
|
-
},
|
|
10010
|
-
"days": {
|
|
10011
|
-
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
10012
|
-
"exclusive": [
|
|
10013
|
-
"start",
|
|
10014
|
-
"end"
|
|
10015
|
-
],
|
|
10016
|
-
"name": "days",
|
|
10017
|
-
"hasDynamicHelp": false,
|
|
10018
|
-
"multiple": false,
|
|
10019
|
-
"type": "option"
|
|
10020
|
-
},
|
|
10021
|
-
"start": {
|
|
10022
|
-
"description": "Start of insights time range (ISO date).",
|
|
10023
|
-
"exclusive": [
|
|
10024
|
-
"days"
|
|
10025
|
-
],
|
|
10026
|
-
"name": "start",
|
|
10027
|
-
"hasDynamicHelp": false,
|
|
10028
|
-
"multiple": false,
|
|
10029
|
-
"type": "option"
|
|
10030
|
-
},
|
|
10031
|
-
"end": {
|
|
10032
|
-
"description": "End of insights time range (ISO date).",
|
|
10033
|
-
"exclusive": [
|
|
10034
|
-
"days"
|
|
10035
|
-
],
|
|
10036
|
-
"name": "end",
|
|
10037
|
-
"hasDynamicHelp": false,
|
|
10038
|
-
"multiple": false,
|
|
10039
|
-
"type": "option"
|
|
10040
|
-
},
|
|
10041
10242
|
"json": {
|
|
10042
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
10243
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10043
10244
|
"name": "json",
|
|
10044
10245
|
"allowNo": false,
|
|
10045
10246
|
"type": "boolean"
|
|
10046
|
-
},
|
|
10047
|
-
"non-interactive": {
|
|
10048
|
-
"description": "Run the command in non-interactive mode.",
|
|
10049
|
-
"name": "non-interactive",
|
|
10050
|
-
"noCacheDefault": true,
|
|
10051
|
-
"allowNo": false,
|
|
10052
|
-
"type": "boolean"
|
|
10053
10247
|
}
|
|
10054
10248
|
},
|
|
10055
10249
|
"hasDynamicHelp": false,
|
|
10250
|
+
"hidden": true,
|
|
10056
10251
|
"hiddenAliases": [],
|
|
10057
|
-
"id": "
|
|
10252
|
+
"id": "workflow:list",
|
|
10058
10253
|
"pluginAlias": "eas-cli",
|
|
10059
10254
|
"pluginName": "eas-cli",
|
|
10060
10255
|
"pluginType": "core",
|
|
@@ -10101,76 +10296,29 @@
|
|
|
10101
10296
|
}
|
|
10102
10297
|
},
|
|
10103
10298
|
"contextDefinition": {
|
|
10299
|
+
"projectId": {},
|
|
10104
10300
|
"loggedIn": {}
|
|
10105
10301
|
},
|
|
10106
10302
|
"isESM": false,
|
|
10107
10303
|
"relativePath": [
|
|
10108
10304
|
"build",
|
|
10109
10305
|
"commands",
|
|
10110
|
-
"
|
|
10111
|
-
"
|
|
10306
|
+
"workflow",
|
|
10307
|
+
"list.js"
|
|
10112
10308
|
]
|
|
10113
10309
|
},
|
|
10114
|
-
"
|
|
10310
|
+
"workflow:logs": {
|
|
10115
10311
|
"aliases": [],
|
|
10116
|
-
"args": {
|
|
10117
|
-
|
|
10312
|
+
"args": {
|
|
10313
|
+
"id": {
|
|
10314
|
+
"description": "ID of the workflow run or workflow job to view logs for",
|
|
10315
|
+
"name": "id"
|
|
10316
|
+
}
|
|
10317
|
+
},
|
|
10318
|
+
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
10118
10319
|
"flags": {
|
|
10119
|
-
"branch": {
|
|
10120
|
-
"description": "List updates only on this branch",
|
|
10121
|
-
"exclusive": [
|
|
10122
|
-
"all"
|
|
10123
|
-
],
|
|
10124
|
-
"name": "branch",
|
|
10125
|
-
"hasDynamicHelp": false,
|
|
10126
|
-
"multiple": false,
|
|
10127
|
-
"type": "option"
|
|
10128
|
-
},
|
|
10129
|
-
"all": {
|
|
10130
|
-
"description": "List updates on all branches",
|
|
10131
|
-
"exclusive": [
|
|
10132
|
-
"branch"
|
|
10133
|
-
],
|
|
10134
|
-
"name": "all",
|
|
10135
|
-
"allowNo": false,
|
|
10136
|
-
"type": "boolean"
|
|
10137
|
-
},
|
|
10138
|
-
"platform": {
|
|
10139
|
-
"char": "p",
|
|
10140
|
-
"description": "Filter updates by platform",
|
|
10141
|
-
"name": "platform",
|
|
10142
|
-
"hasDynamicHelp": false,
|
|
10143
|
-
"multiple": false,
|
|
10144
|
-
"options": [
|
|
10145
|
-
"android",
|
|
10146
|
-
"ios",
|
|
10147
|
-
"all"
|
|
10148
|
-
],
|
|
10149
|
-
"type": "option"
|
|
10150
|
-
},
|
|
10151
|
-
"runtime-version": {
|
|
10152
|
-
"description": "Filter updates by runtime version",
|
|
10153
|
-
"name": "runtime-version",
|
|
10154
|
-
"hasDynamicHelp": false,
|
|
10155
|
-
"multiple": false,
|
|
10156
|
-
"type": "option"
|
|
10157
|
-
},
|
|
10158
|
-
"offset": {
|
|
10159
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
10160
|
-
"name": "offset",
|
|
10161
|
-
"hasDynamicHelp": false,
|
|
10162
|
-
"multiple": false,
|
|
10163
|
-
"type": "option"
|
|
10164
|
-
},
|
|
10165
|
-
"limit": {
|
|
10166
|
-
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
10167
|
-
"name": "limit",
|
|
10168
|
-
"hasDynamicHelp": false,
|
|
10169
|
-
"multiple": false,
|
|
10170
|
-
"type": "option"
|
|
10171
|
-
},
|
|
10172
10320
|
"json": {
|
|
10173
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
10321
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10174
10322
|
"name": "json",
|
|
10175
10323
|
"allowNo": false,
|
|
10176
10324
|
"type": "boolean"
|
|
@@ -10181,11 +10329,17 @@
|
|
|
10181
10329
|
"noCacheDefault": true,
|
|
10182
10330
|
"allowNo": false,
|
|
10183
10331
|
"type": "boolean"
|
|
10332
|
+
},
|
|
10333
|
+
"all-steps": {
|
|
10334
|
+
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
10335
|
+
"name": "all-steps",
|
|
10336
|
+
"allowNo": false,
|
|
10337
|
+
"type": "boolean"
|
|
10184
10338
|
}
|
|
10185
10339
|
},
|
|
10186
10340
|
"hasDynamicHelp": false,
|
|
10187
10341
|
"hiddenAliases": [],
|
|
10188
|
-
"id": "
|
|
10342
|
+
"id": "workflow:logs",
|
|
10189
10343
|
"pluginAlias": "eas-cli",
|
|
10190
10344
|
"pluginName": "eas-cli",
|
|
10191
10345
|
"pluginType": "core",
|
|
@@ -10239,124 +10393,66 @@
|
|
|
10239
10393
|
"relativePath": [
|
|
10240
10394
|
"build",
|
|
10241
10395
|
"commands",
|
|
10242
|
-
"
|
|
10243
|
-
"
|
|
10396
|
+
"workflow",
|
|
10397
|
+
"logs.js"
|
|
10244
10398
|
]
|
|
10245
10399
|
},
|
|
10246
|
-
"
|
|
10400
|
+
"workflow:run": {
|
|
10247
10401
|
"aliases": [],
|
|
10248
|
-
"args": {
|
|
10249
|
-
|
|
10402
|
+
"args": {
|
|
10403
|
+
"file": {
|
|
10404
|
+
"description": "Path to the workflow file to run",
|
|
10405
|
+
"name": "file",
|
|
10406
|
+
"required": true
|
|
10407
|
+
}
|
|
10408
|
+
},
|
|
10409
|
+
"description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
|
|
10250
10410
|
"flags": {
|
|
10251
|
-
"
|
|
10252
|
-
"description": "
|
|
10253
|
-
"
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
|
|
10257
|
-
"name": "channel",
|
|
10258
|
-
"hasDynamicHelp": false,
|
|
10259
|
-
"multiple": false,
|
|
10260
|
-
"type": "option"
|
|
10261
|
-
},
|
|
10262
|
-
"branch": {
|
|
10263
|
-
"description": "Branch name to select an update group to republish from",
|
|
10264
|
-
"exclusive": [
|
|
10265
|
-
"channel",
|
|
10266
|
-
"group"
|
|
10267
|
-
],
|
|
10268
|
-
"name": "branch",
|
|
10269
|
-
"hasDynamicHelp": false,
|
|
10270
|
-
"multiple": false,
|
|
10271
|
-
"type": "option"
|
|
10272
|
-
},
|
|
10273
|
-
"group": {
|
|
10274
|
-
"description": "Update group ID to republish",
|
|
10275
|
-
"exclusive": [
|
|
10276
|
-
"branch",
|
|
10277
|
-
"channel"
|
|
10278
|
-
],
|
|
10279
|
-
"name": "group",
|
|
10280
|
-
"hasDynamicHelp": false,
|
|
10281
|
-
"multiple": false,
|
|
10282
|
-
"type": "option"
|
|
10283
|
-
},
|
|
10284
|
-
"destination-channel": {
|
|
10285
|
-
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
10286
|
-
"exclusive": [
|
|
10287
|
-
"destination-branch"
|
|
10288
|
-
],
|
|
10289
|
-
"name": "destination-channel",
|
|
10290
|
-
"hasDynamicHelp": false,
|
|
10291
|
-
"multiple": false,
|
|
10292
|
-
"type": "option"
|
|
10293
|
-
},
|
|
10294
|
-
"destination-branch": {
|
|
10295
|
-
"description": "Branch name to republish to if republishing to a different branch",
|
|
10296
|
-
"exclusive": [
|
|
10297
|
-
"destination-channel"
|
|
10298
|
-
],
|
|
10299
|
-
"name": "destination-branch",
|
|
10300
|
-
"hasDynamicHelp": false,
|
|
10301
|
-
"multiple": false,
|
|
10302
|
-
"type": "option"
|
|
10411
|
+
"non-interactive": {
|
|
10412
|
+
"description": "Run the command in non-interactive mode.",
|
|
10413
|
+
"name": "non-interactive",
|
|
10414
|
+
"noCacheDefault": true,
|
|
10415
|
+
"allowNo": false,
|
|
10416
|
+
"type": "boolean"
|
|
10303
10417
|
},
|
|
10304
|
-
"
|
|
10305
|
-
"
|
|
10306
|
-
"
|
|
10307
|
-
"
|
|
10308
|
-
"
|
|
10309
|
-
"
|
|
10310
|
-
"multiple": false,
|
|
10311
|
-
"type": "option"
|
|
10418
|
+
"wait": {
|
|
10419
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10420
|
+
"name": "wait",
|
|
10421
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10422
|
+
"allowNo": true,
|
|
10423
|
+
"type": "boolean"
|
|
10312
10424
|
},
|
|
10313
|
-
"
|
|
10314
|
-
"
|
|
10315
|
-
|
|
10316
|
-
|
|
10317
|
-
"default": "all",
|
|
10318
|
-
"hasDynamicHelp": false,
|
|
10319
|
-
"multiple": false,
|
|
10320
|
-
"options": [
|
|
10321
|
-
"android",
|
|
10322
|
-
"ios",
|
|
10323
|
-
"all"
|
|
10425
|
+
"input": {
|
|
10426
|
+
"aliases": [
|
|
10427
|
+
"f",
|
|
10428
|
+
"field"
|
|
10324
10429
|
],
|
|
10325
|
-
"
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
"
|
|
10329
|
-
"name": "private-key-path",
|
|
10330
|
-
"required": false,
|
|
10430
|
+
"char": "F",
|
|
10431
|
+
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
10432
|
+
"name": "input",
|
|
10433
|
+
"summary": "Set workflow inputs",
|
|
10331
10434
|
"hasDynamicHelp": false,
|
|
10332
|
-
"multiple":
|
|
10435
|
+
"multiple": true,
|
|
10333
10436
|
"type": "option"
|
|
10334
10437
|
},
|
|
10335
|
-
"
|
|
10336
|
-
"description": "
|
|
10337
|
-
"name": "
|
|
10338
|
-
"
|
|
10438
|
+
"ref": {
|
|
10439
|
+
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
10440
|
+
"name": "ref",
|
|
10441
|
+
"summary": "Git reference to run the workflow on",
|
|
10339
10442
|
"hasDynamicHelp": false,
|
|
10340
10443
|
"multiple": false,
|
|
10341
10444
|
"type": "option"
|
|
10342
10445
|
},
|
|
10343
10446
|
"json": {
|
|
10344
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
10447
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10345
10448
|
"name": "json",
|
|
10346
10449
|
"allowNo": false,
|
|
10347
10450
|
"type": "boolean"
|
|
10348
|
-
},
|
|
10349
|
-
"non-interactive": {
|
|
10350
|
-
"description": "Run the command in non-interactive mode.",
|
|
10351
|
-
"name": "non-interactive",
|
|
10352
|
-
"noCacheDefault": true,
|
|
10353
|
-
"allowNo": false,
|
|
10354
|
-
"type": "boolean"
|
|
10355
10451
|
}
|
|
10356
10452
|
},
|
|
10357
10453
|
"hasDynamicHelp": false,
|
|
10358
10454
|
"hiddenAliases": [],
|
|
10359
|
-
"id": "
|
|
10455
|
+
"id": "workflow:run",
|
|
10360
10456
|
"pluginAlias": "eas-cli",
|
|
10361
10457
|
"pluginName": "eas-cli",
|
|
10362
10458
|
"pluginType": "core",
|
|
@@ -10402,90 +10498,67 @@
|
|
|
10402
10498
|
"projectId": {}
|
|
10403
10499
|
}
|
|
10404
10500
|
},
|
|
10405
|
-
"contextDefinition": {
|
|
10406
|
-
"
|
|
10407
|
-
"
|
|
10408
|
-
|
|
10409
|
-
|
|
10410
|
-
|
|
10411
|
-
|
|
10412
|
-
|
|
10413
|
-
|
|
10414
|
-
"
|
|
10415
|
-
|
|
10416
|
-
|
|
10417
|
-
|
|
10418
|
-
|
|
10419
|
-
|
|
10420
|
-
|
|
10421
|
-
"
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
10425
|
-
|
|
10426
|
-
|
|
10427
|
-
|
|
10428
|
-
"name": "channel",
|
|
10429
|
-
"hasDynamicHelp": false,
|
|
10430
|
-
"multiple": false,
|
|
10431
|
-
"type": "option"
|
|
10432
|
-
},
|
|
10433
|
-
"branch": {
|
|
10434
|
-
"description": "Branch name to select an update group to revert the rollout update from",
|
|
10435
|
-
"exclusive": [
|
|
10436
|
-
"channel",
|
|
10437
|
-
"group"
|
|
10438
|
-
],
|
|
10439
|
-
"name": "branch",
|
|
10440
|
-
"hasDynamicHelp": false,
|
|
10441
|
-
"multiple": false,
|
|
10442
|
-
"type": "option"
|
|
10443
|
-
},
|
|
10444
|
-
"group": {
|
|
10445
|
-
"description": "Rollout update group ID to revert",
|
|
10446
|
-
"exclusive": [
|
|
10447
|
-
"branch",
|
|
10448
|
-
"channel"
|
|
10449
|
-
],
|
|
10450
|
-
"name": "group",
|
|
10451
|
-
"hasDynamicHelp": false,
|
|
10452
|
-
"multiple": false,
|
|
10453
|
-
"type": "option"
|
|
10454
|
-
},
|
|
10455
|
-
"message": {
|
|
10456
|
-
"char": "m",
|
|
10457
|
-
"description": "Short message describing the revert",
|
|
10458
|
-
"name": "message",
|
|
10501
|
+
"contextDefinition": {
|
|
10502
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10503
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10504
|
+
"projectDir": {},
|
|
10505
|
+
"vcsClient": {},
|
|
10506
|
+
"loggedIn": {}
|
|
10507
|
+
},
|
|
10508
|
+
"isESM": false,
|
|
10509
|
+
"relativePath": [
|
|
10510
|
+
"build",
|
|
10511
|
+
"commands",
|
|
10512
|
+
"workflow",
|
|
10513
|
+
"run.js"
|
|
10514
|
+
]
|
|
10515
|
+
},
|
|
10516
|
+
"workflow:runs": {
|
|
10517
|
+
"aliases": [],
|
|
10518
|
+
"args": {},
|
|
10519
|
+
"description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
|
|
10520
|
+
"flags": {
|
|
10521
|
+
"workflow": {
|
|
10522
|
+
"description": "If present, the query will only return runs for the specified workflow file name",
|
|
10523
|
+
"name": "workflow",
|
|
10459
10524
|
"required": false,
|
|
10460
10525
|
"hasDynamicHelp": false,
|
|
10461
10526
|
"multiple": false,
|
|
10462
10527
|
"type": "option"
|
|
10463
10528
|
},
|
|
10464
|
-
"
|
|
10465
|
-
"description": "
|
|
10466
|
-
"name": "
|
|
10529
|
+
"status": {
|
|
10530
|
+
"description": "If present, filter the returned runs to select those with the specified status",
|
|
10531
|
+
"name": "status",
|
|
10467
10532
|
"required": false,
|
|
10468
10533
|
"hasDynamicHelp": false,
|
|
10469
10534
|
"multiple": false,
|
|
10535
|
+
"options": [
|
|
10536
|
+
"ACTION_REQUIRED",
|
|
10537
|
+
"CANCELED",
|
|
10538
|
+
"FAILURE",
|
|
10539
|
+
"IN_PROGRESS",
|
|
10540
|
+
"NEW",
|
|
10541
|
+
"SUCCESS"
|
|
10542
|
+
],
|
|
10470
10543
|
"type": "option"
|
|
10471
10544
|
},
|
|
10472
10545
|
"json": {
|
|
10473
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
10546
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10474
10547
|
"name": "json",
|
|
10475
10548
|
"allowNo": false,
|
|
10476
10549
|
"type": "boolean"
|
|
10477
10550
|
},
|
|
10478
|
-
"
|
|
10479
|
-
"description": "
|
|
10480
|
-
"name": "
|
|
10481
|
-
"
|
|
10482
|
-
"
|
|
10483
|
-
"type": "
|
|
10551
|
+
"limit": {
|
|
10552
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
10553
|
+
"name": "limit",
|
|
10554
|
+
"hasDynamicHelp": false,
|
|
10555
|
+
"multiple": false,
|
|
10556
|
+
"type": "option"
|
|
10484
10557
|
}
|
|
10485
10558
|
},
|
|
10486
10559
|
"hasDynamicHelp": false,
|
|
10487
10560
|
"hiddenAliases": [],
|
|
10488
|
-
"id": "
|
|
10561
|
+
"id": "workflow:runs",
|
|
10489
10562
|
"pluginAlias": "eas-cli",
|
|
10490
10563
|
"pluginName": "eas-cli",
|
|
10491
10564
|
"pluginType": "core",
|
|
@@ -10532,94 +10605,51 @@
|
|
|
10532
10605
|
}
|
|
10533
10606
|
},
|
|
10534
10607
|
"contextDefinition": {
|
|
10535
|
-
"
|
|
10536
|
-
"
|
|
10537
|
-
"vcsClient": {}
|
|
10608
|
+
"projectId": {},
|
|
10609
|
+
"loggedIn": {}
|
|
10538
10610
|
},
|
|
10539
10611
|
"isESM": false,
|
|
10540
10612
|
"relativePath": [
|
|
10541
10613
|
"build",
|
|
10542
10614
|
"commands",
|
|
10543
|
-
"
|
|
10544
|
-
"
|
|
10615
|
+
"workflow",
|
|
10616
|
+
"runs.js"
|
|
10545
10617
|
]
|
|
10546
10618
|
},
|
|
10547
|
-
"
|
|
10619
|
+
"workflow:status": {
|
|
10548
10620
|
"aliases": [],
|
|
10549
|
-
"args": {
|
|
10550
|
-
|
|
10621
|
+
"args": {
|
|
10622
|
+
"WORKFLOW_RUN_ID": {
|
|
10623
|
+
"description": "A workflow run ID.",
|
|
10624
|
+
"name": "WORKFLOW_RUN_ID"
|
|
10625
|
+
}
|
|
10626
|
+
},
|
|
10627
|
+
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10551
10628
|
"flags": {
|
|
10552
|
-
"branch": {
|
|
10553
|
-
"description": "Branch to publish the rollback to embedded update group on",
|
|
10554
|
-
"name": "branch",
|
|
10555
|
-
"required": false,
|
|
10556
|
-
"hasDynamicHelp": false,
|
|
10557
|
-
"multiple": false,
|
|
10558
|
-
"type": "option"
|
|
10559
|
-
},
|
|
10560
|
-
"channel": {
|
|
10561
|
-
"description": "Channel that the published rollback to embedded update should affect",
|
|
10562
|
-
"name": "channel",
|
|
10563
|
-
"required": false,
|
|
10564
|
-
"hasDynamicHelp": false,
|
|
10565
|
-
"multiple": false,
|
|
10566
|
-
"type": "option"
|
|
10567
|
-
},
|
|
10568
|
-
"runtime-version": {
|
|
10569
|
-
"description": "Runtime version that the rollback to embedded update should target",
|
|
10570
|
-
"name": "runtime-version",
|
|
10571
|
-
"required": false,
|
|
10572
|
-
"hasDynamicHelp": false,
|
|
10573
|
-
"multiple": false,
|
|
10574
|
-
"type": "option"
|
|
10575
|
-
},
|
|
10576
|
-
"message": {
|
|
10577
|
-
"description": "A short message describing the rollback to embedded update",
|
|
10578
|
-
"name": "message",
|
|
10579
|
-
"required": false,
|
|
10580
|
-
"hasDynamicHelp": false,
|
|
10581
|
-
"multiple": false,
|
|
10582
|
-
"type": "option"
|
|
10583
|
-
},
|
|
10584
|
-
"platform": {
|
|
10585
|
-
"char": "p",
|
|
10586
|
-
"name": "platform",
|
|
10587
|
-
"required": false,
|
|
10588
|
-
"default": "all",
|
|
10589
|
-
"hasDynamicHelp": false,
|
|
10590
|
-
"multiple": false,
|
|
10591
|
-
"options": [
|
|
10592
|
-
"android",
|
|
10593
|
-
"ios",
|
|
10594
|
-
"all"
|
|
10595
|
-
],
|
|
10596
|
-
"type": "option"
|
|
10597
|
-
},
|
|
10598
|
-
"private-key-path": {
|
|
10599
|
-
"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/",
|
|
10600
|
-
"name": "private-key-path",
|
|
10601
|
-
"required": false,
|
|
10602
|
-
"hasDynamicHelp": false,
|
|
10603
|
-
"multiple": false,
|
|
10604
|
-
"type": "option"
|
|
10605
|
-
},
|
|
10606
|
-
"json": {
|
|
10607
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
10608
|
-
"name": "json",
|
|
10609
|
-
"allowNo": false,
|
|
10610
|
-
"type": "boolean"
|
|
10611
|
-
},
|
|
10612
10629
|
"non-interactive": {
|
|
10613
10630
|
"description": "Run the command in non-interactive mode.",
|
|
10614
10631
|
"name": "non-interactive",
|
|
10615
10632
|
"noCacheDefault": true,
|
|
10616
10633
|
"allowNo": false,
|
|
10617
10634
|
"type": "boolean"
|
|
10635
|
+
},
|
|
10636
|
+
"wait": {
|
|
10637
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10638
|
+
"name": "wait",
|
|
10639
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10640
|
+
"allowNo": true,
|
|
10641
|
+
"type": "boolean"
|
|
10642
|
+
},
|
|
10643
|
+
"json": {
|
|
10644
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10645
|
+
"name": "json",
|
|
10646
|
+
"allowNo": false,
|
|
10647
|
+
"type": "boolean"
|
|
10618
10648
|
}
|
|
10619
10649
|
},
|
|
10620
10650
|
"hasDynamicHelp": false,
|
|
10621
10651
|
"hiddenAliases": [],
|
|
10622
|
-
"id": "
|
|
10652
|
+
"id": "workflow:status",
|
|
10623
10653
|
"pluginAlias": "eas-cli",
|
|
10624
10654
|
"pluginName": "eas-cli",
|
|
10625
10655
|
"pluginType": "core",
|
|
@@ -10668,34 +10698,40 @@
|
|
|
10668
10698
|
"contextDefinition": {
|
|
10669
10699
|
"getDynamicPublicProjectConfigAsync": {},
|
|
10670
10700
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
10671
|
-
"
|
|
10672
|
-
"vcsClient": {}
|
|
10701
|
+
"projectDir": {},
|
|
10702
|
+
"vcsClient": {},
|
|
10703
|
+
"loggedIn": {}
|
|
10673
10704
|
},
|
|
10674
10705
|
"isESM": false,
|
|
10675
10706
|
"relativePath": [
|
|
10676
10707
|
"build",
|
|
10677
10708
|
"commands",
|
|
10678
|
-
"
|
|
10679
|
-
"
|
|
10709
|
+
"workflow",
|
|
10710
|
+
"status.js"
|
|
10680
10711
|
]
|
|
10681
10712
|
},
|
|
10682
|
-
"
|
|
10713
|
+
"workflow:validate": {
|
|
10683
10714
|
"aliases": [],
|
|
10684
|
-
"args": {
|
|
10685
|
-
|
|
10715
|
+
"args": {
|
|
10716
|
+
"path": {
|
|
10717
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
10718
|
+
"name": "path",
|
|
10719
|
+
"required": true
|
|
10720
|
+
}
|
|
10721
|
+
},
|
|
10722
|
+
"description": "validate a workflow configuration yaml file",
|
|
10686
10723
|
"flags": {
|
|
10687
|
-
"
|
|
10688
|
-
"description": "
|
|
10689
|
-
"name": "
|
|
10690
|
-
"
|
|
10691
|
-
"
|
|
10692
|
-
"
|
|
10693
|
-
"type": "option"
|
|
10724
|
+
"non-interactive": {
|
|
10725
|
+
"description": "Run the command in non-interactive mode.",
|
|
10726
|
+
"name": "non-interactive",
|
|
10727
|
+
"noCacheDefault": true,
|
|
10728
|
+
"allowNo": false,
|
|
10729
|
+
"type": "boolean"
|
|
10694
10730
|
}
|
|
10695
10731
|
},
|
|
10696
10732
|
"hasDynamicHelp": false,
|
|
10697
10733
|
"hiddenAliases": [],
|
|
10698
|
-
"id": "
|
|
10734
|
+
"id": "workflow:validate",
|
|
10699
10735
|
"pluginAlias": "eas-cli",
|
|
10700
10736
|
"pluginName": "eas-cli",
|
|
10701
10737
|
"pluginType": "core",
|
|
@@ -10741,73 +10777,48 @@
|
|
|
10741
10777
|
"projectId": {}
|
|
10742
10778
|
}
|
|
10743
10779
|
},
|
|
10744
|
-
"contextDefinition": {
|
|
10780
|
+
"contextDefinition": {
|
|
10781
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10782
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10783
|
+
"projectDir": {},
|
|
10784
|
+
"projectId": {},
|
|
10785
|
+
"loggedIn": {}
|
|
10786
|
+
},
|
|
10745
10787
|
"isESM": false,
|
|
10746
10788
|
"relativePath": [
|
|
10747
10789
|
"build",
|
|
10748
10790
|
"commands",
|
|
10749
|
-
"
|
|
10750
|
-
"
|
|
10791
|
+
"workflow",
|
|
10792
|
+
"validate.js"
|
|
10751
10793
|
]
|
|
10752
10794
|
},
|
|
10753
|
-
"
|
|
10795
|
+
"workflow:view": {
|
|
10754
10796
|
"aliases": [],
|
|
10755
10797
|
"args": {
|
|
10756
|
-
"
|
|
10757
|
-
"description": "
|
|
10758
|
-
"name": "
|
|
10759
|
-
"required": true
|
|
10798
|
+
"id": {
|
|
10799
|
+
"description": "ID of the workflow run to view",
|
|
10800
|
+
"name": "id"
|
|
10760
10801
|
}
|
|
10761
10802
|
},
|
|
10762
|
-
"description": "
|
|
10803
|
+
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10763
10804
|
"flags": {
|
|
10764
|
-
"insights": {
|
|
10765
|
-
"description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
|
|
10766
|
-
"name": "insights",
|
|
10767
|
-
"allowNo": false,
|
|
10768
|
-
"type": "boolean"
|
|
10769
|
-
},
|
|
10770
|
-
"days": {
|
|
10771
|
-
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
10772
|
-
"exclusive": [
|
|
10773
|
-
"start",
|
|
10774
|
-
"end"
|
|
10775
|
-
],
|
|
10776
|
-
"name": "days",
|
|
10777
|
-
"hasDynamicHelp": false,
|
|
10778
|
-
"multiple": false,
|
|
10779
|
-
"type": "option"
|
|
10780
|
-
},
|
|
10781
|
-
"start": {
|
|
10782
|
-
"description": "Start of insights time range (ISO date). Only used with --insights.",
|
|
10783
|
-
"exclusive": [
|
|
10784
|
-
"days"
|
|
10785
|
-
],
|
|
10786
|
-
"name": "start",
|
|
10787
|
-
"hasDynamicHelp": false,
|
|
10788
|
-
"multiple": false,
|
|
10789
|
-
"type": "option"
|
|
10790
|
-
},
|
|
10791
|
-
"end": {
|
|
10792
|
-
"description": "End of insights time range (ISO date). Only used with --insights.",
|
|
10793
|
-
"exclusive": [
|
|
10794
|
-
"days"
|
|
10795
|
-
],
|
|
10796
|
-
"name": "end",
|
|
10797
|
-
"hasDynamicHelp": false,
|
|
10798
|
-
"multiple": false,
|
|
10799
|
-
"type": "option"
|
|
10800
|
-
},
|
|
10801
10805
|
"json": {
|
|
10802
10806
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10803
10807
|
"name": "json",
|
|
10804
10808
|
"allowNo": false,
|
|
10805
10809
|
"type": "boolean"
|
|
10810
|
+
},
|
|
10811
|
+
"non-interactive": {
|
|
10812
|
+
"description": "Run the command in non-interactive mode.",
|
|
10813
|
+
"name": "non-interactive",
|
|
10814
|
+
"noCacheDefault": true,
|
|
10815
|
+
"allowNo": false,
|
|
10816
|
+
"type": "boolean"
|
|
10806
10817
|
}
|
|
10807
10818
|
},
|
|
10808
10819
|
"hasDynamicHelp": false,
|
|
10809
10820
|
"hiddenAliases": [],
|
|
10810
|
-
"id": "
|
|
10821
|
+
"id": "workflow:view",
|
|
10811
10822
|
"pluginAlias": "eas-cli",
|
|
10812
10823
|
"pluginName": "eas-cli",
|
|
10813
10824
|
"pluginType": "core",
|
|
@@ -10854,13 +10865,14 @@
|
|
|
10854
10865
|
}
|
|
10855
10866
|
},
|
|
10856
10867
|
"contextDefinition": {
|
|
10868
|
+
"projectId": {},
|
|
10857
10869
|
"loggedIn": {}
|
|
10858
10870
|
},
|
|
10859
10871
|
"isESM": false,
|
|
10860
10872
|
"relativePath": [
|
|
10861
10873
|
"build",
|
|
10862
10874
|
"commands",
|
|
10863
|
-
"
|
|
10875
|
+
"workflow",
|
|
10864
10876
|
"view.js"
|
|
10865
10877
|
]
|
|
10866
10878
|
},
|
|
@@ -12170,5 +12182,5 @@
|
|
|
12170
12182
|
]
|
|
12171
12183
|
}
|
|
12172
12184
|
},
|
|
12173
|
-
"version": "19.0
|
|
12185
|
+
"version": "19.1.0"
|
|
12174
12186
|
}
|