vercel-api-js 1.18.0 → 1.18.1
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 +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-h2au2774.cjs → schemas-i6g5yy7y.cjs} +12 -0
- package/dist/{schemas-k9fiajx5.js → schemas-nvrtvcyu.js} +12 -0
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +8 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +3 -0
- package/dist/types.d.mts +8 -0
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
3
|
var components = require('./components-pfe7zbum.cjs');
|
|
4
|
-
var schemas = require('./schemas-
|
|
4
|
+
var schemas = require('./schemas-i6g5yy7y.cjs');
|
|
5
5
|
var types = require('./types.cjs');
|
|
6
6
|
|
|
7
7
|
function formEncoded(data) {
|
package/dist/index.d.ts
CHANGED
|
@@ -6074,6 +6074,7 @@ declare const userEventTypeEnum: {
|
|
|
6074
6074
|
readonly "organization-delete": "organization-delete";
|
|
6075
6075
|
readonly "organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
6076
6076
|
readonly "organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
6077
|
+
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
6077
6078
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
6078
6079
|
readonly "organization-slug-update": "organization-slug-update";
|
|
6079
6080
|
readonly "organization-team-add": "organization-team-add";
|
|
@@ -10259,6 +10260,11 @@ type UserEvent = {
|
|
|
10259
10260
|
previousEnabled: false | true;
|
|
10260
10261
|
trigger: UserEventPayloadTriggerEnumKey;
|
|
10261
10262
|
unenforcedTeamIds: string[];
|
|
10263
|
+
} | {
|
|
10264
|
+
enabled: false | true;
|
|
10265
|
+
organizationId: string;
|
|
10266
|
+
teamId: string;
|
|
10267
|
+
teamSlug: string;
|
|
10262
10268
|
} | {
|
|
10263
10269
|
organizationId: string;
|
|
10264
10270
|
slug: string;
|
|
@@ -13401,6 +13407,7 @@ declare const listEventTypeNameEnum: {
|
|
|
13401
13407
|
readonly "organization-delete": "organization-delete";
|
|
13402
13408
|
readonly "organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
13403
13409
|
readonly "organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
13410
|
+
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
13404
13411
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
13405
13412
|
readonly "organization-slug-update": "organization-slug-update";
|
|
13406
13413
|
readonly "organization-team-add": "organization-team-add";
|
|
@@ -14084,6 +14091,7 @@ declare const listEventTypeReplacedByEnum: {
|
|
|
14084
14091
|
readonly "organization-delete": "organization-delete";
|
|
14085
14092
|
readonly "organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
14086
14093
|
readonly "organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
14094
|
+
readonly "organization-emu-team-updated": "organization-emu-team-updated";
|
|
14087
14095
|
readonly "organization-emu-updated": "organization-emu-updated";
|
|
14088
14096
|
readonly "organization-slug-update": "organization-slug-update";
|
|
14089
14097
|
readonly "organization-team-add": "organization-team-add";
|
|
@@ -51379,6 +51387,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
51379
51387
|
toggle: "toggle";
|
|
51380
51388
|
}>;
|
|
51381
51389
|
unenforcedTeamIds: z.ZodArray<z.ZodString>;
|
|
51390
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
51391
|
+
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
51392
|
+
organizationId: z.ZodString;
|
|
51393
|
+
teamId: z.ZodString;
|
|
51394
|
+
teamSlug: z.ZodString;
|
|
51382
51395
|
}, z.core.$strict>, z.ZodObject<{
|
|
51383
51396
|
organizationId: z.ZodString;
|
|
51384
51397
|
slug: z.ZodString;
|
|
@@ -54439,6 +54452,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
54439
54452
|
"organization-delete": "organization-delete";
|
|
54440
54453
|
"organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
54441
54454
|
"organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
54455
|
+
"organization-emu-team-updated": "organization-emu-team-updated";
|
|
54442
54456
|
"organization-emu-updated": "organization-emu-updated";
|
|
54443
54457
|
"organization-slug-update": "organization-slug-update";
|
|
54444
54458
|
"organization-team-add": "organization-team-add";
|
|
@@ -55187,6 +55201,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
55187
55201
|
"organization-delete": "organization-delete";
|
|
55188
55202
|
"organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
55189
55203
|
"organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
55204
|
+
"organization-emu-team-updated": "organization-emu-team-updated";
|
|
55190
55205
|
"organization-emu-updated": "organization-emu-updated";
|
|
55191
55206
|
"organization-slug-update": "organization-slug-update";
|
|
55192
55207
|
"organization-team-add": "organization-team-add";
|
|
@@ -55869,6 +55884,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
55869
55884
|
"organization-delete": "organization-delete";
|
|
55870
55885
|
"organization-dsync-group-delete": "organization-dsync-group-delete";
|
|
55871
55886
|
"organization-dsync-group-upsert": "organization-dsync-group-upsert";
|
|
55887
|
+
"organization-emu-team-updated": "organization-emu-team-updated";
|
|
55872
55888
|
"organization-emu-updated": "organization-emu-updated";
|
|
55873
55889
|
"organization-slug-update": "organization-slug-update";
|
|
55874
55890
|
"organization-team-add": "organization-team-add";
|