heroku 10.4.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.
@@ -2292,16 +2292,24 @@
2292
2292
  "update.js"
2293
2293
  ]
2294
2294
  },
2295
- "buildpacks:add": {
2295
+ "certs:add": {
2296
2296
  "aliases": [],
2297
2297
  "args": {
2298
- "buildpack": {
2299
- "description": "namespace/name of the buildpack",
2300
- "name": "buildpack",
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",
2301
2306
  "required": true
2302
2307
  }
2303
2308
  },
2304
- "description": "add new app buildpack, inserting into list of buildpacks if necessary",
2309
+ "description": "Add an SSL certificate to an app.\n\n Note: certificates with PEM encoding are also valid.\n ",
2310
+ "examples": [
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"
2312
+ ],
2305
2313
  "flags": {
2306
2314
  "app": {
2307
2315
  "char": "a",
@@ -2319,36 +2327,91 @@
2319
2327
  "hasDynamicHelp": false,
2320
2328
  "multiple": false,
2321
2329
  "type": "option"
2322
- },
2323
- "index": {
2324
- "char": "i",
2325
- "description": "the 1-based index of the URL in the list of URLs",
2326
- "name": "index",
2327
- "hasDynamicHelp": false,
2328
- "multiple": false,
2329
- "type": "option"
2330
2330
  }
2331
2331
  },
2332
2332
  "hasDynamicHelp": false,
2333
2333
  "hiddenAliases": [],
2334
- "id": "buildpacks:add",
2334
+ "id": "certs:add",
2335
2335
  "pluginAlias": "heroku",
2336
2336
  "pluginName": "heroku",
2337
2337
  "pluginType": "core",
2338
2338
  "strict": true,
2339
+ "topic": "certs",
2339
2340
  "isESM": false,
2340
2341
  "relativePath": [
2341
2342
  "lib",
2342
2343
  "commands",
2343
- "buildpacks",
2344
+ "certs",
2344
2345
  "add.js"
2345
2346
  ]
2346
2347
  },
2347
- "buildpacks:clear": {
2348
+ "certs:generate": {
2348
2349
  "aliases": [],
2349
- "args": {},
2350
- "description": "clear all buildpacks set on the app",
2350
+ "args": {
2351
+ "domain": {
2352
+ "description": "domain name to generate",
2353
+ "name": "domain",
2354
+ "required": true
2355
+ }
2356
+ },
2357
+ "description": "generate a key and a CSR or self-signed certificate",
2351
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
+ },
2352
2415
  "app": {
2353
2416
  "char": "a",
2354
2417
  "description": "app to run command against",
@@ -2369,23 +2432,25 @@
2369
2432
  },
2370
2433
  "hasDynamicHelp": false,
2371
2434
  "hiddenAliases": [],
2372
- "id": "buildpacks:clear",
2435
+ "id": "certs:generate",
2373
2436
  "pluginAlias": "heroku",
2374
2437
  "pluginName": "heroku",
2375
2438
  "pluginType": "core",
2376
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.",
2377
2442
  "isESM": false,
2378
2443
  "relativePath": [
2379
2444
  "lib",
2380
2445
  "commands",
2381
- "buildpacks",
2382
- "clear.js"
2446
+ "certs",
2447
+ "generate.js"
2383
2448
  ]
2384
2449
  },
2385
- "buildpacks": {
2450
+ "certs": {
2386
2451
  "aliases": [],
2387
2452
  "args": {},
2388
- "description": "list the buildpacks on an app",
2453
+ "description": "list SSL certificates for an app",
2389
2454
  "flags": {
2390
2455
  "app": {
2391
2456
  "char": "a",
@@ -2407,55 +2472,45 @@
2407
2472
  },
2408
2473
  "hasDynamicHelp": false,
2409
2474
  "hiddenAliases": [],
2410
- "id": "buildpacks",
2475
+ "id": "certs",
2411
2476
  "pluginAlias": "heroku",
2412
2477
  "pluginName": "heroku",
2413
2478
  "pluginType": "core",
2414
2479
  "strict": true,
2480
+ "topic": "certs",
2415
2481
  "isESM": false,
2416
2482
  "relativePath": [
2417
2483
  "lib",
2418
2484
  "commands",
2419
- "buildpacks",
2485
+ "certs",
2420
2486
  "index.js"
2421
2487
  ]
2422
2488
  },
2423
- "buildpacks:info": {
2424
- "aliases": [],
2425
- "args": {
2426
- "buildpack": {
2427
- "description": "namespace/name of the buildpack",
2428
- "name": "buildpack",
2429
- "required": true
2430
- }
2431
- },
2432
- "description": "fetch info about a buildpack",
2433
- "flags": {},
2434
- "hasDynamicHelp": false,
2435
- "hiddenAliases": [],
2436
- "id": "buildpacks:info",
2437
- "pluginAlias": "heroku",
2438
- "pluginName": "heroku",
2439
- "pluginType": "core",
2440
- "strict": true,
2441
- "isESM": false,
2442
- "relativePath": [
2443
- "lib",
2444
- "commands",
2445
- "buildpacks",
2446
- "info.js"
2447
- ]
2448
- },
2449
- "buildpacks:remove": {
2489
+ "certs:info": {
2450
2490
  "aliases": [],
2451
- "args": {
2452
- "buildpack": {
2453
- "description": "namespace/name of the buildpack",
2454
- "name": "buildpack"
2455
- }
2456
- },
2457
- "description": "remove a buildpack set on the app",
2491
+ "args": {},
2492
+ "description": "show certificate information for an SSL certificate",
2458
2493
  "flags": {
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
+ },
2459
2514
  "app": {
2460
2515
  "char": "a",
2461
2516
  "description": "app to run command against",
@@ -2472,88 +2527,50 @@
2472
2527
  "hasDynamicHelp": false,
2473
2528
  "multiple": false,
2474
2529
  "type": "option"
2475
- },
2476
- "index": {
2477
- "char": "i",
2478
- "description": "the 1-based index of the URL to remove from the list of URLs",
2479
- "name": "index",
2480
- "hasDynamicHelp": false,
2481
- "multiple": false,
2482
- "type": "option"
2483
2530
  }
2484
2531
  },
2485
2532
  "hasDynamicHelp": false,
2486
2533
  "hiddenAliases": [],
2487
- "id": "buildpacks:remove",
2534
+ "id": "certs:info",
2488
2535
  "pluginAlias": "heroku",
2489
2536
  "pluginName": "heroku",
2490
2537
  "pluginType": "core",
2491
2538
  "strict": true,
2539
+ "topic": "certs",
2492
2540
  "isESM": false,
2493
2541
  "relativePath": [
2494
2542
  "lib",
2495
2543
  "commands",
2496
- "buildpacks",
2497
- "remove.js"
2544
+ "certs",
2545
+ "info.js"
2498
2546
  ]
2499
2547
  },
2500
- "buildpacks:search": {
2548
+ "certs:remove": {
2501
2549
  "aliases": [],
2502
- "args": {
2503
- "term": {
2504
- "description": "search term that searches across name, namespace, and description",
2505
- "name": "term"
2506
- }
2507
- },
2508
- "description": "search for buildpacks",
2550
+ "args": {},
2551
+ "description": "remove an SSL certificate from an app",
2509
2552
  "flags": {
2510
- "namespace": {
2511
- "description": "buildpack namespaces to filter on using a comma separated list",
2512
- "name": "namespace",
2553
+ "confirm": {
2554
+ "hidden": true,
2555
+ "name": "confirm",
2513
2556
  "hasDynamicHelp": false,
2514
2557
  "multiple": false,
2515
2558
  "type": "option"
2516
2559
  },
2517
2560
  "name": {
2518
- "description": "buildpack names to filter on using a comma separated list ",
2561
+ "description": "name to remove",
2519
2562
  "name": "name",
2520
2563
  "hasDynamicHelp": false,
2521
2564
  "multiple": false,
2522
2565
  "type": "option"
2523
2566
  },
2524
- "description": {
2525
- "description": "buildpack description to filter on",
2526
- "name": "description",
2567
+ "endpoint": {
2568
+ "description": "endpoint to remove",
2569
+ "name": "endpoint",
2527
2570
  "hasDynamicHelp": false,
2528
2571
  "multiple": false,
2529
2572
  "type": "option"
2530
- }
2531
- },
2532
- "hasDynamicHelp": false,
2533
- "hiddenAliases": [],
2534
- "id": "buildpacks:search",
2535
- "pluginAlias": "heroku",
2536
- "pluginName": "heroku",
2537
- "pluginType": "core",
2538
- "strict": true,
2539
- "isESM": false,
2540
- "relativePath": [
2541
- "lib",
2542
- "commands",
2543
- "buildpacks",
2544
- "search.js"
2545
- ]
2546
- },
2547
- "buildpacks:set": {
2548
- "aliases": [],
2549
- "args": {
2550
- "buildpack": {
2551
- "description": "namespace/name of the buildpack",
2552
- "name": "buildpack",
2553
- "required": true
2554
- }
2555
- },
2556
- "flags": {
2573
+ },
2557
2574
  "app": {
2558
2575
  "char": "a",
2559
2576
  "description": "app to run command against",
@@ -2570,100 +2587,138 @@
2570
2587
  "hasDynamicHelp": false,
2571
2588
  "multiple": false,
2572
2589
  "type": "option"
2573
- },
2574
- "index": {
2575
- "char": "i",
2576
- "description": "the 1-based index of the URL in the list of URLs",
2577
- "name": "index",
2578
- "hasDynamicHelp": false,
2579
- "multiple": false,
2580
- "type": "option"
2581
2590
  }
2582
2591
  },
2583
2592
  "hasDynamicHelp": false,
2584
2593
  "hiddenAliases": [],
2585
- "id": "buildpacks:set",
2594
+ "id": "certs:remove",
2586
2595
  "pluginAlias": "heroku",
2587
2596
  "pluginName": "heroku",
2588
2597
  "pluginType": "core",
2589
2598
  "strict": true,
2599
+ "topic": "certs",
2590
2600
  "isESM": false,
2591
2601
  "relativePath": [
2592
2602
  "lib",
2593
2603
  "commands",
2594
- "buildpacks",
2595
- "set.js"
2604
+ "certs",
2605
+ "remove.js"
2596
2606
  ]
2597
2607
  },
2598
- "buildpacks:versions": {
2608
+ "certs:update": {
2599
2609
  "aliases": [],
2600
2610
  "args": {
2601
- "buildpack": {
2602
- "description": "namespace/name of the buildpack",
2603
- "name": "buildpack",
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",
2604
2619
  "required": true
2605
2620
  }
2606
2621
  },
2607
- "description": "list versions of a buildpack",
2608
- "flags": {},
2609
- "hasDynamicHelp": false,
2610
- "hiddenAliases": [],
2611
- "id": "buildpacks:versions",
2612
- "pluginAlias": "heroku",
2613
- "pluginName": "heroku",
2614
- "pluginType": "core",
2615
- "strict": true,
2616
- "isESM": false,
2617
- "relativePath": [
2618
- "lib",
2619
- "commands",
2620
- "buildpacks",
2621
- "versions.js"
2622
- ]
2623
- },
2624
- "autocomplete:create": {
2625
- "aliases": [],
2626
- "args": {},
2627
- "description": "create autocomplete setup scripts and completion functions",
2628
- "flags": {},
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
+ ],
2626
+ "flags": {
2627
+ "confirm": {
2628
+ "hidden": true,
2629
+ "name": "confirm",
2630
+ "hasDynamicHelp": false,
2631
+ "multiple": false,
2632
+ "type": "option"
2633
+ },
2634
+ "name": {
2635
+ "description": "name to update",
2636
+ "name": "name",
2637
+ "hasDynamicHelp": false,
2638
+ "multiple": false,
2639
+ "type": "option"
2640
+ },
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",
2661
+ "hasDynamicHelp": false,
2662
+ "multiple": false,
2663
+ "type": "option"
2664
+ }
2665
+ },
2629
2666
  "hasDynamicHelp": false,
2630
- "hidden": true,
2631
2667
  "hiddenAliases": [],
2632
- "id": "autocomplete:create",
2668
+ "id": "certs:update",
2633
2669
  "pluginAlias": "heroku",
2634
2670
  "pluginName": "heroku",
2635
2671
  "pluginType": "core",
2636
2672
  "strict": true,
2673
+ "topic": "certs",
2637
2674
  "isESM": false,
2638
2675
  "relativePath": [
2639
2676
  "lib",
2640
2677
  "commands",
2641
- "autocomplete",
2642
- "create.js"
2678
+ "certs",
2679
+ "update.js"
2643
2680
  ]
2644
2681
  },
2645
- "autocomplete:doctor": {
2682
+ "buildpacks:add": {
2646
2683
  "aliases": [],
2647
2684
  "args": {
2648
- "shell": {
2649
- "description": "shell type",
2650
- "name": "shell",
2651
- "required": false
2685
+ "buildpack": {
2686
+ "description": "namespace/name of the buildpack",
2687
+ "name": "buildpack",
2688
+ "required": true
2652
2689
  }
2653
2690
  },
2654
- "description": "autocomplete diagnostic",
2691
+ "description": "add new app buildpack, inserting into list of buildpacks if necessary",
2655
2692
  "flags": {
2656
- "verbose": {
2657
- "description": "list completable commands",
2658
- "name": "verbose",
2659
- "allowNo": false,
2660
- "type": "boolean"
2693
+ "app": {
2694
+ "char": "a",
2695
+ "description": "app to run command against",
2696
+ "name": "app",
2697
+ "required": true,
2698
+ "hasDynamicHelp": false,
2699
+ "multiple": false,
2700
+ "type": "option"
2701
+ },
2702
+ "remote": {
2703
+ "char": "r",
2704
+ "description": "git remote of app to use",
2705
+ "name": "remote",
2706
+ "hasDynamicHelp": false,
2707
+ "multiple": false,
2708
+ "type": "option"
2709
+ },
2710
+ "index": {
2711
+ "char": "i",
2712
+ "description": "the 1-based index of the URL in the list of URLs",
2713
+ "name": "index",
2714
+ "hasDynamicHelp": false,
2715
+ "multiple": false,
2716
+ "type": "option"
2661
2717
  }
2662
2718
  },
2663
2719
  "hasDynamicHelp": false,
2664
- "hidden": true,
2665
2720
  "hiddenAliases": [],
2666
- "id": "autocomplete:doctor",
2721
+ "id": "buildpacks:add",
2667
2722
  "pluginAlias": "heroku",
2668
2723
  "pluginName": "heroku",
2669
2724
  "pluginType": "core",
@@ -2672,38 +2727,36 @@
2672
2727
  "relativePath": [
2673
2728
  "lib",
2674
2729
  "commands",
2675
- "autocomplete",
2676
- "doctor.js"
2730
+ "buildpacks",
2731
+ "add.js"
2677
2732
  ]
2678
2733
  },
2679
- "autocomplete": {
2734
+ "buildpacks:clear": {
2680
2735
  "aliases": [],
2681
- "args": {
2682
- "shell": {
2683
- "description": "shell type",
2684
- "name": "shell",
2685
- "required": false
2686
- }
2687
- },
2688
- "description": "display autocomplete installation instructions",
2689
- "examples": [
2690
- "$ heroku autocomplete",
2691
- "$ heroku autocomplete bash",
2692
- "$ heroku autocomplete zsh",
2693
- "$ heroku autocomplete --refresh-cache"
2694
- ],
2736
+ "args": {},
2737
+ "description": "clear all buildpacks set on the app",
2695
2738
  "flags": {
2696
- "refresh-cache": {
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": {
2697
2749
  "char": "r",
2698
- "description": "refresh cache only (ignores displaying instructions)",
2699
- "name": "refresh-cache",
2700
- "allowNo": false,
2701
- "type": "boolean"
2750
+ "description": "git remote of app to use",
2751
+ "name": "remote",
2752
+ "hasDynamicHelp": false,
2753
+ "multiple": false,
2754
+ "type": "option"
2702
2755
  }
2703
2756
  },
2704
2757
  "hasDynamicHelp": false,
2705
2758
  "hiddenAliases": [],
2706
- "id": "autocomplete",
2759
+ "id": "buildpacks:clear",
2707
2760
  "pluginAlias": "heroku",
2708
2761
  "pluginName": "heroku",
2709
2762
  "pluginType": "core",
@@ -2712,34 +2765,36 @@
2712
2765
  "relativePath": [
2713
2766
  "lib",
2714
2767
  "commands",
2715
- "autocomplete",
2716
- "index.js"
2768
+ "buildpacks",
2769
+ "clear.js"
2717
2770
  ]
2718
2771
  },
2719
- "autocomplete:options": {
2772
+ "buildpacks": {
2720
2773
  "aliases": [],
2721
- "args": {
2722
- "completion": {
2723
- "name": "completion"
2724
- }
2725
- },
2726
- "description": "display arg or flag completion options (used internally by completion functions)",
2774
+ "args": {},
2775
+ "description": "list the buildpacks on an app",
2727
2776
  "flags": {
2728
2777
  "app": {
2729
2778
  "char": "a",
2730
2779
  "description": "app to run command against",
2731
- "hidden": true,
2732
2780
  "name": "app",
2733
- "required": false,
2781
+ "required": true,
2782
+ "hasDynamicHelp": false,
2783
+ "multiple": false,
2784
+ "type": "option"
2785
+ },
2786
+ "remote": {
2787
+ "char": "r",
2788
+ "description": "git remote of app to use",
2789
+ "name": "remote",
2734
2790
  "hasDynamicHelp": false,
2735
2791
  "multiple": false,
2736
2792
  "type": "option"
2737
2793
  }
2738
2794
  },
2739
2795
  "hasDynamicHelp": false,
2740
- "hidden": true,
2741
2796
  "hiddenAliases": [],
2742
- "id": "autocomplete:options",
2797
+ "id": "buildpacks",
2743
2798
  "pluginAlias": "heroku",
2744
2799
  "pluginName": "heroku",
2745
2800
  "pluginType": "core",
@@ -2748,25 +2803,24 @@
2748
2803
  "relativePath": [
2749
2804
  "lib",
2750
2805
  "commands",
2751
- "autocomplete",
2752
- "options.js"
2806
+ "buildpacks",
2807
+ "index.js"
2753
2808
  ]
2754
2809
  },
2755
- "autocomplete:script": {
2810
+ "buildpacks:info": {
2756
2811
  "aliases": [],
2757
2812
  "args": {
2758
- "shell": {
2759
- "description": "shell type",
2760
- "name": "shell",
2761
- "required": false
2813
+ "buildpack": {
2814
+ "description": "namespace/name of the buildpack",
2815
+ "name": "buildpack",
2816
+ "required": true
2762
2817
  }
2763
2818
  },
2764
- "description": "display autocomplete setup script for shell",
2819
+ "description": "fetch info about a buildpack",
2765
2820
  "flags": {},
2766
2821
  "hasDynamicHelp": false,
2767
- "hidden": true,
2768
2822
  "hiddenAliases": [],
2769
- "id": "autocomplete:script",
2823
+ "id": "buildpacks:info",
2770
2824
  "pluginAlias": "heroku",
2771
2825
  "pluginName": "heroku",
2772
2826
  "pluginType": "core",
@@ -2775,28 +2829,19 @@
2775
2829
  "relativePath": [
2776
2830
  "lib",
2777
2831
  "commands",
2778
- "autocomplete",
2779
- "script.js"
2832
+ "buildpacks",
2833
+ "info.js"
2780
2834
  ]
2781
2835
  },
2782
- "certs:add": {
2836
+ "buildpacks:remove": {
2783
2837
  "aliases": [],
2784
2838
  "args": {
2785
- "CRT": {
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
2839
+ "buildpack": {
2840
+ "description": "namespace/name of the buildpack",
2841
+ "name": "buildpack"
2794
2842
  }
2795
2843
  },
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
- ],
2844
+ "description": "remove a buildpack set on the app",
2800
2845
  "flags": {
2801
2846
  "app": {
2802
2847
  "char": "a",
@@ -2814,104 +2859,58 @@
2814
2859
  "hasDynamicHelp": false,
2815
2860
  "multiple": false,
2816
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"
2817
2870
  }
2818
2871
  },
2819
2872
  "hasDynamicHelp": false,
2820
2873
  "hiddenAliases": [],
2821
- "id": "certs:add",
2874
+ "id": "buildpacks:remove",
2822
2875
  "pluginAlias": "heroku",
2823
2876
  "pluginName": "heroku",
2824
2877
  "pluginType": "core",
2825
2878
  "strict": true,
2826
- "topic": "certs",
2827
2879
  "isESM": false,
2828
2880
  "relativePath": [
2829
2881
  "lib",
2830
2882
  "commands",
2831
- "certs",
2832
- "add.js"
2883
+ "buildpacks",
2884
+ "remove.js"
2833
2885
  ]
2834
2886
  },
2835
- "certs:generate": {
2887
+ "buildpacks:search": {
2836
2888
  "aliases": [],
2837
2889
  "args": {
2838
- "domain": {
2839
- "description": "domain name to generate",
2840
- "name": "domain",
2841
- "required": true
2890
+ "term": {
2891
+ "description": "search term that searches across name, namespace, and description",
2892
+ "name": "term"
2842
2893
  }
2843
2894
  },
2844
- "description": "generate a key and a CSR or self-signed certificate",
2895
+ "description": "search for buildpacks",
2845
2896
  "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",
2897
+ "namespace": {
2898
+ "description": "buildpack namespaces to filter on using a comma separated list",
2899
+ "name": "namespace",
2891
2900
  "hasDynamicHelp": false,
2892
2901
  "multiple": false,
2893
2902
  "type": "option"
2894
2903
  },
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,
2904
+ "name": {
2905
+ "description": "buildpack names to filter on using a comma separated list ",
2906
+ "name": "name",
2907
2907
  "hasDynamicHelp": false,
2908
2908
  "multiple": false,
2909
2909
  "type": "option"
2910
2910
  },
2911
- "remote": {
2912
- "char": "r",
2913
- "description": "git remote of app to use",
2914
- "name": "remote",
2911
+ "description": {
2912
+ "description": "buildpack description to filter on",
2913
+ "name": "description",
2915
2914
  "hasDynamicHelp": false,
2916
2915
  "multiple": false,
2917
2916
  "type": "option"
@@ -2919,25 +2918,28 @@
2919
2918
  },
2920
2919
  "hasDynamicHelp": false,
2921
2920
  "hiddenAliases": [],
2922
- "id": "certs:generate",
2921
+ "id": "buildpacks:search",
2923
2922
  "pluginAlias": "heroku",
2924
2923
  "pluginName": "heroku",
2925
2924
  "pluginType": "core",
2926
2925
  "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
2926
  "isESM": false,
2930
2927
  "relativePath": [
2931
2928
  "lib",
2932
2929
  "commands",
2933
- "certs",
2934
- "generate.js"
2930
+ "buildpacks",
2931
+ "search.js"
2935
2932
  ]
2936
2933
  },
2937
- "certs": {
2934
+ "buildpacks:set": {
2938
2935
  "aliases": [],
2939
- "args": {},
2940
- "description": "list SSL certificates for an app",
2936
+ "args": {
2937
+ "buildpack": {
2938
+ "description": "namespace/name of the buildpack",
2939
+ "name": "buildpack",
2940
+ "required": true
2941
+ }
2942
+ },
2941
2943
  "flags": {
2942
2944
  "app": {
2943
2945
  "char": "a",
@@ -2955,215 +2957,213 @@
2955
2957
  "hasDynamicHelp": false,
2956
2958
  "multiple": false,
2957
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"
2958
2968
  }
2959
2969
  },
2960
2970
  "hasDynamicHelp": false,
2961
2971
  "hiddenAliases": [],
2962
- "id": "certs",
2972
+ "id": "buildpacks:set",
2963
2973
  "pluginAlias": "heroku",
2964
2974
  "pluginName": "heroku",
2965
2975
  "pluginType": "core",
2966
2976
  "strict": true,
2967
- "topic": "certs",
2968
2977
  "isESM": false,
2969
2978
  "relativePath": [
2970
2979
  "lib",
2971
2980
  "commands",
2972
- "certs",
2973
- "index.js"
2981
+ "buildpacks",
2982
+ "set.js"
2974
2983
  ]
2975
2984
  },
2976
- "certs:info": {
2985
+ "buildpacks:versions": {
2977
2986
  "aliases": [],
2978
- "args": {},
2979
- "description": "show certificate information for an SSL certificate",
2980
- "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
- "app": {
3002
- "char": "a",
3003
- "description": "app to run command against",
3004
- "name": "app",
3005
- "required": true,
3006
- "hasDynamicHelp": false,
3007
- "multiple": false,
3008
- "type": "option"
3009
- },
3010
- "remote": {
3011
- "char": "r",
3012
- "description": "git remote of app to use",
3013
- "name": "remote",
3014
- "hasDynamicHelp": false,
3015
- "multiple": false,
3016
- "type": "option"
2987
+ "args": {
2988
+ "buildpack": {
2989
+ "description": "namespace/name of the buildpack",
2990
+ "name": "buildpack",
2991
+ "required": true
3017
2992
  }
3018
2993
  },
2994
+ "description": "list versions of a buildpack",
2995
+ "flags": {},
3019
2996
  "hasDynamicHelp": false,
3020
2997
  "hiddenAliases": [],
3021
- "id": "certs:info",
2998
+ "id": "buildpacks:versions",
3022
2999
  "pluginAlias": "heroku",
3023
3000
  "pluginName": "heroku",
3024
3001
  "pluginType": "core",
3025
3002
  "strict": true,
3026
- "topic": "certs",
3027
3003
  "isESM": false,
3028
3004
  "relativePath": [
3029
3005
  "lib",
3030
3006
  "commands",
3031
- "certs",
3032
- "info.js"
3007
+ "buildpacks",
3008
+ "versions.js"
3033
3009
  ]
3034
3010
  },
3035
- "certs:remove": {
3011
+ "autocomplete:create": {
3036
3012
  "aliases": [],
3037
3013
  "args": {},
3038
- "description": "remove an SSL certificate from an app",
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",
3039
3042
  "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
- "app": {
3062
- "char": "a",
3063
- "description": "app to run command against",
3064
- "name": "app",
3065
- "required": true,
3066
- "hasDynamicHelp": false,
3067
- "multiple": false,
3068
- "type": "option"
3069
- },
3070
- "remote": {
3071
- "char": "r",
3072
- "description": "git remote of app to use",
3073
- "name": "remote",
3074
- "hasDynamicHelp": false,
3075
- "multiple": false,
3076
- "type": "option"
3043
+ "verbose": {
3044
+ "description": "list completable commands",
3045
+ "name": "verbose",
3046
+ "allowNo": false,
3047
+ "type": "boolean"
3077
3048
  }
3078
3049
  },
3079
3050
  "hasDynamicHelp": false,
3051
+ "hidden": true,
3080
3052
  "hiddenAliases": [],
3081
- "id": "certs:remove",
3053
+ "id": "autocomplete:doctor",
3082
3054
  "pluginAlias": "heroku",
3083
3055
  "pluginName": "heroku",
3084
3056
  "pluginType": "core",
3085
3057
  "strict": true,
3086
- "topic": "certs",
3087
3058
  "isESM": false,
3088
3059
  "relativePath": [
3089
3060
  "lib",
3090
3061
  "commands",
3091
- "certs",
3092
- "remove.js"
3062
+ "autocomplete",
3063
+ "doctor.js"
3093
3064
  ]
3094
3065
  },
3095
- "certs:update": {
3066
+ "autocomplete": {
3096
3067
  "aliases": [],
3097
3068
  "args": {
3098
- "CRT": {
3099
- "description": "absolute path of the certificate file on disk",
3100
- "name": "CRT",
3101
- "required": true
3102
- },
3103
- "KEY": {
3104
- "description": "absolute path of the key file on disk",
3105
- "name": "KEY",
3106
- "required": true
3069
+ "shell": {
3070
+ "description": "shell type",
3071
+ "name": "shell",
3072
+ "required": false
3107
3073
  }
3108
3074
  },
3109
- "description": "update an SSL certificate on an app\nNote: certificates with PEM encoding are also valid\n",
3075
+ "description": "display autocomplete installation instructions",
3110
3076
  "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"
3077
+ "$ heroku autocomplete",
3078
+ "$ heroku autocomplete bash",
3079
+ "$ heroku autocomplete zsh",
3080
+ "$ heroku autocomplete --refresh-cache"
3112
3081
  ],
3113
3082
  "flags": {
3114
- "confirm": {
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": "git remote of app to use",
3147
- "name": "remote",
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": "certs:update",
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
- "certs",
3166
- "update.js"
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
- "maintenance": {
5759
+ "notifications": {
5760
5760
  "aliases": [],
5761
5761
  "args": {},
5762
- "description": "display the current maintenance status of app",
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": true,
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
- "remote": {
5813
- "char": "r",
5814
- "description": "git remote of app to use",
5815
- "name": "remote",
5816
- "hasDynamicHelp": false,
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
- "remote": {
5852
- "char": "r",
5853
- "description": "git remote of app to use",
5854
- "name": "remote",
5855
- "hasDynamicHelp": false,
5856
- "multiple": false,
5857
- "type": "option"
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": "maintenance:on",
5802
+ "id": "notifications",
5863
5803
  "pluginAlias": "heroku",
5864
5804
  "pluginName": "heroku",
5865
5805
  "pluginType": "core",
5866
5806
  "strict": true,
5867
- "topic": "maintenance",
5807
+ "topic": "notifications",
5868
5808
  "isESM": false,
5869
5809
  "relativePath": [
5870
5810
  "lib",
5871
5811
  "commands",
5872
- "maintenance",
5873
- "on.js"
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
- "notifications": {
5984
+ "maintenance": {
6045
5985
  "aliases": [],
6046
5986
  "args": {},
6047
- "description": "display notifications",
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": false,
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
- "all": {
6067
- "description": "view all notifications (not just the ones for the current app)",
6068
- "name": "all",
6069
- "allowNo": false,
6070
- "type": "boolean"
6071
- },
6072
- "json": {
6073
- "description": "output in json format",
6074
- "name": "json",
6075
- "allowNo": false,
6076
- "type": "boolean"
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
- "read": {
6079
- "description": "show notifications already read",
6080
- "name": "read",
6081
- "allowNo": false,
6082
- "type": "boolean"
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": "notifications",
6087
+ "id": "maintenance:on",
6088
6088
  "pluginAlias": "heroku",
6089
6089
  "pluginName": "heroku",
6090
6090
  "pluginType": "core",
6091
6091
  "strict": true,
6092
- "topic": "notifications",
6092
+ "topic": "maintenance",
6093
6093
  "isESM": false,
6094
6094
  "relativePath": [
6095
6095
  "lib",
6096
6096
  "commands",
6097
- "notifications",
6098
- "index.js"
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.0"
14489
+ "version": "10.4.1-beta.1"
14490
14490
  }