vercel-cli 48.2.0__py3-none-any.whl → 48.2.2__py3-none-any.whl

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.

Potentially problematic release.


This version of vercel-cli might be problematic. Click here for more details.

@@ -49570,7 +49570,7 @@ var require_package = __commonJS2({
49570
49570
  "../client/package.json"(exports2, module2) {
49571
49571
  module2.exports = {
49572
49572
  name: "@vercel/client",
49573
- version: "17.0.0",
49573
+ version: "17.0.1",
49574
49574
  main: "dist/index.js",
49575
49575
  typings: "dist/index.d.ts",
49576
49576
  homepage: "https://vercel.com",
@@ -49612,7 +49612,7 @@ var require_package = __commonJS2({
49612
49612
  "@vercel/build-utils": "12.1.0",
49613
49613
  "@vercel/error-utils": "2.0.3",
49614
49614
  "@vercel/microfrontends": "1.2.2",
49615
- "@vercel/routing-utils": "5.1.1",
49615
+ "@vercel/routing-utils": "5.2.0",
49616
49616
  "async-retry": "1.2.3",
49617
49617
  "async-sema": "3.0.0",
49618
49618
  "fs-extra": "8.0.1",
@@ -117141,6 +117141,51 @@ var require_frameworks = __commonJS2({
117141
117141
  dependency: "h3",
117142
117142
  getOutputDirName: async () => "public"
117143
117143
  },
117144
+ {
117145
+ name: "NestJS",
117146
+ slug: "nestjs",
117147
+ logo: "https://api-frameworks.vercel.sh/framework-logos/nestjs.svg",
117148
+ tagline: "Framework for building efficient, scalable Node.js server-side applications",
117149
+ description: "A progressive Node.js framework for building efficient, reliable and scalable server-side applications.",
117150
+ website: "https://nestjs.com/",
117151
+ useRuntime: { src: "index.js", use: "@vercel/nestjs" },
117152
+ defaultRoutes: [
117153
+ {
117154
+ handle: "filesystem"
117155
+ },
117156
+ {
117157
+ src: "/(.*)",
117158
+ dest: "/"
117159
+ }
117160
+ ],
117161
+ detectors: {
117162
+ every: [{ matchPackage: "@nestjs/core" }],
117163
+ some: [
117164
+ {
117165
+ path: "src/main.ts",
117166
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']@nestjs/core["']\\s*(?:\\))?`
117167
+ }
117168
+ ]
117169
+ },
117170
+ settings: {
117171
+ installCommand: {
117172
+ placeholder: "`yarn install`, `pnpm install`, `npm install`, or `bun install`"
117173
+ },
117174
+ buildCommand: {
117175
+ placeholder: "None",
117176
+ value: null
117177
+ },
117178
+ devCommand: {
117179
+ placeholder: "None",
117180
+ value: null
117181
+ },
117182
+ outputDirectory: {
117183
+ value: "N/A"
117184
+ }
117185
+ },
117186
+ dependency: "nestjs",
117187
+ getOutputDirName: async () => "public"
117188
+ },
117144
117189
  {
117145
117190
  name: "xmcp",
117146
117191
  slug: "xmcp",
@@ -132073,7 +132118,7 @@ var require_superstatic = __commonJS2({
132073
132118
  });
132074
132119
  return { src: r.source, segments };
132075
132120
  }
132076
- var namedGroupsRegex = /\(\?<([a-zA-Z][a-zA-Z0-9]*)>/g;
132121
+ var namedGroupsRegex = /\(\?<([a-zA-Z][a-zA-Z0-9_]*)>/g;
132077
132122
  var normalizeHasKeys = (hasItems = []) => {
132078
132123
  for (const hasItem of hasItems) {
132079
132124
  if ("key" in hasItem && hasItem.type === "header") {
@@ -132440,6 +132485,7 @@ var require_schemas = __commonJS2({
132440
132485
  var __toCommonJS4 = (mod) => __copyProps4(__defProp4({}, "__esModule", { value: true }), mod);
132441
132486
  var schemas_exports = {};
132442
132487
  __export4(schemas_exports, {
132488
+ bulkRedirectsSchema: () => bulkRedirectsSchema,
132443
132489
  cleanUrlsSchema: () => cleanUrlsSchema2,
132444
132490
  hasSchema: () => hasSchema,
132445
132491
  headersSchema: () => headersSchema2,
@@ -133016,6 +133062,44 @@ var require_schemas = __commonJS2({
133016
133062
  description: "When `false`, visiting a path that ends with a forward slash will respond with a `308` status code and redirect to the path without the trailing slash.",
133017
133063
  type: "boolean"
133018
133064
  };
133065
+ var bulkRedirectsSchema = {
133066
+ type: "array",
133067
+ description: "A list of bulk redirect definitions.",
133068
+ items: {
133069
+ type: "object",
133070
+ additionalProperties: false,
133071
+ required: ["source", "destination"],
133072
+ properties: {
133073
+ source: {
133074
+ description: "The exact URL path or pattern to match.",
133075
+ type: "string",
133076
+ maxLength: 2048
133077
+ },
133078
+ destination: {
133079
+ description: "The target URL path where traffic should be redirected.",
133080
+ type: "string",
133081
+ maxLength: 2048
133082
+ },
133083
+ permanent: {
133084
+ description: "A boolean to toggle between permanent and temporary redirect. When `true`, the status code is `308`. When `false` the status code is `307`.",
133085
+ type: "boolean"
133086
+ },
133087
+ statusCode: {
133088
+ description: "An optional integer to define the status code of the redirect.",
133089
+ type: "integer",
133090
+ enum: [301, 302, 307, 308]
133091
+ },
133092
+ sensitive: {
133093
+ description: "A boolean to toggle between case-sensitive and case-insensitive redirect. When `true`, the redirect is case-sensitive. When `false` the redirect is case-insensitive.",
133094
+ type: "boolean"
133095
+ },
133096
+ query: {
133097
+ description: "Whether the query string should be preserved by the redirect. The default is `false`.",
133098
+ type: "boolean"
133099
+ }
133100
+ }
133101
+ }
133102
+ };
133019
133103
  }
133020
133104
  });
133021
133105
 
@@ -144731,6 +144815,9 @@ async function writeBuildResult(repoRootPath, outputDir, buildResult, build2, bu
144731
144815
  if ("experimentalVersion" in builder && process.env.VERCEL_EXPERIMENTAL_EXPRESS_BUILD === "1" && "name" in builder && builder.name === "express") {
144732
144816
  version2 = builder.experimentalVersion;
144733
144817
  }
144818
+ if ("experimentalVersion" in builder && process.env.VERCEL_EXPERIMENTAL_HONO_BUILD === "1" && "name" in builder && builder.name === "hono") {
144819
+ version2 = builder.experimentalVersion;
144820
+ }
144734
144821
  if (typeof version2 !== "number" || version2 === 2) {
144735
144822
  return writeBuildResultV2(
144736
144823
  repoRootPath,
@@ -147113,6 +147200,8 @@ async function doBuild(client2, project, buildsJson, cwd, outputDir, span, stand
147113
147200
  () => {
147114
147201
  if (process.env.VERCEL_EXPERIMENTAL_EXPRESS_BUILD === "1" && "name" in builder && builder.name === "express" && "experimentalBuild" in builder && typeof builder.experimentalBuild === "function") {
147115
147202
  return builder.experimentalBuild(buildOptions);
147203
+ } else if (process.env.VERCEL_EXPERIMENTAL_HONO_BUILD === "1" && "name" in builder && builder.name === "hono" && "experimentalBuild" in builder && typeof builder.experimentalBuild === "function") {
147204
+ return builder.experimentalBuild(buildOptions);
147116
147205
  }
147117
147206
  return builder.build(buildOptions);
147118
147207
  }
@@ -37,5 +37,5 @@
37
37
  "vitest-run": "vitest --config ./vitest.config.mts",
38
38
  "vitest-unit": "jest test/unit/ --listTests"
39
39
  },
40
- "version": "48.2.0"
40
+ "version": "48.2.2"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vercel-cli
3
- Version: 48.2.0
3
+ Version: 48.2.2
4
4
  Summary: Vercel CLI packaged for Python (bundled Node.js, vendored npm)
5
5
  Project-URL: Homepage, https://github.com/nuage-studio/vercel-cli-python
6
6
  Project-URL: Repository, https://github.com/nuage-studio/vercel-cli-python
@@ -1,10 +1,10 @@
1
1
  vercel_cli/vendor/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
2
2
  vercel_cli/vendor/README.md,sha256=2ZrJzd7x21xlpsOZ9QKG6478zbXb8-3YN8cPyzPxZNk,1799
3
- vercel_cli/vendor/package.json,sha256=HMl-Fn08FYSx6pdxkgXPun5FRACJzPC-i5bb2kC1uF8,1261
3
+ vercel_cli/vendor/package.json,sha256=vuIKN6QCvMRexqR2UR_YC_boWUuYD1sU0EoI7DSOjDo,1261
4
4
  vercel_cli/vendor/dist/VERCEL_DIR_README.txt,sha256=9dHtD1AyrhKJMfRkWbX6oa9jGfwt-z56X-VKhL-T29Y,520
5
5
  vercel_cli/vendor/dist/builder-worker.js,sha256=RgutTXJcurRisV2NtlruuPDtCBOi8eHSGCo3n4GcCIM,1969
6
6
  vercel_cli/vendor/dist/get-latest-worker.js,sha256=w7nK8nQtlYad_SKuFQGw_sg7_bb-p0uHOf1MYiwrUNs,7964
7
- vercel_cli/vendor/dist/index.js,sha256=rTjyV49sY87NEc3hVFFj76cDlg91T9A3RcYQT-OP-rk,8883038
7
+ vercel_cli/vendor/dist/index.js,sha256=79jte8Hhn8DxD8HHeLEK02GNO0UANrbl4g-y8o9z1Iw,8886443
8
8
  vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
9
  vercel_cli/vendor/node_modules/.package-lock.json,sha256=_DqzYpnimWakg9e432aPgSIlszgYFU7j-gA7lPm13xU,1053
10
10
  vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=ji-V7NgIUH1Fj-lmUh0LmIxhS6bq_0TW7xFH0e9yiF8,18051
@@ -100,7 +100,7 @@ vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=RQeQsg7ciIgCPl
100
100
  vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=x7UOYRAiJPGJfxNHa3Y0Fap0bogL7sW2z5O16Pcs4o8,33546
101
101
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_asgi.py,sha256=SUGPA8qw6b6ttNooj8BVohZRVd7QD6Qx_wV_GjX0kuM,1880
102
102
  vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=Vci6RpbBlOae-UCCwULtP-KCkfyrFi4h6LK7Vtm1n_8,130671
103
- vercel_cli-48.2.0.dist-info/METADATA,sha256=ylXW3y1lhyua3HcdfLjfeY9Ah3N5cyzr_mPHw4AZ6m8,7085
104
- vercel_cli-48.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
105
- vercel_cli-48.2.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
106
- vercel_cli-48.2.0.dist-info/RECORD,,
103
+ vercel_cli-48.2.2.dist-info/METADATA,sha256=ozCR8Gg0M3oEw2LAIEIS5tMkvL4DYUv1qLuMp1KpJtw,7085
104
+ vercel_cli-48.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
105
+ vercel_cli-48.2.2.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
106
+ vercel_cli-48.2.2.dist-info/RECORD,,