vercel 54.18.7 → 54.20.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.
- package/dist/chunks/add-IB7HE5S5.js +134 -0
- package/dist/chunks/{add-P6CBTAGK.js → add-TF5VZLCY.js} +3 -3
- package/dist/chunks/{chunk-AXFSALI3.js → chunk-4BEUS7AL.js} +293 -71
- package/dist/chunks/chunk-4QVAYRYH.js +71 -0
- package/dist/chunks/{chunk-RKLBPBRM.js → chunk-7PAKWBN4.js} +2 -2
- package/dist/chunks/chunk-AUECDTMX.js +128 -0
- package/dist/chunks/{chunk-E2ENQE2W.js → chunk-BUZRVER7.js} +1 -0
- package/dist/chunks/{chunk-L6QLQSJE.js → chunk-GDAO4PGA.js} +1 -1
- package/dist/chunks/chunk-I3HGCZ4E.js +72 -0
- package/dist/chunks/{chunk-DXL7EPOQ.js → chunk-JDO6BSKN.js} +2 -2
- package/dist/chunks/chunk-JHQOIGTY.js +363 -0
- package/dist/chunks/chunk-KXGWAWRV.js +148 -0
- package/dist/chunks/{chunk-XQQXV6ZZ.js → chunk-LFODAB54.js} +1 -0
- package/dist/chunks/chunk-RY3AVR6E.js +111 -0
- package/dist/chunks/{chunk-JREEV2EL.js → chunk-T63I6OUR.js} +1 -1
- package/dist/chunks/chunk-VGIMO3ZK.js +17 -0
- package/dist/chunks/{chunk-VTE7W5ZP.js → chunk-ZZIAWRCX.js} +0 -8
- package/dist/chunks/image-2DL7JEWW.js +73 -0
- package/dist/chunks/inspect-6IHZTLFA.js +167 -0
- package/dist/chunks/inspect-EGXHWKY3.js +163 -0
- package/dist/chunks/inspect-PL3PE5IJ.js +136 -0
- package/dist/chunks/{inspect-KYVZQL56.js → inspect-Z3QJOMNP.js} +2 -2
- package/dist/chunks/{list-MUFZTUZA.js → list-BB4T4KT5.js} +1 -1
- package/dist/chunks/{list-BYTNF7D7.js → list-KNRPDNQF.js} +2 -2
- package/dist/chunks/ls-EP4Q6VF4.js +214 -0
- package/dist/chunks/{ls-PDILBRUL.js → ls-FTQGK4R6.js} +3 -3
- package/dist/chunks/ls-IQKMDRUB.js +165 -0
- package/dist/chunks/ls-MUS72LBS.js +201 -0
- package/dist/chunks/{query-75PT24SH.js → query-C6FEOG5R.js} +1 -1
- package/dist/chunks/rm-EZFCCZFT.js +137 -0
- package/dist/chunks/{rm-BJSTNUIJ.js → rm-GWW57H2V.js} +3 -3
- package/dist/chunks/rm-NMSG2WG6.js +137 -0
- package/dist/chunks/{rule-inspect-WTU3MGMH.js → rule-inspect-XPZJO3Y4.js} +3 -3
- package/dist/chunks/{rules-6PXGKHFH.js → rules-C6SB24UO.js} +6 -6
- package/dist/chunks/tags-5PFVWGLK.js +67 -0
- package/dist/chunks/{update-TTPNV44H.js → update-BCLMLJM7.js} +3 -3
- package/dist/commands/build/index.js +5 -1
- package/dist/commands/deploy/index.js +5 -2
- package/dist/commands/env/index.js +8 -3
- package/dist/commands/link/index.js +4 -1
- package/dist/commands-bulk.js +3304 -1952
- package/dist/help.js +1 -1
- package/dist/index.js +28 -5
- package/dist/version.mjs +1 -1
- package/package.json +16 -16
|
@@ -4,6 +4,9 @@ import { dirname as __dirname_ } from 'node:path';
|
|
|
4
4
|
const require = __createRequire(import.meta.url);
|
|
5
5
|
const __filename = __fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = __dirname_(__filename);
|
|
7
|
+
import {
|
|
8
|
+
vcrCommand
|
|
9
|
+
} from "./chunk-KXGWAWRV.js";
|
|
7
10
|
import {
|
|
8
11
|
metricsCommand
|
|
9
12
|
} from "./chunk-MAJWH2PD.js";
|
|
@@ -478,6 +481,218 @@ var agentCommand = {
|
|
|
478
481
|
]
|
|
479
482
|
};
|
|
480
483
|
|
|
484
|
+
// src/commands/agent-runs/command.ts
|
|
485
|
+
var projectOption2 = {
|
|
486
|
+
name: "project",
|
|
487
|
+
shorthand: null,
|
|
488
|
+
type: String,
|
|
489
|
+
argument: "NAME|ID",
|
|
490
|
+
deprecated: false,
|
|
491
|
+
description: "Project name or id to query (overrides the linked project)"
|
|
492
|
+
};
|
|
493
|
+
var environmentOption = {
|
|
494
|
+
name: "environment",
|
|
495
|
+
shorthand: null,
|
|
496
|
+
type: String,
|
|
497
|
+
argument: "production|preview",
|
|
498
|
+
deprecated: false,
|
|
499
|
+
description: "Environment to query Agent Runs from (default: production)"
|
|
500
|
+
};
|
|
501
|
+
var sinceOption = {
|
|
502
|
+
name: "since",
|
|
503
|
+
shorthand: null,
|
|
504
|
+
type: String,
|
|
505
|
+
argument: "TIME",
|
|
506
|
+
deprecated: false,
|
|
507
|
+
description: "Only include Agent Runs after this time (ISO 8601 or relative: 1h, 30m, 7d)"
|
|
508
|
+
};
|
|
509
|
+
var untilOption = {
|
|
510
|
+
name: "until",
|
|
511
|
+
shorthand: null,
|
|
512
|
+
type: String,
|
|
513
|
+
argument: "TIME",
|
|
514
|
+
deprecated: false,
|
|
515
|
+
description: "Only include Agent Runs before this time (requires --since; default: now)"
|
|
516
|
+
};
|
|
517
|
+
var jsonOption2 = {
|
|
518
|
+
name: "json",
|
|
519
|
+
shorthand: null,
|
|
520
|
+
type: Boolean,
|
|
521
|
+
deprecated: false,
|
|
522
|
+
description: "Print the raw API response as JSON to stdout"
|
|
523
|
+
};
|
|
524
|
+
var listSubcommand = {
|
|
525
|
+
name: "list",
|
|
526
|
+
aliases: ["ls"],
|
|
527
|
+
description: "List Agent Runs for a project",
|
|
528
|
+
arguments: [],
|
|
529
|
+
options: [
|
|
530
|
+
projectOption2,
|
|
531
|
+
environmentOption,
|
|
532
|
+
sinceOption,
|
|
533
|
+
untilOption,
|
|
534
|
+
{
|
|
535
|
+
name: "search",
|
|
536
|
+
shorthand: null,
|
|
537
|
+
type: String,
|
|
538
|
+
argument: "TEXT",
|
|
539
|
+
deprecated: false,
|
|
540
|
+
description: "Search Agent Runs by title"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
name: "page",
|
|
544
|
+
shorthand: null,
|
|
545
|
+
type: Number,
|
|
546
|
+
argument: "N",
|
|
547
|
+
deprecated: false,
|
|
548
|
+
description: "1-based page number (default: 1)"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
name: "limit",
|
|
552
|
+
shorthand: "n",
|
|
553
|
+
type: Number,
|
|
554
|
+
argument: "N",
|
|
555
|
+
deprecated: false,
|
|
556
|
+
description: "Number of Agent Runs per page (max: 100)"
|
|
557
|
+
},
|
|
558
|
+
jsonOption2
|
|
559
|
+
],
|
|
560
|
+
examples: [
|
|
561
|
+
{
|
|
562
|
+
name: "List recent production Agent Runs for the linked project",
|
|
563
|
+
value: `${packageName} agent-runs list`
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
name: "List preview Agent Runs from the last day",
|
|
567
|
+
value: `${packageName} agent-runs list --environment preview --since 1d`
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
name: "Search Agent Runs by title",
|
|
571
|
+
value: `${packageName} agent-runs list --search "checkout"`
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
name: "List Agent Runs for a specific team and project",
|
|
575
|
+
value: `${packageName} agent-runs list --scope my-team --project my-app`
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
name: "Print the raw list as JSON",
|
|
579
|
+
value: `${packageName} agent-runs list --json`
|
|
580
|
+
}
|
|
581
|
+
]
|
|
582
|
+
};
|
|
583
|
+
var inspectSubcommand = {
|
|
584
|
+
name: "inspect",
|
|
585
|
+
aliases: [],
|
|
586
|
+
description: "Show metadata, lifecycle events, usage, and subagent data for an Agent Run",
|
|
587
|
+
arguments: [
|
|
588
|
+
{
|
|
589
|
+
name: "runId",
|
|
590
|
+
required: true
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
options: [
|
|
594
|
+
projectOption2,
|
|
595
|
+
environmentOption,
|
|
596
|
+
sinceOption,
|
|
597
|
+
untilOption,
|
|
598
|
+
jsonOption2
|
|
599
|
+
],
|
|
600
|
+
examples: [
|
|
601
|
+
{
|
|
602
|
+
name: "Inspect an Agent Run",
|
|
603
|
+
value: `${packageName} agent-runs inspect run_1234567890`
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
name: "Print the raw Agent Run as JSON",
|
|
607
|
+
value: `${packageName} agent-runs inspect run_1234567890 --json`
|
|
608
|
+
}
|
|
609
|
+
]
|
|
610
|
+
};
|
|
611
|
+
var traceSubcommand = {
|
|
612
|
+
name: "trace",
|
|
613
|
+
aliases: [],
|
|
614
|
+
description: "Show the trace for an Agent Run (turns, messages, reasoning, and tool calls)",
|
|
615
|
+
arguments: [
|
|
616
|
+
{
|
|
617
|
+
name: "runId",
|
|
618
|
+
required: true
|
|
619
|
+
}
|
|
620
|
+
],
|
|
621
|
+
options: [
|
|
622
|
+
projectOption2,
|
|
623
|
+
environmentOption,
|
|
624
|
+
sinceOption,
|
|
625
|
+
untilOption,
|
|
626
|
+
{
|
|
627
|
+
name: "max-field-length",
|
|
628
|
+
shorthand: null,
|
|
629
|
+
type: Number,
|
|
630
|
+
argument: "N",
|
|
631
|
+
deprecated: false,
|
|
632
|
+
description: "Maximum length for individual string fields in the trace (default: 8000; 0 disables truncation)"
|
|
633
|
+
},
|
|
634
|
+
jsonOption2
|
|
635
|
+
],
|
|
636
|
+
examples: [
|
|
637
|
+
{
|
|
638
|
+
name: "Show the trace for an Agent Run",
|
|
639
|
+
value: `${packageName} agent-runs trace run_1234567890`
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
name: "Print the raw trace as JSON without truncation",
|
|
643
|
+
value: `${packageName} agent-runs trace run_1234567890 --json --max-field-length 0`
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
};
|
|
647
|
+
var projectsSubcommand = {
|
|
648
|
+
name: "projects",
|
|
649
|
+
aliases: [],
|
|
650
|
+
description: "List projects in the current team with Agent Runs activity",
|
|
651
|
+
arguments: [],
|
|
652
|
+
options: [environmentOption, sinceOption, untilOption, jsonOption2],
|
|
653
|
+
examples: [
|
|
654
|
+
{
|
|
655
|
+
name: "List projects with Agent Runs activity",
|
|
656
|
+
value: `${packageName} agent-runs projects`
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
name: "List projects with Agent Runs activity in another team",
|
|
660
|
+
value: `${packageName} agent-runs projects --scope my-team`
|
|
661
|
+
}
|
|
662
|
+
]
|
|
663
|
+
};
|
|
664
|
+
var agentRunsCommand = {
|
|
665
|
+
name: "agent-runs",
|
|
666
|
+
aliases: [],
|
|
667
|
+
description: "Inspect Agent Runs observability data",
|
|
668
|
+
arguments: [],
|
|
669
|
+
subcommands: [
|
|
670
|
+
listSubcommand,
|
|
671
|
+
inspectSubcommand,
|
|
672
|
+
traceSubcommand,
|
|
673
|
+
projectsSubcommand
|
|
674
|
+
],
|
|
675
|
+
options: [],
|
|
676
|
+
examples: [
|
|
677
|
+
{
|
|
678
|
+
name: "List recent production Agent Runs for the linked project",
|
|
679
|
+
value: `${packageName} agent-runs list`
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
name: "List projects with Agent Runs activity",
|
|
683
|
+
value: `${packageName} agent-runs projects`
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
name: "Inspect an Agent Run",
|
|
687
|
+
value: `${packageName} agent-runs inspect run_1234567890`
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
name: "Show the trace for an Agent Run",
|
|
691
|
+
value: `${packageName} agent-runs trace run_1234567890`
|
|
692
|
+
}
|
|
693
|
+
]
|
|
694
|
+
};
|
|
695
|
+
|
|
481
696
|
// src/commands/ai-gateway/command.ts
|
|
482
697
|
var createSubcommand = {
|
|
483
698
|
name: "create",
|
|
@@ -727,7 +942,7 @@ var setSubcommand = {
|
|
|
727
942
|
options: [],
|
|
728
943
|
examples: []
|
|
729
944
|
};
|
|
730
|
-
var
|
|
945
|
+
var listSubcommand2 = {
|
|
731
946
|
name: "list",
|
|
732
947
|
aliases: ["ls"],
|
|
733
948
|
description: "Show all aliases",
|
|
@@ -758,7 +973,7 @@ var aliasCommand = {
|
|
|
758
973
|
aliases: ["aliases", "ln"],
|
|
759
974
|
description: "Interact with deployment aliases",
|
|
760
975
|
arguments: [],
|
|
761
|
-
subcommands: [
|
|
976
|
+
subcommands: [listSubcommand2, removeSubcommand, setSubcommand],
|
|
762
977
|
options: [],
|
|
763
978
|
examples: [
|
|
764
979
|
{
|
|
@@ -785,7 +1000,7 @@ var specUrlOption = {
|
|
|
785
1000
|
deprecated: false,
|
|
786
1001
|
description: "Fetch endpoints from a custom OpenAPI spec URL instead of the public Vercel spec"
|
|
787
1002
|
};
|
|
788
|
-
var
|
|
1003
|
+
var listSubcommand3 = {
|
|
789
1004
|
name: "list",
|
|
790
1005
|
aliases: ["ls"],
|
|
791
1006
|
description: "List all available API endpoints",
|
|
@@ -826,7 +1041,7 @@ var apiCommand = {
|
|
|
826
1041
|
required: false
|
|
827
1042
|
}
|
|
828
1043
|
],
|
|
829
|
-
subcommands: [
|
|
1044
|
+
subcommands: [listSubcommand3],
|
|
830
1045
|
options: [
|
|
831
1046
|
{
|
|
832
1047
|
name: "method",
|
|
@@ -1397,7 +1612,7 @@ var issueSubcommand = {
|
|
|
1397
1612
|
}
|
|
1398
1613
|
]
|
|
1399
1614
|
};
|
|
1400
|
-
var
|
|
1615
|
+
var listSubcommand4 = {
|
|
1401
1616
|
name: "list",
|
|
1402
1617
|
aliases: ["ls"],
|
|
1403
1618
|
description: "Show all available certificates",
|
|
@@ -1458,14 +1673,14 @@ var certsCommand = {
|
|
|
1458
1673
|
subcommands: [
|
|
1459
1674
|
addSubcommand2,
|
|
1460
1675
|
issueSubcommand,
|
|
1461
|
-
|
|
1676
|
+
listSubcommand4,
|
|
1462
1677
|
removeSubcommand2
|
|
1463
1678
|
],
|
|
1464
1679
|
options: [],
|
|
1465
1680
|
examples: [
|
|
1466
1681
|
...issueSubcommand.examples,
|
|
1467
1682
|
...removeSubcommand2.examples,
|
|
1468
|
-
...
|
|
1683
|
+
...listSubcommand4.examples
|
|
1469
1684
|
]
|
|
1470
1685
|
};
|
|
1471
1686
|
|
|
@@ -1625,7 +1840,7 @@ var updateSubcommand = {
|
|
|
1625
1840
|
}
|
|
1626
1841
|
]
|
|
1627
1842
|
};
|
|
1628
|
-
var
|
|
1843
|
+
var listSubcommand5 = {
|
|
1629
1844
|
name: "list",
|
|
1630
1845
|
aliases: ["ls"],
|
|
1631
1846
|
description: "List connectors linked to the current project (falls back to every connector in the team when no project is linked or when --all-projects is set)",
|
|
@@ -2044,7 +2259,7 @@ var connexCommand = {
|
|
|
2044
2259
|
subcommands: [
|
|
2045
2260
|
createSubcommand2,
|
|
2046
2261
|
updateSubcommand,
|
|
2047
|
-
|
|
2262
|
+
listSubcommand5,
|
|
2048
2263
|
tokenSubcommand,
|
|
2049
2264
|
attachSubcommand,
|
|
2050
2265
|
detachSubcommand,
|
|
@@ -2130,7 +2345,7 @@ var addSubcommand3 = {
|
|
|
2130
2345
|
}
|
|
2131
2346
|
]
|
|
2132
2347
|
};
|
|
2133
|
-
var
|
|
2348
|
+
var listSubcommand6 = {
|
|
2134
2349
|
name: "list",
|
|
2135
2350
|
aliases: ["ls"],
|
|
2136
2351
|
description: "List all cron jobs for a project",
|
|
@@ -2171,7 +2386,7 @@ var cronsCommand = {
|
|
|
2171
2386
|
aliases: ["cron"],
|
|
2172
2387
|
description: "Manage cron jobs for a project",
|
|
2173
2388
|
arguments: [],
|
|
2174
|
-
subcommands: [addSubcommand3,
|
|
2389
|
+
subcommands: [addSubcommand3, listSubcommand6, runSubcommand],
|
|
2175
2390
|
options: [],
|
|
2176
2391
|
examples: []
|
|
2177
2392
|
};
|
|
@@ -2242,16 +2457,16 @@ var curlCommand = {
|
|
|
2242
2457
|
};
|
|
2243
2458
|
|
|
2244
2459
|
// src/commands/deploy-hooks/command.ts
|
|
2245
|
-
var
|
|
2460
|
+
var projectOption3 = {
|
|
2246
2461
|
...projectOption,
|
|
2247
2462
|
shorthand: "p"
|
|
2248
2463
|
};
|
|
2249
|
-
var
|
|
2464
|
+
var listSubcommand7 = {
|
|
2250
2465
|
name: "list",
|
|
2251
2466
|
aliases: ["ls"],
|
|
2252
2467
|
description: "List deploy hooks for a project",
|
|
2253
2468
|
arguments: [],
|
|
2254
|
-
options: [formatOption,
|
|
2469
|
+
options: [formatOption, projectOption3],
|
|
2255
2470
|
examples: [
|
|
2256
2471
|
{
|
|
2257
2472
|
name: "List deploy hooks as JSON",
|
|
@@ -2278,7 +2493,7 @@ var createSubcommand3 = {
|
|
|
2278
2493
|
deprecated: false,
|
|
2279
2494
|
description: "Git branch ref to deploy when the hook URL is triggered"
|
|
2280
2495
|
},
|
|
2281
|
-
|
|
2496
|
+
projectOption3
|
|
2282
2497
|
],
|
|
2283
2498
|
examples: [
|
|
2284
2499
|
{
|
|
@@ -2298,7 +2513,7 @@ var removeSubcommand4 = {
|
|
|
2298
2513
|
}
|
|
2299
2514
|
],
|
|
2300
2515
|
options: [
|
|
2301
|
-
|
|
2516
|
+
projectOption3,
|
|
2302
2517
|
{
|
|
2303
2518
|
...yesOption,
|
|
2304
2519
|
description: "Skip the confirmation prompt when removing a deploy hook"
|
|
@@ -2311,7 +2526,7 @@ var deployHooksCommand = {
|
|
|
2311
2526
|
aliases: ["deploy-hook"],
|
|
2312
2527
|
description: "Manage deploy hooks for Git-triggered builds",
|
|
2313
2528
|
arguments: [],
|
|
2314
|
-
subcommands: [
|
|
2529
|
+
subcommands: [listSubcommand7, createSubcommand3, removeSubcommand4],
|
|
2315
2530
|
options: [],
|
|
2316
2531
|
examples: []
|
|
2317
2532
|
};
|
|
@@ -2334,7 +2549,7 @@ var importSubcommand = {
|
|
|
2334
2549
|
options: [],
|
|
2335
2550
|
examples: []
|
|
2336
2551
|
};
|
|
2337
|
-
var
|
|
2552
|
+
var listSubcommand8 = {
|
|
2338
2553
|
name: "list",
|
|
2339
2554
|
aliases: ["ls"],
|
|
2340
2555
|
description: "List DNS entries. Pass a domain to list its records, or omit the argument to list records across every domain on the scope",
|
|
@@ -2391,7 +2606,7 @@ var dnsCommand = {
|
|
|
2391
2606
|
subcommands: [
|
|
2392
2607
|
addSubcommand4,
|
|
2393
2608
|
importSubcommand,
|
|
2394
|
-
|
|
2609
|
+
listSubcommand8,
|
|
2395
2610
|
removeSubcommand5
|
|
2396
2611
|
],
|
|
2397
2612
|
options: [],
|
|
@@ -2442,7 +2657,7 @@ var dnsCommand = {
|
|
|
2442
2657
|
};
|
|
2443
2658
|
|
|
2444
2659
|
// src/commands/domains/command.ts
|
|
2445
|
-
var
|
|
2660
|
+
var listSubcommand9 = {
|
|
2446
2661
|
name: "list",
|
|
2447
2662
|
aliases: ["ls"],
|
|
2448
2663
|
description: "Show all domains in a list",
|
|
@@ -2456,7 +2671,7 @@ var listSubcommand8 = {
|
|
|
2456
2671
|
}
|
|
2457
2672
|
]
|
|
2458
2673
|
};
|
|
2459
|
-
var
|
|
2674
|
+
var inspectSubcommand2 = {
|
|
2460
2675
|
name: "inspect",
|
|
2461
2676
|
aliases: [],
|
|
2462
2677
|
description: "Displays information related to a domain",
|
|
@@ -2750,8 +2965,8 @@ var domainsCommand = {
|
|
|
2750
2965
|
description: "Manage domains",
|
|
2751
2966
|
arguments: [],
|
|
2752
2967
|
subcommands: [
|
|
2753
|
-
|
|
2754
|
-
|
|
2968
|
+
listSubcommand9,
|
|
2969
|
+
inspectSubcommand2,
|
|
2755
2970
|
addSubcommand5,
|
|
2756
2971
|
buySubcommand,
|
|
2757
2972
|
checkSubcommand,
|
|
@@ -2767,7 +2982,7 @@ var domainsCommand = {
|
|
|
2767
2982
|
};
|
|
2768
2983
|
|
|
2769
2984
|
// src/commands/edge-config/command.ts
|
|
2770
|
-
var
|
|
2985
|
+
var listSubcommand10 = {
|
|
2771
2986
|
name: "list",
|
|
2772
2987
|
aliases: ["ls"],
|
|
2773
2988
|
description: "List Edge Config stores for the current team",
|
|
@@ -2991,7 +3206,7 @@ var edgeConfigCommand = {
|
|
|
2991
3206
|
description: "Manage Edge Config stores (dashboard API parity)",
|
|
2992
3207
|
arguments: [],
|
|
2993
3208
|
subcommands: [
|
|
2994
|
-
|
|
3209
|
+
listSubcommand10,
|
|
2995
3210
|
addSubcommand6,
|
|
2996
3211
|
getSubcommand,
|
|
2997
3212
|
updateSubcommand2,
|
|
@@ -3958,7 +4173,7 @@ function formatFlagConditionComparator(comparator, options) {
|
|
|
3958
4173
|
|
|
3959
4174
|
// src/commands/flags/command.ts
|
|
3960
4175
|
var segmentRuleOperatorDescription = `Valid operators: ${formatFlagConditionComparatorList()}`;
|
|
3961
|
-
var
|
|
4176
|
+
var listSubcommand11 = {
|
|
3962
4177
|
name: "list",
|
|
3963
4178
|
aliases: ["ls"],
|
|
3964
4179
|
description: "List all feature flags for the current project",
|
|
@@ -4048,7 +4263,7 @@ var listSubcommand10 = {
|
|
|
4048
4263
|
}
|
|
4049
4264
|
]
|
|
4050
4265
|
};
|
|
4051
|
-
var
|
|
4266
|
+
var inspectSubcommand3 = {
|
|
4052
4267
|
name: "inspect",
|
|
4053
4268
|
aliases: [],
|
|
4054
4269
|
description: "Display information about a feature flag",
|
|
@@ -4973,8 +5188,8 @@ var flagsCommand = {
|
|
|
4973
5188
|
description: "Manage feature flags for a Vercel project",
|
|
4974
5189
|
arguments: [],
|
|
4975
5190
|
subcommands: [
|
|
4976
|
-
|
|
4977
|
-
|
|
5191
|
+
listSubcommand11,
|
|
5192
|
+
inspectSubcommand3,
|
|
4978
5193
|
createSubcommand4,
|
|
4979
5194
|
openSubcommand2,
|
|
4980
5195
|
updateSubcommand3,
|
|
@@ -5512,7 +5727,7 @@ var integrationResourceCommand = {
|
|
|
5512
5727
|
// src/commands/integration/command.ts
|
|
5513
5728
|
var addSubcommand7 = {
|
|
5514
5729
|
name: "add",
|
|
5515
|
-
aliases: [],
|
|
5730
|
+
aliases: ["install"],
|
|
5516
5731
|
description: "Installs a marketplace integration",
|
|
5517
5732
|
arguments: [
|
|
5518
5733
|
{
|
|
@@ -5772,7 +5987,7 @@ var installationsSubcommand = {
|
|
|
5772
5987
|
}
|
|
5773
5988
|
]
|
|
5774
5989
|
};
|
|
5775
|
-
var
|
|
5990
|
+
var listSubcommand12 = {
|
|
5776
5991
|
name: "list",
|
|
5777
5992
|
aliases: ["ls"],
|
|
5778
5993
|
description: "List resources from marketplace integrations for the current project",
|
|
@@ -6126,7 +6341,7 @@ var integrationCommand = {
|
|
|
6126
6341
|
discoverSubcommand,
|
|
6127
6342
|
guideSubcommand,
|
|
6128
6343
|
installationsSubcommand,
|
|
6129
|
-
|
|
6344
|
+
listSubcommand12,
|
|
6130
6345
|
openSubcommand3,
|
|
6131
6346
|
resourceSubcommand,
|
|
6132
6347
|
updateSubcommand4,
|
|
@@ -6964,7 +7179,7 @@ var checksSubcommand = {
|
|
|
6964
7179
|
}
|
|
6965
7180
|
]
|
|
6966
7181
|
};
|
|
6967
|
-
var
|
|
7182
|
+
var inspectSubcommand4 = {
|
|
6968
7183
|
name: "inspect",
|
|
6969
7184
|
aliases: [],
|
|
6970
7185
|
description: "Displays information related to a project",
|
|
@@ -6986,7 +7201,7 @@ var inspectSubcommand3 = {
|
|
|
6986
7201
|
}
|
|
6987
7202
|
]
|
|
6988
7203
|
};
|
|
6989
|
-
var
|
|
7204
|
+
var listSubcommand13 = {
|
|
6990
7205
|
name: "list",
|
|
6991
7206
|
aliases: ["ls"],
|
|
6992
7207
|
description: "Show all projects in the selected scope",
|
|
@@ -7380,8 +7595,8 @@ var projectCommand = {
|
|
|
7380
7595
|
addSubcommand8,
|
|
7381
7596
|
accessSummarySubcommand,
|
|
7382
7597
|
checksSubcommand,
|
|
7383
|
-
|
|
7384
|
-
|
|
7598
|
+
inspectSubcommand4,
|
|
7599
|
+
listSubcommand13,
|
|
7385
7600
|
membersSubcommand,
|
|
7386
7601
|
accessGroupsSubcommand,
|
|
7387
7602
|
protectionSubcommand,
|
|
@@ -7503,7 +7718,7 @@ var redeployCommand = {
|
|
|
7503
7718
|
};
|
|
7504
7719
|
|
|
7505
7720
|
// src/commands/redirects/command.ts
|
|
7506
|
-
var
|
|
7721
|
+
var listSubcommand14 = {
|
|
7507
7722
|
name: "list",
|
|
7508
7723
|
aliases: ["ls"],
|
|
7509
7724
|
description: "List all redirects for the current project. These redirects apply to all deployments and environments. There may also be redirects defined in a deployment that are not listed here.",
|
|
@@ -7767,7 +7982,7 @@ var redirectsCommand = {
|
|
|
7767
7982
|
description: "Manage redirects for a project. Redirects managed at the project level apply to all deployments and environments and take effect immediately after being created and promoted to production.",
|
|
7768
7983
|
arguments: [],
|
|
7769
7984
|
subcommands: [
|
|
7770
|
-
|
|
7985
|
+
listSubcommand14,
|
|
7771
7986
|
listVersionsSubcommand,
|
|
7772
7987
|
addSubcommand9,
|
|
7773
7988
|
uploadSubcommand,
|
|
@@ -8152,7 +8367,7 @@ var skillsCommand = {
|
|
|
8152
8367
|
};
|
|
8153
8368
|
|
|
8154
8369
|
// src/commands/target/command.ts
|
|
8155
|
-
var
|
|
8370
|
+
var listSubcommand15 = {
|
|
8156
8371
|
name: "list",
|
|
8157
8372
|
aliases: ["ls"],
|
|
8158
8373
|
description: "List targets defined for the current Project",
|
|
@@ -8176,7 +8391,7 @@ var targetCommand = {
|
|
|
8176
8391
|
aliases: ["targets"],
|
|
8177
8392
|
description: `Manage your Vercel Project's "targets" (custom environments).`,
|
|
8178
8393
|
arguments: [],
|
|
8179
|
-
subcommands: [
|
|
8394
|
+
subcommands: [listSubcommand15],
|
|
8180
8395
|
options: [],
|
|
8181
8396
|
examples: []
|
|
8182
8397
|
};
|
|
@@ -8236,7 +8451,7 @@ var addSubcommand10 = {
|
|
|
8236
8451
|
}
|
|
8237
8452
|
]
|
|
8238
8453
|
};
|
|
8239
|
-
var
|
|
8454
|
+
var listSubcommand16 = {
|
|
8240
8455
|
name: "list",
|
|
8241
8456
|
aliases: ["ls"],
|
|
8242
8457
|
description: "Show all teams that you're a member of",
|
|
@@ -8343,7 +8558,7 @@ var teamsCommand = {
|
|
|
8343
8558
|
subcommands: [
|
|
8344
8559
|
addSubcommand10,
|
|
8345
8560
|
inviteSubcommand,
|
|
8346
|
-
|
|
8561
|
+
listSubcommand16,
|
|
8347
8562
|
requestSubcommand,
|
|
8348
8563
|
switchSubcommand,
|
|
8349
8564
|
ssoSubcommand,
|
|
@@ -8354,7 +8569,7 @@ var teamsCommand = {
|
|
|
8354
8569
|
};
|
|
8355
8570
|
|
|
8356
8571
|
// src/commands/tokens/command.ts
|
|
8357
|
-
var
|
|
8572
|
+
var listSubcommand17 = {
|
|
8358
8573
|
name: "list",
|
|
8359
8574
|
aliases: ["ls"],
|
|
8360
8575
|
description: "List your personal authentication tokens",
|
|
@@ -8424,7 +8639,7 @@ var tokensCommand = {
|
|
|
8424
8639
|
aliases: [],
|
|
8425
8640
|
description: "Manage your personal Vercel authentication tokens",
|
|
8426
8641
|
arguments: [],
|
|
8427
|
-
subcommands: [addSubcommand11,
|
|
8642
|
+
subcommands: [addSubcommand11, listSubcommand17, removeSubcommand14],
|
|
8428
8643
|
options: [],
|
|
8429
8644
|
examples: []
|
|
8430
8645
|
};
|
|
@@ -8771,7 +8986,7 @@ var accessOption = {
|
|
|
8771
8986
|
argument: "String",
|
|
8772
8987
|
choices: ["public", "private"]
|
|
8773
8988
|
};
|
|
8774
|
-
var
|
|
8989
|
+
var environmentOption2 = {
|
|
8775
8990
|
name: "environment",
|
|
8776
8991
|
shorthand: "e",
|
|
8777
8992
|
type: [String],
|
|
@@ -8779,7 +8994,7 @@ var environmentOption = {
|
|
|
8779
8994
|
argument: "ENV",
|
|
8780
8995
|
description: "Environment to connect (can be repeated: production, preview, development). Defaults to all when --yes is used."
|
|
8781
8996
|
};
|
|
8782
|
-
var
|
|
8997
|
+
var listSubcommand18 = {
|
|
8783
8998
|
name: "list",
|
|
8784
8999
|
aliases: ["ls"],
|
|
8785
9000
|
description: "List all files in the Blob store",
|
|
@@ -9183,7 +9398,7 @@ var createStoreSubcommand = {
|
|
|
9183
9398
|
argument: "STRING"
|
|
9184
9399
|
},
|
|
9185
9400
|
yesOption,
|
|
9186
|
-
|
|
9401
|
+
environmentOption2
|
|
9187
9402
|
],
|
|
9188
9403
|
examples: [
|
|
9189
9404
|
{
|
|
@@ -9279,7 +9494,7 @@ var blobCommand = {
|
|
|
9279
9494
|
description: "Interact with Vercel Blob",
|
|
9280
9495
|
arguments: [],
|
|
9281
9496
|
subcommands: [
|
|
9282
|
-
|
|
9497
|
+
listSubcommand18,
|
|
9283
9498
|
putSubcommand,
|
|
9284
9499
|
getSubcommand3,
|
|
9285
9500
|
delSubcommand,
|
|
@@ -9322,7 +9537,7 @@ var blobCommand = {
|
|
|
9322
9537
|
};
|
|
9323
9538
|
|
|
9324
9539
|
// src/commands/webhooks/command.ts
|
|
9325
|
-
var
|
|
9540
|
+
var listSubcommand19 = {
|
|
9326
9541
|
name: "list",
|
|
9327
9542
|
aliases: ["ls"],
|
|
9328
9543
|
description: "Show all webhooks",
|
|
@@ -9408,7 +9623,7 @@ var webhooksCommand = {
|
|
|
9408
9623
|
description: "Manage webhooks",
|
|
9409
9624
|
arguments: [],
|
|
9410
9625
|
subcommands: [
|
|
9411
|
-
|
|
9626
|
+
listSubcommand19,
|
|
9412
9627
|
getSubcommand4,
|
|
9413
9628
|
createSubcommand6,
|
|
9414
9629
|
removeSubcommand15
|
|
@@ -9420,6 +9635,7 @@ var webhooksCommand = {
|
|
|
9420
9635
|
// src/commands/index.ts
|
|
9421
9636
|
var commandsStructs = [
|
|
9422
9637
|
agentCommand,
|
|
9638
|
+
agentRunsCommand,
|
|
9423
9639
|
aiGatewayCommand,
|
|
9424
9640
|
alertsCommand,
|
|
9425
9641
|
aliasCommand,
|
|
@@ -9478,6 +9694,7 @@ var commandsStructs = [
|
|
|
9478
9694
|
upgradeCommand,
|
|
9479
9695
|
webhooksCommand,
|
|
9480
9696
|
usageCommand,
|
|
9697
|
+
vcrCommand,
|
|
9481
9698
|
whoamiCommand,
|
|
9482
9699
|
// added because we don't have a full help command
|
|
9483
9700
|
{ name: "help", aliases: [] }
|
|
@@ -9508,6 +9725,11 @@ var commandNames = Array.from(commands.keys());
|
|
|
9508
9725
|
|
|
9509
9726
|
export {
|
|
9510
9727
|
agentCommand,
|
|
9728
|
+
listSubcommand,
|
|
9729
|
+
inspectSubcommand,
|
|
9730
|
+
traceSubcommand,
|
|
9731
|
+
projectsSubcommand,
|
|
9732
|
+
agentRunsCommand,
|
|
9511
9733
|
createSubcommand,
|
|
9512
9734
|
apiKeysSubcommand,
|
|
9513
9735
|
rulesAddSubcommand,
|
|
@@ -9517,10 +9739,10 @@ export {
|
|
|
9517
9739
|
rulesSubcommand,
|
|
9518
9740
|
aiGatewayCommand,
|
|
9519
9741
|
setSubcommand,
|
|
9520
|
-
|
|
9742
|
+
listSubcommand2,
|
|
9521
9743
|
removeSubcommand,
|
|
9522
9744
|
aliasCommand,
|
|
9523
|
-
|
|
9745
|
+
listSubcommand3,
|
|
9524
9746
|
apiCommand,
|
|
9525
9747
|
bisectCommand,
|
|
9526
9748
|
SUPPORTED_CREDIT_TYPES,
|
|
@@ -9538,12 +9760,12 @@ export {
|
|
|
9538
9760
|
cacheCommand,
|
|
9539
9761
|
removeSubcommand2,
|
|
9540
9762
|
issueSubcommand,
|
|
9541
|
-
|
|
9763
|
+
listSubcommand4,
|
|
9542
9764
|
addSubcommand2 as addSubcommand,
|
|
9543
9765
|
certsCommand,
|
|
9544
9766
|
createSubcommand2,
|
|
9545
9767
|
updateSubcommand,
|
|
9546
|
-
|
|
9768
|
+
listSubcommand5,
|
|
9547
9769
|
removeSubcommand3,
|
|
9548
9770
|
tokenSubcommand,
|
|
9549
9771
|
revokeTokensSubcommand,
|
|
@@ -9553,7 +9775,7 @@ export {
|
|
|
9553
9775
|
connexCommand,
|
|
9554
9776
|
contractCommand,
|
|
9555
9777
|
addSubcommand3 as addSubcommand2,
|
|
9556
|
-
|
|
9778
|
+
listSubcommand6,
|
|
9557
9779
|
runSubcommand,
|
|
9558
9780
|
cronsCommand,
|
|
9559
9781
|
curlCommand,
|
|
@@ -9561,17 +9783,17 @@ export {
|
|
|
9561
9783
|
initSubcommand,
|
|
9562
9784
|
continueSubcommand,
|
|
9563
9785
|
deployCommand,
|
|
9564
|
-
|
|
9786
|
+
listSubcommand7,
|
|
9565
9787
|
createSubcommand3,
|
|
9566
9788
|
removeSubcommand4,
|
|
9567
9789
|
deployHooksCommand,
|
|
9568
9790
|
importSubcommand,
|
|
9569
|
-
|
|
9791
|
+
listSubcommand8,
|
|
9570
9792
|
addSubcommand4 as addSubcommand3,
|
|
9571
9793
|
removeSubcommand5,
|
|
9572
9794
|
dnsCommand,
|
|
9573
|
-
|
|
9574
|
-
|
|
9795
|
+
listSubcommand9,
|
|
9796
|
+
inspectSubcommand2,
|
|
9575
9797
|
addSubcommand5 as addSubcommand4,
|
|
9576
9798
|
removeSubcommand6,
|
|
9577
9799
|
priceSubcommand,
|
|
@@ -9582,7 +9804,7 @@ export {
|
|
|
9582
9804
|
transferInSubcommand,
|
|
9583
9805
|
verifySubcommand,
|
|
9584
9806
|
domainsCommand,
|
|
9585
|
-
|
|
9807
|
+
listSubcommand10,
|
|
9586
9808
|
addSubcommand6 as addSubcommand5,
|
|
9587
9809
|
getSubcommand,
|
|
9588
9810
|
updateSubcommand2,
|
|
@@ -9623,8 +9845,8 @@ export {
|
|
|
9623
9845
|
FLAG_CONDITION_RHS_OPTIONAL_COMPARATORS,
|
|
9624
9846
|
formatFlagConditionComparatorList,
|
|
9625
9847
|
formatFlagConditionComparator,
|
|
9626
|
-
|
|
9627
|
-
|
|
9848
|
+
listSubcommand11,
|
|
9849
|
+
inspectSubcommand3,
|
|
9628
9850
|
createSubcommand4,
|
|
9629
9851
|
openSubcommand2,
|
|
9630
9852
|
updateSubcommand3,
|
|
@@ -9668,7 +9890,7 @@ export {
|
|
|
9668
9890
|
acceptTermsSubcommand,
|
|
9669
9891
|
openSubcommand3,
|
|
9670
9892
|
installationsSubcommand,
|
|
9671
|
-
|
|
9893
|
+
listSubcommand12,
|
|
9672
9894
|
discoverSubcommand,
|
|
9673
9895
|
categoriesSubcommand,
|
|
9674
9896
|
balanceSubcommand,
|
|
@@ -9703,8 +9925,8 @@ export {
|
|
|
9703
9925
|
checksAddFlags,
|
|
9704
9926
|
checksRemoveFlags,
|
|
9705
9927
|
checksSubcommand,
|
|
9706
|
-
|
|
9707
|
-
|
|
9928
|
+
inspectSubcommand4,
|
|
9929
|
+
listSubcommand13,
|
|
9708
9930
|
removeSubcommand12,
|
|
9709
9931
|
renameSubcommand,
|
|
9710
9932
|
tokenSubcommand2,
|
|
@@ -9718,7 +9940,7 @@ export {
|
|
|
9718
9940
|
statusSubcommand2,
|
|
9719
9941
|
promoteCommand,
|
|
9720
9942
|
redeployCommand,
|
|
9721
|
-
|
|
9943
|
+
listSubcommand14,
|
|
9722
9944
|
listVersionsSubcommand,
|
|
9723
9945
|
addSubcommand9,
|
|
9724
9946
|
uploadSubcommand,
|
|
@@ -9737,17 +9959,17 @@ export {
|
|
|
9737
9959
|
fetchSubcommand,
|
|
9738
9960
|
rollingReleaseCommand,
|
|
9739
9961
|
skillsCommand,
|
|
9740
|
-
|
|
9962
|
+
listSubcommand15,
|
|
9741
9963
|
targetCommand,
|
|
9742
9964
|
requestSubcommand,
|
|
9743
9965
|
addSubcommand10,
|
|
9744
|
-
|
|
9966
|
+
listSubcommand16,
|
|
9745
9967
|
switchSubcommand,
|
|
9746
9968
|
inviteSubcommand,
|
|
9747
9969
|
ssoSubcommand,
|
|
9748
9970
|
membersSubcommand2,
|
|
9749
9971
|
teamsCommand,
|
|
9750
|
-
|
|
9972
|
+
listSubcommand17,
|
|
9751
9973
|
addSubcommand11,
|
|
9752
9974
|
removeSubcommand14,
|
|
9753
9975
|
tokensCommand,
|
|
@@ -9762,7 +9984,7 @@ export {
|
|
|
9762
9984
|
upgradeCommand,
|
|
9763
9985
|
usageCommand,
|
|
9764
9986
|
whoamiCommand,
|
|
9765
|
-
|
|
9987
|
+
listSubcommand18,
|
|
9766
9988
|
putSubcommand,
|
|
9767
9989
|
delSubcommand,
|
|
9768
9990
|
copySubcommand,
|
|
@@ -9775,7 +9997,7 @@ export {
|
|
|
9775
9997
|
getStoreInfoSubcommand,
|
|
9776
9998
|
listStoresSubcommand,
|
|
9777
9999
|
blobCommand,
|
|
9778
|
-
|
|
10000
|
+
listSubcommand19,
|
|
9779
10001
|
getSubcommand4,
|
|
9780
10002
|
createSubcommand6,
|
|
9781
10003
|
removeSubcommand15,
|