@vercel/sdk 1.10.0 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +3144 -2287
- package/bin/mcp-server.js.map +51 -51
- package/docs/sdks/accessgroups/README.md +11 -0
- package/docs/sdks/aliases/README.md +7 -1
- package/docs/sdks/artifacts/README.md +6 -0
- package/docs/sdks/authentication/README.md +5 -0
- package/docs/sdks/certs/README.md +4 -0
- package/docs/sdks/checks/README.md +5 -0
- package/docs/sdks/deployments/README.md +18 -0
- package/docs/sdks/dns/README.md +4 -0
- package/docs/sdks/domains/README.md +10 -0
- package/docs/sdks/edgeconfig/README.md +17 -0
- package/docs/sdks/environment/README.md +5 -0
- package/docs/sdks/integrations/README.md +4 -0
- package/docs/sdks/logdrains/README.md +3 -0
- package/docs/sdks/logs/README.md +1 -0
- package/docs/sdks/marketplace/README.md +20 -0
- package/docs/sdks/projectmembers/README.md +3 -0
- package/docs/sdks/projects/README.md +24 -0
- package/docs/sdks/rollingrelease/README.md +7 -0
- package/docs/sdks/security/README.md +8 -0
- package/docs/sdks/teams/README.md +13 -0
- package/docs/sdks/user/README.md +3 -0
- package/docs/sdks/webhooks/README.md +4 -0
- package/esm/__tests__/aliases.test.js +16 -16
- package/esm/__tests__/aliases.test.js.map +1 -1
- package/esm/__tests__/security.test.js +13 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/aliasesGetAlias.d.ts +2 -2
- package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
- package/esm/funcs/aliasesGetAlias.js +3 -2
- package/esm/funcs/aliasesGetAlias.js.map +1 -1
- package/esm/funcs/checksRerequestCheck.js +1 -0
- package/esm/funcs/checksRerequestCheck.js.map +1 -1
- package/esm/funcs/domainsGetDomainConfig.js +2 -2
- package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
- package/esm/funcs/edgeConfigPatchEdgeConfigItems.js +2 -3
- package/esm/funcs/edgeConfigPatchEdgeConfigItems.js.map +1 -1
- package/esm/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.js +2 -2
- package/esm/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.js.map +1 -1
- package/esm/funcs/projectsAcceptProjectTransferRequest.js +2 -2
- package/esm/funcs/projectsAcceptProjectTransferRequest.js.map +1 -1
- package/esm/funcs/projectsCreateProject.js +2 -2
- package/esm/funcs/projectsCreateProject.js.map +1 -1
- package/esm/funcs/teamsPatchTeam.js +2 -2
- package/esm/funcs/teamsPatchTeam.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/acceptprojecttransferrequestop.d.ts +176 -2
- package/esm/models/acceptprojecttransferrequestop.d.ts.map +1 -1
- package/esm/models/acceptprojecttransferrequestop.js +176 -2
- package/esm/models/acceptprojecttransferrequestop.js.map +1 -1
- package/esm/models/addbypassipop.d.ts +38 -38
- package/esm/models/addbypassipop.d.ts.map +1 -1
- package/esm/models/addbypassipop.js +44 -42
- package/esm/models/addbypassipop.js.map +1 -1
- package/esm/models/authtoken.d.ts +10 -4
- package/esm/models/authtoken.d.ts.map +1 -1
- package/esm/models/authtoken.js +6 -4
- package/esm/models/authtoken.js.map +1 -1
- package/esm/models/authuser.d.ts +54 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +34 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +336 -99
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +310 -93
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createcustomenvironmentop.d.ts +3 -3
- package/esm/models/createcustomenvironmentop.js +1 -1
- package/esm/models/createcustomenvironmentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +412 -152
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +348 -122
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createlogdrainop.d.ts +2 -2
- package/esm/models/createlogdrainop.d.ts.map +1 -1
- package/esm/models/createlogdrainop.js +2 -2
- package/esm/models/createlogdrainop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +191 -58
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +168 -43
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +12 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +4 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/exchangessotokenop.d.ts +4 -4
- package/esm/models/exchangessotokenop.d.ts.map +1 -1
- package/esm/models/exchangessotokenop.js +4 -4
- package/esm/models/exchangessotokenop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +0 -555
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +0 -449
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getbypassipop.d.ts +55 -179
- package/esm/models/getbypassipop.d.ts.map +1 -1
- package/esm/models/getbypassipop.js +59 -221
- package/esm/models/getbypassipop.js.map +1 -1
- package/esm/models/getcustomenvironmentop.d.ts +3 -3
- package/esm/models/getcustomenvironmentop.js +1 -1
- package/esm/models/getcustomenvironmentop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +757 -276
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +703 -262
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdeploymentsop.d.ts +3 -0
- package/esm/models/getdeploymentsop.d.ts.map +1 -1
- package/esm/models/getdeploymentsop.js +1 -0
- package/esm/models/getdeploymentsop.js.map +1 -1
- package/esm/models/getintegrationlogdrainsop.d.ts +2 -2
- package/esm/models/getintegrationlogdrainsop.d.ts.map +1 -1
- package/esm/models/getintegrationlogdrainsop.js +4 -2
- package/esm/models/getintegrationlogdrainsop.js.map +1 -1
- package/esm/models/getprojectmembersop.d.ts +3 -0
- package/esm/models/getprojectmembersop.d.ts.map +1 -1
- package/esm/models/getprojectmembersop.js +1 -0
- package/esm/models/getprojectmembersop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +185 -58
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +166 -43
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getrecordsop.d.ts +8 -0
- package/esm/models/getrecordsop.d.ts.map +1 -1
- package/esm/models/getrecordsop.js +8 -0
- package/esm/models/getrecordsop.js.map +1 -1
- package/esm/models/getteammembersop.d.ts +6 -0
- package/esm/models/getteammembersop.d.ts.map +1 -1
- package/esm/models/getteammembersop.js +2 -0
- package/esm/models/getteammembersop.js.map +1 -1
- package/esm/models/getv9projectsidornamecustomenvironmentsop.d.ts +3 -3
- package/esm/models/getv9projectsidornamecustomenvironmentsop.js +1 -1
- package/esm/models/getv9projectsidornamecustomenvironmentsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +6 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +2 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +15 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +5 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/inviteusertoteamop.d.ts +33 -0
- package/esm/models/inviteusertoteamop.d.ts.map +1 -1
- package/esm/models/inviteusertoteamop.js +11 -0
- package/esm/models/inviteusertoteamop.js.map +1 -1
- package/esm/models/listaccessgroupmembersop.d.ts +3 -0
- package/esm/models/listaccessgroupmembersop.d.ts.map +1 -1
- package/esm/models/listaccessgroupmembersop.js +1 -0
- package/esm/models/listaccessgroupmembersop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +141 -39
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +132 -35
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listdeploymentaliasesop.d.ts +30 -30
- package/esm/models/listdeploymentaliasesop.d.ts.map +1 -1
- package/esm/models/listdeploymentaliasesop.js +34 -34
- package/esm/models/listdeploymentaliasesop.js.map +1 -1
- package/esm/models/patchedgeconfigitemsop.d.ts +0 -4
- package/esm/models/patchedgeconfigitemsop.d.ts.map +1 -1
- package/esm/models/patchedgeconfigitemsop.js +0 -4
- package/esm/models/patchedgeconfigitemsop.js.map +1 -1
- package/esm/models/patchteamop.d.ts +185 -0
- package/esm/models/patchteamop.d.ts.map +1 -1
- package/esm/models/patchteamop.js +132 -0
- package/esm/models/patchteamop.js.map +1 -1
- package/esm/models/removecustomenvironmentop.d.ts +3 -3
- package/esm/models/removecustomenvironmentop.js +1 -1
- package/esm/models/removecustomenvironmentop.js.map +1 -1
- package/esm/models/rerequestcheckop.d.ts +5 -0
- package/esm/models/rerequestcheckop.d.ts.map +1 -1
- package/esm/models/rerequestcheckop.js +2 -0
- package/esm/models/rerequestcheckop.js.map +1 -1
- package/esm/models/team.d.ts +149 -10
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +115 -5
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +15 -0
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +5 -0
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updatecustomenvironmentop.d.ts +3 -3
- package/esm/models/updatecustomenvironmentop.js +1 -1
- package/esm/models/updatecustomenvironmentop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +185 -58
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +166 -43
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +188 -58
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +167 -43
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +1599 -1433
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1998 -1847
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/aliases.d.ts +2 -2
- package/esm/sdk/aliases.d.ts.map +1 -1
- package/examples/README.md +5 -0
- package/examples/package-lock.json +8 -7
- package/examples/projectsUpdateProject.example.ts +2 -0
- package/jsr.json +1 -1
- package/package.json +6 -8
- package/src/__tests__/aliases.test.ts +16 -16
- package/src/__tests__/security.test.ts +13 -1
- package/src/__tests__/teams.test.ts +2 -2
- package/src/funcs/aliasesGetAlias.ts +5 -6
- package/src/funcs/checksRerequestCheck.ts +1 -0
- package/src/funcs/domainsGetDomainConfig.ts +2 -2
- package/src/funcs/edgeConfigPatchEdgeConfigItems.ts +2 -3
- package/src/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.ts +2 -2
- package/src/funcs/projectsAcceptProjectTransferRequest.ts +2 -2
- package/src/funcs/projectsCreateProject.ts +2 -2
- package/src/funcs/teamsPatchTeam.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/acceptprojecttransferrequestop.ts +449 -4
- package/src/models/addbypassipop.ts +69 -78
- package/src/models/authtoken.ts +10 -8
- package/src/models/authuser.ts +93 -0
- package/src/models/canceldeploymentop.ts +655 -190
- package/src/models/createcustomenvironmentop.ts +1 -1
- package/src/models/createdeploymentop.ts +752 -268
- package/src/models/createlogdrainop.ts +4 -4
- package/src/models/createprojectop.ts +365 -82
- package/src/models/createwebhookop.ts +4 -0
- package/src/models/exchangessotokenop.ts +8 -8
- package/src/models/getaliasop.ts +0 -1042
- package/src/models/getbypassipop.ts +100 -404
- package/src/models/getcustomenvironmentop.ts +1 -1
- package/src/models/getdeploymentop.ts +1657 -674
- package/src/models/getdeploymentsop.ts +1 -0
- package/src/models/getintegrationlogdrainsop.ts +6 -4
- package/src/models/getprojectmembersop.ts +1 -0
- package/src/models/getprojectsop.ts +363 -81
- package/src/models/getrecordsop.ts +16 -0
- package/src/models/getteammembersop.ts +2 -0
- package/src/models/getv9projectsidornamecustomenvironmentsop.ts +1 -1
- package/src/models/getwebhookop.ts +2 -0
- package/src/models/getwebhooksop.ts +5 -0
- package/src/models/inviteusertoteamop.ts +11 -0
- package/src/models/listaccessgroupmembersop.ts +1 -0
- package/src/models/listaliasesop.ts +290 -74
- package/src/models/listdeploymentaliasesop.ts +58 -70
- package/src/models/patchedgeconfigitemsop.ts +0 -8
- package/src/models/patchteamop.ts +311 -0
- package/src/models/removecustomenvironmentop.ts +1 -1
- package/src/models/rerequestcheckop.ts +7 -0
- package/src/models/team.ts +251 -12
- package/src/models/teamlimited.ts +5 -0
- package/src/models/updatecustomenvironmentop.ts +1 -1
- package/src/models/updateprojectdatacacheop.ts +352 -82
- package/src/models/updateprojectop.ts +364 -82
- package/src/models/userevent.ts +3609 -3269
- package/src/sdk/aliases.ts +2 -2
- package/temp/example.ts +11 -0
- package/vercel-spec.json +1984 -867
|
@@ -90,6 +90,7 @@ export const CancelDeploymentFramework = {
|
|
|
90
90
|
Sanity: "sanity",
|
|
91
91
|
Storybook: "storybook",
|
|
92
92
|
Nitro: "nitro",
|
|
93
|
+
Hono: "hono",
|
|
93
94
|
} as const;
|
|
94
95
|
export type CancelDeploymentFramework = ClosedEnum<
|
|
95
96
|
typeof CancelDeploymentFramework
|
|
@@ -436,18 +437,18 @@ export type CancelDeploymentChecksConclusion = ClosedEnum<
|
|
|
436
437
|
typeof CancelDeploymentChecksConclusion
|
|
437
438
|
>;
|
|
438
439
|
|
|
439
|
-
export const
|
|
440
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type =
|
|
440
441
|
{
|
|
441
442
|
Bitbucket: "bitbucket",
|
|
442
443
|
} as const;
|
|
443
|
-
export type
|
|
444
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type =
|
|
444
445
|
ClosedEnum<
|
|
445
|
-
typeof
|
|
446
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type
|
|
446
447
|
>;
|
|
447
448
|
|
|
448
|
-
export type
|
|
449
|
+
export type GitSource15 = {
|
|
449
450
|
type:
|
|
450
|
-
|
|
451
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type;
|
|
451
452
|
ref: string;
|
|
452
453
|
sha: string;
|
|
453
454
|
owner?: string | undefined;
|
|
@@ -456,35 +457,54 @@ export type GitSource12 = {
|
|
|
456
457
|
repoUuid: string;
|
|
457
458
|
};
|
|
458
459
|
|
|
459
|
-
export const
|
|
460
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type =
|
|
460
461
|
{
|
|
461
462
|
Gitlab: "gitlab",
|
|
462
463
|
} as const;
|
|
463
|
-
export type
|
|
464
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type =
|
|
464
465
|
ClosedEnum<
|
|
465
|
-
typeof
|
|
466
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type
|
|
466
467
|
>;
|
|
467
468
|
|
|
468
|
-
export type
|
|
469
|
+
export type GitSource14 = {
|
|
469
470
|
type:
|
|
470
|
-
|
|
471
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type;
|
|
471
472
|
ref: string;
|
|
472
473
|
sha: string;
|
|
473
474
|
projectId: number;
|
|
474
475
|
};
|
|
475
476
|
|
|
476
|
-
export const
|
|
477
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type =
|
|
478
|
+
{
|
|
479
|
+
GithubLimited: "github-limited",
|
|
480
|
+
} as const;
|
|
481
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type =
|
|
482
|
+
ClosedEnum<
|
|
483
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type
|
|
484
|
+
>;
|
|
485
|
+
|
|
486
|
+
export type GitSource13 = {
|
|
487
|
+
type:
|
|
488
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type;
|
|
489
|
+
ref: string;
|
|
490
|
+
sha: string;
|
|
491
|
+
repoId: number;
|
|
492
|
+
org?: string | undefined;
|
|
493
|
+
repo?: string | undefined;
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type =
|
|
477
497
|
{
|
|
478
498
|
GithubCustomHost: "github-custom-host",
|
|
479
499
|
} as const;
|
|
480
|
-
export type
|
|
500
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type =
|
|
481
501
|
ClosedEnum<
|
|
482
|
-
typeof
|
|
502
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type
|
|
483
503
|
>;
|
|
484
504
|
|
|
485
|
-
export type
|
|
505
|
+
export type GitSource12 = {
|
|
486
506
|
type:
|
|
487
|
-
|
|
507
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type;
|
|
488
508
|
host: string;
|
|
489
509
|
ref: string;
|
|
490
510
|
sha: string;
|
|
@@ -493,18 +513,18 @@ export type GitSource10 = {
|
|
|
493
513
|
repo?: string | undefined;
|
|
494
514
|
};
|
|
495
515
|
|
|
496
|
-
export const
|
|
516
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type =
|
|
497
517
|
{
|
|
498
518
|
Github: "github",
|
|
499
519
|
} as const;
|
|
500
|
-
export type
|
|
520
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type =
|
|
501
521
|
ClosedEnum<
|
|
502
|
-
typeof
|
|
522
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type
|
|
503
523
|
>;
|
|
504
524
|
|
|
505
|
-
export type
|
|
525
|
+
export type GitSource11 = {
|
|
506
526
|
type:
|
|
507
|
-
|
|
527
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type;
|
|
508
528
|
ref: string;
|
|
509
529
|
sha: string;
|
|
510
530
|
repoId: number;
|
|
@@ -512,40 +532,79 @@ export type GitSource9 = {
|
|
|
512
532
|
repo?: string | undefined;
|
|
513
533
|
};
|
|
514
534
|
|
|
515
|
-
export const
|
|
535
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type =
|
|
516
536
|
{
|
|
517
537
|
Custom: "custom",
|
|
518
538
|
} as const;
|
|
519
|
-
export type
|
|
539
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type =
|
|
520
540
|
ClosedEnum<
|
|
521
|
-
typeof
|
|
541
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type
|
|
522
542
|
>;
|
|
523
543
|
|
|
524
544
|
/**
|
|
525
545
|
* Allows custom git sources (local folder mounted to the container) in test mode
|
|
526
546
|
*/
|
|
527
|
-
export type
|
|
547
|
+
export type GitSource10 = {
|
|
528
548
|
type:
|
|
529
|
-
|
|
549
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type;
|
|
530
550
|
ref: string;
|
|
531
551
|
sha: string;
|
|
532
552
|
gitUrl: string;
|
|
533
553
|
};
|
|
534
554
|
|
|
535
|
-
export const
|
|
555
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type =
|
|
536
556
|
{
|
|
537
557
|
Bitbucket: "bitbucket",
|
|
538
558
|
} as const;
|
|
559
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type =
|
|
560
|
+
ClosedEnum<
|
|
561
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type
|
|
562
|
+
>;
|
|
563
|
+
|
|
564
|
+
export type GitSource9 = {
|
|
565
|
+
type:
|
|
566
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type;
|
|
567
|
+
owner: string;
|
|
568
|
+
slug: string;
|
|
569
|
+
ref?: string | null | undefined;
|
|
570
|
+
sha?: string | undefined;
|
|
571
|
+
prId?: number | null | undefined;
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type =
|
|
575
|
+
{
|
|
576
|
+
Bitbucket: "bitbucket",
|
|
577
|
+
} as const;
|
|
578
|
+
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type =
|
|
579
|
+
ClosedEnum<
|
|
580
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type
|
|
581
|
+
>;
|
|
582
|
+
|
|
583
|
+
export type GitSource8 = {
|
|
584
|
+
type:
|
|
585
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type;
|
|
586
|
+
workspaceUuid?: string | undefined;
|
|
587
|
+
repoUuid: string;
|
|
588
|
+
ref?: string | null | undefined;
|
|
589
|
+
sha?: string | undefined;
|
|
590
|
+
prId?: number | null | undefined;
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type =
|
|
594
|
+
{
|
|
595
|
+
Gitlab: "gitlab",
|
|
596
|
+
} as const;
|
|
539
597
|
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type =
|
|
540
598
|
ClosedEnum<
|
|
541
599
|
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type
|
|
542
600
|
>;
|
|
543
601
|
|
|
602
|
+
export type CancelDeploymentGitSourceProjectId = string | number;
|
|
603
|
+
|
|
544
604
|
export type GitSource7 = {
|
|
545
605
|
type:
|
|
546
606
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type;
|
|
547
|
-
|
|
548
|
-
slug: string;
|
|
607
|
+
projectId: string | number;
|
|
549
608
|
ref?: string | null | undefined;
|
|
550
609
|
sha?: string | undefined;
|
|
551
610
|
prId?: number | null | undefined;
|
|
@@ -553,7 +612,7 @@ export type GitSource7 = {
|
|
|
553
612
|
|
|
554
613
|
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType =
|
|
555
614
|
{
|
|
556
|
-
|
|
615
|
+
GithubLimited: "github-limited",
|
|
557
616
|
} as const;
|
|
558
617
|
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType =
|
|
559
618
|
ClosedEnum<
|
|
@@ -563,8 +622,8 @@ export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONRespon
|
|
|
563
622
|
export type GitSource6 = {
|
|
564
623
|
type:
|
|
565
624
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType;
|
|
566
|
-
|
|
567
|
-
|
|
625
|
+
org: string;
|
|
626
|
+
repo: string;
|
|
568
627
|
ref?: string | null | undefined;
|
|
569
628
|
sha?: string | undefined;
|
|
570
629
|
prId?: number | null | undefined;
|
|
@@ -572,18 +631,20 @@ export type GitSource6 = {
|
|
|
572
631
|
|
|
573
632
|
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType =
|
|
574
633
|
{
|
|
575
|
-
|
|
634
|
+
GithubLimited: "github-limited",
|
|
576
635
|
} as const;
|
|
577
636
|
export type CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType =
|
|
578
637
|
ClosedEnum<
|
|
579
638
|
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType
|
|
580
639
|
>;
|
|
581
640
|
|
|
582
|
-
export type
|
|
641
|
+
export type CancelDeploymentGitSourceDeploymentsResponseRepoId =
|
|
642
|
+
| string
|
|
643
|
+
| number;
|
|
583
644
|
|
|
584
645
|
export type CancelDeploymentGitSource5 = {
|
|
585
646
|
type: CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType;
|
|
586
|
-
|
|
647
|
+
repoId: string | number;
|
|
587
648
|
ref?: string | null | undefined;
|
|
588
649
|
sha?: string | undefined;
|
|
589
650
|
prId?: number | null | undefined;
|
|
@@ -658,18 +719,41 @@ export type CancelDeploymentGitSource1 = {
|
|
|
658
719
|
};
|
|
659
720
|
|
|
660
721
|
export type CancelDeploymentGitSource =
|
|
661
|
-
| GitSource10
|
|
662
722
|
| GitSource12
|
|
723
|
+
| GitSource15
|
|
663
724
|
| CancelDeploymentGitSource4
|
|
664
|
-
|
|
|
665
|
-
| GitSource9
|
|
725
|
+
| GitSource10
|
|
666
726
|
| GitSource11
|
|
727
|
+
| GitSource13
|
|
728
|
+
| GitSource14
|
|
667
729
|
| CancelDeploymentGitSource2
|
|
668
730
|
| CancelDeploymentGitSource3
|
|
669
|
-
|
|
|
731
|
+
| GitSource6
|
|
732
|
+
| GitSource9
|
|
670
733
|
| CancelDeploymentGitSource1
|
|
671
734
|
| CancelDeploymentGitSource5
|
|
672
|
-
|
|
|
735
|
+
| GitSource7
|
|
736
|
+
| GitSource8;
|
|
737
|
+
|
|
738
|
+
/**
|
|
739
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
740
|
+
*/
|
|
741
|
+
export const CancelDeploymentNodeVersion = {
|
|
742
|
+
TwentyTwoDotX: "22.x",
|
|
743
|
+
TwentyDotX: "20.x",
|
|
744
|
+
EighteenDotX: "18.x",
|
|
745
|
+
SixteenDotX: "16.x",
|
|
746
|
+
FourteenDotX: "14.x",
|
|
747
|
+
TwelveDotX: "12.x",
|
|
748
|
+
TenDotX: "10.x",
|
|
749
|
+
EightDot10DotX: "8.10.x",
|
|
750
|
+
} as const;
|
|
751
|
+
/**
|
|
752
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
753
|
+
*/
|
|
754
|
+
export type CancelDeploymentNodeVersion = ClosedEnum<
|
|
755
|
+
typeof CancelDeploymentNodeVersion
|
|
756
|
+
>;
|
|
673
757
|
|
|
674
758
|
export type CancelDeploymentProject = {
|
|
675
759
|
id: string;
|
|
@@ -1229,13 +1313,9 @@ export type CancelDeploymentMicrofrontends2 = {
|
|
|
1229
1313
|
*/
|
|
1230
1314
|
groupIds: Array<string>;
|
|
1231
1315
|
/**
|
|
1232
|
-
* Whether the
|
|
1233
|
-
*/
|
|
1234
|
-
microfrontendsAliasEnabled?: boolean | undefined;
|
|
1235
|
-
/**
|
|
1236
|
-
* Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch.
|
|
1316
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1237
1317
|
*/
|
|
1238
|
-
|
|
1318
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1239
1319
|
};
|
|
1240
1320
|
|
|
1241
1321
|
export type CancelDeploymentMicrofrontends1 = {
|
|
@@ -1256,13 +1336,9 @@ export type CancelDeploymentMicrofrontends1 = {
|
|
|
1256
1336
|
*/
|
|
1257
1337
|
groupIds: Array<string>;
|
|
1258
1338
|
/**
|
|
1259
|
-
* Whether the
|
|
1339
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1260
1340
|
*/
|
|
1261
|
-
|
|
1262
|
-
/**
|
|
1263
|
-
* Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch.
|
|
1264
|
-
*/
|
|
1265
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
1341
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1266
1342
|
};
|
|
1267
1343
|
|
|
1268
1344
|
export type CancelDeploymentMicrofrontends =
|
|
@@ -1392,22 +1468,29 @@ export type CancelDeploymentResponseBody = {
|
|
|
1392
1468
|
*/
|
|
1393
1469
|
passiveRegions?: Array<string> | undefined;
|
|
1394
1470
|
gitSource?:
|
|
1395
|
-
| GitSource10
|
|
1396
1471
|
| GitSource12
|
|
1472
|
+
| GitSource15
|
|
1397
1473
|
| CancelDeploymentGitSource4
|
|
1398
|
-
|
|
|
1399
|
-
| GitSource9
|
|
1474
|
+
| GitSource10
|
|
1400
1475
|
| GitSource11
|
|
1476
|
+
| GitSource13
|
|
1477
|
+
| GitSource14
|
|
1401
1478
|
| CancelDeploymentGitSource2
|
|
1402
1479
|
| CancelDeploymentGitSource3
|
|
1403
|
-
|
|
|
1480
|
+
| GitSource6
|
|
1481
|
+
| GitSource9
|
|
1404
1482
|
| CancelDeploymentGitSource1
|
|
1405
1483
|
| CancelDeploymentGitSource5
|
|
1406
|
-
|
|
|
1484
|
+
| GitSource7
|
|
1485
|
+
| GitSource8
|
|
1407
1486
|
| undefined;
|
|
1408
1487
|
name: string;
|
|
1409
1488
|
meta: { [k: string]: string };
|
|
1410
1489
|
originCacheRegion?: string | undefined;
|
|
1490
|
+
/**
|
|
1491
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1492
|
+
*/
|
|
1493
|
+
nodeVersion?: CancelDeploymentNodeVersion | undefined;
|
|
1411
1494
|
project?: CancelDeploymentProject | undefined;
|
|
1412
1495
|
readyState: CancelDeploymentReadyState;
|
|
1413
1496
|
/**
|
|
@@ -3285,6 +3368,288 @@ export namespace CancelDeploymentChecksConclusion$ {
|
|
|
3285
3368
|
export const outboundSchema = CancelDeploymentChecksConclusion$outboundSchema;
|
|
3286
3369
|
}
|
|
3287
3370
|
|
|
3371
|
+
/** @internal */
|
|
3372
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema:
|
|
3373
|
+
z.ZodNativeEnum<
|
|
3374
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type
|
|
3375
|
+
> = z.nativeEnum(
|
|
3376
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type,
|
|
3377
|
+
);
|
|
3378
|
+
|
|
3379
|
+
/** @internal */
|
|
3380
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema:
|
|
3381
|
+
z.ZodNativeEnum<
|
|
3382
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type
|
|
3383
|
+
> =
|
|
3384
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema;
|
|
3385
|
+
|
|
3386
|
+
/**
|
|
3387
|
+
* @internal
|
|
3388
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3389
|
+
*/
|
|
3390
|
+
export namespace CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$ {
|
|
3391
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema` instead. */
|
|
3392
|
+
export const inboundSchema =
|
|
3393
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema;
|
|
3394
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema` instead. */
|
|
3395
|
+
export const outboundSchema =
|
|
3396
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
/** @internal */
|
|
3400
|
+
export const GitSource15$inboundSchema: z.ZodType<
|
|
3401
|
+
GitSource15,
|
|
3402
|
+
z.ZodTypeDef,
|
|
3403
|
+
unknown
|
|
3404
|
+
> = z.object({
|
|
3405
|
+
type:
|
|
3406
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema,
|
|
3407
|
+
ref: z.string(),
|
|
3408
|
+
sha: z.string(),
|
|
3409
|
+
owner: z.string().optional(),
|
|
3410
|
+
slug: z.string().optional(),
|
|
3411
|
+
workspaceUuid: z.string(),
|
|
3412
|
+
repoUuid: z.string(),
|
|
3413
|
+
});
|
|
3414
|
+
|
|
3415
|
+
/** @internal */
|
|
3416
|
+
export type GitSource15$Outbound = {
|
|
3417
|
+
type: string;
|
|
3418
|
+
ref: string;
|
|
3419
|
+
sha: string;
|
|
3420
|
+
owner?: string | undefined;
|
|
3421
|
+
slug?: string | undefined;
|
|
3422
|
+
workspaceUuid: string;
|
|
3423
|
+
repoUuid: string;
|
|
3424
|
+
};
|
|
3425
|
+
|
|
3426
|
+
/** @internal */
|
|
3427
|
+
export const GitSource15$outboundSchema: z.ZodType<
|
|
3428
|
+
GitSource15$Outbound,
|
|
3429
|
+
z.ZodTypeDef,
|
|
3430
|
+
GitSource15
|
|
3431
|
+
> = z.object({
|
|
3432
|
+
type:
|
|
3433
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema,
|
|
3434
|
+
ref: z.string(),
|
|
3435
|
+
sha: z.string(),
|
|
3436
|
+
owner: z.string().optional(),
|
|
3437
|
+
slug: z.string().optional(),
|
|
3438
|
+
workspaceUuid: z.string(),
|
|
3439
|
+
repoUuid: z.string(),
|
|
3440
|
+
});
|
|
3441
|
+
|
|
3442
|
+
/**
|
|
3443
|
+
* @internal
|
|
3444
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3445
|
+
*/
|
|
3446
|
+
export namespace GitSource15$ {
|
|
3447
|
+
/** @deprecated use `GitSource15$inboundSchema` instead. */
|
|
3448
|
+
export const inboundSchema = GitSource15$inboundSchema;
|
|
3449
|
+
/** @deprecated use `GitSource15$outboundSchema` instead. */
|
|
3450
|
+
export const outboundSchema = GitSource15$outboundSchema;
|
|
3451
|
+
/** @deprecated use `GitSource15$Outbound` instead. */
|
|
3452
|
+
export type Outbound = GitSource15$Outbound;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
export function gitSource15ToJSON(gitSource15: GitSource15): string {
|
|
3456
|
+
return JSON.stringify(GitSource15$outboundSchema.parse(gitSource15));
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
export function gitSource15FromJSON(
|
|
3460
|
+
jsonString: string,
|
|
3461
|
+
): SafeParseResult<GitSource15, SDKValidationError> {
|
|
3462
|
+
return safeParse(
|
|
3463
|
+
jsonString,
|
|
3464
|
+
(x) => GitSource15$inboundSchema.parse(JSON.parse(x)),
|
|
3465
|
+
`Failed to parse 'GitSource15' from JSON`,
|
|
3466
|
+
);
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
/** @internal */
|
|
3470
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema:
|
|
3471
|
+
z.ZodNativeEnum<
|
|
3472
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type
|
|
3473
|
+
> = z.nativeEnum(
|
|
3474
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type,
|
|
3475
|
+
);
|
|
3476
|
+
|
|
3477
|
+
/** @internal */
|
|
3478
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema:
|
|
3479
|
+
z.ZodNativeEnum<
|
|
3480
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type
|
|
3481
|
+
> =
|
|
3482
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema;
|
|
3483
|
+
|
|
3484
|
+
/**
|
|
3485
|
+
* @internal
|
|
3486
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3487
|
+
*/
|
|
3488
|
+
export namespace CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$ {
|
|
3489
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema` instead. */
|
|
3490
|
+
export const inboundSchema =
|
|
3491
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema;
|
|
3492
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema` instead. */
|
|
3493
|
+
export const outboundSchema =
|
|
3494
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema;
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
/** @internal */
|
|
3498
|
+
export const GitSource14$inboundSchema: z.ZodType<
|
|
3499
|
+
GitSource14,
|
|
3500
|
+
z.ZodTypeDef,
|
|
3501
|
+
unknown
|
|
3502
|
+
> = z.object({
|
|
3503
|
+
type:
|
|
3504
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema,
|
|
3505
|
+
ref: z.string(),
|
|
3506
|
+
sha: z.string(),
|
|
3507
|
+
projectId: z.number(),
|
|
3508
|
+
});
|
|
3509
|
+
|
|
3510
|
+
/** @internal */
|
|
3511
|
+
export type GitSource14$Outbound = {
|
|
3512
|
+
type: string;
|
|
3513
|
+
ref: string;
|
|
3514
|
+
sha: string;
|
|
3515
|
+
projectId: number;
|
|
3516
|
+
};
|
|
3517
|
+
|
|
3518
|
+
/** @internal */
|
|
3519
|
+
export const GitSource14$outboundSchema: z.ZodType<
|
|
3520
|
+
GitSource14$Outbound,
|
|
3521
|
+
z.ZodTypeDef,
|
|
3522
|
+
GitSource14
|
|
3523
|
+
> = z.object({
|
|
3524
|
+
type:
|
|
3525
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema,
|
|
3526
|
+
ref: z.string(),
|
|
3527
|
+
sha: z.string(),
|
|
3528
|
+
projectId: z.number(),
|
|
3529
|
+
});
|
|
3530
|
+
|
|
3531
|
+
/**
|
|
3532
|
+
* @internal
|
|
3533
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3534
|
+
*/
|
|
3535
|
+
export namespace GitSource14$ {
|
|
3536
|
+
/** @deprecated use `GitSource14$inboundSchema` instead. */
|
|
3537
|
+
export const inboundSchema = GitSource14$inboundSchema;
|
|
3538
|
+
/** @deprecated use `GitSource14$outboundSchema` instead. */
|
|
3539
|
+
export const outboundSchema = GitSource14$outboundSchema;
|
|
3540
|
+
/** @deprecated use `GitSource14$Outbound` instead. */
|
|
3541
|
+
export type Outbound = GitSource14$Outbound;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
export function gitSource14ToJSON(gitSource14: GitSource14): string {
|
|
3545
|
+
return JSON.stringify(GitSource14$outboundSchema.parse(gitSource14));
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
export function gitSource14FromJSON(
|
|
3549
|
+
jsonString: string,
|
|
3550
|
+
): SafeParseResult<GitSource14, SDKValidationError> {
|
|
3551
|
+
return safeParse(
|
|
3552
|
+
jsonString,
|
|
3553
|
+
(x) => GitSource14$inboundSchema.parse(JSON.parse(x)),
|
|
3554
|
+
`Failed to parse 'GitSource14' from JSON`,
|
|
3555
|
+
);
|
|
3556
|
+
}
|
|
3557
|
+
|
|
3558
|
+
/** @internal */
|
|
3559
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema:
|
|
3560
|
+
z.ZodNativeEnum<
|
|
3561
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type
|
|
3562
|
+
> = z.nativeEnum(
|
|
3563
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type,
|
|
3564
|
+
);
|
|
3565
|
+
|
|
3566
|
+
/** @internal */
|
|
3567
|
+
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema:
|
|
3568
|
+
z.ZodNativeEnum<
|
|
3569
|
+
typeof CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type
|
|
3570
|
+
> =
|
|
3571
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema;
|
|
3572
|
+
|
|
3573
|
+
/**
|
|
3574
|
+
* @internal
|
|
3575
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3576
|
+
*/
|
|
3577
|
+
export namespace CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$ {
|
|
3578
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema` instead. */
|
|
3579
|
+
export const inboundSchema =
|
|
3580
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema;
|
|
3581
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema` instead. */
|
|
3582
|
+
export const outboundSchema =
|
|
3583
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema;
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
/** @internal */
|
|
3587
|
+
export const GitSource13$inboundSchema: z.ZodType<
|
|
3588
|
+
GitSource13,
|
|
3589
|
+
z.ZodTypeDef,
|
|
3590
|
+
unknown
|
|
3591
|
+
> = z.object({
|
|
3592
|
+
type:
|
|
3593
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema,
|
|
3594
|
+
ref: z.string(),
|
|
3595
|
+
sha: z.string(),
|
|
3596
|
+
repoId: z.number(),
|
|
3597
|
+
org: z.string().optional(),
|
|
3598
|
+
repo: z.string().optional(),
|
|
3599
|
+
});
|
|
3600
|
+
|
|
3601
|
+
/** @internal */
|
|
3602
|
+
export type GitSource13$Outbound = {
|
|
3603
|
+
type: string;
|
|
3604
|
+
ref: string;
|
|
3605
|
+
sha: string;
|
|
3606
|
+
repoId: number;
|
|
3607
|
+
org?: string | undefined;
|
|
3608
|
+
repo?: string | undefined;
|
|
3609
|
+
};
|
|
3610
|
+
|
|
3611
|
+
/** @internal */
|
|
3612
|
+
export const GitSource13$outboundSchema: z.ZodType<
|
|
3613
|
+
GitSource13$Outbound,
|
|
3614
|
+
z.ZodTypeDef,
|
|
3615
|
+
GitSource13
|
|
3616
|
+
> = z.object({
|
|
3617
|
+
type:
|
|
3618
|
+
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema,
|
|
3619
|
+
ref: z.string(),
|
|
3620
|
+
sha: z.string(),
|
|
3621
|
+
repoId: z.number(),
|
|
3622
|
+
org: z.string().optional(),
|
|
3623
|
+
repo: z.string().optional(),
|
|
3624
|
+
});
|
|
3625
|
+
|
|
3626
|
+
/**
|
|
3627
|
+
* @internal
|
|
3628
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3629
|
+
*/
|
|
3630
|
+
export namespace GitSource13$ {
|
|
3631
|
+
/** @deprecated use `GitSource13$inboundSchema` instead. */
|
|
3632
|
+
export const inboundSchema = GitSource13$inboundSchema;
|
|
3633
|
+
/** @deprecated use `GitSource13$outboundSchema` instead. */
|
|
3634
|
+
export const outboundSchema = GitSource13$outboundSchema;
|
|
3635
|
+
/** @deprecated use `GitSource13$Outbound` instead. */
|
|
3636
|
+
export type Outbound = GitSource13$Outbound;
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
export function gitSource13ToJSON(gitSource13: GitSource13): string {
|
|
3640
|
+
return JSON.stringify(GitSource13$outboundSchema.parse(gitSource13));
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
export function gitSource13FromJSON(
|
|
3644
|
+
jsonString: string,
|
|
3645
|
+
): SafeParseResult<GitSource13, SDKValidationError> {
|
|
3646
|
+
return safeParse(
|
|
3647
|
+
jsonString,
|
|
3648
|
+
(x) => GitSource13$inboundSchema.parse(JSON.parse(x)),
|
|
3649
|
+
`Failed to parse 'GitSource13' from JSON`,
|
|
3650
|
+
);
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3288
3653
|
/** @internal */
|
|
3289
3654
|
export const CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema:
|
|
3290
3655
|
z.ZodNativeEnum<
|
|
@@ -3321,23 +3686,23 @@ export const GitSource12$inboundSchema: z.ZodType<
|
|
|
3321
3686
|
> = z.object({
|
|
3322
3687
|
type:
|
|
3323
3688
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema,
|
|
3689
|
+
host: z.string(),
|
|
3324
3690
|
ref: z.string(),
|
|
3325
3691
|
sha: z.string(),
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
repoUuid: z.string(),
|
|
3692
|
+
repoId: z.number(),
|
|
3693
|
+
org: z.string().optional(),
|
|
3694
|
+
repo: z.string().optional(),
|
|
3330
3695
|
});
|
|
3331
3696
|
|
|
3332
3697
|
/** @internal */
|
|
3333
3698
|
export type GitSource12$Outbound = {
|
|
3334
3699
|
type: string;
|
|
3700
|
+
host: string;
|
|
3335
3701
|
ref: string;
|
|
3336
3702
|
sha: string;
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
repoUuid: string;
|
|
3703
|
+
repoId: number;
|
|
3704
|
+
org?: string | undefined;
|
|
3705
|
+
repo?: string | undefined;
|
|
3341
3706
|
};
|
|
3342
3707
|
|
|
3343
3708
|
/** @internal */
|
|
@@ -3348,12 +3713,12 @@ export const GitSource12$outboundSchema: z.ZodType<
|
|
|
3348
3713
|
> = z.object({
|
|
3349
3714
|
type:
|
|
3350
3715
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$outboundSchema,
|
|
3716
|
+
host: z.string(),
|
|
3351
3717
|
ref: z.string(),
|
|
3352
3718
|
sha: z.string(),
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
repoUuid: z.string(),
|
|
3719
|
+
repoId: z.number(),
|
|
3720
|
+
org: z.string().optional(),
|
|
3721
|
+
repo: z.string().optional(),
|
|
3357
3722
|
});
|
|
3358
3723
|
|
|
3359
3724
|
/**
|
|
@@ -3421,7 +3786,9 @@ export const GitSource11$inboundSchema: z.ZodType<
|
|
|
3421
3786
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema,
|
|
3422
3787
|
ref: z.string(),
|
|
3423
3788
|
sha: z.string(),
|
|
3424
|
-
|
|
3789
|
+
repoId: z.number(),
|
|
3790
|
+
org: z.string().optional(),
|
|
3791
|
+
repo: z.string().optional(),
|
|
3425
3792
|
});
|
|
3426
3793
|
|
|
3427
3794
|
/** @internal */
|
|
@@ -3429,7 +3796,9 @@ export type GitSource11$Outbound = {
|
|
|
3429
3796
|
type: string;
|
|
3430
3797
|
ref: string;
|
|
3431
3798
|
sha: string;
|
|
3432
|
-
|
|
3799
|
+
repoId: number;
|
|
3800
|
+
org?: string | undefined;
|
|
3801
|
+
repo?: string | undefined;
|
|
3433
3802
|
};
|
|
3434
3803
|
|
|
3435
3804
|
/** @internal */
|
|
@@ -3442,7 +3811,9 @@ export const GitSource11$outboundSchema: z.ZodType<
|
|
|
3442
3811
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema,
|
|
3443
3812
|
ref: z.string(),
|
|
3444
3813
|
sha: z.string(),
|
|
3445
|
-
|
|
3814
|
+
repoId: z.number(),
|
|
3815
|
+
org: z.string().optional(),
|
|
3816
|
+
repo: z.string().optional(),
|
|
3446
3817
|
});
|
|
3447
3818
|
|
|
3448
3819
|
/**
|
|
@@ -3508,23 +3879,17 @@ export const GitSource10$inboundSchema: z.ZodType<
|
|
|
3508
3879
|
> = z.object({
|
|
3509
3880
|
type:
|
|
3510
3881
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$inboundSchema,
|
|
3511
|
-
host: z.string(),
|
|
3512
3882
|
ref: z.string(),
|
|
3513
3883
|
sha: z.string(),
|
|
3514
|
-
|
|
3515
|
-
org: z.string().optional(),
|
|
3516
|
-
repo: z.string().optional(),
|
|
3884
|
+
gitUrl: z.string(),
|
|
3517
3885
|
});
|
|
3518
3886
|
|
|
3519
3887
|
/** @internal */
|
|
3520
3888
|
export type GitSource10$Outbound = {
|
|
3521
3889
|
type: string;
|
|
3522
|
-
host: string;
|
|
3523
3890
|
ref: string;
|
|
3524
3891
|
sha: string;
|
|
3525
|
-
|
|
3526
|
-
org?: string | undefined;
|
|
3527
|
-
repo?: string | undefined;
|
|
3892
|
+
gitUrl: string;
|
|
3528
3893
|
};
|
|
3529
3894
|
|
|
3530
3895
|
/** @internal */
|
|
@@ -3535,12 +3900,9 @@ export const GitSource10$outboundSchema: z.ZodType<
|
|
|
3535
3900
|
> = z.object({
|
|
3536
3901
|
type:
|
|
3537
3902
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$outboundSchema,
|
|
3538
|
-
host: z.string(),
|
|
3539
3903
|
ref: z.string(),
|
|
3540
3904
|
sha: z.string(),
|
|
3541
|
-
|
|
3542
|
-
org: z.string().optional(),
|
|
3543
|
-
repo: z.string().optional(),
|
|
3905
|
+
gitUrl: z.string(),
|
|
3544
3906
|
});
|
|
3545
3907
|
|
|
3546
3908
|
/**
|
|
@@ -3606,21 +3968,21 @@ export const GitSource9$inboundSchema: z.ZodType<
|
|
|
3606
3968
|
> = z.object({
|
|
3607
3969
|
type:
|
|
3608
3970
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$inboundSchema,
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3971
|
+
owner: z.string(),
|
|
3972
|
+
slug: z.string(),
|
|
3973
|
+
ref: z.nullable(z.string()).optional(),
|
|
3974
|
+
sha: z.string().optional(),
|
|
3975
|
+
prId: z.nullable(z.number()).optional(),
|
|
3614
3976
|
});
|
|
3615
3977
|
|
|
3616
3978
|
/** @internal */
|
|
3617
3979
|
export type GitSource9$Outbound = {
|
|
3618
3980
|
type: string;
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3981
|
+
owner: string;
|
|
3982
|
+
slug: string;
|
|
3983
|
+
ref?: string | null | undefined;
|
|
3984
|
+
sha?: string | undefined;
|
|
3985
|
+
prId?: number | null | undefined;
|
|
3624
3986
|
};
|
|
3625
3987
|
|
|
3626
3988
|
/** @internal */
|
|
@@ -3631,11 +3993,11 @@ export const GitSource9$outboundSchema: z.ZodType<
|
|
|
3631
3993
|
> = z.object({
|
|
3632
3994
|
type:
|
|
3633
3995
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$outboundSchema,
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3996
|
+
owner: z.string(),
|
|
3997
|
+
slug: z.string(),
|
|
3998
|
+
ref: z.nullable(z.string()).optional(),
|
|
3999
|
+
sha: z.string().optional(),
|
|
4000
|
+
prId: z.nullable(z.number()).optional(),
|
|
3639
4001
|
});
|
|
3640
4002
|
|
|
3641
4003
|
/**
|
|
@@ -3701,17 +4063,21 @@ export const GitSource8$inboundSchema: z.ZodType<
|
|
|
3701
4063
|
> = z.object({
|
|
3702
4064
|
type:
|
|
3703
4065
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$inboundSchema,
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
4066
|
+
workspaceUuid: z.string().optional(),
|
|
4067
|
+
repoUuid: z.string(),
|
|
4068
|
+
ref: z.nullable(z.string()).optional(),
|
|
4069
|
+
sha: z.string().optional(),
|
|
4070
|
+
prId: z.nullable(z.number()).optional(),
|
|
3707
4071
|
});
|
|
3708
4072
|
|
|
3709
4073
|
/** @internal */
|
|
3710
4074
|
export type GitSource8$Outbound = {
|
|
3711
4075
|
type: string;
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
4076
|
+
workspaceUuid?: string | undefined;
|
|
4077
|
+
repoUuid: string;
|
|
4078
|
+
ref?: string | null | undefined;
|
|
4079
|
+
sha?: string | undefined;
|
|
4080
|
+
prId?: number | null | undefined;
|
|
3715
4081
|
};
|
|
3716
4082
|
|
|
3717
4083
|
/** @internal */
|
|
@@ -3722,9 +4088,11 @@ export const GitSource8$outboundSchema: z.ZodType<
|
|
|
3722
4088
|
> = z.object({
|
|
3723
4089
|
type:
|
|
3724
4090
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$outboundSchema,
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
4091
|
+
workspaceUuid: z.string().optional(),
|
|
4092
|
+
repoUuid: z.string(),
|
|
4093
|
+
ref: z.nullable(z.string()).optional(),
|
|
4094
|
+
sha: z.string().optional(),
|
|
4095
|
+
prId: z.nullable(z.number()).optional(),
|
|
3728
4096
|
});
|
|
3729
4097
|
|
|
3730
4098
|
/**
|
|
@@ -3782,6 +4150,58 @@ export namespace CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONR
|
|
|
3782
4150
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema;
|
|
3783
4151
|
}
|
|
3784
4152
|
|
|
4153
|
+
/** @internal */
|
|
4154
|
+
export const CancelDeploymentGitSourceProjectId$inboundSchema: z.ZodType<
|
|
4155
|
+
CancelDeploymentGitSourceProjectId,
|
|
4156
|
+
z.ZodTypeDef,
|
|
4157
|
+
unknown
|
|
4158
|
+
> = z.union([z.string(), z.number()]);
|
|
4159
|
+
|
|
4160
|
+
/** @internal */
|
|
4161
|
+
export type CancelDeploymentGitSourceProjectId$Outbound = string | number;
|
|
4162
|
+
|
|
4163
|
+
/** @internal */
|
|
4164
|
+
export const CancelDeploymentGitSourceProjectId$outboundSchema: z.ZodType<
|
|
4165
|
+
CancelDeploymentGitSourceProjectId$Outbound,
|
|
4166
|
+
z.ZodTypeDef,
|
|
4167
|
+
CancelDeploymentGitSourceProjectId
|
|
4168
|
+
> = z.union([z.string(), z.number()]);
|
|
4169
|
+
|
|
4170
|
+
/**
|
|
4171
|
+
* @internal
|
|
4172
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4173
|
+
*/
|
|
4174
|
+
export namespace CancelDeploymentGitSourceProjectId$ {
|
|
4175
|
+
/** @deprecated use `CancelDeploymentGitSourceProjectId$inboundSchema` instead. */
|
|
4176
|
+
export const inboundSchema = CancelDeploymentGitSourceProjectId$inboundSchema;
|
|
4177
|
+
/** @deprecated use `CancelDeploymentGitSourceProjectId$outboundSchema` instead. */
|
|
4178
|
+
export const outboundSchema =
|
|
4179
|
+
CancelDeploymentGitSourceProjectId$outboundSchema;
|
|
4180
|
+
/** @deprecated use `CancelDeploymentGitSourceProjectId$Outbound` instead. */
|
|
4181
|
+
export type Outbound = CancelDeploymentGitSourceProjectId$Outbound;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
export function cancelDeploymentGitSourceProjectIdToJSON(
|
|
4185
|
+
cancelDeploymentGitSourceProjectId: CancelDeploymentGitSourceProjectId,
|
|
4186
|
+
): string {
|
|
4187
|
+
return JSON.stringify(
|
|
4188
|
+
CancelDeploymentGitSourceProjectId$outboundSchema.parse(
|
|
4189
|
+
cancelDeploymentGitSourceProjectId,
|
|
4190
|
+
),
|
|
4191
|
+
);
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
export function cancelDeploymentGitSourceProjectIdFromJSON(
|
|
4195
|
+
jsonString: string,
|
|
4196
|
+
): SafeParseResult<CancelDeploymentGitSourceProjectId, SDKValidationError> {
|
|
4197
|
+
return safeParse(
|
|
4198
|
+
jsonString,
|
|
4199
|
+
(x) =>
|
|
4200
|
+
CancelDeploymentGitSourceProjectId$inboundSchema.parse(JSON.parse(x)),
|
|
4201
|
+
`Failed to parse 'CancelDeploymentGitSourceProjectId' from JSON`,
|
|
4202
|
+
);
|
|
4203
|
+
}
|
|
4204
|
+
|
|
3785
4205
|
/** @internal */
|
|
3786
4206
|
export const GitSource7$inboundSchema: z.ZodType<
|
|
3787
4207
|
GitSource7,
|
|
@@ -3790,8 +4210,7 @@ export const GitSource7$inboundSchema: z.ZodType<
|
|
|
3790
4210
|
> = z.object({
|
|
3791
4211
|
type:
|
|
3792
4212
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$inboundSchema,
|
|
3793
|
-
|
|
3794
|
-
slug: z.string(),
|
|
4213
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3795
4214
|
ref: z.nullable(z.string()).optional(),
|
|
3796
4215
|
sha: z.string().optional(),
|
|
3797
4216
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3800,8 +4219,7 @@ export const GitSource7$inboundSchema: z.ZodType<
|
|
|
3800
4219
|
/** @internal */
|
|
3801
4220
|
export type GitSource7$Outbound = {
|
|
3802
4221
|
type: string;
|
|
3803
|
-
|
|
3804
|
-
slug: string;
|
|
4222
|
+
projectId: string | number;
|
|
3805
4223
|
ref?: string | null | undefined;
|
|
3806
4224
|
sha?: string | undefined;
|
|
3807
4225
|
prId?: number | null | undefined;
|
|
@@ -3815,8 +4233,7 @@ export const GitSource7$outboundSchema: z.ZodType<
|
|
|
3815
4233
|
> = z.object({
|
|
3816
4234
|
type:
|
|
3817
4235
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema,
|
|
3818
|
-
|
|
3819
|
-
slug: z.string(),
|
|
4236
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3820
4237
|
ref: z.nullable(z.string()).optional(),
|
|
3821
4238
|
sha: z.string().optional(),
|
|
3822
4239
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3885,8 +4302,8 @@ export const GitSource6$inboundSchema: z.ZodType<
|
|
|
3885
4302
|
> = z.object({
|
|
3886
4303
|
type:
|
|
3887
4304
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
3888
|
-
|
|
3889
|
-
|
|
4305
|
+
org: z.string(),
|
|
4306
|
+
repo: z.string(),
|
|
3890
4307
|
ref: z.nullable(z.string()).optional(),
|
|
3891
4308
|
sha: z.string().optional(),
|
|
3892
4309
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3895,8 +4312,8 @@ export const GitSource6$inboundSchema: z.ZodType<
|
|
|
3895
4312
|
/** @internal */
|
|
3896
4313
|
export type GitSource6$Outbound = {
|
|
3897
4314
|
type: string;
|
|
3898
|
-
|
|
3899
|
-
|
|
4315
|
+
org: string;
|
|
4316
|
+
repo: string;
|
|
3900
4317
|
ref?: string | null | undefined;
|
|
3901
4318
|
sha?: string | undefined;
|
|
3902
4319
|
prId?: number | null | undefined;
|
|
@@ -3910,8 +4327,8 @@ export const GitSource6$outboundSchema: z.ZodType<
|
|
|
3910
4327
|
> = z.object({
|
|
3911
4328
|
type:
|
|
3912
4329
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
3913
|
-
|
|
3914
|
-
|
|
4330
|
+
org: z.string(),
|
|
4331
|
+
repo: z.string(),
|
|
3915
4332
|
ref: z.nullable(z.string()).optional(),
|
|
3916
4333
|
sha: z.string().optional(),
|
|
3917
4334
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3973,54 +4390,66 @@ export namespace CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONT
|
|
|
3973
4390
|
}
|
|
3974
4391
|
|
|
3975
4392
|
/** @internal */
|
|
3976
|
-
export const
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
4393
|
+
export const CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema:
|
|
4394
|
+
z.ZodType<
|
|
4395
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4396
|
+
z.ZodTypeDef,
|
|
4397
|
+
unknown
|
|
4398
|
+
> = z.union([z.string(), z.number()]);
|
|
3981
4399
|
|
|
3982
4400
|
/** @internal */
|
|
3983
|
-
export type
|
|
4401
|
+
export type CancelDeploymentGitSourceDeploymentsResponseRepoId$Outbound =
|
|
4402
|
+
| string
|
|
4403
|
+
| number;
|
|
3984
4404
|
|
|
3985
4405
|
/** @internal */
|
|
3986
|
-
export const
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
4406
|
+
export const CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema:
|
|
4407
|
+
z.ZodType<
|
|
4408
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$Outbound,
|
|
4409
|
+
z.ZodTypeDef,
|
|
4410
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId
|
|
4411
|
+
> = z.union([z.string(), z.number()]);
|
|
3991
4412
|
|
|
3992
4413
|
/**
|
|
3993
4414
|
* @internal
|
|
3994
4415
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3995
4416
|
*/
|
|
3996
|
-
export namespace
|
|
3997
|
-
/** @deprecated use `
|
|
3998
|
-
export const inboundSchema =
|
|
3999
|
-
|
|
4417
|
+
export namespace CancelDeploymentGitSourceDeploymentsResponseRepoId$ {
|
|
4418
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema` instead. */
|
|
4419
|
+
export const inboundSchema =
|
|
4420
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema;
|
|
4421
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema` instead. */
|
|
4000
4422
|
export const outboundSchema =
|
|
4001
|
-
|
|
4002
|
-
/** @deprecated use `
|
|
4003
|
-
export type Outbound =
|
|
4423
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema;
|
|
4424
|
+
/** @deprecated use `CancelDeploymentGitSourceDeploymentsResponseRepoId$Outbound` instead. */
|
|
4425
|
+
export type Outbound =
|
|
4426
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$Outbound;
|
|
4004
4427
|
}
|
|
4005
4428
|
|
|
4006
|
-
export function
|
|
4007
|
-
|
|
4429
|
+
export function cancelDeploymentGitSourceDeploymentsResponseRepoIdToJSON(
|
|
4430
|
+
cancelDeploymentGitSourceDeploymentsResponseRepoId:
|
|
4431
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4008
4432
|
): string {
|
|
4009
4433
|
return JSON.stringify(
|
|
4010
|
-
|
|
4011
|
-
|
|
4434
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema.parse(
|
|
4435
|
+
cancelDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4012
4436
|
),
|
|
4013
4437
|
);
|
|
4014
4438
|
}
|
|
4015
4439
|
|
|
4016
|
-
export function
|
|
4440
|
+
export function cancelDeploymentGitSourceDeploymentsResponseRepoIdFromJSON(
|
|
4017
4441
|
jsonString: string,
|
|
4018
|
-
): SafeParseResult<
|
|
4442
|
+
): SafeParseResult<
|
|
4443
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4444
|
+
SDKValidationError
|
|
4445
|
+
> {
|
|
4019
4446
|
return safeParse(
|
|
4020
4447
|
jsonString,
|
|
4021
4448
|
(x) =>
|
|
4022
|
-
|
|
4023
|
-
|
|
4449
|
+
CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema.parse(
|
|
4450
|
+
JSON.parse(x),
|
|
4451
|
+
),
|
|
4452
|
+
`Failed to parse 'CancelDeploymentGitSourceDeploymentsResponseRepoId' from JSON`,
|
|
4024
4453
|
);
|
|
4025
4454
|
}
|
|
4026
4455
|
|
|
@@ -4032,7 +4461,7 @@ export const CancelDeploymentGitSource5$inboundSchema: z.ZodType<
|
|
|
4032
4461
|
> = z.object({
|
|
4033
4462
|
type:
|
|
4034
4463
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema,
|
|
4035
|
-
|
|
4464
|
+
repoId: z.union([z.string(), z.number()]),
|
|
4036
4465
|
ref: z.nullable(z.string()).optional(),
|
|
4037
4466
|
sha: z.string().optional(),
|
|
4038
4467
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -4041,7 +4470,7 @@ export const CancelDeploymentGitSource5$inboundSchema: z.ZodType<
|
|
|
4041
4470
|
/** @internal */
|
|
4042
4471
|
export type CancelDeploymentGitSource5$Outbound = {
|
|
4043
4472
|
type: string;
|
|
4044
|
-
|
|
4473
|
+
repoId: string | number;
|
|
4045
4474
|
ref?: string | null | undefined;
|
|
4046
4475
|
sha?: string | undefined;
|
|
4047
4476
|
prId?: number | null | undefined;
|
|
@@ -4055,7 +4484,7 @@ export const CancelDeploymentGitSource5$outboundSchema: z.ZodType<
|
|
|
4055
4484
|
> = z.object({
|
|
4056
4485
|
type:
|
|
4057
4486
|
CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema,
|
|
4058
|
-
|
|
4487
|
+
repoId: z.union([z.string(), z.number()]),
|
|
4059
4488
|
ref: z.nullable(z.string()).optional(),
|
|
4060
4489
|
sha: z.string().optional(),
|
|
4061
4490
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -4574,34 +5003,40 @@ export const CancelDeploymentGitSource$inboundSchema: z.ZodType<
|
|
|
4574
5003
|
z.ZodTypeDef,
|
|
4575
5004
|
unknown
|
|
4576
5005
|
> = z.union([
|
|
4577
|
-
z.lazy(() => GitSource10$inboundSchema),
|
|
4578
5006
|
z.lazy(() => GitSource12$inboundSchema),
|
|
5007
|
+
z.lazy(() => GitSource15$inboundSchema),
|
|
4579
5008
|
z.lazy(() => CancelDeploymentGitSource4$inboundSchema),
|
|
4580
|
-
z.lazy(() =>
|
|
4581
|
-
z.lazy(() => GitSource9$inboundSchema),
|
|
5009
|
+
z.lazy(() => GitSource10$inboundSchema),
|
|
4582
5010
|
z.lazy(() => GitSource11$inboundSchema),
|
|
5011
|
+
z.lazy(() => GitSource13$inboundSchema),
|
|
5012
|
+
z.lazy(() => GitSource14$inboundSchema),
|
|
4583
5013
|
z.lazy(() => CancelDeploymentGitSource2$inboundSchema),
|
|
4584
5014
|
z.lazy(() => CancelDeploymentGitSource3$inboundSchema),
|
|
4585
|
-
z.lazy(() =>
|
|
5015
|
+
z.lazy(() => GitSource6$inboundSchema),
|
|
5016
|
+
z.lazy(() => GitSource9$inboundSchema),
|
|
4586
5017
|
z.lazy(() => CancelDeploymentGitSource1$inboundSchema),
|
|
4587
5018
|
z.lazy(() => CancelDeploymentGitSource5$inboundSchema),
|
|
4588
|
-
z.lazy(() =>
|
|
5019
|
+
z.lazy(() => GitSource7$inboundSchema),
|
|
5020
|
+
z.lazy(() => GitSource8$inboundSchema),
|
|
4589
5021
|
]);
|
|
4590
5022
|
|
|
4591
5023
|
/** @internal */
|
|
4592
5024
|
export type CancelDeploymentGitSource$Outbound =
|
|
4593
|
-
| GitSource10$Outbound
|
|
4594
5025
|
| GitSource12$Outbound
|
|
5026
|
+
| GitSource15$Outbound
|
|
4595
5027
|
| CancelDeploymentGitSource4$Outbound
|
|
4596
|
-
|
|
|
4597
|
-
| GitSource9$Outbound
|
|
5028
|
+
| GitSource10$Outbound
|
|
4598
5029
|
| GitSource11$Outbound
|
|
5030
|
+
| GitSource13$Outbound
|
|
5031
|
+
| GitSource14$Outbound
|
|
4599
5032
|
| CancelDeploymentGitSource2$Outbound
|
|
4600
5033
|
| CancelDeploymentGitSource3$Outbound
|
|
4601
|
-
|
|
|
5034
|
+
| GitSource6$Outbound
|
|
5035
|
+
| GitSource9$Outbound
|
|
4602
5036
|
| CancelDeploymentGitSource1$Outbound
|
|
4603
5037
|
| CancelDeploymentGitSource5$Outbound
|
|
4604
|
-
|
|
|
5038
|
+
| GitSource7$Outbound
|
|
5039
|
+
| GitSource8$Outbound;
|
|
4605
5040
|
|
|
4606
5041
|
/** @internal */
|
|
4607
5042
|
export const CancelDeploymentGitSource$outboundSchema: z.ZodType<
|
|
@@ -4609,18 +5044,21 @@ export const CancelDeploymentGitSource$outboundSchema: z.ZodType<
|
|
|
4609
5044
|
z.ZodTypeDef,
|
|
4610
5045
|
CancelDeploymentGitSource
|
|
4611
5046
|
> = z.union([
|
|
4612
|
-
z.lazy(() => GitSource10$outboundSchema),
|
|
4613
5047
|
z.lazy(() => GitSource12$outboundSchema),
|
|
5048
|
+
z.lazy(() => GitSource15$outboundSchema),
|
|
4614
5049
|
z.lazy(() => CancelDeploymentGitSource4$outboundSchema),
|
|
4615
|
-
z.lazy(() =>
|
|
4616
|
-
z.lazy(() => GitSource9$outboundSchema),
|
|
5050
|
+
z.lazy(() => GitSource10$outboundSchema),
|
|
4617
5051
|
z.lazy(() => GitSource11$outboundSchema),
|
|
5052
|
+
z.lazy(() => GitSource13$outboundSchema),
|
|
5053
|
+
z.lazy(() => GitSource14$outboundSchema),
|
|
4618
5054
|
z.lazy(() => CancelDeploymentGitSource2$outboundSchema),
|
|
4619
5055
|
z.lazy(() => CancelDeploymentGitSource3$outboundSchema),
|
|
4620
|
-
z.lazy(() =>
|
|
5056
|
+
z.lazy(() => GitSource6$outboundSchema),
|
|
5057
|
+
z.lazy(() => GitSource9$outboundSchema),
|
|
4621
5058
|
z.lazy(() => CancelDeploymentGitSource1$outboundSchema),
|
|
4622
5059
|
z.lazy(() => CancelDeploymentGitSource5$outboundSchema),
|
|
4623
|
-
z.lazy(() =>
|
|
5060
|
+
z.lazy(() => GitSource7$outboundSchema),
|
|
5061
|
+
z.lazy(() => GitSource8$outboundSchema),
|
|
4624
5062
|
]);
|
|
4625
5063
|
|
|
4626
5064
|
/**
|
|
@@ -4654,6 +5092,27 @@ export function cancelDeploymentGitSourceFromJSON(
|
|
|
4654
5092
|
);
|
|
4655
5093
|
}
|
|
4656
5094
|
|
|
5095
|
+
/** @internal */
|
|
5096
|
+
export const CancelDeploymentNodeVersion$inboundSchema: z.ZodNativeEnum<
|
|
5097
|
+
typeof CancelDeploymentNodeVersion
|
|
5098
|
+
> = z.nativeEnum(CancelDeploymentNodeVersion);
|
|
5099
|
+
|
|
5100
|
+
/** @internal */
|
|
5101
|
+
export const CancelDeploymentNodeVersion$outboundSchema: z.ZodNativeEnum<
|
|
5102
|
+
typeof CancelDeploymentNodeVersion
|
|
5103
|
+
> = CancelDeploymentNodeVersion$inboundSchema;
|
|
5104
|
+
|
|
5105
|
+
/**
|
|
5106
|
+
* @internal
|
|
5107
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5108
|
+
*/
|
|
5109
|
+
export namespace CancelDeploymentNodeVersion$ {
|
|
5110
|
+
/** @deprecated use `CancelDeploymentNodeVersion$inboundSchema` instead. */
|
|
5111
|
+
export const inboundSchema = CancelDeploymentNodeVersion$inboundSchema;
|
|
5112
|
+
/** @deprecated use `CancelDeploymentNodeVersion$outboundSchema` instead. */
|
|
5113
|
+
export const outboundSchema = CancelDeploymentNodeVersion$outboundSchema;
|
|
5114
|
+
}
|
|
5115
|
+
|
|
4657
5116
|
/** @internal */
|
|
4658
5117
|
export const CancelDeploymentProject$inboundSchema: z.ZodType<
|
|
4659
5118
|
CancelDeploymentProject,
|
|
@@ -8095,8 +8554,7 @@ export const CancelDeploymentMicrofrontends2$inboundSchema: z.ZodType<
|
|
|
8095
8554
|
defaultAppProjectName: z.string(),
|
|
8096
8555
|
defaultRoute: z.string().optional(),
|
|
8097
8556
|
groupIds: z.array(z.string()),
|
|
8098
|
-
|
|
8099
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
8557
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
8100
8558
|
});
|
|
8101
8559
|
|
|
8102
8560
|
/** @internal */
|
|
@@ -8108,8 +8566,7 @@ export type CancelDeploymentMicrofrontends2$Outbound = {
|
|
|
8108
8566
|
defaultAppProjectName: string;
|
|
8109
8567
|
defaultRoute?: string | undefined;
|
|
8110
8568
|
groupIds: Array<string>;
|
|
8111
|
-
|
|
8112
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
8569
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
8113
8570
|
};
|
|
8114
8571
|
|
|
8115
8572
|
/** @internal */
|
|
@@ -8125,8 +8582,7 @@ export const CancelDeploymentMicrofrontends2$outboundSchema: z.ZodType<
|
|
|
8125
8582
|
defaultAppProjectName: z.string(),
|
|
8126
8583
|
defaultRoute: z.string().optional(),
|
|
8127
8584
|
groupIds: z.array(z.string()),
|
|
8128
|
-
|
|
8129
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
8585
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
8130
8586
|
});
|
|
8131
8587
|
|
|
8132
8588
|
/**
|
|
@@ -8172,8 +8628,7 @@ export const CancelDeploymentMicrofrontends1$inboundSchema: z.ZodType<
|
|
|
8172
8628
|
defaultAppProjectName: z.string(),
|
|
8173
8629
|
defaultRoute: z.string().optional(),
|
|
8174
8630
|
groupIds: z.array(z.string()),
|
|
8175
|
-
|
|
8176
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
8631
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
8177
8632
|
});
|
|
8178
8633
|
|
|
8179
8634
|
/** @internal */
|
|
@@ -8182,8 +8637,7 @@ export type CancelDeploymentMicrofrontends1$Outbound = {
|
|
|
8182
8637
|
defaultAppProjectName: string;
|
|
8183
8638
|
defaultRoute?: string | undefined;
|
|
8184
8639
|
groupIds: Array<string>;
|
|
8185
|
-
|
|
8186
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
8640
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
8187
8641
|
};
|
|
8188
8642
|
|
|
8189
8643
|
/** @internal */
|
|
@@ -8196,8 +8650,7 @@ export const CancelDeploymentMicrofrontends1$outboundSchema: z.ZodType<
|
|
|
8196
8650
|
defaultAppProjectName: z.string(),
|
|
8197
8651
|
defaultRoute: z.string().optional(),
|
|
8198
8652
|
groupIds: z.array(z.string()),
|
|
8199
|
-
|
|
8200
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
8653
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
8201
8654
|
});
|
|
8202
8655
|
|
|
8203
8656
|
/**
|
|
@@ -8619,22 +9072,26 @@ export const CancelDeploymentResponseBody$inboundSchema: z.ZodType<
|
|
|
8619
9072
|
errorStep: z.string().optional(),
|
|
8620
9073
|
passiveRegions: z.array(z.string()).optional(),
|
|
8621
9074
|
gitSource: z.union([
|
|
8622
|
-
z.lazy(() => GitSource10$inboundSchema),
|
|
8623
9075
|
z.lazy(() => GitSource12$inboundSchema),
|
|
9076
|
+
z.lazy(() => GitSource15$inboundSchema),
|
|
8624
9077
|
z.lazy(() => CancelDeploymentGitSource4$inboundSchema),
|
|
8625
|
-
z.lazy(() =>
|
|
8626
|
-
z.lazy(() => GitSource9$inboundSchema),
|
|
9078
|
+
z.lazy(() => GitSource10$inboundSchema),
|
|
8627
9079
|
z.lazy(() => GitSource11$inboundSchema),
|
|
9080
|
+
z.lazy(() => GitSource13$inboundSchema),
|
|
9081
|
+
z.lazy(() => GitSource14$inboundSchema),
|
|
8628
9082
|
z.lazy(() => CancelDeploymentGitSource2$inboundSchema),
|
|
8629
9083
|
z.lazy(() => CancelDeploymentGitSource3$inboundSchema),
|
|
8630
|
-
z.lazy(() =>
|
|
9084
|
+
z.lazy(() => GitSource6$inboundSchema),
|
|
9085
|
+
z.lazy(() => GitSource9$inboundSchema),
|
|
8631
9086
|
z.lazy(() => CancelDeploymentGitSource1$inboundSchema),
|
|
8632
9087
|
z.lazy(() => CancelDeploymentGitSource5$inboundSchema),
|
|
8633
|
-
z.lazy(() =>
|
|
9088
|
+
z.lazy(() => GitSource7$inboundSchema),
|
|
9089
|
+
z.lazy(() => GitSource8$inboundSchema),
|
|
8634
9090
|
]).optional(),
|
|
8635
9091
|
name: z.string(),
|
|
8636
9092
|
meta: z.record(z.string()),
|
|
8637
9093
|
originCacheRegion: z.string().optional(),
|
|
9094
|
+
nodeVersion: CancelDeploymentNodeVersion$inboundSchema.optional(),
|
|
8638
9095
|
project: z.lazy(() => CancelDeploymentProject$inboundSchema).optional(),
|
|
8639
9096
|
readyState: CancelDeploymentReadyState$inboundSchema,
|
|
8640
9097
|
readySubstate: CancelDeploymentReadySubstate$inboundSchema.optional(),
|
|
@@ -8744,22 +9201,26 @@ export type CancelDeploymentResponseBody$Outbound = {
|
|
|
8744
9201
|
errorStep?: string | undefined;
|
|
8745
9202
|
passiveRegions?: Array<string> | undefined;
|
|
8746
9203
|
gitSource?:
|
|
8747
|
-
| GitSource10$Outbound
|
|
8748
9204
|
| GitSource12$Outbound
|
|
9205
|
+
| GitSource15$Outbound
|
|
8749
9206
|
| CancelDeploymentGitSource4$Outbound
|
|
8750
|
-
|
|
|
8751
|
-
| GitSource9$Outbound
|
|
9207
|
+
| GitSource10$Outbound
|
|
8752
9208
|
| GitSource11$Outbound
|
|
9209
|
+
| GitSource13$Outbound
|
|
9210
|
+
| GitSource14$Outbound
|
|
8753
9211
|
| CancelDeploymentGitSource2$Outbound
|
|
8754
9212
|
| CancelDeploymentGitSource3$Outbound
|
|
8755
|
-
|
|
|
9213
|
+
| GitSource6$Outbound
|
|
9214
|
+
| GitSource9$Outbound
|
|
8756
9215
|
| CancelDeploymentGitSource1$Outbound
|
|
8757
9216
|
| CancelDeploymentGitSource5$Outbound
|
|
8758
|
-
|
|
|
9217
|
+
| GitSource7$Outbound
|
|
9218
|
+
| GitSource8$Outbound
|
|
8759
9219
|
| undefined;
|
|
8760
9220
|
name: string;
|
|
8761
9221
|
meta: { [k: string]: string };
|
|
8762
9222
|
originCacheRegion?: string | undefined;
|
|
9223
|
+
nodeVersion?: string | undefined;
|
|
8763
9224
|
project?: CancelDeploymentProject$Outbound | undefined;
|
|
8764
9225
|
readyState: string;
|
|
8765
9226
|
readySubstate?: string | undefined;
|
|
@@ -8877,22 +9338,26 @@ export const CancelDeploymentResponseBody$outboundSchema: z.ZodType<
|
|
|
8877
9338
|
errorStep: z.string().optional(),
|
|
8878
9339
|
passiveRegions: z.array(z.string()).optional(),
|
|
8879
9340
|
gitSource: z.union([
|
|
8880
|
-
z.lazy(() => GitSource10$outboundSchema),
|
|
8881
9341
|
z.lazy(() => GitSource12$outboundSchema),
|
|
9342
|
+
z.lazy(() => GitSource15$outboundSchema),
|
|
8882
9343
|
z.lazy(() => CancelDeploymentGitSource4$outboundSchema),
|
|
8883
|
-
z.lazy(() =>
|
|
8884
|
-
z.lazy(() => GitSource9$outboundSchema),
|
|
9344
|
+
z.lazy(() => GitSource10$outboundSchema),
|
|
8885
9345
|
z.lazy(() => GitSource11$outboundSchema),
|
|
9346
|
+
z.lazy(() => GitSource13$outboundSchema),
|
|
9347
|
+
z.lazy(() => GitSource14$outboundSchema),
|
|
8886
9348
|
z.lazy(() => CancelDeploymentGitSource2$outboundSchema),
|
|
8887
9349
|
z.lazy(() => CancelDeploymentGitSource3$outboundSchema),
|
|
8888
|
-
z.lazy(() =>
|
|
9350
|
+
z.lazy(() => GitSource6$outboundSchema),
|
|
9351
|
+
z.lazy(() => GitSource9$outboundSchema),
|
|
8889
9352
|
z.lazy(() => CancelDeploymentGitSource1$outboundSchema),
|
|
8890
9353
|
z.lazy(() => CancelDeploymentGitSource5$outboundSchema),
|
|
8891
|
-
z.lazy(() =>
|
|
9354
|
+
z.lazy(() => GitSource7$outboundSchema),
|
|
9355
|
+
z.lazy(() => GitSource8$outboundSchema),
|
|
8892
9356
|
]).optional(),
|
|
8893
9357
|
name: z.string(),
|
|
8894
9358
|
meta: z.record(z.string()),
|
|
8895
9359
|
originCacheRegion: z.string().optional(),
|
|
9360
|
+
nodeVersion: CancelDeploymentNodeVersion$outboundSchema.optional(),
|
|
8896
9361
|
project: z.lazy(() => CancelDeploymentProject$outboundSchema).optional(),
|
|
8897
9362
|
readyState: CancelDeploymentReadyState$outboundSchema,
|
|
8898
9363
|
readySubstate: CancelDeploymentReadySubstate$outboundSchema.optional(),
|