eas-cli 18.11.0 → 18.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +100 -100
- package/build/commands/integrations/convex/connect.d.ts +1 -0
- package/build/commands/integrations/convex/connect.js +53 -3
- package/build/commands/simulator/get.d.ts +13 -0
- package/build/commands/simulator/get.js +60 -0
- package/build/commands/simulator/start.js +15 -110
- package/build/graphql/generated.d.ts +201 -5
- package/build/graphql/generated.js +20 -3
- package/build/graphql/queries/DeviceRunSessionQuery.js +20 -1
- package/build/graphql/types/App.js +1 -0
- package/build/simulator/utils.d.ts +5 -0
- package/build/simulator/utils.js +20 -0
- package/oclif.manifest.json +1230 -1148
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -4166,6 +4166,235 @@
|
|
|
4166
4166
|
"index.js"
|
|
4167
4167
|
]
|
|
4168
4168
|
},
|
|
4169
|
+
"deploy:delete": {
|
|
4170
|
+
"aliases": [
|
|
4171
|
+
"worker:delete"
|
|
4172
|
+
],
|
|
4173
|
+
"args": {
|
|
4174
|
+
"DEPLOYMENT_ID": {
|
|
4175
|
+
"name": "DEPLOYMENT_ID"
|
|
4176
|
+
}
|
|
4177
|
+
},
|
|
4178
|
+
"description": "Delete a deployment.",
|
|
4179
|
+
"flags": {
|
|
4180
|
+
"json": {
|
|
4181
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4182
|
+
"name": "json",
|
|
4183
|
+
"allowNo": false,
|
|
4184
|
+
"type": "boolean"
|
|
4185
|
+
},
|
|
4186
|
+
"non-interactive": {
|
|
4187
|
+
"description": "Run the command in non-interactive mode.",
|
|
4188
|
+
"name": "non-interactive",
|
|
4189
|
+
"noCacheDefault": true,
|
|
4190
|
+
"allowNo": false,
|
|
4191
|
+
"type": "boolean"
|
|
4192
|
+
}
|
|
4193
|
+
},
|
|
4194
|
+
"hasDynamicHelp": false,
|
|
4195
|
+
"hiddenAliases": [],
|
|
4196
|
+
"id": "deploy:delete",
|
|
4197
|
+
"pluginAlias": "eas-cli",
|
|
4198
|
+
"pluginName": "eas-cli",
|
|
4199
|
+
"pluginType": "core",
|
|
4200
|
+
"state": "preview",
|
|
4201
|
+
"strict": true,
|
|
4202
|
+
"enableJsonFlag": false,
|
|
4203
|
+
"ContextOptions": {
|
|
4204
|
+
"LoggedIn": {
|
|
4205
|
+
"loggedIn": {}
|
|
4206
|
+
},
|
|
4207
|
+
"MaybeLoggedIn": {
|
|
4208
|
+
"maybeLoggedIn": {}
|
|
4209
|
+
},
|
|
4210
|
+
"DynamicLoggedIn": {
|
|
4211
|
+
"getDynamicLoggedInAsync": {}
|
|
4212
|
+
},
|
|
4213
|
+
"SessionManagment": {
|
|
4214
|
+
"sessionManager": {}
|
|
4215
|
+
},
|
|
4216
|
+
"OptionalProjectConfig": {
|
|
4217
|
+
"optionalPrivateProjectConfig": {}
|
|
4218
|
+
},
|
|
4219
|
+
"ProjectDir": {
|
|
4220
|
+
"projectDir": {}
|
|
4221
|
+
},
|
|
4222
|
+
"DynamicProjectConfig": {
|
|
4223
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4224
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
4225
|
+
},
|
|
4226
|
+
"ProjectConfig": {
|
|
4227
|
+
"loggedIn": {},
|
|
4228
|
+
"privateProjectConfig": {}
|
|
4229
|
+
},
|
|
4230
|
+
"Analytics": {
|
|
4231
|
+
"analytics": {}
|
|
4232
|
+
},
|
|
4233
|
+
"Vcs": {
|
|
4234
|
+
"vcsClient": {}
|
|
4235
|
+
},
|
|
4236
|
+
"ServerSideEnvironmentVariables": {
|
|
4237
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
4238
|
+
},
|
|
4239
|
+
"ProjectId": {
|
|
4240
|
+
"projectId": {}
|
|
4241
|
+
}
|
|
4242
|
+
},
|
|
4243
|
+
"contextDefinition": {
|
|
4244
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4245
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4246
|
+
"projectDir": {},
|
|
4247
|
+
"loggedIn": {}
|
|
4248
|
+
},
|
|
4249
|
+
"isESM": false,
|
|
4250
|
+
"relativePath": [
|
|
4251
|
+
"build",
|
|
4252
|
+
"commands",
|
|
4253
|
+
"deploy",
|
|
4254
|
+
"delete.js"
|
|
4255
|
+
]
|
|
4256
|
+
},
|
|
4257
|
+
"deploy": {
|
|
4258
|
+
"aliases": [
|
|
4259
|
+
"worker:deploy"
|
|
4260
|
+
],
|
|
4261
|
+
"args": {},
|
|
4262
|
+
"description": "deploy your Expo Router web build and API Routes",
|
|
4263
|
+
"flags": {
|
|
4264
|
+
"prod": {
|
|
4265
|
+
"aliases": [
|
|
4266
|
+
"production"
|
|
4267
|
+
],
|
|
4268
|
+
"description": "Create a new production deployment.",
|
|
4269
|
+
"name": "prod",
|
|
4270
|
+
"allowNo": false,
|
|
4271
|
+
"type": "boolean"
|
|
4272
|
+
},
|
|
4273
|
+
"alias": {
|
|
4274
|
+
"description": "Custom alias to assign to the new deployment.",
|
|
4275
|
+
"name": "alias",
|
|
4276
|
+
"hasDynamicHelp": false,
|
|
4277
|
+
"helpValue": "name",
|
|
4278
|
+
"multiple": false,
|
|
4279
|
+
"type": "option"
|
|
4280
|
+
},
|
|
4281
|
+
"id": {
|
|
4282
|
+
"description": "Custom unique identifier for the new deployment.",
|
|
4283
|
+
"name": "id",
|
|
4284
|
+
"hasDynamicHelp": false,
|
|
4285
|
+
"helpValue": "xyz123",
|
|
4286
|
+
"multiple": false,
|
|
4287
|
+
"type": "option"
|
|
4288
|
+
},
|
|
4289
|
+
"export-dir": {
|
|
4290
|
+
"description": "Directory where the Expo project was exported.",
|
|
4291
|
+
"name": "export-dir",
|
|
4292
|
+
"default": "dist",
|
|
4293
|
+
"hasDynamicHelp": false,
|
|
4294
|
+
"helpValue": "dir",
|
|
4295
|
+
"multiple": false,
|
|
4296
|
+
"type": "option"
|
|
4297
|
+
},
|
|
4298
|
+
"dry-run": {
|
|
4299
|
+
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4300
|
+
"name": "dry-run",
|
|
4301
|
+
"allowNo": false,
|
|
4302
|
+
"type": "boolean"
|
|
4303
|
+
},
|
|
4304
|
+
"source-maps": {
|
|
4305
|
+
"description": "Include source maps in the deployment.",
|
|
4306
|
+
"name": "source-maps",
|
|
4307
|
+
"allowNo": true,
|
|
4308
|
+
"type": "boolean"
|
|
4309
|
+
},
|
|
4310
|
+
"environment": {
|
|
4311
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4312
|
+
"name": "environment",
|
|
4313
|
+
"hasDynamicHelp": false,
|
|
4314
|
+
"multiple": false,
|
|
4315
|
+
"type": "option"
|
|
4316
|
+
},
|
|
4317
|
+
"json": {
|
|
4318
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4319
|
+
"name": "json",
|
|
4320
|
+
"allowNo": false,
|
|
4321
|
+
"type": "boolean"
|
|
4322
|
+
},
|
|
4323
|
+
"non-interactive": {
|
|
4324
|
+
"description": "Run the command in non-interactive mode.",
|
|
4325
|
+
"name": "non-interactive",
|
|
4326
|
+
"noCacheDefault": true,
|
|
4327
|
+
"allowNo": false,
|
|
4328
|
+
"type": "boolean"
|
|
4329
|
+
}
|
|
4330
|
+
},
|
|
4331
|
+
"hasDynamicHelp": false,
|
|
4332
|
+
"hiddenAliases": [],
|
|
4333
|
+
"id": "deploy",
|
|
4334
|
+
"pluginAlias": "eas-cli",
|
|
4335
|
+
"pluginName": "eas-cli",
|
|
4336
|
+
"pluginType": "core",
|
|
4337
|
+
"state": "preview",
|
|
4338
|
+
"strict": true,
|
|
4339
|
+
"usage": [
|
|
4340
|
+
"deploy [options]",
|
|
4341
|
+
"deploy --prod"
|
|
4342
|
+
],
|
|
4343
|
+
"enableJsonFlag": false,
|
|
4344
|
+
"ContextOptions": {
|
|
4345
|
+
"LoggedIn": {
|
|
4346
|
+
"loggedIn": {}
|
|
4347
|
+
},
|
|
4348
|
+
"MaybeLoggedIn": {
|
|
4349
|
+
"maybeLoggedIn": {}
|
|
4350
|
+
},
|
|
4351
|
+
"DynamicLoggedIn": {
|
|
4352
|
+
"getDynamicLoggedInAsync": {}
|
|
4353
|
+
},
|
|
4354
|
+
"SessionManagment": {
|
|
4355
|
+
"sessionManager": {}
|
|
4356
|
+
},
|
|
4357
|
+
"OptionalProjectConfig": {
|
|
4358
|
+
"optionalPrivateProjectConfig": {}
|
|
4359
|
+
},
|
|
4360
|
+
"ProjectDir": {
|
|
4361
|
+
"projectDir": {}
|
|
4362
|
+
},
|
|
4363
|
+
"DynamicProjectConfig": {
|
|
4364
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4365
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
4366
|
+
},
|
|
4367
|
+
"ProjectConfig": {
|
|
4368
|
+
"loggedIn": {},
|
|
4369
|
+
"privateProjectConfig": {}
|
|
4370
|
+
},
|
|
4371
|
+
"Analytics": {
|
|
4372
|
+
"analytics": {}
|
|
4373
|
+
},
|
|
4374
|
+
"Vcs": {
|
|
4375
|
+
"vcsClient": {}
|
|
4376
|
+
},
|
|
4377
|
+
"ServerSideEnvironmentVariables": {
|
|
4378
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
4379
|
+
},
|
|
4380
|
+
"ProjectId": {
|
|
4381
|
+
"projectId": {}
|
|
4382
|
+
}
|
|
4383
|
+
},
|
|
4384
|
+
"contextDefinition": {
|
|
4385
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4386
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4387
|
+
"projectDir": {},
|
|
4388
|
+
"loggedIn": {}
|
|
4389
|
+
},
|
|
4390
|
+
"isESM": false,
|
|
4391
|
+
"relativePath": [
|
|
4392
|
+
"build",
|
|
4393
|
+
"commands",
|
|
4394
|
+
"deploy",
|
|
4395
|
+
"index.js"
|
|
4396
|
+
]
|
|
4397
|
+
},
|
|
4169
4398
|
"env:create": {
|
|
4170
4399
|
"aliases": [],
|
|
4171
4400
|
"args": {
|
|
@@ -5751,242 +5980,13 @@
|
|
|
5751
5980
|
"view.js"
|
|
5752
5981
|
]
|
|
5753
5982
|
},
|
|
5754
|
-
"
|
|
5755
|
-
"aliases": [
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
"args": {
|
|
5759
|
-
"DEPLOYMENT_ID": {
|
|
5760
|
-
"name": "DEPLOYMENT_ID"
|
|
5761
|
-
}
|
|
5762
|
-
},
|
|
5763
|
-
"description": "Delete a deployment.",
|
|
5983
|
+
"metadata:lint": {
|
|
5984
|
+
"aliases": [],
|
|
5985
|
+
"args": {},
|
|
5986
|
+
"description": "validate the local store configuration",
|
|
5764
5987
|
"flags": {
|
|
5765
5988
|
"json": {
|
|
5766
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr
|
|
5767
|
-
"name": "json",
|
|
5768
|
-
"allowNo": false,
|
|
5769
|
-
"type": "boolean"
|
|
5770
|
-
},
|
|
5771
|
-
"non-interactive": {
|
|
5772
|
-
"description": "Run the command in non-interactive mode.",
|
|
5773
|
-
"name": "non-interactive",
|
|
5774
|
-
"noCacheDefault": true,
|
|
5775
|
-
"allowNo": false,
|
|
5776
|
-
"type": "boolean"
|
|
5777
|
-
}
|
|
5778
|
-
},
|
|
5779
|
-
"hasDynamicHelp": false,
|
|
5780
|
-
"hiddenAliases": [],
|
|
5781
|
-
"id": "deploy:delete",
|
|
5782
|
-
"pluginAlias": "eas-cli",
|
|
5783
|
-
"pluginName": "eas-cli",
|
|
5784
|
-
"pluginType": "core",
|
|
5785
|
-
"state": "preview",
|
|
5786
|
-
"strict": true,
|
|
5787
|
-
"enableJsonFlag": false,
|
|
5788
|
-
"ContextOptions": {
|
|
5789
|
-
"LoggedIn": {
|
|
5790
|
-
"loggedIn": {}
|
|
5791
|
-
},
|
|
5792
|
-
"MaybeLoggedIn": {
|
|
5793
|
-
"maybeLoggedIn": {}
|
|
5794
|
-
},
|
|
5795
|
-
"DynamicLoggedIn": {
|
|
5796
|
-
"getDynamicLoggedInAsync": {}
|
|
5797
|
-
},
|
|
5798
|
-
"SessionManagment": {
|
|
5799
|
-
"sessionManager": {}
|
|
5800
|
-
},
|
|
5801
|
-
"OptionalProjectConfig": {
|
|
5802
|
-
"optionalPrivateProjectConfig": {}
|
|
5803
|
-
},
|
|
5804
|
-
"ProjectDir": {
|
|
5805
|
-
"projectDir": {}
|
|
5806
|
-
},
|
|
5807
|
-
"DynamicProjectConfig": {
|
|
5808
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5809
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5810
|
-
},
|
|
5811
|
-
"ProjectConfig": {
|
|
5812
|
-
"loggedIn": {},
|
|
5813
|
-
"privateProjectConfig": {}
|
|
5814
|
-
},
|
|
5815
|
-
"Analytics": {
|
|
5816
|
-
"analytics": {}
|
|
5817
|
-
},
|
|
5818
|
-
"Vcs": {
|
|
5819
|
-
"vcsClient": {}
|
|
5820
|
-
},
|
|
5821
|
-
"ServerSideEnvironmentVariables": {
|
|
5822
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
5823
|
-
},
|
|
5824
|
-
"ProjectId": {
|
|
5825
|
-
"projectId": {}
|
|
5826
|
-
}
|
|
5827
|
-
},
|
|
5828
|
-
"contextDefinition": {
|
|
5829
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5830
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
5831
|
-
"projectDir": {},
|
|
5832
|
-
"loggedIn": {}
|
|
5833
|
-
},
|
|
5834
|
-
"isESM": false,
|
|
5835
|
-
"relativePath": [
|
|
5836
|
-
"build",
|
|
5837
|
-
"commands",
|
|
5838
|
-
"deploy",
|
|
5839
|
-
"delete.js"
|
|
5840
|
-
]
|
|
5841
|
-
},
|
|
5842
|
-
"deploy": {
|
|
5843
|
-
"aliases": [
|
|
5844
|
-
"worker:deploy"
|
|
5845
|
-
],
|
|
5846
|
-
"args": {},
|
|
5847
|
-
"description": "deploy your Expo Router web build and API Routes",
|
|
5848
|
-
"flags": {
|
|
5849
|
-
"prod": {
|
|
5850
|
-
"aliases": [
|
|
5851
|
-
"production"
|
|
5852
|
-
],
|
|
5853
|
-
"description": "Create a new production deployment.",
|
|
5854
|
-
"name": "prod",
|
|
5855
|
-
"allowNo": false,
|
|
5856
|
-
"type": "boolean"
|
|
5857
|
-
},
|
|
5858
|
-
"alias": {
|
|
5859
|
-
"description": "Custom alias to assign to the new deployment.",
|
|
5860
|
-
"name": "alias",
|
|
5861
|
-
"hasDynamicHelp": false,
|
|
5862
|
-
"helpValue": "name",
|
|
5863
|
-
"multiple": false,
|
|
5864
|
-
"type": "option"
|
|
5865
|
-
},
|
|
5866
|
-
"id": {
|
|
5867
|
-
"description": "Custom unique identifier for the new deployment.",
|
|
5868
|
-
"name": "id",
|
|
5869
|
-
"hasDynamicHelp": false,
|
|
5870
|
-
"helpValue": "xyz123",
|
|
5871
|
-
"multiple": false,
|
|
5872
|
-
"type": "option"
|
|
5873
|
-
},
|
|
5874
|
-
"export-dir": {
|
|
5875
|
-
"description": "Directory where the Expo project was exported.",
|
|
5876
|
-
"name": "export-dir",
|
|
5877
|
-
"default": "dist",
|
|
5878
|
-
"hasDynamicHelp": false,
|
|
5879
|
-
"helpValue": "dir",
|
|
5880
|
-
"multiple": false,
|
|
5881
|
-
"type": "option"
|
|
5882
|
-
},
|
|
5883
|
-
"dry-run": {
|
|
5884
|
-
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
5885
|
-
"name": "dry-run",
|
|
5886
|
-
"allowNo": false,
|
|
5887
|
-
"type": "boolean"
|
|
5888
|
-
},
|
|
5889
|
-
"source-maps": {
|
|
5890
|
-
"description": "Include source maps in the deployment.",
|
|
5891
|
-
"name": "source-maps",
|
|
5892
|
-
"allowNo": true,
|
|
5893
|
-
"type": "boolean"
|
|
5894
|
-
},
|
|
5895
|
-
"environment": {
|
|
5896
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5897
|
-
"name": "environment",
|
|
5898
|
-
"hasDynamicHelp": false,
|
|
5899
|
-
"multiple": false,
|
|
5900
|
-
"type": "option"
|
|
5901
|
-
},
|
|
5902
|
-
"json": {
|
|
5903
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5904
|
-
"name": "json",
|
|
5905
|
-
"allowNo": false,
|
|
5906
|
-
"type": "boolean"
|
|
5907
|
-
},
|
|
5908
|
-
"non-interactive": {
|
|
5909
|
-
"description": "Run the command in non-interactive mode.",
|
|
5910
|
-
"name": "non-interactive",
|
|
5911
|
-
"noCacheDefault": true,
|
|
5912
|
-
"allowNo": false,
|
|
5913
|
-
"type": "boolean"
|
|
5914
|
-
}
|
|
5915
|
-
},
|
|
5916
|
-
"hasDynamicHelp": false,
|
|
5917
|
-
"hiddenAliases": [],
|
|
5918
|
-
"id": "deploy",
|
|
5919
|
-
"pluginAlias": "eas-cli",
|
|
5920
|
-
"pluginName": "eas-cli",
|
|
5921
|
-
"pluginType": "core",
|
|
5922
|
-
"state": "preview",
|
|
5923
|
-
"strict": true,
|
|
5924
|
-
"usage": [
|
|
5925
|
-
"deploy [options]",
|
|
5926
|
-
"deploy --prod"
|
|
5927
|
-
],
|
|
5928
|
-
"enableJsonFlag": false,
|
|
5929
|
-
"ContextOptions": {
|
|
5930
|
-
"LoggedIn": {
|
|
5931
|
-
"loggedIn": {}
|
|
5932
|
-
},
|
|
5933
|
-
"MaybeLoggedIn": {
|
|
5934
|
-
"maybeLoggedIn": {}
|
|
5935
|
-
},
|
|
5936
|
-
"DynamicLoggedIn": {
|
|
5937
|
-
"getDynamicLoggedInAsync": {}
|
|
5938
|
-
},
|
|
5939
|
-
"SessionManagment": {
|
|
5940
|
-
"sessionManager": {}
|
|
5941
|
-
},
|
|
5942
|
-
"OptionalProjectConfig": {
|
|
5943
|
-
"optionalPrivateProjectConfig": {}
|
|
5944
|
-
},
|
|
5945
|
-
"ProjectDir": {
|
|
5946
|
-
"projectDir": {}
|
|
5947
|
-
},
|
|
5948
|
-
"DynamicProjectConfig": {
|
|
5949
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5950
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5951
|
-
},
|
|
5952
|
-
"ProjectConfig": {
|
|
5953
|
-
"loggedIn": {},
|
|
5954
|
-
"privateProjectConfig": {}
|
|
5955
|
-
},
|
|
5956
|
-
"Analytics": {
|
|
5957
|
-
"analytics": {}
|
|
5958
|
-
},
|
|
5959
|
-
"Vcs": {
|
|
5960
|
-
"vcsClient": {}
|
|
5961
|
-
},
|
|
5962
|
-
"ServerSideEnvironmentVariables": {
|
|
5963
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
5964
|
-
},
|
|
5965
|
-
"ProjectId": {
|
|
5966
|
-
"projectId": {}
|
|
5967
|
-
}
|
|
5968
|
-
},
|
|
5969
|
-
"contextDefinition": {
|
|
5970
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5971
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
5972
|
-
"projectDir": {},
|
|
5973
|
-
"loggedIn": {}
|
|
5974
|
-
},
|
|
5975
|
-
"isESM": false,
|
|
5976
|
-
"relativePath": [
|
|
5977
|
-
"build",
|
|
5978
|
-
"commands",
|
|
5979
|
-
"deploy",
|
|
5980
|
-
"index.js"
|
|
5981
|
-
]
|
|
5982
|
-
},
|
|
5983
|
-
"metadata:lint": {
|
|
5984
|
-
"aliases": [],
|
|
5985
|
-
"args": {},
|
|
5986
|
-
"description": "validate the local store configuration",
|
|
5987
|
-
"flags": {
|
|
5988
|
-
"json": {
|
|
5989
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr",
|
|
5989
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr",
|
|
5990
5990
|
"name": "json",
|
|
5991
5991
|
"allowNo": false,
|
|
5992
5992
|
"type": "boolean"
|
|
@@ -7199,74 +7199,39 @@
|
|
|
7199
7199
|
"onboarding.js"
|
|
7200
7200
|
]
|
|
7201
7201
|
},
|
|
7202
|
-
"
|
|
7202
|
+
"simulator:get": {
|
|
7203
7203
|
"aliases": [],
|
|
7204
7204
|
"args": {},
|
|
7205
|
-
"description": "
|
|
7205
|
+
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7206
7206
|
"flags": {
|
|
7207
|
-
"
|
|
7208
|
-
"description": "
|
|
7209
|
-
"name": "
|
|
7210
|
-
"
|
|
7207
|
+
"id": {
|
|
7208
|
+
"description": "Device run session ID",
|
|
7209
|
+
"name": "id",
|
|
7210
|
+
"required": true,
|
|
7211
7211
|
"hasDynamicHelp": false,
|
|
7212
7212
|
"multiple": false,
|
|
7213
|
-
"options": [
|
|
7214
|
-
"account",
|
|
7215
|
-
"project"
|
|
7216
|
-
],
|
|
7217
7213
|
"type": "option"
|
|
7218
7214
|
},
|
|
7219
|
-
"
|
|
7220
|
-
"description": "
|
|
7221
|
-
"name": "
|
|
7222
|
-
"
|
|
7223
|
-
"
|
|
7224
|
-
"type": "
|
|
7225
|
-
}
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7229
|
-
|
|
7230
|
-
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
|
|
7234
|
-
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
"
|
|
7239
|
-
"string",
|
|
7240
|
-
"file"
|
|
7241
|
-
],
|
|
7242
|
-
"type": "option"
|
|
7243
|
-
},
|
|
7244
|
-
"force": {
|
|
7245
|
-
"description": "Delete and recreate existing secrets",
|
|
7246
|
-
"name": "force",
|
|
7247
|
-
"allowNo": false,
|
|
7248
|
-
"type": "boolean"
|
|
7249
|
-
},
|
|
7250
|
-
"non-interactive": {
|
|
7251
|
-
"description": "Run the command in non-interactive mode.",
|
|
7252
|
-
"name": "non-interactive",
|
|
7253
|
-
"noCacheDefault": true,
|
|
7254
|
-
"allowNo": false,
|
|
7255
|
-
"type": "boolean"
|
|
7256
|
-
}
|
|
7257
|
-
},
|
|
7258
|
-
"hasDynamicHelp": false,
|
|
7259
|
-
"hidden": true,
|
|
7260
|
-
"hiddenAliases": [],
|
|
7261
|
-
"id": "secret:create",
|
|
7262
|
-
"pluginAlias": "eas-cli",
|
|
7263
|
-
"pluginName": "eas-cli",
|
|
7264
|
-
"pluginType": "core",
|
|
7265
|
-
"strict": true,
|
|
7266
|
-
"enableJsonFlag": false,
|
|
7267
|
-
"ContextOptions": {
|
|
7268
|
-
"LoggedIn": {
|
|
7269
|
-
"loggedIn": {}
|
|
7215
|
+
"non-interactive": {
|
|
7216
|
+
"description": "Run the command in non-interactive mode.",
|
|
7217
|
+
"name": "non-interactive",
|
|
7218
|
+
"noCacheDefault": true,
|
|
7219
|
+
"allowNo": false,
|
|
7220
|
+
"type": "boolean"
|
|
7221
|
+
}
|
|
7222
|
+
},
|
|
7223
|
+
"hasDynamicHelp": false,
|
|
7224
|
+
"hidden": true,
|
|
7225
|
+
"hiddenAliases": [],
|
|
7226
|
+
"id": "simulator:get",
|
|
7227
|
+
"pluginAlias": "eas-cli",
|
|
7228
|
+
"pluginName": "eas-cli",
|
|
7229
|
+
"pluginType": "core",
|
|
7230
|
+
"strict": true,
|
|
7231
|
+
"enableJsonFlag": false,
|
|
7232
|
+
"ContextOptions": {
|
|
7233
|
+
"LoggedIn": {
|
|
7234
|
+
"loggedIn": {}
|
|
7270
7235
|
},
|
|
7271
7236
|
"MaybeLoggedIn": {
|
|
7272
7237
|
"maybeLoggedIn": {}
|
|
@@ -7305,25 +7270,48 @@
|
|
|
7305
7270
|
}
|
|
7306
7271
|
},
|
|
7307
7272
|
"contextDefinition": {
|
|
7308
|
-
"projectId": {},
|
|
7309
7273
|
"loggedIn": {}
|
|
7310
7274
|
},
|
|
7311
7275
|
"isESM": false,
|
|
7312
7276
|
"relativePath": [
|
|
7313
7277
|
"build",
|
|
7314
7278
|
"commands",
|
|
7315
|
-
"
|
|
7316
|
-
"
|
|
7279
|
+
"simulator",
|
|
7280
|
+
"get.js"
|
|
7317
7281
|
]
|
|
7318
7282
|
},
|
|
7319
|
-
"
|
|
7283
|
+
"simulator:start": {
|
|
7320
7284
|
"aliases": [],
|
|
7321
7285
|
"args": {},
|
|
7322
|
-
"description": "
|
|
7286
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7323
7287
|
"flags": {
|
|
7324
|
-
"
|
|
7325
|
-
"description": "
|
|
7326
|
-
"name": "
|
|
7288
|
+
"platform": {
|
|
7289
|
+
"description": "Device platform",
|
|
7290
|
+
"name": "platform",
|
|
7291
|
+
"required": true,
|
|
7292
|
+
"hasDynamicHelp": false,
|
|
7293
|
+
"multiple": false,
|
|
7294
|
+
"options": [
|
|
7295
|
+
"android",
|
|
7296
|
+
"ios"
|
|
7297
|
+
],
|
|
7298
|
+
"type": "option"
|
|
7299
|
+
},
|
|
7300
|
+
"type": {
|
|
7301
|
+
"description": "Type of device run session to create",
|
|
7302
|
+
"name": "type",
|
|
7303
|
+
"default": "agent-device",
|
|
7304
|
+
"hasDynamicHelp": false,
|
|
7305
|
+
"multiple": false,
|
|
7306
|
+
"options": [
|
|
7307
|
+
"agent-device",
|
|
7308
|
+
"serve-sim"
|
|
7309
|
+
],
|
|
7310
|
+
"type": "option"
|
|
7311
|
+
},
|
|
7312
|
+
"package-version": {
|
|
7313
|
+
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7314
|
+
"name": "package-version",
|
|
7327
7315
|
"hasDynamicHelp": false,
|
|
7328
7316
|
"multiple": false,
|
|
7329
7317
|
"type": "option"
|
|
@@ -7339,7 +7327,7 @@
|
|
|
7339
7327
|
"hasDynamicHelp": false,
|
|
7340
7328
|
"hidden": true,
|
|
7341
7329
|
"hiddenAliases": [],
|
|
7342
|
-
"id": "
|
|
7330
|
+
"id": "simulator:start",
|
|
7343
7331
|
"pluginAlias": "eas-cli",
|
|
7344
7332
|
"pluginName": "eas-cli",
|
|
7345
7333
|
"pluginType": "core",
|
|
@@ -7393,19 +7381,35 @@
|
|
|
7393
7381
|
"relativePath": [
|
|
7394
7382
|
"build",
|
|
7395
7383
|
"commands",
|
|
7396
|
-
"
|
|
7397
|
-
"
|
|
7384
|
+
"simulator",
|
|
7385
|
+
"start.js"
|
|
7398
7386
|
]
|
|
7399
7387
|
},
|
|
7400
|
-
"
|
|
7388
|
+
"simulator:stop": {
|
|
7401
7389
|
"aliases": [],
|
|
7402
7390
|
"args": {},
|
|
7403
|
-
"description": "
|
|
7404
|
-
"flags": {
|
|
7391
|
+
"description": "[EXPERIMENTAL] stop a remote simulator session on EAS by its device run session ID",
|
|
7392
|
+
"flags": {
|
|
7393
|
+
"id": {
|
|
7394
|
+
"description": "Device run session ID",
|
|
7395
|
+
"name": "id",
|
|
7396
|
+
"required": true,
|
|
7397
|
+
"hasDynamicHelp": false,
|
|
7398
|
+
"multiple": false,
|
|
7399
|
+
"type": "option"
|
|
7400
|
+
},
|
|
7401
|
+
"non-interactive": {
|
|
7402
|
+
"description": "Run the command in non-interactive mode.",
|
|
7403
|
+
"name": "non-interactive",
|
|
7404
|
+
"noCacheDefault": true,
|
|
7405
|
+
"allowNo": false,
|
|
7406
|
+
"type": "boolean"
|
|
7407
|
+
}
|
|
7408
|
+
},
|
|
7405
7409
|
"hasDynamicHelp": false,
|
|
7406
7410
|
"hidden": true,
|
|
7407
7411
|
"hiddenAliases": [],
|
|
7408
|
-
"id": "
|
|
7412
|
+
"id": "simulator:stop",
|
|
7409
7413
|
"pluginAlias": "eas-cli",
|
|
7410
7414
|
"pluginName": "eas-cli",
|
|
7411
7415
|
"pluginType": "core",
|
|
@@ -7452,59 +7456,51 @@
|
|
|
7452
7456
|
}
|
|
7453
7457
|
},
|
|
7454
7458
|
"contextDefinition": {
|
|
7455
|
-
"projectId": {},
|
|
7456
7459
|
"loggedIn": {}
|
|
7457
7460
|
},
|
|
7458
7461
|
"isESM": false,
|
|
7459
7462
|
"relativePath": [
|
|
7460
7463
|
"build",
|
|
7461
7464
|
"commands",
|
|
7462
|
-
"
|
|
7463
|
-
"
|
|
7465
|
+
"simulator",
|
|
7466
|
+
"stop.js"
|
|
7464
7467
|
]
|
|
7465
7468
|
},
|
|
7466
|
-
"
|
|
7469
|
+
"submit:internal": {
|
|
7467
7470
|
"aliases": [],
|
|
7468
7471
|
"args": {},
|
|
7469
|
-
"description": "read environment secrets from env file and store on the server",
|
|
7470
7472
|
"flags": {
|
|
7471
|
-
"
|
|
7472
|
-
"
|
|
7473
|
-
"
|
|
7474
|
-
"default": "project",
|
|
7473
|
+
"platform": {
|
|
7474
|
+
"name": "platform",
|
|
7475
|
+
"required": true,
|
|
7475
7476
|
"hasDynamicHelp": false,
|
|
7476
7477
|
"multiple": false,
|
|
7477
7478
|
"options": [
|
|
7478
|
-
"
|
|
7479
|
-
"
|
|
7479
|
+
"android",
|
|
7480
|
+
"ios"
|
|
7480
7481
|
],
|
|
7481
7482
|
"type": "option"
|
|
7482
7483
|
},
|
|
7483
|
-
"
|
|
7484
|
-
"description": "
|
|
7485
|
-
"name": "
|
|
7484
|
+
"profile": {
|
|
7485
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7486
|
+
"name": "profile",
|
|
7486
7487
|
"hasDynamicHelp": false,
|
|
7487
7488
|
"multiple": false,
|
|
7488
7489
|
"type": "option"
|
|
7489
7490
|
},
|
|
7490
|
-
"
|
|
7491
|
-
"description": "
|
|
7492
|
-
"name": "
|
|
7493
|
-
"
|
|
7494
|
-
"
|
|
7495
|
-
|
|
7496
|
-
|
|
7497
|
-
"description": "Run the command in non-interactive mode.",
|
|
7498
|
-
"name": "non-interactive",
|
|
7499
|
-
"noCacheDefault": true,
|
|
7500
|
-
"allowNo": false,
|
|
7501
|
-
"type": "boolean"
|
|
7491
|
+
"id": {
|
|
7492
|
+
"description": "ID of the build to submit",
|
|
7493
|
+
"name": "id",
|
|
7494
|
+
"required": true,
|
|
7495
|
+
"hasDynamicHelp": false,
|
|
7496
|
+
"multiple": false,
|
|
7497
|
+
"type": "option"
|
|
7502
7498
|
}
|
|
7503
7499
|
},
|
|
7504
7500
|
"hasDynamicHelp": false,
|
|
7505
7501
|
"hidden": true,
|
|
7506
7502
|
"hiddenAliases": [],
|
|
7507
|
-
"id": "
|
|
7503
|
+
"id": "submit:internal",
|
|
7508
7504
|
"pluginAlias": "eas-cli",
|
|
7509
7505
|
"pluginName": "eas-cli",
|
|
7510
7506
|
"pluginType": "core",
|
|
@@ -7551,48 +7547,43 @@
|
|
|
7551
7547
|
}
|
|
7552
7548
|
},
|
|
7553
7549
|
"contextDefinition": {
|
|
7554
|
-
"
|
|
7555
|
-
"
|
|
7550
|
+
"loggedIn": {},
|
|
7551
|
+
"privateProjectConfig": {},
|
|
7552
|
+
"projectDir": {},
|
|
7553
|
+
"analytics": {},
|
|
7554
|
+
"vcsClient": {}
|
|
7556
7555
|
},
|
|
7557
7556
|
"isESM": false,
|
|
7558
7557
|
"relativePath": [
|
|
7559
7558
|
"build",
|
|
7560
7559
|
"commands",
|
|
7561
|
-
"
|
|
7562
|
-
"
|
|
7560
|
+
"submit",
|
|
7561
|
+
"internal.js"
|
|
7563
7562
|
]
|
|
7564
7563
|
},
|
|
7565
|
-
"
|
|
7564
|
+
"update:configure": {
|
|
7566
7565
|
"aliases": [],
|
|
7567
7566
|
"args": {},
|
|
7568
|
-
"description": "
|
|
7567
|
+
"description": "configure the project to support EAS Update",
|
|
7569
7568
|
"flags": {
|
|
7570
7569
|
"platform": {
|
|
7571
|
-
"
|
|
7570
|
+
"char": "p",
|
|
7571
|
+
"description": "Platform to configure",
|
|
7572
7572
|
"name": "platform",
|
|
7573
|
-
"
|
|
7573
|
+
"default": "all",
|
|
7574
7574
|
"hasDynamicHelp": false,
|
|
7575
7575
|
"multiple": false,
|
|
7576
7576
|
"options": [
|
|
7577
7577
|
"android",
|
|
7578
|
-
"ios"
|
|
7579
|
-
|
|
7580
|
-
"type": "option"
|
|
7581
|
-
},
|
|
7582
|
-
"type": {
|
|
7583
|
-
"description": "Type of device run session to create",
|
|
7584
|
-
"name": "type",
|
|
7585
|
-
"default": "agent-device",
|
|
7586
|
-
"hasDynamicHelp": false,
|
|
7587
|
-
"multiple": false,
|
|
7588
|
-
"options": [
|
|
7589
|
-
"agent-device"
|
|
7578
|
+
"ios",
|
|
7579
|
+
"all"
|
|
7590
7580
|
],
|
|
7591
7581
|
"type": "option"
|
|
7592
7582
|
},
|
|
7593
|
-
"
|
|
7594
|
-
"description": "
|
|
7595
|
-
"name": "
|
|
7583
|
+
"environment": {
|
|
7584
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
|
|
7585
|
+
"name": "environment",
|
|
7586
|
+
"required": false,
|
|
7596
7587
|
"hasDynamicHelp": false,
|
|
7597
7588
|
"multiple": false,
|
|
7598
7589
|
"type": "option"
|
|
@@ -7606,9 +7597,8 @@
|
|
|
7606
7597
|
}
|
|
7607
7598
|
},
|
|
7608
7599
|
"hasDynamicHelp": false,
|
|
7609
|
-
"hidden": true,
|
|
7610
7600
|
"hiddenAliases": [],
|
|
7611
|
-
"id": "
|
|
7601
|
+
"id": "update:configure",
|
|
7612
7602
|
"pluginAlias": "eas-cli",
|
|
7613
7603
|
"pluginName": "eas-cli",
|
|
7614
7604
|
"pluginType": "core",
|
|
@@ -7655,29 +7645,34 @@
|
|
|
7655
7645
|
}
|
|
7656
7646
|
},
|
|
7657
7647
|
"contextDefinition": {
|
|
7658
|
-
"
|
|
7659
|
-
"
|
|
7648
|
+
"loggedIn": {},
|
|
7649
|
+
"privateProjectConfig": {},
|
|
7650
|
+
"vcsClient": {}
|
|
7660
7651
|
},
|
|
7661
7652
|
"isESM": false,
|
|
7662
7653
|
"relativePath": [
|
|
7663
7654
|
"build",
|
|
7664
7655
|
"commands",
|
|
7665
|
-
"
|
|
7666
|
-
"
|
|
7656
|
+
"update",
|
|
7657
|
+
"configure.js"
|
|
7667
7658
|
]
|
|
7668
7659
|
},
|
|
7669
|
-
"
|
|
7660
|
+
"update:delete": {
|
|
7670
7661
|
"aliases": [],
|
|
7671
|
-
"args": {
|
|
7672
|
-
|
|
7662
|
+
"args": {
|
|
7663
|
+
"groupId": {
|
|
7664
|
+
"description": "The ID of an update group to delete.",
|
|
7665
|
+
"name": "groupId",
|
|
7666
|
+
"required": true
|
|
7667
|
+
}
|
|
7668
|
+
},
|
|
7669
|
+
"description": "delete all the updates in an update group",
|
|
7673
7670
|
"flags": {
|
|
7674
|
-
"
|
|
7675
|
-
"description": "
|
|
7676
|
-
"name": "
|
|
7677
|
-
"
|
|
7678
|
-
"
|
|
7679
|
-
"multiple": false,
|
|
7680
|
-
"type": "option"
|
|
7671
|
+
"json": {
|
|
7672
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
7673
|
+
"name": "json",
|
|
7674
|
+
"allowNo": false,
|
|
7675
|
+
"type": "boolean"
|
|
7681
7676
|
},
|
|
7682
7677
|
"non-interactive": {
|
|
7683
7678
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -7688,9 +7683,8 @@
|
|
|
7688
7683
|
}
|
|
7689
7684
|
},
|
|
7690
7685
|
"hasDynamicHelp": false,
|
|
7691
|
-
"hidden": true,
|
|
7692
7686
|
"hiddenAliases": [],
|
|
7693
|
-
"id": "
|
|
7687
|
+
"id": "update:delete",
|
|
7694
7688
|
"pluginAlias": "eas-cli",
|
|
7695
7689
|
"pluginName": "eas-cli",
|
|
7696
7690
|
"pluginType": "core",
|
|
@@ -7743,45 +7737,52 @@
|
|
|
7743
7737
|
"relativePath": [
|
|
7744
7738
|
"build",
|
|
7745
7739
|
"commands",
|
|
7746
|
-
"
|
|
7747
|
-
"
|
|
7740
|
+
"update",
|
|
7741
|
+
"delete.js"
|
|
7748
7742
|
]
|
|
7749
7743
|
},
|
|
7750
|
-
"
|
|
7744
|
+
"update:edit": {
|
|
7751
7745
|
"aliases": [],
|
|
7752
|
-
"args": {
|
|
7746
|
+
"args": {
|
|
7747
|
+
"groupId": {
|
|
7748
|
+
"description": "The ID of an update group to edit.",
|
|
7749
|
+
"name": "groupId"
|
|
7750
|
+
}
|
|
7751
|
+
},
|
|
7752
|
+
"description": "edit all the updates in an update group",
|
|
7753
7753
|
"flags": {
|
|
7754
|
-
"
|
|
7755
|
-
"
|
|
7756
|
-
"
|
|
7754
|
+
"rollout-percentage": {
|
|
7755
|
+
"description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
|
|
7756
|
+
"name": "rollout-percentage",
|
|
7757
|
+
"required": false,
|
|
7757
7758
|
"hasDynamicHelp": false,
|
|
7758
7759
|
"multiple": false,
|
|
7759
|
-
"options": [
|
|
7760
|
-
"android",
|
|
7761
|
-
"ios"
|
|
7762
|
-
],
|
|
7763
7760
|
"type": "option"
|
|
7764
7761
|
},
|
|
7765
|
-
"
|
|
7766
|
-
"description": "
|
|
7767
|
-
"name": "
|
|
7762
|
+
"branch": {
|
|
7763
|
+
"description": "Branch for which to list updates to select from",
|
|
7764
|
+
"name": "branch",
|
|
7768
7765
|
"hasDynamicHelp": false,
|
|
7769
7766
|
"multiple": false,
|
|
7770
7767
|
"type": "option"
|
|
7771
7768
|
},
|
|
7772
|
-
"
|
|
7773
|
-
"description": "
|
|
7774
|
-
"name": "
|
|
7775
|
-
"
|
|
7776
|
-
"
|
|
7777
|
-
|
|
7778
|
-
|
|
7769
|
+
"json": {
|
|
7770
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
7771
|
+
"name": "json",
|
|
7772
|
+
"allowNo": false,
|
|
7773
|
+
"type": "boolean"
|
|
7774
|
+
},
|
|
7775
|
+
"non-interactive": {
|
|
7776
|
+
"description": "Run the command in non-interactive mode.",
|
|
7777
|
+
"name": "non-interactive",
|
|
7778
|
+
"noCacheDefault": true,
|
|
7779
|
+
"allowNo": false,
|
|
7780
|
+
"type": "boolean"
|
|
7779
7781
|
}
|
|
7780
7782
|
},
|
|
7781
7783
|
"hasDynamicHelp": false,
|
|
7782
|
-
"hidden": true,
|
|
7783
7784
|
"hiddenAliases": [],
|
|
7784
|
-
"id": "
|
|
7785
|
+
"id": "update:edit",
|
|
7785
7786
|
"pluginAlias": "eas-cli",
|
|
7786
7787
|
"pluginName": "eas-cli",
|
|
7787
7788
|
"pluginType": "core",
|
|
@@ -7828,29 +7829,102 @@
|
|
|
7828
7829
|
}
|
|
7829
7830
|
},
|
|
7830
7831
|
"contextDefinition": {
|
|
7831
|
-
"
|
|
7832
|
-
"
|
|
7833
|
-
"projectDir": {},
|
|
7834
|
-
"analytics": {},
|
|
7835
|
-
"vcsClient": {}
|
|
7832
|
+
"projectId": {},
|
|
7833
|
+
"loggedIn": {}
|
|
7836
7834
|
},
|
|
7837
7835
|
"isESM": false,
|
|
7838
7836
|
"relativePath": [
|
|
7839
7837
|
"build",
|
|
7840
7838
|
"commands",
|
|
7841
|
-
"
|
|
7842
|
-
"
|
|
7839
|
+
"update",
|
|
7840
|
+
"edit.js"
|
|
7843
7841
|
]
|
|
7844
7842
|
},
|
|
7845
|
-
"update
|
|
7843
|
+
"update": {
|
|
7846
7844
|
"aliases": [],
|
|
7847
7845
|
"args": {},
|
|
7848
|
-
"description": "
|
|
7846
|
+
"description": "publish an update group",
|
|
7849
7847
|
"flags": {
|
|
7848
|
+
"branch": {
|
|
7849
|
+
"description": "Branch to publish the update group on",
|
|
7850
|
+
"name": "branch",
|
|
7851
|
+
"required": false,
|
|
7852
|
+
"hasDynamicHelp": false,
|
|
7853
|
+
"multiple": false,
|
|
7854
|
+
"type": "option"
|
|
7855
|
+
},
|
|
7856
|
+
"channel": {
|
|
7857
|
+
"description": "Channel that the published update should affect",
|
|
7858
|
+
"name": "channel",
|
|
7859
|
+
"required": false,
|
|
7860
|
+
"hasDynamicHelp": false,
|
|
7861
|
+
"multiple": false,
|
|
7862
|
+
"type": "option"
|
|
7863
|
+
},
|
|
7864
|
+
"message": {
|
|
7865
|
+
"char": "m",
|
|
7866
|
+
"description": "A short message describing the update",
|
|
7867
|
+
"name": "message",
|
|
7868
|
+
"required": false,
|
|
7869
|
+
"hasDynamicHelp": false,
|
|
7870
|
+
"multiple": false,
|
|
7871
|
+
"type": "option"
|
|
7872
|
+
},
|
|
7873
|
+
"input-dir": {
|
|
7874
|
+
"description": "Location of the bundle",
|
|
7875
|
+
"name": "input-dir",
|
|
7876
|
+
"required": false,
|
|
7877
|
+
"default": "dist",
|
|
7878
|
+
"hasDynamicHelp": false,
|
|
7879
|
+
"multiple": false,
|
|
7880
|
+
"type": "option"
|
|
7881
|
+
},
|
|
7882
|
+
"skip-bundler": {
|
|
7883
|
+
"description": "Skip running Expo CLI to bundle the app before publishing",
|
|
7884
|
+
"name": "skip-bundler",
|
|
7885
|
+
"allowNo": false,
|
|
7886
|
+
"type": "boolean"
|
|
7887
|
+
},
|
|
7888
|
+
"clear-cache": {
|
|
7889
|
+
"description": "Clear the bundler cache before publishing",
|
|
7890
|
+
"name": "clear-cache",
|
|
7891
|
+
"allowNo": false,
|
|
7892
|
+
"type": "boolean"
|
|
7893
|
+
},
|
|
7894
|
+
"no-bytecode": {
|
|
7895
|
+
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
7896
|
+
"hidden": true,
|
|
7897
|
+
"name": "no-bytecode",
|
|
7898
|
+
"allowNo": false,
|
|
7899
|
+
"type": "boolean"
|
|
7900
|
+
},
|
|
7901
|
+
"source-maps": {
|
|
7902
|
+
"description": "Emit source maps. Options: true (default), inline, false",
|
|
7903
|
+
"hidden": true,
|
|
7904
|
+
"name": "source-maps",
|
|
7905
|
+
"default": "true",
|
|
7906
|
+
"hasDynamicHelp": false,
|
|
7907
|
+
"multiple": false,
|
|
7908
|
+
"type": "option"
|
|
7909
|
+
},
|
|
7910
|
+
"emit-metadata": {
|
|
7911
|
+
"description": "Emit \"eas-update-metadata.json\" in the bundle folder with detailed information about the generated updates",
|
|
7912
|
+
"name": "emit-metadata",
|
|
7913
|
+
"allowNo": false,
|
|
7914
|
+
"type": "boolean"
|
|
7915
|
+
},
|
|
7916
|
+
"rollout-percentage": {
|
|
7917
|
+
"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.",
|
|
7918
|
+
"name": "rollout-percentage",
|
|
7919
|
+
"required": false,
|
|
7920
|
+
"hasDynamicHelp": false,
|
|
7921
|
+
"multiple": false,
|
|
7922
|
+
"type": "option"
|
|
7923
|
+
},
|
|
7850
7924
|
"platform": {
|
|
7851
7925
|
"char": "p",
|
|
7852
|
-
"description": "Platform to configure",
|
|
7853
7926
|
"name": "platform",
|
|
7927
|
+
"required": false,
|
|
7854
7928
|
"default": "all",
|
|
7855
7929
|
"hasDynamicHelp": false,
|
|
7856
7930
|
"multiple": false,
|
|
@@ -7861,14 +7935,34 @@
|
|
|
7861
7935
|
],
|
|
7862
7936
|
"type": "option"
|
|
7863
7937
|
},
|
|
7938
|
+
"auto": {
|
|
7939
|
+
"description": "Use the current git branch and commit message for the EAS branch and update message",
|
|
7940
|
+
"name": "auto",
|
|
7941
|
+
"allowNo": false,
|
|
7942
|
+
"type": "boolean"
|
|
7943
|
+
},
|
|
7944
|
+
"private-key-path": {
|
|
7945
|
+
"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/",
|
|
7946
|
+
"name": "private-key-path",
|
|
7947
|
+
"required": false,
|
|
7948
|
+
"hasDynamicHelp": false,
|
|
7949
|
+
"multiple": false,
|
|
7950
|
+
"type": "option"
|
|
7951
|
+
},
|
|
7864
7952
|
"environment": {
|
|
7865
|
-
"description": "Environment to use for the server-side defined EAS environment variables during command execution, e.g. \"production\", \"preview\", \"development\".",
|
|
7953
|
+
"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.",
|
|
7866
7954
|
"name": "environment",
|
|
7867
7955
|
"required": false,
|
|
7868
7956
|
"hasDynamicHelp": false,
|
|
7869
7957
|
"multiple": false,
|
|
7870
7958
|
"type": "option"
|
|
7871
7959
|
},
|
|
7960
|
+
"json": {
|
|
7961
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
7962
|
+
"name": "json",
|
|
7963
|
+
"allowNo": false,
|
|
7964
|
+
"type": "boolean"
|
|
7965
|
+
},
|
|
7872
7966
|
"non-interactive": {
|
|
7873
7967
|
"description": "Run the command in non-interactive mode.",
|
|
7874
7968
|
"name": "non-interactive",
|
|
@@ -7879,7 +7973,7 @@
|
|
|
7879
7973
|
},
|
|
7880
7974
|
"hasDynamicHelp": false,
|
|
7881
7975
|
"hiddenAliases": [],
|
|
7882
|
-
"id": "update
|
|
7976
|
+
"id": "update",
|
|
7883
7977
|
"pluginAlias": "eas-cli",
|
|
7884
7978
|
"pluginName": "eas-cli",
|
|
7885
7979
|
"pluginType": "core",
|
|
@@ -7926,29 +8020,73 @@
|
|
|
7926
8020
|
}
|
|
7927
8021
|
},
|
|
7928
8022
|
"contextDefinition": {
|
|
8023
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
8024
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
7929
8025
|
"loggedIn": {},
|
|
7930
|
-
"
|
|
7931
|
-
"
|
|
8026
|
+
"vcsClient": {},
|
|
8027
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
7932
8028
|
},
|
|
7933
8029
|
"isESM": false,
|
|
7934
8030
|
"relativePath": [
|
|
7935
8031
|
"build",
|
|
7936
8032
|
"commands",
|
|
7937
8033
|
"update",
|
|
7938
|
-
"
|
|
8034
|
+
"index.js"
|
|
7939
8035
|
]
|
|
7940
8036
|
},
|
|
7941
|
-
"update:
|
|
8037
|
+
"update:insights": {
|
|
7942
8038
|
"aliases": [],
|
|
7943
8039
|
"args": {
|
|
7944
8040
|
"groupId": {
|
|
7945
|
-
"description": "The ID of an update group
|
|
8041
|
+
"description": "The ID of an update group.",
|
|
7946
8042
|
"name": "groupId",
|
|
7947
8043
|
"required": true
|
|
7948
8044
|
}
|
|
7949
8045
|
},
|
|
7950
|
-
"description": "
|
|
8046
|
+
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
7951
8047
|
"flags": {
|
|
8048
|
+
"platform": {
|
|
8049
|
+
"description": "Filter to a single platform.",
|
|
8050
|
+
"name": "platform",
|
|
8051
|
+
"hasDynamicHelp": false,
|
|
8052
|
+
"multiple": false,
|
|
8053
|
+
"options": [
|
|
8054
|
+
"ios",
|
|
8055
|
+
"android"
|
|
8056
|
+
],
|
|
8057
|
+
"type": "option"
|
|
8058
|
+
},
|
|
8059
|
+
"days": {
|
|
8060
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
8061
|
+
"exclusive": [
|
|
8062
|
+
"start",
|
|
8063
|
+
"end"
|
|
8064
|
+
],
|
|
8065
|
+
"name": "days",
|
|
8066
|
+
"hasDynamicHelp": false,
|
|
8067
|
+
"multiple": false,
|
|
8068
|
+
"type": "option"
|
|
8069
|
+
},
|
|
8070
|
+
"start": {
|
|
8071
|
+
"description": "Start of insights time range (ISO date).",
|
|
8072
|
+
"exclusive": [
|
|
8073
|
+
"days"
|
|
8074
|
+
],
|
|
8075
|
+
"name": "start",
|
|
8076
|
+
"hasDynamicHelp": false,
|
|
8077
|
+
"multiple": false,
|
|
8078
|
+
"type": "option"
|
|
8079
|
+
},
|
|
8080
|
+
"end": {
|
|
8081
|
+
"description": "End of insights time range (ISO date).",
|
|
8082
|
+
"exclusive": [
|
|
8083
|
+
"days"
|
|
8084
|
+
],
|
|
8085
|
+
"name": "end",
|
|
8086
|
+
"hasDynamicHelp": false,
|
|
8087
|
+
"multiple": false,
|
|
8088
|
+
"type": "option"
|
|
8089
|
+
},
|
|
7952
8090
|
"json": {
|
|
7953
8091
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
7954
8092
|
"name": "json",
|
|
@@ -7965,7 +8103,7 @@
|
|
|
7965
8103
|
},
|
|
7966
8104
|
"hasDynamicHelp": false,
|
|
7967
8105
|
"hiddenAliases": [],
|
|
7968
|
-
"id": "update:
|
|
8106
|
+
"id": "update:insights",
|
|
7969
8107
|
"pluginAlias": "eas-cli",
|
|
7970
8108
|
"pluginName": "eas-cli",
|
|
7971
8109
|
"pluginType": "core",
|
|
@@ -8019,59 +8157,92 @@
|
|
|
8019
8157
|
"build",
|
|
8020
8158
|
"commands",
|
|
8021
8159
|
"update",
|
|
8022
|
-
"
|
|
8160
|
+
"insights.js"
|
|
8023
8161
|
]
|
|
8024
8162
|
},
|
|
8025
|
-
"update:
|
|
8163
|
+
"update:list": {
|
|
8026
8164
|
"aliases": [],
|
|
8027
|
-
"args": {
|
|
8028
|
-
|
|
8029
|
-
"description": "The ID of an update group to edit.",
|
|
8030
|
-
"name": "groupId"
|
|
8031
|
-
}
|
|
8032
|
-
},
|
|
8033
|
-
"description": "edit all the updates in an update group",
|
|
8165
|
+
"args": {},
|
|
8166
|
+
"description": "view the recent updates",
|
|
8034
8167
|
"flags": {
|
|
8035
|
-
"rollout-percentage": {
|
|
8036
|
-
"description": "Rollout percentage to set for a rollout update. The specified number must be an integer between 1 and 100.",
|
|
8037
|
-
"name": "rollout-percentage",
|
|
8038
|
-
"required": false,
|
|
8039
|
-
"hasDynamicHelp": false,
|
|
8040
|
-
"multiple": false,
|
|
8041
|
-
"type": "option"
|
|
8042
|
-
},
|
|
8043
8168
|
"branch": {
|
|
8044
|
-
"description": "
|
|
8169
|
+
"description": "List updates only on this branch",
|
|
8170
|
+
"exclusive": [
|
|
8171
|
+
"all"
|
|
8172
|
+
],
|
|
8045
8173
|
"name": "branch",
|
|
8046
8174
|
"hasDynamicHelp": false,
|
|
8047
8175
|
"multiple": false,
|
|
8048
8176
|
"type": "option"
|
|
8049
8177
|
},
|
|
8050
|
-
"
|
|
8051
|
-
"description": "
|
|
8052
|
-
"
|
|
8178
|
+
"all": {
|
|
8179
|
+
"description": "List updates on all branches",
|
|
8180
|
+
"exclusive": [
|
|
8181
|
+
"branch"
|
|
8182
|
+
],
|
|
8183
|
+
"name": "all",
|
|
8053
8184
|
"allowNo": false,
|
|
8054
8185
|
"type": "boolean"
|
|
8055
8186
|
},
|
|
8056
|
-
"
|
|
8057
|
-
"
|
|
8058
|
-
"
|
|
8059
|
-
"
|
|
8060
|
-
"
|
|
8061
|
-
"
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
|
|
8067
|
-
|
|
8068
|
-
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
"
|
|
8187
|
+
"platform": {
|
|
8188
|
+
"char": "p",
|
|
8189
|
+
"description": "Filter updates by platform",
|
|
8190
|
+
"name": "platform",
|
|
8191
|
+
"hasDynamicHelp": false,
|
|
8192
|
+
"multiple": false,
|
|
8193
|
+
"options": [
|
|
8194
|
+
"android",
|
|
8195
|
+
"ios",
|
|
8196
|
+
"all"
|
|
8197
|
+
],
|
|
8198
|
+
"type": "option"
|
|
8199
|
+
},
|
|
8200
|
+
"runtime-version": {
|
|
8201
|
+
"description": "Filter updates by runtime version",
|
|
8202
|
+
"name": "runtime-version",
|
|
8203
|
+
"hasDynamicHelp": false,
|
|
8204
|
+
"multiple": false,
|
|
8205
|
+
"type": "option"
|
|
8206
|
+
},
|
|
8207
|
+
"offset": {
|
|
8208
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
8209
|
+
"name": "offset",
|
|
8210
|
+
"hasDynamicHelp": false,
|
|
8211
|
+
"multiple": false,
|
|
8212
|
+
"type": "option"
|
|
8213
|
+
},
|
|
8214
|
+
"limit": {
|
|
8215
|
+
"description": "The number of items to fetch each query. Defaults to 25 and is capped at 50.",
|
|
8216
|
+
"name": "limit",
|
|
8217
|
+
"hasDynamicHelp": false,
|
|
8218
|
+
"multiple": false,
|
|
8219
|
+
"type": "option"
|
|
8220
|
+
},
|
|
8221
|
+
"json": {
|
|
8222
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8223
|
+
"name": "json",
|
|
8224
|
+
"allowNo": false,
|
|
8225
|
+
"type": "boolean"
|
|
8226
|
+
},
|
|
8227
|
+
"non-interactive": {
|
|
8228
|
+
"description": "Run the command in non-interactive mode.",
|
|
8229
|
+
"name": "non-interactive",
|
|
8230
|
+
"noCacheDefault": true,
|
|
8231
|
+
"allowNo": false,
|
|
8232
|
+
"type": "boolean"
|
|
8233
|
+
}
|
|
8234
|
+
},
|
|
8235
|
+
"hasDynamicHelp": false,
|
|
8236
|
+
"hiddenAliases": [],
|
|
8237
|
+
"id": "update:list",
|
|
8238
|
+
"pluginAlias": "eas-cli",
|
|
8239
|
+
"pluginName": "eas-cli",
|
|
8240
|
+
"pluginType": "core",
|
|
8241
|
+
"strict": true,
|
|
8242
|
+
"enableJsonFlag": false,
|
|
8243
|
+
"ContextOptions": {
|
|
8244
|
+
"LoggedIn": {
|
|
8245
|
+
"loggedIn": {}
|
|
8075
8246
|
},
|
|
8076
8247
|
"MaybeLoggedIn": {
|
|
8077
8248
|
"maybeLoggedIn": {}
|
|
@@ -8118,85 +8289,71 @@
|
|
|
8118
8289
|
"build",
|
|
8119
8290
|
"commands",
|
|
8120
8291
|
"update",
|
|
8121
|
-
"
|
|
8292
|
+
"list.js"
|
|
8122
8293
|
]
|
|
8123
8294
|
},
|
|
8124
|
-
"update": {
|
|
8295
|
+
"update:republish": {
|
|
8125
8296
|
"aliases": [],
|
|
8126
8297
|
"args": {},
|
|
8127
|
-
"description": "
|
|
8298
|
+
"description": "roll back to an existing update",
|
|
8128
8299
|
"flags": {
|
|
8129
|
-
"
|
|
8130
|
-
"description": "
|
|
8131
|
-
"
|
|
8132
|
-
|
|
8300
|
+
"channel": {
|
|
8301
|
+
"description": "Channel name to select an update group to republish from",
|
|
8302
|
+
"exclusive": [
|
|
8303
|
+
"branch",
|
|
8304
|
+
"group"
|
|
8305
|
+
],
|
|
8306
|
+
"name": "channel",
|
|
8133
8307
|
"hasDynamicHelp": false,
|
|
8134
8308
|
"multiple": false,
|
|
8135
8309
|
"type": "option"
|
|
8136
8310
|
},
|
|
8137
|
-
"
|
|
8138
|
-
"description": "
|
|
8139
|
-
"
|
|
8140
|
-
|
|
8311
|
+
"branch": {
|
|
8312
|
+
"description": "Branch name to select an update group to republish from",
|
|
8313
|
+
"exclusive": [
|
|
8314
|
+
"channel",
|
|
8315
|
+
"group"
|
|
8316
|
+
],
|
|
8317
|
+
"name": "branch",
|
|
8141
8318
|
"hasDynamicHelp": false,
|
|
8142
8319
|
"multiple": false,
|
|
8143
8320
|
"type": "option"
|
|
8144
8321
|
},
|
|
8145
|
-
"
|
|
8146
|
-
"
|
|
8147
|
-
"
|
|
8148
|
-
|
|
8149
|
-
|
|
8322
|
+
"group": {
|
|
8323
|
+
"description": "Update group ID to republish",
|
|
8324
|
+
"exclusive": [
|
|
8325
|
+
"branch",
|
|
8326
|
+
"channel"
|
|
8327
|
+
],
|
|
8328
|
+
"name": "group",
|
|
8150
8329
|
"hasDynamicHelp": false,
|
|
8151
8330
|
"multiple": false,
|
|
8152
8331
|
"type": "option"
|
|
8153
8332
|
},
|
|
8154
|
-
"
|
|
8155
|
-
"description": "
|
|
8156
|
-
"
|
|
8157
|
-
|
|
8158
|
-
|
|
8333
|
+
"destination-channel": {
|
|
8334
|
+
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
8335
|
+
"exclusive": [
|
|
8336
|
+
"destination-branch"
|
|
8337
|
+
],
|
|
8338
|
+
"name": "destination-channel",
|
|
8159
8339
|
"hasDynamicHelp": false,
|
|
8160
8340
|
"multiple": false,
|
|
8161
8341
|
"type": "option"
|
|
8162
8342
|
},
|
|
8163
|
-
"
|
|
8164
|
-
"description": "
|
|
8165
|
-
"
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
"clear-cache": {
|
|
8170
|
-
"description": "Clear the bundler cache before publishing",
|
|
8171
|
-
"name": "clear-cache",
|
|
8172
|
-
"allowNo": false,
|
|
8173
|
-
"type": "boolean"
|
|
8174
|
-
},
|
|
8175
|
-
"no-bytecode": {
|
|
8176
|
-
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
8177
|
-
"hidden": true,
|
|
8178
|
-
"name": "no-bytecode",
|
|
8179
|
-
"allowNo": false,
|
|
8180
|
-
"type": "boolean"
|
|
8181
|
-
},
|
|
8182
|
-
"source-maps": {
|
|
8183
|
-
"description": "Emit source maps. Options: true (default), inline, false",
|
|
8184
|
-
"hidden": true,
|
|
8185
|
-
"name": "source-maps",
|
|
8186
|
-
"default": "true",
|
|
8343
|
+
"destination-branch": {
|
|
8344
|
+
"description": "Branch name to republish to if republishing to a different branch",
|
|
8345
|
+
"exclusive": [
|
|
8346
|
+
"destination-channel"
|
|
8347
|
+
],
|
|
8348
|
+
"name": "destination-branch",
|
|
8187
8349
|
"hasDynamicHelp": false,
|
|
8188
8350
|
"multiple": false,
|
|
8189
8351
|
"type": "option"
|
|
8190
8352
|
},
|
|
8191
|
-
"
|
|
8192
|
-
"
|
|
8193
|
-
"
|
|
8194
|
-
"
|
|
8195
|
-
"type": "boolean"
|
|
8196
|
-
},
|
|
8197
|
-
"rollout-percentage": {
|
|
8198
|
-
"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.",
|
|
8199
|
-
"name": "rollout-percentage",
|
|
8353
|
+
"message": {
|
|
8354
|
+
"char": "m",
|
|
8355
|
+
"description": "Short message describing the republished update group",
|
|
8356
|
+
"name": "message",
|
|
8200
8357
|
"required": false,
|
|
8201
8358
|
"hasDynamicHelp": false,
|
|
8202
8359
|
"multiple": false,
|
|
@@ -8216,12 +8373,6 @@
|
|
|
8216
8373
|
],
|
|
8217
8374
|
"type": "option"
|
|
8218
8375
|
},
|
|
8219
|
-
"auto": {
|
|
8220
|
-
"description": "Use the current git branch and commit message for the EAS branch and update message",
|
|
8221
|
-
"name": "auto",
|
|
8222
|
-
"allowNo": false,
|
|
8223
|
-
"type": "boolean"
|
|
8224
|
-
},
|
|
8225
8376
|
"private-key-path": {
|
|
8226
8377
|
"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/",
|
|
8227
8378
|
"name": "private-key-path",
|
|
@@ -8230,9 +8381,9 @@
|
|
|
8230
8381
|
"multiple": false,
|
|
8231
8382
|
"type": "option"
|
|
8232
8383
|
},
|
|
8233
|
-
"
|
|
8234
|
-
"description": "
|
|
8235
|
-
"name": "
|
|
8384
|
+
"rollout-percentage": {
|
|
8385
|
+
"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.",
|
|
8386
|
+
"name": "rollout-percentage",
|
|
8236
8387
|
"required": false,
|
|
8237
8388
|
"hasDynamicHelp": false,
|
|
8238
8389
|
"multiple": false,
|
|
@@ -8254,7 +8405,7 @@
|
|
|
8254
8405
|
},
|
|
8255
8406
|
"hasDynamicHelp": false,
|
|
8256
8407
|
"hiddenAliases": [],
|
|
8257
|
-
"id": "update",
|
|
8408
|
+
"id": "update:republish",
|
|
8258
8409
|
"pluginAlias": "eas-cli",
|
|
8259
8410
|
"pluginName": "eas-cli",
|
|
8260
8411
|
"pluginType": "core",
|
|
@@ -8301,69 +8452,68 @@
|
|
|
8301
8452
|
}
|
|
8302
8453
|
},
|
|
8303
8454
|
"contextDefinition": {
|
|
8304
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
8305
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
8306
8455
|
"loggedIn": {},
|
|
8307
|
-
"
|
|
8308
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
8456
|
+
"privateProjectConfig": {}
|
|
8309
8457
|
},
|
|
8310
8458
|
"isESM": false,
|
|
8311
8459
|
"relativePath": [
|
|
8312
8460
|
"build",
|
|
8313
8461
|
"commands",
|
|
8314
8462
|
"update",
|
|
8315
|
-
"
|
|
8463
|
+
"republish.js"
|
|
8316
8464
|
]
|
|
8317
8465
|
},
|
|
8318
|
-
"update:
|
|
8466
|
+
"update:revert-update-rollout": {
|
|
8319
8467
|
"aliases": [],
|
|
8320
|
-
"args": {
|
|
8321
|
-
|
|
8322
|
-
"description": "The ID of an update group.",
|
|
8323
|
-
"name": "groupId",
|
|
8324
|
-
"required": true
|
|
8325
|
-
}
|
|
8326
|
-
},
|
|
8327
|
-
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
8468
|
+
"args": {},
|
|
8469
|
+
"description": "revert a rollout update for a project",
|
|
8328
8470
|
"flags": {
|
|
8329
|
-
"
|
|
8330
|
-
"description": "
|
|
8331
|
-
"
|
|
8471
|
+
"channel": {
|
|
8472
|
+
"description": "Channel name to select an update group to revert the rollout update from",
|
|
8473
|
+
"exclusive": [
|
|
8474
|
+
"branch",
|
|
8475
|
+
"group"
|
|
8476
|
+
],
|
|
8477
|
+
"name": "channel",
|
|
8332
8478
|
"hasDynamicHelp": false,
|
|
8333
8479
|
"multiple": false,
|
|
8334
|
-
"options": [
|
|
8335
|
-
"ios",
|
|
8336
|
-
"android"
|
|
8337
|
-
],
|
|
8338
8480
|
"type": "option"
|
|
8339
8481
|
},
|
|
8340
|
-
"
|
|
8341
|
-
"description": "
|
|
8482
|
+
"branch": {
|
|
8483
|
+
"description": "Branch name to select an update group to revert the rollout update from",
|
|
8342
8484
|
"exclusive": [
|
|
8343
|
-
"
|
|
8344
|
-
"
|
|
8485
|
+
"channel",
|
|
8486
|
+
"group"
|
|
8345
8487
|
],
|
|
8346
|
-
"name": "
|
|
8488
|
+
"name": "branch",
|
|
8347
8489
|
"hasDynamicHelp": false,
|
|
8348
8490
|
"multiple": false,
|
|
8349
8491
|
"type": "option"
|
|
8350
8492
|
},
|
|
8351
|
-
"
|
|
8352
|
-
"description": "
|
|
8493
|
+
"group": {
|
|
8494
|
+
"description": "Rollout update group ID to revert",
|
|
8353
8495
|
"exclusive": [
|
|
8354
|
-
"
|
|
8496
|
+
"branch",
|
|
8497
|
+
"channel"
|
|
8355
8498
|
],
|
|
8356
|
-
"name": "
|
|
8499
|
+
"name": "group",
|
|
8357
8500
|
"hasDynamicHelp": false,
|
|
8358
8501
|
"multiple": false,
|
|
8359
8502
|
"type": "option"
|
|
8360
8503
|
},
|
|
8361
|
-
"
|
|
8362
|
-
"
|
|
8363
|
-
"
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
"
|
|
8504
|
+
"message": {
|
|
8505
|
+
"char": "m",
|
|
8506
|
+
"description": "Short message describing the revert",
|
|
8507
|
+
"name": "message",
|
|
8508
|
+
"required": false,
|
|
8509
|
+
"hasDynamicHelp": false,
|
|
8510
|
+
"multiple": false,
|
|
8511
|
+
"type": "option"
|
|
8512
|
+
},
|
|
8513
|
+
"private-key-path": {
|
|
8514
|
+
"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/",
|
|
8515
|
+
"name": "private-key-path",
|
|
8516
|
+
"required": false,
|
|
8367
8517
|
"hasDynamicHelp": false,
|
|
8368
8518
|
"multiple": false,
|
|
8369
8519
|
"type": "option"
|
|
@@ -8384,7 +8534,7 @@
|
|
|
8384
8534
|
},
|
|
8385
8535
|
"hasDynamicHelp": false,
|
|
8386
8536
|
"hiddenAliases": [],
|
|
8387
|
-
"id": "update:
|
|
8537
|
+
"id": "update:revert-update-rollout",
|
|
8388
8538
|
"pluginAlias": "eas-cli",
|
|
8389
8539
|
"pluginName": "eas-cli",
|
|
8390
8540
|
"pluginType": "core",
|
|
@@ -8431,70 +8581,73 @@
|
|
|
8431
8581
|
}
|
|
8432
8582
|
},
|
|
8433
8583
|
"contextDefinition": {
|
|
8434
|
-
"loggedIn": {}
|
|
8584
|
+
"loggedIn": {},
|
|
8585
|
+
"privateProjectConfig": {},
|
|
8586
|
+
"vcsClient": {}
|
|
8435
8587
|
},
|
|
8436
8588
|
"isESM": false,
|
|
8437
8589
|
"relativePath": [
|
|
8438
8590
|
"build",
|
|
8439
8591
|
"commands",
|
|
8440
8592
|
"update",
|
|
8441
|
-
"
|
|
8593
|
+
"revert-update-rollout.js"
|
|
8442
8594
|
]
|
|
8443
8595
|
},
|
|
8444
|
-
"update:
|
|
8596
|
+
"update:roll-back-to-embedded": {
|
|
8445
8597
|
"aliases": [],
|
|
8446
8598
|
"args": {},
|
|
8447
|
-
"description": "
|
|
8599
|
+
"description": "roll back to the embedded update",
|
|
8448
8600
|
"flags": {
|
|
8449
8601
|
"branch": {
|
|
8450
|
-
"description": "
|
|
8451
|
-
"exclusive": [
|
|
8452
|
-
"all"
|
|
8453
|
-
],
|
|
8602
|
+
"description": "Branch to publish the rollback to embedded update group on",
|
|
8454
8603
|
"name": "branch",
|
|
8604
|
+
"required": false,
|
|
8455
8605
|
"hasDynamicHelp": false,
|
|
8456
8606
|
"multiple": false,
|
|
8457
8607
|
"type": "option"
|
|
8458
8608
|
},
|
|
8459
|
-
"
|
|
8460
|
-
"description": "
|
|
8461
|
-
"
|
|
8462
|
-
|
|
8463
|
-
],
|
|
8464
|
-
"name": "all",
|
|
8465
|
-
"allowNo": false,
|
|
8466
|
-
"type": "boolean"
|
|
8467
|
-
},
|
|
8468
|
-
"platform": {
|
|
8469
|
-
"char": "p",
|
|
8470
|
-
"description": "Filter updates by platform",
|
|
8471
|
-
"name": "platform",
|
|
8609
|
+
"channel": {
|
|
8610
|
+
"description": "Channel that the published rollback to embedded update should affect",
|
|
8611
|
+
"name": "channel",
|
|
8612
|
+
"required": false,
|
|
8472
8613
|
"hasDynamicHelp": false,
|
|
8473
8614
|
"multiple": false,
|
|
8474
|
-
"options": [
|
|
8475
|
-
"android",
|
|
8476
|
-
"ios",
|
|
8477
|
-
"all"
|
|
8478
|
-
],
|
|
8479
8615
|
"type": "option"
|
|
8480
8616
|
},
|
|
8481
8617
|
"runtime-version": {
|
|
8482
|
-
"description": "
|
|
8618
|
+
"description": "Runtime version that the rollback to embedded update should target",
|
|
8483
8619
|
"name": "runtime-version",
|
|
8620
|
+
"required": false,
|
|
8484
8621
|
"hasDynamicHelp": false,
|
|
8485
8622
|
"multiple": false,
|
|
8486
8623
|
"type": "option"
|
|
8487
8624
|
},
|
|
8488
|
-
"
|
|
8489
|
-
"description": "
|
|
8490
|
-
"name": "
|
|
8625
|
+
"message": {
|
|
8626
|
+
"description": "A short message describing the rollback to embedded update",
|
|
8627
|
+
"name": "message",
|
|
8628
|
+
"required": false,
|
|
8491
8629
|
"hasDynamicHelp": false,
|
|
8492
8630
|
"multiple": false,
|
|
8493
8631
|
"type": "option"
|
|
8494
8632
|
},
|
|
8495
|
-
"
|
|
8496
|
-
"
|
|
8497
|
-
"name": "
|
|
8633
|
+
"platform": {
|
|
8634
|
+
"char": "p",
|
|
8635
|
+
"name": "platform",
|
|
8636
|
+
"required": false,
|
|
8637
|
+
"default": "all",
|
|
8638
|
+
"hasDynamicHelp": false,
|
|
8639
|
+
"multiple": false,
|
|
8640
|
+
"options": [
|
|
8641
|
+
"android",
|
|
8642
|
+
"ios",
|
|
8643
|
+
"all"
|
|
8644
|
+
],
|
|
8645
|
+
"type": "option"
|
|
8646
|
+
},
|
|
8647
|
+
"private-key-path": {
|
|
8648
|
+
"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/",
|
|
8649
|
+
"name": "private-key-path",
|
|
8650
|
+
"required": false,
|
|
8498
8651
|
"hasDynamicHelp": false,
|
|
8499
8652
|
"multiple": false,
|
|
8500
8653
|
"type": "option"
|
|
@@ -8515,7 +8668,7 @@
|
|
|
8515
8668
|
},
|
|
8516
8669
|
"hasDynamicHelp": false,
|
|
8517
8670
|
"hiddenAliases": [],
|
|
8518
|
-
"id": "update:
|
|
8671
|
+
"id": "update:roll-back-to-embedded",
|
|
8519
8672
|
"pluginAlias": "eas-cli",
|
|
8520
8673
|
"pluginName": "eas-cli",
|
|
8521
8674
|
"pluginType": "core",
|
|
@@ -8562,98 +8715,24 @@
|
|
|
8562
8715
|
}
|
|
8563
8716
|
},
|
|
8564
8717
|
"contextDefinition": {
|
|
8565
|
-
"
|
|
8566
|
-
"
|
|
8718
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
8719
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
8720
|
+
"loggedIn": {},
|
|
8721
|
+
"vcsClient": {}
|
|
8567
8722
|
},
|
|
8568
8723
|
"isESM": false,
|
|
8569
8724
|
"relativePath": [
|
|
8570
8725
|
"build",
|
|
8571
8726
|
"commands",
|
|
8572
8727
|
"update",
|
|
8573
|
-
"
|
|
8728
|
+
"roll-back-to-embedded.js"
|
|
8574
8729
|
]
|
|
8575
8730
|
},
|
|
8576
|
-
"update:
|
|
8731
|
+
"update:rollback": {
|
|
8577
8732
|
"aliases": [],
|
|
8578
8733
|
"args": {},
|
|
8579
|
-
"description": "
|
|
8734
|
+
"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\".",
|
|
8580
8735
|
"flags": {
|
|
8581
|
-
"channel": {
|
|
8582
|
-
"description": "Channel name to select an update group to republish from",
|
|
8583
|
-
"exclusive": [
|
|
8584
|
-
"branch",
|
|
8585
|
-
"group"
|
|
8586
|
-
],
|
|
8587
|
-
"name": "channel",
|
|
8588
|
-
"hasDynamicHelp": false,
|
|
8589
|
-
"multiple": false,
|
|
8590
|
-
"type": "option"
|
|
8591
|
-
},
|
|
8592
|
-
"branch": {
|
|
8593
|
-
"description": "Branch name to select an update group to republish from",
|
|
8594
|
-
"exclusive": [
|
|
8595
|
-
"channel",
|
|
8596
|
-
"group"
|
|
8597
|
-
],
|
|
8598
|
-
"name": "branch",
|
|
8599
|
-
"hasDynamicHelp": false,
|
|
8600
|
-
"multiple": false,
|
|
8601
|
-
"type": "option"
|
|
8602
|
-
},
|
|
8603
|
-
"group": {
|
|
8604
|
-
"description": "Update group ID to republish",
|
|
8605
|
-
"exclusive": [
|
|
8606
|
-
"branch",
|
|
8607
|
-
"channel"
|
|
8608
|
-
],
|
|
8609
|
-
"name": "group",
|
|
8610
|
-
"hasDynamicHelp": false,
|
|
8611
|
-
"multiple": false,
|
|
8612
|
-
"type": "option"
|
|
8613
|
-
},
|
|
8614
|
-
"destination-channel": {
|
|
8615
|
-
"description": "Channel name to select a branch to republish to if republishing to a different branch",
|
|
8616
|
-
"exclusive": [
|
|
8617
|
-
"destination-branch"
|
|
8618
|
-
],
|
|
8619
|
-
"name": "destination-channel",
|
|
8620
|
-
"hasDynamicHelp": false,
|
|
8621
|
-
"multiple": false,
|
|
8622
|
-
"type": "option"
|
|
8623
|
-
},
|
|
8624
|
-
"destination-branch": {
|
|
8625
|
-
"description": "Branch name to republish to if republishing to a different branch",
|
|
8626
|
-
"exclusive": [
|
|
8627
|
-
"destination-channel"
|
|
8628
|
-
],
|
|
8629
|
-
"name": "destination-branch",
|
|
8630
|
-
"hasDynamicHelp": false,
|
|
8631
|
-
"multiple": false,
|
|
8632
|
-
"type": "option"
|
|
8633
|
-
},
|
|
8634
|
-
"message": {
|
|
8635
|
-
"char": "m",
|
|
8636
|
-
"description": "Short message describing the republished update group",
|
|
8637
|
-
"name": "message",
|
|
8638
|
-
"required": false,
|
|
8639
|
-
"hasDynamicHelp": false,
|
|
8640
|
-
"multiple": false,
|
|
8641
|
-
"type": "option"
|
|
8642
|
-
},
|
|
8643
|
-
"platform": {
|
|
8644
|
-
"char": "p",
|
|
8645
|
-
"name": "platform",
|
|
8646
|
-
"required": false,
|
|
8647
|
-
"default": "all",
|
|
8648
|
-
"hasDynamicHelp": false,
|
|
8649
|
-
"multiple": false,
|
|
8650
|
-
"options": [
|
|
8651
|
-
"android",
|
|
8652
|
-
"ios",
|
|
8653
|
-
"all"
|
|
8654
|
-
],
|
|
8655
|
-
"type": "option"
|
|
8656
|
-
},
|
|
8657
8736
|
"private-key-path": {
|
|
8658
8737
|
"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/",
|
|
8659
8738
|
"name": "private-key-path",
|
|
@@ -8661,32 +8740,11 @@
|
|
|
8661
8740
|
"hasDynamicHelp": false,
|
|
8662
8741
|
"multiple": false,
|
|
8663
8742
|
"type": "option"
|
|
8664
|
-
},
|
|
8665
|
-
"rollout-percentage": {
|
|
8666
|
-
"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.",
|
|
8667
|
-
"name": "rollout-percentage",
|
|
8668
|
-
"required": false,
|
|
8669
|
-
"hasDynamicHelp": false,
|
|
8670
|
-
"multiple": false,
|
|
8671
|
-
"type": "option"
|
|
8672
|
-
},
|
|
8673
|
-
"json": {
|
|
8674
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8675
|
-
"name": "json",
|
|
8676
|
-
"allowNo": false,
|
|
8677
|
-
"type": "boolean"
|
|
8678
|
-
},
|
|
8679
|
-
"non-interactive": {
|
|
8680
|
-
"description": "Run the command in non-interactive mode.",
|
|
8681
|
-
"name": "non-interactive",
|
|
8682
|
-
"noCacheDefault": true,
|
|
8683
|
-
"allowNo": false,
|
|
8684
|
-
"type": "boolean"
|
|
8685
8743
|
}
|
|
8686
8744
|
},
|
|
8687
8745
|
"hasDynamicHelp": false,
|
|
8688
8746
|
"hiddenAliases": [],
|
|
8689
|
-
"id": "update:
|
|
8747
|
+
"id": "update:rollback",
|
|
8690
8748
|
"pluginAlias": "eas-cli",
|
|
8691
8749
|
"pluginName": "eas-cli",
|
|
8692
8750
|
"pluginType": "core",
|
|
@@ -8732,90 +8790,73 @@
|
|
|
8732
8790
|
"projectId": {}
|
|
8733
8791
|
}
|
|
8734
8792
|
},
|
|
8735
|
-
"contextDefinition": {
|
|
8736
|
-
"loggedIn": {},
|
|
8737
|
-
"privateProjectConfig": {}
|
|
8738
|
-
},
|
|
8793
|
+
"contextDefinition": {},
|
|
8739
8794
|
"isESM": false,
|
|
8740
8795
|
"relativePath": [
|
|
8741
8796
|
"build",
|
|
8742
8797
|
"commands",
|
|
8743
8798
|
"update",
|
|
8744
|
-
"
|
|
8799
|
+
"rollback.js"
|
|
8745
8800
|
]
|
|
8746
8801
|
},
|
|
8747
|
-
"update:
|
|
8802
|
+
"update:view": {
|
|
8748
8803
|
"aliases": [],
|
|
8749
|
-
"args": {
|
|
8750
|
-
|
|
8804
|
+
"args": {
|
|
8805
|
+
"groupId": {
|
|
8806
|
+
"description": "The ID of an update group.",
|
|
8807
|
+
"name": "groupId",
|
|
8808
|
+
"required": true
|
|
8809
|
+
}
|
|
8810
|
+
},
|
|
8811
|
+
"description": "update group details",
|
|
8751
8812
|
"flags": {
|
|
8752
|
-
"
|
|
8753
|
-
"description": "
|
|
8813
|
+
"insights": {
|
|
8814
|
+
"description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
|
|
8815
|
+
"name": "insights",
|
|
8816
|
+
"allowNo": false,
|
|
8817
|
+
"type": "boolean"
|
|
8818
|
+
},
|
|
8819
|
+
"days": {
|
|
8820
|
+
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
8754
8821
|
"exclusive": [
|
|
8755
|
-
"
|
|
8756
|
-
"
|
|
8822
|
+
"start",
|
|
8823
|
+
"end"
|
|
8757
8824
|
],
|
|
8758
|
-
"name": "
|
|
8825
|
+
"name": "days",
|
|
8759
8826
|
"hasDynamicHelp": false,
|
|
8760
8827
|
"multiple": false,
|
|
8761
8828
|
"type": "option"
|
|
8762
8829
|
},
|
|
8763
|
-
"
|
|
8764
|
-
"description": "
|
|
8830
|
+
"start": {
|
|
8831
|
+
"description": "Start of insights time range (ISO date). Only used with --insights.",
|
|
8765
8832
|
"exclusive": [
|
|
8766
|
-
"
|
|
8767
|
-
"group"
|
|
8833
|
+
"days"
|
|
8768
8834
|
],
|
|
8769
|
-
"name": "
|
|
8835
|
+
"name": "start",
|
|
8770
8836
|
"hasDynamicHelp": false,
|
|
8771
8837
|
"multiple": false,
|
|
8772
8838
|
"type": "option"
|
|
8773
8839
|
},
|
|
8774
|
-
"
|
|
8775
|
-
"description": "
|
|
8840
|
+
"end": {
|
|
8841
|
+
"description": "End of insights time range (ISO date). Only used with --insights.",
|
|
8776
8842
|
"exclusive": [
|
|
8777
|
-
"
|
|
8778
|
-
"channel"
|
|
8843
|
+
"days"
|
|
8779
8844
|
],
|
|
8780
|
-
"name": "
|
|
8781
|
-
"hasDynamicHelp": false,
|
|
8782
|
-
"multiple": false,
|
|
8783
|
-
"type": "option"
|
|
8784
|
-
},
|
|
8785
|
-
"message": {
|
|
8786
|
-
"char": "m",
|
|
8787
|
-
"description": "Short message describing the revert",
|
|
8788
|
-
"name": "message",
|
|
8789
|
-
"required": false,
|
|
8790
|
-
"hasDynamicHelp": false,
|
|
8791
|
-
"multiple": false,
|
|
8792
|
-
"type": "option"
|
|
8793
|
-
},
|
|
8794
|
-
"private-key-path": {
|
|
8795
|
-
"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/",
|
|
8796
|
-
"name": "private-key-path",
|
|
8797
|
-
"required": false,
|
|
8845
|
+
"name": "end",
|
|
8798
8846
|
"hasDynamicHelp": false,
|
|
8799
8847
|
"multiple": false,
|
|
8800
8848
|
"type": "option"
|
|
8801
8849
|
},
|
|
8802
8850
|
"json": {
|
|
8803
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
8851
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
8804
8852
|
"name": "json",
|
|
8805
8853
|
"allowNo": false,
|
|
8806
8854
|
"type": "boolean"
|
|
8807
|
-
},
|
|
8808
|
-
"non-interactive": {
|
|
8809
|
-
"description": "Run the command in non-interactive mode.",
|
|
8810
|
-
"name": "non-interactive",
|
|
8811
|
-
"noCacheDefault": true,
|
|
8812
|
-
"allowNo": false,
|
|
8813
|
-
"type": "boolean"
|
|
8814
8855
|
}
|
|
8815
8856
|
},
|
|
8816
8857
|
"hasDynamicHelp": false,
|
|
8817
8858
|
"hiddenAliases": [],
|
|
8818
|
-
"id": "update:
|
|
8859
|
+
"id": "update:view",
|
|
8819
8860
|
"pluginAlias": "eas-cli",
|
|
8820
8861
|
"pluginName": "eas-cli",
|
|
8821
8862
|
"pluginType": "core",
|
|
@@ -8862,83 +8903,46 @@
|
|
|
8862
8903
|
}
|
|
8863
8904
|
},
|
|
8864
8905
|
"contextDefinition": {
|
|
8865
|
-
"loggedIn": {}
|
|
8866
|
-
"privateProjectConfig": {},
|
|
8867
|
-
"vcsClient": {}
|
|
8906
|
+
"loggedIn": {}
|
|
8868
8907
|
},
|
|
8869
8908
|
"isESM": false,
|
|
8870
8909
|
"relativePath": [
|
|
8871
8910
|
"build",
|
|
8872
8911
|
"commands",
|
|
8873
8912
|
"update",
|
|
8874
|
-
"
|
|
8913
|
+
"view.js"
|
|
8875
8914
|
]
|
|
8876
8915
|
},
|
|
8877
|
-
"
|
|
8916
|
+
"webhook:create": {
|
|
8878
8917
|
"aliases": [],
|
|
8879
8918
|
"args": {},
|
|
8880
|
-
"description": "
|
|
8919
|
+
"description": "create a webhook",
|
|
8881
8920
|
"flags": {
|
|
8882
|
-
"
|
|
8883
|
-
"description": "
|
|
8884
|
-
"name": "
|
|
8885
|
-
"required": false,
|
|
8886
|
-
"hasDynamicHelp": false,
|
|
8887
|
-
"multiple": false,
|
|
8888
|
-
"type": "option"
|
|
8889
|
-
},
|
|
8890
|
-
"channel": {
|
|
8891
|
-
"description": "Channel that the published rollback to embedded update should affect",
|
|
8892
|
-
"name": "channel",
|
|
8893
|
-
"required": false,
|
|
8894
|
-
"hasDynamicHelp": false,
|
|
8895
|
-
"multiple": false,
|
|
8896
|
-
"type": "option"
|
|
8897
|
-
},
|
|
8898
|
-
"runtime-version": {
|
|
8899
|
-
"description": "Runtime version that the rollback to embedded update should target",
|
|
8900
|
-
"name": "runtime-version",
|
|
8901
|
-
"required": false,
|
|
8902
|
-
"hasDynamicHelp": false,
|
|
8903
|
-
"multiple": false,
|
|
8904
|
-
"type": "option"
|
|
8905
|
-
},
|
|
8906
|
-
"message": {
|
|
8907
|
-
"description": "A short message describing the rollback to embedded update",
|
|
8908
|
-
"name": "message",
|
|
8909
|
-
"required": false,
|
|
8921
|
+
"event": {
|
|
8922
|
+
"description": "Event type that triggers the webhook",
|
|
8923
|
+
"name": "event",
|
|
8910
8924
|
"hasDynamicHelp": false,
|
|
8911
8925
|
"multiple": false,
|
|
8926
|
+
"options": [
|
|
8927
|
+
"BUILD",
|
|
8928
|
+
"SUBMIT"
|
|
8929
|
+
],
|
|
8912
8930
|
"type": "option"
|
|
8913
8931
|
},
|
|
8914
|
-
"
|
|
8915
|
-
"
|
|
8916
|
-
"name": "
|
|
8917
|
-
"required": false,
|
|
8918
|
-
"default": "all",
|
|
8932
|
+
"url": {
|
|
8933
|
+
"description": "Webhook URL",
|
|
8934
|
+
"name": "url",
|
|
8919
8935
|
"hasDynamicHelp": false,
|
|
8920
8936
|
"multiple": false,
|
|
8921
|
-
"options": [
|
|
8922
|
-
"android",
|
|
8923
|
-
"ios",
|
|
8924
|
-
"all"
|
|
8925
|
-
],
|
|
8926
8937
|
"type": "option"
|
|
8927
8938
|
},
|
|
8928
|
-
"
|
|
8929
|
-
"description": "
|
|
8930
|
-
"name": "
|
|
8931
|
-
"required": false,
|
|
8939
|
+
"secret": {
|
|
8940
|
+
"description": "Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header.",
|
|
8941
|
+
"name": "secret",
|
|
8932
8942
|
"hasDynamicHelp": false,
|
|
8933
8943
|
"multiple": false,
|
|
8934
8944
|
"type": "option"
|
|
8935
8945
|
},
|
|
8936
|
-
"json": {
|
|
8937
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8938
|
-
"name": "json",
|
|
8939
|
-
"allowNo": false,
|
|
8940
|
-
"type": "boolean"
|
|
8941
|
-
},
|
|
8942
8946
|
"non-interactive": {
|
|
8943
8947
|
"description": "Run the command in non-interactive mode.",
|
|
8944
8948
|
"name": "non-interactive",
|
|
@@ -8949,7 +8953,7 @@
|
|
|
8949
8953
|
},
|
|
8950
8954
|
"hasDynamicHelp": false,
|
|
8951
8955
|
"hiddenAliases": [],
|
|
8952
|
-
"id": "
|
|
8956
|
+
"id": "webhook:create",
|
|
8953
8957
|
"pluginAlias": "eas-cli",
|
|
8954
8958
|
"pluginName": "eas-cli",
|
|
8955
8959
|
"pluginType": "core",
|
|
@@ -8996,36 +9000,39 @@
|
|
|
8996
9000
|
}
|
|
8997
9001
|
},
|
|
8998
9002
|
"contextDefinition": {
|
|
8999
|
-
"
|
|
9000
|
-
"
|
|
9001
|
-
"loggedIn": {},
|
|
9002
|
-
"vcsClient": {}
|
|
9003
|
+
"projectId": {},
|
|
9004
|
+
"loggedIn": {}
|
|
9003
9005
|
},
|
|
9004
9006
|
"isESM": false,
|
|
9005
9007
|
"relativePath": [
|
|
9006
9008
|
"build",
|
|
9007
9009
|
"commands",
|
|
9008
|
-
"
|
|
9009
|
-
"
|
|
9010
|
+
"webhook",
|
|
9011
|
+
"create.js"
|
|
9010
9012
|
]
|
|
9011
9013
|
},
|
|
9012
|
-
"
|
|
9014
|
+
"webhook:delete": {
|
|
9013
9015
|
"aliases": [],
|
|
9014
|
-
"args": {
|
|
9015
|
-
|
|
9016
|
+
"args": {
|
|
9017
|
+
"ID": {
|
|
9018
|
+
"description": "ID of the webhook to delete",
|
|
9019
|
+
"name": "ID",
|
|
9020
|
+
"required": false
|
|
9021
|
+
}
|
|
9022
|
+
},
|
|
9023
|
+
"description": "delete a webhook",
|
|
9016
9024
|
"flags": {
|
|
9017
|
-
"
|
|
9018
|
-
"description": "
|
|
9019
|
-
"name": "
|
|
9020
|
-
"
|
|
9021
|
-
"
|
|
9022
|
-
"
|
|
9023
|
-
"type": "option"
|
|
9025
|
+
"non-interactive": {
|
|
9026
|
+
"description": "Run the command in non-interactive mode.",
|
|
9027
|
+
"name": "non-interactive",
|
|
9028
|
+
"noCacheDefault": true,
|
|
9029
|
+
"allowNo": false,
|
|
9030
|
+
"type": "boolean"
|
|
9024
9031
|
}
|
|
9025
9032
|
},
|
|
9026
9033
|
"hasDynamicHelp": false,
|
|
9027
9034
|
"hiddenAliases": [],
|
|
9028
|
-
"id": "
|
|
9035
|
+
"id": "webhook:delete",
|
|
9029
9036
|
"pluginAlias": "eas-cli",
|
|
9030
9037
|
"pluginName": "eas-cli",
|
|
9031
9038
|
"pluginType": "core",
|
|
@@ -9071,61 +9078,32 @@
|
|
|
9071
9078
|
"projectId": {}
|
|
9072
9079
|
}
|
|
9073
9080
|
},
|
|
9074
|
-
"contextDefinition": {
|
|
9081
|
+
"contextDefinition": {
|
|
9082
|
+
"projectId": {},
|
|
9083
|
+
"loggedIn": {}
|
|
9084
|
+
},
|
|
9075
9085
|
"isESM": false,
|
|
9076
9086
|
"relativePath": [
|
|
9077
9087
|
"build",
|
|
9078
9088
|
"commands",
|
|
9079
|
-
"
|
|
9080
|
-
"
|
|
9089
|
+
"webhook",
|
|
9090
|
+
"delete.js"
|
|
9081
9091
|
]
|
|
9082
9092
|
},
|
|
9083
|
-
"
|
|
9093
|
+
"webhook:list": {
|
|
9084
9094
|
"aliases": [],
|
|
9085
|
-
"args": {
|
|
9086
|
-
|
|
9087
|
-
"description": "The ID of an update group.",
|
|
9088
|
-
"name": "groupId",
|
|
9089
|
-
"required": true
|
|
9090
|
-
}
|
|
9091
|
-
},
|
|
9092
|
-
"description": "update group details",
|
|
9095
|
+
"args": {},
|
|
9096
|
+
"description": "list webhooks",
|
|
9093
9097
|
"flags": {
|
|
9094
|
-
"
|
|
9095
|
-
"description": "
|
|
9096
|
-
"name": "
|
|
9097
|
-
"allowNo": false,
|
|
9098
|
-
"type": "boolean"
|
|
9099
|
-
},
|
|
9100
|
-
"days": {
|
|
9101
|
-
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
9102
|
-
"exclusive": [
|
|
9103
|
-
"start",
|
|
9104
|
-
"end"
|
|
9105
|
-
],
|
|
9106
|
-
"name": "days",
|
|
9107
|
-
"hasDynamicHelp": false,
|
|
9108
|
-
"multiple": false,
|
|
9109
|
-
"type": "option"
|
|
9110
|
-
},
|
|
9111
|
-
"start": {
|
|
9112
|
-
"description": "Start of insights time range (ISO date). Only used with --insights.",
|
|
9113
|
-
"exclusive": [
|
|
9114
|
-
"days"
|
|
9115
|
-
],
|
|
9116
|
-
"name": "start",
|
|
9098
|
+
"event": {
|
|
9099
|
+
"description": "Event type that triggers the webhook",
|
|
9100
|
+
"name": "event",
|
|
9117
9101
|
"hasDynamicHelp": false,
|
|
9118
9102
|
"multiple": false,
|
|
9119
|
-
"
|
|
9120
|
-
|
|
9121
|
-
|
|
9122
|
-
"description": "End of insights time range (ISO date). Only used with --insights.",
|
|
9123
|
-
"exclusive": [
|
|
9124
|
-
"days"
|
|
9103
|
+
"options": [
|
|
9104
|
+
"BUILD",
|
|
9105
|
+
"SUBMIT"
|
|
9125
9106
|
],
|
|
9126
|
-
"name": "end",
|
|
9127
|
-
"hasDynamicHelp": false,
|
|
9128
|
-
"multiple": false,
|
|
9129
9107
|
"type": "option"
|
|
9130
9108
|
},
|
|
9131
9109
|
"json": {
|
|
@@ -9137,7 +9115,7 @@
|
|
|
9137
9115
|
},
|
|
9138
9116
|
"hasDynamicHelp": false,
|
|
9139
9117
|
"hiddenAliases": [],
|
|
9140
|
-
"id": "
|
|
9118
|
+
"id": "webhook:list",
|
|
9141
9119
|
"pluginAlias": "eas-cli",
|
|
9142
9120
|
"pluginName": "eas-cli",
|
|
9143
9121
|
"pluginType": "core",
|
|
@@ -9184,21 +9162,30 @@
|
|
|
9184
9162
|
}
|
|
9185
9163
|
},
|
|
9186
9164
|
"contextDefinition": {
|
|
9165
|
+
"projectId": {},
|
|
9187
9166
|
"loggedIn": {}
|
|
9188
9167
|
},
|
|
9189
9168
|
"isESM": false,
|
|
9190
9169
|
"relativePath": [
|
|
9191
9170
|
"build",
|
|
9192
9171
|
"commands",
|
|
9193
|
-
"
|
|
9194
|
-
"
|
|
9172
|
+
"webhook",
|
|
9173
|
+
"list.js"
|
|
9195
9174
|
]
|
|
9196
9175
|
},
|
|
9197
|
-
"webhook:
|
|
9176
|
+
"webhook:update": {
|
|
9198
9177
|
"aliases": [],
|
|
9199
9178
|
"args": {},
|
|
9200
|
-
"description": "
|
|
9179
|
+
"description": "update a webhook",
|
|
9201
9180
|
"flags": {
|
|
9181
|
+
"id": {
|
|
9182
|
+
"description": "Webhook ID",
|
|
9183
|
+
"name": "id",
|
|
9184
|
+
"required": true,
|
|
9185
|
+
"hasDynamicHelp": false,
|
|
9186
|
+
"multiple": false,
|
|
9187
|
+
"type": "option"
|
|
9188
|
+
},
|
|
9202
9189
|
"event": {
|
|
9203
9190
|
"description": "Event type that triggers the webhook",
|
|
9204
9191
|
"name": "event",
|
|
@@ -9234,7 +9221,7 @@
|
|
|
9234
9221
|
},
|
|
9235
9222
|
"hasDynamicHelp": false,
|
|
9236
9223
|
"hiddenAliases": [],
|
|
9237
|
-
"id": "webhook:
|
|
9224
|
+
"id": "webhook:update",
|
|
9238
9225
|
"pluginAlias": "eas-cli",
|
|
9239
9226
|
"pluginName": "eas-cli",
|
|
9240
9227
|
"pluginType": "core",
|
|
@@ -9281,7 +9268,6 @@
|
|
|
9281
9268
|
}
|
|
9282
9269
|
},
|
|
9283
9270
|
"contextDefinition": {
|
|
9284
|
-
"projectId": {},
|
|
9285
9271
|
"loggedIn": {}
|
|
9286
9272
|
},
|
|
9287
9273
|
"isESM": false,
|
|
@@ -9289,31 +9275,23 @@
|
|
|
9289
9275
|
"build",
|
|
9290
9276
|
"commands",
|
|
9291
9277
|
"webhook",
|
|
9292
|
-
"
|
|
9278
|
+
"update.js"
|
|
9293
9279
|
]
|
|
9294
9280
|
},
|
|
9295
|
-
"webhook:
|
|
9281
|
+
"webhook:view": {
|
|
9296
9282
|
"aliases": [],
|
|
9297
9283
|
"args": {
|
|
9298
9284
|
"ID": {
|
|
9299
|
-
"description": "ID of the webhook to
|
|
9285
|
+
"description": "ID of the webhook to view",
|
|
9300
9286
|
"name": "ID",
|
|
9301
|
-
"required":
|
|
9302
|
-
}
|
|
9303
|
-
},
|
|
9304
|
-
"description": "delete a webhook",
|
|
9305
|
-
"flags": {
|
|
9306
|
-
"non-interactive": {
|
|
9307
|
-
"description": "Run the command in non-interactive mode.",
|
|
9308
|
-
"name": "non-interactive",
|
|
9309
|
-
"noCacheDefault": true,
|
|
9310
|
-
"allowNo": false,
|
|
9311
|
-
"type": "boolean"
|
|
9287
|
+
"required": true
|
|
9312
9288
|
}
|
|
9313
9289
|
},
|
|
9290
|
+
"description": "view a webhook",
|
|
9291
|
+
"flags": {},
|
|
9314
9292
|
"hasDynamicHelp": false,
|
|
9315
9293
|
"hiddenAliases": [],
|
|
9316
|
-
"id": "webhook:
|
|
9294
|
+
"id": "webhook:view",
|
|
9317
9295
|
"pluginAlias": "eas-cli",
|
|
9318
9296
|
"pluginName": "eas-cli",
|
|
9319
9297
|
"pluginType": "core",
|
|
@@ -9360,7 +9338,6 @@
|
|
|
9360
9338
|
}
|
|
9361
9339
|
},
|
|
9362
9340
|
"contextDefinition": {
|
|
9363
|
-
"projectId": {},
|
|
9364
9341
|
"loggedIn": {}
|
|
9365
9342
|
},
|
|
9366
9343
|
"isESM": false,
|
|
@@ -9368,39 +9345,29 @@
|
|
|
9368
9345
|
"build",
|
|
9369
9346
|
"commands",
|
|
9370
9347
|
"webhook",
|
|
9371
|
-
"
|
|
9348
|
+
"view.js"
|
|
9372
9349
|
]
|
|
9373
9350
|
},
|
|
9374
|
-
"
|
|
9351
|
+
"workflow:cancel": {
|
|
9375
9352
|
"aliases": [],
|
|
9376
9353
|
"args": {},
|
|
9377
|
-
"description": "
|
|
9354
|
+
"description": "Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.",
|
|
9378
9355
|
"flags": {
|
|
9379
|
-
"
|
|
9380
|
-
"description": "
|
|
9381
|
-
"name": "
|
|
9382
|
-
"
|
|
9383
|
-
"multiple": false,
|
|
9384
|
-
"options": [
|
|
9385
|
-
"BUILD",
|
|
9386
|
-
"SUBMIT"
|
|
9387
|
-
],
|
|
9388
|
-
"type": "option"
|
|
9389
|
-
},
|
|
9390
|
-
"json": {
|
|
9391
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9392
|
-
"name": "json",
|
|
9356
|
+
"non-interactive": {
|
|
9357
|
+
"description": "Run the command in non-interactive mode.",
|
|
9358
|
+
"name": "non-interactive",
|
|
9359
|
+
"noCacheDefault": true,
|
|
9393
9360
|
"allowNo": false,
|
|
9394
9361
|
"type": "boolean"
|
|
9395
9362
|
}
|
|
9396
9363
|
},
|
|
9397
9364
|
"hasDynamicHelp": false,
|
|
9398
9365
|
"hiddenAliases": [],
|
|
9399
|
-
"id": "
|
|
9366
|
+
"id": "workflow:cancel",
|
|
9400
9367
|
"pluginAlias": "eas-cli",
|
|
9401
9368
|
"pluginName": "eas-cli",
|
|
9402
9369
|
"pluginType": "core",
|
|
9403
|
-
"strict":
|
|
9370
|
+
"strict": false,
|
|
9404
9371
|
"enableJsonFlag": false,
|
|
9405
9372
|
"ContextOptions": {
|
|
9406
9373
|
"LoggedIn": {
|
|
@@ -9450,59 +9417,106 @@
|
|
|
9450
9417
|
"relativePath": [
|
|
9451
9418
|
"build",
|
|
9452
9419
|
"commands",
|
|
9453
|
-
"
|
|
9454
|
-
"
|
|
9420
|
+
"workflow",
|
|
9421
|
+
"cancel.js"
|
|
9455
9422
|
]
|
|
9456
9423
|
},
|
|
9457
|
-
"
|
|
9424
|
+
"workflow:create": {
|
|
9458
9425
|
"aliases": [],
|
|
9459
|
-
"args": {
|
|
9460
|
-
|
|
9426
|
+
"args": {
|
|
9427
|
+
"name": {
|
|
9428
|
+
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
9429
|
+
"name": "name",
|
|
9430
|
+
"required": false
|
|
9431
|
+
}
|
|
9432
|
+
},
|
|
9433
|
+
"description": "create a new workflow configuration YAML file",
|
|
9461
9434
|
"flags": {
|
|
9462
|
-
"
|
|
9463
|
-
"description": "
|
|
9464
|
-
"name": "
|
|
9465
|
-
"
|
|
9466
|
-
"
|
|
9467
|
-
|
|
9468
|
-
|
|
9435
|
+
"skip-validation": {
|
|
9436
|
+
"description": "If set, the workflow file will not be validated before being created",
|
|
9437
|
+
"name": "skip-validation",
|
|
9438
|
+
"allowNo": false,
|
|
9439
|
+
"type": "boolean"
|
|
9440
|
+
}
|
|
9441
|
+
},
|
|
9442
|
+
"hasDynamicHelp": false,
|
|
9443
|
+
"hiddenAliases": [],
|
|
9444
|
+
"id": "workflow:create",
|
|
9445
|
+
"pluginAlias": "eas-cli",
|
|
9446
|
+
"pluginName": "eas-cli",
|
|
9447
|
+
"pluginType": "core",
|
|
9448
|
+
"strict": true,
|
|
9449
|
+
"enableJsonFlag": false,
|
|
9450
|
+
"ContextOptions": {
|
|
9451
|
+
"LoggedIn": {
|
|
9452
|
+
"loggedIn": {}
|
|
9469
9453
|
},
|
|
9470
|
-
"
|
|
9471
|
-
"
|
|
9472
|
-
"name": "event",
|
|
9473
|
-
"hasDynamicHelp": false,
|
|
9474
|
-
"multiple": false,
|
|
9475
|
-
"options": [
|
|
9476
|
-
"BUILD",
|
|
9477
|
-
"SUBMIT"
|
|
9478
|
-
],
|
|
9479
|
-
"type": "option"
|
|
9454
|
+
"MaybeLoggedIn": {
|
|
9455
|
+
"maybeLoggedIn": {}
|
|
9480
9456
|
},
|
|
9481
|
-
"
|
|
9482
|
-
"
|
|
9483
|
-
"name": "url",
|
|
9484
|
-
"hasDynamicHelp": false,
|
|
9485
|
-
"multiple": false,
|
|
9486
|
-
"type": "option"
|
|
9457
|
+
"DynamicLoggedIn": {
|
|
9458
|
+
"getDynamicLoggedInAsync": {}
|
|
9487
9459
|
},
|
|
9488
|
-
"
|
|
9489
|
-
"
|
|
9490
|
-
|
|
9491
|
-
|
|
9492
|
-
"
|
|
9493
|
-
|
|
9460
|
+
"SessionManagment": {
|
|
9461
|
+
"sessionManager": {}
|
|
9462
|
+
},
|
|
9463
|
+
"OptionalProjectConfig": {
|
|
9464
|
+
"optionalPrivateProjectConfig": {}
|
|
9465
|
+
},
|
|
9466
|
+
"ProjectDir": {
|
|
9467
|
+
"projectDir": {}
|
|
9468
|
+
},
|
|
9469
|
+
"DynamicProjectConfig": {
|
|
9470
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9471
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
9472
|
+
},
|
|
9473
|
+
"ProjectConfig": {
|
|
9474
|
+
"loggedIn": {},
|
|
9475
|
+
"privateProjectConfig": {}
|
|
9476
|
+
},
|
|
9477
|
+
"Analytics": {
|
|
9478
|
+
"analytics": {}
|
|
9479
|
+
},
|
|
9480
|
+
"Vcs": {
|
|
9481
|
+
"vcsClient": {}
|
|
9494
9482
|
},
|
|
9495
|
-
"
|
|
9496
|
-
"
|
|
9497
|
-
|
|
9498
|
-
|
|
9483
|
+
"ServerSideEnvironmentVariables": {
|
|
9484
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
9485
|
+
},
|
|
9486
|
+
"ProjectId": {
|
|
9487
|
+
"projectId": {}
|
|
9488
|
+
}
|
|
9489
|
+
},
|
|
9490
|
+
"contextDefinition": {
|
|
9491
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9492
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9493
|
+
"projectDir": {},
|
|
9494
|
+
"loggedIn": {}
|
|
9495
|
+
},
|
|
9496
|
+
"isESM": false,
|
|
9497
|
+
"relativePath": [
|
|
9498
|
+
"build",
|
|
9499
|
+
"commands",
|
|
9500
|
+
"workflow",
|
|
9501
|
+
"create.js"
|
|
9502
|
+
]
|
|
9503
|
+
},
|
|
9504
|
+
"workflow:list": {
|
|
9505
|
+
"aliases": [],
|
|
9506
|
+
"args": {},
|
|
9507
|
+
"description": "List workflows for the current project",
|
|
9508
|
+
"flags": {
|
|
9509
|
+
"json": {
|
|
9510
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9511
|
+
"name": "json",
|
|
9499
9512
|
"allowNo": false,
|
|
9500
9513
|
"type": "boolean"
|
|
9501
9514
|
}
|
|
9502
9515
|
},
|
|
9503
9516
|
"hasDynamicHelp": false,
|
|
9517
|
+
"hidden": true,
|
|
9504
9518
|
"hiddenAliases": [],
|
|
9505
|
-
"id": "
|
|
9519
|
+
"id": "workflow:list",
|
|
9506
9520
|
"pluginAlias": "eas-cli",
|
|
9507
9521
|
"pluginName": "eas-cli",
|
|
9508
9522
|
"pluginType": "core",
|
|
@@ -9549,30 +9563,50 @@
|
|
|
9549
9563
|
}
|
|
9550
9564
|
},
|
|
9551
9565
|
"contextDefinition": {
|
|
9566
|
+
"projectId": {},
|
|
9552
9567
|
"loggedIn": {}
|
|
9553
9568
|
},
|
|
9554
9569
|
"isESM": false,
|
|
9555
9570
|
"relativePath": [
|
|
9556
9571
|
"build",
|
|
9557
9572
|
"commands",
|
|
9558
|
-
"
|
|
9559
|
-
"
|
|
9573
|
+
"workflow",
|
|
9574
|
+
"list.js"
|
|
9560
9575
|
]
|
|
9561
9576
|
},
|
|
9562
|
-
"
|
|
9577
|
+
"workflow:logs": {
|
|
9563
9578
|
"aliases": [],
|
|
9564
9579
|
"args": {
|
|
9565
|
-
"
|
|
9566
|
-
"description": "ID of the
|
|
9567
|
-
"name": "
|
|
9568
|
-
|
|
9580
|
+
"id": {
|
|
9581
|
+
"description": "ID of the workflow run or workflow job to view logs for",
|
|
9582
|
+
"name": "id"
|
|
9583
|
+
}
|
|
9584
|
+
},
|
|
9585
|
+
"description": "view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.",
|
|
9586
|
+
"flags": {
|
|
9587
|
+
"json": {
|
|
9588
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9589
|
+
"name": "json",
|
|
9590
|
+
"allowNo": false,
|
|
9591
|
+
"type": "boolean"
|
|
9592
|
+
},
|
|
9593
|
+
"non-interactive": {
|
|
9594
|
+
"description": "Run the command in non-interactive mode.",
|
|
9595
|
+
"name": "non-interactive",
|
|
9596
|
+
"noCacheDefault": true,
|
|
9597
|
+
"allowNo": false,
|
|
9598
|
+
"type": "boolean"
|
|
9599
|
+
},
|
|
9600
|
+
"all-steps": {
|
|
9601
|
+
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
9602
|
+
"name": "all-steps",
|
|
9603
|
+
"allowNo": false,
|
|
9604
|
+
"type": "boolean"
|
|
9569
9605
|
}
|
|
9570
9606
|
},
|
|
9571
|
-
"description": "view a webhook",
|
|
9572
|
-
"flags": {},
|
|
9573
9607
|
"hasDynamicHelp": false,
|
|
9574
9608
|
"hiddenAliases": [],
|
|
9575
|
-
"id": "
|
|
9609
|
+
"id": "workflow:logs",
|
|
9576
9610
|
"pluginAlias": "eas-cli",
|
|
9577
9611
|
"pluginName": "eas-cli",
|
|
9578
9612
|
"pluginType": "core",
|
|
@@ -9619,20 +9653,27 @@
|
|
|
9619
9653
|
}
|
|
9620
9654
|
},
|
|
9621
9655
|
"contextDefinition": {
|
|
9656
|
+
"projectId": {},
|
|
9622
9657
|
"loggedIn": {}
|
|
9623
9658
|
},
|
|
9624
9659
|
"isESM": false,
|
|
9625
9660
|
"relativePath": [
|
|
9626
9661
|
"build",
|
|
9627
9662
|
"commands",
|
|
9628
|
-
"
|
|
9629
|
-
"
|
|
9663
|
+
"workflow",
|
|
9664
|
+
"logs.js"
|
|
9630
9665
|
]
|
|
9631
9666
|
},
|
|
9632
|
-
"workflow:
|
|
9667
|
+
"workflow:run": {
|
|
9633
9668
|
"aliases": [],
|
|
9634
|
-
"args": {
|
|
9635
|
-
|
|
9669
|
+
"args": {
|
|
9670
|
+
"file": {
|
|
9671
|
+
"description": "Path to the workflow file to run",
|
|
9672
|
+
"name": "file",
|
|
9673
|
+
"required": true
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9676
|
+
"description": "run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.",
|
|
9636
9677
|
"flags": {
|
|
9637
9678
|
"non-interactive": {
|
|
9638
9679
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -9640,15 +9681,49 @@
|
|
|
9640
9681
|
"noCacheDefault": true,
|
|
9641
9682
|
"allowNo": false,
|
|
9642
9683
|
"type": "boolean"
|
|
9684
|
+
},
|
|
9685
|
+
"wait": {
|
|
9686
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9687
|
+
"name": "wait",
|
|
9688
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9689
|
+
"allowNo": true,
|
|
9690
|
+
"type": "boolean"
|
|
9691
|
+
},
|
|
9692
|
+
"input": {
|
|
9693
|
+
"aliases": [
|
|
9694
|
+
"f",
|
|
9695
|
+
"field"
|
|
9696
|
+
],
|
|
9697
|
+
"char": "F",
|
|
9698
|
+
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9699
|
+
"name": "input",
|
|
9700
|
+
"summary": "Set workflow inputs",
|
|
9701
|
+
"hasDynamicHelp": false,
|
|
9702
|
+
"multiple": true,
|
|
9703
|
+
"type": "option"
|
|
9704
|
+
},
|
|
9705
|
+
"ref": {
|
|
9706
|
+
"description": "The git reference must exist in the project's git repository, and the workflow file must exist at that reference. When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the project at the chosen reference.",
|
|
9707
|
+
"name": "ref",
|
|
9708
|
+
"summary": "Git reference to run the workflow on",
|
|
9709
|
+
"hasDynamicHelp": false,
|
|
9710
|
+
"multiple": false,
|
|
9711
|
+
"type": "option"
|
|
9712
|
+
},
|
|
9713
|
+
"json": {
|
|
9714
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9715
|
+
"name": "json",
|
|
9716
|
+
"allowNo": false,
|
|
9717
|
+
"type": "boolean"
|
|
9643
9718
|
}
|
|
9644
9719
|
},
|
|
9645
9720
|
"hasDynamicHelp": false,
|
|
9646
9721
|
"hiddenAliases": [],
|
|
9647
|
-
"id": "workflow:
|
|
9722
|
+
"id": "workflow:run",
|
|
9648
9723
|
"pluginAlias": "eas-cli",
|
|
9649
9724
|
"pluginName": "eas-cli",
|
|
9650
9725
|
"pluginType": "core",
|
|
9651
|
-
"strict":
|
|
9726
|
+
"strict": true,
|
|
9652
9727
|
"enableJsonFlag": false,
|
|
9653
9728
|
"ContextOptions": {
|
|
9654
9729
|
"LoggedIn": {
|
|
@@ -9691,7 +9766,10 @@
|
|
|
9691
9766
|
}
|
|
9692
9767
|
},
|
|
9693
9768
|
"contextDefinition": {
|
|
9694
|
-
"
|
|
9769
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9770
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9771
|
+
"projectDir": {},
|
|
9772
|
+
"vcsClient": {},
|
|
9695
9773
|
"loggedIn": {}
|
|
9696
9774
|
},
|
|
9697
9775
|
"isESM": false,
|
|
@@ -9699,30 +9777,55 @@
|
|
|
9699
9777
|
"build",
|
|
9700
9778
|
"commands",
|
|
9701
9779
|
"workflow",
|
|
9702
|
-
"
|
|
9780
|
+
"run.js"
|
|
9703
9781
|
]
|
|
9704
9782
|
},
|
|
9705
|
-
"workflow:
|
|
9783
|
+
"workflow:runs": {
|
|
9706
9784
|
"aliases": [],
|
|
9707
|
-
"args": {
|
|
9708
|
-
|
|
9709
|
-
"description": "Name of the workflow file (must end with .yml or .yaml)",
|
|
9710
|
-
"name": "name",
|
|
9711
|
-
"required": false
|
|
9712
|
-
}
|
|
9713
|
-
},
|
|
9714
|
-
"description": "create a new workflow configuration YAML file",
|
|
9785
|
+
"args": {},
|
|
9786
|
+
"description": "list recent workflow runs for this project, with their IDs, statuses, and timestamps",
|
|
9715
9787
|
"flags": {
|
|
9716
|
-
"
|
|
9717
|
-
"description": "If
|
|
9718
|
-
"name": "
|
|
9788
|
+
"workflow": {
|
|
9789
|
+
"description": "If present, the query will only return runs for the specified workflow file name",
|
|
9790
|
+
"name": "workflow",
|
|
9791
|
+
"required": false,
|
|
9792
|
+
"hasDynamicHelp": false,
|
|
9793
|
+
"multiple": false,
|
|
9794
|
+
"type": "option"
|
|
9795
|
+
},
|
|
9796
|
+
"status": {
|
|
9797
|
+
"description": "If present, filter the returned runs to select those with the specified status",
|
|
9798
|
+
"name": "status",
|
|
9799
|
+
"required": false,
|
|
9800
|
+
"hasDynamicHelp": false,
|
|
9801
|
+
"multiple": false,
|
|
9802
|
+
"options": [
|
|
9803
|
+
"ACTION_REQUIRED",
|
|
9804
|
+
"CANCELED",
|
|
9805
|
+
"FAILURE",
|
|
9806
|
+
"IN_PROGRESS",
|
|
9807
|
+
"NEW",
|
|
9808
|
+
"SUCCESS"
|
|
9809
|
+
],
|
|
9810
|
+
"type": "option"
|
|
9811
|
+
},
|
|
9812
|
+
"json": {
|
|
9813
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9814
|
+
"name": "json",
|
|
9719
9815
|
"allowNo": false,
|
|
9720
9816
|
"type": "boolean"
|
|
9817
|
+
},
|
|
9818
|
+
"limit": {
|
|
9819
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 100.",
|
|
9820
|
+
"name": "limit",
|
|
9821
|
+
"hasDynamicHelp": false,
|
|
9822
|
+
"multiple": false,
|
|
9823
|
+
"type": "option"
|
|
9721
9824
|
}
|
|
9722
9825
|
},
|
|
9723
9826
|
"hasDynamicHelp": false,
|
|
9724
9827
|
"hiddenAliases": [],
|
|
9725
|
-
"id": "workflow:
|
|
9828
|
+
"id": "workflow:runs",
|
|
9726
9829
|
"pluginAlias": "eas-cli",
|
|
9727
9830
|
"pluginName": "eas-cli",
|
|
9728
9831
|
"pluginType": "core",
|
|
@@ -9769,9 +9872,7 @@
|
|
|
9769
9872
|
}
|
|
9770
9873
|
},
|
|
9771
9874
|
"contextDefinition": {
|
|
9772
|
-
"
|
|
9773
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
9774
|
-
"projectDir": {},
|
|
9875
|
+
"projectId": {},
|
|
9775
9876
|
"loggedIn": {}
|
|
9776
9877
|
},
|
|
9777
9878
|
"isESM": false,
|
|
@@ -9779,14 +9880,33 @@
|
|
|
9779
9880
|
"build",
|
|
9780
9881
|
"commands",
|
|
9781
9882
|
"workflow",
|
|
9782
|
-
"
|
|
9883
|
+
"runs.js"
|
|
9783
9884
|
]
|
|
9784
9885
|
},
|
|
9785
|
-
"workflow:
|
|
9886
|
+
"workflow:status": {
|
|
9786
9887
|
"aliases": [],
|
|
9787
|
-
"args": {
|
|
9788
|
-
|
|
9888
|
+
"args": {
|
|
9889
|
+
"WORKFLOW_RUN_ID": {
|
|
9890
|
+
"description": "A workflow run ID.",
|
|
9891
|
+
"name": "WORKFLOW_RUN_ID"
|
|
9892
|
+
}
|
|
9893
|
+
},
|
|
9894
|
+
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
9789
9895
|
"flags": {
|
|
9896
|
+
"non-interactive": {
|
|
9897
|
+
"description": "Run the command in non-interactive mode.",
|
|
9898
|
+
"name": "non-interactive",
|
|
9899
|
+
"noCacheDefault": true,
|
|
9900
|
+
"allowNo": false,
|
|
9901
|
+
"type": "boolean"
|
|
9902
|
+
},
|
|
9903
|
+
"wait": {
|
|
9904
|
+
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9905
|
+
"name": "wait",
|
|
9906
|
+
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9907
|
+
"allowNo": true,
|
|
9908
|
+
"type": "boolean"
|
|
9909
|
+
},
|
|
9790
9910
|
"json": {
|
|
9791
9911
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9792
9912
|
"name": "json",
|
|
@@ -9795,9 +9915,8 @@
|
|
|
9795
9915
|
}
|
|
9796
9916
|
},
|
|
9797
9917
|
"hasDynamicHelp": false,
|
|
9798
|
-
"hidden": true,
|
|
9799
9918
|
"hiddenAliases": [],
|
|
9800
|
-
"id": "workflow:
|
|
9919
|
+
"id": "workflow:status",
|
|
9801
9920
|
"pluginAlias": "eas-cli",
|
|
9802
9921
|
"pluginName": "eas-cli",
|
|
9803
9922
|
"pluginType": "core",
|
|
@@ -9844,7 +9963,10 @@
|
|
|
9844
9963
|
}
|
|
9845
9964
|
},
|
|
9846
9965
|
"contextDefinition": {
|
|
9847
|
-
"
|
|
9966
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
9967
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
9968
|
+
"projectDir": {},
|
|
9969
|
+
"vcsClient": {},
|
|
9848
9970
|
"loggedIn": {}
|
|
9849
9971
|
},
|
|
9850
9972
|
"isESM": false,
|
|
@@ -9852,42 +9974,31 @@
|
|
|
9852
9974
|
"build",
|
|
9853
9975
|
"commands",
|
|
9854
9976
|
"workflow",
|
|
9855
|
-
"
|
|
9977
|
+
"status.js"
|
|
9856
9978
|
]
|
|
9857
9979
|
},
|
|
9858
|
-
"workflow:
|
|
9980
|
+
"workflow:validate": {
|
|
9859
9981
|
"aliases": [],
|
|
9860
9982
|
"args": {
|
|
9861
|
-
"
|
|
9862
|
-
"description": "
|
|
9863
|
-
"name": "
|
|
9983
|
+
"path": {
|
|
9984
|
+
"description": "Path to the workflow configuration YAML file (must end with .yml or .yaml)",
|
|
9985
|
+
"name": "path",
|
|
9986
|
+
"required": true
|
|
9864
9987
|
}
|
|
9865
9988
|
},
|
|
9866
|
-
"description": "
|
|
9989
|
+
"description": "validate a workflow configuration yaml file",
|
|
9867
9990
|
"flags": {
|
|
9868
|
-
"json": {
|
|
9869
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9870
|
-
"name": "json",
|
|
9871
|
-
"allowNo": false,
|
|
9872
|
-
"type": "boolean"
|
|
9873
|
-
},
|
|
9874
9991
|
"non-interactive": {
|
|
9875
9992
|
"description": "Run the command in non-interactive mode.",
|
|
9876
9993
|
"name": "non-interactive",
|
|
9877
|
-
"noCacheDefault": true,
|
|
9878
|
-
"allowNo": false,
|
|
9879
|
-
"type": "boolean"
|
|
9880
|
-
},
|
|
9881
|
-
"all-steps": {
|
|
9882
|
-
"description": "Print all logs, rather than prompting for a specific step. This will be automatically set when in non-interactive mode.",
|
|
9883
|
-
"name": "all-steps",
|
|
9994
|
+
"noCacheDefault": true,
|
|
9884
9995
|
"allowNo": false,
|
|
9885
9996
|
"type": "boolean"
|
|
9886
9997
|
}
|
|
9887
9998
|
},
|
|
9888
9999
|
"hasDynamicHelp": false,
|
|
9889
10000
|
"hiddenAliases": [],
|
|
9890
|
-
"id": "workflow:
|
|
10001
|
+
"id": "workflow:validate",
|
|
9891
10002
|
"pluginAlias": "eas-cli",
|
|
9892
10003
|
"pluginName": "eas-cli",
|
|
9893
10004
|
"pluginType": "core",
|
|
@@ -9934,6 +10045,9 @@
|
|
|
9934
10045
|
}
|
|
9935
10046
|
},
|
|
9936
10047
|
"contextDefinition": {
|
|
10048
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
10049
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
10050
|
+
"projectDir": {},
|
|
9937
10051
|
"projectId": {},
|
|
9938
10052
|
"loggedIn": {}
|
|
9939
10053
|
},
|
|
@@ -9942,65 +10056,36 @@
|
|
|
9942
10056
|
"build",
|
|
9943
10057
|
"commands",
|
|
9944
10058
|
"workflow",
|
|
9945
|
-
"
|
|
10059
|
+
"validate.js"
|
|
9946
10060
|
]
|
|
9947
10061
|
},
|
|
9948
|
-
"workflow:
|
|
10062
|
+
"workflow:view": {
|
|
9949
10063
|
"aliases": [],
|
|
9950
10064
|
"args": {
|
|
9951
|
-
"
|
|
9952
|
-
"description": "
|
|
9953
|
-
"name": "
|
|
9954
|
-
"required": true
|
|
10065
|
+
"id": {
|
|
10066
|
+
"description": "ID of the workflow run to view",
|
|
10067
|
+
"name": "id"
|
|
9955
10068
|
}
|
|
9956
10069
|
},
|
|
9957
|
-
"description": "
|
|
10070
|
+
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
9958
10071
|
"flags": {
|
|
10072
|
+
"json": {
|
|
10073
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10074
|
+
"name": "json",
|
|
10075
|
+
"allowNo": false,
|
|
10076
|
+
"type": "boolean"
|
|
10077
|
+
},
|
|
9959
10078
|
"non-interactive": {
|
|
9960
10079
|
"description": "Run the command in non-interactive mode.",
|
|
9961
10080
|
"name": "non-interactive",
|
|
9962
10081
|
"noCacheDefault": true,
|
|
9963
10082
|
"allowNo": false,
|
|
9964
10083
|
"type": "boolean"
|
|
9965
|
-
},
|
|
9966
|
-
"wait": {
|
|
9967
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
9968
|
-
"name": "wait",
|
|
9969
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
9970
|
-
"allowNo": true,
|
|
9971
|
-
"type": "boolean"
|
|
9972
|
-
},
|
|
9973
|
-
"input": {
|
|
9974
|
-
"aliases": [
|
|
9975
|
-
"f",
|
|
9976
|
-
"field"
|
|
9977
|
-
],
|
|
9978
|
-
"char": "F",
|
|
9979
|
-
"description": "Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.",
|
|
9980
|
-
"name": "input",
|
|
9981
|
-
"summary": "Set workflow inputs",
|
|
9982
|
-
"hasDynamicHelp": false,
|
|
9983
|
-
"multiple": true,
|
|
9984
|
-
"type": "option"
|
|
9985
|
-
},
|
|
9986
|
-
"ref": {
|
|
9987
|
-
"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.",
|
|
9988
|
-
"name": "ref",
|
|
9989
|
-
"summary": "Git reference to run the workflow on",
|
|
9990
|
-
"hasDynamicHelp": false,
|
|
9991
|
-
"multiple": false,
|
|
9992
|
-
"type": "option"
|
|
9993
|
-
},
|
|
9994
|
-
"json": {
|
|
9995
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
9996
|
-
"name": "json",
|
|
9997
|
-
"allowNo": false,
|
|
9998
|
-
"type": "boolean"
|
|
9999
10084
|
}
|
|
10000
10085
|
},
|
|
10001
10086
|
"hasDynamicHelp": false,
|
|
10002
10087
|
"hiddenAliases": [],
|
|
10003
|
-
"id": "workflow:
|
|
10088
|
+
"id": "workflow:view",
|
|
10004
10089
|
"pluginAlias": "eas-cli",
|
|
10005
10090
|
"pluginName": "eas-cli",
|
|
10006
10091
|
"pluginType": "core",
|
|
@@ -10047,10 +10132,7 @@
|
|
|
10047
10132
|
}
|
|
10048
10133
|
},
|
|
10049
10134
|
"contextDefinition": {
|
|
10050
|
-
"
|
|
10051
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10052
|
-
"projectDir": {},
|
|
10053
|
-
"vcsClient": {},
|
|
10135
|
+
"projectId": {},
|
|
10054
10136
|
"loggedIn": {}
|
|
10055
10137
|
},
|
|
10056
10138
|
"isESM": false,
|
|
@@ -10058,55 +10140,69 @@
|
|
|
10058
10140
|
"build",
|
|
10059
10141
|
"commands",
|
|
10060
10142
|
"workflow",
|
|
10061
|
-
"
|
|
10143
|
+
"view.js"
|
|
10062
10144
|
]
|
|
10063
10145
|
},
|
|
10064
|
-
"
|
|
10146
|
+
"secret:create": {
|
|
10065
10147
|
"aliases": [],
|
|
10066
10148
|
"args": {},
|
|
10067
|
-
"description": "
|
|
10149
|
+
"description": "create an environment secret on the current project or owner account",
|
|
10068
10150
|
"flags": {
|
|
10069
|
-
"
|
|
10070
|
-
"description": "
|
|
10071
|
-
"name": "
|
|
10072
|
-
"
|
|
10151
|
+
"scope": {
|
|
10152
|
+
"description": "Scope for the secret",
|
|
10153
|
+
"name": "scope",
|
|
10154
|
+
"default": "project",
|
|
10073
10155
|
"hasDynamicHelp": false,
|
|
10074
10156
|
"multiple": false,
|
|
10157
|
+
"options": [
|
|
10158
|
+
"account",
|
|
10159
|
+
"project"
|
|
10160
|
+
],
|
|
10075
10161
|
"type": "option"
|
|
10076
10162
|
},
|
|
10077
|
-
"
|
|
10078
|
-
"description": "
|
|
10079
|
-
"name": "
|
|
10080
|
-
"
|
|
10163
|
+
"name": {
|
|
10164
|
+
"description": "Name of the secret",
|
|
10165
|
+
"name": "name",
|
|
10166
|
+
"hasDynamicHelp": false,
|
|
10167
|
+
"multiple": false,
|
|
10168
|
+
"type": "option"
|
|
10169
|
+
},
|
|
10170
|
+
"value": {
|
|
10171
|
+
"description": "Text value or path to a file to store in the secret",
|
|
10172
|
+
"name": "value",
|
|
10173
|
+
"hasDynamicHelp": false,
|
|
10174
|
+
"multiple": false,
|
|
10175
|
+
"type": "option"
|
|
10176
|
+
},
|
|
10177
|
+
"type": {
|
|
10178
|
+
"description": "The type of secret",
|
|
10179
|
+
"name": "type",
|
|
10081
10180
|
"hasDynamicHelp": false,
|
|
10082
10181
|
"multiple": false,
|
|
10083
10182
|
"options": [
|
|
10084
|
-
"
|
|
10085
|
-
"
|
|
10086
|
-
"FAILURE",
|
|
10087
|
-
"IN_PROGRESS",
|
|
10088
|
-
"NEW",
|
|
10089
|
-
"SUCCESS"
|
|
10183
|
+
"string",
|
|
10184
|
+
"file"
|
|
10090
10185
|
],
|
|
10091
10186
|
"type": "option"
|
|
10092
10187
|
},
|
|
10093
|
-
"
|
|
10094
|
-
"description": "
|
|
10095
|
-
"name": "
|
|
10188
|
+
"force": {
|
|
10189
|
+
"description": "Delete and recreate existing secrets",
|
|
10190
|
+
"name": "force",
|
|
10096
10191
|
"allowNo": false,
|
|
10097
10192
|
"type": "boolean"
|
|
10098
10193
|
},
|
|
10099
|
-
"
|
|
10100
|
-
"description": "
|
|
10101
|
-
"name": "
|
|
10102
|
-
"
|
|
10103
|
-
"
|
|
10104
|
-
"type": "
|
|
10194
|
+
"non-interactive": {
|
|
10195
|
+
"description": "Run the command in non-interactive mode.",
|
|
10196
|
+
"name": "non-interactive",
|
|
10197
|
+
"noCacheDefault": true,
|
|
10198
|
+
"allowNo": false,
|
|
10199
|
+
"type": "boolean"
|
|
10105
10200
|
}
|
|
10106
10201
|
},
|
|
10107
10202
|
"hasDynamicHelp": false,
|
|
10203
|
+
"hidden": true,
|
|
10108
10204
|
"hiddenAliases": [],
|
|
10109
|
-
"id": "
|
|
10205
|
+
"id": "secret:create",
|
|
10110
10206
|
"pluginAlias": "eas-cli",
|
|
10111
10207
|
"pluginName": "eas-cli",
|
|
10112
10208
|
"pluginType": "core",
|
|
@@ -10160,44 +10256,34 @@
|
|
|
10160
10256
|
"relativePath": [
|
|
10161
10257
|
"build",
|
|
10162
10258
|
"commands",
|
|
10163
|
-
"
|
|
10164
|
-
"
|
|
10259
|
+
"secret",
|
|
10260
|
+
"create.js"
|
|
10165
10261
|
]
|
|
10166
10262
|
},
|
|
10167
|
-
"
|
|
10263
|
+
"secret:delete": {
|
|
10168
10264
|
"aliases": [],
|
|
10169
|
-
"args": {
|
|
10170
|
-
|
|
10171
|
-
"description": "A workflow run ID.",
|
|
10172
|
-
"name": "WORKFLOW_RUN_ID"
|
|
10173
|
-
}
|
|
10174
|
-
},
|
|
10175
|
-
"description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10265
|
+
"args": {},
|
|
10266
|
+
"description": "delete an environment secret by ID",
|
|
10176
10267
|
"flags": {
|
|
10268
|
+
"id": {
|
|
10269
|
+
"description": "ID of the secret to delete",
|
|
10270
|
+
"name": "id",
|
|
10271
|
+
"hasDynamicHelp": false,
|
|
10272
|
+
"multiple": false,
|
|
10273
|
+
"type": "option"
|
|
10274
|
+
},
|
|
10177
10275
|
"non-interactive": {
|
|
10178
10276
|
"description": "Run the command in non-interactive mode.",
|
|
10179
10277
|
"name": "non-interactive",
|
|
10180
10278
|
"noCacheDefault": true,
|
|
10181
10279
|
"allowNo": false,
|
|
10182
10280
|
"type": "boolean"
|
|
10183
|
-
},
|
|
10184
|
-
"wait": {
|
|
10185
|
-
"description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
|
|
10186
|
-
"name": "wait",
|
|
10187
|
-
"summary": "Wait for workflow run to complete. Defaults to false.",
|
|
10188
|
-
"allowNo": true,
|
|
10189
|
-
"type": "boolean"
|
|
10190
|
-
},
|
|
10191
|
-
"json": {
|
|
10192
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
10193
|
-
"name": "json",
|
|
10194
|
-
"allowNo": false,
|
|
10195
|
-
"type": "boolean"
|
|
10196
10281
|
}
|
|
10197
10282
|
},
|
|
10198
10283
|
"hasDynamicHelp": false,
|
|
10284
|
+
"hidden": true,
|
|
10199
10285
|
"hiddenAliases": [],
|
|
10200
|
-
"id": "
|
|
10286
|
+
"id": "secret:delete",
|
|
10201
10287
|
"pluginAlias": "eas-cli",
|
|
10202
10288
|
"pluginName": "eas-cli",
|
|
10203
10289
|
"pluginType": "core",
|
|
@@ -10244,42 +10330,26 @@
|
|
|
10244
10330
|
}
|
|
10245
10331
|
},
|
|
10246
10332
|
"contextDefinition": {
|
|
10247
|
-
"
|
|
10248
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10249
|
-
"projectDir": {},
|
|
10250
|
-
"vcsClient": {},
|
|
10333
|
+
"projectId": {},
|
|
10251
10334
|
"loggedIn": {}
|
|
10252
10335
|
},
|
|
10253
10336
|
"isESM": false,
|
|
10254
10337
|
"relativePath": [
|
|
10255
10338
|
"build",
|
|
10256
10339
|
"commands",
|
|
10257
|
-
"
|
|
10258
|
-
"
|
|
10340
|
+
"secret",
|
|
10341
|
+
"delete.js"
|
|
10259
10342
|
]
|
|
10260
10343
|
},
|
|
10261
|
-
"
|
|
10344
|
+
"secret:list": {
|
|
10262
10345
|
"aliases": [],
|
|
10263
|
-
"args": {
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
"name": "path",
|
|
10267
|
-
"required": true
|
|
10268
|
-
}
|
|
10269
|
-
},
|
|
10270
|
-
"description": "validate a workflow configuration yaml file",
|
|
10271
|
-
"flags": {
|
|
10272
|
-
"non-interactive": {
|
|
10273
|
-
"description": "Run the command in non-interactive mode.",
|
|
10274
|
-
"name": "non-interactive",
|
|
10275
|
-
"noCacheDefault": true,
|
|
10276
|
-
"allowNo": false,
|
|
10277
|
-
"type": "boolean"
|
|
10278
|
-
}
|
|
10279
|
-
},
|
|
10346
|
+
"args": {},
|
|
10347
|
+
"description": "list environment secrets available for your current app",
|
|
10348
|
+
"flags": {},
|
|
10280
10349
|
"hasDynamicHelp": false,
|
|
10350
|
+
"hidden": true,
|
|
10281
10351
|
"hiddenAliases": [],
|
|
10282
|
-
"id": "
|
|
10352
|
+
"id": "secret:list",
|
|
10283
10353
|
"pluginAlias": "eas-cli",
|
|
10284
10354
|
"pluginName": "eas-cli",
|
|
10285
10355
|
"pluginType": "core",
|
|
@@ -10326,9 +10396,6 @@
|
|
|
10326
10396
|
}
|
|
10327
10397
|
},
|
|
10328
10398
|
"contextDefinition": {
|
|
10329
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
10330
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
10331
|
-
"projectDir": {},
|
|
10332
10399
|
"projectId": {},
|
|
10333
10400
|
"loggedIn": {}
|
|
10334
10401
|
},
|
|
@@ -10336,23 +10403,37 @@
|
|
|
10336
10403
|
"relativePath": [
|
|
10337
10404
|
"build",
|
|
10338
10405
|
"commands",
|
|
10339
|
-
"
|
|
10340
|
-
"
|
|
10406
|
+
"secret",
|
|
10407
|
+
"list.js"
|
|
10341
10408
|
]
|
|
10342
10409
|
},
|
|
10343
|
-
"
|
|
10410
|
+
"secret:push": {
|
|
10344
10411
|
"aliases": [],
|
|
10345
|
-
"args": {
|
|
10346
|
-
|
|
10347
|
-
"description": "ID of the workflow run to view",
|
|
10348
|
-
"name": "id"
|
|
10349
|
-
}
|
|
10350
|
-
},
|
|
10351
|
-
"description": "view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
|
|
10412
|
+
"args": {},
|
|
10413
|
+
"description": "read environment secrets from env file and store on the server",
|
|
10352
10414
|
"flags": {
|
|
10353
|
-
"
|
|
10354
|
-
"description": "
|
|
10355
|
-
"name": "
|
|
10415
|
+
"scope": {
|
|
10416
|
+
"description": "Scope for the secrets",
|
|
10417
|
+
"name": "scope",
|
|
10418
|
+
"default": "project",
|
|
10419
|
+
"hasDynamicHelp": false,
|
|
10420
|
+
"multiple": false,
|
|
10421
|
+
"options": [
|
|
10422
|
+
"account",
|
|
10423
|
+
"project"
|
|
10424
|
+
],
|
|
10425
|
+
"type": "option"
|
|
10426
|
+
},
|
|
10427
|
+
"env-file": {
|
|
10428
|
+
"description": "Env file with secrets",
|
|
10429
|
+
"name": "env-file",
|
|
10430
|
+
"hasDynamicHelp": false,
|
|
10431
|
+
"multiple": false,
|
|
10432
|
+
"type": "option"
|
|
10433
|
+
},
|
|
10434
|
+
"force": {
|
|
10435
|
+
"description": "Delete and recreate existing secrets",
|
|
10436
|
+
"name": "force",
|
|
10356
10437
|
"allowNo": false,
|
|
10357
10438
|
"type": "boolean"
|
|
10358
10439
|
},
|
|
@@ -10365,8 +10446,9 @@
|
|
|
10365
10446
|
}
|
|
10366
10447
|
},
|
|
10367
10448
|
"hasDynamicHelp": false,
|
|
10449
|
+
"hidden": true,
|
|
10368
10450
|
"hiddenAliases": [],
|
|
10369
|
-
"id": "
|
|
10451
|
+
"id": "secret:push",
|
|
10370
10452
|
"pluginAlias": "eas-cli",
|
|
10371
10453
|
"pluginName": "eas-cli",
|
|
10372
10454
|
"pluginType": "core",
|
|
@@ -10420,8 +10502,8 @@
|
|
|
10420
10502
|
"relativePath": [
|
|
10421
10503
|
"build",
|
|
10422
10504
|
"commands",
|
|
10423
|
-
"
|
|
10424
|
-
"
|
|
10505
|
+
"secret",
|
|
10506
|
+
"push.js"
|
|
10425
10507
|
]
|
|
10426
10508
|
},
|
|
10427
10509
|
"build:version:get": {
|
|
@@ -11730,5 +11812,5 @@
|
|
|
11730
11812
|
]
|
|
11731
11813
|
}
|
|
11732
11814
|
},
|
|
11733
|
-
"version": "18.
|
|
11815
|
+
"version": "18.12.1"
|
|
11734
11816
|
}
|