heroku 10.0.3-alpha.0 → 10.0.3-alpha.2
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/bin/heroku-repl.js +4 -0
- package/bin/run +1 -1
- package/oclif.manifest.json +305 -305
- package/package.json +2 -2
package/bin/heroku-repl.js
CHANGED
|
@@ -16,6 +16,10 @@ module.exports.herokuRepl = async function (config) {
|
|
|
16
16
|
|
|
17
17
|
for await (const input of commandGenerator()) {
|
|
18
18
|
const [command, ...argv] = input
|
|
19
|
+
if (command === '.exit') {
|
|
20
|
+
process.exit(0)
|
|
21
|
+
}
|
|
22
|
+
|
|
19
23
|
if (command.startsWith('set')) {
|
|
20
24
|
flagsByName.set(argv[0], argv[1])
|
|
21
25
|
process.stderr.write(`setting --app to "${argv[1]}"\n$ `)
|
package/bin/run
CHANGED
|
@@ -52,7 +52,7 @@ const main = async () => {
|
|
|
52
52
|
try {
|
|
53
53
|
await config.load()
|
|
54
54
|
const {_: [commandName, ...args], ...flags} = yargs
|
|
55
|
-
if (!args.length && !Object.keys(flags).length) {
|
|
55
|
+
if (!commandName && !args.length && !Object.keys(flags).length) {
|
|
56
56
|
return await herokuRepl(config)
|
|
57
57
|
}
|
|
58
58
|
if (flags.prompt) {
|
package/oclif.manifest.json
CHANGED
|
@@ -2450,16 +2450,24 @@
|
|
|
2450
2450
|
"script.js"
|
|
2451
2451
|
]
|
|
2452
2452
|
},
|
|
2453
|
-
"
|
|
2453
|
+
"certs:add": {
|
|
2454
2454
|
"aliases": [],
|
|
2455
2455
|
"args": {
|
|
2456
|
-
"
|
|
2457
|
-
"description": "
|
|
2458
|
-
"name": "
|
|
2456
|
+
"CRT": {
|
|
2457
|
+
"description": "absolute path of the certificate file on disk",
|
|
2458
|
+
"name": "CRT",
|
|
2459
|
+
"required": true
|
|
2460
|
+
},
|
|
2461
|
+
"KEY": {
|
|
2462
|
+
"description": "absolute path of the key file on disk",
|
|
2463
|
+
"name": "KEY",
|
|
2459
2464
|
"required": true
|
|
2460
2465
|
}
|
|
2461
2466
|
},
|
|
2462
|
-
"description": "
|
|
2467
|
+
"description": "Add an SSL certificate to an app.\n\n Note: certificates with PEM encoding are also valid.\n ",
|
|
2468
|
+
"examples": [
|
|
2469
|
+
"$ 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"
|
|
2470
|
+
],
|
|
2463
2471
|
"flags": {
|
|
2464
2472
|
"app": {
|
|
2465
2473
|
"char": "a",
|
|
@@ -2477,36 +2485,91 @@
|
|
|
2477
2485
|
"hasDynamicHelp": false,
|
|
2478
2486
|
"multiple": false,
|
|
2479
2487
|
"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
2488
|
}
|
|
2489
2489
|
},
|
|
2490
2490
|
"hasDynamicHelp": false,
|
|
2491
2491
|
"hiddenAliases": [],
|
|
2492
|
-
"id": "
|
|
2492
|
+
"id": "certs:add",
|
|
2493
2493
|
"pluginAlias": "heroku",
|
|
2494
2494
|
"pluginName": "heroku",
|
|
2495
2495
|
"pluginType": "core",
|
|
2496
2496
|
"strict": true,
|
|
2497
|
+
"topic": "certs",
|
|
2497
2498
|
"isESM": false,
|
|
2498
2499
|
"relativePath": [
|
|
2499
2500
|
"lib",
|
|
2500
2501
|
"commands",
|
|
2501
|
-
"
|
|
2502
|
+
"certs",
|
|
2502
2503
|
"add.js"
|
|
2503
2504
|
]
|
|
2504
2505
|
},
|
|
2505
|
-
"
|
|
2506
|
+
"certs:generate": {
|
|
2506
2507
|
"aliases": [],
|
|
2507
|
-
"args": {
|
|
2508
|
-
|
|
2508
|
+
"args": {
|
|
2509
|
+
"domain": {
|
|
2510
|
+
"description": "domain name to generate",
|
|
2511
|
+
"name": "domain",
|
|
2512
|
+
"required": true
|
|
2513
|
+
}
|
|
2514
|
+
},
|
|
2515
|
+
"description": "generate a key and a CSR or self-signed certificate",
|
|
2509
2516
|
"flags": {
|
|
2517
|
+
"selfsigned": {
|
|
2518
|
+
"description": "generate a self-signed certificate instead of a CSR",
|
|
2519
|
+
"name": "selfsigned",
|
|
2520
|
+
"required": false,
|
|
2521
|
+
"allowNo": false,
|
|
2522
|
+
"type": "boolean"
|
|
2523
|
+
},
|
|
2524
|
+
"keysize": {
|
|
2525
|
+
"description": "RSA key size in bits (default: 2048)",
|
|
2526
|
+
"name": "keysize",
|
|
2527
|
+
"hasDynamicHelp": false,
|
|
2528
|
+
"multiple": false,
|
|
2529
|
+
"type": "option"
|
|
2530
|
+
},
|
|
2531
|
+
"owner": {
|
|
2532
|
+
"description": "name of organization certificate belongs to",
|
|
2533
|
+
"name": "owner",
|
|
2534
|
+
"hasDynamicHelp": false,
|
|
2535
|
+
"multiple": false,
|
|
2536
|
+
"type": "option"
|
|
2537
|
+
},
|
|
2538
|
+
"country": {
|
|
2539
|
+
"description": "country of owner, as a two-letter ISO country code",
|
|
2540
|
+
"name": "country",
|
|
2541
|
+
"hasDynamicHelp": false,
|
|
2542
|
+
"multiple": false,
|
|
2543
|
+
"type": "option"
|
|
2544
|
+
},
|
|
2545
|
+
"area": {
|
|
2546
|
+
"description": "sub-country area (state, province, etc.) of owner",
|
|
2547
|
+
"name": "area",
|
|
2548
|
+
"hasDynamicHelp": false,
|
|
2549
|
+
"multiple": false,
|
|
2550
|
+
"type": "option"
|
|
2551
|
+
},
|
|
2552
|
+
"city": {
|
|
2553
|
+
"description": "city of owner",
|
|
2554
|
+
"name": "city",
|
|
2555
|
+
"hasDynamicHelp": false,
|
|
2556
|
+
"multiple": false,
|
|
2557
|
+
"type": "option"
|
|
2558
|
+
},
|
|
2559
|
+
"subject": {
|
|
2560
|
+
"description": "specify entire certificate subject",
|
|
2561
|
+
"name": "subject",
|
|
2562
|
+
"hasDynamicHelp": false,
|
|
2563
|
+
"multiple": false,
|
|
2564
|
+
"type": "option"
|
|
2565
|
+
},
|
|
2566
|
+
"now": {
|
|
2567
|
+
"description": "do not prompt for any owner information",
|
|
2568
|
+
"name": "now",
|
|
2569
|
+
"required": false,
|
|
2570
|
+
"allowNo": false,
|
|
2571
|
+
"type": "boolean"
|
|
2572
|
+
},
|
|
2510
2573
|
"app": {
|
|
2511
2574
|
"char": "a",
|
|
2512
2575
|
"description": "app to run command against",
|
|
@@ -2527,23 +2590,25 @@
|
|
|
2527
2590
|
},
|
|
2528
2591
|
"hasDynamicHelp": false,
|
|
2529
2592
|
"hiddenAliases": [],
|
|
2530
|
-
"id": "
|
|
2593
|
+
"id": "certs:generate",
|
|
2531
2594
|
"pluginAlias": "heroku",
|
|
2532
2595
|
"pluginName": "heroku",
|
|
2533
2596
|
"pluginType": "core",
|
|
2534
2597
|
"strict": true,
|
|
2598
|
+
"topic": "certs",
|
|
2599
|
+
"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.",
|
|
2535
2600
|
"isESM": false,
|
|
2536
2601
|
"relativePath": [
|
|
2537
2602
|
"lib",
|
|
2538
2603
|
"commands",
|
|
2539
|
-
"
|
|
2540
|
-
"
|
|
2604
|
+
"certs",
|
|
2605
|
+
"generate.js"
|
|
2541
2606
|
]
|
|
2542
2607
|
},
|
|
2543
|
-
"
|
|
2608
|
+
"certs": {
|
|
2544
2609
|
"aliases": [],
|
|
2545
2610
|
"args": {},
|
|
2546
|
-
"description": "
|
|
2611
|
+
"description": "list SSL certificates for an app",
|
|
2547
2612
|
"flags": {
|
|
2548
2613
|
"app": {
|
|
2549
2614
|
"char": "a",
|
|
@@ -2565,55 +2630,45 @@
|
|
|
2565
2630
|
},
|
|
2566
2631
|
"hasDynamicHelp": false,
|
|
2567
2632
|
"hiddenAliases": [],
|
|
2568
|
-
"id": "
|
|
2633
|
+
"id": "certs",
|
|
2569
2634
|
"pluginAlias": "heroku",
|
|
2570
2635
|
"pluginName": "heroku",
|
|
2571
2636
|
"pluginType": "core",
|
|
2572
2637
|
"strict": true,
|
|
2638
|
+
"topic": "certs",
|
|
2573
2639
|
"isESM": false,
|
|
2574
2640
|
"relativePath": [
|
|
2575
2641
|
"lib",
|
|
2576
2642
|
"commands",
|
|
2577
|
-
"
|
|
2643
|
+
"certs",
|
|
2578
2644
|
"index.js"
|
|
2579
2645
|
]
|
|
2580
2646
|
},
|
|
2581
|
-
"
|
|
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",
|
|
2595
|
-
"pluginAlias": "heroku",
|
|
2596
|
-
"pluginName": "heroku",
|
|
2597
|
-
"pluginType": "core",
|
|
2598
|
-
"strict": true,
|
|
2599
|
-
"isESM": false,
|
|
2600
|
-
"relativePath": [
|
|
2601
|
-
"lib",
|
|
2602
|
-
"commands",
|
|
2603
|
-
"buildpacks",
|
|
2604
|
-
"info.js"
|
|
2605
|
-
]
|
|
2606
|
-
},
|
|
2607
|
-
"buildpacks:remove": {
|
|
2647
|
+
"certs:info": {
|
|
2608
2648
|
"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",
|
|
2649
|
+
"args": {},
|
|
2650
|
+
"description": "show certificate information for an SSL certificate",
|
|
2616
2651
|
"flags": {
|
|
2652
|
+
"name": {
|
|
2653
|
+
"description": "name to check info on",
|
|
2654
|
+
"name": "name",
|
|
2655
|
+
"hasDynamicHelp": false,
|
|
2656
|
+
"multiple": false,
|
|
2657
|
+
"type": "option"
|
|
2658
|
+
},
|
|
2659
|
+
"endpoint": {
|
|
2660
|
+
"description": "endpoint to check info on",
|
|
2661
|
+
"name": "endpoint",
|
|
2662
|
+
"hasDynamicHelp": false,
|
|
2663
|
+
"multiple": false,
|
|
2664
|
+
"type": "option"
|
|
2665
|
+
},
|
|
2666
|
+
"show-domains": {
|
|
2667
|
+
"description": "show associated domains",
|
|
2668
|
+
"name": "show-domains",
|
|
2669
|
+
"allowNo": false,
|
|
2670
|
+
"type": "boolean"
|
|
2671
|
+
},
|
|
2617
2672
|
"app": {
|
|
2618
2673
|
"char": "a",
|
|
2619
2674
|
"description": "app to run command against",
|
|
@@ -2630,88 +2685,50 @@
|
|
|
2630
2685
|
"hasDynamicHelp": false,
|
|
2631
2686
|
"multiple": false,
|
|
2632
2687
|
"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
2688
|
}
|
|
2642
2689
|
},
|
|
2643
2690
|
"hasDynamicHelp": false,
|
|
2644
2691
|
"hiddenAliases": [],
|
|
2645
|
-
"id": "
|
|
2692
|
+
"id": "certs:info",
|
|
2646
2693
|
"pluginAlias": "heroku",
|
|
2647
2694
|
"pluginName": "heroku",
|
|
2648
2695
|
"pluginType": "core",
|
|
2649
2696
|
"strict": true,
|
|
2697
|
+
"topic": "certs",
|
|
2650
2698
|
"isESM": false,
|
|
2651
2699
|
"relativePath": [
|
|
2652
2700
|
"lib",
|
|
2653
2701
|
"commands",
|
|
2654
|
-
"
|
|
2655
|
-
"
|
|
2702
|
+
"certs",
|
|
2703
|
+
"info.js"
|
|
2656
2704
|
]
|
|
2657
2705
|
},
|
|
2658
|
-
"
|
|
2706
|
+
"certs:remove": {
|
|
2659
2707
|
"aliases": [],
|
|
2660
|
-
"args": {
|
|
2661
|
-
|
|
2662
|
-
"description": "search term that searches across name, namespace, and description",
|
|
2663
|
-
"name": "term"
|
|
2664
|
-
}
|
|
2665
|
-
},
|
|
2666
|
-
"description": "search for buildpacks",
|
|
2708
|
+
"args": {},
|
|
2709
|
+
"description": "remove an SSL certificate from an app",
|
|
2667
2710
|
"flags": {
|
|
2668
|
-
"
|
|
2669
|
-
"
|
|
2670
|
-
"name": "
|
|
2711
|
+
"confirm": {
|
|
2712
|
+
"hidden": true,
|
|
2713
|
+
"name": "confirm",
|
|
2671
2714
|
"hasDynamicHelp": false,
|
|
2672
2715
|
"multiple": false,
|
|
2673
2716
|
"type": "option"
|
|
2674
2717
|
},
|
|
2675
2718
|
"name": {
|
|
2676
|
-
"description": "
|
|
2719
|
+
"description": "name to remove",
|
|
2677
2720
|
"name": "name",
|
|
2678
2721
|
"hasDynamicHelp": false,
|
|
2679
2722
|
"multiple": false,
|
|
2680
2723
|
"type": "option"
|
|
2681
2724
|
},
|
|
2682
|
-
"
|
|
2683
|
-
"description": "
|
|
2684
|
-
"name": "
|
|
2725
|
+
"endpoint": {
|
|
2726
|
+
"description": "endpoint to remove",
|
|
2727
|
+
"name": "endpoint",
|
|
2685
2728
|
"hasDynamicHelp": false,
|
|
2686
2729
|
"multiple": false,
|
|
2687
2730
|
"type": "option"
|
|
2688
|
-
}
|
|
2689
|
-
},
|
|
2690
|
-
"hasDynamicHelp": false,
|
|
2691
|
-
"hiddenAliases": [],
|
|
2692
|
-
"id": "buildpacks:search",
|
|
2693
|
-
"pluginAlias": "heroku",
|
|
2694
|
-
"pluginName": "heroku",
|
|
2695
|
-
"pluginType": "core",
|
|
2696
|
-
"strict": true,
|
|
2697
|
-
"isESM": false,
|
|
2698
|
-
"relativePath": [
|
|
2699
|
-
"lib",
|
|
2700
|
-
"commands",
|
|
2701
|
-
"buildpacks",
|
|
2702
|
-
"search.js"
|
|
2703
|
-
]
|
|
2704
|
-
},
|
|
2705
|
-
"buildpacks:set": {
|
|
2706
|
-
"aliases": [],
|
|
2707
|
-
"args": {
|
|
2708
|
-
"buildpack": {
|
|
2709
|
-
"description": "namespace/name of the buildpack",
|
|
2710
|
-
"name": "buildpack",
|
|
2711
|
-
"required": true
|
|
2712
|
-
}
|
|
2713
|
-
},
|
|
2714
|
-
"flags": {
|
|
2731
|
+
},
|
|
2715
2732
|
"app": {
|
|
2716
2733
|
"char": "a",
|
|
2717
2734
|
"description": "app to run command against",
|
|
@@ -2728,58 +2745,25 @@
|
|
|
2728
2745
|
"hasDynamicHelp": false,
|
|
2729
2746
|
"multiple": false,
|
|
2730
2747
|
"type": "option"
|
|
2731
|
-
},
|
|
2732
|
-
"index": {
|
|
2733
|
-
"char": "i",
|
|
2734
|
-
"description": "the 1-based index of the URL in the list of URLs",
|
|
2735
|
-
"name": "index",
|
|
2736
|
-
"hasDynamicHelp": false,
|
|
2737
|
-
"multiple": false,
|
|
2738
|
-
"type": "option"
|
|
2739
2748
|
}
|
|
2740
2749
|
},
|
|
2741
2750
|
"hasDynamicHelp": false,
|
|
2742
2751
|
"hiddenAliases": [],
|
|
2743
|
-
"id": "
|
|
2752
|
+
"id": "certs:remove",
|
|
2744
2753
|
"pluginAlias": "heroku",
|
|
2745
2754
|
"pluginName": "heroku",
|
|
2746
2755
|
"pluginType": "core",
|
|
2747
2756
|
"strict": true,
|
|
2757
|
+
"topic": "certs",
|
|
2748
2758
|
"isESM": false,
|
|
2749
2759
|
"relativePath": [
|
|
2750
2760
|
"lib",
|
|
2751
2761
|
"commands",
|
|
2752
|
-
"
|
|
2753
|
-
"
|
|
2762
|
+
"certs",
|
|
2763
|
+
"remove.js"
|
|
2754
2764
|
]
|
|
2755
2765
|
},
|
|
2756
|
-
"
|
|
2757
|
-
"aliases": [],
|
|
2758
|
-
"args": {
|
|
2759
|
-
"buildpack": {
|
|
2760
|
-
"description": "namespace/name of the buildpack",
|
|
2761
|
-
"name": "buildpack",
|
|
2762
|
-
"required": true
|
|
2763
|
-
}
|
|
2764
|
-
},
|
|
2765
|
-
"description": "list versions of a buildpack",
|
|
2766
|
-
"flags": {},
|
|
2767
|
-
"hasDynamicHelp": false,
|
|
2768
|
-
"hiddenAliases": [],
|
|
2769
|
-
"id": "buildpacks:versions",
|
|
2770
|
-
"pluginAlias": "heroku",
|
|
2771
|
-
"pluginName": "heroku",
|
|
2772
|
-
"pluginType": "core",
|
|
2773
|
-
"strict": true,
|
|
2774
|
-
"isESM": false,
|
|
2775
|
-
"relativePath": [
|
|
2776
|
-
"lib",
|
|
2777
|
-
"commands",
|
|
2778
|
-
"buildpacks",
|
|
2779
|
-
"versions.js"
|
|
2780
|
-
]
|
|
2781
|
-
},
|
|
2782
|
-
"certs:add": {
|
|
2766
|
+
"certs:update": {
|
|
2783
2767
|
"aliases": [],
|
|
2784
2768
|
"args": {
|
|
2785
2769
|
"CRT": {
|
|
@@ -2793,11 +2777,32 @@
|
|
|
2793
2777
|
"required": true
|
|
2794
2778
|
}
|
|
2795
2779
|
},
|
|
2796
|
-
"description": "
|
|
2780
|
+
"description": "update an SSL certificate on an app\nNote: certificates with PEM encoding are also valid\n",
|
|
2797
2781
|
"examples": [
|
|
2798
|
-
"$ heroku certs:
|
|
2782
|
+
"$ 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"
|
|
2799
2783
|
],
|
|
2800
2784
|
"flags": {
|
|
2785
|
+
"confirm": {
|
|
2786
|
+
"hidden": true,
|
|
2787
|
+
"name": "confirm",
|
|
2788
|
+
"hasDynamicHelp": false,
|
|
2789
|
+
"multiple": false,
|
|
2790
|
+
"type": "option"
|
|
2791
|
+
},
|
|
2792
|
+
"name": {
|
|
2793
|
+
"description": "name to update",
|
|
2794
|
+
"name": "name",
|
|
2795
|
+
"hasDynamicHelp": false,
|
|
2796
|
+
"multiple": false,
|
|
2797
|
+
"type": "option"
|
|
2798
|
+
},
|
|
2799
|
+
"endpoint": {
|
|
2800
|
+
"description": "endpoint to update",
|
|
2801
|
+
"name": "endpoint",
|
|
2802
|
+
"hasDynamicHelp": false,
|
|
2803
|
+
"multiple": false,
|
|
2804
|
+
"type": "option"
|
|
2805
|
+
},
|
|
2801
2806
|
"app": {
|
|
2802
2807
|
"char": "a",
|
|
2803
2808
|
"description": "app to run command against",
|
|
@@ -2818,7 +2823,7 @@
|
|
|
2818
2823
|
},
|
|
2819
2824
|
"hasDynamicHelp": false,
|
|
2820
2825
|
"hiddenAliases": [],
|
|
2821
|
-
"id": "certs:
|
|
2826
|
+
"id": "certs:update",
|
|
2822
2827
|
"pluginAlias": "heroku",
|
|
2823
2828
|
"pluginName": "heroku",
|
|
2824
2829
|
"pluginType": "core",
|
|
@@ -2829,76 +2834,20 @@
|
|
|
2829
2834
|
"lib",
|
|
2830
2835
|
"commands",
|
|
2831
2836
|
"certs",
|
|
2832
|
-
"
|
|
2837
|
+
"update.js"
|
|
2833
2838
|
]
|
|
2834
2839
|
},
|
|
2835
|
-
"
|
|
2840
|
+
"buildpacks:add": {
|
|
2836
2841
|
"aliases": [],
|
|
2837
2842
|
"args": {
|
|
2838
|
-
"
|
|
2839
|
-
"description": "
|
|
2840
|
-
"name": "
|
|
2843
|
+
"buildpack": {
|
|
2844
|
+
"description": "namespace/name of the buildpack",
|
|
2845
|
+
"name": "buildpack",
|
|
2841
2846
|
"required": true
|
|
2842
2847
|
}
|
|
2843
2848
|
},
|
|
2844
|
-
"description": "
|
|
2849
|
+
"description": "add new app buildpack, inserting into list of buildpacks if necessary",
|
|
2845
2850
|
"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
2851
|
"app": {
|
|
2903
2852
|
"char": "a",
|
|
2904
2853
|
"description": "app to run command against",
|
|
@@ -2915,29 +2864,35 @@
|
|
|
2915
2864
|
"hasDynamicHelp": false,
|
|
2916
2865
|
"multiple": false,
|
|
2917
2866
|
"type": "option"
|
|
2867
|
+
},
|
|
2868
|
+
"index": {
|
|
2869
|
+
"char": "i",
|
|
2870
|
+
"description": "the 1-based index of the URL in the list of URLs",
|
|
2871
|
+
"name": "index",
|
|
2872
|
+
"hasDynamicHelp": false,
|
|
2873
|
+
"multiple": false,
|
|
2874
|
+
"type": "option"
|
|
2918
2875
|
}
|
|
2919
2876
|
},
|
|
2920
2877
|
"hasDynamicHelp": false,
|
|
2921
2878
|
"hiddenAliases": [],
|
|
2922
|
-
"id": "
|
|
2879
|
+
"id": "buildpacks:add",
|
|
2923
2880
|
"pluginAlias": "heroku",
|
|
2924
2881
|
"pluginName": "heroku",
|
|
2925
2882
|
"pluginType": "core",
|
|
2926
2883
|
"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
2884
|
"isESM": false,
|
|
2930
2885
|
"relativePath": [
|
|
2931
2886
|
"lib",
|
|
2932
2887
|
"commands",
|
|
2933
|
-
"
|
|
2934
|
-
"
|
|
2888
|
+
"buildpacks",
|
|
2889
|
+
"add.js"
|
|
2935
2890
|
]
|
|
2936
2891
|
},
|
|
2937
|
-
"
|
|
2892
|
+
"buildpacks:clear": {
|
|
2938
2893
|
"aliases": [],
|
|
2939
2894
|
"args": {},
|
|
2940
|
-
"description": "
|
|
2895
|
+
"description": "clear all buildpacks set on the app",
|
|
2941
2896
|
"flags": {
|
|
2942
2897
|
"app": {
|
|
2943
2898
|
"char": "a",
|
|
@@ -2959,45 +2914,24 @@
|
|
|
2959
2914
|
},
|
|
2960
2915
|
"hasDynamicHelp": false,
|
|
2961
2916
|
"hiddenAliases": [],
|
|
2962
|
-
"id": "
|
|
2917
|
+
"id": "buildpacks:clear",
|
|
2963
2918
|
"pluginAlias": "heroku",
|
|
2964
2919
|
"pluginName": "heroku",
|
|
2965
2920
|
"pluginType": "core",
|
|
2966
2921
|
"strict": true,
|
|
2967
|
-
"topic": "certs",
|
|
2968
2922
|
"isESM": false,
|
|
2969
2923
|
"relativePath": [
|
|
2970
2924
|
"lib",
|
|
2971
2925
|
"commands",
|
|
2972
|
-
"
|
|
2973
|
-
"
|
|
2926
|
+
"buildpacks",
|
|
2927
|
+
"clear.js"
|
|
2974
2928
|
]
|
|
2975
2929
|
},
|
|
2976
|
-
"
|
|
2930
|
+
"buildpacks": {
|
|
2977
2931
|
"aliases": [],
|
|
2978
2932
|
"args": {},
|
|
2979
|
-
"description": "
|
|
2933
|
+
"description": "display the buildpacks for an app",
|
|
2980
2934
|
"flags": {
|
|
2981
|
-
"name": {
|
|
2982
|
-
"description": "name to check info on",
|
|
2983
|
-
"name": "name",
|
|
2984
|
-
"hasDynamicHelp": false,
|
|
2985
|
-
"multiple": false,
|
|
2986
|
-
"type": "option"
|
|
2987
|
-
},
|
|
2988
|
-
"endpoint": {
|
|
2989
|
-
"description": "endpoint to check info on",
|
|
2990
|
-
"name": "endpoint",
|
|
2991
|
-
"hasDynamicHelp": false,
|
|
2992
|
-
"multiple": false,
|
|
2993
|
-
"type": "option"
|
|
2994
|
-
},
|
|
2995
|
-
"show-domains": {
|
|
2996
|
-
"description": "show associated domains",
|
|
2997
|
-
"name": "show-domains",
|
|
2998
|
-
"allowNo": false,
|
|
2999
|
-
"type": "boolean"
|
|
3000
|
-
},
|
|
3001
2935
|
"app": {
|
|
3002
2936
|
"char": "a",
|
|
3003
2937
|
"description": "app to run command against",
|
|
@@ -3018,46 +2952,55 @@
|
|
|
3018
2952
|
},
|
|
3019
2953
|
"hasDynamicHelp": false,
|
|
3020
2954
|
"hiddenAliases": [],
|
|
3021
|
-
"id": "
|
|
2955
|
+
"id": "buildpacks",
|
|
3022
2956
|
"pluginAlias": "heroku",
|
|
3023
2957
|
"pluginName": "heroku",
|
|
3024
2958
|
"pluginType": "core",
|
|
3025
2959
|
"strict": true,
|
|
3026
|
-
"topic": "certs",
|
|
3027
2960
|
"isESM": false,
|
|
3028
2961
|
"relativePath": [
|
|
3029
2962
|
"lib",
|
|
3030
2963
|
"commands",
|
|
3031
|
-
"
|
|
2964
|
+
"buildpacks",
|
|
2965
|
+
"index.js"
|
|
2966
|
+
]
|
|
2967
|
+
},
|
|
2968
|
+
"buildpacks:info": {
|
|
2969
|
+
"aliases": [],
|
|
2970
|
+
"args": {
|
|
2971
|
+
"buildpack": {
|
|
2972
|
+
"description": "namespace/name of the buildpack",
|
|
2973
|
+
"name": "buildpack",
|
|
2974
|
+
"required": true
|
|
2975
|
+
}
|
|
2976
|
+
},
|
|
2977
|
+
"description": "fetch info about a buildpack",
|
|
2978
|
+
"flags": {},
|
|
2979
|
+
"hasDynamicHelp": false,
|
|
2980
|
+
"hiddenAliases": [],
|
|
2981
|
+
"id": "buildpacks:info",
|
|
2982
|
+
"pluginAlias": "heroku",
|
|
2983
|
+
"pluginName": "heroku",
|
|
2984
|
+
"pluginType": "core",
|
|
2985
|
+
"strict": true,
|
|
2986
|
+
"isESM": false,
|
|
2987
|
+
"relativePath": [
|
|
2988
|
+
"lib",
|
|
2989
|
+
"commands",
|
|
2990
|
+
"buildpacks",
|
|
3032
2991
|
"info.js"
|
|
3033
2992
|
]
|
|
3034
2993
|
},
|
|
3035
|
-
"
|
|
2994
|
+
"buildpacks:remove": {
|
|
3036
2995
|
"aliases": [],
|
|
3037
|
-
"args": {
|
|
3038
|
-
|
|
2996
|
+
"args": {
|
|
2997
|
+
"buildpack": {
|
|
2998
|
+
"description": "namespace/name of the buildpack",
|
|
2999
|
+
"name": "buildpack"
|
|
3000
|
+
}
|
|
3001
|
+
},
|
|
3002
|
+
"description": "remove a buildpack set on the app",
|
|
3039
3003
|
"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
3004
|
"app": {
|
|
3062
3005
|
"char": "a",
|
|
3063
3006
|
"description": "app to run command against",
|
|
@@ -3074,64 +3017,88 @@
|
|
|
3074
3017
|
"hasDynamicHelp": false,
|
|
3075
3018
|
"multiple": false,
|
|
3076
3019
|
"type": "option"
|
|
3020
|
+
},
|
|
3021
|
+
"index": {
|
|
3022
|
+
"char": "i",
|
|
3023
|
+
"description": "the 1-based index of the URL to remove from the list of URLs",
|
|
3024
|
+
"name": "index",
|
|
3025
|
+
"hasDynamicHelp": false,
|
|
3026
|
+
"multiple": false,
|
|
3027
|
+
"type": "option"
|
|
3077
3028
|
}
|
|
3078
3029
|
},
|
|
3079
3030
|
"hasDynamicHelp": false,
|
|
3080
3031
|
"hiddenAliases": [],
|
|
3081
|
-
"id": "
|
|
3032
|
+
"id": "buildpacks:remove",
|
|
3082
3033
|
"pluginAlias": "heroku",
|
|
3083
3034
|
"pluginName": "heroku",
|
|
3084
3035
|
"pluginType": "core",
|
|
3085
3036
|
"strict": true,
|
|
3086
|
-
"topic": "certs",
|
|
3087
3037
|
"isESM": false,
|
|
3088
3038
|
"relativePath": [
|
|
3089
3039
|
"lib",
|
|
3090
3040
|
"commands",
|
|
3091
|
-
"
|
|
3041
|
+
"buildpacks",
|
|
3092
3042
|
"remove.js"
|
|
3093
3043
|
]
|
|
3094
3044
|
},
|
|
3095
|
-
"
|
|
3045
|
+
"buildpacks:search": {
|
|
3096
3046
|
"aliases": [],
|
|
3097
3047
|
"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",
|
|
3106
|
-
"required": true
|
|
3048
|
+
"term": {
|
|
3049
|
+
"description": "search term that searches across name, namespace, and description",
|
|
3050
|
+
"name": "term"
|
|
3107
3051
|
}
|
|
3108
3052
|
},
|
|
3109
|
-
"description": "
|
|
3110
|
-
"examples": [
|
|
3111
|
-
"$ 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"
|
|
3112
|
-
],
|
|
3053
|
+
"description": "search for buildpacks",
|
|
3113
3054
|
"flags": {
|
|
3114
|
-
"
|
|
3115
|
-
"
|
|
3116
|
-
"name": "
|
|
3055
|
+
"namespace": {
|
|
3056
|
+
"description": "buildpack namespaces to filter on using a comma separated list",
|
|
3057
|
+
"name": "namespace",
|
|
3117
3058
|
"hasDynamicHelp": false,
|
|
3118
3059
|
"multiple": false,
|
|
3119
3060
|
"type": "option"
|
|
3120
3061
|
},
|
|
3121
3062
|
"name": {
|
|
3122
|
-
"description": "
|
|
3063
|
+
"description": "buildpack names to filter on using a comma separated list ",
|
|
3123
3064
|
"name": "name",
|
|
3124
3065
|
"hasDynamicHelp": false,
|
|
3125
3066
|
"multiple": false,
|
|
3126
3067
|
"type": "option"
|
|
3127
3068
|
},
|
|
3128
|
-
"
|
|
3129
|
-
"description": "
|
|
3130
|
-
"name": "
|
|
3069
|
+
"description": {
|
|
3070
|
+
"description": "buildpack description to filter on",
|
|
3071
|
+
"name": "description",
|
|
3131
3072
|
"hasDynamicHelp": false,
|
|
3132
3073
|
"multiple": false,
|
|
3133
3074
|
"type": "option"
|
|
3134
|
-
}
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
3077
|
+
"hasDynamicHelp": false,
|
|
3078
|
+
"hiddenAliases": [],
|
|
3079
|
+
"id": "buildpacks:search",
|
|
3080
|
+
"pluginAlias": "heroku",
|
|
3081
|
+
"pluginName": "heroku",
|
|
3082
|
+
"pluginType": "core",
|
|
3083
|
+
"strict": true,
|
|
3084
|
+
"isESM": false,
|
|
3085
|
+
"relativePath": [
|
|
3086
|
+
"lib",
|
|
3087
|
+
"commands",
|
|
3088
|
+
"buildpacks",
|
|
3089
|
+
"search.js"
|
|
3090
|
+
]
|
|
3091
|
+
},
|
|
3092
|
+
"buildpacks:set": {
|
|
3093
|
+
"aliases": [],
|
|
3094
|
+
"args": {
|
|
3095
|
+
"buildpack": {
|
|
3096
|
+
"description": "namespace/name of the buildpack",
|
|
3097
|
+
"name": "buildpack",
|
|
3098
|
+
"required": true
|
|
3099
|
+
}
|
|
3100
|
+
},
|
|
3101
|
+
"flags": {
|
|
3135
3102
|
"app": {
|
|
3136
3103
|
"char": "a",
|
|
3137
3104
|
"description": "app to run command against",
|
|
@@ -3148,22 +3115,55 @@
|
|
|
3148
3115
|
"hasDynamicHelp": false,
|
|
3149
3116
|
"multiple": false,
|
|
3150
3117
|
"type": "option"
|
|
3118
|
+
},
|
|
3119
|
+
"index": {
|
|
3120
|
+
"char": "i",
|
|
3121
|
+
"description": "the 1-based index of the URL in the list of URLs",
|
|
3122
|
+
"name": "index",
|
|
3123
|
+
"hasDynamicHelp": false,
|
|
3124
|
+
"multiple": false,
|
|
3125
|
+
"type": "option"
|
|
3151
3126
|
}
|
|
3152
3127
|
},
|
|
3153
3128
|
"hasDynamicHelp": false,
|
|
3154
3129
|
"hiddenAliases": [],
|
|
3155
|
-
"id": "
|
|
3130
|
+
"id": "buildpacks:set",
|
|
3156
3131
|
"pluginAlias": "heroku",
|
|
3157
3132
|
"pluginName": "heroku",
|
|
3158
3133
|
"pluginType": "core",
|
|
3159
3134
|
"strict": true,
|
|
3160
|
-
"topic": "certs",
|
|
3161
3135
|
"isESM": false,
|
|
3162
3136
|
"relativePath": [
|
|
3163
3137
|
"lib",
|
|
3164
3138
|
"commands",
|
|
3165
|
-
"
|
|
3166
|
-
"
|
|
3139
|
+
"buildpacks",
|
|
3140
|
+
"set.js"
|
|
3141
|
+
]
|
|
3142
|
+
},
|
|
3143
|
+
"buildpacks:versions": {
|
|
3144
|
+
"aliases": [],
|
|
3145
|
+
"args": {
|
|
3146
|
+
"buildpack": {
|
|
3147
|
+
"description": "namespace/name of the buildpack",
|
|
3148
|
+
"name": "buildpack",
|
|
3149
|
+
"required": true
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3152
|
+
"description": "list versions of a buildpack",
|
|
3153
|
+
"flags": {},
|
|
3154
|
+
"hasDynamicHelp": false,
|
|
3155
|
+
"hiddenAliases": [],
|
|
3156
|
+
"id": "buildpacks:versions",
|
|
3157
|
+
"pluginAlias": "heroku",
|
|
3158
|
+
"pluginName": "heroku",
|
|
3159
|
+
"pluginType": "core",
|
|
3160
|
+
"strict": true,
|
|
3161
|
+
"isESM": false,
|
|
3162
|
+
"relativePath": [
|
|
3163
|
+
"lib",
|
|
3164
|
+
"commands",
|
|
3165
|
+
"buildpacks",
|
|
3166
|
+
"versions.js"
|
|
3167
3167
|
]
|
|
3168
3168
|
},
|
|
3169
3169
|
"ci:debug": {
|
|
@@ -14450,5 +14450,5 @@
|
|
|
14450
14450
|
]
|
|
14451
14451
|
}
|
|
14452
14452
|
},
|
|
14453
|
-
"version": "10.0.3-alpha.
|
|
14453
|
+
"version": "10.0.3-alpha.2"
|
|
14454
14454
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.0.3-alpha.
|
|
4
|
+
"version": "10.0.3-alpha.2",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -391,5 +391,5 @@
|
|
|
391
391
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
392
392
|
},
|
|
393
393
|
"types": "lib/index.d.ts",
|
|
394
|
-
"gitHead": "
|
|
394
|
+
"gitHead": "7016979adafc2d4f5fcb9a74aed0e7108497a5a0"
|
|
395
395
|
}
|