@vercel/sdk 1.13.1 → 1.13.2

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.
Files changed (37) hide show
  1. package/bin/mcp-server.js +45 -45
  2. package/bin/mcp-server.js.map +7 -7
  3. package/esm/__tests__/accessgroups.test.js +1 -3
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/edgeconfig.test.js +6 -6
  6. package/esm/__tests__/logdrains.test.js +3 -1
  7. package/esm/__tests__/logdrains.test.js.map +1 -1
  8. package/esm/__tests__/rollingrelease.test.js +2 -1
  9. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  10. package/esm/__tests__/security.test.js +11 -1
  11. package/esm/__tests__/security.test.js.map +1 -1
  12. package/esm/lib/config.d.ts +2 -2
  13. package/esm/lib/config.js +2 -2
  14. package/esm/mcp-server/mcp-server.js +1 -1
  15. package/esm/mcp-server/server.js +1 -1
  16. package/esm/models/canceldeploymentop.d.ts +34 -34
  17. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  18. package/esm/models/canceldeploymentop.js +14 -14
  19. package/esm/models/canceldeploymentop.js.map +1 -1
  20. package/esm/models/createdeploymentop.d.ts +32 -32
  21. package/esm/models/createdeploymentop.d.ts.map +1 -1
  22. package/esm/models/createdeploymentop.js +12 -12
  23. package/esm/models/createdeploymentop.js.map +1 -1
  24. package/examples/package-lock.json +1 -1
  25. package/jsr.json +1 -1
  26. package/package.json +1 -1
  27. package/src/__tests__/accessgroups.test.ts +1 -3
  28. package/src/__tests__/edgeconfig.test.ts +6 -6
  29. package/src/__tests__/logdrains.test.ts +3 -1
  30. package/src/__tests__/rollingrelease.test.ts +2 -1
  31. package/src/__tests__/security.test.ts +11 -1
  32. package/src/lib/config.ts +2 -2
  33. package/src/mcp-server/mcp-server.ts +1 -1
  34. package/src/mcp-server/server.ts +1 -1
  35. package/src/models/canceldeploymentop.ts +18 -18
  36. package/src/models/createdeploymentop.ts +14 -14
  37. package/vercel-spec.json +41 -46
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "..": {
20
20
  "name": "@vercel/sdk",
21
- "version": "1.13.1",
21
+ "version": "1.13.2",
22
22
  "dependencies": {
23
23
  "zod": "^3.20.0"
24
24
  },
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@vercel/sdk",
5
- "version": "1.13.1",
5
+ "version": "1.13.2",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models": "./src/models/index.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/sdk",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "author": "Speakeasy",
5
5
  "type": "module",
6
6
  "bin": {
@@ -107,9 +107,7 @@ test("Access Groups Update Access Group", async () => {
107
107
  });
108
108
  expect(result).toBeDefined();
109
109
  expect(result).toEqual({
110
- entitlements: [
111
- "v0",
112
- ],
110
+ entitlements: [],
113
111
  name: "my-access-group",
114
112
  createdAt: "1588720733602",
115
113
  teamId: "team_123a6c5209bc3778245d011443644c8d27dc2c50",
@@ -50,8 +50,8 @@ test("Edge Config Create Edge Config", async () => {
50
50
  });
51
51
  expect(result).toBeDefined();
52
52
  expect(result).toEqual({
53
- createdAt: 8917.73,
54
- updatedAt: 9636.63,
53
+ createdAt: 5448.83,
54
+ updatedAt: 4236.55,
55
55
  id: "<id>",
56
56
  slug: "<value>",
57
57
  ownerId: "<id>",
@@ -77,8 +77,8 @@ test("Edge Config Get Edge Config", async () => {
77
77
  });
78
78
  expect(result).toBeDefined();
79
79
  expect(result).toEqual({
80
- createdAt: 3834.41,
81
- updatedAt: 7917.25,
80
+ createdAt: 6458.94,
81
+ updatedAt: 4375.87,
82
82
  id: "<id>",
83
83
  slug: "<value>",
84
84
  ownerId: "<id>",
@@ -107,8 +107,8 @@ test("Edge Config Update Edge Config", async () => {
107
107
  });
108
108
  expect(result).toBeDefined();
109
109
  expect(result).toEqual({
110
- createdAt: 5288.95,
111
- updatedAt: 5680.45,
110
+ createdAt: 8917.73,
111
+ updatedAt: 9636.63,
112
112
  id: "<id>",
113
113
  slug: "<value>",
114
114
  ownerId: "<id>",
@@ -145,7 +145,9 @@ test("Logdrains Create Log Drain", async () => {
145
145
  branch: "feature/*",
146
146
  samplingRate: 0.5,
147
147
  source: {
148
- kind: "self-served",
148
+ kind: "integration",
149
+ integrationId: "<id>",
150
+ integrationConfigurationId: "<id>",
149
151
  },
150
152
  });
151
153
  });
@@ -362,11 +362,12 @@ test("Rolling Release Get Rolling Release Billing Status", async () => {
362
362
  });
363
363
  expect(result).toBeDefined();
364
364
  expect(result).toEqual({
365
- availableSlots: 5448.83,
365
+ availableSlots: 7151.9,
366
366
  reason: "no_available_slots",
367
367
  message: "<value>",
368
368
  enabledProjects: [
369
369
  "<value 1>",
370
+ "<value 2>",
370
371
  ],
371
372
  });
372
373
  });
@@ -318,7 +318,17 @@ test("Security Get Bypass Ip", async () => {
318
318
  });
319
319
  expect(result).toBeDefined();
320
320
  expect(result).toEqual({
321
- result: [],
321
+ result: [
322
+ {
323
+ ownerId: "<id>",
324
+ id: "<id>",
325
+ domain: "ideal-scratch.name",
326
+ ip: "e110:cbdf:bab2:e3eb:95ba:c0dd:def7:9f1e",
327
+ createdAt: "1725302835186",
328
+ updatedAt: "1735621376843",
329
+ updatedAtHour: "<value>",
330
+ },
331
+ ],
322
332
  });
323
333
  });
324
334
 
package/src/lib/config.ts CHANGED
@@ -61,7 +61,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
61
61
  export const SDK_METADATA = {
62
62
  language: "typescript",
63
63
  openapiDocVersion: "0.0.1",
64
- sdkVersion: "1.13.1",
64
+ sdkVersion: "1.13.2",
65
65
  genVersion: "2.722.5",
66
- userAgent: "speakeasy-sdk/typescript 1.13.1 2.722.5 0.0.1 @vercel/sdk",
66
+ userAgent: "speakeasy-sdk/typescript 1.13.2 2.722.5 0.0.1 @vercel/sdk",
67
67
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "1.13.1",
22
+ currentVersion: "1.13.2",
23
23
  },
24
24
  });
25
25
 
@@ -218,7 +218,7 @@ export function createMCPServer(deps: {
218
218
  }) {
219
219
  const server = new McpServer({
220
220
  name: "Vercel",
221
- version: "1.13.1",
221
+ version: "1.13.2",
222
222
  });
223
223
 
224
224
  const client = new VercelCore({
@@ -129,11 +129,11 @@ export type CancelDeploymentProjectSettings = {
129
129
  };
130
130
 
131
131
  export const CancelDeploymentDeploymentsStatus = {
132
- Error: "error",
133
- Timeout: "timeout",
134
132
  Skipped: "skipped",
135
133
  Pending: "pending",
136
134
  Ready: "ready",
135
+ Error: "error",
136
+ Timeout: "timeout",
137
137
  } as const;
138
138
  export type CancelDeploymentDeploymentsStatus = ClosedEnum<
139
139
  typeof CancelDeploymentDeploymentsStatus
@@ -231,8 +231,8 @@ export type CancelDeploymentCreator = {
231
231
  };
232
232
 
233
233
  export const CancelDeploymentDeploymentsReadyState = {
234
- Error: "ERROR",
235
234
  Building: "BUILDING",
235
+ Error: "ERROR",
236
236
  Initializing: "INITIALIZING",
237
237
  Ready: "READY",
238
238
  } as const;
@@ -252,8 +252,8 @@ export type CancelDeploymentLambdas = {
252
252
  id: string;
253
253
  createdAt?: number | undefined;
254
254
  readyState?: CancelDeploymentDeploymentsReadyState | undefined;
255
- readyStateAt?: number | undefined;
256
255
  entrypoint?: string | null | undefined;
256
+ readyStateAt?: number | undefined;
257
257
  output: Array<CancelDeploymentOutput>;
258
258
  };
259
259
 
@@ -270,8 +270,8 @@ export type CancelDeploymentStatus = ClosedEnum<typeof CancelDeploymentStatus>;
270
270
  export type CancelDeploymentTeam = {
271
271
  id: string;
272
272
  name: string;
273
- slug: string;
274
273
  avatar?: string | undefined;
274
+ slug: string;
275
275
  };
276
276
 
277
277
  export type CancelDeploymentCustomEnvironment2 = {
@@ -910,12 +910,12 @@ export type CancelDeploymentRoutes3 = {
910
910
  };
911
911
 
912
912
  export const RoutesHandle = {
913
- Filesystem: "filesystem",
914
913
  Error: "error",
914
+ Filesystem: "filesystem",
915
915
  Hit: "hit",
916
916
  Miss: "miss",
917
- Resource: "resource",
918
917
  Rewrite: "rewrite",
918
+ Resource: "resource",
919
919
  } as const;
920
920
  export type RoutesHandle = ClosedEnum<typeof RoutesHandle>;
921
921
 
@@ -1172,8 +1172,8 @@ export type CancelDeploymentGitRepoDeploymentsResponseType = ClosedEnum<
1172
1172
  >;
1173
1173
 
1174
1174
  export const CancelDeploymentGitRepoDeploymentsResponseOwnerType = {
1175
- User: "user",
1176
1175
  Team: "team",
1176
+ User: "user",
1177
1177
  } as const;
1178
1178
  export type CancelDeploymentGitRepoDeploymentsResponseOwnerType = ClosedEnum<
1179
1179
  typeof CancelDeploymentGitRepoDeploymentsResponseOwnerType
@@ -1200,8 +1200,8 @@ export type CancelDeploymentGitRepoDeploymentsType = ClosedEnum<
1200
1200
  >;
1201
1201
 
1202
1202
  export const CancelDeploymentGitRepoDeploymentsOwnerType = {
1203
- User: "user",
1204
1203
  Team: "team",
1204
+ User: "user",
1205
1205
  } as const;
1206
1206
  export type CancelDeploymentGitRepoDeploymentsOwnerType = ClosedEnum<
1207
1207
  typeof CancelDeploymentGitRepoDeploymentsOwnerType
@@ -1228,8 +1228,8 @@ export type CancelDeploymentGitRepoType = ClosedEnum<
1228
1228
  >;
1229
1229
 
1230
1230
  export const CancelDeploymentGitRepoOwnerType = {
1231
- User: "user",
1232
1231
  Team: "team",
1232
+ User: "user",
1233
1233
  } as const;
1234
1234
  export type CancelDeploymentGitRepoOwnerType = ClosedEnum<
1235
1235
  typeof CancelDeploymentGitRepoOwnerType
@@ -1371,16 +1371,16 @@ export type CancelDeploymentMicrofrontends =
1371
1371
  | CancelDeploymentMicrofrontends1;
1372
1372
 
1373
1373
  export const CancelDeploymentFunctionType = {
1374
- Standard: "standard",
1375
1374
  Fluid: "fluid",
1375
+ Standard: "standard",
1376
1376
  } as const;
1377
1377
  export type CancelDeploymentFunctionType = ClosedEnum<
1378
1378
  typeof CancelDeploymentFunctionType
1379
1379
  >;
1380
1380
 
1381
1381
  export const CancelDeploymentFunctionMemoryType = {
1382
- StandardLegacy: "standard_legacy",
1383
1382
  Standard: "standard",
1383
+ StandardLegacy: "standard_legacy",
1384
1384
  Performance: "performance",
1385
1385
  } as const;
1386
1386
  export type CancelDeploymentFunctionMemoryType = ClosedEnum<
@@ -2558,8 +2558,8 @@ export const CancelDeploymentLambdas$inboundSchema: z.ZodType<
2558
2558
  id: z.string(),
2559
2559
  createdAt: z.number().optional(),
2560
2560
  readyState: CancelDeploymentDeploymentsReadyState$inboundSchema.optional(),
2561
- readyStateAt: z.number().optional(),
2562
2561
  entrypoint: z.nullable(z.string()).optional(),
2562
+ readyStateAt: z.number().optional(),
2563
2563
  output: z.array(z.lazy(() => CancelDeploymentOutput$inboundSchema)),
2564
2564
  });
2565
2565
 
@@ -2568,8 +2568,8 @@ export type CancelDeploymentLambdas$Outbound = {
2568
2568
  id: string;
2569
2569
  createdAt?: number | undefined;
2570
2570
  readyState?: string | undefined;
2571
- readyStateAt?: number | undefined;
2572
2571
  entrypoint?: string | null | undefined;
2572
+ readyStateAt?: number | undefined;
2573
2573
  output: Array<CancelDeploymentOutput$Outbound>;
2574
2574
  };
2575
2575
 
@@ -2582,8 +2582,8 @@ export const CancelDeploymentLambdas$outboundSchema: z.ZodType<
2582
2582
  id: z.string(),
2583
2583
  createdAt: z.number().optional(),
2584
2584
  readyState: CancelDeploymentDeploymentsReadyState$outboundSchema.optional(),
2585
- readyStateAt: z.number().optional(),
2586
2585
  entrypoint: z.nullable(z.string()).optional(),
2586
+ readyStateAt: z.number().optional(),
2587
2587
  output: z.array(z.lazy(() => CancelDeploymentOutput$outboundSchema)),
2588
2588
  });
2589
2589
 
@@ -2647,16 +2647,16 @@ export const CancelDeploymentTeam$inboundSchema: z.ZodType<
2647
2647
  > = z.object({
2648
2648
  id: z.string(),
2649
2649
  name: z.string(),
2650
- slug: z.string(),
2651
2650
  avatar: z.string().optional(),
2651
+ slug: z.string(),
2652
2652
  });
2653
2653
 
2654
2654
  /** @internal */
2655
2655
  export type CancelDeploymentTeam$Outbound = {
2656
2656
  id: string;
2657
2657
  name: string;
2658
- slug: string;
2659
2658
  avatar?: string | undefined;
2659
+ slug: string;
2660
2660
  };
2661
2661
 
2662
2662
  /** @internal */
@@ -2667,8 +2667,8 @@ export const CancelDeploymentTeam$outboundSchema: z.ZodType<
2667
2667
  > = z.object({
2668
2668
  id: z.string(),
2669
2669
  name: z.string(),
2670
- slug: z.string(),
2671
2670
  avatar: z.string().optional(),
2671
+ slug: z.string(),
2672
2672
  });
2673
2673
 
2674
2674
  /**
@@ -567,11 +567,11 @@ export type CreateDeploymentProjectSettings = {
567
567
  };
568
568
 
569
569
  export const CreateDeploymentDeploymentsStatus = {
570
- Error: "error",
571
- Timeout: "timeout",
572
570
  Skipped: "skipped",
573
571
  Pending: "pending",
574
572
  Ready: "ready",
573
+ Error: "error",
574
+ Timeout: "timeout",
575
575
  } as const;
576
576
  export type CreateDeploymentDeploymentsStatus = ClosedEnum<
577
577
  typeof CreateDeploymentDeploymentsStatus
@@ -663,8 +663,8 @@ export type Creator = {
663
663
  };
664
664
 
665
665
  export const CreateDeploymentReadyState = {
666
- Error: "ERROR",
667
666
  Building: "BUILDING",
667
+ Error: "ERROR",
668
668
  Initializing: "INITIALIZING",
669
669
  Ready: "READY",
670
670
  } as const;
@@ -684,8 +684,8 @@ export type Lambdas = {
684
684
  id: string;
685
685
  createdAt?: number | undefined;
686
686
  readyState?: CreateDeploymentReadyState | undefined;
687
- readyStateAt?: number | undefined;
688
687
  entrypoint?: string | null | undefined;
688
+ readyStateAt?: number | undefined;
689
689
  output: Array<CreateDeploymentOutput>;
690
690
  };
691
691
 
@@ -1257,14 +1257,14 @@ export const CreateDeploymentPlan = {
1257
1257
  export type CreateDeploymentPlan = ClosedEnum<typeof CreateDeploymentPlan>;
1258
1258
 
1259
1259
  export const FunctionType = {
1260
- Standard: "standard",
1261
1260
  Fluid: "fluid",
1261
+ Standard: "standard",
1262
1262
  } as const;
1263
1263
  export type FunctionType = ClosedEnum<typeof FunctionType>;
1264
1264
 
1265
1265
  export const FunctionMemoryType = {
1266
- StandardLegacy: "standard_legacy",
1267
1266
  Standard: "standard",
1267
+ StandardLegacy: "standard_legacy",
1268
1268
  Performance: "performance",
1269
1269
  } as const;
1270
1270
  export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
@@ -1349,12 +1349,12 @@ export type Routes3 = {
1349
1349
  };
1350
1350
 
1351
1351
  export const Handle = {
1352
- Filesystem: "filesystem",
1353
1352
  Error: "error",
1353
+ Filesystem: "filesystem",
1354
1354
  Hit: "hit",
1355
1355
  Miss: "miss",
1356
- Resource: "resource",
1357
1356
  Rewrite: "rewrite",
1357
+ Resource: "resource",
1358
1358
  } as const;
1359
1359
  export type Handle = ClosedEnum<typeof Handle>;
1360
1360
 
@@ -1744,8 +1744,8 @@ export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<
1744
1744
  >;
1745
1745
 
1746
1746
  export const CreateDeploymentGitRepoOwnerType = {
1747
- User: "user",
1748
1747
  Team: "team",
1748
+ User: "user",
1749
1749
  } as const;
1750
1750
  export type CreateDeploymentGitRepoOwnerType = ClosedEnum<
1751
1751
  typeof CreateDeploymentGitRepoOwnerType
@@ -1772,8 +1772,8 @@ export type CreateDeploymentGitRepoType = ClosedEnum<
1772
1772
  >;
1773
1773
 
1774
1774
  export const GitRepoOwnerType = {
1775
- User: "user",
1776
1775
  Team: "team",
1776
+ User: "user",
1777
1777
  } as const;
1778
1778
  export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
1779
1779
 
@@ -1796,8 +1796,8 @@ export const GitRepoType = {
1796
1796
  export type GitRepoType = ClosedEnum<typeof GitRepoType>;
1797
1797
 
1798
1798
  export const OwnerType = {
1799
- User: "user",
1800
1799
  Team: "team",
1800
+ User: "user",
1801
1801
  } as const;
1802
1802
  export type OwnerType = ClosedEnum<typeof OwnerType>;
1803
1803
 
@@ -4215,8 +4215,8 @@ export const Lambdas$inboundSchema: z.ZodType<Lambdas, z.ZodTypeDef, unknown> =
4215
4215
  id: z.string(),
4216
4216
  createdAt: z.number().optional(),
4217
4217
  readyState: CreateDeploymentReadyState$inboundSchema.optional(),
4218
- readyStateAt: z.number().optional(),
4219
4218
  entrypoint: z.nullable(z.string()).optional(),
4219
+ readyStateAt: z.number().optional(),
4220
4220
  output: z.array(z.lazy(() => CreateDeploymentOutput$inboundSchema)),
4221
4221
  });
4222
4222
 
@@ -4225,8 +4225,8 @@ export type Lambdas$Outbound = {
4225
4225
  id: string;
4226
4226
  createdAt?: number | undefined;
4227
4227
  readyState?: string | undefined;
4228
- readyStateAt?: number | undefined;
4229
4228
  entrypoint?: string | null | undefined;
4229
+ readyStateAt?: number | undefined;
4230
4230
  output: Array<CreateDeploymentOutput$Outbound>;
4231
4231
  };
4232
4232
 
@@ -4239,8 +4239,8 @@ export const Lambdas$outboundSchema: z.ZodType<
4239
4239
  id: z.string(),
4240
4240
  createdAt: z.number().optional(),
4241
4241
  readyState: CreateDeploymentReadyState$outboundSchema.optional(),
4242
- readyStateAt: z.number().optional(),
4243
4242
  entrypoint: z.nullable(z.string()).optional(),
4243
+ readyStateAt: z.number().optional(),
4244
4244
  output: z.array(z.lazy(() => CreateDeploymentOutput$outboundSchema)),
4245
4245
  });
4246
4246
 
package/vercel-spec.json CHANGED
@@ -13671,11 +13671,11 @@
13671
13671
  "status": {
13672
13672
  "type": "string",
13673
13673
  "enum": [
13674
- "error",
13675
- "timeout",
13676
13674
  "skipped",
13677
13675
  "pending",
13678
- "ready"
13676
+ "ready",
13677
+ "error",
13678
+ "timeout"
13679
13679
  ]
13680
13680
  },
13681
13681
  "startedAt": {
@@ -13854,19 +13854,19 @@
13854
13854
  "readyState": {
13855
13855
  "type": "string",
13856
13856
  "enum": [
13857
- "ERROR",
13858
13857
  "BUILDING",
13858
+ "ERROR",
13859
13859
  "INITIALIZING",
13860
13860
  "READY"
13861
13861
  ]
13862
13862
  },
13863
- "readyStateAt": {
13864
- "type": "number"
13865
- },
13866
13863
  "entrypoint": {
13867
13864
  "nullable": true,
13868
13865
  "type": "string"
13869
13866
  },
13867
+ "readyStateAt": {
13868
+ "type": "number"
13869
+ },
13870
13870
  "output": {
13871
13871
  "items": {
13872
13872
  "properties": {
@@ -14924,15 +14924,15 @@
14924
14924
  "functionType": {
14925
14925
  "type": "string",
14926
14926
  "enum": [
14927
- "standard",
14928
- "fluid"
14927
+ "fluid",
14928
+ "standard"
14929
14929
  ]
14930
14930
  },
14931
14931
  "functionMemoryType": {
14932
14932
  "type": "string",
14933
14933
  "enum": [
14934
- "standard_legacy",
14935
14934
  "standard",
14935
+ "standard_legacy",
14936
14936
  "performance"
14937
14937
  ]
14938
14938
  },
@@ -15555,12 +15555,12 @@
15555
15555
  "handle": {
15556
15556
  "type": "string",
15557
15557
  "enum": [
15558
- "filesystem",
15559
15558
  "error",
15559
+ "filesystem",
15560
15560
  "hit",
15561
15561
  "miss",
15562
- "resource",
15563
- "rewrite"
15562
+ "rewrite",
15563
+ "resource"
15564
15564
  ]
15565
15565
  },
15566
15566
  "src": {
@@ -15883,8 +15883,8 @@
15883
15883
  "ownerType": {
15884
15884
  "type": "string",
15885
15885
  "enum": [
15886
- "user",
15887
- "team"
15886
+ "team",
15887
+ "user"
15888
15888
  ]
15889
15889
  }
15890
15890
  },
@@ -15936,8 +15936,8 @@
15936
15936
  "ownerType": {
15937
15937
  "type": "string",
15938
15938
  "enum": [
15939
- "user",
15940
- "team"
15939
+ "team",
15940
+ "user"
15941
15941
  ]
15942
15942
  }
15943
15943
  },
@@ -15990,8 +15990,8 @@
15990
15990
  "ownerType": {
15991
15991
  "type": "string",
15992
15992
  "enum": [
15993
- "user",
15994
- "team"
15993
+ "team",
15994
+ "user"
15995
15995
  ]
15996
15996
  }
15997
15997
  },
@@ -16924,11 +16924,11 @@
16924
16924
  "status": {
16925
16925
  "type": "string",
16926
16926
  "enum": [
16927
- "error",
16928
- "timeout",
16929
16927
  "skipped",
16930
16928
  "pending",
16931
- "ready"
16929
+ "ready",
16930
+ "error",
16931
+ "timeout"
16932
16932
  ]
16933
16933
  },
16934
16934
  "startedAt": {
@@ -17107,19 +17107,19 @@
17107
17107
  "readyState": {
17108
17108
  "type": "string",
17109
17109
  "enum": [
17110
- "ERROR",
17111
17110
  "BUILDING",
17111
+ "ERROR",
17112
17112
  "INITIALIZING",
17113
17113
  "READY"
17114
17114
  ]
17115
17115
  },
17116
- "readyStateAt": {
17117
- "type": "number"
17118
- },
17119
17116
  "entrypoint": {
17120
17117
  "nullable": true,
17121
17118
  "type": "string"
17122
17119
  },
17120
+ "readyStateAt": {
17121
+ "type": "number"
17122
+ },
17123
17123
  "output": {
17124
17124
  "items": {
17125
17125
  "properties": {
@@ -17173,10 +17173,10 @@
17173
17173
  "name": {
17174
17174
  "type": "string"
17175
17175
  },
17176
- "slug": {
17176
+ "avatar": {
17177
17177
  "type": "string"
17178
17178
  },
17179
- "avatar": {
17179
+ "slug": {
17180
17180
  "type": "string"
17181
17181
  }
17182
17182
  },
@@ -18793,12 +18793,12 @@
18793
18793
  "handle": {
18794
18794
  "type": "string",
18795
18795
  "enum": [
18796
- "filesystem",
18797
18796
  "error",
18797
+ "filesystem",
18798
18798
  "hit",
18799
18799
  "miss",
18800
- "resource",
18801
- "rewrite"
18800
+ "rewrite",
18801
+ "resource"
18802
18802
  ]
18803
18803
  },
18804
18804
  "src": {
@@ -18877,8 +18877,8 @@
18877
18877
  "ownerType": {
18878
18878
  "type": "string",
18879
18879
  "enum": [
18880
- "user",
18881
- "team"
18880
+ "team",
18881
+ "user"
18882
18882
  ]
18883
18883
  }
18884
18884
  },
@@ -18930,8 +18930,8 @@
18930
18930
  "ownerType": {
18931
18931
  "type": "string",
18932
18932
  "enum": [
18933
- "user",
18934
- "team"
18933
+ "team",
18934
+ "user"
18935
18935
  ]
18936
18936
  }
18937
18937
  },
@@ -18984,8 +18984,8 @@
18984
18984
  "ownerType": {
18985
18985
  "type": "string",
18986
18986
  "enum": [
18987
- "user",
18988
- "team"
18987
+ "team",
18988
+ "user"
18989
18989
  ]
18990
18990
  }
18991
18991
  },
@@ -19194,15 +19194,15 @@
19194
19194
  "functionType": {
19195
19195
  "type": "string",
19196
19196
  "enum": [
19197
- "standard",
19198
- "fluid"
19197
+ "fluid",
19198
+ "standard"
19199
19199
  ]
19200
19200
  },
19201
19201
  "functionMemoryType": {
19202
19202
  "type": "string",
19203
19203
  "enum": [
19204
- "standard_legacy",
19205
19204
  "standard",
19205
+ "standard_legacy",
19206
19206
  "performance"
19207
19207
  ]
19208
19208
  },
@@ -93251,10 +93251,5 @@
93251
93251
  }
93252
93252
  }
93253
93253
  },
93254
- "security": [],
93255
- "contact": {
93256
- "email": "support@vercel.com",
93257
- "name": "Vercel Support",
93258
- "url": "https://vercel.com/support"
93259
- }
93254
+ "security": []
93260
93255
  }