vercel-api-js 1.8.2 → 1.9.0

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 CHANGED
@@ -5216,7 +5216,7 @@ const resolveUrl = (url, queryParams = {})=>{
5216
5216
  * @summary Create a named sandbox
5217
5217
  * @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
5218
5218
  * @link /v2/sandboxes
5219
- */ async function createSandboxes({ queryParams, config } = {}) {
5219
+ */ async function createSandboxesV2({ queryParams, config } = {}) {
5220
5220
  const { client: request = client, ...requestConfig } = config ?? {};
5221
5221
  const data = await request({
5222
5222
  method: "POST",
@@ -5710,6 +5710,23 @@ const resolveUrl = (url, queryParams = {})=>{
5710
5710
  });
5711
5711
  return data;
5712
5712
  }
5713
+ /**
5714
+ * @summary Create a named sandbox
5715
+ * @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown. Unlike v2, this version has no `runtime` parameter: when no `image` is provided (and the sandbox is not restored from a snapshot), the sandbox is created from the default universal image.
5716
+ * @link /v3/sandboxes
5717
+ */ async function createSandboxesV3({ queryParams, config } = {}) {
5718
+ const { client: request = client, ...requestConfig } = config ?? {};
5719
+ const data = await request({
5720
+ method: "POST",
5721
+ url: `/v3/sandboxes`,
5722
+ queryParams,
5723
+ ...requestConfig,
5724
+ headers: {
5725
+ ...requestConfig.headers
5726
+ }
5727
+ });
5728
+ return data;
5729
+ }
5713
5730
  /**
5714
5731
  * @summary Update Attack Challenge mode
5715
5732
  * @description Update the setting for determining if the project has Attack Challenge mode enabled.
@@ -5953,6 +5970,7 @@ const resolveUrl = (url, queryParams = {})=>{
5953
5970
  return data;
5954
5971
  }
5955
5972
  /**
5973
+ * @summary Get a store
5956
5974
  * @link /storage/stores/{id}
5957
5975
  */ async function getStorageStoresById({ pathParams, queryParams, config } = {}) {
5958
5976
  const { client: request = client, ...requestConfig } = config ?? {};
@@ -5971,6 +5989,7 @@ const resolveUrl = (url, queryParams = {})=>{
5971
5989
  return data;
5972
5990
  }
5973
5991
  /**
5992
+ * @summary Create a Blob store
5974
5993
  * @link /storage/stores/blob
5975
5994
  */ async function createStorageStoresBlob({ config } = {}) {
5976
5995
  const { client: request = client, ...requestConfig } = config ?? {};
@@ -5985,6 +6004,7 @@ const resolveUrl = (url, queryParams = {})=>{
5985
6004
  return data;
5986
6005
  }
5987
6006
  /**
6007
+ * @summary Delete a Blob store
5988
6008
  * @link /storage/stores/blob/{id}
5989
6009
  */ async function deleteStorageStoresBlobById({ pathParams, config } = {}) {
5990
6010
  const { client: request = client, ...requestConfig } = config ?? {};
@@ -6559,6 +6579,86 @@ const resolveUrl = (url, queryParams = {})=>{
6559
6579
  });
6560
6580
  return data;
6561
6581
  }
6582
+ /**
6583
+ * @summary Add a repository permission
6584
+ * @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
6585
+ * @link /v1/vcr/repository/{idOrName}/permissions
6586
+ */ async function addRepositoryPermission({ pathParams, queryParams, config } = {}) {
6587
+ const { client: request = client, ...requestConfig } = config ?? {};
6588
+ if (!pathParams.idOrName) {
6589
+ throw new Error(`Missing required path parameter: idOrName`);
6590
+ }
6591
+ const data = await request({
6592
+ method: "POST",
6593
+ url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
6594
+ queryParams,
6595
+ ...requestConfig,
6596
+ headers: {
6597
+ ...requestConfig.headers
6598
+ }
6599
+ });
6600
+ return data;
6601
+ }
6602
+ /**
6603
+ * @summary Remove a repository permission
6604
+ * @description Revoke a team's access to a VCR repository.
6605
+ * @link /v1/vcr/repository/{idOrName}/permissions
6606
+ */ async function removeRepositoryPermission({ pathParams, queryParams, config } = {}) {
6607
+ const { client: request = client, ...requestConfig } = config ?? {};
6608
+ if (!pathParams.idOrName) {
6609
+ throw new Error(`Missing required path parameter: idOrName`);
6610
+ }
6611
+ const data = await request({
6612
+ method: "DELETE",
6613
+ url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
6614
+ queryParams,
6615
+ ...requestConfig,
6616
+ headers: {
6617
+ ...requestConfig.headers
6618
+ }
6619
+ });
6620
+ return data;
6621
+ }
6622
+ /**
6623
+ * @summary List repository permissions
6624
+ * @description List the teams a VCR repository is shared with.
6625
+ * @link /v1/vcr/repository/{idOrName}/permissions
6626
+ */ async function listRepositoryPermissions({ pathParams, queryParams, config } = {}) {
6627
+ const { client: request = client, ...requestConfig } = config ?? {};
6628
+ if (!pathParams.idOrName) {
6629
+ throw new Error(`Missing required path parameter: idOrName`);
6630
+ }
6631
+ const data = await request({
6632
+ method: "GET",
6633
+ url: `/v1/vcr/repository/${pathParams.idOrName}/permissions`,
6634
+ queryParams,
6635
+ ...requestConfig,
6636
+ headers: {
6637
+ ...requestConfig.headers
6638
+ }
6639
+ });
6640
+ return data;
6641
+ }
6642
+ /**
6643
+ * @summary Clear all repository permissions
6644
+ * @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
6645
+ * @link /v1/vcr/repository/{idOrName}/permissions/all
6646
+ */ async function clearRepositoryPermissions({ pathParams, queryParams, config } = {}) {
6647
+ const { client: request = client, ...requestConfig } = config ?? {};
6648
+ if (!pathParams.idOrName) {
6649
+ throw new Error(`Missing required path parameter: idOrName`);
6650
+ }
6651
+ const data = await request({
6652
+ method: "DELETE",
6653
+ url: `/v1/vcr/repository/${pathParams.idOrName}/permissions/all`,
6654
+ queryParams,
6655
+ ...requestConfig,
6656
+ headers: {
6657
+ ...requestConfig.headers
6658
+ }
6659
+ });
6660
+ return data;
6661
+ }
6562
6662
  /**
6563
6663
  * @summary List repository tags
6564
6664
  * @description List a repository's tags.
@@ -6648,6 +6748,327 @@ const resolveUrl = (url, queryParams = {})=>{
6648
6748
  });
6649
6749
  return data;
6650
6750
  }
6751
+ /**
6752
+ * @summary Check registry API version support
6753
+ * @description GET /v2/ Docker Registry v2 version check. Returns a 401 challenge when no credentials are provided, prompting the Docker client to send auth. With valid credentials, returns 200 so the client can proceed.
6754
+ * @link /v2/
6755
+ */ async function getRoot({ config } = {}) {
6756
+ const { client: request = client, ...requestConfig } = config ?? {};
6757
+ const data = await request({
6758
+ method: "GET",
6759
+ url: `/v2/`,
6760
+ ...requestConfig,
6761
+ headers: {
6762
+ ...requestConfig.headers
6763
+ }
6764
+ });
6765
+ return data;
6766
+ }
6767
+ /**
6768
+ * @summary Download a blob
6769
+ * @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
6770
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
6771
+ */ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
6772
+ const { client: request = client, ...requestConfig } = config ?? {};
6773
+ if (!pathParams.teamSlug) {
6774
+ throw new Error(`Missing required path parameter: teamSlug`);
6775
+ }
6776
+ if (!pathParams.projectSlug) {
6777
+ throw new Error(`Missing required path parameter: projectSlug`);
6778
+ }
6779
+ if (!pathParams.repositoryName) {
6780
+ throw new Error(`Missing required path parameter: repositoryName`);
6781
+ }
6782
+ if (!pathParams.digest) {
6783
+ throw new Error(`Missing required path parameter: digest`);
6784
+ }
6785
+ const data = await request({
6786
+ method: "GET",
6787
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
6788
+ ...requestConfig,
6789
+ headers: {
6790
+ ...requestConfig.headers
6791
+ }
6792
+ });
6793
+ return data;
6794
+ }
6795
+ /**
6796
+ * @summary Delete a blob
6797
+ * @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
6798
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
6799
+ */ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config } = {}) {
6800
+ const { client: request = client, ...requestConfig } = config ?? {};
6801
+ if (!pathParams.teamSlug) {
6802
+ throw new Error(`Missing required path parameter: teamSlug`);
6803
+ }
6804
+ if (!pathParams.projectSlug) {
6805
+ throw new Error(`Missing required path parameter: projectSlug`);
6806
+ }
6807
+ if (!pathParams.repositoryName) {
6808
+ throw new Error(`Missing required path parameter: repositoryName`);
6809
+ }
6810
+ if (!pathParams.digest) {
6811
+ throw new Error(`Missing required path parameter: digest`);
6812
+ }
6813
+ const data = await request({
6814
+ method: "DELETE",
6815
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/${pathParams.digest}`,
6816
+ ...requestConfig,
6817
+ headers: {
6818
+ ...requestConfig.headers
6819
+ }
6820
+ });
6821
+ return data;
6822
+ }
6823
+ /**
6824
+ * @summary Get blob upload status
6825
+ * @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Query the status of an in-progress blob upload. Used by clients to resume a partial upload after an interruption.
6826
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
6827
+ */ async function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
6828
+ const { client: request = client, ...requestConfig } = config ?? {};
6829
+ if (!pathParams.teamSlug) {
6830
+ throw new Error(`Missing required path parameter: teamSlug`);
6831
+ }
6832
+ if (!pathParams.projectSlug) {
6833
+ throw new Error(`Missing required path parameter: projectSlug`);
6834
+ }
6835
+ if (!pathParams.repositoryName) {
6836
+ throw new Error(`Missing required path parameter: repositoryName`);
6837
+ }
6838
+ if (!pathParams.uuid) {
6839
+ throw new Error(`Missing required path parameter: uuid`);
6840
+ }
6841
+ const data = await request({
6842
+ method: "GET",
6843
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
6844
+ ...requestConfig,
6845
+ headers: {
6846
+ ...requestConfig.headers
6847
+ }
6848
+ });
6849
+ return data;
6850
+ }
6851
+ /**
6852
+ * @summary Cancel a blob upload
6853
+ * @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Cancel an in-flight blob upload. Aborts the underlying S3 multipart upload (if one was started) and discards the session.
6854
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
6855
+ */ async function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
6856
+ const { client: request = client, ...requestConfig } = config ?? {};
6857
+ if (!pathParams.teamSlug) {
6858
+ throw new Error(`Missing required path parameter: teamSlug`);
6859
+ }
6860
+ if (!pathParams.projectSlug) {
6861
+ throw new Error(`Missing required path parameter: projectSlug`);
6862
+ }
6863
+ if (!pathParams.repositoryName) {
6864
+ throw new Error(`Missing required path parameter: repositoryName`);
6865
+ }
6866
+ if (!pathParams.uuid) {
6867
+ throw new Error(`Missing required path parameter: uuid`);
6868
+ }
6869
+ const data = await request({
6870
+ method: "DELETE",
6871
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
6872
+ ...requestConfig,
6873
+ headers: {
6874
+ ...requestConfig.headers
6875
+ }
6876
+ });
6877
+ return data;
6878
+ }
6879
+ /**
6880
+ * @summary Upload a blob chunk
6881
+ * @description PATCH /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid Upload a chunk of blob data. The request body is streamed directly to S3 as a multipart upload part while hashing incrementally. The client may call this multiple times for chunked uploads.
6882
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
6883
+ */ async function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config } = {}) {
6884
+ const { client: request = client, ...requestConfig } = config ?? {};
6885
+ if (!pathParams.teamSlug) {
6886
+ throw new Error(`Missing required path parameter: teamSlug`);
6887
+ }
6888
+ if (!pathParams.projectSlug) {
6889
+ throw new Error(`Missing required path parameter: projectSlug`);
6890
+ }
6891
+ if (!pathParams.repositoryName) {
6892
+ throw new Error(`Missing required path parameter: repositoryName`);
6893
+ }
6894
+ if (!pathParams.uuid) {
6895
+ throw new Error(`Missing required path parameter: uuid`);
6896
+ }
6897
+ const data = await request({
6898
+ method: "PATCH",
6899
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
6900
+ ...requestConfig,
6901
+ headers: {
6902
+ ...requestConfig.headers
6903
+ }
6904
+ });
6905
+ return data;
6906
+ }
6907
+ /**
6908
+ * @summary Complete a blob upload
6909
+ * @description PUT /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/:uuid?digest=<digest> Complete the blob upload. This may include a final chunk of data in the request body (monolithic upload) or just finalize a previous chunked upload.
6910
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
6911
+ */ async function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config } = {}) {
6912
+ const { client: request = client, ...requestConfig } = config ?? {};
6913
+ if (!pathParams.teamSlug) {
6914
+ throw new Error(`Missing required path parameter: teamSlug`);
6915
+ }
6916
+ if (!pathParams.projectSlug) {
6917
+ throw new Error(`Missing required path parameter: projectSlug`);
6918
+ }
6919
+ if (!pathParams.repositoryName) {
6920
+ throw new Error(`Missing required path parameter: repositoryName`);
6921
+ }
6922
+ if (!pathParams.uuid) {
6923
+ throw new Error(`Missing required path parameter: uuid`);
6924
+ }
6925
+ const data = await request({
6926
+ method: "PUT",
6927
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/${pathParams.uuid}`,
6928
+ queryParams,
6929
+ ...requestConfig,
6930
+ headers: {
6931
+ ...requestConfig.headers
6932
+ }
6933
+ });
6934
+ return data;
6935
+ }
6936
+ /**
6937
+ * @summary Start a blob upload
6938
+ * @description POST /v2/:teamSlug/:projectSlug/:repositoryName/blobs/uploads/[?mount=<digest>&from=<repo>] Initiate a blob upload. Returns a UUID in the Location header that the client uses for subsequent PATCH (chunk) and PUT (complete) requests.
6939
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
6940
+ */ async function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config } = {}) {
6941
+ const { client: request = client, ...requestConfig } = config ?? {};
6942
+ if (!pathParams.teamSlug) {
6943
+ throw new Error(`Missing required path parameter: teamSlug`);
6944
+ }
6945
+ if (!pathParams.projectSlug) {
6946
+ throw new Error(`Missing required path parameter: projectSlug`);
6947
+ }
6948
+ if (!pathParams.repositoryName) {
6949
+ throw new Error(`Missing required path parameter: repositoryName`);
6950
+ }
6951
+ const data = await request({
6952
+ method: "POST",
6953
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/blobs/uploads/`,
6954
+ queryParams,
6955
+ ...requestConfig,
6956
+ headers: {
6957
+ ...requestConfig.headers
6958
+ }
6959
+ });
6960
+ return data;
6961
+ }
6962
+ /**
6963
+ * @summary Push an image manifest
6964
+ * @description PUT /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Upload an image manifest. The digest is computed from the body and returned in the Docker-Content-Digest header.
6965
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
6966
+ */ async function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
6967
+ const { client: request = client, ...requestConfig } = config ?? {};
6968
+ if (!pathParams.teamSlug) {
6969
+ throw new Error(`Missing required path parameter: teamSlug`);
6970
+ }
6971
+ if (!pathParams.projectSlug) {
6972
+ throw new Error(`Missing required path parameter: projectSlug`);
6973
+ }
6974
+ if (!pathParams.repositoryName) {
6975
+ throw new Error(`Missing required path parameter: repositoryName`);
6976
+ }
6977
+ if (!pathParams.reference) {
6978
+ throw new Error(`Missing required path parameter: reference`);
6979
+ }
6980
+ const data = await request({
6981
+ method: "PUT",
6982
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
6983
+ ...requestConfig,
6984
+ headers: {
6985
+ ...requestConfig.headers
6986
+ }
6987
+ });
6988
+ return data;
6989
+ }
6990
+ /**
6991
+ * @summary Pull an image manifest
6992
+ * @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
6993
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
6994
+ */ async function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
6995
+ const { client: request = client, ...requestConfig } = config ?? {};
6996
+ if (!pathParams.teamSlug) {
6997
+ throw new Error(`Missing required path parameter: teamSlug`);
6998
+ }
6999
+ if (!pathParams.projectSlug) {
7000
+ throw new Error(`Missing required path parameter: projectSlug`);
7001
+ }
7002
+ if (!pathParams.repositoryName) {
7003
+ throw new Error(`Missing required path parameter: repositoryName`);
7004
+ }
7005
+ if (!pathParams.reference) {
7006
+ throw new Error(`Missing required path parameter: reference`);
7007
+ }
7008
+ const data = await request({
7009
+ method: "GET",
7010
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
7011
+ ...requestConfig,
7012
+ headers: {
7013
+ ...requestConfig.headers
7014
+ }
7015
+ });
7016
+ return data;
7017
+ }
7018
+ /**
7019
+ * @summary Delete an image manifest
7020
+ * @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
7021
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
7022
+ */ async function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config } = {}) {
7023
+ const { client: request = client, ...requestConfig } = config ?? {};
7024
+ if (!pathParams.teamSlug) {
7025
+ throw new Error(`Missing required path parameter: teamSlug`);
7026
+ }
7027
+ if (!pathParams.projectSlug) {
7028
+ throw new Error(`Missing required path parameter: projectSlug`);
7029
+ }
7030
+ if (!pathParams.repositoryName) {
7031
+ throw new Error(`Missing required path parameter: repositoryName`);
7032
+ }
7033
+ if (!pathParams.reference) {
7034
+ throw new Error(`Missing required path parameter: reference`);
7035
+ }
7036
+ const data = await request({
7037
+ method: "DELETE",
7038
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/manifests/${pathParams.reference}`,
7039
+ ...requestConfig,
7040
+ headers: {
7041
+ ...requestConfig.headers
7042
+ }
7043
+ });
7044
+ return data;
7045
+ }
7046
+ /**
7047
+ * @summary List image tags
7048
+ * @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
7049
+ * @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
7050
+ */ async function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config } = {}) {
7051
+ const { client: request = client, ...requestConfig } = config ?? {};
7052
+ if (!pathParams.teamSlug) {
7053
+ throw new Error(`Missing required path parameter: teamSlug`);
7054
+ }
7055
+ if (!pathParams.projectSlug) {
7056
+ throw new Error(`Missing required path parameter: projectSlug`);
7057
+ }
7058
+ if (!pathParams.repositoryName) {
7059
+ throw new Error(`Missing required path parameter: repositoryName`);
7060
+ }
7061
+ const data = await request({
7062
+ method: "GET",
7063
+ url: `/v2/${pathParams.teamSlug}/${pathParams.projectSlug}/${pathParams.repositoryName}/tags/list`,
7064
+ queryParams,
7065
+ ...requestConfig,
7066
+ headers: {
7067
+ ...requestConfig.headers
7068
+ }
7069
+ });
7070
+ return data;
7071
+ }
6651
7072
  /**
6652
7073
  * @link /web/insights/toggle
6653
7074
  */ async function createWebInsightsToggle({ queryParams, config } = {}) {
@@ -7352,7 +7773,7 @@ const operationsByPath = {
7352
7773
  "POST /v1/projects/{projectId}/pause": pauseProject,
7353
7774
  "POST /v1/projects/{projectId}/unpause": unpauseProject,
7354
7775
  "GET /v2/sandboxes": listSandboxes,
7355
- "POST /v2/sandboxes": createSandboxes,
7776
+ "POST /v2/sandboxes": createSandboxesV2,
7356
7777
  "GET /v2/sandboxes/drives": listDrives,
7357
7778
  "POST /v2/sandboxes/drives/{name}": getOrCreateDrive,
7358
7779
  "DELETE /v2/sandboxes/drives/{name}": deleteDrive,
@@ -7377,6 +7798,7 @@ const operationsByPath = {
7377
7798
  "POST /v2/sandboxes/sessions/{sessionId}/fs/write": writeSessionFiles,
7378
7799
  "POST /v2/sandboxes/sessions/{sessionId}/snapshot": createSessionSnapshot,
7379
7800
  "POST /v2/sandboxes/{name}/fork": createSandboxesByNameFork,
7801
+ "POST /v3/sandboxes": createSandboxesV3,
7380
7802
  "POST /v1/security/attack-mode": updateAttackChallengeMode,
7381
7803
  "GET /v1/security/firewall/config": getSecurityFirewallConfig,
7382
7804
  "PUT /v1/security/firewall/config": putFirewallConfig,
@@ -7423,10 +7845,26 @@ const operationsByPath = {
7423
7845
  "GET /v1/vcr/repository/{idOrName}": getRepository,
7424
7846
  "DELETE /v1/vcr/repository/{idOrName}": deleteRepository,
7425
7847
  "GET /v1/vcr/repository/{idOrName}/images": listRepositoryImages,
7848
+ "POST /v1/vcr/repository/{idOrName}/permissions": addRepositoryPermission,
7849
+ "DELETE /v1/vcr/repository/{idOrName}/permissions": removeRepositoryPermission,
7850
+ "GET /v1/vcr/repository/{idOrName}/permissions": listRepositoryPermissions,
7851
+ "DELETE /v1/vcr/repository/{idOrName}/permissions/all": clearRepositoryPermissions,
7426
7852
  "GET /v1/vcr/repository/{idOrName}/tags": listRepositoryTags,
7427
7853
  "GET /v1/vcr/repository/{idOrName}/tags/{tag}": getRepositoryTag,
7428
7854
  "GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": getRepositoryImage,
7429
7855
  "DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": deleteRepositoryImage,
7856
+ "GET /v2/": getRoot,
7857
+ "GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
7858
+ "DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
7859
+ "GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
7860
+ "DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
7861
+ "PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
7862
+ "PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
7863
+ "POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
7864
+ "PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
7865
+ "GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
7866
+ "DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
7867
+ "GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": getByTeamSlugByProjectSlugByRepositoryNameTagsList,
7430
7868
  "POST /web/insights/toggle": createWebInsightsToggle,
7431
7869
  "GET /v1/query/web-analytics/visits/aggregate": aggregatePageviews,
7432
7870
  "GET /v1/query/web-analytics/events/aggregate": aggregateEvents,
@@ -7783,7 +8221,7 @@ const operationsByTag = {
7783
8221
  },
7784
8222
  sandboxes: {
7785
8223
  listSandboxes,
7786
- createSandboxes,
8224
+ createSandboxesV2,
7787
8225
  listDrives,
7788
8226
  getOrCreateDrive,
7789
8227
  deleteDrive,
@@ -7807,7 +8245,8 @@ const operationsByTag = {
7807
8245
  createSessionDirectory,
7808
8246
  writeSessionFiles,
7809
8247
  createSessionSnapshot,
7810
- createSandboxesByNameFork
8248
+ createSandboxesByNameFork,
8249
+ createSandboxesV3
7811
8250
  },
7812
8251
  security: {
7813
8252
  updateAttackChallengeMode,
@@ -7824,6 +8263,11 @@ const operationsByTag = {
7824
8263
  getSecurityFirewallEvents,
7825
8264
  generateFirewallRule
7826
8265
  },
8266
+ storage: {
8267
+ getStorageStoresById,
8268
+ createStorageStoresBlob,
8269
+ deleteStorageStoresBlobById
8270
+ },
7827
8271
  teams: {
7828
8272
  getTeamMembers,
7829
8273
  inviteUserToTeam,
@@ -7848,10 +8292,26 @@ const operationsByTag = {
7848
8292
  getRepository,
7849
8293
  deleteRepository,
7850
8294
  listRepositoryImages,
8295
+ addRepositoryPermission,
8296
+ removeRepositoryPermission,
8297
+ listRepositoryPermissions,
8298
+ clearRepositoryPermissions,
7851
8299
  listRepositoryTags,
7852
8300
  getRepositoryTag,
7853
8301
  getRepositoryImage,
7854
- deleteRepositoryImage
8302
+ deleteRepositoryImage,
8303
+ getRoot,
8304
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
8305
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest,
8306
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
8307
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
8308
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
8309
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid,
8310
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads,
8311
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
8312
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
8313
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference,
8314
+ getByTeamSlugByProjectSlugByRepositoryNameTagsList
7855
8315
  },
7856
8316
  webAnalytics: {
7857
8317
  aggregatePageviews,
@@ -8432,7 +8892,7 @@ const tagDictionary = {
8432
8892
  "getSessionCommandLogs"
8433
8893
  ],
8434
8894
  POST: [
8435
- "createSandboxes",
8895
+ "createSandboxesV2",
8436
8896
  "getOrCreateDrive",
8437
8897
  "runSessionCommand",
8438
8898
  "killSessionCommand",
@@ -8443,7 +8903,8 @@ const tagDictionary = {
8443
8903
  "createSessionDirectory",
8444
8904
  "writeSessionFiles",
8445
8905
  "createSessionSnapshot",
8446
- "createSandboxesByNameFork"
8906
+ "createSandboxesByNameFork",
8907
+ "createSandboxesV3"
8447
8908
  ],
8448
8909
  DELETE: [
8449
8910
  "deleteDrive",
@@ -8479,6 +8940,17 @@ const tagDictionary = {
8479
8940
  "removeBypassIp"
8480
8941
  ]
8481
8942
  },
8943
+ storage: {
8944
+ GET: [
8945
+ "getStorageStoresById"
8946
+ ],
8947
+ POST: [
8948
+ "createStorageStoresBlob"
8949
+ ],
8950
+ DELETE: [
8951
+ "deleteStorageStoresBlobById"
8952
+ ]
8953
+ },
8482
8954
  teams: {
8483
8955
  GET: [
8484
8956
  "getTeamMembers",
@@ -8507,19 +8979,39 @@ const tagDictionary = {
8507
8979
  },
8508
8980
  vcr: {
8509
8981
  POST: [
8510
- "createRepository"
8982
+ "createRepository",
8983
+ "addRepositoryPermission",
8984
+ "createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads"
8511
8985
  ],
8512
8986
  GET: [
8513
8987
  "listRepositories",
8514
8988
  "getRepository",
8515
8989
  "listRepositoryImages",
8990
+ "listRepositoryPermissions",
8516
8991
  "listRepositoryTags",
8517
8992
  "getRepositoryTag",
8518
- "getRepositoryImage"
8993
+ "getRepositoryImage",
8994
+ "getRoot",
8995
+ "getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
8996
+ "getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
8997
+ "getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference",
8998
+ "getByTeamSlugByProjectSlugByRepositoryNameTagsList"
8519
8999
  ],
8520
9000
  DELETE: [
8521
9001
  "deleteRepository",
8522
- "deleteRepositoryImage"
9002
+ "removeRepositoryPermission",
9003
+ "clearRepositoryPermissions",
9004
+ "deleteRepositoryImage",
9005
+ "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest",
9006
+ "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
9007
+ "deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
9008
+ ],
9009
+ PATCH: [
9010
+ "updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid"
9011
+ ],
9012
+ PUT: [
9013
+ "replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid",
9014
+ "replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"
8523
9015
  ]
8524
9016
  },
8525
9017
  webAnalytics: {
@@ -9122,6 +9614,11 @@ const userEventSchema = z__namespace.object({
9122
9614
  "ai-gateway-rule-deleted",
9123
9615
  "ai-gateway-rule-updated",
9124
9616
  "ai-gateway-scope-budget-updated",
9617
+ "ai-gateway-transcripts-default-disabled",
9618
+ "ai-gateway-transcripts-default-enabled",
9619
+ "ai-gateway-transcripts-disabled",
9620
+ "ai-gateway-transcripts-enabled",
9621
+ "ai-gateway-transcripts-retention-updated",
9125
9622
  "ai-gateway-virtual-model-config-archived",
9126
9623
  "ai-gateway-virtual-model-config-created",
9127
9624
  "ai-gateway-virtual-model-config-restored",
@@ -9167,6 +9664,7 @@ const userEventSchema = z__namespace.object({
9167
9664
  "cert-system-create",
9168
9665
  "code-owners-config-updated",
9169
9666
  "compliance-document-downloaded",
9667
+ "compliance-document-previewed",
9170
9668
  "compliance-documents-bulk-downloaded",
9171
9669
  "concurrent-builds-update",
9172
9670
  "connect-attach-project",
@@ -9305,6 +9803,7 @@ const userEventSchema = z__namespace.object({
9305
9803
  "flags-segment",
9306
9804
  "flags-settings",
9307
9805
  "flags-transferred",
9806
+ "git-integration-repo-push",
9308
9807
  "git_account_integration_link_added",
9309
9808
  "instant-rollback-created",
9310
9809
  "integration-configuration-owner-changed",
@@ -9325,6 +9824,7 @@ const userEventSchema = z__namespace.object({
9325
9824
  "kms-issuer-deleted",
9326
9825
  "kms-issuer-key-activated",
9327
9826
  "kms-issuer-key-created",
9827
+ "kms-issuer-key-revoked",
9328
9828
  "kms-issuer-key-rotated",
9329
9829
  "kms-issuer-policy-created",
9330
9830
  "kms-issuer-policy-deleted",
@@ -9335,7 +9835,10 @@ const userEventSchema = z__namespace.object({
9335
9835
  "log-drain-disabled",
9336
9836
  "log-drain-enabled",
9337
9837
  "login",
9838
+ "login-connection-linked",
9839
+ "login-connection-unlinked",
9338
9840
  "manual-deployment-promotion-created",
9841
+ "marketplace-flex-commit-opt-in",
9339
9842
  "marketplace-integration-allowlist-updated",
9340
9843
  "microfrontend-group-added",
9341
9844
  "microfrontend-group-deleted",
@@ -9365,6 +9868,8 @@ const userEventSchema = z__namespace.object({
9365
9868
  "oidc-policy-used-to-obtain-app-token",
9366
9869
  "organization-create",
9367
9870
  "organization-delete",
9871
+ "organization-dsync-group-delete",
9872
+ "organization-dsync-group-upsert",
9368
9873
  "organization-slug-update",
9369
9874
  "organization-team-add",
9370
9875
  "organization-team-create",
@@ -9513,8 +10018,11 @@ const userEventSchema = z__namespace.object({
9513
10018
  "protected-git-scope-added",
9514
10019
  "protected-git-scope-removed",
9515
10020
  "runtime-cache-purge-all",
10021
+ "saml-connection-created",
10022
+ "saml-connection-deleted",
9516
10023
  "sandbox-alias-assigned",
9517
10024
  "sandbox-alias-delete",
10025
+ "sandbox-snapshot-regions-updated",
9518
10026
  "scale",
9519
10027
  "scale-auto",
9520
10028
  "secondary-email-added",
@@ -9544,6 +10052,7 @@ const userEventSchema = z__namespace.object({
9544
10052
  "spend-created",
9545
10053
  "spend-deleted",
9546
10054
  "spend-updated",
10055
+ "sso-login",
9547
10056
  "storage-accept-tos",
9548
10057
  "storage-access-token-set",
9549
10058
  "storage-accessed-data-browser",
@@ -9570,6 +10079,7 @@ const userEventSchema = z__namespace.object({
9570
10079
  "subscription-product-added",
9571
10080
  "subscription-product-removed",
9572
10081
  "subscription-updated",
10082
+ "support-session-created",
9573
10083
  "team",
9574
10084
  "team-agent-billing-migration-decision-changed",
9575
10085
  "team-avatar-update",
@@ -9620,23 +10130,36 @@ const userEventSchema = z__namespace.object({
9620
10130
  "tracing-configured",
9621
10131
  "tracing-disabled",
9622
10132
  "unlink-login-connection",
10133
+ "update-account-flow-dismissed",
10134
+ "update-account-flow-triggered",
10135
+ "user-auto-block-configured",
10136
+ "user-blocked",
9623
10137
  "user-delete",
10138
+ "user-delete-requested",
9624
10139
  "user-emu-account-archived",
9625
10140
  "user-emu-account-deleted",
9626
10141
  "user-emu-account-recovered",
10142
+ "user-emu-recovery-email-sent",
10143
+ "user-emu-recovery-initiated",
10144
+ "user-emu-toggled",
9627
10145
  "user-mfa-challenge-failed",
9628
10146
  "user-mfa-challenge-verified",
9629
10147
  "user-mfa-change-failed",
9630
10148
  "user-mfa-configuration-updated",
10149
+ "user-mfa-recovery-code-used",
9631
10150
  "user-mfa-recovery-codes-regenerated",
9632
10151
  "user-mfa-removed",
9633
10152
  "user-mfa-setup-skipped",
9634
10153
  "user-mfa-totp-verification-started",
9635
10154
  "user-mfa-totp-verified",
10155
+ "user-phone-removed",
10156
+ "user-phone-updated",
9636
10157
  "user-primary-email-updated",
10158
+ "user-sudo-mode-removed",
9637
10159
  "user-token-created",
9638
10160
  "user-token-deleted",
9639
10161
  "user-tokens-deleted",
10162
+ "user-unblocked",
9640
10163
  "username",
9641
10164
  "v0-chat-ai-usage",
9642
10165
  "v0-chat-created",
@@ -9648,6 +10171,7 @@ const userEventSchema = z__namespace.object({
9648
10171
  "vcr-repository-permission-added",
9649
10172
  "vcr-repository-permission-removed",
9650
10173
  "vcr-repository-permissions-cleared",
10174
+ "vcr-repository-visibility-changed",
9651
10175
  "vercel-agent-elevated-permissions-approved",
9652
10176
  "vercel-agent-elevated-permissions-requested",
9653
10177
  "vercel-agent-session-created",
@@ -9675,6 +10199,7 @@ const userEventSchema = z__namespace.object({
9675
10199
  "ai",
9676
10200
  "ai-gateway",
9677
10201
  "billing",
10202
+ "connect",
9678
10203
  "deployment",
9679
10204
  "domain",
9680
10205
  "edge",
@@ -9888,7 +10413,11 @@ const userEventSchema = z__namespace.object({
9888
10413
  "none",
9889
10414
  "weekly"
9890
10415
  ])
9891
- }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`.")
10416
+ }).nullish().describe("Spend budget on an AI Gateway API key, as surfaced in activity messages. Defined locally (rather than imported from `@api/pubsub-types`) because `@api/pubsub-types` already depends on `@api/events`; importing it here would create a circular dependency. Must stay structurally aligned with `APIKeyBudget` in `@api/pubsub-types/event-payloads/api-keys`."),
10417
+ zdrExemption: z__namespace.union([
10418
+ z__namespace.literal(false),
10419
+ z__namespace.literal(true)
10420
+ ]).optional().describe("True when the key was created with a ZDR exemption.")
9892
10421
  }).strict(),
9893
10422
  z__namespace.object({
9894
10423
  apiKey: z__namespace.object({
@@ -10011,6 +10540,20 @@ const userEventSchema = z__namespace.object({
10011
10540
  policiesRemoved: z__namespace.array(z__namespace.string()),
10012
10541
  policiesModified: z__namespace.array(z__namespace.string())
10013
10542
  }).strict(),
10543
+ z__namespace.object({
10544
+ retention: z__namespace.object({
10545
+ defaultMode: z__namespace.enum([
10546
+ "days",
10547
+ "until-requested"
10548
+ ]),
10549
+ defaultDays: z__namespace.number().optional(),
10550
+ ceilingMode: z__namespace.enum([
10551
+ "days",
10552
+ "until-requested"
10553
+ ]),
10554
+ ceilingDays: z__namespace.number().optional()
10555
+ })
10556
+ }).strict(),
10014
10557
  z__namespace.object({
10015
10558
  rule: z__namespace.object({
10016
10559
  id: z__namespace.string(),
@@ -10041,7 +10584,7 @@ const userEventSchema = z__namespace.object({
10041
10584
  virtualModelConfig: z__namespace.object({
10042
10585
  id: z__namespace.string(),
10043
10586
  displayName: z__namespace.string().optional(),
10044
- modelSlug: z__namespace.string()
10587
+ modelSlug: z__namespace.string().optional()
10045
10588
  })
10046
10589
  }).strict(),
10047
10590
  z__namespace.object({
@@ -10233,6 +10776,7 @@ const userEventSchema = z__namespace.object({
10233
10776
  "read-write:ai-gateway-guardrails",
10234
10777
  "read-write:ai-gateway-private-models",
10235
10778
  "read-write:ai-gateway-rules",
10779
+ "read-write:ai-gateway-virtual-model-configs",
10236
10780
  "read-write:alerts",
10237
10781
  "read-write:billing",
10238
10782
  "read-write:blob",
@@ -10256,10 +10800,12 @@ const userEventSchema = z__namespace.object({
10256
10800
  "read-write:remote-cache",
10257
10801
  "read-write:sandbox",
10258
10802
  "read-write:team-members",
10803
+ "read-write:vcr",
10259
10804
  "read:access-group",
10260
10805
  "read:ai-gateway-guardrails",
10261
10806
  "read:ai-gateway-private-models",
10262
10807
  "read:ai-gateway-rules",
10808
+ "read:ai-gateway-virtual-model-configs",
10263
10809
  "read:alerts",
10264
10810
  "read:billing",
10265
10811
  "read:deployment",
@@ -10279,6 +10825,7 @@ const userEventSchema = z__namespace.object({
10279
10825
  "read:speed-insights",
10280
10826
  "read:team",
10281
10827
  "read:user",
10828
+ "read:vcr",
10282
10829
  "read:web-analytics",
10283
10830
  "use:ai-gateway"
10284
10831
  ])).optional()
@@ -10303,6 +10850,7 @@ const userEventSchema = z__namespace.object({
10303
10850
  "read-write:ai-gateway-guardrails",
10304
10851
  "read-write:ai-gateway-private-models",
10305
10852
  "read-write:ai-gateway-rules",
10853
+ "read-write:ai-gateway-virtual-model-configs",
10306
10854
  "read-write:alerts",
10307
10855
  "read-write:billing",
10308
10856
  "read-write:blob",
@@ -10326,10 +10874,12 @@ const userEventSchema = z__namespace.object({
10326
10874
  "read-write:remote-cache",
10327
10875
  "read-write:sandbox",
10328
10876
  "read-write:team-members",
10877
+ "read-write:vcr",
10329
10878
  "read:access-group",
10330
10879
  "read:ai-gateway-guardrails",
10331
10880
  "read:ai-gateway-private-models",
10332
10881
  "read:ai-gateway-rules",
10882
+ "read:ai-gateway-virtual-model-configs",
10333
10883
  "read:alerts",
10334
10884
  "read:billing",
10335
10885
  "read:deployment",
@@ -10349,6 +10899,7 @@ const userEventSchema = z__namespace.object({
10349
10899
  "read:speed-insights",
10350
10900
  "read:team",
10351
10901
  "read:user",
10902
+ "read:vcr",
10352
10903
  "read:web-analytics",
10353
10904
  "use:ai-gateway"
10354
10905
  ])).optional()
@@ -10378,6 +10929,7 @@ const userEventSchema = z__namespace.object({
10378
10929
  "read-write:ai-gateway-guardrails",
10379
10930
  "read-write:ai-gateway-private-models",
10380
10931
  "read-write:ai-gateway-rules",
10932
+ "read-write:ai-gateway-virtual-model-configs",
10381
10933
  "read-write:alerts",
10382
10934
  "read-write:billing",
10383
10935
  "read-write:blob",
@@ -10401,10 +10953,12 @@ const userEventSchema = z__namespace.object({
10401
10953
  "read-write:remote-cache",
10402
10954
  "read-write:sandbox",
10403
10955
  "read-write:team-members",
10956
+ "read-write:vcr",
10404
10957
  "read:access-group",
10405
10958
  "read:ai-gateway-guardrails",
10406
10959
  "read:ai-gateway-private-models",
10407
10960
  "read:ai-gateway-rules",
10961
+ "read:ai-gateway-virtual-model-configs",
10408
10962
  "read:alerts",
10409
10963
  "read:billing",
10410
10964
  "read:deployment",
@@ -10423,6 +10977,7 @@ const userEventSchema = z__namespace.object({
10423
10977
  "read:sandbox",
10424
10978
  "read:speed-insights",
10425
10979
  "read:team",
10980
+ "read:vcr",
10426
10981
  "read:web-analytics",
10427
10982
  "use:ai-gateway"
10428
10983
  ])).optional()
@@ -10448,6 +11003,7 @@ const userEventSchema = z__namespace.object({
10448
11003
  "read-write:ai-gateway-guardrails",
10449
11004
  "read-write:ai-gateway-private-models",
10450
11005
  "read-write:ai-gateway-rules",
11006
+ "read-write:ai-gateway-virtual-model-configs",
10451
11007
  "read-write:alerts",
10452
11008
  "read-write:billing",
10453
11009
  "read-write:blob",
@@ -10471,10 +11027,12 @@ const userEventSchema = z__namespace.object({
10471
11027
  "read-write:remote-cache",
10472
11028
  "read-write:sandbox",
10473
11029
  "read-write:team-members",
11030
+ "read-write:vcr",
10474
11031
  "read:access-group",
10475
11032
  "read:ai-gateway-guardrails",
10476
11033
  "read:ai-gateway-private-models",
10477
11034
  "read:ai-gateway-rules",
11035
+ "read:ai-gateway-virtual-model-configs",
10478
11036
  "read:alerts",
10479
11037
  "read:billing",
10480
11038
  "read:deployment",
@@ -10493,6 +11051,7 @@ const userEventSchema = z__namespace.object({
10493
11051
  "read:sandbox",
10494
11052
  "read:speed-insights",
10495
11053
  "read:team",
11054
+ "read:vcr",
10496
11055
  "read:web-analytics",
10497
11056
  "use:ai-gateway"
10498
11057
  ])).optional()
@@ -10521,6 +11080,7 @@ const userEventSchema = z__namespace.object({
10521
11080
  "read-write:ai-gateway-guardrails",
10522
11081
  "read-write:ai-gateway-private-models",
10523
11082
  "read-write:ai-gateway-rules",
11083
+ "read-write:ai-gateway-virtual-model-configs",
10524
11084
  "read-write:alerts",
10525
11085
  "read-write:billing",
10526
11086
  "read-write:blob",
@@ -10544,10 +11104,12 @@ const userEventSchema = z__namespace.object({
10544
11104
  "read-write:remote-cache",
10545
11105
  "read-write:sandbox",
10546
11106
  "read-write:team-members",
11107
+ "read-write:vcr",
10547
11108
  "read:access-group",
10548
11109
  "read:ai-gateway-guardrails",
10549
11110
  "read:ai-gateway-private-models",
10550
11111
  "read:ai-gateway-rules",
11112
+ "read:ai-gateway-virtual-model-configs",
10551
11113
  "read:alerts",
10552
11114
  "read:billing",
10553
11115
  "read:deployment",
@@ -10566,6 +11128,7 @@ const userEventSchema = z__namespace.object({
10566
11128
  "read:sandbox",
10567
11129
  "read:speed-insights",
10568
11130
  "read:team",
11131
+ "read:vcr",
10569
11132
  "read:web-analytics",
10570
11133
  "use:ai-gateway"
10571
11134
  ])).optional()
@@ -10958,6 +11521,9 @@ const userEventSchema = z__namespace.object({
10958
11521
  z__namespace.literal(false),
10959
11522
  z__namespace.literal(true)
10960
11523
  ]).optional(),
11524
+ gitCredentialSource: z__namespace.enum([
11525
+ "external-token"
11526
+ ]).optional(),
10961
11527
  deploymentId: z__namespace.string().optional(),
10962
11528
  plan: z__namespace.string().optional(),
10963
11529
  project: z__namespace.string().optional(),
@@ -11594,6 +12160,100 @@ const userEventSchema = z__namespace.object({
11594
12160
  ]),
11595
12161
  customEnvId: z__namespace.string().nullish(),
11596
12162
  prId: z__namespace.number().nullish()
12163
+ }).strict(),
12164
+ z__namespace.object({
12165
+ type: z__namespace.enum([
12166
+ "cursor-origin-push"
12167
+ ]),
12168
+ ref: z__namespace.string(),
12169
+ sha: z__namespace.string(),
12170
+ beforeSha: z__namespace.string().optional(),
12171
+ defaultBranch: z__namespace.string().optional(),
12172
+ forced: z__namespace.union([
12173
+ z__namespace.literal(false),
12174
+ z__namespace.literal(true)
12175
+ ]).optional(),
12176
+ repoPushedAt: z__namespace.number().nullish(),
12177
+ deployHook: z__namespace.object({
12178
+ createdAt: z__namespace.number(),
12179
+ id: z__namespace.string(),
12180
+ name: z__namespace.string(),
12181
+ ref: z__namespace.string()
12182
+ }).optional(),
12183
+ url: z__namespace.string().optional(),
12184
+ target: z__namespace.string().nullish(),
12185
+ deploymentId: z__namespace.string().optional(),
12186
+ linkedProjectId: z__namespace.string().optional(),
12187
+ projectId: z__namespace.string().optional(),
12188
+ createdAt: z__namespace.number().optional(),
12189
+ eventful: z__namespace.union([
12190
+ z__namespace.literal(false),
12191
+ z__namespace.literal(true)
12192
+ ]).optional(),
12193
+ forceNew: z__namespace.union([
12194
+ z__namespace.literal(false),
12195
+ z__namespace.literal(true)
12196
+ ]).optional(),
12197
+ authorized: z__namespace.union([
12198
+ z__namespace.literal(false),
12199
+ z__namespace.literal(true)
12200
+ ]).optional(),
12201
+ authorizedBy: z__namespace.string().optional(),
12202
+ jobProjectIds: z__namespace.array(z__namespace.string()).optional().describe("Since December 2022 All project ids associated to this job. Think monorepo. This job will be for one of these project."),
12203
+ jobPairs: z__namespace.array(z__namespace.array(z__namespace.union([
12204
+ z__namespace.string(),
12205
+ z__namespace.string()
12206
+ ])).min(2).max(2)).optional().describe("Since December 2022 Pairs of projects and owner ids to build for this build request."),
12207
+ skippedJobPairs: z__namespace.array(z__namespace.array(z__namespace.union([
12208
+ z__namespace.string(),
12209
+ z__namespace.string()
12210
+ ])).min(2).max(2)).optional().describe("Since June 2024 Pairs of projects and owner ids to immediately finish (without building) because we want to create them in a skipped state."),
12211
+ gitHashtagVercel: z__namespace.array(z__namespace.string()).optional().describe("Since February 2022 All the hashtag-vercel tags found in the commit message triggering the deploy. For example, #VERCEL_DO_SOMETHING"),
12212
+ connectedProjectCount: z__namespace.number().optional().describe("Since April 2023 Cached count of how many projects are connected to the repo. Saves a few Cosmos queries down the road in the main flow."),
12213
+ prIdOrZero: z__namespace.number().optional().describe("Since April 2023 If set then it is a cached result of asking the remote for the PR ID the commit that triggered this Job. Or zero if it was not a PR. This prevents a few git round trips by the git updater."),
12214
+ gitComments: z__namespace.object({
12215
+ onPullRequest: z__namespace.union([
12216
+ z__namespace.literal(false),
12217
+ z__namespace.literal(true)
12218
+ ]),
12219
+ onCommit: z__namespace.union([
12220
+ z__namespace.literal(false),
12221
+ z__namespace.literal(true)
12222
+ ])
12223
+ }).optional().describe("Since June 2023 Determines if comments should be posted to the git host. Replaces `github.silent` in the vercel.json."),
12224
+ isManualGitDeploy: z__namespace.union([
12225
+ z__namespace.literal(false),
12226
+ z__namespace.literal(true)
12227
+ ]).optional().describe("Since 28 Feb 2024 If set to true, identifies that the git job was created for a manual git deployment"),
12228
+ commitVerification: z__namespace.enum([
12229
+ "unknown",
12230
+ "unverified",
12231
+ "verified"
12232
+ ]).optional().describe("Since 6 Nov 2025 The verification status of the commit. - 'verified' if the commit is verified - 'unverified' if the commit is not verified - 'unknown' if the commit verification status is unknown or not supported"),
12233
+ nsnbSideEffect: z__namespace.object({
12234
+ action: z__namespace.enum([
12235
+ "auto-approved-member",
12236
+ "auto-approved-pending-invite"
12237
+ ]),
12238
+ gitUserLogin: z__namespace.string()
12239
+ }).optional().describe("Since March 2026 Records a successful NSNB auto-add result so later GitHub PR comments can deterministically explain why this SHA was allowed to deploy."),
12240
+ headInfo: z__namespace.object({
12241
+ owner: z__namespace.string().describe("Owner (namespace) slug, e.g. `acme`."),
12242
+ ownerId: z__namespace.string().describe("Origin namespace id (`ns_…`)."),
12243
+ ref: z__namespace.string(),
12244
+ repo: z__namespace.string().describe("Repository name, e.g. `api`."),
12245
+ repoId: z__namespace.string().describe("Origin repository id."),
12246
+ sha: z__namespace.string()
12247
+ }).describe("Cursor Origin"),
12248
+ installationId: z__namespace.string().describe("Origin installation id (`i_…`) used to resolve the credential."),
12249
+ owner: z__namespace.string(),
12250
+ repo: z__namespace.string(),
12251
+ repoId: z__namespace.string(),
12252
+ provider: z__namespace.enum([
12253
+ "cursor-origin"
12254
+ ]),
12255
+ customEnvId: z__namespace.string().nullish(),
12256
+ prId: z__namespace.number().nullish()
11597
12257
  }).strict()
11598
12258
  ])
11599
12259
  }).strict(),
@@ -12172,6 +12832,36 @@ const userEventSchema = z__namespace.object({
12172
12832
  "enable"
12173
12833
  ])
12174
12834
  }).strict(),
12835
+ z__namespace.object({
12836
+ provider: z__namespace.enum([
12837
+ "bitbucket",
12838
+ "github",
12839
+ "gitlab"
12840
+ ]),
12841
+ actorLogin: z__namespace.string().nullable().describe("Display name only. Logins are mutable; join on `actorAccountId`."),
12842
+ actorAccountId: z__namespace.string().nullable().describe("Stable account id on `provider`."),
12843
+ installationId: z__namespace.string().nullable().describe("Set only when an App installation token was minted (GitHub only)."),
12844
+ usedAppToken: z__namespace.union([
12845
+ z__namespace.literal(false),
12846
+ z__namespace.literal(true)
12847
+ ]),
12848
+ sourceRepo: z__namespace.string().describe('Source repository, "owner/name".'),
12849
+ sourceCommitSha: z__namespace.string().nullable(),
12850
+ destinationRepo: z__namespace.string().describe('"owner/name", or the raw request value if blocked before it resolved.'),
12851
+ destinationBranch: z__namespace.string().nullable().describe("Branch actually pushed to, or the requested one if blocked."),
12852
+ resultCommitSha: z__namespace.string().nullable(),
12853
+ outcome: z__namespace.enum([
12854
+ "failure",
12855
+ "success"
12856
+ ]),
12857
+ failureStage: z__namespace.enum([
12858
+ "authorization",
12859
+ "push",
12860
+ "unexpected",
12861
+ "unknown"
12862
+ ]).optional().describe("Mirrors `PushFailureStage` in `@api/git-push-repo`."),
12863
+ failureCode: z__namespace.string().optional().describe("Sanitized code, never a raw error message.")
12864
+ }).strict(),
12175
12865
  z__namespace.object({
12176
12866
  projectId: z__namespace.string(),
12177
12867
  fromDeploymentId: z__namespace.string(),
@@ -12300,6 +12990,7 @@ const userEventSchema = z__namespace.object({
12300
12990
  ]).nullish(),
12301
12991
  importFlowGitProvider: z__namespace.enum([
12302
12992
  "bitbucket",
12993
+ "cursor-origin",
12303
12994
  "github",
12304
12995
  "github-custom-host",
12305
12996
  "github-limited",
@@ -12337,11 +13028,18 @@ const userEventSchema = z__namespace.object({
12337
13028
  projectCardWidgetPreferences: z__namespace.array(z__namespace.object({
12338
13029
  projectId: z__namespace.string(),
12339
13030
  widget: z__namespace.enum([
12340
- "alert",
13031
+ "analytics-online",
13032
+ "analytics-page-views",
13033
+ "analytics-visitors",
12341
13034
  "firewall-allowed",
12342
13035
  "firewall-denied",
12343
- "online",
12344
- "res"
13036
+ "observability-alert",
13037
+ "observability-edge-requests",
13038
+ "observability-error-rate",
13039
+ "observability-function-invocations",
13040
+ "speed-insights-cls",
13041
+ "speed-insights-lcp",
13042
+ "speed-insights-res"
12345
13043
  ])
12346
13044
  })).optional(),
12347
13045
  remoteCaching: z__namespace.object({
@@ -12387,6 +13085,7 @@ const userEventSchema = z__namespace.object({
12387
13085
  edgeConfigSize: z__namespace.number().optional(),
12388
13086
  edgeFunctionMaxSizeBytes: z__namespace.number().optional(),
12389
13087
  edgeFunctionExecutionTimeoutMs: z__namespace.number().optional(),
13088
+ serverlessFunctionMaxDuration: z__namespace.number().optional(),
12390
13089
  serverlessFunctionMaxMemorySize: z__namespace.number().optional(),
12391
13090
  kvDatabases: z__namespace.number().optional(),
12392
13091
  postgresDatabases: z__namespace.number().optional(),
@@ -12609,6 +13308,7 @@ const userEventSchema = z__namespace.object({
12609
13308
  "AiGatewayBudgetManager",
12610
13309
  "AiGatewayCredits",
12611
13310
  "AiGatewaySettings",
13311
+ "ConnectorManager",
12612
13312
  "CreateProject",
12613
13313
  "EnvVariableManager",
12614
13314
  "EnvironmentManager",
@@ -13434,6 +14134,33 @@ const userEventSchema = z__namespace.object({
13434
14134
  logDrainUrl: z__namespace.string(),
13435
14135
  integrationName: z__namespace.string().optional()
13436
14136
  }).strict(),
14137
+ z__namespace.object({
14138
+ provider: z__namespace.enum([
14139
+ "apple",
14140
+ "bitbucket",
14141
+ "chatgpt",
14142
+ "github",
14143
+ "github-custom-host",
14144
+ "github-limited",
14145
+ "gitlab",
14146
+ "google",
14147
+ "saml"
14148
+ ]),
14149
+ login: z__namespace.string()
14150
+ }).strict(),
14151
+ z__namespace.object({
14152
+ provider: z__namespace.enum([
14153
+ "apple",
14154
+ "bitbucket",
14155
+ "chatgpt",
14156
+ "github",
14157
+ "github-custom-host",
14158
+ "github-limited",
14159
+ "gitlab",
14160
+ "google",
14161
+ "saml"
14162
+ ])
14163
+ }).strict(),
13437
14164
  z__namespace.object({
13438
14165
  userAgent: z__namespace.string().optional(),
13439
14166
  geolocation: z__namespace.object({
@@ -13555,6 +14282,14 @@ const userEventSchema = z__namespace.object({
13555
14282
  toDeploymentId: z__namespace.string(),
13556
14283
  projectName: z__namespace.string()
13557
14284
  }).strict(),
14285
+ z__namespace.object({
14286
+ periods: z__namespace.array(z__namespace.object({
14287
+ periodNumber: z__namespace.number(),
14288
+ percent: z__namespace.string(),
14289
+ startDate: z__namespace.string(),
14290
+ endDate: z__namespace.string()
14291
+ }))
14292
+ }).strict(),
13558
14293
  z__namespace.object({
13559
14294
  enabled: z__namespace.union([
13560
14295
  z__namespace.literal(false),
@@ -13707,6 +14442,39 @@ const userEventSchema = z__namespace.object({
13707
14442
  slug: z__namespace.string(),
13708
14443
  name: z__namespace.string()
13709
14444
  }).strict(),
14445
+ z__namespace.object({
14446
+ directoryGroupId: z__namespace.string(),
14447
+ directoryId: z__namespace.string(),
14448
+ groupName: z__namespace.string(),
14449
+ next: z__namespace.object({
14450
+ default: z__namespace.enum([
14451
+ "BILLING",
14452
+ "CONTRIBUTOR",
14453
+ "DEVELOPER",
14454
+ "MEMBER",
14455
+ "OWNER",
14456
+ "SECURITY",
14457
+ "VIEWER",
14458
+ "VIEWER_FOR_PLUS"
14459
+ ]).optional(),
14460
+ roles: z__namespace.object({}).catchall(z__namespace.enum([
14461
+ "BILLING",
14462
+ "CONTRIBUTOR",
14463
+ "DEVELOPER",
14464
+ "MEMBER",
14465
+ "OWNER",
14466
+ "SECURITY",
14467
+ "VIEWER",
14468
+ "VIEWER_FOR_PLUS"
14469
+ ]))
14470
+ }),
14471
+ organizationId: z__namespace.string()
14472
+ }).strict(),
14473
+ z__namespace.object({
14474
+ directoryGroupId: z__namespace.string(),
14475
+ directoryId: z__namespace.string(),
14476
+ organizationId: z__namespace.string()
14477
+ }).strict(),
13710
14478
  z__namespace.object({
13711
14479
  organizationId: z__namespace.string(),
13712
14480
  slug: z__namespace.string()
@@ -14217,10 +14985,20 @@ const userEventSchema = z__namespace.object({
14217
14985
  projectName: z__namespace.string(),
14218
14986
  widget: z__namespace.enum([
14219
14987
  "alert",
14988
+ "analytics-online",
14989
+ "analytics-page-views",
14990
+ "analytics-visitors",
14220
14991
  "firewall-allowed",
14221
14992
  "firewall-denied",
14993
+ "observability-alert",
14994
+ "observability-edge-requests",
14995
+ "observability-error-rate",
14996
+ "observability-function-invocations",
14222
14997
  "online",
14223
- "res"
14998
+ "res",
14999
+ "speed-insights-cls",
15000
+ "speed-insights-lcp",
15001
+ "speed-insights-res"
14224
15002
  ]).nullable()
14225
15003
  }).strict(),
14226
15004
  z__namespace.object({
@@ -14440,6 +15218,7 @@ const userEventSchema = z__namespace.object({
14440
15218
  previous: z__namespace.object({
14441
15219
  gitProvider: z__namespace.enum([
14442
15220
  "bitbucket",
15221
+ "cursor-origin",
14443
15222
  "github",
14444
15223
  "github-custom-host",
14445
15224
  "github-limited",
@@ -14452,6 +15231,7 @@ const userEventSchema = z__namespace.object({
14452
15231
  next: z__namespace.object({
14453
15232
  gitProvider: z__namespace.enum([
14454
15233
  "bitbucket",
15234
+ "cursor-origin",
14455
15235
  "github",
14456
15236
  "github-custom-host",
14457
15237
  "github-limited",
@@ -14467,6 +15247,7 @@ const userEventSchema = z__namespace.object({
14467
15247
  projectName: z__namespace.string(),
14468
15248
  gitProvider: z__namespace.enum([
14469
15249
  "bitbucket",
15250
+ "cursor-origin",
14470
15251
  "github",
14471
15252
  "github-custom-host",
14472
15253
  "github-limited",
@@ -15109,12 +15890,22 @@ const userEventSchema = z__namespace.object({
15109
15890
  gitProviderGroupDescriptor: z__namespace.string(),
15110
15891
  gitScope: z__namespace.string()
15111
15892
  }).strict(),
15893
+ z__namespace.object({
15894
+ connectionId: z__namespace.string(),
15895
+ connectionType: z__namespace.string()
15896
+ }).strict(),
15112
15897
  z__namespace.object({
15113
15898
  alias: z__namespace.string(),
15114
15899
  sandboxName: z__namespace.string(),
15115
15900
  sandboxId: z__namespace.string().optional(),
15116
15901
  projectId: z__namespace.string().optional()
15117
15902
  }).strict(),
15903
+ z__namespace.object({
15904
+ projectId: z__namespace.string(),
15905
+ projectName: z__namespace.string(),
15906
+ snapshotId: z__namespace.string(),
15907
+ targetRegions: z__namespace.array(z__namespace.string())
15908
+ }).strict(),
15118
15909
  z__namespace.object({
15119
15910
  instances: z__namespace.number(),
15120
15911
  url: z__namespace.string()
@@ -15479,6 +16270,16 @@ const userEventSchema = z__namespace.object({
15479
16270
  z__namespace.literal(true)
15480
16271
  ])
15481
16272
  }).strict(),
16273
+ z__namespace.object({
16274
+ actorId: z__namespace.string().optional(),
16275
+ actorType: z__namespace.enum([
16276
+ "admin",
16277
+ "user"
16278
+ ]).optional(),
16279
+ reason: z__namespace.string().optional(),
16280
+ caseNumber: z__namespace.string().optional(),
16281
+ client: z__namespace.string().optional()
16282
+ }).strict(),
15482
16283
  z__namespace.object({
15483
16284
  slug: z__namespace.string()
15484
16285
  }).strict(),
@@ -15960,17 +16761,7 @@ const userEventSchema = z__namespace.object({
15960
16761
  })).optional()
15961
16762
  }).strict(),
15962
16763
  z__namespace.object({
15963
- provider: z__namespace.enum([
15964
- "apple",
15965
- "bitbucket",
15966
- "chatgpt",
15967
- "github",
15968
- "github-custom-host",
15969
- "github-limited",
15970
- "gitlab",
15971
- "google"
15972
- ]),
15973
- login: z__namespace.string()
16764
+ teamName: z__namespace.string().optional()
15974
16765
  }).strict(),
15975
16766
  z__namespace.object({
15976
16767
  totp: z__namespace.union([
@@ -15992,6 +16783,41 @@ const userEventSchema = z__namespace.object({
15992
16783
  z__namespace.object({
15993
16784
  username: z__namespace.string()
15994
16785
  }).strict(),
16786
+ z__namespace.object({
16787
+ actorId: z__namespace.string(),
16788
+ actorType: z__namespace.enum([
16789
+ "admin"
16790
+ ]),
16791
+ reason: z__namespace.string().optional()
16792
+ }).strict(),
16793
+ z__namespace.object({
16794
+ actorId: z__namespace.string(),
16795
+ actorType: z__namespace.enum([
16796
+ "admin"
16797
+ ])
16798
+ }).strict(),
16799
+ z__namespace.object({
16800
+ enabled: z__namespace.union([
16801
+ z__namespace.literal(false),
16802
+ z__namespace.literal(true)
16803
+ ]),
16804
+ actorId: z__namespace.string(),
16805
+ actorType: z__namespace.enum([
16806
+ "admin"
16807
+ ])
16808
+ }).strict(),
16809
+ z__namespace.object({
16810
+ autoBlockPrevented: z__namespace.union([
16811
+ z__namespace.literal(false),
16812
+ z__namespace.literal(true)
16813
+ ]),
16814
+ preventUntil: z__namespace.number().optional(),
16815
+ actorId: z__namespace.string(),
16816
+ actorType: z__namespace.enum([
16817
+ "admin"
16818
+ ]),
16819
+ reason: z__namespace.string().optional()
16820
+ }).strict(),
15995
16821
  z__namespace.object({
15996
16822
  method: z__namespace.enum([
15997
16823
  "email-otp",
@@ -16035,6 +16861,9 @@ const userEventSchema = z__namespace.object({
16035
16861
  ])
16036
16862
  })
16037
16863
  }).strict(),
16864
+ z__namespace.object({
16865
+ remaining: z__namespace.number()
16866
+ }).strict(),
16038
16867
  z__namespace.object({
16039
16868
  mfaEnabled: z__namespace.union([
16040
16869
  z__namespace.literal(false),
@@ -16098,6 +16927,15 @@ const userEventSchema = z__namespace.object({
16098
16927
  repositoryName: z__namespace.string(),
16099
16928
  sharedWithTeamId: z__namespace.string()
16100
16929
  }).strict(),
16930
+ z__namespace.object({
16931
+ projectId: z__namespace.string(),
16932
+ projectName: z__namespace.string(),
16933
+ repositoryName: z__namespace.string(),
16934
+ public: z__namespace.union([
16935
+ z__namespace.literal(false),
16936
+ z__namespace.literal(true)
16937
+ ])
16938
+ }).strict(),
16101
16939
  z__namespace.object({
16102
16940
  projectId: z__namespace.string(),
16103
16941
  projectName: z__namespace.string(),
@@ -16561,6 +17399,11 @@ const listEventTypeSchema = z__namespace.object({
16561
17399
  "ai-gateway-rule-deleted",
16562
17400
  "ai-gateway-rule-updated",
16563
17401
  "ai-gateway-scope-budget-updated",
17402
+ "ai-gateway-transcripts-default-disabled",
17403
+ "ai-gateway-transcripts-default-enabled",
17404
+ "ai-gateway-transcripts-disabled",
17405
+ "ai-gateway-transcripts-enabled",
17406
+ "ai-gateway-transcripts-retention-updated",
16564
17407
  "ai-gateway-virtual-model-config-archived",
16565
17408
  "ai-gateway-virtual-model-config-created",
16566
17409
  "ai-gateway-virtual-model-config-restored",
@@ -16606,6 +17449,7 @@ const listEventTypeSchema = z__namespace.object({
16606
17449
  "cert-system-create",
16607
17450
  "code-owners-config-updated",
16608
17451
  "compliance-document-downloaded",
17452
+ "compliance-document-previewed",
16609
17453
  "compliance-documents-bulk-downloaded",
16610
17454
  "concurrent-builds-update",
16611
17455
  "connect-attach-project",
@@ -16744,6 +17588,7 @@ const listEventTypeSchema = z__namespace.object({
16744
17588
  "flags-segment",
16745
17589
  "flags-settings",
16746
17590
  "flags-transferred",
17591
+ "git-integration-repo-push",
16747
17592
  "git_account_integration_link_added",
16748
17593
  "instant-rollback-created",
16749
17594
  "integration-configuration-owner-changed",
@@ -16764,6 +17609,7 @@ const listEventTypeSchema = z__namespace.object({
16764
17609
  "kms-issuer-deleted",
16765
17610
  "kms-issuer-key-activated",
16766
17611
  "kms-issuer-key-created",
17612
+ "kms-issuer-key-revoked",
16767
17613
  "kms-issuer-key-rotated",
16768
17614
  "kms-issuer-policy-created",
16769
17615
  "kms-issuer-policy-deleted",
@@ -16774,7 +17620,10 @@ const listEventTypeSchema = z__namespace.object({
16774
17620
  "log-drain-disabled",
16775
17621
  "log-drain-enabled",
16776
17622
  "login",
17623
+ "login-connection-linked",
17624
+ "login-connection-unlinked",
16777
17625
  "manual-deployment-promotion-created",
17626
+ "marketplace-flex-commit-opt-in",
16778
17627
  "marketplace-integration-allowlist-updated",
16779
17628
  "microfrontend-group-added",
16780
17629
  "microfrontend-group-deleted",
@@ -16804,6 +17653,8 @@ const listEventTypeSchema = z__namespace.object({
16804
17653
  "oidc-policy-used-to-obtain-app-token",
16805
17654
  "organization-create",
16806
17655
  "organization-delete",
17656
+ "organization-dsync-group-delete",
17657
+ "organization-dsync-group-upsert",
16807
17658
  "organization-slug-update",
16808
17659
  "organization-team-add",
16809
17660
  "organization-team-create",
@@ -16952,8 +17803,11 @@ const listEventTypeSchema = z__namespace.object({
16952
17803
  "protected-git-scope-added",
16953
17804
  "protected-git-scope-removed",
16954
17805
  "runtime-cache-purge-all",
17806
+ "saml-connection-created",
17807
+ "saml-connection-deleted",
16955
17808
  "sandbox-alias-assigned",
16956
17809
  "sandbox-alias-delete",
17810
+ "sandbox-snapshot-regions-updated",
16957
17811
  "scale",
16958
17812
  "scale-auto",
16959
17813
  "secondary-email-added",
@@ -16983,6 +17837,7 @@ const listEventTypeSchema = z__namespace.object({
16983
17837
  "spend-created",
16984
17838
  "spend-deleted",
16985
17839
  "spend-updated",
17840
+ "sso-login",
16986
17841
  "storage-accept-tos",
16987
17842
  "storage-access-token-set",
16988
17843
  "storage-accessed-data-browser",
@@ -17009,6 +17864,7 @@ const listEventTypeSchema = z__namespace.object({
17009
17864
  "subscription-product-added",
17010
17865
  "subscription-product-removed",
17011
17866
  "subscription-updated",
17867
+ "support-session-created",
17012
17868
  "team",
17013
17869
  "team-agent-billing-migration-decision-changed",
17014
17870
  "team-avatar-update",
@@ -17059,23 +17915,36 @@ const listEventTypeSchema = z__namespace.object({
17059
17915
  "tracing-configured",
17060
17916
  "tracing-disabled",
17061
17917
  "unlink-login-connection",
17918
+ "update-account-flow-dismissed",
17919
+ "update-account-flow-triggered",
17920
+ "user-auto-block-configured",
17921
+ "user-blocked",
17062
17922
  "user-delete",
17923
+ "user-delete-requested",
17063
17924
  "user-emu-account-archived",
17064
17925
  "user-emu-account-deleted",
17065
17926
  "user-emu-account-recovered",
17927
+ "user-emu-recovery-email-sent",
17928
+ "user-emu-recovery-initiated",
17929
+ "user-emu-toggled",
17066
17930
  "user-mfa-challenge-failed",
17067
17931
  "user-mfa-challenge-verified",
17068
17932
  "user-mfa-change-failed",
17069
17933
  "user-mfa-configuration-updated",
17934
+ "user-mfa-recovery-code-used",
17070
17935
  "user-mfa-recovery-codes-regenerated",
17071
17936
  "user-mfa-removed",
17072
17937
  "user-mfa-setup-skipped",
17073
17938
  "user-mfa-totp-verification-started",
17074
17939
  "user-mfa-totp-verified",
17940
+ "user-phone-removed",
17941
+ "user-phone-updated",
17075
17942
  "user-primary-email-updated",
17943
+ "user-sudo-mode-removed",
17076
17944
  "user-token-created",
17077
17945
  "user-token-deleted",
17078
17946
  "user-tokens-deleted",
17947
+ "user-unblocked",
17079
17948
  "username",
17080
17949
  "v0-chat-ai-usage",
17081
17950
  "v0-chat-created",
@@ -17087,6 +17956,7 @@ const listEventTypeSchema = z__namespace.object({
17087
17956
  "vcr-repository-permission-added",
17088
17957
  "vcr-repository-permission-removed",
17089
17958
  "vcr-repository-permissions-cleared",
17959
+ "vcr-repository-visibility-changed",
17090
17960
  "vercel-agent-elevated-permissions-approved",
17091
17961
  "vercel-agent-elevated-permissions-requested",
17092
17962
  "vercel-agent-session-created",
@@ -17115,6 +17985,7 @@ const listEventTypeSchema = z__namespace.object({
17115
17985
  "ai",
17116
17986
  "ai-gateway",
17117
17987
  "billing",
17988
+ "connect",
17118
17989
  "deployment",
17119
17990
  "domain",
17120
17991
  "edge",
@@ -17176,6 +18047,11 @@ const listEventTypeSchema = z__namespace.object({
17176
18047
  "ai-gateway-rule-deleted",
17177
18048
  "ai-gateway-rule-updated",
17178
18049
  "ai-gateway-scope-budget-updated",
18050
+ "ai-gateway-transcripts-default-disabled",
18051
+ "ai-gateway-transcripts-default-enabled",
18052
+ "ai-gateway-transcripts-disabled",
18053
+ "ai-gateway-transcripts-enabled",
18054
+ "ai-gateway-transcripts-retention-updated",
17179
18055
  "ai-gateway-virtual-model-config-archived",
17180
18056
  "ai-gateway-virtual-model-config-created",
17181
18057
  "ai-gateway-virtual-model-config-restored",
@@ -17221,6 +18097,7 @@ const listEventTypeSchema = z__namespace.object({
17221
18097
  "cert-system-create",
17222
18098
  "code-owners-config-updated",
17223
18099
  "compliance-document-downloaded",
18100
+ "compliance-document-previewed",
17224
18101
  "compliance-documents-bulk-downloaded",
17225
18102
  "concurrent-builds-update",
17226
18103
  "connect-attach-project",
@@ -17359,6 +18236,7 @@ const listEventTypeSchema = z__namespace.object({
17359
18236
  "flags-segment",
17360
18237
  "flags-settings",
17361
18238
  "flags-transferred",
18239
+ "git-integration-repo-push",
17362
18240
  "git_account_integration_link_added",
17363
18241
  "instant-rollback-created",
17364
18242
  "integration-configuration-owner-changed",
@@ -17379,6 +18257,7 @@ const listEventTypeSchema = z__namespace.object({
17379
18257
  "kms-issuer-deleted",
17380
18258
  "kms-issuer-key-activated",
17381
18259
  "kms-issuer-key-created",
18260
+ "kms-issuer-key-revoked",
17382
18261
  "kms-issuer-key-rotated",
17383
18262
  "kms-issuer-policy-created",
17384
18263
  "kms-issuer-policy-deleted",
@@ -17389,7 +18268,10 @@ const listEventTypeSchema = z__namespace.object({
17389
18268
  "log-drain-disabled",
17390
18269
  "log-drain-enabled",
17391
18270
  "login",
18271
+ "login-connection-linked",
18272
+ "login-connection-unlinked",
17392
18273
  "manual-deployment-promotion-created",
18274
+ "marketplace-flex-commit-opt-in",
17393
18275
  "marketplace-integration-allowlist-updated",
17394
18276
  "microfrontend-group-added",
17395
18277
  "microfrontend-group-deleted",
@@ -17419,6 +18301,8 @@ const listEventTypeSchema = z__namespace.object({
17419
18301
  "oidc-policy-used-to-obtain-app-token",
17420
18302
  "organization-create",
17421
18303
  "organization-delete",
18304
+ "organization-dsync-group-delete",
18305
+ "organization-dsync-group-upsert",
17422
18306
  "organization-slug-update",
17423
18307
  "organization-team-add",
17424
18308
  "organization-team-create",
@@ -17567,8 +18451,11 @@ const listEventTypeSchema = z__namespace.object({
17567
18451
  "protected-git-scope-added",
17568
18452
  "protected-git-scope-removed",
17569
18453
  "runtime-cache-purge-all",
18454
+ "saml-connection-created",
18455
+ "saml-connection-deleted",
17570
18456
  "sandbox-alias-assigned",
17571
18457
  "sandbox-alias-delete",
18458
+ "sandbox-snapshot-regions-updated",
17572
18459
  "scale",
17573
18460
  "scale-auto",
17574
18461
  "secondary-email-added",
@@ -17598,6 +18485,7 @@ const listEventTypeSchema = z__namespace.object({
17598
18485
  "spend-created",
17599
18486
  "spend-deleted",
17600
18487
  "spend-updated",
18488
+ "sso-login",
17601
18489
  "storage-accept-tos",
17602
18490
  "storage-access-token-set",
17603
18491
  "storage-accessed-data-browser",
@@ -17624,6 +18512,7 @@ const listEventTypeSchema = z__namespace.object({
17624
18512
  "subscription-product-added",
17625
18513
  "subscription-product-removed",
17626
18514
  "subscription-updated",
18515
+ "support-session-created",
17627
18516
  "team",
17628
18517
  "team-agent-billing-migration-decision-changed",
17629
18518
  "team-avatar-update",
@@ -17674,23 +18563,36 @@ const listEventTypeSchema = z__namespace.object({
17674
18563
  "tracing-configured",
17675
18564
  "tracing-disabled",
17676
18565
  "unlink-login-connection",
18566
+ "update-account-flow-dismissed",
18567
+ "update-account-flow-triggered",
18568
+ "user-auto-block-configured",
18569
+ "user-blocked",
17677
18570
  "user-delete",
18571
+ "user-delete-requested",
17678
18572
  "user-emu-account-archived",
17679
18573
  "user-emu-account-deleted",
17680
18574
  "user-emu-account-recovered",
18575
+ "user-emu-recovery-email-sent",
18576
+ "user-emu-recovery-initiated",
18577
+ "user-emu-toggled",
17681
18578
  "user-mfa-challenge-failed",
17682
18579
  "user-mfa-challenge-verified",
17683
18580
  "user-mfa-change-failed",
17684
18581
  "user-mfa-configuration-updated",
18582
+ "user-mfa-recovery-code-used",
17685
18583
  "user-mfa-recovery-codes-regenerated",
17686
18584
  "user-mfa-removed",
17687
18585
  "user-mfa-setup-skipped",
17688
18586
  "user-mfa-totp-verification-started",
17689
18587
  "user-mfa-totp-verified",
18588
+ "user-phone-removed",
18589
+ "user-phone-updated",
17690
18590
  "user-primary-email-updated",
18591
+ "user-sudo-mode-removed",
17691
18592
  "user-token-created",
17692
18593
  "user-token-deleted",
17693
18594
  "user-tokens-deleted",
18595
+ "user-unblocked",
17694
18596
  "username",
17695
18597
  "v0-chat-ai-usage",
17696
18598
  "v0-chat-created",
@@ -17702,6 +18604,7 @@ const listEventTypeSchema = z__namespace.object({
17702
18604
  "vcr-repository-permission-added",
17703
18605
  "vcr-repository-permission-removed",
17704
18606
  "vcr-repository-permissions-cleared",
18607
+ "vcr-repository-visibility-changed",
17705
18608
  "vercel-agent-elevated-permissions-approved",
17706
18609
  "vercel-agent-elevated-permissions-requested",
17707
18610
  "vercel-agent-session-created",
@@ -17733,6 +18636,7 @@ const listEventTypesResponseSchema = z__namespace.object({
17733
18636
  "ai",
17734
18637
  "ai-gateway",
17735
18638
  "billing",
18639
+ "connect",
17736
18640
  "deployment",
17737
18641
  "domain",
17738
18642
  "edge",
@@ -18241,7 +19145,8 @@ const aPIKeySchema = z__namespace.object({
18241
19145
  leakedAt: z__namespace.number().nullable().describe("Timestamp (in milliseconds) of when the API key was marked as leaked."),
18242
19146
  leakedUrl: z__namespace.string().nullable().describe("URL where the API key was discovered as leaked."),
18243
19147
  createdByAppId: z__namespace.string().nullable().describe("The ID of the app that created the API key, if any"),
18244
- quota: z__namespace.unknown().optional()
19148
+ quota: z__namespace.unknown().optional(),
19149
+ metadata: z__namespace.object({}).optional().describe("Generic metadata attached to the API key.\n\nThe accepted shape depends on the key's `purpose` and is validated when the key is created. For `ai-gateway` keys this carries `environment` and `spendAttribution`.")
18245
19150
  }).describe("Information about the newly created API key.");
18246
19151
  const aPIKeyQuotaSchema = z__namespace.object({
18247
19152
  quotaEntityId: z__namespace.string().describe("The unique identifier for the quota."),
@@ -18282,7 +19187,7 @@ const namedSandboxSchema = z__namespace.object({
18282
19187
  z__namespace.literal(false),
18283
19188
  z__namespace.literal(true)
18284
19189
  ]).describe("Whether the sandbox persists its state across restarts via automatic snapshots."),
18285
- region: z__namespace.string().optional().describe("The region the sandbox runs in."),
19190
+ 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`."),
18286
19191
  vcpus: z__namespace.number().optional().describe("Number of virtual CPUs allocated."),
18287
19192
  memory: z__namespace.number().optional().describe("Memory allocated in MB."),
18288
19193
  runtime: z__namespace.string().optional().describe("Runtime identifier."),
@@ -18451,6 +19356,7 @@ const invitedTeamMemberSchema = z__namespace.object({
18451
19356
  "AiGatewayBudgetManager",
18452
19357
  "AiGatewayCredits",
18453
19358
  "AiGatewaySettings",
19359
+ "ConnectorManager",
18454
19360
  "CreateProject",
18455
19361
  "EnvVariableManager",
18456
19362
  "EnvironmentManager",
@@ -18524,6 +19430,13 @@ const teamSchema = z__namespace.object({
18524
19430
  ])).optional().describe('When "Directory Sync" is configured, this object contains a mapping of which Directory Group (by ID) should be assigned to which Vercel Team "role".')
18525
19431
  }).optional().describe('When "Single Sign-On (SAML)" is configured, this object contains information regarding the configuration of the Identity Provider (IdP).'),
18526
19432
  inviteCode: z__namespace.string().optional().describe("Code that can be used to join this Team. Only visible to Team owners."),
19433
+ billing: z__namespace.object({
19434
+ plan: z__namespace.enum([
19435
+ "enterprise",
19436
+ "hobby",
19437
+ "pro"
19438
+ ])
19439
+ }).nullable().describe("The team's billing plan."),
18527
19440
  description: z__namespace.string().nullable().describe("A short description of the Team."),
18528
19441
  defaultRoles: z__namespace.object({
18529
19442
  teamRoles: z__namespace.array(z__namespace.enum([
@@ -18541,6 +19454,7 @@ const teamSchema = z__namespace.object({
18541
19454
  "AiGatewayBudgetManager",
18542
19455
  "AiGatewayCredits",
18543
19456
  "AiGatewaySettings",
19457
+ "ConnectorManager",
18544
19458
  "CreateProject",
18545
19459
  "EnvVariableManager",
18546
19460
  "EnvironmentManager",
@@ -18829,6 +19743,7 @@ const teamSchema = z__namespace.object({
18829
19743
  "AiGatewayBudgetManager",
18830
19744
  "AiGatewayCredits",
18831
19745
  "AiGatewaySettings",
19746
+ "ConnectorManager",
18832
19747
  "CreateProject",
18833
19748
  "EnvVariableManager",
18834
19749
  "EnvironmentManager",
@@ -18957,6 +19872,7 @@ const teamLimitedSchema = z__namespace.object({
18957
19872
  "AiGatewayBudgetManager",
18958
19873
  "AiGatewayCredits",
18959
19874
  "AiGatewaySettings",
19875
+ "ConnectorManager",
18960
19876
  "CreateProject",
18961
19877
  "EnvVariableManager",
18962
19878
  "EnvironmentManager",
@@ -19227,6 +20143,7 @@ const authUserSchema = z__namespace.object({
19227
20143
  edgeConfigSize: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
19228
20144
  edgeFunctionMaxSizeBytes: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
19229
20145
  edgeFunctionExecutionTimeoutMs: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
20146
+ serverlessFunctionMaxDuration: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
19230
20147
  serverlessFunctionMaxMemorySize: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
19231
20148
  kvDatabases: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
19232
20149
  postgresDatabases: z__namespace.number().optional().describe("An object containing infomation related to the amount of platform resources may be allocated to the User account."),
@@ -19275,6 +20192,7 @@ const authUserSchema = z__namespace.object({
19275
20192
  ]).nullish(),
19276
20193
  importFlowGitProvider: z__namespace.enum([
19277
20194
  "bitbucket",
20195
+ "cursor-origin",
19278
20196
  "github",
19279
20197
  "github-custom-host",
19280
20198
  "github-limited",
@@ -19339,8 +20257,10 @@ const authUserSchema = z__namespace.object({
19339
20257
  teamId: z__namespace.string(),
19340
20258
  slug: z__namespace.string(),
19341
20259
  name: z__namespace.string(),
19342
- avatar: z__namespace.string().nullable()
19343
- }))
20260
+ avatar: z__namespace.string().nullable(),
20261
+ workEmail: z__namespace.string()
20262
+ })),
20263
+ verifiedEmuDomains: z__namespace.array(z__namespace.string())
19344
20264
  }).optional().describe("Context for the Update Account screen. Present only when `isAccountUpdateRequired` is true. `managedTeams` is empty for orphan mode (user matches an EMU domain but is not on the team)."),
19345
20265
  id: z__namespace.string().describe("The User's unique identifier."),
19346
20266
  email: z__namespace.string().describe("Email address associated with the User account."),
@@ -19378,6 +20298,10 @@ const vcrRepositorySchema = z__namespace.object({
19378
20298
  id: z__namespace.string().describe("Unique identifier of the repository."),
19379
20299
  projectId: z__namespace.string().describe("Identifier of the project the repository belongs to."),
19380
20300
  name: z__namespace.string().describe("Name of the repository."),
20301
+ public: z__namespace.union([
20302
+ z__namespace.literal(false),
20303
+ z__namespace.literal(true)
20304
+ ]).describe("Whether the repository is public. Images in public repositories can be pulled by anyone. Defaults to `false` (private)."),
19381
20305
  createdAt: z__namespace.string().describe("ISO 8601 timestamp of when the repository was created."),
19382
20306
  updatedAt: z__namespace.string().describe("ISO 8601 timestamp of when the repository was last updated.")
19383
20307
  }).describe("A Vercel Container Registry repository.");
@@ -19419,6 +20343,12 @@ const vcrImageListSchema = z__namespace.object({
19419
20343
  images: z__namespace.array(z__namespace.unknown()),
19420
20344
  nextCursor: z__namespace.string().optional().describe("Cursor to fetch the next page of results, when more are available.")
19421
20345
  }).describe("A paginated list of images for a repository.");
20346
+ const vcrRepositoryPermissionSchema = z__namespace.object({
20347
+ repositoryId: z__namespace.string().describe("Identifier of the repository the permission grants access to."),
20348
+ teamId: z__namespace.string().describe("Identifier of the team that is granted access to the repository."),
20349
+ teamSlug: z__namespace.string().describe("Slug of the team that is granted access to the repository."),
20350
+ createdAt: z__namespace.string().describe("ISO 8601 timestamp of when the permission was created.")
20351
+ }).describe("A team's access grant to a Vercel Container Registry repository.");
19422
20352
  const vcrTagSchema = z__namespace.object({
19423
20353
  tag: z__namespace.string().describe("The tag name."),
19424
20354
  manifestDigest: z__namespace.string().describe("SHA-256 digest of the image manifest the tag points at."),
@@ -19605,6 +20535,10 @@ const vcrImageDetailSchema = z__namespace.object({
19605
20535
  }).optional().describe("Converted VHS drive data, present once an image has been optimized for sandbox launch."),
19606
20536
  createdAt: z__namespace.string().describe("ISO 8601 timestamp of when the image was created.")
19607
20537
  }).describe("A single image with its tags, status and resolved Dockerfile layer history.");
20538
+ const vcrRepositoryPermissionListSchema = z__namespace.object({
20539
+ permissions: z__namespace.array(z__namespace.unknown()),
20540
+ nextCursor: z__namespace.string().optional().describe("Cursor to fetch the next page of results, when more are available.")
20541
+ }).describe("A paginated list of Vercel Container Registry repository permissions.");
19608
20542
  const fileTreeSchema = z__namespace.object({
19609
20543
  name: z__namespace.string().describe("The name of the file tree entry"),
19610
20544
  type: z__namespace.enum([
@@ -20595,6 +21529,7 @@ const createConnectorStatus404Schema = z__namespace.unknown();
20595
21529
  const createConnectorStatus409Schema = z__namespace.unknown();
20596
21530
  const createConnectorStatus410Schema = z__namespace.unknown();
20597
21531
  const createConnectorStatus422Schema = z__namespace.unknown();
21532
+ const createConnectorStatus500Schema = z__namespace.unknown();
20598
21533
  const createConnectorStatus502Schema = z__namespace.unknown();
20599
21534
  const createConnectorResponseSchema = z__namespace.union([
20600
21535
  createConnectorStatus201Schema,
@@ -20605,6 +21540,7 @@ const createConnectorResponseSchema = z__namespace.union([
20605
21540
  createConnectorStatus409Schema,
20606
21541
  createConnectorStatus410Schema,
20607
21542
  createConnectorStatus422Schema,
21543
+ createConnectorStatus500Schema,
20608
21544
  createConnectorStatus502Schema
20609
21545
  ]);
20610
21546
  const getConnectorTokenPathConnectorSchema = z__namespace.string();
@@ -22065,6 +23001,7 @@ const listUserEventsQueryTypesSchema = z__namespace.string().optional().describe
22065
23001
  const listUserEventsQueryUserIdSchema = z__namespace.string().optional().describe("Deprecated. Use `principalId` instead. If `principalId` and `userId` both exist, `principalId` will be used.");
22066
23002
  const listUserEventsQueryPrincipalIdSchema = z__namespace.string().optional().describe("When retrieving events for a Team, the `principalId` parameter may be specified to filter events generated by a specific principal.");
22067
23003
  const listUserEventsQueryProjectIdsSchema = z__namespace.string().optional().describe("Comma-delimited list of project IDs to filter the results by.");
23004
+ const listUserEventsQueryEntityIdSchema = z__namespace.string().optional().describe("Filters events to those associated with a specific entity (matched against `payload.id`). For example, a connector ID.");
22068
23005
  const listUserEventsQueryWithPayloadSchema = z__namespace.string().optional().describe("When set to `true`, the response will include the `payload` field for each event.");
22069
23006
  const listUserEventsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
22070
23007
  const listUserEventsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -22612,7 +23549,8 @@ const searchRepoQueryProviderSchema = z__namespace.enum([
22612
23549
  "github-limited",
22613
23550
  "github-custom-host",
22614
23551
  "gitlab",
22615
- "bitbucket"
23552
+ "bitbucket",
23553
+ "cursor-origin"
22616
23554
  ]).optional();
22617
23555
  const searchRepoQueryInstallationIdSchema = z__namespace.string().optional();
22618
23556
  const searchRepoQueryHostSchema = z__namespace.string().optional().describe("The custom Git host if using a custom Git provider, like GitHub Enterprise Server");
@@ -22626,6 +23564,7 @@ const searchRepoStatus404Schema = z__namespace.unknown();
22626
23564
  const searchRepoStatus410Schema = z__namespace.unknown();
22627
23565
  const searchRepoStatus429Schema = z__namespace.unknown();
22628
23566
  const searchRepoStatus500Schema = z__namespace.unknown();
23567
+ const searchRepoStatus502Schema = z__namespace.unknown();
22629
23568
  const searchRepoResponseSchema = z__namespace.union([
22630
23569
  searchRepoStatus200Schema,
22631
23570
  searchRepoStatus400Schema,
@@ -22634,7 +23573,8 @@ const searchRepoResponseSchema = z__namespace.union([
22634
23573
  searchRepoStatus404Schema,
22635
23574
  searchRepoStatus410Schema,
22636
23575
  searchRepoStatus429Schema,
22637
- searchRepoStatus500Schema
23576
+ searchRepoStatus500Schema,
23577
+ searchRepoStatus502Schema
22638
23578
  ]);
22639
23579
  const getBillingPlansPathIntegrationIdOrSlugSchema = z__namespace.string();
22640
23580
  const getBillingPlansQueryIntegrationConfigurationIdSchema = z__namespace.string().optional();
@@ -22648,7 +23588,8 @@ const getBillingPlansQuerySourceSchema = z__namespace.enum([
22648
23588
  "resource-claims",
22649
23589
  "cli",
22650
23590
  "oauth",
22651
- "backoffice"
23591
+ "backoffice",
23592
+ "import-recommended-integrations"
22652
23593
  ]).optional();
22653
23594
  const getBillingPlansQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
22654
23595
  const getBillingPlansQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -23517,14 +24458,18 @@ const deleteRoutesStatus400Schema = z__namespace.unknown();
23517
24458
  const deleteRoutesStatus401Schema = z__namespace.unknown();
23518
24459
  const deleteRoutesStatus403Schema = z__namespace.unknown();
23519
24460
  const deleteRoutesStatus404Schema = z__namespace.unknown();
24461
+ const deleteRoutesStatus409Schema = z__namespace.unknown();
23520
24462
  const deleteRoutesStatus410Schema = z__namespace.unknown();
24463
+ const deleteRoutesStatus500Schema = z__namespace.unknown();
23521
24464
  const deleteRoutesResponseSchema = z__namespace.union([
23522
24465
  deleteRoutesStatus200Schema,
23523
24466
  deleteRoutesStatus400Schema,
23524
24467
  deleteRoutesStatus401Schema,
23525
24468
  deleteRoutesStatus403Schema,
23526
24469
  deleteRoutesStatus404Schema,
23527
- deleteRoutesStatus410Schema
24470
+ deleteRoutesStatus409Schema,
24471
+ deleteRoutesStatus410Schema,
24472
+ deleteRoutesStatus500Schema
23528
24473
  ]);
23529
24474
  const editRoutePathProjectIdSchema = z__namespace.string();
23530
24475
  const editRoutePathRouteIdSchema = z__namespace.string();
@@ -23616,7 +24561,7 @@ const getProjectsQueryEdgeConfigTokenIdSchema = z__namespace.string().optional()
23616
24561
  const getProjectsQueryDeprecatedSchema = z__namespace.boolean().optional();
23617
24562
  const getProjectsQueryElasticConcurrencyEnabledSchema = z__namespace.string().optional().describe("Filter results by projects with elastic concurrency enabled");
23618
24563
  const getProjectsQueryStaticIpsEnabledSchema = z__namespace.string().optional().describe("Filter results by projects with Static IPs enabled");
23619
- const getProjectsQueryBuildMachineTypesSchema = z__namespace.string().optional().describe('Filter results by build machine types. Accepts comma-separated values. Use "default" for projects without a build machine type set.');
24564
+ const getProjectsQueryBuildMachineTypesSchema = z__namespace.string().optional().describe('Filter results by effective build machine types. Accepts comma-separated values. Use "elastic" for projects with elastic selection and "default" for projects without a build machine type set.');
23620
24565
  const getProjectsQueryBuildQueueConfigurationSchema = z__namespace.enum([
23621
24566
  "SKIP_NAMESPACE_QUEUE",
23622
24567
  "WAIT_FOR_NAMESPACE_QUEUE"
@@ -23737,7 +24682,6 @@ const updateProjectStatus404Schema = z__namespace.unknown();
23737
24682
  const updateProjectStatus409Schema = z__namespace.unknown();
23738
24683
  const updateProjectStatus410Schema = z__namespace.unknown();
23739
24684
  const updateProjectStatus428Schema = z__namespace.unknown();
23740
- const updateProjectStatus500Schema = z__namespace.unknown();
23741
24685
  const updateProjectResponseSchema = z__namespace.union([
23742
24686
  updateProjectStatus200Schema,
23743
24687
  updateProjectStatus400Schema,
@@ -23747,8 +24691,7 @@ const updateProjectResponseSchema = z__namespace.union([
23747
24691
  updateProjectStatus404Schema,
23748
24692
  updateProjectStatus409Schema,
23749
24693
  updateProjectStatus410Schema,
23750
- updateProjectStatus428Schema,
23751
- updateProjectStatus500Schema
24694
+ updateProjectStatus428Schema
23752
24695
  ]);
23753
24696
  const deleteProjectPathIdOrNameSchema = z__namespace.string().describe("The unique project identifier or the project name");
23754
24697
  const deleteProjectQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
@@ -24551,31 +25494,31 @@ const listSandboxesResponseSchema = z__namespace.union([
24551
25494
  listSandboxesStatus410Schema,
24552
25495
  listSandboxesStatus429Schema
24553
25496
  ]);
24554
- const createSandboxesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
24555
- const createSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
24556
- const createSandboxesStatus200Schema = z__namespace.unknown();
24557
- const createSandboxesStatus400Schema = z__namespace.unknown();
24558
- const createSandboxesStatus401Schema = z__namespace.unknown();
24559
- const createSandboxesStatus402Schema = z__namespace.unknown();
24560
- const createSandboxesStatus403Schema = z__namespace.unknown();
24561
- const createSandboxesStatus404Schema = z__namespace.unknown();
24562
- const createSandboxesStatus409Schema = z__namespace.unknown();
24563
- const createSandboxesStatus410Schema = z__namespace.unknown();
24564
- const createSandboxesStatus422Schema = z__namespace.unknown();
24565
- const createSandboxesStatus429Schema = z__namespace.unknown();
24566
- const createSandboxesStatus500Schema = z__namespace.unknown();
24567
- const createSandboxesResponseSchema = z__namespace.union([
24568
- createSandboxesStatus200Schema,
24569
- createSandboxesStatus400Schema,
24570
- createSandboxesStatus401Schema,
24571
- createSandboxesStatus402Schema,
24572
- createSandboxesStatus403Schema,
24573
- createSandboxesStatus404Schema,
24574
- createSandboxesStatus409Schema,
24575
- createSandboxesStatus410Schema,
24576
- createSandboxesStatus422Schema,
24577
- createSandboxesStatus429Schema,
24578
- createSandboxesStatus500Schema
25497
+ const createSandboxesV2QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
25498
+ const createSandboxesV2QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
25499
+ const createSandboxesV2Status200Schema = z__namespace.unknown();
25500
+ const createSandboxesV2Status400Schema = z__namespace.unknown();
25501
+ const createSandboxesV2Status401Schema = z__namespace.unknown();
25502
+ const createSandboxesV2Status402Schema = z__namespace.unknown();
25503
+ const createSandboxesV2Status403Schema = z__namespace.unknown();
25504
+ const createSandboxesV2Status404Schema = z__namespace.unknown();
25505
+ const createSandboxesV2Status409Schema = z__namespace.unknown();
25506
+ const createSandboxesV2Status410Schema = z__namespace.unknown();
25507
+ const createSandboxesV2Status422Schema = z__namespace.unknown();
25508
+ const createSandboxesV2Status429Schema = z__namespace.unknown();
25509
+ const createSandboxesV2Status500Schema = z__namespace.unknown();
25510
+ const createSandboxesV2ResponseSchema = z__namespace.union([
25511
+ createSandboxesV2Status200Schema,
25512
+ createSandboxesV2Status400Schema,
25513
+ createSandboxesV2Status401Schema,
25514
+ createSandboxesV2Status402Schema,
25515
+ createSandboxesV2Status403Schema,
25516
+ createSandboxesV2Status404Schema,
25517
+ createSandboxesV2Status409Schema,
25518
+ createSandboxesV2Status410Schema,
25519
+ createSandboxesV2Status422Schema,
25520
+ createSandboxesV2Status429Schema,
25521
+ createSandboxesV2Status500Schema
24579
25522
  ]);
24580
25523
  const listDrivesQueryProjectIdSchema = z__namespace.string().optional().describe("The project ID or name associated with the drives. Required unless using a Vercel OIDC token scoped to a project.");
24581
25524
  const listDrivesQueryLimitSchema = z__namespace.number().min(1).max(50).optional().default(20).describe("Maximum number of drives to return in the response. Used for pagination.");
@@ -25015,7 +25958,6 @@ const updateSessionNetworkPolicyQuerySlugSchema = z__namespace.string().optional
25015
25958
  const updateSessionNetworkPolicyStatus200Schema = z__namespace.unknown();
25016
25959
  const updateSessionNetworkPolicyStatus400Schema = z__namespace.unknown();
25017
25960
  const updateSessionNetworkPolicyStatus401Schema = z__namespace.unknown();
25018
- const updateSessionNetworkPolicyStatus402Schema = z__namespace.unknown();
25019
25961
  const updateSessionNetworkPolicyStatus403Schema = z__namespace.unknown();
25020
25962
  const updateSessionNetworkPolicyStatus404Schema = z__namespace.unknown();
25021
25963
  const updateSessionNetworkPolicyStatus410Schema = z__namespace.unknown();
@@ -25026,7 +25968,6 @@ const updateSessionNetworkPolicyResponseSchema = z__namespace.union([
25026
25968
  updateSessionNetworkPolicyStatus200Schema,
25027
25969
  updateSessionNetworkPolicyStatus400Schema,
25028
25970
  updateSessionNetworkPolicyStatus401Schema,
25029
- updateSessionNetworkPolicyStatus402Schema,
25030
25971
  updateSessionNetworkPolicyStatus403Schema,
25031
25972
  updateSessionNetworkPolicyStatus404Schema,
25032
25973
  updateSessionNetworkPolicyStatus410Schema,
@@ -25157,6 +26098,32 @@ const createSandboxesByNameForkResponseSchema = z__namespace.union([
25157
26098
  createSandboxesByNameForkStatus429Schema,
25158
26099
  createSandboxesByNameForkStatus500Schema
25159
26100
  ]);
26101
+ const createSandboxesV3QueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
26102
+ const createSandboxesV3QuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
26103
+ const createSandboxesV3Status200Schema = z__namespace.unknown();
26104
+ const createSandboxesV3Status400Schema = z__namespace.unknown();
26105
+ const createSandboxesV3Status401Schema = z__namespace.unknown();
26106
+ const createSandboxesV3Status402Schema = z__namespace.unknown();
26107
+ const createSandboxesV3Status403Schema = z__namespace.unknown();
26108
+ const createSandboxesV3Status404Schema = z__namespace.unknown();
26109
+ const createSandboxesV3Status409Schema = z__namespace.unknown();
26110
+ const createSandboxesV3Status410Schema = z__namespace.unknown();
26111
+ const createSandboxesV3Status422Schema = z__namespace.unknown();
26112
+ const createSandboxesV3Status429Schema = z__namespace.unknown();
26113
+ const createSandboxesV3Status500Schema = z__namespace.unknown();
26114
+ const createSandboxesV3ResponseSchema = z__namespace.union([
26115
+ createSandboxesV3Status200Schema,
26116
+ createSandboxesV3Status400Schema,
26117
+ createSandboxesV3Status401Schema,
26118
+ createSandboxesV3Status402Schema,
26119
+ createSandboxesV3Status403Schema,
26120
+ createSandboxesV3Status404Schema,
26121
+ createSandboxesV3Status409Schema,
26122
+ createSandboxesV3Status410Schema,
26123
+ createSandboxesV3Status422Schema,
26124
+ createSandboxesV3Status429Schema,
26125
+ createSandboxesV3Status500Schema
26126
+ ]);
25160
26127
  const updateAttackChallengeModeQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
25161
26128
  const updateAttackChallengeModeQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
25162
26129
  const updateAttackChallengeModeStatus200Schema = z__namespace.unknown();
@@ -25996,6 +26963,80 @@ const listRepositoryImagesResponseSchema = z__namespace.union([
25996
26963
  listRepositoryImagesStatus404Schema,
25997
26964
  listRepositoryImagesStatus410Schema
25998
26965
  ]);
26966
+ const addRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
26967
+ const addRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
26968
+ const addRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
26969
+ const addRepositoryPermissionQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
26970
+ const addRepositoryPermissionStatus200Schema = z__namespace.unknown();
26971
+ const addRepositoryPermissionStatus400Schema = z__namespace.unknown();
26972
+ const addRepositoryPermissionStatus401Schema = z__namespace.unknown();
26973
+ const addRepositoryPermissionStatus403Schema = z__namespace.unknown();
26974
+ const addRepositoryPermissionStatus404Schema = z__namespace.unknown();
26975
+ const addRepositoryPermissionStatus410Schema = z__namespace.unknown();
26976
+ const addRepositoryPermissionResponseSchema = z__namespace.union([
26977
+ addRepositoryPermissionStatus200Schema,
26978
+ addRepositoryPermissionStatus400Schema,
26979
+ addRepositoryPermissionStatus401Schema,
26980
+ addRepositoryPermissionStatus403Schema,
26981
+ addRepositoryPermissionStatus404Schema,
26982
+ addRepositoryPermissionStatus410Schema
26983
+ ]);
26984
+ const removeRepositoryPermissionQueryProjectIdSchema = z__namespace.string();
26985
+ const removeRepositoryPermissionPathIdOrNameSchema = z__namespace.string().max(255);
26986
+ const removeRepositoryPermissionQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
26987
+ const removeRepositoryPermissionQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
26988
+ const removeRepositoryPermissionStatus204Schema = z__namespace.unknown();
26989
+ const removeRepositoryPermissionStatus400Schema = z__namespace.unknown();
26990
+ const removeRepositoryPermissionStatus401Schema = z__namespace.unknown();
26991
+ const removeRepositoryPermissionStatus403Schema = z__namespace.unknown();
26992
+ const removeRepositoryPermissionStatus404Schema = z__namespace.unknown();
26993
+ const removeRepositoryPermissionStatus410Schema = z__namespace.unknown();
26994
+ const removeRepositoryPermissionResponseSchema = z__namespace.union([
26995
+ removeRepositoryPermissionStatus204Schema,
26996
+ removeRepositoryPermissionStatus400Schema,
26997
+ removeRepositoryPermissionStatus401Schema,
26998
+ removeRepositoryPermissionStatus403Schema,
26999
+ removeRepositoryPermissionStatus404Schema,
27000
+ removeRepositoryPermissionStatus410Schema
27001
+ ]);
27002
+ const listRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
27003
+ const listRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
27004
+ const listRepositoryPermissionsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
27005
+ const listRepositoryPermissionsQueryCursorSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
27006
+ const listRepositoryPermissionsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
27007
+ const listRepositoryPermissionsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
27008
+ const listRepositoryPermissionsStatus200Schema = z__namespace.unknown();
27009
+ const listRepositoryPermissionsStatus400Schema = z__namespace.unknown();
27010
+ const listRepositoryPermissionsStatus401Schema = z__namespace.unknown();
27011
+ const listRepositoryPermissionsStatus403Schema = z__namespace.unknown();
27012
+ const listRepositoryPermissionsStatus404Schema = z__namespace.unknown();
27013
+ const listRepositoryPermissionsStatus410Schema = z__namespace.unknown();
27014
+ const listRepositoryPermissionsResponseSchema = z__namespace.union([
27015
+ listRepositoryPermissionsStatus200Schema,
27016
+ listRepositoryPermissionsStatus400Schema,
27017
+ listRepositoryPermissionsStatus401Schema,
27018
+ listRepositoryPermissionsStatus403Schema,
27019
+ listRepositoryPermissionsStatus404Schema,
27020
+ listRepositoryPermissionsStatus410Schema
27021
+ ]);
27022
+ const clearRepositoryPermissionsQueryProjectIdSchema = z__namespace.string();
27023
+ const clearRepositoryPermissionsPathIdOrNameSchema = z__namespace.string().max(255);
27024
+ const clearRepositoryPermissionsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
27025
+ const clearRepositoryPermissionsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
27026
+ const clearRepositoryPermissionsStatus204Schema = z__namespace.unknown();
27027
+ const clearRepositoryPermissionsStatus400Schema = z__namespace.unknown();
27028
+ const clearRepositoryPermissionsStatus401Schema = z__namespace.unknown();
27029
+ const clearRepositoryPermissionsStatus403Schema = z__namespace.unknown();
27030
+ const clearRepositoryPermissionsStatus404Schema = z__namespace.unknown();
27031
+ const clearRepositoryPermissionsStatus410Schema = z__namespace.unknown();
27032
+ const clearRepositoryPermissionsResponseSchema = z__namespace.union([
27033
+ clearRepositoryPermissionsStatus204Schema,
27034
+ clearRepositoryPermissionsStatus400Schema,
27035
+ clearRepositoryPermissionsStatus401Schema,
27036
+ clearRepositoryPermissionsStatus403Schema,
27037
+ clearRepositoryPermissionsStatus404Schema,
27038
+ clearRepositoryPermissionsStatus410Schema
27039
+ ]);
25999
27040
  const listRepositoryTagsQueryProjectIdSchema = z__namespace.string();
26000
27041
  const listRepositoryTagsPathIdOrNameSchema = z__namespace.string().max(255);
26001
27042
  const listRepositoryTagsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
@@ -26081,6 +27122,249 @@ const deleteRepositoryImageResponseSchema = z__namespace.union([
26081
27122
  deleteRepositoryImageStatus404Schema,
26082
27123
  deleteRepositoryImageStatus410Schema
26083
27124
  ]);
27125
+ const getRootStatus200Schema = z__namespace.unknown();
27126
+ const getRootStatus400Schema = z__namespace.unknown();
27127
+ const getRootStatus401Schema = z__namespace.unknown();
27128
+ const getRootStatus402Schema = z__namespace.unknown();
27129
+ const getRootStatus403Schema = z__namespace.unknown();
27130
+ const getRootStatus404Schema = z__namespace.unknown();
27131
+ const getRootStatus410Schema = z__namespace.unknown();
27132
+ const getRootResponseSchema = z__namespace.union([
27133
+ getRootStatus200Schema,
27134
+ getRootStatus400Schema,
27135
+ getRootStatus401Schema,
27136
+ getRootStatus402Schema,
27137
+ getRootStatus403Schema,
27138
+ getRootStatus404Schema,
27139
+ getRootStatus410Schema
27140
+ ]);
27141
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27142
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27143
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27144
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
27145
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema = z__namespace.unknown();
27146
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema = z__namespace.unknown();
27147
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema = z__namespace.unknown();
27148
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema = z__namespace.unknown();
27149
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema = z__namespace.unknown();
27150
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema = z__namespace.unknown();
27151
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema = z__namespace.unknown();
27152
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z__namespace.union([
27153
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema,
27154
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema,
27155
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema,
27156
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema,
27157
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema,
27158
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema,
27159
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema
27160
+ ]);
27161
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27162
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27163
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27164
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
27165
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema = z__namespace.unknown();
27166
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema = z__namespace.unknown();
27167
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema = z__namespace.unknown();
27168
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema = z__namespace.unknown();
27169
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema = z__namespace.unknown();
27170
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema = z__namespace.unknown();
27171
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema = z__namespace.unknown();
27172
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = z__namespace.union([
27173
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema,
27174
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema,
27175
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema,
27176
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema,
27177
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema,
27178
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema,
27179
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema
27180
+ ]);
27181
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27182
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27183
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27184
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
27185
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema = z__namespace.unknown();
27186
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = z__namespace.unknown();
27187
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = z__namespace.unknown();
27188
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = z__namespace.unknown();
27189
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = z__namespace.unknown();
27190
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = z__namespace.unknown();
27191
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = z__namespace.unknown();
27192
+ const getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = z__namespace.union([
27193
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema,
27194
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema,
27195
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema,
27196
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema,
27197
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema,
27198
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
27199
+ getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
27200
+ ]);
27201
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27202
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27203
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27204
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
27205
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema = z__namespace.unknown();
27206
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = z__namespace.unknown();
27207
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = z__namespace.unknown();
27208
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = z__namespace.unknown();
27209
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = z__namespace.unknown();
27210
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = z__namespace.unknown();
27211
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = z__namespace.unknown();
27212
+ const deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = z__namespace.union([
27213
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema,
27214
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema,
27215
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema,
27216
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema,
27217
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema,
27218
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
27219
+ deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema
27220
+ ]);
27221
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27222
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27223
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27224
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
27225
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema = z__namespace.unknown();
27226
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = z__namespace.unknown();
27227
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = z__namespace.unknown();
27228
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = z__namespace.unknown();
27229
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = z__namespace.unknown();
27230
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = z__namespace.unknown();
27231
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = z__namespace.unknown();
27232
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema = z__namespace.unknown();
27233
+ const updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = z__namespace.union([
27234
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema,
27235
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema,
27236
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema,
27237
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema,
27238
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema,
27239
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
27240
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
27241
+ updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
27242
+ ]);
27243
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27244
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27245
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27246
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = z__namespace.string().max(40).regex(/^[a-f0-9]{40}$/).describe("Blob upload session identifier.");
27247
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
27248
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema = z__namespace.unknown();
27249
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = z__namespace.unknown();
27250
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = z__namespace.unknown();
27251
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = z__namespace.unknown();
27252
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = z__namespace.unknown();
27253
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = z__namespace.unknown();
27254
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = z__namespace.unknown();
27255
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema = z__namespace.unknown();
27256
+ const replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = z__namespace.union([
27257
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema,
27258
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema,
27259
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema,
27260
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema,
27261
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema,
27262
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema,
27263
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema,
27264
+ replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema
27265
+ ]);
27266
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27267
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27268
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27269
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).optional().describe("Digest of the blob to mount from another repository.");
27270
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?\\\/[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).optional().describe("Source repository to mount the blob from.");
27271
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = z__namespace.unknown();
27272
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = z__namespace.unknown();
27273
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = z__namespace.unknown();
27274
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema = z__namespace.unknown();
27275
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema = z__namespace.unknown();
27276
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema = z__namespace.unknown();
27277
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema = z__namespace.unknown();
27278
+ const createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema = z__namespace.union([
27279
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema,
27280
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema,
27281
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema,
27282
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema,
27283
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema,
27284
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema,
27285
+ createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema
27286
+ ]);
27287
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27288
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27289
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27290
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
27291
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema = z__namespace.unknown();
27292
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = z__namespace.unknown();
27293
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = z__namespace.unknown();
27294
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = z__namespace.unknown();
27295
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = z__namespace.unknown();
27296
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = z__namespace.unknown();
27297
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = z__namespace.unknown();
27298
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema = z__namespace.unknown();
27299
+ const replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = z__namespace.union([
27300
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema,
27301
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema,
27302
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema,
27303
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema,
27304
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema,
27305
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
27306
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema,
27307
+ replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema
27308
+ ]);
27309
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27310
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27311
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27312
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^(?:[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}|[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+)$/).describe("Manifest reference: a tag or digest.");
27313
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = z__namespace.unknown();
27314
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = z__namespace.unknown();
27315
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = z__namespace.unknown();
27316
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = z__namespace.unknown();
27317
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = z__namespace.unknown();
27318
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = z__namespace.unknown();
27319
+ const getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = z__namespace.union([
27320
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema,
27321
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema,
27322
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema,
27323
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema,
27324
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
27325
+ getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
27326
+ ]);
27327
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27328
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27329
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27330
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = z__namespace.string().max(255).regex(/^[A-Za-z0-9_+.-]+:[A-Fa-f0-9]+$/).describe("Content-addressable digest (algorithm:hex).");
27331
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema = z__namespace.unknown();
27332
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = z__namespace.unknown();
27333
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = z__namespace.unknown();
27334
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = z__namespace.unknown();
27335
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = z__namespace.unknown();
27336
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = z__namespace.unknown();
27337
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = z__namespace.unknown();
27338
+ const deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = z__namespace.union([
27339
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema,
27340
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema,
27341
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema,
27342
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema,
27343
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema,
27344
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema,
27345
+ deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema
27346
+ ]);
27347
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository team slug component.");
27348
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema = z__namespace.string().max(255).regex(/^[a-z0-9](?:[a-z0-9-]{0,46}[a-z0-9])?$/).describe("Single Docker repository project slug component.");
27349
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = z__namespace.string().max(255).regex(/^[a-z0-9]+(?:(?:\\.|_|__|-+)[a-z0-9]+)*$/).describe("Single Docker repository name component.");
27350
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = z__namespace.int().min(1).max(1000).optional();
27351
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema = z__namespace.string().max(1024).optional().describe("Opaque pagination cursor returned by a previous list response.");
27352
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema = z__namespace.unknown();
27353
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema = z__namespace.unknown();
27354
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema = z__namespace.unknown();
27355
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema = z__namespace.unknown();
27356
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema = z__namespace.unknown();
27357
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema = z__namespace.unknown();
27358
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema = z__namespace.unknown();
27359
+ const getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema = z__namespace.union([
27360
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema,
27361
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema,
27362
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema,
27363
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema,
27364
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema,
27365
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema,
27366
+ getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema
27367
+ ]);
26084
27368
  const createWebInsightsToggleQueryProjectIdSchema = z__namespace.string();
26085
27369
  const createWebInsightsToggleStatus200Schema = z__namespace.unknown();
26086
27370
  const createWebInsightsToggleStatus400Schema = z__namespace.unknown();
@@ -26766,6 +28050,11 @@ const userEventTypeEnum = {
26766
28050
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
26767
28051
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
26768
28052
  "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
28053
+ "ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
28054
+ "ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
28055
+ "ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
28056
+ "ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
28057
+ "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
26769
28058
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
26770
28059
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
26771
28060
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -26811,6 +28100,7 @@ const userEventTypeEnum = {
26811
28100
  "cert-system-create": "cert-system-create",
26812
28101
  "code-owners-config-updated": "code-owners-config-updated",
26813
28102
  "compliance-document-downloaded": "compliance-document-downloaded",
28103
+ "compliance-document-previewed": "compliance-document-previewed",
26814
28104
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
26815
28105
  "concurrent-builds-update": "concurrent-builds-update",
26816
28106
  "connect-attach-project": "connect-attach-project",
@@ -26949,6 +28239,7 @@ const userEventTypeEnum = {
26949
28239
  "flags-segment": "flags-segment",
26950
28240
  "flags-settings": "flags-settings",
26951
28241
  "flags-transferred": "flags-transferred",
28242
+ "git-integration-repo-push": "git-integration-repo-push",
26952
28243
  git_account_integration_link_added: "git_account_integration_link_added",
26953
28244
  "instant-rollback-created": "instant-rollback-created",
26954
28245
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -26969,6 +28260,7 @@ const userEventTypeEnum = {
26969
28260
  "kms-issuer-deleted": "kms-issuer-deleted",
26970
28261
  "kms-issuer-key-activated": "kms-issuer-key-activated",
26971
28262
  "kms-issuer-key-created": "kms-issuer-key-created",
28263
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
26972
28264
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
26973
28265
  "kms-issuer-policy-created": "kms-issuer-policy-created",
26974
28266
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -26979,7 +28271,10 @@ const userEventTypeEnum = {
26979
28271
  "log-drain-disabled": "log-drain-disabled",
26980
28272
  "log-drain-enabled": "log-drain-enabled",
26981
28273
  login: "login",
28274
+ "login-connection-linked": "login-connection-linked",
28275
+ "login-connection-unlinked": "login-connection-unlinked",
26982
28276
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
28277
+ "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
26983
28278
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
26984
28279
  "microfrontend-group-added": "microfrontend-group-added",
26985
28280
  "microfrontend-group-deleted": "microfrontend-group-deleted",
@@ -27009,6 +28304,8 @@ const userEventTypeEnum = {
27009
28304
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
27010
28305
  "organization-create": "organization-create",
27011
28306
  "organization-delete": "organization-delete",
28307
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
28308
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
27012
28309
  "organization-slug-update": "organization-slug-update",
27013
28310
  "organization-team-add": "organization-team-add",
27014
28311
  "organization-team-create": "organization-team-create",
@@ -27157,8 +28454,11 @@ const userEventTypeEnum = {
27157
28454
  "protected-git-scope-added": "protected-git-scope-added",
27158
28455
  "protected-git-scope-removed": "protected-git-scope-removed",
27159
28456
  "runtime-cache-purge-all": "runtime-cache-purge-all",
28457
+ "saml-connection-created": "saml-connection-created",
28458
+ "saml-connection-deleted": "saml-connection-deleted",
27160
28459
  "sandbox-alias-assigned": "sandbox-alias-assigned",
27161
28460
  "sandbox-alias-delete": "sandbox-alias-delete",
28461
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
27162
28462
  scale: "scale",
27163
28463
  "scale-auto": "scale-auto",
27164
28464
  "secondary-email-added": "secondary-email-added",
@@ -27188,6 +28488,7 @@ const userEventTypeEnum = {
27188
28488
  "spend-created": "spend-created",
27189
28489
  "spend-deleted": "spend-deleted",
27190
28490
  "spend-updated": "spend-updated",
28491
+ "sso-login": "sso-login",
27191
28492
  "storage-accept-tos": "storage-accept-tos",
27192
28493
  "storage-access-token-set": "storage-access-token-set",
27193
28494
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -27214,6 +28515,7 @@ const userEventTypeEnum = {
27214
28515
  "subscription-product-added": "subscription-product-added",
27215
28516
  "subscription-product-removed": "subscription-product-removed",
27216
28517
  "subscription-updated": "subscription-updated",
28518
+ "support-session-created": "support-session-created",
27217
28519
  team: "team",
27218
28520
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
27219
28521
  "team-avatar-update": "team-avatar-update",
@@ -27264,23 +28566,36 @@ const userEventTypeEnum = {
27264
28566
  "tracing-configured": "tracing-configured",
27265
28567
  "tracing-disabled": "tracing-disabled",
27266
28568
  "unlink-login-connection": "unlink-login-connection",
28569
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
28570
+ "update-account-flow-triggered": "update-account-flow-triggered",
28571
+ "user-auto-block-configured": "user-auto-block-configured",
28572
+ "user-blocked": "user-blocked",
27267
28573
  "user-delete": "user-delete",
28574
+ "user-delete-requested": "user-delete-requested",
27268
28575
  "user-emu-account-archived": "user-emu-account-archived",
27269
28576
  "user-emu-account-deleted": "user-emu-account-deleted",
27270
28577
  "user-emu-account-recovered": "user-emu-account-recovered",
28578
+ "user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
28579
+ "user-emu-recovery-initiated": "user-emu-recovery-initiated",
28580
+ "user-emu-toggled": "user-emu-toggled",
27271
28581
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
27272
28582
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
27273
28583
  "user-mfa-change-failed": "user-mfa-change-failed",
27274
28584
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
28585
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
27275
28586
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
27276
28587
  "user-mfa-removed": "user-mfa-removed",
27277
28588
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
27278
28589
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
27279
28590
  "user-mfa-totp-verified": "user-mfa-totp-verified",
28591
+ "user-phone-removed": "user-phone-removed",
28592
+ "user-phone-updated": "user-phone-updated",
27280
28593
  "user-primary-email-updated": "user-primary-email-updated",
28594
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
27281
28595
  "user-token-created": "user-token-created",
27282
28596
  "user-token-deleted": "user-token-deleted",
27283
28597
  "user-tokens-deleted": "user-tokens-deleted",
28598
+ "user-unblocked": "user-unblocked",
27284
28599
  username: "username",
27285
28600
  "v0-chat-ai-usage": "v0-chat-ai-usage",
27286
28601
  "v0-chat-created": "v0-chat-created",
@@ -27292,6 +28607,7 @@ const userEventTypeEnum = {
27292
28607
  "vcr-repository-permission-added": "vcr-repository-permission-added",
27293
28608
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
27294
28609
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
28610
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
27295
28611
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
27296
28612
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
27297
28613
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -27319,6 +28635,7 @@ const userEventCategoriesEnum = {
27319
28635
  ai: "ai",
27320
28636
  "ai-gateway": "ai-gateway",
27321
28637
  billing: "billing",
28638
+ connect: "connect",
27322
28639
  deployment: "deployment",
27323
28640
  domain: "domain",
27324
28641
  edge: "edge",
@@ -27355,7 +28672,8 @@ const providerEnum = {
27355
28672
  "github-custom-host": "github-custom-host",
27356
28673
  "github-limited": "github-limited",
27357
28674
  gitlab: "gitlab",
27358
- google: "google"
28675
+ google: "google",
28676
+ saml: "saml"
27359
28677
  };
27360
28678
  const fromPlanEnum = {
27361
28679
  hobby: "hobby",
@@ -27381,6 +28699,14 @@ const scopeTypeEnum = {
27381
28699
  project: "project",
27382
28700
  team: "team"
27383
28701
  };
28702
+ const defaultModeEnum = {
28703
+ days: "days",
28704
+ "until-requested": "until-requested"
28705
+ };
28706
+ const ceilingModeEnum = {
28707
+ days: "days",
28708
+ "until-requested": "until-requested"
28709
+ };
27384
28710
  const nextRoleEnum = {
27385
28711
  ADMIN: "ADMIN",
27386
28712
  PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
@@ -27426,6 +28752,9 @@ const subjectTypeEnum = {
27426
28752
  app: "app",
27427
28753
  user: "user"
27428
28754
  };
28755
+ const gitCredentialSourceEnum = {
28756
+ "external-token": "external-token"
28757
+ };
27429
28758
  const commitVerificationEnum = {
27430
28759
  unknown: "unknown",
27431
28760
  unverified: "unverified",
@@ -27444,6 +28773,16 @@ const initiatorEnum = {
27444
28773
  system: "system",
27445
28774
  user: "user"
27446
28775
  };
28776
+ const outcomeEnum = {
28777
+ failure: "failure",
28778
+ success: "success"
28779
+ };
28780
+ const failureStageEnum = {
28781
+ authorization: "authorization",
28782
+ push: "push",
28783
+ unexpected: "unexpected",
28784
+ unknown: "unknown"
28785
+ };
27447
28786
  const planEnum = {
27448
28787
  enterprise: "enterprise",
27449
28788
  hobby: "hobby",
@@ -27451,6 +28790,7 @@ const planEnum = {
27451
28790
  };
27452
28791
  const importFlowGitProviderEnum = {
27453
28792
  bitbucket: "bitbucket",
28793
+ "cursor-origin": "cursor-origin",
27454
28794
  github: "github",
27455
28795
  "github-custom-host": "github-custom-host",
27456
28796
  "github-limited": "github-limited",
@@ -27459,21 +28799,34 @@ const importFlowGitProviderEnum = {
27459
28799
  };
27460
28800
  const widgetEnum = {
27461
28801
  alert: "alert",
28802
+ "analytics-online": "analytics-online",
28803
+ "analytics-page-views": "analytics-page-views",
28804
+ "analytics-visitors": "analytics-visitors",
27462
28805
  "firewall-allowed": "firewall-allowed",
27463
28806
  "firewall-denied": "firewall-denied",
28807
+ "observability-alert": "observability-alert",
28808
+ "observability-edge-requests": "observability-edge-requests",
28809
+ "observability-error-rate": "observability-error-rate",
28810
+ "observability-function-invocations": "observability-function-invocations",
27464
28811
  online: "online",
27465
- res: "res"
28812
+ res: "res",
28813
+ "speed-insights-cls": "speed-insights-cls",
28814
+ "speed-insights-lcp": "speed-insights-lcp",
28815
+ "speed-insights-res": "speed-insights-res"
27466
28816
  };
27467
28817
  const configurationEnum = {
27468
28818
  SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
27469
28819
  WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
27470
28820
  };
27471
28821
  const defaultEnum = {
27472
- basic: "basic",
27473
- elastic: "elastic",
27474
- enhanced: "enhanced",
27475
- standard: "standard",
27476
- turbo: "turbo"
28822
+ BILLING: "BILLING",
28823
+ CONTRIBUTOR: "CONTRIBUTOR",
28824
+ DEVELOPER: "DEVELOPER",
28825
+ MEMBER: "MEMBER",
28826
+ OWNER: "OWNER",
28827
+ SECURITY: "SECURITY",
28828
+ VIEWER: "VIEWER",
28829
+ VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
27477
28830
  };
27478
28831
  const viewPreferenceEnum = {
27479
28832
  cards: "cards",
@@ -27671,8 +29024,7 @@ const methodEnum = {
27671
29024
  private_key_jwt: "private_key_jwt"
27672
29025
  };
27673
29026
  const actorTypeEnum = {
27674
- admin: "admin",
27675
- user: "user"
29027
+ admin: "admin"
27676
29028
  };
27677
29029
  const queryTypeEnum = {
27678
29030
  "data-edit": "data-edit",
@@ -27719,6 +29071,7 @@ const oldBuildQueueConfigurationEnum = {
27719
29071
  };
27720
29072
  const gitProviderEnum = {
27721
29073
  bitbucket: "bitbucket",
29074
+ "cursor-origin": "cursor-origin",
27722
29075
  github: "github",
27723
29076
  "github-custom-host": "github-custom-host",
27724
29077
  "github-limited": "github-limited",
@@ -27924,6 +29277,11 @@ const listEventTypeNameEnum = {
27924
29277
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
27925
29278
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
27926
29279
  "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
29280
+ "ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
29281
+ "ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
29282
+ "ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
29283
+ "ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
29284
+ "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
27927
29285
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
27928
29286
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
27929
29287
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -27969,6 +29327,7 @@ const listEventTypeNameEnum = {
27969
29327
  "cert-system-create": "cert-system-create",
27970
29328
  "code-owners-config-updated": "code-owners-config-updated",
27971
29329
  "compliance-document-downloaded": "compliance-document-downloaded",
29330
+ "compliance-document-previewed": "compliance-document-previewed",
27972
29331
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
27973
29332
  "concurrent-builds-update": "concurrent-builds-update",
27974
29333
  "connect-attach-project": "connect-attach-project",
@@ -28107,6 +29466,7 @@ const listEventTypeNameEnum = {
28107
29466
  "flags-segment": "flags-segment",
28108
29467
  "flags-settings": "flags-settings",
28109
29468
  "flags-transferred": "flags-transferred",
29469
+ "git-integration-repo-push": "git-integration-repo-push",
28110
29470
  git_account_integration_link_added: "git_account_integration_link_added",
28111
29471
  "instant-rollback-created": "instant-rollback-created",
28112
29472
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -28127,6 +29487,7 @@ const listEventTypeNameEnum = {
28127
29487
  "kms-issuer-deleted": "kms-issuer-deleted",
28128
29488
  "kms-issuer-key-activated": "kms-issuer-key-activated",
28129
29489
  "kms-issuer-key-created": "kms-issuer-key-created",
29490
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
28130
29491
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
28131
29492
  "kms-issuer-policy-created": "kms-issuer-policy-created",
28132
29493
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -28137,7 +29498,10 @@ const listEventTypeNameEnum = {
28137
29498
  "log-drain-disabled": "log-drain-disabled",
28138
29499
  "log-drain-enabled": "log-drain-enabled",
28139
29500
  login: "login",
29501
+ "login-connection-linked": "login-connection-linked",
29502
+ "login-connection-unlinked": "login-connection-unlinked",
28140
29503
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
29504
+ "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
28141
29505
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
28142
29506
  "microfrontend-group-added": "microfrontend-group-added",
28143
29507
  "microfrontend-group-deleted": "microfrontend-group-deleted",
@@ -28167,6 +29531,8 @@ const listEventTypeNameEnum = {
28167
29531
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
28168
29532
  "organization-create": "organization-create",
28169
29533
  "organization-delete": "organization-delete",
29534
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
29535
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
28170
29536
  "organization-slug-update": "organization-slug-update",
28171
29537
  "organization-team-add": "organization-team-add",
28172
29538
  "organization-team-create": "organization-team-create",
@@ -28315,8 +29681,11 @@ const listEventTypeNameEnum = {
28315
29681
  "protected-git-scope-added": "protected-git-scope-added",
28316
29682
  "protected-git-scope-removed": "protected-git-scope-removed",
28317
29683
  "runtime-cache-purge-all": "runtime-cache-purge-all",
29684
+ "saml-connection-created": "saml-connection-created",
29685
+ "saml-connection-deleted": "saml-connection-deleted",
28318
29686
  "sandbox-alias-assigned": "sandbox-alias-assigned",
28319
29687
  "sandbox-alias-delete": "sandbox-alias-delete",
29688
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
28320
29689
  scale: "scale",
28321
29690
  "scale-auto": "scale-auto",
28322
29691
  "secondary-email-added": "secondary-email-added",
@@ -28346,6 +29715,7 @@ const listEventTypeNameEnum = {
28346
29715
  "spend-created": "spend-created",
28347
29716
  "spend-deleted": "spend-deleted",
28348
29717
  "spend-updated": "spend-updated",
29718
+ "sso-login": "sso-login",
28349
29719
  "storage-accept-tos": "storage-accept-tos",
28350
29720
  "storage-access-token-set": "storage-access-token-set",
28351
29721
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -28372,6 +29742,7 @@ const listEventTypeNameEnum = {
28372
29742
  "subscription-product-added": "subscription-product-added",
28373
29743
  "subscription-product-removed": "subscription-product-removed",
28374
29744
  "subscription-updated": "subscription-updated",
29745
+ "support-session-created": "support-session-created",
28375
29746
  team: "team",
28376
29747
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
28377
29748
  "team-avatar-update": "team-avatar-update",
@@ -28422,23 +29793,36 @@ const listEventTypeNameEnum = {
28422
29793
  "tracing-configured": "tracing-configured",
28423
29794
  "tracing-disabled": "tracing-disabled",
28424
29795
  "unlink-login-connection": "unlink-login-connection",
29796
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
29797
+ "update-account-flow-triggered": "update-account-flow-triggered",
29798
+ "user-auto-block-configured": "user-auto-block-configured",
29799
+ "user-blocked": "user-blocked",
28425
29800
  "user-delete": "user-delete",
29801
+ "user-delete-requested": "user-delete-requested",
28426
29802
  "user-emu-account-archived": "user-emu-account-archived",
28427
29803
  "user-emu-account-deleted": "user-emu-account-deleted",
28428
29804
  "user-emu-account-recovered": "user-emu-account-recovered",
29805
+ "user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
29806
+ "user-emu-recovery-initiated": "user-emu-recovery-initiated",
29807
+ "user-emu-toggled": "user-emu-toggled",
28429
29808
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
28430
29809
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
28431
29810
  "user-mfa-change-failed": "user-mfa-change-failed",
28432
29811
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
29812
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
28433
29813
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
28434
29814
  "user-mfa-removed": "user-mfa-removed",
28435
29815
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
28436
29816
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
28437
29817
  "user-mfa-totp-verified": "user-mfa-totp-verified",
29818
+ "user-phone-removed": "user-phone-removed",
29819
+ "user-phone-updated": "user-phone-updated",
28438
29820
  "user-primary-email-updated": "user-primary-email-updated",
29821
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
28439
29822
  "user-token-created": "user-token-created",
28440
29823
  "user-token-deleted": "user-token-deleted",
28441
29824
  "user-tokens-deleted": "user-tokens-deleted",
29825
+ "user-unblocked": "user-unblocked",
28442
29826
  username: "username",
28443
29827
  "v0-chat-ai-usage": "v0-chat-ai-usage",
28444
29828
  "v0-chat-created": "v0-chat-created",
@@ -28450,6 +29834,7 @@ const listEventTypeNameEnum = {
28450
29834
  "vcr-repository-permission-added": "vcr-repository-permission-added",
28451
29835
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
28452
29836
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
29837
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
28453
29838
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
28454
29839
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
28455
29840
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -28477,6 +29862,7 @@ const listEventTypeCategoriesEnum = {
28477
29862
  ai: "ai",
28478
29863
  "ai-gateway": "ai-gateway",
28479
29864
  billing: "billing",
29865
+ connect: "connect",
28480
29866
  deployment: "deployment",
28481
29867
  domain: "domain",
28482
29868
  edge: "edge",
@@ -28534,6 +29920,11 @@ const listEventTypeReplacedByEnum = {
28534
29920
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
28535
29921
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
28536
29922
  "ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
29923
+ "ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
29924
+ "ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
29925
+ "ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
29926
+ "ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
29927
+ "ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
28537
29928
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
28538
29929
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
28539
29930
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -28579,6 +29970,7 @@ const listEventTypeReplacedByEnum = {
28579
29970
  "cert-system-create": "cert-system-create",
28580
29971
  "code-owners-config-updated": "code-owners-config-updated",
28581
29972
  "compliance-document-downloaded": "compliance-document-downloaded",
29973
+ "compliance-document-previewed": "compliance-document-previewed",
28582
29974
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
28583
29975
  "concurrent-builds-update": "concurrent-builds-update",
28584
29976
  "connect-attach-project": "connect-attach-project",
@@ -28717,6 +30109,7 @@ const listEventTypeReplacedByEnum = {
28717
30109
  "flags-segment": "flags-segment",
28718
30110
  "flags-settings": "flags-settings",
28719
30111
  "flags-transferred": "flags-transferred",
30112
+ "git-integration-repo-push": "git-integration-repo-push",
28720
30113
  git_account_integration_link_added: "git_account_integration_link_added",
28721
30114
  "instant-rollback-created": "instant-rollback-created",
28722
30115
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -28737,6 +30130,7 @@ const listEventTypeReplacedByEnum = {
28737
30130
  "kms-issuer-deleted": "kms-issuer-deleted",
28738
30131
  "kms-issuer-key-activated": "kms-issuer-key-activated",
28739
30132
  "kms-issuer-key-created": "kms-issuer-key-created",
30133
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
28740
30134
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
28741
30135
  "kms-issuer-policy-created": "kms-issuer-policy-created",
28742
30136
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -28747,7 +30141,10 @@ const listEventTypeReplacedByEnum = {
28747
30141
  "log-drain-disabled": "log-drain-disabled",
28748
30142
  "log-drain-enabled": "log-drain-enabled",
28749
30143
  login: "login",
30144
+ "login-connection-linked": "login-connection-linked",
30145
+ "login-connection-unlinked": "login-connection-unlinked",
28750
30146
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
30147
+ "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
28751
30148
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
28752
30149
  "microfrontend-group-added": "microfrontend-group-added",
28753
30150
  "microfrontend-group-deleted": "microfrontend-group-deleted",
@@ -28777,6 +30174,8 @@ const listEventTypeReplacedByEnum = {
28777
30174
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
28778
30175
  "organization-create": "organization-create",
28779
30176
  "organization-delete": "organization-delete",
30177
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
30178
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
28780
30179
  "organization-slug-update": "organization-slug-update",
28781
30180
  "organization-team-add": "organization-team-add",
28782
30181
  "organization-team-create": "organization-team-create",
@@ -28925,8 +30324,11 @@ const listEventTypeReplacedByEnum = {
28925
30324
  "protected-git-scope-added": "protected-git-scope-added",
28926
30325
  "protected-git-scope-removed": "protected-git-scope-removed",
28927
30326
  "runtime-cache-purge-all": "runtime-cache-purge-all",
30327
+ "saml-connection-created": "saml-connection-created",
30328
+ "saml-connection-deleted": "saml-connection-deleted",
28928
30329
  "sandbox-alias-assigned": "sandbox-alias-assigned",
28929
30330
  "sandbox-alias-delete": "sandbox-alias-delete",
30331
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
28930
30332
  scale: "scale",
28931
30333
  "scale-auto": "scale-auto",
28932
30334
  "secondary-email-added": "secondary-email-added",
@@ -28956,6 +30358,7 @@ const listEventTypeReplacedByEnum = {
28956
30358
  "spend-created": "spend-created",
28957
30359
  "spend-deleted": "spend-deleted",
28958
30360
  "spend-updated": "spend-updated",
30361
+ "sso-login": "sso-login",
28959
30362
  "storage-accept-tos": "storage-accept-tos",
28960
30363
  "storage-access-token-set": "storage-access-token-set",
28961
30364
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -28982,6 +30385,7 @@ const listEventTypeReplacedByEnum = {
28982
30385
  "subscription-product-added": "subscription-product-added",
28983
30386
  "subscription-product-removed": "subscription-product-removed",
28984
30387
  "subscription-updated": "subscription-updated",
30388
+ "support-session-created": "support-session-created",
28985
30389
  team: "team",
28986
30390
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
28987
30391
  "team-avatar-update": "team-avatar-update",
@@ -29032,23 +30436,36 @@ const listEventTypeReplacedByEnum = {
29032
30436
  "tracing-configured": "tracing-configured",
29033
30437
  "tracing-disabled": "tracing-disabled",
29034
30438
  "unlink-login-connection": "unlink-login-connection",
30439
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
30440
+ "update-account-flow-triggered": "update-account-flow-triggered",
30441
+ "user-auto-block-configured": "user-auto-block-configured",
30442
+ "user-blocked": "user-blocked",
29035
30443
  "user-delete": "user-delete",
30444
+ "user-delete-requested": "user-delete-requested",
29036
30445
  "user-emu-account-archived": "user-emu-account-archived",
29037
30446
  "user-emu-account-deleted": "user-emu-account-deleted",
29038
30447
  "user-emu-account-recovered": "user-emu-account-recovered",
30448
+ "user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
30449
+ "user-emu-recovery-initiated": "user-emu-recovery-initiated",
30450
+ "user-emu-toggled": "user-emu-toggled",
29039
30451
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
29040
30452
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
29041
30453
  "user-mfa-change-failed": "user-mfa-change-failed",
29042
30454
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
30455
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
29043
30456
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
29044
30457
  "user-mfa-removed": "user-mfa-removed",
29045
30458
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
29046
30459
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
29047
30460
  "user-mfa-totp-verified": "user-mfa-totp-verified",
30461
+ "user-phone-removed": "user-phone-removed",
30462
+ "user-phone-updated": "user-phone-updated",
29048
30463
  "user-primary-email-updated": "user-primary-email-updated",
30464
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
29049
30465
  "user-token-created": "user-token-created",
29050
30466
  "user-token-deleted": "user-token-deleted",
29051
30467
  "user-tokens-deleted": "user-tokens-deleted",
30468
+ "user-unblocked": "user-unblocked",
29052
30469
  username: "username",
29053
30470
  "v0-chat-ai-usage": "v0-chat-ai-usage",
29054
30471
  "v0-chat-created": "v0-chat-created",
@@ -29060,6 +30477,7 @@ const listEventTypeReplacedByEnum = {
29060
30477
  "vcr-repository-permission-added": "vcr-repository-permission-added",
29061
30478
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
29062
30479
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
30480
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
29063
30481
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
29064
30482
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
29065
30483
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -29238,6 +30656,7 @@ const invitedTeamMemberTeamPermissionsEnum = {
29238
30656
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29239
30657
  AiGatewayCredits: "AiGatewayCredits",
29240
30658
  AiGatewaySettings: "AiGatewaySettings",
30659
+ ConnectorManager: "ConnectorManager",
29241
30660
  CreateProject: "CreateProject",
29242
30661
  EnvVariableManager: "EnvVariableManager",
29243
30662
  EnvironmentManager: "EnvironmentManager",
@@ -29263,6 +30682,11 @@ const teamSamlDefaultRedirectUriEnum = {
29263
30682
  "v0.dev": "v0.dev",
29264
30683
  "vercel.com": "vercel.com"
29265
30684
  };
30685
+ const teamBillingPlanEnum = {
30686
+ enterprise: "enterprise",
30687
+ hobby: "hobby",
30688
+ pro: "pro"
30689
+ };
29266
30690
  const teamDefaultRolesTeamRolesEnum = {
29267
30691
  BILLING: "BILLING",
29268
30692
  CONTRIBUTOR: "CONTRIBUTOR",
@@ -29278,6 +30702,7 @@ const teamDefaultRolesTeamPermissionsEnum = {
29278
30702
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29279
30703
  AiGatewayCredits: "AiGatewayCredits",
29280
30704
  AiGatewaySettings: "AiGatewaySettings",
30705
+ ConnectorManager: "ConnectorManager",
29281
30706
  CreateProject: "CreateProject",
29282
30707
  EnvVariableManager: "EnvVariableManager",
29283
30708
  EnvironmentManager: "EnvironmentManager",
@@ -29363,6 +30788,7 @@ const teamMembershipTeamPermissionsEnum = {
29363
30788
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29364
30789
  AiGatewayCredits: "AiGatewayCredits",
29365
30790
  AiGatewaySettings: "AiGatewaySettings",
30791
+ ConnectorManager: "ConnectorManager",
29366
30792
  CreateProject: "CreateProject",
29367
30793
  EnvVariableManager: "EnvVariableManager",
29368
30794
  EnvironmentManager: "EnvironmentManager",
@@ -29434,6 +30860,7 @@ const teamLimitedMembershipTeamPermissionsEnum = {
29434
30860
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29435
30861
  AiGatewayCredits: "AiGatewayCredits",
29436
30862
  AiGatewaySettings: "AiGatewaySettings",
30863
+ ConnectorManager: "ConnectorManager",
29437
30864
  CreateProject: "CreateProject",
29438
30865
  EnvVariableManager: "EnvVariableManager",
29439
30866
  EnvironmentManager: "EnvironmentManager",
@@ -29526,6 +30953,7 @@ const authUserResourceConfigBuildQueueConfigurationEnum = {
29526
30953
  };
29527
30954
  const authUserImportFlowGitProviderEnum = {
29528
30955
  bitbucket: "bitbucket",
30956
+ "cursor-origin": "cursor-origin",
29529
30957
  github: "github",
29530
30958
  "github-custom-host": "github-custom-host",
29531
30959
  "github-limited": "github-limited",
@@ -29644,6 +31072,17 @@ exports.addProjectMemberStatus401Schema = addProjectMemberStatus401Schema;
29644
31072
  exports.addProjectMemberStatus403Schema = addProjectMemberStatus403Schema;
29645
31073
  exports.addProjectMemberStatus410Schema = addProjectMemberStatus410Schema;
29646
31074
  exports.addProjectMemberStatus500Schema = addProjectMemberStatus500Schema;
31075
+ exports.addRepositoryPermissionPathIdOrNameSchema = addRepositoryPermissionPathIdOrNameSchema;
31076
+ exports.addRepositoryPermissionQueryProjectIdSchema = addRepositoryPermissionQueryProjectIdSchema;
31077
+ exports.addRepositoryPermissionQuerySlugSchema = addRepositoryPermissionQuerySlugSchema;
31078
+ exports.addRepositoryPermissionQueryTeamIdSchema = addRepositoryPermissionQueryTeamIdSchema;
31079
+ exports.addRepositoryPermissionResponseSchema = addRepositoryPermissionResponseSchema;
31080
+ exports.addRepositoryPermissionStatus200Schema = addRepositoryPermissionStatus200Schema;
31081
+ exports.addRepositoryPermissionStatus400Schema = addRepositoryPermissionStatus400Schema;
31082
+ exports.addRepositoryPermissionStatus401Schema = addRepositoryPermissionStatus401Schema;
31083
+ exports.addRepositoryPermissionStatus403Schema = addRepositoryPermissionStatus403Schema;
31084
+ exports.addRepositoryPermissionStatus404Schema = addRepositoryPermissionStatus404Schema;
31085
+ exports.addRepositoryPermissionStatus410Schema = addRepositoryPermissionStatus410Schema;
29647
31086
  exports.addRoutePathProjectIdSchema = addRoutePathProjectIdSchema;
29648
31087
  exports.addRouteQuerySlugSchema = addRouteQuerySlugSchema;
29649
31088
  exports.addRouteQueryTeamIdSchema = addRouteQueryTeamIdSchema;
@@ -29796,6 +31235,7 @@ exports.cancelDeploymentStatus401Schema = cancelDeploymentStatus401Schema;
29796
31235
  exports.cancelDeploymentStatus403Schema = cancelDeploymentStatus403Schema;
29797
31236
  exports.cancelDeploymentStatus404Schema = cancelDeploymentStatus404Schema;
29798
31237
  exports.cancelDeploymentStatus410Schema = cancelDeploymentStatus410Schema;
31238
+ exports.ceilingModeEnum = ceilingModeEnum;
29799
31239
  exports.changeEnum = changeEnum;
29800
31240
  exports.claimDomainOwnershipPathDomainSchema = claimDomainOwnershipPathDomainSchema;
29801
31241
  exports.claimDomainOwnershipQuerySlugSchema = claimDomainOwnershipQuerySlugSchema;
@@ -29807,6 +31247,17 @@ exports.claimDomainOwnershipStatus401Schema = claimDomainOwnershipStatus401Schem
29807
31247
  exports.claimDomainOwnershipStatus403Schema = claimDomainOwnershipStatus403Schema;
29808
31248
  exports.claimDomainOwnershipStatus404Schema = claimDomainOwnershipStatus404Schema;
29809
31249
  exports.claimDomainOwnershipStatus410Schema = claimDomainOwnershipStatus410Schema;
31250
+ exports.clearRepositoryPermissionsPathIdOrNameSchema = clearRepositoryPermissionsPathIdOrNameSchema;
31251
+ exports.clearRepositoryPermissionsQueryProjectIdSchema = clearRepositoryPermissionsQueryProjectIdSchema;
31252
+ exports.clearRepositoryPermissionsQuerySlugSchema = clearRepositoryPermissionsQuerySlugSchema;
31253
+ exports.clearRepositoryPermissionsQueryTeamIdSchema = clearRepositoryPermissionsQueryTeamIdSchema;
31254
+ exports.clearRepositoryPermissionsResponseSchema = clearRepositoryPermissionsResponseSchema;
31255
+ exports.clearRepositoryPermissionsStatus204Schema = clearRepositoryPermissionsStatus204Schema;
31256
+ exports.clearRepositoryPermissionsStatus400Schema = clearRepositoryPermissionsStatus400Schema;
31257
+ exports.clearRepositoryPermissionsStatus401Schema = clearRepositoryPermissionsStatus401Schema;
31258
+ exports.clearRepositoryPermissionsStatus403Schema = clearRepositoryPermissionsStatus403Schema;
31259
+ exports.clearRepositoryPermissionsStatus404Schema = clearRepositoryPermissionsStatus404Schema;
31260
+ exports.clearRepositoryPermissionsStatus410Schema = clearRepositoryPermissionsStatus410Schema;
29810
31261
  exports.cmpEnum = cmpEnum;
29811
31262
  exports.commitVerificationEnum = commitVerificationEnum;
29812
31263
  exports.completeRollingReleasePathIdOrNameSchema = completeRollingReleasePathIdOrNameSchema;
@@ -29906,6 +31357,19 @@ exports.createAuthTokenStatus401Schema = createAuthTokenStatus401Schema;
29906
31357
  exports.createAuthTokenStatus403Schema = createAuthTokenStatus403Schema;
29907
31358
  exports.createAuthTokenStatus404Schema = createAuthTokenStatus404Schema;
29908
31359
  exports.createAuthTokenStatus410Schema = createAuthTokenStatus410Schema;
31360
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema;
31361
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema;
31362
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema;
31363
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema;
31364
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema;
31365
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema;
31366
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema;
31367
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema;
31368
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema;
31369
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema;
31370
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema;
31371
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema;
31372
+ exports.createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema = createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema;
29909
31373
  exports.createCheckPathDeploymentIdSchema = createCheckPathDeploymentIdSchema;
29910
31374
  exports.createCheckQuerySlugSchema = createCheckQuerySlugSchema;
29911
31375
  exports.createCheckQueryTeamIdSchema = createCheckQueryTeamIdSchema;
@@ -29950,6 +31414,7 @@ exports.createConnectorStatus404Schema = createConnectorStatus404Schema;
29950
31414
  exports.createConnectorStatus409Schema = createConnectorStatus409Schema;
29951
31415
  exports.createConnectorStatus410Schema = createConnectorStatus410Schema;
29952
31416
  exports.createConnectorStatus422Schema = createConnectorStatus422Schema;
31417
+ exports.createConnectorStatus500Schema = createConnectorStatus500Schema;
29953
31418
  exports.createConnectorStatus502Schema = createConnectorStatus502Schema;
29954
31419
  exports.createCustomEnvironmentPathIdOrNameSchema = createCustomEnvironmentPathIdOrNameSchema;
29955
31420
  exports.createCustomEnvironmentQuerySlugSchema = createCustomEnvironmentQuerySlugSchema;
@@ -30208,20 +31673,34 @@ exports.createSandboxesByNameForkStatus410Schema = createSandboxesByNameForkStat
30208
31673
  exports.createSandboxesByNameForkStatus422Schema = createSandboxesByNameForkStatus422Schema;
30209
31674
  exports.createSandboxesByNameForkStatus429Schema = createSandboxesByNameForkStatus429Schema;
30210
31675
  exports.createSandboxesByNameForkStatus500Schema = createSandboxesByNameForkStatus500Schema;
30211
- exports.createSandboxesQuerySlugSchema = createSandboxesQuerySlugSchema;
30212
- exports.createSandboxesQueryTeamIdSchema = createSandboxesQueryTeamIdSchema;
30213
- exports.createSandboxesResponseSchema = createSandboxesResponseSchema;
30214
- exports.createSandboxesStatus200Schema = createSandboxesStatus200Schema;
30215
- exports.createSandboxesStatus400Schema = createSandboxesStatus400Schema;
30216
- exports.createSandboxesStatus401Schema = createSandboxesStatus401Schema;
30217
- exports.createSandboxesStatus402Schema = createSandboxesStatus402Schema;
30218
- exports.createSandboxesStatus403Schema = createSandboxesStatus403Schema;
30219
- exports.createSandboxesStatus404Schema = createSandboxesStatus404Schema;
30220
- exports.createSandboxesStatus409Schema = createSandboxesStatus409Schema;
30221
- exports.createSandboxesStatus410Schema = createSandboxesStatus410Schema;
30222
- exports.createSandboxesStatus422Schema = createSandboxesStatus422Schema;
30223
- exports.createSandboxesStatus429Schema = createSandboxesStatus429Schema;
30224
- exports.createSandboxesStatus500Schema = createSandboxesStatus500Schema;
31676
+ exports.createSandboxesV2QuerySlugSchema = createSandboxesV2QuerySlugSchema;
31677
+ exports.createSandboxesV2QueryTeamIdSchema = createSandboxesV2QueryTeamIdSchema;
31678
+ exports.createSandboxesV2ResponseSchema = createSandboxesV2ResponseSchema;
31679
+ exports.createSandboxesV2Status200Schema = createSandboxesV2Status200Schema;
31680
+ exports.createSandboxesV2Status400Schema = createSandboxesV2Status400Schema;
31681
+ exports.createSandboxesV2Status401Schema = createSandboxesV2Status401Schema;
31682
+ exports.createSandboxesV2Status402Schema = createSandboxesV2Status402Schema;
31683
+ exports.createSandboxesV2Status403Schema = createSandboxesV2Status403Schema;
31684
+ exports.createSandboxesV2Status404Schema = createSandboxesV2Status404Schema;
31685
+ exports.createSandboxesV2Status409Schema = createSandboxesV2Status409Schema;
31686
+ exports.createSandboxesV2Status410Schema = createSandboxesV2Status410Schema;
31687
+ exports.createSandboxesV2Status422Schema = createSandboxesV2Status422Schema;
31688
+ exports.createSandboxesV2Status429Schema = createSandboxesV2Status429Schema;
31689
+ exports.createSandboxesV2Status500Schema = createSandboxesV2Status500Schema;
31690
+ exports.createSandboxesV3QuerySlugSchema = createSandboxesV3QuerySlugSchema;
31691
+ exports.createSandboxesV3QueryTeamIdSchema = createSandboxesV3QueryTeamIdSchema;
31692
+ exports.createSandboxesV3ResponseSchema = createSandboxesV3ResponseSchema;
31693
+ exports.createSandboxesV3Status200Schema = createSandboxesV3Status200Schema;
31694
+ exports.createSandboxesV3Status400Schema = createSandboxesV3Status400Schema;
31695
+ exports.createSandboxesV3Status401Schema = createSandboxesV3Status401Schema;
31696
+ exports.createSandboxesV3Status402Schema = createSandboxesV3Status402Schema;
31697
+ exports.createSandboxesV3Status403Schema = createSandboxesV3Status403Schema;
31698
+ exports.createSandboxesV3Status404Schema = createSandboxesV3Status404Schema;
31699
+ exports.createSandboxesV3Status409Schema = createSandboxesV3Status409Schema;
31700
+ exports.createSandboxesV3Status410Schema = createSandboxesV3Status410Schema;
31701
+ exports.createSandboxesV3Status422Schema = createSandboxesV3Status422Schema;
31702
+ exports.createSandboxesV3Status429Schema = createSandboxesV3Status429Schema;
31703
+ exports.createSandboxesV3Status500Schema = createSandboxesV3Status500Schema;
30225
31704
  exports.createSdkKeyPathProjectIdOrNameSchema = createSdkKeyPathProjectIdOrNameSchema;
30226
31705
  exports.createSdkKeyQuerySlugSchema = createSdkKeyQuerySlugSchema;
30227
31706
  exports.createSdkKeyQueryTeamIdSchema = createSdkKeyQueryTeamIdSchema;
@@ -30356,6 +31835,7 @@ exports.dangerouslyDeleteByTagsStatus410Schema = dangerouslyDeleteByTagsStatus41
30356
31835
  exports.dateFromStringSchema = dateFromStringSchema;
30357
31836
  exports.decisionEnum = decisionEnum;
30358
31837
  exports.defaultEnum = defaultEnum;
31838
+ exports.defaultModeEnum = defaultModeEnum;
30359
31839
  exports.deleteAccessGroupPathIdOrNameSchema = deleteAccessGroupPathIdOrNameSchema;
30360
31840
  exports.deleteAccessGroupProjectPathAccessGroupIdOrNameSchema = deleteAccessGroupProjectPathAccessGroupIdOrNameSchema;
30361
31841
  exports.deleteAccessGroupProjectPathProjectIdSchema = deleteAccessGroupProjectPathProjectIdSchema;
@@ -30412,6 +31892,42 @@ exports.deleteAuthTokenStatus401Schema = deleteAuthTokenStatus401Schema;
30412
31892
  exports.deleteAuthTokenStatus403Schema = deleteAuthTokenStatus403Schema;
30413
31893
  exports.deleteAuthTokenStatus404Schema = deleteAuthTokenStatus404Schema;
30414
31894
  exports.deleteAuthTokenStatus410Schema = deleteAuthTokenStatus410Schema;
31895
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema;
31896
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema;
31897
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema;
31898
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema;
31899
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema;
31900
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema;
31901
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema;
31902
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema;
31903
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema;
31904
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema;
31905
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema;
31906
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema;
31907
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema;
31908
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema;
31909
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema;
31910
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema;
31911
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema;
31912
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema;
31913
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema;
31914
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema;
31915
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema;
31916
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema;
31917
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema;
31918
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema;
31919
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema;
31920
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema;
31921
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema;
31922
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema;
31923
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema;
31924
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema;
31925
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema;
31926
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema;
31927
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema;
31928
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema;
31929
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
31930
+ exports.deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
30415
31931
  exports.deleteConfigurableLogDrainPathIdSchema = deleteConfigurableLogDrainPathIdSchema;
30416
31932
  exports.deleteConfigurableLogDrainQuerySlugSchema = deleteConfigurableLogDrainQuerySlugSchema;
30417
31933
  exports.deleteConfigurableLogDrainQueryTeamIdSchema = deleteConfigurableLogDrainQueryTeamIdSchema;
@@ -30669,7 +32185,9 @@ exports.deleteRoutesStatus400Schema = deleteRoutesStatus400Schema;
30669
32185
  exports.deleteRoutesStatus401Schema = deleteRoutesStatus401Schema;
30670
32186
  exports.deleteRoutesStatus403Schema = deleteRoutesStatus403Schema;
30671
32187
  exports.deleteRoutesStatus404Schema = deleteRoutesStatus404Schema;
32188
+ exports.deleteRoutesStatus409Schema = deleteRoutesStatus409Schema;
30672
32189
  exports.deleteRoutesStatus410Schema = deleteRoutesStatus410Schema;
32190
+ exports.deleteRoutesStatus500Schema = deleteRoutesStatus500Schema;
30673
32191
  exports.deleteSandboxPathNameSchema = deleteSandboxPathNameSchema;
30674
32192
  exports.deleteSandboxQueryProjectIdSchema = deleteSandboxQueryProjectIdSchema;
30675
32193
  exports.deleteSandboxQuerySlugSchema = deleteSandboxQuerySlugSchema;
@@ -30875,6 +32393,7 @@ exports.extendSessionTimeoutStatus410Schema = extendSessionTimeoutStatus410Schem
30875
32393
  exports.extendSessionTimeoutStatus422Schema = extendSessionTimeoutStatus422Schema;
30876
32394
  exports.extendSessionTimeoutStatus429Schema = extendSessionTimeoutStatus429Schema;
30877
32395
  exports.extendSessionTimeoutStatus500Schema = extendSessionTimeoutStatus500Schema;
32396
+ exports.failureStageEnum = failureStageEnum;
30878
32397
  exports.favoritesViewPreferenceEnum = favoritesViewPreferenceEnum;
30879
32398
  exports.fileTreeSchema = fileTreeSchema;
30880
32399
  exports.fileTreeTypeEnum = fileTreeTypeEnum;
@@ -31031,6 +32550,54 @@ exports.getBulkAvailabilityStatus401Schema = getBulkAvailabilityStatus401Schema;
31031
32550
  exports.getBulkAvailabilityStatus403Schema = getBulkAvailabilityStatus403Schema;
31032
32551
  exports.getBulkAvailabilityStatus429Schema = getBulkAvailabilityStatus429Schema;
31033
32552
  exports.getBulkAvailabilityStatus500Schema = getBulkAvailabilityStatus500Schema;
32553
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema;
32554
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema;
32555
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema;
32556
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema;
32557
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema;
32558
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema;
32559
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema;
32560
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema;
32561
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema;
32562
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema;
32563
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema;
32564
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema;
32565
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema;
32566
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema;
32567
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema;
32568
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema;
32569
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema;
32570
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema;
32571
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema;
32572
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema;
32573
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema;
32574
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema;
32575
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema;
32576
+ exports.getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema;
32577
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema;
32578
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema;
32579
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema;
32580
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema;
32581
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema;
32582
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema;
32583
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema;
32584
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema;
32585
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema;
32586
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
32587
+ exports.getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
32588
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema;
32589
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema;
32590
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema;
32591
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema;
32592
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema;
32593
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema = getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema;
32594
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema;
32595
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema;
32596
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema;
32597
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema;
32598
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema;
32599
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema;
32600
+ exports.getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema = getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema;
31034
32601
  exports.getBypassIpQueryDomainSchema = getBypassIpQueryDomainSchema;
31035
32602
  exports.getBypassIpQueryLimitSchema = getBypassIpQueryLimitSchema;
31036
32603
  exports.getBypassIpQueryOffsetSchema = getBypassIpQueryOffsetSchema;
@@ -31893,6 +33460,14 @@ exports.getRollingReleaseStatus401Schema = getRollingReleaseStatus401Schema;
31893
33460
  exports.getRollingReleaseStatus403Schema = getRollingReleaseStatus403Schema;
31894
33461
  exports.getRollingReleaseStatus404Schema = getRollingReleaseStatus404Schema;
31895
33462
  exports.getRollingReleaseStatus410Schema = getRollingReleaseStatus410Schema;
33463
+ exports.getRootResponseSchema = getRootResponseSchema;
33464
+ exports.getRootStatus200Schema = getRootStatus200Schema;
33465
+ exports.getRootStatus400Schema = getRootStatus400Schema;
33466
+ exports.getRootStatus401Schema = getRootStatus401Schema;
33467
+ exports.getRootStatus402Schema = getRootStatus402Schema;
33468
+ exports.getRootStatus403Schema = getRootStatus403Schema;
33469
+ exports.getRootStatus404Schema = getRootStatus404Schema;
33470
+ exports.getRootStatus410Schema = getRootStatus410Schema;
31896
33471
  exports.getRouteVersionsPathProjectIdSchema = getRouteVersionsPathProjectIdSchema;
31897
33472
  exports.getRouteVersionsQuerySlugSchema = getRouteVersionsQuerySlugSchema;
31898
33473
  exports.getRouteVersionsQueryTeamIdSchema = getRouteVersionsQueryTeamIdSchema;
@@ -32126,6 +33701,7 @@ exports.getWebhooksStatus400Schema = getWebhooksStatus400Schema;
32126
33701
  exports.getWebhooksStatus401Schema = getWebhooksStatus401Schema;
32127
33702
  exports.getWebhooksStatus403Schema = getWebhooksStatus403Schema;
32128
33703
  exports.getWebhooksStatus410Schema = getWebhooksStatus410Schema;
33704
+ exports.gitCredentialSourceEnum = gitCredentialSourceEnum;
32129
33705
  exports.gitNamespacesQueryHostSchema = gitNamespacesQueryHostSchema;
32130
33706
  exports.gitNamespacesQueryProviderSchema = gitNamespacesQueryProviderSchema;
32131
33707
  exports.gitNamespacesQueryViewerMetadataSchema = gitNamespacesQueryViewerMetadataSchema;
@@ -32534,6 +34110,19 @@ exports.listRepositoryImagesStatus401Schema = listRepositoryImagesStatus401Schem
32534
34110
  exports.listRepositoryImagesStatus403Schema = listRepositoryImagesStatus403Schema;
32535
34111
  exports.listRepositoryImagesStatus404Schema = listRepositoryImagesStatus404Schema;
32536
34112
  exports.listRepositoryImagesStatus410Schema = listRepositoryImagesStatus410Schema;
34113
+ exports.listRepositoryPermissionsPathIdOrNameSchema = listRepositoryPermissionsPathIdOrNameSchema;
34114
+ exports.listRepositoryPermissionsQueryCursorSchema = listRepositoryPermissionsQueryCursorSchema;
34115
+ exports.listRepositoryPermissionsQueryLimitSchema = listRepositoryPermissionsQueryLimitSchema;
34116
+ exports.listRepositoryPermissionsQueryProjectIdSchema = listRepositoryPermissionsQueryProjectIdSchema;
34117
+ exports.listRepositoryPermissionsQuerySlugSchema = listRepositoryPermissionsQuerySlugSchema;
34118
+ exports.listRepositoryPermissionsQueryTeamIdSchema = listRepositoryPermissionsQueryTeamIdSchema;
34119
+ exports.listRepositoryPermissionsResponseSchema = listRepositoryPermissionsResponseSchema;
34120
+ exports.listRepositoryPermissionsStatus200Schema = listRepositoryPermissionsStatus200Schema;
34121
+ exports.listRepositoryPermissionsStatus400Schema = listRepositoryPermissionsStatus400Schema;
34122
+ exports.listRepositoryPermissionsStatus401Schema = listRepositoryPermissionsStatus401Schema;
34123
+ exports.listRepositoryPermissionsStatus403Schema = listRepositoryPermissionsStatus403Schema;
34124
+ exports.listRepositoryPermissionsStatus404Schema = listRepositoryPermissionsStatus404Schema;
34125
+ exports.listRepositoryPermissionsStatus410Schema = listRepositoryPermissionsStatus410Schema;
32537
34126
  exports.listRepositoryTagsPathIdOrNameSchema = listRepositoryTagsPathIdOrNameSchema;
32538
34127
  exports.listRepositoryTagsQueryCursorSchema = listRepositoryTagsQueryCursorSchema;
32539
34128
  exports.listRepositoryTagsQueryLimitSchema = listRepositoryTagsQueryLimitSchema;
@@ -32667,6 +34256,7 @@ exports.listTeamFlagsV2Status400Schema = listTeamFlagsV2Status400Schema;
32667
34256
  exports.listTeamFlagsV2Status401Schema = listTeamFlagsV2Status401Schema;
32668
34257
  exports.listTeamFlagsV2Status403Schema = listTeamFlagsV2Status403Schema;
32669
34258
  exports.listTeamFlagsV2Status410Schema = listTeamFlagsV2Status410Schema;
34259
+ exports.listUserEventsQueryEntityIdSchema = listUserEventsQueryEntityIdSchema;
32670
34260
  exports.listUserEventsQueryLimitSchema = listUserEventsQueryLimitSchema;
32671
34261
  exports.listUserEventsQueryPrincipalIdSchema = listUserEventsQueryPrincipalIdSchema;
32672
34262
  exports.listUserEventsQueryProjectIdsSchema = listUserEventsQueryProjectIdsSchema;
@@ -32730,6 +34320,7 @@ exports.orderTooExpensiveCodeEnum = orderTooExpensiveCodeEnum;
32730
34320
  exports.orderTooExpensiveSchema = orderTooExpensiveSchema;
32731
34321
  exports.orderTooExpensiveStatusEnum = orderTooExpensiveStatusEnum;
32732
34322
  exports.originEnum = originEnum;
34323
+ exports.outcomeEnum = outcomeEnum;
32733
34324
  exports.overageReasonEnum = overageReasonEnum;
32734
34325
  exports.paginationSchema = paginationSchema;
32735
34326
  exports.patchDomainPathDomainSchema = patchDomainPathDomainSchema;
@@ -32968,6 +34559,17 @@ exports.removeRecordStatus401Schema = removeRecordStatus401Schema;
32968
34559
  exports.removeRecordStatus403Schema = removeRecordStatus403Schema;
32969
34560
  exports.removeRecordStatus404Schema = removeRecordStatus404Schema;
32970
34561
  exports.removeRecordStatus410Schema = removeRecordStatus410Schema;
34562
+ exports.removeRepositoryPermissionPathIdOrNameSchema = removeRepositoryPermissionPathIdOrNameSchema;
34563
+ exports.removeRepositoryPermissionQueryProjectIdSchema = removeRepositoryPermissionQueryProjectIdSchema;
34564
+ exports.removeRepositoryPermissionQuerySlugSchema = removeRepositoryPermissionQuerySlugSchema;
34565
+ exports.removeRepositoryPermissionQueryTeamIdSchema = removeRepositoryPermissionQueryTeamIdSchema;
34566
+ exports.removeRepositoryPermissionResponseSchema = removeRepositoryPermissionResponseSchema;
34567
+ exports.removeRepositoryPermissionStatus204Schema = removeRepositoryPermissionStatus204Schema;
34568
+ exports.removeRepositoryPermissionStatus400Schema = removeRepositoryPermissionStatus400Schema;
34569
+ exports.removeRepositoryPermissionStatus401Schema = removeRepositoryPermissionStatus401Schema;
34570
+ exports.removeRepositoryPermissionStatus403Schema = removeRepositoryPermissionStatus403Schema;
34571
+ exports.removeRepositoryPermissionStatus404Schema = removeRepositoryPermissionStatus404Schema;
34572
+ exports.removeRepositoryPermissionStatus410Schema = removeRepositoryPermissionStatus410Schema;
32971
34573
  exports.removeTeamMemberPathTeamIdSchema = removeTeamMemberPathTeamIdSchema;
32972
34574
  exports.removeTeamMemberPathUidSchema = removeTeamMemberPathUidSchema;
32973
34575
  exports.removeTeamMemberQueryNewDefaultTeamIdSchema = removeTeamMemberQueryNewDefaultTeamIdSchema;
@@ -32989,6 +34591,33 @@ exports.renewDomainStatus403Schema = renewDomainStatus403Schema;
32989
34591
  exports.renewDomainStatus404Schema = renewDomainStatus404Schema;
32990
34592
  exports.renewDomainStatus429Schema = renewDomainStatus429Schema;
32991
34593
  exports.renewDomainStatus500Schema = renewDomainStatus500Schema;
34594
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema;
34595
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema;
34596
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema;
34597
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema;
34598
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema;
34599
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema;
34600
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema;
34601
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema;
34602
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema;
34603
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema;
34604
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema;
34605
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema;
34606
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema;
34607
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema = replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema;
34608
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema;
34609
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema;
34610
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema;
34611
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema;
34612
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema;
34613
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema;
34614
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema;
34615
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema;
34616
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema;
34617
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema;
34618
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema;
34619
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema;
34620
+ exports.replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema = replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema;
32992
34621
  exports.replaceDomainsByDomainRecordsPathDomainSchema = replaceDomainsByDomainRecordsPathDomainSchema;
32993
34622
  exports.replaceDomainsByDomainRecordsResponseSchema = replaceDomainsByDomainRecordsResponseSchema;
32994
34623
  exports.replaceDomainsByDomainRecordsStatus200Schema = replaceDomainsByDomainRecordsStatus200Schema;
@@ -33130,6 +34759,7 @@ exports.searchRepoStatus404Schema = searchRepoStatus404Schema;
33130
34759
  exports.searchRepoStatus410Schema = searchRepoStatus410Schema;
33131
34760
  exports.searchRepoStatus429Schema = searchRepoStatus429Schema;
33132
34761
  exports.searchRepoStatus500Schema = searchRepoStatus500Schema;
34762
+ exports.searchRepoStatus502Schema = searchRepoStatus502Schema;
33133
34763
  exports.segmentSchema = segmentSchema;
33134
34764
  exports.segmentTypeNameEnum = segmentTypeNameEnum;
33135
34765
  exports.sessionCommandSchema = sessionCommandSchema;
@@ -33224,6 +34854,7 @@ exports.submitPrepaymentBalancesStatus410Schema = submitPrepaymentBalancesStatus
33224
34854
  exports.tagDictionary = tagDictionary;
33225
34855
  exports.tagEnum = tagEnum;
33226
34856
  exports.targetEnum = targetEnum;
34857
+ exports.teamBillingPlanEnum = teamBillingPlanEnum;
33227
34858
  exports.teamDefaultPassportDeploymentTypeEnum = teamDefaultPassportDeploymentTypeEnum;
33228
34859
  exports.teamDefaultRolesTeamPermissionsEnum = teamDefaultRolesTeamPermissionsEnum;
33229
34860
  exports.teamDefaultRolesTeamRolesEnum = teamDefaultRolesTeamRolesEnum;
@@ -33343,6 +34974,19 @@ exports.updateAttackChallengeModeStatus401Schema = updateAttackChallengeModeStat
33343
34974
  exports.updateAttackChallengeModeStatus403Schema = updateAttackChallengeModeStatus403Schema;
33344
34975
  exports.updateAttackChallengeModeStatus404Schema = updateAttackChallengeModeStatus404Schema;
33345
34976
  exports.updateAttackChallengeModeStatus410Schema = updateAttackChallengeModeStatus410Schema;
34977
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema;
34978
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema;
34979
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema;
34980
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema;
34981
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema;
34982
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema;
34983
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema;
34984
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema;
34985
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema;
34986
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema;
34987
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema;
34988
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema;
34989
+ exports.updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema = updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema;
33346
34990
  exports.updateCheckPathCheckIdSchema = updateCheckPathCheckIdSchema;
33347
34991
  exports.updateCheckPathDeploymentIdSchema = updateCheckPathDeploymentIdSchema;
33348
34992
  exports.updateCheckQuerySlugSchema = updateCheckQuerySlugSchema;
@@ -33603,7 +35247,6 @@ exports.updateProjectStatus404Schema = updateProjectStatus404Schema;
33603
35247
  exports.updateProjectStatus409Schema = updateProjectStatus409Schema;
33604
35248
  exports.updateProjectStatus410Schema = updateProjectStatus410Schema;
33605
35249
  exports.updateProjectStatus428Schema = updateProjectStatus428Schema;
33606
- exports.updateProjectStatus500Schema = updateProjectStatus500Schema;
33607
35250
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema;
33608
35251
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema;
33609
35252
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema;
@@ -33706,7 +35349,6 @@ exports.updateSessionNetworkPolicyResponseSchema = updateSessionNetworkPolicyRes
33706
35349
  exports.updateSessionNetworkPolicyStatus200Schema = updateSessionNetworkPolicyStatus200Schema;
33707
35350
  exports.updateSessionNetworkPolicyStatus400Schema = updateSessionNetworkPolicyStatus400Schema;
33708
35351
  exports.updateSessionNetworkPolicyStatus401Schema = updateSessionNetworkPolicyStatus401Schema;
33709
- exports.updateSessionNetworkPolicyStatus402Schema = updateSessionNetworkPolicyStatus402Schema;
33710
35352
  exports.updateSessionNetworkPolicyStatus403Schema = updateSessionNetworkPolicyStatus403Schema;
33711
35353
  exports.updateSessionNetworkPolicyStatus404Schema = updateSessionNetworkPolicyStatus404Schema;
33712
35354
  exports.updateSessionNetworkPolicyStatus410Schema = updateSessionNetworkPolicyStatus410Schema;
@@ -33820,6 +35462,8 @@ exports.vcrImageListItemSchema = vcrImageListItemSchema;
33820
35462
  exports.vcrImageListItemStatusEnum = vcrImageListItemStatusEnum;
33821
35463
  exports.vcrImageListSchema = vcrImageListSchema;
33822
35464
  exports.vcrRepositoryListSchema = vcrRepositoryListSchema;
35465
+ exports.vcrRepositoryPermissionListSchema = vcrRepositoryPermissionListSchema;
35466
+ exports.vcrRepositoryPermissionSchema = vcrRepositoryPermissionSchema;
33823
35467
  exports.vcrRepositorySchema = vcrRepositorySchema;
33824
35468
  exports.vcrTagKindEnum = vcrTagKindEnum;
33825
35469
  exports.vcrTagSchema = vcrTagSchema;