vercel-api-js 1.8.3 → 1.9.1
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-ma60hj42.cjs +9423 -0
- package/dist/components-nbgupmvz.js +9046 -0
- package/dist/components.cjs +378 -8910
- package/dist/components.d.mts +345 -38
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -8554
- package/dist/effect.cjs +3 -7862
- package/dist/effect.d.mts +42 -6005
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -7860
- package/dist/index.cjs +4490 -33808
- package/dist/index.d.ts +3470 -123
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +5 -29519
- package/dist/schemas-dkkesx73.cjs +23025 -0
- package/dist/schemas-ffrql7rd.js +18732 -0
- package/dist/schemas.cjs +4275 -22009
- package/dist/schemas.d.mts +817 -216
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -17929
- package/dist/types.cjs +174 -9
- package/dist/types.d.mts +2468 -72
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +168 -10
- package/package.json +5 -5
package/dist/components.d.mts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ListEventTypesResponse } from './types.mjs';
|
|
2
|
+
|
|
1
3
|
type RequestInit = {
|
|
2
4
|
body?: string | FormData | undefined;
|
|
3
5
|
headers?: Record<string, string> | undefined;
|
|
@@ -33,34 +35,6 @@ type FetcherOptions<TBody, THeaders, TQueryParams, TPathParams> = {
|
|
|
33
35
|
} & FetcherConfig;
|
|
34
36
|
declare function client<TData, TError, TBody, THeaders, TQueryParams, TPathParams>({ url, method, body, headers, queryParams, signal, baseUrl, token, fetchImpl, }: FetcherOptions<TBody, THeaders, TQueryParams, TPathParams>): Promise<TData>;
|
|
35
37
|
|
|
36
|
-
declare const nameEnum: {
|
|
37
|
-
readonly string: "string";
|
|
38
|
-
};
|
|
39
|
-
type NameEnumKey = (typeof nameEnum)[keyof typeof nameEnum];
|
|
40
|
-
/**
|
|
41
|
-
* @description Response returned by the List Event Types endpoint.
|
|
42
|
-
* @type object
|
|
43
|
-
*/
|
|
44
|
-
type ListEventTypesResponse = {
|
|
45
|
-
/**
|
|
46
|
-
* @type array
|
|
47
|
-
*/
|
|
48
|
-
types: unknown[];
|
|
49
|
-
/**
|
|
50
|
-
* @type array
|
|
51
|
-
*/
|
|
52
|
-
categories: {
|
|
53
|
-
/**
|
|
54
|
-
* @type string
|
|
55
|
-
*/
|
|
56
|
-
name: NameEnumKey;
|
|
57
|
-
/**
|
|
58
|
-
* @type string
|
|
59
|
-
*/
|
|
60
|
-
label: string;
|
|
61
|
-
}[];
|
|
62
|
-
};
|
|
63
|
-
|
|
64
38
|
/**
|
|
65
39
|
* Generated by Kubb (https://kubb.dev/).
|
|
66
40
|
* Do not edit manually.
|
|
@@ -2245,6 +2219,7 @@ declare function listUserEvents({ queryParams, config, }?: {
|
|
|
2245
2219
|
userId?: string;
|
|
2246
2220
|
principalId?: string;
|
|
2247
2221
|
projectIds?: string;
|
|
2222
|
+
entityId?: string;
|
|
2248
2223
|
withPayload?: string;
|
|
2249
2224
|
teamId?: string;
|
|
2250
2225
|
slug?: string;
|
|
@@ -2699,7 +2674,7 @@ declare function searchRepo({ queryParams, config, }?: {
|
|
|
2699
2674
|
queryParams?: {
|
|
2700
2675
|
query?: string;
|
|
2701
2676
|
namespaceId?: unknown;
|
|
2702
|
-
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
2677
|
+
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket" | "cursor-origin";
|
|
2703
2678
|
installationId?: string;
|
|
2704
2679
|
host?: string;
|
|
2705
2680
|
teamId?: string;
|
|
@@ -2722,7 +2697,7 @@ declare function getBillingPlans({ pathParams, queryParams, config, }?: {
|
|
|
2722
2697
|
queryParams?: {
|
|
2723
2698
|
integrationConfigurationId?: string;
|
|
2724
2699
|
metadata?: string;
|
|
2725
|
-
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice";
|
|
2700
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice" | "import-recommended-integrations";
|
|
2726
2701
|
teamId?: string;
|
|
2727
2702
|
slug?: string;
|
|
2728
2703
|
};
|
|
@@ -4384,7 +4359,7 @@ declare function listSandboxes({ queryParams, config, }?: {
|
|
|
4384
4359
|
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
|
|
4385
4360
|
* @link /v2/sandboxes
|
|
4386
4361
|
*/
|
|
4387
|
-
declare function
|
|
4362
|
+
declare function createSandboxesV2({ queryParams, config, }?: {
|
|
4388
4363
|
queryParams?: {
|
|
4389
4364
|
teamId?: string;
|
|
4390
4365
|
slug?: string;
|
|
@@ -4823,6 +4798,20 @@ declare function createSandboxesByNameFork({ pathParams, queryParams, config, }?
|
|
|
4823
4798
|
client?: typeof client;
|
|
4824
4799
|
};
|
|
4825
4800
|
}): Promise<unknown>;
|
|
4801
|
+
/**
|
|
4802
|
+
* @summary Create a named sandbox
|
|
4803
|
+
* @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.
|
|
4804
|
+
* @link /v3/sandboxes
|
|
4805
|
+
*/
|
|
4806
|
+
declare function createSandboxesV3({ queryParams, config, }?: {
|
|
4807
|
+
queryParams?: {
|
|
4808
|
+
teamId?: string;
|
|
4809
|
+
slug?: string;
|
|
4810
|
+
};
|
|
4811
|
+
config?: Partial<FetcherConfig> & {
|
|
4812
|
+
client?: typeof client;
|
|
4813
|
+
};
|
|
4814
|
+
}): Promise<unknown>;
|
|
4826
4815
|
/**
|
|
4827
4816
|
* @summary Update Attack Challenge mode
|
|
4828
4817
|
* @description Update the setting for determining if the project has Attack Challenge mode enabled.
|
|
@@ -5030,6 +5019,7 @@ declare function createSpeedInsightsToggle({ queryParams, config, }?: {
|
|
|
5030
5019
|
};
|
|
5031
5020
|
}): Promise<unknown>;
|
|
5032
5021
|
/**
|
|
5022
|
+
* @summary Get a store
|
|
5033
5023
|
* @link /storage/stores/{id}
|
|
5034
5024
|
*/
|
|
5035
5025
|
declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
@@ -5045,6 +5035,7 @@ declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
|
5045
5035
|
};
|
|
5046
5036
|
}): Promise<unknown>;
|
|
5047
5037
|
/**
|
|
5038
|
+
* @summary Create a Blob store
|
|
5048
5039
|
* @link /storage/stores/blob
|
|
5049
5040
|
*/
|
|
5050
5041
|
declare function createStorageStoresBlob({ config }?: {
|
|
@@ -5053,6 +5044,7 @@ declare function createStorageStoresBlob({ config }?: {
|
|
|
5053
5044
|
};
|
|
5054
5045
|
}): Promise<unknown>;
|
|
5055
5046
|
/**
|
|
5047
|
+
* @summary Delete a Blob store
|
|
5056
5048
|
* @link /storage/stores/blob/{id}
|
|
5057
5049
|
*/
|
|
5058
5050
|
declare function deleteStorageStoresBlobById({ pathParams, config, }?: {
|
|
@@ -5503,6 +5495,80 @@ declare function listRepositoryImages({ pathParams, queryParams, config, }?: {
|
|
|
5503
5495
|
client?: typeof client;
|
|
5504
5496
|
};
|
|
5505
5497
|
}): Promise<unknown>;
|
|
5498
|
+
/**
|
|
5499
|
+
* @summary Add a repository permission
|
|
5500
|
+
* @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
|
|
5501
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5502
|
+
*/
|
|
5503
|
+
declare function addRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5504
|
+
pathParams: {
|
|
5505
|
+
idOrName: string;
|
|
5506
|
+
};
|
|
5507
|
+
queryParams?: {
|
|
5508
|
+
projectId?: string;
|
|
5509
|
+
teamId?: string;
|
|
5510
|
+
slug?: string;
|
|
5511
|
+
};
|
|
5512
|
+
config?: Partial<FetcherConfig> & {
|
|
5513
|
+
client?: typeof client;
|
|
5514
|
+
};
|
|
5515
|
+
}): Promise<unknown>;
|
|
5516
|
+
/**
|
|
5517
|
+
* @summary Remove a repository permission
|
|
5518
|
+
* @description Revoke a team's access to a VCR repository.
|
|
5519
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5520
|
+
*/
|
|
5521
|
+
declare function removeRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5522
|
+
pathParams: {
|
|
5523
|
+
idOrName: string;
|
|
5524
|
+
};
|
|
5525
|
+
queryParams?: {
|
|
5526
|
+
projectId?: string;
|
|
5527
|
+
teamId?: string;
|
|
5528
|
+
slug?: string;
|
|
5529
|
+
};
|
|
5530
|
+
config?: Partial<FetcherConfig> & {
|
|
5531
|
+
client?: typeof client;
|
|
5532
|
+
};
|
|
5533
|
+
}): Promise<unknown>;
|
|
5534
|
+
/**
|
|
5535
|
+
* @summary List repository permissions
|
|
5536
|
+
* @description List the teams a VCR repository is shared with.
|
|
5537
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5538
|
+
*/
|
|
5539
|
+
declare function listRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5540
|
+
pathParams: {
|
|
5541
|
+
idOrName: string;
|
|
5542
|
+
};
|
|
5543
|
+
queryParams?: {
|
|
5544
|
+
projectId?: string;
|
|
5545
|
+
limit?: number;
|
|
5546
|
+
cursor?: string;
|
|
5547
|
+
teamId?: string;
|
|
5548
|
+
slug?: string;
|
|
5549
|
+
};
|
|
5550
|
+
config?: Partial<FetcherConfig> & {
|
|
5551
|
+
client?: typeof client;
|
|
5552
|
+
};
|
|
5553
|
+
}): Promise<unknown>;
|
|
5554
|
+
/**
|
|
5555
|
+
* @summary Clear all repository permissions
|
|
5556
|
+
* @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
|
|
5557
|
+
* @link /v1/vcr/repository/{idOrName}/permissions/all
|
|
5558
|
+
*/
|
|
5559
|
+
declare function clearRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5560
|
+
pathParams: {
|
|
5561
|
+
idOrName: string;
|
|
5562
|
+
};
|
|
5563
|
+
queryParams?: {
|
|
5564
|
+
projectId?: string;
|
|
5565
|
+
teamId?: string;
|
|
5566
|
+
slug?: string;
|
|
5567
|
+
};
|
|
5568
|
+
config?: Partial<FetcherConfig> & {
|
|
5569
|
+
client?: typeof client;
|
|
5570
|
+
};
|
|
5571
|
+
}): Promise<unknown>;
|
|
5506
5572
|
/**
|
|
5507
5573
|
* @summary List repository tags
|
|
5508
5574
|
* @description List a repository's tags.
|
|
@@ -5582,6 +5648,201 @@ declare function deleteRepositoryImage({ pathParams, queryParams, config, }?: {
|
|
|
5582
5648
|
client?: typeof client;
|
|
5583
5649
|
};
|
|
5584
5650
|
}): Promise<unknown>;
|
|
5651
|
+
/**
|
|
5652
|
+
* @summary Check registry API version support
|
|
5653
|
+
* @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.
|
|
5654
|
+
* @link /v2/
|
|
5655
|
+
*/
|
|
5656
|
+
declare function getRoot({ config }?: {
|
|
5657
|
+
config?: Partial<FetcherConfig> & {
|
|
5658
|
+
client?: typeof client;
|
|
5659
|
+
};
|
|
5660
|
+
}): Promise<unknown>;
|
|
5661
|
+
/**
|
|
5662
|
+
* @summary Download a blob
|
|
5663
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
|
|
5664
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5665
|
+
*/
|
|
5666
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5667
|
+
pathParams: {
|
|
5668
|
+
teamSlug: string;
|
|
5669
|
+
projectSlug: string;
|
|
5670
|
+
repositoryName: string;
|
|
5671
|
+
digest: string;
|
|
5672
|
+
};
|
|
5673
|
+
config?: Partial<FetcherConfig> & {
|
|
5674
|
+
client?: typeof client;
|
|
5675
|
+
};
|
|
5676
|
+
}): Promise<unknown>;
|
|
5677
|
+
/**
|
|
5678
|
+
* @summary Delete a blob
|
|
5679
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
|
|
5680
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5681
|
+
*/
|
|
5682
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5683
|
+
pathParams: {
|
|
5684
|
+
teamSlug: string;
|
|
5685
|
+
projectSlug: string;
|
|
5686
|
+
repositoryName: string;
|
|
5687
|
+
digest: string;
|
|
5688
|
+
};
|
|
5689
|
+
config?: Partial<FetcherConfig> & {
|
|
5690
|
+
client?: typeof client;
|
|
5691
|
+
};
|
|
5692
|
+
}): Promise<unknown>;
|
|
5693
|
+
/**
|
|
5694
|
+
* @summary Get blob upload status
|
|
5695
|
+
* @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.
|
|
5696
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5697
|
+
*/
|
|
5698
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5699
|
+
pathParams: {
|
|
5700
|
+
teamSlug: string;
|
|
5701
|
+
projectSlug: string;
|
|
5702
|
+
repositoryName: string;
|
|
5703
|
+
uuid: string;
|
|
5704
|
+
};
|
|
5705
|
+
config?: Partial<FetcherConfig> & {
|
|
5706
|
+
client?: typeof client;
|
|
5707
|
+
};
|
|
5708
|
+
}): Promise<unknown>;
|
|
5709
|
+
/**
|
|
5710
|
+
* @summary Cancel a blob upload
|
|
5711
|
+
* @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.
|
|
5712
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5713
|
+
*/
|
|
5714
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5715
|
+
pathParams: {
|
|
5716
|
+
teamSlug: string;
|
|
5717
|
+
projectSlug: string;
|
|
5718
|
+
repositoryName: string;
|
|
5719
|
+
uuid: string;
|
|
5720
|
+
};
|
|
5721
|
+
config?: Partial<FetcherConfig> & {
|
|
5722
|
+
client?: typeof client;
|
|
5723
|
+
};
|
|
5724
|
+
}): Promise<unknown>;
|
|
5725
|
+
/**
|
|
5726
|
+
* @summary Upload a blob chunk
|
|
5727
|
+
* @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.
|
|
5728
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5729
|
+
*/
|
|
5730
|
+
declare function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5731
|
+
pathParams: {
|
|
5732
|
+
teamSlug: string;
|
|
5733
|
+
projectSlug: string;
|
|
5734
|
+
repositoryName: string;
|
|
5735
|
+
uuid: string;
|
|
5736
|
+
};
|
|
5737
|
+
config?: Partial<FetcherConfig> & {
|
|
5738
|
+
client?: typeof client;
|
|
5739
|
+
};
|
|
5740
|
+
}): Promise<unknown>;
|
|
5741
|
+
/**
|
|
5742
|
+
* @summary Complete a blob upload
|
|
5743
|
+
* @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.
|
|
5744
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5745
|
+
*/
|
|
5746
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config, }?: {
|
|
5747
|
+
pathParams: {
|
|
5748
|
+
teamSlug: string;
|
|
5749
|
+
projectSlug: string;
|
|
5750
|
+
repositoryName: string;
|
|
5751
|
+
uuid: string;
|
|
5752
|
+
};
|
|
5753
|
+
queryParams?: {
|
|
5754
|
+
digest?: string;
|
|
5755
|
+
};
|
|
5756
|
+
config?: Partial<FetcherConfig> & {
|
|
5757
|
+
client?: typeof client;
|
|
5758
|
+
};
|
|
5759
|
+
}): Promise<unknown>;
|
|
5760
|
+
/**
|
|
5761
|
+
* @summary Start a blob upload
|
|
5762
|
+
* @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.
|
|
5763
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
|
|
5764
|
+
*/
|
|
5765
|
+
declare function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config, }?: {
|
|
5766
|
+
pathParams: {
|
|
5767
|
+
teamSlug: string;
|
|
5768
|
+
projectSlug: string;
|
|
5769
|
+
repositoryName: string;
|
|
5770
|
+
};
|
|
5771
|
+
queryParams?: {
|
|
5772
|
+
mount?: string;
|
|
5773
|
+
from?: string;
|
|
5774
|
+
};
|
|
5775
|
+
config?: Partial<FetcherConfig> & {
|
|
5776
|
+
client?: typeof client;
|
|
5777
|
+
};
|
|
5778
|
+
}): Promise<unknown>;
|
|
5779
|
+
/**
|
|
5780
|
+
* @summary Push an image manifest
|
|
5781
|
+
* @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.
|
|
5782
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5783
|
+
*/
|
|
5784
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5785
|
+
pathParams: {
|
|
5786
|
+
teamSlug: string;
|
|
5787
|
+
projectSlug: string;
|
|
5788
|
+
repositoryName: string;
|
|
5789
|
+
reference: string;
|
|
5790
|
+
};
|
|
5791
|
+
config?: Partial<FetcherConfig> & {
|
|
5792
|
+
client?: typeof client;
|
|
5793
|
+
};
|
|
5794
|
+
}): Promise<unknown>;
|
|
5795
|
+
/**
|
|
5796
|
+
* @summary Pull an image manifest
|
|
5797
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
|
|
5798
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5799
|
+
*/
|
|
5800
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5801
|
+
pathParams: {
|
|
5802
|
+
teamSlug: string;
|
|
5803
|
+
projectSlug: string;
|
|
5804
|
+
repositoryName: string;
|
|
5805
|
+
reference: string;
|
|
5806
|
+
};
|
|
5807
|
+
config?: Partial<FetcherConfig> & {
|
|
5808
|
+
client?: typeof client;
|
|
5809
|
+
};
|
|
5810
|
+
}): Promise<unknown>;
|
|
5811
|
+
/**
|
|
5812
|
+
* @summary Delete an image manifest
|
|
5813
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
|
|
5814
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5815
|
+
*/
|
|
5816
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5817
|
+
pathParams: {
|
|
5818
|
+
teamSlug: string;
|
|
5819
|
+
projectSlug: string;
|
|
5820
|
+
repositoryName: string;
|
|
5821
|
+
reference: string;
|
|
5822
|
+
};
|
|
5823
|
+
config?: Partial<FetcherConfig> & {
|
|
5824
|
+
client?: typeof client;
|
|
5825
|
+
};
|
|
5826
|
+
}): Promise<unknown>;
|
|
5827
|
+
/**
|
|
5828
|
+
* @summary List image tags
|
|
5829
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
|
|
5830
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
|
|
5831
|
+
*/
|
|
5832
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config, }?: {
|
|
5833
|
+
pathParams: {
|
|
5834
|
+
teamSlug: string;
|
|
5835
|
+
projectSlug: string;
|
|
5836
|
+
repositoryName: string;
|
|
5837
|
+
};
|
|
5838
|
+
queryParams?: {
|
|
5839
|
+
n?: number;
|
|
5840
|
+
last?: string;
|
|
5841
|
+
};
|
|
5842
|
+
config?: Partial<FetcherConfig> & {
|
|
5843
|
+
client?: typeof client;
|
|
5844
|
+
};
|
|
5845
|
+
}): Promise<unknown>;
|
|
5585
5846
|
/**
|
|
5586
5847
|
* @link /web/insights/toggle
|
|
5587
5848
|
*/
|
|
@@ -6259,7 +6520,7 @@ declare const operationsByPath: {
|
|
|
6259
6520
|
"POST /v1/projects/{projectId}/pause": typeof pauseProject;
|
|
6260
6521
|
"POST /v1/projects/{projectId}/unpause": typeof unpauseProject;
|
|
6261
6522
|
"GET /v2/sandboxes": typeof listSandboxes;
|
|
6262
|
-
"POST /v2/sandboxes": typeof
|
|
6523
|
+
"POST /v2/sandboxes": typeof createSandboxesV2;
|
|
6263
6524
|
"GET /v2/sandboxes/drives": typeof listDrives;
|
|
6264
6525
|
"POST /v2/sandboxes/drives/{name}": typeof getOrCreateDrive;
|
|
6265
6526
|
"DELETE /v2/sandboxes/drives/{name}": typeof deleteDrive;
|
|
@@ -6284,6 +6545,7 @@ declare const operationsByPath: {
|
|
|
6284
6545
|
"POST /v2/sandboxes/sessions/{sessionId}/fs/write": typeof writeSessionFiles;
|
|
6285
6546
|
"POST /v2/sandboxes/sessions/{sessionId}/snapshot": typeof createSessionSnapshot;
|
|
6286
6547
|
"POST /v2/sandboxes/{name}/fork": typeof createSandboxesByNameFork;
|
|
6548
|
+
"POST /v3/sandboxes": typeof createSandboxesV3;
|
|
6287
6549
|
"POST /v1/security/attack-mode": typeof updateAttackChallengeMode;
|
|
6288
6550
|
"GET /v1/security/firewall/config": typeof getSecurityFirewallConfig;
|
|
6289
6551
|
"PUT /v1/security/firewall/config": typeof putFirewallConfig;
|
|
@@ -6330,10 +6592,26 @@ declare const operationsByPath: {
|
|
|
6330
6592
|
"GET /v1/vcr/repository/{idOrName}": typeof getRepository;
|
|
6331
6593
|
"DELETE /v1/vcr/repository/{idOrName}": typeof deleteRepository;
|
|
6332
6594
|
"GET /v1/vcr/repository/{idOrName}/images": typeof listRepositoryImages;
|
|
6595
|
+
"POST /v1/vcr/repository/{idOrName}/permissions": typeof addRepositoryPermission;
|
|
6596
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions": typeof removeRepositoryPermission;
|
|
6597
|
+
"GET /v1/vcr/repository/{idOrName}/permissions": typeof listRepositoryPermissions;
|
|
6598
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions/all": typeof clearRepositoryPermissions;
|
|
6333
6599
|
"GET /v1/vcr/repository/{idOrName}/tags": typeof listRepositoryTags;
|
|
6334
6600
|
"GET /v1/vcr/repository/{idOrName}/tags/{tag}": typeof getRepositoryTag;
|
|
6335
6601
|
"GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": typeof getRepositoryImage;
|
|
6336
6602
|
"DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": typeof deleteRepositoryImage;
|
|
6603
|
+
"GET /v2/": typeof getRoot;
|
|
6604
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6605
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6606
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6607
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6608
|
+
"PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6609
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6610
|
+
"POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
6611
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6612
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6613
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6614
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6337
6615
|
"POST /web/insights/toggle": typeof createWebInsightsToggle;
|
|
6338
6616
|
"GET /v1/query/web-analytics/visits/aggregate": typeof aggregatePageviews;
|
|
6339
6617
|
"GET /v1/query/web-analytics/events/aggregate": typeof aggregateEvents;
|
|
@@ -6690,7 +6968,7 @@ declare const operationsByTag: {
|
|
|
6690
6968
|
};
|
|
6691
6969
|
sandboxes: {
|
|
6692
6970
|
listSandboxes: typeof listSandboxes;
|
|
6693
|
-
|
|
6971
|
+
createSandboxesV2: typeof createSandboxesV2;
|
|
6694
6972
|
listDrives: typeof listDrives;
|
|
6695
6973
|
getOrCreateDrive: typeof getOrCreateDrive;
|
|
6696
6974
|
deleteDrive: typeof deleteDrive;
|
|
@@ -6715,6 +6993,7 @@ declare const operationsByTag: {
|
|
|
6715
6993
|
writeSessionFiles: typeof writeSessionFiles;
|
|
6716
6994
|
createSessionSnapshot: typeof createSessionSnapshot;
|
|
6717
6995
|
createSandboxesByNameFork: typeof createSandboxesByNameFork;
|
|
6996
|
+
createSandboxesV3: typeof createSandboxesV3;
|
|
6718
6997
|
};
|
|
6719
6998
|
security: {
|
|
6720
6999
|
updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
@@ -6731,6 +7010,11 @@ declare const operationsByTag: {
|
|
|
6731
7010
|
getSecurityFirewallEvents: typeof getSecurityFirewallEvents;
|
|
6732
7011
|
generateFirewallRule: typeof generateFirewallRule;
|
|
6733
7012
|
};
|
|
7013
|
+
storage: {
|
|
7014
|
+
getStorageStoresById: typeof getStorageStoresById;
|
|
7015
|
+
createStorageStoresBlob: typeof createStorageStoresBlob;
|
|
7016
|
+
deleteStorageStoresBlobById: typeof deleteStorageStoresBlobById;
|
|
7017
|
+
};
|
|
6734
7018
|
teams: {
|
|
6735
7019
|
getTeamMembers: typeof getTeamMembers;
|
|
6736
7020
|
inviteUserToTeam: typeof inviteUserToTeam;
|
|
@@ -6755,10 +7039,26 @@ declare const operationsByTag: {
|
|
|
6755
7039
|
getRepository: typeof getRepository;
|
|
6756
7040
|
deleteRepository: typeof deleteRepository;
|
|
6757
7041
|
listRepositoryImages: typeof listRepositoryImages;
|
|
7042
|
+
addRepositoryPermission: typeof addRepositoryPermission;
|
|
7043
|
+
removeRepositoryPermission: typeof removeRepositoryPermission;
|
|
7044
|
+
listRepositoryPermissions: typeof listRepositoryPermissions;
|
|
7045
|
+
clearRepositoryPermissions: typeof clearRepositoryPermissions;
|
|
6758
7046
|
listRepositoryTags: typeof listRepositoryTags;
|
|
6759
7047
|
getRepositoryTag: typeof getRepositoryTag;
|
|
6760
7048
|
getRepositoryImage: typeof getRepositoryImage;
|
|
6761
7049
|
deleteRepositoryImage: typeof deleteRepositoryImage;
|
|
7050
|
+
getRoot: typeof getRoot;
|
|
7051
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7052
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7053
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7054
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7055
|
+
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7056
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7057
|
+
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads: typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
7058
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7059
|
+
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7060
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7061
|
+
getByTeamSlugByProjectSlugByRepositoryNameTagsList: typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6762
7062
|
};
|
|
6763
7063
|
webAnalytics: {
|
|
6764
7064
|
aggregatePageviews: typeof aggregatePageviews;
|
|
@@ -6957,7 +7257,7 @@ declare const tagDictionary: {
|
|
|
6957
7257
|
};
|
|
6958
7258
|
readonly sandboxes: {
|
|
6959
7259
|
readonly GET: readonly ["listSandboxes", "listDrives", "listSessionSnapshots", "getSessionSnapshot", "listSessions", "getSession", "getNamedSandbox", "listSessionCommands", "getSessionCommand", "getSessionCommandLogs"];
|
|
6960
|
-
readonly POST: readonly ["
|
|
7260
|
+
readonly POST: readonly ["createSandboxesV2", "getOrCreateDrive", "runSessionCommand", "killSessionCommand", "stopSession", "extendSessionTimeout", "updateSessionNetworkPolicy", "readSessionFile", "createSessionDirectory", "writeSessionFiles", "createSessionSnapshot", "createSandboxesByNameFork", "createSandboxesV3"];
|
|
6961
7261
|
readonly DELETE: readonly ["deleteDrive", "deleteSessionSnapshot", "deleteSandbox"];
|
|
6962
7262
|
readonly PATCH: readonly ["updateSandbox"];
|
|
6963
7263
|
};
|
|
@@ -6968,6 +7268,11 @@ declare const tagDictionary: {
|
|
|
6968
7268
|
readonly PATCH: readonly ["updateFirewallConfig"];
|
|
6969
7269
|
readonly DELETE: readonly ["deleteSecurityFirewallConfigByConfigVersion", "removeBypassIp"];
|
|
6970
7270
|
};
|
|
7271
|
+
readonly storage: {
|
|
7272
|
+
readonly GET: readonly ["getStorageStoresById"];
|
|
7273
|
+
readonly POST: readonly ["createStorageStoresBlob"];
|
|
7274
|
+
readonly DELETE: readonly ["deleteStorageStoresBlobById"];
|
|
7275
|
+
};
|
|
6971
7276
|
readonly teams: {
|
|
6972
7277
|
readonly GET: readonly ["getTeamMembers", "getTeamAccessRequest", "getTeam", "getTeams"];
|
|
6973
7278
|
readonly POST: readonly ["inviteUserToTeam", "requestAccessToTeam", "joinTeam", "createTeam", "postTeamDsyncRoles"];
|
|
@@ -6975,9 +7280,11 @@ declare const tagDictionary: {
|
|
|
6975
7280
|
readonly DELETE: readonly ["removeTeamMember", "deleteTeam", "deleteTeamInviteCode", "deleteMicrofrontendsGroup"];
|
|
6976
7281
|
};
|
|
6977
7282
|
readonly vcr: {
|
|
6978
|
-
readonly POST: readonly ["createRepository"];
|
|
6979
|
-
readonly GET: readonly ["listRepositories", "getRepository", "listRepositoryImages", "listRepositoryTags", "getRepositoryTag", "getRepositoryImage"];
|
|
6980
|
-
readonly DELETE: readonly ["deleteRepository", "deleteRepositoryImage"];
|
|
7283
|
+
readonly POST: readonly ["createRepository", "addRepositoryPermission", "createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads"];
|
|
7284
|
+
readonly GET: readonly ["listRepositories", "getRepository", "listRepositoryImages", "listRepositoryPermissions", "listRepositoryTags", "getRepositoryTag", "getRepositoryImage", "getRoot", "getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest", "getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference", "getByTeamSlugByProjectSlugByRepositoryNameTagsList"];
|
|
7285
|
+
readonly DELETE: readonly ["deleteRepository", "removeRepositoryPermission", "clearRepositoryPermissions", "deleteRepositoryImage", "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest", "deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"];
|
|
7286
|
+
readonly PATCH: readonly ["updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid"];
|
|
7287
|
+
readonly PUT: readonly ["replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid", "replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference"];
|
|
6981
7288
|
};
|
|
6982
7289
|
readonly webAnalytics: {
|
|
6983
7290
|
readonly GET: readonly ["aggregatePageviews", "aggregateEvents", "countPageviews", "countEvents"];
|
|
@@ -7001,5 +7308,5 @@ declare const tagDictionary: {
|
|
|
7001
7308
|
};
|
|
7002
7309
|
};
|
|
7003
7310
|
|
|
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,
|
|
7311
|
+
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
7312
|
//# sourceMappingURL=components.d.mts.map
|