vercel-api-js 0.24.1 → 0.24.2

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.
@@ -1,14 +1,14 @@
1
1
 
2
- > vercel-api-js@0.24.1 build /home/runner/work/openapi-clients/openapi-clients/packages/vercel-api-js
2
+ > vercel-api-js@0.24.2 build /home/runner/work/openapi-clients/openapi-clients/packages/vercel-api-js
3
3
  > unbuild
4
4
 
5
5
  [info] Automatically detected entries: src/index [esm] [cjs] [dts]
6
6
  [info] Building vercel-api-js
7
7
  [info] Cleaning dist directory: `./dist`
8
8
  [success] Build succeeded for vercel-api-js
9
- [log] dist/index.cjs (total size: 32.4 kB, chunk size: 32.4 kB, exports: VercelApi)
9
+ [log] dist/index.cjs (total size: 32.6 kB, chunk size: 32.6 kB, exports: VercelApi)
10
10
 
11
- [log] dist/index.mjs (total size: 32.4 kB, chunk size: 32.4 kB, exports: VercelApi)
11
+ [log] dist/index.mjs (total size: 32.6 kB, chunk size: 32.6 kB, exports: VercelApi)
12
12
 
13
- Σ Total dist size (byte size): 3.42 MB
13
+ Σ Total dist size (byte size): 3.6 MB
14
14
  [log]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # vercel-api-js
2
2
 
3
+ ## 0.24.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6466a46: Add new 'fromRollingReleaseId' field to lastAliasRequest type
8
+ - 3dab4ff: Removed 'aiCredits' from UserEvent and AuthUser schemas
9
+ - 6feddf3: [BREAKING] Add new 'vercelAppInstallation' property to 'GetProjectsResponse', 'CreateProjectResponse', 'GetProjectResponse', and 'UpdateProjectResponse'
10
+ - 9298c0b: Make some changes to optional properties
11
+ - fbe45d4: Reorder 'handle' properties in 'CreateDeploymentResponse' to match alphabetical order
12
+ - 9ae5776: Remove 'abovePlan' field from UserEvent type
13
+ - 7dddb74: undefined
14
+ - 99819ef: Change ordering of 'type' values in matching options
15
+ - 80457f9: Update build machine type options in various API responses
16
+ - 37efdb6: Update customEnvironments type to include detailed properties for each environment
17
+ - 16764f0: Add patchAliasesIdProtectionBypass
18
+
3
19
  ## 0.24.1
4
20
 
5
21
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -558,6 +558,7 @@ const deleteAlias = (variables, signal) => fetch$1({
558
558
  ...variables,
559
559
  signal
560
560
  });
561
+ const patchUrlProtectionBypass = (variables, signal) => fetch$1({ url: "/aliases/{id}/protection-bypass", method: "patch", ...variables, signal });
561
562
  const getCertById = (variables, signal) => fetch$1({
562
563
  url: "/v7/certs/{id}",
563
564
  method: "get",
@@ -759,7 +760,7 @@ const operationsByTag = {
759
760
  deleteTeamInviteCode
760
761
  },
761
762
  webhooks: { createWebhook, getWebhooks, getWebhook, deleteWebhook },
762
- aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias },
763
+ aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias, patchUrlProtectionBypass },
763
764
  certs: { getCertById, removeCert, issueCert, uploadCert },
764
765
  secrets: { getSecrets, createSecret, renameSecret, getSecret, deleteSecret }
765
766
  };