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/components.cjs +520 -11
- package/dist/components.d.mts +343 -10
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +503 -11
- package/dist/effect.cjs +465 -5
- package/dist/effect.d.mts +331 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +465 -5
- package/dist/index.cjs +1708 -92
- package/dist/index.d.ts +3379 -121
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1478 -77
- package/dist/schemas.cjs +1053 -73
- package/dist/schemas.d.mts +613 -41
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +829 -58
- package/dist/types.cjs +153 -9
- package/dist/types.d.mts +2407 -71
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +148 -10
- package/package.json +1 -1
package/dist/components.d.mts
CHANGED
|
@@ -2245,6 +2245,7 @@ declare function listUserEvents({ queryParams, config, }?: {
|
|
|
2245
2245
|
userId?: string;
|
|
2246
2246
|
principalId?: string;
|
|
2247
2247
|
projectIds?: string;
|
|
2248
|
+
entityId?: string;
|
|
2248
2249
|
withPayload?: string;
|
|
2249
2250
|
teamId?: string;
|
|
2250
2251
|
slug?: string;
|
|
@@ -2699,7 +2700,7 @@ declare function searchRepo({ queryParams, config, }?: {
|
|
|
2699
2700
|
queryParams?: {
|
|
2700
2701
|
query?: string;
|
|
2701
2702
|
namespaceId?: unknown;
|
|
2702
|
-
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
2703
|
+
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket" | "cursor-origin";
|
|
2703
2704
|
installationId?: string;
|
|
2704
2705
|
host?: string;
|
|
2705
2706
|
teamId?: string;
|
|
@@ -2722,7 +2723,7 @@ declare function getBillingPlans({ pathParams, queryParams, config, }?: {
|
|
|
2722
2723
|
queryParams?: {
|
|
2723
2724
|
integrationConfigurationId?: string;
|
|
2724
2725
|
metadata?: string;
|
|
2725
|
-
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice";
|
|
2726
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice" | "import-recommended-integrations";
|
|
2726
2727
|
teamId?: string;
|
|
2727
2728
|
slug?: string;
|
|
2728
2729
|
};
|
|
@@ -4384,7 +4385,7 @@ declare function listSandboxes({ queryParams, config, }?: {
|
|
|
4384
4385
|
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
|
|
4385
4386
|
* @link /v2/sandboxes
|
|
4386
4387
|
*/
|
|
4387
|
-
declare function
|
|
4388
|
+
declare function createSandboxesV2({ queryParams, config, }?: {
|
|
4388
4389
|
queryParams?: {
|
|
4389
4390
|
teamId?: string;
|
|
4390
4391
|
slug?: string;
|
|
@@ -4823,6 +4824,20 @@ declare function createSandboxesByNameFork({ pathParams, queryParams, config, }?
|
|
|
4823
4824
|
client?: typeof client;
|
|
4824
4825
|
};
|
|
4825
4826
|
}): Promise<unknown>;
|
|
4827
|
+
/**
|
|
4828
|
+
* @summary Create a named sandbox
|
|
4829
|
+
* @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.
|
|
4830
|
+
* @link /v3/sandboxes
|
|
4831
|
+
*/
|
|
4832
|
+
declare function createSandboxesV3({ queryParams, config, }?: {
|
|
4833
|
+
queryParams?: {
|
|
4834
|
+
teamId?: string;
|
|
4835
|
+
slug?: string;
|
|
4836
|
+
};
|
|
4837
|
+
config?: Partial<FetcherConfig> & {
|
|
4838
|
+
client?: typeof client;
|
|
4839
|
+
};
|
|
4840
|
+
}): Promise<unknown>;
|
|
4826
4841
|
/**
|
|
4827
4842
|
* @summary Update Attack Challenge mode
|
|
4828
4843
|
* @description Update the setting for determining if the project has Attack Challenge mode enabled.
|
|
@@ -5030,6 +5045,7 @@ declare function createSpeedInsightsToggle({ queryParams, config, }?: {
|
|
|
5030
5045
|
};
|
|
5031
5046
|
}): Promise<unknown>;
|
|
5032
5047
|
/**
|
|
5048
|
+
* @summary Get a store
|
|
5033
5049
|
* @link /storage/stores/{id}
|
|
5034
5050
|
*/
|
|
5035
5051
|
declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
@@ -5045,6 +5061,7 @@ declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
|
5045
5061
|
};
|
|
5046
5062
|
}): Promise<unknown>;
|
|
5047
5063
|
/**
|
|
5064
|
+
* @summary Create a Blob store
|
|
5048
5065
|
* @link /storage/stores/blob
|
|
5049
5066
|
*/
|
|
5050
5067
|
declare function createStorageStoresBlob({ config }?: {
|
|
@@ -5053,6 +5070,7 @@ declare function createStorageStoresBlob({ config }?: {
|
|
|
5053
5070
|
};
|
|
5054
5071
|
}): Promise<unknown>;
|
|
5055
5072
|
/**
|
|
5073
|
+
* @summary Delete a Blob store
|
|
5056
5074
|
* @link /storage/stores/blob/{id}
|
|
5057
5075
|
*/
|
|
5058
5076
|
declare function deleteStorageStoresBlobById({ pathParams, config, }?: {
|
|
@@ -5503,6 +5521,80 @@ declare function listRepositoryImages({ pathParams, queryParams, config, }?: {
|
|
|
5503
5521
|
client?: typeof client;
|
|
5504
5522
|
};
|
|
5505
5523
|
}): Promise<unknown>;
|
|
5524
|
+
/**
|
|
5525
|
+
* @summary Add a repository permission
|
|
5526
|
+
* @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
|
|
5527
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5528
|
+
*/
|
|
5529
|
+
declare function addRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5530
|
+
pathParams: {
|
|
5531
|
+
idOrName: string;
|
|
5532
|
+
};
|
|
5533
|
+
queryParams?: {
|
|
5534
|
+
projectId?: string;
|
|
5535
|
+
teamId?: string;
|
|
5536
|
+
slug?: string;
|
|
5537
|
+
};
|
|
5538
|
+
config?: Partial<FetcherConfig> & {
|
|
5539
|
+
client?: typeof client;
|
|
5540
|
+
};
|
|
5541
|
+
}): Promise<unknown>;
|
|
5542
|
+
/**
|
|
5543
|
+
* @summary Remove a repository permission
|
|
5544
|
+
* @description Revoke a team's access to a VCR repository.
|
|
5545
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5546
|
+
*/
|
|
5547
|
+
declare function removeRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5548
|
+
pathParams: {
|
|
5549
|
+
idOrName: string;
|
|
5550
|
+
};
|
|
5551
|
+
queryParams?: {
|
|
5552
|
+
projectId?: string;
|
|
5553
|
+
teamId?: string;
|
|
5554
|
+
slug?: string;
|
|
5555
|
+
};
|
|
5556
|
+
config?: Partial<FetcherConfig> & {
|
|
5557
|
+
client?: typeof client;
|
|
5558
|
+
};
|
|
5559
|
+
}): Promise<unknown>;
|
|
5560
|
+
/**
|
|
5561
|
+
* @summary List repository permissions
|
|
5562
|
+
* @description List the teams a VCR repository is shared with.
|
|
5563
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5564
|
+
*/
|
|
5565
|
+
declare function listRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5566
|
+
pathParams: {
|
|
5567
|
+
idOrName: string;
|
|
5568
|
+
};
|
|
5569
|
+
queryParams?: {
|
|
5570
|
+
projectId?: string;
|
|
5571
|
+
limit?: number;
|
|
5572
|
+
cursor?: string;
|
|
5573
|
+
teamId?: string;
|
|
5574
|
+
slug?: string;
|
|
5575
|
+
};
|
|
5576
|
+
config?: Partial<FetcherConfig> & {
|
|
5577
|
+
client?: typeof client;
|
|
5578
|
+
};
|
|
5579
|
+
}): Promise<unknown>;
|
|
5580
|
+
/**
|
|
5581
|
+
* @summary Clear all repository permissions
|
|
5582
|
+
* @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
|
|
5583
|
+
* @link /v1/vcr/repository/{idOrName}/permissions/all
|
|
5584
|
+
*/
|
|
5585
|
+
declare function clearRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5586
|
+
pathParams: {
|
|
5587
|
+
idOrName: string;
|
|
5588
|
+
};
|
|
5589
|
+
queryParams?: {
|
|
5590
|
+
projectId?: string;
|
|
5591
|
+
teamId?: string;
|
|
5592
|
+
slug?: string;
|
|
5593
|
+
};
|
|
5594
|
+
config?: Partial<FetcherConfig> & {
|
|
5595
|
+
client?: typeof client;
|
|
5596
|
+
};
|
|
5597
|
+
}): Promise<unknown>;
|
|
5506
5598
|
/**
|
|
5507
5599
|
* @summary List repository tags
|
|
5508
5600
|
* @description List a repository's tags.
|
|
@@ -5582,6 +5674,201 @@ declare function deleteRepositoryImage({ pathParams, queryParams, config, }?: {
|
|
|
5582
5674
|
client?: typeof client;
|
|
5583
5675
|
};
|
|
5584
5676
|
}): Promise<unknown>;
|
|
5677
|
+
/**
|
|
5678
|
+
* @summary Check registry API version support
|
|
5679
|
+
* @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.
|
|
5680
|
+
* @link /v2/
|
|
5681
|
+
*/
|
|
5682
|
+
declare function getRoot({ config }?: {
|
|
5683
|
+
config?: Partial<FetcherConfig> & {
|
|
5684
|
+
client?: typeof client;
|
|
5685
|
+
};
|
|
5686
|
+
}): Promise<unknown>;
|
|
5687
|
+
/**
|
|
5688
|
+
* @summary Download a blob
|
|
5689
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
|
|
5690
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5691
|
+
*/
|
|
5692
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5693
|
+
pathParams: {
|
|
5694
|
+
teamSlug: string;
|
|
5695
|
+
projectSlug: string;
|
|
5696
|
+
repositoryName: string;
|
|
5697
|
+
digest: string;
|
|
5698
|
+
};
|
|
5699
|
+
config?: Partial<FetcherConfig> & {
|
|
5700
|
+
client?: typeof client;
|
|
5701
|
+
};
|
|
5702
|
+
}): Promise<unknown>;
|
|
5703
|
+
/**
|
|
5704
|
+
* @summary Delete a blob
|
|
5705
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
|
|
5706
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5707
|
+
*/
|
|
5708
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5709
|
+
pathParams: {
|
|
5710
|
+
teamSlug: string;
|
|
5711
|
+
projectSlug: string;
|
|
5712
|
+
repositoryName: string;
|
|
5713
|
+
digest: string;
|
|
5714
|
+
};
|
|
5715
|
+
config?: Partial<FetcherConfig> & {
|
|
5716
|
+
client?: typeof client;
|
|
5717
|
+
};
|
|
5718
|
+
}): Promise<unknown>;
|
|
5719
|
+
/**
|
|
5720
|
+
* @summary Get blob upload status
|
|
5721
|
+
* @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.
|
|
5722
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5723
|
+
*/
|
|
5724
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5725
|
+
pathParams: {
|
|
5726
|
+
teamSlug: string;
|
|
5727
|
+
projectSlug: string;
|
|
5728
|
+
repositoryName: string;
|
|
5729
|
+
uuid: string;
|
|
5730
|
+
};
|
|
5731
|
+
config?: Partial<FetcherConfig> & {
|
|
5732
|
+
client?: typeof client;
|
|
5733
|
+
};
|
|
5734
|
+
}): Promise<unknown>;
|
|
5735
|
+
/**
|
|
5736
|
+
* @summary Cancel a blob upload
|
|
5737
|
+
* @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.
|
|
5738
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5739
|
+
*/
|
|
5740
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5741
|
+
pathParams: {
|
|
5742
|
+
teamSlug: string;
|
|
5743
|
+
projectSlug: string;
|
|
5744
|
+
repositoryName: string;
|
|
5745
|
+
uuid: string;
|
|
5746
|
+
};
|
|
5747
|
+
config?: Partial<FetcherConfig> & {
|
|
5748
|
+
client?: typeof client;
|
|
5749
|
+
};
|
|
5750
|
+
}): Promise<unknown>;
|
|
5751
|
+
/**
|
|
5752
|
+
* @summary Upload a blob chunk
|
|
5753
|
+
* @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.
|
|
5754
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5755
|
+
*/
|
|
5756
|
+
declare function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5757
|
+
pathParams: {
|
|
5758
|
+
teamSlug: string;
|
|
5759
|
+
projectSlug: string;
|
|
5760
|
+
repositoryName: string;
|
|
5761
|
+
uuid: string;
|
|
5762
|
+
};
|
|
5763
|
+
config?: Partial<FetcherConfig> & {
|
|
5764
|
+
client?: typeof client;
|
|
5765
|
+
};
|
|
5766
|
+
}): Promise<unknown>;
|
|
5767
|
+
/**
|
|
5768
|
+
* @summary Complete a blob upload
|
|
5769
|
+
* @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.
|
|
5770
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5771
|
+
*/
|
|
5772
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config, }?: {
|
|
5773
|
+
pathParams: {
|
|
5774
|
+
teamSlug: string;
|
|
5775
|
+
projectSlug: string;
|
|
5776
|
+
repositoryName: string;
|
|
5777
|
+
uuid: string;
|
|
5778
|
+
};
|
|
5779
|
+
queryParams?: {
|
|
5780
|
+
digest?: string;
|
|
5781
|
+
};
|
|
5782
|
+
config?: Partial<FetcherConfig> & {
|
|
5783
|
+
client?: typeof client;
|
|
5784
|
+
};
|
|
5785
|
+
}): Promise<unknown>;
|
|
5786
|
+
/**
|
|
5787
|
+
* @summary Start a blob upload
|
|
5788
|
+
* @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.
|
|
5789
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
|
|
5790
|
+
*/
|
|
5791
|
+
declare function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config, }?: {
|
|
5792
|
+
pathParams: {
|
|
5793
|
+
teamSlug: string;
|
|
5794
|
+
projectSlug: string;
|
|
5795
|
+
repositoryName: string;
|
|
5796
|
+
};
|
|
5797
|
+
queryParams?: {
|
|
5798
|
+
mount?: string;
|
|
5799
|
+
from?: string;
|
|
5800
|
+
};
|
|
5801
|
+
config?: Partial<FetcherConfig> & {
|
|
5802
|
+
client?: typeof client;
|
|
5803
|
+
};
|
|
5804
|
+
}): Promise<unknown>;
|
|
5805
|
+
/**
|
|
5806
|
+
* @summary Push an image manifest
|
|
5807
|
+
* @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.
|
|
5808
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5809
|
+
*/
|
|
5810
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5811
|
+
pathParams: {
|
|
5812
|
+
teamSlug: string;
|
|
5813
|
+
projectSlug: string;
|
|
5814
|
+
repositoryName: string;
|
|
5815
|
+
reference: string;
|
|
5816
|
+
};
|
|
5817
|
+
config?: Partial<FetcherConfig> & {
|
|
5818
|
+
client?: typeof client;
|
|
5819
|
+
};
|
|
5820
|
+
}): Promise<unknown>;
|
|
5821
|
+
/**
|
|
5822
|
+
* @summary Pull an image manifest
|
|
5823
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
|
|
5824
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5825
|
+
*/
|
|
5826
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5827
|
+
pathParams: {
|
|
5828
|
+
teamSlug: string;
|
|
5829
|
+
projectSlug: string;
|
|
5830
|
+
repositoryName: string;
|
|
5831
|
+
reference: string;
|
|
5832
|
+
};
|
|
5833
|
+
config?: Partial<FetcherConfig> & {
|
|
5834
|
+
client?: typeof client;
|
|
5835
|
+
};
|
|
5836
|
+
}): Promise<unknown>;
|
|
5837
|
+
/**
|
|
5838
|
+
* @summary Delete an image manifest
|
|
5839
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
|
|
5840
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5841
|
+
*/
|
|
5842
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5843
|
+
pathParams: {
|
|
5844
|
+
teamSlug: string;
|
|
5845
|
+
projectSlug: string;
|
|
5846
|
+
repositoryName: string;
|
|
5847
|
+
reference: string;
|
|
5848
|
+
};
|
|
5849
|
+
config?: Partial<FetcherConfig> & {
|
|
5850
|
+
client?: typeof client;
|
|
5851
|
+
};
|
|
5852
|
+
}): Promise<unknown>;
|
|
5853
|
+
/**
|
|
5854
|
+
* @summary List image tags
|
|
5855
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
|
|
5856
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
|
|
5857
|
+
*/
|
|
5858
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config, }?: {
|
|
5859
|
+
pathParams: {
|
|
5860
|
+
teamSlug: string;
|
|
5861
|
+
projectSlug: string;
|
|
5862
|
+
repositoryName: string;
|
|
5863
|
+
};
|
|
5864
|
+
queryParams?: {
|
|
5865
|
+
n?: number;
|
|
5866
|
+
last?: string;
|
|
5867
|
+
};
|
|
5868
|
+
config?: Partial<FetcherConfig> & {
|
|
5869
|
+
client?: typeof client;
|
|
5870
|
+
};
|
|
5871
|
+
}): Promise<unknown>;
|
|
5585
5872
|
/**
|
|
5586
5873
|
* @link /web/insights/toggle
|
|
5587
5874
|
*/
|
|
@@ -6259,7 +6546,7 @@ declare const operationsByPath: {
|
|
|
6259
6546
|
"POST /v1/projects/{projectId}/pause": typeof pauseProject;
|
|
6260
6547
|
"POST /v1/projects/{projectId}/unpause": typeof unpauseProject;
|
|
6261
6548
|
"GET /v2/sandboxes": typeof listSandboxes;
|
|
6262
|
-
"POST /v2/sandboxes": typeof
|
|
6549
|
+
"POST /v2/sandboxes": typeof createSandboxesV2;
|
|
6263
6550
|
"GET /v2/sandboxes/drives": typeof listDrives;
|
|
6264
6551
|
"POST /v2/sandboxes/drives/{name}": typeof getOrCreateDrive;
|
|
6265
6552
|
"DELETE /v2/sandboxes/drives/{name}": typeof deleteDrive;
|
|
@@ -6284,6 +6571,7 @@ declare const operationsByPath: {
|
|
|
6284
6571
|
"POST /v2/sandboxes/sessions/{sessionId}/fs/write": typeof writeSessionFiles;
|
|
6285
6572
|
"POST /v2/sandboxes/sessions/{sessionId}/snapshot": typeof createSessionSnapshot;
|
|
6286
6573
|
"POST /v2/sandboxes/{name}/fork": typeof createSandboxesByNameFork;
|
|
6574
|
+
"POST /v3/sandboxes": typeof createSandboxesV3;
|
|
6287
6575
|
"POST /v1/security/attack-mode": typeof updateAttackChallengeMode;
|
|
6288
6576
|
"GET /v1/security/firewall/config": typeof getSecurityFirewallConfig;
|
|
6289
6577
|
"PUT /v1/security/firewall/config": typeof putFirewallConfig;
|
|
@@ -6330,10 +6618,26 @@ declare const operationsByPath: {
|
|
|
6330
6618
|
"GET /v1/vcr/repository/{idOrName}": typeof getRepository;
|
|
6331
6619
|
"DELETE /v1/vcr/repository/{idOrName}": typeof deleteRepository;
|
|
6332
6620
|
"GET /v1/vcr/repository/{idOrName}/images": typeof listRepositoryImages;
|
|
6621
|
+
"POST /v1/vcr/repository/{idOrName}/permissions": typeof addRepositoryPermission;
|
|
6622
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions": typeof removeRepositoryPermission;
|
|
6623
|
+
"GET /v1/vcr/repository/{idOrName}/permissions": typeof listRepositoryPermissions;
|
|
6624
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions/all": typeof clearRepositoryPermissions;
|
|
6333
6625
|
"GET /v1/vcr/repository/{idOrName}/tags": typeof listRepositoryTags;
|
|
6334
6626
|
"GET /v1/vcr/repository/{idOrName}/tags/{tag}": typeof getRepositoryTag;
|
|
6335
6627
|
"GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": typeof getRepositoryImage;
|
|
6336
6628
|
"DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": typeof deleteRepositoryImage;
|
|
6629
|
+
"GET /v2/": typeof getRoot;
|
|
6630
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6631
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6632
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6633
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6634
|
+
"PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6635
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6636
|
+
"POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
6637
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6638
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6639
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6640
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6337
6641
|
"POST /web/insights/toggle": typeof createWebInsightsToggle;
|
|
6338
6642
|
"GET /v1/query/web-analytics/visits/aggregate": typeof aggregatePageviews;
|
|
6339
6643
|
"GET /v1/query/web-analytics/events/aggregate": typeof aggregateEvents;
|
|
@@ -6690,7 +6994,7 @@ declare const operationsByTag: {
|
|
|
6690
6994
|
};
|
|
6691
6995
|
sandboxes: {
|
|
6692
6996
|
listSandboxes: typeof listSandboxes;
|
|
6693
|
-
|
|
6997
|
+
createSandboxesV2: typeof createSandboxesV2;
|
|
6694
6998
|
listDrives: typeof listDrives;
|
|
6695
6999
|
getOrCreateDrive: typeof getOrCreateDrive;
|
|
6696
7000
|
deleteDrive: typeof deleteDrive;
|
|
@@ -6715,6 +7019,7 @@ declare const operationsByTag: {
|
|
|
6715
7019
|
writeSessionFiles: typeof writeSessionFiles;
|
|
6716
7020
|
createSessionSnapshot: typeof createSessionSnapshot;
|
|
6717
7021
|
createSandboxesByNameFork: typeof createSandboxesByNameFork;
|
|
7022
|
+
createSandboxesV3: typeof createSandboxesV3;
|
|
6718
7023
|
};
|
|
6719
7024
|
security: {
|
|
6720
7025
|
updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
@@ -6731,6 +7036,11 @@ declare const operationsByTag: {
|
|
|
6731
7036
|
getSecurityFirewallEvents: typeof getSecurityFirewallEvents;
|
|
6732
7037
|
generateFirewallRule: typeof generateFirewallRule;
|
|
6733
7038
|
};
|
|
7039
|
+
storage: {
|
|
7040
|
+
getStorageStoresById: typeof getStorageStoresById;
|
|
7041
|
+
createStorageStoresBlob: typeof createStorageStoresBlob;
|
|
7042
|
+
deleteStorageStoresBlobById: typeof deleteStorageStoresBlobById;
|
|
7043
|
+
};
|
|
6734
7044
|
teams: {
|
|
6735
7045
|
getTeamMembers: typeof getTeamMembers;
|
|
6736
7046
|
inviteUserToTeam: typeof inviteUserToTeam;
|
|
@@ -6755,10 +7065,26 @@ declare const operationsByTag: {
|
|
|
6755
7065
|
getRepository: typeof getRepository;
|
|
6756
7066
|
deleteRepository: typeof deleteRepository;
|
|
6757
7067
|
listRepositoryImages: typeof listRepositoryImages;
|
|
7068
|
+
addRepositoryPermission: typeof addRepositoryPermission;
|
|
7069
|
+
removeRepositoryPermission: typeof removeRepositoryPermission;
|
|
7070
|
+
listRepositoryPermissions: typeof listRepositoryPermissions;
|
|
7071
|
+
clearRepositoryPermissions: typeof clearRepositoryPermissions;
|
|
6758
7072
|
listRepositoryTags: typeof listRepositoryTags;
|
|
6759
7073
|
getRepositoryTag: typeof getRepositoryTag;
|
|
6760
7074
|
getRepositoryImage: typeof getRepositoryImage;
|
|
6761
7075
|
deleteRepositoryImage: typeof deleteRepositoryImage;
|
|
7076
|
+
getRoot: typeof getRoot;
|
|
7077
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7078
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7079
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7080
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7081
|
+
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7082
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7083
|
+
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads: typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
7084
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7085
|
+
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7086
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7087
|
+
getByTeamSlugByProjectSlugByRepositoryNameTagsList: typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6762
7088
|
};
|
|
6763
7089
|
webAnalytics: {
|
|
6764
7090
|
aggregatePageviews: typeof aggregatePageviews;
|
|
@@ -6957,7 +7283,7 @@ declare const tagDictionary: {
|
|
|
6957
7283
|
};
|
|
6958
7284
|
readonly sandboxes: {
|
|
6959
7285
|
readonly GET: readonly ["listSandboxes", "listDrives", "listSessionSnapshots", "getSessionSnapshot", "listSessions", "getSession", "getNamedSandbox", "listSessionCommands", "getSessionCommand", "getSessionCommandLogs"];
|
|
6960
|
-
readonly POST: readonly ["
|
|
7286
|
+
readonly POST: readonly ["createSandboxesV2", "getOrCreateDrive", "runSessionCommand", "killSessionCommand", "stopSession", "extendSessionTimeout", "updateSessionNetworkPolicy", "readSessionFile", "createSessionDirectory", "writeSessionFiles", "createSessionSnapshot", "createSandboxesByNameFork", "createSandboxesV3"];
|
|
6961
7287
|
readonly DELETE: readonly ["deleteDrive", "deleteSessionSnapshot", "deleteSandbox"];
|
|
6962
7288
|
readonly PATCH: readonly ["updateSandbox"];
|
|
6963
7289
|
};
|
|
@@ -6968,6 +7294,11 @@ declare const tagDictionary: {
|
|
|
6968
7294
|
readonly PATCH: readonly ["updateFirewallConfig"];
|
|
6969
7295
|
readonly DELETE: readonly ["deleteSecurityFirewallConfigByConfigVersion", "removeBypassIp"];
|
|
6970
7296
|
};
|
|
7297
|
+
readonly storage: {
|
|
7298
|
+
readonly GET: readonly ["getStorageStoresById"];
|
|
7299
|
+
readonly POST: readonly ["createStorageStoresBlob"];
|
|
7300
|
+
readonly DELETE: readonly ["deleteStorageStoresBlobById"];
|
|
7301
|
+
};
|
|
6971
7302
|
readonly teams: {
|
|
6972
7303
|
readonly GET: readonly ["getTeamMembers", "getTeamAccessRequest", "getTeam", "getTeams"];
|
|
6973
7304
|
readonly POST: readonly ["inviteUserToTeam", "requestAccessToTeam", "joinTeam", "createTeam", "postTeamDsyncRoles"];
|
|
@@ -6975,9 +7306,11 @@ declare const tagDictionary: {
|
|
|
6975
7306
|
readonly DELETE: readonly ["removeTeamMember", "deleteTeam", "deleteTeamInviteCode", "deleteMicrofrontendsGroup"];
|
|
6976
7307
|
};
|
|
6977
7308
|
readonly vcr: {
|
|
6978
|
-
readonly POST: readonly ["createRepository"];
|
|
6979
|
-
readonly GET: readonly ["listRepositories", "getRepository", "listRepositoryImages", "listRepositoryTags", "getRepositoryTag", "getRepositoryImage"];
|
|
6980
|
-
readonly DELETE: readonly ["deleteRepository", "deleteRepositoryImage"];
|
|
7309
|
+
readonly POST: readonly ["createRepository", "addRepositoryPermission", "createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads"];
|
|
7310
|
+
readonly GET: readonly ["listRepositories", "getRepository", "listRepositoryImages", "listRepositoryPermissions", "listRepositoryTags", "getRepositoryTag", "getRepositoryImage", "getRoot", "getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest", "getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference", "getByTeamSlugByProjectSlugByRepositoryNameTagsList"];
|
|
7311
|
+
readonly DELETE: readonly ["deleteRepository", "removeRepositoryPermission", "clearRepositoryPermissions", "deleteRepositoryImage", "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest", "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"];
|
|
7312
|
+
readonly PATCH: readonly ["updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid"];
|
|
7313
|
+
readonly PUT: readonly ["replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"];
|
|
6981
7314
|
};
|
|
6982
7315
|
readonly webAnalytics: {
|
|
6983
7316
|
readonly GET: readonly ["aggregatePageviews", "aggregateEvents", "countPageviews", "countEvents"];
|
|
@@ -7001,5 +7334,5 @@ declare const tagDictionary: {
|
|
|
7001
7334
|
};
|
|
7002
7335
|
};
|
|
7003
7336
|
|
|
7004
|
-
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository,
|
|
7337
|
+
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRepositoryPermission, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, clearRepositoryPermissions, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxesByNameFork, createSandboxesV2, createSandboxesV3, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, getByTeamSlugByProjectSlugByRepositoryNameTagsList, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRoot, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryPermissions, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeRepositoryPermission, removeTeamMember, renewDomain, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAttackChallengeMode, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|
|
7005
7338
|
//# sourceMappingURL=components.d.mts.map
|