vercel-api-js 1.19.2 → 1.19.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.
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-kyn4vosf.js → schemas-joscpi60.js} +30 -1
- package/dist/{schemas-kbkmflwt.cjs → schemas-mrdopgdo.cjs} +30 -1
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +20 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +9 -0
- package/dist/types.d.mts +25 -1
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +9 -0
- package/package.json +1 -1
package/dist/types.cjs
CHANGED
|
@@ -2079,10 +2079,13 @@ const userEventTypeEnum = {
|
|
|
2079
2079
|
"organization-emu-team-updated": "organization-emu-team-updated",
|
|
2080
2080
|
"organization-emu-updated": "organization-emu-updated",
|
|
2081
2081
|
"organization-slug-update": "organization-slug-update",
|
|
2082
|
+
"organization-sso-enforced": "organization-sso-enforced",
|
|
2082
2083
|
"organization-team-add": "organization-team-add",
|
|
2083
2084
|
"organization-team-create": "organization-team-create",
|
|
2084
2085
|
"organization-team-delete": "organization-team-delete",
|
|
2085
2086
|
"organization-team-sso-update": "organization-team-sso-update",
|
|
2087
|
+
"organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed",
|
|
2088
|
+
"organization-update-account-flow-triggered": "organization-update-account-flow-triggered",
|
|
2086
2089
|
"owner-blocked": "owner-blocked",
|
|
2087
2090
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
2088
2091
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -2788,10 +2791,13 @@ const listEventTypeNameEnum = {
|
|
|
2788
2791
|
"organization-emu-team-updated": "organization-emu-team-updated",
|
|
2789
2792
|
"organization-emu-updated": "organization-emu-updated",
|
|
2790
2793
|
"organization-slug-update": "organization-slug-update",
|
|
2794
|
+
"organization-sso-enforced": "organization-sso-enforced",
|
|
2791
2795
|
"organization-team-add": "organization-team-add",
|
|
2792
2796
|
"organization-team-create": "organization-team-create",
|
|
2793
2797
|
"organization-team-delete": "organization-team-delete",
|
|
2794
2798
|
"organization-team-sso-update": "organization-team-sso-update",
|
|
2799
|
+
"organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed",
|
|
2800
|
+
"organization-update-account-flow-triggered": "organization-update-account-flow-triggered",
|
|
2795
2801
|
"owner-blocked": "owner-blocked",
|
|
2796
2802
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
2797
2803
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -3472,10 +3478,13 @@ const listEventTypeReplacedByEnum = {
|
|
|
3472
3478
|
"organization-emu-team-updated": "organization-emu-team-updated",
|
|
3473
3479
|
"organization-emu-updated": "organization-emu-updated",
|
|
3474
3480
|
"organization-slug-update": "organization-slug-update",
|
|
3481
|
+
"organization-sso-enforced": "organization-sso-enforced",
|
|
3475
3482
|
"organization-team-add": "organization-team-add",
|
|
3476
3483
|
"organization-team-create": "organization-team-create",
|
|
3477
3484
|
"organization-team-delete": "organization-team-delete",
|
|
3478
3485
|
"organization-team-sso-update": "organization-team-sso-update",
|
|
3486
|
+
"organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed",
|
|
3487
|
+
"organization-update-account-flow-triggered": "organization-update-account-flow-triggered",
|
|
3479
3488
|
"owner-blocked": "owner-blocked",
|
|
3480
3489
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
3481
3490
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
package/dist/types.d.mts
CHANGED
|
@@ -78,6 +78,11 @@ type AiGatewayVirtualModelConfig = {
|
|
|
78
78
|
* @type number
|
|
79
79
|
*/
|
|
80
80
|
createdAt: number;
|
|
81
|
+
/**
|
|
82
|
+
* @description User or app id that created this VMC.
|
|
83
|
+
* @type string | undefined
|
|
84
|
+
*/
|
|
85
|
+
createdBy?: string | undefined;
|
|
81
86
|
/**
|
|
82
87
|
* @description Whether this VMC is soft-deleted.
|
|
83
88
|
* @type boolean
|
|
@@ -244,7 +249,7 @@ type AiGatewayVirtualModelConfig = {
|
|
|
244
249
|
*/
|
|
245
250
|
updatedAt: number;
|
|
246
251
|
/**
|
|
247
|
-
* @description User id that last updated this VMC.
|
|
252
|
+
* @description User or app id that last updated this VMC.
|
|
248
253
|
* @type string | undefined
|
|
249
254
|
*/
|
|
250
255
|
updatedBy?: string | undefined;
|
|
@@ -6048,10 +6053,13 @@ declare const userEventTypeEnum: {
|
|
|
6048
6053
|
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
6049
6054
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
6050
6055
|
readonly "organization-slug-update": "organization-slug-update";
|
|
6056
|
+
readonly "organization-sso-enforced": "organization-sso-enforced";
|
|
6051
6057
|
readonly "organization-team-add": "organization-team-add";
|
|
6052
6058
|
readonly "organization-team-create": "organization-team-create";
|
|
6053
6059
|
readonly "organization-team-delete": "organization-team-delete";
|
|
6054
6060
|
readonly "organization-team-sso-update": "organization-team-sso-update";
|
|
6061
|
+
readonly "organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed";
|
|
6062
|
+
readonly "organization-update-account-flow-triggered": "organization-update-account-flow-triggered";
|
|
6055
6063
|
readonly "owner-blocked": "owner-blocked";
|
|
6056
6064
|
readonly "owner-soft-blocked": "owner-soft-blocked";
|
|
6057
6065
|
readonly "owner-soft-unblocked": "owner-soft-unblocked";
|
|
@@ -10244,6 +10252,11 @@ type UserEvent = {
|
|
|
10244
10252
|
billingPlan: UserEventPayloadBillingPlanEnumKey;
|
|
10245
10253
|
organizationId: string;
|
|
10246
10254
|
teamId: string;
|
|
10255
|
+
} | {
|
|
10256
|
+
enforced: false | true;
|
|
10257
|
+
organizationId: string;
|
|
10258
|
+
organizationSlug: string;
|
|
10259
|
+
previousEnforced: false | true;
|
|
10247
10260
|
} | {
|
|
10248
10261
|
mode: UserEventPayloadModeEnumKey;
|
|
10249
10262
|
organizationId: string;
|
|
@@ -12232,6 +12245,11 @@ type UserEvent = {
|
|
|
12232
12245
|
}[] | undefined;
|
|
12233
12246
|
} | {
|
|
12234
12247
|
reason: "limits-exceeded";
|
|
12248
|
+
} | {
|
|
12249
|
+
organizationId: string;
|
|
12250
|
+
} | {
|
|
12251
|
+
organizationId: string;
|
|
12252
|
+
teamIds: string[];
|
|
12235
12253
|
} | {
|
|
12236
12254
|
teamName?: string | undefined;
|
|
12237
12255
|
} | {
|
|
@@ -13387,10 +13405,13 @@ declare const listEventTypeNameEnum: {
|
|
|
13387
13405
|
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
13388
13406
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
13389
13407
|
readonly "organization-slug-update": "organization-slug-update";
|
|
13408
|
+
readonly "organization-sso-enforced": "organization-sso-enforced";
|
|
13390
13409
|
readonly "organization-team-add": "organization-team-add";
|
|
13391
13410
|
readonly "organization-team-create": "organization-team-create";
|
|
13392
13411
|
readonly "organization-team-delete": "organization-team-delete";
|
|
13393
13412
|
readonly "organization-team-sso-update": "organization-team-sso-update";
|
|
13413
|
+
readonly "organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed";
|
|
13414
|
+
readonly "organization-update-account-flow-triggered": "organization-update-account-flow-triggered";
|
|
13394
13415
|
readonly "owner-blocked": "owner-blocked";
|
|
13395
13416
|
readonly "owner-soft-blocked": "owner-soft-blocked";
|
|
13396
13417
|
readonly "owner-soft-unblocked": "owner-soft-unblocked";
|
|
@@ -14072,10 +14093,13 @@ declare const listEventTypeReplacedByEnum: {
|
|
|
14072
14093
|
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
14073
14094
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
14074
14095
|
readonly "organization-slug-update": "organization-slug-update";
|
|
14096
|
+
readonly "organization-sso-enforced": "organization-sso-enforced";
|
|
14075
14097
|
readonly "organization-team-add": "organization-team-add";
|
|
14076
14098
|
readonly "organization-team-create": "organization-team-create";
|
|
14077
14099
|
readonly "organization-team-delete": "organization-team-delete";
|
|
14078
14100
|
readonly "organization-team-sso-update": "organization-team-sso-update";
|
|
14101
|
+
readonly "organization-update-account-flow-dismissed": "organization-update-account-flow-dismissed";
|
|
14102
|
+
readonly "organization-update-account-flow-triggered": "organization-update-account-flow-triggered";
|
|
14079
14103
|
readonly "owner-blocked": "owner-blocked";
|
|
14080
14104
|
readonly "owner-soft-blocked": "owner-soft-blocked";
|
|
14081
14105
|
readonly "owner-soft-unblocked": "owner-soft-unblocked";
|