heroku 10.13.1-beta.0 → 10.13.2-beta.0

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.
@@ -24,7 +24,6 @@ class Upgrade extends command_1.Command {
24
24
  if (replica.following)
25
25
  core_1.ux.error(`You can't use ${color_1.default.cmd('pg:upgrade:dryrun')} on follower databases. You can only use this command on Standard-tier and higher leader databases.`);
26
26
  await (0, confirmCommand_1.default)(app, confirm, (0, tsheredoc_1.default)(`
27
- Destructive action
28
27
  This command starts a test upgrade for ${color_1.default.addon(db.name)} to ${versionPhrase}.
29
28
  `));
30
29
  try {
@@ -187,7 +187,7 @@ Cli.flags = {
187
187
  remote: command_1.flags.remote(),
188
188
  };
189
189
  Cli.args = {
190
- database: core_1.Args.string({ description: 'name of the Key-Value Store database. If omitted, it defaults to the primary database associated with the app.' }),
190
+ database: core_1.Args.string({ description: 'name of the Key-Value Store database. If omitted, it defaults to the primary database associated with the app.', ignoreStdin: true }),
191
191
  };
192
192
  Cli.examples = [
193
193
  '$ heroku redis:cli --app=my-app my-database',
@@ -2227,15 +2227,56 @@
2227
2227
  "whoami.js"
2228
2228
  ]
2229
2229
  },
2230
- "autocomplete:create": {
2230
+ "authorizations:create": {
2231
2231
  "aliases": [],
2232
2232
  "args": {},
2233
- "description": "create autocomplete setup scripts and completion functions",
2234
- "flags": {},
2233
+ "description": "create a new OAuth authorization",
2234
+ "examples": [
2235
+ "$ heroku authorizations:create --description \"For use with Anvil\""
2236
+ ],
2237
+ "flags": {
2238
+ "description": {
2239
+ "char": "d",
2240
+ "description": "set a custom authorization",
2241
+ "name": "description",
2242
+ "hasDynamicHelp": false,
2243
+ "multiple": false,
2244
+ "type": "option"
2245
+ },
2246
+ "short": {
2247
+ "char": "S",
2248
+ "description": "only output token",
2249
+ "name": "short",
2250
+ "allowNo": false,
2251
+ "type": "boolean"
2252
+ },
2253
+ "json": {
2254
+ "char": "j",
2255
+ "description": "output in json format",
2256
+ "name": "json",
2257
+ "allowNo": false,
2258
+ "type": "boolean"
2259
+ },
2260
+ "scope": {
2261
+ "char": "s",
2262
+ "description": "set custom OAuth scopes",
2263
+ "name": "scope",
2264
+ "hasDynamicHelp": false,
2265
+ "multiple": false,
2266
+ "type": "option"
2267
+ },
2268
+ "expires-in": {
2269
+ "char": "e",
2270
+ "description": "set expiration in seconds (default no expiration)",
2271
+ "name": "expires-in",
2272
+ "hasDynamicHelp": false,
2273
+ "multiple": false,
2274
+ "type": "option"
2275
+ }
2276
+ },
2235
2277
  "hasDynamicHelp": false,
2236
- "hidden": true,
2237
2278
  "hiddenAliases": [],
2238
- "id": "autocomplete:create",
2279
+ "id": "authorizations:create",
2239
2280
  "pluginAlias": "heroku",
2240
2281
  "pluginName": "heroku",
2241
2282
  "pluginType": "core",
@@ -2244,32 +2285,29 @@
2244
2285
  "relativePath": [
2245
2286
  "lib",
2246
2287
  "commands",
2247
- "autocomplete",
2288
+ "authorizations",
2248
2289
  "create.js"
2249
2290
  ]
2250
2291
  },
2251
- "autocomplete:doctor": {
2292
+ "authorizations": {
2252
2293
  "aliases": [],
2253
- "args": {
2254
- "shell": {
2255
- "description": "shell type",
2256
- "name": "shell",
2257
- "required": false
2258
- }
2259
- },
2260
- "description": "autocomplete diagnostic",
2294
+ "args": {},
2295
+ "description": "list OAuth authorizations",
2296
+ "examples": [
2297
+ "$ heroku authorizations"
2298
+ ],
2261
2299
  "flags": {
2262
- "verbose": {
2263
- "description": "list completable commands",
2264
- "name": "verbose",
2300
+ "json": {
2301
+ "char": "j",
2302
+ "description": "output in json format",
2303
+ "name": "json",
2265
2304
  "allowNo": false,
2266
2305
  "type": "boolean"
2267
2306
  }
2268
2307
  },
2269
2308
  "hasDynamicHelp": false,
2270
- "hidden": true,
2271
2309
  "hiddenAliases": [],
2272
- "id": "autocomplete:doctor",
2310
+ "id": "authorizations",
2273
2311
  "pluginAlias": "heroku",
2274
2312
  "pluginName": "heroku",
2275
2313
  "pluginType": "core",
@@ -2278,38 +2316,32 @@
2278
2316
  "relativePath": [
2279
2317
  "lib",
2280
2318
  "commands",
2281
- "autocomplete",
2282
- "doctor.js"
2319
+ "authorizations",
2320
+ "index.js"
2283
2321
  ]
2284
2322
  },
2285
- "autocomplete": {
2323
+ "authorizations:info": {
2286
2324
  "aliases": [],
2287
2325
  "args": {
2288
- "shell": {
2289
- "description": "shell type",
2290
- "name": "shell",
2291
- "required": false
2326
+ "id": {
2327
+ "description": "ID of the authorization",
2328
+ "name": "id",
2329
+ "required": true
2292
2330
  }
2293
2331
  },
2294
- "description": "display autocomplete installation instructions",
2295
- "examples": [
2296
- "$ heroku autocomplete",
2297
- "$ heroku autocomplete bash",
2298
- "$ heroku autocomplete zsh",
2299
- "$ heroku autocomplete --refresh-cache"
2300
- ],
2332
+ "description": "show an existing OAuth authorization",
2301
2333
  "flags": {
2302
- "refresh-cache": {
2303
- "char": "r",
2304
- "description": "refresh cache only (ignores displaying instructions)",
2305
- "name": "refresh-cache",
2334
+ "json": {
2335
+ "char": "j",
2336
+ "description": "output in json format",
2337
+ "name": "json",
2306
2338
  "allowNo": false,
2307
2339
  "type": "boolean"
2308
2340
  }
2309
2341
  },
2310
2342
  "hasDynamicHelp": false,
2311
2343
  "hiddenAliases": [],
2312
- "id": "autocomplete",
2344
+ "id": "authorizations:info",
2313
2345
  "pluginAlias": "heroku",
2314
2346
  "pluginName": "heroku",
2315
2347
  "pluginType": "core",
@@ -2318,34 +2350,30 @@
2318
2350
  "relativePath": [
2319
2351
  "lib",
2320
2352
  "commands",
2321
- "autocomplete",
2322
- "index.js"
2353
+ "authorizations",
2354
+ "info.js"
2323
2355
  ]
2324
2356
  },
2325
- "autocomplete:options": {
2326
- "aliases": [],
2357
+ "authorizations:revoke": {
2358
+ "aliases": [
2359
+ "authorizations:revoke",
2360
+ "authorizations:destroy"
2361
+ ],
2327
2362
  "args": {
2328
- "completion": {
2329
- "name": "completion"
2330
- }
2331
- },
2332
- "description": "display arg or flag completion options (used internally by completion functions)",
2333
- "flags": {
2334
- "app": {
2335
- "char": "a",
2336
- "description": "app to run command against",
2337
- "hidden": true,
2338
- "name": "app",
2339
- "required": false,
2340
- "hasDynamicHelp": false,
2341
- "multiple": false,
2342
- "type": "option"
2363
+ "id": {
2364
+ "description": "ID of the authorization",
2365
+ "name": "id",
2366
+ "required": true
2343
2367
  }
2344
2368
  },
2369
+ "description": "revoke OAuth authorization",
2370
+ "examples": [
2371
+ "$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
2372
+ ],
2373
+ "flags": {},
2345
2374
  "hasDynamicHelp": false,
2346
- "hidden": true,
2347
2375
  "hiddenAliases": [],
2348
- "id": "autocomplete:options",
2376
+ "id": "authorizations:revoke",
2349
2377
  "pluginAlias": "heroku",
2350
2378
  "pluginName": "heroku",
2351
2379
  "pluginType": "core",
@@ -2354,25 +2382,24 @@
2354
2382
  "relativePath": [
2355
2383
  "lib",
2356
2384
  "commands",
2357
- "autocomplete",
2358
- "options.js"
2385
+ "authorizations",
2386
+ "revoke.js"
2359
2387
  ]
2360
2388
  },
2361
- "autocomplete:script": {
2389
+ "authorizations:rotate": {
2362
2390
  "aliases": [],
2363
2391
  "args": {
2364
- "shell": {
2365
- "description": "shell type",
2366
- "name": "shell",
2367
- "required": false
2392
+ "id": {
2393
+ "description": "ID of the authorization",
2394
+ "name": "id",
2395
+ "required": true
2368
2396
  }
2369
2397
  },
2370
- "description": "display autocomplete setup script for shell",
2398
+ "description": "updates an OAuth authorization token",
2371
2399
  "flags": {},
2372
2400
  "hasDynamicHelp": false,
2373
- "hidden": true,
2374
2401
  "hiddenAliases": [],
2375
- "id": "autocomplete:script",
2402
+ "id": "authorizations:rotate",
2376
2403
  "pluginAlias": "heroku",
2377
2404
  "pluginName": "heroku",
2378
2405
  "pluginType": "core",
@@ -2381,42 +2408,45 @@
2381
2408
  "relativePath": [
2382
2409
  "lib",
2383
2410
  "commands",
2384
- "autocomplete",
2385
- "script.js"
2411
+ "authorizations",
2412
+ "rotate.js"
2386
2413
  ]
2387
2414
  },
2388
- "buildpacks:add": {
2415
+ "authorizations:update": {
2389
2416
  "aliases": [],
2390
2417
  "args": {
2391
- "buildpack": {
2392
- "description": "namespace/name of the buildpack",
2393
- "name": "buildpack",
2418
+ "id": {
2419
+ "description": "ID of the authorization",
2420
+ "name": "id",
2394
2421
  "required": true
2395
2422
  }
2396
2423
  },
2397
- "description": "add new app buildpack, inserting into list of buildpacks if necessary",
2424
+ "description": "updates an OAuth authorization",
2398
2425
  "flags": {
2399
- "app": {
2400
- "char": "a",
2401
- "description": "app to run command against",
2402
- "name": "app",
2403
- "required": true,
2426
+ "description": {
2427
+ "char": "d",
2428
+ "description": "set a custom authorization description",
2429
+ "name": "description",
2404
2430
  "hasDynamicHelp": false,
2405
2431
  "multiple": false,
2406
2432
  "type": "option"
2407
2433
  },
2408
- "remote": {
2409
- "char": "r",
2410
- "description": "git remote of app to use",
2411
- "name": "remote",
2434
+ "client-id": {
2435
+ "dependsOn": [
2436
+ "client-secret"
2437
+ ],
2438
+ "description": "identifier of OAuth client to set",
2439
+ "name": "client-id",
2412
2440
  "hasDynamicHelp": false,
2413
2441
  "multiple": false,
2414
2442
  "type": "option"
2415
2443
  },
2416
- "index": {
2417
- "char": "i",
2418
- "description": "the 1-based index of the URL in the list of URLs",
2419
- "name": "index",
2444
+ "client-secret": {
2445
+ "dependsOn": [
2446
+ "client-id"
2447
+ ],
2448
+ "description": "secret of OAuth client to set",
2449
+ "name": "client-secret",
2420
2450
  "hasDynamicHelp": false,
2421
2451
  "multiple": false,
2422
2452
  "type": "option"
@@ -2424,7 +2454,7 @@
2424
2454
  },
2425
2455
  "hasDynamicHelp": false,
2426
2456
  "hiddenAliases": [],
2427
- "id": "buildpacks:add",
2457
+ "id": "authorizations:update",
2428
2458
  "pluginAlias": "heroku",
2429
2459
  "pluginName": "heroku",
2430
2460
  "pluginType": "core",
@@ -2433,36 +2463,19 @@
2433
2463
  "relativePath": [
2434
2464
  "lib",
2435
2465
  "commands",
2436
- "buildpacks",
2437
- "add.js"
2466
+ "authorizations",
2467
+ "update.js"
2438
2468
  ]
2439
2469
  },
2440
- "buildpacks:clear": {
2470
+ "autocomplete:create": {
2441
2471
  "aliases": [],
2442
2472
  "args": {},
2443
- "description": "clear all buildpacks set on the app",
2444
- "flags": {
2445
- "app": {
2446
- "char": "a",
2447
- "description": "app to run command against",
2448
- "name": "app",
2449
- "required": true,
2450
- "hasDynamicHelp": false,
2451
- "multiple": false,
2452
- "type": "option"
2453
- },
2454
- "remote": {
2455
- "char": "r",
2456
- "description": "git remote of app to use",
2457
- "name": "remote",
2458
- "hasDynamicHelp": false,
2459
- "multiple": false,
2460
- "type": "option"
2461
- }
2462
- },
2473
+ "description": "create autocomplete setup scripts and completion functions",
2474
+ "flags": {},
2463
2475
  "hasDynamicHelp": false,
2476
+ "hidden": true,
2464
2477
  "hiddenAliases": [],
2465
- "id": "buildpacks:clear",
2478
+ "id": "autocomplete:create",
2466
2479
  "pluginAlias": "heroku",
2467
2480
  "pluginName": "heroku",
2468
2481
  "pluginType": "core",
@@ -2471,36 +2484,32 @@
2471
2484
  "relativePath": [
2472
2485
  "lib",
2473
2486
  "commands",
2474
- "buildpacks",
2475
- "clear.js"
2487
+ "autocomplete",
2488
+ "create.js"
2476
2489
  ]
2477
2490
  },
2478
- "buildpacks": {
2491
+ "autocomplete:doctor": {
2479
2492
  "aliases": [],
2480
- "args": {},
2481
- "description": "list the buildpacks on an app",
2493
+ "args": {
2494
+ "shell": {
2495
+ "description": "shell type",
2496
+ "name": "shell",
2497
+ "required": false
2498
+ }
2499
+ },
2500
+ "description": "autocomplete diagnostic",
2482
2501
  "flags": {
2483
- "app": {
2484
- "char": "a",
2485
- "description": "app to run command against",
2486
- "name": "app",
2487
- "required": true,
2488
- "hasDynamicHelp": false,
2489
- "multiple": false,
2490
- "type": "option"
2491
- },
2492
- "remote": {
2493
- "char": "r",
2494
- "description": "git remote of app to use",
2495
- "name": "remote",
2496
- "hasDynamicHelp": false,
2497
- "multiple": false,
2498
- "type": "option"
2502
+ "verbose": {
2503
+ "description": "list completable commands",
2504
+ "name": "verbose",
2505
+ "allowNo": false,
2506
+ "type": "boolean"
2499
2507
  }
2500
2508
  },
2501
2509
  "hasDynamicHelp": false,
2510
+ "hidden": true,
2502
2511
  "hiddenAliases": [],
2503
- "id": "buildpacks",
2512
+ "id": "autocomplete:doctor",
2504
2513
  "pluginAlias": "heroku",
2505
2514
  "pluginName": "heroku",
2506
2515
  "pluginType": "core",
@@ -2509,24 +2518,38 @@
2509
2518
  "relativePath": [
2510
2519
  "lib",
2511
2520
  "commands",
2512
- "buildpacks",
2513
- "index.js"
2521
+ "autocomplete",
2522
+ "doctor.js"
2514
2523
  ]
2515
2524
  },
2516
- "buildpacks:info": {
2525
+ "autocomplete": {
2517
2526
  "aliases": [],
2518
2527
  "args": {
2519
- "buildpack": {
2520
- "description": "namespace/name of the buildpack",
2521
- "name": "buildpack",
2522
- "required": true
2528
+ "shell": {
2529
+ "description": "shell type",
2530
+ "name": "shell",
2531
+ "required": false
2532
+ }
2533
+ },
2534
+ "description": "display autocomplete installation instructions",
2535
+ "examples": [
2536
+ "$ heroku autocomplete",
2537
+ "$ heroku autocomplete bash",
2538
+ "$ heroku autocomplete zsh",
2539
+ "$ heroku autocomplete --refresh-cache"
2540
+ ],
2541
+ "flags": {
2542
+ "refresh-cache": {
2543
+ "char": "r",
2544
+ "description": "refresh cache only (ignores displaying instructions)",
2545
+ "name": "refresh-cache",
2546
+ "allowNo": false,
2547
+ "type": "boolean"
2523
2548
  }
2524
2549
  },
2525
- "description": "fetch info about a buildpack",
2526
- "flags": {},
2527
2550
  "hasDynamicHelp": false,
2528
2551
  "hiddenAliases": [],
2529
- "id": "buildpacks:info",
2552
+ "id": "autocomplete",
2530
2553
  "pluginAlias": "heroku",
2531
2554
  "pluginName": "heroku",
2532
2555
  "pluginType": "core",
@@ -2535,49 +2558,34 @@
2535
2558
  "relativePath": [
2536
2559
  "lib",
2537
2560
  "commands",
2538
- "buildpacks",
2539
- "info.js"
2561
+ "autocomplete",
2562
+ "index.js"
2540
2563
  ]
2541
2564
  },
2542
- "buildpacks:remove": {
2565
+ "autocomplete:options": {
2543
2566
  "aliases": [],
2544
2567
  "args": {
2545
- "buildpack": {
2546
- "description": "namespace/name of the buildpack",
2547
- "name": "buildpack"
2568
+ "completion": {
2569
+ "name": "completion"
2548
2570
  }
2549
2571
  },
2550
- "description": "remove a buildpack set on the app",
2572
+ "description": "display arg or flag completion options (used internally by completion functions)",
2551
2573
  "flags": {
2552
2574
  "app": {
2553
2575
  "char": "a",
2554
2576
  "description": "app to run command against",
2577
+ "hidden": true,
2555
2578
  "name": "app",
2556
- "required": true,
2557
- "hasDynamicHelp": false,
2558
- "multiple": false,
2559
- "type": "option"
2560
- },
2561
- "remote": {
2562
- "char": "r",
2563
- "description": "git remote of app to use",
2564
- "name": "remote",
2565
- "hasDynamicHelp": false,
2566
- "multiple": false,
2567
- "type": "option"
2568
- },
2569
- "index": {
2570
- "char": "i",
2571
- "description": "the 1-based index of the URL to remove from the list of URLs",
2572
- "name": "index",
2579
+ "required": false,
2573
2580
  "hasDynamicHelp": false,
2574
2581
  "multiple": false,
2575
2582
  "type": "option"
2576
2583
  }
2577
2584
  },
2578
2585
  "hasDynamicHelp": false,
2586
+ "hidden": true,
2579
2587
  "hiddenAliases": [],
2580
- "id": "buildpacks:remove",
2588
+ "id": "autocomplete:options",
2581
2589
  "pluginAlias": "heroku",
2582
2590
  "pluginName": "heroku",
2583
2591
  "pluginType": "core",
@@ -2586,45 +2594,25 @@
2586
2594
  "relativePath": [
2587
2595
  "lib",
2588
2596
  "commands",
2589
- "buildpacks",
2590
- "remove.js"
2597
+ "autocomplete",
2598
+ "options.js"
2591
2599
  ]
2592
2600
  },
2593
- "buildpacks:search": {
2601
+ "autocomplete:script": {
2594
2602
  "aliases": [],
2595
2603
  "args": {
2596
- "term": {
2597
- "description": "search term that searches across name, namespace, and description",
2598
- "name": "term"
2599
- }
2600
- },
2601
- "description": "search for buildpacks",
2602
- "flags": {
2603
- "namespace": {
2604
- "description": "buildpack namespaces to filter on using a comma separated list",
2605
- "name": "namespace",
2606
- "hasDynamicHelp": false,
2607
- "multiple": false,
2608
- "type": "option"
2609
- },
2610
- "name": {
2611
- "description": "buildpack names to filter on using a comma separated list ",
2612
- "name": "name",
2613
- "hasDynamicHelp": false,
2614
- "multiple": false,
2615
- "type": "option"
2616
- },
2617
- "description": {
2618
- "description": "buildpack description to filter on",
2619
- "name": "description",
2620
- "hasDynamicHelp": false,
2621
- "multiple": false,
2622
- "type": "option"
2604
+ "shell": {
2605
+ "description": "shell type",
2606
+ "name": "shell",
2607
+ "required": false
2623
2608
  }
2624
2609
  },
2610
+ "description": "display autocomplete setup script for shell",
2611
+ "flags": {},
2625
2612
  "hasDynamicHelp": false,
2613
+ "hidden": true,
2626
2614
  "hiddenAliases": [],
2627
- "id": "buildpacks:search",
2615
+ "id": "autocomplete:script",
2628
2616
  "pluginAlias": "heroku",
2629
2617
  "pluginName": "heroku",
2630
2618
  "pluginType": "core",
@@ -2633,11 +2621,11 @@
2633
2621
  "relativePath": [
2634
2622
  "lib",
2635
2623
  "commands",
2636
- "buildpacks",
2637
- "search.js"
2624
+ "autocomplete",
2625
+ "script.js"
2638
2626
  ]
2639
2627
  },
2640
- "buildpacks:set": {
2628
+ "buildpacks:add": {
2641
2629
  "aliases": [],
2642
2630
  "args": {
2643
2631
  "buildpack": {
@@ -2646,6 +2634,7 @@
2646
2634
  "required": true
2647
2635
  }
2648
2636
  },
2637
+ "description": "add new app buildpack, inserting into list of buildpacks if necessary",
2649
2638
  "flags": {
2650
2639
  "app": {
2651
2640
  "char": "a",
@@ -2675,33 +2664,7 @@
2675
2664
  },
2676
2665
  "hasDynamicHelp": false,
2677
2666
  "hiddenAliases": [],
2678
- "id": "buildpacks:set",
2679
- "pluginAlias": "heroku",
2680
- "pluginName": "heroku",
2681
- "pluginType": "core",
2682
- "strict": true,
2683
- "isESM": false,
2684
- "relativePath": [
2685
- "lib",
2686
- "commands",
2687
- "buildpacks",
2688
- "set.js"
2689
- ]
2690
- },
2691
- "buildpacks:versions": {
2692
- "aliases": [],
2693
- "args": {
2694
- "buildpack": {
2695
- "description": "namespace/name of the buildpack",
2696
- "name": "buildpack",
2697
- "required": true
2698
- }
2699
- },
2700
- "description": "list versions of a buildpack",
2701
- "flags": {},
2702
- "hasDynamicHelp": false,
2703
- "hiddenAliases": [],
2704
- "id": "buildpacks:versions",
2667
+ "id": "buildpacks:add",
2705
2668
  "pluginAlias": "heroku",
2706
2669
  "pluginName": "heroku",
2707
2670
  "pluginType": "core",
@@ -2711,51 +2674,27 @@
2711
2674
  "lib",
2712
2675
  "commands",
2713
2676
  "buildpacks",
2714
- "versions.js"
2677
+ "add.js"
2715
2678
  ]
2716
2679
  },
2717
- "authorizations:create": {
2680
+ "buildpacks:clear": {
2718
2681
  "aliases": [],
2719
2682
  "args": {},
2720
- "description": "create a new OAuth authorization",
2721
- "examples": [
2722
- "$ heroku authorizations:create --description \"For use with Anvil\""
2723
- ],
2683
+ "description": "clear all buildpacks set on the app",
2724
2684
  "flags": {
2725
- "description": {
2726
- "char": "d",
2727
- "description": "set a custom authorization",
2728
- "name": "description",
2729
- "hasDynamicHelp": false,
2730
- "multiple": false,
2731
- "type": "option"
2732
- },
2733
- "short": {
2734
- "char": "S",
2735
- "description": "only output token",
2736
- "name": "short",
2737
- "allowNo": false,
2738
- "type": "boolean"
2739
- },
2740
- "json": {
2741
- "char": "j",
2742
- "description": "output in json format",
2743
- "name": "json",
2744
- "allowNo": false,
2745
- "type": "boolean"
2746
- },
2747
- "scope": {
2748
- "char": "s",
2749
- "description": "set custom OAuth scopes",
2750
- "name": "scope",
2685
+ "app": {
2686
+ "char": "a",
2687
+ "description": "app to run command against",
2688
+ "name": "app",
2689
+ "required": true,
2751
2690
  "hasDynamicHelp": false,
2752
2691
  "multiple": false,
2753
2692
  "type": "option"
2754
2693
  },
2755
- "expires-in": {
2756
- "char": "e",
2757
- "description": "set expiration in seconds (default no expiration)",
2758
- "name": "expires-in",
2694
+ "remote": {
2695
+ "char": "r",
2696
+ "description": "git remote of app to use",
2697
+ "name": "remote",
2759
2698
  "hasDynamicHelp": false,
2760
2699
  "multiple": false,
2761
2700
  "type": "option"
@@ -2763,7 +2702,7 @@
2763
2702
  },
2764
2703
  "hasDynamicHelp": false,
2765
2704
  "hiddenAliases": [],
2766
- "id": "authorizations:create",
2705
+ "id": "buildpacks:clear",
2767
2706
  "pluginAlias": "heroku",
2768
2707
  "pluginName": "heroku",
2769
2708
  "pluginType": "core",
@@ -2772,29 +2711,36 @@
2772
2711
  "relativePath": [
2773
2712
  "lib",
2774
2713
  "commands",
2775
- "authorizations",
2776
- "create.js"
2714
+ "buildpacks",
2715
+ "clear.js"
2777
2716
  ]
2778
2717
  },
2779
- "authorizations": {
2718
+ "buildpacks": {
2780
2719
  "aliases": [],
2781
2720
  "args": {},
2782
- "description": "list OAuth authorizations",
2783
- "examples": [
2784
- "$ heroku authorizations"
2785
- ],
2721
+ "description": "list the buildpacks on an app",
2786
2722
  "flags": {
2787
- "json": {
2788
- "char": "j",
2789
- "description": "output in json format",
2790
- "name": "json",
2791
- "allowNo": false,
2792
- "type": "boolean"
2723
+ "app": {
2724
+ "char": "a",
2725
+ "description": "app to run command against",
2726
+ "name": "app",
2727
+ "required": true,
2728
+ "hasDynamicHelp": false,
2729
+ "multiple": false,
2730
+ "type": "option"
2731
+ },
2732
+ "remote": {
2733
+ "char": "r",
2734
+ "description": "git remote of app to use",
2735
+ "name": "remote",
2736
+ "hasDynamicHelp": false,
2737
+ "multiple": false,
2738
+ "type": "option"
2793
2739
  }
2794
2740
  },
2795
2741
  "hasDynamicHelp": false,
2796
2742
  "hiddenAliases": [],
2797
- "id": "authorizations",
2743
+ "id": "buildpacks",
2798
2744
  "pluginAlias": "heroku",
2799
2745
  "pluginName": "heroku",
2800
2746
  "pluginType": "core",
@@ -2803,32 +2749,24 @@
2803
2749
  "relativePath": [
2804
2750
  "lib",
2805
2751
  "commands",
2806
- "authorizations",
2752
+ "buildpacks",
2807
2753
  "index.js"
2808
2754
  ]
2809
2755
  },
2810
- "authorizations:info": {
2756
+ "buildpacks:info": {
2811
2757
  "aliases": [],
2812
2758
  "args": {
2813
- "id": {
2814
- "description": "ID of the authorization",
2815
- "name": "id",
2759
+ "buildpack": {
2760
+ "description": "namespace/name of the buildpack",
2761
+ "name": "buildpack",
2816
2762
  "required": true
2817
2763
  }
2818
2764
  },
2819
- "description": "show an existing OAuth authorization",
2820
- "flags": {
2821
- "json": {
2822
- "char": "j",
2823
- "description": "output in json format",
2824
- "name": "json",
2825
- "allowNo": false,
2826
- "type": "boolean"
2827
- }
2828
- },
2765
+ "description": "fetch info about a buildpack",
2766
+ "flags": {},
2829
2767
  "hasDynamicHelp": false,
2830
2768
  "hiddenAliases": [],
2831
- "id": "authorizations:info",
2769
+ "id": "buildpacks:info",
2832
2770
  "pluginAlias": "heroku",
2833
2771
  "pluginName": "heroku",
2834
2772
  "pluginType": "core",
@@ -2837,30 +2775,49 @@
2837
2775
  "relativePath": [
2838
2776
  "lib",
2839
2777
  "commands",
2840
- "authorizations",
2778
+ "buildpacks",
2841
2779
  "info.js"
2842
2780
  ]
2843
2781
  },
2844
- "authorizations:revoke": {
2845
- "aliases": [
2846
- "authorizations:revoke",
2847
- "authorizations:destroy"
2848
- ],
2782
+ "buildpacks:remove": {
2783
+ "aliases": [],
2849
2784
  "args": {
2850
- "id": {
2851
- "description": "ID of the authorization",
2852
- "name": "id",
2853
- "required": true
2785
+ "buildpack": {
2786
+ "description": "namespace/name of the buildpack",
2787
+ "name": "buildpack"
2788
+ }
2789
+ },
2790
+ "description": "remove a buildpack set on the app",
2791
+ "flags": {
2792
+ "app": {
2793
+ "char": "a",
2794
+ "description": "app to run command against",
2795
+ "name": "app",
2796
+ "required": true,
2797
+ "hasDynamicHelp": false,
2798
+ "multiple": false,
2799
+ "type": "option"
2800
+ },
2801
+ "remote": {
2802
+ "char": "r",
2803
+ "description": "git remote of app to use",
2804
+ "name": "remote",
2805
+ "hasDynamicHelp": false,
2806
+ "multiple": false,
2807
+ "type": "option"
2808
+ },
2809
+ "index": {
2810
+ "char": "i",
2811
+ "description": "the 1-based index of the URL to remove from the list of URLs",
2812
+ "name": "index",
2813
+ "hasDynamicHelp": false,
2814
+ "multiple": false,
2815
+ "type": "option"
2854
2816
  }
2855
2817
  },
2856
- "description": "revoke OAuth authorization",
2857
- "examples": [
2858
- "$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
2859
- ],
2860
- "flags": {},
2861
2818
  "hasDynamicHelp": false,
2862
2819
  "hiddenAliases": [],
2863
- "id": "authorizations:revoke",
2820
+ "id": "buildpacks:remove",
2864
2821
  "pluginAlias": "heroku",
2865
2822
  "pluginName": "heroku",
2866
2823
  "pluginType": "core",
@@ -2869,24 +2826,45 @@
2869
2826
  "relativePath": [
2870
2827
  "lib",
2871
2828
  "commands",
2872
- "authorizations",
2873
- "revoke.js"
2829
+ "buildpacks",
2830
+ "remove.js"
2874
2831
  ]
2875
2832
  },
2876
- "authorizations:rotate": {
2833
+ "buildpacks:search": {
2877
2834
  "aliases": [],
2878
2835
  "args": {
2879
- "id": {
2880
- "description": "ID of the authorization",
2881
- "name": "id",
2882
- "required": true
2836
+ "term": {
2837
+ "description": "search term that searches across name, namespace, and description",
2838
+ "name": "term"
2839
+ }
2840
+ },
2841
+ "description": "search for buildpacks",
2842
+ "flags": {
2843
+ "namespace": {
2844
+ "description": "buildpack namespaces to filter on using a comma separated list",
2845
+ "name": "namespace",
2846
+ "hasDynamicHelp": false,
2847
+ "multiple": false,
2848
+ "type": "option"
2849
+ },
2850
+ "name": {
2851
+ "description": "buildpack names to filter on using a comma separated list ",
2852
+ "name": "name",
2853
+ "hasDynamicHelp": false,
2854
+ "multiple": false,
2855
+ "type": "option"
2856
+ },
2857
+ "description": {
2858
+ "description": "buildpack description to filter on",
2859
+ "name": "description",
2860
+ "hasDynamicHelp": false,
2861
+ "multiple": false,
2862
+ "type": "option"
2883
2863
  }
2884
2864
  },
2885
- "description": "updates an OAuth authorization token",
2886
- "flags": {},
2887
2865
  "hasDynamicHelp": false,
2888
2866
  "hiddenAliases": [],
2889
- "id": "authorizations:rotate",
2867
+ "id": "buildpacks:search",
2890
2868
  "pluginAlias": "heroku",
2891
2869
  "pluginName": "heroku",
2892
2870
  "pluginType": "core",
@@ -2895,45 +2873,41 @@
2895
2873
  "relativePath": [
2896
2874
  "lib",
2897
2875
  "commands",
2898
- "authorizations",
2899
- "rotate.js"
2876
+ "buildpacks",
2877
+ "search.js"
2900
2878
  ]
2901
2879
  },
2902
- "authorizations:update": {
2880
+ "buildpacks:set": {
2903
2881
  "aliases": [],
2904
2882
  "args": {
2905
- "id": {
2906
- "description": "ID of the authorization",
2907
- "name": "id",
2883
+ "buildpack": {
2884
+ "description": "namespace/name of the buildpack",
2885
+ "name": "buildpack",
2908
2886
  "required": true
2909
2887
  }
2910
2888
  },
2911
- "description": "updates an OAuth authorization",
2912
2889
  "flags": {
2913
- "description": {
2914
- "char": "d",
2915
- "description": "set a custom authorization description",
2916
- "name": "description",
2890
+ "app": {
2891
+ "char": "a",
2892
+ "description": "app to run command against",
2893
+ "name": "app",
2894
+ "required": true,
2917
2895
  "hasDynamicHelp": false,
2918
2896
  "multiple": false,
2919
2897
  "type": "option"
2920
2898
  },
2921
- "client-id": {
2922
- "dependsOn": [
2923
- "client-secret"
2924
- ],
2925
- "description": "identifier of OAuth client to set",
2926
- "name": "client-id",
2899
+ "remote": {
2900
+ "char": "r",
2901
+ "description": "git remote of app to use",
2902
+ "name": "remote",
2927
2903
  "hasDynamicHelp": false,
2928
2904
  "multiple": false,
2929
2905
  "type": "option"
2930
2906
  },
2931
- "client-secret": {
2932
- "dependsOn": [
2933
- "client-id"
2934
- ],
2935
- "description": "secret of OAuth client to set",
2936
- "name": "client-secret",
2907
+ "index": {
2908
+ "char": "i",
2909
+ "description": "the 1-based index of the URL in the list of URLs",
2910
+ "name": "index",
2937
2911
  "hasDynamicHelp": false,
2938
2912
  "multiple": false,
2939
2913
  "type": "option"
@@ -2941,7 +2915,7 @@
2941
2915
  },
2942
2916
  "hasDynamicHelp": false,
2943
2917
  "hiddenAliases": [],
2944
- "id": "authorizations:update",
2918
+ "id": "buildpacks:set",
2945
2919
  "pluginAlias": "heroku",
2946
2920
  "pluginName": "heroku",
2947
2921
  "pluginType": "core",
@@ -2950,8 +2924,34 @@
2950
2924
  "relativePath": [
2951
2925
  "lib",
2952
2926
  "commands",
2953
- "authorizations",
2954
- "update.js"
2927
+ "buildpacks",
2928
+ "set.js"
2929
+ ]
2930
+ },
2931
+ "buildpacks:versions": {
2932
+ "aliases": [],
2933
+ "args": {
2934
+ "buildpack": {
2935
+ "description": "namespace/name of the buildpack",
2936
+ "name": "buildpack",
2937
+ "required": true
2938
+ }
2939
+ },
2940
+ "description": "list versions of a buildpack",
2941
+ "flags": {},
2942
+ "hasDynamicHelp": false,
2943
+ "hiddenAliases": [],
2944
+ "id": "buildpacks:versions",
2945
+ "pluginAlias": "heroku",
2946
+ "pluginName": "heroku",
2947
+ "pluginType": "core",
2948
+ "strict": true,
2949
+ "isESM": false,
2950
+ "relativePath": [
2951
+ "lib",
2952
+ "commands",
2953
+ "buildpacks",
2954
+ "versions.js"
2955
2955
  ]
2956
2956
  },
2957
2957
  "certs:add": {
@@ -9635,6 +9635,34 @@
9635
9635
  "index.js"
9636
9636
  ]
9637
9637
  },
9638
+ "teams": {
9639
+ "aliases": [],
9640
+ "args": {},
9641
+ "description": "list the teams that you are a member of\n\nUse heroku members:* to manage team members.",
9642
+ "flags": {
9643
+ "json": {
9644
+ "description": "output in json format",
9645
+ "name": "json",
9646
+ "allowNo": false,
9647
+ "type": "boolean"
9648
+ }
9649
+ },
9650
+ "hasDynamicHelp": false,
9651
+ "hiddenAliases": [],
9652
+ "id": "teams",
9653
+ "pluginAlias": "heroku",
9654
+ "pluginName": "heroku",
9655
+ "pluginType": "core",
9656
+ "strict": true,
9657
+ "topic": "teams",
9658
+ "isESM": false,
9659
+ "relativePath": [
9660
+ "lib",
9661
+ "commands",
9662
+ "teams",
9663
+ "index.js"
9664
+ ]
9665
+ },
9638
9666
  "spaces:create": {
9639
9667
  "aliases": [],
9640
9668
  "args": {
@@ -10143,34 +10171,6 @@
10143
10171
  "wait.js"
10144
10172
  ]
10145
10173
  },
10146
- "teams": {
10147
- "aliases": [],
10148
- "args": {},
10149
- "description": "list the teams that you are a member of\n\nUse heroku members:* to manage team members.",
10150
- "flags": {
10151
- "json": {
10152
- "description": "output in json format",
10153
- "name": "json",
10154
- "allowNo": false,
10155
- "type": "boolean"
10156
- }
10157
- },
10158
- "hasDynamicHelp": false,
10159
- "hiddenAliases": [],
10160
- "id": "teams",
10161
- "pluginAlias": "heroku",
10162
- "pluginName": "heroku",
10163
- "pluginType": "core",
10164
- "strict": true,
10165
- "topic": "teams",
10166
- "isESM": false,
10167
- "relativePath": [
10168
- "lib",
10169
- "commands",
10170
- "teams",
10171
- "index.js"
10172
- ]
10173
- },
10174
10174
  "telemetry:add": {
10175
10175
  "aliases": [],
10176
10176
  "args": {
@@ -15007,5 +15007,5 @@
15007
15007
  ]
15008
15008
  }
15009
15009
  },
15010
- "version": "10.13.1-beta.0"
15010
+ "version": "10.13.2-beta.0"
15011
15011
  }
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.13.1-beta.0",
4
+ "version": "10.13.2-beta.0",
5
5
  "author": "Heroku",
6
6
  "bin": "./bin/run",
7
7
  "bugs": "https://github.com/heroku/cli/issues",
@@ -400,5 +400,5 @@
400
400
  "version": "oclif readme --multi && git add README.md ../../docs"
401
401
  },
402
402
  "types": "lib/index.d.ts",
403
- "gitHead": "305e7b2c85f6c07db98f516a059a5b924e33635f"
403
+ "gitHead": "9b0be97ff1e81738dd9b1d68c23634d85bd8a764"
404
404
  }