eas-cli 18.7.0 → 18.8.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 +147 -90
- package/build/build/utils/url.d.ts +6 -0
- package/build/build/utils/url.js +9 -0
- package/build/channel/insights/formatInsights.d.ts +47 -0
- package/build/channel/insights/formatInsights.js +108 -0
- package/build/commands/channel/insights.d.ts +18 -0
- package/build/commands/channel/insights.js +71 -0
- package/build/commands/observe/events.d.ts +1 -0
- package/build/commands/observe/events.js +17 -4
- package/build/commands/observe/metrics.d.ts +1 -0
- package/build/commands/observe/metrics.js +18 -6
- package/build/commands/observe/versions.d.ts +1 -0
- package/build/commands/observe/versions.js +17 -4
- package/build/commands/simulator/start.d.ts +16 -0
- package/build/commands/simulator/start.js +203 -0
- package/build/commands/update/insights.d.ts +19 -0
- package/build/commands/update/insights.js +75 -0
- package/build/commands/update/view.d.ts +4 -0
- package/build/commands/update/view.js +47 -2
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +28 -3
- package/build/graphql/client.d.ts +13 -0
- package/build/graphql/client.js +36 -1
- package/build/graphql/generated.d.ts +318 -0
- package/build/graphql/generated.js +21 -3
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +5 -0
- package/build/graphql/mutations/DeviceRunSessionMutation.js +34 -0
- package/build/graphql/queries/ChannelInsightsQuery.d.ts +12 -0
- package/build/graphql/queries/ChannelInsightsQuery.js +81 -0
- package/build/graphql/queries/DeviceRunSessionQuery.d.ts +5 -0
- package/build/graphql/queries/DeviceRunSessionQuery.js +28 -0
- package/build/graphql/queries/UpdateInsightsQuery.d.ts +10 -0
- package/build/graphql/queries/UpdateInsightsQuery.js +53 -0
- package/build/graphql/types/Observe.js +1 -0
- package/build/insights/formatTimespan.d.ts +7 -0
- package/build/insights/formatTimespan.js +15 -0
- package/build/insights/timeRange.d.ts +10 -0
- package/build/insights/timeRange.js +10 -0
- package/build/metadata/apple/tasks/previews.js +41 -15
- package/build/observe/formatEvents.d.ts +3 -0
- package/build/observe/formatEvents.js +4 -0
- package/build/observe/formatMetrics.d.ts +3 -2
- package/build/observe/formatMetrics.js +16 -27
- package/build/observe/formatVersions.js +2 -8
- package/build/update/insights/formatInsights.d.ts +34 -0
- package/build/update/insights/formatInsights.js +128 -0
- package/build/utils/renderTextTable.d.ts +6 -0
- package/build/utils/renderTextTable.js +23 -0
- package/oclif.manifest.json +995 -593
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -3288,6 +3288,132 @@
|
|
|
3288
3288
|
"edit.js"
|
|
3289
3289
|
]
|
|
3290
3290
|
},
|
|
3291
|
+
"channel:insights": {
|
|
3292
|
+
"aliases": [],
|
|
3293
|
+
"args": {},
|
|
3294
|
+
"description": "display adoption, crash, and unique-user insights for a channel + runtime version",
|
|
3295
|
+
"flags": {
|
|
3296
|
+
"channel": {
|
|
3297
|
+
"description": "Name of the channel.",
|
|
3298
|
+
"name": "channel",
|
|
3299
|
+
"required": true,
|
|
3300
|
+
"hasDynamicHelp": false,
|
|
3301
|
+
"multiple": false,
|
|
3302
|
+
"type": "option"
|
|
3303
|
+
},
|
|
3304
|
+
"runtime-version": {
|
|
3305
|
+
"description": "Runtime version to query insights for.",
|
|
3306
|
+
"name": "runtime-version",
|
|
3307
|
+
"required": true,
|
|
3308
|
+
"hasDynamicHelp": false,
|
|
3309
|
+
"multiple": false,
|
|
3310
|
+
"type": "option"
|
|
3311
|
+
},
|
|
3312
|
+
"days": {
|
|
3313
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
3314
|
+
"exclusive": [
|
|
3315
|
+
"start",
|
|
3316
|
+
"end"
|
|
3317
|
+
],
|
|
3318
|
+
"name": "days",
|
|
3319
|
+
"hasDynamicHelp": false,
|
|
3320
|
+
"multiple": false,
|
|
3321
|
+
"type": "option"
|
|
3322
|
+
},
|
|
3323
|
+
"start": {
|
|
3324
|
+
"description": "Start of insights time range (ISO date).",
|
|
3325
|
+
"exclusive": [
|
|
3326
|
+
"days"
|
|
3327
|
+
],
|
|
3328
|
+
"name": "start",
|
|
3329
|
+
"hasDynamicHelp": false,
|
|
3330
|
+
"multiple": false,
|
|
3331
|
+
"type": "option"
|
|
3332
|
+
},
|
|
3333
|
+
"end": {
|
|
3334
|
+
"description": "End of insights time range (ISO date).",
|
|
3335
|
+
"exclusive": [
|
|
3336
|
+
"days"
|
|
3337
|
+
],
|
|
3338
|
+
"name": "end",
|
|
3339
|
+
"hasDynamicHelp": false,
|
|
3340
|
+
"multiple": false,
|
|
3341
|
+
"type": "option"
|
|
3342
|
+
},
|
|
3343
|
+
"json": {
|
|
3344
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3345
|
+
"name": "json",
|
|
3346
|
+
"allowNo": false,
|
|
3347
|
+
"type": "boolean"
|
|
3348
|
+
},
|
|
3349
|
+
"non-interactive": {
|
|
3350
|
+
"description": "Run the command in non-interactive mode.",
|
|
3351
|
+
"name": "non-interactive",
|
|
3352
|
+
"noCacheDefault": true,
|
|
3353
|
+
"allowNo": false,
|
|
3354
|
+
"type": "boolean"
|
|
3355
|
+
}
|
|
3356
|
+
},
|
|
3357
|
+
"hasDynamicHelp": false,
|
|
3358
|
+
"hiddenAliases": [],
|
|
3359
|
+
"id": "channel:insights",
|
|
3360
|
+
"pluginAlias": "eas-cli",
|
|
3361
|
+
"pluginName": "eas-cli",
|
|
3362
|
+
"pluginType": "core",
|
|
3363
|
+
"strict": true,
|
|
3364
|
+
"enableJsonFlag": false,
|
|
3365
|
+
"ContextOptions": {
|
|
3366
|
+
"LoggedIn": {
|
|
3367
|
+
"loggedIn": {}
|
|
3368
|
+
},
|
|
3369
|
+
"MaybeLoggedIn": {
|
|
3370
|
+
"maybeLoggedIn": {}
|
|
3371
|
+
},
|
|
3372
|
+
"DynamicLoggedIn": {
|
|
3373
|
+
"getDynamicLoggedInAsync": {}
|
|
3374
|
+
},
|
|
3375
|
+
"SessionManagment": {
|
|
3376
|
+
"sessionManager": {}
|
|
3377
|
+
},
|
|
3378
|
+
"OptionalProjectConfig": {
|
|
3379
|
+
"optionalPrivateProjectConfig": {}
|
|
3380
|
+
},
|
|
3381
|
+
"ProjectDir": {
|
|
3382
|
+
"projectDir": {}
|
|
3383
|
+
},
|
|
3384
|
+
"DynamicProjectConfig": {
|
|
3385
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3386
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
3387
|
+
},
|
|
3388
|
+
"ProjectConfig": {
|
|
3389
|
+
"loggedIn": {},
|
|
3390
|
+
"privateProjectConfig": {}
|
|
3391
|
+
},
|
|
3392
|
+
"Analytics": {
|
|
3393
|
+
"analytics": {}
|
|
3394
|
+
},
|
|
3395
|
+
"Vcs": {
|
|
3396
|
+
"vcsClient": {}
|
|
3397
|
+
},
|
|
3398
|
+
"ServerSideEnvironmentVariables": {
|
|
3399
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
3400
|
+
},
|
|
3401
|
+
"ProjectId": {
|
|
3402
|
+
"projectId": {}
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
"contextDefinition": {
|
|
3406
|
+
"projectId": {},
|
|
3407
|
+
"loggedIn": {}
|
|
3408
|
+
},
|
|
3409
|
+
"isESM": false,
|
|
3410
|
+
"relativePath": [
|
|
3411
|
+
"build",
|
|
3412
|
+
"commands",
|
|
3413
|
+
"channel",
|
|
3414
|
+
"insights.js"
|
|
3415
|
+
]
|
|
3416
|
+
},
|
|
3291
3417
|
"channel:list": {
|
|
3292
3418
|
"aliases": [],
|
|
3293
3419
|
"args": {},
|
|
@@ -3997,79 +4123,23 @@
|
|
|
3997
4123
|
"index.js"
|
|
3998
4124
|
]
|
|
3999
4125
|
},
|
|
4000
|
-
"
|
|
4001
|
-
"aliases": [
|
|
4126
|
+
"deploy:delete": {
|
|
4127
|
+
"aliases": [
|
|
4128
|
+
"worker:delete"
|
|
4129
|
+
],
|
|
4002
4130
|
"args": {
|
|
4003
|
-
"
|
|
4004
|
-
"
|
|
4005
|
-
"name": "environment",
|
|
4006
|
-
"required": false
|
|
4131
|
+
"DEPLOYMENT_ID": {
|
|
4132
|
+
"name": "DEPLOYMENT_ID"
|
|
4007
4133
|
}
|
|
4008
4134
|
},
|
|
4009
|
-
"description": "
|
|
4135
|
+
"description": "Delete a deployment.",
|
|
4010
4136
|
"flags": {
|
|
4011
|
-
"
|
|
4012
|
-
"description": "
|
|
4013
|
-
"name": "
|
|
4014
|
-
"hasDynamicHelp": false,
|
|
4015
|
-
"multiple": false,
|
|
4016
|
-
"type": "option"
|
|
4017
|
-
},
|
|
4018
|
-
"value": {
|
|
4019
|
-
"description": "Text value or the variable",
|
|
4020
|
-
"name": "value",
|
|
4021
|
-
"hasDynamicHelp": false,
|
|
4022
|
-
"multiple": false,
|
|
4023
|
-
"type": "option"
|
|
4024
|
-
},
|
|
4025
|
-
"force": {
|
|
4026
|
-
"description": "Overwrite existing variable",
|
|
4027
|
-
"name": "force",
|
|
4137
|
+
"json": {
|
|
4138
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4139
|
+
"name": "json",
|
|
4028
4140
|
"allowNo": false,
|
|
4029
4141
|
"type": "boolean"
|
|
4030
4142
|
},
|
|
4031
|
-
"type": {
|
|
4032
|
-
"description": "The type of variable",
|
|
4033
|
-
"name": "type",
|
|
4034
|
-
"hasDynamicHelp": false,
|
|
4035
|
-
"multiple": false,
|
|
4036
|
-
"options": [
|
|
4037
|
-
"string",
|
|
4038
|
-
"file"
|
|
4039
|
-
],
|
|
4040
|
-
"type": "option"
|
|
4041
|
-
},
|
|
4042
|
-
"visibility": {
|
|
4043
|
-
"description": "Visibility of the variable",
|
|
4044
|
-
"name": "visibility",
|
|
4045
|
-
"hasDynamicHelp": false,
|
|
4046
|
-
"multiple": false,
|
|
4047
|
-
"options": [
|
|
4048
|
-
"plaintext",
|
|
4049
|
-
"sensitive",
|
|
4050
|
-
"secret"
|
|
4051
|
-
],
|
|
4052
|
-
"type": "option"
|
|
4053
|
-
},
|
|
4054
|
-
"scope": {
|
|
4055
|
-
"description": "Scope for the variable",
|
|
4056
|
-
"name": "scope",
|
|
4057
|
-
"default": "project",
|
|
4058
|
-
"hasDynamicHelp": false,
|
|
4059
|
-
"multiple": false,
|
|
4060
|
-
"options": [
|
|
4061
|
-
"project",
|
|
4062
|
-
"account"
|
|
4063
|
-
],
|
|
4064
|
-
"type": "option"
|
|
4065
|
-
},
|
|
4066
|
-
"environment": {
|
|
4067
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4068
|
-
"name": "environment",
|
|
4069
|
-
"hasDynamicHelp": false,
|
|
4070
|
-
"multiple": true,
|
|
4071
|
-
"type": "option"
|
|
4072
|
-
},
|
|
4073
4143
|
"non-interactive": {
|
|
4074
4144
|
"description": "Run the command in non-interactive mode.",
|
|
4075
4145
|
"name": "non-interactive",
|
|
@@ -4080,10 +4150,11 @@
|
|
|
4080
4150
|
},
|
|
4081
4151
|
"hasDynamicHelp": false,
|
|
4082
4152
|
"hiddenAliases": [],
|
|
4083
|
-
"id": "
|
|
4153
|
+
"id": "deploy:delete",
|
|
4084
4154
|
"pluginAlias": "eas-cli",
|
|
4085
4155
|
"pluginName": "eas-cli",
|
|
4086
4156
|
"pluginType": "core",
|
|
4157
|
+
"state": "preview",
|
|
4087
4158
|
"strict": true,
|
|
4088
4159
|
"enableJsonFlag": false,
|
|
4089
4160
|
"ContextOptions": {
|
|
@@ -4127,55 +4198,85 @@
|
|
|
4127
4198
|
}
|
|
4128
4199
|
},
|
|
4129
4200
|
"contextDefinition": {
|
|
4130
|
-
"
|
|
4131
|
-
"
|
|
4201
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4202
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4203
|
+
"projectDir": {},
|
|
4132
4204
|
"loggedIn": {}
|
|
4133
4205
|
},
|
|
4134
4206
|
"isESM": false,
|
|
4135
4207
|
"relativePath": [
|
|
4136
4208
|
"build",
|
|
4137
4209
|
"commands",
|
|
4138
|
-
"
|
|
4139
|
-
"
|
|
4210
|
+
"deploy",
|
|
4211
|
+
"delete.js"
|
|
4140
4212
|
]
|
|
4141
4213
|
},
|
|
4142
|
-
"
|
|
4143
|
-
"aliases": [
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
"required": false
|
|
4149
|
-
}
|
|
4150
|
-
},
|
|
4151
|
-
"description": "delete an environment variable for the current project or account",
|
|
4214
|
+
"deploy": {
|
|
4215
|
+
"aliases": [
|
|
4216
|
+
"worker:deploy"
|
|
4217
|
+
],
|
|
4218
|
+
"args": {},
|
|
4219
|
+
"description": "deploy your Expo Router web build and API Routes",
|
|
4152
4220
|
"flags": {
|
|
4153
|
-
"
|
|
4154
|
-
"
|
|
4155
|
-
|
|
4221
|
+
"prod": {
|
|
4222
|
+
"aliases": [
|
|
4223
|
+
"production"
|
|
4224
|
+
],
|
|
4225
|
+
"description": "Create a new production deployment.",
|
|
4226
|
+
"name": "prod",
|
|
4227
|
+
"allowNo": false,
|
|
4228
|
+
"type": "boolean"
|
|
4229
|
+
},
|
|
4230
|
+
"alias": {
|
|
4231
|
+
"description": "Custom alias to assign to the new deployment.",
|
|
4232
|
+
"name": "alias",
|
|
4156
4233
|
"hasDynamicHelp": false,
|
|
4234
|
+
"helpValue": "name",
|
|
4157
4235
|
"multiple": false,
|
|
4158
4236
|
"type": "option"
|
|
4159
4237
|
},
|
|
4160
|
-
"
|
|
4161
|
-
"description": "
|
|
4162
|
-
"name": "
|
|
4238
|
+
"id": {
|
|
4239
|
+
"description": "Custom unique identifier for the new deployment.",
|
|
4240
|
+
"name": "id",
|
|
4163
4241
|
"hasDynamicHelp": false,
|
|
4242
|
+
"helpValue": "xyz123",
|
|
4164
4243
|
"multiple": false,
|
|
4165
4244
|
"type": "option"
|
|
4166
4245
|
},
|
|
4167
|
-
"
|
|
4168
|
-
"description": "
|
|
4169
|
-
"name": "
|
|
4170
|
-
"default": "
|
|
4246
|
+
"export-dir": {
|
|
4247
|
+
"description": "Directory where the Expo project was exported.",
|
|
4248
|
+
"name": "export-dir",
|
|
4249
|
+
"default": "dist",
|
|
4250
|
+
"hasDynamicHelp": false,
|
|
4251
|
+
"helpValue": "dir",
|
|
4252
|
+
"multiple": false,
|
|
4253
|
+
"type": "option"
|
|
4254
|
+
},
|
|
4255
|
+
"dry-run": {
|
|
4256
|
+
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4257
|
+
"name": "dry-run",
|
|
4258
|
+
"allowNo": false,
|
|
4259
|
+
"type": "boolean"
|
|
4260
|
+
},
|
|
4261
|
+
"source-maps": {
|
|
4262
|
+
"description": "Include source maps in the deployment.",
|
|
4263
|
+
"name": "source-maps",
|
|
4264
|
+
"allowNo": true,
|
|
4265
|
+
"type": "boolean"
|
|
4266
|
+
},
|
|
4267
|
+
"environment": {
|
|
4268
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4269
|
+
"name": "environment",
|
|
4171
4270
|
"hasDynamicHelp": false,
|
|
4172
4271
|
"multiple": false,
|
|
4173
|
-
"options": [
|
|
4174
|
-
"project",
|
|
4175
|
-
"account"
|
|
4176
|
-
],
|
|
4177
4272
|
"type": "option"
|
|
4178
4273
|
},
|
|
4274
|
+
"json": {
|
|
4275
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4276
|
+
"name": "json",
|
|
4277
|
+
"allowNo": false,
|
|
4278
|
+
"type": "boolean"
|
|
4279
|
+
},
|
|
4179
4280
|
"non-interactive": {
|
|
4180
4281
|
"description": "Run the command in non-interactive mode.",
|
|
4181
4282
|
"name": "non-interactive",
|
|
@@ -4186,11 +4287,16 @@
|
|
|
4186
4287
|
},
|
|
4187
4288
|
"hasDynamicHelp": false,
|
|
4188
4289
|
"hiddenAliases": [],
|
|
4189
|
-
"id": "
|
|
4290
|
+
"id": "deploy",
|
|
4190
4291
|
"pluginAlias": "eas-cli",
|
|
4191
4292
|
"pluginName": "eas-cli",
|
|
4192
4293
|
"pluginType": "core",
|
|
4294
|
+
"state": "preview",
|
|
4193
4295
|
"strict": true,
|
|
4296
|
+
"usage": [
|
|
4297
|
+
"deploy [options]",
|
|
4298
|
+
"deploy --prod"
|
|
4299
|
+
],
|
|
4194
4300
|
"enableJsonFlag": false,
|
|
4195
4301
|
"ContextOptions": {
|
|
4196
4302
|
"LoggedIn": {
|
|
@@ -4233,44 +4339,27 @@
|
|
|
4233
4339
|
}
|
|
4234
4340
|
},
|
|
4235
4341
|
"contextDefinition": {
|
|
4236
|
-
"
|
|
4342
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4343
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4344
|
+
"projectDir": {},
|
|
4237
4345
|
"loggedIn": {}
|
|
4238
4346
|
},
|
|
4239
4347
|
"isESM": false,
|
|
4240
4348
|
"relativePath": [
|
|
4241
4349
|
"build",
|
|
4242
4350
|
"commands",
|
|
4243
|
-
"
|
|
4244
|
-
"
|
|
4351
|
+
"deploy",
|
|
4352
|
+
"index.js"
|
|
4245
4353
|
]
|
|
4246
4354
|
},
|
|
4247
|
-
"
|
|
4355
|
+
"device:create": {
|
|
4248
4356
|
"aliases": [],
|
|
4249
|
-
"args": {
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
"name": "environment",
|
|
4253
|
-
"required": true
|
|
4254
|
-
},
|
|
4255
|
-
"bash_command": {
|
|
4256
|
-
"description": "bash command to execute with the environment variables from the environment",
|
|
4257
|
-
"name": "bash_command",
|
|
4258
|
-
"required": true
|
|
4259
|
-
}
|
|
4260
|
-
},
|
|
4261
|
-
"description": "execute a command with environment variables from the selected environment",
|
|
4262
|
-
"flags": {
|
|
4263
|
-
"non-interactive": {
|
|
4264
|
-
"description": "Run the command in non-interactive mode.",
|
|
4265
|
-
"name": "non-interactive",
|
|
4266
|
-
"noCacheDefault": true,
|
|
4267
|
-
"allowNo": false,
|
|
4268
|
-
"type": "boolean"
|
|
4269
|
-
}
|
|
4270
|
-
},
|
|
4357
|
+
"args": {},
|
|
4358
|
+
"description": "register new Apple Devices to use for internal distribution",
|
|
4359
|
+
"flags": {},
|
|
4271
4360
|
"hasDynamicHelp": false,
|
|
4272
4361
|
"hiddenAliases": [],
|
|
4273
|
-
"id": "
|
|
4362
|
+
"id": "device:create",
|
|
4274
4363
|
"pluginAlias": "eas-cli",
|
|
4275
4364
|
"pluginName": "eas-cli",
|
|
4276
4365
|
"pluginType": "core",
|
|
@@ -4317,65 +4406,41 @@
|
|
|
4317
4406
|
}
|
|
4318
4407
|
},
|
|
4319
4408
|
"contextDefinition": {
|
|
4320
|
-
"
|
|
4321
|
-
"
|
|
4409
|
+
"loggedIn": {},
|
|
4410
|
+
"optionalPrivateProjectConfig": {}
|
|
4322
4411
|
},
|
|
4323
4412
|
"isESM": false,
|
|
4324
4413
|
"relativePath": [
|
|
4325
4414
|
"build",
|
|
4326
4415
|
"commands",
|
|
4327
|
-
"
|
|
4328
|
-
"
|
|
4416
|
+
"device",
|
|
4417
|
+
"create.js"
|
|
4329
4418
|
]
|
|
4330
4419
|
},
|
|
4331
|
-
"
|
|
4420
|
+
"device:delete": {
|
|
4332
4421
|
"aliases": [],
|
|
4333
|
-
"args": {
|
|
4334
|
-
|
|
4335
|
-
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
4336
|
-
"name": "environment",
|
|
4337
|
-
"required": false
|
|
4338
|
-
}
|
|
4339
|
-
},
|
|
4340
|
-
"description": "view an environment variable for the current project or account",
|
|
4422
|
+
"args": {},
|
|
4423
|
+
"description": "remove a registered device from your account",
|
|
4341
4424
|
"flags": {
|
|
4342
|
-
"
|
|
4343
|
-
"description": "
|
|
4344
|
-
"name": "
|
|
4345
|
-
"hasDynamicHelp": false,
|
|
4346
|
-
"multiple": false,
|
|
4347
|
-
"type": "option"
|
|
4348
|
-
},
|
|
4349
|
-
"variable-environment": {
|
|
4350
|
-
"description": "Current environment of the variable",
|
|
4351
|
-
"name": "variable-environment",
|
|
4425
|
+
"apple-team-id": {
|
|
4426
|
+
"description": "The Apple team ID on which to find the device",
|
|
4427
|
+
"name": "apple-team-id",
|
|
4352
4428
|
"hasDynamicHelp": false,
|
|
4353
4429
|
"multiple": false,
|
|
4354
4430
|
"type": "option"
|
|
4355
4431
|
},
|
|
4356
|
-
"
|
|
4357
|
-
"description": "
|
|
4358
|
-
"name": "
|
|
4359
|
-
"default": "short",
|
|
4432
|
+
"udid": {
|
|
4433
|
+
"description": "The Apple device ID to disable",
|
|
4434
|
+
"name": "udid",
|
|
4360
4435
|
"hasDynamicHelp": false,
|
|
4361
4436
|
"multiple": false,
|
|
4362
|
-
"options": [
|
|
4363
|
-
"long",
|
|
4364
|
-
"short"
|
|
4365
|
-
],
|
|
4366
4437
|
"type": "option"
|
|
4367
4438
|
},
|
|
4368
|
-
"
|
|
4369
|
-
"description": "
|
|
4370
|
-
"name": "
|
|
4371
|
-
"
|
|
4372
|
-
"
|
|
4373
|
-
"multiple": false,
|
|
4374
|
-
"options": [
|
|
4375
|
-
"project",
|
|
4376
|
-
"account"
|
|
4377
|
-
],
|
|
4378
|
-
"type": "option"
|
|
4439
|
+
"json": {
|
|
4440
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4441
|
+
"name": "json",
|
|
4442
|
+
"allowNo": false,
|
|
4443
|
+
"type": "boolean"
|
|
4379
4444
|
},
|
|
4380
4445
|
"non-interactive": {
|
|
4381
4446
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4387,7 +4452,7 @@
|
|
|
4387
4452
|
},
|
|
4388
4453
|
"hasDynamicHelp": false,
|
|
4389
4454
|
"hiddenAliases": [],
|
|
4390
|
-
"id": "
|
|
4455
|
+
"id": "device:delete",
|
|
4391
4456
|
"pluginAlias": "eas-cli",
|
|
4392
4457
|
"pluginName": "eas-cli",
|
|
4393
4458
|
"pluginType": "core",
|
|
@@ -4441,68 +4506,52 @@
|
|
|
4441
4506
|
"relativePath": [
|
|
4442
4507
|
"build",
|
|
4443
4508
|
"commands",
|
|
4444
|
-
"
|
|
4445
|
-
"
|
|
4509
|
+
"device",
|
|
4510
|
+
"delete.js"
|
|
4446
4511
|
]
|
|
4447
4512
|
},
|
|
4448
|
-
"
|
|
4513
|
+
"device:list": {
|
|
4449
4514
|
"aliases": [],
|
|
4450
|
-
"args": {
|
|
4451
|
-
|
|
4452
|
-
"description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4453
|
-
"name": "environment",
|
|
4454
|
-
"required": false
|
|
4455
|
-
}
|
|
4456
|
-
},
|
|
4457
|
-
"description": "list environment variables for the current project or account",
|
|
4515
|
+
"args": {},
|
|
4516
|
+
"description": "list all registered devices for your account",
|
|
4458
4517
|
"flags": {
|
|
4459
|
-
"
|
|
4460
|
-
"
|
|
4461
|
-
"name": "include-sensitive",
|
|
4462
|
-
"allowNo": false,
|
|
4463
|
-
"type": "boolean"
|
|
4464
|
-
},
|
|
4465
|
-
"include-file-content": {
|
|
4466
|
-
"description": "Display files content in the output",
|
|
4467
|
-
"name": "include-file-content",
|
|
4468
|
-
"allowNo": false,
|
|
4469
|
-
"type": "boolean"
|
|
4470
|
-
},
|
|
4471
|
-
"environment": {
|
|
4472
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4473
|
-
"name": "environment",
|
|
4518
|
+
"apple-team-id": {
|
|
4519
|
+
"name": "apple-team-id",
|
|
4474
4520
|
"hasDynamicHelp": false,
|
|
4475
|
-
"multiple":
|
|
4521
|
+
"multiple": false,
|
|
4476
4522
|
"type": "option"
|
|
4477
4523
|
},
|
|
4478
|
-
"
|
|
4479
|
-
"description": "
|
|
4480
|
-
"name": "
|
|
4481
|
-
"default": "short",
|
|
4524
|
+
"offset": {
|
|
4525
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
4526
|
+
"name": "offset",
|
|
4482
4527
|
"hasDynamicHelp": false,
|
|
4483
4528
|
"multiple": false,
|
|
4484
|
-
"options": [
|
|
4485
|
-
"long",
|
|
4486
|
-
"short"
|
|
4487
|
-
],
|
|
4488
4529
|
"type": "option"
|
|
4489
4530
|
},
|
|
4490
|
-
"
|
|
4491
|
-
"description": "
|
|
4492
|
-
"name": "
|
|
4493
|
-
"default": "project",
|
|
4531
|
+
"limit": {
|
|
4532
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
4533
|
+
"name": "limit",
|
|
4494
4534
|
"hasDynamicHelp": false,
|
|
4495
4535
|
"multiple": false,
|
|
4496
|
-
"options": [
|
|
4497
|
-
"project",
|
|
4498
|
-
"account"
|
|
4499
|
-
],
|
|
4500
4536
|
"type": "option"
|
|
4537
|
+
},
|
|
4538
|
+
"json": {
|
|
4539
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4540
|
+
"name": "json",
|
|
4541
|
+
"allowNo": false,
|
|
4542
|
+
"type": "boolean"
|
|
4543
|
+
},
|
|
4544
|
+
"non-interactive": {
|
|
4545
|
+
"description": "Run the command in non-interactive mode.",
|
|
4546
|
+
"name": "non-interactive",
|
|
4547
|
+
"noCacheDefault": true,
|
|
4548
|
+
"allowNo": false,
|
|
4549
|
+
"type": "boolean"
|
|
4501
4550
|
}
|
|
4502
4551
|
},
|
|
4503
4552
|
"hasDynamicHelp": false,
|
|
4504
4553
|
"hiddenAliases": [],
|
|
4505
|
-
"id": "
|
|
4554
|
+
"id": "device:list",
|
|
4506
4555
|
"pluginAlias": "eas-cli",
|
|
4507
4556
|
"pluginName": "eas-cli",
|
|
4508
4557
|
"pluginType": "core",
|
|
@@ -4556,47 +4605,53 @@
|
|
|
4556
4605
|
"relativePath": [
|
|
4557
4606
|
"build",
|
|
4558
4607
|
"commands",
|
|
4559
|
-
"
|
|
4608
|
+
"device",
|
|
4560
4609
|
"list.js"
|
|
4561
4610
|
]
|
|
4562
4611
|
},
|
|
4563
|
-
"
|
|
4612
|
+
"device:rename": {
|
|
4564
4613
|
"aliases": [],
|
|
4565
|
-
"args": {
|
|
4566
|
-
|
|
4567
|
-
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4568
|
-
"name": "environment",
|
|
4569
|
-
"required": false
|
|
4570
|
-
}
|
|
4571
|
-
},
|
|
4572
|
-
"description": "pull environment variables for the selected environment to .env file",
|
|
4614
|
+
"args": {},
|
|
4615
|
+
"description": "rename a registered device",
|
|
4573
4616
|
"flags": {
|
|
4574
|
-
"
|
|
4575
|
-
"description": "
|
|
4576
|
-
"name": "
|
|
4577
|
-
"
|
|
4578
|
-
"
|
|
4579
|
-
"type": "
|
|
4617
|
+
"apple-team-id": {
|
|
4618
|
+
"description": "The Apple team ID on which to find the device",
|
|
4619
|
+
"name": "apple-team-id",
|
|
4620
|
+
"hasDynamicHelp": false,
|
|
4621
|
+
"multiple": false,
|
|
4622
|
+
"type": "option"
|
|
4580
4623
|
},
|
|
4581
|
-
"
|
|
4582
|
-
"description": "
|
|
4583
|
-
"name": "
|
|
4624
|
+
"udid": {
|
|
4625
|
+
"description": "The Apple device ID to rename",
|
|
4626
|
+
"name": "udid",
|
|
4584
4627
|
"hasDynamicHelp": false,
|
|
4585
4628
|
"multiple": false,
|
|
4586
4629
|
"type": "option"
|
|
4587
4630
|
},
|
|
4588
|
-
"
|
|
4589
|
-
"description": "
|
|
4590
|
-
"name": "
|
|
4591
|
-
"default": ".env.local",
|
|
4631
|
+
"name": {
|
|
4632
|
+
"description": "The new name for the device",
|
|
4633
|
+
"name": "name",
|
|
4592
4634
|
"hasDynamicHelp": false,
|
|
4593
4635
|
"multiple": false,
|
|
4594
4636
|
"type": "option"
|
|
4637
|
+
},
|
|
4638
|
+
"json": {
|
|
4639
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4640
|
+
"name": "json",
|
|
4641
|
+
"allowNo": false,
|
|
4642
|
+
"type": "boolean"
|
|
4643
|
+
},
|
|
4644
|
+
"non-interactive": {
|
|
4645
|
+
"description": "Run the command in non-interactive mode.",
|
|
4646
|
+
"name": "non-interactive",
|
|
4647
|
+
"noCacheDefault": true,
|
|
4648
|
+
"allowNo": false,
|
|
4649
|
+
"type": "boolean"
|
|
4595
4650
|
}
|
|
4596
4651
|
},
|
|
4597
4652
|
"hasDynamicHelp": false,
|
|
4598
4653
|
"hiddenAliases": [],
|
|
4599
|
-
"id": "
|
|
4654
|
+
"id": "device:rename",
|
|
4600
4655
|
"pluginAlias": "eas-cli",
|
|
4601
4656
|
"pluginName": "eas-cli",
|
|
4602
4657
|
"pluginType": "core",
|
|
@@ -4644,53 +4699,28 @@
|
|
|
4644
4699
|
},
|
|
4645
4700
|
"contextDefinition": {
|
|
4646
4701
|
"projectId": {},
|
|
4647
|
-
"loggedIn": {}
|
|
4648
|
-
"projectDir": {}
|
|
4702
|
+
"loggedIn": {}
|
|
4649
4703
|
},
|
|
4650
4704
|
"isESM": false,
|
|
4651
4705
|
"relativePath": [
|
|
4652
4706
|
"build",
|
|
4653
4707
|
"commands",
|
|
4654
|
-
"
|
|
4655
|
-
"
|
|
4708
|
+
"device",
|
|
4709
|
+
"rename.js"
|
|
4656
4710
|
]
|
|
4657
4711
|
},
|
|
4658
|
-
"
|
|
4712
|
+
"device:view": {
|
|
4659
4713
|
"aliases": [],
|
|
4660
4714
|
"args": {
|
|
4661
|
-
"
|
|
4662
|
-
"
|
|
4663
|
-
"name": "environment",
|
|
4664
|
-
"required": false
|
|
4665
|
-
}
|
|
4666
|
-
},
|
|
4667
|
-
"description": "push environment variables from .env file to the selected environment",
|
|
4668
|
-
"flags": {
|
|
4669
|
-
"environment": {
|
|
4670
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4671
|
-
"name": "environment",
|
|
4672
|
-
"hasDynamicHelp": false,
|
|
4673
|
-
"multiple": true,
|
|
4674
|
-
"type": "option"
|
|
4675
|
-
},
|
|
4676
|
-
"path": {
|
|
4677
|
-
"description": "Path to the input `.env` file",
|
|
4678
|
-
"name": "path",
|
|
4679
|
-
"default": ".env.local",
|
|
4680
|
-
"hasDynamicHelp": false,
|
|
4681
|
-
"multiple": false,
|
|
4682
|
-
"type": "option"
|
|
4683
|
-
},
|
|
4684
|
-
"force": {
|
|
4685
|
-
"description": "Skip confirmation and automatically override existing variables",
|
|
4686
|
-
"name": "force",
|
|
4687
|
-
"allowNo": false,
|
|
4688
|
-
"type": "boolean"
|
|
4715
|
+
"UDID": {
|
|
4716
|
+
"name": "UDID"
|
|
4689
4717
|
}
|
|
4690
4718
|
},
|
|
4719
|
+
"description": "view a device for your project",
|
|
4720
|
+
"flags": {},
|
|
4691
4721
|
"hasDynamicHelp": false,
|
|
4692
4722
|
"hiddenAliases": [],
|
|
4693
|
-
"id": "
|
|
4723
|
+
"id": "device:view",
|
|
4694
4724
|
"pluginAlias": "eas-cli",
|
|
4695
4725
|
"pluginName": "eas-cli",
|
|
4696
4726
|
"pluginType": "core",
|
|
@@ -4744,49 +4774,41 @@
|
|
|
4744
4774
|
"relativePath": [
|
|
4745
4775
|
"build",
|
|
4746
4776
|
"commands",
|
|
4747
|
-
"
|
|
4748
|
-
"
|
|
4777
|
+
"device",
|
|
4778
|
+
"view.js"
|
|
4749
4779
|
]
|
|
4750
4780
|
},
|
|
4751
|
-
"env:
|
|
4781
|
+
"env:create": {
|
|
4752
4782
|
"aliases": [],
|
|
4753
4783
|
"args": {
|
|
4754
4784
|
"environment": {
|
|
4755
|
-
"description": "
|
|
4785
|
+
"description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
|
|
4756
4786
|
"name": "environment",
|
|
4757
4787
|
"required": false
|
|
4758
4788
|
}
|
|
4759
4789
|
},
|
|
4760
|
-
"description": "
|
|
4790
|
+
"description": "create an environment variable for the current project or account",
|
|
4761
4791
|
"flags": {
|
|
4762
|
-
"variable-name": {
|
|
4763
|
-
"description": "Current name of the variable",
|
|
4764
|
-
"name": "variable-name",
|
|
4765
|
-
"hasDynamicHelp": false,
|
|
4766
|
-
"multiple": false,
|
|
4767
|
-
"type": "option"
|
|
4768
|
-
},
|
|
4769
|
-
"variable-environment": {
|
|
4770
|
-
"description": "Current environment of the variable to update",
|
|
4771
|
-
"name": "variable-environment",
|
|
4772
|
-
"hasDynamicHelp": false,
|
|
4773
|
-
"multiple": false,
|
|
4774
|
-
"type": "option"
|
|
4775
|
-
},
|
|
4776
4792
|
"name": {
|
|
4777
|
-
"description": "
|
|
4793
|
+
"description": "Name of the variable",
|
|
4778
4794
|
"name": "name",
|
|
4779
4795
|
"hasDynamicHelp": false,
|
|
4780
4796
|
"multiple": false,
|
|
4781
4797
|
"type": "option"
|
|
4782
4798
|
},
|
|
4783
4799
|
"value": {
|
|
4784
|
-
"description": "
|
|
4800
|
+
"description": "Text value or the variable",
|
|
4785
4801
|
"name": "value",
|
|
4786
4802
|
"hasDynamicHelp": false,
|
|
4787
4803
|
"multiple": false,
|
|
4788
4804
|
"type": "option"
|
|
4789
4805
|
},
|
|
4806
|
+
"force": {
|
|
4807
|
+
"description": "Overwrite existing variable",
|
|
4808
|
+
"name": "force",
|
|
4809
|
+
"allowNo": false,
|
|
4810
|
+
"type": "boolean"
|
|
4811
|
+
},
|
|
4790
4812
|
"type": {
|
|
4791
4813
|
"description": "The type of variable",
|
|
4792
4814
|
"name": "type",
|
|
@@ -4839,7 +4861,7 @@
|
|
|
4839
4861
|
},
|
|
4840
4862
|
"hasDynamicHelp": false,
|
|
4841
4863
|
"hiddenAliases": [],
|
|
4842
|
-
"id": "env:
|
|
4864
|
+
"id": "env:create",
|
|
4843
4865
|
"pluginAlias": "eas-cli",
|
|
4844
4866
|
"pluginName": "eas-cli",
|
|
4845
4867
|
"pluginType": "core",
|
|
@@ -4895,74 +4917,46 @@
|
|
|
4895
4917
|
"build",
|
|
4896
4918
|
"commands",
|
|
4897
4919
|
"env",
|
|
4898
|
-
"
|
|
4920
|
+
"create.js"
|
|
4899
4921
|
]
|
|
4900
4922
|
},
|
|
4901
|
-
"
|
|
4923
|
+
"env:delete": {
|
|
4902
4924
|
"aliases": [],
|
|
4903
4925
|
"args": {
|
|
4904
|
-
"
|
|
4905
|
-
"description": "
|
|
4906
|
-
"name": "
|
|
4907
|
-
"required": false
|
|
4908
|
-
},
|
|
4909
|
-
"hash2": {
|
|
4910
|
-
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
4911
|
-
"name": "hash2",
|
|
4926
|
+
"environment": {
|
|
4927
|
+
"description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
|
|
4928
|
+
"name": "environment",
|
|
4912
4929
|
"required": false
|
|
4913
4930
|
}
|
|
4914
4931
|
},
|
|
4915
|
-
"description": "
|
|
4916
|
-
"examples": [
|
|
4917
|
-
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
4918
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
4919
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
4920
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
4921
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
4922
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
4923
|
-
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
4924
|
-
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
4925
|
-
],
|
|
4932
|
+
"description": "delete an environment variable for the current project or account",
|
|
4926
4933
|
"flags": {
|
|
4927
|
-
"
|
|
4928
|
-
"
|
|
4929
|
-
|
|
4930
|
-
],
|
|
4931
|
-
"description": "Compare the fingerprint with the build with the specified ID",
|
|
4932
|
-
"name": "build-id",
|
|
4934
|
+
"variable-name": {
|
|
4935
|
+
"description": "Name of the variable to delete",
|
|
4936
|
+
"name": "variable-name",
|
|
4933
4937
|
"hasDynamicHelp": false,
|
|
4934
|
-
"multiple":
|
|
4938
|
+
"multiple": false,
|
|
4935
4939
|
"type": "option"
|
|
4936
4940
|
},
|
|
4937
|
-
"
|
|
4938
|
-
"
|
|
4939
|
-
|
|
4940
|
-
],
|
|
4941
|
-
"description": "Compare the fingerprint with the update with the specified ID",
|
|
4942
|
-
"name": "update-id",
|
|
4941
|
+
"variable-environment": {
|
|
4942
|
+
"description": "Current environment of the variable to delete",
|
|
4943
|
+
"name": "variable-environment",
|
|
4943
4944
|
"hasDynamicHelp": false,
|
|
4944
|
-
"multiple":
|
|
4945
|
+
"multiple": false,
|
|
4945
4946
|
"type": "option"
|
|
4946
4947
|
},
|
|
4947
|
-
"
|
|
4948
|
-
"description": "
|
|
4949
|
-
"name": "
|
|
4950
|
-
"
|
|
4951
|
-
"type": "boolean"
|
|
4952
|
-
},
|
|
4953
|
-
"environment": {
|
|
4954
|
-
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
4955
|
-
"name": "environment",
|
|
4948
|
+
"scope": {
|
|
4949
|
+
"description": "Scope for the variable",
|
|
4950
|
+
"name": "scope",
|
|
4951
|
+
"default": "project",
|
|
4956
4952
|
"hasDynamicHelp": false,
|
|
4957
4953
|
"multiple": false,
|
|
4954
|
+
"options": [
|
|
4955
|
+
"project",
|
|
4956
|
+
"account"
|
|
4957
|
+
],
|
|
4958
4958
|
"type": "option"
|
|
4959
4959
|
},
|
|
4960
|
-
"json": {
|
|
4961
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4962
|
-
"name": "json",
|
|
4963
|
-
"allowNo": false,
|
|
4964
|
-
"type": "boolean"
|
|
4965
|
-
},
|
|
4966
4960
|
"non-interactive": {
|
|
4967
4961
|
"description": "Run the command in non-interactive mode.",
|
|
4968
4962
|
"name": "non-interactive",
|
|
@@ -4973,11 +4967,11 @@
|
|
|
4973
4967
|
},
|
|
4974
4968
|
"hasDynamicHelp": false,
|
|
4975
4969
|
"hiddenAliases": [],
|
|
4976
|
-
"id": "
|
|
4970
|
+
"id": "env:delete",
|
|
4977
4971
|
"pluginAlias": "eas-cli",
|
|
4978
4972
|
"pluginName": "eas-cli",
|
|
4979
4973
|
"pluginType": "core",
|
|
4980
|
-
"strict":
|
|
4974
|
+
"strict": true,
|
|
4981
4975
|
"enableJsonFlag": false,
|
|
4982
4976
|
"ContextOptions": {
|
|
4983
4977
|
"LoggedIn": {
|
|
@@ -5021,68 +5015,32 @@
|
|
|
5021
5015
|
},
|
|
5022
5016
|
"contextDefinition": {
|
|
5023
5017
|
"projectId": {},
|
|
5024
|
-
"loggedIn": {}
|
|
5025
|
-
"privateProjectConfig": {},
|
|
5026
|
-
"vcsClient": {},
|
|
5027
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
5018
|
+
"loggedIn": {}
|
|
5028
5019
|
},
|
|
5029
5020
|
"isESM": false,
|
|
5030
5021
|
"relativePath": [
|
|
5031
5022
|
"build",
|
|
5032
5023
|
"commands",
|
|
5033
|
-
"
|
|
5034
|
-
"
|
|
5024
|
+
"env",
|
|
5025
|
+
"delete.js"
|
|
5035
5026
|
]
|
|
5036
5027
|
},
|
|
5037
|
-
"
|
|
5028
|
+
"env:exec": {
|
|
5038
5029
|
"aliases": [],
|
|
5039
|
-
"args": {
|
|
5040
|
-
"description": "generate fingerprints from the current project",
|
|
5041
|
-
"examples": [
|
|
5042
|
-
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5043
|
-
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5044
|
-
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5045
|
-
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5046
|
-
],
|
|
5047
|
-
"flags": {
|
|
5048
|
-
"platform": {
|
|
5049
|
-
"char": "p",
|
|
5050
|
-
"name": "platform",
|
|
5051
|
-
"hasDynamicHelp": false,
|
|
5052
|
-
"multiple": false,
|
|
5053
|
-
"options": [
|
|
5054
|
-
"android",
|
|
5055
|
-
"ios"
|
|
5056
|
-
],
|
|
5057
|
-
"type": "option"
|
|
5058
|
-
},
|
|
5030
|
+
"args": {
|
|
5059
5031
|
"environment": {
|
|
5060
|
-
"description": "Environment
|
|
5061
|
-
"exclusive": [
|
|
5062
|
-
"build-profile"
|
|
5063
|
-
],
|
|
5032
|
+
"description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
|
|
5064
5033
|
"name": "environment",
|
|
5065
|
-
"
|
|
5066
|
-
"multiple": false,
|
|
5067
|
-
"type": "option"
|
|
5068
|
-
},
|
|
5069
|
-
"build-profile": {
|
|
5070
|
-
"char": "e",
|
|
5071
|
-
"description": "Name of the build profile from eas.json.",
|
|
5072
|
-
"exclusive": [
|
|
5073
|
-
"environment"
|
|
5074
|
-
],
|
|
5075
|
-
"name": "build-profile",
|
|
5076
|
-
"hasDynamicHelp": false,
|
|
5077
|
-
"multiple": false,
|
|
5078
|
-
"type": "option"
|
|
5079
|
-
},
|
|
5080
|
-
"json": {
|
|
5081
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5082
|
-
"name": "json",
|
|
5083
|
-
"allowNo": false,
|
|
5084
|
-
"type": "boolean"
|
|
5034
|
+
"required": true
|
|
5085
5035
|
},
|
|
5036
|
+
"bash_command": {
|
|
5037
|
+
"description": "bash command to execute with the environment variables from the environment",
|
|
5038
|
+
"name": "bash_command",
|
|
5039
|
+
"required": true
|
|
5040
|
+
}
|
|
5041
|
+
},
|
|
5042
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
5043
|
+
"flags": {
|
|
5086
5044
|
"non-interactive": {
|
|
5087
5045
|
"description": "Run the command in non-interactive mode.",
|
|
5088
5046
|
"name": "non-interactive",
|
|
@@ -5093,11 +5051,11 @@
|
|
|
5093
5051
|
},
|
|
5094
5052
|
"hasDynamicHelp": false,
|
|
5095
5053
|
"hiddenAliases": [],
|
|
5096
|
-
"id": "
|
|
5054
|
+
"id": "env:exec",
|
|
5097
5055
|
"pluginAlias": "eas-cli",
|
|
5098
5056
|
"pluginName": "eas-cli",
|
|
5099
5057
|
"pluginType": "core",
|
|
5100
|
-
"strict":
|
|
5058
|
+
"strict": true,
|
|
5101
5059
|
"enableJsonFlag": false,
|
|
5102
5060
|
"ContextOptions": {
|
|
5103
5061
|
"LoggedIn": {
|
|
@@ -5141,39 +5099,86 @@
|
|
|
5141
5099
|
},
|
|
5142
5100
|
"contextDefinition": {
|
|
5143
5101
|
"projectId": {},
|
|
5144
|
-
"loggedIn": {}
|
|
5145
|
-
"privateProjectConfig": {},
|
|
5146
|
-
"vcsClient": {},
|
|
5147
|
-
"getServerSideEnvironmentVariablesAsync": {},
|
|
5148
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5149
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5102
|
+
"loggedIn": {}
|
|
5150
5103
|
},
|
|
5151
5104
|
"isESM": false,
|
|
5152
5105
|
"relativePath": [
|
|
5153
5106
|
"build",
|
|
5154
5107
|
"commands",
|
|
5155
|
-
"
|
|
5156
|
-
"
|
|
5108
|
+
"env",
|
|
5109
|
+
"exec.js"
|
|
5157
5110
|
]
|
|
5158
5111
|
},
|
|
5159
|
-
"
|
|
5112
|
+
"env:get": {
|
|
5160
5113
|
"aliases": [],
|
|
5161
|
-
"args": {
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
"
|
|
5169
|
-
"
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
"
|
|
5175
|
-
|
|
5176
|
-
|
|
5114
|
+
"args": {
|
|
5115
|
+
"environment": {
|
|
5116
|
+
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
5117
|
+
"name": "environment",
|
|
5118
|
+
"required": false
|
|
5119
|
+
}
|
|
5120
|
+
},
|
|
5121
|
+
"description": "view an environment variable for the current project or account",
|
|
5122
|
+
"flags": {
|
|
5123
|
+
"variable-name": {
|
|
5124
|
+
"description": "Name of the variable",
|
|
5125
|
+
"name": "variable-name",
|
|
5126
|
+
"hasDynamicHelp": false,
|
|
5127
|
+
"multiple": false,
|
|
5128
|
+
"type": "option"
|
|
5129
|
+
},
|
|
5130
|
+
"variable-environment": {
|
|
5131
|
+
"description": "Current environment of the variable",
|
|
5132
|
+
"name": "variable-environment",
|
|
5133
|
+
"hasDynamicHelp": false,
|
|
5134
|
+
"multiple": false,
|
|
5135
|
+
"type": "option"
|
|
5136
|
+
},
|
|
5137
|
+
"format": {
|
|
5138
|
+
"description": "Output format",
|
|
5139
|
+
"name": "format",
|
|
5140
|
+
"default": "short",
|
|
5141
|
+
"hasDynamicHelp": false,
|
|
5142
|
+
"multiple": false,
|
|
5143
|
+
"options": [
|
|
5144
|
+
"long",
|
|
5145
|
+
"short"
|
|
5146
|
+
],
|
|
5147
|
+
"type": "option"
|
|
5148
|
+
},
|
|
5149
|
+
"scope": {
|
|
5150
|
+
"description": "Scope for the variable",
|
|
5151
|
+
"name": "scope",
|
|
5152
|
+
"default": "project",
|
|
5153
|
+
"hasDynamicHelp": false,
|
|
5154
|
+
"multiple": false,
|
|
5155
|
+
"options": [
|
|
5156
|
+
"project",
|
|
5157
|
+
"account"
|
|
5158
|
+
],
|
|
5159
|
+
"type": "option"
|
|
5160
|
+
},
|
|
5161
|
+
"non-interactive": {
|
|
5162
|
+
"description": "Run the command in non-interactive mode.",
|
|
5163
|
+
"name": "non-interactive",
|
|
5164
|
+
"noCacheDefault": true,
|
|
5165
|
+
"allowNo": false,
|
|
5166
|
+
"type": "boolean"
|
|
5167
|
+
}
|
|
5168
|
+
},
|
|
5169
|
+
"hasDynamicHelp": false,
|
|
5170
|
+
"hiddenAliases": [],
|
|
5171
|
+
"id": "env:get",
|
|
5172
|
+
"pluginAlias": "eas-cli",
|
|
5173
|
+
"pluginName": "eas-cli",
|
|
5174
|
+
"pluginType": "core",
|
|
5175
|
+
"strict": true,
|
|
5176
|
+
"enableJsonFlag": false,
|
|
5177
|
+
"ContextOptions": {
|
|
5178
|
+
"LoggedIn": {
|
|
5179
|
+
"loggedIn": {}
|
|
5180
|
+
},
|
|
5181
|
+
"MaybeLoggedIn": {
|
|
5177
5182
|
"maybeLoggedIn": {}
|
|
5178
5183
|
},
|
|
5179
5184
|
"DynamicLoggedIn": {
|
|
@@ -5210,53 +5215,75 @@
|
|
|
5210
5215
|
}
|
|
5211
5216
|
},
|
|
5212
5217
|
"contextDefinition": {
|
|
5213
|
-
"
|
|
5214
|
-
"
|
|
5218
|
+
"projectId": {},
|
|
5219
|
+
"loggedIn": {}
|
|
5215
5220
|
},
|
|
5216
5221
|
"isESM": false,
|
|
5217
5222
|
"relativePath": [
|
|
5218
5223
|
"build",
|
|
5219
5224
|
"commands",
|
|
5220
|
-
"
|
|
5221
|
-
"
|
|
5225
|
+
"env",
|
|
5226
|
+
"get.js"
|
|
5222
5227
|
]
|
|
5223
5228
|
},
|
|
5224
|
-
"
|
|
5229
|
+
"env:list": {
|
|
5225
5230
|
"aliases": [],
|
|
5226
|
-
"args": {
|
|
5227
|
-
|
|
5231
|
+
"args": {
|
|
5232
|
+
"environment": {
|
|
5233
|
+
"description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
5234
|
+
"name": "environment",
|
|
5235
|
+
"required": false
|
|
5236
|
+
}
|
|
5237
|
+
},
|
|
5238
|
+
"description": "list environment variables for the current project or account",
|
|
5228
5239
|
"flags": {
|
|
5229
|
-
"
|
|
5230
|
-
"description": "
|
|
5231
|
-
"name": "
|
|
5240
|
+
"include-sensitive": {
|
|
5241
|
+
"description": "Display sensitive values in the output",
|
|
5242
|
+
"name": "include-sensitive",
|
|
5243
|
+
"allowNo": false,
|
|
5244
|
+
"type": "boolean"
|
|
5245
|
+
},
|
|
5246
|
+
"include-file-content": {
|
|
5247
|
+
"description": "Display files content in the output",
|
|
5248
|
+
"name": "include-file-content",
|
|
5249
|
+
"allowNo": false,
|
|
5250
|
+
"type": "boolean"
|
|
5251
|
+
},
|
|
5252
|
+
"environment": {
|
|
5253
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5254
|
+
"name": "environment",
|
|
5232
5255
|
"hasDynamicHelp": false,
|
|
5233
|
-
"multiple":
|
|
5256
|
+
"multiple": true,
|
|
5234
5257
|
"type": "option"
|
|
5235
5258
|
},
|
|
5236
|
-
"
|
|
5237
|
-
"description": "
|
|
5238
|
-
"name": "
|
|
5259
|
+
"format": {
|
|
5260
|
+
"description": "Output format",
|
|
5261
|
+
"name": "format",
|
|
5262
|
+
"default": "short",
|
|
5239
5263
|
"hasDynamicHelp": false,
|
|
5240
5264
|
"multiple": false,
|
|
5265
|
+
"options": [
|
|
5266
|
+
"long",
|
|
5267
|
+
"short"
|
|
5268
|
+
],
|
|
5241
5269
|
"type": "option"
|
|
5242
5270
|
},
|
|
5243
|
-
"
|
|
5244
|
-
"description": "
|
|
5245
|
-
"name": "
|
|
5246
|
-
"
|
|
5247
|
-
"
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
"
|
|
5254
|
-
"type": "boolean"
|
|
5271
|
+
"scope": {
|
|
5272
|
+
"description": "Scope for the variable",
|
|
5273
|
+
"name": "scope",
|
|
5274
|
+
"default": "project",
|
|
5275
|
+
"hasDynamicHelp": false,
|
|
5276
|
+
"multiple": false,
|
|
5277
|
+
"options": [
|
|
5278
|
+
"project",
|
|
5279
|
+
"account"
|
|
5280
|
+
],
|
|
5281
|
+
"type": "option"
|
|
5255
5282
|
}
|
|
5256
5283
|
},
|
|
5257
5284
|
"hasDynamicHelp": false,
|
|
5258
5285
|
"hiddenAliases": [],
|
|
5259
|
-
"id": "
|
|
5286
|
+
"id": "env:list",
|
|
5260
5287
|
"pluginAlias": "eas-cli",
|
|
5261
5288
|
"pluginName": "eas-cli",
|
|
5262
5289
|
"pluginType": "core",
|
|
@@ -5310,52 +5337,47 @@
|
|
|
5310
5337
|
"relativePath": [
|
|
5311
5338
|
"build",
|
|
5312
5339
|
"commands",
|
|
5313
|
-
"
|
|
5314
|
-
"
|
|
5340
|
+
"env",
|
|
5341
|
+
"list.js"
|
|
5315
5342
|
]
|
|
5316
5343
|
},
|
|
5317
|
-
"
|
|
5344
|
+
"env:pull": {
|
|
5318
5345
|
"aliases": [],
|
|
5319
|
-
"args": {
|
|
5320
|
-
|
|
5346
|
+
"args": {
|
|
5347
|
+
"environment": {
|
|
5348
|
+
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
5349
|
+
"name": "environment",
|
|
5350
|
+
"required": false
|
|
5351
|
+
}
|
|
5352
|
+
},
|
|
5353
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
5321
5354
|
"flags": {
|
|
5322
|
-
"
|
|
5323
|
-
"
|
|
5324
|
-
"
|
|
5325
|
-
"
|
|
5326
|
-
"
|
|
5355
|
+
"non-interactive": {
|
|
5356
|
+
"description": "Run the command in non-interactive mode.",
|
|
5357
|
+
"name": "non-interactive",
|
|
5358
|
+
"noCacheDefault": true,
|
|
5359
|
+
"allowNo": false,
|
|
5360
|
+
"type": "boolean"
|
|
5327
5361
|
},
|
|
5328
|
-
"
|
|
5329
|
-
"description": "
|
|
5330
|
-
"name": "
|
|
5362
|
+
"environment": {
|
|
5363
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5364
|
+
"name": "environment",
|
|
5331
5365
|
"hasDynamicHelp": false,
|
|
5332
5366
|
"multiple": false,
|
|
5333
5367
|
"type": "option"
|
|
5334
5368
|
},
|
|
5335
|
-
"
|
|
5336
|
-
"description": "
|
|
5337
|
-
"name": "
|
|
5369
|
+
"path": {
|
|
5370
|
+
"description": "Path to the result `.env` file",
|
|
5371
|
+
"name": "path",
|
|
5372
|
+
"default": ".env.local",
|
|
5338
5373
|
"hasDynamicHelp": false,
|
|
5339
5374
|
"multiple": false,
|
|
5340
5375
|
"type": "option"
|
|
5341
|
-
},
|
|
5342
|
-
"json": {
|
|
5343
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5344
|
-
"name": "json",
|
|
5345
|
-
"allowNo": false,
|
|
5346
|
-
"type": "boolean"
|
|
5347
|
-
},
|
|
5348
|
-
"non-interactive": {
|
|
5349
|
-
"description": "Run the command in non-interactive mode.",
|
|
5350
|
-
"name": "non-interactive",
|
|
5351
|
-
"noCacheDefault": true,
|
|
5352
|
-
"allowNo": false,
|
|
5353
|
-
"type": "boolean"
|
|
5354
5376
|
}
|
|
5355
5377
|
},
|
|
5356
5378
|
"hasDynamicHelp": false,
|
|
5357
5379
|
"hiddenAliases": [],
|
|
5358
|
-
"id": "
|
|
5380
|
+
"id": "env:pull",
|
|
5359
5381
|
"pluginAlias": "eas-cli",
|
|
5360
5382
|
"pluginName": "eas-cli",
|
|
5361
5383
|
"pluginType": "core",
|
|
@@ -5403,59 +5425,53 @@
|
|
|
5403
5425
|
},
|
|
5404
5426
|
"contextDefinition": {
|
|
5405
5427
|
"projectId": {},
|
|
5406
|
-
"loggedIn": {}
|
|
5428
|
+
"loggedIn": {},
|
|
5429
|
+
"projectDir": {}
|
|
5407
5430
|
},
|
|
5408
5431
|
"isESM": false,
|
|
5409
5432
|
"relativePath": [
|
|
5410
5433
|
"build",
|
|
5411
5434
|
"commands",
|
|
5412
|
-
"
|
|
5413
|
-
"
|
|
5435
|
+
"env",
|
|
5436
|
+
"pull.js"
|
|
5414
5437
|
]
|
|
5415
5438
|
},
|
|
5416
|
-
"
|
|
5439
|
+
"env:push": {
|
|
5417
5440
|
"aliases": [],
|
|
5418
|
-
"args": {
|
|
5419
|
-
|
|
5441
|
+
"args": {
|
|
5442
|
+
"environment": {
|
|
5443
|
+
"description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
|
|
5444
|
+
"name": "environment",
|
|
5445
|
+
"required": false
|
|
5446
|
+
}
|
|
5447
|
+
},
|
|
5448
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
5420
5449
|
"flags": {
|
|
5421
|
-
"
|
|
5422
|
-
"description": "
|
|
5423
|
-
"name": "
|
|
5424
|
-
"hasDynamicHelp": false,
|
|
5425
|
-
"multiple": false,
|
|
5426
|
-
"type": "option"
|
|
5427
|
-
},
|
|
5428
|
-
"udid": {
|
|
5429
|
-
"description": "The Apple device ID to rename",
|
|
5430
|
-
"name": "udid",
|
|
5450
|
+
"environment": {
|
|
5451
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5452
|
+
"name": "environment",
|
|
5431
5453
|
"hasDynamicHelp": false,
|
|
5432
|
-
"multiple":
|
|
5454
|
+
"multiple": true,
|
|
5433
5455
|
"type": "option"
|
|
5434
5456
|
},
|
|
5435
|
-
"
|
|
5436
|
-
"description": "
|
|
5437
|
-
"name": "
|
|
5457
|
+
"path": {
|
|
5458
|
+
"description": "Path to the input `.env` file",
|
|
5459
|
+
"name": "path",
|
|
5460
|
+
"default": ".env.local",
|
|
5438
5461
|
"hasDynamicHelp": false,
|
|
5439
5462
|
"multiple": false,
|
|
5440
5463
|
"type": "option"
|
|
5441
5464
|
},
|
|
5442
|
-
"
|
|
5443
|
-
"description": "
|
|
5444
|
-
"name": "
|
|
5445
|
-
"allowNo": false,
|
|
5446
|
-
"type": "boolean"
|
|
5447
|
-
},
|
|
5448
|
-
"non-interactive": {
|
|
5449
|
-
"description": "Run the command in non-interactive mode.",
|
|
5450
|
-
"name": "non-interactive",
|
|
5451
|
-
"noCacheDefault": true,
|
|
5465
|
+
"force": {
|
|
5466
|
+
"description": "Skip confirmation and automatically override existing variables",
|
|
5467
|
+
"name": "force",
|
|
5452
5468
|
"allowNo": false,
|
|
5453
5469
|
"type": "boolean"
|
|
5454
5470
|
}
|
|
5455
5471
|
},
|
|
5456
5472
|
"hasDynamicHelp": false,
|
|
5457
5473
|
"hiddenAliases": [],
|
|
5458
|
-
"id": "
|
|
5474
|
+
"id": "env:push",
|
|
5459
5475
|
"pluginAlias": "eas-cli",
|
|
5460
5476
|
"pluginName": "eas-cli",
|
|
5461
5477
|
"pluginType": "core",
|
|
@@ -5509,22 +5525,102 @@
|
|
|
5509
5525
|
"relativePath": [
|
|
5510
5526
|
"build",
|
|
5511
5527
|
"commands",
|
|
5512
|
-
"
|
|
5513
|
-
"
|
|
5528
|
+
"env",
|
|
5529
|
+
"push.js"
|
|
5514
5530
|
]
|
|
5515
5531
|
},
|
|
5516
|
-
"
|
|
5532
|
+
"env:update": {
|
|
5517
5533
|
"aliases": [],
|
|
5518
5534
|
"args": {
|
|
5519
|
-
"
|
|
5520
|
-
"
|
|
5535
|
+
"environment": {
|
|
5536
|
+
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
5537
|
+
"name": "environment",
|
|
5538
|
+
"required": false
|
|
5539
|
+
}
|
|
5540
|
+
},
|
|
5541
|
+
"description": "update an environment variable on the current project or account",
|
|
5542
|
+
"flags": {
|
|
5543
|
+
"variable-name": {
|
|
5544
|
+
"description": "Current name of the variable",
|
|
5545
|
+
"name": "variable-name",
|
|
5546
|
+
"hasDynamicHelp": false,
|
|
5547
|
+
"multiple": false,
|
|
5548
|
+
"type": "option"
|
|
5549
|
+
},
|
|
5550
|
+
"variable-environment": {
|
|
5551
|
+
"description": "Current environment of the variable to update",
|
|
5552
|
+
"name": "variable-environment",
|
|
5553
|
+
"hasDynamicHelp": false,
|
|
5554
|
+
"multiple": false,
|
|
5555
|
+
"type": "option"
|
|
5556
|
+
},
|
|
5557
|
+
"name": {
|
|
5558
|
+
"description": "New name of the variable",
|
|
5559
|
+
"name": "name",
|
|
5560
|
+
"hasDynamicHelp": false,
|
|
5561
|
+
"multiple": false,
|
|
5562
|
+
"type": "option"
|
|
5563
|
+
},
|
|
5564
|
+
"value": {
|
|
5565
|
+
"description": "New value or the variable",
|
|
5566
|
+
"name": "value",
|
|
5567
|
+
"hasDynamicHelp": false,
|
|
5568
|
+
"multiple": false,
|
|
5569
|
+
"type": "option"
|
|
5570
|
+
},
|
|
5571
|
+
"type": {
|
|
5572
|
+
"description": "The type of variable",
|
|
5573
|
+
"name": "type",
|
|
5574
|
+
"hasDynamicHelp": false,
|
|
5575
|
+
"multiple": false,
|
|
5576
|
+
"options": [
|
|
5577
|
+
"string",
|
|
5578
|
+
"file"
|
|
5579
|
+
],
|
|
5580
|
+
"type": "option"
|
|
5581
|
+
},
|
|
5582
|
+
"visibility": {
|
|
5583
|
+
"description": "Visibility of the variable",
|
|
5584
|
+
"name": "visibility",
|
|
5585
|
+
"hasDynamicHelp": false,
|
|
5586
|
+
"multiple": false,
|
|
5587
|
+
"options": [
|
|
5588
|
+
"plaintext",
|
|
5589
|
+
"sensitive",
|
|
5590
|
+
"secret"
|
|
5591
|
+
],
|
|
5592
|
+
"type": "option"
|
|
5593
|
+
},
|
|
5594
|
+
"scope": {
|
|
5595
|
+
"description": "Scope for the variable",
|
|
5596
|
+
"name": "scope",
|
|
5597
|
+
"default": "project",
|
|
5598
|
+
"hasDynamicHelp": false,
|
|
5599
|
+
"multiple": false,
|
|
5600
|
+
"options": [
|
|
5601
|
+
"project",
|
|
5602
|
+
"account"
|
|
5603
|
+
],
|
|
5604
|
+
"type": "option"
|
|
5605
|
+
},
|
|
5606
|
+
"environment": {
|
|
5607
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5608
|
+
"name": "environment",
|
|
5609
|
+
"hasDynamicHelp": false,
|
|
5610
|
+
"multiple": true,
|
|
5611
|
+
"type": "option"
|
|
5612
|
+
},
|
|
5613
|
+
"non-interactive": {
|
|
5614
|
+
"description": "Run the command in non-interactive mode.",
|
|
5615
|
+
"name": "non-interactive",
|
|
5616
|
+
"noCacheDefault": true,
|
|
5617
|
+
"allowNo": false,
|
|
5618
|
+
"type": "boolean"
|
|
5521
5619
|
}
|
|
5522
5620
|
},
|
|
5523
|
-
"description": "view a device for your project",
|
|
5524
|
-
"flags": {},
|
|
5525
5621
|
"hasDynamicHelp": false,
|
|
5526
5622
|
"hiddenAliases": [],
|
|
5527
|
-
"id": "
|
|
5623
|
+
"id": "env:update",
|
|
5528
5624
|
"pluginAlias": "eas-cli",
|
|
5529
5625
|
"pluginName": "eas-cli",
|
|
5530
5626
|
"pluginType": "core",
|
|
@@ -5572,27 +5668,76 @@
|
|
|
5572
5668
|
},
|
|
5573
5669
|
"contextDefinition": {
|
|
5574
5670
|
"projectId": {},
|
|
5671
|
+
"analytics": {},
|
|
5575
5672
|
"loggedIn": {}
|
|
5576
5673
|
},
|
|
5577
5674
|
"isESM": false,
|
|
5578
5675
|
"relativePath": [
|
|
5579
5676
|
"build",
|
|
5580
5677
|
"commands",
|
|
5581
|
-
"
|
|
5582
|
-
"
|
|
5678
|
+
"env",
|
|
5679
|
+
"update.js"
|
|
5583
5680
|
]
|
|
5584
5681
|
},
|
|
5585
|
-
"
|
|
5586
|
-
"aliases": [
|
|
5587
|
-
"worker:delete"
|
|
5588
|
-
],
|
|
5682
|
+
"fingerprint:compare": {
|
|
5683
|
+
"aliases": [],
|
|
5589
5684
|
"args": {
|
|
5590
|
-
"
|
|
5591
|
-
"
|
|
5685
|
+
"hash1": {
|
|
5686
|
+
"description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
|
|
5687
|
+
"name": "hash1",
|
|
5688
|
+
"required": false
|
|
5689
|
+
},
|
|
5690
|
+
"hash2": {
|
|
5691
|
+
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
5692
|
+
"name": "hash2",
|
|
5693
|
+
"required": false
|
|
5592
5694
|
}
|
|
5593
5695
|
},
|
|
5594
|
-
"description": "
|
|
5696
|
+
"description": "compare fingerprints of the current project, builds, and updates",
|
|
5697
|
+
"examples": [
|
|
5698
|
+
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
5699
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
5700
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
5701
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
5702
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
5703
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
5704
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
5705
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
5706
|
+
],
|
|
5595
5707
|
"flags": {
|
|
5708
|
+
"build-id": {
|
|
5709
|
+
"aliases": [
|
|
5710
|
+
"buildId"
|
|
5711
|
+
],
|
|
5712
|
+
"description": "Compare the fingerprint with the build with the specified ID",
|
|
5713
|
+
"name": "build-id",
|
|
5714
|
+
"hasDynamicHelp": false,
|
|
5715
|
+
"multiple": true,
|
|
5716
|
+
"type": "option"
|
|
5717
|
+
},
|
|
5718
|
+
"update-id": {
|
|
5719
|
+
"aliases": [
|
|
5720
|
+
"updateId"
|
|
5721
|
+
],
|
|
5722
|
+
"description": "Compare the fingerprint with the update with the specified ID",
|
|
5723
|
+
"name": "update-id",
|
|
5724
|
+
"hasDynamicHelp": false,
|
|
5725
|
+
"multiple": true,
|
|
5726
|
+
"type": "option"
|
|
5727
|
+
},
|
|
5728
|
+
"open": {
|
|
5729
|
+
"description": "Open the fingerprint comparison in the browser",
|
|
5730
|
+
"name": "open",
|
|
5731
|
+
"allowNo": false,
|
|
5732
|
+
"type": "boolean"
|
|
5733
|
+
},
|
|
5734
|
+
"environment": {
|
|
5735
|
+
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
5736
|
+
"name": "environment",
|
|
5737
|
+
"hasDynamicHelp": false,
|
|
5738
|
+
"multiple": false,
|
|
5739
|
+
"type": "option"
|
|
5740
|
+
},
|
|
5596
5741
|
"json": {
|
|
5597
5742
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5598
5743
|
"name": "json",
|
|
@@ -5609,12 +5754,11 @@
|
|
|
5609
5754
|
},
|
|
5610
5755
|
"hasDynamicHelp": false,
|
|
5611
5756
|
"hiddenAliases": [],
|
|
5612
|
-
"id": "
|
|
5757
|
+
"id": "fingerprint:compare",
|
|
5613
5758
|
"pluginAlias": "eas-cli",
|
|
5614
5759
|
"pluginName": "eas-cli",
|
|
5615
5760
|
"pluginType": "core",
|
|
5616
|
-
"
|
|
5617
|
-
"strict": true,
|
|
5761
|
+
"strict": false,
|
|
5618
5762
|
"enableJsonFlag": false,
|
|
5619
5763
|
"ContextOptions": {
|
|
5620
5764
|
"LoggedIn": {
|
|
@@ -5657,75 +5801,59 @@
|
|
|
5657
5801
|
}
|
|
5658
5802
|
},
|
|
5659
5803
|
"contextDefinition": {
|
|
5660
|
-
"
|
|
5661
|
-
"
|
|
5662
|
-
"
|
|
5663
|
-
"
|
|
5804
|
+
"projectId": {},
|
|
5805
|
+
"loggedIn": {},
|
|
5806
|
+
"privateProjectConfig": {},
|
|
5807
|
+
"vcsClient": {},
|
|
5808
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
5664
5809
|
},
|
|
5665
5810
|
"isESM": false,
|
|
5666
5811
|
"relativePath": [
|
|
5667
5812
|
"build",
|
|
5668
5813
|
"commands",
|
|
5669
|
-
"
|
|
5670
|
-
"
|
|
5814
|
+
"fingerprint",
|
|
5815
|
+
"compare.js"
|
|
5671
5816
|
]
|
|
5672
5817
|
},
|
|
5673
|
-
"
|
|
5674
|
-
"aliases": [
|
|
5675
|
-
"worker:deploy"
|
|
5676
|
-
],
|
|
5818
|
+
"fingerprint:generate": {
|
|
5819
|
+
"aliases": [],
|
|
5677
5820
|
"args": {},
|
|
5678
|
-
"description": "
|
|
5821
|
+
"description": "generate fingerprints from the current project",
|
|
5822
|
+
"examples": [
|
|
5823
|
+
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5824
|
+
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5825
|
+
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5826
|
+
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5827
|
+
],
|
|
5679
5828
|
"flags": {
|
|
5680
|
-
"
|
|
5681
|
-
"
|
|
5682
|
-
|
|
5683
|
-
],
|
|
5684
|
-
"description": "Create a new production deployment.",
|
|
5685
|
-
"name": "prod",
|
|
5686
|
-
"allowNo": false,
|
|
5687
|
-
"type": "boolean"
|
|
5688
|
-
},
|
|
5689
|
-
"alias": {
|
|
5690
|
-
"description": "Custom alias to assign to the new deployment.",
|
|
5691
|
-
"name": "alias",
|
|
5692
|
-
"hasDynamicHelp": false,
|
|
5693
|
-
"helpValue": "name",
|
|
5694
|
-
"multiple": false,
|
|
5695
|
-
"type": "option"
|
|
5696
|
-
},
|
|
5697
|
-
"id": {
|
|
5698
|
-
"description": "Custom unique identifier for the new deployment.",
|
|
5699
|
-
"name": "id",
|
|
5829
|
+
"platform": {
|
|
5830
|
+
"char": "p",
|
|
5831
|
+
"name": "platform",
|
|
5700
5832
|
"hasDynamicHelp": false,
|
|
5701
|
-
"helpValue": "xyz123",
|
|
5702
5833
|
"multiple": false,
|
|
5834
|
+
"options": [
|
|
5835
|
+
"android",
|
|
5836
|
+
"ios"
|
|
5837
|
+
],
|
|
5703
5838
|
"type": "option"
|
|
5704
5839
|
},
|
|
5705
|
-
"
|
|
5706
|
-
"description": "
|
|
5707
|
-
"
|
|
5708
|
-
|
|
5840
|
+
"environment": {
|
|
5841
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5842
|
+
"exclusive": [
|
|
5843
|
+
"build-profile"
|
|
5844
|
+
],
|
|
5845
|
+
"name": "environment",
|
|
5709
5846
|
"hasDynamicHelp": false,
|
|
5710
|
-
"helpValue": "dir",
|
|
5711
5847
|
"multiple": false,
|
|
5712
5848
|
"type": "option"
|
|
5713
5849
|
},
|
|
5714
|
-
"
|
|
5715
|
-
"
|
|
5716
|
-
"
|
|
5717
|
-
"
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
"description": "Include source maps in the deployment.",
|
|
5722
|
-
"name": "source-maps",
|
|
5723
|
-
"allowNo": true,
|
|
5724
|
-
"type": "boolean"
|
|
5725
|
-
},
|
|
5726
|
-
"environment": {
|
|
5727
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5728
|
-
"name": "environment",
|
|
5850
|
+
"build-profile": {
|
|
5851
|
+
"char": "e",
|
|
5852
|
+
"description": "Name of the build profile from eas.json.",
|
|
5853
|
+
"exclusive": [
|
|
5854
|
+
"environment"
|
|
5855
|
+
],
|
|
5856
|
+
"name": "build-profile",
|
|
5729
5857
|
"hasDynamicHelp": false,
|
|
5730
5858
|
"multiple": false,
|
|
5731
5859
|
"type": "option"
|
|
@@ -5746,16 +5874,11 @@
|
|
|
5746
5874
|
},
|
|
5747
5875
|
"hasDynamicHelp": false,
|
|
5748
5876
|
"hiddenAliases": [],
|
|
5749
|
-
"id": "
|
|
5877
|
+
"id": "fingerprint:generate",
|
|
5750
5878
|
"pluginAlias": "eas-cli",
|
|
5751
5879
|
"pluginName": "eas-cli",
|
|
5752
5880
|
"pluginType": "core",
|
|
5753
|
-
"
|
|
5754
|
-
"strict": true,
|
|
5755
|
-
"usage": [
|
|
5756
|
-
"deploy [options]",
|
|
5757
|
-
"deploy --prod"
|
|
5758
|
-
],
|
|
5881
|
+
"strict": false,
|
|
5759
5882
|
"enableJsonFlag": false,
|
|
5760
5883
|
"ContextOptions": {
|
|
5761
5884
|
"LoggedIn": {
|
|
@@ -5798,17 +5921,20 @@
|
|
|
5798
5921
|
}
|
|
5799
5922
|
},
|
|
5800
5923
|
"contextDefinition": {
|
|
5924
|
+
"projectId": {},
|
|
5925
|
+
"loggedIn": {},
|
|
5926
|
+
"privateProjectConfig": {},
|
|
5927
|
+
"vcsClient": {},
|
|
5928
|
+
"getServerSideEnvironmentVariablesAsync": {},
|
|
5801
5929
|
"getDynamicPublicProjectConfigAsync": {},
|
|
5802
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5803
|
-
"projectDir": {},
|
|
5804
|
-
"loggedIn": {}
|
|
5930
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5805
5931
|
},
|
|
5806
5932
|
"isESM": false,
|
|
5807
5933
|
"relativePath": [
|
|
5808
5934
|
"build",
|
|
5809
5935
|
"commands",
|
|
5810
|
-
"
|
|
5811
|
-
"
|
|
5936
|
+
"fingerprint",
|
|
5937
|
+
"generate.js"
|
|
5812
5938
|
]
|
|
5813
5939
|
},
|
|
5814
5940
|
"metadata:lint": {
|
|
@@ -6232,6 +6358,9 @@
|
|
|
6232
6358
|
"projectId": {},
|
|
6233
6359
|
"loggedIn": {}
|
|
6234
6360
|
},
|
|
6361
|
+
"loggedInOnlyContextDefinition": {
|
|
6362
|
+
"loggedIn": {}
|
|
6363
|
+
},
|
|
6235
6364
|
"isESM": false,
|
|
6236
6365
|
"relativePath": [
|
|
6237
6366
|
"build",
|
|
@@ -6392,6 +6521,9 @@
|
|
|
6392
6521
|
"projectId": {},
|
|
6393
6522
|
"loggedIn": {}
|
|
6394
6523
|
},
|
|
6524
|
+
"loggedInOnlyContextDefinition": {
|
|
6525
|
+
"loggedIn": {}
|
|
6526
|
+
},
|
|
6395
6527
|
"isESM": false,
|
|
6396
6528
|
"relativePath": [
|
|
6397
6529
|
"build",
|
|
@@ -6521,6 +6653,9 @@
|
|
|
6521
6653
|
"projectId": {},
|
|
6522
6654
|
"loggedIn": {}
|
|
6523
6655
|
},
|
|
6656
|
+
"loggedInOnlyContextDefinition": {
|
|
6657
|
+
"loggedIn": {}
|
|
6658
|
+
},
|
|
6524
6659
|
"isESM": false,
|
|
6525
6660
|
"relativePath": [
|
|
6526
6661
|
"build",
|
|
@@ -7205,6 +7340,110 @@
|
|
|
7205
7340
|
"push.js"
|
|
7206
7341
|
]
|
|
7207
7342
|
},
|
|
7343
|
+
"simulator:start": {
|
|
7344
|
+
"aliases": [],
|
|
7345
|
+
"args": {},
|
|
7346
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get the credentials to connect to it with the CLI tool of your choice",
|
|
7347
|
+
"flags": {
|
|
7348
|
+
"platform": {
|
|
7349
|
+
"description": "Device platform",
|
|
7350
|
+
"name": "platform",
|
|
7351
|
+
"required": true,
|
|
7352
|
+
"hasDynamicHelp": false,
|
|
7353
|
+
"multiple": false,
|
|
7354
|
+
"options": [
|
|
7355
|
+
"android",
|
|
7356
|
+
"ios"
|
|
7357
|
+
],
|
|
7358
|
+
"type": "option"
|
|
7359
|
+
},
|
|
7360
|
+
"type": {
|
|
7361
|
+
"description": "Type of device run session to create",
|
|
7362
|
+
"name": "type",
|
|
7363
|
+
"default": "agent-device",
|
|
7364
|
+
"hasDynamicHelp": false,
|
|
7365
|
+
"multiple": false,
|
|
7366
|
+
"options": [
|
|
7367
|
+
"agent-device"
|
|
7368
|
+
],
|
|
7369
|
+
"type": "option"
|
|
7370
|
+
},
|
|
7371
|
+
"package-version": {
|
|
7372
|
+
"description": "Version of the package backing the device run session (e.g. \"0.1.3-alpha.3\"). Defaults to \"latest\" when omitted.",
|
|
7373
|
+
"name": "package-version",
|
|
7374
|
+
"hasDynamicHelp": false,
|
|
7375
|
+
"multiple": false,
|
|
7376
|
+
"type": "option"
|
|
7377
|
+
},
|
|
7378
|
+
"non-interactive": {
|
|
7379
|
+
"description": "Run the command in non-interactive mode.",
|
|
7380
|
+
"name": "non-interactive",
|
|
7381
|
+
"noCacheDefault": true,
|
|
7382
|
+
"allowNo": false,
|
|
7383
|
+
"type": "boolean"
|
|
7384
|
+
}
|
|
7385
|
+
},
|
|
7386
|
+
"hasDynamicHelp": false,
|
|
7387
|
+
"hidden": true,
|
|
7388
|
+
"hiddenAliases": [],
|
|
7389
|
+
"id": "simulator:start",
|
|
7390
|
+
"pluginAlias": "eas-cli",
|
|
7391
|
+
"pluginName": "eas-cli",
|
|
7392
|
+
"pluginType": "core",
|
|
7393
|
+
"strict": true,
|
|
7394
|
+
"enableJsonFlag": false,
|
|
7395
|
+
"ContextOptions": {
|
|
7396
|
+
"LoggedIn": {
|
|
7397
|
+
"loggedIn": {}
|
|
7398
|
+
},
|
|
7399
|
+
"MaybeLoggedIn": {
|
|
7400
|
+
"maybeLoggedIn": {}
|
|
7401
|
+
},
|
|
7402
|
+
"DynamicLoggedIn": {
|
|
7403
|
+
"getDynamicLoggedInAsync": {}
|
|
7404
|
+
},
|
|
7405
|
+
"SessionManagment": {
|
|
7406
|
+
"sessionManager": {}
|
|
7407
|
+
},
|
|
7408
|
+
"OptionalProjectConfig": {
|
|
7409
|
+
"optionalPrivateProjectConfig": {}
|
|
7410
|
+
},
|
|
7411
|
+
"ProjectDir": {
|
|
7412
|
+
"projectDir": {}
|
|
7413
|
+
},
|
|
7414
|
+
"DynamicProjectConfig": {
|
|
7415
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
7416
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
7417
|
+
},
|
|
7418
|
+
"ProjectConfig": {
|
|
7419
|
+
"loggedIn": {},
|
|
7420
|
+
"privateProjectConfig": {}
|
|
7421
|
+
},
|
|
7422
|
+
"Analytics": {
|
|
7423
|
+
"analytics": {}
|
|
7424
|
+
},
|
|
7425
|
+
"Vcs": {
|
|
7426
|
+
"vcsClient": {}
|
|
7427
|
+
},
|
|
7428
|
+
"ServerSideEnvironmentVariables": {
|
|
7429
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
7430
|
+
},
|
|
7431
|
+
"ProjectId": {
|
|
7432
|
+
"projectId": {}
|
|
7433
|
+
}
|
|
7434
|
+
},
|
|
7435
|
+
"contextDefinition": {
|
|
7436
|
+
"projectId": {},
|
|
7437
|
+
"loggedIn": {}
|
|
7438
|
+
},
|
|
7439
|
+
"isESM": false,
|
|
7440
|
+
"relativePath": [
|
|
7441
|
+
"build",
|
|
7442
|
+
"commands",
|
|
7443
|
+
"simulator",
|
|
7444
|
+
"start.js"
|
|
7445
|
+
]
|
|
7446
|
+
},
|
|
7208
7447
|
"submit:internal": {
|
|
7209
7448
|
"aliases": [],
|
|
7210
7449
|
"args": {},
|
|
@@ -7773,6 +8012,132 @@
|
|
|
7773
8012
|
"index.js"
|
|
7774
8013
|
]
|
|
7775
8014
|
},
|
|
8015
|
+
"update:insights": {
|
|
8016
|
+
"aliases": [],
|
|
8017
|
+
"args": {
|
|
8018
|
+
"groupId": {
|
|
8019
|
+
"description": "The ID of an update group.",
|
|
8020
|
+
"name": "groupId",
|
|
8021
|
+
"required": true
|
|
8022
|
+
}
|
|
8023
|
+
},
|
|
8024
|
+
"description": "display launch, crash, unique-user, and size insights for an update group",
|
|
8025
|
+
"flags": {
|
|
8026
|
+
"platform": {
|
|
8027
|
+
"description": "Filter to a single platform.",
|
|
8028
|
+
"name": "platform",
|
|
8029
|
+
"hasDynamicHelp": false,
|
|
8030
|
+
"multiple": false,
|
|
8031
|
+
"options": [
|
|
8032
|
+
"ios",
|
|
8033
|
+
"android"
|
|
8034
|
+
],
|
|
8035
|
+
"type": "option"
|
|
8036
|
+
},
|
|
8037
|
+
"days": {
|
|
8038
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
8039
|
+
"exclusive": [
|
|
8040
|
+
"start",
|
|
8041
|
+
"end"
|
|
8042
|
+
],
|
|
8043
|
+
"name": "days",
|
|
8044
|
+
"hasDynamicHelp": false,
|
|
8045
|
+
"multiple": false,
|
|
8046
|
+
"type": "option"
|
|
8047
|
+
},
|
|
8048
|
+
"start": {
|
|
8049
|
+
"description": "Start of insights time range (ISO date).",
|
|
8050
|
+
"exclusive": [
|
|
8051
|
+
"days"
|
|
8052
|
+
],
|
|
8053
|
+
"name": "start",
|
|
8054
|
+
"hasDynamicHelp": false,
|
|
8055
|
+
"multiple": false,
|
|
8056
|
+
"type": "option"
|
|
8057
|
+
},
|
|
8058
|
+
"end": {
|
|
8059
|
+
"description": "End of insights time range (ISO date).",
|
|
8060
|
+
"exclusive": [
|
|
8061
|
+
"days"
|
|
8062
|
+
],
|
|
8063
|
+
"name": "end",
|
|
8064
|
+
"hasDynamicHelp": false,
|
|
8065
|
+
"multiple": false,
|
|
8066
|
+
"type": "option"
|
|
8067
|
+
},
|
|
8068
|
+
"json": {
|
|
8069
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
8070
|
+
"name": "json",
|
|
8071
|
+
"allowNo": false,
|
|
8072
|
+
"type": "boolean"
|
|
8073
|
+
},
|
|
8074
|
+
"non-interactive": {
|
|
8075
|
+
"description": "Run the command in non-interactive mode.",
|
|
8076
|
+
"name": "non-interactive",
|
|
8077
|
+
"noCacheDefault": true,
|
|
8078
|
+
"allowNo": false,
|
|
8079
|
+
"type": "boolean"
|
|
8080
|
+
}
|
|
8081
|
+
},
|
|
8082
|
+
"hasDynamicHelp": false,
|
|
8083
|
+
"hiddenAliases": [],
|
|
8084
|
+
"id": "update:insights",
|
|
8085
|
+
"pluginAlias": "eas-cli",
|
|
8086
|
+
"pluginName": "eas-cli",
|
|
8087
|
+
"pluginType": "core",
|
|
8088
|
+
"strict": true,
|
|
8089
|
+
"enableJsonFlag": false,
|
|
8090
|
+
"ContextOptions": {
|
|
8091
|
+
"LoggedIn": {
|
|
8092
|
+
"loggedIn": {}
|
|
8093
|
+
},
|
|
8094
|
+
"MaybeLoggedIn": {
|
|
8095
|
+
"maybeLoggedIn": {}
|
|
8096
|
+
},
|
|
8097
|
+
"DynamicLoggedIn": {
|
|
8098
|
+
"getDynamicLoggedInAsync": {}
|
|
8099
|
+
},
|
|
8100
|
+
"SessionManagment": {
|
|
8101
|
+
"sessionManager": {}
|
|
8102
|
+
},
|
|
8103
|
+
"OptionalProjectConfig": {
|
|
8104
|
+
"optionalPrivateProjectConfig": {}
|
|
8105
|
+
},
|
|
8106
|
+
"ProjectDir": {
|
|
8107
|
+
"projectDir": {}
|
|
8108
|
+
},
|
|
8109
|
+
"DynamicProjectConfig": {
|
|
8110
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
8111
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
8112
|
+
},
|
|
8113
|
+
"ProjectConfig": {
|
|
8114
|
+
"loggedIn": {},
|
|
8115
|
+
"privateProjectConfig": {}
|
|
8116
|
+
},
|
|
8117
|
+
"Analytics": {
|
|
8118
|
+
"analytics": {}
|
|
8119
|
+
},
|
|
8120
|
+
"Vcs": {
|
|
8121
|
+
"vcsClient": {}
|
|
8122
|
+
},
|
|
8123
|
+
"ServerSideEnvironmentVariables": {
|
|
8124
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
8125
|
+
},
|
|
8126
|
+
"ProjectId": {
|
|
8127
|
+
"projectId": {}
|
|
8128
|
+
}
|
|
8129
|
+
},
|
|
8130
|
+
"contextDefinition": {
|
|
8131
|
+
"loggedIn": {}
|
|
8132
|
+
},
|
|
8133
|
+
"isESM": false,
|
|
8134
|
+
"relativePath": [
|
|
8135
|
+
"build",
|
|
8136
|
+
"commands",
|
|
8137
|
+
"update",
|
|
8138
|
+
"insights.js"
|
|
8139
|
+
]
|
|
8140
|
+
},
|
|
7776
8141
|
"update:list": {
|
|
7777
8142
|
"aliases": [],
|
|
7778
8143
|
"args": {},
|
|
@@ -8423,6 +8788,43 @@
|
|
|
8423
8788
|
},
|
|
8424
8789
|
"description": "update group details",
|
|
8425
8790
|
"flags": {
|
|
8791
|
+
"insights": {
|
|
8792
|
+
"description": "Also show insights (launches, crash rate, unique users, payload size) for the update group.",
|
|
8793
|
+
"name": "insights",
|
|
8794
|
+
"allowNo": false,
|
|
8795
|
+
"type": "boolean"
|
|
8796
|
+
},
|
|
8797
|
+
"days": {
|
|
8798
|
+
"description": "Show insights from the last N days (default 7). Only used with --insights.",
|
|
8799
|
+
"exclusive": [
|
|
8800
|
+
"start",
|
|
8801
|
+
"end"
|
|
8802
|
+
],
|
|
8803
|
+
"name": "days",
|
|
8804
|
+
"hasDynamicHelp": false,
|
|
8805
|
+
"multiple": false,
|
|
8806
|
+
"type": "option"
|
|
8807
|
+
},
|
|
8808
|
+
"start": {
|
|
8809
|
+
"description": "Start of insights time range (ISO date). Only used with --insights.",
|
|
8810
|
+
"exclusive": [
|
|
8811
|
+
"days"
|
|
8812
|
+
],
|
|
8813
|
+
"name": "start",
|
|
8814
|
+
"hasDynamicHelp": false,
|
|
8815
|
+
"multiple": false,
|
|
8816
|
+
"type": "option"
|
|
8817
|
+
},
|
|
8818
|
+
"end": {
|
|
8819
|
+
"description": "End of insights time range (ISO date). Only used with --insights.",
|
|
8820
|
+
"exclusive": [
|
|
8821
|
+
"days"
|
|
8822
|
+
],
|
|
8823
|
+
"name": "end",
|
|
8824
|
+
"hasDynamicHelp": false,
|
|
8825
|
+
"multiple": false,
|
|
8826
|
+
"type": "option"
|
|
8827
|
+
},
|
|
8426
8828
|
"json": {
|
|
8427
8829
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
8428
8830
|
"name": "json",
|
|
@@ -10207,5 +10609,5 @@
|
|
|
10207
10609
|
]
|
|
10208
10610
|
}
|
|
10209
10611
|
},
|
|
10210
|
-
"version": "18.
|
|
10612
|
+
"version": "18.8.1"
|
|
10211
10613
|
}
|