vercel-api-js 0.23.6 → 0.24.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.
@@ -1,14 +1,14 @@
1
1
 
2
- > vercel-api-js@0.23.6 build /home/runner/work/openapi-clients/openapi-clients/packages/vercel-api-js
2
+ > vercel-api-js@0.24.1 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: 33.1 kB, chunk size: 33.1 kB, exports: VercelApi)
9
+ [log] dist/index.cjs (total size: 32.4 kB, chunk size: 32.4 kB, exports: VercelApi)
10
10
 
11
- [log] dist/index.mjs (total size: 33 kB, chunk size: 33 kB, exports: VercelApi)
11
+ [log] dist/index.mjs (total size: 32.4 kB, chunk size: 32.4 kB, exports: VercelApi)
12
12
 
13
- Σ Total dist size (byte size): 3.4 MB
13
+ Σ Total dist size (byte size): 3.42 MB
14
14
  [log]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # vercel-api-js
2
2
 
3
+ ## 0.24.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 14decee: Add new endpoint to move project domain to another project
8
+ - 93d6b84: Remove recommendedIps and recommendedCname fields from GetDomainConfigResponse
9
+ - 6c401f1: Add 'abovePlan' field to 'buildMachine' in UserEvent type
10
+ - 3d20390: [BREAKING] Add new field customEnvironmentsPerProject to UserEvent and AuthUser schemas
11
+ - de0d55c: [BREAKING] Add new 'google' type to user credentials and auth tokens
12
+ - b9da014: Update `requireApproval` and `minutesToRelease` fields
13
+
14
+ ## 0.24.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 06a8f43: [BREAKING] New endpoint vercelRun to perform a new action
19
+
20
+ ### Patch Changes
21
+
22
+ - fea55e7: Remove vsmValue
23
+
3
24
  ## 0.23.6
4
25
 
5
26
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -188,15 +188,7 @@ const deleteDomain = (variables, signal) => fetch$1({
188
188
  ...variables,
189
189
  signal
190
190
  });
191
- const getConfigurableLogDrain = (variables, signal) => fetch$1({ url: "/v1/log-drains/{id}", method: "get", ...variables, signal });
192
191
  const deleteConfigurableLogDrain = (variables, signal) => fetch$1({ url: "/v1/log-drains/{id}", method: "delete", ...variables, signal });
193
- const getAllLogDrains = (variables, signal) => fetch$1({
194
- url: "/v1/log-drains",
195
- method: "get",
196
- ...variables,
197
- signal
198
- });
199
- const createConfigurableLogDrain = (variables, signal) => fetch$1({ url: "/v1/log-drains", method: "post", ...variables, signal });
200
192
  const getEdgeConfigs = (variables, signal) => fetch$1({
201
193
  url: "/v1/edge-config",
202
194
  method: "get",
@@ -313,13 +305,6 @@ const createLogDrain = (variables, signal) => fetch$1({
313
305
  signal
314
306
  });
315
307
  const deleteIntegrationLogDrain = (variables, signal) => fetch$1({ url: "/v1/integrations/log-drains/{id}", method: "delete", ...variables, signal });
316
- const gitNamespaces = (variables, signal) => fetch$1({
317
- url: "/v1/integrations/git-namespaces",
318
- method: "get",
319
- ...variables,
320
- signal
321
- });
322
- const searchRepo = (variables, signal) => fetch$1({ url: "/v1/integrations/search-repo", method: "get", ...variables, signal });
323
308
  const postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems = (variables, signal) => fetch$1({
324
309
  url: "/v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items",
325
310
  method: "post",
@@ -392,6 +377,7 @@ const getProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{id
392
377
  const updateProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "patch", ...variables, signal });
393
378
  const removeProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "delete", ...variables, signal });
394
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 });
395
381
  const verifyProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}/verify", method: "post", ...variables, signal });
396
382
  const filterProjectEnvs = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "get", ...variables, signal });
397
383
  const createProjectEnv = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "post", ...variables, signal });
@@ -658,6 +644,7 @@ const operationsByTag = {
658
644
  updateProjectDomain,
659
645
  removeProjectDomain,
660
646
  addProjectDomain,
647
+ moveProjectDomain,
661
648
  verifyProjectDomain,
662
649
  filterProjectEnvs,
663
650
  createProjectEnv,
@@ -684,14 +671,7 @@ const operationsByTag = {
684
671
  getDeployments,
685
672
  deleteDeployment
686
673
  },
687
- integrations: {
688
- updateIntegrationDeploymentAction,
689
- getConfigurations,
690
- getConfiguration,
691
- deleteConfiguration,
692
- gitNamespaces,
693
- searchRepo
694
- },
674
+ integrations: { updateIntegrationDeploymentAction, getConfigurations, getConfiguration, deleteConfiguration },
695
675
  domains: {
696
676
  buyDomain,
697
677
  checkDomainPrice,
@@ -705,15 +685,7 @@ const operationsByTag = {
705
685
  deleteDomain
706
686
  },
707
687
  dns: { getRecords, createRecord, updateRecord, removeRecord },
708
- logDrains: {
709
- getConfigurableLogDrain,
710
- deleteConfigurableLogDrain,
711
- getAllLogDrains,
712
- createConfigurableLogDrain,
713
- getIntegrationLogDrains,
714
- createLogDrain,
715
- deleteIntegrationLogDrain
716
- },
688
+ logDrains: { deleteConfigurableLogDrain, getIntegrationLogDrains, createLogDrain, deleteIntegrationLogDrain },
717
689
  edgeConfig: {
718
690
  getEdgeConfigs,
719
691
  createEdgeConfig,