vercel-api-js 0.24.1 → 0.24.3

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.3 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.8 kB, chunk size: 32.8 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.8 kB, chunk size: 32.8 kB, exports: VercelApi)
12
12
 
13
- Σ Total dist size (byte size): 3.42 MB
13
+ Σ Total dist size (byte size): 3.66 MB
14
14
  [log]
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # vercel-api-js
2
2
 
3
+ ## 0.24.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 52b71a8: Reduce maxLength constraint on project search field
8
+ - 158dcb6: Adjust type definition for GetDeploymentEvents response
9
+
10
+ ## 0.24.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 6466a46: Add new 'fromRollingReleaseId' field to lastAliasRequest type
15
+ - 3dab4ff: Removed 'aiCredits' from UserEvent and AuthUser schemas
16
+ - 6feddf3: [BREAKING] Add new 'vercelAppInstallation' property to 'GetProjectsResponse', 'CreateProjectResponse', 'GetProjectResponse', and 'UpdateProjectResponse'
17
+ - 9298c0b: Make some changes to optional properties
18
+ - fbe45d4: Reorder 'handle' properties in 'CreateDeploymentResponse' to match alphabetical order
19
+ - 9ae5776: Remove 'abovePlan' field from UserEvent type
20
+ - 7dddb74: undefined
21
+ - 99819ef: Change ordering of 'type' values in matching options
22
+ - 80457f9: Update build machine type options in various API responses
23
+ - 37efdb6: Update customEnvironments type to include detailed properties for each environment
24
+ - 16764f0: Add patchAliasesIdProtectionBypass
25
+
3
26
  ## 0.24.1
4
27
 
5
28
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -305,6 +305,12 @@ const createLogDrain = (variables, signal) => fetch$1({
305
305
  signal
306
306
  });
307
307
  const deleteIntegrationLogDrain = (variables, signal) => fetch$1({ url: "/v1/integrations/log-drains/{id}", method: "delete", ...variables, signal });
308
+ const getRuntimeLogs = (variables, signal) => fetch$1({
309
+ url: "/v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs",
310
+ method: "get",
311
+ ...variables,
312
+ signal
313
+ });
308
314
  const postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems = (variables, signal) => fetch$1({
309
315
  url: "/v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items",
310
316
  method: "post",
@@ -558,6 +564,7 @@ const deleteAlias = (variables, signal) => fetch$1({
558
564
  ...variables,
559
565
  signal
560
566
  });
567
+ const patchUrlProtectionBypass = (variables, signal) => fetch$1({ url: "/aliases/{id}/protection-bypass", method: "patch", ...variables, signal });
561
568
  const getCertById = (variables, signal) => fetch$1({
562
569
  url: "/v7/certs/{id}",
563
570
  method: "get",
@@ -725,6 +732,7 @@ const operationsByTag = {
725
732
  putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig
726
733
  },
727
734
  authentication: { exchangeSsoToken, listAuthTokens, createAuthToken, getAuthToken, deleteAuthToken },
735
+ logs: { getRuntimeLogs },
728
736
  projectMembers: { getProjectMembers, addProjectMember, removeProjectMember },
729
737
  environment: {
730
738
  createCustomEnvironment,
@@ -759,7 +767,7 @@ const operationsByTag = {
759
767
  deleteTeamInviteCode
760
768
  },
761
769
  webhooks: { createWebhook, getWebhooks, getWebhook, deleteWebhook },
762
- aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias },
770
+ aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias, patchUrlProtectionBypass },
763
771
  certs: { getCertById, removeCert, issueCert, uploadCert },
764
772
  secrets: { getSecrets, createSecret, renameSecret, getSecret, deleteSecret }
765
773
  };