@vercel/sdk 1.11.1 → 1.11.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 (97) hide show
  1. package/bin/mcp-server.js +1329 -1215
  2. package/bin/mcp-server.js.map +21 -21
  3. package/esm/__tests__/accessgroups.test.js +1 -3
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +12 -3
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/integrations.test.js +1 -1
  8. package/esm/__tests__/rollingrelease.test.js +6 -2
  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/funcs/deploymentsUploadFile.js +0 -1
  13. package/esm/funcs/deploymentsUploadFile.js.map +1 -1
  14. package/esm/funcs/domainsGetDomainTransfer.js +2 -2
  15. package/esm/funcs/domainsGetDomainTransfer.js.map +1 -1
  16. package/esm/funcs/marketplaceUpdateResourceSecrets.js +2 -2
  17. package/esm/funcs/marketplaceUpdateResourceSecrets.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +6 -6
  23. package/esm/models/canceldeploymentop.js +2 -2
  24. package/esm/models/canceldeploymentop.js.map +1 -1
  25. package/esm/models/createdeploymentop.d.ts +41 -41
  26. package/esm/models/createdeploymentop.d.ts.map +1 -1
  27. package/esm/models/createdeploymentop.js +15 -15
  28. package/esm/models/createdeploymentop.js.map +1 -1
  29. package/esm/models/createintegrationstoredirectop.d.ts +273 -246
  30. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  31. package/esm/models/createintegrationstoredirectop.js +317 -296
  32. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  33. package/esm/models/createprojectop.d.ts +162 -164
  34. package/esm/models/createprojectop.d.ts.map +1 -1
  35. package/esm/models/createprojectop.js +154 -156
  36. package/esm/models/createprojectop.js.map +1 -1
  37. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  38. package/esm/models/getconfigurationproductsop.js +408 -408
  39. package/esm/models/getdeploymentop.d.ts +6 -6
  40. package/esm/models/getdeploymentop.js +2 -2
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getdomaintransferop.d.ts +99 -25
  43. package/esm/models/getdomaintransferop.d.ts.map +1 -1
  44. package/esm/models/getdomaintransferop.js +101 -25
  45. package/esm/models/getdomaintransferop.js.map +1 -1
  46. package/esm/models/getprojectsop.d.ts +0 -2
  47. package/esm/models/getprojectsop.d.ts.map +1 -1
  48. package/esm/models/getprojectsop.js +0 -2
  49. package/esm/models/getprojectsop.js.map +1 -1
  50. package/esm/models/patchteamop.d.ts +12 -0
  51. package/esm/models/patchteamop.d.ts.map +1 -1
  52. package/esm/models/patchteamop.js +4 -0
  53. package/esm/models/patchteamop.js.map +1 -1
  54. package/esm/models/updateprojectdatacacheop.d.ts +0 -2
  55. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  56. package/esm/models/updateprojectdatacacheop.js +0 -2
  57. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  58. package/esm/models/updateprojectop.d.ts +0 -2
  59. package/esm/models/updateprojectop.d.ts.map +1 -1
  60. package/esm/models/updateprojectop.js +0 -2
  61. package/esm/models/updateprojectop.js.map +1 -1
  62. package/esm/models/uploadfileop.d.ts +0 -5
  63. package/esm/models/uploadfileop.d.ts.map +1 -1
  64. package/esm/models/uploadfileop.js +0 -4
  65. package/esm/models/uploadfileop.js.map +1 -1
  66. package/esm/models/userevent.d.ts +960 -770
  67. package/esm/models/userevent.d.ts.map +1 -1
  68. package/esm/models/userevent.js +1102 -974
  69. package/esm/models/userevent.js.map +1 -1
  70. package/examples/package-lock.json +1 -1
  71. package/jsr.json +1 -1
  72. package/package.json +1 -1
  73. package/src/__tests__/accessgroups.test.ts +1 -3
  74. package/src/__tests__/domains.test.ts +12 -3
  75. package/src/__tests__/integrations.test.ts +1 -1
  76. package/src/__tests__/rollingrelease.test.ts +6 -2
  77. package/src/__tests__/security.test.ts +11 -1
  78. package/src/funcs/deploymentsUploadFile.ts +0 -5
  79. package/src/funcs/domainsGetDomainTransfer.ts +2 -2
  80. package/src/funcs/marketplaceUpdateResourceSecrets.ts +2 -2
  81. package/src/lib/config.ts +3 -3
  82. package/src/mcp-server/mcp-server.ts +1 -1
  83. package/src/mcp-server/server.ts +1 -1
  84. package/src/models/canceldeploymentop.ts +4 -4
  85. package/src/models/createdeploymentop.ts +19 -19
  86. package/src/models/createintegrationstoredirectop.ts +543 -507
  87. package/src/models/createprojectop.ts +299 -303
  88. package/src/models/getconfigurationproductsop.ts +703 -703
  89. package/src/models/getdeploymentop.ts +4 -4
  90. package/src/models/getdomaintransferop.ts +203 -39
  91. package/src/models/getprojectsop.ts +0 -4
  92. package/src/models/patchteamop.ts +4 -0
  93. package/src/models/updateprojectdatacacheop.ts +0 -4
  94. package/src/models/updateprojectop.ts +0 -4
  95. package/src/models/uploadfileop.ts +0 -9
  96. package/src/models/userevent.ts +2219 -1917
  97. package/vercel-spec.json +613 -503
