vercel-api-js 0.24.0 → 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.0 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.2 kB, chunk size: 32.2 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.2 kB, chunk size: 32.2 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.35 MB
13
+ Σ Total dist size (byte size): 3.6 MB
14
14
  [log]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
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
+
19
+ ## 0.24.1
20
+
21
+ ### Patch Changes
22
+
23
+ - 14decee: Add new endpoint to move project domain to another project
24
+ - 93d6b84: Remove recommendedIps and recommendedCname fields from GetDomainConfigResponse
25
+ - 6c401f1: Add 'abovePlan' field to 'buildMachine' in UserEvent type
26
+ - 3d20390: [BREAKING] Add new field customEnvironmentsPerProject to UserEvent and AuthUser schemas
27
+ - de0d55c: [BREAKING] Add new 'google' type to user credentials and auth tokens
28
+ - b9da014: Update `requireApproval` and `minutesToRelease` fields
29
+
3
30
  ## 0.24.0
4
31
 
5
32
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -377,6 +377,7 @@ const getProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{id
377
377
  const updateProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "patch", ...variables, signal });
378
378
  const removeProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "delete", ...variables, signal });
379
379
  const addProjectDomain = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/domains", method: "post", ...variables, signal });
380
+ const moveProjectDomain = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrName}/domains/{domain}/move", method: "post", ...variables, signal });
380
381
  const verifyProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}/verify", method: "post", ...variables, signal });
381
382
  const filterProjectEnvs = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "get", ...variables, signal });
382
383
  const createProjectEnv = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "post", ...variables, signal });
@@ -557,6 +558,7 @@ const deleteAlias = (variables, signal) => fetch$1({
557
558
  ...variables,
558
559
  signal
559
560
  });
561
+ const patchUrlProtectionBypass = (variables, signal) => fetch$1({ url: "/aliases/{id}/protection-bypass", method: "patch", ...variables, signal });
560
562
  const getCertById = (variables, signal) => fetch$1({
561
563
  url: "/v7/certs/{id}",
562
564
  method: "get",
@@ -643,6 +645,7 @@ const operationsByTag = {
643
645
  updateProjectDomain,
644
646
  removeProjectDomain,
645
647
  addProjectDomain,
648
+ moveProjectDomain,
646
649
  verifyProjectDomain,
647
650
  filterProjectEnvs,
648
651
  createProjectEnv,
@@ -757,7 +760,7 @@ const operationsByTag = {
757
760
  deleteTeamInviteCode
758
761
  },
759
762
  webhooks: { createWebhook, getWebhooks, getWebhook, deleteWebhook },
760
- aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias },
763
+ aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias, patchUrlProtectionBypass },
761
764
  certs: { getCertById, removeCert, issueCert, uploadCert },
762
765
  secrets: { getSecrets, createSecret, renameSecret, getSecret, deleteSecret }
763
766
  };