vercel 51.4.0 → 51.5.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/{chunk-PBGN54ZH.js → chunk-6CWW4JIG.js} +1 -1
- package/dist/chunks/{chunk-4RBF6ZDU.js → chunk-BHDZCUTT.js} +13 -31
- package/dist/chunks/{chunk-3GDNTBCE.js → chunk-FBY3IEDZ.js} +1 -1
- package/dist/chunks/{chunk-ELUNQCFN.js → chunk-QIHIANBF.js} +5 -3
- package/dist/chunks/{chunk-UJ4JXXED.js → chunk-SG4QOQTF.js} +216 -77
- package/dist/chunks/{query-VNBKOI65.js → query-X6Q4ZSZO.js} +6 -4
- package/dist/chunks/{schema-FUOKCZTW.js → schema-IMD4VV73.js} +49 -19
- package/dist/commands/deploy/index.js +16 -16
- package/dist/commands/env/index.js +2 -2
- package/dist/commands/link/index.js +2 -2
- package/dist/commands-bulk.js +2297 -1379
- package/dist/help.js +1 -1
- package/dist/index.js +33 -12
- package/dist/version.mjs +1 -1
- package/package.json +12 -12
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "./chunk-CRZM5WM2.js";
|
|
10
10
|
import {
|
|
11
11
|
metricsCommand
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-BHDZCUTT.js";
|
|
13
13
|
import {
|
|
14
14
|
devCommand
|
|
15
15
|
} from "./chunk-BJQTGP42.js";
|
|
@@ -1316,6 +1316,58 @@ var certsCommand = {
|
|
|
1316
1316
|
]
|
|
1317
1317
|
};
|
|
1318
1318
|
|
|
1319
|
+
// src/commands/connex/command.ts
|
|
1320
|
+
var createSubcommand2 = {
|
|
1321
|
+
name: "create",
|
|
1322
|
+
aliases: [],
|
|
1323
|
+
description: "Create a new Connex client",
|
|
1324
|
+
arguments: [
|
|
1325
|
+
{
|
|
1326
|
+
name: "type",
|
|
1327
|
+
required: true
|
|
1328
|
+
}
|
|
1329
|
+
],
|
|
1330
|
+
options: [
|
|
1331
|
+
{
|
|
1332
|
+
name: "name",
|
|
1333
|
+
shorthand: "n",
|
|
1334
|
+
type: String,
|
|
1335
|
+
argument: "NAME",
|
|
1336
|
+
deprecated: false,
|
|
1337
|
+
description: "Name of the Connex client"
|
|
1338
|
+
},
|
|
1339
|
+
formatOption
|
|
1340
|
+
],
|
|
1341
|
+
examples: [
|
|
1342
|
+
{
|
|
1343
|
+
name: "Create a Slack app",
|
|
1344
|
+
value: `${packageName} connex create slack`
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
name: "Create with a custom name",
|
|
1348
|
+
value: `${packageName} connex create slack --name my-bot`
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
name: "Output as JSON",
|
|
1352
|
+
value: `${packageName} connex create slack --format=json`
|
|
1353
|
+
}
|
|
1354
|
+
]
|
|
1355
|
+
};
|
|
1356
|
+
var connexCommand = {
|
|
1357
|
+
name: "connex",
|
|
1358
|
+
aliases: [],
|
|
1359
|
+
description: "Manage Vercel Connect clients",
|
|
1360
|
+
arguments: [],
|
|
1361
|
+
options: [],
|
|
1362
|
+
subcommands: [createSubcommand2],
|
|
1363
|
+
examples: [
|
|
1364
|
+
{
|
|
1365
|
+
name: "Create a Slack app",
|
|
1366
|
+
value: `${packageName} connex create slack`
|
|
1367
|
+
}
|
|
1368
|
+
]
|
|
1369
|
+
};
|
|
1370
|
+
|
|
1319
1371
|
// src/commands/contract/command.ts
|
|
1320
1372
|
var contractCommand = {
|
|
1321
1373
|
name: "contract",
|
|
@@ -1477,6 +1529,85 @@ var curlCommand = {
|
|
|
1477
1529
|
]
|
|
1478
1530
|
};
|
|
1479
1531
|
|
|
1532
|
+
// src/commands/deploy-hooks/command.ts
|
|
1533
|
+
var projectOption = {
|
|
1534
|
+
name: "project",
|
|
1535
|
+
shorthand: "p",
|
|
1536
|
+
type: String,
|
|
1537
|
+
argument: "PROJECT",
|
|
1538
|
+
description: "Project name or ID (defaults to the linked project)",
|
|
1539
|
+
deprecated: false
|
|
1540
|
+
};
|
|
1541
|
+
var listSubcommand5 = {
|
|
1542
|
+
name: "list",
|
|
1543
|
+
aliases: ["ls"],
|
|
1544
|
+
description: "List deploy hooks for a project",
|
|
1545
|
+
arguments: [],
|
|
1546
|
+
options: [formatOption, projectOption],
|
|
1547
|
+
examples: [
|
|
1548
|
+
{
|
|
1549
|
+
name: "List deploy hooks as JSON",
|
|
1550
|
+
value: `${packageName} deploy-hooks ls --format json`
|
|
1551
|
+
}
|
|
1552
|
+
]
|
|
1553
|
+
};
|
|
1554
|
+
var createSubcommand3 = {
|
|
1555
|
+
name: "create",
|
|
1556
|
+
aliases: ["add"],
|
|
1557
|
+
description: "Create a deploy hook for a Git branch",
|
|
1558
|
+
arguments: [
|
|
1559
|
+
{
|
|
1560
|
+
name: "name",
|
|
1561
|
+
required: false
|
|
1562
|
+
}
|
|
1563
|
+
],
|
|
1564
|
+
options: [
|
|
1565
|
+
{
|
|
1566
|
+
name: "ref",
|
|
1567
|
+
shorthand: "r",
|
|
1568
|
+
type: String,
|
|
1569
|
+
argument: "BRANCH",
|
|
1570
|
+
deprecated: false,
|
|
1571
|
+
description: "Git branch ref to deploy when the hook URL is triggered"
|
|
1572
|
+
},
|
|
1573
|
+
projectOption
|
|
1574
|
+
],
|
|
1575
|
+
examples: [
|
|
1576
|
+
{
|
|
1577
|
+
name: "Create a hook that deploys `main`",
|
|
1578
|
+
value: `${packageName} deploy-hooks create cms-rebuild --ref main`
|
|
1579
|
+
}
|
|
1580
|
+
]
|
|
1581
|
+
};
|
|
1582
|
+
var removeSubcommand3 = {
|
|
1583
|
+
name: "remove",
|
|
1584
|
+
aliases: ["rm", "delete"],
|
|
1585
|
+
description: "Remove a deploy hook by id",
|
|
1586
|
+
arguments: [
|
|
1587
|
+
{
|
|
1588
|
+
name: "id",
|
|
1589
|
+
required: true
|
|
1590
|
+
}
|
|
1591
|
+
],
|
|
1592
|
+
options: [
|
|
1593
|
+
projectOption,
|
|
1594
|
+
{
|
|
1595
|
+
...yesOption,
|
|
1596
|
+
description: "Skip the confirmation prompt when removing a deploy hook"
|
|
1597
|
+
}
|
|
1598
|
+
],
|
|
1599
|
+
examples: []
|
|
1600
|
+
};
|
|
1601
|
+
var deployHooksCommand = {
|
|
1602
|
+
name: "deploy-hooks",
|
|
1603
|
+
aliases: ["deploy-hook"],
|
|
1604
|
+
description: "Manage deploy hooks for Git-triggered builds",
|
|
1605
|
+
arguments: [],
|
|
1606
|
+
subcommands: [listSubcommand5, createSubcommand3, removeSubcommand3],
|
|
1607
|
+
options: [],
|
|
1608
|
+
examples: []
|
|
1609
|
+
};
|
|
1610
|
+
|
|
1480
1611
|
// src/commands/dns/command.ts
|
|
1481
1612
|
var importSubcommand = {
|
|
1482
1613
|
name: "import",
|
|
@@ -1495,7 +1626,7 @@ var importSubcommand = {
|
|
|
1495
1626
|
options: [],
|
|
1496
1627
|
examples: []
|
|
1497
1628
|
};
|
|
1498
|
-
var
|
|
1629
|
+
var listSubcommand6 = {
|
|
1499
1630
|
name: "list",
|
|
1500
1631
|
aliases: ["ls"],
|
|
1501
1632
|
description: "List all DNS entries for a domain",
|
|
@@ -1526,7 +1657,7 @@ var addSubcommand4 = {
|
|
|
1526
1657
|
options: [],
|
|
1527
1658
|
examples: []
|
|
1528
1659
|
};
|
|
1529
|
-
var
|
|
1660
|
+
var removeSubcommand4 = {
|
|
1530
1661
|
name: "remove",
|
|
1531
1662
|
aliases: ["rm"],
|
|
1532
1663
|
description: "Remove a DNS entry using its ID",
|
|
@@ -1552,8 +1683,8 @@ var dnsCommand = {
|
|
|
1552
1683
|
subcommands: [
|
|
1553
1684
|
addSubcommand4,
|
|
1554
1685
|
importSubcommand,
|
|
1555
|
-
|
|
1556
|
-
|
|
1686
|
+
listSubcommand6,
|
|
1687
|
+
removeSubcommand4
|
|
1557
1688
|
],
|
|
1558
1689
|
options: [],
|
|
1559
1690
|
examples: [
|
|
@@ -1603,7 +1734,7 @@ var dnsCommand = {
|
|
|
1603
1734
|
};
|
|
1604
1735
|
|
|
1605
1736
|
// src/commands/domains/command.ts
|
|
1606
|
-
var
|
|
1737
|
+
var listSubcommand7 = {
|
|
1607
1738
|
name: "list",
|
|
1608
1739
|
aliases: ["ls"],
|
|
1609
1740
|
description: "Show all domains in a list",
|
|
@@ -1662,7 +1793,7 @@ var addSubcommand5 = {
|
|
|
1662
1793
|
}
|
|
1663
1794
|
]
|
|
1664
1795
|
};
|
|
1665
|
-
var
|
|
1796
|
+
var removeSubcommand5 = {
|
|
1666
1797
|
name: "remove",
|
|
1667
1798
|
aliases: ["rm"],
|
|
1668
1799
|
description: "Remove ownership of a domain name from a Vercel Team",
|
|
@@ -1764,21 +1895,21 @@ var domainsCommand = {
|
|
|
1764
1895
|
description: "Manage domains",
|
|
1765
1896
|
arguments: [],
|
|
1766
1897
|
subcommands: [
|
|
1767
|
-
|
|
1898
|
+
listSubcommand7,
|
|
1768
1899
|
inspectSubcommand,
|
|
1769
1900
|
addSubcommand5,
|
|
1770
1901
|
buySubcommand,
|
|
1771
1902
|
moveSubcommand,
|
|
1772
1903
|
priceSubcommand,
|
|
1773
1904
|
transferInSubcommand,
|
|
1774
|
-
|
|
1905
|
+
removeSubcommand5
|
|
1775
1906
|
],
|
|
1776
1907
|
options: [],
|
|
1777
1908
|
examples: []
|
|
1778
1909
|
};
|
|
1779
1910
|
|
|
1780
1911
|
// src/commands/edge-config/command.ts
|
|
1781
|
-
var
|
|
1912
|
+
var listSubcommand8 = {
|
|
1782
1913
|
name: "list",
|
|
1783
1914
|
aliases: ["ls"],
|
|
1784
1915
|
description: "List Edge Config stores for the current team",
|
|
@@ -1864,7 +1995,7 @@ var updateSubcommand = {
|
|
|
1864
1995
|
],
|
|
1865
1996
|
examples: []
|
|
1866
1997
|
};
|
|
1867
|
-
var
|
|
1998
|
+
var removeSubcommand6 = {
|
|
1868
1999
|
name: "remove",
|
|
1869
2000
|
aliases: ["rm", "delete"],
|
|
1870
2001
|
description: "Delete an Edge Config store",
|
|
@@ -1938,11 +2069,11 @@ var edgeConfigCommand = {
|
|
|
1938
2069
|
description: "Manage Edge Config stores (dashboard API parity)",
|
|
1939
2070
|
arguments: [],
|
|
1940
2071
|
subcommands: [
|
|
1941
|
-
|
|
2072
|
+
listSubcommand8,
|
|
1942
2073
|
addSubcommand6,
|
|
1943
2074
|
getSubcommand,
|
|
1944
2075
|
updateSubcommand,
|
|
1945
|
-
|
|
2076
|
+
removeSubcommand6,
|
|
1946
2077
|
itemsSubcommand,
|
|
1947
2078
|
tokensSubcommand
|
|
1948
2079
|
],
|
|
@@ -2840,7 +2971,7 @@ var firewallCommand = {
|
|
|
2840
2971
|
};
|
|
2841
2972
|
|
|
2842
2973
|
// src/commands/flags/command.ts
|
|
2843
|
-
var
|
|
2974
|
+
var listSubcommand9 = {
|
|
2844
2975
|
name: "list",
|
|
2845
2976
|
aliases: ["ls"],
|
|
2846
2977
|
description: "List all feature flags for the current project",
|
|
@@ -2896,7 +3027,7 @@ var inspectSubcommand2 = {
|
|
|
2896
3027
|
}
|
|
2897
3028
|
]
|
|
2898
3029
|
};
|
|
2899
|
-
var
|
|
3030
|
+
var createSubcommand4 = {
|
|
2900
3031
|
name: "create",
|
|
2901
3032
|
aliases: ["add"],
|
|
2902
3033
|
description: "Create a new feature flag",
|
|
@@ -3174,7 +3305,7 @@ var rolloutSubcommand = {
|
|
|
3174
3305
|
}
|
|
3175
3306
|
]
|
|
3176
3307
|
};
|
|
3177
|
-
var
|
|
3308
|
+
var removeSubcommand7 = {
|
|
3178
3309
|
name: "remove",
|
|
3179
3310
|
aliases: ["rm"],
|
|
3180
3311
|
description: "Delete a feature flag",
|
|
@@ -3486,14 +3617,14 @@ var flagsCommand = {
|
|
|
3486
3617
|
hidden: true,
|
|
3487
3618
|
arguments: [],
|
|
3488
3619
|
subcommands: [
|
|
3489
|
-
|
|
3620
|
+
listSubcommand9,
|
|
3490
3621
|
inspectSubcommand2,
|
|
3491
|
-
|
|
3622
|
+
createSubcommand4,
|
|
3492
3623
|
openSubcommand,
|
|
3493
3624
|
updateSubcommand2,
|
|
3494
3625
|
setSubcommand2,
|
|
3495
3626
|
rolloutSubcommand,
|
|
3496
|
-
|
|
3627
|
+
removeSubcommand7,
|
|
3497
3628
|
archiveSubcommand,
|
|
3498
3629
|
disableSubcommand,
|
|
3499
3630
|
enableSubcommand,
|
|
@@ -4009,7 +4140,7 @@ var installationsSubcommand = {
|
|
|
4009
4140
|
}
|
|
4010
4141
|
]
|
|
4011
4142
|
};
|
|
4012
|
-
var
|
|
4143
|
+
var listSubcommand10 = {
|
|
4013
4144
|
name: "list",
|
|
4014
4145
|
aliases: ["ls"],
|
|
4015
4146
|
description: "List resources from marketplace integrations for the current project",
|
|
@@ -4192,7 +4323,7 @@ var updateSubcommand3 = {
|
|
|
4192
4323
|
}
|
|
4193
4324
|
]
|
|
4194
4325
|
};
|
|
4195
|
-
var
|
|
4326
|
+
var removeSubcommand8 = {
|
|
4196
4327
|
name: "remove",
|
|
4197
4328
|
aliases: [],
|
|
4198
4329
|
description: "Uninstalls a marketplace integration. Resources must be removed first using `integration-resource remove`.",
|
|
@@ -4285,10 +4416,10 @@ var integrationCommand = {
|
|
|
4285
4416
|
discoverSubcommand,
|
|
4286
4417
|
guideSubcommand,
|
|
4287
4418
|
installationsSubcommand,
|
|
4288
|
-
|
|
4419
|
+
listSubcommand10,
|
|
4289
4420
|
openSubcommand2,
|
|
4290
4421
|
updateSubcommand3,
|
|
4291
|
-
|
|
4422
|
+
removeSubcommand8
|
|
4292
4423
|
],
|
|
4293
4424
|
examples: [
|
|
4294
4425
|
{
|
|
@@ -4323,7 +4454,7 @@ var installCommand = {
|
|
|
4323
4454
|
};
|
|
4324
4455
|
|
|
4325
4456
|
// src/commands/integration-resource/command.ts
|
|
4326
|
-
var
|
|
4457
|
+
var removeSubcommand9 = {
|
|
4327
4458
|
name: "remove",
|
|
4328
4459
|
aliases: ["rm"],
|
|
4329
4460
|
description: "Delete an integration resource",
|
|
@@ -4474,7 +4605,7 @@ var integrationResourceCommand = {
|
|
|
4474
4605
|
subcommands: [
|
|
4475
4606
|
createThresholdSubcommand,
|
|
4476
4607
|
disconnectSubcommand2,
|
|
4477
|
-
|
|
4608
|
+
removeSubcommand9
|
|
4478
4609
|
],
|
|
4479
4610
|
examples: []
|
|
4480
4611
|
};
|
|
@@ -5115,7 +5246,7 @@ var installSubcommand = {
|
|
|
5115
5246
|
}
|
|
5116
5247
|
]
|
|
5117
5248
|
};
|
|
5118
|
-
var
|
|
5249
|
+
var removeSubcommand10 = {
|
|
5119
5250
|
name: "remove",
|
|
5120
5251
|
aliases: ["rm", "uninstall"],
|
|
5121
5252
|
description: "Uninstall a Vercel App from the team",
|
|
@@ -5143,7 +5274,7 @@ var oauthAppsCommand = {
|
|
|
5143
5274
|
registerSubcommand,
|
|
5144
5275
|
dismissSubcommand,
|
|
5145
5276
|
installSubcommand,
|
|
5146
|
-
|
|
5277
|
+
removeSubcommand10
|
|
5147
5278
|
],
|
|
5148
5279
|
options: [],
|
|
5149
5280
|
examples: []
|
|
@@ -5298,7 +5429,7 @@ var inspectSubcommand3 = {
|
|
|
5298
5429
|
}
|
|
5299
5430
|
]
|
|
5300
5431
|
};
|
|
5301
|
-
var
|
|
5432
|
+
var listSubcommand11 = {
|
|
5302
5433
|
name: "list",
|
|
5303
5434
|
aliases: ["ls"],
|
|
5304
5435
|
description: "Show all projects in the selected scope",
|
|
@@ -5327,7 +5458,7 @@ var listSubcommand10 = {
|
|
|
5327
5458
|
}
|
|
5328
5459
|
]
|
|
5329
5460
|
};
|
|
5330
|
-
var
|
|
5461
|
+
var removeSubcommand11 = {
|
|
5331
5462
|
name: "remove",
|
|
5332
5463
|
aliases: ["rm"],
|
|
5333
5464
|
description: "Delete a project",
|
|
@@ -5677,14 +5808,14 @@ var projectCommand = {
|
|
|
5677
5808
|
accessSummarySubcommand,
|
|
5678
5809
|
checksSubcommand,
|
|
5679
5810
|
inspectSubcommand3,
|
|
5680
|
-
|
|
5811
|
+
listSubcommand11,
|
|
5681
5812
|
membersSubcommand,
|
|
5682
5813
|
accessGroupsSubcommand,
|
|
5683
5814
|
protectionSubcommand,
|
|
5684
5815
|
webAnalyticsSubcommand,
|
|
5685
5816
|
speedInsightsSubcommand,
|
|
5686
5817
|
renameSubcommand,
|
|
5687
|
-
|
|
5818
|
+
removeSubcommand11,
|
|
5688
5819
|
tokenSubcommand
|
|
5689
5820
|
],
|
|
5690
5821
|
options: [],
|
|
@@ -5797,7 +5928,7 @@ var redeployCommand = {
|
|
|
5797
5928
|
};
|
|
5798
5929
|
|
|
5799
5930
|
// src/commands/redirects/command.ts
|
|
5800
|
-
var
|
|
5931
|
+
var listSubcommand12 = {
|
|
5801
5932
|
name: "list",
|
|
5802
5933
|
aliases: ["ls"],
|
|
5803
5934
|
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.",
|
|
@@ -5986,7 +6117,7 @@ var uploadSubcommand = {
|
|
|
5986
6117
|
}
|
|
5987
6118
|
]
|
|
5988
6119
|
};
|
|
5989
|
-
var
|
|
6120
|
+
var removeSubcommand12 = {
|
|
5990
6121
|
name: "remove",
|
|
5991
6122
|
aliases: ["rm"],
|
|
5992
6123
|
description: "Remove a redirect",
|
|
@@ -6061,11 +6192,11 @@ var redirectsCommand = {
|
|
|
6061
6192
|
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.",
|
|
6062
6193
|
arguments: [],
|
|
6063
6194
|
subcommands: [
|
|
6064
|
-
|
|
6195
|
+
listSubcommand12,
|
|
6065
6196
|
listVersionsSubcommand,
|
|
6066
6197
|
addSubcommand9,
|
|
6067
6198
|
uploadSubcommand,
|
|
6068
|
-
|
|
6199
|
+
removeSubcommand12,
|
|
6069
6200
|
promoteSubcommand,
|
|
6070
6201
|
restoreSubcommand
|
|
6071
6202
|
],
|
|
@@ -6448,7 +6579,7 @@ var skillsCommand = {
|
|
|
6448
6579
|
};
|
|
6449
6580
|
|
|
6450
6581
|
// src/commands/target/command.ts
|
|
6451
|
-
var
|
|
6582
|
+
var listSubcommand13 = {
|
|
6452
6583
|
name: "list",
|
|
6453
6584
|
aliases: ["ls"],
|
|
6454
6585
|
description: "List targets defined for the current Project",
|
|
@@ -6472,7 +6603,7 @@ var targetCommand = {
|
|
|
6472
6603
|
aliases: ["targets"],
|
|
6473
6604
|
description: `Manage your Vercel Project's "targets" (custom environments).`,
|
|
6474
6605
|
arguments: [],
|
|
6475
|
-
subcommands: [
|
|
6606
|
+
subcommands: [listSubcommand13],
|
|
6476
6607
|
options: [],
|
|
6477
6608
|
examples: []
|
|
6478
6609
|
};
|
|
@@ -6532,7 +6663,7 @@ var addSubcommand10 = {
|
|
|
6532
6663
|
}
|
|
6533
6664
|
]
|
|
6534
6665
|
};
|
|
6535
|
-
var
|
|
6666
|
+
var listSubcommand14 = {
|
|
6536
6667
|
name: "list",
|
|
6537
6668
|
aliases: ["ls"],
|
|
6538
6669
|
description: "Show all teams that you're a member of",
|
|
@@ -6638,7 +6769,7 @@ var teamsCommand = {
|
|
|
6638
6769
|
subcommands: [
|
|
6639
6770
|
addSubcommand10,
|
|
6640
6771
|
inviteSubcommand,
|
|
6641
|
-
|
|
6772
|
+
listSubcommand14,
|
|
6642
6773
|
requestSubcommand,
|
|
6643
6774
|
switchSubcommand,
|
|
6644
6775
|
ssoSubcommand,
|
|
@@ -6649,7 +6780,7 @@ var teamsCommand = {
|
|
|
6649
6780
|
};
|
|
6650
6781
|
|
|
6651
6782
|
// src/commands/tokens/command.ts
|
|
6652
|
-
var
|
|
6783
|
+
var listSubcommand15 = {
|
|
6653
6784
|
name: "list",
|
|
6654
6785
|
aliases: ["ls"],
|
|
6655
6786
|
description: "List your personal authentication tokens",
|
|
@@ -6699,7 +6830,7 @@ var addSubcommand11 = {
|
|
|
6699
6830
|
}
|
|
6700
6831
|
]
|
|
6701
6832
|
};
|
|
6702
|
-
var
|
|
6833
|
+
var removeSubcommand13 = {
|
|
6703
6834
|
name: "remove",
|
|
6704
6835
|
aliases: ["rm", "delete"],
|
|
6705
6836
|
description: "Delete a personal authentication token by ID",
|
|
@@ -6722,7 +6853,7 @@ var tokensCommand = {
|
|
|
6722
6853
|
aliases: [],
|
|
6723
6854
|
description: "Manage your personal Vercel authentication tokens",
|
|
6724
6855
|
arguments: [],
|
|
6725
|
-
subcommands: [addSubcommand11,
|
|
6856
|
+
subcommands: [addSubcommand11, listSubcommand15, removeSubcommand13],
|
|
6726
6857
|
options: [],
|
|
6727
6858
|
examples: []
|
|
6728
6859
|
};
|
|
@@ -6935,7 +7066,7 @@ var environmentOption = {
|
|
|
6935
7066
|
argument: "ENV",
|
|
6936
7067
|
description: "Environment to connect (can be repeated: production, preview, development). Defaults to all when --yes is used."
|
|
6937
7068
|
};
|
|
6938
|
-
var
|
|
7069
|
+
var listSubcommand16 = {
|
|
6939
7070
|
name: "list",
|
|
6940
7071
|
aliases: ["ls"],
|
|
6941
7072
|
description: "List all files in the Blob store",
|
|
@@ -7303,7 +7434,7 @@ var blobCommand = {
|
|
|
7303
7434
|
description: "Interact with Vercel Blob",
|
|
7304
7435
|
arguments: [],
|
|
7305
7436
|
subcommands: [
|
|
7306
|
-
|
|
7437
|
+
listSubcommand16,
|
|
7307
7438
|
putSubcommand,
|
|
7308
7439
|
getSubcommand2,
|
|
7309
7440
|
delSubcommand,
|
|
@@ -7328,7 +7459,7 @@ var blobCommand = {
|
|
|
7328
7459
|
};
|
|
7329
7460
|
|
|
7330
7461
|
// src/commands/webhooks/command.ts
|
|
7331
|
-
var
|
|
7462
|
+
var listSubcommand17 = {
|
|
7332
7463
|
name: "list",
|
|
7333
7464
|
aliases: ["ls"],
|
|
7334
7465
|
description: "Show all webhooks",
|
|
@@ -7355,7 +7486,7 @@ var getSubcommand3 = {
|
|
|
7355
7486
|
options: [formatOption],
|
|
7356
7487
|
examples: []
|
|
7357
7488
|
};
|
|
7358
|
-
var
|
|
7489
|
+
var createSubcommand5 = {
|
|
7359
7490
|
name: "create",
|
|
7360
7491
|
aliases: ["add"],
|
|
7361
7492
|
description: "Create a new webhook",
|
|
@@ -7390,7 +7521,7 @@ var createSubcommand3 = {
|
|
|
7390
7521
|
}
|
|
7391
7522
|
]
|
|
7392
7523
|
};
|
|
7393
|
-
var
|
|
7524
|
+
var removeSubcommand14 = {
|
|
7394
7525
|
name: "remove",
|
|
7395
7526
|
aliases: ["rm", "delete"],
|
|
7396
7527
|
description: "Remove a webhook",
|
|
@@ -7414,10 +7545,10 @@ var webhooksCommand = {
|
|
|
7414
7545
|
description: "Manage webhooks",
|
|
7415
7546
|
arguments: [],
|
|
7416
7547
|
subcommands: [
|
|
7417
|
-
|
|
7548
|
+
listSubcommand17,
|
|
7418
7549
|
getSubcommand3,
|
|
7419
|
-
|
|
7420
|
-
|
|
7550
|
+
createSubcommand5,
|
|
7551
|
+
removeSubcommand14
|
|
7421
7552
|
],
|
|
7422
7553
|
options: [],
|
|
7423
7554
|
examples: []
|
|
@@ -7441,6 +7572,7 @@ var commandsStructs = [
|
|
|
7441
7572
|
cronsCommand,
|
|
7442
7573
|
curlCommand,
|
|
7443
7574
|
deployCommand,
|
|
7575
|
+
deployHooksCommand,
|
|
7444
7576
|
devCommand,
|
|
7445
7577
|
dnsCommand,
|
|
7446
7578
|
domainsCommand,
|
|
@@ -7489,8 +7621,9 @@ var commandsStructs = [
|
|
|
7489
7621
|
if (process.env.FF_GUIDANCE_MODE) {
|
|
7490
7622
|
commandsStructs.push(guidanceCommand);
|
|
7491
7623
|
}
|
|
7492
|
-
|
|
7493
|
-
|
|
7624
|
+
commandsStructs.push(metricsCommand);
|
|
7625
|
+
if (process.env.FF_CONNEX_ENABLED) {
|
|
7626
|
+
commandsStructs.push(connexCommand);
|
|
7494
7627
|
}
|
|
7495
7628
|
function getCommandAliases(command) {
|
|
7496
7629
|
return [command.name].concat(command.aliases);
|
|
@@ -7542,6 +7675,8 @@ export {
|
|
|
7542
7675
|
listSubcommand3,
|
|
7543
7676
|
addSubcommand2 as addSubcommand,
|
|
7544
7677
|
certsCommand,
|
|
7678
|
+
createSubcommand2,
|
|
7679
|
+
connexCommand,
|
|
7545
7680
|
contractCommand,
|
|
7546
7681
|
addSubcommand3 as addSubcommand2,
|
|
7547
7682
|
listSubcommand4,
|
|
@@ -7552,25 +7687,29 @@ export {
|
|
|
7552
7687
|
initSubcommand,
|
|
7553
7688
|
continueSubcommand,
|
|
7554
7689
|
deployCommand,
|
|
7555
|
-
importSubcommand,
|
|
7556
7690
|
listSubcommand5,
|
|
7557
|
-
|
|
7691
|
+
createSubcommand3,
|
|
7558
7692
|
removeSubcommand3,
|
|
7559
|
-
|
|
7693
|
+
deployHooksCommand,
|
|
7694
|
+
importSubcommand,
|
|
7560
7695
|
listSubcommand6,
|
|
7696
|
+
addSubcommand4 as addSubcommand3,
|
|
7697
|
+
removeSubcommand4,
|
|
7698
|
+
dnsCommand,
|
|
7699
|
+
listSubcommand7,
|
|
7561
7700
|
inspectSubcommand,
|
|
7562
7701
|
addSubcommand5 as addSubcommand4,
|
|
7563
|
-
|
|
7702
|
+
removeSubcommand5,
|
|
7564
7703
|
priceSubcommand,
|
|
7565
7704
|
buySubcommand,
|
|
7566
7705
|
moveSubcommand,
|
|
7567
7706
|
transferInSubcommand,
|
|
7568
7707
|
domainsCommand,
|
|
7569
|
-
|
|
7708
|
+
listSubcommand8,
|
|
7570
7709
|
addSubcommand6 as addSubcommand5,
|
|
7571
7710
|
getSubcommand,
|
|
7572
7711
|
updateSubcommand,
|
|
7573
|
-
|
|
7712
|
+
removeSubcommand6,
|
|
7574
7713
|
itemsSubcommand,
|
|
7575
7714
|
tokensSubcommand,
|
|
7576
7715
|
edgeConfigCommand,
|
|
@@ -7602,14 +7741,14 @@ export {
|
|
|
7602
7741
|
systemMitigationsResumeSubcommand,
|
|
7603
7742
|
systemMitigationsSubcommand,
|
|
7604
7743
|
firewallCommand,
|
|
7605
|
-
|
|
7744
|
+
listSubcommand9,
|
|
7606
7745
|
inspectSubcommand2,
|
|
7607
|
-
|
|
7746
|
+
createSubcommand4,
|
|
7608
7747
|
openSubcommand,
|
|
7609
7748
|
updateSubcommand2,
|
|
7610
7749
|
setSubcommand2,
|
|
7611
7750
|
rolloutSubcommand,
|
|
7612
|
-
|
|
7751
|
+
removeSubcommand7,
|
|
7613
7752
|
archiveSubcommand,
|
|
7614
7753
|
disableSubcommand,
|
|
7615
7754
|
enableSubcommand,
|
|
@@ -7634,15 +7773,15 @@ export {
|
|
|
7634
7773
|
acceptTermsSubcommand,
|
|
7635
7774
|
openSubcommand2,
|
|
7636
7775
|
installationsSubcommand,
|
|
7637
|
-
|
|
7776
|
+
listSubcommand10,
|
|
7638
7777
|
discoverSubcommand,
|
|
7639
7778
|
balanceSubcommand,
|
|
7640
7779
|
updateSubcommand3,
|
|
7641
|
-
|
|
7780
|
+
removeSubcommand8,
|
|
7642
7781
|
guideSubcommand,
|
|
7643
7782
|
integrationCommand,
|
|
7644
7783
|
installCommand,
|
|
7645
|
-
|
|
7784
|
+
removeSubcommand9,
|
|
7646
7785
|
disconnectSubcommand2,
|
|
7647
7786
|
createThresholdSubcommand,
|
|
7648
7787
|
integrationResourceCommand,
|
|
@@ -7664,7 +7803,7 @@ export {
|
|
|
7664
7803
|
registerSubcommand,
|
|
7665
7804
|
dismissSubcommand,
|
|
7666
7805
|
installSubcommand,
|
|
7667
|
-
|
|
7806
|
+
removeSubcommand10,
|
|
7668
7807
|
oauthAppsCommand,
|
|
7669
7808
|
openCommand,
|
|
7670
7809
|
addSubcommand8,
|
|
@@ -7672,8 +7811,8 @@ export {
|
|
|
7672
7811
|
checksRemoveFlags,
|
|
7673
7812
|
checksSubcommand,
|
|
7674
7813
|
inspectSubcommand3,
|
|
7675
|
-
|
|
7676
|
-
|
|
7814
|
+
listSubcommand11,
|
|
7815
|
+
removeSubcommand11,
|
|
7677
7816
|
renameSubcommand,
|
|
7678
7817
|
tokenSubcommand,
|
|
7679
7818
|
accessSummarySubcommand,
|
|
@@ -7686,11 +7825,11 @@ export {
|
|
|
7686
7825
|
statusSubcommand2,
|
|
7687
7826
|
promoteCommand,
|
|
7688
7827
|
redeployCommand,
|
|
7689
|
-
|
|
7828
|
+
listSubcommand12,
|
|
7690
7829
|
listVersionsSubcommand,
|
|
7691
7830
|
addSubcommand9,
|
|
7692
7831
|
uploadSubcommand,
|
|
7693
|
-
|
|
7832
|
+
removeSubcommand12,
|
|
7694
7833
|
promoteSubcommand,
|
|
7695
7834
|
restoreSubcommand,
|
|
7696
7835
|
redirectsCommand,
|
|
@@ -7705,19 +7844,19 @@ export {
|
|
|
7705
7844
|
fetchSubcommand,
|
|
7706
7845
|
rollingReleaseCommand,
|
|
7707
7846
|
skillsCommand,
|
|
7708
|
-
|
|
7847
|
+
listSubcommand13,
|
|
7709
7848
|
targetCommand,
|
|
7710
7849
|
requestSubcommand,
|
|
7711
7850
|
addSubcommand10,
|
|
7712
|
-
|
|
7851
|
+
listSubcommand14,
|
|
7713
7852
|
switchSubcommand,
|
|
7714
7853
|
inviteSubcommand,
|
|
7715
7854
|
ssoSubcommand,
|
|
7716
7855
|
membersSubcommand2,
|
|
7717
7856
|
teamsCommand,
|
|
7718
|
-
|
|
7857
|
+
listSubcommand15,
|
|
7719
7858
|
addSubcommand11,
|
|
7720
|
-
|
|
7859
|
+
removeSubcommand13,
|
|
7721
7860
|
tokensCommand,
|
|
7722
7861
|
statusSubcommand4,
|
|
7723
7862
|
enableSubcommand3,
|
|
@@ -7727,7 +7866,7 @@ export {
|
|
|
7727
7866
|
upgradeCommand,
|
|
7728
7867
|
usageCommand,
|
|
7729
7868
|
whoamiCommand,
|
|
7730
|
-
|
|
7869
|
+
listSubcommand16,
|
|
7731
7870
|
putSubcommand,
|
|
7732
7871
|
delSubcommand,
|
|
7733
7872
|
copySubcommand,
|
|
@@ -7741,10 +7880,10 @@ export {
|
|
|
7741
7880
|
getStoreInfoSubcommand,
|
|
7742
7881
|
listStoresSubcommand,
|
|
7743
7882
|
blobCommand,
|
|
7744
|
-
|
|
7883
|
+
listSubcommand17,
|
|
7745
7884
|
getSubcommand3,
|
|
7746
|
-
|
|
7747
|
-
|
|
7885
|
+
createSubcommand5,
|
|
7886
|
+
removeSubcommand14,
|
|
7748
7887
|
webhooksCommand,
|
|
7749
7888
|
getCommandAliases,
|
|
7750
7889
|
commands,
|