vercel 50.22.0 → 50.22.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/{chunk-E37ZEXRP.js → chunk-74F7S6QJ.js} +1 -1
- package/dist/chunks/{chunk-WDZREVBU.js → chunk-LFXZ5E5S.js} +44 -7
- package/dist/chunks/{chunk-JC5EOTR2.js → chunk-PQABRSPJ.js} +2 -2
- package/dist/commands/deploy/index.js +3 -3
- package/dist/commands/env/index.js +1 -1
- package/dist/commands/link/index.js +1 -1
- package/dist/commands-bulk.js +488 -266
- package/dist/index.js +2 -2
- package/dist/version.mjs +1 -1
- package/package.json +10 -10
|
@@ -2072,14 +2072,18 @@ var addSubcommand6 = {
|
|
|
2072
2072
|
var openSubcommand = {
|
|
2073
2073
|
name: "open",
|
|
2074
2074
|
aliases: [],
|
|
2075
|
-
description: "Opens a marketplace integration's dashboard",
|
|
2075
|
+
description: "Opens a marketplace integration's or resource's dashboard via SSO",
|
|
2076
2076
|
arguments: [
|
|
2077
2077
|
{
|
|
2078
2078
|
name: "name",
|
|
2079
2079
|
required: true
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
name: "resource",
|
|
2083
|
+
required: false
|
|
2080
2084
|
}
|
|
2081
2085
|
],
|
|
2082
|
-
options: [],
|
|
2086
|
+
options: [formatOption],
|
|
2083
2087
|
examples: [
|
|
2084
2088
|
{
|
|
2085
2089
|
name: "Open a marketplace integration's dashboard",
|
|
@@ -2087,6 +2091,20 @@ var openSubcommand = {
|
|
|
2087
2091
|
`${packageName} integration open <integration-name>`,
|
|
2088
2092
|
`${packageName} integration open acme`
|
|
2089
2093
|
]
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
name: "Open a resource's dashboard within an integration",
|
|
2097
|
+
value: [
|
|
2098
|
+
`${packageName} integration open <integration-name> <resource-name>`,
|
|
2099
|
+
`${packageName} integration open acme my-acme-store`
|
|
2100
|
+
]
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
name: "Get the SSO link as JSON",
|
|
2104
|
+
value: [
|
|
2105
|
+
`${packageName} integration open acme --format=json`,
|
|
2106
|
+
`${packageName} integration open acme my-acme-store --format=json`
|
|
2107
|
+
]
|
|
2090
2108
|
}
|
|
2091
2109
|
]
|
|
2092
2110
|
};
|
|
@@ -2157,7 +2175,7 @@ var discoverSubcommand = {
|
|
|
2157
2175
|
},
|
|
2158
2176
|
{
|
|
2159
2177
|
name: "Discover marketplace integrations as JSON",
|
|
2160
|
-
value: [`${packageName} integration discover --json`]
|
|
2178
|
+
value: [`${packageName} integration discover --format=json`]
|
|
2161
2179
|
}
|
|
2162
2180
|
]
|
|
2163
2181
|
};
|
|
@@ -2171,7 +2189,7 @@ var balanceSubcommand = {
|
|
|
2171
2189
|
required: true
|
|
2172
2190
|
}
|
|
2173
2191
|
],
|
|
2174
|
-
options: [],
|
|
2192
|
+
options: [formatOption],
|
|
2175
2193
|
examples: [
|
|
2176
2194
|
{
|
|
2177
2195
|
name: "Show the balance(s) & threshold(s) of a marketplace integration",
|
|
@@ -2179,6 +2197,10 @@ var balanceSubcommand = {
|
|
|
2179
2197
|
`${packageName} integration balance <integration-name>`,
|
|
2180
2198
|
`${packageName} integration balance acme`
|
|
2181
2199
|
]
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
name: "Output as JSON",
|
|
2203
|
+
value: `${packageName} integration balance acme --format=json`
|
|
2182
2204
|
}
|
|
2183
2205
|
]
|
|
2184
2206
|
};
|
|
@@ -2196,7 +2218,8 @@ var removeSubcommand6 = {
|
|
|
2196
2218
|
{
|
|
2197
2219
|
...yesOption,
|
|
2198
2220
|
description: "Skip the confirmation prompt when uninstalling an integration"
|
|
2199
|
-
}
|
|
2221
|
+
},
|
|
2222
|
+
formatOption
|
|
2200
2223
|
],
|
|
2201
2224
|
examples: [
|
|
2202
2225
|
{
|
|
@@ -2205,6 +2228,10 @@ var removeSubcommand6 = {
|
|
|
2205
2228
|
`${packageName} integration remove <integration>`,
|
|
2206
2229
|
`${packageName} integration remove acme`
|
|
2207
2230
|
]
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
name: "Output as JSON",
|
|
2234
|
+
value: `${packageName} integration remove acme --format=json --yes`
|
|
2208
2235
|
}
|
|
2209
2236
|
]
|
|
2210
2237
|
};
|
|
@@ -2318,7 +2345,8 @@ var removeSubcommand7 = {
|
|
|
2318
2345
|
{
|
|
2319
2346
|
...yesOption,
|
|
2320
2347
|
description: "Skip the confirmation prompt when deleting a resource"
|
|
2321
|
-
}
|
|
2348
|
+
},
|
|
2349
|
+
formatOption
|
|
2322
2350
|
],
|
|
2323
2351
|
examples: [
|
|
2324
2352
|
{
|
|
@@ -2335,6 +2363,10 @@ var removeSubcommand7 = {
|
|
|
2335
2363
|
`${packageName} integration-resource remove my-acme-resource --disconnect-all`,
|
|
2336
2364
|
`${packageName} integration-resource remove my-acme-resource -a`
|
|
2337
2365
|
]
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
name: "Output as JSON",
|
|
2369
|
+
value: `${packageName} integration-resource remove my-acme-resource --format=json --yes`
|
|
2338
2370
|
}
|
|
2339
2371
|
]
|
|
2340
2372
|
};
|
|
@@ -2363,7 +2395,8 @@ var disconnectSubcommand2 = {
|
|
|
2363
2395
|
{
|
|
2364
2396
|
...yesOption,
|
|
2365
2397
|
description: "Skip the confirmation prompt when disconnecting a resource"
|
|
2366
|
-
}
|
|
2398
|
+
},
|
|
2399
|
+
formatOption
|
|
2367
2400
|
],
|
|
2368
2401
|
examples: [
|
|
2369
2402
|
{
|
|
@@ -2387,6 +2420,10 @@ var disconnectSubcommand2 = {
|
|
|
2387
2420
|
`${packageName} integration-resource disconnect <resource> <project>`,
|
|
2388
2421
|
`${packageName} integration-resource disconnect my-acme-resource my-project`
|
|
2389
2422
|
]
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
name: "Output as JSON",
|
|
2426
|
+
value: `${packageName} integration-resource disconnect my-acme-resource --format=json --yes`
|
|
2390
2427
|
}
|
|
2391
2428
|
]
|
|
2392
2429
|
};
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
require_dist as require_dist2,
|
|
11
11
|
sleep,
|
|
12
12
|
ua_default
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-74F7S6QJ.js";
|
|
14
14
|
import {
|
|
15
15
|
suggestNextCommands
|
|
16
16
|
} from "./chunk-2TX2KBK2.js";
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
} from "./chunk-SRPVI3PV.js";
|
|
24
24
|
import {
|
|
25
25
|
CommandTimeout
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-LFXZ5E5S.js";
|
|
27
27
|
import {
|
|
28
28
|
require_dist as require_dist3
|
|
29
29
|
} from "./chunk-BFAZVUS3.js";
|
|
@@ -13,10 +13,10 @@ import {
|
|
|
13
13
|
purchaseDomainIfAvailable,
|
|
14
14
|
require_cjs,
|
|
15
15
|
setupDomain
|
|
16
|
-
} from "../../chunks/chunk-
|
|
16
|
+
} from "../../chunks/chunk-PQABRSPJ.js";
|
|
17
17
|
import {
|
|
18
18
|
readLocalConfig
|
|
19
|
-
} from "../../chunks/chunk-
|
|
19
|
+
} from "../../chunks/chunk-74F7S6QJ.js";
|
|
20
20
|
import {
|
|
21
21
|
highlight
|
|
22
22
|
} from "../../chunks/chunk-LTWXVGGJ.js";
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
deprecatedArchiveSplitTgz,
|
|
39
39
|
getCommandAliases,
|
|
40
40
|
initSubcommand
|
|
41
|
-
} from "../../chunks/chunk-
|
|
41
|
+
} from "../../chunks/chunk-LFXZ5E5S.js";
|
|
42
42
|
import "../../chunks/chunk-M3N5RQLZ.js";
|
|
43
43
|
import "../../chunks/chunk-NJKAUXT4.js";
|
|
44
44
|
import "../../chunks/chunk-DYV4NBAT.js";
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
} from "../../chunks/chunk-YPQSDAEW.js";
|
|
29
29
|
import {
|
|
30
30
|
getCommandAliases
|
|
31
|
-
} from "../../chunks/chunk-
|
|
31
|
+
} from "../../chunks/chunk-LFXZ5E5S.js";
|
|
32
32
|
import "../../chunks/chunk-M3N5RQLZ.js";
|
|
33
33
|
import "../../chunks/chunk-NJKAUXT4.js";
|
|
34
34
|
import "../../chunks/chunk-DYV4NBAT.js";
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
addSubcommand6 as addSubcommand,
|
|
12
12
|
getCommandAliases,
|
|
13
13
|
linkCommand
|
|
14
|
-
} from "../../chunks/chunk-
|
|
14
|
+
} from "../../chunks/chunk-LFXZ5E5S.js";
|
|
15
15
|
import "../../chunks/chunk-M3N5RQLZ.js";
|
|
16
16
|
import "../../chunks/chunk-NJKAUXT4.js";
|
|
17
17
|
import "../../chunks/chunk-DYV4NBAT.js";
|