@@ -466,11 +466,11 @@ export type CreateDeploymentProjectSettings = {
466
466
  webAnalytics?: CreateDeploymentWebAnalytics | undefined;
467
467
  };
468
468
  export declare const CreateDeploymentDeploymentsStatus: {
469
+ readonly Error: "error";
470
+ readonly Timeout: "timeout";
469
471
  readonly Skipped: "skipped";
470
472
  readonly Pending: "pending";
471
473
  readonly Ready: "ready";
472
- readonly Error: "error";
473
- readonly Timeout: "timeout";
474
474
  };
475
475
  export type CreateDeploymentDeploymentsStatus = ClosedEnum<typeof CreateDeploymentDeploymentsStatus>;
476
476
  export type Integrations = {
@@ -551,8 +551,8 @@ export type Creator = {
551
551
  avatar?: string | undefined;
552
552
  };
553
553
  export declare const CreateDeploymentReadyState: {
554
- readonly Building: "BUILDING";
555
554
  readonly Error: "ERROR";
555
+ readonly Building: "BUILDING";
556
556
  readonly Initializing: "INITIALIZING";
557
557
  readonly Ready: "READY";
558
558
  };
@@ -568,8 +568,8 @@ export type Lambdas = {
568
568
  id: string;
569
569
  createdAt?: number | undefined;
570
570
  readyState?: CreateDeploymentReadyState | undefined;
571
- entrypoint?: string | null | undefined;
572
571
  readyStateAt?: number | undefined;
572
+ entrypoint?: string | null | undefined;
573
573
  output: Array<CreateDeploymentOutput>;
574
574
  };
575
575
  export declare const CreateDeploymentStatus: {
@@ -992,13 +992,13 @@ export declare const CreateDeploymentPlan: {
992
992
  };
993
993
  export type CreateDeploymentPlan = ClosedEnum<typeof CreateDeploymentPlan>;
994
994
  export declare const FunctionType: {
995
- readonly Fluid: "fluid";
996
995
  readonly Standard: "standard";
996
+ readonly Fluid: "fluid";
997
997
  };
998
998
  export type FunctionType = ClosedEnum<typeof FunctionType>;
999
999
  export declare const FunctionMemoryType: {
1000
- readonly Standard: "standard";
1001
1000
  readonly StandardLegacy: "standard_legacy";
1001
+ readonly Standard: "standard";
1002
1002
  readonly Performance: "performance";
1003
1003
  };
1004
1004
  export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
@@ -1074,12 +1074,12 @@ export type Routes3 = {
1074
1074
  middleware: number;
1075
1075
  };
1076
1076
  export declare const Handle: {
1077
- readonly Error: "error";
1078
1077
  readonly Filesystem: "filesystem";
1078
+ readonly Error: "error";
1079
1079
  readonly Hit: "hit";
1080
1080
  readonly Miss: "miss";
1081
- readonly Rewrite: "rewrite";
1082
1081
  readonly Resource: "resource";
1082
+ readonly Rewrite: "rewrite";
1083
1083
  };
1084
1084
  export type Handle = ClosedEnum<typeof Handle>;
1085
1085
  export type Routes2 = {
@@ -1203,8 +1203,8 @@ export declare const RoutesType: {
1203
1203
  };
1204
1204
  export type RoutesType = ClosedEnum<typeof RoutesType>;
1205
1205
  export declare const CreateDeploymentRoutesOp: {
1206
- readonly Append: "append";
1207
1206
  readonly Set: "set";
1207
+ readonly Append: "append";
1208
1208
  readonly Delete: "delete";
1209
1209
  };
1210
1210
  export type CreateDeploymentRoutesOp = ClosedEnum<typeof CreateDeploymentRoutesOp>;
@@ -1310,15 +1310,15 @@ export type CreateDeploymentMicrofrontendsApplications = {
1310
1310
  deploymentHost?: string | undefined;
1311
1311
  };
1312
1312
  /**
1313
- * The result of the microfrontends config upload during deployment creation. Only set for default app deployments. - `success` - The config was uploaded successfully. - `error` - The config upload failed. - `no_config` - No config was found to upload. - `undefined` - The config upload has not been attempted yet.
1313
+ * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
1314
1314
  */
1315
1315
  export declare const MfeConfigUploadState: {
1316
- readonly Error: "error";
1317
1316
  readonly Success: "success";
1317
+ readonly WaitingOnBuild: "waiting_on_build";
1318
1318
  readonly NoConfig: "no_config";
1319
1319
  };
1320
1320
  /**
1321
- * The result of the microfrontends config upload during deployment creation. Only set for default app deployments. - `success` - The config was uploaded successfully. - `error` - The config upload failed. - `no_config` - No config was found to upload. - `undefined` - The config upload has not been attempted yet.
1321
+ * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
1322
1322
  */
1323
1323
  export type MfeConfigUploadState = ClosedEnum<typeof MfeConfigUploadState>;
1324
1324
  export type CreateDeploymentMicrofrontends2 = {
@@ -1330,7 +1330,7 @@ export type CreateDeploymentMicrofrontends2 = {
1330
1330
  [k: string]: CreateDeploymentMicrofrontendsApplications;
1331
1331
  } | undefined;
1332
1332
  /**
1333
- * The result of the microfrontends config upload during deployment creation. Only set for default app deployments. - `success` - The config was uploaded successfully. - `error` - The config upload failed. - `no_config` - No config was found to upload. - `undefined` - The config upload has not been attempted yet.
1333
+ * The result of the microfrontends config upload during deployment creation / build. Only set for default app deployments. The config upload is attempted during deployment create, and then again during the build. If the config is not in the root directory, or the deployment is prebuilt, the config cannot be uploaded during deployment create. The upload during deployment build finds the config even if it's not in the root directory, as it has access to all files. Uploading the config during create is ideal, as then all child deployments are guaranteed to have access to the default app deployment config even if the default app has not yet started building. If the config is not uploaded, the child app will show as building until the config has been uploaded during the default app build. - `success` - The config was uploaded successfully, either when the deployment was created or during the build. - `waiting_on_build` - The config could not be uploaded during deployment create, will be attempted again during the build. - `no_config` - No config was found. Only set once the build has not found the config in any of the deployment's files. - `undefined` - Legacy deployments, or there was an error uploading the config during deployment create.
1334
1334
  */
1335
1335
  mfeConfigUploadState?: MfeConfigUploadState | undefined;
1336
1336
  /**
@@ -1397,8 +1397,8 @@ export declare const CreateDeploymentGitRepoDeploymentsType: {
1397
1397
  };
1398
1398
  export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<typeof CreateDeploymentGitRepoDeploymentsType>;
1399
1399
  export declare const CreateDeploymentGitRepoOwnerType: {
1400
- readonly Team: "team";
1401
1400
  readonly User: "user";
1401
+ readonly Team: "team";
1402
1402
  };
1403
1403
  export type CreateDeploymentGitRepoOwnerType = ClosedEnum<typeof CreateDeploymentGitRepoOwnerType>;
1404
1404
  export type GitRepo3 = {
@@ -1418,8 +1418,8 @@ export declare const CreateDeploymentGitRepoType: {
1418
1418
  };
1419
1419
  export type CreateDeploymentGitRepoType = ClosedEnum<typeof CreateDeploymentGitRepoType>;
1420
1420
  export declare const GitRepoOwnerType: {
1421
- readonly Team: "team";
1422
1421
  readonly User: "user";
1422
+ readonly Team: "team";
1423
1423
  };
1424
1424
  export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
1425
1425
  export type GitRepo2 = {
@@ -1439,8 +1439,8 @@ export declare const GitRepoType: {
1439
1439
  };
1440
1440
  export type GitRepoType = ClosedEnum<typeof GitRepoType>;
1441
1441
  export declare const OwnerType: {
1442
- readonly Team: "team";
1443
1442
  readonly User: "user";
1443
+ readonly Team: "team";
1444
1444
  };
1445
1445
  export type OwnerType = ClosedEnum<typeof OwnerType>;
1446
1446
  export type GitRepo1 = {
@@ -2531,19 +2531,19 @@ export declare const CreateDeploymentDeploymentsStatus$outboundSchema: z.ZodNati
2531
2531
  export declare namespace CreateDeploymentDeploymentsStatus$ {
2532
2532
  /** @deprecated use `CreateDeploymentDeploymentsStatus$inboundSchema` instead. */
2533
2533
  const inboundSchema: z.ZodNativeEnum<{
2534
+ readonly Error: "error";
2535
+ readonly Timeout: "timeout";
2534
2536
  readonly Skipped: "skipped";
2535
2537
  readonly Pending: "pending";
2536
2538
  readonly Ready: "ready";
2537
- readonly Error: "error";
2538
- readonly Timeout: "timeout";
2539
2539
  }>;
2540
2540
  /** @deprecated use `CreateDeploymentDeploymentsStatus$outboundSchema` instead. */
2541
2541
  const outboundSchema: z.ZodNativeEnum<{
2542
+ readonly Error: "error";
2543
+ readonly Timeout: "timeout";
2542
2544
  readonly Skipped: "skipped";
2543
2545
  readonly Pending: "pending";
2544
2546
  readonly Ready: "ready";
2545
- readonly Error: "error";
2546
- readonly Timeout: "timeout";
2547
2547
  }>;
2548
2548
  }
2549
2549
  /** @internal */
@@ -2747,15 +2747,15 @@ export declare const CreateDeploymentReadyState$outboundSchema: z.ZodNativeEnum<
2747
2747
  export declare namespace CreateDeploymentReadyState$ {
2748
2748
  /** @deprecated use `CreateDeploymentReadyState$inboundSchema` instead. */
2749
2749
  const inboundSchema: z.ZodNativeEnum<{
2750
- readonly Building: "BUILDING";
2751
2750
  readonly Error: "ERROR";
2751
+ readonly Building: "BUILDING";
2752
2752
  readonly Initializing: "INITIALIZING";
2753
2753
  readonly Ready: "READY";
2754
2754
  }>;
2755
2755
  /** @deprecated use `CreateDeploymentReadyState$outboundSchema` instead. */
2756
2756
  const outboundSchema: z.ZodNativeEnum<{
2757
- readonly Building: "BUILDING";
2758
2757
  readonly Error: "ERROR";
2758
+ readonly Building: "BUILDING";
2759
2759
  readonly Initializing: "INITIALIZING";
2760
2760
  readonly Ready: "READY";
2761
2761
  }>;
@@ -2790,8 +2790,8 @@ export type Lambdas$Outbound = {
2790
2790
  id: string;
2791
2791
  createdAt?: number | undefined;
2792
2792
  readyState?: string | undefined;
2793
- entrypoint?: string | null | undefined;
2794
2793
  readyStateAt?: number | undefined;
2794
+ entrypoint?: string | null | undefined;
2795
2795
  output: Array<CreateDeploymentOutput$Outbound>;
2796
2796
  };
2797
2797
  /** @internal */
@@ -4181,13 +4181,13 @@ export declare const FunctionType$outboundSchema: z.ZodNativeEnum<typeof Functio
4181
4181
  export declare namespace FunctionType$ {
4182
4182
  /** @deprecated use `FunctionType$inboundSchema` instead. */
4183
4183
  const inboundSchema: z.ZodNativeEnum<{
4184
- readonly Fluid: "fluid";
4185
4184
  readonly Standard: "standard";
4185
+ readonly Fluid: "fluid";
4186
4186
  }>;
4187
4187
  /** @deprecated use `FunctionType$outboundSchema` instead. */
4188
4188
  const outboundSchema: z.ZodNativeEnum<{
4189
- readonly Fluid: "fluid";
4190
4189
  readonly Standard: "standard";
4190
+ readonly Fluid: "fluid";
4191
4191
  }>;
4192
4192
  }
4193
4193
  /** @internal */
@@ -4201,14 +4201,14 @@ export declare const FunctionMemoryType$outboundSchema: z.ZodNativeEnum<typeof F
4201
4201
  export declare namespace FunctionMemoryType$ {
4202
4202
  /** @deprecated use `FunctionMemoryType$inboundSchema` instead. */
4203
4203
  const inboundSchema: z.ZodNativeEnum<{
4204
- readonly Standard: "standard";
4205
4204
  readonly StandardLegacy: "standard_legacy";
4205
+ readonly Standard: "standard";
4206
4206
  readonly Performance: "performance";
4207
4207
  }>;
4208
4208
  /** @deprecated use `FunctionMemoryType$outboundSchema` instead. */
4209
4209
  const outboundSchema: z.ZodNativeEnum<{
4210
- readonly Standard: "standard";
4211
4210
  readonly StandardLegacy: "standard_legacy";
4211
+ readonly Standard: "standard";
4212
4212
  readonly Performance: "performance";
4213
4213
  }>;
4214
4214
  }
@@ -4369,21 +4369,21 @@ export declare const Handle$outboundSchema: z.ZodNativeEnum<typeof Handle>;
4369
4369
  export declare namespace Handle$ {
4370
4370
  /** @deprecated use `Handle$inboundSchema` instead. */
4371
4371
  const inboundSchema: z.ZodNativeEnum<{
4372
- readonly Error: "error";
4373
4372
  readonly Filesystem: "filesystem";
4373
+ readonly Error: "error";
4374
4374
  readonly Hit: "hit";
4375
4375
  readonly Miss: "miss";
4376
- readonly Rewrite: "rewrite";
4377
4376
  readonly Resource: "resource";
4377
+ readonly Rewrite: "rewrite";
4378
4378
  }>;
4379
4379
  /** @deprecated use `Handle$outboundSchema` instead. */
4380
4380
  const outboundSchema: z.ZodNativeEnum<{
4381
- readonly Error: "error";
4382
4381
  readonly Filesystem: "filesystem";
4382
+ readonly Error: "error";
4383
4383
  readonly Hit: "hit";
4384
4384
  readonly Miss: "miss";
4385
- readonly Rewrite: "rewrite";
4386
4385
  readonly Resource: "resource";
4386
+ readonly Rewrite: "rewrite";
4387
4387
  }>;
4388
4388
  }
4389
4389
  /** @internal */
@@ -4988,14 +4988,14 @@ export declare const CreateDeploymentRoutesOp$outboundSchema: z.ZodNativeEnum<ty
4988
4988
  export declare namespace CreateDeploymentRoutesOp$ {
4989
4989
  /** @deprecated use `CreateDeploymentRoutesOp$inboundSchema` instead. */
4990
4990
  const inboundSchema: z.ZodNativeEnum<{
4991
- readonly Append: "append";
4992
4991
  readonly Set: "set";
4992
+ readonly Append: "append";
4993
4993
  readonly Delete: "delete";
4994
4994
  }>;
4995
4995
  /** @deprecated use `CreateDeploymentRoutesOp$outboundSchema` instead. */
4996
4996
  const outboundSchema: z.ZodNativeEnum<{
4997
- readonly Append: "append";
4998
4997
  readonly Set: "set";
4998
+ readonly Append: "append";
4999
4999
  readonly Delete: "delete";
5000
5000
  }>;
5001
5001
  }
@@ -5350,14 +5350,14 @@ export declare const MfeConfigUploadState$outboundSchema: z.ZodNativeEnum<typeof
5350
5350
  export declare namespace MfeConfigUploadState$ {
5351
5351
  /** @deprecated use `MfeConfigUploadState$inboundSchema` instead. */
5352
5352
  const inboundSchema: z.ZodNativeEnum<{
5353
- readonly Error: "error";
5354
5353
  readonly Success: "success";
5354
+ readonly WaitingOnBuild: "waiting_on_build";
5355
5355
  readonly NoConfig: "no_config";
5356
5356
  }>;
5357
5357
  /** @deprecated use `MfeConfigUploadState$outboundSchema` instead. */
5358
5358
  const outboundSchema: z.ZodNativeEnum<{
5359
- readonly Error: "error";
5360
5359
  readonly Success: "success";
5360
+ readonly WaitingOnBuild: "waiting_on_build";
5361
5361
  readonly NoConfig: "no_config";
5362
5362
  }>;
5363
5363
  }
@@ -5577,13 +5577,13 @@ export declare const CreateDeploymentGitRepoOwnerType$outboundSchema: z.ZodNativ
5577
5577
  export declare namespace CreateDeploymentGitRepoOwnerType$ {
5578
5578
  /** @deprecated use `CreateDeploymentGitRepoOwnerType$inboundSchema` instead. */
5579
5579
  const inboundSchema: z.ZodNativeEnum<{
5580
- readonly Team: "team";
5581
5580
  readonly User: "user";
5581
+ readonly Team: "team";
5582
5582
  }>;
5583
5583
  /** @deprecated use `CreateDeploymentGitRepoOwnerType$outboundSchema` instead. */
5584
5584
  const outboundSchema: z.ZodNativeEnum<{
5585
- readonly Team: "team";
5586
5585
  readonly User: "user";
5586
+ readonly Team: "team";
5587
5587
  }>;
5588
5588
  }
5589
5589
  /** @internal */
@@ -5646,13 +5646,13 @@ export declare const GitRepoOwnerType$outboundSchema: z.ZodNativeEnum<typeof Git
5646
5646
  export declare namespace GitRepoOwnerType$ {
5647
5647
  /** @deprecated use `GitRepoOwnerType$inboundSchema` instead. */
5648
5648
  const inboundSchema: z.ZodNativeEnum<{
5649
- readonly Team: "team";
5650
5649
  readonly User: "user";
5650
+ readonly Team: "team";
5651
5651
  }>;
5652
5652
  /** @deprecated use `GitRepoOwnerType$outboundSchema` instead. */
5653
5653
  const outboundSchema: z.ZodNativeEnum<{
5654
- readonly Team: "team";
5655
5654
  readonly User: "user";
5655
+ readonly Team: "team";
5656
5656
  }>;
5657
5657
  }
5658
5658
  /** @internal */
@@ -5715,13 +5715,13 @@ export declare const OwnerType$outboundSchema: z.ZodNativeEnum<typeof OwnerType>
5715
5715
  export declare namespace OwnerType$ {
5716
5716
  /** @deprecated use `OwnerType$inboundSchema` instead. */
5717
5717
  const inboundSchema: z.ZodNativeEnum<{
5718
- readonly Team: "team";
5719
5718
  readonly User: "user";
5719
+ readonly Team: "team";
5720
5720
  }>;
5721
5721
  /** @deprecated use `OwnerType$outboundSchema` instead. */
5722
5722
  const outboundSchema: z.ZodNativeEnum<{
5723
- readonly Team: "team";
5724
5723
  readonly User: "user";
5724
+ readonly Team: "team";
5725
5725
  }>;
5726
5726
  }
5727
5727
  /** @internal */