freestyle-sandboxes 0.1.5 → 0.1.6
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/index.cjs +757 -819
- package/index.d.cts +684 -614
- package/index.d.mts +684 -614
- package/index.mjs +757 -819
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -351,6 +351,41 @@ interface ResponsePostExecuteV1Script500 {
|
|
|
351
351
|
type: string;
|
|
352
352
|
}[] | null;
|
|
353
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* Success result from script execution
|
|
356
|
+
*/
|
|
357
|
+
interface ResponsePostExecuteV2Script200 {
|
|
358
|
+
result: unknown;
|
|
359
|
+
logs: ({
|
|
360
|
+
message: string;
|
|
361
|
+
callstack?: string | null;
|
|
362
|
+
type: "log";
|
|
363
|
+
} | {
|
|
364
|
+
message: string;
|
|
365
|
+
callstack?: string | null;
|
|
366
|
+
type: "error";
|
|
367
|
+
})[];
|
|
368
|
+
}
|
|
369
|
+
interface ResponsePostExecuteV2Script500 {
|
|
370
|
+
/**
|
|
371
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
372
|
+
*/
|
|
373
|
+
error: string;
|
|
374
|
+
/**
|
|
375
|
+
* Human-readable error message
|
|
376
|
+
*/
|
|
377
|
+
message: string;
|
|
378
|
+
}
|
|
379
|
+
interface ResponsePostExecuteV2Script503 {
|
|
380
|
+
/**
|
|
381
|
+
* Error code in SCREAMING_SNAKE_CASE
|
|
382
|
+
*/
|
|
383
|
+
error: string;
|
|
384
|
+
/**
|
|
385
|
+
* Human-readable error message
|
|
386
|
+
*/
|
|
387
|
+
message: string;
|
|
388
|
+
}
|
|
354
389
|
interface ResponseGetGitV1Identity200 {
|
|
355
390
|
identities: {
|
|
356
391
|
id: string;
|
|
@@ -1536,6 +1571,10 @@ interface ResponseGetObservabilityV1Logs200 {
|
|
|
1536
1571
|
interface ResponseGetV1Vms200 {
|
|
1537
1572
|
vms: {
|
|
1538
1573
|
id: string;
|
|
1574
|
+
/**
|
|
1575
|
+
* Unique ID for the current VM run (new ID generated on each start/resume)
|
|
1576
|
+
*/
|
|
1577
|
+
vmInstanceId?: string | null;
|
|
1539
1578
|
state: "starting" | "running" | "suspending" | "stopped";
|
|
1540
1579
|
metrics?: null | {
|
|
1541
1580
|
wallTimeSeconds: number;
|
|
@@ -1723,6 +1762,10 @@ interface ResponsePostV1VmsIdResize500 {
|
|
|
1723
1762
|
}
|
|
1724
1763
|
interface ResponseGetV1VmsVmId200 {
|
|
1725
1764
|
id: string;
|
|
1765
|
+
/**
|
|
1766
|
+
* Unique ID for the current VM run (new ID generated on each start/resume)
|
|
1767
|
+
*/
|
|
1768
|
+
vmInstanceId?: string | null;
|
|
1726
1769
|
lastNetworkActivity?: string | null;
|
|
1727
1770
|
state?: null | ("starting" | "running" | "suspending" | "stopped");
|
|
1728
1771
|
cpuTimeSeconds?: number | null;
|
|
@@ -2314,6 +2357,9 @@ type responses_ResponsePostEphemeralV1DevServersShutdown200 = ResponsePostEpheme
|
|
|
2314
2357
|
type responses_ResponsePostExecuteV1Script200 = ResponsePostExecuteV1Script200;
|
|
2315
2358
|
type responses_ResponsePostExecuteV1Script400 = ResponsePostExecuteV1Script400;
|
|
2316
2359
|
type responses_ResponsePostExecuteV1Script500 = ResponsePostExecuteV1Script500;
|
|
2360
|
+
type responses_ResponsePostExecuteV2Script200 = ResponsePostExecuteV2Script200;
|
|
2361
|
+
type responses_ResponsePostExecuteV2Script500 = ResponsePostExecuteV2Script500;
|
|
2362
|
+
type responses_ResponsePostExecuteV2Script503 = ResponsePostExecuteV2Script503;
|
|
2317
2363
|
type responses_ResponsePostGitV1Identity200 = ResponsePostGitV1Identity200;
|
|
2318
2364
|
type responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 = ResponsePostGitV1IdentityIdentityPermissionsRepo200;
|
|
2319
2365
|
type responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 = ResponsePostGitV1IdentityIdentityPermissionsRepo403;
|
|
@@ -2390,7 +2436,7 @@ type responses_ResponsePutV1VmsVmIdFilesFilepath400 = ResponsePutV1VmsVmIdFilesF
|
|
|
2390
2436
|
type responses_ResponsePutV1VmsVmIdFilesFilepath404 = ResponsePutV1VmsVmIdFilesFilepath404;
|
|
2391
2437
|
type responses_ResponsePutV1VmsVmIdFilesFilepath500 = ResponsePutV1VmsVmIdFilesFilepath500;
|
|
2392
2438
|
declare namespace responses {
|
|
2393
|
-
export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector as ResponseGetGitV1RepoRepoGitCommits200CommitsSelector, responses_ResponseGetGitV1RepoRepoGitCommits200Range as ResponseGetGitV1RepoRepoGitCommits200Range, responses_ResponseGetGitV1RepoRepoGitCommits200Since as ResponseGetGitV1RepoRepoGitCommits200Since, responses_ResponseGetGitV1RepoRepoGitCommits200Until as ResponseGetGitV1RepoRepoGitCommits200Until, responses_ResponseGetGitV1RepoRepoGitCommits403 as ResponseGetGitV1RepoRepoGitCommits403, responses_ResponseGetGitV1RepoRepoGitCommits500 as ResponseGetGitV1RepoRepoGitCommits500, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeads200 as ResponseGetGitV1RepoRepoGitRefsHeads200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch500, responses_ResponseGetGitV1RepoRepoGitRefsTags200 as ResponseGetGitV1RepoRepoGitRefsTags200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 as ResponseGetGitV1RepoRepoGitRefsTagsTag400, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 as ResponseGetGitV1RepoRepoGitRefsTagsTag403, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 as ResponseGetGitV1RepoRepoGitRefsTagsTag500, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
2439
|
+
export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector as ResponseGetGitV1RepoRepoGitCommits200CommitsSelector, responses_ResponseGetGitV1RepoRepoGitCommits200Range as ResponseGetGitV1RepoRepoGitCommits200Range, responses_ResponseGetGitV1RepoRepoGitCommits200Since as ResponseGetGitV1RepoRepoGitCommits200Since, responses_ResponseGetGitV1RepoRepoGitCommits200Until as ResponseGetGitV1RepoRepoGitCommits200Until, responses_ResponseGetGitV1RepoRepoGitCommits403 as ResponseGetGitV1RepoRepoGitCommits403, responses_ResponseGetGitV1RepoRepoGitCommits500 as ResponseGetGitV1RepoRepoGitCommits500, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeads200 as ResponseGetGitV1RepoRepoGitRefsHeads200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch500, responses_ResponseGetGitV1RepoRepoGitRefsTags200 as ResponseGetGitV1RepoRepoGitRefsTags200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 as ResponseGetGitV1RepoRepoGitRefsTagsTag400, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 as ResponseGetGitV1RepoRepoGitRefsTagsTag403, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 as ResponseGetGitV1RepoRepoGitRefsTagsTag500, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostExecuteV2Script200 as ResponsePostExecuteV2Script200, responses_ResponsePostExecuteV2Script500 as ResponsePostExecuteV2Script500, responses_ResponsePostExecuteV2Script503 as ResponsePostExecuteV2Script503, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
|
|
2394
2440
|
}
|
|
2395
2441
|
|
|
2396
2442
|
type PostDevServersV1DevServersRequestRequestBody = (null | {
|
|
@@ -3121,6 +3167,63 @@ interface PostExecuteV1ScriptRequestBody {
|
|
|
3121
3167
|
zeroRetention?: boolean | null;
|
|
3122
3168
|
};
|
|
3123
3169
|
}
|
|
3170
|
+
interface PostExecuteV2ScriptRequestBody {
|
|
3171
|
+
/**
|
|
3172
|
+
* The JavaScript or TypeScript script to execute
|
|
3173
|
+
*/
|
|
3174
|
+
script: string;
|
|
3175
|
+
config?: {
|
|
3176
|
+
/**
|
|
3177
|
+
* The environment variables to set for the script
|
|
3178
|
+
*/
|
|
3179
|
+
envVars?: {
|
|
3180
|
+
[k: string]: string;
|
|
3181
|
+
};
|
|
3182
|
+
/**
|
|
3183
|
+
* The node modules to install for the script
|
|
3184
|
+
*/
|
|
3185
|
+
nodeModules?: {
|
|
3186
|
+
[k: string]: string;
|
|
3187
|
+
};
|
|
3188
|
+
/**
|
|
3189
|
+
* Tags for you to organize your scripts, useful for tracking what you're running
|
|
3190
|
+
*/
|
|
3191
|
+
tags?: string[];
|
|
3192
|
+
/**
|
|
3193
|
+
* The script timeout
|
|
3194
|
+
*/
|
|
3195
|
+
timeout?: number | null;
|
|
3196
|
+
/**
|
|
3197
|
+
* If false, we'll not resolve peer dependencies for the packages given, this can speed up execute performance, but will break packages with peers unless the peers are manually specified.
|
|
3198
|
+
*/
|
|
3199
|
+
peerDependencyResolution?: boolean;
|
|
3200
|
+
networkPermissions?: (({
|
|
3201
|
+
query: string;
|
|
3202
|
+
behavior?: "regex" | "exact";
|
|
3203
|
+
} & {
|
|
3204
|
+
action: "allow";
|
|
3205
|
+
}) | ({
|
|
3206
|
+
query: string;
|
|
3207
|
+
behavior?: "regex" | "exact";
|
|
3208
|
+
} & {
|
|
3209
|
+
action: "deny";
|
|
3210
|
+
}))[] | null;
|
|
3211
|
+
/**
|
|
3212
|
+
* These headers will be added to every fetch request made through the script
|
|
3213
|
+
*/
|
|
3214
|
+
customHeaders?: {
|
|
3215
|
+
[k: string]: string;
|
|
3216
|
+
};
|
|
3217
|
+
/**
|
|
3218
|
+
* Proxy all outgoing requests through this URL
|
|
3219
|
+
*/
|
|
3220
|
+
proxy?: string | null;
|
|
3221
|
+
/**
|
|
3222
|
+
* If true, Freestyle will not retain the code, any logs, environment variables, or results from this execution.
|
|
3223
|
+
*/
|
|
3224
|
+
zeroRetention?: boolean | null;
|
|
3225
|
+
};
|
|
3226
|
+
}
|
|
3124
3227
|
interface GetGitV1IdentityQueryParams {
|
|
3125
3228
|
limit?: number | null;
|
|
3126
3229
|
offset?: number | null;
|
|
@@ -3922,7 +4025,7 @@ interface GetGitV1RepoRepoContentsPathPathParams {
|
|
|
3922
4025
|
}
|
|
3923
4026
|
interface GetGitV1RepoRepoContentsPathQueryParams {
|
|
3924
4027
|
/**
|
|
3925
|
-
* The git
|
|
4028
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
3926
4029
|
*/
|
|
3927
4030
|
rev?: string;
|
|
3928
4031
|
}
|
|
@@ -4046,7 +4149,7 @@ interface GetGitV1RepoRepoTarballPathParams {
|
|
|
4046
4149
|
}
|
|
4047
4150
|
interface GetGitV1RepoRepoTarballQueryParams {
|
|
4048
4151
|
/**
|
|
4049
|
-
* The git
|
|
4152
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
4050
4153
|
*/
|
|
4051
4154
|
rev?: string;
|
|
4052
4155
|
}
|
|
@@ -4091,7 +4194,7 @@ interface GetGitV1RepoRepoZipPathParams {
|
|
|
4091
4194
|
}
|
|
4092
4195
|
interface GetGitV1RepoRepoZipQueryParams {
|
|
4093
4196
|
/**
|
|
4094
|
-
* The git
|
|
4197
|
+
* The git revision (branch name, commit SHA, etc.). Defaults to HEAD.
|
|
4095
4198
|
*/
|
|
4096
4199
|
rev?: string;
|
|
4097
4200
|
}
|
|
@@ -5575,6 +5678,7 @@ type requests_PostEphemeralV1DevServersRestartRequestBody = PostEphemeralV1DevSe
|
|
|
5575
5678
|
type requests_PostEphemeralV1DevServersShutdownRequestBody = PostEphemeralV1DevServersShutdownRequestBody;
|
|
5576
5679
|
type requests_PostEphemeralV1DevServersWatchFilesRequestBody = PostEphemeralV1DevServersWatchFilesRequestBody;
|
|
5577
5680
|
type requests_PostExecuteV1ScriptRequestBody = PostExecuteV1ScriptRequestBody;
|
|
5681
|
+
type requests_PostExecuteV2ScriptRequestBody = PostExecuteV2ScriptRequestBody;
|
|
5578
5682
|
type requests_PostGitV1IdentityIdentityPermissionsRepoPathParams = PostGitV1IdentityIdentityPermissionsRepoPathParams;
|
|
5579
5683
|
type requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody = PostGitV1IdentityIdentityPermissionsRepoRequestBody;
|
|
5580
5684
|
type requests_PostGitV1IdentityIdentityTokensPathParams = PostGitV1IdentityIdentityTokensPathParams;
|
|
@@ -5628,7 +5732,7 @@ type requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody = PutI
|
|
|
5628
5732
|
type requests_PutV1VmsVmIdFilesFilepathPathParams = PutV1VmsVmIdFilesFilepathPathParams;
|
|
5629
5733
|
type requests_PutV1VmsVmIdFilesFilepathRequestBody = PutV1VmsVmIdFilesFilepathRequestBody;
|
|
5630
5734
|
declare namespace requests {
|
|
5631
|
-
export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdDevServerConfigurationPathParams as DeleteGitV1RepoRepoIdDevServerConfigurationPathParams, requests_DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams as DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetEphemeralV1DevServersStatusRequestBody as GetEphemeralV1DevServersStatusRequestBody, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsHeadsPathParams as GetGitV1RepoRepoGitRefsHeadsPathParams, requests_GetGitV1RepoRepoGitRefsTagsPathParams as GetGitV1RepoRepoGitRefsTagsPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationPathParams as GetGitV1RepoRepoIdDevServerConfigurationPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationQueryParams as GetGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostDevServersV1DevServersRequestRequestBody as PostDevServersV1DevServersRequestRequestBody, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostEphemeralV1DevServersExecRequestBody as PostEphemeralV1DevServersExecRequestBody, requests_PostEphemeralV1DevServersGitCommitPushRequestBody as PostEphemeralV1DevServersGitCommitPushRequestBody, requests_PostEphemeralV1DevServersLogsRequestBody as PostEphemeralV1DevServersLogsRequestBody, requests_PostEphemeralV1DevServersRequestBody as PostEphemeralV1DevServersRequestBody, requests_PostEphemeralV1DevServersRestartRequestBody as PostEphemeralV1DevServersRestartRequestBody, requests_PostEphemeralV1DevServersShutdownRequestBody as PostEphemeralV1DevServersShutdownRequestBody, requests_PostEphemeralV1DevServersWatchFilesRequestBody as PostEphemeralV1DevServersWatchFilesRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdDevServerConfigurationPathParams as PutGitV1RepoRepoIdDevServerConfigurationPathParams, requests_PutGitV1RepoRepoIdDevServerConfigurationRequestBody as PutGitV1RepoRepoIdDevServerConfigurationRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody };
|
|
5735
|
+
export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdDevServerConfigurationPathParams as DeleteGitV1RepoRepoIdDevServerConfigurationPathParams, requests_DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams as DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetEphemeralV1DevServersStatusRequestBody as GetEphemeralV1DevServersStatusRequestBody, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsHeadsPathParams as GetGitV1RepoRepoGitRefsHeadsPathParams, requests_GetGitV1RepoRepoGitRefsTagsPathParams as GetGitV1RepoRepoGitRefsTagsPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationPathParams as GetGitV1RepoRepoIdDevServerConfigurationPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationQueryParams as GetGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostDevServersV1DevServersRequestRequestBody as PostDevServersV1DevServersRequestRequestBody, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostEphemeralV1DevServersExecRequestBody as PostEphemeralV1DevServersExecRequestBody, requests_PostEphemeralV1DevServersGitCommitPushRequestBody as PostEphemeralV1DevServersGitCommitPushRequestBody, requests_PostEphemeralV1DevServersLogsRequestBody as PostEphemeralV1DevServersLogsRequestBody, requests_PostEphemeralV1DevServersRequestBody as PostEphemeralV1DevServersRequestBody, requests_PostEphemeralV1DevServersRestartRequestBody as PostEphemeralV1DevServersRestartRequestBody, requests_PostEphemeralV1DevServersShutdownRequestBody as PostEphemeralV1DevServersShutdownRequestBody, requests_PostEphemeralV1DevServersWatchFilesRequestBody as PostEphemeralV1DevServersWatchFilesRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostExecuteV2ScriptRequestBody as PostExecuteV2ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdDevServerConfigurationPathParams as PutGitV1RepoRepoIdDevServerConfigurationPathParams, requests_PutGitV1RepoRepoIdDevServerConfigurationRequestBody as PutGitV1RepoRepoIdDevServerConfigurationRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody };
|
|
5632
5736
|
}
|
|
5633
5737
|
|
|
5634
5738
|
type GetPathMap = {
|
|
@@ -5992,6 +6096,12 @@ type PostPathMap = {
|
|
|
5992
6096
|
};
|
|
5993
6097
|
response: ResponsePostExecuteV1Script200;
|
|
5994
6098
|
};
|
|
6099
|
+
"/execute/v2/script": {
|
|
6100
|
+
options: {
|
|
6101
|
+
body: PostExecuteV2ScriptRequestBody;
|
|
6102
|
+
};
|
|
6103
|
+
response: ResponsePostExecuteV2Script200;
|
|
6104
|
+
};
|
|
5995
6105
|
"/git/v1/identity": {
|
|
5996
6106
|
options?: never;
|
|
5997
6107
|
response: ResponsePostGitV1Identity200;
|
|
@@ -6338,18 +6448,50 @@ declare class GitErrorError extends Error {
|
|
|
6338
6448
|
static readonly description: string;
|
|
6339
6449
|
constructor(body: unknown & FreestyleError);
|
|
6340
6450
|
}
|
|
6341
|
-
|
|
6451
|
+
declare class InternalErrorError extends Error {
|
|
6452
|
+
body: unknown & FreestyleError;
|
|
6453
|
+
static readonly code: string;
|
|
6454
|
+
static readonly statusCode: number;
|
|
6455
|
+
static readonly description: string;
|
|
6456
|
+
constructor(body: unknown & FreestyleError);
|
|
6457
|
+
}
|
|
6458
|
+
interface PublicDockerImportBadRequest {
|
|
6342
6459
|
message: string;
|
|
6343
6460
|
[k: string]: unknown;
|
|
6344
6461
|
}
|
|
6345
|
-
declare class
|
|
6346
|
-
body:
|
|
6462
|
+
declare class DockerImportBadRequestError extends Error {
|
|
6463
|
+
body: PublicDockerImportBadRequest & FreestyleError;
|
|
6347
6464
|
static readonly code: string;
|
|
6348
6465
|
static readonly statusCode: number;
|
|
6349
6466
|
static readonly description: string;
|
|
6350
|
-
constructor(body:
|
|
6467
|
+
constructor(body: PublicDockerImportBadRequest & FreestyleError);
|
|
6351
6468
|
}
|
|
6352
|
-
|
|
6469
|
+
interface VmOperationDeniedDuringTransactionPublic {
|
|
6470
|
+
vmId: string;
|
|
6471
|
+
transactionId: string;
|
|
6472
|
+
[k: string]: unknown;
|
|
6473
|
+
}
|
|
6474
|
+
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
6475
|
+
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
6476
|
+
static readonly code: string;
|
|
6477
|
+
static readonly statusCode: number;
|
|
6478
|
+
static readonly description: string;
|
|
6479
|
+
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
|
|
6480
|
+
}
|
|
6481
|
+
interface VmTransactionIdMismatchPublic {
|
|
6482
|
+
vmId: string;
|
|
6483
|
+
expectedTransactionId: string;
|
|
6484
|
+
providedTransactionId: string;
|
|
6485
|
+
[k: string]: unknown;
|
|
6486
|
+
}
|
|
6487
|
+
declare class VmTransactionIdMismatchError extends Error {
|
|
6488
|
+
body: VmTransactionIdMismatchPublic & FreestyleError;
|
|
6489
|
+
static readonly code: string;
|
|
6490
|
+
static readonly statusCode: number;
|
|
6491
|
+
static readonly description: string;
|
|
6492
|
+
constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
|
|
6493
|
+
}
|
|
6494
|
+
declare class VmNotInTransactionError extends Error {
|
|
6353
6495
|
body: unknown & FreestyleError;
|
|
6354
6496
|
static readonly code: string;
|
|
6355
6497
|
static readonly statusCode: number;
|
|
@@ -6378,6 +6520,17 @@ declare class CreateSnapshotBadRequestError extends Error {
|
|
|
6378
6520
|
static readonly description: string;
|
|
6379
6521
|
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
6380
6522
|
}
|
|
6523
|
+
interface PublicSnapshotVmBadRequest {
|
|
6524
|
+
message: string;
|
|
6525
|
+
[k: string]: unknown;
|
|
6526
|
+
}
|
|
6527
|
+
declare class SnapshotVmBadRequestError extends Error {
|
|
6528
|
+
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
6529
|
+
static readonly code: string;
|
|
6530
|
+
static readonly statusCode: number;
|
|
6531
|
+
static readonly description: string;
|
|
6532
|
+
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
6533
|
+
}
|
|
6381
6534
|
declare class VmDeletedError extends Error {
|
|
6382
6535
|
body: unknown & FreestyleError;
|
|
6383
6536
|
static readonly code: string;
|
|
@@ -6463,27 +6616,6 @@ declare class FilesBadRequestError extends Error {
|
|
|
6463
6616
|
static readonly description: string;
|
|
6464
6617
|
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
6465
6618
|
}
|
|
6466
|
-
declare class VmMustBeStoppedError extends Error {
|
|
6467
|
-
body: unknown & FreestyleError;
|
|
6468
|
-
static readonly code: string;
|
|
6469
|
-
static readonly statusCode: number;
|
|
6470
|
-
static readonly description: string;
|
|
6471
|
-
constructor(body: unknown & FreestyleError);
|
|
6472
|
-
}
|
|
6473
|
-
declare class AlreadyHasBaseError extends Error {
|
|
6474
|
-
body: unknown & FreestyleError;
|
|
6475
|
-
static readonly code: string;
|
|
6476
|
-
static readonly statusCode: number;
|
|
6477
|
-
static readonly description: string;
|
|
6478
|
-
constructor(body: unknown & FreestyleError);
|
|
6479
|
-
}
|
|
6480
|
-
declare class NotFoundError extends Error {
|
|
6481
|
-
body: unknown & FreestyleError;
|
|
6482
|
-
static readonly code: string;
|
|
6483
|
-
static readonly statusCode: number;
|
|
6484
|
-
static readonly description: string;
|
|
6485
|
-
constructor(body: unknown & FreestyleError);
|
|
6486
|
-
}
|
|
6487
6619
|
declare class VmNotFoundInFsError extends Error {
|
|
6488
6620
|
body: unknown & FreestyleError;
|
|
6489
6621
|
static readonly code: string;
|
|
@@ -6542,43 +6674,21 @@ declare class InternalVmNotFoundError extends Error {
|
|
|
6542
6674
|
static readonly description: string;
|
|
6543
6675
|
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
6544
6676
|
}
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
[k: string]: unknown;
|
|
6548
|
-
}
|
|
6549
|
-
declare class DockerImportBadRequestError extends Error {
|
|
6550
|
-
body: PublicDockerImportBadRequest & FreestyleError;
|
|
6551
|
-
static readonly code: string;
|
|
6552
|
-
static readonly statusCode: number;
|
|
6553
|
-
static readonly description: string;
|
|
6554
|
-
constructor(body: PublicDockerImportBadRequest & FreestyleError);
|
|
6555
|
-
}
|
|
6556
|
-
interface VmOperationDeniedDuringTransactionPublic {
|
|
6557
|
-
vmId: string;
|
|
6558
|
-
transactionId: string;
|
|
6559
|
-
[k: string]: unknown;
|
|
6560
|
-
}
|
|
6561
|
-
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
6562
|
-
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
6677
|
+
declare class VmMustBeStoppedError extends Error {
|
|
6678
|
+
body: unknown & FreestyleError;
|
|
6563
6679
|
static readonly code: string;
|
|
6564
6680
|
static readonly statusCode: number;
|
|
6565
6681
|
static readonly description: string;
|
|
6566
|
-
constructor(body:
|
|
6567
|
-
}
|
|
6568
|
-
interface VmTransactionIdMismatchPublic {
|
|
6569
|
-
vmId: string;
|
|
6570
|
-
expectedTransactionId: string;
|
|
6571
|
-
providedTransactionId: string;
|
|
6572
|
-
[k: string]: unknown;
|
|
6682
|
+
constructor(body: unknown & FreestyleError);
|
|
6573
6683
|
}
|
|
6574
|
-
declare class
|
|
6575
|
-
body:
|
|
6684
|
+
declare class AlreadyHasBaseError extends Error {
|
|
6685
|
+
body: unknown & FreestyleError;
|
|
6576
6686
|
static readonly code: string;
|
|
6577
6687
|
static readonly statusCode: number;
|
|
6578
6688
|
static readonly description: string;
|
|
6579
|
-
constructor(body:
|
|
6689
|
+
constructor(body: unknown & FreestyleError);
|
|
6580
6690
|
}
|
|
6581
|
-
declare class
|
|
6691
|
+
declare class NotFoundError extends Error {
|
|
6582
6692
|
body: unknown & FreestyleError;
|
|
6583
6693
|
static readonly code: string;
|
|
6584
6694
|
static readonly statusCode: number;
|
|
@@ -6846,6 +6956,41 @@ declare class RepoNotFoundError extends Error {
|
|
|
6846
6956
|
static readonly description: string;
|
|
6847
6957
|
constructor(body: unknown & FreestyleError);
|
|
6848
6958
|
}
|
|
6959
|
+
type JavascriptLog = {
|
|
6960
|
+
message: string;
|
|
6961
|
+
callstack?: string | null;
|
|
6962
|
+
type: "log";
|
|
6963
|
+
[k: string]: unknown;
|
|
6964
|
+
} | {
|
|
6965
|
+
message: string;
|
|
6966
|
+
callstack?: string | null;
|
|
6967
|
+
type: "error";
|
|
6968
|
+
[k: string]: unknown;
|
|
6969
|
+
};
|
|
6970
|
+
interface PublicRuntimeError {
|
|
6971
|
+
message: string;
|
|
6972
|
+
logs: JavascriptLog[];
|
|
6973
|
+
stack?: string | null;
|
|
6974
|
+
[k: string]: unknown;
|
|
6975
|
+
}
|
|
6976
|
+
declare class RuntimeErrorError extends Error {
|
|
6977
|
+
body: PublicRuntimeError & FreestyleError;
|
|
6978
|
+
static readonly code: string;
|
|
6979
|
+
static readonly statusCode: number;
|
|
6980
|
+
static readonly description: string;
|
|
6981
|
+
constructor(body: PublicRuntimeError & FreestyleError);
|
|
6982
|
+
}
|
|
6983
|
+
interface PublicSyntaxError {
|
|
6984
|
+
message: string;
|
|
6985
|
+
[k: string]: unknown;
|
|
6986
|
+
}
|
|
6987
|
+
declare class SyntaxErrorError extends Error {
|
|
6988
|
+
body: PublicSyntaxError & FreestyleError;
|
|
6989
|
+
static readonly code: string;
|
|
6990
|
+
static readonly statusCode: number;
|
|
6991
|
+
static readonly description: string;
|
|
6992
|
+
constructor(body: PublicSyntaxError & FreestyleError);
|
|
6993
|
+
}
|
|
6849
6994
|
declare class InternalError extends Error {
|
|
6850
6995
|
body: unknown & FreestyleError;
|
|
6851
6996
|
static readonly code: string;
|
|
@@ -6888,32 +7033,28 @@ declare class ExpiredError extends Error {
|
|
|
6888
7033
|
static readonly description: string;
|
|
6889
7034
|
constructor(body: unknown & FreestyleError);
|
|
6890
7035
|
}
|
|
6891
|
-
declare class
|
|
7036
|
+
declare class ForbiddenError extends Error {
|
|
6892
7037
|
body: unknown & FreestyleError;
|
|
6893
7038
|
static readonly code: string;
|
|
6894
7039
|
static readonly statusCode: number;
|
|
6895
7040
|
static readonly description: string;
|
|
6896
7041
|
constructor(body: unknown & FreestyleError);
|
|
6897
7042
|
}
|
|
6898
|
-
|
|
6899
|
-
|
|
6900
|
-
[k: string]: unknown;
|
|
6901
|
-
}
|
|
6902
|
-
declare class BranchNotFoundError extends Error {
|
|
6903
|
-
body: PublicBranchNotFound & FreestyleError;
|
|
7043
|
+
declare class UnauthorizedError extends Error {
|
|
7044
|
+
body: unknown & FreestyleError;
|
|
6904
7045
|
static readonly code: string;
|
|
6905
7046
|
static readonly statusCode: number;
|
|
6906
7047
|
static readonly description: string;
|
|
6907
|
-
constructor(body:
|
|
7048
|
+
constructor(body: unknown & FreestyleError);
|
|
6908
7049
|
}
|
|
6909
|
-
declare class
|
|
7050
|
+
declare class InvalidServiceError extends Error {
|
|
6910
7051
|
body: unknown & FreestyleError;
|
|
6911
7052
|
static readonly code: string;
|
|
6912
7053
|
static readonly statusCode: number;
|
|
6913
7054
|
static readonly description: string;
|
|
6914
7055
|
constructor(body: unknown & FreestyleError);
|
|
6915
7056
|
}
|
|
6916
|
-
declare class
|
|
7057
|
+
declare class ExpectedServiceError extends Error {
|
|
6917
7058
|
body: unknown & FreestyleError;
|
|
6918
7059
|
static readonly code: string;
|
|
6919
7060
|
static readonly statusCode: number;
|
|
@@ -6935,101 +7076,103 @@ declare class UnsupportedTransferError extends Error {
|
|
|
6935
7076
|
static readonly description: string;
|
|
6936
7077
|
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
6937
7078
|
}
|
|
6938
|
-
|
|
6939
|
-
|
|
6940
|
-
[k: string]: unknown;
|
|
6941
|
-
}
|
|
6942
|
-
declare class ReferenceNotFoundError extends Error {
|
|
6943
|
-
body: PublicReferenceNotFound & FreestyleError;
|
|
7079
|
+
declare class ConflictError extends Error {
|
|
7080
|
+
body: unknown & FreestyleError;
|
|
6944
7081
|
static readonly code: string;
|
|
6945
7082
|
static readonly statusCode: number;
|
|
6946
7083
|
static readonly description: string;
|
|
6947
|
-
constructor(body:
|
|
7084
|
+
constructor(body: unknown & FreestyleError);
|
|
6948
7085
|
}
|
|
6949
|
-
interface
|
|
6950
|
-
|
|
6951
|
-
until: string;
|
|
7086
|
+
interface PublicBranchNotFound {
|
|
7087
|
+
branch: string;
|
|
6952
7088
|
[k: string]: unknown;
|
|
6953
7089
|
}
|
|
6954
|
-
declare class
|
|
6955
|
-
body:
|
|
7090
|
+
declare class BranchNotFoundError extends Error {
|
|
7091
|
+
body: PublicBranchNotFound & FreestyleError;
|
|
6956
7092
|
static readonly code: string;
|
|
6957
7093
|
static readonly statusCode: number;
|
|
6958
7094
|
static readonly description: string;
|
|
6959
|
-
constructor(body:
|
|
7095
|
+
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
6960
7096
|
}
|
|
6961
|
-
declare class
|
|
7097
|
+
declare class SourceImportConflictError extends Error {
|
|
6962
7098
|
body: unknown & FreestyleError;
|
|
6963
7099
|
static readonly code: string;
|
|
6964
7100
|
static readonly statusCode: number;
|
|
6965
7101
|
static readonly description: string;
|
|
6966
7102
|
constructor(body: unknown & FreestyleError);
|
|
6967
7103
|
}
|
|
6968
|
-
interface
|
|
6969
|
-
|
|
6970
|
-
branch: string;
|
|
7104
|
+
interface PublicSourceUnauthorized {
|
|
7105
|
+
url: string;
|
|
6971
7106
|
[k: string]: unknown;
|
|
6972
7107
|
}
|
|
6973
|
-
declare class
|
|
6974
|
-
body:
|
|
7108
|
+
declare class SourceUnauthorizedError extends Error {
|
|
7109
|
+
body: PublicSourceUnauthorized & FreestyleError;
|
|
6975
7110
|
static readonly code: string;
|
|
6976
7111
|
static readonly statusCode: number;
|
|
6977
7112
|
static readonly description: string;
|
|
6978
|
-
constructor(body:
|
|
7113
|
+
constructor(body: PublicSourceUnauthorized & FreestyleError);
|
|
6979
7114
|
}
|
|
6980
|
-
interface
|
|
6981
|
-
|
|
7115
|
+
interface PublicSourceNotFound {
|
|
7116
|
+
url: string;
|
|
6982
7117
|
[k: string]: unknown;
|
|
6983
7118
|
}
|
|
6984
|
-
declare class
|
|
6985
|
-
body:
|
|
7119
|
+
declare class SourceNotFoundError extends Error {
|
|
7120
|
+
body: PublicSourceNotFound & FreestyleError;
|
|
6986
7121
|
static readonly code: string;
|
|
6987
7122
|
static readonly statusCode: number;
|
|
6988
7123
|
static readonly description: string;
|
|
6989
|
-
constructor(body:
|
|
7124
|
+
constructor(body: PublicSourceNotFound & FreestyleError);
|
|
6990
7125
|
}
|
|
6991
|
-
interface
|
|
6992
|
-
|
|
7126
|
+
interface PublicImportSubdirNotFound {
|
|
7127
|
+
/**
|
|
7128
|
+
* The resource type, e.g. "tar archive" or "zip archive"
|
|
7129
|
+
*/
|
|
7130
|
+
source: string;
|
|
7131
|
+
dir: string;
|
|
6993
7132
|
[k: string]: unknown;
|
|
6994
7133
|
}
|
|
6995
|
-
declare class
|
|
6996
|
-
body:
|
|
7134
|
+
declare class ImportSubdirNotFoundError extends Error {
|
|
7135
|
+
body: PublicImportSubdirNotFound & FreestyleError;
|
|
6997
7136
|
static readonly code: string;
|
|
6998
7137
|
static readonly statusCode: number;
|
|
6999
7138
|
static readonly description: string;
|
|
7000
|
-
constructor(body:
|
|
7139
|
+
constructor(body: PublicImportSubdirNotFound & FreestyleError);
|
|
7001
7140
|
}
|
|
7002
|
-
interface
|
|
7003
|
-
|
|
7141
|
+
interface PublicRepoAlreadyExists {
|
|
7142
|
+
repoId: string;
|
|
7004
7143
|
[k: string]: unknown;
|
|
7005
7144
|
}
|
|
7006
|
-
declare class
|
|
7007
|
-
body:
|
|
7145
|
+
declare class RepoAlreadyExistsError extends Error {
|
|
7146
|
+
body: PublicRepoAlreadyExists & FreestyleError;
|
|
7008
7147
|
static readonly code: string;
|
|
7009
7148
|
static readonly statusCode: number;
|
|
7010
7149
|
static readonly description: string;
|
|
7011
|
-
constructor(body:
|
|
7150
|
+
constructor(body: PublicRepoAlreadyExists & FreestyleError);
|
|
7012
7151
|
}
|
|
7013
|
-
interface
|
|
7014
|
-
|
|
7152
|
+
interface PublicPathNotFound {
|
|
7153
|
+
path: string;
|
|
7015
7154
|
[k: string]: unknown;
|
|
7016
7155
|
}
|
|
7017
|
-
declare class
|
|
7018
|
-
body:
|
|
7156
|
+
declare class PathNotFoundError extends Error {
|
|
7157
|
+
body: PublicPathNotFound & FreestyleError;
|
|
7019
7158
|
static readonly code: string;
|
|
7020
7159
|
static readonly statusCode: number;
|
|
7021
7160
|
static readonly description: string;
|
|
7022
|
-
constructor(body:
|
|
7161
|
+
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7023
7162
|
}
|
|
7024
|
-
|
|
7025
|
-
|
|
7163
|
+
interface PublicReferenceNotFound {
|
|
7164
|
+
reference: string;
|
|
7165
|
+
[k: string]: unknown;
|
|
7166
|
+
}
|
|
7167
|
+
declare class ReferenceNotFoundError extends Error {
|
|
7168
|
+
body: PublicReferenceNotFound & FreestyleError;
|
|
7026
7169
|
static readonly code: string;
|
|
7027
7170
|
static readonly statusCode: number;
|
|
7028
7171
|
static readonly description: string;
|
|
7029
|
-
constructor(body:
|
|
7172
|
+
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
7030
7173
|
}
|
|
7031
7174
|
interface PublicTagNotFound {
|
|
7032
|
-
|
|
7175
|
+
hash: string;
|
|
7033
7176
|
[k: string]: unknown;
|
|
7034
7177
|
}
|
|
7035
7178
|
declare class TagNotFoundError extends Error {
|
|
@@ -7039,7 +7182,7 @@ declare class TagNotFoundError extends Error {
|
|
|
7039
7182
|
static readonly description: string;
|
|
7040
7183
|
constructor(body: PublicTagNotFound & FreestyleError);
|
|
7041
7184
|
}
|
|
7042
|
-
declare class
|
|
7185
|
+
declare class SendErrorError extends Error {
|
|
7043
7186
|
body: unknown & FreestyleError;
|
|
7044
7187
|
static readonly code: string;
|
|
7045
7188
|
static readonly statusCode: number;
|
|
@@ -7064,165 +7207,124 @@ declare class InvalidObjectIdError extends Error {
|
|
|
7064
7207
|
static readonly description: string;
|
|
7065
7208
|
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
7066
7209
|
}
|
|
7067
|
-
|
|
7068
|
-
|
|
7069
|
-
|
|
7070
|
-
static readonly statusCode: number;
|
|
7071
|
-
static readonly description: string;
|
|
7072
|
-
constructor(body: unknown & FreestyleError);
|
|
7073
|
-
}
|
|
7074
|
-
interface PublicSourceUnauthorized {
|
|
7075
|
-
url: string;
|
|
7210
|
+
interface CommitNotFoundPublic {
|
|
7211
|
+
repoId: string;
|
|
7212
|
+
commitHash: string;
|
|
7076
7213
|
[k: string]: unknown;
|
|
7077
7214
|
}
|
|
7078
|
-
declare class
|
|
7079
|
-
body:
|
|
7215
|
+
declare class CommitNotFoundError extends Error {
|
|
7216
|
+
body: CommitNotFoundPublic & FreestyleError;
|
|
7080
7217
|
static readonly code: string;
|
|
7081
7218
|
static readonly statusCode: number;
|
|
7082
7219
|
static readonly description: string;
|
|
7083
|
-
constructor(body:
|
|
7220
|
+
constructor(body: CommitNotFoundPublic & FreestyleError);
|
|
7084
7221
|
}
|
|
7085
|
-
interface
|
|
7086
|
-
|
|
7222
|
+
interface PublicTreeNotFound {
|
|
7223
|
+
hash: string;
|
|
7087
7224
|
[k: string]: unknown;
|
|
7088
7225
|
}
|
|
7089
|
-
declare class
|
|
7090
|
-
body:
|
|
7226
|
+
declare class TreeNotFoundError extends Error {
|
|
7227
|
+
body: PublicTreeNotFound & FreestyleError;
|
|
7091
7228
|
static readonly code: string;
|
|
7092
7229
|
static readonly statusCode: number;
|
|
7093
7230
|
static readonly description: string;
|
|
7094
|
-
constructor(body:
|
|
7231
|
+
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
7095
7232
|
}
|
|
7096
|
-
interface
|
|
7097
|
-
|
|
7098
|
-
* The resource type, e.g. "tar archive" or "zip archive"
|
|
7099
|
-
*/
|
|
7100
|
-
source: string;
|
|
7101
|
-
dir: string;
|
|
7233
|
+
interface PublicInvalidRevision {
|
|
7234
|
+
revision: string;
|
|
7102
7235
|
[k: string]: unknown;
|
|
7103
7236
|
}
|
|
7104
|
-
declare class
|
|
7105
|
-
body:
|
|
7106
|
-
static readonly code: string;
|
|
7107
|
-
static readonly statusCode: number;
|
|
7108
|
-
static readonly description: string;
|
|
7109
|
-
constructor(body: PublicImportSubdirNotFound & FreestyleError);
|
|
7110
|
-
}
|
|
7111
|
-
declare class PackfileError extends Error {
|
|
7112
|
-
body: unknown & FreestyleError;
|
|
7237
|
+
declare class InvalidRevisionError extends Error {
|
|
7238
|
+
body: PublicInvalidRevision & FreestyleError;
|
|
7113
7239
|
static readonly code: string;
|
|
7114
7240
|
static readonly statusCode: number;
|
|
7115
7241
|
static readonly description: string;
|
|
7116
|
-
constructor(body:
|
|
7242
|
+
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
7117
7243
|
}
|
|
7118
|
-
interface
|
|
7119
|
-
|
|
7244
|
+
interface PublicInvalidRange {
|
|
7245
|
+
since: string;
|
|
7246
|
+
until: string;
|
|
7120
7247
|
[k: string]: unknown;
|
|
7121
7248
|
}
|
|
7122
|
-
declare class
|
|
7123
|
-
body:
|
|
7124
|
-
static readonly code: string;
|
|
7125
|
-
static readonly statusCode: number;
|
|
7126
|
-
static readonly description: string;
|
|
7127
|
-
constructor(body: PublicPathNotFound & FreestyleError);
|
|
7128
|
-
}
|
|
7129
|
-
declare class InvalidServiceError extends Error {
|
|
7130
|
-
body: unknown & FreestyleError;
|
|
7131
|
-
static readonly code: string;
|
|
7132
|
-
static readonly statusCode: number;
|
|
7133
|
-
static readonly description: string;
|
|
7134
|
-
constructor(body: unknown & FreestyleError);
|
|
7135
|
-
}
|
|
7136
|
-
declare class ExpectedServiceError extends Error {
|
|
7137
|
-
body: unknown & FreestyleError;
|
|
7249
|
+
declare class InvalidRangeError extends Error {
|
|
7250
|
+
body: PublicInvalidRange & FreestyleError;
|
|
7138
7251
|
static readonly code: string;
|
|
7139
7252
|
static readonly statusCode: number;
|
|
7140
7253
|
static readonly description: string;
|
|
7141
|
-
constructor(body:
|
|
7254
|
+
constructor(body: PublicInvalidRange & FreestyleError);
|
|
7142
7255
|
}
|
|
7143
|
-
declare class
|
|
7256
|
+
declare class OffsetWithSelectorError extends Error {
|
|
7144
7257
|
body: unknown & FreestyleError;
|
|
7145
7258
|
static readonly code: string;
|
|
7146
7259
|
static readonly statusCode: number;
|
|
7147
7260
|
static readonly description: string;
|
|
7148
7261
|
constructor(body: unknown & FreestyleError);
|
|
7149
7262
|
}
|
|
7150
|
-
interface
|
|
7151
|
-
|
|
7263
|
+
interface PublicCommitNotInBranch {
|
|
7264
|
+
sha: string;
|
|
7265
|
+
branch: string;
|
|
7152
7266
|
[k: string]: unknown;
|
|
7153
7267
|
}
|
|
7154
|
-
declare class
|
|
7155
|
-
body:
|
|
7268
|
+
declare class CommitNotInBranchError extends Error {
|
|
7269
|
+
body: PublicCommitNotInBranch & FreestyleError;
|
|
7156
7270
|
static readonly code: string;
|
|
7157
7271
|
static readonly statusCode: number;
|
|
7158
7272
|
static readonly description: string;
|
|
7159
|
-
constructor(body:
|
|
7273
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
7160
7274
|
}
|
|
7161
|
-
interface
|
|
7162
|
-
|
|
7275
|
+
interface PublicBlobNotFound {
|
|
7276
|
+
hash: string;
|
|
7163
7277
|
[k: string]: unknown;
|
|
7164
7278
|
}
|
|
7165
|
-
declare class
|
|
7166
|
-
body:
|
|
7279
|
+
declare class BlobNotFoundError extends Error {
|
|
7280
|
+
body: PublicBlobNotFound & FreestyleError;
|
|
7167
7281
|
static readonly code: string;
|
|
7168
7282
|
static readonly statusCode: number;
|
|
7169
7283
|
static readonly description: string;
|
|
7170
|
-
constructor(body:
|
|
7284
|
+
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
7171
7285
|
}
|
|
7172
|
-
interface
|
|
7173
|
-
|
|
7286
|
+
interface PublicAmbiguous {
|
|
7287
|
+
rev: string;
|
|
7174
7288
|
[k: string]: unknown;
|
|
7175
7289
|
}
|
|
7176
|
-
declare class
|
|
7177
|
-
body:
|
|
7290
|
+
declare class AmbiguousError extends Error {
|
|
7291
|
+
body: PublicAmbiguous & FreestyleError;
|
|
7178
7292
|
static readonly code: string;
|
|
7179
7293
|
static readonly statusCode: number;
|
|
7180
7294
|
static readonly description: string;
|
|
7181
|
-
constructor(body:
|
|
7295
|
+
constructor(body: PublicAmbiguous & FreestyleError);
|
|
7182
7296
|
}
|
|
7183
|
-
interface
|
|
7184
|
-
|
|
7297
|
+
interface PublicInvalid {
|
|
7298
|
+
rev: string;
|
|
7185
7299
|
[k: string]: unknown;
|
|
7186
7300
|
}
|
|
7187
|
-
declare class
|
|
7188
|
-
body:
|
|
7301
|
+
declare class InvalidError extends Error {
|
|
7302
|
+
body: PublicInvalid & FreestyleError;
|
|
7189
7303
|
static readonly code: string;
|
|
7190
7304
|
static readonly statusCode: number;
|
|
7191
7305
|
static readonly description: string;
|
|
7192
|
-
constructor(body:
|
|
7193
|
-
}
|
|
7194
|
-
interface PublicPreVerifyRouteNotFound {
|
|
7195
|
-
domain: string;
|
|
7196
|
-
[k: string]: unknown;
|
|
7306
|
+
constructor(body: PublicInvalid & FreestyleError);
|
|
7197
7307
|
}
|
|
7198
|
-
declare class
|
|
7199
|
-
body:
|
|
7308
|
+
declare class PackfileError extends Error {
|
|
7309
|
+
body: unknown & FreestyleError;
|
|
7200
7310
|
static readonly code: string;
|
|
7201
7311
|
static readonly statusCode: number;
|
|
7202
7312
|
static readonly description: string;
|
|
7203
|
-
constructor(body:
|
|
7204
|
-
}
|
|
7205
|
-
interface PublicAuthorizationNotFound {
|
|
7206
|
-
domain: string;
|
|
7207
|
-
[k: string]: unknown;
|
|
7313
|
+
constructor(body: unknown & FreestyleError);
|
|
7208
7314
|
}
|
|
7209
|
-
declare class
|
|
7210
|
-
body:
|
|
7315
|
+
declare class DatabaseErrorError extends Error {
|
|
7316
|
+
body: unknown & FreestyleError;
|
|
7211
7317
|
static readonly code: string;
|
|
7212
7318
|
static readonly statusCode: number;
|
|
7213
7319
|
static readonly description: string;
|
|
7214
|
-
constructor(body:
|
|
7215
|
-
}
|
|
7216
|
-
interface PublicOrderNotFound {
|
|
7217
|
-
domain: string;
|
|
7218
|
-
[k: string]: unknown;
|
|
7320
|
+
constructor(body: unknown & FreestyleError);
|
|
7219
7321
|
}
|
|
7220
|
-
declare class
|
|
7221
|
-
body:
|
|
7322
|
+
declare class EmptyTagError extends Error {
|
|
7323
|
+
body: unknown & FreestyleError;
|
|
7222
7324
|
static readonly code: string;
|
|
7223
7325
|
static readonly statusCode: number;
|
|
7224
7326
|
static readonly description: string;
|
|
7225
|
-
constructor(body:
|
|
7327
|
+
constructor(body: unknown & FreestyleError);
|
|
7226
7328
|
}
|
|
7227
7329
|
interface PublicResizeFailed {
|
|
7228
7330
|
message: string;
|
|
@@ -7451,478 +7553,589 @@ declare class DevServerNotFoundError extends Error {
|
|
|
7451
7553
|
static readonly description: string;
|
|
7452
7554
|
constructor(body: PublicDevServerNotFound & FreestyleError);
|
|
7453
7555
|
}
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
[k: string]: unknown;
|
|
7457
|
-
}
|
|
7458
|
-
declare class ExecuteInternalErrorError extends Error {
|
|
7459
|
-
body: PublicExecuteInternalError & FreestyleError;
|
|
7556
|
+
declare class AnyhowError extends Error {
|
|
7557
|
+
body: unknown & FreestyleError;
|
|
7460
7558
|
static readonly code: string;
|
|
7461
7559
|
static readonly statusCode: number;
|
|
7462
7560
|
static readonly description: string;
|
|
7463
|
-
constructor(body:
|
|
7561
|
+
constructor(body: unknown & FreestyleError);
|
|
7464
7562
|
}
|
|
7465
|
-
declare class
|
|
7563
|
+
declare class BranchNameEmptyError extends Error {
|
|
7466
7564
|
body: unknown & FreestyleError;
|
|
7467
7565
|
static readonly code: string;
|
|
7468
7566
|
static readonly statusCode: number;
|
|
7469
7567
|
static readonly description: string;
|
|
7470
7568
|
constructor(body: unknown & FreestyleError);
|
|
7471
7569
|
}
|
|
7472
|
-
|
|
7473
|
-
|
|
7474
|
-
[k: string]: unknown;
|
|
7475
|
-
}
|
|
7476
|
-
declare class ListRunsFailedError extends Error {
|
|
7477
|
-
body: PublicListRunsFailed & FreestyleError;
|
|
7570
|
+
declare class PermissionAlreadyExistsError extends Error {
|
|
7571
|
+
body: unknown & FreestyleError;
|
|
7478
7572
|
static readonly code: string;
|
|
7479
7573
|
static readonly statusCode: number;
|
|
7480
7574
|
static readonly description: string;
|
|
7481
|
-
constructor(body:
|
|
7575
|
+
constructor(body: unknown & FreestyleError);
|
|
7482
7576
|
}
|
|
7483
|
-
interface
|
|
7577
|
+
interface PublicListTokensFailed {
|
|
7484
7578
|
message: string;
|
|
7485
7579
|
[k: string]: unknown;
|
|
7486
7580
|
}
|
|
7487
|
-
declare class
|
|
7488
|
-
body:
|
|
7581
|
+
declare class ListTokensFailedError extends Error {
|
|
7582
|
+
body: PublicListTokensFailed & FreestyleError;
|
|
7489
7583
|
static readonly code: string;
|
|
7490
7584
|
static readonly statusCode: number;
|
|
7491
7585
|
static readonly description: string;
|
|
7492
|
-
constructor(body:
|
|
7586
|
+
constructor(body: PublicListTokensFailed & FreestyleError);
|
|
7493
7587
|
}
|
|
7494
|
-
interface
|
|
7588
|
+
interface PublicRevokeTokenFailed {
|
|
7495
7589
|
message: string;
|
|
7496
7590
|
[k: string]: unknown;
|
|
7497
7591
|
}
|
|
7498
|
-
declare class
|
|
7499
|
-
body:
|
|
7592
|
+
declare class RevokeTokenFailedError extends Error {
|
|
7593
|
+
body: PublicRevokeTokenFailed & FreestyleError;
|
|
7500
7594
|
static readonly code: string;
|
|
7501
7595
|
static readonly statusCode: number;
|
|
7502
7596
|
static readonly description: string;
|
|
7503
|
-
constructor(body:
|
|
7597
|
+
constructor(body: PublicRevokeTokenFailed & FreestyleError);
|
|
7504
7598
|
}
|
|
7505
|
-
interface
|
|
7599
|
+
interface PublicCreateTokenFailed {
|
|
7506
7600
|
message: string;
|
|
7507
7601
|
[k: string]: unknown;
|
|
7508
7602
|
}
|
|
7509
|
-
declare class
|
|
7510
|
-
body:
|
|
7603
|
+
declare class CreateTokenFailedError extends Error {
|
|
7604
|
+
body: PublicCreateTokenFailed & FreestyleError;
|
|
7511
7605
|
static readonly code: string;
|
|
7512
7606
|
static readonly statusCode: number;
|
|
7513
7607
|
static readonly description: string;
|
|
7514
|
-
constructor(body:
|
|
7608
|
+
constructor(body: PublicCreateTokenFailed & FreestyleError);
|
|
7515
7609
|
}
|
|
7516
|
-
interface
|
|
7610
|
+
interface PublicListPermissionsFailed {
|
|
7517
7611
|
message: string;
|
|
7518
7612
|
[k: string]: unknown;
|
|
7519
7613
|
}
|
|
7520
|
-
declare class
|
|
7521
|
-
body:
|
|
7614
|
+
declare class ListPermissionsFailedError extends Error {
|
|
7615
|
+
body: PublicListPermissionsFailed & FreestyleError;
|
|
7522
7616
|
static readonly code: string;
|
|
7523
7617
|
static readonly statusCode: number;
|
|
7524
7618
|
static readonly description: string;
|
|
7525
|
-
constructor(body:
|
|
7619
|
+
constructor(body: PublicListPermissionsFailed & FreestyleError);
|
|
7526
7620
|
}
|
|
7527
|
-
interface
|
|
7621
|
+
interface PublicGetPermissionFailed {
|
|
7528
7622
|
message: string;
|
|
7529
7623
|
[k: string]: unknown;
|
|
7530
7624
|
}
|
|
7531
|
-
declare class
|
|
7532
|
-
body:
|
|
7625
|
+
declare class GetPermissionFailedError extends Error {
|
|
7626
|
+
body: PublicGetPermissionFailed & FreestyleError;
|
|
7533
7627
|
static readonly code: string;
|
|
7534
7628
|
static readonly statusCode: number;
|
|
7535
7629
|
static readonly description: string;
|
|
7536
|
-
constructor(body:
|
|
7630
|
+
constructor(body: PublicGetPermissionFailed & FreestyleError);
|
|
7537
7631
|
}
|
|
7538
|
-
interface
|
|
7632
|
+
interface PublicUpdatePermissionFailed {
|
|
7539
7633
|
message: string;
|
|
7540
7634
|
[k: string]: unknown;
|
|
7541
7635
|
}
|
|
7542
|
-
declare class
|
|
7543
|
-
body:
|
|
7636
|
+
declare class UpdatePermissionFailedError extends Error {
|
|
7637
|
+
body: PublicUpdatePermissionFailed & FreestyleError;
|
|
7544
7638
|
static readonly code: string;
|
|
7545
7639
|
static readonly statusCode: number;
|
|
7546
7640
|
static readonly description: string;
|
|
7547
|
-
constructor(body:
|
|
7641
|
+
constructor(body: PublicUpdatePermissionFailed & FreestyleError);
|
|
7548
7642
|
}
|
|
7549
|
-
interface
|
|
7643
|
+
interface PublicRevokePermissionFailed {
|
|
7550
7644
|
message: string;
|
|
7551
7645
|
[k: string]: unknown;
|
|
7552
7646
|
}
|
|
7553
|
-
declare class
|
|
7554
|
-
body:
|
|
7647
|
+
declare class RevokePermissionFailedError extends Error {
|
|
7648
|
+
body: PublicRevokePermissionFailed & FreestyleError;
|
|
7555
7649
|
static readonly code: string;
|
|
7556
7650
|
static readonly statusCode: number;
|
|
7557
7651
|
static readonly description: string;
|
|
7558
|
-
constructor(body:
|
|
7652
|
+
constructor(body: PublicRevokePermissionFailed & FreestyleError);
|
|
7559
7653
|
}
|
|
7560
|
-
interface
|
|
7654
|
+
interface PublicGrantPermissionFailed {
|
|
7561
7655
|
message: string;
|
|
7562
7656
|
[k: string]: unknown;
|
|
7563
7657
|
}
|
|
7564
|
-
declare class
|
|
7565
|
-
body:
|
|
7658
|
+
declare class GrantPermissionFailedError extends Error {
|
|
7659
|
+
body: PublicGrantPermissionFailed & FreestyleError;
|
|
7566
7660
|
static readonly code: string;
|
|
7567
7661
|
static readonly statusCode: number;
|
|
7568
7662
|
static readonly description: string;
|
|
7569
|
-
constructor(body:
|
|
7663
|
+
constructor(body: PublicGrantPermissionFailed & FreestyleError);
|
|
7570
7664
|
}
|
|
7571
|
-
interface
|
|
7665
|
+
interface PublicListIdentitiesFailed {
|
|
7572
7666
|
message: string;
|
|
7573
7667
|
[k: string]: unknown;
|
|
7574
7668
|
}
|
|
7575
|
-
declare class
|
|
7576
|
-
body:
|
|
7669
|
+
declare class ListIdentitiesFailedError extends Error {
|
|
7670
|
+
body: PublicListIdentitiesFailed & FreestyleError;
|
|
7577
7671
|
static readonly code: string;
|
|
7578
7672
|
static readonly statusCode: number;
|
|
7579
7673
|
static readonly description: string;
|
|
7580
|
-
constructor(body:
|
|
7674
|
+
constructor(body: PublicListIdentitiesFailed & FreestyleError);
|
|
7581
7675
|
}
|
|
7582
|
-
interface
|
|
7676
|
+
interface PublicDeleteIdentityFailed {
|
|
7583
7677
|
message: string;
|
|
7584
7678
|
[k: string]: unknown;
|
|
7585
7679
|
}
|
|
7586
|
-
declare class
|
|
7587
|
-
body:
|
|
7680
|
+
declare class DeleteIdentityFailedError extends Error {
|
|
7681
|
+
body: PublicDeleteIdentityFailed & FreestyleError;
|
|
7588
7682
|
static readonly code: string;
|
|
7589
7683
|
static readonly statusCode: number;
|
|
7590
7684
|
static readonly description: string;
|
|
7591
|
-
constructor(body:
|
|
7685
|
+
constructor(body: PublicDeleteIdentityFailed & FreestyleError);
|
|
7592
7686
|
}
|
|
7593
|
-
interface
|
|
7594
|
-
|
|
7687
|
+
interface PublicCreateIdentityFailed {
|
|
7688
|
+
message: string;
|
|
7595
7689
|
[k: string]: unknown;
|
|
7596
7690
|
}
|
|
7597
|
-
declare class
|
|
7598
|
-
body:
|
|
7691
|
+
declare class CreateIdentityFailedError extends Error {
|
|
7692
|
+
body: PublicCreateIdentityFailed & FreestyleError;
|
|
7599
7693
|
static readonly code: string;
|
|
7600
7694
|
static readonly statusCode: number;
|
|
7601
7695
|
static readonly description: string;
|
|
7602
|
-
constructor(body:
|
|
7696
|
+
constructor(body: PublicCreateIdentityFailed & FreestyleError);
|
|
7603
7697
|
}
|
|
7604
|
-
declare class
|
|
7698
|
+
declare class VmPermissionNotFoundError extends Error {
|
|
7605
7699
|
body: unknown & FreestyleError;
|
|
7606
7700
|
static readonly code: string;
|
|
7607
7701
|
static readonly statusCode: number;
|
|
7608
7702
|
static readonly description: string;
|
|
7609
7703
|
constructor(body: unknown & FreestyleError);
|
|
7610
7704
|
}
|
|
7611
|
-
declare class
|
|
7705
|
+
declare class PermissionNotFoundError extends Error {
|
|
7612
7706
|
body: unknown & FreestyleError;
|
|
7613
7707
|
static readonly code: string;
|
|
7614
7708
|
static readonly statusCode: number;
|
|
7615
7709
|
static readonly description: string;
|
|
7616
7710
|
constructor(body: unknown & FreestyleError);
|
|
7617
7711
|
}
|
|
7618
|
-
declare class
|
|
7712
|
+
declare class VmAccessDeniedError extends Error {
|
|
7619
7713
|
body: unknown & FreestyleError;
|
|
7620
7714
|
static readonly code: string;
|
|
7621
7715
|
static readonly statusCode: number;
|
|
7622
7716
|
static readonly description: string;
|
|
7623
7717
|
constructor(body: unknown & FreestyleError);
|
|
7624
7718
|
}
|
|
7625
|
-
|
|
7719
|
+
declare class GitRepositoryAccessDeniedError extends Error {
|
|
7720
|
+
body: unknown & FreestyleError;
|
|
7721
|
+
static readonly code: string;
|
|
7722
|
+
static readonly statusCode: number;
|
|
7723
|
+
static readonly description: string;
|
|
7724
|
+
constructor(body: unknown & FreestyleError);
|
|
7725
|
+
}
|
|
7726
|
+
declare class GitRepositoryNotFoundError extends Error {
|
|
7727
|
+
body: unknown & FreestyleError;
|
|
7728
|
+
static readonly code: string;
|
|
7729
|
+
static readonly statusCode: number;
|
|
7730
|
+
static readonly description: string;
|
|
7731
|
+
constructor(body: unknown & FreestyleError);
|
|
7732
|
+
}
|
|
7733
|
+
declare class CannotDeleteManagedIdentityError extends Error {
|
|
7734
|
+
body: unknown & FreestyleError;
|
|
7735
|
+
static readonly code: string;
|
|
7736
|
+
static readonly statusCode: number;
|
|
7737
|
+
static readonly description: string;
|
|
7738
|
+
constructor(body: unknown & FreestyleError);
|
|
7739
|
+
}
|
|
7740
|
+
declare class CannotModifyManagedIdentityError extends Error {
|
|
7741
|
+
body: unknown & FreestyleError;
|
|
7742
|
+
static readonly code: string;
|
|
7743
|
+
static readonly statusCode: number;
|
|
7744
|
+
static readonly description: string;
|
|
7745
|
+
constructor(body: unknown & FreestyleError);
|
|
7746
|
+
}
|
|
7747
|
+
declare class IdentityAccessDeniedError extends Error {
|
|
7748
|
+
body: unknown & FreestyleError;
|
|
7749
|
+
static readonly code: string;
|
|
7750
|
+
static readonly statusCode: number;
|
|
7751
|
+
static readonly description: string;
|
|
7752
|
+
constructor(body: unknown & FreestyleError);
|
|
7753
|
+
}
|
|
7754
|
+
declare class IdentityNotFoundError extends Error {
|
|
7755
|
+
body: unknown & FreestyleError;
|
|
7756
|
+
static readonly code: string;
|
|
7757
|
+
static readonly statusCode: number;
|
|
7758
|
+
static readonly description: string;
|
|
7759
|
+
constructor(body: unknown & FreestyleError);
|
|
7760
|
+
}
|
|
7761
|
+
interface PublicExecuteInternalError {
|
|
7626
7762
|
message: string;
|
|
7627
7763
|
[k: string]: unknown;
|
|
7628
7764
|
}
|
|
7629
|
-
declare class
|
|
7630
|
-
body:
|
|
7765
|
+
declare class ExecuteInternalErrorError extends Error {
|
|
7766
|
+
body: PublicExecuteInternalError & FreestyleError;
|
|
7631
7767
|
static readonly code: string;
|
|
7632
7768
|
static readonly statusCode: number;
|
|
7633
7769
|
static readonly description: string;
|
|
7634
|
-
constructor(body:
|
|
7770
|
+
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
7635
7771
|
}
|
|
7636
|
-
|
|
7772
|
+
declare class ExecuteAccessDeniedError extends Error {
|
|
7773
|
+
body: unknown & FreestyleError;
|
|
7774
|
+
static readonly code: string;
|
|
7775
|
+
static readonly statusCode: number;
|
|
7776
|
+
static readonly description: string;
|
|
7777
|
+
constructor(body: unknown & FreestyleError);
|
|
7778
|
+
}
|
|
7779
|
+
interface PublicListRunsFailed {
|
|
7637
7780
|
message: string;
|
|
7638
7781
|
[k: string]: unknown;
|
|
7639
7782
|
}
|
|
7640
|
-
declare class
|
|
7641
|
-
body:
|
|
7783
|
+
declare class ListRunsFailedError extends Error {
|
|
7784
|
+
body: PublicListRunsFailed & FreestyleError;
|
|
7642
7785
|
static readonly code: string;
|
|
7643
7786
|
static readonly statusCode: number;
|
|
7644
7787
|
static readonly description: string;
|
|
7645
|
-
constructor(body:
|
|
7788
|
+
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
7646
7789
|
}
|
|
7647
|
-
interface
|
|
7648
|
-
|
|
7790
|
+
interface PublicExecutionError {
|
|
7791
|
+
message: string;
|
|
7649
7792
|
[k: string]: unknown;
|
|
7650
7793
|
}
|
|
7651
|
-
declare class
|
|
7652
|
-
body:
|
|
7794
|
+
declare class ExecutionErrorError extends Error {
|
|
7795
|
+
body: PublicExecutionError & FreestyleError;
|
|
7653
7796
|
static readonly code: string;
|
|
7654
7797
|
static readonly statusCode: number;
|
|
7655
7798
|
static readonly description: string;
|
|
7656
|
-
constructor(body:
|
|
7799
|
+
constructor(body: PublicExecutionError & FreestyleError);
|
|
7657
7800
|
}
|
|
7658
|
-
interface
|
|
7801
|
+
interface PublicConnectionFailed {
|
|
7659
7802
|
message: string;
|
|
7660
7803
|
[k: string]: unknown;
|
|
7661
7804
|
}
|
|
7662
|
-
declare class
|
|
7663
|
-
body:
|
|
7805
|
+
declare class ConnectionFailedError extends Error {
|
|
7806
|
+
body: PublicConnectionFailed & FreestyleError;
|
|
7664
7807
|
static readonly code: string;
|
|
7665
7808
|
static readonly statusCode: number;
|
|
7666
7809
|
static readonly description: string;
|
|
7667
|
-
constructor(body:
|
|
7810
|
+
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
7668
7811
|
}
|
|
7669
|
-
interface
|
|
7812
|
+
interface PublicMetadataWriteFailed {
|
|
7670
7813
|
message: string;
|
|
7671
7814
|
[k: string]: unknown;
|
|
7672
7815
|
}
|
|
7673
|
-
declare class
|
|
7674
|
-
body:
|
|
7816
|
+
declare class MetadataWriteFailedError extends Error {
|
|
7817
|
+
body: PublicMetadataWriteFailed & FreestyleError;
|
|
7675
7818
|
static readonly code: string;
|
|
7676
7819
|
static readonly statusCode: number;
|
|
7677
7820
|
static readonly description: string;
|
|
7678
|
-
constructor(body:
|
|
7821
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
7679
7822
|
}
|
|
7680
|
-
interface
|
|
7823
|
+
interface PublicNodeModulesInstallFailed {
|
|
7681
7824
|
message: string;
|
|
7682
7825
|
[k: string]: unknown;
|
|
7683
7826
|
}
|
|
7684
|
-
declare class
|
|
7685
|
-
body:
|
|
7827
|
+
declare class NodeModulesInstallFailedError extends Error {
|
|
7828
|
+
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
7686
7829
|
static readonly code: string;
|
|
7687
7830
|
static readonly statusCode: number;
|
|
7688
7831
|
static readonly description: string;
|
|
7689
|
-
constructor(body:
|
|
7832
|
+
constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
|
|
7690
7833
|
}
|
|
7691
|
-
interface
|
|
7834
|
+
interface PublicNodeModulesDownloadFailed {
|
|
7692
7835
|
message: string;
|
|
7693
7836
|
[k: string]: unknown;
|
|
7694
7837
|
}
|
|
7695
|
-
declare class
|
|
7696
|
-
body:
|
|
7838
|
+
declare class NodeModulesDownloadFailedError extends Error {
|
|
7839
|
+
body: PublicNodeModulesDownloadFailed & FreestyleError;
|
|
7697
7840
|
static readonly code: string;
|
|
7698
7841
|
static readonly statusCode: number;
|
|
7699
7842
|
static readonly description: string;
|
|
7700
|
-
constructor(body:
|
|
7843
|
+
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
|
|
7701
7844
|
}
|
|
7702
|
-
interface
|
|
7845
|
+
interface PublicLockGenerationFailed {
|
|
7703
7846
|
message: string;
|
|
7704
7847
|
[k: string]: unknown;
|
|
7705
7848
|
}
|
|
7706
|
-
declare class
|
|
7707
|
-
body:
|
|
7849
|
+
declare class LockGenerationFailedError extends Error {
|
|
7850
|
+
body: PublicLockGenerationFailed & FreestyleError;
|
|
7708
7851
|
static readonly code: string;
|
|
7709
7852
|
static readonly statusCode: number;
|
|
7710
7853
|
static readonly description: string;
|
|
7711
|
-
constructor(body:
|
|
7854
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
7712
7855
|
}
|
|
7713
|
-
interface
|
|
7714
|
-
|
|
7856
|
+
interface PublicWriteScriptFailed {
|
|
7857
|
+
message: string;
|
|
7715
7858
|
[k: string]: unknown;
|
|
7716
7859
|
}
|
|
7717
|
-
declare class
|
|
7718
|
-
body:
|
|
7860
|
+
declare class WriteScriptFailedError extends Error {
|
|
7861
|
+
body: PublicWriteScriptFailed & FreestyleError;
|
|
7719
7862
|
static readonly code: string;
|
|
7720
7863
|
static readonly statusCode: number;
|
|
7721
7864
|
static readonly description: string;
|
|
7722
|
-
constructor(body:
|
|
7865
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
7723
7866
|
}
|
|
7724
|
-
|
|
7725
|
-
|
|
7867
|
+
interface PublicDirectoryCreationFailed {
|
|
7868
|
+
message: string;
|
|
7869
|
+
[k: string]: unknown;
|
|
7870
|
+
}
|
|
7871
|
+
declare class DirectoryCreationFailedError extends Error {
|
|
7872
|
+
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
7726
7873
|
static readonly code: string;
|
|
7727
7874
|
static readonly statusCode: number;
|
|
7728
7875
|
static readonly description: string;
|
|
7729
|
-
constructor(body:
|
|
7876
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
7730
7877
|
}
|
|
7731
|
-
interface
|
|
7878
|
+
interface PublicNetworkPermissionsFailed {
|
|
7732
7879
|
message: string;
|
|
7733
7880
|
[k: string]: unknown;
|
|
7734
7881
|
}
|
|
7735
|
-
declare class
|
|
7736
|
-
body:
|
|
7882
|
+
declare class NetworkPermissionsFailedError extends Error {
|
|
7883
|
+
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
7737
7884
|
static readonly code: string;
|
|
7738
7885
|
static readonly statusCode: number;
|
|
7739
7886
|
static readonly description: string;
|
|
7740
|
-
constructor(body:
|
|
7887
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
7741
7888
|
}
|
|
7742
|
-
interface
|
|
7889
|
+
interface PublicLoggingFailed {
|
|
7743
7890
|
message: string;
|
|
7744
7891
|
[k: string]: unknown;
|
|
7745
7892
|
}
|
|
7746
|
-
declare class
|
|
7747
|
-
body:
|
|
7893
|
+
declare class LoggingFailedError extends Error {
|
|
7894
|
+
body: PublicLoggingFailed & FreestyleError;
|
|
7748
7895
|
static readonly code: string;
|
|
7749
7896
|
static readonly statusCode: number;
|
|
7750
7897
|
static readonly description: string;
|
|
7751
|
-
constructor(body:
|
|
7898
|
+
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
7752
7899
|
}
|
|
7753
|
-
interface
|
|
7754
|
-
|
|
7900
|
+
interface PublicRunNotFound {
|
|
7901
|
+
runId: string;
|
|
7755
7902
|
[k: string]: unknown;
|
|
7756
7903
|
}
|
|
7757
|
-
declare class
|
|
7758
|
-
body:
|
|
7904
|
+
declare class RunNotFoundError extends Error {
|
|
7905
|
+
body: PublicRunNotFound & FreestyleError;
|
|
7759
7906
|
static readonly code: string;
|
|
7760
7907
|
static readonly statusCode: number;
|
|
7761
7908
|
static readonly description: string;
|
|
7762
|
-
constructor(body:
|
|
7909
|
+
constructor(body: PublicRunNotFound & FreestyleError);
|
|
7763
7910
|
}
|
|
7764
|
-
interface
|
|
7911
|
+
interface PublicCloudstateInternalError {
|
|
7765
7912
|
message: string;
|
|
7766
7913
|
[k: string]: unknown;
|
|
7767
7914
|
}
|
|
7768
|
-
declare class
|
|
7769
|
-
body:
|
|
7915
|
+
declare class CloudstateInternalErrorError extends Error {
|
|
7916
|
+
body: PublicCloudstateInternalError & FreestyleError;
|
|
7770
7917
|
static readonly code: string;
|
|
7771
7918
|
static readonly statusCode: number;
|
|
7772
7919
|
static readonly description: string;
|
|
7773
|
-
constructor(body:
|
|
7920
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
7774
7921
|
}
|
|
7775
|
-
interface
|
|
7922
|
+
interface PublicCloudstateDatabaseError {
|
|
7776
7923
|
message: string;
|
|
7777
7924
|
[k: string]: unknown;
|
|
7778
7925
|
}
|
|
7779
|
-
declare class
|
|
7780
|
-
body:
|
|
7926
|
+
declare class CloudstateDatabaseErrorError extends Error {
|
|
7927
|
+
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
7781
7928
|
static readonly code: string;
|
|
7782
7929
|
static readonly statusCode: number;
|
|
7783
7930
|
static readonly description: string;
|
|
7784
|
-
constructor(body:
|
|
7931
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
7785
7932
|
}
|
|
7786
|
-
interface
|
|
7787
|
-
|
|
7933
|
+
interface PublicCloudstateAccessDenied {
|
|
7934
|
+
projectId: string;
|
|
7788
7935
|
[k: string]: unknown;
|
|
7789
7936
|
}
|
|
7790
|
-
declare class
|
|
7791
|
-
body:
|
|
7937
|
+
declare class CloudstateAccessDeniedError extends Error {
|
|
7938
|
+
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
7792
7939
|
static readonly code: string;
|
|
7793
7940
|
static readonly statusCode: number;
|
|
7794
7941
|
static readonly description: string;
|
|
7795
|
-
constructor(body:
|
|
7942
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
7796
7943
|
}
|
|
7797
|
-
interface
|
|
7944
|
+
interface PublicRestoreFailed {
|
|
7798
7945
|
message: string;
|
|
7799
7946
|
[k: string]: unknown;
|
|
7800
7947
|
}
|
|
7801
|
-
declare class
|
|
7802
|
-
body:
|
|
7948
|
+
declare class RestoreFailedError extends Error {
|
|
7949
|
+
body: PublicRestoreFailed & FreestyleError;
|
|
7803
7950
|
static readonly code: string;
|
|
7804
7951
|
static readonly statusCode: number;
|
|
7805
7952
|
static readonly description: string;
|
|
7806
|
-
constructor(body:
|
|
7953
|
+
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
7807
7954
|
}
|
|
7808
|
-
interface
|
|
7955
|
+
interface PublicCreateBackupFailed {
|
|
7809
7956
|
message: string;
|
|
7810
7957
|
[k: string]: unknown;
|
|
7811
7958
|
}
|
|
7812
|
-
declare class
|
|
7813
|
-
body:
|
|
7959
|
+
declare class CreateBackupFailedError extends Error {
|
|
7960
|
+
body: PublicCreateBackupFailed & FreestyleError;
|
|
7814
7961
|
static readonly code: string;
|
|
7815
7962
|
static readonly statusCode: number;
|
|
7816
7963
|
static readonly description: string;
|
|
7817
|
-
constructor(body:
|
|
7964
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
7818
7965
|
}
|
|
7819
|
-
interface
|
|
7966
|
+
interface PublicBackupFailed {
|
|
7820
7967
|
message: string;
|
|
7821
7968
|
[k: string]: unknown;
|
|
7822
7969
|
}
|
|
7823
|
-
declare class
|
|
7824
|
-
body:
|
|
7970
|
+
declare class BackupFailedError extends Error {
|
|
7971
|
+
body: PublicBackupFailed & FreestyleError;
|
|
7825
7972
|
static readonly code: string;
|
|
7826
7973
|
static readonly statusCode: number;
|
|
7827
7974
|
static readonly description: string;
|
|
7828
|
-
constructor(body:
|
|
7975
|
+
constructor(body: PublicBackupFailed & FreestyleError);
|
|
7829
7976
|
}
|
|
7830
|
-
interface
|
|
7977
|
+
interface PublicDeploymentFailed {
|
|
7831
7978
|
message: string;
|
|
7832
7979
|
[k: string]: unknown;
|
|
7833
7980
|
}
|
|
7834
|
-
declare class
|
|
7835
|
-
body:
|
|
7981
|
+
declare class DeploymentFailedError extends Error {
|
|
7982
|
+
body: PublicDeploymentFailed & FreestyleError;
|
|
7836
7983
|
static readonly code: string;
|
|
7837
7984
|
static readonly statusCode: number;
|
|
7838
7985
|
static readonly description: string;
|
|
7839
|
-
constructor(body:
|
|
7986
|
+
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
7840
7987
|
}
|
|
7841
|
-
interface
|
|
7988
|
+
interface PublicInvalidDeploymentRequest {
|
|
7842
7989
|
message: string;
|
|
7843
7990
|
[k: string]: unknown;
|
|
7844
7991
|
}
|
|
7845
|
-
declare class
|
|
7846
|
-
body:
|
|
7992
|
+
declare class InvalidDeploymentRequestError extends Error {
|
|
7993
|
+
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
7847
7994
|
static readonly code: string;
|
|
7848
7995
|
static readonly statusCode: number;
|
|
7849
7996
|
static readonly description: string;
|
|
7850
|
-
constructor(body:
|
|
7997
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
7851
7998
|
}
|
|
7852
|
-
|
|
7853
|
-
|
|
7999
|
+
interface PublicProjectNotFound {
|
|
8000
|
+
projectId: string;
|
|
8001
|
+
[k: string]: unknown;
|
|
8002
|
+
}
|
|
8003
|
+
declare class ProjectNotFoundError extends Error {
|
|
8004
|
+
body: PublicProjectNotFound & FreestyleError;
|
|
7854
8005
|
static readonly code: string;
|
|
7855
8006
|
static readonly statusCode: number;
|
|
7856
8007
|
static readonly description: string;
|
|
7857
|
-
constructor(body:
|
|
8008
|
+
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
7858
8009
|
}
|
|
7859
|
-
|
|
7860
|
-
|
|
8010
|
+
interface UnauthorizedErrorPublic {
|
|
8011
|
+
route: string;
|
|
8012
|
+
reason?: string | null;
|
|
8013
|
+
[k: string]: unknown;
|
|
8014
|
+
}
|
|
8015
|
+
declare class UnauthorizedErrorError extends Error {
|
|
8016
|
+
body: UnauthorizedErrorPublic & FreestyleError;
|
|
7861
8017
|
static readonly code: string;
|
|
7862
8018
|
static readonly statusCode: number;
|
|
7863
8019
|
static readonly description: string;
|
|
7864
|
-
constructor(body:
|
|
8020
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
7865
8021
|
}
|
|
7866
|
-
|
|
7867
|
-
|
|
8022
|
+
interface PublicBuildFailed {
|
|
8023
|
+
logs: string;
|
|
8024
|
+
vmId: string;
|
|
8025
|
+
[k: string]: unknown;
|
|
8026
|
+
}
|
|
8027
|
+
declare class BuildFailedError extends Error {
|
|
8028
|
+
body: PublicBuildFailed & FreestyleError;
|
|
7868
8029
|
static readonly code: string;
|
|
7869
8030
|
static readonly statusCode: number;
|
|
7870
8031
|
static readonly description: string;
|
|
7871
|
-
constructor(body:
|
|
8032
|
+
constructor(body: PublicBuildFailed & FreestyleError);
|
|
7872
8033
|
}
|
|
7873
|
-
declare class
|
|
8034
|
+
declare class ServerDeploymentFailedError extends Error {
|
|
7874
8035
|
body: unknown & FreestyleError;
|
|
7875
8036
|
static readonly code: string;
|
|
7876
8037
|
static readonly statusCode: number;
|
|
7877
8038
|
static readonly description: string;
|
|
7878
8039
|
constructor(body: unknown & FreestyleError);
|
|
7879
8040
|
}
|
|
7880
|
-
|
|
7881
|
-
|
|
8041
|
+
interface PublicLockfileError {
|
|
8042
|
+
message: string;
|
|
8043
|
+
[k: string]: unknown;
|
|
8044
|
+
}
|
|
8045
|
+
declare class LockfileErrorError extends Error {
|
|
8046
|
+
body: PublicLockfileError & FreestyleError;
|
|
7882
8047
|
static readonly code: string;
|
|
7883
8048
|
static readonly statusCode: number;
|
|
7884
8049
|
static readonly description: string;
|
|
7885
|
-
constructor(body:
|
|
8050
|
+
constructor(body: PublicLockfileError & FreestyleError);
|
|
7886
8051
|
}
|
|
7887
|
-
declare class
|
|
8052
|
+
declare class UploadErrorError extends Error {
|
|
7888
8053
|
body: unknown & FreestyleError;
|
|
7889
8054
|
static readonly code: string;
|
|
7890
8055
|
static readonly statusCode: number;
|
|
7891
8056
|
static readonly description: string;
|
|
7892
8057
|
constructor(body: unknown & FreestyleError);
|
|
7893
8058
|
}
|
|
7894
|
-
|
|
7895
|
-
|
|
8059
|
+
interface PublicDomainMappingError {
|
|
8060
|
+
domain: string;
|
|
8061
|
+
[k: string]: unknown;
|
|
8062
|
+
}
|
|
8063
|
+
declare class DomainMappingErrorError extends Error {
|
|
8064
|
+
body: PublicDomainMappingError & FreestyleError;
|
|
7896
8065
|
static readonly code: string;
|
|
7897
8066
|
static readonly statusCode: number;
|
|
7898
8067
|
static readonly description: string;
|
|
7899
|
-
constructor(body:
|
|
8068
|
+
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
7900
8069
|
}
|
|
7901
|
-
|
|
7902
|
-
|
|
8070
|
+
interface PublicCertificateProvisioningError {
|
|
8071
|
+
domain: string;
|
|
8072
|
+
reason?: string | null;
|
|
8073
|
+
[k: string]: unknown;
|
|
8074
|
+
}
|
|
8075
|
+
declare class CertificateProvisioningErrorError extends Error {
|
|
8076
|
+
body: PublicCertificateProvisioningError & FreestyleError;
|
|
7903
8077
|
static readonly code: string;
|
|
7904
8078
|
static readonly statusCode: number;
|
|
7905
8079
|
static readonly description: string;
|
|
7906
|
-
constructor(body:
|
|
8080
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
7907
8081
|
}
|
|
7908
|
-
declare class
|
|
8082
|
+
declare class NoEntrypointFoundError extends Error {
|
|
7909
8083
|
body: unknown & FreestyleError;
|
|
7910
8084
|
static readonly code: string;
|
|
7911
8085
|
static readonly statusCode: number;
|
|
7912
8086
|
static readonly description: string;
|
|
7913
8087
|
constructor(body: unknown & FreestyleError);
|
|
7914
8088
|
}
|
|
7915
|
-
interface
|
|
7916
|
-
|
|
7917
|
-
|
|
8089
|
+
interface PublicEntrypointNotFound {
|
|
8090
|
+
entrypoint: string;
|
|
8091
|
+
[k: string]: unknown;
|
|
8092
|
+
}
|
|
8093
|
+
declare class EntrypointNotFoundError extends Error {
|
|
8094
|
+
body: PublicEntrypointNotFound & FreestyleError;
|
|
8095
|
+
static readonly code: string;
|
|
8096
|
+
static readonly statusCode: number;
|
|
8097
|
+
static readonly description: string;
|
|
8098
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
8099
|
+
}
|
|
8100
|
+
interface PublicNoDomainOwnership {
|
|
8101
|
+
domain: string;
|
|
8102
|
+
[k: string]: unknown;
|
|
8103
|
+
}
|
|
8104
|
+
declare class NoDomainOwnershipError extends Error {
|
|
8105
|
+
body: PublicNoDomainOwnership & FreestyleError;
|
|
8106
|
+
static readonly code: string;
|
|
8107
|
+
static readonly statusCode: number;
|
|
8108
|
+
static readonly description: string;
|
|
8109
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
8110
|
+
}
|
|
8111
|
+
interface PublicInvalidDomains {
|
|
8112
|
+
domains: string[];
|
|
7918
8113
|
[k: string]: unknown;
|
|
7919
8114
|
}
|
|
7920
|
-
declare class
|
|
7921
|
-
body:
|
|
8115
|
+
declare class InvalidDomainsError extends Error {
|
|
8116
|
+
body: PublicInvalidDomains & FreestyleError;
|
|
8117
|
+
static readonly code: string;
|
|
8118
|
+
static readonly statusCode: number;
|
|
8119
|
+
static readonly description: string;
|
|
8120
|
+
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
8121
|
+
}
|
|
8122
|
+
interface PublicWebDeploymentBadRequest {
|
|
8123
|
+
message: string;
|
|
8124
|
+
[k: string]: unknown;
|
|
8125
|
+
}
|
|
8126
|
+
declare class WebDeploymentBadRequestError extends Error {
|
|
8127
|
+
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
8128
|
+
static readonly code: string;
|
|
8129
|
+
static readonly statusCode: number;
|
|
8130
|
+
static readonly description: string;
|
|
8131
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
8132
|
+
}
|
|
8133
|
+
declare class DeploymentNotFoundError extends Error {
|
|
8134
|
+
body: unknown & FreestyleError;
|
|
7922
8135
|
static readonly code: string;
|
|
7923
8136
|
static readonly statusCode: number;
|
|
7924
8137
|
static readonly description: string;
|
|
7925
|
-
constructor(body:
|
|
8138
|
+
constructor(body: unknown & FreestyleError);
|
|
7926
8139
|
}
|
|
7927
8140
|
interface PublicObservabilityDatabaseError {
|
|
7928
8141
|
message: string;
|
|
@@ -8327,124 +8540,6 @@ declare class InvalidDomainError extends Error {
|
|
|
8327
8540
|
static readonly description: string;
|
|
8328
8541
|
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
8329
8542
|
}
|
|
8330
|
-
interface PublicBuildFailed {
|
|
8331
|
-
logs: string;
|
|
8332
|
-
vmId: string;
|
|
8333
|
-
[k: string]: unknown;
|
|
8334
|
-
}
|
|
8335
|
-
declare class BuildFailedError extends Error {
|
|
8336
|
-
body: PublicBuildFailed & FreestyleError;
|
|
8337
|
-
static readonly code: string;
|
|
8338
|
-
static readonly statusCode: number;
|
|
8339
|
-
static readonly description: string;
|
|
8340
|
-
constructor(body: PublicBuildFailed & FreestyleError);
|
|
8341
|
-
}
|
|
8342
|
-
declare class ServerDeploymentFailedError extends Error {
|
|
8343
|
-
body: unknown & FreestyleError;
|
|
8344
|
-
static readonly code: string;
|
|
8345
|
-
static readonly statusCode: number;
|
|
8346
|
-
static readonly description: string;
|
|
8347
|
-
constructor(body: unknown & FreestyleError);
|
|
8348
|
-
}
|
|
8349
|
-
interface PublicLockfileError {
|
|
8350
|
-
message: string;
|
|
8351
|
-
[k: string]: unknown;
|
|
8352
|
-
}
|
|
8353
|
-
declare class LockfileErrorError extends Error {
|
|
8354
|
-
body: PublicLockfileError & FreestyleError;
|
|
8355
|
-
static readonly code: string;
|
|
8356
|
-
static readonly statusCode: number;
|
|
8357
|
-
static readonly description: string;
|
|
8358
|
-
constructor(body: PublicLockfileError & FreestyleError);
|
|
8359
|
-
}
|
|
8360
|
-
declare class UploadErrorError extends Error {
|
|
8361
|
-
body: unknown & FreestyleError;
|
|
8362
|
-
static readonly code: string;
|
|
8363
|
-
static readonly statusCode: number;
|
|
8364
|
-
static readonly description: string;
|
|
8365
|
-
constructor(body: unknown & FreestyleError);
|
|
8366
|
-
}
|
|
8367
|
-
interface PublicDomainMappingError {
|
|
8368
|
-
domain: string;
|
|
8369
|
-
[k: string]: unknown;
|
|
8370
|
-
}
|
|
8371
|
-
declare class DomainMappingErrorError extends Error {
|
|
8372
|
-
body: PublicDomainMappingError & FreestyleError;
|
|
8373
|
-
static readonly code: string;
|
|
8374
|
-
static readonly statusCode: number;
|
|
8375
|
-
static readonly description: string;
|
|
8376
|
-
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
8377
|
-
}
|
|
8378
|
-
interface PublicCertificateProvisioningError {
|
|
8379
|
-
domain: string;
|
|
8380
|
-
reason?: string | null;
|
|
8381
|
-
[k: string]: unknown;
|
|
8382
|
-
}
|
|
8383
|
-
declare class CertificateProvisioningErrorError extends Error {
|
|
8384
|
-
body: PublicCertificateProvisioningError & FreestyleError;
|
|
8385
|
-
static readonly code: string;
|
|
8386
|
-
static readonly statusCode: number;
|
|
8387
|
-
static readonly description: string;
|
|
8388
|
-
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
8389
|
-
}
|
|
8390
|
-
declare class NoEntrypointFoundError extends Error {
|
|
8391
|
-
body: unknown & FreestyleError;
|
|
8392
|
-
static readonly code: string;
|
|
8393
|
-
static readonly statusCode: number;
|
|
8394
|
-
static readonly description: string;
|
|
8395
|
-
constructor(body: unknown & FreestyleError);
|
|
8396
|
-
}
|
|
8397
|
-
interface PublicEntrypointNotFound {
|
|
8398
|
-
entrypoint: string;
|
|
8399
|
-
[k: string]: unknown;
|
|
8400
|
-
}
|
|
8401
|
-
declare class EntrypointNotFoundError extends Error {
|
|
8402
|
-
body: PublicEntrypointNotFound & FreestyleError;
|
|
8403
|
-
static readonly code: string;
|
|
8404
|
-
static readonly statusCode: number;
|
|
8405
|
-
static readonly description: string;
|
|
8406
|
-
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
8407
|
-
}
|
|
8408
|
-
interface PublicNoDomainOwnership {
|
|
8409
|
-
domain: string;
|
|
8410
|
-
[k: string]: unknown;
|
|
8411
|
-
}
|
|
8412
|
-
declare class NoDomainOwnershipError extends Error {
|
|
8413
|
-
body: PublicNoDomainOwnership & FreestyleError;
|
|
8414
|
-
static readonly code: string;
|
|
8415
|
-
static readonly statusCode: number;
|
|
8416
|
-
static readonly description: string;
|
|
8417
|
-
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
8418
|
-
}
|
|
8419
|
-
interface PublicInvalidDomains {
|
|
8420
|
-
domains: string[];
|
|
8421
|
-
[k: string]: unknown;
|
|
8422
|
-
}
|
|
8423
|
-
declare class InvalidDomainsError extends Error {
|
|
8424
|
-
body: PublicInvalidDomains & FreestyleError;
|
|
8425
|
-
static readonly code: string;
|
|
8426
|
-
static readonly statusCode: number;
|
|
8427
|
-
static readonly description: string;
|
|
8428
|
-
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
8429
|
-
}
|
|
8430
|
-
interface PublicWebDeploymentBadRequest {
|
|
8431
|
-
message: string;
|
|
8432
|
-
[k: string]: unknown;
|
|
8433
|
-
}
|
|
8434
|
-
declare class WebDeploymentBadRequestError extends Error {
|
|
8435
|
-
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
8436
|
-
static readonly code: string;
|
|
8437
|
-
static readonly statusCode: number;
|
|
8438
|
-
static readonly description: string;
|
|
8439
|
-
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
8440
|
-
}
|
|
8441
|
-
declare class DeploymentNotFoundError extends Error {
|
|
8442
|
-
body: unknown & FreestyleError;
|
|
8443
|
-
static readonly code: string;
|
|
8444
|
-
static readonly statusCode: number;
|
|
8445
|
-
static readonly description: string;
|
|
8446
|
-
constructor(body: unknown & FreestyleError);
|
|
8447
|
-
}
|
|
8448
8543
|
interface PublicDomainAlreadyExists {
|
|
8449
8544
|
domain: string;
|
|
8450
8545
|
[k: string]: unknown;
|
|
@@ -8502,10 +8597,14 @@ declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
|
8502
8597
|
}
|
|
8503
8598
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
8504
8599
|
GIT_ERROR: typeof GitErrorError;
|
|
8505
|
-
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
8506
8600
|
INTERNAL_ERROR: typeof InternalErrorError;
|
|
8601
|
+
DOCKER_IMPORT_BAD_REQUEST: typeof DockerImportBadRequestError;
|
|
8602
|
+
VM_OPERATION_DENIED_DURING_TRANSACTION: typeof VmOperationDeniedDuringTransactionError;
|
|
8603
|
+
VM_TRANSACTION_ID_MISMATCH: typeof VmTransactionIdMismatchError;
|
|
8604
|
+
VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
|
|
8507
8605
|
FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
|
|
8508
8606
|
CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
|
|
8607
|
+
SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
|
|
8509
8608
|
VM_DELETED: typeof VmDeletedError;
|
|
8510
8609
|
REQWEST: typeof ReqwestError;
|
|
8511
8610
|
FIRECRACKER_PID_NOT_FOUND: typeof FirecrackerPidNotFoundError;
|
|
@@ -8517,19 +8616,15 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8517
8616
|
VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
|
|
8518
8617
|
FILE_NOT_FOUND: typeof FileNotFoundError;
|
|
8519
8618
|
FILES_BAD_REQUEST: typeof FilesBadRequestError;
|
|
8520
|
-
VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
|
|
8521
|
-
ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
|
|
8522
|
-
NOT_FOUND: typeof NotFoundError;
|
|
8523
8619
|
VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
|
|
8524
8620
|
VM_NOT_RUNNING: typeof VmNotRunningError;
|
|
8525
8621
|
VM_NOT_FOUND: typeof VmNotFoundError;
|
|
8526
8622
|
INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
|
|
8527
8623
|
BAD_REQUEST: typeof BadRequestError;
|
|
8528
8624
|
INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
|
|
8625
|
+
VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
|
|
8626
|
+
ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
|
|
8627
|
+
NOT_FOUND: typeof NotFoundError;
|
|
8533
8628
|
CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
|
|
8534
8629
|
USER_NOT_FOUND: typeof UserNotFoundError;
|
|
8535
8630
|
USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
|
|
@@ -8565,46 +8660,44 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8565
8660
|
SERVICE_NOT_FOUND: typeof ServiceNotFoundError;
|
|
8566
8661
|
INVALID_REQUEST: typeof InvalidRequestError;
|
|
8567
8662
|
REPO_NOT_FOUND: typeof RepoNotFoundError;
|
|
8663
|
+
RUNTIME_ERROR: typeof RuntimeErrorError;
|
|
8664
|
+
SYNTAX_ERROR: typeof SyntaxErrorError;
|
|
8568
8665
|
INTERNAL: typeof InternalError;
|
|
8569
8666
|
SIGNING: typeof SigningError;
|
|
8570
8667
|
INVALID_SIGNATURE: typeof InvalidSignatureError;
|
|
8571
8668
|
INVALID_PARAMETERS: typeof InvalidParametersError;
|
|
8572
8669
|
MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
|
|
8573
8670
|
EXPIRED: typeof ExpiredError;
|
|
8574
|
-
CONFLICT: typeof ConflictError;
|
|
8575
|
-
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
8576
|
-
SEND_ERROR: typeof SendErrorError;
|
|
8577
8671
|
FORBIDDEN: typeof ForbiddenError;
|
|
8672
|
+
UNAUTHORIZED: typeof UnauthorizedError;
|
|
8673
|
+
INVALID_SERVICE: typeof InvalidServiceError;
|
|
8674
|
+
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
8578
8675
|
UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
|
|
8676
|
+
CONFLICT: typeof ConflictError;
|
|
8677
|
+
BRANCH_NOT_FOUND: typeof BranchNotFoundError;
|
|
8678
|
+
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
8679
|
+
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
8680
|
+
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
8681
|
+
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
8682
|
+
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
8683
|
+
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
8579
8684
|
REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
|
|
8685
|
+
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
8686
|
+
SEND_ERROR: typeof SendErrorError;
|
|
8687
|
+
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
8688
|
+
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
8689
|
+
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
8690
|
+
TREE_NOT_FOUND: typeof TreeNotFoundError;
|
|
8691
|
+
INVALID_REVISION: typeof InvalidRevisionError;
|
|
8580
8692
|
INVALID_RANGE: typeof InvalidRangeError;
|
|
8581
8693
|
OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
|
|
8582
8694
|
COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
|
|
8583
|
-
COMMIT_NOT_FOUND: typeof CommitNotFoundError;
|
|
8584
8695
|
BLOB_NOT_FOUND: typeof BlobNotFoundError;
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
UNAUTHORIZED: typeof UnauthorizedError;
|
|
8588
|
-
TAG_NOT_FOUND: typeof TagNotFoundError;
|
|
8589
|
-
REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
|
|
8590
|
-
GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
|
|
8591
|
-
INVALID_OBJECT_ID: typeof InvalidObjectIdError;
|
|
8592
|
-
SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
|
|
8593
|
-
SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
|
|
8594
|
-
SOURCE_NOT_FOUND: typeof SourceNotFoundError;
|
|
8595
|
-
IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
|
|
8696
|
+
AMBIGUOUS: typeof AmbiguousError;
|
|
8697
|
+
INVALID: typeof InvalidError;
|
|
8596
8698
|
PACKFILE: typeof PackfileError;
|
|
8597
|
-
PATH_NOT_FOUND: typeof PathNotFoundError;
|
|
8598
|
-
INVALID_SERVICE: typeof InvalidServiceError;
|
|
8599
|
-
EXPECTED_SERVICE: typeof ExpectedServiceError;
|
|
8600
8699
|
DATABASE_ERROR: typeof DatabaseErrorError;
|
|
8601
|
-
|
|
8602
|
-
PRE_VERIFY_CHALLENGE_MISMATCH: typeof PreVerifyChallengeMismatchError;
|
|
8603
|
-
PRE_VERIFY_FAILED_PARSE: typeof PreVerifyFailedParseError;
|
|
8604
|
-
PRE_VERIFY_FAILED_FETCH: typeof PreVerifyFailedFetchError;
|
|
8605
|
-
PRE_VERIFY_ROUTE_NOT_FOUND: typeof PreVerifyRouteNotFoundError;
|
|
8606
|
-
AUTHORIZATION_NOT_FOUND: typeof AuthorizationNotFoundError;
|
|
8607
|
-
ORDER_NOT_FOUND: typeof OrderNotFoundError;
|
|
8700
|
+
EMPTY_TAG: typeof EmptyTagError;
|
|
8608
8701
|
RESIZE_FAILED: typeof ResizeFailedError;
|
|
8609
8702
|
INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
|
|
8610
8703
|
DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
|
|
@@ -8626,32 +8719,8 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8626
8719
|
DEV_SERVER_FILE_NOT_FOUND: typeof DevServerFileNotFoundError;
|
|
8627
8720
|
DEV_SERVER_INVALID_REQUEST: typeof DevServerInvalidRequestError;
|
|
8628
8721
|
DEV_SERVER_NOT_FOUND: typeof DevServerNotFoundError;
|
|
8629
|
-
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
8630
|
-
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
8631
|
-
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
8632
|
-
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
8633
|
-
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
8634
|
-
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
8635
|
-
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
8636
|
-
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
8637
|
-
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
8638
|
-
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
8639
|
-
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
8640
|
-
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
8641
|
-
LOGGING_FAILED: typeof LoggingFailedError;
|
|
8642
|
-
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
8643
|
-
EMPTY_TAG: typeof EmptyTagError;
|
|
8644
8722
|
ANYHOW: typeof AnyhowError;
|
|
8645
8723
|
BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
|
|
8646
|
-
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
8647
|
-
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
8648
|
-
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
8649
|
-
RESTORE_FAILED: typeof RestoreFailedError;
|
|
8650
|
-
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
8651
|
-
BACKUP_FAILED: typeof BackupFailedError;
|
|
8652
|
-
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
8653
|
-
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
8654
|
-
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
8655
8724
|
PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
|
|
8656
8725
|
LIST_TOKENS_FAILED: typeof ListTokensFailedError;
|
|
8657
8726
|
REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
|
|
@@ -8673,7 +8742,42 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8673
8742
|
CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
|
|
8674
8743
|
IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
|
|
8675
8744
|
IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
|
|
8745
|
+
EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
|
|
8746
|
+
EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
|
|
8747
|
+
LIST_RUNS_FAILED: typeof ListRunsFailedError;
|
|
8748
|
+
EXECUTION_ERROR: typeof ExecutionErrorError;
|
|
8749
|
+
CONNECTION_FAILED: typeof ConnectionFailedError;
|
|
8750
|
+
METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
|
|
8751
|
+
NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
|
|
8752
|
+
NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
|
|
8753
|
+
LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
|
|
8754
|
+
WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
|
|
8755
|
+
DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
|
|
8756
|
+
NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
|
|
8757
|
+
LOGGING_FAILED: typeof LoggingFailedError;
|
|
8758
|
+
RUN_NOT_FOUND: typeof RunNotFoundError;
|
|
8759
|
+
CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
|
|
8760
|
+
CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
|
|
8761
|
+
CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
|
|
8762
|
+
RESTORE_FAILED: typeof RestoreFailedError;
|
|
8763
|
+
CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
|
|
8764
|
+
BACKUP_FAILED: typeof BackupFailedError;
|
|
8765
|
+
DEPLOYMENT_FAILED: typeof DeploymentFailedError;
|
|
8766
|
+
INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
|
|
8767
|
+
PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
|
|
8676
8768
|
UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
|
|
8769
|
+
BUILD_FAILED: typeof BuildFailedError;
|
|
8770
|
+
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
8771
|
+
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
8772
|
+
UPLOAD_ERROR: typeof UploadErrorError;
|
|
8773
|
+
DOMAIN_MAPPING_ERROR: typeof DomainMappingErrorError;
|
|
8774
|
+
CERTIFICATE_PROVISIONING_ERROR: typeof CertificateProvisioningErrorError;
|
|
8775
|
+
NO_ENTRYPOINT_FOUND: typeof NoEntrypointFoundError;
|
|
8776
|
+
ENTRYPOINT_NOT_FOUND: typeof EntrypointNotFoundError;
|
|
8777
|
+
NO_DOMAIN_OWNERSHIP: typeof NoDomainOwnershipError;
|
|
8778
|
+
INVALID_DOMAINS: typeof InvalidDomainsError;
|
|
8779
|
+
WEB_DEPLOYMENT_BAD_REQUEST: typeof WebDeploymentBadRequestError;
|
|
8780
|
+
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
8677
8781
|
OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
|
|
8678
8782
|
OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
|
|
8679
8783
|
PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
|
|
@@ -8711,18 +8815,6 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
|
8711
8815
|
VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
|
|
8712
8816
|
FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
|
|
8713
8817
|
INVALID_DOMAIN: typeof InvalidDomainError;
|
|
8714
|
-
BUILD_FAILED: typeof BuildFailedError;
|
|
8715
|
-
SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
|
|
8716
|
-
LOCKFILE_ERROR: typeof LockfileErrorError;
|
|
8717
|
-
UPLOAD_ERROR: typeof UploadErrorError;
|
|
8718
|
-
DOMAIN_MAPPING_ERROR: typeof DomainMappingErrorError;
|
|
8719
|
-
CERTIFICATE_PROVISIONING_ERROR: typeof CertificateProvisioningErrorError;
|
|
8720
|
-
NO_ENTRYPOINT_FOUND: typeof NoEntrypointFoundError;
|
|
8721
|
-
ENTRYPOINT_NOT_FOUND: typeof EntrypointNotFoundError;
|
|
8722
|
-
NO_DOMAIN_OWNERSHIP: typeof NoDomainOwnershipError;
|
|
8723
|
-
INVALID_DOMAINS: typeof InvalidDomainsError;
|
|
8724
|
-
WEB_DEPLOYMENT_BAD_REQUEST: typeof WebDeploymentBadRequestError;
|
|
8725
|
-
DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
|
|
8726
8818
|
DOMAIN_ALREADY_EXISTS: typeof DomainAlreadyExistsError;
|
|
8727
8819
|
FAILED_TO_INSERT_OWNERSHIP: typeof FailedToInsertOwnershipError;
|
|
8728
8820
|
FAILED_REMOVE_DOMAIN_MAPPING: typeof FailedRemoveDomainMappingError;
|
|
@@ -8734,10 +8826,10 @@ type errors_AfterArrayContainsEmptyError = AfterArrayContainsEmptyError;
|
|
|
8734
8826
|
declare const errors_AfterArrayContainsEmptyError: typeof AfterArrayContainsEmptyError;
|
|
8735
8827
|
type errors_AlreadyHasBaseError = AlreadyHasBaseError;
|
|
8736
8828
|
declare const errors_AlreadyHasBaseError: typeof AlreadyHasBaseError;
|
|
8829
|
+
type errors_AmbiguousError = AmbiguousError;
|
|
8830
|
+
declare const errors_AmbiguousError: typeof AmbiguousError;
|
|
8737
8831
|
type errors_AnyhowError = AnyhowError;
|
|
8738
8832
|
declare const errors_AnyhowError: typeof AnyhowError;
|
|
8739
|
-
type errors_AuthorizationNotFoundError = AuthorizationNotFoundError;
|
|
8740
|
-
declare const errors_AuthorizationNotFoundError: typeof AuthorizationNotFoundError;
|
|
8741
8833
|
type errors_BackupFailedError = BackupFailedError;
|
|
8742
8834
|
declare const errors_BackupFailedError: typeof BackupFailedError;
|
|
8743
8835
|
type errors_BadRequestError = BadRequestError;
|
|
@@ -8768,6 +8860,7 @@ type errors_CommitFailedError = CommitFailedError;
|
|
|
8768
8860
|
declare const errors_CommitFailedError: typeof CommitFailedError;
|
|
8769
8861
|
type errors_CommitNotFoundError = CommitNotFoundError;
|
|
8770
8862
|
declare const errors_CommitNotFoundError: typeof CommitNotFoundError;
|
|
8863
|
+
type errors_CommitNotFoundPublic = CommitNotFoundPublic;
|
|
8771
8864
|
type errors_CommitNotInBranchError = CommitNotInBranchError;
|
|
8772
8865
|
declare const errors_CommitNotInBranchError: typeof CommitNotInBranchError;
|
|
8773
8866
|
type errors_ConflictError = ConflictError;
|
|
@@ -8946,6 +9039,8 @@ type errors_InvalidDomainError = InvalidDomainError;
|
|
|
8946
9039
|
declare const errors_InvalidDomainError: typeof InvalidDomainError;
|
|
8947
9040
|
type errors_InvalidDomainsError = InvalidDomainsError;
|
|
8948
9041
|
declare const errors_InvalidDomainsError: typeof InvalidDomainsError;
|
|
9042
|
+
type errors_InvalidError = InvalidError;
|
|
9043
|
+
declare const errors_InvalidError: typeof InvalidError;
|
|
8949
9044
|
type errors_InvalidObjectIdError = InvalidObjectIdError;
|
|
8950
9045
|
declare const errors_InvalidObjectIdError: typeof InvalidObjectIdError;
|
|
8951
9046
|
type errors_InvalidObjectIdPublic = InvalidObjectIdPublic;
|
|
@@ -8963,6 +9058,7 @@ type errors_InvalidServiceError = InvalidServiceError;
|
|
|
8963
9058
|
declare const errors_InvalidServiceError: typeof InvalidServiceError;
|
|
8964
9059
|
type errors_InvalidSignatureError = InvalidSignatureError;
|
|
8965
9060
|
declare const errors_InvalidSignatureError: typeof InvalidSignatureError;
|
|
9061
|
+
type errors_JavascriptLog = JavascriptLog;
|
|
8966
9062
|
type errors_LfsTransferAdapter = LfsTransferAdapter;
|
|
8967
9063
|
type errors_ListIdentitiesFailedError = ListIdentitiesFailedError;
|
|
8968
9064
|
declare const errors_ListIdentitiesFailedError: typeof ListIdentitiesFailedError;
|
|
@@ -9008,8 +9104,6 @@ type errors_OffsetWithSelectorError = OffsetWithSelectorError;
|
|
|
9008
9104
|
declare const errors_OffsetWithSelectorError: typeof OffsetWithSelectorError;
|
|
9009
9105
|
type errors_OnFailureArrayContainsEmptyError = OnFailureArrayContainsEmptyError;
|
|
9010
9106
|
declare const errors_OnFailureArrayContainsEmptyError: typeof OnFailureArrayContainsEmptyError;
|
|
9011
|
-
type errors_OrderNotFoundError = OrderNotFoundError;
|
|
9012
|
-
declare const errors_OrderNotFoundError: typeof OrderNotFoundError;
|
|
9013
9107
|
type errors_PackfileError = PackfileError;
|
|
9014
9108
|
declare const errors_PackfileError: typeof PackfileError;
|
|
9015
9109
|
type errors_ParseLogsFailedError = ParseLogsFailedError;
|
|
@@ -9026,17 +9120,9 @@ type errors_PermissionErrorError = PermissionErrorError;
|
|
|
9026
9120
|
declare const errors_PermissionErrorError: typeof PermissionErrorError;
|
|
9027
9121
|
type errors_PermissionNotFoundError = PermissionNotFoundError;
|
|
9028
9122
|
declare const errors_PermissionNotFoundError: typeof PermissionNotFoundError;
|
|
9029
|
-
type errors_PreVerifyChallengeMismatchError = PreVerifyChallengeMismatchError;
|
|
9030
|
-
declare const errors_PreVerifyChallengeMismatchError: typeof PreVerifyChallengeMismatchError;
|
|
9031
|
-
type errors_PreVerifyFailedFetchError = PreVerifyFailedFetchError;
|
|
9032
|
-
declare const errors_PreVerifyFailedFetchError: typeof PreVerifyFailedFetchError;
|
|
9033
|
-
type errors_PreVerifyFailedParseError = PreVerifyFailedParseError;
|
|
9034
|
-
declare const errors_PreVerifyFailedParseError: typeof PreVerifyFailedParseError;
|
|
9035
|
-
type errors_PreVerifyRouteNotFoundError = PreVerifyRouteNotFoundError;
|
|
9036
|
-
declare const errors_PreVerifyRouteNotFoundError: typeof PreVerifyRouteNotFoundError;
|
|
9037
9123
|
type errors_ProjectNotFoundError = ProjectNotFoundError;
|
|
9038
9124
|
declare const errors_ProjectNotFoundError: typeof ProjectNotFoundError;
|
|
9039
|
-
type
|
|
9125
|
+
type errors_PublicAmbiguous = PublicAmbiguous;
|
|
9040
9126
|
type errors_PublicBackupFailed = PublicBackupFailed;
|
|
9041
9127
|
type errors_PublicBadRequest = PublicBadRequest;
|
|
9042
9128
|
type errors_PublicBlobNotFound = PublicBlobNotFound;
|
|
@@ -9048,7 +9134,6 @@ type errors_PublicCloudstateAccessDenied = PublicCloudstateAccessDenied;
|
|
|
9048
9134
|
type errors_PublicCloudstateDatabaseError = PublicCloudstateDatabaseError;
|
|
9049
9135
|
type errors_PublicCloudstateInternalError = PublicCloudstateInternalError;
|
|
9050
9136
|
type errors_PublicCommitFailed = PublicCommitFailed;
|
|
9051
|
-
type errors_PublicCommitNotFound = PublicCommitNotFound;
|
|
9052
9137
|
type errors_PublicCommitNotInBranch = PublicCommitNotInBranch;
|
|
9053
9138
|
type errors_PublicConnectionFailed = PublicConnectionFailed;
|
|
9054
9139
|
type errors_PublicContentNotFound = PublicContentNotFound;
|
|
@@ -9103,6 +9188,7 @@ type errors_PublicIdentityError = PublicIdentityError;
|
|
|
9103
9188
|
type errors_PublicImportSubdirNotFound = PublicImportSubdirNotFound;
|
|
9104
9189
|
type errors_PublicInternalForkVmNotFound = PublicInternalForkVmNotFound;
|
|
9105
9190
|
type errors_PublicInternalVmNotFound = PublicInternalVmNotFound;
|
|
9191
|
+
type errors_PublicInvalid = PublicInvalid;
|
|
9106
9192
|
type errors_PublicInvalidDeploymentRequest = PublicInvalidDeploymentRequest;
|
|
9107
9193
|
type errors_PublicInvalidDomain = PublicInvalidDomain;
|
|
9108
9194
|
type errors_PublicInvalidDomains = PublicInvalidDomains;
|
|
@@ -9126,20 +9212,16 @@ type errors_PublicNodeModulesDownloadFailed = PublicNodeModulesDownloadFailed;
|
|
|
9126
9212
|
type errors_PublicNodeModulesInstallFailed = PublicNodeModulesInstallFailed;
|
|
9127
9213
|
type errors_PublicObservabilityAccessDenied = PublicObservabilityAccessDenied;
|
|
9128
9214
|
type errors_PublicObservabilityDatabaseError = PublicObservabilityDatabaseError;
|
|
9129
|
-
type errors_PublicOrderNotFound = PublicOrderNotFound;
|
|
9130
9215
|
type errors_PublicParseLogsFailed = PublicParseLogsFailed;
|
|
9131
9216
|
type errors_PublicParseResponseError = PublicParseResponseError;
|
|
9132
9217
|
type errors_PublicPathNotFound = PublicPathNotFound;
|
|
9133
9218
|
type errors_PublicPermissionDenied = PublicPermissionDenied;
|
|
9134
9219
|
type errors_PublicPermissionError = PublicPermissionError;
|
|
9135
|
-
type errors_PublicPreVerifyChallengeMismatch = PublicPreVerifyChallengeMismatch;
|
|
9136
|
-
type errors_PublicPreVerifyFailedFetch = PublicPreVerifyFailedFetch;
|
|
9137
|
-
type errors_PublicPreVerifyFailedParse = PublicPreVerifyFailedParse;
|
|
9138
|
-
type errors_PublicPreVerifyRouteNotFound = PublicPreVerifyRouteNotFound;
|
|
9139
9220
|
type errors_PublicProjectNotFound = PublicProjectNotFound;
|
|
9140
9221
|
type errors_PublicReadFileFailed = PublicReadFileFailed;
|
|
9141
9222
|
type errors_PublicRecordOwnershipError = PublicRecordOwnershipError;
|
|
9142
9223
|
type errors_PublicReferenceNotFound = PublicReferenceNotFound;
|
|
9224
|
+
type errors_PublicRepoAlreadyExists = PublicRepoAlreadyExists;
|
|
9143
9225
|
type errors_PublicRepositoryNotFound = PublicRepositoryNotFound;
|
|
9144
9226
|
type errors_PublicRequestFailed = PublicRequestFailed;
|
|
9145
9227
|
type errors_PublicResizeFailed = PublicResizeFailed;
|
|
@@ -9149,6 +9231,7 @@ type errors_PublicRetrieveLogsFailed = PublicRetrieveLogsFailed;
|
|
|
9149
9231
|
type errors_PublicRevokePermissionFailed = PublicRevokePermissionFailed;
|
|
9150
9232
|
type errors_PublicRevokeTokenFailed = PublicRevokeTokenFailed;
|
|
9151
9233
|
type errors_PublicRunNotFound = PublicRunNotFound;
|
|
9234
|
+
type errors_PublicRuntimeError = PublicRuntimeError;
|
|
9152
9235
|
type errors_PublicSerializationError = PublicSerializationError;
|
|
9153
9236
|
type errors_PublicServiceAlreadyExists = PublicServiceAlreadyExists;
|
|
9154
9237
|
type errors_PublicShutdownFailed = PublicShutdownFailed;
|
|
@@ -9156,6 +9239,7 @@ type errors_PublicSnapshotVmBadRequest = PublicSnapshotVmBadRequest;
|
|
|
9156
9239
|
type errors_PublicSourceNotFound = PublicSourceNotFound;
|
|
9157
9240
|
type errors_PublicSourceUnauthorized = PublicSourceUnauthorized;
|
|
9158
9241
|
type errors_PublicStatusFailed = PublicStatusFailed;
|
|
9242
|
+
type errors_PublicSyntaxError = PublicSyntaxError;
|
|
9159
9243
|
type errors_PublicTagNotFound = PublicTagNotFound;
|
|
9160
9244
|
type errors_PublicTokenError = PublicTokenError;
|
|
9161
9245
|
type errors_PublicTreeNotFound = PublicTreeNotFound;
|
|
@@ -9166,7 +9250,6 @@ type errors_PublicUpdatePermissionFailed = PublicUpdatePermissionFailed;
|
|
|
9166
9250
|
type errors_PublicUserAlreadyExists = PublicUserAlreadyExists;
|
|
9167
9251
|
type errors_PublicVerificationFailed = PublicVerificationFailed;
|
|
9168
9252
|
type errors_PublicVerificationNotFound = PublicVerificationNotFound;
|
|
9169
|
-
type errors_PublicWaitTimeout = PublicWaitTimeout;
|
|
9170
9253
|
type errors_PublicWatchFilesFailed = PublicWatchFilesFailed;
|
|
9171
9254
|
type errors_PublicWebDeploymentBadRequest = PublicWebDeploymentBadRequest;
|
|
9172
9255
|
type errors_PublicWriteFileFailed = PublicWriteFileFailed;
|
|
@@ -9205,6 +9288,8 @@ type errors_RevokeTokenFailedError = RevokeTokenFailedError;
|
|
|
9205
9288
|
declare const errors_RevokeTokenFailedError: typeof RevokeTokenFailedError;
|
|
9206
9289
|
type errors_RunNotFoundError = RunNotFoundError;
|
|
9207
9290
|
declare const errors_RunNotFoundError: typeof RunNotFoundError;
|
|
9291
|
+
type errors_RuntimeErrorError = RuntimeErrorError;
|
|
9292
|
+
declare const errors_RuntimeErrorError: typeof RuntimeErrorError;
|
|
9208
9293
|
type errors_SendErrorError = SendErrorError;
|
|
9209
9294
|
declare const errors_SendErrorError: typeof SendErrorError;
|
|
9210
9295
|
type errors_SerializationErrorError = SerializationErrorError;
|
|
@@ -9239,6 +9324,8 @@ type errors_StatusFailedError = StatusFailedError;
|
|
|
9239
9324
|
declare const errors_StatusFailedError: typeof StatusFailedError;
|
|
9240
9325
|
type errors_StdIoError = StdIoError;
|
|
9241
9326
|
declare const errors_StdIoError: typeof StdIoError;
|
|
9327
|
+
type errors_SyntaxErrorError = SyntaxErrorError;
|
|
9328
|
+
declare const errors_SyntaxErrorError: typeof SyntaxErrorError;
|
|
9242
9329
|
type errors_TagNotFoundError = TagNotFoundError;
|
|
9243
9330
|
declare const errors_TagNotFoundError: typeof TagNotFoundError;
|
|
9244
9331
|
type errors_TokenErrorError = TokenErrorError;
|
|
@@ -9313,8 +9400,6 @@ declare const errors_VmSubnetNotFoundError: typeof VmSubnetNotFoundError;
|
|
|
9313
9400
|
type errors_VmTransactionIdMismatchError = VmTransactionIdMismatchError;
|
|
9314
9401
|
declare const errors_VmTransactionIdMismatchError: typeof VmTransactionIdMismatchError;
|
|
9315
9402
|
type errors_VmTransactionIdMismatchPublic = VmTransactionIdMismatchPublic;
|
|
9316
|
-
type errors_WaitTimeoutError = WaitTimeoutError;
|
|
9317
|
-
declare const errors_WaitTimeoutError: typeof WaitTimeoutError;
|
|
9318
9403
|
type errors_WantedByEmptyError = WantedByEmptyError;
|
|
9319
9404
|
declare const errors_WantedByEmptyError: typeof WantedByEmptyError;
|
|
9320
9405
|
type errors_WatchFilesFailedError = WatchFilesFailedError;
|
|
@@ -9329,8 +9414,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
|
|
|
9329
9414
|
declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
|
|
9330
9415
|
declare const errors_errorFromJSON: typeof errorFromJSON;
|
|
9331
9416
|
declare namespace errors {
|
|
9332
|
-
export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AnyhowError as AnyhowError, errors_AuthorizationNotFoundError as AuthorizationNotFoundError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyTagError as EmptyTagError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitErrorError as GitErrorError, errors_GitHubSyncConflictError as GitHubSyncConflictError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_ImportSubdirNotFoundError as ImportSubdirNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OffsetWithSelectorError as OffsetWithSelectorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_OrderNotFoundError as OrderNotFoundError, errors_PackfileError as PackfileError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_PreVerifyChallengeMismatchError as PreVerifyChallengeMismatchError, errors_PreVerifyFailedFetchError as PreVerifyFailedFetchError, errors_PreVerifyFailedParseError as PreVerifyFailedParseError, errors_PreVerifyRouteNotFoundError as PreVerifyRouteNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoAlreadyExistsError as RepoAlreadyExistsError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_SendErrorError as SendErrorError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WaitTimeoutError as WaitTimeoutError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
9333
|
-
export type { errors_FreestyleError as FreestyleError, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_LfsTransferAdapter as LfsTransferAdapter,
|
|
9417
|
+
export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AmbiguousError as AmbiguousError, errors_AnyhowError as AnyhowError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyTagError as EmptyTagError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitErrorError as GitErrorError, errors_GitHubSyncConflictError as GitHubSyncConflictError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_ImportSubdirNotFoundError as ImportSubdirNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidError as InvalidError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OffsetWithSelectorError as OffsetWithSelectorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_PackfileError as PackfileError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoAlreadyExistsError as RepoAlreadyExistsError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_RuntimeErrorError as RuntimeErrorError, errors_SendErrorError as SendErrorError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_SyntaxErrorError as SyntaxErrorError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
|
|
9418
|
+
export type { errors_CommitNotFoundPublic as CommitNotFoundPublic, errors_FreestyleError as FreestyleError, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_JavascriptLog as JavascriptLog, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PublicAmbiguous as PublicAmbiguous, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBrowserOperationFailed as PublicBrowserOperationFailed, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitFailed as PublicCommitFailed, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConnectionFailed as PublicConnectionFailed, errors_PublicContentNotFound as PublicContentNotFound, errors_PublicCreateBackupFailed as PublicCreateBackupFailed, errors_PublicCreateIdentityFailed as PublicCreateIdentityFailed, errors_PublicCreateRepositoryFailed as PublicCreateRepositoryFailed, errors_PublicCreateSnapshotBadRequest as PublicCreateSnapshotBadRequest, errors_PublicCreateTokenFailed as PublicCreateTokenFailed, errors_PublicCreateVmBadRequest as PublicCreateVmBadRequest, errors_PublicDeleteIdentityFailed as PublicDeleteIdentityFailed, errors_PublicDeleteRepositoryFailed as PublicDeleteRepositoryFailed, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDevServerFileNotFound as PublicDevServerFileNotFound, errors_PublicDevServerInvalidRequest as PublicDevServerInvalidRequest, errors_PublicDevServerNotFound as PublicDevServerNotFound, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDockerImportBadRequest as PublicDockerImportBadRequest, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDownloadFailed as PublicDownloadFailed, errors_PublicEntrypointNotFound as PublicEntrypointNotFound, errors_PublicErrorCreatingRecord as PublicErrorCreatingRecord, errors_PublicErrorDeletingRecord as PublicErrorDeletingRecord, errors_PublicExecuteInternalError as PublicExecuteInternalError, errors_PublicExecutionError as PublicExecutionError, errors_PublicExecutionFailed as PublicExecutionFailed, errors_PublicFailedPermissionsCheck as PublicFailedPermissionsCheck, errors_PublicFailedRemoveDomainMapping as PublicFailedRemoveDomainMapping, errors_PublicFailedToCheckDomainMappingPermissions as PublicFailedToCheckDomainMappingPermissions, errors_PublicFailedToCheckPermissions as PublicFailedToCheckPermissions, errors_PublicFailedToCreateVerificationCode as PublicFailedToCreateVerificationCode, errors_PublicFailedToDeleteVerification as PublicFailedToDeleteVerification, errors_PublicFailedToInsertDomainMapping as PublicFailedToInsertDomainMapping, errors_PublicFailedToInsertOwnership as PublicFailedToInsertOwnership, errors_PublicFailedToListDomains as PublicFailedToListDomains, errors_PublicFailedToListVerifications as PublicFailedToListVerifications, errors_PublicFailedToProvisionCertificate as PublicFailedToProvisionCertificate, errors_PublicFailedToVerifyDomain as PublicFailedToVerifyDomain, errors_PublicFileNotFound as PublicFileNotFound, errors_PublicFilesBadRequest as PublicFilesBadRequest, errors_PublicForkVmNotFound as PublicForkVmNotFound, errors_PublicGetContentFailed as PublicGetContentFailed, errors_PublicGetPermissionFailed as PublicGetPermissionFailed, errors_PublicGetRepositoryInfoFailed as PublicGetRepositoryInfoFailed, errors_PublicGitHubSyncFailed as PublicGitHubSyncFailed, errors_PublicGitInvalidRequest as PublicGitInvalidRequest, errors_PublicGitServerError as PublicGitServerError, errors_PublicGrantPermissionFailed as PublicGrantPermissionFailed, errors_PublicGroupAlreadyExists as PublicGroupAlreadyExists, errors_PublicIdentityError as PublicIdentityError, errors_PublicImportSubdirNotFound as PublicImportSubdirNotFound, errors_PublicInternalForkVmNotFound as PublicInternalForkVmNotFound, errors_PublicInternalVmNotFound as PublicInternalVmNotFound, errors_PublicInvalid as PublicInvalid, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRange as PublicInvalidRange, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicListIdentitiesFailed as PublicListIdentitiesFailed, errors_PublicListPermissionsFailed as PublicListPermissionsFailed, errors_PublicListRepositoriesFailed as PublicListRepositoriesFailed, errors_PublicListRunsFailed as PublicListRunsFailed, errors_PublicListTokensFailed as PublicListTokensFailed, errors_PublicLockGenerationFailed as PublicLockGenerationFailed, errors_PublicLockfileError as PublicLockfileError, errors_PublicLoggingFailed as PublicLoggingFailed, errors_PublicLogsFailed as PublicLogsFailed, errors_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicParseLogsFailed as PublicParseLogsFailed, errors_PublicParseResponseError as PublicParseResponseError, errors_PublicPathNotFound as PublicPathNotFound, errors_PublicPermissionDenied as PublicPermissionDenied, errors_PublicPermissionError as PublicPermissionError, errors_PublicProjectNotFound as PublicProjectNotFound, errors_PublicReadFileFailed as PublicReadFileFailed, errors_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepoAlreadyExists as PublicRepoAlreadyExists, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicRequestFailed as PublicRequestFailed, errors_PublicResizeFailed as PublicResizeFailed, errors_PublicRestartFailed as PublicRestartFailed, errors_PublicRestoreFailed as PublicRestoreFailed, errors_PublicRetrieveLogsFailed as PublicRetrieveLogsFailed, errors_PublicRevokePermissionFailed as PublicRevokePermissionFailed, errors_PublicRevokeTokenFailed as PublicRevokeTokenFailed, errors_PublicRunNotFound as PublicRunNotFound, errors_PublicRuntimeError as PublicRuntimeError, errors_PublicSerializationError as PublicSerializationError, errors_PublicServiceAlreadyExists as PublicServiceAlreadyExists, errors_PublicShutdownFailed as PublicShutdownFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicSourceNotFound as PublicSourceNotFound, errors_PublicSourceUnauthorized as PublicSourceUnauthorized, errors_PublicStatusFailed as PublicStatusFailed, errors_PublicSyntaxError as PublicSyntaxError, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTokenError as PublicTokenError, errors_PublicTreeNotFound as PublicTreeNotFound, errors_PublicTriggerError as PublicTriggerError, errors_PublicUnsupportedTransfer as PublicUnsupportedTransfer, errors_PublicUpdateDefaultBranchFailed as PublicUpdateDefaultBranchFailed, errors_PublicUpdatePermissionFailed as PublicUpdatePermissionFailed, errors_PublicUserAlreadyExists as PublicUserAlreadyExists, errors_PublicVerificationFailed as PublicVerificationFailed, errors_PublicVerificationNotFound as PublicVerificationNotFound, errors_PublicWatchFilesFailed as PublicWatchFilesFailed, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteFileFailed as PublicWriteFileFailed, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
|
|
9334
9419
|
}
|
|
9335
9420
|
|
|
9336
9421
|
/**
|
|
@@ -10352,24 +10437,9 @@ declare class RunsNamespace {
|
|
|
10352
10437
|
/**
|
|
10353
10438
|
* Create and execute a script run.
|
|
10354
10439
|
*/
|
|
10355
|
-
create<T = any>({ code, config
|
|
10440
|
+
create<T = any>({ code, ...config }: {
|
|
10356
10441
|
code: string;
|
|
10357
|
-
|
|
10358
|
-
/**
|
|
10359
|
-
* Optional headers to include in outgoing requests made by the script.
|
|
10360
|
-
*/
|
|
10361
|
-
outgoingHeaders?: Record<string, string>;
|
|
10362
|
-
/**
|
|
10363
|
-
* Optional proxy URL for outgoing requests made by the serverless execution.
|
|
10364
|
-
*/
|
|
10365
|
-
outgoingProxy?: string;
|
|
10366
|
-
}): Promise<{
|
|
10367
|
-
result: T;
|
|
10368
|
-
logs: {
|
|
10369
|
-
message: string;
|
|
10370
|
-
type: string;
|
|
10371
|
-
}[];
|
|
10372
|
-
}>;
|
|
10442
|
+
} & PostExecuteV2ScriptRequestBody["config"]): Promise<ResponsePostExecuteV2Script200>;
|
|
10373
10443
|
/**
|
|
10374
10444
|
* List execution runs.
|
|
10375
10445
|
*/
|