vercel-api-js 1.8.2 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/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 +1735 -91
- package/dist/index.d.ts +3443 -120
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1504 -76
- package/dist/schemas.cjs +1074 -72
- package/dist/schemas.d.mts +631 -41
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +849 -57
- package/dist/types.cjs +159 -9
- package/dist/types.d.mts +2453 -70
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +154 -10
- package/package.json +1 -1
package/dist/effect.d.mts
CHANGED
|
@@ -2248,6 +2248,7 @@ declare function listUserEvents({ queryParams, config, }?: {
|
|
|
2248
2248
|
userId?: string;
|
|
2249
2249
|
principalId?: string;
|
|
2250
2250
|
projectIds?: string;
|
|
2251
|
+
entityId?: string;
|
|
2251
2252
|
withPayload?: string;
|
|
2252
2253
|
teamId?: string;
|
|
2253
2254
|
slug?: string;
|
|
@@ -2702,7 +2703,7 @@ declare function searchRepo({ queryParams, config, }?: {
|
|
|
2702
2703
|
queryParams?: {
|
|
2703
2704
|
query?: string;
|
|
2704
2705
|
namespaceId?: unknown;
|
|
2705
|
-
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket";
|
|
2706
|
+
provider?: "github" | "github-limited" | "github-custom-host" | "gitlab" | "bitbucket" | "cursor-origin";
|
|
2706
2707
|
installationId?: string;
|
|
2707
2708
|
host?: string;
|
|
2708
2709
|
teamId?: string;
|
|
@@ -2725,7 +2726,7 @@ declare function getBillingPlans({ pathParams, queryParams, config, }?: {
|
|
|
2725
2726
|
queryParams?: {
|
|
2726
2727
|
integrationConfigurationId?: string;
|
|
2727
2728
|
metadata?: string;
|
|
2728
|
-
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice";
|
|
2729
|
+
source?: "marketplace" | "deploy-button" | "external" | "v0" | "resource-claims" | "cli" | "oauth" | "backoffice" | "import-recommended-integrations";
|
|
2729
2730
|
teamId?: string;
|
|
2730
2731
|
slug?: string;
|
|
2731
2732
|
};
|
|
@@ -4387,7 +4388,7 @@ declare function listSandboxes({ queryParams, config, }?: {
|
|
|
4387
4388
|
* @description Creates a named sandbox environment. Named sandboxes have a unique name within a project and support automatic snapshotting on shutdown.
|
|
4388
4389
|
* @link /v2/sandboxes
|
|
4389
4390
|
*/
|
|
4390
|
-
declare function
|
|
4391
|
+
declare function createSandboxesV2({ queryParams, config, }?: {
|
|
4391
4392
|
queryParams?: {
|
|
4392
4393
|
teamId?: string;
|
|
4393
4394
|
slug?: string;
|
|
@@ -4826,6 +4827,20 @@ declare function createSandboxesByNameFork({ pathParams, queryParams, config, }?
|
|
|
4826
4827
|
client?: typeof client;
|
|
4827
4828
|
};
|
|
4828
4829
|
}): Promise<unknown>;
|
|
4830
|
+
/**
|
|
4831
|
+
* @summary Create a named sandbox
|
|
4832
|
+
* @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.
|
|
4833
|
+
* @link /v3/sandboxes
|
|
4834
|
+
*/
|
|
4835
|
+
declare function createSandboxesV3({ queryParams, config, }?: {
|
|
4836
|
+
queryParams?: {
|
|
4837
|
+
teamId?: string;
|
|
4838
|
+
slug?: string;
|
|
4839
|
+
};
|
|
4840
|
+
config?: Partial<FetcherConfig> & {
|
|
4841
|
+
client?: typeof client;
|
|
4842
|
+
};
|
|
4843
|
+
}): Promise<unknown>;
|
|
4829
4844
|
/**
|
|
4830
4845
|
* @summary Update Attack Challenge mode
|
|
4831
4846
|
* @description Update the setting for determining if the project has Attack Challenge mode enabled.
|
|
@@ -5033,6 +5048,7 @@ declare function createSpeedInsightsToggle({ queryParams, config, }?: {
|
|
|
5033
5048
|
};
|
|
5034
5049
|
}): Promise<unknown>;
|
|
5035
5050
|
/**
|
|
5051
|
+
* @summary Get a store
|
|
5036
5052
|
* @link /storage/stores/{id}
|
|
5037
5053
|
*/
|
|
5038
5054
|
declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
@@ -5048,6 +5064,7 @@ declare function getStorageStoresById({ pathParams, queryParams, config, }?: {
|
|
|
5048
5064
|
};
|
|
5049
5065
|
}): Promise<unknown>;
|
|
5050
5066
|
/**
|
|
5067
|
+
* @summary Create a Blob store
|
|
5051
5068
|
* @link /storage/stores/blob
|
|
5052
5069
|
*/
|
|
5053
5070
|
declare function createStorageStoresBlob({ config }?: {
|
|
@@ -5056,6 +5073,7 @@ declare function createStorageStoresBlob({ config }?: {
|
|
|
5056
5073
|
};
|
|
5057
5074
|
}): Promise<unknown>;
|
|
5058
5075
|
/**
|
|
5076
|
+
* @summary Delete a Blob store
|
|
5059
5077
|
* @link /storage/stores/blob/{id}
|
|
5060
5078
|
*/
|
|
5061
5079
|
declare function deleteStorageStoresBlobById({ pathParams, config, }?: {
|
|
@@ -5506,6 +5524,80 @@ declare function listRepositoryImages({ pathParams, queryParams, config, }?: {
|
|
|
5506
5524
|
client?: typeof client;
|
|
5507
5525
|
};
|
|
5508
5526
|
}): Promise<unknown>;
|
|
5527
|
+
/**
|
|
5528
|
+
* @summary Add a repository permission
|
|
5529
|
+
* @description Grant a team access to a VCR repository. Sharing applies to the whole repository.
|
|
5530
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5531
|
+
*/
|
|
5532
|
+
declare function addRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5533
|
+
pathParams: {
|
|
5534
|
+
idOrName: string;
|
|
5535
|
+
};
|
|
5536
|
+
queryParams?: {
|
|
5537
|
+
projectId?: string;
|
|
5538
|
+
teamId?: string;
|
|
5539
|
+
slug?: string;
|
|
5540
|
+
};
|
|
5541
|
+
config?: Partial<FetcherConfig> & {
|
|
5542
|
+
client?: typeof client;
|
|
5543
|
+
};
|
|
5544
|
+
}): Promise<unknown>;
|
|
5545
|
+
/**
|
|
5546
|
+
* @summary Remove a repository permission
|
|
5547
|
+
* @description Revoke a team's access to a VCR repository.
|
|
5548
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5549
|
+
*/
|
|
5550
|
+
declare function removeRepositoryPermission({ pathParams, queryParams, config, }?: {
|
|
5551
|
+
pathParams: {
|
|
5552
|
+
idOrName: string;
|
|
5553
|
+
};
|
|
5554
|
+
queryParams?: {
|
|
5555
|
+
projectId?: string;
|
|
5556
|
+
teamId?: string;
|
|
5557
|
+
slug?: string;
|
|
5558
|
+
};
|
|
5559
|
+
config?: Partial<FetcherConfig> & {
|
|
5560
|
+
client?: typeof client;
|
|
5561
|
+
};
|
|
5562
|
+
}): Promise<unknown>;
|
|
5563
|
+
/**
|
|
5564
|
+
* @summary List repository permissions
|
|
5565
|
+
* @description List the teams a VCR repository is shared with.
|
|
5566
|
+
* @link /v1/vcr/repository/{idOrName}/permissions
|
|
5567
|
+
*/
|
|
5568
|
+
declare function listRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5569
|
+
pathParams: {
|
|
5570
|
+
idOrName: string;
|
|
5571
|
+
};
|
|
5572
|
+
queryParams?: {
|
|
5573
|
+
projectId?: string;
|
|
5574
|
+
limit?: number;
|
|
5575
|
+
cursor?: string;
|
|
5576
|
+
teamId?: string;
|
|
5577
|
+
slug?: string;
|
|
5578
|
+
};
|
|
5579
|
+
config?: Partial<FetcherConfig> & {
|
|
5580
|
+
client?: typeof client;
|
|
5581
|
+
};
|
|
5582
|
+
}): Promise<unknown>;
|
|
5583
|
+
/**
|
|
5584
|
+
* @summary Clear all repository permissions
|
|
5585
|
+
* @description Revoke every team's access to a VCR repository. Clearing an unshared repository is a no-op.
|
|
5586
|
+
* @link /v1/vcr/repository/{idOrName}/permissions/all
|
|
5587
|
+
*/
|
|
5588
|
+
declare function clearRepositoryPermissions({ pathParams, queryParams, config, }?: {
|
|
5589
|
+
pathParams: {
|
|
5590
|
+
idOrName: string;
|
|
5591
|
+
};
|
|
5592
|
+
queryParams?: {
|
|
5593
|
+
projectId?: string;
|
|
5594
|
+
teamId?: string;
|
|
5595
|
+
slug?: string;
|
|
5596
|
+
};
|
|
5597
|
+
config?: Partial<FetcherConfig> & {
|
|
5598
|
+
client?: typeof client;
|
|
5599
|
+
};
|
|
5600
|
+
}): Promise<unknown>;
|
|
5509
5601
|
/**
|
|
5510
5602
|
* @summary List repository tags
|
|
5511
5603
|
* @description List a repository's tags.
|
|
@@ -5585,6 +5677,201 @@ declare function deleteRepositoryImage({ pathParams, queryParams, config, }?: {
|
|
|
5585
5677
|
client?: typeof client;
|
|
5586
5678
|
};
|
|
5587
5679
|
}): Promise<unknown>;
|
|
5680
|
+
/**
|
|
5681
|
+
* @summary Check registry API version support
|
|
5682
|
+
* @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.
|
|
5683
|
+
* @link /v2/
|
|
5684
|
+
*/
|
|
5685
|
+
declare function getRoot({ config }?: {
|
|
5686
|
+
config?: Partial<FetcherConfig> & {
|
|
5687
|
+
client?: typeof client;
|
|
5688
|
+
};
|
|
5689
|
+
}): Promise<unknown>;
|
|
5690
|
+
/**
|
|
5691
|
+
* @summary Download a blob
|
|
5692
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Fetch a blob by digest.
|
|
5693
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5694
|
+
*/
|
|
5695
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5696
|
+
pathParams: {
|
|
5697
|
+
teamSlug: string;
|
|
5698
|
+
projectSlug: string;
|
|
5699
|
+
repositoryName: string;
|
|
5700
|
+
digest: string;
|
|
5701
|
+
};
|
|
5702
|
+
config?: Partial<FetcherConfig> & {
|
|
5703
|
+
client?: typeof client;
|
|
5704
|
+
};
|
|
5705
|
+
}): Promise<unknown>;
|
|
5706
|
+
/**
|
|
5707
|
+
* @summary Delete a blob
|
|
5708
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/blobs/:digest Blob deletion is intentionally not supported. Matches the behaviour of most public registries.
|
|
5709
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}
|
|
5710
|
+
*/
|
|
5711
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest({ pathParams, config, }?: {
|
|
5712
|
+
pathParams: {
|
|
5713
|
+
teamSlug: string;
|
|
5714
|
+
projectSlug: string;
|
|
5715
|
+
repositoryName: string;
|
|
5716
|
+
digest: string;
|
|
5717
|
+
};
|
|
5718
|
+
config?: Partial<FetcherConfig> & {
|
|
5719
|
+
client?: typeof client;
|
|
5720
|
+
};
|
|
5721
|
+
}): Promise<unknown>;
|
|
5722
|
+
/**
|
|
5723
|
+
* @summary Get blob upload status
|
|
5724
|
+
* @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.
|
|
5725
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5726
|
+
*/
|
|
5727
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5728
|
+
pathParams: {
|
|
5729
|
+
teamSlug: string;
|
|
5730
|
+
projectSlug: string;
|
|
5731
|
+
repositoryName: string;
|
|
5732
|
+
uuid: string;
|
|
5733
|
+
};
|
|
5734
|
+
config?: Partial<FetcherConfig> & {
|
|
5735
|
+
client?: typeof client;
|
|
5736
|
+
};
|
|
5737
|
+
}): Promise<unknown>;
|
|
5738
|
+
/**
|
|
5739
|
+
* @summary Cancel a blob upload
|
|
5740
|
+
* @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.
|
|
5741
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5742
|
+
*/
|
|
5743
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5744
|
+
pathParams: {
|
|
5745
|
+
teamSlug: string;
|
|
5746
|
+
projectSlug: string;
|
|
5747
|
+
repositoryName: string;
|
|
5748
|
+
uuid: string;
|
|
5749
|
+
};
|
|
5750
|
+
config?: Partial<FetcherConfig> & {
|
|
5751
|
+
client?: typeof client;
|
|
5752
|
+
};
|
|
5753
|
+
}): Promise<unknown>;
|
|
5754
|
+
/**
|
|
5755
|
+
* @summary Upload a blob chunk
|
|
5756
|
+
* @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.
|
|
5757
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5758
|
+
*/
|
|
5759
|
+
declare function updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, config, }?: {
|
|
5760
|
+
pathParams: {
|
|
5761
|
+
teamSlug: string;
|
|
5762
|
+
projectSlug: string;
|
|
5763
|
+
repositoryName: string;
|
|
5764
|
+
uuid: string;
|
|
5765
|
+
};
|
|
5766
|
+
config?: Partial<FetcherConfig> & {
|
|
5767
|
+
client?: typeof client;
|
|
5768
|
+
};
|
|
5769
|
+
}): Promise<unknown>;
|
|
5770
|
+
/**
|
|
5771
|
+
* @summary Complete a blob upload
|
|
5772
|
+
* @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.
|
|
5773
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}
|
|
5774
|
+
*/
|
|
5775
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid({ pathParams, queryParams, config, }?: {
|
|
5776
|
+
pathParams: {
|
|
5777
|
+
teamSlug: string;
|
|
5778
|
+
projectSlug: string;
|
|
5779
|
+
repositoryName: string;
|
|
5780
|
+
uuid: string;
|
|
5781
|
+
};
|
|
5782
|
+
queryParams?: {
|
|
5783
|
+
digest?: string;
|
|
5784
|
+
};
|
|
5785
|
+
config?: Partial<FetcherConfig> & {
|
|
5786
|
+
client?: typeof client;
|
|
5787
|
+
};
|
|
5788
|
+
}): Promise<unknown>;
|
|
5789
|
+
/**
|
|
5790
|
+
* @summary Start a blob upload
|
|
5791
|
+
* @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.
|
|
5792
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/
|
|
5793
|
+
*/
|
|
5794
|
+
declare function createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads({ pathParams, queryParams, config, }?: {
|
|
5795
|
+
pathParams: {
|
|
5796
|
+
teamSlug: string;
|
|
5797
|
+
projectSlug: string;
|
|
5798
|
+
repositoryName: string;
|
|
5799
|
+
};
|
|
5800
|
+
queryParams?: {
|
|
5801
|
+
mount?: string;
|
|
5802
|
+
from?: string;
|
|
5803
|
+
};
|
|
5804
|
+
config?: Partial<FetcherConfig> & {
|
|
5805
|
+
client?: typeof client;
|
|
5806
|
+
};
|
|
5807
|
+
}): Promise<unknown>;
|
|
5808
|
+
/**
|
|
5809
|
+
* @summary Push an image manifest
|
|
5810
|
+
* @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.
|
|
5811
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5812
|
+
*/
|
|
5813
|
+
declare function replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5814
|
+
pathParams: {
|
|
5815
|
+
teamSlug: string;
|
|
5816
|
+
projectSlug: string;
|
|
5817
|
+
repositoryName: string;
|
|
5818
|
+
reference: string;
|
|
5819
|
+
};
|
|
5820
|
+
config?: Partial<FetcherConfig> & {
|
|
5821
|
+
client?: typeof client;
|
|
5822
|
+
};
|
|
5823
|
+
}): Promise<unknown>;
|
|
5824
|
+
/**
|
|
5825
|
+
* @summary Pull an image manifest
|
|
5826
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Fetch a manifest by tag or digest.
|
|
5827
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5828
|
+
*/
|
|
5829
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5830
|
+
pathParams: {
|
|
5831
|
+
teamSlug: string;
|
|
5832
|
+
projectSlug: string;
|
|
5833
|
+
repositoryName: string;
|
|
5834
|
+
reference: string;
|
|
5835
|
+
};
|
|
5836
|
+
config?: Partial<FetcherConfig> & {
|
|
5837
|
+
client?: typeof client;
|
|
5838
|
+
};
|
|
5839
|
+
}): Promise<unknown>;
|
|
5840
|
+
/**
|
|
5841
|
+
* @summary Delete an image manifest
|
|
5842
|
+
* @description DELETE /v2/:teamSlug/:projectSlug/:repositoryName/manifests/:reference Reference must be a digest.
|
|
5843
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}
|
|
5844
|
+
*/
|
|
5845
|
+
declare function deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference({ pathParams, config, }?: {
|
|
5846
|
+
pathParams: {
|
|
5847
|
+
teamSlug: string;
|
|
5848
|
+
projectSlug: string;
|
|
5849
|
+
repositoryName: string;
|
|
5850
|
+
reference: string;
|
|
5851
|
+
};
|
|
5852
|
+
config?: Partial<FetcherConfig> & {
|
|
5853
|
+
client?: typeof client;
|
|
5854
|
+
};
|
|
5855
|
+
}): Promise<unknown>;
|
|
5856
|
+
/**
|
|
5857
|
+
* @summary List image tags
|
|
5858
|
+
* @description GET /v2/:teamSlug/:projectSlug/:repositoryName/tags/list List the tags in a repository.
|
|
5859
|
+
* @link /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list
|
|
5860
|
+
*/
|
|
5861
|
+
declare function getByTeamSlugByProjectSlugByRepositoryNameTagsList({ pathParams, queryParams, config, }?: {
|
|
5862
|
+
pathParams: {
|
|
5863
|
+
teamSlug: string;
|
|
5864
|
+
projectSlug: string;
|
|
5865
|
+
repositoryName: string;
|
|
5866
|
+
};
|
|
5867
|
+
queryParams?: {
|
|
5868
|
+
n?: number;
|
|
5869
|
+
last?: string;
|
|
5870
|
+
};
|
|
5871
|
+
config?: Partial<FetcherConfig> & {
|
|
5872
|
+
client?: typeof client;
|
|
5873
|
+
};
|
|
5874
|
+
}): Promise<unknown>;
|
|
5588
5875
|
/**
|
|
5589
5876
|
* @link /web/insights/toggle
|
|
5590
5877
|
*/
|
|
@@ -6335,7 +6622,7 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6335
6622
|
};
|
|
6336
6623
|
sandboxes: {
|
|
6337
6624
|
listSandboxes: typeof listSandboxes;
|
|
6338
|
-
|
|
6625
|
+
createSandboxesV2: typeof createSandboxesV2;
|
|
6339
6626
|
listDrives: typeof listDrives;
|
|
6340
6627
|
getOrCreateDrive: typeof getOrCreateDrive;
|
|
6341
6628
|
deleteDrive: typeof deleteDrive;
|
|
@@ -6360,6 +6647,7 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6360
6647
|
writeSessionFiles: typeof writeSessionFiles;
|
|
6361
6648
|
createSessionSnapshot: typeof createSessionSnapshot;
|
|
6362
6649
|
createSandboxesByNameFork: typeof createSandboxesByNameFork;
|
|
6650
|
+
createSandboxesV3: typeof createSandboxesV3;
|
|
6363
6651
|
};
|
|
6364
6652
|
security: {
|
|
6365
6653
|
updateAttackChallengeMode: typeof updateAttackChallengeMode;
|
|
@@ -6376,6 +6664,11 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6376
6664
|
getSecurityFirewallEvents: typeof getSecurityFirewallEvents;
|
|
6377
6665
|
generateFirewallRule: typeof generateFirewallRule;
|
|
6378
6666
|
};
|
|
6667
|
+
storage: {
|
|
6668
|
+
getStorageStoresById: typeof getStorageStoresById;
|
|
6669
|
+
createStorageStoresBlob: typeof createStorageStoresBlob;
|
|
6670
|
+
deleteStorageStoresBlobById: typeof deleteStorageStoresBlobById;
|
|
6671
|
+
};
|
|
6379
6672
|
teams: {
|
|
6380
6673
|
getTeamMembers: typeof getTeamMembers;
|
|
6381
6674
|
inviteUserToTeam: typeof inviteUserToTeam;
|
|
@@ -6400,10 +6693,26 @@ declare const ApiService: _sferadev_openapi_utils_effect.EffectApi<{
|
|
|
6400
6693
|
getRepository: typeof getRepository;
|
|
6401
6694
|
deleteRepository: typeof deleteRepository;
|
|
6402
6695
|
listRepositoryImages: typeof listRepositoryImages;
|
|
6696
|
+
addRepositoryPermission: typeof addRepositoryPermission;
|
|
6697
|
+
removeRepositoryPermission: typeof removeRepositoryPermission;
|
|
6698
|
+
listRepositoryPermissions: typeof listRepositoryPermissions;
|
|
6699
|
+
clearRepositoryPermissions: typeof clearRepositoryPermissions;
|
|
6403
6700
|
listRepositoryTags: typeof listRepositoryTags;
|
|
6404
6701
|
getRepositoryTag: typeof getRepositoryTag;
|
|
6405
6702
|
getRepositoryImage: typeof getRepositoryImage;
|
|
6406
6703
|
deleteRepositoryImage: typeof deleteRepositoryImage;
|
|
6704
|
+
getRoot: typeof getRoot;
|
|
6705
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6706
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
6707
|
+
getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6708
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6709
|
+
updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6710
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid: typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
6711
|
+
createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads: typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
6712
|
+
replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6713
|
+
getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6714
|
+
deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference: typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
6715
|
+
getByTeamSlugByProjectSlugByRepositoryNameTagsList: typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6407
6716
|
};
|
|
6408
6717
|
webAnalytics: {
|
|
6409
6718
|
aggregatePageviews: typeof aggregatePageviews;
|
|
@@ -6692,7 +7001,7 @@ declare const effectByPath: _sferadev_openapi_utils_effect.EffectByPath<{
|
|
|
6692
7001
|
"POST /v1/projects/{projectId}/pause": typeof pauseProject;
|
|
6693
7002
|
"POST /v1/projects/{projectId}/unpause": typeof unpauseProject;
|
|
6694
7003
|
"GET /v2/sandboxes": typeof listSandboxes;
|
|
6695
|
-
"POST /v2/sandboxes": typeof
|
|
7004
|
+
"POST /v2/sandboxes": typeof createSandboxesV2;
|
|
6696
7005
|
"GET /v2/sandboxes/drives": typeof listDrives;
|
|
6697
7006
|
"POST /v2/sandboxes/drives/{name}": typeof getOrCreateDrive;
|
|
6698
7007
|
"DELETE /v2/sandboxes/drives/{name}": typeof deleteDrive;
|
|
@@ -6717,6 +7026,7 @@ declare const effectByPath: _sferadev_openapi_utils_effect.EffectByPath<{
|
|
|
6717
7026
|
"POST /v2/sandboxes/sessions/{sessionId}/fs/write": typeof writeSessionFiles;
|
|
6718
7027
|
"POST /v2/sandboxes/sessions/{sessionId}/snapshot": typeof createSessionSnapshot;
|
|
6719
7028
|
"POST /v2/sandboxes/{name}/fork": typeof createSandboxesByNameFork;
|
|
7029
|
+
"POST /v3/sandboxes": typeof createSandboxesV3;
|
|
6720
7030
|
"POST /v1/security/attack-mode": typeof updateAttackChallengeMode;
|
|
6721
7031
|
"GET /v1/security/firewall/config": typeof getSecurityFirewallConfig;
|
|
6722
7032
|
"PUT /v1/security/firewall/config": typeof putFirewallConfig;
|
|
@@ -6763,10 +7073,26 @@ declare const effectByPath: _sferadev_openapi_utils_effect.EffectByPath<{
|
|
|
6763
7073
|
"GET /v1/vcr/repository/{idOrName}": typeof getRepository;
|
|
6764
7074
|
"DELETE /v1/vcr/repository/{idOrName}": typeof deleteRepository;
|
|
6765
7075
|
"GET /v1/vcr/repository/{idOrName}/images": typeof listRepositoryImages;
|
|
7076
|
+
"POST /v1/vcr/repository/{idOrName}/permissions": typeof addRepositoryPermission;
|
|
7077
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions": typeof removeRepositoryPermission;
|
|
7078
|
+
"GET /v1/vcr/repository/{idOrName}/permissions": typeof listRepositoryPermissions;
|
|
7079
|
+
"DELETE /v1/vcr/repository/{idOrName}/permissions/all": typeof clearRepositoryPermissions;
|
|
6766
7080
|
"GET /v1/vcr/repository/{idOrName}/tags": typeof listRepositoryTags;
|
|
6767
7081
|
"GET /v1/vcr/repository/{idOrName}/tags/{tag}": typeof getRepositoryTag;
|
|
6768
7082
|
"GET /v1/vcr/repository/{idOrName}/images/{imageIdOrDigest}": typeof getRepositoryImage;
|
|
6769
7083
|
"DELETE /v1/vcr/repository/{idOrName}/images/{imageId}": typeof deleteRepositoryImage;
|
|
7084
|
+
"GET /v2/": typeof getRoot;
|
|
7085
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7086
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/{digest}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest;
|
|
7087
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7088
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7089
|
+
"PATCH /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7090
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/{uuid}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid;
|
|
7091
|
+
"POST /v2/{teamSlug}/{projectSlug}/{repositoryName}/blobs/uploads/": typeof createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads;
|
|
7092
|
+
"PUT /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7093
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7094
|
+
"DELETE /v2/{teamSlug}/{projectSlug}/{repositoryName}/manifests/{reference}": typeof deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference;
|
|
7095
|
+
"GET /v2/{teamSlug}/{projectSlug}/{repositoryName}/tags/list": typeof getByTeamSlugByProjectSlugByRepositoryNameTagsList;
|
|
6770
7096
|
"POST /web/insights/toggle": typeof createWebInsightsToggle;
|
|
6771
7097
|
"GET /v1/query/web-analytics/visits/aggregate": typeof aggregatePageviews;
|
|
6772
7098
|
"GET /v1/query/web-analytics/events/aggregate": typeof aggregateEvents;
|