vercel-api-js 0.23.6 → 0.24.0

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.0 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.2 kB, chunk size: 32.2 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.2 kB, chunk size: 32.2 kB, exports: VercelApi)
12
12
 
13
- Σ Total dist size (byte size): 3.4 MB
13
+ Σ Total dist size (byte size): 3.35 MB
14
14
  [log]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # vercel-api-js
2
2
 
3
+ ## 0.24.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 06a8f43: [BREAKING] New endpoint vercelRun to perform a new action
8
+
9
+ ### Patch Changes
10
+
11
+ - fea55e7: Remove vsmValue
12
+
3
13
  ## 0.23.6
4
14
 
5
15
  ### 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",
@@ -684,14 +669,7 @@ const operationsByTag = {
684
669
  getDeployments,
685
670
  deleteDeployment
686
671
  },
687
- integrations: {
688
- updateIntegrationDeploymentAction,
689
- getConfigurations,
690
- getConfiguration,
691
- deleteConfiguration,
692
- gitNamespaces,
693
- searchRepo
694
- },
672
+ integrations: { updateIntegrationDeploymentAction, getConfigurations, getConfiguration, deleteConfiguration },
695
673
  domains: {
696
674
  buyDomain,
697
675
  checkDomainPrice,
@@ -705,15 +683,7 @@ const operationsByTag = {
705
683
  deleteDomain
706
684
  },
707
685
  dns: { getRecords, createRecord, updateRecord, removeRecord },
708
- logDrains: {
709
- getConfigurableLogDrain,
710
- deleteConfigurableLogDrain,
711
- getAllLogDrains,
712
- createConfigurableLogDrain,
713
- getIntegrationLogDrains,
714
- createLogDrain,
715
- deleteIntegrationLogDrain
716
- },
686
+ logDrains: { deleteConfigurableLogDrain, getIntegrationLogDrains, createLogDrain, deleteIntegrationLogDrain },
717
687
  edgeConfig: {
718
688
  getEdgeConfigs,
719
689
  createEdgeConfig,