vercel 54.19.0 → 54.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/{add-WB6SXGXX.js → add-IB7HE5S5.js} +2 -2
- package/dist/chunks/{add-P6CBTAGK.js → add-TF5VZLCY.js} +3 -3
- package/dist/chunks/{chunk-WFXGLPSI.js → chunk-4BEUS7AL.js} +288 -70
- package/dist/chunks/{chunk-RKLBPBRM.js → chunk-7PAKWBN4.js} +2 -2
- 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-SQYJEUZD.js → chunk-JDO6BSKN.js} +2 -2
- package/dist/chunks/{chunk-ZVDYGXRA.js → chunk-JHQOIGTY.js} +1 -1
- package/dist/chunks/{chunk-LFODAB54.js → chunk-R5FOIIHT.js} +6 -0
- package/dist/chunks/{chunk-FM24W7ET.js → chunk-T63I6OUR.js} +1 -1
- package/dist/chunks/{image-R4JG4NX4.js → image-2DL7JEWW.js} +3 -3
- package/dist/chunks/{inspect-RTJALSXC.js → inspect-6IHZTLFA.js} +2 -2
- package/dist/chunks/{inspect-VXODLWNM.js → inspect-EGXHWKY3.js} +2 -2
- package/dist/chunks/{inspect-57BITHYZ.js → inspect-PL3PE5IJ.js} +2 -2
- 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-JPWOOVMW.js → ls-EP4Q6VF4.js} +2 -2
- package/dist/chunks/{ls-PDILBRUL.js → ls-FTQGK4R6.js} +3 -3
- package/dist/chunks/{ls-D7NWJACX.js → ls-IQKMDRUB.js} +2 -2
- package/dist/chunks/{ls-ZDMXBOJF.js → ls-MUS72LBS.js} +2 -2
- package/dist/chunks/{query-75PT24SH.js → query-C6FEOG5R.js} +1 -1
- package/dist/chunks/{rm-ZJQ5DOAW.js → rm-EZFCCZFT.js} +2 -2
- package/dist/chunks/{rm-BJSTNUIJ.js → rm-GWW57H2V.js} +3 -3
- package/dist/chunks/{rm-OSIDD4VR.js → rm-NMSG2WG6.js} +2 -2
- 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-HHNNZLC6.js → tags-5PFVWGLK.js} +2 -2
- package/dist/chunks/{update-TTPNV44H.js → update-BCLMLJM7.js} +3 -3
- package/dist/commands/deploy/index.js +2 -2
- package/dist/commands/env/index.js +1 -1
- package/dist/commands/link/index.js +1 -1
- package/dist/commands-bulk.js +3059 -1941
- package/dist/help.js +1 -1
- package/dist/index.js +15 -5
- package/dist/version.mjs +1 -1
- package/package.json +10 -10
|
@@ -481,6 +481,218 @@ var agentCommand = {
|
|
|
481
481
|
]
|
|
482
482
|
};
|
|
483
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
|
+
|
|
484
696
|
// src/commands/ai-gateway/command.ts
|
|
485
697
|
var createSubcommand = {
|
|
486
698
|
name: "create",
|
|
@@ -730,7 +942,7 @@ var setSubcommand = {
|
|
|
730
942
|
options: [],
|
|
731
943
|
examples: []
|
|
732
944
|
};
|
|
733
|
-
var
|
|
945
|
+
var listSubcommand2 = {
|
|
734
946
|
name: "list",
|
|
735
947
|
aliases: ["ls"],
|
|
736
948
|
description: "Show all aliases",
|
|
@@ -761,7 +973,7 @@ var aliasCommand = {
|
|
|
761
973
|
aliases: ["aliases", "ln"],
|
|
762
974
|
description: "Interact with deployment aliases",
|
|
763
975
|
arguments: [],
|
|
764
|
-
subcommands: [
|
|
976
|
+
subcommands: [listSubcommand2, removeSubcommand, setSubcommand],
|
|
765
977
|
options: [],
|
|
766
978
|
examples: [
|
|
767
979
|
{
|
|
@@ -788,7 +1000,7 @@ var specUrlOption = {
|
|
|
788
1000
|
deprecated: false,
|
|
789
1001
|
description: "Fetch endpoints from a custom OpenAPI spec URL instead of the public Vercel spec"
|
|
790
1002
|
};
|
|
791
|
-
var
|
|
1003
|
+
var listSubcommand3 = {
|
|
792
1004
|
name: "list",
|
|
793
1005
|
aliases: ["ls"],
|
|
794
1006
|
description: "List all available API endpoints",
|
|
@@ -829,7 +1041,7 @@ var apiCommand = {
|
|
|
829
1041
|
required: false
|
|
830
1042
|
}
|
|
831
1043
|
],
|
|
832
|
-
subcommands: [
|
|
1044
|
+
subcommands: [listSubcommand3],
|
|
833
1045
|
options: [
|
|
834
1046
|
{
|
|
835
1047
|
name: "method",
|
|
@@ -1400,7 +1612,7 @@ var issueSubcommand = {
|
|
|
1400
1612
|
}
|
|
1401
1613
|
]
|
|
1402
1614
|
};
|
|
1403
|
-
var
|
|
1615
|
+
var listSubcommand4 = {
|
|
1404
1616
|
name: "list",
|
|
1405
1617
|
aliases: ["ls"],
|
|
1406
1618
|
description: "Show all available certificates",
|
|
@@ -1461,14 +1673,14 @@ var certsCommand = {
|
|
|
1461
1673
|
subcommands: [
|
|
1462
1674
|
addSubcommand2,
|
|
1463
1675
|
issueSubcommand,
|
|
1464
|
-
|
|
1676
|
+
listSubcommand4,
|
|
1465
1677
|
removeSubcommand2
|
|
1466
1678
|
],
|
|
1467
1679
|
options: [],
|
|
1468
1680
|
examples: [
|
|
1469
1681
|
...issueSubcommand.examples,
|
|
1470
1682
|
...removeSubcommand2.examples,
|
|
1471
|
-
...
|
|
1683
|
+
...listSubcommand4.examples
|
|
1472
1684
|
]
|
|
1473
1685
|
};
|
|
1474
1686
|
|
|
@@ -1628,7 +1840,7 @@ var updateSubcommand = {
|
|
|
1628
1840
|
}
|
|
1629
1841
|
]
|
|
1630
1842
|
};
|
|
1631
|
-
var
|
|
1843
|
+
var listSubcommand5 = {
|
|
1632
1844
|
name: "list",
|
|
1633
1845
|
aliases: ["ls"],
|
|
1634
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)",
|
|
@@ -2047,7 +2259,7 @@ var connexCommand = {
|
|
|
2047
2259
|
subcommands: [
|
|
2048
2260
|
createSubcommand2,
|
|
2049
2261
|
updateSubcommand,
|
|
2050
|
-
|
|
2262
|
+
listSubcommand5,
|
|
2051
2263
|
tokenSubcommand,
|
|
2052
2264
|
attachSubcommand,
|
|
2053
2265
|
detachSubcommand,
|
|
@@ -2133,7 +2345,7 @@ var addSubcommand3 = {
|
|
|
2133
2345
|
}
|
|
2134
2346
|
]
|
|
2135
2347
|
};
|
|
2136
|
-
var
|
|
2348
|
+
var listSubcommand6 = {
|
|
2137
2349
|
name: "list",
|
|
2138
2350
|
aliases: ["ls"],
|
|
2139
2351
|
description: "List all cron jobs for a project",
|
|
@@ -2174,7 +2386,7 @@ var cronsCommand = {
|
|
|
2174
2386
|
aliases: ["cron"],
|
|
2175
2387
|
description: "Manage cron jobs for a project",
|
|
2176
2388
|
arguments: [],
|
|
2177
|
-
subcommands: [addSubcommand3,
|
|
2389
|
+
subcommands: [addSubcommand3, listSubcommand6, runSubcommand],
|
|
2178
2390
|
options: [],
|
|
2179
2391
|
examples: []
|
|
2180
2392
|
};
|
|
@@ -2245,16 +2457,16 @@ var curlCommand = {
|
|
|
2245
2457
|
};
|
|
2246
2458
|
|
|
2247
2459
|
// src/commands/deploy-hooks/command.ts
|
|
2248
|
-
var
|
|
2460
|
+
var projectOption3 = {
|
|
2249
2461
|
...projectOption,
|
|
2250
2462
|
shorthand: "p"
|
|
2251
2463
|
};
|
|
2252
|
-
var
|
|
2464
|
+
var listSubcommand7 = {
|
|
2253
2465
|
name: "list",
|
|
2254
2466
|
aliases: ["ls"],
|
|
2255
2467
|
description: "List deploy hooks for a project",
|
|
2256
2468
|
arguments: [],
|
|
2257
|
-
options: [formatOption,
|
|
2469
|
+
options: [formatOption, projectOption3],
|
|
2258
2470
|
examples: [
|
|
2259
2471
|
{
|
|
2260
2472
|
name: "List deploy hooks as JSON",
|
|
@@ -2281,7 +2493,7 @@ var createSubcommand3 = {
|
|
|
2281
2493
|
deprecated: false,
|
|
2282
2494
|
description: "Git branch ref to deploy when the hook URL is triggered"
|
|
2283
2495
|
},
|
|
2284
|
-
|
|
2496
|
+
projectOption3
|
|
2285
2497
|
],
|
|
2286
2498
|
examples: [
|
|
2287
2499
|
{
|
|
@@ -2301,7 +2513,7 @@ var removeSubcommand4 = {
|
|
|
2301
2513
|
}
|
|
2302
2514
|
],
|
|
2303
2515
|
options: [
|
|
2304
|
-
|
|
2516
|
+
projectOption3,
|
|
2305
2517
|
{
|
|
2306
2518
|
...yesOption,
|
|
2307
2519
|
description: "Skip the confirmation prompt when removing a deploy hook"
|
|
@@ -2314,7 +2526,7 @@ var deployHooksCommand = {
|
|
|
2314
2526
|
aliases: ["deploy-hook"],
|
|
2315
2527
|
description: "Manage deploy hooks for Git-triggered builds",
|
|
2316
2528
|
arguments: [],
|
|
2317
|
-
subcommands: [
|
|
2529
|
+
subcommands: [listSubcommand7, createSubcommand3, removeSubcommand4],
|
|
2318
2530
|
options: [],
|
|
2319
2531
|
examples: []
|
|
2320
2532
|
};
|
|
@@ -2337,7 +2549,7 @@ var importSubcommand = {
|
|
|
2337
2549
|
options: [],
|
|
2338
2550
|
examples: []
|
|
2339
2551
|
};
|
|
2340
|
-
var
|
|
2552
|
+
var listSubcommand8 = {
|
|
2341
2553
|
name: "list",
|
|
2342
2554
|
aliases: ["ls"],
|
|
2343
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",
|
|
@@ -2394,7 +2606,7 @@ var dnsCommand = {
|
|
|
2394
2606
|
subcommands: [
|
|
2395
2607
|
addSubcommand4,
|
|
2396
2608
|
importSubcommand,
|
|
2397
|
-
|
|
2609
|
+
listSubcommand8,
|
|
2398
2610
|
removeSubcommand5
|
|
2399
2611
|
],
|
|
2400
2612
|
options: [],
|
|
@@ -2445,7 +2657,7 @@ var dnsCommand = {
|
|
|
2445
2657
|
};
|
|
2446
2658
|
|
|
2447
2659
|
// src/commands/domains/command.ts
|
|
2448
|
-
var
|
|
2660
|
+
var listSubcommand9 = {
|
|
2449
2661
|
name: "list",
|
|
2450
2662
|
aliases: ["ls"],
|
|
2451
2663
|
description: "Show all domains in a list",
|
|
@@ -2459,7 +2671,7 @@ var listSubcommand8 = {
|
|
|
2459
2671
|
}
|
|
2460
2672
|
]
|
|
2461
2673
|
};
|
|
2462
|
-
var
|
|
2674
|
+
var inspectSubcommand2 = {
|
|
2463
2675
|
name: "inspect",
|
|
2464
2676
|
aliases: [],
|
|
2465
2677
|
description: "Displays information related to a domain",
|
|
@@ -2753,8 +2965,8 @@ var domainsCommand = {
|
|
|
2753
2965
|
description: "Manage domains",
|
|
2754
2966
|
arguments: [],
|
|
2755
2967
|
subcommands: [
|
|
2756
|
-
|
|
2757
|
-
|
|
2968
|
+
listSubcommand9,
|
|
2969
|
+
inspectSubcommand2,
|
|
2758
2970
|
addSubcommand5,
|
|
2759
2971
|
buySubcommand,
|
|
2760
2972
|
checkSubcommand,
|
|
@@ -2770,7 +2982,7 @@ var domainsCommand = {
|
|
|
2770
2982
|
};
|
|
2771
2983
|
|
|
2772
2984
|
// src/commands/edge-config/command.ts
|
|
2773
|
-
var
|
|
2985
|
+
var listSubcommand10 = {
|
|
2774
2986
|
name: "list",
|
|
2775
2987
|
aliases: ["ls"],
|
|
2776
2988
|
description: "List Edge Config stores for the current team",
|
|
@@ -2994,7 +3206,7 @@ var edgeConfigCommand = {
|
|
|
2994
3206
|
description: "Manage Edge Config stores (dashboard API parity)",
|
|
2995
3207
|
arguments: [],
|
|
2996
3208
|
subcommands: [
|
|
2997
|
-
|
|
3209
|
+
listSubcommand10,
|
|
2998
3210
|
addSubcommand6,
|
|
2999
3211
|
getSubcommand,
|
|
3000
3212
|
updateSubcommand2,
|
|
@@ -3961,7 +4173,7 @@ function formatFlagConditionComparator(comparator, options) {
|
|
|
3961
4173
|
|
|
3962
4174
|
// src/commands/flags/command.ts
|
|
3963
4175
|
var segmentRuleOperatorDescription = `Valid operators: ${formatFlagConditionComparatorList()}`;
|
|
3964
|
-
var
|
|
4176
|
+
var listSubcommand11 = {
|
|
3965
4177
|
name: "list",
|
|
3966
4178
|
aliases: ["ls"],
|
|
3967
4179
|
description: "List all feature flags for the current project",
|
|
@@ -4051,7 +4263,7 @@ var listSubcommand10 = {
|
|
|
4051
4263
|
}
|
|
4052
4264
|
]
|
|
4053
4265
|
};
|
|
4054
|
-
var
|
|
4266
|
+
var inspectSubcommand3 = {
|
|
4055
4267
|
name: "inspect",
|
|
4056
4268
|
aliases: [],
|
|
4057
4269
|
description: "Display information about a feature flag",
|
|
@@ -4976,8 +5188,8 @@ var flagsCommand = {
|
|
|
4976
5188
|
description: "Manage feature flags for a Vercel project",
|
|
4977
5189
|
arguments: [],
|
|
4978
5190
|
subcommands: [
|
|
4979
|
-
|
|
4980
|
-
|
|
5191
|
+
listSubcommand11,
|
|
5192
|
+
inspectSubcommand3,
|
|
4981
5193
|
createSubcommand4,
|
|
4982
5194
|
openSubcommand2,
|
|
4983
5195
|
updateSubcommand3,
|
|
@@ -5775,7 +5987,7 @@ var installationsSubcommand = {
|
|
|
5775
5987
|
}
|
|
5776
5988
|
]
|
|
5777
5989
|
};
|
|
5778
|
-
var
|
|
5990
|
+
var listSubcommand12 = {
|
|
5779
5991
|
name: "list",
|
|
5780
5992
|
aliases: ["ls"],
|
|
5781
5993
|
description: "List resources from marketplace integrations for the current project",
|
|
@@ -6129,7 +6341,7 @@ var integrationCommand = {
|
|
|
6129
6341
|
discoverSubcommand,
|
|
6130
6342
|
guideSubcommand,
|
|
6131
6343
|
installationsSubcommand,
|
|
6132
|
-
|
|
6344
|
+
listSubcommand12,
|
|
6133
6345
|
openSubcommand3,
|
|
6134
6346
|
resourceSubcommand,
|
|
6135
6347
|
updateSubcommand4,
|
|
@@ -6967,7 +7179,7 @@ var checksSubcommand = {
|
|
|
6967
7179
|
}
|
|
6968
7180
|
]
|
|
6969
7181
|
};
|
|
6970
|
-
var
|
|
7182
|
+
var inspectSubcommand4 = {
|
|
6971
7183
|
name: "inspect",
|
|
6972
7184
|
aliases: [],
|
|
6973
7185
|
description: "Displays information related to a project",
|
|
@@ -6989,7 +7201,7 @@ var inspectSubcommand3 = {
|
|
|
6989
7201
|
}
|
|
6990
7202
|
]
|
|
6991
7203
|
};
|
|
6992
|
-
var
|
|
7204
|
+
var listSubcommand13 = {
|
|
6993
7205
|
name: "list",
|
|
6994
7206
|
aliases: ["ls"],
|
|
6995
7207
|
description: "Show all projects in the selected scope",
|
|
@@ -7383,8 +7595,8 @@ var projectCommand = {
|
|
|
7383
7595
|
addSubcommand8,
|
|
7384
7596
|
accessSummarySubcommand,
|
|
7385
7597
|
checksSubcommand,
|
|
7386
|
-
|
|
7387
|
-
|
|
7598
|
+
inspectSubcommand4,
|
|
7599
|
+
listSubcommand13,
|
|
7388
7600
|
membersSubcommand,
|
|
7389
7601
|
accessGroupsSubcommand,
|
|
7390
7602
|
protectionSubcommand,
|
|
@@ -7506,7 +7718,7 @@ var redeployCommand = {
|
|
|
7506
7718
|
};
|
|
7507
7719
|
|
|
7508
7720
|
// src/commands/redirects/command.ts
|
|
7509
|
-
var
|
|
7721
|
+
var listSubcommand14 = {
|
|
7510
7722
|
name: "list",
|
|
7511
7723
|
aliases: ["ls"],
|
|
7512
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.",
|
|
@@ -7770,7 +7982,7 @@ var redirectsCommand = {
|
|
|
7770
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.",
|
|
7771
7983
|
arguments: [],
|
|
7772
7984
|
subcommands: [
|
|
7773
|
-
|
|
7985
|
+
listSubcommand14,
|
|
7774
7986
|
listVersionsSubcommand,
|
|
7775
7987
|
addSubcommand9,
|
|
7776
7988
|
uploadSubcommand,
|
|
@@ -8155,7 +8367,7 @@ var skillsCommand = {
|
|
|
8155
8367
|
};
|
|
8156
8368
|
|
|
8157
8369
|
// src/commands/target/command.ts
|
|
8158
|
-
var
|
|
8370
|
+
var listSubcommand15 = {
|
|
8159
8371
|
name: "list",
|
|
8160
8372
|
aliases: ["ls"],
|
|
8161
8373
|
description: "List targets defined for the current Project",
|
|
@@ -8179,7 +8391,7 @@ var targetCommand = {
|
|
|
8179
8391
|
aliases: ["targets"],
|
|
8180
8392
|
description: `Manage your Vercel Project's "targets" (custom environments).`,
|
|
8181
8393
|
arguments: [],
|
|
8182
|
-
subcommands: [
|
|
8394
|
+
subcommands: [listSubcommand15],
|
|
8183
8395
|
options: [],
|
|
8184
8396
|
examples: []
|
|
8185
8397
|
};
|
|
@@ -8239,7 +8451,7 @@ var addSubcommand10 = {
|
|
|
8239
8451
|
}
|
|
8240
8452
|
]
|
|
8241
8453
|
};
|
|
8242
|
-
var
|
|
8454
|
+
var listSubcommand16 = {
|
|
8243
8455
|
name: "list",
|
|
8244
8456
|
aliases: ["ls"],
|
|
8245
8457
|
description: "Show all teams that you're a member of",
|
|
@@ -8346,7 +8558,7 @@ var teamsCommand = {
|
|
|
8346
8558
|
subcommands: [
|
|
8347
8559
|
addSubcommand10,
|
|
8348
8560
|
inviteSubcommand,
|
|
8349
|
-
|
|
8561
|
+
listSubcommand16,
|
|
8350
8562
|
requestSubcommand,
|
|
8351
8563
|
switchSubcommand,
|
|
8352
8564
|
ssoSubcommand,
|
|
@@ -8357,7 +8569,7 @@ var teamsCommand = {
|
|
|
8357
8569
|
};
|
|
8358
8570
|
|
|
8359
8571
|
// src/commands/tokens/command.ts
|
|
8360
|
-
var
|
|
8572
|
+
var listSubcommand17 = {
|
|
8361
8573
|
name: "list",
|
|
8362
8574
|
aliases: ["ls"],
|
|
8363
8575
|
description: "List your personal authentication tokens",
|
|
@@ -8427,7 +8639,7 @@ var tokensCommand = {
|
|
|
8427
8639
|
aliases: [],
|
|
8428
8640
|
description: "Manage your personal Vercel authentication tokens",
|
|
8429
8641
|
arguments: [],
|
|
8430
|
-
subcommands: [addSubcommand11,
|
|
8642
|
+
subcommands: [addSubcommand11, listSubcommand17, removeSubcommand14],
|
|
8431
8643
|
options: [],
|
|
8432
8644
|
examples: []
|
|
8433
8645
|
};
|
|
@@ -8774,7 +8986,7 @@ var accessOption = {
|
|
|
8774
8986
|
argument: "String",
|
|
8775
8987
|
choices: ["public", "private"]
|
|
8776
8988
|
};
|
|
8777
|
-
var
|
|
8989
|
+
var environmentOption2 = {
|
|
8778
8990
|
name: "environment",
|
|
8779
8991
|
shorthand: "e",
|
|
8780
8992
|
type: [String],
|
|
@@ -8782,7 +8994,7 @@ var environmentOption = {
|
|
|
8782
8994
|
argument: "ENV",
|
|
8783
8995
|
description: "Environment to connect (can be repeated: production, preview, development). Defaults to all when --yes is used."
|
|
8784
8996
|
};
|
|
8785
|
-
var
|
|
8997
|
+
var listSubcommand18 = {
|
|
8786
8998
|
name: "list",
|
|
8787
8999
|
aliases: ["ls"],
|
|
8788
9000
|
description: "List all files in the Blob store",
|
|
@@ -9186,7 +9398,7 @@ var createStoreSubcommand = {
|
|
|
9186
9398
|
argument: "STRING"
|
|
9187
9399
|
},
|
|
9188
9400
|
yesOption,
|
|
9189
|
-
|
|
9401
|
+
environmentOption2
|
|
9190
9402
|
],
|
|
9191
9403
|
examples: [
|
|
9192
9404
|
{
|
|
@@ -9282,7 +9494,7 @@ var blobCommand = {
|
|
|
9282
9494
|
description: "Interact with Vercel Blob",
|
|
9283
9495
|
arguments: [],
|
|
9284
9496
|
subcommands: [
|
|
9285
|
-
|
|
9497
|
+
listSubcommand18,
|
|
9286
9498
|
putSubcommand,
|
|
9287
9499
|
getSubcommand3,
|
|
9288
9500
|
delSubcommand,
|
|
@@ -9325,7 +9537,7 @@ var blobCommand = {
|
|
|
9325
9537
|
};
|
|
9326
9538
|
|
|
9327
9539
|
// src/commands/webhooks/command.ts
|
|
9328
|
-
var
|
|
9540
|
+
var listSubcommand19 = {
|
|
9329
9541
|
name: "list",
|
|
9330
9542
|
aliases: ["ls"],
|
|
9331
9543
|
description: "Show all webhooks",
|
|
@@ -9411,7 +9623,7 @@ var webhooksCommand = {
|
|
|
9411
9623
|
description: "Manage webhooks",
|
|
9412
9624
|
arguments: [],
|
|
9413
9625
|
subcommands: [
|
|
9414
|
-
|
|
9626
|
+
listSubcommand19,
|
|
9415
9627
|
getSubcommand4,
|
|
9416
9628
|
createSubcommand6,
|
|
9417
9629
|
removeSubcommand15
|
|
@@ -9423,6 +9635,7 @@ var webhooksCommand = {
|
|
|
9423
9635
|
// src/commands/index.ts
|
|
9424
9636
|
var commandsStructs = [
|
|
9425
9637
|
agentCommand,
|
|
9638
|
+
agentRunsCommand,
|
|
9426
9639
|
aiGatewayCommand,
|
|
9427
9640
|
alertsCommand,
|
|
9428
9641
|
aliasCommand,
|
|
@@ -9512,6 +9725,11 @@ var commandNames = Array.from(commands.keys());
|
|
|
9512
9725
|
|
|
9513
9726
|
export {
|
|
9514
9727
|
agentCommand,
|
|
9728
|
+
listSubcommand,
|
|
9729
|
+
inspectSubcommand,
|
|
9730
|
+
traceSubcommand,
|
|
9731
|
+
projectsSubcommand,
|
|
9732
|
+
agentRunsCommand,
|
|
9515
9733
|
createSubcommand,
|
|
9516
9734
|
apiKeysSubcommand,
|
|
9517
9735
|
rulesAddSubcommand,
|
|
@@ -9521,10 +9739,10 @@ export {
|
|
|
9521
9739
|
rulesSubcommand,
|
|
9522
9740
|
aiGatewayCommand,
|
|
9523
9741
|
setSubcommand,
|
|
9524
|
-
|
|
9742
|
+
listSubcommand2,
|
|
9525
9743
|
removeSubcommand,
|
|
9526
9744
|
aliasCommand,
|
|
9527
|
-
|
|
9745
|
+
listSubcommand3,
|
|
9528
9746
|
apiCommand,
|
|
9529
9747
|
bisectCommand,
|
|
9530
9748
|
SUPPORTED_CREDIT_TYPES,
|
|
@@ -9542,12 +9760,12 @@ export {
|
|
|
9542
9760
|
cacheCommand,
|
|
9543
9761
|
removeSubcommand2,
|
|
9544
9762
|
issueSubcommand,
|
|
9545
|
-
|
|
9763
|
+
listSubcommand4,
|
|
9546
9764
|
addSubcommand2 as addSubcommand,
|
|
9547
9765
|
certsCommand,
|
|
9548
9766
|
createSubcommand2,
|
|
9549
9767
|
updateSubcommand,
|
|
9550
|
-
|
|
9768
|
+
listSubcommand5,
|
|
9551
9769
|
removeSubcommand3,
|
|
9552
9770
|
tokenSubcommand,
|
|
9553
9771
|
revokeTokensSubcommand,
|
|
@@ -9557,7 +9775,7 @@ export {
|
|
|
9557
9775
|
connexCommand,
|
|
9558
9776
|
contractCommand,
|
|
9559
9777
|
addSubcommand3 as addSubcommand2,
|
|
9560
|
-
|
|
9778
|
+
listSubcommand6,
|
|
9561
9779
|
runSubcommand,
|
|
9562
9780
|
cronsCommand,
|
|
9563
9781
|
curlCommand,
|
|
@@ -9565,17 +9783,17 @@ export {
|
|
|
9565
9783
|
initSubcommand,
|
|
9566
9784
|
continueSubcommand,
|
|
9567
9785
|
deployCommand,
|
|
9568
|
-
|
|
9786
|
+
listSubcommand7,
|
|
9569
9787
|
createSubcommand3,
|
|
9570
9788
|
removeSubcommand4,
|
|
9571
9789
|
deployHooksCommand,
|
|
9572
9790
|
importSubcommand,
|
|
9573
|
-
|
|
9791
|
+
listSubcommand8,
|
|
9574
9792
|
addSubcommand4 as addSubcommand3,
|
|
9575
9793
|
removeSubcommand5,
|
|
9576
9794
|
dnsCommand,
|
|
9577
|
-
|
|
9578
|
-
|
|
9795
|
+
listSubcommand9,
|
|
9796
|
+
inspectSubcommand2,
|
|
9579
9797
|
addSubcommand5 as addSubcommand4,
|
|
9580
9798
|
removeSubcommand6,
|
|
9581
9799
|
priceSubcommand,
|
|
@@ -9586,7 +9804,7 @@ export {
|
|
|
9586
9804
|
transferInSubcommand,
|
|
9587
9805
|
verifySubcommand,
|
|
9588
9806
|
domainsCommand,
|
|
9589
|
-
|
|
9807
|
+
listSubcommand10,
|
|
9590
9808
|
addSubcommand6 as addSubcommand5,
|
|
9591
9809
|
getSubcommand,
|
|
9592
9810
|
updateSubcommand2,
|
|
@@ -9627,8 +9845,8 @@ export {
|
|
|
9627
9845
|
FLAG_CONDITION_RHS_OPTIONAL_COMPARATORS,
|
|
9628
9846
|
formatFlagConditionComparatorList,
|
|
9629
9847
|
formatFlagConditionComparator,
|
|
9630
|
-
|
|
9631
|
-
|
|
9848
|
+
listSubcommand11,
|
|
9849
|
+
inspectSubcommand3,
|
|
9632
9850
|
createSubcommand4,
|
|
9633
9851
|
openSubcommand2,
|
|
9634
9852
|
updateSubcommand3,
|
|
@@ -9672,7 +9890,7 @@ export {
|
|
|
9672
9890
|
acceptTermsSubcommand,
|
|
9673
9891
|
openSubcommand3,
|
|
9674
9892
|
installationsSubcommand,
|
|
9675
|
-
|
|
9893
|
+
listSubcommand12,
|
|
9676
9894
|
discoverSubcommand,
|
|
9677
9895
|
categoriesSubcommand,
|
|
9678
9896
|
balanceSubcommand,
|
|
@@ -9707,8 +9925,8 @@ export {
|
|
|
9707
9925
|
checksAddFlags,
|
|
9708
9926
|
checksRemoveFlags,
|
|
9709
9927
|
checksSubcommand,
|
|
9710
|
-
|
|
9711
|
-
|
|
9928
|
+
inspectSubcommand4,
|
|
9929
|
+
listSubcommand13,
|
|
9712
9930
|
removeSubcommand12,
|
|
9713
9931
|
renameSubcommand,
|
|
9714
9932
|
tokenSubcommand2,
|
|
@@ -9722,7 +9940,7 @@ export {
|
|
|
9722
9940
|
statusSubcommand2,
|
|
9723
9941
|
promoteCommand,
|
|
9724
9942
|
redeployCommand,
|
|
9725
|
-
|
|
9943
|
+
listSubcommand14,
|
|
9726
9944
|
listVersionsSubcommand,
|
|
9727
9945
|
addSubcommand9,
|
|
9728
9946
|
uploadSubcommand,
|
|
@@ -9741,17 +9959,17 @@ export {
|
|
|
9741
9959
|
fetchSubcommand,
|
|
9742
9960
|
rollingReleaseCommand,
|
|
9743
9961
|
skillsCommand,
|
|
9744
|
-
|
|
9962
|
+
listSubcommand15,
|
|
9745
9963
|
targetCommand,
|
|
9746
9964
|
requestSubcommand,
|
|
9747
9965
|
addSubcommand10,
|
|
9748
|
-
|
|
9966
|
+
listSubcommand16,
|
|
9749
9967
|
switchSubcommand,
|
|
9750
9968
|
inviteSubcommand,
|
|
9751
9969
|
ssoSubcommand,
|
|
9752
9970
|
membersSubcommand2,
|
|
9753
9971
|
teamsCommand,
|
|
9754
|
-
|
|
9972
|
+
listSubcommand17,
|
|
9755
9973
|
addSubcommand11,
|
|
9756
9974
|
removeSubcommand14,
|
|
9757
9975
|
tokensCommand,
|
|
@@ -9766,7 +9984,7 @@ export {
|
|
|
9766
9984
|
upgradeCommand,
|
|
9767
9985
|
usageCommand,
|
|
9768
9986
|
whoamiCommand,
|
|
9769
|
-
|
|
9987
|
+
listSubcommand18,
|
|
9770
9988
|
putSubcommand,
|
|
9771
9989
|
delSubcommand,
|
|
9772
9990
|
copySubcommand,
|
|
@@ -9779,7 +9997,7 @@ export {
|
|
|
9779
9997
|
getStoreInfoSubcommand,
|
|
9780
9998
|
listStoresSubcommand,
|
|
9781
9999
|
blobCommand,
|
|
9782
|
-
|
|
10000
|
+
listSubcommand19,
|
|
9783
10001
|
getSubcommand4,
|
|
9784
10002
|
createSubcommand6,
|
|
9785
10003
|
removeSubcommand15,
|