heroku 10.4.1-beta.0 → 10.4.1-beta.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/oclif.manifest.json +559 -559
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -2292,175 +2292,126 @@
|
|
|
2292
2292
|
"update.js"
|
|
2293
2293
|
]
|
|
2294
2294
|
},
|
|
2295
|
-
"
|
|
2296
|
-
"aliases": [],
|
|
2297
|
-
"args": {},
|
|
2298
|
-
"description": "create autocomplete setup scripts and completion functions",
|
|
2299
|
-
"flags": {},
|
|
2300
|
-
"hasDynamicHelp": false,
|
|
2301
|
-
"hidden": true,
|
|
2302
|
-
"hiddenAliases": [],
|
|
2303
|
-
"id": "autocomplete:create",
|
|
2304
|
-
"pluginAlias": "heroku",
|
|
2305
|
-
"pluginName": "heroku",
|
|
2306
|
-
"pluginType": "core",
|
|
2307
|
-
"strict": true,
|
|
2308
|
-
"isESM": false,
|
|
2309
|
-
"relativePath": [
|
|
2310
|
-
"lib",
|
|
2311
|
-
"commands",
|
|
2312
|
-
"autocomplete",
|
|
2313
|
-
"create.js"
|
|
2314
|
-
]
|
|
2315
|
-
},
|
|
2316
|
-
"autocomplete:doctor": {
|
|
2317
|
-
"aliases": [],
|
|
2318
|
-
"args": {
|
|
2319
|
-
"shell": {
|
|
2320
|
-
"description": "shell type",
|
|
2321
|
-
"name": "shell",
|
|
2322
|
-
"required": false
|
|
2323
|
-
}
|
|
2324
|
-
},
|
|
2325
|
-
"description": "autocomplete diagnostic",
|
|
2326
|
-
"flags": {
|
|
2327
|
-
"verbose": {
|
|
2328
|
-
"description": "list completable commands",
|
|
2329
|
-
"name": "verbose",
|
|
2330
|
-
"allowNo": false,
|
|
2331
|
-
"type": "boolean"
|
|
2332
|
-
}
|
|
2333
|
-
},
|
|
2334
|
-
"hasDynamicHelp": false,
|
|
2335
|
-
"hidden": true,
|
|
2336
|
-
"hiddenAliases": [],
|
|
2337
|
-
"id": "autocomplete:doctor",
|
|
2338
|
-
"pluginAlias": "heroku",
|
|
2339
|
-
"pluginName": "heroku",
|
|
2340
|
-
"pluginType": "core",
|
|
2341
|
-
"strict": true,
|
|
2342
|
-
"isESM": false,
|
|
2343
|
-
"relativePath": [
|
|
2344
|
-
"lib",
|
|
2345
|
-
"commands",
|
|
2346
|
-
"autocomplete",
|
|
2347
|
-
"doctor.js"
|
|
2348
|
-
]
|
|
2349
|
-
},
|
|
2350
|
-
"autocomplete": {
|
|
2295
|
+
"certs:add": {
|
|
2351
2296
|
"aliases": [],
|
|
2352
2297
|
"args": {
|
|
2353
|
-
"
|
|
2354
|
-
"description": "
|
|
2355
|
-
"name": "
|
|
2356
|
-
"required":
|
|
2298
|
+
"CRT": {
|
|
2299
|
+
"description": "absolute path of the certificate file on disk",
|
|
2300
|
+
"name": "CRT",
|
|
2301
|
+
"required": true
|
|
2302
|
+
},
|
|
2303
|
+
"KEY": {
|
|
2304
|
+
"description": "absolute path of the key file on disk",
|
|
2305
|
+
"name": "KEY",
|
|
2306
|
+
"required": true
|
|
2357
2307
|
}
|
|
2358
2308
|
},
|
|
2359
|
-
"description": "
|
|
2309
|
+
"description": "Add an SSL certificate to an app.\n\n Note: certificates with PEM encoding are also valid.\n ",
|
|
2360
2310
|
"examples": [
|
|
2361
|
-
"$ heroku
|
|
2362
|
-
"$ heroku autocomplete bash",
|
|
2363
|
-
"$ heroku autocomplete zsh",
|
|
2364
|
-
"$ heroku autocomplete --refresh-cache"
|
|
2311
|
+
"$ heroku certs:add example.com.crt example.com.key\n If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:\n https://help.salesforce.com/s/articleView?id=000333504&type=1"
|
|
2365
2312
|
],
|
|
2366
|
-
"flags": {
|
|
2367
|
-
"refresh-cache": {
|
|
2368
|
-
"char": "r",
|
|
2369
|
-
"description": "refresh cache only (ignores displaying instructions)",
|
|
2370
|
-
"name": "refresh-cache",
|
|
2371
|
-
"allowNo": false,
|
|
2372
|
-
"type": "boolean"
|
|
2373
|
-
}
|
|
2374
|
-
},
|
|
2375
|
-
"hasDynamicHelp": false,
|
|
2376
|
-
"hiddenAliases": [],
|
|
2377
|
-
"id": "autocomplete",
|
|
2378
|
-
"pluginAlias": "heroku",
|
|
2379
|
-
"pluginName": "heroku",
|
|
2380
|
-
"pluginType": "core",
|
|
2381
|
-
"strict": true,
|
|
2382
|
-
"isESM": false,
|
|
2383
|
-
"relativePath": [
|
|
2384
|
-
"lib",
|
|
2385
|
-
"commands",
|
|
2386
|
-
"autocomplete",
|
|
2387
|
-
"index.js"
|
|
2388
|
-
]
|
|
2389
|
-
},
|
|
2390
|
-
"autocomplete:options": {
|
|
2391
|
-
"aliases": [],
|
|
2392
|
-
"args": {
|
|
2393
|
-
"completion": {
|
|
2394
|
-
"name": "completion"
|
|
2395
|
-
}
|
|
2396
|
-
},
|
|
2397
|
-
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
2398
2313
|
"flags": {
|
|
2399
2314
|
"app": {
|
|
2400
2315
|
"char": "a",
|
|
2401
2316
|
"description": "app to run command against",
|
|
2402
|
-
"hidden": true,
|
|
2403
2317
|
"name": "app",
|
|
2404
|
-
"required":
|
|
2318
|
+
"required": true,
|
|
2319
|
+
"hasDynamicHelp": false,
|
|
2320
|
+
"multiple": false,
|
|
2321
|
+
"type": "option"
|
|
2322
|
+
},
|
|
2323
|
+
"remote": {
|
|
2324
|
+
"char": "r",
|
|
2325
|
+
"description": "git remote of app to use",
|
|
2326
|
+
"name": "remote",
|
|
2405
2327
|
"hasDynamicHelp": false,
|
|
2406
2328
|
"multiple": false,
|
|
2407
2329
|
"type": "option"
|
|
2408
2330
|
}
|
|
2409
2331
|
},
|
|
2410
2332
|
"hasDynamicHelp": false,
|
|
2411
|
-
"hidden": true,
|
|
2412
|
-
"hiddenAliases": [],
|
|
2413
|
-
"id": "autocomplete:options",
|
|
2414
|
-
"pluginAlias": "heroku",
|
|
2415
|
-
"pluginName": "heroku",
|
|
2416
|
-
"pluginType": "core",
|
|
2417
|
-
"strict": true,
|
|
2418
|
-
"isESM": false,
|
|
2419
|
-
"relativePath": [
|
|
2420
|
-
"lib",
|
|
2421
|
-
"commands",
|
|
2422
|
-
"autocomplete",
|
|
2423
|
-
"options.js"
|
|
2424
|
-
]
|
|
2425
|
-
},
|
|
2426
|
-
"autocomplete:script": {
|
|
2427
|
-
"aliases": [],
|
|
2428
|
-
"args": {
|
|
2429
|
-
"shell": {
|
|
2430
|
-
"description": "shell type",
|
|
2431
|
-
"name": "shell",
|
|
2432
|
-
"required": false
|
|
2433
|
-
}
|
|
2434
|
-
},
|
|
2435
|
-
"description": "display autocomplete setup script for shell",
|
|
2436
|
-
"flags": {},
|
|
2437
|
-
"hasDynamicHelp": false,
|
|
2438
|
-
"hidden": true,
|
|
2439
2333
|
"hiddenAliases": [],
|
|
2440
|
-
"id": "
|
|
2334
|
+
"id": "certs:add",
|
|
2441
2335
|
"pluginAlias": "heroku",
|
|
2442
2336
|
"pluginName": "heroku",
|
|
2443
2337
|
"pluginType": "core",
|
|
2444
2338
|
"strict": true,
|
|
2339
|
+
"topic": "certs",
|
|
2445
2340
|
"isESM": false,
|
|
2446
2341
|
"relativePath": [
|
|
2447
2342
|
"lib",
|
|
2448
2343
|
"commands",
|
|
2449
|
-
"
|
|
2450
|
-
"
|
|
2344
|
+
"certs",
|
|
2345
|
+
"add.js"
|
|
2451
2346
|
]
|
|
2452
2347
|
},
|
|
2453
|
-
"
|
|
2348
|
+
"certs:generate": {
|
|
2454
2349
|
"aliases": [],
|
|
2455
2350
|
"args": {
|
|
2456
|
-
"
|
|
2457
|
-
"description": "
|
|
2458
|
-
"name": "
|
|
2351
|
+
"domain": {
|
|
2352
|
+
"description": "domain name to generate",
|
|
2353
|
+
"name": "domain",
|
|
2459
2354
|
"required": true
|
|
2460
2355
|
}
|
|
2461
2356
|
},
|
|
2462
|
-
"description": "
|
|
2357
|
+
"description": "generate a key and a CSR or self-signed certificate",
|
|
2463
2358
|
"flags": {
|
|
2359
|
+
"selfsigned": {
|
|
2360
|
+
"description": "generate a self-signed certificate instead of a CSR",
|
|
2361
|
+
"name": "selfsigned",
|
|
2362
|
+
"required": false,
|
|
2363
|
+
"allowNo": false,
|
|
2364
|
+
"type": "boolean"
|
|
2365
|
+
},
|
|
2366
|
+
"keysize": {
|
|
2367
|
+
"description": "RSA key size in bits (default: 2048)",
|
|
2368
|
+
"name": "keysize",
|
|
2369
|
+
"hasDynamicHelp": false,
|
|
2370
|
+
"multiple": false,
|
|
2371
|
+
"type": "option"
|
|
2372
|
+
},
|
|
2373
|
+
"owner": {
|
|
2374
|
+
"description": "name of organization certificate belongs to",
|
|
2375
|
+
"name": "owner",
|
|
2376
|
+
"hasDynamicHelp": false,
|
|
2377
|
+
"multiple": false,
|
|
2378
|
+
"type": "option"
|
|
2379
|
+
},
|
|
2380
|
+
"country": {
|
|
2381
|
+
"description": "country of owner, as a two-letter ISO country code",
|
|
2382
|
+
"name": "country",
|
|
2383
|
+
"hasDynamicHelp": false,
|
|
2384
|
+
"multiple": false,
|
|
2385
|
+
"type": "option"
|
|
2386
|
+
},
|
|
2387
|
+
"area": {
|
|
2388
|
+
"description": "sub-country area (state, province, etc.) of owner",
|
|
2389
|
+
"name": "area",
|
|
2390
|
+
"hasDynamicHelp": false,
|
|
2391
|
+
"multiple": false,
|
|
2392
|
+
"type": "option"
|
|
2393
|
+
},
|
|
2394
|
+
"city": {
|
|
2395
|
+
"description": "city of owner",
|
|
2396
|
+
"name": "city",
|
|
2397
|
+
"hasDynamicHelp": false,
|
|
2398
|
+
"multiple": false,
|
|
2399
|
+
"type": "option"
|
|
2400
|
+
},
|
|
2401
|
+
"subject": {
|
|
2402
|
+
"description": "specify entire certificate subject",
|
|
2403
|
+
"name": "subject",
|
|
2404
|
+
"hasDynamicHelp": false,
|
|
2405
|
+
"multiple": false,
|
|
2406
|
+
"type": "option"
|
|
2407
|
+
},
|
|
2408
|
+
"now": {
|
|
2409
|
+
"description": "do not prompt for any owner information",
|
|
2410
|
+
"name": "now",
|
|
2411
|
+
"required": false,
|
|
2412
|
+
"allowNo": false,
|
|
2413
|
+
"type": "boolean"
|
|
2414
|
+
},
|
|
2464
2415
|
"app": {
|
|
2465
2416
|
"char": "a",
|
|
2466
2417
|
"description": "app to run command against",
|
|
@@ -2477,35 +2428,29 @@
|
|
|
2477
2428
|
"hasDynamicHelp": false,
|
|
2478
2429
|
"multiple": false,
|
|
2479
2430
|
"type": "option"
|
|
2480
|
-
},
|
|
2481
|
-
"index": {
|
|
2482
|
-
"char": "i",
|
|
2483
|
-
"description": "the 1-based index of the URL in the list of URLs",
|
|
2484
|
-
"name": "index",
|
|
2485
|
-
"hasDynamicHelp": false,
|
|
2486
|
-
"multiple": false,
|
|
2487
|
-
"type": "option"
|
|
2488
2431
|
}
|
|
2489
2432
|
},
|
|
2490
2433
|
"hasDynamicHelp": false,
|
|
2491
2434
|
"hiddenAliases": [],
|
|
2492
|
-
"id": "
|
|
2435
|
+
"id": "certs:generate",
|
|
2493
2436
|
"pluginAlias": "heroku",
|
|
2494
2437
|
"pluginName": "heroku",
|
|
2495
2438
|
"pluginType": "core",
|
|
2496
2439
|
"strict": true,
|
|
2440
|
+
"topic": "certs",
|
|
2441
|
+
"help": "Generate a key and certificate signing request (or self-signed certificate)\nfor an app. Prompts for information to put in the certificate unless --now\nis used, or at least one of the --subject, --owner, --country, --area, or\n--city options is specified.",
|
|
2497
2442
|
"isESM": false,
|
|
2498
2443
|
"relativePath": [
|
|
2499
2444
|
"lib",
|
|
2500
2445
|
"commands",
|
|
2501
|
-
"
|
|
2502
|
-
"
|
|
2446
|
+
"certs",
|
|
2447
|
+
"generate.js"
|
|
2503
2448
|
]
|
|
2504
2449
|
},
|
|
2505
|
-
"
|
|
2450
|
+
"certs": {
|
|
2506
2451
|
"aliases": [],
|
|
2507
2452
|
"args": {},
|
|
2508
|
-
"description": "
|
|
2453
|
+
"description": "list SSL certificates for an app",
|
|
2509
2454
|
"flags": {
|
|
2510
2455
|
"app": {
|
|
2511
2456
|
"char": "a",
|
|
@@ -2527,28 +2472,49 @@
|
|
|
2527
2472
|
},
|
|
2528
2473
|
"hasDynamicHelp": false,
|
|
2529
2474
|
"hiddenAliases": [],
|
|
2530
|
-
"id": "
|
|
2475
|
+
"id": "certs",
|
|
2531
2476
|
"pluginAlias": "heroku",
|
|
2532
2477
|
"pluginName": "heroku",
|
|
2533
2478
|
"pluginType": "core",
|
|
2534
2479
|
"strict": true,
|
|
2480
|
+
"topic": "certs",
|
|
2535
2481
|
"isESM": false,
|
|
2536
2482
|
"relativePath": [
|
|
2537
2483
|
"lib",
|
|
2538
2484
|
"commands",
|
|
2539
|
-
"
|
|
2540
|
-
"
|
|
2485
|
+
"certs",
|
|
2486
|
+
"index.js"
|
|
2541
2487
|
]
|
|
2542
2488
|
},
|
|
2543
|
-
"
|
|
2489
|
+
"certs:info": {
|
|
2544
2490
|
"aliases": [],
|
|
2545
2491
|
"args": {},
|
|
2546
|
-
"description": "
|
|
2492
|
+
"description": "show certificate information for an SSL certificate",
|
|
2547
2493
|
"flags": {
|
|
2548
|
-
"
|
|
2549
|
-
"
|
|
2550
|
-
"
|
|
2551
|
-
"
|
|
2494
|
+
"name": {
|
|
2495
|
+
"description": "name to check info on",
|
|
2496
|
+
"name": "name",
|
|
2497
|
+
"hasDynamicHelp": false,
|
|
2498
|
+
"multiple": false,
|
|
2499
|
+
"type": "option"
|
|
2500
|
+
},
|
|
2501
|
+
"endpoint": {
|
|
2502
|
+
"description": "endpoint to check info on",
|
|
2503
|
+
"name": "endpoint",
|
|
2504
|
+
"hasDynamicHelp": false,
|
|
2505
|
+
"multiple": false,
|
|
2506
|
+
"type": "option"
|
|
2507
|
+
},
|
|
2508
|
+
"show-domains": {
|
|
2509
|
+
"description": "show associated domains",
|
|
2510
|
+
"name": "show-domains",
|
|
2511
|
+
"allowNo": false,
|
|
2512
|
+
"type": "boolean"
|
|
2513
|
+
},
|
|
2514
|
+
"app": {
|
|
2515
|
+
"char": "a",
|
|
2516
|
+
"description": "app to run command against",
|
|
2517
|
+
"name": "app",
|
|
2552
2518
|
"required": true,
|
|
2553
2519
|
"hasDynamicHelp": false,
|
|
2554
2520
|
"multiple": false,
|
|
@@ -2565,55 +2531,46 @@
|
|
|
2565
2531
|
},
|
|
2566
2532
|
"hasDynamicHelp": false,
|
|
2567
2533
|
"hiddenAliases": [],
|
|
2568
|
-
"id": "
|
|
2569
|
-
"pluginAlias": "heroku",
|
|
2570
|
-
"pluginName": "heroku",
|
|
2571
|
-
"pluginType": "core",
|
|
2572
|
-
"strict": true,
|
|
2573
|
-
"isESM": false,
|
|
2574
|
-
"relativePath": [
|
|
2575
|
-
"lib",
|
|
2576
|
-
"commands",
|
|
2577
|
-
"buildpacks",
|
|
2578
|
-
"index.js"
|
|
2579
|
-
]
|
|
2580
|
-
},
|
|
2581
|
-
"buildpacks:info": {
|
|
2582
|
-
"aliases": [],
|
|
2583
|
-
"args": {
|
|
2584
|
-
"buildpack": {
|
|
2585
|
-
"description": "namespace/name of the buildpack",
|
|
2586
|
-
"name": "buildpack",
|
|
2587
|
-
"required": true
|
|
2588
|
-
}
|
|
2589
|
-
},
|
|
2590
|
-
"description": "fetch info about a buildpack",
|
|
2591
|
-
"flags": {},
|
|
2592
|
-
"hasDynamicHelp": false,
|
|
2593
|
-
"hiddenAliases": [],
|
|
2594
|
-
"id": "buildpacks:info",
|
|
2534
|
+
"id": "certs:info",
|
|
2595
2535
|
"pluginAlias": "heroku",
|
|
2596
2536
|
"pluginName": "heroku",
|
|
2597
2537
|
"pluginType": "core",
|
|
2598
2538
|
"strict": true,
|
|
2539
|
+
"topic": "certs",
|
|
2599
2540
|
"isESM": false,
|
|
2600
2541
|
"relativePath": [
|
|
2601
2542
|
"lib",
|
|
2602
2543
|
"commands",
|
|
2603
|
-
"
|
|
2544
|
+
"certs",
|
|
2604
2545
|
"info.js"
|
|
2605
2546
|
]
|
|
2606
2547
|
},
|
|
2607
|
-
"
|
|
2548
|
+
"certs:remove": {
|
|
2608
2549
|
"aliases": [],
|
|
2609
|
-
"args": {
|
|
2610
|
-
|
|
2611
|
-
"description": "namespace/name of the buildpack",
|
|
2612
|
-
"name": "buildpack"
|
|
2613
|
-
}
|
|
2614
|
-
},
|
|
2615
|
-
"description": "remove a buildpack set on the app",
|
|
2550
|
+
"args": {},
|
|
2551
|
+
"description": "remove an SSL certificate from an app",
|
|
2616
2552
|
"flags": {
|
|
2553
|
+
"confirm": {
|
|
2554
|
+
"hidden": true,
|
|
2555
|
+
"name": "confirm",
|
|
2556
|
+
"hasDynamicHelp": false,
|
|
2557
|
+
"multiple": false,
|
|
2558
|
+
"type": "option"
|
|
2559
|
+
},
|
|
2560
|
+
"name": {
|
|
2561
|
+
"description": "name to remove",
|
|
2562
|
+
"name": "name",
|
|
2563
|
+
"hasDynamicHelp": false,
|
|
2564
|
+
"multiple": false,
|
|
2565
|
+
"type": "option"
|
|
2566
|
+
},
|
|
2567
|
+
"endpoint": {
|
|
2568
|
+
"description": "endpoint to remove",
|
|
2569
|
+
"name": "endpoint",
|
|
2570
|
+
"hasDynamicHelp": false,
|
|
2571
|
+
"multiple": false,
|
|
2572
|
+
"type": "option"
|
|
2573
|
+
},
|
|
2617
2574
|
"app": {
|
|
2618
2575
|
"char": "a",
|
|
2619
2576
|
"description": "app to run command against",
|
|
@@ -2630,58 +2587,77 @@
|
|
|
2630
2587
|
"hasDynamicHelp": false,
|
|
2631
2588
|
"multiple": false,
|
|
2632
2589
|
"type": "option"
|
|
2633
|
-
},
|
|
2634
|
-
"index": {
|
|
2635
|
-
"char": "i",
|
|
2636
|
-
"description": "the 1-based index of the URL to remove from the list of URLs",
|
|
2637
|
-
"name": "index",
|
|
2638
|
-
"hasDynamicHelp": false,
|
|
2639
|
-
"multiple": false,
|
|
2640
|
-
"type": "option"
|
|
2641
2590
|
}
|
|
2642
2591
|
},
|
|
2643
2592
|
"hasDynamicHelp": false,
|
|
2644
2593
|
"hiddenAliases": [],
|
|
2645
|
-
"id": "
|
|
2594
|
+
"id": "certs:remove",
|
|
2646
2595
|
"pluginAlias": "heroku",
|
|
2647
2596
|
"pluginName": "heroku",
|
|
2648
2597
|
"pluginType": "core",
|
|
2649
2598
|
"strict": true,
|
|
2599
|
+
"topic": "certs",
|
|
2650
2600
|
"isESM": false,
|
|
2651
2601
|
"relativePath": [
|
|
2652
2602
|
"lib",
|
|
2653
2603
|
"commands",
|
|
2654
|
-
"
|
|
2604
|
+
"certs",
|
|
2655
2605
|
"remove.js"
|
|
2656
2606
|
]
|
|
2657
2607
|
},
|
|
2658
|
-
"
|
|
2608
|
+
"certs:update": {
|
|
2659
2609
|
"aliases": [],
|
|
2660
2610
|
"args": {
|
|
2661
|
-
"
|
|
2662
|
-
"description": "
|
|
2663
|
-
"name": "
|
|
2611
|
+
"CRT": {
|
|
2612
|
+
"description": "absolute path of the certificate file on disk",
|
|
2613
|
+
"name": "CRT",
|
|
2614
|
+
"required": true
|
|
2615
|
+
},
|
|
2616
|
+
"KEY": {
|
|
2617
|
+
"description": "absolute path of the key file on disk",
|
|
2618
|
+
"name": "KEY",
|
|
2619
|
+
"required": true
|
|
2664
2620
|
}
|
|
2665
2621
|
},
|
|
2666
|
-
"description": "
|
|
2622
|
+
"description": "update an SSL certificate on an app\nNote: certificates with PEM encoding are also valid\n",
|
|
2623
|
+
"examples": [
|
|
2624
|
+
"$ heroku certs:update example.com.crt example.com.key\n\n If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:\n https://help.salesforce.com/s/articleView?id=000333504&type=1\n"
|
|
2625
|
+
],
|
|
2667
2626
|
"flags": {
|
|
2668
|
-
"
|
|
2669
|
-
"
|
|
2670
|
-
"name": "
|
|
2627
|
+
"confirm": {
|
|
2628
|
+
"hidden": true,
|
|
2629
|
+
"name": "confirm",
|
|
2671
2630
|
"hasDynamicHelp": false,
|
|
2672
2631
|
"multiple": false,
|
|
2673
2632
|
"type": "option"
|
|
2674
2633
|
},
|
|
2675
2634
|
"name": {
|
|
2676
|
-
"description": "
|
|
2635
|
+
"description": "name to update",
|
|
2677
2636
|
"name": "name",
|
|
2678
2637
|
"hasDynamicHelp": false,
|
|
2679
2638
|
"multiple": false,
|
|
2680
2639
|
"type": "option"
|
|
2681
2640
|
},
|
|
2682
|
-
"
|
|
2683
|
-
"description": "
|
|
2684
|
-
"name": "
|
|
2641
|
+
"endpoint": {
|
|
2642
|
+
"description": "endpoint to update",
|
|
2643
|
+
"name": "endpoint",
|
|
2644
|
+
"hasDynamicHelp": false,
|
|
2645
|
+
"multiple": false,
|
|
2646
|
+
"type": "option"
|
|
2647
|
+
},
|
|
2648
|
+
"app": {
|
|
2649
|
+
"char": "a",
|
|
2650
|
+
"description": "app to run command against",
|
|
2651
|
+
"name": "app",
|
|
2652
|
+
"required": true,
|
|
2653
|
+
"hasDynamicHelp": false,
|
|
2654
|
+
"multiple": false,
|
|
2655
|
+
"type": "option"
|
|
2656
|
+
},
|
|
2657
|
+
"remote": {
|
|
2658
|
+
"char": "r",
|
|
2659
|
+
"description": "git remote of app to use",
|
|
2660
|
+
"name": "remote",
|
|
2685
2661
|
"hasDynamicHelp": false,
|
|
2686
2662
|
"multiple": false,
|
|
2687
2663
|
"type": "option"
|
|
@@ -2689,20 +2665,21 @@
|
|
|
2689
2665
|
},
|
|
2690
2666
|
"hasDynamicHelp": false,
|
|
2691
2667
|
"hiddenAliases": [],
|
|
2692
|
-
"id": "
|
|
2668
|
+
"id": "certs:update",
|
|
2693
2669
|
"pluginAlias": "heroku",
|
|
2694
2670
|
"pluginName": "heroku",
|
|
2695
2671
|
"pluginType": "core",
|
|
2696
2672
|
"strict": true,
|
|
2673
|
+
"topic": "certs",
|
|
2697
2674
|
"isESM": false,
|
|
2698
2675
|
"relativePath": [
|
|
2699
2676
|
"lib",
|
|
2700
2677
|
"commands",
|
|
2701
|
-
"
|
|
2702
|
-
"
|
|
2678
|
+
"certs",
|
|
2679
|
+
"update.js"
|
|
2703
2680
|
]
|
|
2704
2681
|
},
|
|
2705
|
-
"buildpacks:
|
|
2682
|
+
"buildpacks:add": {
|
|
2706
2683
|
"aliases": [],
|
|
2707
2684
|
"args": {
|
|
2708
2685
|
"buildpack": {
|
|
@@ -2711,6 +2688,7 @@
|
|
|
2711
2688
|
"required": true
|
|
2712
2689
|
}
|
|
2713
2690
|
},
|
|
2691
|
+
"description": "add new app buildpack, inserting into list of buildpacks if necessary",
|
|
2714
2692
|
"flags": {
|
|
2715
2693
|
"app": {
|
|
2716
2694
|
"char": "a",
|
|
@@ -2740,7 +2718,7 @@
|
|
|
2740
2718
|
},
|
|
2741
2719
|
"hasDynamicHelp": false,
|
|
2742
2720
|
"hiddenAliases": [],
|
|
2743
|
-
"id": "buildpacks:
|
|
2721
|
+
"id": "buildpacks:add",
|
|
2744
2722
|
"pluginAlias": "heroku",
|
|
2745
2723
|
"pluginName": "heroku",
|
|
2746
2724
|
"pluginType": "core",
|
|
@@ -2750,23 +2728,35 @@
|
|
|
2750
2728
|
"lib",
|
|
2751
2729
|
"commands",
|
|
2752
2730
|
"buildpacks",
|
|
2753
|
-
"
|
|
2731
|
+
"add.js"
|
|
2754
2732
|
]
|
|
2755
2733
|
},
|
|
2756
|
-
"buildpacks:
|
|
2734
|
+
"buildpacks:clear": {
|
|
2757
2735
|
"aliases": [],
|
|
2758
|
-
"args": {
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
"
|
|
2736
|
+
"args": {},
|
|
2737
|
+
"description": "clear all buildpacks set on the app",
|
|
2738
|
+
"flags": {
|
|
2739
|
+
"app": {
|
|
2740
|
+
"char": "a",
|
|
2741
|
+
"description": "app to run command against",
|
|
2742
|
+
"name": "app",
|
|
2743
|
+
"required": true,
|
|
2744
|
+
"hasDynamicHelp": false,
|
|
2745
|
+
"multiple": false,
|
|
2746
|
+
"type": "option"
|
|
2747
|
+
},
|
|
2748
|
+
"remote": {
|
|
2749
|
+
"char": "r",
|
|
2750
|
+
"description": "git remote of app to use",
|
|
2751
|
+
"name": "remote",
|
|
2752
|
+
"hasDynamicHelp": false,
|
|
2753
|
+
"multiple": false,
|
|
2754
|
+
"type": "option"
|
|
2763
2755
|
}
|
|
2764
2756
|
},
|
|
2765
|
-
"description": "list versions of a buildpack",
|
|
2766
|
-
"flags": {},
|
|
2767
2757
|
"hasDynamicHelp": false,
|
|
2768
2758
|
"hiddenAliases": [],
|
|
2769
|
-
"id": "buildpacks:
|
|
2759
|
+
"id": "buildpacks:clear",
|
|
2770
2760
|
"pluginAlias": "heroku",
|
|
2771
2761
|
"pluginName": "heroku",
|
|
2772
2762
|
"pluginType": "core",
|
|
@@ -2776,27 +2766,13 @@
|
|
|
2776
2766
|
"lib",
|
|
2777
2767
|
"commands",
|
|
2778
2768
|
"buildpacks",
|
|
2779
|
-
"
|
|
2769
|
+
"clear.js"
|
|
2780
2770
|
]
|
|
2781
2771
|
},
|
|
2782
|
-
"
|
|
2772
|
+
"buildpacks": {
|
|
2783
2773
|
"aliases": [],
|
|
2784
|
-
"args": {
|
|
2785
|
-
|
|
2786
|
-
"description": "absolute path of the certificate file on disk",
|
|
2787
|
-
"name": "CRT",
|
|
2788
|
-
"required": true
|
|
2789
|
-
},
|
|
2790
|
-
"KEY": {
|
|
2791
|
-
"description": "absolute path of the key file on disk",
|
|
2792
|
-
"name": "KEY",
|
|
2793
|
-
"required": true
|
|
2794
|
-
}
|
|
2795
|
-
},
|
|
2796
|
-
"description": "Add an SSL certificate to an app.\n\n Note: certificates with PEM encoding are also valid.\n ",
|
|
2797
|
-
"examples": [
|
|
2798
|
-
"$ heroku certs:add example.com.crt example.com.key\n If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:\n https://help.salesforce.com/s/articleView?id=000333504&type=1"
|
|
2799
|
-
],
|
|
2774
|
+
"args": {},
|
|
2775
|
+
"description": "list the buildpacks on an app",
|
|
2800
2776
|
"flags": {
|
|
2801
2777
|
"app": {
|
|
2802
2778
|
"char": "a",
|
|
@@ -2818,126 +2794,54 @@
|
|
|
2818
2794
|
},
|
|
2819
2795
|
"hasDynamicHelp": false,
|
|
2820
2796
|
"hiddenAliases": [],
|
|
2821
|
-
"id": "
|
|
2797
|
+
"id": "buildpacks",
|
|
2822
2798
|
"pluginAlias": "heroku",
|
|
2823
2799
|
"pluginName": "heroku",
|
|
2824
2800
|
"pluginType": "core",
|
|
2825
2801
|
"strict": true,
|
|
2826
|
-
"topic": "certs",
|
|
2827
2802
|
"isESM": false,
|
|
2828
2803
|
"relativePath": [
|
|
2829
2804
|
"lib",
|
|
2830
2805
|
"commands",
|
|
2831
|
-
"
|
|
2832
|
-
"
|
|
2806
|
+
"buildpacks",
|
|
2807
|
+
"index.js"
|
|
2833
2808
|
]
|
|
2834
2809
|
},
|
|
2835
|
-
"
|
|
2810
|
+
"buildpacks:info": {
|
|
2836
2811
|
"aliases": [],
|
|
2837
2812
|
"args": {
|
|
2838
|
-
"
|
|
2839
|
-
"description": "
|
|
2840
|
-
"name": "
|
|
2813
|
+
"buildpack": {
|
|
2814
|
+
"description": "namespace/name of the buildpack",
|
|
2815
|
+
"name": "buildpack",
|
|
2841
2816
|
"required": true
|
|
2842
2817
|
}
|
|
2843
2818
|
},
|
|
2844
|
-
"description": "
|
|
2845
|
-
"flags": {
|
|
2846
|
-
"selfsigned": {
|
|
2847
|
-
"description": "generate a self-signed certificate instead of a CSR",
|
|
2848
|
-
"name": "selfsigned",
|
|
2849
|
-
"required": false,
|
|
2850
|
-
"allowNo": false,
|
|
2851
|
-
"type": "boolean"
|
|
2852
|
-
},
|
|
2853
|
-
"keysize": {
|
|
2854
|
-
"description": "RSA key size in bits (default: 2048)",
|
|
2855
|
-
"name": "keysize",
|
|
2856
|
-
"hasDynamicHelp": false,
|
|
2857
|
-
"multiple": false,
|
|
2858
|
-
"type": "option"
|
|
2859
|
-
},
|
|
2860
|
-
"owner": {
|
|
2861
|
-
"description": "name of organization certificate belongs to",
|
|
2862
|
-
"name": "owner",
|
|
2863
|
-
"hasDynamicHelp": false,
|
|
2864
|
-
"multiple": false,
|
|
2865
|
-
"type": "option"
|
|
2866
|
-
},
|
|
2867
|
-
"country": {
|
|
2868
|
-
"description": "country of owner, as a two-letter ISO country code",
|
|
2869
|
-
"name": "country",
|
|
2870
|
-
"hasDynamicHelp": false,
|
|
2871
|
-
"multiple": false,
|
|
2872
|
-
"type": "option"
|
|
2873
|
-
},
|
|
2874
|
-
"area": {
|
|
2875
|
-
"description": "sub-country area (state, province, etc.) of owner",
|
|
2876
|
-
"name": "area",
|
|
2877
|
-
"hasDynamicHelp": false,
|
|
2878
|
-
"multiple": false,
|
|
2879
|
-
"type": "option"
|
|
2880
|
-
},
|
|
2881
|
-
"city": {
|
|
2882
|
-
"description": "city of owner",
|
|
2883
|
-
"name": "city",
|
|
2884
|
-
"hasDynamicHelp": false,
|
|
2885
|
-
"multiple": false,
|
|
2886
|
-
"type": "option"
|
|
2887
|
-
},
|
|
2888
|
-
"subject": {
|
|
2889
|
-
"description": "specify entire certificate subject",
|
|
2890
|
-
"name": "subject",
|
|
2891
|
-
"hasDynamicHelp": false,
|
|
2892
|
-
"multiple": false,
|
|
2893
|
-
"type": "option"
|
|
2894
|
-
},
|
|
2895
|
-
"now": {
|
|
2896
|
-
"description": "do not prompt for any owner information",
|
|
2897
|
-
"name": "now",
|
|
2898
|
-
"required": false,
|
|
2899
|
-
"allowNo": false,
|
|
2900
|
-
"type": "boolean"
|
|
2901
|
-
},
|
|
2902
|
-
"app": {
|
|
2903
|
-
"char": "a",
|
|
2904
|
-
"description": "app to run command against",
|
|
2905
|
-
"name": "app",
|
|
2906
|
-
"required": true,
|
|
2907
|
-
"hasDynamicHelp": false,
|
|
2908
|
-
"multiple": false,
|
|
2909
|
-
"type": "option"
|
|
2910
|
-
},
|
|
2911
|
-
"remote": {
|
|
2912
|
-
"char": "r",
|
|
2913
|
-
"description": "git remote of app to use",
|
|
2914
|
-
"name": "remote",
|
|
2915
|
-
"hasDynamicHelp": false,
|
|
2916
|
-
"multiple": false,
|
|
2917
|
-
"type": "option"
|
|
2918
|
-
}
|
|
2919
|
-
},
|
|
2819
|
+
"description": "fetch info about a buildpack",
|
|
2820
|
+
"flags": {},
|
|
2920
2821
|
"hasDynamicHelp": false,
|
|
2921
2822
|
"hiddenAliases": [],
|
|
2922
|
-
"id": "
|
|
2823
|
+
"id": "buildpacks:info",
|
|
2923
2824
|
"pluginAlias": "heroku",
|
|
2924
2825
|
"pluginName": "heroku",
|
|
2925
2826
|
"pluginType": "core",
|
|
2926
2827
|
"strict": true,
|
|
2927
|
-
"topic": "certs",
|
|
2928
|
-
"help": "Generate a key and certificate signing request (or self-signed certificate)\nfor an app. Prompts for information to put in the certificate unless --now\nis used, or at least one of the --subject, --owner, --country, --area, or\n--city options is specified.",
|
|
2929
2828
|
"isESM": false,
|
|
2930
2829
|
"relativePath": [
|
|
2931
2830
|
"lib",
|
|
2932
2831
|
"commands",
|
|
2933
|
-
"
|
|
2934
|
-
"
|
|
2832
|
+
"buildpacks",
|
|
2833
|
+
"info.js"
|
|
2935
2834
|
]
|
|
2936
2835
|
},
|
|
2937
|
-
"
|
|
2836
|
+
"buildpacks:remove": {
|
|
2938
2837
|
"aliases": [],
|
|
2939
|
-
"args": {
|
|
2940
|
-
|
|
2838
|
+
"args": {
|
|
2839
|
+
"buildpack": {
|
|
2840
|
+
"description": "namespace/name of the buildpack",
|
|
2841
|
+
"name": "buildpack"
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
"description": "remove a buildpack set on the app",
|
|
2941
2845
|
"flags": {
|
|
2942
2846
|
"app": {
|
|
2943
2847
|
"char": "a",
|
|
@@ -2955,62 +2859,58 @@
|
|
|
2955
2859
|
"hasDynamicHelp": false,
|
|
2956
2860
|
"multiple": false,
|
|
2957
2861
|
"type": "option"
|
|
2862
|
+
},
|
|
2863
|
+
"index": {
|
|
2864
|
+
"char": "i",
|
|
2865
|
+
"description": "the 1-based index of the URL to remove from the list of URLs",
|
|
2866
|
+
"name": "index",
|
|
2867
|
+
"hasDynamicHelp": false,
|
|
2868
|
+
"multiple": false,
|
|
2869
|
+
"type": "option"
|
|
2958
2870
|
}
|
|
2959
2871
|
},
|
|
2960
2872
|
"hasDynamicHelp": false,
|
|
2961
2873
|
"hiddenAliases": [],
|
|
2962
|
-
"id": "
|
|
2874
|
+
"id": "buildpacks:remove",
|
|
2963
2875
|
"pluginAlias": "heroku",
|
|
2964
2876
|
"pluginName": "heroku",
|
|
2965
2877
|
"pluginType": "core",
|
|
2966
2878
|
"strict": true,
|
|
2967
|
-
"topic": "certs",
|
|
2968
2879
|
"isESM": false,
|
|
2969
2880
|
"relativePath": [
|
|
2970
2881
|
"lib",
|
|
2971
2882
|
"commands",
|
|
2972
|
-
"
|
|
2973
|
-
"
|
|
2883
|
+
"buildpacks",
|
|
2884
|
+
"remove.js"
|
|
2974
2885
|
]
|
|
2975
2886
|
},
|
|
2976
|
-
"
|
|
2887
|
+
"buildpacks:search": {
|
|
2977
2888
|
"aliases": [],
|
|
2978
|
-
"args": {
|
|
2979
|
-
|
|
2889
|
+
"args": {
|
|
2890
|
+
"term": {
|
|
2891
|
+
"description": "search term that searches across name, namespace, and description",
|
|
2892
|
+
"name": "term"
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
"description": "search for buildpacks",
|
|
2980
2896
|
"flags": {
|
|
2981
|
-
"
|
|
2982
|
-
"description": "
|
|
2983
|
-
"name": "
|
|
2984
|
-
"hasDynamicHelp": false,
|
|
2985
|
-
"multiple": false,
|
|
2986
|
-
"type": "option"
|
|
2987
|
-
},
|
|
2988
|
-
"endpoint": {
|
|
2989
|
-
"description": "endpoint to check info on",
|
|
2990
|
-
"name": "endpoint",
|
|
2897
|
+
"namespace": {
|
|
2898
|
+
"description": "buildpack namespaces to filter on using a comma separated list",
|
|
2899
|
+
"name": "namespace",
|
|
2991
2900
|
"hasDynamicHelp": false,
|
|
2992
2901
|
"multiple": false,
|
|
2993
2902
|
"type": "option"
|
|
2994
2903
|
},
|
|
2995
|
-
"
|
|
2996
|
-
"description": "
|
|
2997
|
-
"name": "
|
|
2998
|
-
"allowNo": false,
|
|
2999
|
-
"type": "boolean"
|
|
3000
|
-
},
|
|
3001
|
-
"app": {
|
|
3002
|
-
"char": "a",
|
|
3003
|
-
"description": "app to run command against",
|
|
3004
|
-
"name": "app",
|
|
3005
|
-
"required": true,
|
|
2904
|
+
"name": {
|
|
2905
|
+
"description": "buildpack names to filter on using a comma separated list ",
|
|
2906
|
+
"name": "name",
|
|
3006
2907
|
"hasDynamicHelp": false,
|
|
3007
2908
|
"multiple": false,
|
|
3008
2909
|
"type": "option"
|
|
3009
2910
|
},
|
|
3010
|
-
"
|
|
3011
|
-
"
|
|
3012
|
-
"
|
|
3013
|
-
"name": "remote",
|
|
2911
|
+
"description": {
|
|
2912
|
+
"description": "buildpack description to filter on",
|
|
2913
|
+
"name": "description",
|
|
3014
2914
|
"hasDynamicHelp": false,
|
|
3015
2915
|
"multiple": false,
|
|
3016
2916
|
"type": "option"
|
|
@@ -3018,46 +2918,29 @@
|
|
|
3018
2918
|
},
|
|
3019
2919
|
"hasDynamicHelp": false,
|
|
3020
2920
|
"hiddenAliases": [],
|
|
3021
|
-
"id": "
|
|
2921
|
+
"id": "buildpacks:search",
|
|
3022
2922
|
"pluginAlias": "heroku",
|
|
3023
2923
|
"pluginName": "heroku",
|
|
3024
2924
|
"pluginType": "core",
|
|
3025
2925
|
"strict": true,
|
|
3026
|
-
"topic": "certs",
|
|
3027
2926
|
"isESM": false,
|
|
3028
2927
|
"relativePath": [
|
|
3029
2928
|
"lib",
|
|
3030
2929
|
"commands",
|
|
3031
|
-
"
|
|
3032
|
-
"
|
|
2930
|
+
"buildpacks",
|
|
2931
|
+
"search.js"
|
|
3033
2932
|
]
|
|
3034
2933
|
},
|
|
3035
|
-
"
|
|
2934
|
+
"buildpacks:set": {
|
|
3036
2935
|
"aliases": [],
|
|
3037
|
-
"args": {
|
|
3038
|
-
|
|
2936
|
+
"args": {
|
|
2937
|
+
"buildpack": {
|
|
2938
|
+
"description": "namespace/name of the buildpack",
|
|
2939
|
+
"name": "buildpack",
|
|
2940
|
+
"required": true
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
3039
2943
|
"flags": {
|
|
3040
|
-
"confirm": {
|
|
3041
|
-
"hidden": true,
|
|
3042
|
-
"name": "confirm",
|
|
3043
|
-
"hasDynamicHelp": false,
|
|
3044
|
-
"multiple": false,
|
|
3045
|
-
"type": "option"
|
|
3046
|
-
},
|
|
3047
|
-
"name": {
|
|
3048
|
-
"description": "name to remove",
|
|
3049
|
-
"name": "name",
|
|
3050
|
-
"hasDynamicHelp": false,
|
|
3051
|
-
"multiple": false,
|
|
3052
|
-
"type": "option"
|
|
3053
|
-
},
|
|
3054
|
-
"endpoint": {
|
|
3055
|
-
"description": "endpoint to remove",
|
|
3056
|
-
"name": "endpoint",
|
|
3057
|
-
"hasDynamicHelp": false,
|
|
3058
|
-
"multiple": false,
|
|
3059
|
-
"type": "option"
|
|
3060
|
-
},
|
|
3061
2944
|
"app": {
|
|
3062
2945
|
"char": "a",
|
|
3063
2946
|
"description": "app to run command against",
|
|
@@ -3074,96 +2957,213 @@
|
|
|
3074
2957
|
"hasDynamicHelp": false,
|
|
3075
2958
|
"multiple": false,
|
|
3076
2959
|
"type": "option"
|
|
2960
|
+
},
|
|
2961
|
+
"index": {
|
|
2962
|
+
"char": "i",
|
|
2963
|
+
"description": "the 1-based index of the URL in the list of URLs",
|
|
2964
|
+
"name": "index",
|
|
2965
|
+
"hasDynamicHelp": false,
|
|
2966
|
+
"multiple": false,
|
|
2967
|
+
"type": "option"
|
|
3077
2968
|
}
|
|
3078
2969
|
},
|
|
3079
2970
|
"hasDynamicHelp": false,
|
|
3080
2971
|
"hiddenAliases": [],
|
|
3081
|
-
"id": "
|
|
2972
|
+
"id": "buildpacks:set",
|
|
3082
2973
|
"pluginAlias": "heroku",
|
|
3083
2974
|
"pluginName": "heroku",
|
|
3084
2975
|
"pluginType": "core",
|
|
3085
2976
|
"strict": true,
|
|
3086
|
-
"topic": "certs",
|
|
3087
2977
|
"isESM": false,
|
|
3088
2978
|
"relativePath": [
|
|
3089
2979
|
"lib",
|
|
3090
2980
|
"commands",
|
|
3091
|
-
"
|
|
3092
|
-
"
|
|
2981
|
+
"buildpacks",
|
|
2982
|
+
"set.js"
|
|
3093
2983
|
]
|
|
3094
2984
|
},
|
|
3095
|
-
"
|
|
2985
|
+
"buildpacks:versions": {
|
|
3096
2986
|
"aliases": [],
|
|
3097
2987
|
"args": {
|
|
3098
|
-
"
|
|
3099
|
-
"description": "
|
|
3100
|
-
"name": "
|
|
3101
|
-
"required": true
|
|
3102
|
-
},
|
|
3103
|
-
"KEY": {
|
|
3104
|
-
"description": "absolute path of the key file on disk",
|
|
3105
|
-
"name": "KEY",
|
|
2988
|
+
"buildpack": {
|
|
2989
|
+
"description": "namespace/name of the buildpack",
|
|
2990
|
+
"name": "buildpack",
|
|
3106
2991
|
"required": true
|
|
3107
2992
|
}
|
|
3108
2993
|
},
|
|
3109
|
-
"description": "
|
|
2994
|
+
"description": "list versions of a buildpack",
|
|
2995
|
+
"flags": {},
|
|
2996
|
+
"hasDynamicHelp": false,
|
|
2997
|
+
"hiddenAliases": [],
|
|
2998
|
+
"id": "buildpacks:versions",
|
|
2999
|
+
"pluginAlias": "heroku",
|
|
3000
|
+
"pluginName": "heroku",
|
|
3001
|
+
"pluginType": "core",
|
|
3002
|
+
"strict": true,
|
|
3003
|
+
"isESM": false,
|
|
3004
|
+
"relativePath": [
|
|
3005
|
+
"lib",
|
|
3006
|
+
"commands",
|
|
3007
|
+
"buildpacks",
|
|
3008
|
+
"versions.js"
|
|
3009
|
+
]
|
|
3010
|
+
},
|
|
3011
|
+
"autocomplete:create": {
|
|
3012
|
+
"aliases": [],
|
|
3013
|
+
"args": {},
|
|
3014
|
+
"description": "create autocomplete setup scripts and completion functions",
|
|
3015
|
+
"flags": {},
|
|
3016
|
+
"hasDynamicHelp": false,
|
|
3017
|
+
"hidden": true,
|
|
3018
|
+
"hiddenAliases": [],
|
|
3019
|
+
"id": "autocomplete:create",
|
|
3020
|
+
"pluginAlias": "heroku",
|
|
3021
|
+
"pluginName": "heroku",
|
|
3022
|
+
"pluginType": "core",
|
|
3023
|
+
"strict": true,
|
|
3024
|
+
"isESM": false,
|
|
3025
|
+
"relativePath": [
|
|
3026
|
+
"lib",
|
|
3027
|
+
"commands",
|
|
3028
|
+
"autocomplete",
|
|
3029
|
+
"create.js"
|
|
3030
|
+
]
|
|
3031
|
+
},
|
|
3032
|
+
"autocomplete:doctor": {
|
|
3033
|
+
"aliases": [],
|
|
3034
|
+
"args": {
|
|
3035
|
+
"shell": {
|
|
3036
|
+
"description": "shell type",
|
|
3037
|
+
"name": "shell",
|
|
3038
|
+
"required": false
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
"description": "autocomplete diagnostic",
|
|
3042
|
+
"flags": {
|
|
3043
|
+
"verbose": {
|
|
3044
|
+
"description": "list completable commands",
|
|
3045
|
+
"name": "verbose",
|
|
3046
|
+
"allowNo": false,
|
|
3047
|
+
"type": "boolean"
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
3050
|
+
"hasDynamicHelp": false,
|
|
3051
|
+
"hidden": true,
|
|
3052
|
+
"hiddenAliases": [],
|
|
3053
|
+
"id": "autocomplete:doctor",
|
|
3054
|
+
"pluginAlias": "heroku",
|
|
3055
|
+
"pluginName": "heroku",
|
|
3056
|
+
"pluginType": "core",
|
|
3057
|
+
"strict": true,
|
|
3058
|
+
"isESM": false,
|
|
3059
|
+
"relativePath": [
|
|
3060
|
+
"lib",
|
|
3061
|
+
"commands",
|
|
3062
|
+
"autocomplete",
|
|
3063
|
+
"doctor.js"
|
|
3064
|
+
]
|
|
3065
|
+
},
|
|
3066
|
+
"autocomplete": {
|
|
3067
|
+
"aliases": [],
|
|
3068
|
+
"args": {
|
|
3069
|
+
"shell": {
|
|
3070
|
+
"description": "shell type",
|
|
3071
|
+
"name": "shell",
|
|
3072
|
+
"required": false
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
3075
|
+
"description": "display autocomplete installation instructions",
|
|
3110
3076
|
"examples": [
|
|
3111
|
-
"$ heroku
|
|
3077
|
+
"$ heroku autocomplete",
|
|
3078
|
+
"$ heroku autocomplete bash",
|
|
3079
|
+
"$ heroku autocomplete zsh",
|
|
3080
|
+
"$ heroku autocomplete --refresh-cache"
|
|
3112
3081
|
],
|
|
3113
3082
|
"flags": {
|
|
3114
|
-
"
|
|
3115
|
-
"hidden": true,
|
|
3116
|
-
"name": "confirm",
|
|
3117
|
-
"hasDynamicHelp": false,
|
|
3118
|
-
"multiple": false,
|
|
3119
|
-
"type": "option"
|
|
3120
|
-
},
|
|
3121
|
-
"name": {
|
|
3122
|
-
"description": "name to update",
|
|
3123
|
-
"name": "name",
|
|
3124
|
-
"hasDynamicHelp": false,
|
|
3125
|
-
"multiple": false,
|
|
3126
|
-
"type": "option"
|
|
3127
|
-
},
|
|
3128
|
-
"endpoint": {
|
|
3129
|
-
"description": "endpoint to update",
|
|
3130
|
-
"name": "endpoint",
|
|
3131
|
-
"hasDynamicHelp": false,
|
|
3132
|
-
"multiple": false,
|
|
3133
|
-
"type": "option"
|
|
3134
|
-
},
|
|
3135
|
-
"app": {
|
|
3136
|
-
"char": "a",
|
|
3137
|
-
"description": "app to run command against",
|
|
3138
|
-
"name": "app",
|
|
3139
|
-
"required": true,
|
|
3140
|
-
"hasDynamicHelp": false,
|
|
3141
|
-
"multiple": false,
|
|
3142
|
-
"type": "option"
|
|
3143
|
-
},
|
|
3144
|
-
"remote": {
|
|
3083
|
+
"refresh-cache": {
|
|
3145
3084
|
"char": "r",
|
|
3146
|
-
"description": "
|
|
3147
|
-
"name": "
|
|
3085
|
+
"description": "refresh cache only (ignores displaying instructions)",
|
|
3086
|
+
"name": "refresh-cache",
|
|
3087
|
+
"allowNo": false,
|
|
3088
|
+
"type": "boolean"
|
|
3089
|
+
}
|
|
3090
|
+
},
|
|
3091
|
+
"hasDynamicHelp": false,
|
|
3092
|
+
"hiddenAliases": [],
|
|
3093
|
+
"id": "autocomplete",
|
|
3094
|
+
"pluginAlias": "heroku",
|
|
3095
|
+
"pluginName": "heroku",
|
|
3096
|
+
"pluginType": "core",
|
|
3097
|
+
"strict": true,
|
|
3098
|
+
"isESM": false,
|
|
3099
|
+
"relativePath": [
|
|
3100
|
+
"lib",
|
|
3101
|
+
"commands",
|
|
3102
|
+
"autocomplete",
|
|
3103
|
+
"index.js"
|
|
3104
|
+
]
|
|
3105
|
+
},
|
|
3106
|
+
"autocomplete:options": {
|
|
3107
|
+
"aliases": [],
|
|
3108
|
+
"args": {
|
|
3109
|
+
"completion": {
|
|
3110
|
+
"name": "completion"
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3113
|
+
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
3114
|
+
"flags": {
|
|
3115
|
+
"app": {
|
|
3116
|
+
"char": "a",
|
|
3117
|
+
"description": "app to run command against",
|
|
3118
|
+
"hidden": true,
|
|
3119
|
+
"name": "app",
|
|
3120
|
+
"required": false,
|
|
3148
3121
|
"hasDynamicHelp": false,
|
|
3149
3122
|
"multiple": false,
|
|
3150
3123
|
"type": "option"
|
|
3151
3124
|
}
|
|
3152
3125
|
},
|
|
3153
3126
|
"hasDynamicHelp": false,
|
|
3127
|
+
"hidden": true,
|
|
3154
3128
|
"hiddenAliases": [],
|
|
3155
|
-
"id": "
|
|
3129
|
+
"id": "autocomplete:options",
|
|
3156
3130
|
"pluginAlias": "heroku",
|
|
3157
3131
|
"pluginName": "heroku",
|
|
3158
3132
|
"pluginType": "core",
|
|
3159
3133
|
"strict": true,
|
|
3160
|
-
"topic": "certs",
|
|
3161
3134
|
"isESM": false,
|
|
3162
3135
|
"relativePath": [
|
|
3163
3136
|
"lib",
|
|
3164
3137
|
"commands",
|
|
3165
|
-
"
|
|
3166
|
-
"
|
|
3138
|
+
"autocomplete",
|
|
3139
|
+
"options.js"
|
|
3140
|
+
]
|
|
3141
|
+
},
|
|
3142
|
+
"autocomplete:script": {
|
|
3143
|
+
"aliases": [],
|
|
3144
|
+
"args": {
|
|
3145
|
+
"shell": {
|
|
3146
|
+
"description": "shell type",
|
|
3147
|
+
"name": "shell",
|
|
3148
|
+
"required": false
|
|
3149
|
+
}
|
|
3150
|
+
},
|
|
3151
|
+
"description": "display autocomplete setup script for shell",
|
|
3152
|
+
"flags": {},
|
|
3153
|
+
"hasDynamicHelp": false,
|
|
3154
|
+
"hidden": true,
|
|
3155
|
+
"hiddenAliases": [],
|
|
3156
|
+
"id": "autocomplete:script",
|
|
3157
|
+
"pluginAlias": "heroku",
|
|
3158
|
+
"pluginName": "heroku",
|
|
3159
|
+
"pluginType": "core",
|
|
3160
|
+
"strict": true,
|
|
3161
|
+
"isESM": false,
|
|
3162
|
+
"relativePath": [
|
|
3163
|
+
"lib",
|
|
3164
|
+
"commands",
|
|
3165
|
+
"autocomplete",
|
|
3166
|
+
"script.js"
|
|
3167
3167
|
]
|
|
3168
3168
|
},
|
|
3169
3169
|
"ci:debug": {
|
|
@@ -5756,16 +5756,16 @@
|
|
|
5756
5756
|
"version.js"
|
|
5757
5757
|
]
|
|
5758
5758
|
},
|
|
5759
|
-
"
|
|
5759
|
+
"notifications": {
|
|
5760
5760
|
"aliases": [],
|
|
5761
5761
|
"args": {},
|
|
5762
|
-
"description": "display
|
|
5762
|
+
"description": "display notifications",
|
|
5763
5763
|
"flags": {
|
|
5764
5764
|
"app": {
|
|
5765
5765
|
"char": "a",
|
|
5766
5766
|
"description": "app to run command against",
|
|
5767
5767
|
"name": "app",
|
|
5768
|
-
"required":
|
|
5768
|
+
"required": false,
|
|
5769
5769
|
"hasDynamicHelp": false,
|
|
5770
5770
|
"multiple": false,
|
|
5771
5771
|
"type": "option"
|
|
@@ -5777,100 +5777,40 @@
|
|
|
5777
5777
|
"hasDynamicHelp": false,
|
|
5778
5778
|
"multiple": false,
|
|
5779
5779
|
"type": "option"
|
|
5780
|
-
}
|
|
5781
|
-
},
|
|
5782
|
-
"hasDynamicHelp": false,
|
|
5783
|
-
"hiddenAliases": [],
|
|
5784
|
-
"id": "maintenance",
|
|
5785
|
-
"pluginAlias": "heroku",
|
|
5786
|
-
"pluginName": "heroku",
|
|
5787
|
-
"pluginType": "core",
|
|
5788
|
-
"strict": true,
|
|
5789
|
-
"topic": "maintenance",
|
|
5790
|
-
"isESM": false,
|
|
5791
|
-
"relativePath": [
|
|
5792
|
-
"lib",
|
|
5793
|
-
"commands",
|
|
5794
|
-
"maintenance",
|
|
5795
|
-
"index.js"
|
|
5796
|
-
]
|
|
5797
|
-
},
|
|
5798
|
-
"maintenance:off": {
|
|
5799
|
-
"aliases": [],
|
|
5800
|
-
"args": {},
|
|
5801
|
-
"description": "take the app out of maintenance mode",
|
|
5802
|
-
"flags": {
|
|
5803
|
-
"app": {
|
|
5804
|
-
"char": "a",
|
|
5805
|
-
"description": "app to run command against",
|
|
5806
|
-
"name": "app",
|
|
5807
|
-
"required": true,
|
|
5808
|
-
"hasDynamicHelp": false,
|
|
5809
|
-
"multiple": false,
|
|
5810
|
-
"type": "option"
|
|
5811
5780
|
},
|
|
5812
|
-
"
|
|
5813
|
-
"
|
|
5814
|
-
"
|
|
5815
|
-
"
|
|
5816
|
-
"
|
|
5817
|
-
"multiple": false,
|
|
5818
|
-
"type": "option"
|
|
5819
|
-
}
|
|
5820
|
-
},
|
|
5821
|
-
"hasDynamicHelp": false,
|
|
5822
|
-
"hiddenAliases": [],
|
|
5823
|
-
"id": "maintenance:off",
|
|
5824
|
-
"pluginAlias": "heroku",
|
|
5825
|
-
"pluginName": "heroku",
|
|
5826
|
-
"pluginType": "core",
|
|
5827
|
-
"strict": true,
|
|
5828
|
-
"topic": "maintenance",
|
|
5829
|
-
"isESM": false,
|
|
5830
|
-
"relativePath": [
|
|
5831
|
-
"lib",
|
|
5832
|
-
"commands",
|
|
5833
|
-
"maintenance",
|
|
5834
|
-
"off.js"
|
|
5835
|
-
]
|
|
5836
|
-
},
|
|
5837
|
-
"maintenance:on": {
|
|
5838
|
-
"aliases": [],
|
|
5839
|
-
"args": {},
|
|
5840
|
-
"description": "put the app into maintenance mode",
|
|
5841
|
-
"flags": {
|
|
5842
|
-
"app": {
|
|
5843
|
-
"char": "a",
|
|
5844
|
-
"description": "app to run command against",
|
|
5845
|
-
"name": "app",
|
|
5846
|
-
"required": true,
|
|
5847
|
-
"hasDynamicHelp": false,
|
|
5848
|
-
"multiple": false,
|
|
5849
|
-
"type": "option"
|
|
5781
|
+
"all": {
|
|
5782
|
+
"description": "view all notifications (not just the ones for the current app)",
|
|
5783
|
+
"name": "all",
|
|
5784
|
+
"allowNo": false,
|
|
5785
|
+
"type": "boolean"
|
|
5850
5786
|
},
|
|
5851
|
-
"
|
|
5852
|
-
"
|
|
5853
|
-
"
|
|
5854
|
-
"
|
|
5855
|
-
"
|
|
5856
|
-
|
|
5857
|
-
|
|
5787
|
+
"json": {
|
|
5788
|
+
"description": "output in json format",
|
|
5789
|
+
"name": "json",
|
|
5790
|
+
"allowNo": false,
|
|
5791
|
+
"type": "boolean"
|
|
5792
|
+
},
|
|
5793
|
+
"read": {
|
|
5794
|
+
"description": "show notifications already read",
|
|
5795
|
+
"name": "read",
|
|
5796
|
+
"allowNo": false,
|
|
5797
|
+
"type": "boolean"
|
|
5858
5798
|
}
|
|
5859
5799
|
},
|
|
5860
5800
|
"hasDynamicHelp": false,
|
|
5861
5801
|
"hiddenAliases": [],
|
|
5862
|
-
"id": "
|
|
5802
|
+
"id": "notifications",
|
|
5863
5803
|
"pluginAlias": "heroku",
|
|
5864
5804
|
"pluginName": "heroku",
|
|
5865
5805
|
"pluginType": "core",
|
|
5866
5806
|
"strict": true,
|
|
5867
|
-
"topic": "
|
|
5807
|
+
"topic": "notifications",
|
|
5868
5808
|
"isESM": false,
|
|
5869
5809
|
"relativePath": [
|
|
5870
5810
|
"lib",
|
|
5871
5811
|
"commands",
|
|
5872
|
-
"
|
|
5873
|
-
"
|
|
5812
|
+
"notifications",
|
|
5813
|
+
"index.js"
|
|
5874
5814
|
]
|
|
5875
5815
|
},
|
|
5876
5816
|
"members:add": {
|
|
@@ -6041,16 +5981,16 @@
|
|
|
6041
5981
|
"set.js"
|
|
6042
5982
|
]
|
|
6043
5983
|
},
|
|
6044
|
-
"
|
|
5984
|
+
"maintenance": {
|
|
6045
5985
|
"aliases": [],
|
|
6046
5986
|
"args": {},
|
|
6047
|
-
"description": "display
|
|
5987
|
+
"description": "display the current maintenance status of app",
|
|
6048
5988
|
"flags": {
|
|
6049
5989
|
"app": {
|
|
6050
5990
|
"char": "a",
|
|
6051
5991
|
"description": "app to run command against",
|
|
6052
5992
|
"name": "app",
|
|
6053
|
-
"required":
|
|
5993
|
+
"required": true,
|
|
6054
5994
|
"hasDynamicHelp": false,
|
|
6055
5995
|
"multiple": false,
|
|
6056
5996
|
"type": "option"
|
|
@@ -6062,40 +6002,100 @@
|
|
|
6062
6002
|
"hasDynamicHelp": false,
|
|
6063
6003
|
"multiple": false,
|
|
6064
6004
|
"type": "option"
|
|
6005
|
+
}
|
|
6006
|
+
},
|
|
6007
|
+
"hasDynamicHelp": false,
|
|
6008
|
+
"hiddenAliases": [],
|
|
6009
|
+
"id": "maintenance",
|
|
6010
|
+
"pluginAlias": "heroku",
|
|
6011
|
+
"pluginName": "heroku",
|
|
6012
|
+
"pluginType": "core",
|
|
6013
|
+
"strict": true,
|
|
6014
|
+
"topic": "maintenance",
|
|
6015
|
+
"isESM": false,
|
|
6016
|
+
"relativePath": [
|
|
6017
|
+
"lib",
|
|
6018
|
+
"commands",
|
|
6019
|
+
"maintenance",
|
|
6020
|
+
"index.js"
|
|
6021
|
+
]
|
|
6022
|
+
},
|
|
6023
|
+
"maintenance:off": {
|
|
6024
|
+
"aliases": [],
|
|
6025
|
+
"args": {},
|
|
6026
|
+
"description": "take the app out of maintenance mode",
|
|
6027
|
+
"flags": {
|
|
6028
|
+
"app": {
|
|
6029
|
+
"char": "a",
|
|
6030
|
+
"description": "app to run command against",
|
|
6031
|
+
"name": "app",
|
|
6032
|
+
"required": true,
|
|
6033
|
+
"hasDynamicHelp": false,
|
|
6034
|
+
"multiple": false,
|
|
6035
|
+
"type": "option"
|
|
6065
6036
|
},
|
|
6066
|
-
"
|
|
6067
|
-
"
|
|
6068
|
-
"
|
|
6069
|
-
"
|
|
6070
|
-
"
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6037
|
+
"remote": {
|
|
6038
|
+
"char": "r",
|
|
6039
|
+
"description": "git remote of app to use",
|
|
6040
|
+
"name": "remote",
|
|
6041
|
+
"hasDynamicHelp": false,
|
|
6042
|
+
"multiple": false,
|
|
6043
|
+
"type": "option"
|
|
6044
|
+
}
|
|
6045
|
+
},
|
|
6046
|
+
"hasDynamicHelp": false,
|
|
6047
|
+
"hiddenAliases": [],
|
|
6048
|
+
"id": "maintenance:off",
|
|
6049
|
+
"pluginAlias": "heroku",
|
|
6050
|
+
"pluginName": "heroku",
|
|
6051
|
+
"pluginType": "core",
|
|
6052
|
+
"strict": true,
|
|
6053
|
+
"topic": "maintenance",
|
|
6054
|
+
"isESM": false,
|
|
6055
|
+
"relativePath": [
|
|
6056
|
+
"lib",
|
|
6057
|
+
"commands",
|
|
6058
|
+
"maintenance",
|
|
6059
|
+
"off.js"
|
|
6060
|
+
]
|
|
6061
|
+
},
|
|
6062
|
+
"maintenance:on": {
|
|
6063
|
+
"aliases": [],
|
|
6064
|
+
"args": {},
|
|
6065
|
+
"description": "put the app into maintenance mode",
|
|
6066
|
+
"flags": {
|
|
6067
|
+
"app": {
|
|
6068
|
+
"char": "a",
|
|
6069
|
+
"description": "app to run command against",
|
|
6070
|
+
"name": "app",
|
|
6071
|
+
"required": true,
|
|
6072
|
+
"hasDynamicHelp": false,
|
|
6073
|
+
"multiple": false,
|
|
6074
|
+
"type": "option"
|
|
6077
6075
|
},
|
|
6078
|
-
"
|
|
6079
|
-
"
|
|
6080
|
-
"
|
|
6081
|
-
"
|
|
6082
|
-
"
|
|
6076
|
+
"remote": {
|
|
6077
|
+
"char": "r",
|
|
6078
|
+
"description": "git remote of app to use",
|
|
6079
|
+
"name": "remote",
|
|
6080
|
+
"hasDynamicHelp": false,
|
|
6081
|
+
"multiple": false,
|
|
6082
|
+
"type": "option"
|
|
6083
6083
|
}
|
|
6084
6084
|
},
|
|
6085
6085
|
"hasDynamicHelp": false,
|
|
6086
6086
|
"hiddenAliases": [],
|
|
6087
|
-
"id": "
|
|
6087
|
+
"id": "maintenance:on",
|
|
6088
6088
|
"pluginAlias": "heroku",
|
|
6089
6089
|
"pluginName": "heroku",
|
|
6090
6090
|
"pluginType": "core",
|
|
6091
6091
|
"strict": true,
|
|
6092
|
-
"topic": "
|
|
6092
|
+
"topic": "maintenance",
|
|
6093
6093
|
"isESM": false,
|
|
6094
6094
|
"relativePath": [
|
|
6095
6095
|
"lib",
|
|
6096
6096
|
"commands",
|
|
6097
|
-
"
|
|
6098
|
-
"
|
|
6097
|
+
"maintenance",
|
|
6098
|
+
"on.js"
|
|
6099
6099
|
]
|
|
6100
6100
|
},
|
|
6101
6101
|
"orgs": {
|
|
@@ -14486,5 +14486,5 @@
|
|
|
14486
14486
|
]
|
|
14487
14487
|
}
|
|
14488
14488
|
},
|
|
14489
|
-
"version": "10.4.1-beta.
|
|
14489
|
+
"version": "10.4.1-beta.1"
|
|
14490
14490
|
}
|