vercel-api-js 1.8.2 → 1.8.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/schemas.cjs CHANGED
@@ -704,6 +704,7 @@ const userEventSchema = z__namespace.object({
704
704
  "log-drain-enabled",
705
705
  "login",
706
706
  "manual-deployment-promotion-created",
707
+ "marketplace-flex-commit-opt-in",
707
708
  "marketplace-integration-allowlist-updated",
708
709
  "microfrontend-group-added",
709
710
  "microfrontend-group-deleted",
@@ -988,6 +989,7 @@ const userEventSchema = z__namespace.object({
988
989
  "tracing-configured",
989
990
  "tracing-disabled",
990
991
  "unlink-login-connection",
992
+ "update-account-flow-triggered",
991
993
  "user-delete",
992
994
  "user-emu-account-archived",
993
995
  "user-emu-account-deleted",
@@ -3755,6 +3757,7 @@ const userEventSchema = z__namespace.object({
3755
3757
  edgeConfigSize: z__namespace.number().optional(),
3756
3758
  edgeFunctionMaxSizeBytes: z__namespace.number().optional(),
3757
3759
  edgeFunctionExecutionTimeoutMs: z__namespace.number().optional(),
3760
+ serverlessFunctionMaxDuration: z__namespace.number().optional(),
3758
3761
  serverlessFunctionMaxMemorySize: z__namespace.number().optional(),
3759
3762
  kvDatabases: z__namespace.number().optional(),
3760
3763
  postgresDatabases: z__namespace.number().optional(),
@@ -4923,6 +4926,14 @@ const userEventSchema = z__namespace.object({
4923
4926
  toDeploymentId: z__namespace.string(),
4924
4927
  projectName: z__namespace.string()
4925
4928
  }).strict(),
4929
+ z__namespace.object({
4930
+ periods: z__namespace.array(z__namespace.object({
4931
+ periodNumber: z__namespace.number(),
4932
+ percent: z__namespace.string(),
4933
+ startDate: z__namespace.string(),
4934
+ endDate: z__namespace.string()
4935
+ }))
4936
+ }).strict(),
4926
4937
  z__namespace.object({
4927
4938
  enabled: z__namespace.union([
4928
4939
  z__namespace.literal(false),
@@ -7340,6 +7351,9 @@ const userEventSchema = z__namespace.object({
7340
7351
  ]),
7341
7352
  login: z__namespace.string()
7342
7353
  }).strict(),
7354
+ z__namespace.object({
7355
+ teamName: z__namespace.string().optional()
7356
+ }).strict(),
7343
7357
  z__namespace.object({
7344
7358
  totp: z__namespace.union([
7345
7359
  z__namespace.literal(false),
@@ -8143,6 +8157,7 @@ const listEventTypeSchema = z__namespace.object({
8143
8157
  "log-drain-enabled",
8144
8158
  "login",
8145
8159
  "manual-deployment-promotion-created",
8160
+ "marketplace-flex-commit-opt-in",
8146
8161
  "marketplace-integration-allowlist-updated",
8147
8162
  "microfrontend-group-added",
8148
8163
  "microfrontend-group-deleted",
@@ -8427,6 +8442,7 @@ const listEventTypeSchema = z__namespace.object({
8427
8442
  "tracing-configured",
8428
8443
  "tracing-disabled",
8429
8444
  "unlink-login-connection",
8445
+ "update-account-flow-triggered",
8430
8446
  "user-delete",
8431
8447
  "user-emu-account-archived",
8432
8448
  "user-emu-account-deleted",
@@ -8758,6 +8774,7 @@ const listEventTypeSchema = z__namespace.object({
8758
8774
  "log-drain-enabled",
8759
8775
  "login",
8760
8776
  "manual-deployment-promotion-created",
8777
+ "marketplace-flex-commit-opt-in",
8761
8778
  "marketplace-integration-allowlist-updated",
8762
8779
  "microfrontend-group-added",
8763
8780
  "microfrontend-group-deleted",
@@ -9042,6 +9059,7 @@ const listEventTypeSchema = z__namespace.object({
9042
9059
  "tracing-configured",
9043
9060
  "tracing-disabled",
9044
9061
  "unlink-login-connection",
9062
+ "update-account-flow-triggered",
9045
9063
  "user-delete",
9046
9064
  "user-emu-account-archived",
9047
9065
  "user-emu-account-deleted",
@@ -9650,7 +9668,7 @@ const namedSandboxSchema = z__namespace.object({
9650
9668
  z__namespace.literal(false),
9651
9669
  z__namespace.literal(true)
9652
9670
  ]).describe("Whether the sandbox persists its state across restarts via automatic snapshots."),
9653
- region: z__namespace.string().optional().describe("The region the sandbox runs in."),
9671
+ region: z__namespace.string().optional().describe("The region the sandbox is configured to run in: the region set on the sandbox, otherwise the project-level default, then the platform default. Where a running session actually landed is reported by `session.region`."),
9654
9672
  vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated."),
9655
9673
  memory: z__namespace.number().optional().describe("Memory allocated in MB."),
9656
9674
  runtime: z__namespace.string().optional().describe("Runtime identifier."),
@@ -10595,6 +10613,7 @@ const authUserSchema = z__namespace.object({
10595
10613
  edgeConfigSize: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10596
10614
  edgeFunctionMaxSizeBytes: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10597
10615
  edgeFunctionExecutionTimeoutMs: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10616
+ serverlessFunctionMaxDuration: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10598
10617
  serverlessFunctionMaxMemorySize: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10599
10618
  kvDatabases: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
10600
10619
  postgresDatabases: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
@@ -11963,6 +11982,7 @@ const createConnectorStatus404Schema = z__namespace.unknown();
11963
11982
  const createConnectorStatus409Schema = z__namespace.unknown();
11964
11983
  const createConnectorStatus410Schema = z__namespace.unknown();
11965
11984
  const createConnectorStatus422Schema = z__namespace.unknown();
11985
+ const createConnectorStatus500Schema = z__namespace.unknown();
11966
11986
  const createConnectorStatus502Schema = z__namespace.unknown();
11967
11987
  const createConnectorResponseSchema = z__namespace.union([
11968
11988
  createConnectorStatus201Schema,
@@ -11973,6 +11993,7 @@ const createConnectorResponseSchema = z__namespace.union([
11973
11993
  createConnectorStatus409Schema,
11974
11994
  createConnectorStatus410Schema,
11975
11995
  createConnectorStatus422Schema,
11996
+ createConnectorStatus500Schema,
11976
11997
  createConnectorStatus502Schema
11977
11998
  ]);
11978
11999
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
@@ -18253,6 +18274,7 @@ exports.createConnectorStatus404Schema = createConnectorStatus404Schema;
18253
18274
  exports.createConnectorStatus409Schema = createConnectorStatus409Schema;
18254
18275
  exports.createConnectorStatus410Schema = createConnectorStatus410Schema;
18255
18276
  exports.createConnectorStatus422Schema = createConnectorStatus422Schema;
18277
+ exports.createConnectorStatus500Schema = createConnectorStatus500Schema;
18256
18278
  exports.createConnectorStatus502Schema = createConnectorStatus502Schema;
18257
18279
  exports.createCustomEnvironmentPathIdOrNameSchema = createCustomEnvironmentPathIdOrNameSchema;
18258
18280
  exports.createCustomEnvironmentQuerySlugSchema = createCustomEnvironmentQuerySlugSchema;