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.mjs
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated by Kubb (https://kubb.dev/).
|
|
3
3
|
* Do not edit manually.
|
|
4
|
+
*/ /**
|
|
5
|
+
* @description Arbitrary per-provider AI SDK options, keyed by gateway provider slug.
|
|
6
|
+
* @type object
|
|
4
7
|
*/ const scopeEnum = {
|
|
5
8
|
global: "global",
|
|
6
9
|
specific: "specific",
|
|
@@ -448,6 +451,7 @@ const userEventTypeEnum = {
|
|
|
448
451
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
449
452
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
450
453
|
"instant-rollback-created": "instant-rollback-created",
|
|
454
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
451
455
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
452
456
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
453
457
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
@@ -942,16 +946,17 @@ const planSlugEnum = {
|
|
|
942
946
|
v0_teams: "v0_teams"
|
|
943
947
|
};
|
|
944
948
|
const reasonEnum = {
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
949
|
+
"basic-floor": "basic-floor",
|
|
950
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
951
|
+
"enospc-failure": "enospc-failure",
|
|
952
|
+
"enterprise-floor": "enterprise-floor",
|
|
953
|
+
"high-peak-disk": "high-peak-disk",
|
|
954
|
+
"high-peak-memory": "high-peak-memory",
|
|
955
|
+
"long-build-duration": "long-build-duration",
|
|
956
|
+
"oom-failure": "oom-failure",
|
|
957
|
+
"plan-change": "plan-change",
|
|
958
|
+
"short-build-duration": "short-build-duration",
|
|
959
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
955
960
|
};
|
|
956
961
|
const subjectTypeEnum = {
|
|
957
962
|
app: "app",
|
|
@@ -1694,6 +1699,7 @@ const listEventTypeNameEnum = {
|
|
|
1694
1699
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1695
1700
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
1696
1701
|
"instant-rollback-created": "instant-rollback-created",
|
|
1702
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1697
1703
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1698
1704
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
1699
1705
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
@@ -2353,6 +2359,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2353
2359
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2354
2360
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2355
2361
|
"instant-rollback-created": "instant-rollback-created",
|
|
2362
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2356
2363
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2357
2364
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
2358
2365
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|