vercel-api-js 1.8.3 → 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,6 +9835,8 @@ 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",
9339
9841
  "marketplace-flex-commit-opt-in",
9340
9842
  "marketplace-integration-allowlist-updated",
@@ -9366,6 +9868,8 @@ const userEventSchema = z__namespace.object({
9366
9868
  "oidc-policy-used-to-obtain-app-token",
9367
9869
  "organization-create",
9368
9870
  "organization-delete",
9871
+ "organization-dsync-group-delete",
9872
+ "organization-dsync-group-upsert",
9369
9873
  "organization-slug-update",
9370
9874
  "organization-team-add",
9371
9875
  "organization-team-create",
@@ -9514,8 +10018,11 @@ const userEventSchema = z__namespace.object({
9514
10018
  "protected-git-scope-added",
9515
10019
  "protected-git-scope-removed",
9516
10020
  "runtime-cache-purge-all",
10021
+ "saml-connection-created",
10022
+ "saml-connection-deleted",
9517
10023
  "sandbox-alias-assigned",
9518
10024
  "sandbox-alias-delete",
10025
+ "sandbox-snapshot-regions-updated",
9519
10026
  "scale",
9520
10027
  "scale-auto",
9521
10028
  "secondary-email-added",
@@ -9545,6 +10052,7 @@ const userEventSchema = z__namespace.object({
9545
10052
  "spend-created",
9546
10053
  "spend-deleted",
9547
10054
  "spend-updated",
10055
+ "sso-login",
9548
10056
  "storage-accept-tos",
9549
10057
  "storage-access-token-set",
9550
10058
  "storage-accessed-data-browser",
@@ -9571,6 +10079,7 @@ const userEventSchema = z__namespace.object({
9571
10079
  "subscription-product-added",
9572
10080
  "subscription-product-removed",
9573
10081
  "subscription-updated",
10082
+ "support-session-created",
9574
10083
  "team",
9575
10084
  "team-agent-billing-migration-decision-changed",
9576
10085
  "team-avatar-update",
@@ -9621,24 +10130,36 @@ const userEventSchema = z__namespace.object({
9621
10130
  "tracing-configured",
9622
10131
  "tracing-disabled",
9623
10132
  "unlink-login-connection",
10133
+ "update-account-flow-dismissed",
9624
10134
  "update-account-flow-triggered",
10135
+ "user-auto-block-configured",
10136
+ "user-blocked",
9625
10137
  "user-delete",
10138
+ "user-delete-requested",
9626
10139
  "user-emu-account-archived",
9627
10140
  "user-emu-account-deleted",
9628
10141
  "user-emu-account-recovered",
10142
+ "user-emu-recovery-email-sent",
10143
+ "user-emu-recovery-initiated",
10144
+ "user-emu-toggled",
9629
10145
  "user-mfa-challenge-failed",
9630
10146
  "user-mfa-challenge-verified",
9631
10147
  "user-mfa-change-failed",
9632
10148
  "user-mfa-configuration-updated",
10149
+ "user-mfa-recovery-code-used",
9633
10150
  "user-mfa-recovery-codes-regenerated",
9634
10151
  "user-mfa-removed",
9635
10152
  "user-mfa-setup-skipped",
9636
10153
  "user-mfa-totp-verification-started",
9637
10154
  "user-mfa-totp-verified",
10155
+ "user-phone-removed",
10156
+ "user-phone-updated",
9638
10157
  "user-primary-email-updated",
10158
+ "user-sudo-mode-removed",
9639
10159
  "user-token-created",
9640
10160
  "user-token-deleted",
9641
10161
  "user-tokens-deleted",
10162
+ "user-unblocked",
9642
10163
  "username",
9643
10164
  "v0-chat-ai-usage",
9644
10165
  "v0-chat-created",
@@ -9650,6 +10171,7 @@ const userEventSchema = z__namespace.object({
9650
10171
  "vcr-repository-permission-added",
9651
10172
  "vcr-repository-permission-removed",
9652
10173
  "vcr-repository-permissions-cleared",
10174
+ "vcr-repository-visibility-changed",
9653
10175
  "vercel-agent-elevated-permissions-approved",
9654
10176
  "vercel-agent-elevated-permissions-requested",
9655
10177
  "vercel-agent-session-created",
@@ -9677,6 +10199,7 @@ const userEventSchema = z__namespace.object({
9677
10199
  "ai",
9678
10200
  "ai-gateway",
9679
10201
  "billing",
10202
+ "connect",
9680
10203
  "deployment",
9681
10204
  "domain",
9682
10205
  "edge",
@@ -9890,7 +10413,11 @@ const userEventSchema = z__namespace.object({
9890
10413
  "none",
9891
10414
  "weekly"
9892
10415
  ])
9893
- }).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.")
9894
10421
  }).strict(),
9895
10422
  z__namespace.object({
9896
10423
  apiKey: z__namespace.object({
@@ -10013,6 +10540,20 @@ const userEventSchema = z__namespace.object({
10013
10540
  policiesRemoved: z__namespace.array(z__namespace.string()),
10014
10541
  policiesModified: z__namespace.array(z__namespace.string())
10015
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(),
10016
10557
  z__namespace.object({
10017
10558
  rule: z__namespace.object({
10018
10559
  id: z__namespace.string(),
@@ -10043,7 +10584,7 @@ const userEventSchema = z__namespace.object({
10043
10584
  virtualModelConfig: z__namespace.object({
10044
10585
  id: z__namespace.string(),
10045
10586
  displayName: z__namespace.string().optional(),
10046
- modelSlug: z__namespace.string()
10587
+ modelSlug: z__namespace.string().optional()
10047
10588
  })
10048
10589
  }).strict(),
10049
10590
  z__namespace.object({
@@ -10235,6 +10776,7 @@ const userEventSchema = z__namespace.object({
10235
10776
  "read-write:ai-gateway-guardrails",
10236
10777
  "read-write:ai-gateway-private-models",
10237
10778
  "read-write:ai-gateway-rules",
10779
+ "read-write:ai-gateway-virtual-model-configs",
10238
10780
  "read-write:alerts",
10239
10781
  "read-write:billing",
10240
10782
  "read-write:blob",
@@ -10258,10 +10800,12 @@ const userEventSchema = z__namespace.object({
10258
10800
  "read-write:remote-cache",
10259
10801
  "read-write:sandbox",
10260
10802
  "read-write:team-members",
10803
+ "read-write:vcr",
10261
10804
  "read:access-group",
10262
10805
  "read:ai-gateway-guardrails",
10263
10806
  "read:ai-gateway-private-models",
10264
10807
  "read:ai-gateway-rules",
10808
+ "read:ai-gateway-virtual-model-configs",
10265
10809
  "read:alerts",
10266
10810
  "read:billing",
10267
10811
  "read:deployment",
@@ -10281,6 +10825,7 @@ const userEventSchema = z__namespace.object({
10281
10825
  "read:speed-insights",
10282
10826
  "read:team",
10283
10827
  "read:user",
10828
+ "read:vcr",
10284
10829
  "read:web-analytics",
10285
10830
  "use:ai-gateway"
10286
10831
  ])).optional()
@@ -10305,6 +10850,7 @@ const userEventSchema = z__namespace.object({
10305
10850
  "read-write:ai-gateway-guardrails",
10306
10851
  "read-write:ai-gateway-private-models",
10307
10852
  "read-write:ai-gateway-rules",
10853
+ "read-write:ai-gateway-virtual-model-configs",
10308
10854
  "read-write:alerts",
10309
10855
  "read-write:billing",
10310
10856
  "read-write:blob",
@@ -10328,10 +10874,12 @@ const userEventSchema = z__namespace.object({
10328
10874
  "read-write:remote-cache",
10329
10875
  "read-write:sandbox",
10330
10876
  "read-write:team-members",
10877
+ "read-write:vcr",
10331
10878
  "read:access-group",
10332
10879
  "read:ai-gateway-guardrails",
10333
10880
  "read:ai-gateway-private-models",
10334
10881
  "read:ai-gateway-rules",
10882
+ "read:ai-gateway-virtual-model-configs",
10335
10883
  "read:alerts",
10336
10884
  "read:billing",
10337
10885
  "read:deployment",
@@ -10351,6 +10899,7 @@ const userEventSchema = z__namespace.object({
10351
10899
  "read:speed-insights",
10352
10900
  "read:team",
10353
10901
  "read:user",
10902
+ "read:vcr",
10354
10903
  "read:web-analytics",
10355
10904
  "use:ai-gateway"
10356
10905
  ])).optional()
@@ -10380,6 +10929,7 @@ const userEventSchema = z__namespace.object({
10380
10929
  "read-write:ai-gateway-guardrails",
10381
10930
  "read-write:ai-gateway-private-models",
10382
10931
  "read-write:ai-gateway-rules",
10932
+ "read-write:ai-gateway-virtual-model-configs",
10383
10933
  "read-write:alerts",
10384
10934
  "read-write:billing",
10385
10935
  "read-write:blob",
@@ -10403,10 +10953,12 @@ const userEventSchema = z__namespace.object({
10403
10953
  "read-write:remote-cache",
10404
10954
  "read-write:sandbox",
10405
10955
  "read-write:team-members",
10956
+ "read-write:vcr",
10406
10957
  "read:access-group",
10407
10958
  "read:ai-gateway-guardrails",
10408
10959
  "read:ai-gateway-private-models",
10409
10960
  "read:ai-gateway-rules",
10961
+ "read:ai-gateway-virtual-model-configs",
10410
10962
  "read:alerts",
10411
10963
  "read:billing",
10412
10964
  "read:deployment",
@@ -10425,6 +10977,7 @@ const userEventSchema = z__namespace.object({
10425
10977
  "read:sandbox",
10426
10978
  "read:speed-insights",
10427
10979
  "read:team",
10980
+ "read:vcr",
10428
10981
  "read:web-analytics",
10429
10982
  "use:ai-gateway"
10430
10983
  ])).optional()
@@ -10450,6 +11003,7 @@ const userEventSchema = z__namespace.object({
10450
11003
  "read-write:ai-gateway-guardrails",
10451
11004
  "read-write:ai-gateway-private-models",
10452
11005
  "read-write:ai-gateway-rules",
11006
+ "read-write:ai-gateway-virtual-model-configs",
10453
11007
  "read-write:alerts",
10454
11008
  "read-write:billing",
10455
11009
  "read-write:blob",
@@ -10473,10 +11027,12 @@ const userEventSchema = z__namespace.object({
10473
11027
  "read-write:remote-cache",
10474
11028
  "read-write:sandbox",
10475
11029
  "read-write:team-members",
11030
+ "read-write:vcr",
10476
11031
  "read:access-group",
10477
11032
  "read:ai-gateway-guardrails",
10478
11033
  "read:ai-gateway-private-models",
10479
11034
  "read:ai-gateway-rules",
11035
+ "read:ai-gateway-virtual-model-configs",
10480
11036
  "read:alerts",
10481
11037
  "read:billing",
10482
11038
  "read:deployment",
@@ -10495,6 +11051,7 @@ const userEventSchema = z__namespace.object({
10495
11051
  "read:sandbox",
10496
11052
  "read:speed-insights",
10497
11053
  "read:team",
11054
+ "read:vcr",
10498
11055
  "read:web-analytics",
10499
11056
  "use:ai-gateway"
10500
11057
  ])).optional()
@@ -10523,6 +11080,7 @@ const userEventSchema = z__namespace.object({
10523
11080
  "read-write:ai-gateway-guardrails",
10524
11081
  "read-write:ai-gateway-private-models",
10525
11082
  "read-write:ai-gateway-rules",
11083
+ "read-write:ai-gateway-virtual-model-configs",
10526
11084
  "read-write:alerts",
10527
11085
  "read-write:billing",
10528
11086
  "read-write:blob",
@@ -10546,10 +11104,12 @@ const userEventSchema = z__namespace.object({
10546
11104
  "read-write:remote-cache",
10547
11105
  "read-write:sandbox",
10548
11106
  "read-write:team-members",
11107
+ "read-write:vcr",
10549
11108
  "read:access-group",
10550
11109
  "read:ai-gateway-guardrails",
10551
11110
  "read:ai-gateway-private-models",
10552
11111
  "read:ai-gateway-rules",
11112
+ "read:ai-gateway-virtual-model-configs",
10553
11113
  "read:alerts",
10554
11114
  "read:billing",
10555
11115
  "read:deployment",
@@ -10568,6 +11128,7 @@ const userEventSchema = z__namespace.object({
10568
11128
  "read:sandbox",
10569
11129
  "read:speed-insights",
10570
11130
  "read:team",
11131
+ "read:vcr",
10571
11132
  "read:web-analytics",
10572
11133
  "use:ai-gateway"
10573
11134
  ])).optional()
@@ -10960,6 +11521,9 @@ const userEventSchema = z__namespace.object({
10960
11521
  z__namespace.literal(false),
10961
11522
  z__namespace.literal(true)
10962
11523
  ]).optional(),
11524
+ gitCredentialSource: z__namespace.enum([
11525
+ "external-token"
11526
+ ]).optional(),
10963
11527
  deploymentId: z__namespace.string().optional(),
10964
11528
  plan: z__namespace.string().optional(),
10965
11529
  project: z__namespace.string().optional(),
@@ -11596,6 +12160,100 @@ const userEventSchema = z__namespace.object({
11596
12160
  ]),
11597
12161
  customEnvId: z__namespace.string().nullish(),
11598
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()
11599
12257
  }).strict()
11600
12258
  ])
11601
12259
  }).strict(),
@@ -12174,6 +12832,36 @@ const userEventSchema = z__namespace.object({
12174
12832
  "enable"
12175
12833
  ])
12176
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(),
12177
12865
  z__namespace.object({
12178
12866
  projectId: z__namespace.string(),
12179
12867
  fromDeploymentId: z__namespace.string(),
@@ -12302,6 +12990,7 @@ const userEventSchema = z__namespace.object({
12302
12990
  ]).nullish(),
12303
12991
  importFlowGitProvider: z__namespace.enum([
12304
12992
  "bitbucket",
12993
+ "cursor-origin",
12305
12994
  "github",
12306
12995
  "github-custom-host",
12307
12996
  "github-limited",
@@ -12339,11 +13028,18 @@ const userEventSchema = z__namespace.object({
12339
13028
  projectCardWidgetPreferences: z__namespace.array(z__namespace.object({
12340
13029
  projectId: z__namespace.string(),
12341
13030
  widget: z__namespace.enum([
12342
- "alert",
13031
+ "analytics-online",
13032
+ "analytics-page-views",
13033
+ "analytics-visitors",
12343
13034
  "firewall-allowed",
12344
13035
  "firewall-denied",
12345
- "online",
12346
- "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"
12347
13043
  ])
12348
13044
  })).optional(),
12349
13045
  remoteCaching: z__namespace.object({
@@ -12612,6 +13308,7 @@ const userEventSchema = z__namespace.object({
12612
13308
  "AiGatewayBudgetManager",
12613
13309
  "AiGatewayCredits",
12614
13310
  "AiGatewaySettings",
13311
+ "ConnectorManager",
12615
13312
  "CreateProject",
12616
13313
  "EnvVariableManager",
12617
13314
  "EnvironmentManager",
@@ -13437,6 +14134,33 @@ const userEventSchema = z__namespace.object({
13437
14134
  logDrainUrl: z__namespace.string(),
13438
14135
  integrationName: z__namespace.string().optional()
13439
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(),
13440
14164
  z__namespace.object({
13441
14165
  userAgent: z__namespace.string().optional(),
13442
14166
  geolocation: z__namespace.object({
@@ -13718,6 +14442,39 @@ const userEventSchema = z__namespace.object({
13718
14442
  slug: z__namespace.string(),
13719
14443
  name: z__namespace.string()
13720
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(),
13721
14478
  z__namespace.object({
13722
14479
  organizationId: z__namespace.string(),
13723
14480
  slug: z__namespace.string()
@@ -14228,10 +14985,20 @@ const userEventSchema = z__namespace.object({
14228
14985
  projectName: z__namespace.string(),
14229
14986
  widget: z__namespace.enum([
14230
14987
  "alert",
14988
+ "analytics-online",
14989
+ "analytics-page-views",
14990
+ "analytics-visitors",
14231
14991
  "firewall-allowed",
14232
14992
  "firewall-denied",
14993
+ "observability-alert",
14994
+ "observability-edge-requests",
14995
+ "observability-error-rate",
14996
+ "observability-function-invocations",
14233
14997
  "online",
14234
- "res"
14998
+ "res",
14999
+ "speed-insights-cls",
15000
+ "speed-insights-lcp",
15001
+ "speed-insights-res"
14235
15002
  ]).nullable()
14236
15003
  }).strict(),
14237
15004
  z__namespace.object({
@@ -14451,6 +15218,7 @@ const userEventSchema = z__namespace.object({
14451
15218
  previous: z__namespace.object({
14452
15219
  gitProvider: z__namespace.enum([
14453
15220
  "bitbucket",
15221
+ "cursor-origin",
14454
15222
  "github",
14455
15223
  "github-custom-host",
14456
15224
  "github-limited",
@@ -14463,6 +15231,7 @@ const userEventSchema = z__namespace.object({
14463
15231
  next: z__namespace.object({
14464
15232
  gitProvider: z__namespace.enum([
14465
15233
  "bitbucket",
15234
+ "cursor-origin",
14466
15235
  "github",
14467
15236
  "github-custom-host",
14468
15237
  "github-limited",
@@ -14478,6 +15247,7 @@ const userEventSchema = z__namespace.object({
14478
15247
  projectName: z__namespace.string(),
14479
15248
  gitProvider: z__namespace.enum([
14480
15249
  "bitbucket",
15250
+ "cursor-origin",
14481
15251
  "github",
14482
15252
  "github-custom-host",
14483
15253
  "github-limited",
@@ -15120,12 +15890,22 @@ const userEventSchema = z__namespace.object({
15120
15890
  gitProviderGroupDescriptor: z__namespace.string(),
15121
15891
  gitScope: z__namespace.string()
15122
15892
  }).strict(),
15893
+ z__namespace.object({
15894
+ connectionId: z__namespace.string(),
15895
+ connectionType: z__namespace.string()
15896
+ }).strict(),
15123
15897
  z__namespace.object({
15124
15898
  alias: z__namespace.string(),
15125
15899
  sandboxName: z__namespace.string(),
15126
15900
  sandboxId: z__namespace.string().optional(),
15127
15901
  projectId: z__namespace.string().optional()
15128
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(),
15129
15909
  z__namespace.object({
15130
15910
  instances: z__namespace.number(),
15131
15911
  url: z__namespace.string()
@@ -15490,6 +16270,16 @@ const userEventSchema = z__namespace.object({
15490
16270
  z__namespace.literal(true)
15491
16271
  ])
15492
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(),
15493
16283
  z__namespace.object({
15494
16284
  slug: z__namespace.string()
15495
16285
  }).strict(),
@@ -15970,19 +16760,6 @@ const userEventSchema = z__namespace.object({
15970
16760
  requestPath: z__namespace.string().optional()
15971
16761
  })).optional()
15972
16762
  }).strict(),
15973
- z__namespace.object({
15974
- provider: z__namespace.enum([
15975
- "apple",
15976
- "bitbucket",
15977
- "chatgpt",
15978
- "github",
15979
- "github-custom-host",
15980
- "github-limited",
15981
- "gitlab",
15982
- "google"
15983
- ]),
15984
- login: z__namespace.string()
15985
- }).strict(),
15986
16763
  z__namespace.object({
15987
16764
  teamName: z__namespace.string().optional()
15988
16765
  }).strict(),
@@ -16006,6 +16783,41 @@ const userEventSchema = z__namespace.object({
16006
16783
  z__namespace.object({
16007
16784
  username: z__namespace.string()
16008
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(),
16009
16821
  z__namespace.object({
16010
16822
  method: z__namespace.enum([
16011
16823
  "email-otp",
@@ -16049,6 +16861,9 @@ const userEventSchema = z__namespace.object({
16049
16861
  ])
16050
16862
  })
16051
16863
  }).strict(),
16864
+ z__namespace.object({
16865
+ remaining: z__namespace.number()
16866
+ }).strict(),
16052
16867
  z__namespace.object({
16053
16868
  mfaEnabled: z__namespace.union([
16054
16869
  z__namespace.literal(false),
@@ -16112,6 +16927,15 @@ const userEventSchema = z__namespace.object({
16112
16927
  repositoryName: z__namespace.string(),
16113
16928
  sharedWithTeamId: z__namespace.string()
16114
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(),
16115
16939
  z__namespace.object({
16116
16940
  projectId: z__namespace.string(),
16117
16941
  projectName: z__namespace.string(),
@@ -16575,6 +17399,11 @@ const listEventTypeSchema = z__namespace.object({
16575
17399
  "ai-gateway-rule-deleted",
16576
17400
  "ai-gateway-rule-updated",
16577
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",
16578
17407
  "ai-gateway-virtual-model-config-archived",
16579
17408
  "ai-gateway-virtual-model-config-created",
16580
17409
  "ai-gateway-virtual-model-config-restored",
@@ -16620,6 +17449,7 @@ const listEventTypeSchema = z__namespace.object({
16620
17449
  "cert-system-create",
16621
17450
  "code-owners-config-updated",
16622
17451
  "compliance-document-downloaded",
17452
+ "compliance-document-previewed",
16623
17453
  "compliance-documents-bulk-downloaded",
16624
17454
  "concurrent-builds-update",
16625
17455
  "connect-attach-project",
@@ -16758,6 +17588,7 @@ const listEventTypeSchema = z__namespace.object({
16758
17588
  "flags-segment",
16759
17589
  "flags-settings",
16760
17590
  "flags-transferred",
17591
+ "git-integration-repo-push",
16761
17592
  "git_account_integration_link_added",
16762
17593
  "instant-rollback-created",
16763
17594
  "integration-configuration-owner-changed",
@@ -16778,6 +17609,7 @@ const listEventTypeSchema = z__namespace.object({
16778
17609
  "kms-issuer-deleted",
16779
17610
  "kms-issuer-key-activated",
16780
17611
  "kms-issuer-key-created",
17612
+ "kms-issuer-key-revoked",
16781
17613
  "kms-issuer-key-rotated",
16782
17614
  "kms-issuer-policy-created",
16783
17615
  "kms-issuer-policy-deleted",
@@ -16788,6 +17620,8 @@ const listEventTypeSchema = z__namespace.object({
16788
17620
  "log-drain-disabled",
16789
17621
  "log-drain-enabled",
16790
17622
  "login",
17623
+ "login-connection-linked",
17624
+ "login-connection-unlinked",
16791
17625
  "manual-deployment-promotion-created",
16792
17626
  "marketplace-flex-commit-opt-in",
16793
17627
  "marketplace-integration-allowlist-updated",
@@ -16819,6 +17653,8 @@ const listEventTypeSchema = z__namespace.object({
16819
17653
  "oidc-policy-used-to-obtain-app-token",
16820
17654
  "organization-create",
16821
17655
  "organization-delete",
17656
+ "organization-dsync-group-delete",
17657
+ "organization-dsync-group-upsert",
16822
17658
  "organization-slug-update",
16823
17659
  "organization-team-add",
16824
17660
  "organization-team-create",
@@ -16967,8 +17803,11 @@ const listEventTypeSchema = z__namespace.object({
16967
17803
  "protected-git-scope-added",
16968
17804
  "protected-git-scope-removed",
16969
17805
  "runtime-cache-purge-all",
17806
+ "saml-connection-created",
17807
+ "saml-connection-deleted",
16970
17808
  "sandbox-alias-assigned",
16971
17809
  "sandbox-alias-delete",
17810
+ "sandbox-snapshot-regions-updated",
16972
17811
  "scale",
16973
17812
  "scale-auto",
16974
17813
  "secondary-email-added",
@@ -16998,6 +17837,7 @@ const listEventTypeSchema = z__namespace.object({
16998
17837
  "spend-created",
16999
17838
  "spend-deleted",
17000
17839
  "spend-updated",
17840
+ "sso-login",
17001
17841
  "storage-accept-tos",
17002
17842
  "storage-access-token-set",
17003
17843
  "storage-accessed-data-browser",
@@ -17024,6 +17864,7 @@ const listEventTypeSchema = z__namespace.object({
17024
17864
  "subscription-product-added",
17025
17865
  "subscription-product-removed",
17026
17866
  "subscription-updated",
17867
+ "support-session-created",
17027
17868
  "team",
17028
17869
  "team-agent-billing-migration-decision-changed",
17029
17870
  "team-avatar-update",
@@ -17074,24 +17915,36 @@ const listEventTypeSchema = z__namespace.object({
17074
17915
  "tracing-configured",
17075
17916
  "tracing-disabled",
17076
17917
  "unlink-login-connection",
17918
+ "update-account-flow-dismissed",
17077
17919
  "update-account-flow-triggered",
17920
+ "user-auto-block-configured",
17921
+ "user-blocked",
17078
17922
  "user-delete",
17923
+ "user-delete-requested",
17079
17924
  "user-emu-account-archived",
17080
17925
  "user-emu-account-deleted",
17081
17926
  "user-emu-account-recovered",
17927
+ "user-emu-recovery-email-sent",
17928
+ "user-emu-recovery-initiated",
17929
+ "user-emu-toggled",
17082
17930
  "user-mfa-challenge-failed",
17083
17931
  "user-mfa-challenge-verified",
17084
17932
  "user-mfa-change-failed",
17085
17933
  "user-mfa-configuration-updated",
17934
+ "user-mfa-recovery-code-used",
17086
17935
  "user-mfa-recovery-codes-regenerated",
17087
17936
  "user-mfa-removed",
17088
17937
  "user-mfa-setup-skipped",
17089
17938
  "user-mfa-totp-verification-started",
17090
17939
  "user-mfa-totp-verified",
17940
+ "user-phone-removed",
17941
+ "user-phone-updated",
17091
17942
  "user-primary-email-updated",
17943
+ "user-sudo-mode-removed",
17092
17944
  "user-token-created",
17093
17945
  "user-token-deleted",
17094
17946
  "user-tokens-deleted",
17947
+ "user-unblocked",
17095
17948
  "username",
17096
17949
  "v0-chat-ai-usage",
17097
17950
  "v0-chat-created",
@@ -17103,6 +17956,7 @@ const listEventTypeSchema = z__namespace.object({
17103
17956
  "vcr-repository-permission-added",
17104
17957
  "vcr-repository-permission-removed",
17105
17958
  "vcr-repository-permissions-cleared",
17959
+ "vcr-repository-visibility-changed",
17106
17960
  "vercel-agent-elevated-permissions-approved",
17107
17961
  "vercel-agent-elevated-permissions-requested",
17108
17962
  "vercel-agent-session-created",
@@ -17131,6 +17985,7 @@ const listEventTypeSchema = z__namespace.object({
17131
17985
  "ai",
17132
17986
  "ai-gateway",
17133
17987
  "billing",
17988
+ "connect",
17134
17989
  "deployment",
17135
17990
  "domain",
17136
17991
  "edge",
@@ -17192,6 +18047,11 @@ const listEventTypeSchema = z__namespace.object({
17192
18047
  "ai-gateway-rule-deleted",
17193
18048
  "ai-gateway-rule-updated",
17194
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",
17195
18055
  "ai-gateway-virtual-model-config-archived",
17196
18056
  "ai-gateway-virtual-model-config-created",
17197
18057
  "ai-gateway-virtual-model-config-restored",
@@ -17237,6 +18097,7 @@ const listEventTypeSchema = z__namespace.object({
17237
18097
  "cert-system-create",
17238
18098
  "code-owners-config-updated",
17239
18099
  "compliance-document-downloaded",
18100
+ "compliance-document-previewed",
17240
18101
  "compliance-documents-bulk-downloaded",
17241
18102
  "concurrent-builds-update",
17242
18103
  "connect-attach-project",
@@ -17375,6 +18236,7 @@ const listEventTypeSchema = z__namespace.object({
17375
18236
  "flags-segment",
17376
18237
  "flags-settings",
17377
18238
  "flags-transferred",
18239
+ "git-integration-repo-push",
17378
18240
  "git_account_integration_link_added",
17379
18241
  "instant-rollback-created",
17380
18242
  "integration-configuration-owner-changed",
@@ -17395,6 +18257,7 @@ const listEventTypeSchema = z__namespace.object({
17395
18257
  "kms-issuer-deleted",
17396
18258
  "kms-issuer-key-activated",
17397
18259
  "kms-issuer-key-created",
18260
+ "kms-issuer-key-revoked",
17398
18261
  "kms-issuer-key-rotated",
17399
18262
  "kms-issuer-policy-created",
17400
18263
  "kms-issuer-policy-deleted",
@@ -17405,6 +18268,8 @@ const listEventTypeSchema = z__namespace.object({
17405
18268
  "log-drain-disabled",
17406
18269
  "log-drain-enabled",
17407
18270
  "login",
18271
+ "login-connection-linked",
18272
+ "login-connection-unlinked",
17408
18273
  "manual-deployment-promotion-created",
17409
18274
  "marketplace-flex-commit-opt-in",
17410
18275
  "marketplace-integration-allowlist-updated",
@@ -17436,6 +18301,8 @@ const listEventTypeSchema = z__namespace.object({
17436
18301
  "oidc-policy-used-to-obtain-app-token",
17437
18302
  "organization-create",
17438
18303
  "organization-delete",
18304
+ "organization-dsync-group-delete",
18305
+ "organization-dsync-group-upsert",
17439
18306
  "organization-slug-update",
17440
18307
  "organization-team-add",
17441
18308
  "organization-team-create",
@@ -17584,8 +18451,11 @@ const listEventTypeSchema = z__namespace.object({
17584
18451
  "protected-git-scope-added",
17585
18452
  "protected-git-scope-removed",
17586
18453
  "runtime-cache-purge-all",
18454
+ "saml-connection-created",
18455
+ "saml-connection-deleted",
17587
18456
  "sandbox-alias-assigned",
17588
18457
  "sandbox-alias-delete",
18458
+ "sandbox-snapshot-regions-updated",
17589
18459
  "scale",
17590
18460
  "scale-auto",
17591
18461
  "secondary-email-added",
@@ -17615,6 +18485,7 @@ const listEventTypeSchema = z__namespace.object({
17615
18485
  "spend-created",
17616
18486
  "spend-deleted",
17617
18487
  "spend-updated",
18488
+ "sso-login",
17618
18489
  "storage-accept-tos",
17619
18490
  "storage-access-token-set",
17620
18491
  "storage-accessed-data-browser",
@@ -17641,6 +18512,7 @@ const listEventTypeSchema = z__namespace.object({
17641
18512
  "subscription-product-added",
17642
18513
  "subscription-product-removed",
17643
18514
  "subscription-updated",
18515
+ "support-session-created",
17644
18516
  "team",
17645
18517
  "team-agent-billing-migration-decision-changed",
17646
18518
  "team-avatar-update",
@@ -17691,24 +18563,36 @@ const listEventTypeSchema = z__namespace.object({
17691
18563
  "tracing-configured",
17692
18564
  "tracing-disabled",
17693
18565
  "unlink-login-connection",
18566
+ "update-account-flow-dismissed",
17694
18567
  "update-account-flow-triggered",
18568
+ "user-auto-block-configured",
18569
+ "user-blocked",
17695
18570
  "user-delete",
18571
+ "user-delete-requested",
17696
18572
  "user-emu-account-archived",
17697
18573
  "user-emu-account-deleted",
17698
18574
  "user-emu-account-recovered",
18575
+ "user-emu-recovery-email-sent",
18576
+ "user-emu-recovery-initiated",
18577
+ "user-emu-toggled",
17699
18578
  "user-mfa-challenge-failed",
17700
18579
  "user-mfa-challenge-verified",
17701
18580
  "user-mfa-change-failed",
17702
18581
  "user-mfa-configuration-updated",
18582
+ "user-mfa-recovery-code-used",
17703
18583
  "user-mfa-recovery-codes-regenerated",
17704
18584
  "user-mfa-removed",
17705
18585
  "user-mfa-setup-skipped",
17706
18586
  "user-mfa-totp-verification-started",
17707
18587
  "user-mfa-totp-verified",
18588
+ "user-phone-removed",
18589
+ "user-phone-updated",
17708
18590
  "user-primary-email-updated",
18591
+ "user-sudo-mode-removed",
17709
18592
  "user-token-created",
17710
18593
  "user-token-deleted",
17711
18594
  "user-tokens-deleted",
18595
+ "user-unblocked",
17712
18596
  "username",
17713
18597
  "v0-chat-ai-usage",
17714
18598
  "v0-chat-created",
@@ -17720,6 +18604,7 @@ const listEventTypeSchema = z__namespace.object({
17720
18604
  "vcr-repository-permission-added",
17721
18605
  "vcr-repository-permission-removed",
17722
18606
  "vcr-repository-permissions-cleared",
18607
+ "vcr-repository-visibility-changed",
17723
18608
  "vercel-agent-elevated-permissions-approved",
17724
18609
  "vercel-agent-elevated-permissions-requested",
17725
18610
  "vercel-agent-session-created",
@@ -17751,6 +18636,7 @@ const listEventTypesResponseSchema = z__namespace.object({
17751
18636
  "ai",
17752
18637
  "ai-gateway",
17753
18638
  "billing",
18639
+ "connect",
17754
18640
  "deployment",
17755
18641
  "domain",
17756
18642
  "edge",
@@ -18259,7 +19145,8 @@ const aPIKeySchema = z__namespace.object({
18259
19145
  leakedAt: z__namespace.number().nullable().describe("Timestamp (in milliseconds) of when the API key was marked as leaked."),
18260
19146
  leakedUrl: z__namespace.string().nullable().describe("URL where the API key was discovered as leaked."),
18261
19147
  createdByAppId: z__namespace.string().nullable().describe("The ID of the app that created the API key, if any"),
18262
- 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`.")
18263
19150
  }).describe("Information about the newly created API key.");
18264
19151
  const aPIKeyQuotaSchema = z__namespace.object({
18265
19152
  quotaEntityId: z__namespace.string().describe("The unique identifier for the quota."),
@@ -18469,6 +19356,7 @@ const invitedTeamMemberSchema = z__namespace.object({
18469
19356
  "AiGatewayBudgetManager",
18470
19357
  "AiGatewayCredits",
18471
19358
  "AiGatewaySettings",
19359
+ "ConnectorManager",
18472
19360
  "CreateProject",
18473
19361
  "EnvVariableManager",
18474
19362
  "EnvironmentManager",
@@ -18542,6 +19430,13 @@ const teamSchema = z__namespace.object({
18542
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".')
18543
19431
  }).optional().describe('When "Single Sign-On (SAML)" is configured, this object contains information regarding the configuration of the Identity Provider (IdP).'),
18544
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."),
18545
19440
  description: z__namespace.string().nullable().describe("A short description of the Team."),
18546
19441
  defaultRoles: z__namespace.object({
18547
19442
  teamRoles: z__namespace.array(z__namespace.enum([
@@ -18559,6 +19454,7 @@ const teamSchema = z__namespace.object({
18559
19454
  "AiGatewayBudgetManager",
18560
19455
  "AiGatewayCredits",
18561
19456
  "AiGatewaySettings",
19457
+ "ConnectorManager",
18562
19458
  "CreateProject",
18563
19459
  "EnvVariableManager",
18564
19460
  "EnvironmentManager",
@@ -18847,6 +19743,7 @@ const teamSchema = z__namespace.object({
18847
19743
  "AiGatewayBudgetManager",
18848
19744
  "AiGatewayCredits",
18849
19745
  "AiGatewaySettings",
19746
+ "ConnectorManager",
18850
19747
  "CreateProject",
18851
19748
  "EnvVariableManager",
18852
19749
  "EnvironmentManager",
@@ -18975,6 +19872,7 @@ const teamLimitedSchema = z__namespace.object({
18975
19872
  "AiGatewayBudgetManager",
18976
19873
  "AiGatewayCredits",
18977
19874
  "AiGatewaySettings",
19875
+ "ConnectorManager",
18978
19876
  "CreateProject",
18979
19877
  "EnvVariableManager",
18980
19878
  "EnvironmentManager",
@@ -19294,6 +20192,7 @@ const authUserSchema = z__namespace.object({
19294
20192
  ]).nullish(),
19295
20193
  importFlowGitProvider: z__namespace.enum([
19296
20194
  "bitbucket",
20195
+ "cursor-origin",
19297
20196
  "github",
19298
20197
  "github-custom-host",
19299
20198
  "github-limited",
@@ -19358,8 +20257,10 @@ const authUserSchema = z__namespace.object({
19358
20257
  teamId: z__namespace.string(),
19359
20258
  slug: z__namespace.string(),
19360
20259
  name: z__namespace.string(),
19361
- avatar: z__namespace.string().nullable()
19362
- }))
20260
+ avatar: z__namespace.string().nullable(),
20261
+ workEmail: z__namespace.string()
20262
+ })),
20263
+ verifiedEmuDomains: z__namespace.array(z__namespace.string())
19363
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)."),
19364
20265
  id: z__namespace.string().describe("The User's unique identifier."),
19365
20266
  email: z__namespace.string().describe("Email address associated with the User account."),
@@ -19397,6 +20298,10 @@ const vcrRepositorySchema = z__namespace.object({
19397
20298
  id: z__namespace.string().describe("Unique identifier of the repository."),
19398
20299
  projectId: z__namespace.string().describe("Identifier of the project the repository belongs to."),
19399
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)."),
19400
20305
  createdAt: z__namespace.string().describe("ISO 8601 timestamp of when the repository was created."),
19401
20306
  updatedAt: z__namespace.string().describe("ISO 8601 timestamp of when the repository was last updated.")
19402
20307
  }).describe("A Vercel Container Registry repository.");
@@ -19438,6 +20343,12 @@ const vcrImageListSchema = z__namespace.object({
19438
20343
  images: z__namespace.array(z__namespace.unknown()),
19439
20344
  nextCursor: z__namespace.string().optional().describe("Cursor to fetch the next page of results, when more are available.")
19440
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.");
19441
20352
  const vcrTagSchema = z__namespace.object({
19442
20353
  tag: z__namespace.string().describe("The tag name."),
19443
20354
  manifestDigest: z__namespace.string().describe("SHA-256 digest of the image manifest the tag points at."),
@@ -19624,6 +20535,10 @@ const vcrImageDetailSchema = z__namespace.object({
19624
20535
  }).optional().describe("Converted VHS drive data, present once an image has been optimized for sandbox launch."),
19625
20536
  createdAt: z__namespace.string().describe("ISO 8601 timestamp of when the image was created.")
19626
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.");
19627
20542
  const fileTreeSchema = z__namespace.object({
19628
20543
  name: z__namespace.string().describe("The name of the file tree entry"),
19629
20544
  type: z__namespace.enum([
@@ -22086,6 +23001,7 @@ const listUserEventsQueryTypesSchema = z__namespace.string().optional().describe
22086
23001
  const listUserEventsQueryUserIdSchema = z__namespace.string().optional().describe("Deprecated. Use `principalId` instead. If `principalId` and `userId` both exist, `principalId` will be used.");
22087
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.");
22088
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.");
22089
23005
  const listUserEventsQueryWithPayloadSchema = z__namespace.string().optional().describe("When set to `true`, the response will include the `payload` field for each event.");
22090
23006
  const listUserEventsQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
22091
23007
  const listUserEventsQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -22633,7 +23549,8 @@ const searchRepoQueryProviderSchema = z__namespace.enum([
22633
23549
  "github-limited",
22634
23550
  "github-custom-host",
22635
23551
  "gitlab",
22636
- "bitbucket"
23552
+ "bitbucket",
23553
+ "cursor-origin"
22637
23554
  ]).optional();
22638
23555
  const searchRepoQueryInstallationIdSchema = z__namespace.string().optional();
22639
23556
  const searchRepoQueryHostSchema = z__namespace.string().optional().describe("The custom Git host if using a custom Git provider, like GitHub Enterprise Server");
@@ -22647,6 +23564,7 @@ const searchRepoStatus404Schema = z__namespace.unknown();
22647
23564
  const searchRepoStatus410Schema = z__namespace.unknown();
22648
23565
  const searchRepoStatus429Schema = z__namespace.unknown();
22649
23566
  const searchRepoStatus500Schema = z__namespace.unknown();
23567
+ const searchRepoStatus502Schema = z__namespace.unknown();
22650
23568
  const searchRepoResponseSchema = z__namespace.union([
22651
23569
  searchRepoStatus200Schema,
22652
23570
  searchRepoStatus400Schema,
@@ -22655,7 +23573,8 @@ const searchRepoResponseSchema = z__namespace.union([
22655
23573
  searchRepoStatus404Schema,
22656
23574
  searchRepoStatus410Schema,
22657
23575
  searchRepoStatus429Schema,
22658
- searchRepoStatus500Schema
23576
+ searchRepoStatus500Schema,
23577
+ searchRepoStatus502Schema
22659
23578
  ]);
22660
23579
  const getBillingPlansPathIntegrationIdOrSlugSchema = z__namespace.string();
22661
23580
  const getBillingPlansQueryIntegrationConfigurationIdSchema = z__namespace.string().optional();
@@ -22669,7 +23588,8 @@ const getBillingPlansQuerySourceSchema = z__namespace.enum([
22669
23588
  "resource-claims",
22670
23589
  "cli",
22671
23590
  "oauth",
22672
- "backoffice"
23591
+ "backoffice",
23592
+ "import-recommended-integrations"
22673
23593
  ]).optional();
22674
23594
  const getBillingPlansQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
22675
23595
  const getBillingPlansQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
@@ -23538,14 +24458,18 @@ const deleteRoutesStatus400Schema = z__namespace.unknown();
23538
24458
  const deleteRoutesStatus401Schema = z__namespace.unknown();
23539
24459
  const deleteRoutesStatus403Schema = z__namespace.unknown();
23540
24460
  const deleteRoutesStatus404Schema = z__namespace.unknown();
24461
+ const deleteRoutesStatus409Schema = z__namespace.unknown();
23541
24462
  const deleteRoutesStatus410Schema = z__namespace.unknown();
24463
+ const deleteRoutesStatus500Schema = z__namespace.unknown();
23542
24464
  const deleteRoutesResponseSchema = z__namespace.union([
23543
24465
  deleteRoutesStatus200Schema,
23544
24466
  deleteRoutesStatus400Schema,
23545
24467
  deleteRoutesStatus401Schema,
23546
24468
  deleteRoutesStatus403Schema,
23547
24469
  deleteRoutesStatus404Schema,
23548
- deleteRoutesStatus410Schema
24470
+ deleteRoutesStatus409Schema,
24471
+ deleteRoutesStatus410Schema,
24472
+ deleteRoutesStatus500Schema
23549
24473
  ]);
23550
24474
  const editRoutePathProjectIdSchema = z__namespace.string();
23551
24475
  const editRoutePathRouteIdSchema = z__namespace.string();
@@ -23637,7 +24561,7 @@ const getProjectsQueryEdgeConfigTokenIdSchema = z__namespace.string().optional()
23637
24561
  const getProjectsQueryDeprecatedSchema = z__namespace.boolean().optional();
23638
24562
  const getProjectsQueryElasticConcurrencyEnabledSchema = z__namespace.string().optional().describe("Filter results by projects with elastic concurrency enabled");
23639
24563
  const getProjectsQueryStaticIpsEnabledSchema = z__namespace.string().optional().describe("Filter results by projects with Static IPs enabled");
23640
- 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.');
23641
24565
  const getProjectsQueryBuildQueueConfigurationSchema = z__namespace.enum([
23642
24566
  "SKIP_NAMESPACE_QUEUE",
23643
24567
  "WAIT_FOR_NAMESPACE_QUEUE"
@@ -23758,7 +24682,6 @@ const updateProjectStatus404Schema = z__namespace.unknown();
23758
24682
  const updateProjectStatus409Schema = z__namespace.unknown();
23759
24683
  const updateProjectStatus410Schema = z__namespace.unknown();
23760
24684
  const updateProjectStatus428Schema = z__namespace.unknown();
23761
- const updateProjectStatus500Schema = z__namespace.unknown();
23762
24685
  const updateProjectResponseSchema = z__namespace.union([
23763
24686
  updateProjectStatus200Schema,
23764
24687
  updateProjectStatus400Schema,
@@ -23768,8 +24691,7 @@ const updateProjectResponseSchema = z__namespace.union([
23768
24691
  updateProjectStatus404Schema,
23769
24692
  updateProjectStatus409Schema,
23770
24693
  updateProjectStatus410Schema,
23771
- updateProjectStatus428Schema,
23772
- updateProjectStatus500Schema
24694
+ updateProjectStatus428Schema
23773
24695
  ]);
23774
24696
  const deleteProjectPathIdOrNameSchema = z__namespace.string().describe("The unique project identifier or the project name");
23775
24697
  const deleteProjectQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
@@ -24572,31 +25494,31 @@ const listSandboxesResponseSchema = z__namespace.union([
24572
25494
  listSandboxesStatus410Schema,
24573
25495
  listSandboxesStatus429Schema
24574
25496
  ]);
24575
- const createSandboxesQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
24576
- const createSandboxesQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
24577
- const createSandboxesStatus200Schema = z__namespace.unknown();
24578
- const createSandboxesStatus400Schema = z__namespace.unknown();
24579
- const createSandboxesStatus401Schema = z__namespace.unknown();
24580
- const createSandboxesStatus402Schema = z__namespace.unknown();
24581
- const createSandboxesStatus403Schema = z__namespace.unknown();
24582
- const createSandboxesStatus404Schema = z__namespace.unknown();
24583
- const createSandboxesStatus409Schema = z__namespace.unknown();
24584
- const createSandboxesStatus410Schema = z__namespace.unknown();
24585
- const createSandboxesStatus422Schema = z__namespace.unknown();
24586
- const createSandboxesStatus429Schema = z__namespace.unknown();
24587
- const createSandboxesStatus500Schema = z__namespace.unknown();
24588
- const createSandboxesResponseSchema = z__namespace.union([
24589
- createSandboxesStatus200Schema,
24590
- createSandboxesStatus400Schema,
24591
- createSandboxesStatus401Schema,
24592
- createSandboxesStatus402Schema,
24593
- createSandboxesStatus403Schema,
24594
- createSandboxesStatus404Schema,
24595
- createSandboxesStatus409Schema,
24596
- createSandboxesStatus410Schema,
24597
- createSandboxesStatus422Schema,
24598
- createSandboxesStatus429Schema,
24599
- 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
24600
25522
  ]);
24601
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.");
24602
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.");
@@ -25036,7 +25958,6 @@ const updateSessionNetworkPolicyQuerySlugSchema = z__namespace.string().optional
25036
25958
  const updateSessionNetworkPolicyStatus200Schema = z__namespace.unknown();
25037
25959
  const updateSessionNetworkPolicyStatus400Schema = z__namespace.unknown();
25038
25960
  const updateSessionNetworkPolicyStatus401Schema = z__namespace.unknown();
25039
- const updateSessionNetworkPolicyStatus402Schema = z__namespace.unknown();
25040
25961
  const updateSessionNetworkPolicyStatus403Schema = z__namespace.unknown();
25041
25962
  const updateSessionNetworkPolicyStatus404Schema = z__namespace.unknown();
25042
25963
  const updateSessionNetworkPolicyStatus410Schema = z__namespace.unknown();
@@ -25047,7 +25968,6 @@ const updateSessionNetworkPolicyResponseSchema = z__namespace.union([
25047
25968
  updateSessionNetworkPolicyStatus200Schema,
25048
25969
  updateSessionNetworkPolicyStatus400Schema,
25049
25970
  updateSessionNetworkPolicyStatus401Schema,
25050
- updateSessionNetworkPolicyStatus402Schema,
25051
25971
  updateSessionNetworkPolicyStatus403Schema,
25052
25972
  updateSessionNetworkPolicyStatus404Schema,
25053
25973
  updateSessionNetworkPolicyStatus410Schema,
@@ -25178,6 +26098,32 @@ const createSandboxesByNameForkResponseSchema = z__namespace.union([
25178
26098
  createSandboxesByNameForkStatus429Schema,
25179
26099
  createSandboxesByNameForkStatus500Schema
25180
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
+ ]);
25181
26127
  const updateAttackChallengeModeQueryTeamIdSchema = z__namespace.string().optional().describe("The Team identifier to perform the request on behalf of.");
25182
26128
  const updateAttackChallengeModeQuerySlugSchema = z__namespace.string().optional().describe("The Team slug to perform the request on behalf of.");
25183
26129
  const updateAttackChallengeModeStatus200Schema = z__namespace.unknown();
@@ -26017,6 +26963,80 @@ const listRepositoryImagesResponseSchema = z__namespace.union([
26017
26963
  listRepositoryImagesStatus404Schema,
26018
26964
  listRepositoryImagesStatus410Schema
26019
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
+ ]);
26020
27040
  const listRepositoryTagsQueryProjectIdSchema = z__namespace.string();
26021
27041
  const listRepositoryTagsPathIdOrNameSchema = z__namespace.string().max(255);
26022
27042
  const listRepositoryTagsQueryLimitSchema = z__namespace.int().min(1).max(100).optional();
@@ -26102,6 +27122,249 @@ const deleteRepositoryImageResponseSchema = z__namespace.union([
26102
27122
  deleteRepositoryImageStatus404Schema,
26103
27123
  deleteRepositoryImageStatus410Schema
26104
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
+ ]);
26105
27368
  const createWebInsightsToggleQueryProjectIdSchema = z__namespace.string();
26106
27369
  const createWebInsightsToggleStatus200Schema = z__namespace.unknown();
26107
27370
  const createWebInsightsToggleStatus400Schema = z__namespace.unknown();
@@ -26787,6 +28050,11 @@ const userEventTypeEnum = {
26787
28050
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
26788
28051
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
26789
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",
26790
28058
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
26791
28059
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
26792
28060
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -26832,6 +28100,7 @@ const userEventTypeEnum = {
26832
28100
  "cert-system-create": "cert-system-create",
26833
28101
  "code-owners-config-updated": "code-owners-config-updated",
26834
28102
  "compliance-document-downloaded": "compliance-document-downloaded",
28103
+ "compliance-document-previewed": "compliance-document-previewed",
26835
28104
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
26836
28105
  "concurrent-builds-update": "concurrent-builds-update",
26837
28106
  "connect-attach-project": "connect-attach-project",
@@ -26970,6 +28239,7 @@ const userEventTypeEnum = {
26970
28239
  "flags-segment": "flags-segment",
26971
28240
  "flags-settings": "flags-settings",
26972
28241
  "flags-transferred": "flags-transferred",
28242
+ "git-integration-repo-push": "git-integration-repo-push",
26973
28243
  git_account_integration_link_added: "git_account_integration_link_added",
26974
28244
  "instant-rollback-created": "instant-rollback-created",
26975
28245
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -26990,6 +28260,7 @@ const userEventTypeEnum = {
26990
28260
  "kms-issuer-deleted": "kms-issuer-deleted",
26991
28261
  "kms-issuer-key-activated": "kms-issuer-key-activated",
26992
28262
  "kms-issuer-key-created": "kms-issuer-key-created",
28263
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
26993
28264
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
26994
28265
  "kms-issuer-policy-created": "kms-issuer-policy-created",
26995
28266
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -27000,6 +28271,8 @@ const userEventTypeEnum = {
27000
28271
  "log-drain-disabled": "log-drain-disabled",
27001
28272
  "log-drain-enabled": "log-drain-enabled",
27002
28273
  login: "login",
28274
+ "login-connection-linked": "login-connection-linked",
28275
+ "login-connection-unlinked": "login-connection-unlinked",
27003
28276
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
27004
28277
  "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
27005
28278
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
@@ -27031,6 +28304,8 @@ const userEventTypeEnum = {
27031
28304
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
27032
28305
  "organization-create": "organization-create",
27033
28306
  "organization-delete": "organization-delete",
28307
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
28308
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
27034
28309
  "organization-slug-update": "organization-slug-update",
27035
28310
  "organization-team-add": "organization-team-add",
27036
28311
  "organization-team-create": "organization-team-create",
@@ -27179,8 +28454,11 @@ const userEventTypeEnum = {
27179
28454
  "protected-git-scope-added": "protected-git-scope-added",
27180
28455
  "protected-git-scope-removed": "protected-git-scope-removed",
27181
28456
  "runtime-cache-purge-all": "runtime-cache-purge-all",
28457
+ "saml-connection-created": "saml-connection-created",
28458
+ "saml-connection-deleted": "saml-connection-deleted",
27182
28459
  "sandbox-alias-assigned": "sandbox-alias-assigned",
27183
28460
  "sandbox-alias-delete": "sandbox-alias-delete",
28461
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
27184
28462
  scale: "scale",
27185
28463
  "scale-auto": "scale-auto",
27186
28464
  "secondary-email-added": "secondary-email-added",
@@ -27210,6 +28488,7 @@ const userEventTypeEnum = {
27210
28488
  "spend-created": "spend-created",
27211
28489
  "spend-deleted": "spend-deleted",
27212
28490
  "spend-updated": "spend-updated",
28491
+ "sso-login": "sso-login",
27213
28492
  "storage-accept-tos": "storage-accept-tos",
27214
28493
  "storage-access-token-set": "storage-access-token-set",
27215
28494
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -27236,6 +28515,7 @@ const userEventTypeEnum = {
27236
28515
  "subscription-product-added": "subscription-product-added",
27237
28516
  "subscription-product-removed": "subscription-product-removed",
27238
28517
  "subscription-updated": "subscription-updated",
28518
+ "support-session-created": "support-session-created",
27239
28519
  team: "team",
27240
28520
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
27241
28521
  "team-avatar-update": "team-avatar-update",
@@ -27286,24 +28566,36 @@ const userEventTypeEnum = {
27286
28566
  "tracing-configured": "tracing-configured",
27287
28567
  "tracing-disabled": "tracing-disabled",
27288
28568
  "unlink-login-connection": "unlink-login-connection",
28569
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
27289
28570
  "update-account-flow-triggered": "update-account-flow-triggered",
28571
+ "user-auto-block-configured": "user-auto-block-configured",
28572
+ "user-blocked": "user-blocked",
27290
28573
  "user-delete": "user-delete",
28574
+ "user-delete-requested": "user-delete-requested",
27291
28575
  "user-emu-account-archived": "user-emu-account-archived",
27292
28576
  "user-emu-account-deleted": "user-emu-account-deleted",
27293
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",
27294
28581
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
27295
28582
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
27296
28583
  "user-mfa-change-failed": "user-mfa-change-failed",
27297
28584
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
28585
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
27298
28586
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
27299
28587
  "user-mfa-removed": "user-mfa-removed",
27300
28588
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
27301
28589
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
27302
28590
  "user-mfa-totp-verified": "user-mfa-totp-verified",
28591
+ "user-phone-removed": "user-phone-removed",
28592
+ "user-phone-updated": "user-phone-updated",
27303
28593
  "user-primary-email-updated": "user-primary-email-updated",
28594
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
27304
28595
  "user-token-created": "user-token-created",
27305
28596
  "user-token-deleted": "user-token-deleted",
27306
28597
  "user-tokens-deleted": "user-tokens-deleted",
28598
+ "user-unblocked": "user-unblocked",
27307
28599
  username: "username",
27308
28600
  "v0-chat-ai-usage": "v0-chat-ai-usage",
27309
28601
  "v0-chat-created": "v0-chat-created",
@@ -27315,6 +28607,7 @@ const userEventTypeEnum = {
27315
28607
  "vcr-repository-permission-added": "vcr-repository-permission-added",
27316
28608
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
27317
28609
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
28610
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
27318
28611
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
27319
28612
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
27320
28613
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -27342,6 +28635,7 @@ const userEventCategoriesEnum = {
27342
28635
  ai: "ai",
27343
28636
  "ai-gateway": "ai-gateway",
27344
28637
  billing: "billing",
28638
+ connect: "connect",
27345
28639
  deployment: "deployment",
27346
28640
  domain: "domain",
27347
28641
  edge: "edge",
@@ -27378,7 +28672,8 @@ const providerEnum = {
27378
28672
  "github-custom-host": "github-custom-host",
27379
28673
  "github-limited": "github-limited",
27380
28674
  gitlab: "gitlab",
27381
- google: "google"
28675
+ google: "google",
28676
+ saml: "saml"
27382
28677
  };
27383
28678
  const fromPlanEnum = {
27384
28679
  hobby: "hobby",
@@ -27404,6 +28699,14 @@ const scopeTypeEnum = {
27404
28699
  project: "project",
27405
28700
  team: "team"
27406
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
+ };
27407
28710
  const nextRoleEnum = {
27408
28711
  ADMIN: "ADMIN",
27409
28712
  PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
@@ -27449,6 +28752,9 @@ const subjectTypeEnum = {
27449
28752
  app: "app",
27450
28753
  user: "user"
27451
28754
  };
28755
+ const gitCredentialSourceEnum = {
28756
+ "external-token": "external-token"
28757
+ };
27452
28758
  const commitVerificationEnum = {
27453
28759
  unknown: "unknown",
27454
28760
  unverified: "unverified",
@@ -27467,6 +28773,16 @@ const initiatorEnum = {
27467
28773
  system: "system",
27468
28774
  user: "user"
27469
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
+ };
27470
28786
  const planEnum = {
27471
28787
  enterprise: "enterprise",
27472
28788
  hobby: "hobby",
@@ -27474,6 +28790,7 @@ const planEnum = {
27474
28790
  };
27475
28791
  const importFlowGitProviderEnum = {
27476
28792
  bitbucket: "bitbucket",
28793
+ "cursor-origin": "cursor-origin",
27477
28794
  github: "github",
27478
28795
  "github-custom-host": "github-custom-host",
27479
28796
  "github-limited": "github-limited",
@@ -27482,21 +28799,34 @@ const importFlowGitProviderEnum = {
27482
28799
  };
27483
28800
  const widgetEnum = {
27484
28801
  alert: "alert",
28802
+ "analytics-online": "analytics-online",
28803
+ "analytics-page-views": "analytics-page-views",
28804
+ "analytics-visitors": "analytics-visitors",
27485
28805
  "firewall-allowed": "firewall-allowed",
27486
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",
27487
28811
  online: "online",
27488
- 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"
27489
28816
  };
27490
28817
  const configurationEnum = {
27491
28818
  SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
27492
28819
  WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
27493
28820
  };
27494
28821
  const defaultEnum = {
27495
- basic: "basic",
27496
- elastic: "elastic",
27497
- enhanced: "enhanced",
27498
- standard: "standard",
27499
- 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"
27500
28830
  };
27501
28831
  const viewPreferenceEnum = {
27502
28832
  cards: "cards",
@@ -27694,8 +29024,7 @@ const methodEnum = {
27694
29024
  private_key_jwt: "private_key_jwt"
27695
29025
  };
27696
29026
  const actorTypeEnum = {
27697
- admin: "admin",
27698
- user: "user"
29027
+ admin: "admin"
27699
29028
  };
27700
29029
  const queryTypeEnum = {
27701
29030
  "data-edit": "data-edit",
@@ -27742,6 +29071,7 @@ const oldBuildQueueConfigurationEnum = {
27742
29071
  };
27743
29072
  const gitProviderEnum = {
27744
29073
  bitbucket: "bitbucket",
29074
+ "cursor-origin": "cursor-origin",
27745
29075
  github: "github",
27746
29076
  "github-custom-host": "github-custom-host",
27747
29077
  "github-limited": "github-limited",
@@ -27947,6 +29277,11 @@ const listEventTypeNameEnum = {
27947
29277
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
27948
29278
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
27949
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",
27950
29285
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
27951
29286
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
27952
29287
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -27992,6 +29327,7 @@ const listEventTypeNameEnum = {
27992
29327
  "cert-system-create": "cert-system-create",
27993
29328
  "code-owners-config-updated": "code-owners-config-updated",
27994
29329
  "compliance-document-downloaded": "compliance-document-downloaded",
29330
+ "compliance-document-previewed": "compliance-document-previewed",
27995
29331
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
27996
29332
  "concurrent-builds-update": "concurrent-builds-update",
27997
29333
  "connect-attach-project": "connect-attach-project",
@@ -28130,6 +29466,7 @@ const listEventTypeNameEnum = {
28130
29466
  "flags-segment": "flags-segment",
28131
29467
  "flags-settings": "flags-settings",
28132
29468
  "flags-transferred": "flags-transferred",
29469
+ "git-integration-repo-push": "git-integration-repo-push",
28133
29470
  git_account_integration_link_added: "git_account_integration_link_added",
28134
29471
  "instant-rollback-created": "instant-rollback-created",
28135
29472
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -28150,6 +29487,7 @@ const listEventTypeNameEnum = {
28150
29487
  "kms-issuer-deleted": "kms-issuer-deleted",
28151
29488
  "kms-issuer-key-activated": "kms-issuer-key-activated",
28152
29489
  "kms-issuer-key-created": "kms-issuer-key-created",
29490
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
28153
29491
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
28154
29492
  "kms-issuer-policy-created": "kms-issuer-policy-created",
28155
29493
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -28160,6 +29498,8 @@ const listEventTypeNameEnum = {
28160
29498
  "log-drain-disabled": "log-drain-disabled",
28161
29499
  "log-drain-enabled": "log-drain-enabled",
28162
29500
  login: "login",
29501
+ "login-connection-linked": "login-connection-linked",
29502
+ "login-connection-unlinked": "login-connection-unlinked",
28163
29503
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
28164
29504
  "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
28165
29505
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
@@ -28191,6 +29531,8 @@ const listEventTypeNameEnum = {
28191
29531
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
28192
29532
  "organization-create": "organization-create",
28193
29533
  "organization-delete": "organization-delete",
29534
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
29535
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
28194
29536
  "organization-slug-update": "organization-slug-update",
28195
29537
  "organization-team-add": "organization-team-add",
28196
29538
  "organization-team-create": "organization-team-create",
@@ -28339,8 +29681,11 @@ const listEventTypeNameEnum = {
28339
29681
  "protected-git-scope-added": "protected-git-scope-added",
28340
29682
  "protected-git-scope-removed": "protected-git-scope-removed",
28341
29683
  "runtime-cache-purge-all": "runtime-cache-purge-all",
29684
+ "saml-connection-created": "saml-connection-created",
29685
+ "saml-connection-deleted": "saml-connection-deleted",
28342
29686
  "sandbox-alias-assigned": "sandbox-alias-assigned",
28343
29687
  "sandbox-alias-delete": "sandbox-alias-delete",
29688
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
28344
29689
  scale: "scale",
28345
29690
  "scale-auto": "scale-auto",
28346
29691
  "secondary-email-added": "secondary-email-added",
@@ -28370,6 +29715,7 @@ const listEventTypeNameEnum = {
28370
29715
  "spend-created": "spend-created",
28371
29716
  "spend-deleted": "spend-deleted",
28372
29717
  "spend-updated": "spend-updated",
29718
+ "sso-login": "sso-login",
28373
29719
  "storage-accept-tos": "storage-accept-tos",
28374
29720
  "storage-access-token-set": "storage-access-token-set",
28375
29721
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -28396,6 +29742,7 @@ const listEventTypeNameEnum = {
28396
29742
  "subscription-product-added": "subscription-product-added",
28397
29743
  "subscription-product-removed": "subscription-product-removed",
28398
29744
  "subscription-updated": "subscription-updated",
29745
+ "support-session-created": "support-session-created",
28399
29746
  team: "team",
28400
29747
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
28401
29748
  "team-avatar-update": "team-avatar-update",
@@ -28446,24 +29793,36 @@ const listEventTypeNameEnum = {
28446
29793
  "tracing-configured": "tracing-configured",
28447
29794
  "tracing-disabled": "tracing-disabled",
28448
29795
  "unlink-login-connection": "unlink-login-connection",
29796
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
28449
29797
  "update-account-flow-triggered": "update-account-flow-triggered",
29798
+ "user-auto-block-configured": "user-auto-block-configured",
29799
+ "user-blocked": "user-blocked",
28450
29800
  "user-delete": "user-delete",
29801
+ "user-delete-requested": "user-delete-requested",
28451
29802
  "user-emu-account-archived": "user-emu-account-archived",
28452
29803
  "user-emu-account-deleted": "user-emu-account-deleted",
28453
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",
28454
29808
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
28455
29809
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
28456
29810
  "user-mfa-change-failed": "user-mfa-change-failed",
28457
29811
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
29812
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
28458
29813
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
28459
29814
  "user-mfa-removed": "user-mfa-removed",
28460
29815
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
28461
29816
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
28462
29817
  "user-mfa-totp-verified": "user-mfa-totp-verified",
29818
+ "user-phone-removed": "user-phone-removed",
29819
+ "user-phone-updated": "user-phone-updated",
28463
29820
  "user-primary-email-updated": "user-primary-email-updated",
29821
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
28464
29822
  "user-token-created": "user-token-created",
28465
29823
  "user-token-deleted": "user-token-deleted",
28466
29824
  "user-tokens-deleted": "user-tokens-deleted",
29825
+ "user-unblocked": "user-unblocked",
28467
29826
  username: "username",
28468
29827
  "v0-chat-ai-usage": "v0-chat-ai-usage",
28469
29828
  "v0-chat-created": "v0-chat-created",
@@ -28475,6 +29834,7 @@ const listEventTypeNameEnum = {
28475
29834
  "vcr-repository-permission-added": "vcr-repository-permission-added",
28476
29835
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
28477
29836
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
29837
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
28478
29838
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
28479
29839
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
28480
29840
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -28502,6 +29862,7 @@ const listEventTypeCategoriesEnum = {
28502
29862
  ai: "ai",
28503
29863
  "ai-gateway": "ai-gateway",
28504
29864
  billing: "billing",
29865
+ connect: "connect",
28505
29866
  deployment: "deployment",
28506
29867
  domain: "domain",
28507
29868
  edge: "edge",
@@ -28559,6 +29920,11 @@ const listEventTypeReplacedByEnum = {
28559
29920
  "ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
28560
29921
  "ai-gateway-rule-updated": "ai-gateway-rule-updated",
28561
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",
28562
29928
  "ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
28563
29929
  "ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
28564
29930
  "ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
@@ -28604,6 +29970,7 @@ const listEventTypeReplacedByEnum = {
28604
29970
  "cert-system-create": "cert-system-create",
28605
29971
  "code-owners-config-updated": "code-owners-config-updated",
28606
29972
  "compliance-document-downloaded": "compliance-document-downloaded",
29973
+ "compliance-document-previewed": "compliance-document-previewed",
28607
29974
  "compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
28608
29975
  "concurrent-builds-update": "concurrent-builds-update",
28609
29976
  "connect-attach-project": "connect-attach-project",
@@ -28742,6 +30109,7 @@ const listEventTypeReplacedByEnum = {
28742
30109
  "flags-segment": "flags-segment",
28743
30110
  "flags-settings": "flags-settings",
28744
30111
  "flags-transferred": "flags-transferred",
30112
+ "git-integration-repo-push": "git-integration-repo-push",
28745
30113
  git_account_integration_link_added: "git_account_integration_link_added",
28746
30114
  "instant-rollback-created": "instant-rollback-created",
28747
30115
  "integration-configuration-owner-changed": "integration-configuration-owner-changed",
@@ -28762,6 +30130,7 @@ const listEventTypeReplacedByEnum = {
28762
30130
  "kms-issuer-deleted": "kms-issuer-deleted",
28763
30131
  "kms-issuer-key-activated": "kms-issuer-key-activated",
28764
30132
  "kms-issuer-key-created": "kms-issuer-key-created",
30133
+ "kms-issuer-key-revoked": "kms-issuer-key-revoked",
28765
30134
  "kms-issuer-key-rotated": "kms-issuer-key-rotated",
28766
30135
  "kms-issuer-policy-created": "kms-issuer-policy-created",
28767
30136
  "kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
@@ -28772,6 +30141,8 @@ const listEventTypeReplacedByEnum = {
28772
30141
  "log-drain-disabled": "log-drain-disabled",
28773
30142
  "log-drain-enabled": "log-drain-enabled",
28774
30143
  login: "login",
30144
+ "login-connection-linked": "login-connection-linked",
30145
+ "login-connection-unlinked": "login-connection-unlinked",
28775
30146
  "manual-deployment-promotion-created": "manual-deployment-promotion-created",
28776
30147
  "marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
28777
30148
  "marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
@@ -28803,6 +30174,8 @@ const listEventTypeReplacedByEnum = {
28803
30174
  "oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
28804
30175
  "organization-create": "organization-create",
28805
30176
  "organization-delete": "organization-delete",
30177
+ "organization-dsync-group-delete": "organization-dsync-group-delete",
30178
+ "organization-dsync-group-upsert": "organization-dsync-group-upsert",
28806
30179
  "organization-slug-update": "organization-slug-update",
28807
30180
  "organization-team-add": "organization-team-add",
28808
30181
  "organization-team-create": "organization-team-create",
@@ -28951,8 +30324,11 @@ const listEventTypeReplacedByEnum = {
28951
30324
  "protected-git-scope-added": "protected-git-scope-added",
28952
30325
  "protected-git-scope-removed": "protected-git-scope-removed",
28953
30326
  "runtime-cache-purge-all": "runtime-cache-purge-all",
30327
+ "saml-connection-created": "saml-connection-created",
30328
+ "saml-connection-deleted": "saml-connection-deleted",
28954
30329
  "sandbox-alias-assigned": "sandbox-alias-assigned",
28955
30330
  "sandbox-alias-delete": "sandbox-alias-delete",
30331
+ "sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
28956
30332
  scale: "scale",
28957
30333
  "scale-auto": "scale-auto",
28958
30334
  "secondary-email-added": "secondary-email-added",
@@ -28982,6 +30358,7 @@ const listEventTypeReplacedByEnum = {
28982
30358
  "spend-created": "spend-created",
28983
30359
  "spend-deleted": "spend-deleted",
28984
30360
  "spend-updated": "spend-updated",
30361
+ "sso-login": "sso-login",
28985
30362
  "storage-accept-tos": "storage-accept-tos",
28986
30363
  "storage-access-token-set": "storage-access-token-set",
28987
30364
  "storage-accessed-data-browser": "storage-accessed-data-browser",
@@ -29008,6 +30385,7 @@ const listEventTypeReplacedByEnum = {
29008
30385
  "subscription-product-added": "subscription-product-added",
29009
30386
  "subscription-product-removed": "subscription-product-removed",
29010
30387
  "subscription-updated": "subscription-updated",
30388
+ "support-session-created": "support-session-created",
29011
30389
  team: "team",
29012
30390
  "team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
29013
30391
  "team-avatar-update": "team-avatar-update",
@@ -29058,24 +30436,36 @@ const listEventTypeReplacedByEnum = {
29058
30436
  "tracing-configured": "tracing-configured",
29059
30437
  "tracing-disabled": "tracing-disabled",
29060
30438
  "unlink-login-connection": "unlink-login-connection",
30439
+ "update-account-flow-dismissed": "update-account-flow-dismissed",
29061
30440
  "update-account-flow-triggered": "update-account-flow-triggered",
30441
+ "user-auto-block-configured": "user-auto-block-configured",
30442
+ "user-blocked": "user-blocked",
29062
30443
  "user-delete": "user-delete",
30444
+ "user-delete-requested": "user-delete-requested",
29063
30445
  "user-emu-account-archived": "user-emu-account-archived",
29064
30446
  "user-emu-account-deleted": "user-emu-account-deleted",
29065
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",
29066
30451
  "user-mfa-challenge-failed": "user-mfa-challenge-failed",
29067
30452
  "user-mfa-challenge-verified": "user-mfa-challenge-verified",
29068
30453
  "user-mfa-change-failed": "user-mfa-change-failed",
29069
30454
  "user-mfa-configuration-updated": "user-mfa-configuration-updated",
30455
+ "user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
29070
30456
  "user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
29071
30457
  "user-mfa-removed": "user-mfa-removed",
29072
30458
  "user-mfa-setup-skipped": "user-mfa-setup-skipped",
29073
30459
  "user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
29074
30460
  "user-mfa-totp-verified": "user-mfa-totp-verified",
30461
+ "user-phone-removed": "user-phone-removed",
30462
+ "user-phone-updated": "user-phone-updated",
29075
30463
  "user-primary-email-updated": "user-primary-email-updated",
30464
+ "user-sudo-mode-removed": "user-sudo-mode-removed",
29076
30465
  "user-token-created": "user-token-created",
29077
30466
  "user-token-deleted": "user-token-deleted",
29078
30467
  "user-tokens-deleted": "user-tokens-deleted",
30468
+ "user-unblocked": "user-unblocked",
29079
30469
  username: "username",
29080
30470
  "v0-chat-ai-usage": "v0-chat-ai-usage",
29081
30471
  "v0-chat-created": "v0-chat-created",
@@ -29087,6 +30477,7 @@ const listEventTypeReplacedByEnum = {
29087
30477
  "vcr-repository-permission-added": "vcr-repository-permission-added",
29088
30478
  "vcr-repository-permission-removed": "vcr-repository-permission-removed",
29089
30479
  "vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
30480
+ "vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
29090
30481
  "vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
29091
30482
  "vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
29092
30483
  "vercel-agent-session-created": "vercel-agent-session-created",
@@ -29265,6 +30656,7 @@ const invitedTeamMemberTeamPermissionsEnum = {
29265
30656
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29266
30657
  AiGatewayCredits: "AiGatewayCredits",
29267
30658
  AiGatewaySettings: "AiGatewaySettings",
30659
+ ConnectorManager: "ConnectorManager",
29268
30660
  CreateProject: "CreateProject",
29269
30661
  EnvVariableManager: "EnvVariableManager",
29270
30662
  EnvironmentManager: "EnvironmentManager",
@@ -29290,6 +30682,11 @@ const teamSamlDefaultRedirectUriEnum = {
29290
30682
  "v0.dev": "v0.dev",
29291
30683
  "vercel.com": "vercel.com"
29292
30684
  };
30685
+ const teamBillingPlanEnum = {
30686
+ enterprise: "enterprise",
30687
+ hobby: "hobby",
30688
+ pro: "pro"
30689
+ };
29293
30690
  const teamDefaultRolesTeamRolesEnum = {
29294
30691
  BILLING: "BILLING",
29295
30692
  CONTRIBUTOR: "CONTRIBUTOR",
@@ -29305,6 +30702,7 @@ const teamDefaultRolesTeamPermissionsEnum = {
29305
30702
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29306
30703
  AiGatewayCredits: "AiGatewayCredits",
29307
30704
  AiGatewaySettings: "AiGatewaySettings",
30705
+ ConnectorManager: "ConnectorManager",
29308
30706
  CreateProject: "CreateProject",
29309
30707
  EnvVariableManager: "EnvVariableManager",
29310
30708
  EnvironmentManager: "EnvironmentManager",
@@ -29390,6 +30788,7 @@ const teamMembershipTeamPermissionsEnum = {
29390
30788
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29391
30789
  AiGatewayCredits: "AiGatewayCredits",
29392
30790
  AiGatewaySettings: "AiGatewaySettings",
30791
+ ConnectorManager: "ConnectorManager",
29393
30792
  CreateProject: "CreateProject",
29394
30793
  EnvVariableManager: "EnvVariableManager",
29395
30794
  EnvironmentManager: "EnvironmentManager",
@@ -29461,6 +30860,7 @@ const teamLimitedMembershipTeamPermissionsEnum = {
29461
30860
  AiGatewayBudgetManager: "AiGatewayBudgetManager",
29462
30861
  AiGatewayCredits: "AiGatewayCredits",
29463
30862
  AiGatewaySettings: "AiGatewaySettings",
30863
+ ConnectorManager: "ConnectorManager",
29464
30864
  CreateProject: "CreateProject",
29465
30865
  EnvVariableManager: "EnvVariableManager",
29466
30866
  EnvironmentManager: "EnvironmentManager",
@@ -29553,6 +30953,7 @@ const authUserResourceConfigBuildQueueConfigurationEnum = {
29553
30953
  };
29554
30954
  const authUserImportFlowGitProviderEnum = {
29555
30955
  bitbucket: "bitbucket",
30956
+ "cursor-origin": "cursor-origin",
29556
30957
  github: "github",
29557
30958
  "github-custom-host": "github-custom-host",
29558
30959
  "github-limited": "github-limited",
@@ -29671,6 +31072,17 @@ exports.addProjectMemberStatus401Schema = addProjectMemberStatus401Schema;
29671
31072
  exports.addProjectMemberStatus403Schema = addProjectMemberStatus403Schema;
29672
31073
  exports.addProjectMemberStatus410Schema = addProjectMemberStatus410Schema;
29673
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;
29674
31086
  exports.addRoutePathProjectIdSchema = addRoutePathProjectIdSchema;
29675
31087
  exports.addRouteQuerySlugSchema = addRouteQuerySlugSchema;
29676
31088
  exports.addRouteQueryTeamIdSchema = addRouteQueryTeamIdSchema;
@@ -29823,6 +31235,7 @@ exports.cancelDeploymentStatus401Schema = cancelDeploymentStatus401Schema;
29823
31235
  exports.cancelDeploymentStatus403Schema = cancelDeploymentStatus403Schema;
29824
31236
  exports.cancelDeploymentStatus404Schema = cancelDeploymentStatus404Schema;
29825
31237
  exports.cancelDeploymentStatus410Schema = cancelDeploymentStatus410Schema;
31238
+ exports.ceilingModeEnum = ceilingModeEnum;
29826
31239
  exports.changeEnum = changeEnum;
29827
31240
  exports.claimDomainOwnershipPathDomainSchema = claimDomainOwnershipPathDomainSchema;
29828
31241
  exports.claimDomainOwnershipQuerySlugSchema = claimDomainOwnershipQuerySlugSchema;
@@ -29834,6 +31247,17 @@ exports.claimDomainOwnershipStatus401Schema = claimDomainOwnershipStatus401Schem
29834
31247
  exports.claimDomainOwnershipStatus403Schema = claimDomainOwnershipStatus403Schema;
29835
31248
  exports.claimDomainOwnershipStatus404Schema = claimDomainOwnershipStatus404Schema;
29836
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;
29837
31261
  exports.cmpEnum = cmpEnum;
29838
31262
  exports.commitVerificationEnum = commitVerificationEnum;
29839
31263
  exports.completeRollingReleasePathIdOrNameSchema = completeRollingReleasePathIdOrNameSchema;
@@ -29933,6 +31357,19 @@ exports.createAuthTokenStatus401Schema = createAuthTokenStatus401Schema;
29933
31357
  exports.createAuthTokenStatus403Schema = createAuthTokenStatus403Schema;
29934
31358
  exports.createAuthTokenStatus404Schema = createAuthTokenStatus404Schema;
29935
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;
29936
31373
  exports.createCheckPathDeploymentIdSchema = createCheckPathDeploymentIdSchema;
29937
31374
  exports.createCheckQuerySlugSchema = createCheckQuerySlugSchema;
29938
31375
  exports.createCheckQueryTeamIdSchema = createCheckQueryTeamIdSchema;
@@ -30236,20 +31673,34 @@ exports.createSandboxesByNameForkStatus410Schema = createSandboxesByNameForkStat
30236
31673
  exports.createSandboxesByNameForkStatus422Schema = createSandboxesByNameForkStatus422Schema;
30237
31674
  exports.createSandboxesByNameForkStatus429Schema = createSandboxesByNameForkStatus429Schema;
30238
31675
  exports.createSandboxesByNameForkStatus500Schema = createSandboxesByNameForkStatus500Schema;
30239
- exports.createSandboxesQuerySlugSchema = createSandboxesQuerySlugSchema;
30240
- exports.createSandboxesQueryTeamIdSchema = createSandboxesQueryTeamIdSchema;
30241
- exports.createSandboxesResponseSchema = createSandboxesResponseSchema;
30242
- exports.createSandboxesStatus200Schema = createSandboxesStatus200Schema;
30243
- exports.createSandboxesStatus400Schema = createSandboxesStatus400Schema;
30244
- exports.createSandboxesStatus401Schema = createSandboxesStatus401Schema;
30245
- exports.createSandboxesStatus402Schema = createSandboxesStatus402Schema;
30246
- exports.createSandboxesStatus403Schema = createSandboxesStatus403Schema;
30247
- exports.createSandboxesStatus404Schema = createSandboxesStatus404Schema;
30248
- exports.createSandboxesStatus409Schema = createSandboxesStatus409Schema;
30249
- exports.createSandboxesStatus410Schema = createSandboxesStatus410Schema;
30250
- exports.createSandboxesStatus422Schema = createSandboxesStatus422Schema;
30251
- exports.createSandboxesStatus429Schema = createSandboxesStatus429Schema;
30252
- 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;
30253
31704
  exports.createSdkKeyPathProjectIdOrNameSchema = createSdkKeyPathProjectIdOrNameSchema;
30254
31705
  exports.createSdkKeyQuerySlugSchema = createSdkKeyQuerySlugSchema;
30255
31706
  exports.createSdkKeyQueryTeamIdSchema = createSdkKeyQueryTeamIdSchema;
@@ -30384,6 +31835,7 @@ exports.dangerouslyDeleteByTagsStatus410Schema = dangerouslyDeleteByTagsStatus41
30384
31835
  exports.dateFromStringSchema = dateFromStringSchema;
30385
31836
  exports.decisionEnum = decisionEnum;
30386
31837
  exports.defaultEnum = defaultEnum;
31838
+ exports.defaultModeEnum = defaultModeEnum;
30387
31839
  exports.deleteAccessGroupPathIdOrNameSchema = deleteAccessGroupPathIdOrNameSchema;
30388
31840
  exports.deleteAccessGroupProjectPathAccessGroupIdOrNameSchema = deleteAccessGroupProjectPathAccessGroupIdOrNameSchema;
30389
31841
  exports.deleteAccessGroupProjectPathProjectIdSchema = deleteAccessGroupProjectPathProjectIdSchema;
@@ -30440,6 +31892,42 @@ exports.deleteAuthTokenStatus401Schema = deleteAuthTokenStatus401Schema;
30440
31892
  exports.deleteAuthTokenStatus403Schema = deleteAuthTokenStatus403Schema;
30441
31893
  exports.deleteAuthTokenStatus404Schema = deleteAuthTokenStatus404Schema;
30442
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;
30443
31931
  exports.deleteConfigurableLogDrainPathIdSchema = deleteConfigurableLogDrainPathIdSchema;
30444
31932
  exports.deleteConfigurableLogDrainQuerySlugSchema = deleteConfigurableLogDrainQuerySlugSchema;
30445
31933
  exports.deleteConfigurableLogDrainQueryTeamIdSchema = deleteConfigurableLogDrainQueryTeamIdSchema;
@@ -30697,7 +32185,9 @@ exports.deleteRoutesStatus400Schema = deleteRoutesStatus400Schema;
30697
32185
  exports.deleteRoutesStatus401Schema = deleteRoutesStatus401Schema;
30698
32186
  exports.deleteRoutesStatus403Schema = deleteRoutesStatus403Schema;
30699
32187
  exports.deleteRoutesStatus404Schema = deleteRoutesStatus404Schema;
32188
+ exports.deleteRoutesStatus409Schema = deleteRoutesStatus409Schema;
30700
32189
  exports.deleteRoutesStatus410Schema = deleteRoutesStatus410Schema;
32190
+ exports.deleteRoutesStatus500Schema = deleteRoutesStatus500Schema;
30701
32191
  exports.deleteSandboxPathNameSchema = deleteSandboxPathNameSchema;
30702
32192
  exports.deleteSandboxQueryProjectIdSchema = deleteSandboxQueryProjectIdSchema;
30703
32193
  exports.deleteSandboxQuerySlugSchema = deleteSandboxQuerySlugSchema;
@@ -30903,6 +32393,7 @@ exports.extendSessionTimeoutStatus410Schema = extendSessionTimeoutStatus410Schem
30903
32393
  exports.extendSessionTimeoutStatus422Schema = extendSessionTimeoutStatus422Schema;
30904
32394
  exports.extendSessionTimeoutStatus429Schema = extendSessionTimeoutStatus429Schema;
30905
32395
  exports.extendSessionTimeoutStatus500Schema = extendSessionTimeoutStatus500Schema;
32396
+ exports.failureStageEnum = failureStageEnum;
30906
32397
  exports.favoritesViewPreferenceEnum = favoritesViewPreferenceEnum;
30907
32398
  exports.fileTreeSchema = fileTreeSchema;
30908
32399
  exports.fileTreeTypeEnum = fileTreeTypeEnum;
@@ -31059,6 +32550,54 @@ exports.getBulkAvailabilityStatus401Schema = getBulkAvailabilityStatus401Schema;
31059
32550
  exports.getBulkAvailabilityStatus403Schema = getBulkAvailabilityStatus403Schema;
31060
32551
  exports.getBulkAvailabilityStatus429Schema = getBulkAvailabilityStatus429Schema;
31061
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;
31062
32601
  exports.getBypassIpQueryDomainSchema = getBypassIpQueryDomainSchema;
31063
32602
  exports.getBypassIpQueryLimitSchema = getBypassIpQueryLimitSchema;
31064
32603
  exports.getBypassIpQueryOffsetSchema = getBypassIpQueryOffsetSchema;
@@ -31921,6 +33460,14 @@ exports.getRollingReleaseStatus401Schema = getRollingReleaseStatus401Schema;
31921
33460
  exports.getRollingReleaseStatus403Schema = getRollingReleaseStatus403Schema;
31922
33461
  exports.getRollingReleaseStatus404Schema = getRollingReleaseStatus404Schema;
31923
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;
31924
33471
  exports.getRouteVersionsPathProjectIdSchema = getRouteVersionsPathProjectIdSchema;
31925
33472
  exports.getRouteVersionsQuerySlugSchema = getRouteVersionsQuerySlugSchema;
31926
33473
  exports.getRouteVersionsQueryTeamIdSchema = getRouteVersionsQueryTeamIdSchema;
@@ -32154,6 +33701,7 @@ exports.getWebhooksStatus400Schema = getWebhooksStatus400Schema;
32154
33701
  exports.getWebhooksStatus401Schema = getWebhooksStatus401Schema;
32155
33702
  exports.getWebhooksStatus403Schema = getWebhooksStatus403Schema;
32156
33703
  exports.getWebhooksStatus410Schema = getWebhooksStatus410Schema;
33704
+ exports.gitCredentialSourceEnum = gitCredentialSourceEnum;
32157
33705
  exports.gitNamespacesQueryHostSchema = gitNamespacesQueryHostSchema;
32158
33706
  exports.gitNamespacesQueryProviderSchema = gitNamespacesQueryProviderSchema;
32159
33707
  exports.gitNamespacesQueryViewerMetadataSchema = gitNamespacesQueryViewerMetadataSchema;
@@ -32562,6 +34110,19 @@ exports.listRepositoryImagesStatus401Schema = listRepositoryImagesStatus401Schem
32562
34110
  exports.listRepositoryImagesStatus403Schema = listRepositoryImagesStatus403Schema;
32563
34111
  exports.listRepositoryImagesStatus404Schema = listRepositoryImagesStatus404Schema;
32564
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;
32565
34126
  exports.listRepositoryTagsPathIdOrNameSchema = listRepositoryTagsPathIdOrNameSchema;
32566
34127
  exports.listRepositoryTagsQueryCursorSchema = listRepositoryTagsQueryCursorSchema;
32567
34128
  exports.listRepositoryTagsQueryLimitSchema = listRepositoryTagsQueryLimitSchema;
@@ -32695,6 +34256,7 @@ exports.listTeamFlagsV2Status400Schema = listTeamFlagsV2Status400Schema;
32695
34256
  exports.listTeamFlagsV2Status401Schema = listTeamFlagsV2Status401Schema;
32696
34257
  exports.listTeamFlagsV2Status403Schema = listTeamFlagsV2Status403Schema;
32697
34258
  exports.listTeamFlagsV2Status410Schema = listTeamFlagsV2Status410Schema;
34259
+ exports.listUserEventsQueryEntityIdSchema = listUserEventsQueryEntityIdSchema;
32698
34260
  exports.listUserEventsQueryLimitSchema = listUserEventsQueryLimitSchema;
32699
34261
  exports.listUserEventsQueryPrincipalIdSchema = listUserEventsQueryPrincipalIdSchema;
32700
34262
  exports.listUserEventsQueryProjectIdsSchema = listUserEventsQueryProjectIdsSchema;
@@ -32758,6 +34320,7 @@ exports.orderTooExpensiveCodeEnum = orderTooExpensiveCodeEnum;
32758
34320
  exports.orderTooExpensiveSchema = orderTooExpensiveSchema;
32759
34321
  exports.orderTooExpensiveStatusEnum = orderTooExpensiveStatusEnum;
32760
34322
  exports.originEnum = originEnum;
34323
+ exports.outcomeEnum = outcomeEnum;
32761
34324
  exports.overageReasonEnum = overageReasonEnum;
32762
34325
  exports.paginationSchema = paginationSchema;
32763
34326
  exports.patchDomainPathDomainSchema = patchDomainPathDomainSchema;
@@ -32996,6 +34559,17 @@ exports.removeRecordStatus401Schema = removeRecordStatus401Schema;
32996
34559
  exports.removeRecordStatus403Schema = removeRecordStatus403Schema;
32997
34560
  exports.removeRecordStatus404Schema = removeRecordStatus404Schema;
32998
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;
32999
34573
  exports.removeTeamMemberPathTeamIdSchema = removeTeamMemberPathTeamIdSchema;
33000
34574
  exports.removeTeamMemberPathUidSchema = removeTeamMemberPathUidSchema;
33001
34575
  exports.removeTeamMemberQueryNewDefaultTeamIdSchema = removeTeamMemberQueryNewDefaultTeamIdSchema;
@@ -33017,6 +34591,33 @@ exports.renewDomainStatus403Schema = renewDomainStatus403Schema;
33017
34591
  exports.renewDomainStatus404Schema = renewDomainStatus404Schema;
33018
34592
  exports.renewDomainStatus429Schema = renewDomainStatus429Schema;
33019
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;
33020
34621
  exports.replaceDomainsByDomainRecordsPathDomainSchema = replaceDomainsByDomainRecordsPathDomainSchema;
33021
34622
  exports.replaceDomainsByDomainRecordsResponseSchema = replaceDomainsByDomainRecordsResponseSchema;
33022
34623
  exports.replaceDomainsByDomainRecordsStatus200Schema = replaceDomainsByDomainRecordsStatus200Schema;
@@ -33158,6 +34759,7 @@ exports.searchRepoStatus404Schema = searchRepoStatus404Schema;
33158
34759
  exports.searchRepoStatus410Schema = searchRepoStatus410Schema;
33159
34760
  exports.searchRepoStatus429Schema = searchRepoStatus429Schema;
33160
34761
  exports.searchRepoStatus500Schema = searchRepoStatus500Schema;
34762
+ exports.searchRepoStatus502Schema = searchRepoStatus502Schema;
33161
34763
  exports.segmentSchema = segmentSchema;
33162
34764
  exports.segmentTypeNameEnum = segmentTypeNameEnum;
33163
34765
  exports.sessionCommandSchema = sessionCommandSchema;
@@ -33252,6 +34854,7 @@ exports.submitPrepaymentBalancesStatus410Schema = submitPrepaymentBalancesStatus
33252
34854
  exports.tagDictionary = tagDictionary;
33253
34855
  exports.tagEnum = tagEnum;
33254
34856
  exports.targetEnum = targetEnum;
34857
+ exports.teamBillingPlanEnum = teamBillingPlanEnum;
33255
34858
  exports.teamDefaultPassportDeploymentTypeEnum = teamDefaultPassportDeploymentTypeEnum;
33256
34859
  exports.teamDefaultRolesTeamPermissionsEnum = teamDefaultRolesTeamPermissionsEnum;
33257
34860
  exports.teamDefaultRolesTeamRolesEnum = teamDefaultRolesTeamRolesEnum;
@@ -33371,6 +34974,19 @@ exports.updateAttackChallengeModeStatus401Schema = updateAttackChallengeModeStat
33371
34974
  exports.updateAttackChallengeModeStatus403Schema = updateAttackChallengeModeStatus403Schema;
33372
34975
  exports.updateAttackChallengeModeStatus404Schema = updateAttackChallengeModeStatus404Schema;
33373
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;
33374
34990
  exports.updateCheckPathCheckIdSchema = updateCheckPathCheckIdSchema;
33375
34991
  exports.updateCheckPathDeploymentIdSchema = updateCheckPathDeploymentIdSchema;
33376
34992
  exports.updateCheckQuerySlugSchema = updateCheckQuerySlugSchema;
@@ -33631,7 +35247,6 @@ exports.updateProjectStatus404Schema = updateProjectStatus404Schema;
33631
35247
  exports.updateProjectStatus409Schema = updateProjectStatus409Schema;
33632
35248
  exports.updateProjectStatus410Schema = updateProjectStatus410Schema;
33633
35249
  exports.updateProjectStatus428Schema = updateProjectStatus428Schema;
33634
- exports.updateProjectStatus500Schema = updateProjectStatus500Schema;
33635
35250
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema;
33636
35251
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema;
33637
35252
  exports.updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema = updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema;
@@ -33734,7 +35349,6 @@ exports.updateSessionNetworkPolicyResponseSchema = updateSessionNetworkPolicyRes
33734
35349
  exports.updateSessionNetworkPolicyStatus200Schema = updateSessionNetworkPolicyStatus200Schema;
33735
35350
  exports.updateSessionNetworkPolicyStatus400Schema = updateSessionNetworkPolicyStatus400Schema;
33736
35351
  exports.updateSessionNetworkPolicyStatus401Schema = updateSessionNetworkPolicyStatus401Schema;
33737
- exports.updateSessionNetworkPolicyStatus402Schema = updateSessionNetworkPolicyStatus402Schema;
33738
35352
  exports.updateSessionNetworkPolicyStatus403Schema = updateSessionNetworkPolicyStatus403Schema;
33739
35353
  exports.updateSessionNetworkPolicyStatus404Schema = updateSessionNetworkPolicyStatus404Schema;
33740
35354
  exports.updateSessionNetworkPolicyStatus410Schema = updateSessionNetworkPolicyStatus410Schema;
@@ -33848,6 +35462,8 @@ exports.vcrImageListItemSchema = vcrImageListItemSchema;
33848
35462
  exports.vcrImageListItemStatusEnum = vcrImageListItemStatusEnum;
33849
35463
  exports.vcrImageListSchema = vcrImageListSchema;
33850
35464
  exports.vcrRepositoryListSchema = vcrRepositoryListSchema;
35465
+ exports.vcrRepositoryPermissionListSchema = vcrRepositoryPermissionListSchema;
35466
+ exports.vcrRepositoryPermissionSchema = vcrRepositoryPermissionSchema;
33851
35467
  exports.vcrRepositorySchema = vcrRepositorySchema;
33852
35468
  exports.vcrTagKindEnum = vcrTagKindEnum;
33853
35469
  exports.vcrTagSchema = vcrTagSchema;