vercel-api-js 1.11.0 → 1.12.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.
- package/dist/{components-bvvdngtm.js → components-eqgrkxe2.js} +99 -11
- package/dist/{components-nlsfs355.cjs → components-j923ydcw.cjs} +104 -12
- package/dist/components.cjs +7 -3
- package/dist/components.d.mts +79 -9
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +13 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +86 -32
- package/dist/index.d.ts +813 -117
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{schemas-b886m3zr.cjs → schemas-i3c9gf4z.cjs} +335 -85
- package/dist/{schemas-i84xmv7o.js → schemas-o2rt4pyr.js} +252 -56
- package/dist/schemas.cjs +85 -31
- package/dist/schemas.d.mts +381 -232
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +17 -10
- package/dist/types.d.mts +548 -75
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +17 -10
- package/package.json +1 -1
package/dist/types.cjs
CHANGED
|
@@ -3,6 +3,9 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
3
3
|
/**
|
|
4
4
|
* Generated by Kubb (https://kubb.dev/).
|
|
5
5
|
* Do not edit manually.
|
|
6
|
+
*/ /**
|
|
7
|
+
* @description Arbitrary per-provider AI SDK options, keyed by gateway provider slug.
|
|
8
|
+
* @type object
|
|
6
9
|
*/ const scopeEnum = {
|
|
7
10
|
global: "global",
|
|
8
11
|
specific: "specific",
|
|
@@ -450,6 +453,7 @@ const userEventTypeEnum = {
|
|
|
450
453
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
451
454
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
452
455
|
"instant-rollback-created": "instant-rollback-created",
|
|
456
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
453
457
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
454
458
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
455
459
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
@@ -944,16 +948,17 @@ const planSlugEnum = {
|
|
|
944
948
|
v0_teams: "v0_teams"
|
|
945
949
|
};
|
|
946
950
|
const reasonEnum = {
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
951
|
+
"basic-floor": "basic-floor",
|
|
952
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
953
|
+
"enospc-failure": "enospc-failure",
|
|
954
|
+
"enterprise-floor": "enterprise-floor",
|
|
955
|
+
"high-peak-disk": "high-peak-disk",
|
|
956
|
+
"high-peak-memory": "high-peak-memory",
|
|
957
|
+
"long-build-duration": "long-build-duration",
|
|
958
|
+
"oom-failure": "oom-failure",
|
|
959
|
+
"plan-change": "plan-change",
|
|
960
|
+
"short-build-duration": "short-build-duration",
|
|
961
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
957
962
|
};
|
|
958
963
|
const subjectTypeEnum = {
|
|
959
964
|
app: "app",
|
|
@@ -1696,6 +1701,7 @@ const listEventTypeNameEnum = {
|
|
|
1696
1701
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1697
1702
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
1698
1703
|
"instant-rollback-created": "instant-rollback-created",
|
|
1704
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1699
1705
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1700
1706
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
1701
1707
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
@@ -2355,6 +2361,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2355
2361
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2356
2362
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2357
2363
|
"instant-rollback-created": "instant-rollback-created",
|
|
2364
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2358
2365
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2359
2366
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
2360
2367
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|