@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
|
@@ -60,30 +60,39 @@ export const GetDeploymentResponseBodyChecksConclusion = {
|
|
|
60
60
|
Skipped: "skipped",
|
|
61
61
|
Canceled: "canceled",
|
|
62
62
|
};
|
|
63
|
-
export const
|
|
63
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type = {
|
|
64
64
|
Bitbucket: "bitbucket",
|
|
65
65
|
};
|
|
66
|
-
export const
|
|
66
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type = {
|
|
67
67
|
Gitlab: "gitlab",
|
|
68
68
|
};
|
|
69
|
-
export const
|
|
69
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type = {
|
|
70
|
+
GithubLimited: "github-limited",
|
|
71
|
+
};
|
|
72
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type = {
|
|
70
73
|
GithubCustomHost: "github-custom-host",
|
|
71
74
|
};
|
|
72
|
-
export const
|
|
75
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type = {
|
|
73
76
|
Github: "github",
|
|
74
77
|
};
|
|
75
|
-
export const
|
|
78
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type = {
|
|
76
79
|
Custom: "custom",
|
|
77
80
|
};
|
|
78
|
-
export const
|
|
81
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type = {
|
|
79
82
|
Bitbucket: "bitbucket",
|
|
80
83
|
};
|
|
81
|
-
export const
|
|
84
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type = {
|
|
82
85
|
Bitbucket: "bitbucket",
|
|
83
86
|
};
|
|
84
|
-
export const
|
|
87
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type = {
|
|
85
88
|
Gitlab: "gitlab",
|
|
86
89
|
};
|
|
90
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type = {
|
|
91
|
+
GithubLimited: "github-limited",
|
|
92
|
+
};
|
|
93
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type = {
|
|
94
|
+
GithubLimited: "github-limited",
|
|
95
|
+
};
|
|
87
96
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type = {
|
|
88
97
|
GithubCustomHost: "github-custom-host",
|
|
89
98
|
};
|
|
@@ -96,6 +105,19 @@ export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponse
|
|
|
96
105
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type = {
|
|
97
106
|
Github: "github",
|
|
98
107
|
};
|
|
108
|
+
/**
|
|
109
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
110
|
+
*/
|
|
111
|
+
export const GetDeploymentResponseBodyNodeVersion = {
|
|
112
|
+
TwentyTwoDotX: "22.x",
|
|
113
|
+
TwentyDotX: "20.x",
|
|
114
|
+
EighteenDotX: "18.x",
|
|
115
|
+
SixteenDotX: "16.x",
|
|
116
|
+
FourteenDotX: "14.x",
|
|
117
|
+
TwelveDotX: "12.x",
|
|
118
|
+
TenDotX: "10.x",
|
|
119
|
+
EightDot10DotX: "8.10.x",
|
|
120
|
+
};
|
|
99
121
|
/**
|
|
100
122
|
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
101
123
|
*/
|
|
@@ -166,6 +188,7 @@ export const ResponseBodyFramework = {
|
|
|
166
188
|
Sanity: "sanity",
|
|
167
189
|
Storybook: "storybook",
|
|
168
190
|
Nitro: "nitro",
|
|
191
|
+
Hono: "hono",
|
|
169
192
|
};
|
|
170
193
|
export const GetDeploymentResponseBodyDeploymentsStatus = {
|
|
171
194
|
Skipped: "skipped",
|
|
@@ -244,30 +267,39 @@ export const ResponseBodyChecksConclusion = {
|
|
|
244
267
|
Skipped: "skipped",
|
|
245
268
|
Canceled: "canceled",
|
|
246
269
|
};
|
|
247
|
-
export const
|
|
270
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type = {
|
|
248
271
|
Bitbucket: "bitbucket",
|
|
249
272
|
};
|
|
250
|
-
export const
|
|
273
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type = {
|
|
251
274
|
Gitlab: "gitlab",
|
|
252
275
|
};
|
|
253
|
-
export const
|
|
276
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type = {
|
|
277
|
+
GithubLimited: "github-limited",
|
|
278
|
+
};
|
|
279
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type = {
|
|
254
280
|
GithubCustomHost: "github-custom-host",
|
|
255
281
|
};
|
|
256
|
-
export const
|
|
282
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type = {
|
|
257
283
|
Github: "github",
|
|
258
284
|
};
|
|
259
|
-
export const
|
|
285
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type = {
|
|
260
286
|
Custom: "custom",
|
|
261
287
|
};
|
|
262
|
-
export const
|
|
288
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type = {
|
|
263
289
|
Bitbucket: "bitbucket",
|
|
264
290
|
};
|
|
265
|
-
export const
|
|
291
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type = {
|
|
266
292
|
Bitbucket: "bitbucket",
|
|
267
293
|
};
|
|
268
|
-
export const
|
|
294
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType = {
|
|
269
295
|
Gitlab: "gitlab",
|
|
270
296
|
};
|
|
297
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType = {
|
|
298
|
+
GithubLimited: "github-limited",
|
|
299
|
+
};
|
|
300
|
+
export const GetDeploymentGitSourceDeploymentsResponse200Type = {
|
|
301
|
+
GithubLimited: "github-limited",
|
|
302
|
+
};
|
|
271
303
|
export const GetDeploymentGitSourceDeploymentsResponseType = {
|
|
272
304
|
GithubCustomHost: "github-custom-host",
|
|
273
305
|
};
|
|
@@ -280,6 +312,19 @@ export const GetDeploymentGitSourceType = {
|
|
|
280
312
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type = {
|
|
281
313
|
Github: "github",
|
|
282
314
|
};
|
|
315
|
+
/**
|
|
316
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
317
|
+
*/
|
|
318
|
+
export const ResponseBodyNodeVersion = {
|
|
319
|
+
TwentyTwoDotX: "22.x",
|
|
320
|
+
TwentyDotX: "20.x",
|
|
321
|
+
EighteenDotX: "18.x",
|
|
322
|
+
SixteenDotX: "16.x",
|
|
323
|
+
FourteenDotX: "14.x",
|
|
324
|
+
TwelveDotX: "12.x",
|
|
325
|
+
TenDotX: "10.x",
|
|
326
|
+
EightDot10DotX: "8.10.x",
|
|
327
|
+
};
|
|
283
328
|
/**
|
|
284
329
|
* Substate of deployment when readyState is 'READY' Tracks whether or not deployment has seen production traffic: - STAGED: never seen production traffic - ROLLING: in the process of having production traffic gradually transitioned. - PROMOTED: has seen production traffic
|
|
285
330
|
*/
|
|
@@ -938,6 +983,154 @@ export var GetDeploymentResponseBodyChecksConclusion$;
|
|
|
938
983
|
GetDeploymentResponseBodyChecksConclusion$.outboundSchema = GetDeploymentResponseBodyChecksConclusion$outboundSchema;
|
|
939
984
|
})(GetDeploymentResponseBodyChecksConclusion$ || (GetDeploymentResponseBodyChecksConclusion$ = {}));
|
|
940
985
|
/** @internal */
|
|
986
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type);
|
|
987
|
+
/** @internal */
|
|
988
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema;
|
|
989
|
+
/**
|
|
990
|
+
* @internal
|
|
991
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
992
|
+
*/
|
|
993
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$;
|
|
994
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$) {
|
|
995
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema` instead. */
|
|
996
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema;
|
|
997
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema` instead. */
|
|
998
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema;
|
|
999
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$ = {}));
|
|
1000
|
+
/** @internal */
|
|
1001
|
+
export const GetDeploymentGitSource15$inboundSchema = z.object({
|
|
1002
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema,
|
|
1003
|
+
ref: z.string(),
|
|
1004
|
+
sha: z.string(),
|
|
1005
|
+
owner: z.string().optional(),
|
|
1006
|
+
slug: z.string().optional(),
|
|
1007
|
+
workspaceUuid: z.string(),
|
|
1008
|
+
repoUuid: z.string(),
|
|
1009
|
+
});
|
|
1010
|
+
/** @internal */
|
|
1011
|
+
export const GetDeploymentGitSource15$outboundSchema = z.object({
|
|
1012
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema,
|
|
1013
|
+
ref: z.string(),
|
|
1014
|
+
sha: z.string(),
|
|
1015
|
+
owner: z.string().optional(),
|
|
1016
|
+
slug: z.string().optional(),
|
|
1017
|
+
workspaceUuid: z.string(),
|
|
1018
|
+
repoUuid: z.string(),
|
|
1019
|
+
});
|
|
1020
|
+
/**
|
|
1021
|
+
* @internal
|
|
1022
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1023
|
+
*/
|
|
1024
|
+
export var GetDeploymentGitSource15$;
|
|
1025
|
+
(function (GetDeploymentGitSource15$) {
|
|
1026
|
+
/** @deprecated use `GetDeploymentGitSource15$inboundSchema` instead. */
|
|
1027
|
+
GetDeploymentGitSource15$.inboundSchema = GetDeploymentGitSource15$inboundSchema;
|
|
1028
|
+
/** @deprecated use `GetDeploymentGitSource15$outboundSchema` instead. */
|
|
1029
|
+
GetDeploymentGitSource15$.outboundSchema = GetDeploymentGitSource15$outboundSchema;
|
|
1030
|
+
})(GetDeploymentGitSource15$ || (GetDeploymentGitSource15$ = {}));
|
|
1031
|
+
export function getDeploymentGitSource15ToJSON(getDeploymentGitSource15) {
|
|
1032
|
+
return JSON.stringify(GetDeploymentGitSource15$outboundSchema.parse(getDeploymentGitSource15));
|
|
1033
|
+
}
|
|
1034
|
+
export function getDeploymentGitSource15FromJSON(jsonString) {
|
|
1035
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSource15$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSource15' from JSON`);
|
|
1036
|
+
}
|
|
1037
|
+
/** @internal */
|
|
1038
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type);
|
|
1039
|
+
/** @internal */
|
|
1040
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema;
|
|
1041
|
+
/**
|
|
1042
|
+
* @internal
|
|
1043
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1044
|
+
*/
|
|
1045
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$;
|
|
1046
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$) {
|
|
1047
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema` instead. */
|
|
1048
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema;
|
|
1049
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema` instead. */
|
|
1050
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema;
|
|
1051
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$ = {}));
|
|
1052
|
+
/** @internal */
|
|
1053
|
+
export const GetDeploymentGitSource14$inboundSchema = z.object({
|
|
1054
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema,
|
|
1055
|
+
ref: z.string(),
|
|
1056
|
+
sha: z.string(),
|
|
1057
|
+
projectId: z.number(),
|
|
1058
|
+
});
|
|
1059
|
+
/** @internal */
|
|
1060
|
+
export const GetDeploymentGitSource14$outboundSchema = z.object({
|
|
1061
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema,
|
|
1062
|
+
ref: z.string(),
|
|
1063
|
+
sha: z.string(),
|
|
1064
|
+
projectId: z.number(),
|
|
1065
|
+
});
|
|
1066
|
+
/**
|
|
1067
|
+
* @internal
|
|
1068
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1069
|
+
*/
|
|
1070
|
+
export var GetDeploymentGitSource14$;
|
|
1071
|
+
(function (GetDeploymentGitSource14$) {
|
|
1072
|
+
/** @deprecated use `GetDeploymentGitSource14$inboundSchema` instead. */
|
|
1073
|
+
GetDeploymentGitSource14$.inboundSchema = GetDeploymentGitSource14$inboundSchema;
|
|
1074
|
+
/** @deprecated use `GetDeploymentGitSource14$outboundSchema` instead. */
|
|
1075
|
+
GetDeploymentGitSource14$.outboundSchema = GetDeploymentGitSource14$outboundSchema;
|
|
1076
|
+
})(GetDeploymentGitSource14$ || (GetDeploymentGitSource14$ = {}));
|
|
1077
|
+
export function getDeploymentGitSource14ToJSON(getDeploymentGitSource14) {
|
|
1078
|
+
return JSON.stringify(GetDeploymentGitSource14$outboundSchema.parse(getDeploymentGitSource14));
|
|
1079
|
+
}
|
|
1080
|
+
export function getDeploymentGitSource14FromJSON(jsonString) {
|
|
1081
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSource14$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSource14' from JSON`);
|
|
1082
|
+
}
|
|
1083
|
+
/** @internal */
|
|
1084
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type);
|
|
1085
|
+
/** @internal */
|
|
1086
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema;
|
|
1087
|
+
/**
|
|
1088
|
+
* @internal
|
|
1089
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1090
|
+
*/
|
|
1091
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$;
|
|
1092
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$) {
|
|
1093
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema` instead. */
|
|
1094
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema;
|
|
1095
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema` instead. */
|
|
1096
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema;
|
|
1097
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$ = {}));
|
|
1098
|
+
/** @internal */
|
|
1099
|
+
export const GetDeploymentGitSource13$inboundSchema = z.object({
|
|
1100
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema,
|
|
1101
|
+
ref: z.string(),
|
|
1102
|
+
sha: z.string(),
|
|
1103
|
+
repoId: z.number(),
|
|
1104
|
+
org: z.string().optional(),
|
|
1105
|
+
repo: z.string().optional(),
|
|
1106
|
+
});
|
|
1107
|
+
/** @internal */
|
|
1108
|
+
export const GetDeploymentGitSource13$outboundSchema = z.object({
|
|
1109
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema,
|
|
1110
|
+
ref: z.string(),
|
|
1111
|
+
sha: z.string(),
|
|
1112
|
+
repoId: z.number(),
|
|
1113
|
+
org: z.string().optional(),
|
|
1114
|
+
repo: z.string().optional(),
|
|
1115
|
+
});
|
|
1116
|
+
/**
|
|
1117
|
+
* @internal
|
|
1118
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1119
|
+
*/
|
|
1120
|
+
export var GetDeploymentGitSource13$;
|
|
1121
|
+
(function (GetDeploymentGitSource13$) {
|
|
1122
|
+
/** @deprecated use `GetDeploymentGitSource13$inboundSchema` instead. */
|
|
1123
|
+
GetDeploymentGitSource13$.inboundSchema = GetDeploymentGitSource13$inboundSchema;
|
|
1124
|
+
/** @deprecated use `GetDeploymentGitSource13$outboundSchema` instead. */
|
|
1125
|
+
GetDeploymentGitSource13$.outboundSchema = GetDeploymentGitSource13$outboundSchema;
|
|
1126
|
+
})(GetDeploymentGitSource13$ || (GetDeploymentGitSource13$ = {}));
|
|
1127
|
+
export function getDeploymentGitSource13ToJSON(getDeploymentGitSource13) {
|
|
1128
|
+
return JSON.stringify(GetDeploymentGitSource13$outboundSchema.parse(getDeploymentGitSource13));
|
|
1129
|
+
}
|
|
1130
|
+
export function getDeploymentGitSource13FromJSON(jsonString) {
|
|
1131
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSource13$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSource13' from JSON`);
|
|
1132
|
+
}
|
|
1133
|
+
/** @internal */
|
|
941
1134
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type);
|
|
942
1135
|
/** @internal */
|
|
943
1136
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema;
|
|
@@ -955,22 +1148,22 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
955
1148
|
/** @internal */
|
|
956
1149
|
export const GetDeploymentGitSource12$inboundSchema = z.object({
|
|
957
1150
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema,
|
|
1151
|
+
host: z.string(),
|
|
958
1152
|
ref: z.string(),
|
|
959
1153
|
sha: z.string(),
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
repoUuid: z.string(),
|
|
1154
|
+
repoId: z.number(),
|
|
1155
|
+
org: z.string().optional(),
|
|
1156
|
+
repo: z.string().optional(),
|
|
964
1157
|
});
|
|
965
1158
|
/** @internal */
|
|
966
1159
|
export const GetDeploymentGitSource12$outboundSchema = z.object({
|
|
967
1160
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema,
|
|
1161
|
+
host: z.string(),
|
|
968
1162
|
ref: z.string(),
|
|
969
1163
|
sha: z.string(),
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
repoUuid: z.string(),
|
|
1164
|
+
repoId: z.number(),
|
|
1165
|
+
org: z.string().optional(),
|
|
1166
|
+
repo: z.string().optional(),
|
|
974
1167
|
});
|
|
975
1168
|
/**
|
|
976
1169
|
* @internal
|
|
@@ -1009,14 +1202,18 @@ export const GetDeploymentGitSource11$inboundSchema = z.object({
|
|
|
1009
1202
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema,
|
|
1010
1203
|
ref: z.string(),
|
|
1011
1204
|
sha: z.string(),
|
|
1012
|
-
|
|
1205
|
+
repoId: z.number(),
|
|
1206
|
+
org: z.string().optional(),
|
|
1207
|
+
repo: z.string().optional(),
|
|
1013
1208
|
});
|
|
1014
1209
|
/** @internal */
|
|
1015
1210
|
export const GetDeploymentGitSource11$outboundSchema = z.object({
|
|
1016
1211
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema,
|
|
1017
1212
|
ref: z.string(),
|
|
1018
1213
|
sha: z.string(),
|
|
1019
|
-
|
|
1214
|
+
repoId: z.number(),
|
|
1215
|
+
org: z.string().optional(),
|
|
1216
|
+
repo: z.string().optional(),
|
|
1020
1217
|
});
|
|
1021
1218
|
/**
|
|
1022
1219
|
* @internal
|
|
@@ -1053,22 +1250,16 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1053
1250
|
/** @internal */
|
|
1054
1251
|
export const GetDeploymentGitSource10$inboundSchema = z.object({
|
|
1055
1252
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema,
|
|
1056
|
-
host: z.string(),
|
|
1057
1253
|
ref: z.string(),
|
|
1058
1254
|
sha: z.string(),
|
|
1059
|
-
|
|
1060
|
-
org: z.string().optional(),
|
|
1061
|
-
repo: z.string().optional(),
|
|
1255
|
+
gitUrl: z.string(),
|
|
1062
1256
|
});
|
|
1063
1257
|
/** @internal */
|
|
1064
1258
|
export const GetDeploymentGitSource10$outboundSchema = z.object({
|
|
1065
1259
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema,
|
|
1066
|
-
host: z.string(),
|
|
1067
1260
|
ref: z.string(),
|
|
1068
1261
|
sha: z.string(),
|
|
1069
|
-
|
|
1070
|
-
org: z.string().optional(),
|
|
1071
|
-
repo: z.string().optional(),
|
|
1262
|
+
gitUrl: z.string(),
|
|
1072
1263
|
});
|
|
1073
1264
|
/**
|
|
1074
1265
|
* @internal
|
|
@@ -1105,20 +1296,20 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1105
1296
|
/** @internal */
|
|
1106
1297
|
export const GetDeploymentGitSource9$inboundSchema = z.object({
|
|
1107
1298
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema,
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1299
|
+
owner: z.string(),
|
|
1300
|
+
slug: z.string(),
|
|
1301
|
+
ref: z.nullable(z.string()).optional(),
|
|
1302
|
+
sha: z.string().optional(),
|
|
1303
|
+
prId: z.nullable(z.number()).optional(),
|
|
1113
1304
|
});
|
|
1114
1305
|
/** @internal */
|
|
1115
1306
|
export const GetDeploymentGitSource9$outboundSchema = z.object({
|
|
1116
1307
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema,
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1308
|
+
owner: z.string(),
|
|
1309
|
+
slug: z.string(),
|
|
1310
|
+
ref: z.nullable(z.string()).optional(),
|
|
1311
|
+
sha: z.string().optional(),
|
|
1312
|
+
prId: z.nullable(z.number()).optional(),
|
|
1122
1313
|
});
|
|
1123
1314
|
/**
|
|
1124
1315
|
* @internal
|
|
@@ -1155,16 +1346,20 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1155
1346
|
/** @internal */
|
|
1156
1347
|
export const GetDeploymentGitSource8$inboundSchema = z.object({
|
|
1157
1348
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema,
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1349
|
+
workspaceUuid: z.string().optional(),
|
|
1350
|
+
repoUuid: z.string(),
|
|
1351
|
+
ref: z.nullable(z.string()).optional(),
|
|
1352
|
+
sha: z.string().optional(),
|
|
1353
|
+
prId: z.nullable(z.number()).optional(),
|
|
1161
1354
|
});
|
|
1162
1355
|
/** @internal */
|
|
1163
1356
|
export const GetDeploymentGitSource8$outboundSchema = z.object({
|
|
1164
1357
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema,
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1358
|
+
workspaceUuid: z.string().optional(),
|
|
1359
|
+
repoUuid: z.string(),
|
|
1360
|
+
ref: z.nullable(z.string()).optional(),
|
|
1361
|
+
sha: z.string().optional(),
|
|
1362
|
+
prId: z.nullable(z.number()).optional(),
|
|
1168
1363
|
});
|
|
1169
1364
|
/**
|
|
1170
1365
|
* @internal
|
|
@@ -1199,10 +1394,30 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1199
1394
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema;
|
|
1200
1395
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$ = {}));
|
|
1201
1396
|
/** @internal */
|
|
1397
|
+
export const GetDeploymentGitSourceDeploymentsProjectId$inboundSchema = z.union([z.string(), z.number()]);
|
|
1398
|
+
/** @internal */
|
|
1399
|
+
export const GetDeploymentGitSourceDeploymentsProjectId$outboundSchema = z.union([z.string(), z.number()]);
|
|
1400
|
+
/**
|
|
1401
|
+
* @internal
|
|
1402
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1403
|
+
*/
|
|
1404
|
+
export var GetDeploymentGitSourceDeploymentsProjectId$;
|
|
1405
|
+
(function (GetDeploymentGitSourceDeploymentsProjectId$) {
|
|
1406
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$inboundSchema` instead. */
|
|
1407
|
+
GetDeploymentGitSourceDeploymentsProjectId$.inboundSchema = GetDeploymentGitSourceDeploymentsProjectId$inboundSchema;
|
|
1408
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$outboundSchema` instead. */
|
|
1409
|
+
GetDeploymentGitSourceDeploymentsProjectId$.outboundSchema = GetDeploymentGitSourceDeploymentsProjectId$outboundSchema;
|
|
1410
|
+
})(GetDeploymentGitSourceDeploymentsProjectId$ || (GetDeploymentGitSourceDeploymentsProjectId$ = {}));
|
|
1411
|
+
export function getDeploymentGitSourceDeploymentsProjectIdToJSON(getDeploymentGitSourceDeploymentsProjectId) {
|
|
1412
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsProjectId$outboundSchema.parse(getDeploymentGitSourceDeploymentsProjectId));
|
|
1413
|
+
}
|
|
1414
|
+
export function getDeploymentGitSourceDeploymentsProjectIdFromJSON(jsonString) {
|
|
1415
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsProjectId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsProjectId' from JSON`);
|
|
1416
|
+
}
|
|
1417
|
+
/** @internal */
|
|
1202
1418
|
export const GetDeploymentGitSource7$inboundSchema = z.object({
|
|
1203
1419
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema,
|
|
1204
|
-
|
|
1205
|
-
slug: z.string(),
|
|
1420
|
+
projectId: z.union([z.string(), z.number()]),
|
|
1206
1421
|
ref: z.nullable(z.string()).optional(),
|
|
1207
1422
|
sha: z.string().optional(),
|
|
1208
1423
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1210,8 +1425,7 @@ export const GetDeploymentGitSource7$inboundSchema = z.object({
|
|
|
1210
1425
|
/** @internal */
|
|
1211
1426
|
export const GetDeploymentGitSource7$outboundSchema = z.object({
|
|
1212
1427
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema,
|
|
1213
|
-
|
|
1214
|
-
slug: z.string(),
|
|
1428
|
+
projectId: z.union([z.string(), z.number()]),
|
|
1215
1429
|
ref: z.nullable(z.string()).optional(),
|
|
1216
1430
|
sha: z.string().optional(),
|
|
1217
1431
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1251,8 +1465,8 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1251
1465
|
/** @internal */
|
|
1252
1466
|
export const GetDeploymentGitSource6$inboundSchema = z.object({
|
|
1253
1467
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$inboundSchema,
|
|
1254
|
-
|
|
1255
|
-
|
|
1468
|
+
org: z.string(),
|
|
1469
|
+
repo: z.string(),
|
|
1256
1470
|
ref: z.nullable(z.string()).optional(),
|
|
1257
1471
|
sha: z.string().optional(),
|
|
1258
1472
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1260,8 +1474,8 @@ export const GetDeploymentGitSource6$inboundSchema = z.object({
|
|
|
1260
1474
|
/** @internal */
|
|
1261
1475
|
export const GetDeploymentGitSource6$outboundSchema = z.object({
|
|
1262
1476
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$outboundSchema,
|
|
1263
|
-
|
|
1264
|
-
|
|
1477
|
+
org: z.string(),
|
|
1478
|
+
repo: z.string(),
|
|
1265
1479
|
ref: z.nullable(z.string()).optional(),
|
|
1266
1480
|
sha: z.string().optional(),
|
|
1267
1481
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1299,30 +1513,30 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1299
1513
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema;
|
|
1300
1514
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$ = {}));
|
|
1301
1515
|
/** @internal */
|
|
1302
|
-
export const
|
|
1516
|
+
export const GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
1303
1517
|
/** @internal */
|
|
1304
|
-
export const
|
|
1518
|
+
export const GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
1305
1519
|
/**
|
|
1306
1520
|
* @internal
|
|
1307
1521
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1308
1522
|
*/
|
|
1309
|
-
export var
|
|
1310
|
-
(function (
|
|
1311
|
-
/** @deprecated use `
|
|
1312
|
-
|
|
1313
|
-
/** @deprecated use `
|
|
1314
|
-
|
|
1315
|
-
})(
|
|
1316
|
-
export function
|
|
1317
|
-
return JSON.stringify(
|
|
1523
|
+
export var GetDeploymentGitSourceDeploymentsResponse200RepoId$;
|
|
1524
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200RepoId$) {
|
|
1525
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema` instead. */
|
|
1526
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema;
|
|
1527
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema` instead. */
|
|
1528
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema;
|
|
1529
|
+
})(GetDeploymentGitSourceDeploymentsResponse200RepoId$ || (GetDeploymentGitSourceDeploymentsResponse200RepoId$ = {}));
|
|
1530
|
+
export function getDeploymentGitSourceDeploymentsResponse200RepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200RepoId) {
|
|
1531
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema.parse(getDeploymentGitSourceDeploymentsResponse200RepoId));
|
|
1318
1532
|
}
|
|
1319
|
-
export function
|
|
1320
|
-
return safeParse(jsonString, (x) =>
|
|
1533
|
+
export function getDeploymentGitSourceDeploymentsResponse200RepoIdFromJSON(jsonString) {
|
|
1534
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200RepoId' from JSON`);
|
|
1321
1535
|
}
|
|
1322
1536
|
/** @internal */
|
|
1323
1537
|
export const GetDeploymentGitSource5$inboundSchema = z.object({
|
|
1324
1538
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$inboundSchema,
|
|
1325
|
-
|
|
1539
|
+
repoId: z.union([z.string(), z.number()]),
|
|
1326
1540
|
ref: z.nullable(z.string()).optional(),
|
|
1327
1541
|
sha: z.string().optional(),
|
|
1328
1542
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1330,7 +1544,7 @@ export const GetDeploymentGitSource5$inboundSchema = z.object({
|
|
|
1330
1544
|
/** @internal */
|
|
1331
1545
|
export const GetDeploymentGitSource5$outboundSchema = z.object({
|
|
1332
1546
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema,
|
|
1333
|
-
|
|
1547
|
+
repoId: z.union([z.string(), z.number()]),
|
|
1334
1548
|
ref: z.nullable(z.string()).optional(),
|
|
1335
1549
|
sha: z.string().optional(),
|
|
1336
1550
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -1420,25 +1634,25 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1420
1634
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$outboundSchema;
|
|
1421
1635
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$ = {}));
|
|
1422
1636
|
/** @internal */
|
|
1423
|
-
export const
|
|
1637
|
+
export const GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
1424
1638
|
/** @internal */
|
|
1425
|
-
export const
|
|
1639
|
+
export const GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
1426
1640
|
/**
|
|
1427
1641
|
* @internal
|
|
1428
1642
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1429
1643
|
*/
|
|
1430
|
-
export var
|
|
1431
|
-
(function (
|
|
1432
|
-
/** @deprecated use `
|
|
1433
|
-
|
|
1434
|
-
/** @deprecated use `
|
|
1435
|
-
|
|
1436
|
-
})(
|
|
1437
|
-
export function
|
|
1438
|
-
return JSON.stringify(
|
|
1644
|
+
export var GetDeploymentGitSourceDeploymentsResponseRepoId$;
|
|
1645
|
+
(function (GetDeploymentGitSourceDeploymentsResponseRepoId$) {
|
|
1646
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema` instead. */
|
|
1647
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$.inboundSchema = GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema;
|
|
1648
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema` instead. */
|
|
1649
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$.outboundSchema = GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema;
|
|
1650
|
+
})(GetDeploymentGitSourceDeploymentsResponseRepoId$ || (GetDeploymentGitSourceDeploymentsResponseRepoId$ = {}));
|
|
1651
|
+
export function getDeploymentGitSourceDeploymentsResponseRepoIdToJSON(getDeploymentGitSourceDeploymentsResponseRepoId) {
|
|
1652
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema.parse(getDeploymentGitSourceDeploymentsResponseRepoId));
|
|
1439
1653
|
}
|
|
1440
|
-
export function
|
|
1441
|
-
return safeParse(jsonString, (x) =>
|
|
1654
|
+
export function getDeploymentGitSourceDeploymentsResponseRepoIdFromJSON(jsonString) {
|
|
1655
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsResponseRepoId' from JSON`);
|
|
1442
1656
|
}
|
|
1443
1657
|
/** @internal */
|
|
1444
1658
|
export const GetDeploymentGitSource3$inboundSchema = z.object({
|
|
@@ -1541,25 +1755,25 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
1541
1755
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$outboundSchema;
|
|
1542
1756
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$ = {}));
|
|
1543
1757
|
/** @internal */
|
|
1544
|
-
export const
|
|
1758
|
+
export const GetDeploymentGitSourceDeploymentsRepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
1545
1759
|
/** @internal */
|
|
1546
|
-
export const
|
|
1760
|
+
export const GetDeploymentGitSourceDeploymentsRepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
1547
1761
|
/**
|
|
1548
1762
|
* @internal
|
|
1549
1763
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1550
1764
|
*/
|
|
1551
|
-
export var
|
|
1552
|
-
(function (
|
|
1553
|
-
/** @deprecated use `
|
|
1554
|
-
|
|
1555
|
-
/** @deprecated use `
|
|
1556
|
-
|
|
1557
|
-
})(
|
|
1558
|
-
export function
|
|
1559
|
-
return JSON.stringify(
|
|
1765
|
+
export var GetDeploymentGitSourceDeploymentsRepoId$;
|
|
1766
|
+
(function (GetDeploymentGitSourceDeploymentsRepoId$) {
|
|
1767
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$inboundSchema` instead. */
|
|
1768
|
+
GetDeploymentGitSourceDeploymentsRepoId$.inboundSchema = GetDeploymentGitSourceDeploymentsRepoId$inboundSchema;
|
|
1769
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$outboundSchema` instead. */
|
|
1770
|
+
GetDeploymentGitSourceDeploymentsRepoId$.outboundSchema = GetDeploymentGitSourceDeploymentsRepoId$outboundSchema;
|
|
1771
|
+
})(GetDeploymentGitSourceDeploymentsRepoId$ || (GetDeploymentGitSourceDeploymentsRepoId$ = {}));
|
|
1772
|
+
export function getDeploymentGitSourceDeploymentsRepoIdToJSON(getDeploymentGitSourceDeploymentsRepoId) {
|
|
1773
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsRepoId$outboundSchema.parse(getDeploymentGitSourceDeploymentsRepoId));
|
|
1560
1774
|
}
|
|
1561
|
-
export function
|
|
1562
|
-
return safeParse(jsonString, (x) =>
|
|
1775
|
+
export function getDeploymentGitSourceDeploymentsRepoIdFromJSON(jsonString) {
|
|
1776
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsRepoId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsRepoId' from JSON`);
|
|
1563
1777
|
}
|
|
1564
1778
|
/** @internal */
|
|
1565
1779
|
export const GetDeploymentGitSource1$inboundSchema = z.object({
|
|
@@ -1596,33 +1810,39 @@ export function getDeploymentGitSource1FromJSON(jsonString) {
|
|
|
1596
1810
|
}
|
|
1597
1811
|
/** @internal */
|
|
1598
1812
|
export const ResponseBodyGitSource$inboundSchema = z.union([
|
|
1599
|
-
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
1600
1813
|
z.lazy(() => GetDeploymentGitSource12$inboundSchema),
|
|
1814
|
+
z.lazy(() => GetDeploymentGitSource15$inboundSchema),
|
|
1601
1815
|
z.lazy(() => GetDeploymentGitSource4$inboundSchema),
|
|
1602
|
-
z.lazy(() =>
|
|
1603
|
-
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
1816
|
+
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
1604
1817
|
z.lazy(() => GetDeploymentGitSource11$inboundSchema),
|
|
1818
|
+
z.lazy(() => GetDeploymentGitSource13$inboundSchema),
|
|
1819
|
+
z.lazy(() => GetDeploymentGitSource14$inboundSchema),
|
|
1605
1820
|
z.lazy(() => GetDeploymentGitSource2$inboundSchema),
|
|
1606
1821
|
z.lazy(() => GetDeploymentGitSource3$inboundSchema),
|
|
1607
|
-
z.lazy(() =>
|
|
1822
|
+
z.lazy(() => GetDeploymentGitSource6$inboundSchema),
|
|
1823
|
+
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
1608
1824
|
z.lazy(() => GetDeploymentGitSource1$inboundSchema),
|
|
1609
1825
|
z.lazy(() => GetDeploymentGitSource5$inboundSchema),
|
|
1610
|
-
z.lazy(() =>
|
|
1826
|
+
z.lazy(() => GetDeploymentGitSource7$inboundSchema),
|
|
1827
|
+
z.lazy(() => GetDeploymentGitSource8$inboundSchema),
|
|
1611
1828
|
]);
|
|
1612
1829
|
/** @internal */
|
|
1613
1830
|
export const ResponseBodyGitSource$outboundSchema = z.union([
|
|
1614
|
-
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
1615
1831
|
z.lazy(() => GetDeploymentGitSource12$outboundSchema),
|
|
1832
|
+
z.lazy(() => GetDeploymentGitSource15$outboundSchema),
|
|
1616
1833
|
z.lazy(() => GetDeploymentGitSource4$outboundSchema),
|
|
1617
|
-
z.lazy(() =>
|
|
1618
|
-
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
1834
|
+
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
1619
1835
|
z.lazy(() => GetDeploymentGitSource11$outboundSchema),
|
|
1836
|
+
z.lazy(() => GetDeploymentGitSource13$outboundSchema),
|
|
1837
|
+
z.lazy(() => GetDeploymentGitSource14$outboundSchema),
|
|
1620
1838
|
z.lazy(() => GetDeploymentGitSource2$outboundSchema),
|
|
1621
1839
|
z.lazy(() => GetDeploymentGitSource3$outboundSchema),
|
|
1622
|
-
z.lazy(() =>
|
|
1840
|
+
z.lazy(() => GetDeploymentGitSource6$outboundSchema),
|
|
1841
|
+
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
1623
1842
|
z.lazy(() => GetDeploymentGitSource1$outboundSchema),
|
|
1624
1843
|
z.lazy(() => GetDeploymentGitSource5$outboundSchema),
|
|
1625
|
-
z.lazy(() =>
|
|
1844
|
+
z.lazy(() => GetDeploymentGitSource7$outboundSchema),
|
|
1845
|
+
z.lazy(() => GetDeploymentGitSource8$outboundSchema),
|
|
1626
1846
|
]);
|
|
1627
1847
|
/**
|
|
1628
1848
|
* @internal
|
|
@@ -1642,6 +1862,21 @@ export function responseBodyGitSourceFromJSON(jsonString) {
|
|
|
1642
1862
|
return safeParse(jsonString, (x) => ResponseBodyGitSource$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ResponseBodyGitSource' from JSON`);
|
|
1643
1863
|
}
|
|
1644
1864
|
/** @internal */
|
|
1865
|
+
export const GetDeploymentResponseBodyNodeVersion$inboundSchema = z.nativeEnum(GetDeploymentResponseBodyNodeVersion);
|
|
1866
|
+
/** @internal */
|
|
1867
|
+
export const GetDeploymentResponseBodyNodeVersion$outboundSchema = GetDeploymentResponseBodyNodeVersion$inboundSchema;
|
|
1868
|
+
/**
|
|
1869
|
+
* @internal
|
|
1870
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1871
|
+
*/
|
|
1872
|
+
export var GetDeploymentResponseBodyNodeVersion$;
|
|
1873
|
+
(function (GetDeploymentResponseBodyNodeVersion$) {
|
|
1874
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$inboundSchema` instead. */
|
|
1875
|
+
GetDeploymentResponseBodyNodeVersion$.inboundSchema = GetDeploymentResponseBodyNodeVersion$inboundSchema;
|
|
1876
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$outboundSchema` instead. */
|
|
1877
|
+
GetDeploymentResponseBodyNodeVersion$.outboundSchema = GetDeploymentResponseBodyNodeVersion$outboundSchema;
|
|
1878
|
+
})(GetDeploymentResponseBodyNodeVersion$ || (GetDeploymentResponseBodyNodeVersion$ = {}));
|
|
1879
|
+
/** @internal */
|
|
1645
1880
|
export const GetDeploymentResponseBodyProject$inboundSchema = z.object({
|
|
1646
1881
|
id: z.string(),
|
|
1647
1882
|
name: z.string(),
|
|
@@ -1814,21 +2049,25 @@ export const GetDeploymentResponseBody2$inboundSchema = z.object({
|
|
|
1814
2049
|
errorStep: z.string().optional(),
|
|
1815
2050
|
passiveRegions: z.array(z.string()).optional(),
|
|
1816
2051
|
gitSource: z.union([
|
|
1817
|
-
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
1818
2052
|
z.lazy(() => GetDeploymentGitSource12$inboundSchema),
|
|
2053
|
+
z.lazy(() => GetDeploymentGitSource15$inboundSchema),
|
|
1819
2054
|
z.lazy(() => GetDeploymentGitSource4$inboundSchema),
|
|
1820
|
-
z.lazy(() =>
|
|
1821
|
-
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
2055
|
+
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
1822
2056
|
z.lazy(() => GetDeploymentGitSource11$inboundSchema),
|
|
2057
|
+
z.lazy(() => GetDeploymentGitSource13$inboundSchema),
|
|
2058
|
+
z.lazy(() => GetDeploymentGitSource14$inboundSchema),
|
|
1823
2059
|
z.lazy(() => GetDeploymentGitSource2$inboundSchema),
|
|
1824
2060
|
z.lazy(() => GetDeploymentGitSource3$inboundSchema),
|
|
1825
|
-
z.lazy(() =>
|
|
2061
|
+
z.lazy(() => GetDeploymentGitSource6$inboundSchema),
|
|
2062
|
+
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
1826
2063
|
z.lazy(() => GetDeploymentGitSource1$inboundSchema),
|
|
1827
2064
|
z.lazy(() => GetDeploymentGitSource5$inboundSchema),
|
|
1828
|
-
z.lazy(() =>
|
|
2065
|
+
z.lazy(() => GetDeploymentGitSource7$inboundSchema),
|
|
2066
|
+
z.lazy(() => GetDeploymentGitSource8$inboundSchema),
|
|
1829
2067
|
]).optional(),
|
|
1830
2068
|
meta: z.record(z.string()),
|
|
1831
2069
|
originCacheRegion: z.string().optional(),
|
|
2070
|
+
nodeVersion: GetDeploymentResponseBodyNodeVersion$inboundSchema.optional(),
|
|
1832
2071
|
project: z.lazy(() => GetDeploymentResponseBodyProject$inboundSchema)
|
|
1833
2072
|
.optional(),
|
|
1834
2073
|
readySubstate: GetDeploymentResponseBodyReadySubstate$inboundSchema
|
|
@@ -1889,21 +2128,25 @@ export const GetDeploymentResponseBody2$outboundSchema = z.object({
|
|
|
1889
2128
|
errorStep: z.string().optional(),
|
|
1890
2129
|
passiveRegions: z.array(z.string()).optional(),
|
|
1891
2130
|
gitSource: z.union([
|
|
1892
|
-
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
1893
2131
|
z.lazy(() => GetDeploymentGitSource12$outboundSchema),
|
|
2132
|
+
z.lazy(() => GetDeploymentGitSource15$outboundSchema),
|
|
1894
2133
|
z.lazy(() => GetDeploymentGitSource4$outboundSchema),
|
|
1895
|
-
z.lazy(() =>
|
|
1896
|
-
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
2134
|
+
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
1897
2135
|
z.lazy(() => GetDeploymentGitSource11$outboundSchema),
|
|
2136
|
+
z.lazy(() => GetDeploymentGitSource13$outboundSchema),
|
|
2137
|
+
z.lazy(() => GetDeploymentGitSource14$outboundSchema),
|
|
1898
2138
|
z.lazy(() => GetDeploymentGitSource2$outboundSchema),
|
|
1899
2139
|
z.lazy(() => GetDeploymentGitSource3$outboundSchema),
|
|
1900
|
-
z.lazy(() =>
|
|
2140
|
+
z.lazy(() => GetDeploymentGitSource6$outboundSchema),
|
|
2141
|
+
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
1901
2142
|
z.lazy(() => GetDeploymentGitSource1$outboundSchema),
|
|
1902
2143
|
z.lazy(() => GetDeploymentGitSource5$outboundSchema),
|
|
1903
|
-
z.lazy(() =>
|
|
2144
|
+
z.lazy(() => GetDeploymentGitSource7$outboundSchema),
|
|
2145
|
+
z.lazy(() => GetDeploymentGitSource8$outboundSchema),
|
|
1904
2146
|
]).optional(),
|
|
1905
2147
|
meta: z.record(z.string()),
|
|
1906
2148
|
originCacheRegion: z.string().optional(),
|
|
2149
|
+
nodeVersion: GetDeploymentResponseBodyNodeVersion$outboundSchema.optional(),
|
|
1907
2150
|
project: z.lazy(() => GetDeploymentResponseBodyProject$outboundSchema)
|
|
1908
2151
|
.optional(),
|
|
1909
2152
|
readySubstate: GetDeploymentResponseBodyReadySubstate$outboundSchema
|
|
@@ -2799,57 +3042,205 @@ export const ResponseBodyAliasError$inboundSchema = z.object({
|
|
|
2799
3042
|
message: z.string(),
|
|
2800
3043
|
});
|
|
2801
3044
|
/** @internal */
|
|
2802
|
-
export const ResponseBodyAliasError$outboundSchema = z.object({
|
|
2803
|
-
code: z.string(),
|
|
2804
|
-
message: z.string(),
|
|
3045
|
+
export const ResponseBodyAliasError$outboundSchema = z.object({
|
|
3046
|
+
code: z.string(),
|
|
3047
|
+
message: z.string(),
|
|
3048
|
+
});
|
|
3049
|
+
/**
|
|
3050
|
+
* @internal
|
|
3051
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3052
|
+
*/
|
|
3053
|
+
export var ResponseBodyAliasError$;
|
|
3054
|
+
(function (ResponseBodyAliasError$) {
|
|
3055
|
+
/** @deprecated use `ResponseBodyAliasError$inboundSchema` instead. */
|
|
3056
|
+
ResponseBodyAliasError$.inboundSchema = ResponseBodyAliasError$inboundSchema;
|
|
3057
|
+
/** @deprecated use `ResponseBodyAliasError$outboundSchema` instead. */
|
|
3058
|
+
ResponseBodyAliasError$.outboundSchema = ResponseBodyAliasError$outboundSchema;
|
|
3059
|
+
})(ResponseBodyAliasError$ || (ResponseBodyAliasError$ = {}));
|
|
3060
|
+
export function responseBodyAliasErrorToJSON(responseBodyAliasError) {
|
|
3061
|
+
return JSON.stringify(ResponseBodyAliasError$outboundSchema.parse(responseBodyAliasError));
|
|
3062
|
+
}
|
|
3063
|
+
export function responseBodyAliasErrorFromJSON(jsonString) {
|
|
3064
|
+
return safeParse(jsonString, (x) => ResponseBodyAliasError$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ResponseBodyAliasError' from JSON`);
|
|
3065
|
+
}
|
|
3066
|
+
/** @internal */
|
|
3067
|
+
export const ResponseBodyChecksState$inboundSchema = z.nativeEnum(ResponseBodyChecksState);
|
|
3068
|
+
/** @internal */
|
|
3069
|
+
export const ResponseBodyChecksState$outboundSchema = ResponseBodyChecksState$inboundSchema;
|
|
3070
|
+
/**
|
|
3071
|
+
* @internal
|
|
3072
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3073
|
+
*/
|
|
3074
|
+
export var ResponseBodyChecksState$;
|
|
3075
|
+
(function (ResponseBodyChecksState$) {
|
|
3076
|
+
/** @deprecated use `ResponseBodyChecksState$inboundSchema` instead. */
|
|
3077
|
+
ResponseBodyChecksState$.inboundSchema = ResponseBodyChecksState$inboundSchema;
|
|
3078
|
+
/** @deprecated use `ResponseBodyChecksState$outboundSchema` instead. */
|
|
3079
|
+
ResponseBodyChecksState$.outboundSchema = ResponseBodyChecksState$outboundSchema;
|
|
3080
|
+
})(ResponseBodyChecksState$ || (ResponseBodyChecksState$ = {}));
|
|
3081
|
+
/** @internal */
|
|
3082
|
+
export const ResponseBodyChecksConclusion$inboundSchema = z.nativeEnum(ResponseBodyChecksConclusion);
|
|
3083
|
+
/** @internal */
|
|
3084
|
+
export const ResponseBodyChecksConclusion$outboundSchema = ResponseBodyChecksConclusion$inboundSchema;
|
|
3085
|
+
/**
|
|
3086
|
+
* @internal
|
|
3087
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3088
|
+
*/
|
|
3089
|
+
export var ResponseBodyChecksConclusion$;
|
|
3090
|
+
(function (ResponseBodyChecksConclusion$) {
|
|
3091
|
+
/** @deprecated use `ResponseBodyChecksConclusion$inboundSchema` instead. */
|
|
3092
|
+
ResponseBodyChecksConclusion$.inboundSchema = ResponseBodyChecksConclusion$inboundSchema;
|
|
3093
|
+
/** @deprecated use `ResponseBodyChecksConclusion$outboundSchema` instead. */
|
|
3094
|
+
ResponseBodyChecksConclusion$.outboundSchema = ResponseBodyChecksConclusion$outboundSchema;
|
|
3095
|
+
})(ResponseBodyChecksConclusion$ || (ResponseBodyChecksConclusion$ = {}));
|
|
3096
|
+
/** @internal */
|
|
3097
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type);
|
|
3098
|
+
/** @internal */
|
|
3099
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema;
|
|
3100
|
+
/**
|
|
3101
|
+
* @internal
|
|
3102
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3103
|
+
*/
|
|
3104
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$;
|
|
3105
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$) {
|
|
3106
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema` instead. */
|
|
3107
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema;
|
|
3108
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema` instead. */
|
|
3109
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema;
|
|
3110
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$ = {}));
|
|
3111
|
+
/** @internal */
|
|
3112
|
+
export const GetDeploymentGitSourceDeployments15$inboundSchema = z.object({
|
|
3113
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema,
|
|
3114
|
+
ref: z.string(),
|
|
3115
|
+
sha: z.string(),
|
|
3116
|
+
owner: z.string().optional(),
|
|
3117
|
+
slug: z.string().optional(),
|
|
3118
|
+
workspaceUuid: z.string(),
|
|
3119
|
+
repoUuid: z.string(),
|
|
3120
|
+
});
|
|
3121
|
+
/** @internal */
|
|
3122
|
+
export const GetDeploymentGitSourceDeployments15$outboundSchema = z.object({
|
|
3123
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema,
|
|
3124
|
+
ref: z.string(),
|
|
3125
|
+
sha: z.string(),
|
|
3126
|
+
owner: z.string().optional(),
|
|
3127
|
+
slug: z.string().optional(),
|
|
3128
|
+
workspaceUuid: z.string(),
|
|
3129
|
+
repoUuid: z.string(),
|
|
3130
|
+
});
|
|
3131
|
+
/**
|
|
3132
|
+
* @internal
|
|
3133
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3134
|
+
*/
|
|
3135
|
+
export var GetDeploymentGitSourceDeployments15$;
|
|
3136
|
+
(function (GetDeploymentGitSourceDeployments15$) {
|
|
3137
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$inboundSchema` instead. */
|
|
3138
|
+
GetDeploymentGitSourceDeployments15$.inboundSchema = GetDeploymentGitSourceDeployments15$inboundSchema;
|
|
3139
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$outboundSchema` instead. */
|
|
3140
|
+
GetDeploymentGitSourceDeployments15$.outboundSchema = GetDeploymentGitSourceDeployments15$outboundSchema;
|
|
3141
|
+
})(GetDeploymentGitSourceDeployments15$ || (GetDeploymentGitSourceDeployments15$ = {}));
|
|
3142
|
+
export function getDeploymentGitSourceDeployments15ToJSON(getDeploymentGitSourceDeployments15) {
|
|
3143
|
+
return JSON.stringify(GetDeploymentGitSourceDeployments15$outboundSchema.parse(getDeploymentGitSourceDeployments15));
|
|
3144
|
+
}
|
|
3145
|
+
export function getDeploymentGitSourceDeployments15FromJSON(jsonString) {
|
|
3146
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeployments15$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeployments15' from JSON`);
|
|
3147
|
+
}
|
|
3148
|
+
/** @internal */
|
|
3149
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type);
|
|
3150
|
+
/** @internal */
|
|
3151
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema;
|
|
3152
|
+
/**
|
|
3153
|
+
* @internal
|
|
3154
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3155
|
+
*/
|
|
3156
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$;
|
|
3157
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$) {
|
|
3158
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema` instead. */
|
|
3159
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema;
|
|
3160
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema` instead. */
|
|
3161
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema;
|
|
3162
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$ = {}));
|
|
3163
|
+
/** @internal */
|
|
3164
|
+
export const GetDeploymentGitSourceDeployments14$inboundSchema = z.object({
|
|
3165
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema,
|
|
3166
|
+
ref: z.string(),
|
|
3167
|
+
sha: z.string(),
|
|
3168
|
+
projectId: z.number(),
|
|
3169
|
+
});
|
|
3170
|
+
/** @internal */
|
|
3171
|
+
export const GetDeploymentGitSourceDeployments14$outboundSchema = z.object({
|
|
3172
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema,
|
|
3173
|
+
ref: z.string(),
|
|
3174
|
+
sha: z.string(),
|
|
3175
|
+
projectId: z.number(),
|
|
2805
3176
|
});
|
|
2806
3177
|
/**
|
|
2807
3178
|
* @internal
|
|
2808
3179
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2809
3180
|
*/
|
|
2810
|
-
export var
|
|
2811
|
-
(function (
|
|
2812
|
-
/** @deprecated use `
|
|
2813
|
-
|
|
2814
|
-
/** @deprecated use `
|
|
2815
|
-
|
|
2816
|
-
})(
|
|
2817
|
-
export function
|
|
2818
|
-
return JSON.stringify(
|
|
3181
|
+
export var GetDeploymentGitSourceDeployments14$;
|
|
3182
|
+
(function (GetDeploymentGitSourceDeployments14$) {
|
|
3183
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$inboundSchema` instead. */
|
|
3184
|
+
GetDeploymentGitSourceDeployments14$.inboundSchema = GetDeploymentGitSourceDeployments14$inboundSchema;
|
|
3185
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$outboundSchema` instead. */
|
|
3186
|
+
GetDeploymentGitSourceDeployments14$.outboundSchema = GetDeploymentGitSourceDeployments14$outboundSchema;
|
|
3187
|
+
})(GetDeploymentGitSourceDeployments14$ || (GetDeploymentGitSourceDeployments14$ = {}));
|
|
3188
|
+
export function getDeploymentGitSourceDeployments14ToJSON(getDeploymentGitSourceDeployments14) {
|
|
3189
|
+
return JSON.stringify(GetDeploymentGitSourceDeployments14$outboundSchema.parse(getDeploymentGitSourceDeployments14));
|
|
2819
3190
|
}
|
|
2820
|
-
export function
|
|
2821
|
-
return safeParse(jsonString, (x) =>
|
|
3191
|
+
export function getDeploymentGitSourceDeployments14FromJSON(jsonString) {
|
|
3192
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeployments14$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeployments14' from JSON`);
|
|
2822
3193
|
}
|
|
2823
3194
|
/** @internal */
|
|
2824
|
-
export const
|
|
3195
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type);
|
|
2825
3196
|
/** @internal */
|
|
2826
|
-
export const
|
|
3197
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema;
|
|
2827
3198
|
/**
|
|
2828
3199
|
* @internal
|
|
2829
3200
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2830
3201
|
*/
|
|
2831
|
-
export var
|
|
2832
|
-
(function (
|
|
2833
|
-
/** @deprecated use `
|
|
2834
|
-
|
|
2835
|
-
/** @deprecated use `
|
|
2836
|
-
|
|
2837
|
-
})(
|
|
3202
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$;
|
|
3203
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$) {
|
|
3204
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema` instead. */
|
|
3205
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema;
|
|
3206
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema` instead. */
|
|
3207
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema;
|
|
3208
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$ = {}));
|
|
2838
3209
|
/** @internal */
|
|
2839
|
-
export const
|
|
3210
|
+
export const GetDeploymentGitSourceDeployments13$inboundSchema = z.object({
|
|
3211
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema,
|
|
3212
|
+
ref: z.string(),
|
|
3213
|
+
sha: z.string(),
|
|
3214
|
+
repoId: z.number(),
|
|
3215
|
+
org: z.string().optional(),
|
|
3216
|
+
repo: z.string().optional(),
|
|
3217
|
+
});
|
|
2840
3218
|
/** @internal */
|
|
2841
|
-
export const
|
|
3219
|
+
export const GetDeploymentGitSourceDeployments13$outboundSchema = z.object({
|
|
3220
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema,
|
|
3221
|
+
ref: z.string(),
|
|
3222
|
+
sha: z.string(),
|
|
3223
|
+
repoId: z.number(),
|
|
3224
|
+
org: z.string().optional(),
|
|
3225
|
+
repo: z.string().optional(),
|
|
3226
|
+
});
|
|
2842
3227
|
/**
|
|
2843
3228
|
* @internal
|
|
2844
3229
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2845
3230
|
*/
|
|
2846
|
-
export var
|
|
2847
|
-
(function (
|
|
2848
|
-
/** @deprecated use `
|
|
2849
|
-
|
|
2850
|
-
/** @deprecated use `
|
|
2851
|
-
|
|
2852
|
-
})(
|
|
3231
|
+
export var GetDeploymentGitSourceDeployments13$;
|
|
3232
|
+
(function (GetDeploymentGitSourceDeployments13$) {
|
|
3233
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$inboundSchema` instead. */
|
|
3234
|
+
GetDeploymentGitSourceDeployments13$.inboundSchema = GetDeploymentGitSourceDeployments13$inboundSchema;
|
|
3235
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$outboundSchema` instead. */
|
|
3236
|
+
GetDeploymentGitSourceDeployments13$.outboundSchema = GetDeploymentGitSourceDeployments13$outboundSchema;
|
|
3237
|
+
})(GetDeploymentGitSourceDeployments13$ || (GetDeploymentGitSourceDeployments13$ = {}));
|
|
3238
|
+
export function getDeploymentGitSourceDeployments13ToJSON(getDeploymentGitSourceDeployments13) {
|
|
3239
|
+
return JSON.stringify(GetDeploymentGitSourceDeployments13$outboundSchema.parse(getDeploymentGitSourceDeployments13));
|
|
3240
|
+
}
|
|
3241
|
+
export function getDeploymentGitSourceDeployments13FromJSON(jsonString) {
|
|
3242
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeployments13$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeployments13' from JSON`);
|
|
3243
|
+
}
|
|
2853
3244
|
/** @internal */
|
|
2854
3245
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema = z.nativeEnum(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type);
|
|
2855
3246
|
/** @internal */
|
|
@@ -2868,22 +3259,22 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
2868
3259
|
/** @internal */
|
|
2869
3260
|
export const GetDeploymentGitSourceDeployments12$inboundSchema = z.object({
|
|
2870
3261
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema,
|
|
3262
|
+
host: z.string(),
|
|
2871
3263
|
ref: z.string(),
|
|
2872
3264
|
sha: z.string(),
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
repoUuid: z.string(),
|
|
3265
|
+
repoId: z.number(),
|
|
3266
|
+
org: z.string().optional(),
|
|
3267
|
+
repo: z.string().optional(),
|
|
2877
3268
|
});
|
|
2878
3269
|
/** @internal */
|
|
2879
3270
|
export const GetDeploymentGitSourceDeployments12$outboundSchema = z.object({
|
|
2880
3271
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema,
|
|
3272
|
+
host: z.string(),
|
|
2881
3273
|
ref: z.string(),
|
|
2882
3274
|
sha: z.string(),
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
repoUuid: z.string(),
|
|
3275
|
+
repoId: z.number(),
|
|
3276
|
+
org: z.string().optional(),
|
|
3277
|
+
repo: z.string().optional(),
|
|
2887
3278
|
});
|
|
2888
3279
|
/**
|
|
2889
3280
|
* @internal
|
|
@@ -2922,14 +3313,18 @@ export const GetDeploymentGitSourceDeployments11$inboundSchema = z.object({
|
|
|
2922
3313
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$inboundSchema,
|
|
2923
3314
|
ref: z.string(),
|
|
2924
3315
|
sha: z.string(),
|
|
2925
|
-
|
|
3316
|
+
repoId: z.number(),
|
|
3317
|
+
org: z.string().optional(),
|
|
3318
|
+
repo: z.string().optional(),
|
|
2926
3319
|
});
|
|
2927
3320
|
/** @internal */
|
|
2928
3321
|
export const GetDeploymentGitSourceDeployments11$outboundSchema = z.object({
|
|
2929
3322
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$outboundSchema,
|
|
2930
3323
|
ref: z.string(),
|
|
2931
3324
|
sha: z.string(),
|
|
2932
|
-
|
|
3325
|
+
repoId: z.number(),
|
|
3326
|
+
org: z.string().optional(),
|
|
3327
|
+
repo: z.string().optional(),
|
|
2933
3328
|
});
|
|
2934
3329
|
/**
|
|
2935
3330
|
* @internal
|
|
@@ -2966,22 +3361,16 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
2966
3361
|
/** @internal */
|
|
2967
3362
|
export const GetDeploymentGitSourceDeployments10$inboundSchema = z.object({
|
|
2968
3363
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$inboundSchema,
|
|
2969
|
-
host: z.string(),
|
|
2970
3364
|
ref: z.string(),
|
|
2971
3365
|
sha: z.string(),
|
|
2972
|
-
|
|
2973
|
-
org: z.string().optional(),
|
|
2974
|
-
repo: z.string().optional(),
|
|
3366
|
+
gitUrl: z.string(),
|
|
2975
3367
|
});
|
|
2976
3368
|
/** @internal */
|
|
2977
3369
|
export const GetDeploymentGitSourceDeployments10$outboundSchema = z.object({
|
|
2978
3370
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$outboundSchema,
|
|
2979
|
-
host: z.string(),
|
|
2980
3371
|
ref: z.string(),
|
|
2981
3372
|
sha: z.string(),
|
|
2982
|
-
|
|
2983
|
-
org: z.string().optional(),
|
|
2984
|
-
repo: z.string().optional(),
|
|
3373
|
+
gitUrl: z.string(),
|
|
2985
3374
|
});
|
|
2986
3375
|
/**
|
|
2987
3376
|
* @internal
|
|
@@ -3018,20 +3407,20 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
3018
3407
|
/** @internal */
|
|
3019
3408
|
export const GetDeploymentGitSourceDeployments9$inboundSchema = z.object({
|
|
3020
3409
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$inboundSchema,
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3410
|
+
owner: z.string(),
|
|
3411
|
+
slug: z.string(),
|
|
3412
|
+
ref: z.nullable(z.string()).optional(),
|
|
3413
|
+
sha: z.string().optional(),
|
|
3414
|
+
prId: z.nullable(z.number()).optional(),
|
|
3026
3415
|
});
|
|
3027
3416
|
/** @internal */
|
|
3028
3417
|
export const GetDeploymentGitSourceDeployments9$outboundSchema = z.object({
|
|
3029
3418
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$outboundSchema,
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3419
|
+
owner: z.string(),
|
|
3420
|
+
slug: z.string(),
|
|
3421
|
+
ref: z.nullable(z.string()).optional(),
|
|
3422
|
+
sha: z.string().optional(),
|
|
3423
|
+
prId: z.nullable(z.number()).optional(),
|
|
3035
3424
|
});
|
|
3036
3425
|
/**
|
|
3037
3426
|
* @internal
|
|
@@ -3068,16 +3457,20 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
3068
3457
|
/** @internal */
|
|
3069
3458
|
export const GetDeploymentGitSourceDeployments8$inboundSchema = z.object({
|
|
3070
3459
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$inboundSchema,
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3460
|
+
workspaceUuid: z.string().optional(),
|
|
3461
|
+
repoUuid: z.string(),
|
|
3462
|
+
ref: z.nullable(z.string()).optional(),
|
|
3463
|
+
sha: z.string().optional(),
|
|
3464
|
+
prId: z.nullable(z.number()).optional(),
|
|
3074
3465
|
});
|
|
3075
3466
|
/** @internal */
|
|
3076
3467
|
export const GetDeploymentGitSourceDeployments8$outboundSchema = z.object({
|
|
3077
3468
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$outboundSchema,
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3469
|
+
workspaceUuid: z.string().optional(),
|
|
3470
|
+
repoUuid: z.string(),
|
|
3471
|
+
ref: z.nullable(z.string()).optional(),
|
|
3472
|
+
sha: z.string().optional(),
|
|
3473
|
+
prId: z.nullable(z.number()).optional(),
|
|
3081
3474
|
});
|
|
3082
3475
|
/**
|
|
3083
3476
|
* @internal
|
|
@@ -3112,10 +3505,30 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
3112
3505
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema;
|
|
3113
3506
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$ = {}));
|
|
3114
3507
|
/** @internal */
|
|
3508
|
+
export const GetDeploymentGitSourceProjectId$inboundSchema = z.union([z.string(), z.number()]);
|
|
3509
|
+
/** @internal */
|
|
3510
|
+
export const GetDeploymentGitSourceProjectId$outboundSchema = z.union([z.string(), z.number()]);
|
|
3511
|
+
/**
|
|
3512
|
+
* @internal
|
|
3513
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3514
|
+
*/
|
|
3515
|
+
export var GetDeploymentGitSourceProjectId$;
|
|
3516
|
+
(function (GetDeploymentGitSourceProjectId$) {
|
|
3517
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$inboundSchema` instead. */
|
|
3518
|
+
GetDeploymentGitSourceProjectId$.inboundSchema = GetDeploymentGitSourceProjectId$inboundSchema;
|
|
3519
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$outboundSchema` instead. */
|
|
3520
|
+
GetDeploymentGitSourceProjectId$.outboundSchema = GetDeploymentGitSourceProjectId$outboundSchema;
|
|
3521
|
+
})(GetDeploymentGitSourceProjectId$ || (GetDeploymentGitSourceProjectId$ = {}));
|
|
3522
|
+
export function getDeploymentGitSourceProjectIdToJSON(getDeploymentGitSourceProjectId) {
|
|
3523
|
+
return JSON.stringify(GetDeploymentGitSourceProjectId$outboundSchema.parse(getDeploymentGitSourceProjectId));
|
|
3524
|
+
}
|
|
3525
|
+
export function getDeploymentGitSourceProjectIdFromJSON(jsonString) {
|
|
3526
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceProjectId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceProjectId' from JSON`);
|
|
3527
|
+
}
|
|
3528
|
+
/** @internal */
|
|
3115
3529
|
export const GetDeploymentGitSourceDeployments7$inboundSchema = z.object({
|
|
3116
3530
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
3117
|
-
|
|
3118
|
-
slug: z.string(),
|
|
3531
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3119
3532
|
ref: z.nullable(z.string()).optional(),
|
|
3120
3533
|
sha: z.string().optional(),
|
|
3121
3534
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3123,8 +3536,7 @@ export const GetDeploymentGitSourceDeployments7$inboundSchema = z.object({
|
|
|
3123
3536
|
/** @internal */
|
|
3124
3537
|
export const GetDeploymentGitSourceDeployments7$outboundSchema = z.object({
|
|
3125
3538
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
3126
|
-
|
|
3127
|
-
slug: z.string(),
|
|
3539
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3128
3540
|
ref: z.nullable(z.string()).optional(),
|
|
3129
3541
|
sha: z.string().optional(),
|
|
3130
3542
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3164,8 +3576,8 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$;
|
|
|
3164
3576
|
/** @internal */
|
|
3165
3577
|
export const GetDeploymentGitSourceDeployments6$inboundSchema = z.object({
|
|
3166
3578
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema,
|
|
3167
|
-
|
|
3168
|
-
|
|
3579
|
+
org: z.string(),
|
|
3580
|
+
repo: z.string(),
|
|
3169
3581
|
ref: z.nullable(z.string()).optional(),
|
|
3170
3582
|
sha: z.string().optional(),
|
|
3171
3583
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3173,8 +3585,8 @@ export const GetDeploymentGitSourceDeployments6$inboundSchema = z.object({
|
|
|
3173
3585
|
/** @internal */
|
|
3174
3586
|
export const GetDeploymentGitSourceDeployments6$outboundSchema = z.object({
|
|
3175
3587
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema,
|
|
3176
|
-
|
|
3177
|
-
|
|
3588
|
+
org: z.string(),
|
|
3589
|
+
repo: z.string(),
|
|
3178
3590
|
ref: z.nullable(z.string()).optional(),
|
|
3179
3591
|
sha: z.string().optional(),
|
|
3180
3592
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3213,30 +3625,30 @@ export var GetDeploymentGitSourceDeploymentsResponse200Type$;
|
|
|
3213
3625
|
GetDeploymentGitSourceDeploymentsResponse200Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema;
|
|
3214
3626
|
})(GetDeploymentGitSourceDeploymentsResponse200Type$ || (GetDeploymentGitSourceDeploymentsResponse200Type$ = {}));
|
|
3215
3627
|
/** @internal */
|
|
3216
|
-
export const
|
|
3628
|
+
export const GetDeploymentGitSourceRepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
3217
3629
|
/** @internal */
|
|
3218
|
-
export const
|
|
3630
|
+
export const GetDeploymentGitSourceRepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
3219
3631
|
/**
|
|
3220
3632
|
* @internal
|
|
3221
3633
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3222
3634
|
*/
|
|
3223
|
-
export var
|
|
3224
|
-
(function (
|
|
3225
|
-
/** @deprecated use `
|
|
3226
|
-
|
|
3227
|
-
/** @deprecated use `
|
|
3228
|
-
|
|
3229
|
-
})(
|
|
3230
|
-
export function
|
|
3231
|
-
return JSON.stringify(
|
|
3635
|
+
export var GetDeploymentGitSourceRepoId$;
|
|
3636
|
+
(function (GetDeploymentGitSourceRepoId$) {
|
|
3637
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$inboundSchema` instead. */
|
|
3638
|
+
GetDeploymentGitSourceRepoId$.inboundSchema = GetDeploymentGitSourceRepoId$inboundSchema;
|
|
3639
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$outboundSchema` instead. */
|
|
3640
|
+
GetDeploymentGitSourceRepoId$.outboundSchema = GetDeploymentGitSourceRepoId$outboundSchema;
|
|
3641
|
+
})(GetDeploymentGitSourceRepoId$ || (GetDeploymentGitSourceRepoId$ = {}));
|
|
3642
|
+
export function getDeploymentGitSourceRepoIdToJSON(getDeploymentGitSourceRepoId) {
|
|
3643
|
+
return JSON.stringify(GetDeploymentGitSourceRepoId$outboundSchema.parse(getDeploymentGitSourceRepoId));
|
|
3232
3644
|
}
|
|
3233
|
-
export function
|
|
3234
|
-
return safeParse(jsonString, (x) =>
|
|
3645
|
+
export function getDeploymentGitSourceRepoIdFromJSON(jsonString) {
|
|
3646
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceRepoId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceRepoId' from JSON`);
|
|
3235
3647
|
}
|
|
3236
3648
|
/** @internal */
|
|
3237
3649
|
export const GetDeploymentGitSourceDeployments5$inboundSchema = z.object({
|
|
3238
3650
|
type: GetDeploymentGitSourceDeploymentsResponse200Type$inboundSchema,
|
|
3239
|
-
|
|
3651
|
+
repoId: z.union([z.string(), z.number()]),
|
|
3240
3652
|
ref: z.nullable(z.string()).optional(),
|
|
3241
3653
|
sha: z.string().optional(),
|
|
3242
3654
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3244,7 +3656,7 @@ export const GetDeploymentGitSourceDeployments5$inboundSchema = z.object({
|
|
|
3244
3656
|
/** @internal */
|
|
3245
3657
|
export const GetDeploymentGitSourceDeployments5$outboundSchema = z.object({
|
|
3246
3658
|
type: GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema,
|
|
3247
|
-
|
|
3659
|
+
repoId: z.union([z.string(), z.number()]),
|
|
3248
3660
|
ref: z.nullable(z.string()).optional(),
|
|
3249
3661
|
sha: z.string().optional(),
|
|
3250
3662
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3335,25 +3747,27 @@ export var GetDeploymentGitSourceDeploymentsType$;
|
|
|
3335
3747
|
GetDeploymentGitSourceDeploymentsType$.outboundSchema = GetDeploymentGitSourceDeploymentsType$outboundSchema;
|
|
3336
3748
|
})(GetDeploymentGitSourceDeploymentsType$ || (GetDeploymentGitSourceDeploymentsType$ = {}));
|
|
3337
3749
|
/** @internal */
|
|
3338
|
-
export const
|
|
3750
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
3339
3751
|
/** @internal */
|
|
3340
|
-
export const
|
|
3752
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
3341
3753
|
/**
|
|
3342
3754
|
* @internal
|
|
3343
3755
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3344
3756
|
*/
|
|
3345
|
-
export var
|
|
3346
|
-
(function (
|
|
3347
|
-
/** @deprecated use `
|
|
3348
|
-
|
|
3349
|
-
/** @deprecated use `
|
|
3350
|
-
|
|
3351
|
-
})(
|
|
3352
|
-
export function
|
|
3353
|
-
return JSON.stringify(
|
|
3757
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$;
|
|
3758
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$) {
|
|
3759
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema` instead. */
|
|
3760
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema;
|
|
3761
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema` instead. */
|
|
3762
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema;
|
|
3763
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$ = {}));
|
|
3764
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId) {
|
|
3765
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema
|
|
3766
|
+
.parse(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId));
|
|
3354
3767
|
}
|
|
3355
|
-
export function
|
|
3356
|
-
return safeParse(jsonString, (x) =>
|
|
3768
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdFromJSON(jsonString) {
|
|
3769
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema
|
|
3770
|
+
.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId' from JSON`);
|
|
3357
3771
|
}
|
|
3358
3772
|
/** @internal */
|
|
3359
3773
|
export const GetDeploymentGitSourceDeployments3$inboundSchema = z.object({
|
|
@@ -3456,25 +3870,27 @@ export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBo
|
|
|
3456
3870
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema;
|
|
3457
3871
|
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$ = {}));
|
|
3458
3872
|
/** @internal */
|
|
3459
|
-
export const
|
|
3873
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema = z.union([z.string(), z.number()]);
|
|
3460
3874
|
/** @internal */
|
|
3461
|
-
export const
|
|
3875
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema = z.union([z.string(), z.number()]);
|
|
3462
3876
|
/**
|
|
3463
3877
|
* @internal
|
|
3464
3878
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3465
3879
|
*/
|
|
3466
|
-
export var
|
|
3467
|
-
(function (
|
|
3468
|
-
/** @deprecated use `
|
|
3469
|
-
|
|
3470
|
-
/** @deprecated use `
|
|
3471
|
-
|
|
3472
|
-
})(
|
|
3473
|
-
export function
|
|
3474
|
-
return JSON.stringify(
|
|
3880
|
+
export var GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$;
|
|
3881
|
+
(function (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$) {
|
|
3882
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema` instead. */
|
|
3883
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$.inboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema;
|
|
3884
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema` instead. */
|
|
3885
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$.outboundSchema = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema;
|
|
3886
|
+
})(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$ || (GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$ = {}));
|
|
3887
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId) {
|
|
3888
|
+
return JSON.stringify(GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema
|
|
3889
|
+
.parse(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId));
|
|
3475
3890
|
}
|
|
3476
|
-
export function
|
|
3477
|
-
return safeParse(jsonString, (x) =>
|
|
3891
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdFromJSON(jsonString) {
|
|
3892
|
+
return safeParse(jsonString, (x) => GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema
|
|
3893
|
+
.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId' from JSON`);
|
|
3478
3894
|
}
|
|
3479
3895
|
/** @internal */
|
|
3480
3896
|
export const GetDeploymentGitSourceDeployments1$inboundSchema = z.object({
|
|
@@ -3511,33 +3927,39 @@ export function getDeploymentGitSourceDeployments1FromJSON(jsonString) {
|
|
|
3511
3927
|
}
|
|
3512
3928
|
/** @internal */
|
|
3513
3929
|
export const GetDeploymentResponseBodyGitSource$inboundSchema = z.union([
|
|
3514
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
3515
3930
|
z.lazy(() => GetDeploymentGitSourceDeployments12$inboundSchema),
|
|
3931
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$inboundSchema),
|
|
3516
3932
|
z.lazy(() => GetDeploymentGitSourceDeployments4$inboundSchema),
|
|
3517
|
-
z.lazy(() =>
|
|
3518
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
3933
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
3519
3934
|
z.lazy(() => GetDeploymentGitSourceDeployments11$inboundSchema),
|
|
3935
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$inboundSchema),
|
|
3936
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$inboundSchema),
|
|
3520
3937
|
z.lazy(() => GetDeploymentGitSourceDeployments2$inboundSchema),
|
|
3521
3938
|
z.lazy(() => GetDeploymentGitSourceDeployments3$inboundSchema),
|
|
3522
|
-
z.lazy(() =>
|
|
3939
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$inboundSchema),
|
|
3940
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
3523
3941
|
z.lazy(() => GetDeploymentGitSourceDeployments1$inboundSchema),
|
|
3524
3942
|
z.lazy(() => GetDeploymentGitSourceDeployments5$inboundSchema),
|
|
3525
|
-
z.lazy(() =>
|
|
3943
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$inboundSchema),
|
|
3944
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$inboundSchema),
|
|
3526
3945
|
]);
|
|
3527
3946
|
/** @internal */
|
|
3528
3947
|
export const GetDeploymentResponseBodyGitSource$outboundSchema = z.union([
|
|
3529
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
3530
3948
|
z.lazy(() => GetDeploymentGitSourceDeployments12$outboundSchema),
|
|
3949
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$outboundSchema),
|
|
3531
3950
|
z.lazy(() => GetDeploymentGitSourceDeployments4$outboundSchema),
|
|
3532
|
-
z.lazy(() =>
|
|
3533
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
3951
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
3534
3952
|
z.lazy(() => GetDeploymentGitSourceDeployments11$outboundSchema),
|
|
3953
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$outboundSchema),
|
|
3954
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$outboundSchema),
|
|
3535
3955
|
z.lazy(() => GetDeploymentGitSourceDeployments2$outboundSchema),
|
|
3536
3956
|
z.lazy(() => GetDeploymentGitSourceDeployments3$outboundSchema),
|
|
3537
|
-
z.lazy(() =>
|
|
3957
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$outboundSchema),
|
|
3958
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
3538
3959
|
z.lazy(() => GetDeploymentGitSourceDeployments1$outboundSchema),
|
|
3539
3960
|
z.lazy(() => GetDeploymentGitSourceDeployments5$outboundSchema),
|
|
3540
|
-
z.lazy(() =>
|
|
3961
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$outboundSchema),
|
|
3962
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$outboundSchema),
|
|
3541
3963
|
]);
|
|
3542
3964
|
/**
|
|
3543
3965
|
* @internal
|
|
@@ -3557,6 +3979,21 @@ export function getDeploymentResponseBodyGitSourceFromJSON(jsonString) {
|
|
|
3557
3979
|
return safeParse(jsonString, (x) => GetDeploymentResponseBodyGitSource$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetDeploymentResponseBodyGitSource' from JSON`);
|
|
3558
3980
|
}
|
|
3559
3981
|
/** @internal */
|
|
3982
|
+
export const ResponseBodyNodeVersion$inboundSchema = z.nativeEnum(ResponseBodyNodeVersion);
|
|
3983
|
+
/** @internal */
|
|
3984
|
+
export const ResponseBodyNodeVersion$outboundSchema = ResponseBodyNodeVersion$inboundSchema;
|
|
3985
|
+
/**
|
|
3986
|
+
* @internal
|
|
3987
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3988
|
+
*/
|
|
3989
|
+
export var ResponseBodyNodeVersion$;
|
|
3990
|
+
(function (ResponseBodyNodeVersion$) {
|
|
3991
|
+
/** @deprecated use `ResponseBodyNodeVersion$inboundSchema` instead. */
|
|
3992
|
+
ResponseBodyNodeVersion$.inboundSchema = ResponseBodyNodeVersion$inboundSchema;
|
|
3993
|
+
/** @deprecated use `ResponseBodyNodeVersion$outboundSchema` instead. */
|
|
3994
|
+
ResponseBodyNodeVersion$.outboundSchema = ResponseBodyNodeVersion$outboundSchema;
|
|
3995
|
+
})(ResponseBodyNodeVersion$ || (ResponseBodyNodeVersion$ = {}));
|
|
3996
|
+
/** @internal */
|
|
3560
3997
|
export const ResponseBodyProject$inboundSchema = z.object({
|
|
3561
3998
|
id: z.string(),
|
|
3562
3999
|
name: z.string(),
|
|
@@ -5292,8 +5729,7 @@ export const GetDeploymentMicrofrontends2$inboundSchema = z.object({
|
|
|
5292
5729
|
defaultAppProjectName: z.string(),
|
|
5293
5730
|
defaultRoute: z.string().optional(),
|
|
5294
5731
|
groupIds: z.array(z.string()),
|
|
5295
|
-
|
|
5296
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
5732
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
5297
5733
|
});
|
|
5298
5734
|
/** @internal */
|
|
5299
5735
|
export const GetDeploymentMicrofrontends2$outboundSchema = z.object({
|
|
@@ -5302,8 +5738,7 @@ export const GetDeploymentMicrofrontends2$outboundSchema = z.object({
|
|
|
5302
5738
|
defaultAppProjectName: z.string(),
|
|
5303
5739
|
defaultRoute: z.string().optional(),
|
|
5304
5740
|
groupIds: z.array(z.string()),
|
|
5305
|
-
|
|
5306
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
5741
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
5307
5742
|
});
|
|
5308
5743
|
/**
|
|
5309
5744
|
* @internal
|
|
@@ -5328,8 +5763,7 @@ export const GetDeploymentMicrofrontends1$inboundSchema = z.object({
|
|
|
5328
5763
|
defaultAppProjectName: z.string(),
|
|
5329
5764
|
defaultRoute: z.string().optional(),
|
|
5330
5765
|
groupIds: z.array(z.string()),
|
|
5331
|
-
|
|
5332
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
5766
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
5333
5767
|
});
|
|
5334
5768
|
/** @internal */
|
|
5335
5769
|
export const GetDeploymentMicrofrontends1$outboundSchema = z.object({
|
|
@@ -5337,8 +5771,7 @@ export const GetDeploymentMicrofrontends1$outboundSchema = z.object({
|
|
|
5337
5771
|
defaultAppProjectName: z.string(),
|
|
5338
5772
|
defaultRoute: z.string().optional(),
|
|
5339
5773
|
groupIds: z.array(z.string()),
|
|
5340
|
-
|
|
5341
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
5774
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
5342
5775
|
});
|
|
5343
5776
|
/**
|
|
5344
5777
|
* @internal
|
|
@@ -5589,21 +6022,25 @@ export const GetDeploymentResponseBody1$inboundSchema = z.object({
|
|
|
5589
6022
|
errorStep: z.string().optional(),
|
|
5590
6023
|
passiveRegions: z.array(z.string()).optional(),
|
|
5591
6024
|
gitSource: z.union([
|
|
5592
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
5593
6025
|
z.lazy(() => GetDeploymentGitSourceDeployments12$inboundSchema),
|
|
6026
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$inboundSchema),
|
|
5594
6027
|
z.lazy(() => GetDeploymentGitSourceDeployments4$inboundSchema),
|
|
5595
|
-
z.lazy(() =>
|
|
5596
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
6028
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
5597
6029
|
z.lazy(() => GetDeploymentGitSourceDeployments11$inboundSchema),
|
|
6030
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$inboundSchema),
|
|
6031
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$inboundSchema),
|
|
5598
6032
|
z.lazy(() => GetDeploymentGitSourceDeployments2$inboundSchema),
|
|
5599
6033
|
z.lazy(() => GetDeploymentGitSourceDeployments3$inboundSchema),
|
|
5600
|
-
z.lazy(() =>
|
|
6034
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$inboundSchema),
|
|
6035
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
5601
6036
|
z.lazy(() => GetDeploymentGitSourceDeployments1$inboundSchema),
|
|
5602
6037
|
z.lazy(() => GetDeploymentGitSourceDeployments5$inboundSchema),
|
|
5603
|
-
z.lazy(() =>
|
|
6038
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$inboundSchema),
|
|
6039
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$inboundSchema),
|
|
5604
6040
|
]).optional(),
|
|
5605
6041
|
meta: z.record(z.string()),
|
|
5606
6042
|
originCacheRegion: z.string().optional(),
|
|
6043
|
+
nodeVersion: ResponseBodyNodeVersion$inboundSchema.optional(),
|
|
5607
6044
|
project: z.lazy(() => ResponseBodyProject$inboundSchema).optional(),
|
|
5608
6045
|
readySubstate: ResponseBodyReadySubstate$inboundSchema.optional(),
|
|
5609
6046
|
regions: z.array(z.string()),
|
|
@@ -5707,21 +6144,25 @@ export const GetDeploymentResponseBody1$outboundSchema = z.object({
|
|
|
5707
6144
|
errorStep: z.string().optional(),
|
|
5708
6145
|
passiveRegions: z.array(z.string()).optional(),
|
|
5709
6146
|
gitSource: z.union([
|
|
5710
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
5711
6147
|
z.lazy(() => GetDeploymentGitSourceDeployments12$outboundSchema),
|
|
6148
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$outboundSchema),
|
|
5712
6149
|
z.lazy(() => GetDeploymentGitSourceDeployments4$outboundSchema),
|
|
5713
|
-
z.lazy(() =>
|
|
5714
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
6150
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
5715
6151
|
z.lazy(() => GetDeploymentGitSourceDeployments11$outboundSchema),
|
|
6152
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$outboundSchema),
|
|
6153
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$outboundSchema),
|
|
5716
6154
|
z.lazy(() => GetDeploymentGitSourceDeployments2$outboundSchema),
|
|
5717
6155
|
z.lazy(() => GetDeploymentGitSourceDeployments3$outboundSchema),
|
|
5718
|
-
z.lazy(() =>
|
|
6156
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$outboundSchema),
|
|
6157
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
5719
6158
|
z.lazy(() => GetDeploymentGitSourceDeployments1$outboundSchema),
|
|
5720
6159
|
z.lazy(() => GetDeploymentGitSourceDeployments5$outboundSchema),
|
|
5721
|
-
z.lazy(() =>
|
|
6160
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$outboundSchema),
|
|
6161
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$outboundSchema),
|
|
5722
6162
|
]).optional(),
|
|
5723
6163
|
meta: z.record(z.string()),
|
|
5724
6164
|
originCacheRegion: z.string().optional(),
|
|
6165
|
+
nodeVersion: ResponseBodyNodeVersion$outboundSchema.optional(),
|
|
5725
6166
|
project: z.lazy(() => ResponseBodyProject$outboundSchema).optional(),
|
|
5726
6167
|
readySubstate: ResponseBodyReadySubstate$outboundSchema.optional(),
|
|
5727
6168
|
regions: z.array(z.string()),
|