@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
|
@@ -268,18 +268,18 @@ export type GetDeploymentResponseBodyChecksConclusion = ClosedEnum<
|
|
|
268
268
|
typeof GetDeploymentResponseBodyChecksConclusion
|
|
269
269
|
>;
|
|
270
270
|
|
|
271
|
-
export const
|
|
271
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type =
|
|
272
272
|
{
|
|
273
273
|
Bitbucket: "bitbucket",
|
|
274
274
|
} as const;
|
|
275
|
-
export type
|
|
275
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type =
|
|
276
276
|
ClosedEnum<
|
|
277
|
-
typeof
|
|
277
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type
|
|
278
278
|
>;
|
|
279
279
|
|
|
280
|
-
export type
|
|
280
|
+
export type GetDeploymentGitSource15 = {
|
|
281
281
|
type:
|
|
282
|
-
|
|
282
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type;
|
|
283
283
|
ref: string;
|
|
284
284
|
sha: string;
|
|
285
285
|
owner?: string | undefined;
|
|
@@ -288,35 +288,54 @@ export type GetDeploymentGitSource12 = {
|
|
|
288
288
|
repoUuid: string;
|
|
289
289
|
};
|
|
290
290
|
|
|
291
|
-
export const
|
|
291
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type =
|
|
292
292
|
{
|
|
293
293
|
Gitlab: "gitlab",
|
|
294
294
|
} as const;
|
|
295
|
-
export type
|
|
295
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type =
|
|
296
296
|
ClosedEnum<
|
|
297
|
-
typeof
|
|
297
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type
|
|
298
298
|
>;
|
|
299
299
|
|
|
300
|
-
export type
|
|
300
|
+
export type GetDeploymentGitSource14 = {
|
|
301
301
|
type:
|
|
302
|
-
|
|
302
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type;
|
|
303
303
|
ref: string;
|
|
304
304
|
sha: string;
|
|
305
305
|
projectId: number;
|
|
306
306
|
};
|
|
307
307
|
|
|
308
|
-
export const
|
|
308
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type =
|
|
309
|
+
{
|
|
310
|
+
GithubLimited: "github-limited",
|
|
311
|
+
} as const;
|
|
312
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type =
|
|
313
|
+
ClosedEnum<
|
|
314
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type
|
|
315
|
+
>;
|
|
316
|
+
|
|
317
|
+
export type GetDeploymentGitSource13 = {
|
|
318
|
+
type:
|
|
319
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type;
|
|
320
|
+
ref: string;
|
|
321
|
+
sha: string;
|
|
322
|
+
repoId: number;
|
|
323
|
+
org?: string | undefined;
|
|
324
|
+
repo?: string | undefined;
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type =
|
|
309
328
|
{
|
|
310
329
|
GithubCustomHost: "github-custom-host",
|
|
311
330
|
} as const;
|
|
312
|
-
export type
|
|
331
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type =
|
|
313
332
|
ClosedEnum<
|
|
314
|
-
typeof
|
|
333
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type
|
|
315
334
|
>;
|
|
316
335
|
|
|
317
|
-
export type
|
|
336
|
+
export type GetDeploymentGitSource12 = {
|
|
318
337
|
type:
|
|
319
|
-
|
|
338
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type;
|
|
320
339
|
host: string;
|
|
321
340
|
ref: string;
|
|
322
341
|
sha: string;
|
|
@@ -325,18 +344,18 @@ export type GetDeploymentGitSource10 = {
|
|
|
325
344
|
repo?: string | undefined;
|
|
326
345
|
};
|
|
327
346
|
|
|
328
|
-
export const
|
|
347
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type =
|
|
329
348
|
{
|
|
330
349
|
Github: "github",
|
|
331
350
|
} as const;
|
|
332
|
-
export type
|
|
351
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type =
|
|
333
352
|
ClosedEnum<
|
|
334
|
-
typeof
|
|
353
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type
|
|
335
354
|
>;
|
|
336
355
|
|
|
337
|
-
export type
|
|
356
|
+
export type GetDeploymentGitSource11 = {
|
|
338
357
|
type:
|
|
339
|
-
|
|
358
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type;
|
|
340
359
|
ref: string;
|
|
341
360
|
sha: string;
|
|
342
361
|
repoId: number;
|
|
@@ -344,40 +363,79 @@ export type GetDeploymentGitSource9 = {
|
|
|
344
363
|
repo?: string | undefined;
|
|
345
364
|
};
|
|
346
365
|
|
|
347
|
-
export const
|
|
366
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type =
|
|
348
367
|
{
|
|
349
368
|
Custom: "custom",
|
|
350
369
|
} as const;
|
|
351
|
-
export type
|
|
370
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type =
|
|
352
371
|
ClosedEnum<
|
|
353
|
-
typeof
|
|
372
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type
|
|
354
373
|
>;
|
|
355
374
|
|
|
356
375
|
/**
|
|
357
376
|
* Allows custom git sources (local folder mounted to the container) in test mode
|
|
358
377
|
*/
|
|
359
|
-
export type
|
|
378
|
+
export type GetDeploymentGitSource10 = {
|
|
360
379
|
type:
|
|
361
|
-
|
|
380
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type;
|
|
362
381
|
ref: string;
|
|
363
382
|
sha: string;
|
|
364
383
|
gitUrl: string;
|
|
365
384
|
};
|
|
366
385
|
|
|
367
|
-
export const
|
|
386
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type =
|
|
387
|
+
{
|
|
388
|
+
Bitbucket: "bitbucket",
|
|
389
|
+
} as const;
|
|
390
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type =
|
|
391
|
+
ClosedEnum<
|
|
392
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type
|
|
393
|
+
>;
|
|
394
|
+
|
|
395
|
+
export type GetDeploymentGitSource9 = {
|
|
396
|
+
type:
|
|
397
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type;
|
|
398
|
+
owner: string;
|
|
399
|
+
slug: string;
|
|
400
|
+
ref?: string | null | undefined;
|
|
401
|
+
sha?: string | undefined;
|
|
402
|
+
prId?: number | null | undefined;
|
|
403
|
+
};
|
|
404
|
+
|
|
405
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type =
|
|
368
406
|
{
|
|
369
407
|
Bitbucket: "bitbucket",
|
|
370
408
|
} as const;
|
|
409
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type =
|
|
410
|
+
ClosedEnum<
|
|
411
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type
|
|
412
|
+
>;
|
|
413
|
+
|
|
414
|
+
export type GetDeploymentGitSource8 = {
|
|
415
|
+
type:
|
|
416
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type;
|
|
417
|
+
workspaceUuid?: string | undefined;
|
|
418
|
+
repoUuid: string;
|
|
419
|
+
ref?: string | null | undefined;
|
|
420
|
+
sha?: string | undefined;
|
|
421
|
+
prId?: number | null | undefined;
|
|
422
|
+
};
|
|
423
|
+
|
|
424
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type =
|
|
425
|
+
{
|
|
426
|
+
Gitlab: "gitlab",
|
|
427
|
+
} as const;
|
|
371
428
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type =
|
|
372
429
|
ClosedEnum<
|
|
373
430
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type
|
|
374
431
|
>;
|
|
375
432
|
|
|
433
|
+
export type GetDeploymentGitSourceDeploymentsProjectId = string | number;
|
|
434
|
+
|
|
376
435
|
export type GetDeploymentGitSource7 = {
|
|
377
436
|
type:
|
|
378
437
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type;
|
|
379
|
-
|
|
380
|
-
slug: string;
|
|
438
|
+
projectId: string | number;
|
|
381
439
|
ref?: string | null | undefined;
|
|
382
440
|
sha?: string | undefined;
|
|
383
441
|
prId?: number | null | undefined;
|
|
@@ -385,7 +443,7 @@ export type GetDeploymentGitSource7 = {
|
|
|
385
443
|
|
|
386
444
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type =
|
|
387
445
|
{
|
|
388
|
-
|
|
446
|
+
GithubLimited: "github-limited",
|
|
389
447
|
} as const;
|
|
390
448
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type =
|
|
391
449
|
ClosedEnum<
|
|
@@ -395,8 +453,8 @@ export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseB
|
|
|
395
453
|
export type GetDeploymentGitSource6 = {
|
|
396
454
|
type:
|
|
397
455
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type;
|
|
398
|
-
|
|
399
|
-
|
|
456
|
+
org: string;
|
|
457
|
+
repo: string;
|
|
400
458
|
ref?: string | null | undefined;
|
|
401
459
|
sha?: string | undefined;
|
|
402
460
|
prId?: number | null | undefined;
|
|
@@ -404,19 +462,21 @@ export type GetDeploymentGitSource6 = {
|
|
|
404
462
|
|
|
405
463
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type =
|
|
406
464
|
{
|
|
407
|
-
|
|
465
|
+
GithubLimited: "github-limited",
|
|
408
466
|
} as const;
|
|
409
467
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type =
|
|
410
468
|
ClosedEnum<
|
|
411
469
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type
|
|
412
470
|
>;
|
|
413
471
|
|
|
414
|
-
export type
|
|
472
|
+
export type GetDeploymentGitSourceDeploymentsResponse200RepoId =
|
|
473
|
+
| string
|
|
474
|
+
| number;
|
|
415
475
|
|
|
416
476
|
export type GetDeploymentGitSource5 = {
|
|
417
477
|
type:
|
|
418
478
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type;
|
|
419
|
-
|
|
479
|
+
repoId: string | number;
|
|
420
480
|
ref?: string | null | undefined;
|
|
421
481
|
sha?: string | undefined;
|
|
422
482
|
prId?: number | null | undefined;
|
|
@@ -451,7 +511,7 @@ export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseB
|
|
|
451
511
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type
|
|
452
512
|
>;
|
|
453
513
|
|
|
454
|
-
export type
|
|
514
|
+
export type GetDeploymentGitSourceDeploymentsResponseRepoId = string | number;
|
|
455
515
|
|
|
456
516
|
export type GetDeploymentGitSource3 = {
|
|
457
517
|
type:
|
|
@@ -491,7 +551,7 @@ export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseB
|
|
|
491
551
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type
|
|
492
552
|
>;
|
|
493
553
|
|
|
494
|
-
export type
|
|
554
|
+
export type GetDeploymentGitSourceDeploymentsRepoId = string | number;
|
|
495
555
|
|
|
496
556
|
export type GetDeploymentGitSource1 = {
|
|
497
557
|
type:
|
|
@@ -503,18 +563,41 @@ export type GetDeploymentGitSource1 = {
|
|
|
503
563
|
};
|
|
504
564
|
|
|
505
565
|
export type ResponseBodyGitSource =
|
|
506
|
-
| GetDeploymentGitSource10
|
|
507
566
|
| GetDeploymentGitSource12
|
|
567
|
+
| GetDeploymentGitSource15
|
|
508
568
|
| GetDeploymentGitSource4
|
|
509
|
-
|
|
|
510
|
-
| GetDeploymentGitSource9
|
|
569
|
+
| GetDeploymentGitSource10
|
|
511
570
|
| GetDeploymentGitSource11
|
|
571
|
+
| GetDeploymentGitSource13
|
|
572
|
+
| GetDeploymentGitSource14
|
|
512
573
|
| GetDeploymentGitSource2
|
|
513
574
|
| GetDeploymentGitSource3
|
|
514
|
-
|
|
|
575
|
+
| GetDeploymentGitSource6
|
|
576
|
+
| GetDeploymentGitSource9
|
|
515
577
|
| GetDeploymentGitSource1
|
|
516
578
|
| GetDeploymentGitSource5
|
|
517
|
-
|
|
|
579
|
+
| GetDeploymentGitSource7
|
|
580
|
+
| GetDeploymentGitSource8;
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
584
|
+
*/
|
|
585
|
+
export const GetDeploymentResponseBodyNodeVersion = {
|
|
586
|
+
TwentyTwoDotX: "22.x",
|
|
587
|
+
TwentyDotX: "20.x",
|
|
588
|
+
EighteenDotX: "18.x",
|
|
589
|
+
SixteenDotX: "16.x",
|
|
590
|
+
FourteenDotX: "14.x",
|
|
591
|
+
TwelveDotX: "12.x",
|
|
592
|
+
TenDotX: "10.x",
|
|
593
|
+
EightDot10DotX: "8.10.x",
|
|
594
|
+
} as const;
|
|
595
|
+
/**
|
|
596
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
597
|
+
*/
|
|
598
|
+
export type GetDeploymentResponseBodyNodeVersion = ClosedEnum<
|
|
599
|
+
typeof GetDeploymentResponseBodyNodeVersion
|
|
600
|
+
>;
|
|
518
601
|
|
|
519
602
|
export type GetDeploymentResponseBodyProject = {
|
|
520
603
|
id: string;
|
|
@@ -631,21 +714,28 @@ export type GetDeploymentResponseBody2 = {
|
|
|
631
714
|
*/
|
|
632
715
|
passiveRegions?: Array<string> | undefined;
|
|
633
716
|
gitSource?:
|
|
634
|
-
| GetDeploymentGitSource10
|
|
635
717
|
| GetDeploymentGitSource12
|
|
718
|
+
| GetDeploymentGitSource15
|
|
636
719
|
| GetDeploymentGitSource4
|
|
637
|
-
|
|
|
638
|
-
| GetDeploymentGitSource9
|
|
720
|
+
| GetDeploymentGitSource10
|
|
639
721
|
| GetDeploymentGitSource11
|
|
722
|
+
| GetDeploymentGitSource13
|
|
723
|
+
| GetDeploymentGitSource14
|
|
640
724
|
| GetDeploymentGitSource2
|
|
641
725
|
| GetDeploymentGitSource3
|
|
642
|
-
|
|
|
726
|
+
| GetDeploymentGitSource6
|
|
727
|
+
| GetDeploymentGitSource9
|
|
643
728
|
| GetDeploymentGitSource1
|
|
644
729
|
| GetDeploymentGitSource5
|
|
645
|
-
|
|
|
730
|
+
| GetDeploymentGitSource7
|
|
731
|
+
| GetDeploymentGitSource8
|
|
646
732
|
| undefined;
|
|
647
733
|
meta: { [k: string]: string };
|
|
648
734
|
originCacheRegion?: string | undefined;
|
|
735
|
+
/**
|
|
736
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
737
|
+
*/
|
|
738
|
+
nodeVersion?: GetDeploymentResponseBodyNodeVersion | undefined;
|
|
649
739
|
project?: GetDeploymentResponseBodyProject | undefined;
|
|
650
740
|
/**
|
|
651
741
|
* 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
|
|
@@ -721,6 +811,7 @@ export const ResponseBodyFramework = {
|
|
|
721
811
|
Sanity: "sanity",
|
|
722
812
|
Storybook: "storybook",
|
|
723
813
|
Nitro: "nitro",
|
|
814
|
+
Hono: "hono",
|
|
724
815
|
} as const;
|
|
725
816
|
export type ResponseBodyFramework = ClosedEnum<typeof ResponseBodyFramework>;
|
|
726
817
|
|
|
@@ -1081,18 +1172,18 @@ export type ResponseBodyChecksConclusion = ClosedEnum<
|
|
|
1081
1172
|
typeof ResponseBodyChecksConclusion
|
|
1082
1173
|
>;
|
|
1083
1174
|
|
|
1084
|
-
export const
|
|
1175
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type =
|
|
1085
1176
|
{
|
|
1086
1177
|
Bitbucket: "bitbucket",
|
|
1087
1178
|
} as const;
|
|
1088
|
-
export type
|
|
1179
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type =
|
|
1089
1180
|
ClosedEnum<
|
|
1090
|
-
typeof
|
|
1181
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type
|
|
1091
1182
|
>;
|
|
1092
1183
|
|
|
1093
|
-
export type
|
|
1184
|
+
export type GetDeploymentGitSourceDeployments15 = {
|
|
1094
1185
|
type:
|
|
1095
|
-
|
|
1186
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type;
|
|
1096
1187
|
ref: string;
|
|
1097
1188
|
sha: string;
|
|
1098
1189
|
owner?: string | undefined;
|
|
@@ -1101,35 +1192,54 @@ export type GetDeploymentGitSourceDeployments12 = {
|
|
|
1101
1192
|
repoUuid: string;
|
|
1102
1193
|
};
|
|
1103
1194
|
|
|
1104
|
-
export const
|
|
1195
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type =
|
|
1105
1196
|
{
|
|
1106
1197
|
Gitlab: "gitlab",
|
|
1107
1198
|
} as const;
|
|
1108
|
-
export type
|
|
1199
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type =
|
|
1109
1200
|
ClosedEnum<
|
|
1110
|
-
typeof
|
|
1201
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type
|
|
1111
1202
|
>;
|
|
1112
1203
|
|
|
1113
|
-
export type
|
|
1204
|
+
export type GetDeploymentGitSourceDeployments14 = {
|
|
1114
1205
|
type:
|
|
1115
|
-
|
|
1206
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type;
|
|
1116
1207
|
ref: string;
|
|
1117
1208
|
sha: string;
|
|
1118
1209
|
projectId: number;
|
|
1119
1210
|
};
|
|
1120
1211
|
|
|
1121
|
-
export const
|
|
1212
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type =
|
|
1213
|
+
{
|
|
1214
|
+
GithubLimited: "github-limited",
|
|
1215
|
+
} as const;
|
|
1216
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type =
|
|
1217
|
+
ClosedEnum<
|
|
1218
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type
|
|
1219
|
+
>;
|
|
1220
|
+
|
|
1221
|
+
export type GetDeploymentGitSourceDeployments13 = {
|
|
1222
|
+
type:
|
|
1223
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type;
|
|
1224
|
+
ref: string;
|
|
1225
|
+
sha: string;
|
|
1226
|
+
repoId: number;
|
|
1227
|
+
org?: string | undefined;
|
|
1228
|
+
repo?: string | undefined;
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1231
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type =
|
|
1122
1232
|
{
|
|
1123
1233
|
GithubCustomHost: "github-custom-host",
|
|
1124
1234
|
} as const;
|
|
1125
|
-
export type
|
|
1235
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type =
|
|
1126
1236
|
ClosedEnum<
|
|
1127
|
-
typeof
|
|
1237
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type
|
|
1128
1238
|
>;
|
|
1129
1239
|
|
|
1130
|
-
export type
|
|
1240
|
+
export type GetDeploymentGitSourceDeployments12 = {
|
|
1131
1241
|
type:
|
|
1132
|
-
|
|
1242
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type;
|
|
1133
1243
|
host: string;
|
|
1134
1244
|
ref: string;
|
|
1135
1245
|
sha: string;
|
|
@@ -1138,18 +1248,18 @@ export type GetDeploymentGitSourceDeployments10 = {
|
|
|
1138
1248
|
repo?: string | undefined;
|
|
1139
1249
|
};
|
|
1140
1250
|
|
|
1141
|
-
export const
|
|
1251
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type =
|
|
1142
1252
|
{
|
|
1143
1253
|
Github: "github",
|
|
1144
1254
|
} as const;
|
|
1145
|
-
export type
|
|
1255
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type =
|
|
1146
1256
|
ClosedEnum<
|
|
1147
|
-
typeof
|
|
1257
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type
|
|
1148
1258
|
>;
|
|
1149
1259
|
|
|
1150
|
-
export type
|
|
1260
|
+
export type GetDeploymentGitSourceDeployments11 = {
|
|
1151
1261
|
type:
|
|
1152
|
-
|
|
1262
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type;
|
|
1153
1263
|
ref: string;
|
|
1154
1264
|
sha: string;
|
|
1155
1265
|
repoId: number;
|
|
@@ -1157,47 +1267,86 @@ export type GetDeploymentGitSourceDeployments9 = {
|
|
|
1157
1267
|
repo?: string | undefined;
|
|
1158
1268
|
};
|
|
1159
1269
|
|
|
1160
|
-
export const
|
|
1270
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type =
|
|
1161
1271
|
{
|
|
1162
1272
|
Custom: "custom",
|
|
1163
1273
|
} as const;
|
|
1164
|
-
export type
|
|
1274
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type =
|
|
1165
1275
|
ClosedEnum<
|
|
1166
|
-
typeof
|
|
1276
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type
|
|
1167
1277
|
>;
|
|
1168
1278
|
|
|
1169
1279
|
/**
|
|
1170
1280
|
* Allows custom git sources (local folder mounted to the container) in test mode
|
|
1171
1281
|
*/
|
|
1172
|
-
export type
|
|
1282
|
+
export type GetDeploymentGitSourceDeployments10 = {
|
|
1173
1283
|
type:
|
|
1174
|
-
|
|
1284
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type;
|
|
1175
1285
|
ref: string;
|
|
1176
1286
|
sha: string;
|
|
1177
1287
|
gitUrl: string;
|
|
1178
1288
|
};
|
|
1179
1289
|
|
|
1180
|
-
export const
|
|
1290
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type =
|
|
1291
|
+
{
|
|
1292
|
+
Bitbucket: "bitbucket",
|
|
1293
|
+
} as const;
|
|
1294
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type =
|
|
1295
|
+
ClosedEnum<
|
|
1296
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type
|
|
1297
|
+
>;
|
|
1298
|
+
|
|
1299
|
+
export type GetDeploymentGitSourceDeployments9 = {
|
|
1300
|
+
type:
|
|
1301
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type;
|
|
1302
|
+
owner: string;
|
|
1303
|
+
slug: string;
|
|
1304
|
+
ref?: string | null | undefined;
|
|
1305
|
+
sha?: string | undefined;
|
|
1306
|
+
prId?: number | null | undefined;
|
|
1307
|
+
};
|
|
1308
|
+
|
|
1309
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type =
|
|
1181
1310
|
{
|
|
1182
1311
|
Bitbucket: "bitbucket",
|
|
1183
1312
|
} as const;
|
|
1313
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type =
|
|
1314
|
+
ClosedEnum<
|
|
1315
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type
|
|
1316
|
+
>;
|
|
1317
|
+
|
|
1318
|
+
export type GetDeploymentGitSourceDeployments8 = {
|
|
1319
|
+
type:
|
|
1320
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type;
|
|
1321
|
+
workspaceUuid?: string | undefined;
|
|
1322
|
+
repoUuid: string;
|
|
1323
|
+
ref?: string | null | undefined;
|
|
1324
|
+
sha?: string | undefined;
|
|
1325
|
+
prId?: number | null | undefined;
|
|
1326
|
+
};
|
|
1327
|
+
|
|
1328
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType =
|
|
1329
|
+
{
|
|
1330
|
+
Gitlab: "gitlab",
|
|
1331
|
+
} as const;
|
|
1184
1332
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType =
|
|
1185
1333
|
ClosedEnum<
|
|
1186
1334
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType
|
|
1187
1335
|
>;
|
|
1188
1336
|
|
|
1337
|
+
export type GetDeploymentGitSourceProjectId = string | number;
|
|
1338
|
+
|
|
1189
1339
|
export type GetDeploymentGitSourceDeployments7 = {
|
|
1190
1340
|
type:
|
|
1191
1341
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType;
|
|
1192
|
-
|
|
1193
|
-
slug: string;
|
|
1342
|
+
projectId: string | number;
|
|
1194
1343
|
ref?: string | null | undefined;
|
|
1195
1344
|
sha?: string | undefined;
|
|
1196
1345
|
prId?: number | null | undefined;
|
|
1197
1346
|
};
|
|
1198
1347
|
|
|
1199
1348
|
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType = {
|
|
1200
|
-
|
|
1349
|
+
GithubLimited: "github-limited",
|
|
1201
1350
|
} as const;
|
|
1202
1351
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType =
|
|
1203
1352
|
ClosedEnum<
|
|
@@ -1206,25 +1355,25 @@ export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType =
|
|
|
1206
1355
|
|
|
1207
1356
|
export type GetDeploymentGitSourceDeployments6 = {
|
|
1208
1357
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType;
|
|
1209
|
-
|
|
1210
|
-
|
|
1358
|
+
org: string;
|
|
1359
|
+
repo: string;
|
|
1211
1360
|
ref?: string | null | undefined;
|
|
1212
1361
|
sha?: string | undefined;
|
|
1213
1362
|
prId?: number | null | undefined;
|
|
1214
1363
|
};
|
|
1215
1364
|
|
|
1216
1365
|
export const GetDeploymentGitSourceDeploymentsResponse200Type = {
|
|
1217
|
-
|
|
1366
|
+
GithubLimited: "github-limited",
|
|
1218
1367
|
} as const;
|
|
1219
1368
|
export type GetDeploymentGitSourceDeploymentsResponse200Type = ClosedEnum<
|
|
1220
1369
|
typeof GetDeploymentGitSourceDeploymentsResponse200Type
|
|
1221
1370
|
>;
|
|
1222
1371
|
|
|
1223
|
-
export type
|
|
1372
|
+
export type GetDeploymentGitSourceRepoId = string | number;
|
|
1224
1373
|
|
|
1225
1374
|
export type GetDeploymentGitSourceDeployments5 = {
|
|
1226
1375
|
type: GetDeploymentGitSourceDeploymentsResponse200Type;
|
|
1227
|
-
|
|
1376
|
+
repoId: string | number;
|
|
1228
1377
|
ref?: string | null | undefined;
|
|
1229
1378
|
sha?: string | undefined;
|
|
1230
1379
|
prId?: number | null | undefined;
|
|
@@ -1254,7 +1403,7 @@ export type GetDeploymentGitSourceDeploymentsType = ClosedEnum<
|
|
|
1254
1403
|
typeof GetDeploymentGitSourceDeploymentsType
|
|
1255
1404
|
>;
|
|
1256
1405
|
|
|
1257
|
-
export type
|
|
1406
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId =
|
|
1258
1407
|
| string
|
|
1259
1408
|
| number;
|
|
1260
1409
|
|
|
@@ -1292,7 +1441,9 @@ export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseB
|
|
|
1292
1441
|
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type
|
|
1293
1442
|
>;
|
|
1294
1443
|
|
|
1295
|
-
export type
|
|
1444
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId =
|
|
1445
|
+
| string
|
|
1446
|
+
| number;
|
|
1296
1447
|
|
|
1297
1448
|
export type GetDeploymentGitSourceDeployments1 = {
|
|
1298
1449
|
type:
|
|
@@ -1304,18 +1455,41 @@ export type GetDeploymentGitSourceDeployments1 = {
|
|
|
1304
1455
|
};
|
|
1305
1456
|
|
|
1306
1457
|
export type GetDeploymentResponseBodyGitSource =
|
|
1307
|
-
| GetDeploymentGitSourceDeployments10
|
|
1308
1458
|
| GetDeploymentGitSourceDeployments12
|
|
1459
|
+
| GetDeploymentGitSourceDeployments15
|
|
1309
1460
|
| GetDeploymentGitSourceDeployments4
|
|
1310
|
-
|
|
|
1311
|
-
| GetDeploymentGitSourceDeployments9
|
|
1461
|
+
| GetDeploymentGitSourceDeployments10
|
|
1312
1462
|
| GetDeploymentGitSourceDeployments11
|
|
1463
|
+
| GetDeploymentGitSourceDeployments13
|
|
1464
|
+
| GetDeploymentGitSourceDeployments14
|
|
1313
1465
|
| GetDeploymentGitSourceDeployments2
|
|
1314
1466
|
| GetDeploymentGitSourceDeployments3
|
|
1315
|
-
|
|
|
1467
|
+
| GetDeploymentGitSourceDeployments6
|
|
1468
|
+
| GetDeploymentGitSourceDeployments9
|
|
1316
1469
|
| GetDeploymentGitSourceDeployments1
|
|
1317
1470
|
| GetDeploymentGitSourceDeployments5
|
|
1318
|
-
|
|
|
1471
|
+
| GetDeploymentGitSourceDeployments7
|
|
1472
|
+
| GetDeploymentGitSourceDeployments8;
|
|
1473
|
+
|
|
1474
|
+
/**
|
|
1475
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1476
|
+
*/
|
|
1477
|
+
export const ResponseBodyNodeVersion = {
|
|
1478
|
+
TwentyTwoDotX: "22.x",
|
|
1479
|
+
TwentyDotX: "20.x",
|
|
1480
|
+
EighteenDotX: "18.x",
|
|
1481
|
+
SixteenDotX: "16.x",
|
|
1482
|
+
FourteenDotX: "14.x",
|
|
1483
|
+
TwelveDotX: "12.x",
|
|
1484
|
+
TenDotX: "10.x",
|
|
1485
|
+
EightDot10DotX: "8.10.x",
|
|
1486
|
+
} as const;
|
|
1487
|
+
/**
|
|
1488
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1489
|
+
*/
|
|
1490
|
+
export type ResponseBodyNodeVersion = ClosedEnum<
|
|
1491
|
+
typeof ResponseBodyNodeVersion
|
|
1492
|
+
>;
|
|
1319
1493
|
|
|
1320
1494
|
export type ResponseBodyProject = {
|
|
1321
1495
|
id: string;
|
|
@@ -1850,13 +2024,9 @@ export type GetDeploymentMicrofrontends2 = {
|
|
|
1850
2024
|
*/
|
|
1851
2025
|
groupIds: Array<string>;
|
|
1852
2026
|
/**
|
|
1853
|
-
* Whether the
|
|
2027
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1854
2028
|
*/
|
|
1855
|
-
|
|
1856
|
-
/**
|
|
1857
|
-
* Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch.
|
|
1858
|
-
*/
|
|
1859
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
2029
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1860
2030
|
};
|
|
1861
2031
|
|
|
1862
2032
|
export type GetDeploymentMicrofrontends1 = {
|
|
@@ -1877,13 +2047,9 @@ export type GetDeploymentMicrofrontends1 = {
|
|
|
1877
2047
|
*/
|
|
1878
2048
|
groupIds: Array<string>;
|
|
1879
2049
|
/**
|
|
1880
|
-
* Whether the
|
|
1881
|
-
*/
|
|
1882
|
-
microfrontendsAliasEnabled?: boolean | undefined;
|
|
1883
|
-
/**
|
|
1884
|
-
* Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch.
|
|
2050
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1885
2051
|
*/
|
|
1886
|
-
|
|
2052
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1887
2053
|
};
|
|
1888
2054
|
|
|
1889
2055
|
export type ResponseBodyMicrofrontends =
|
|
@@ -2016,21 +2182,28 @@ export type GetDeploymentResponseBody1 = {
|
|
|
2016
2182
|
*/
|
|
2017
2183
|
passiveRegions?: Array<string> | undefined;
|
|
2018
2184
|
gitSource?:
|
|
2019
|
-
| GetDeploymentGitSourceDeployments10
|
|
2020
2185
|
| GetDeploymentGitSourceDeployments12
|
|
2186
|
+
| GetDeploymentGitSourceDeployments15
|
|
2021
2187
|
| GetDeploymentGitSourceDeployments4
|
|
2022
|
-
|
|
|
2023
|
-
| GetDeploymentGitSourceDeployments9
|
|
2188
|
+
| GetDeploymentGitSourceDeployments10
|
|
2024
2189
|
| GetDeploymentGitSourceDeployments11
|
|
2190
|
+
| GetDeploymentGitSourceDeployments13
|
|
2191
|
+
| GetDeploymentGitSourceDeployments14
|
|
2025
2192
|
| GetDeploymentGitSourceDeployments2
|
|
2026
2193
|
| GetDeploymentGitSourceDeployments3
|
|
2027
|
-
|
|
|
2194
|
+
| GetDeploymentGitSourceDeployments6
|
|
2195
|
+
| GetDeploymentGitSourceDeployments9
|
|
2028
2196
|
| GetDeploymentGitSourceDeployments1
|
|
2029
2197
|
| GetDeploymentGitSourceDeployments5
|
|
2030
|
-
|
|
|
2198
|
+
| GetDeploymentGitSourceDeployments7
|
|
2199
|
+
| GetDeploymentGitSourceDeployments8
|
|
2031
2200
|
| undefined;
|
|
2032
2201
|
meta: { [k: string]: string };
|
|
2033
2202
|
originCacheRegion?: string | undefined;
|
|
2203
|
+
/**
|
|
2204
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
2205
|
+
*/
|
|
2206
|
+
nodeVersion?: ResponseBodyNodeVersion | undefined;
|
|
2034
2207
|
project?: ResponseBodyProject | undefined;
|
|
2035
2208
|
/**
|
|
2036
2209
|
* 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
|
|
@@ -3179,41 +3352,41 @@ export namespace GetDeploymentResponseBodyChecksConclusion$ {
|
|
|
3179
3352
|
}
|
|
3180
3353
|
|
|
3181
3354
|
/** @internal */
|
|
3182
|
-
export const
|
|
3355
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema:
|
|
3183
3356
|
z.ZodNativeEnum<
|
|
3184
|
-
typeof
|
|
3357
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type
|
|
3185
3358
|
> = z.nativeEnum(
|
|
3186
|
-
|
|
3359
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type,
|
|
3187
3360
|
);
|
|
3188
3361
|
|
|
3189
3362
|
/** @internal */
|
|
3190
|
-
export const
|
|
3363
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema:
|
|
3191
3364
|
z.ZodNativeEnum<
|
|
3192
|
-
typeof
|
|
3365
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type
|
|
3193
3366
|
> =
|
|
3194
|
-
|
|
3367
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema;
|
|
3195
3368
|
|
|
3196
3369
|
/**
|
|
3197
3370
|
* @internal
|
|
3198
3371
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3199
3372
|
*/
|
|
3200
|
-
export namespace
|
|
3201
|
-
/** @deprecated use `
|
|
3373
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$ {
|
|
3374
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema` instead. */
|
|
3202
3375
|
export const inboundSchema =
|
|
3203
|
-
|
|
3204
|
-
/** @deprecated use `
|
|
3376
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema;
|
|
3377
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema` instead. */
|
|
3205
3378
|
export const outboundSchema =
|
|
3206
|
-
|
|
3379
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema;
|
|
3207
3380
|
}
|
|
3208
3381
|
|
|
3209
3382
|
/** @internal */
|
|
3210
|
-
export const
|
|
3211
|
-
|
|
3383
|
+
export const GetDeploymentGitSource15$inboundSchema: z.ZodType<
|
|
3384
|
+
GetDeploymentGitSource15,
|
|
3212
3385
|
z.ZodTypeDef,
|
|
3213
3386
|
unknown
|
|
3214
3387
|
> = z.object({
|
|
3215
3388
|
type:
|
|
3216
|
-
|
|
3389
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema,
|
|
3217
3390
|
ref: z.string(),
|
|
3218
3391
|
sha: z.string(),
|
|
3219
3392
|
owner: z.string().optional(),
|
|
@@ -3223,7 +3396,7 @@ export const GetDeploymentGitSource12$inboundSchema: z.ZodType<
|
|
|
3223
3396
|
});
|
|
3224
3397
|
|
|
3225
3398
|
/** @internal */
|
|
3226
|
-
export type
|
|
3399
|
+
export type GetDeploymentGitSource15$Outbound = {
|
|
3227
3400
|
type: string;
|
|
3228
3401
|
ref: string;
|
|
3229
3402
|
sha: string;
|
|
@@ -3234,13 +3407,13 @@ export type GetDeploymentGitSource12$Outbound = {
|
|
|
3234
3407
|
};
|
|
3235
3408
|
|
|
3236
3409
|
/** @internal */
|
|
3237
|
-
export const
|
|
3238
|
-
|
|
3410
|
+
export const GetDeploymentGitSource15$outboundSchema: z.ZodType<
|
|
3411
|
+
GetDeploymentGitSource15$Outbound,
|
|
3239
3412
|
z.ZodTypeDef,
|
|
3240
|
-
|
|
3413
|
+
GetDeploymentGitSource15
|
|
3241
3414
|
> = z.object({
|
|
3242
3415
|
type:
|
|
3243
|
-
|
|
3416
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema,
|
|
3244
3417
|
ref: z.string(),
|
|
3245
3418
|
sha: z.string(),
|
|
3246
3419
|
owner: z.string().optional(),
|
|
@@ -3253,76 +3426,76 @@ export const GetDeploymentGitSource12$outboundSchema: z.ZodType<
|
|
|
3253
3426
|
* @internal
|
|
3254
3427
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3255
3428
|
*/
|
|
3256
|
-
export namespace
|
|
3257
|
-
/** @deprecated use `
|
|
3258
|
-
export const inboundSchema =
|
|
3259
|
-
/** @deprecated use `
|
|
3260
|
-
export const outboundSchema =
|
|
3261
|
-
/** @deprecated use `
|
|
3262
|
-
export type Outbound =
|
|
3429
|
+
export namespace GetDeploymentGitSource15$ {
|
|
3430
|
+
/** @deprecated use `GetDeploymentGitSource15$inboundSchema` instead. */
|
|
3431
|
+
export const inboundSchema = GetDeploymentGitSource15$inboundSchema;
|
|
3432
|
+
/** @deprecated use `GetDeploymentGitSource15$outboundSchema` instead. */
|
|
3433
|
+
export const outboundSchema = GetDeploymentGitSource15$outboundSchema;
|
|
3434
|
+
/** @deprecated use `GetDeploymentGitSource15$Outbound` instead. */
|
|
3435
|
+
export type Outbound = GetDeploymentGitSource15$Outbound;
|
|
3263
3436
|
}
|
|
3264
3437
|
|
|
3265
|
-
export function
|
|
3266
|
-
|
|
3438
|
+
export function getDeploymentGitSource15ToJSON(
|
|
3439
|
+
getDeploymentGitSource15: GetDeploymentGitSource15,
|
|
3267
3440
|
): string {
|
|
3268
3441
|
return JSON.stringify(
|
|
3269
|
-
|
|
3442
|
+
GetDeploymentGitSource15$outboundSchema.parse(getDeploymentGitSource15),
|
|
3270
3443
|
);
|
|
3271
3444
|
}
|
|
3272
3445
|
|
|
3273
|
-
export function
|
|
3446
|
+
export function getDeploymentGitSource15FromJSON(
|
|
3274
3447
|
jsonString: string,
|
|
3275
|
-
): SafeParseResult<
|
|
3448
|
+
): SafeParseResult<GetDeploymentGitSource15, SDKValidationError> {
|
|
3276
3449
|
return safeParse(
|
|
3277
3450
|
jsonString,
|
|
3278
|
-
(x) =>
|
|
3279
|
-
`Failed to parse '
|
|
3451
|
+
(x) => GetDeploymentGitSource15$inboundSchema.parse(JSON.parse(x)),
|
|
3452
|
+
`Failed to parse 'GetDeploymentGitSource15' from JSON`,
|
|
3280
3453
|
);
|
|
3281
3454
|
}
|
|
3282
3455
|
|
|
3283
3456
|
/** @internal */
|
|
3284
|
-
export const
|
|
3457
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema:
|
|
3285
3458
|
z.ZodNativeEnum<
|
|
3286
|
-
typeof
|
|
3459
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type
|
|
3287
3460
|
> = z.nativeEnum(
|
|
3288
|
-
|
|
3461
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type,
|
|
3289
3462
|
);
|
|
3290
3463
|
|
|
3291
3464
|
/** @internal */
|
|
3292
|
-
export const
|
|
3465
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema:
|
|
3293
3466
|
z.ZodNativeEnum<
|
|
3294
|
-
typeof
|
|
3467
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type
|
|
3295
3468
|
> =
|
|
3296
|
-
|
|
3469
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema;
|
|
3297
3470
|
|
|
3298
3471
|
/**
|
|
3299
3472
|
* @internal
|
|
3300
3473
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3301
3474
|
*/
|
|
3302
|
-
export namespace
|
|
3303
|
-
/** @deprecated use `
|
|
3475
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$ {
|
|
3476
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema` instead. */
|
|
3304
3477
|
export const inboundSchema =
|
|
3305
|
-
|
|
3306
|
-
/** @deprecated use `
|
|
3478
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema;
|
|
3479
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema` instead. */
|
|
3307
3480
|
export const outboundSchema =
|
|
3308
|
-
|
|
3481
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema;
|
|
3309
3482
|
}
|
|
3310
3483
|
|
|
3311
3484
|
/** @internal */
|
|
3312
|
-
export const
|
|
3313
|
-
|
|
3485
|
+
export const GetDeploymentGitSource14$inboundSchema: z.ZodType<
|
|
3486
|
+
GetDeploymentGitSource14,
|
|
3314
3487
|
z.ZodTypeDef,
|
|
3315
3488
|
unknown
|
|
3316
3489
|
> = z.object({
|
|
3317
3490
|
type:
|
|
3318
|
-
|
|
3491
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema,
|
|
3319
3492
|
ref: z.string(),
|
|
3320
3493
|
sha: z.string(),
|
|
3321
3494
|
projectId: z.number(),
|
|
3322
3495
|
});
|
|
3323
3496
|
|
|
3324
3497
|
/** @internal */
|
|
3325
|
-
export type
|
|
3498
|
+
export type GetDeploymentGitSource14$Outbound = {
|
|
3326
3499
|
type: string;
|
|
3327
3500
|
ref: string;
|
|
3328
3501
|
sha: string;
|
|
@@ -3330,13 +3503,13 @@ export type GetDeploymentGitSource11$Outbound = {
|
|
|
3330
3503
|
};
|
|
3331
3504
|
|
|
3332
3505
|
/** @internal */
|
|
3333
|
-
export const
|
|
3334
|
-
|
|
3506
|
+
export const GetDeploymentGitSource14$outboundSchema: z.ZodType<
|
|
3507
|
+
GetDeploymentGitSource14$Outbound,
|
|
3335
3508
|
z.ZodTypeDef,
|
|
3336
|
-
|
|
3509
|
+
GetDeploymentGitSource14
|
|
3337
3510
|
> = z.object({
|
|
3338
3511
|
type:
|
|
3339
|
-
|
|
3512
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema,
|
|
3340
3513
|
ref: z.string(),
|
|
3341
3514
|
sha: z.string(),
|
|
3342
3515
|
projectId: z.number(),
|
|
@@ -3346,70 +3519,69 @@ export const GetDeploymentGitSource11$outboundSchema: z.ZodType<
|
|
|
3346
3519
|
* @internal
|
|
3347
3520
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3348
3521
|
*/
|
|
3349
|
-
export namespace
|
|
3350
|
-
/** @deprecated use `
|
|
3351
|
-
export const inboundSchema =
|
|
3352
|
-
/** @deprecated use `
|
|
3353
|
-
export const outboundSchema =
|
|
3354
|
-
/** @deprecated use `
|
|
3355
|
-
export type Outbound =
|
|
3522
|
+
export namespace GetDeploymentGitSource14$ {
|
|
3523
|
+
/** @deprecated use `GetDeploymentGitSource14$inboundSchema` instead. */
|
|
3524
|
+
export const inboundSchema = GetDeploymentGitSource14$inboundSchema;
|
|
3525
|
+
/** @deprecated use `GetDeploymentGitSource14$outboundSchema` instead. */
|
|
3526
|
+
export const outboundSchema = GetDeploymentGitSource14$outboundSchema;
|
|
3527
|
+
/** @deprecated use `GetDeploymentGitSource14$Outbound` instead. */
|
|
3528
|
+
export type Outbound = GetDeploymentGitSource14$Outbound;
|
|
3356
3529
|
}
|
|
3357
3530
|
|
|
3358
|
-
export function
|
|
3359
|
-
|
|
3531
|
+
export function getDeploymentGitSource14ToJSON(
|
|
3532
|
+
getDeploymentGitSource14: GetDeploymentGitSource14,
|
|
3360
3533
|
): string {
|
|
3361
3534
|
return JSON.stringify(
|
|
3362
|
-
|
|
3535
|
+
GetDeploymentGitSource14$outboundSchema.parse(getDeploymentGitSource14),
|
|
3363
3536
|
);
|
|
3364
3537
|
}
|
|
3365
3538
|
|
|
3366
|
-
export function
|
|
3539
|
+
export function getDeploymentGitSource14FromJSON(
|
|
3367
3540
|
jsonString: string,
|
|
3368
|
-
): SafeParseResult<
|
|
3541
|
+
): SafeParseResult<GetDeploymentGitSource14, SDKValidationError> {
|
|
3369
3542
|
return safeParse(
|
|
3370
3543
|
jsonString,
|
|
3371
|
-
(x) =>
|
|
3372
|
-
`Failed to parse '
|
|
3544
|
+
(x) => GetDeploymentGitSource14$inboundSchema.parse(JSON.parse(x)),
|
|
3545
|
+
`Failed to parse 'GetDeploymentGitSource14' from JSON`,
|
|
3373
3546
|
);
|
|
3374
3547
|
}
|
|
3375
3548
|
|
|
3376
3549
|
/** @internal */
|
|
3377
|
-
export const
|
|
3550
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema:
|
|
3378
3551
|
z.ZodNativeEnum<
|
|
3379
|
-
typeof
|
|
3552
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type
|
|
3380
3553
|
> = z.nativeEnum(
|
|
3381
|
-
|
|
3554
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type,
|
|
3382
3555
|
);
|
|
3383
3556
|
|
|
3384
3557
|
/** @internal */
|
|
3385
|
-
export const
|
|
3558
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema:
|
|
3386
3559
|
z.ZodNativeEnum<
|
|
3387
|
-
typeof
|
|
3560
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type
|
|
3388
3561
|
> =
|
|
3389
|
-
|
|
3562
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema;
|
|
3390
3563
|
|
|
3391
3564
|
/**
|
|
3392
3565
|
* @internal
|
|
3393
3566
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3394
3567
|
*/
|
|
3395
|
-
export namespace
|
|
3396
|
-
/** @deprecated use `
|
|
3568
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$ {
|
|
3569
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema` instead. */
|
|
3397
3570
|
export const inboundSchema =
|
|
3398
|
-
|
|
3399
|
-
/** @deprecated use `
|
|
3571
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema;
|
|
3572
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema` instead. */
|
|
3400
3573
|
export const outboundSchema =
|
|
3401
|
-
|
|
3574
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema;
|
|
3402
3575
|
}
|
|
3403
3576
|
|
|
3404
3577
|
/** @internal */
|
|
3405
|
-
export const
|
|
3406
|
-
|
|
3578
|
+
export const GetDeploymentGitSource13$inboundSchema: z.ZodType<
|
|
3579
|
+
GetDeploymentGitSource13,
|
|
3407
3580
|
z.ZodTypeDef,
|
|
3408
3581
|
unknown
|
|
3409
3582
|
> = z.object({
|
|
3410
3583
|
type:
|
|
3411
|
-
|
|
3412
|
-
host: z.string(),
|
|
3584
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema,
|
|
3413
3585
|
ref: z.string(),
|
|
3414
3586
|
sha: z.string(),
|
|
3415
3587
|
repoId: z.number(),
|
|
@@ -3418,9 +3590,8 @@ export const GetDeploymentGitSource10$inboundSchema: z.ZodType<
|
|
|
3418
3590
|
});
|
|
3419
3591
|
|
|
3420
3592
|
/** @internal */
|
|
3421
|
-
export type
|
|
3593
|
+
export type GetDeploymentGitSource13$Outbound = {
|
|
3422
3594
|
type: string;
|
|
3423
|
-
host: string;
|
|
3424
3595
|
ref: string;
|
|
3425
3596
|
sha: string;
|
|
3426
3597
|
repoId: number;
|
|
@@ -3429,14 +3600,13 @@ export type GetDeploymentGitSource10$Outbound = {
|
|
|
3429
3600
|
};
|
|
3430
3601
|
|
|
3431
3602
|
/** @internal */
|
|
3432
|
-
export const
|
|
3433
|
-
|
|
3603
|
+
export const GetDeploymentGitSource13$outboundSchema: z.ZodType<
|
|
3604
|
+
GetDeploymentGitSource13$Outbound,
|
|
3434
3605
|
z.ZodTypeDef,
|
|
3435
|
-
|
|
3606
|
+
GetDeploymentGitSource13
|
|
3436
3607
|
> = z.object({
|
|
3437
3608
|
type:
|
|
3438
|
-
|
|
3439
|
-
host: z.string(),
|
|
3609
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema,
|
|
3440
3610
|
ref: z.string(),
|
|
3441
3611
|
sha: z.string(),
|
|
3442
3612
|
repoId: z.number(),
|
|
@@ -3448,69 +3618,70 @@ export const GetDeploymentGitSource10$outboundSchema: z.ZodType<
|
|
|
3448
3618
|
* @internal
|
|
3449
3619
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3450
3620
|
*/
|
|
3451
|
-
export namespace
|
|
3452
|
-
/** @deprecated use `
|
|
3453
|
-
export const inboundSchema =
|
|
3454
|
-
/** @deprecated use `
|
|
3455
|
-
export const outboundSchema =
|
|
3456
|
-
/** @deprecated use `
|
|
3457
|
-
export type Outbound =
|
|
3621
|
+
export namespace GetDeploymentGitSource13$ {
|
|
3622
|
+
/** @deprecated use `GetDeploymentGitSource13$inboundSchema` instead. */
|
|
3623
|
+
export const inboundSchema = GetDeploymentGitSource13$inboundSchema;
|
|
3624
|
+
/** @deprecated use `GetDeploymentGitSource13$outboundSchema` instead. */
|
|
3625
|
+
export const outboundSchema = GetDeploymentGitSource13$outboundSchema;
|
|
3626
|
+
/** @deprecated use `GetDeploymentGitSource13$Outbound` instead. */
|
|
3627
|
+
export type Outbound = GetDeploymentGitSource13$Outbound;
|
|
3458
3628
|
}
|
|
3459
3629
|
|
|
3460
|
-
export function
|
|
3461
|
-
|
|
3630
|
+
export function getDeploymentGitSource13ToJSON(
|
|
3631
|
+
getDeploymentGitSource13: GetDeploymentGitSource13,
|
|
3462
3632
|
): string {
|
|
3463
3633
|
return JSON.stringify(
|
|
3464
|
-
|
|
3634
|
+
GetDeploymentGitSource13$outboundSchema.parse(getDeploymentGitSource13),
|
|
3465
3635
|
);
|
|
3466
3636
|
}
|
|
3467
3637
|
|
|
3468
|
-
export function
|
|
3638
|
+
export function getDeploymentGitSource13FromJSON(
|
|
3469
3639
|
jsonString: string,
|
|
3470
|
-
): SafeParseResult<
|
|
3640
|
+
): SafeParseResult<GetDeploymentGitSource13, SDKValidationError> {
|
|
3471
3641
|
return safeParse(
|
|
3472
3642
|
jsonString,
|
|
3473
|
-
(x) =>
|
|
3474
|
-
`Failed to parse '
|
|
3643
|
+
(x) => GetDeploymentGitSource13$inboundSchema.parse(JSON.parse(x)),
|
|
3644
|
+
`Failed to parse 'GetDeploymentGitSource13' from JSON`,
|
|
3475
3645
|
);
|
|
3476
3646
|
}
|
|
3477
3647
|
|
|
3478
3648
|
/** @internal */
|
|
3479
|
-
export const
|
|
3649
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema:
|
|
3480
3650
|
z.ZodNativeEnum<
|
|
3481
|
-
typeof
|
|
3651
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type
|
|
3482
3652
|
> = z.nativeEnum(
|
|
3483
|
-
|
|
3653
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type,
|
|
3484
3654
|
);
|
|
3485
3655
|
|
|
3486
3656
|
/** @internal */
|
|
3487
|
-
export const
|
|
3657
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema:
|
|
3488
3658
|
z.ZodNativeEnum<
|
|
3489
|
-
typeof
|
|
3659
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type
|
|
3490
3660
|
> =
|
|
3491
|
-
|
|
3661
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema;
|
|
3492
3662
|
|
|
3493
3663
|
/**
|
|
3494
3664
|
* @internal
|
|
3495
3665
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3496
3666
|
*/
|
|
3497
|
-
export namespace
|
|
3498
|
-
/** @deprecated use `
|
|
3667
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$ {
|
|
3668
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema` instead. */
|
|
3499
3669
|
export const inboundSchema =
|
|
3500
|
-
|
|
3501
|
-
/** @deprecated use `
|
|
3670
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema;
|
|
3671
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema` instead. */
|
|
3502
3672
|
export const outboundSchema =
|
|
3503
|
-
|
|
3673
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema;
|
|
3504
3674
|
}
|
|
3505
3675
|
|
|
3506
3676
|
/** @internal */
|
|
3507
|
-
export const
|
|
3508
|
-
|
|
3677
|
+
export const GetDeploymentGitSource12$inboundSchema: z.ZodType<
|
|
3678
|
+
GetDeploymentGitSource12,
|
|
3509
3679
|
z.ZodTypeDef,
|
|
3510
3680
|
unknown
|
|
3511
3681
|
> = z.object({
|
|
3512
3682
|
type:
|
|
3513
|
-
|
|
3683
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema,
|
|
3684
|
+
host: z.string(),
|
|
3514
3685
|
ref: z.string(),
|
|
3515
3686
|
sha: z.string(),
|
|
3516
3687
|
repoId: z.number(),
|
|
@@ -3519,8 +3690,9 @@ export const GetDeploymentGitSource9$inboundSchema: z.ZodType<
|
|
|
3519
3690
|
});
|
|
3520
3691
|
|
|
3521
3692
|
/** @internal */
|
|
3522
|
-
export type
|
|
3693
|
+
export type GetDeploymentGitSource12$Outbound = {
|
|
3523
3694
|
type: string;
|
|
3695
|
+
host: string;
|
|
3524
3696
|
ref: string;
|
|
3525
3697
|
sha: string;
|
|
3526
3698
|
repoId: number;
|
|
@@ -3529,13 +3701,14 @@ export type GetDeploymentGitSource9$Outbound = {
|
|
|
3529
3701
|
};
|
|
3530
3702
|
|
|
3531
3703
|
/** @internal */
|
|
3532
|
-
export const
|
|
3533
|
-
|
|
3704
|
+
export const GetDeploymentGitSource12$outboundSchema: z.ZodType<
|
|
3705
|
+
GetDeploymentGitSource12$Outbound,
|
|
3534
3706
|
z.ZodTypeDef,
|
|
3535
|
-
|
|
3707
|
+
GetDeploymentGitSource12
|
|
3536
3708
|
> = z.object({
|
|
3537
3709
|
type:
|
|
3538
|
-
|
|
3710
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema,
|
|
3711
|
+
host: z.string(),
|
|
3539
3712
|
ref: z.string(),
|
|
3540
3713
|
sha: z.string(),
|
|
3541
3714
|
repoId: z.number(),
|
|
@@ -3547,110 +3720,407 @@ export const GetDeploymentGitSource9$outboundSchema: z.ZodType<
|
|
|
3547
3720
|
* @internal
|
|
3548
3721
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3549
3722
|
*/
|
|
3550
|
-
export namespace
|
|
3551
|
-
/** @deprecated use `
|
|
3552
|
-
export const inboundSchema =
|
|
3553
|
-
/** @deprecated use `
|
|
3554
|
-
export const outboundSchema =
|
|
3555
|
-
/** @deprecated use `
|
|
3556
|
-
export type Outbound =
|
|
3723
|
+
export namespace GetDeploymentGitSource12$ {
|
|
3724
|
+
/** @deprecated use `GetDeploymentGitSource12$inboundSchema` instead. */
|
|
3725
|
+
export const inboundSchema = GetDeploymentGitSource12$inboundSchema;
|
|
3726
|
+
/** @deprecated use `GetDeploymentGitSource12$outboundSchema` instead. */
|
|
3727
|
+
export const outboundSchema = GetDeploymentGitSource12$outboundSchema;
|
|
3728
|
+
/** @deprecated use `GetDeploymentGitSource12$Outbound` instead. */
|
|
3729
|
+
export type Outbound = GetDeploymentGitSource12$Outbound;
|
|
3557
3730
|
}
|
|
3558
3731
|
|
|
3559
|
-
export function
|
|
3560
|
-
|
|
3732
|
+
export function getDeploymentGitSource12ToJSON(
|
|
3733
|
+
getDeploymentGitSource12: GetDeploymentGitSource12,
|
|
3561
3734
|
): string {
|
|
3562
3735
|
return JSON.stringify(
|
|
3563
|
-
|
|
3736
|
+
GetDeploymentGitSource12$outboundSchema.parse(getDeploymentGitSource12),
|
|
3564
3737
|
);
|
|
3565
3738
|
}
|
|
3566
3739
|
|
|
3567
|
-
export function
|
|
3740
|
+
export function getDeploymentGitSource12FromJSON(
|
|
3568
3741
|
jsonString: string,
|
|
3569
|
-
): SafeParseResult<
|
|
3742
|
+
): SafeParseResult<GetDeploymentGitSource12, SDKValidationError> {
|
|
3570
3743
|
return safeParse(
|
|
3571
3744
|
jsonString,
|
|
3572
|
-
(x) =>
|
|
3573
|
-
`Failed to parse '
|
|
3745
|
+
(x) => GetDeploymentGitSource12$inboundSchema.parse(JSON.parse(x)),
|
|
3746
|
+
`Failed to parse 'GetDeploymentGitSource12' from JSON`,
|
|
3574
3747
|
);
|
|
3575
3748
|
}
|
|
3576
3749
|
|
|
3577
3750
|
/** @internal */
|
|
3578
|
-
export const
|
|
3751
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema:
|
|
3579
3752
|
z.ZodNativeEnum<
|
|
3580
|
-
typeof
|
|
3753
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type
|
|
3581
3754
|
> = z.nativeEnum(
|
|
3582
|
-
|
|
3755
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type,
|
|
3583
3756
|
);
|
|
3584
3757
|
|
|
3585
3758
|
/** @internal */
|
|
3586
|
-
export const
|
|
3759
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema:
|
|
3587
3760
|
z.ZodNativeEnum<
|
|
3588
|
-
typeof
|
|
3761
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type
|
|
3589
3762
|
> =
|
|
3590
|
-
|
|
3763
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema;
|
|
3591
3764
|
|
|
3592
3765
|
/**
|
|
3593
3766
|
* @internal
|
|
3594
3767
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3595
3768
|
*/
|
|
3596
|
-
export namespace
|
|
3597
|
-
/** @deprecated use `
|
|
3769
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$ {
|
|
3770
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema` instead. */
|
|
3598
3771
|
export const inboundSchema =
|
|
3599
|
-
|
|
3600
|
-
/** @deprecated use `
|
|
3772
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema;
|
|
3773
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema` instead. */
|
|
3601
3774
|
export const outboundSchema =
|
|
3602
|
-
|
|
3775
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema;
|
|
3603
3776
|
}
|
|
3604
3777
|
|
|
3605
3778
|
/** @internal */
|
|
3606
|
-
export const
|
|
3607
|
-
|
|
3779
|
+
export const GetDeploymentGitSource11$inboundSchema: z.ZodType<
|
|
3780
|
+
GetDeploymentGitSource11,
|
|
3608
3781
|
z.ZodTypeDef,
|
|
3609
3782
|
unknown
|
|
3610
3783
|
> = z.object({
|
|
3611
3784
|
type:
|
|
3612
|
-
|
|
3785
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema,
|
|
3613
3786
|
ref: z.string(),
|
|
3614
3787
|
sha: z.string(),
|
|
3615
|
-
|
|
3788
|
+
repoId: z.number(),
|
|
3789
|
+
org: z.string().optional(),
|
|
3790
|
+
repo: z.string().optional(),
|
|
3616
3791
|
});
|
|
3617
3792
|
|
|
3618
3793
|
/** @internal */
|
|
3619
|
-
export type
|
|
3794
|
+
export type GetDeploymentGitSource11$Outbound = {
|
|
3620
3795
|
type: string;
|
|
3621
3796
|
ref: string;
|
|
3622
3797
|
sha: string;
|
|
3623
|
-
|
|
3798
|
+
repoId: number;
|
|
3799
|
+
org?: string | undefined;
|
|
3800
|
+
repo?: string | undefined;
|
|
3624
3801
|
};
|
|
3625
3802
|
|
|
3626
3803
|
/** @internal */
|
|
3627
|
-
export const
|
|
3628
|
-
|
|
3804
|
+
export const GetDeploymentGitSource11$outboundSchema: z.ZodType<
|
|
3805
|
+
GetDeploymentGitSource11$Outbound,
|
|
3629
3806
|
z.ZodTypeDef,
|
|
3630
|
-
|
|
3807
|
+
GetDeploymentGitSource11
|
|
3631
3808
|
> = z.object({
|
|
3632
3809
|
type:
|
|
3633
|
-
|
|
3810
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema,
|
|
3634
3811
|
ref: z.string(),
|
|
3635
3812
|
sha: z.string(),
|
|
3636
|
-
|
|
3813
|
+
repoId: z.number(),
|
|
3814
|
+
org: z.string().optional(),
|
|
3815
|
+
repo: z.string().optional(),
|
|
3637
3816
|
});
|
|
3638
3817
|
|
|
3639
3818
|
/**
|
|
3640
3819
|
* @internal
|
|
3641
3820
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3642
3821
|
*/
|
|
3643
|
-
export namespace
|
|
3644
|
-
/** @deprecated use `
|
|
3645
|
-
export const inboundSchema =
|
|
3646
|
-
/** @deprecated use `
|
|
3647
|
-
export const outboundSchema =
|
|
3648
|
-
/** @deprecated use `
|
|
3649
|
-
export type Outbound =
|
|
3650
|
-
}
|
|
3651
|
-
|
|
3652
|
-
export function
|
|
3653
|
-
|
|
3822
|
+
export namespace GetDeploymentGitSource11$ {
|
|
3823
|
+
/** @deprecated use `GetDeploymentGitSource11$inboundSchema` instead. */
|
|
3824
|
+
export const inboundSchema = GetDeploymentGitSource11$inboundSchema;
|
|
3825
|
+
/** @deprecated use `GetDeploymentGitSource11$outboundSchema` instead. */
|
|
3826
|
+
export const outboundSchema = GetDeploymentGitSource11$outboundSchema;
|
|
3827
|
+
/** @deprecated use `GetDeploymentGitSource11$Outbound` instead. */
|
|
3828
|
+
export type Outbound = GetDeploymentGitSource11$Outbound;
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
export function getDeploymentGitSource11ToJSON(
|
|
3832
|
+
getDeploymentGitSource11: GetDeploymentGitSource11,
|
|
3833
|
+
): string {
|
|
3834
|
+
return JSON.stringify(
|
|
3835
|
+
GetDeploymentGitSource11$outboundSchema.parse(getDeploymentGitSource11),
|
|
3836
|
+
);
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
export function getDeploymentGitSource11FromJSON(
|
|
3840
|
+
jsonString: string,
|
|
3841
|
+
): SafeParseResult<GetDeploymentGitSource11, SDKValidationError> {
|
|
3842
|
+
return safeParse(
|
|
3843
|
+
jsonString,
|
|
3844
|
+
(x) => GetDeploymentGitSource11$inboundSchema.parse(JSON.parse(x)),
|
|
3845
|
+
`Failed to parse 'GetDeploymentGitSource11' from JSON`,
|
|
3846
|
+
);
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
/** @internal */
|
|
3850
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema:
|
|
3851
|
+
z.ZodNativeEnum<
|
|
3852
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type
|
|
3853
|
+
> = z.nativeEnum(
|
|
3854
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type,
|
|
3855
|
+
);
|
|
3856
|
+
|
|
3857
|
+
/** @internal */
|
|
3858
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema:
|
|
3859
|
+
z.ZodNativeEnum<
|
|
3860
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type
|
|
3861
|
+
> =
|
|
3862
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema;
|
|
3863
|
+
|
|
3864
|
+
/**
|
|
3865
|
+
* @internal
|
|
3866
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3867
|
+
*/
|
|
3868
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$ {
|
|
3869
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema` instead. */
|
|
3870
|
+
export const inboundSchema =
|
|
3871
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema;
|
|
3872
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema` instead. */
|
|
3873
|
+
export const outboundSchema =
|
|
3874
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
/** @internal */
|
|
3878
|
+
export const GetDeploymentGitSource10$inboundSchema: z.ZodType<
|
|
3879
|
+
GetDeploymentGitSource10,
|
|
3880
|
+
z.ZodTypeDef,
|
|
3881
|
+
unknown
|
|
3882
|
+
> = z.object({
|
|
3883
|
+
type:
|
|
3884
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema,
|
|
3885
|
+
ref: z.string(),
|
|
3886
|
+
sha: z.string(),
|
|
3887
|
+
gitUrl: z.string(),
|
|
3888
|
+
});
|
|
3889
|
+
|
|
3890
|
+
/** @internal */
|
|
3891
|
+
export type GetDeploymentGitSource10$Outbound = {
|
|
3892
|
+
type: string;
|
|
3893
|
+
ref: string;
|
|
3894
|
+
sha: string;
|
|
3895
|
+
gitUrl: string;
|
|
3896
|
+
};
|
|
3897
|
+
|
|
3898
|
+
/** @internal */
|
|
3899
|
+
export const GetDeploymentGitSource10$outboundSchema: z.ZodType<
|
|
3900
|
+
GetDeploymentGitSource10$Outbound,
|
|
3901
|
+
z.ZodTypeDef,
|
|
3902
|
+
GetDeploymentGitSource10
|
|
3903
|
+
> = z.object({
|
|
3904
|
+
type:
|
|
3905
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema,
|
|
3906
|
+
ref: z.string(),
|
|
3907
|
+
sha: z.string(),
|
|
3908
|
+
gitUrl: z.string(),
|
|
3909
|
+
});
|
|
3910
|
+
|
|
3911
|
+
/**
|
|
3912
|
+
* @internal
|
|
3913
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3914
|
+
*/
|
|
3915
|
+
export namespace GetDeploymentGitSource10$ {
|
|
3916
|
+
/** @deprecated use `GetDeploymentGitSource10$inboundSchema` instead. */
|
|
3917
|
+
export const inboundSchema = GetDeploymentGitSource10$inboundSchema;
|
|
3918
|
+
/** @deprecated use `GetDeploymentGitSource10$outboundSchema` instead. */
|
|
3919
|
+
export const outboundSchema = GetDeploymentGitSource10$outboundSchema;
|
|
3920
|
+
/** @deprecated use `GetDeploymentGitSource10$Outbound` instead. */
|
|
3921
|
+
export type Outbound = GetDeploymentGitSource10$Outbound;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
export function getDeploymentGitSource10ToJSON(
|
|
3925
|
+
getDeploymentGitSource10: GetDeploymentGitSource10,
|
|
3926
|
+
): string {
|
|
3927
|
+
return JSON.stringify(
|
|
3928
|
+
GetDeploymentGitSource10$outboundSchema.parse(getDeploymentGitSource10),
|
|
3929
|
+
);
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
export function getDeploymentGitSource10FromJSON(
|
|
3933
|
+
jsonString: string,
|
|
3934
|
+
): SafeParseResult<GetDeploymentGitSource10, SDKValidationError> {
|
|
3935
|
+
return safeParse(
|
|
3936
|
+
jsonString,
|
|
3937
|
+
(x) => GetDeploymentGitSource10$inboundSchema.parse(JSON.parse(x)),
|
|
3938
|
+
`Failed to parse 'GetDeploymentGitSource10' from JSON`,
|
|
3939
|
+
);
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
/** @internal */
|
|
3943
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema:
|
|
3944
|
+
z.ZodNativeEnum<
|
|
3945
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type
|
|
3946
|
+
> = z.nativeEnum(
|
|
3947
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type,
|
|
3948
|
+
);
|
|
3949
|
+
|
|
3950
|
+
/** @internal */
|
|
3951
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema:
|
|
3952
|
+
z.ZodNativeEnum<
|
|
3953
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type
|
|
3954
|
+
> =
|
|
3955
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema;
|
|
3956
|
+
|
|
3957
|
+
/**
|
|
3958
|
+
* @internal
|
|
3959
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3960
|
+
*/
|
|
3961
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$ {
|
|
3962
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema` instead. */
|
|
3963
|
+
export const inboundSchema =
|
|
3964
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema;
|
|
3965
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema` instead. */
|
|
3966
|
+
export const outboundSchema =
|
|
3967
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema;
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
/** @internal */
|
|
3971
|
+
export const GetDeploymentGitSource9$inboundSchema: z.ZodType<
|
|
3972
|
+
GetDeploymentGitSource9,
|
|
3973
|
+
z.ZodTypeDef,
|
|
3974
|
+
unknown
|
|
3975
|
+
> = z.object({
|
|
3976
|
+
type:
|
|
3977
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema,
|
|
3978
|
+
owner: z.string(),
|
|
3979
|
+
slug: z.string(),
|
|
3980
|
+
ref: z.nullable(z.string()).optional(),
|
|
3981
|
+
sha: z.string().optional(),
|
|
3982
|
+
prId: z.nullable(z.number()).optional(),
|
|
3983
|
+
});
|
|
3984
|
+
|
|
3985
|
+
/** @internal */
|
|
3986
|
+
export type GetDeploymentGitSource9$Outbound = {
|
|
3987
|
+
type: string;
|
|
3988
|
+
owner: string;
|
|
3989
|
+
slug: string;
|
|
3990
|
+
ref?: string | null | undefined;
|
|
3991
|
+
sha?: string | undefined;
|
|
3992
|
+
prId?: number | null | undefined;
|
|
3993
|
+
};
|
|
3994
|
+
|
|
3995
|
+
/** @internal */
|
|
3996
|
+
export const GetDeploymentGitSource9$outboundSchema: z.ZodType<
|
|
3997
|
+
GetDeploymentGitSource9$Outbound,
|
|
3998
|
+
z.ZodTypeDef,
|
|
3999
|
+
GetDeploymentGitSource9
|
|
4000
|
+
> = z.object({
|
|
4001
|
+
type:
|
|
4002
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema,
|
|
4003
|
+
owner: z.string(),
|
|
4004
|
+
slug: z.string(),
|
|
4005
|
+
ref: z.nullable(z.string()).optional(),
|
|
4006
|
+
sha: z.string().optional(),
|
|
4007
|
+
prId: z.nullable(z.number()).optional(),
|
|
4008
|
+
});
|
|
4009
|
+
|
|
4010
|
+
/**
|
|
4011
|
+
* @internal
|
|
4012
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4013
|
+
*/
|
|
4014
|
+
export namespace GetDeploymentGitSource9$ {
|
|
4015
|
+
/** @deprecated use `GetDeploymentGitSource9$inboundSchema` instead. */
|
|
4016
|
+
export const inboundSchema = GetDeploymentGitSource9$inboundSchema;
|
|
4017
|
+
/** @deprecated use `GetDeploymentGitSource9$outboundSchema` instead. */
|
|
4018
|
+
export const outboundSchema = GetDeploymentGitSource9$outboundSchema;
|
|
4019
|
+
/** @deprecated use `GetDeploymentGitSource9$Outbound` instead. */
|
|
4020
|
+
export type Outbound = GetDeploymentGitSource9$Outbound;
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
export function getDeploymentGitSource9ToJSON(
|
|
4024
|
+
getDeploymentGitSource9: GetDeploymentGitSource9,
|
|
4025
|
+
): string {
|
|
4026
|
+
return JSON.stringify(
|
|
4027
|
+
GetDeploymentGitSource9$outboundSchema.parse(getDeploymentGitSource9),
|
|
4028
|
+
);
|
|
4029
|
+
}
|
|
4030
|
+
|
|
4031
|
+
export function getDeploymentGitSource9FromJSON(
|
|
4032
|
+
jsonString: string,
|
|
4033
|
+
): SafeParseResult<GetDeploymentGitSource9, SDKValidationError> {
|
|
4034
|
+
return safeParse(
|
|
4035
|
+
jsonString,
|
|
4036
|
+
(x) => GetDeploymentGitSource9$inboundSchema.parse(JSON.parse(x)),
|
|
4037
|
+
`Failed to parse 'GetDeploymentGitSource9' from JSON`,
|
|
4038
|
+
);
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
/** @internal */
|
|
4042
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema:
|
|
4043
|
+
z.ZodNativeEnum<
|
|
4044
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type
|
|
4045
|
+
> = z.nativeEnum(
|
|
4046
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type,
|
|
4047
|
+
);
|
|
4048
|
+
|
|
4049
|
+
/** @internal */
|
|
4050
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema:
|
|
4051
|
+
z.ZodNativeEnum<
|
|
4052
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type
|
|
4053
|
+
> =
|
|
4054
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema;
|
|
4055
|
+
|
|
4056
|
+
/**
|
|
4057
|
+
* @internal
|
|
4058
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4059
|
+
*/
|
|
4060
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$ {
|
|
4061
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema` instead. */
|
|
4062
|
+
export const inboundSchema =
|
|
4063
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema;
|
|
4064
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema` instead. */
|
|
4065
|
+
export const outboundSchema =
|
|
4066
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
/** @internal */
|
|
4070
|
+
export const GetDeploymentGitSource8$inboundSchema: z.ZodType<
|
|
4071
|
+
GetDeploymentGitSource8,
|
|
4072
|
+
z.ZodTypeDef,
|
|
4073
|
+
unknown
|
|
4074
|
+
> = z.object({
|
|
4075
|
+
type:
|
|
4076
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema,
|
|
4077
|
+
workspaceUuid: z.string().optional(),
|
|
4078
|
+
repoUuid: z.string(),
|
|
4079
|
+
ref: z.nullable(z.string()).optional(),
|
|
4080
|
+
sha: z.string().optional(),
|
|
4081
|
+
prId: z.nullable(z.number()).optional(),
|
|
4082
|
+
});
|
|
4083
|
+
|
|
4084
|
+
/** @internal */
|
|
4085
|
+
export type GetDeploymentGitSource8$Outbound = {
|
|
4086
|
+
type: string;
|
|
4087
|
+
workspaceUuid?: string | undefined;
|
|
4088
|
+
repoUuid: string;
|
|
4089
|
+
ref?: string | null | undefined;
|
|
4090
|
+
sha?: string | undefined;
|
|
4091
|
+
prId?: number | null | undefined;
|
|
4092
|
+
};
|
|
4093
|
+
|
|
4094
|
+
/** @internal */
|
|
4095
|
+
export const GetDeploymentGitSource8$outboundSchema: z.ZodType<
|
|
4096
|
+
GetDeploymentGitSource8$Outbound,
|
|
4097
|
+
z.ZodTypeDef,
|
|
4098
|
+
GetDeploymentGitSource8
|
|
4099
|
+
> = z.object({
|
|
4100
|
+
type:
|
|
4101
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema,
|
|
4102
|
+
workspaceUuid: z.string().optional(),
|
|
4103
|
+
repoUuid: z.string(),
|
|
4104
|
+
ref: z.nullable(z.string()).optional(),
|
|
4105
|
+
sha: z.string().optional(),
|
|
4106
|
+
prId: z.nullable(z.number()).optional(),
|
|
4107
|
+
});
|
|
4108
|
+
|
|
4109
|
+
/**
|
|
4110
|
+
* @internal
|
|
4111
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4112
|
+
*/
|
|
4113
|
+
export namespace GetDeploymentGitSource8$ {
|
|
4114
|
+
/** @deprecated use `GetDeploymentGitSource8$inboundSchema` instead. */
|
|
4115
|
+
export const inboundSchema = GetDeploymentGitSource8$inboundSchema;
|
|
4116
|
+
/** @deprecated use `GetDeploymentGitSource8$outboundSchema` instead. */
|
|
4117
|
+
export const outboundSchema = GetDeploymentGitSource8$outboundSchema;
|
|
4118
|
+
/** @deprecated use `GetDeploymentGitSource8$Outbound` instead. */
|
|
4119
|
+
export type Outbound = GetDeploymentGitSource8$Outbound;
|
|
4120
|
+
}
|
|
4121
|
+
|
|
4122
|
+
export function getDeploymentGitSource8ToJSON(
|
|
4123
|
+
getDeploymentGitSource8: GetDeploymentGitSource8,
|
|
3654
4124
|
): string {
|
|
3655
4125
|
return JSON.stringify(
|
|
3656
4126
|
GetDeploymentGitSource8$outboundSchema.parse(getDeploymentGitSource8),
|
|
@@ -3682,17 +4152,77 @@ export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponse
|
|
|
3682
4152
|
> =
|
|
3683
4153
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema;
|
|
3684
4154
|
|
|
3685
|
-
/**
|
|
3686
|
-
* @internal
|
|
3687
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3688
|
-
*/
|
|
3689
|
-
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$ {
|
|
3690
|
-
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema` instead. */
|
|
3691
|
-
export const inboundSchema =
|
|
3692
|
-
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema;
|
|
3693
|
-
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema` instead. */
|
|
3694
|
-
export const outboundSchema =
|
|
3695
|
-
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema;
|
|
4155
|
+
/**
|
|
4156
|
+
* @internal
|
|
4157
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4158
|
+
*/
|
|
4159
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$ {
|
|
4160
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema` instead. */
|
|
4161
|
+
export const inboundSchema =
|
|
4162
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema;
|
|
4163
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema` instead. */
|
|
4164
|
+
export const outboundSchema =
|
|
4165
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
/** @internal */
|
|
4169
|
+
export const GetDeploymentGitSourceDeploymentsProjectId$inboundSchema:
|
|
4170
|
+
z.ZodType<GetDeploymentGitSourceDeploymentsProjectId, z.ZodTypeDef, unknown> =
|
|
4171
|
+
z.union([z.string(), z.number()]);
|
|
4172
|
+
|
|
4173
|
+
/** @internal */
|
|
4174
|
+
export type GetDeploymentGitSourceDeploymentsProjectId$Outbound =
|
|
4175
|
+
| string
|
|
4176
|
+
| number;
|
|
4177
|
+
|
|
4178
|
+
/** @internal */
|
|
4179
|
+
export const GetDeploymentGitSourceDeploymentsProjectId$outboundSchema:
|
|
4180
|
+
z.ZodType<
|
|
4181
|
+
GetDeploymentGitSourceDeploymentsProjectId$Outbound,
|
|
4182
|
+
z.ZodTypeDef,
|
|
4183
|
+
GetDeploymentGitSourceDeploymentsProjectId
|
|
4184
|
+
> = z.union([z.string(), z.number()]);
|
|
4185
|
+
|
|
4186
|
+
/**
|
|
4187
|
+
* @internal
|
|
4188
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4189
|
+
*/
|
|
4190
|
+
export namespace GetDeploymentGitSourceDeploymentsProjectId$ {
|
|
4191
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$inboundSchema` instead. */
|
|
4192
|
+
export const inboundSchema =
|
|
4193
|
+
GetDeploymentGitSourceDeploymentsProjectId$inboundSchema;
|
|
4194
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$outboundSchema` instead. */
|
|
4195
|
+
export const outboundSchema =
|
|
4196
|
+
GetDeploymentGitSourceDeploymentsProjectId$outboundSchema;
|
|
4197
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$Outbound` instead. */
|
|
4198
|
+
export type Outbound = GetDeploymentGitSourceDeploymentsProjectId$Outbound;
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
export function getDeploymentGitSourceDeploymentsProjectIdToJSON(
|
|
4202
|
+
getDeploymentGitSourceDeploymentsProjectId:
|
|
4203
|
+
GetDeploymentGitSourceDeploymentsProjectId,
|
|
4204
|
+
): string {
|
|
4205
|
+
return JSON.stringify(
|
|
4206
|
+
GetDeploymentGitSourceDeploymentsProjectId$outboundSchema.parse(
|
|
4207
|
+
getDeploymentGitSourceDeploymentsProjectId,
|
|
4208
|
+
),
|
|
4209
|
+
);
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
export function getDeploymentGitSourceDeploymentsProjectIdFromJSON(
|
|
4213
|
+
jsonString: string,
|
|
4214
|
+
): SafeParseResult<
|
|
4215
|
+
GetDeploymentGitSourceDeploymentsProjectId,
|
|
4216
|
+
SDKValidationError
|
|
4217
|
+
> {
|
|
4218
|
+
return safeParse(
|
|
4219
|
+
jsonString,
|
|
4220
|
+
(x) =>
|
|
4221
|
+
GetDeploymentGitSourceDeploymentsProjectId$inboundSchema.parse(
|
|
4222
|
+
JSON.parse(x),
|
|
4223
|
+
),
|
|
4224
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsProjectId' from JSON`,
|
|
4225
|
+
);
|
|
3696
4226
|
}
|
|
3697
4227
|
|
|
3698
4228
|
/** @internal */
|
|
@@ -3703,8 +4233,7 @@ export const GetDeploymentGitSource7$inboundSchema: z.ZodType<
|
|
|
3703
4233
|
> = z.object({
|
|
3704
4234
|
type:
|
|
3705
4235
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema,
|
|
3706
|
-
|
|
3707
|
-
slug: z.string(),
|
|
4236
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3708
4237
|
ref: z.nullable(z.string()).optional(),
|
|
3709
4238
|
sha: z.string().optional(),
|
|
3710
4239
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3713,8 +4242,7 @@ export const GetDeploymentGitSource7$inboundSchema: z.ZodType<
|
|
|
3713
4242
|
/** @internal */
|
|
3714
4243
|
export type GetDeploymentGitSource7$Outbound = {
|
|
3715
4244
|
type: string;
|
|
3716
|
-
|
|
3717
|
-
slug: string;
|
|
4245
|
+
projectId: string | number;
|
|
3718
4246
|
ref?: string | null | undefined;
|
|
3719
4247
|
sha?: string | undefined;
|
|
3720
4248
|
prId?: number | null | undefined;
|
|
@@ -3728,8 +4256,7 @@ export const GetDeploymentGitSource7$outboundSchema: z.ZodType<
|
|
|
3728
4256
|
> = z.object({
|
|
3729
4257
|
type:
|
|
3730
4258
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema,
|
|
3731
|
-
|
|
3732
|
-
slug: z.string(),
|
|
4259
|
+
projectId: z.union([z.string(), z.number()]),
|
|
3733
4260
|
ref: z.nullable(z.string()).optional(),
|
|
3734
4261
|
sha: z.string().optional(),
|
|
3735
4262
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3802,8 +4329,8 @@ export const GetDeploymentGitSource6$inboundSchema: z.ZodType<
|
|
|
3802
4329
|
> = z.object({
|
|
3803
4330
|
type:
|
|
3804
4331
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$inboundSchema,
|
|
3805
|
-
|
|
3806
|
-
|
|
4332
|
+
org: z.string(),
|
|
4333
|
+
repo: z.string(),
|
|
3807
4334
|
ref: z.nullable(z.string()).optional(),
|
|
3808
4335
|
sha: z.string().optional(),
|
|
3809
4336
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3812,8 +4339,8 @@ export const GetDeploymentGitSource6$inboundSchema: z.ZodType<
|
|
|
3812
4339
|
/** @internal */
|
|
3813
4340
|
export type GetDeploymentGitSource6$Outbound = {
|
|
3814
4341
|
type: string;
|
|
3815
|
-
|
|
3816
|
-
|
|
4342
|
+
org: string;
|
|
4343
|
+
repo: string;
|
|
3817
4344
|
ref?: string | null | undefined;
|
|
3818
4345
|
sha?: string | undefined;
|
|
3819
4346
|
prId?: number | null | undefined;
|
|
@@ -3827,8 +4354,8 @@ export const GetDeploymentGitSource6$outboundSchema: z.ZodType<
|
|
|
3827
4354
|
> = z.object({
|
|
3828
4355
|
type:
|
|
3829
4356
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$outboundSchema,
|
|
3830
|
-
|
|
3831
|
-
|
|
4357
|
+
org: z.string(),
|
|
4358
|
+
repo: z.string(),
|
|
3832
4359
|
ref: z.nullable(z.string()).optional(),
|
|
3833
4360
|
sha: z.string().optional(),
|
|
3834
4361
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3894,62 +4421,66 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResp
|
|
|
3894
4421
|
}
|
|
3895
4422
|
|
|
3896
4423
|
/** @internal */
|
|
3897
|
-
export const
|
|
3898
|
-
z.ZodType<
|
|
3899
|
-
|
|
4424
|
+
export const GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema:
|
|
4425
|
+
z.ZodType<
|
|
4426
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId,
|
|
4427
|
+
z.ZodTypeDef,
|
|
4428
|
+
unknown
|
|
4429
|
+
> = z.union([z.string(), z.number()]);
|
|
3900
4430
|
|
|
3901
4431
|
/** @internal */
|
|
3902
|
-
export type
|
|
4432
|
+
export type GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound =
|
|
3903
4433
|
| string
|
|
3904
4434
|
| number;
|
|
3905
4435
|
|
|
3906
4436
|
/** @internal */
|
|
3907
|
-
export const
|
|
4437
|
+
export const GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema:
|
|
3908
4438
|
z.ZodType<
|
|
3909
|
-
|
|
4439
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound,
|
|
3910
4440
|
z.ZodTypeDef,
|
|
3911
|
-
|
|
4441
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId
|
|
3912
4442
|
> = z.union([z.string(), z.number()]);
|
|
3913
4443
|
|
|
3914
4444
|
/**
|
|
3915
4445
|
* @internal
|
|
3916
4446
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3917
4447
|
*/
|
|
3918
|
-
export namespace
|
|
3919
|
-
/** @deprecated use `
|
|
4448
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200RepoId$ {
|
|
4449
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema` instead. */
|
|
3920
4450
|
export const inboundSchema =
|
|
3921
|
-
|
|
3922
|
-
/** @deprecated use `
|
|
4451
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema;
|
|
4452
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema` instead. */
|
|
3923
4453
|
export const outboundSchema =
|
|
3924
|
-
|
|
3925
|
-
/** @deprecated use `
|
|
3926
|
-
export type Outbound =
|
|
4454
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema;
|
|
4455
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound` instead. */
|
|
4456
|
+
export type Outbound =
|
|
4457
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound;
|
|
3927
4458
|
}
|
|
3928
4459
|
|
|
3929
|
-
export function
|
|
3930
|
-
|
|
3931
|
-
|
|
4460
|
+
export function getDeploymentGitSourceDeploymentsResponse200RepoIdToJSON(
|
|
4461
|
+
getDeploymentGitSourceDeploymentsResponse200RepoId:
|
|
4462
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId,
|
|
3932
4463
|
): string {
|
|
3933
4464
|
return JSON.stringify(
|
|
3934
|
-
|
|
3935
|
-
|
|
4465
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema.parse(
|
|
4466
|
+
getDeploymentGitSourceDeploymentsResponse200RepoId,
|
|
3936
4467
|
),
|
|
3937
4468
|
);
|
|
3938
4469
|
}
|
|
3939
4470
|
|
|
3940
|
-
export function
|
|
4471
|
+
export function getDeploymentGitSourceDeploymentsResponse200RepoIdFromJSON(
|
|
3941
4472
|
jsonString: string,
|
|
3942
4473
|
): SafeParseResult<
|
|
3943
|
-
|
|
4474
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId,
|
|
3944
4475
|
SDKValidationError
|
|
3945
4476
|
> {
|
|
3946
4477
|
return safeParse(
|
|
3947
4478
|
jsonString,
|
|
3948
4479
|
(x) =>
|
|
3949
|
-
|
|
4480
|
+
GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema.parse(
|
|
3950
4481
|
JSON.parse(x),
|
|
3951
4482
|
),
|
|
3952
|
-
`Failed to parse '
|
|
4483
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200RepoId' from JSON`,
|
|
3953
4484
|
);
|
|
3954
4485
|
}
|
|
3955
4486
|
|
|
@@ -3961,7 +4492,7 @@ export const GetDeploymentGitSource5$inboundSchema: z.ZodType<
|
|
|
3961
4492
|
> = z.object({
|
|
3962
4493
|
type:
|
|
3963
4494
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$inboundSchema,
|
|
3964
|
-
|
|
4495
|
+
repoId: z.union([z.string(), z.number()]),
|
|
3965
4496
|
ref: z.nullable(z.string()).optional(),
|
|
3966
4497
|
sha: z.string().optional(),
|
|
3967
4498
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -3970,7 +4501,7 @@ export const GetDeploymentGitSource5$inboundSchema: z.ZodType<
|
|
|
3970
4501
|
/** @internal */
|
|
3971
4502
|
export type GetDeploymentGitSource5$Outbound = {
|
|
3972
4503
|
type: string;
|
|
3973
|
-
|
|
4504
|
+
repoId: string | number;
|
|
3974
4505
|
ref?: string | null | undefined;
|
|
3975
4506
|
sha?: string | undefined;
|
|
3976
4507
|
prId?: number | null | undefined;
|
|
@@ -3984,7 +4515,7 @@ export const GetDeploymentGitSource5$outboundSchema: z.ZodType<
|
|
|
3984
4515
|
> = z.object({
|
|
3985
4516
|
type:
|
|
3986
4517
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema,
|
|
3987
|
-
|
|
4518
|
+
repoId: z.union([z.string(), z.number()]),
|
|
3988
4519
|
ref: z.nullable(z.string()).optional(),
|
|
3989
4520
|
sha: z.string().optional(),
|
|
3990
4521
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -4152,61 +4683,66 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResp
|
|
|
4152
4683
|
}
|
|
4153
4684
|
|
|
4154
4685
|
/** @internal */
|
|
4155
|
-
export const
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4686
|
+
export const GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema:
|
|
4687
|
+
z.ZodType<
|
|
4688
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4689
|
+
z.ZodTypeDef,
|
|
4690
|
+
unknown
|
|
4691
|
+
> = z.union([z.string(), z.number()]);
|
|
4160
4692
|
|
|
4161
4693
|
/** @internal */
|
|
4162
|
-
export type
|
|
4694
|
+
export type GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound =
|
|
4695
|
+
| string
|
|
4696
|
+
| number;
|
|
4163
4697
|
|
|
4164
4698
|
/** @internal */
|
|
4165
|
-
export const
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4699
|
+
export const GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema:
|
|
4700
|
+
z.ZodType<
|
|
4701
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound,
|
|
4702
|
+
z.ZodTypeDef,
|
|
4703
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId
|
|
4704
|
+
> = z.union([z.string(), z.number()]);
|
|
4170
4705
|
|
|
4171
4706
|
/**
|
|
4172
4707
|
* @internal
|
|
4173
4708
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4174
4709
|
*/
|
|
4175
|
-
export namespace
|
|
4176
|
-
/** @deprecated use `
|
|
4710
|
+
export namespace GetDeploymentGitSourceDeploymentsResponseRepoId$ {
|
|
4711
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema` instead. */
|
|
4177
4712
|
export const inboundSchema =
|
|
4178
|
-
|
|
4179
|
-
/** @deprecated use `
|
|
4713
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema;
|
|
4714
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema` instead. */
|
|
4180
4715
|
export const outboundSchema =
|
|
4181
|
-
|
|
4182
|
-
/** @deprecated use `
|
|
4183
|
-
export type Outbound =
|
|
4716
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema;
|
|
4717
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound` instead. */
|
|
4718
|
+
export type Outbound =
|
|
4719
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound;
|
|
4184
4720
|
}
|
|
4185
4721
|
|
|
4186
|
-
export function
|
|
4187
|
-
|
|
4188
|
-
|
|
4722
|
+
export function getDeploymentGitSourceDeploymentsResponseRepoIdToJSON(
|
|
4723
|
+
getDeploymentGitSourceDeploymentsResponseRepoId:
|
|
4724
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4189
4725
|
): string {
|
|
4190
4726
|
return JSON.stringify(
|
|
4191
|
-
|
|
4192
|
-
|
|
4727
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema.parse(
|
|
4728
|
+
getDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4193
4729
|
),
|
|
4194
4730
|
);
|
|
4195
4731
|
}
|
|
4196
4732
|
|
|
4197
|
-
export function
|
|
4733
|
+
export function getDeploymentGitSourceDeploymentsResponseRepoIdFromJSON(
|
|
4198
4734
|
jsonString: string,
|
|
4199
4735
|
): SafeParseResult<
|
|
4200
|
-
|
|
4736
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId,
|
|
4201
4737
|
SDKValidationError
|
|
4202
4738
|
> {
|
|
4203
4739
|
return safeParse(
|
|
4204
4740
|
jsonString,
|
|
4205
4741
|
(x) =>
|
|
4206
|
-
|
|
4742
|
+
GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema.parse(
|
|
4207
4743
|
JSON.parse(x),
|
|
4208
4744
|
),
|
|
4209
|
-
`Failed to parse '
|
|
4745
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponseRepoId' from JSON`,
|
|
4210
4746
|
);
|
|
4211
4747
|
}
|
|
4212
4748
|
|
|
@@ -4409,52 +4945,61 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResp
|
|
|
4409
4945
|
}
|
|
4410
4946
|
|
|
4411
4947
|
/** @internal */
|
|
4412
|
-
export const
|
|
4413
|
-
|
|
4948
|
+
export const GetDeploymentGitSourceDeploymentsRepoId$inboundSchema: z.ZodType<
|
|
4949
|
+
GetDeploymentGitSourceDeploymentsRepoId,
|
|
4414
4950
|
z.ZodTypeDef,
|
|
4415
4951
|
unknown
|
|
4416
4952
|
> = z.union([z.string(), z.number()]);
|
|
4417
4953
|
|
|
4418
4954
|
/** @internal */
|
|
4419
|
-
export type
|
|
4955
|
+
export type GetDeploymentGitSourceDeploymentsRepoId$Outbound = string | number;
|
|
4420
4956
|
|
|
4421
4957
|
/** @internal */
|
|
4422
|
-
export const
|
|
4423
|
-
|
|
4958
|
+
export const GetDeploymentGitSourceDeploymentsRepoId$outboundSchema: z.ZodType<
|
|
4959
|
+
GetDeploymentGitSourceDeploymentsRepoId$Outbound,
|
|
4424
4960
|
z.ZodTypeDef,
|
|
4425
|
-
|
|
4961
|
+
GetDeploymentGitSourceDeploymentsRepoId
|
|
4426
4962
|
> = z.union([z.string(), z.number()]);
|
|
4427
4963
|
|
|
4428
4964
|
/**
|
|
4429
4965
|
* @internal
|
|
4430
4966
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4431
4967
|
*/
|
|
4432
|
-
export namespace
|
|
4433
|
-
/** @deprecated use `
|
|
4434
|
-
export const inboundSchema =
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4968
|
+
export namespace GetDeploymentGitSourceDeploymentsRepoId$ {
|
|
4969
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$inboundSchema` instead. */
|
|
4970
|
+
export const inboundSchema =
|
|
4971
|
+
GetDeploymentGitSourceDeploymentsRepoId$inboundSchema;
|
|
4972
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$outboundSchema` instead. */
|
|
4973
|
+
export const outboundSchema =
|
|
4974
|
+
GetDeploymentGitSourceDeploymentsRepoId$outboundSchema;
|
|
4975
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$Outbound` instead. */
|
|
4976
|
+
export type Outbound = GetDeploymentGitSourceDeploymentsRepoId$Outbound;
|
|
4439
4977
|
}
|
|
4440
4978
|
|
|
4441
|
-
export function
|
|
4442
|
-
|
|
4979
|
+
export function getDeploymentGitSourceDeploymentsRepoIdToJSON(
|
|
4980
|
+
getDeploymentGitSourceDeploymentsRepoId:
|
|
4981
|
+
GetDeploymentGitSourceDeploymentsRepoId,
|
|
4443
4982
|
): string {
|
|
4444
4983
|
return JSON.stringify(
|
|
4445
|
-
|
|
4446
|
-
|
|
4984
|
+
GetDeploymentGitSourceDeploymentsRepoId$outboundSchema.parse(
|
|
4985
|
+
getDeploymentGitSourceDeploymentsRepoId,
|
|
4447
4986
|
),
|
|
4448
4987
|
);
|
|
4449
4988
|
}
|
|
4450
4989
|
|
|
4451
|
-
export function
|
|
4990
|
+
export function getDeploymentGitSourceDeploymentsRepoIdFromJSON(
|
|
4452
4991
|
jsonString: string,
|
|
4453
|
-
): SafeParseResult<
|
|
4992
|
+
): SafeParseResult<
|
|
4993
|
+
GetDeploymentGitSourceDeploymentsRepoId,
|
|
4994
|
+
SDKValidationError
|
|
4995
|
+
> {
|
|
4454
4996
|
return safeParse(
|
|
4455
4997
|
jsonString,
|
|
4456
|
-
(x) =>
|
|
4457
|
-
|
|
4998
|
+
(x) =>
|
|
4999
|
+
GetDeploymentGitSourceDeploymentsRepoId$inboundSchema.parse(
|
|
5000
|
+
JSON.parse(x),
|
|
5001
|
+
),
|
|
5002
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsRepoId' from JSON`,
|
|
4458
5003
|
);
|
|
4459
5004
|
}
|
|
4460
5005
|
|
|
@@ -4532,34 +5077,40 @@ export const ResponseBodyGitSource$inboundSchema: z.ZodType<
|
|
|
4532
5077
|
z.ZodTypeDef,
|
|
4533
5078
|
unknown
|
|
4534
5079
|
> = z.union([
|
|
4535
|
-
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
4536
5080
|
z.lazy(() => GetDeploymentGitSource12$inboundSchema),
|
|
5081
|
+
z.lazy(() => GetDeploymentGitSource15$inboundSchema),
|
|
4537
5082
|
z.lazy(() => GetDeploymentGitSource4$inboundSchema),
|
|
4538
|
-
z.lazy(() =>
|
|
4539
|
-
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
5083
|
+
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
4540
5084
|
z.lazy(() => GetDeploymentGitSource11$inboundSchema),
|
|
5085
|
+
z.lazy(() => GetDeploymentGitSource13$inboundSchema),
|
|
5086
|
+
z.lazy(() => GetDeploymentGitSource14$inboundSchema),
|
|
4541
5087
|
z.lazy(() => GetDeploymentGitSource2$inboundSchema),
|
|
4542
5088
|
z.lazy(() => GetDeploymentGitSource3$inboundSchema),
|
|
4543
|
-
z.lazy(() =>
|
|
5089
|
+
z.lazy(() => GetDeploymentGitSource6$inboundSchema),
|
|
5090
|
+
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
4544
5091
|
z.lazy(() => GetDeploymentGitSource1$inboundSchema),
|
|
4545
5092
|
z.lazy(() => GetDeploymentGitSource5$inboundSchema),
|
|
4546
|
-
z.lazy(() =>
|
|
5093
|
+
z.lazy(() => GetDeploymentGitSource7$inboundSchema),
|
|
5094
|
+
z.lazy(() => GetDeploymentGitSource8$inboundSchema),
|
|
4547
5095
|
]);
|
|
4548
5096
|
|
|
4549
5097
|
/** @internal */
|
|
4550
5098
|
export type ResponseBodyGitSource$Outbound =
|
|
4551
|
-
| GetDeploymentGitSource10$Outbound
|
|
4552
5099
|
| GetDeploymentGitSource12$Outbound
|
|
5100
|
+
| GetDeploymentGitSource15$Outbound
|
|
4553
5101
|
| GetDeploymentGitSource4$Outbound
|
|
4554
|
-
|
|
|
4555
|
-
| GetDeploymentGitSource9$Outbound
|
|
5102
|
+
| GetDeploymentGitSource10$Outbound
|
|
4556
5103
|
| GetDeploymentGitSource11$Outbound
|
|
5104
|
+
| GetDeploymentGitSource13$Outbound
|
|
5105
|
+
| GetDeploymentGitSource14$Outbound
|
|
4557
5106
|
| GetDeploymentGitSource2$Outbound
|
|
4558
5107
|
| GetDeploymentGitSource3$Outbound
|
|
4559
|
-
|
|
|
5108
|
+
| GetDeploymentGitSource6$Outbound
|
|
5109
|
+
| GetDeploymentGitSource9$Outbound
|
|
4560
5110
|
| GetDeploymentGitSource1$Outbound
|
|
4561
5111
|
| GetDeploymentGitSource5$Outbound
|
|
4562
|
-
|
|
|
5112
|
+
| GetDeploymentGitSource7$Outbound
|
|
5113
|
+
| GetDeploymentGitSource8$Outbound;
|
|
4563
5114
|
|
|
4564
5115
|
/** @internal */
|
|
4565
5116
|
export const ResponseBodyGitSource$outboundSchema: z.ZodType<
|
|
@@ -4567,18 +5118,21 @@ export const ResponseBodyGitSource$outboundSchema: z.ZodType<
|
|
|
4567
5118
|
z.ZodTypeDef,
|
|
4568
5119
|
ResponseBodyGitSource
|
|
4569
5120
|
> = z.union([
|
|
4570
|
-
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
4571
5121
|
z.lazy(() => GetDeploymentGitSource12$outboundSchema),
|
|
5122
|
+
z.lazy(() => GetDeploymentGitSource15$outboundSchema),
|
|
4572
5123
|
z.lazy(() => GetDeploymentGitSource4$outboundSchema),
|
|
4573
|
-
z.lazy(() =>
|
|
4574
|
-
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
5124
|
+
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
4575
5125
|
z.lazy(() => GetDeploymentGitSource11$outboundSchema),
|
|
5126
|
+
z.lazy(() => GetDeploymentGitSource13$outboundSchema),
|
|
5127
|
+
z.lazy(() => GetDeploymentGitSource14$outboundSchema),
|
|
4576
5128
|
z.lazy(() => GetDeploymentGitSource2$outboundSchema),
|
|
4577
5129
|
z.lazy(() => GetDeploymentGitSource3$outboundSchema),
|
|
4578
|
-
z.lazy(() =>
|
|
5130
|
+
z.lazy(() => GetDeploymentGitSource6$outboundSchema),
|
|
5131
|
+
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
4579
5132
|
z.lazy(() => GetDeploymentGitSource1$outboundSchema),
|
|
4580
5133
|
z.lazy(() => GetDeploymentGitSource5$outboundSchema),
|
|
4581
|
-
z.lazy(() =>
|
|
5134
|
+
z.lazy(() => GetDeploymentGitSource7$outboundSchema),
|
|
5135
|
+
z.lazy(() => GetDeploymentGitSource8$outboundSchema),
|
|
4582
5136
|
]);
|
|
4583
5137
|
|
|
4584
5138
|
/**
|
|
@@ -4612,6 +5166,30 @@ export function responseBodyGitSourceFromJSON(
|
|
|
4612
5166
|
);
|
|
4613
5167
|
}
|
|
4614
5168
|
|
|
5169
|
+
/** @internal */
|
|
5170
|
+
export const GetDeploymentResponseBodyNodeVersion$inboundSchema:
|
|
5171
|
+
z.ZodNativeEnum<typeof GetDeploymentResponseBodyNodeVersion> = z.nativeEnum(
|
|
5172
|
+
GetDeploymentResponseBodyNodeVersion,
|
|
5173
|
+
);
|
|
5174
|
+
|
|
5175
|
+
/** @internal */
|
|
5176
|
+
export const GetDeploymentResponseBodyNodeVersion$outboundSchema:
|
|
5177
|
+
z.ZodNativeEnum<typeof GetDeploymentResponseBodyNodeVersion> =
|
|
5178
|
+
GetDeploymentResponseBodyNodeVersion$inboundSchema;
|
|
5179
|
+
|
|
5180
|
+
/**
|
|
5181
|
+
* @internal
|
|
5182
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5183
|
+
*/
|
|
5184
|
+
export namespace GetDeploymentResponseBodyNodeVersion$ {
|
|
5185
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$inboundSchema` instead. */
|
|
5186
|
+
export const inboundSchema =
|
|
5187
|
+
GetDeploymentResponseBodyNodeVersion$inboundSchema;
|
|
5188
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$outboundSchema` instead. */
|
|
5189
|
+
export const outboundSchema =
|
|
5190
|
+
GetDeploymentResponseBodyNodeVersion$outboundSchema;
|
|
5191
|
+
}
|
|
5192
|
+
|
|
4615
5193
|
/** @internal */
|
|
4616
5194
|
export const GetDeploymentResponseBodyProject$inboundSchema: z.ZodType<
|
|
4617
5195
|
GetDeploymentResponseBodyProject,
|
|
@@ -4893,21 +5471,25 @@ export const GetDeploymentResponseBody2$inboundSchema: z.ZodType<
|
|
|
4893
5471
|
errorStep: z.string().optional(),
|
|
4894
5472
|
passiveRegions: z.array(z.string()).optional(),
|
|
4895
5473
|
gitSource: z.union([
|
|
4896
|
-
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
4897
5474
|
z.lazy(() => GetDeploymentGitSource12$inboundSchema),
|
|
4898
|
-
z.lazy(() =>
|
|
4899
|
-
z.lazy(() =>
|
|
4900
|
-
z.lazy(() =>
|
|
5475
|
+
z.lazy(() => GetDeploymentGitSource15$inboundSchema),
|
|
5476
|
+
z.lazy(() => GetDeploymentGitSource4$inboundSchema),
|
|
5477
|
+
z.lazy(() => GetDeploymentGitSource10$inboundSchema),
|
|
4901
5478
|
z.lazy(() => GetDeploymentGitSource11$inboundSchema),
|
|
5479
|
+
z.lazy(() => GetDeploymentGitSource13$inboundSchema),
|
|
5480
|
+
z.lazy(() => GetDeploymentGitSource14$inboundSchema),
|
|
4902
5481
|
z.lazy(() => GetDeploymentGitSource2$inboundSchema),
|
|
4903
5482
|
z.lazy(() => GetDeploymentGitSource3$inboundSchema),
|
|
4904
|
-
z.lazy(() =>
|
|
5483
|
+
z.lazy(() => GetDeploymentGitSource6$inboundSchema),
|
|
5484
|
+
z.lazy(() => GetDeploymentGitSource9$inboundSchema),
|
|
4905
5485
|
z.lazy(() => GetDeploymentGitSource1$inboundSchema),
|
|
4906
5486
|
z.lazy(() => GetDeploymentGitSource5$inboundSchema),
|
|
4907
|
-
z.lazy(() =>
|
|
5487
|
+
z.lazy(() => GetDeploymentGitSource7$inboundSchema),
|
|
5488
|
+
z.lazy(() => GetDeploymentGitSource8$inboundSchema),
|
|
4908
5489
|
]).optional(),
|
|
4909
5490
|
meta: z.record(z.string()),
|
|
4910
5491
|
originCacheRegion: z.string().optional(),
|
|
5492
|
+
nodeVersion: GetDeploymentResponseBodyNodeVersion$inboundSchema.optional(),
|
|
4911
5493
|
project: z.lazy(() => GetDeploymentResponseBodyProject$inboundSchema)
|
|
4912
5494
|
.optional(),
|
|
4913
5495
|
readySubstate: GetDeploymentResponseBodyReadySubstate$inboundSchema
|
|
@@ -4970,21 +5552,25 @@ export type GetDeploymentResponseBody2$Outbound = {
|
|
|
4970
5552
|
errorStep?: string | undefined;
|
|
4971
5553
|
passiveRegions?: Array<string> | undefined;
|
|
4972
5554
|
gitSource?:
|
|
4973
|
-
| GetDeploymentGitSource10$Outbound
|
|
4974
5555
|
| GetDeploymentGitSource12$Outbound
|
|
5556
|
+
| GetDeploymentGitSource15$Outbound
|
|
4975
5557
|
| GetDeploymentGitSource4$Outbound
|
|
4976
|
-
|
|
|
4977
|
-
| GetDeploymentGitSource9$Outbound
|
|
5558
|
+
| GetDeploymentGitSource10$Outbound
|
|
4978
5559
|
| GetDeploymentGitSource11$Outbound
|
|
5560
|
+
| GetDeploymentGitSource13$Outbound
|
|
5561
|
+
| GetDeploymentGitSource14$Outbound
|
|
4979
5562
|
| GetDeploymentGitSource2$Outbound
|
|
4980
5563
|
| GetDeploymentGitSource3$Outbound
|
|
4981
|
-
|
|
|
5564
|
+
| GetDeploymentGitSource6$Outbound
|
|
5565
|
+
| GetDeploymentGitSource9$Outbound
|
|
4982
5566
|
| GetDeploymentGitSource1$Outbound
|
|
4983
5567
|
| GetDeploymentGitSource5$Outbound
|
|
4984
|
-
|
|
|
5568
|
+
| GetDeploymentGitSource7$Outbound
|
|
5569
|
+
| GetDeploymentGitSource8$Outbound
|
|
4985
5570
|
| undefined;
|
|
4986
5571
|
meta: { [k: string]: string };
|
|
4987
5572
|
originCacheRegion?: string | undefined;
|
|
5573
|
+
nodeVersion?: string | undefined;
|
|
4988
5574
|
project?: GetDeploymentResponseBodyProject$Outbound | undefined;
|
|
4989
5575
|
readySubstate?: string | undefined;
|
|
4990
5576
|
regions: Array<string>;
|
|
@@ -5054,21 +5640,25 @@ export const GetDeploymentResponseBody2$outboundSchema: z.ZodType<
|
|
|
5054
5640
|
errorStep: z.string().optional(),
|
|
5055
5641
|
passiveRegions: z.array(z.string()).optional(),
|
|
5056
5642
|
gitSource: z.union([
|
|
5057
|
-
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
5058
5643
|
z.lazy(() => GetDeploymentGitSource12$outboundSchema),
|
|
5644
|
+
z.lazy(() => GetDeploymentGitSource15$outboundSchema),
|
|
5059
5645
|
z.lazy(() => GetDeploymentGitSource4$outboundSchema),
|
|
5060
|
-
z.lazy(() =>
|
|
5061
|
-
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
5646
|
+
z.lazy(() => GetDeploymentGitSource10$outboundSchema),
|
|
5062
5647
|
z.lazy(() => GetDeploymentGitSource11$outboundSchema),
|
|
5648
|
+
z.lazy(() => GetDeploymentGitSource13$outboundSchema),
|
|
5649
|
+
z.lazy(() => GetDeploymentGitSource14$outboundSchema),
|
|
5063
5650
|
z.lazy(() => GetDeploymentGitSource2$outboundSchema),
|
|
5064
5651
|
z.lazy(() => GetDeploymentGitSource3$outboundSchema),
|
|
5065
|
-
z.lazy(() =>
|
|
5652
|
+
z.lazy(() => GetDeploymentGitSource6$outboundSchema),
|
|
5653
|
+
z.lazy(() => GetDeploymentGitSource9$outboundSchema),
|
|
5066
5654
|
z.lazy(() => GetDeploymentGitSource1$outboundSchema),
|
|
5067
5655
|
z.lazy(() => GetDeploymentGitSource5$outboundSchema),
|
|
5068
|
-
z.lazy(() =>
|
|
5656
|
+
z.lazy(() => GetDeploymentGitSource7$outboundSchema),
|
|
5657
|
+
z.lazy(() => GetDeploymentGitSource8$outboundSchema),
|
|
5069
5658
|
]).optional(),
|
|
5070
5659
|
meta: z.record(z.string()),
|
|
5071
5660
|
originCacheRegion: z.string().optional(),
|
|
5661
|
+
nodeVersion: GetDeploymentResponseBodyNodeVersion$outboundSchema.optional(),
|
|
5072
5662
|
project: z.lazy(() => GetDeploymentResponseBodyProject$outboundSchema)
|
|
5073
5663
|
.optional(),
|
|
5074
5664
|
readySubstate: GetDeploymentResponseBodyReadySubstate$outboundSchema
|
|
@@ -6781,177 +7371,486 @@ export const GetDeploymentResponseBodyAliasWarning$outboundSchema: z.ZodType<
|
|
|
6781
7371
|
* @internal
|
|
6782
7372
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6783
7373
|
*/
|
|
6784
|
-
export namespace GetDeploymentResponseBodyAliasWarning$ {
|
|
6785
|
-
/** @deprecated use `GetDeploymentResponseBodyAliasWarning$inboundSchema` instead. */
|
|
7374
|
+
export namespace GetDeploymentResponseBodyAliasWarning$ {
|
|
7375
|
+
/** @deprecated use `GetDeploymentResponseBodyAliasWarning$inboundSchema` instead. */
|
|
7376
|
+
export const inboundSchema =
|
|
7377
|
+
GetDeploymentResponseBodyAliasWarning$inboundSchema;
|
|
7378
|
+
/** @deprecated use `GetDeploymentResponseBodyAliasWarning$outboundSchema` instead. */
|
|
7379
|
+
export const outboundSchema =
|
|
7380
|
+
GetDeploymentResponseBodyAliasWarning$outboundSchema;
|
|
7381
|
+
/** @deprecated use `GetDeploymentResponseBodyAliasWarning$Outbound` instead. */
|
|
7382
|
+
export type Outbound = GetDeploymentResponseBodyAliasWarning$Outbound;
|
|
7383
|
+
}
|
|
7384
|
+
|
|
7385
|
+
export function getDeploymentResponseBodyAliasWarningToJSON(
|
|
7386
|
+
getDeploymentResponseBodyAliasWarning: GetDeploymentResponseBodyAliasWarning,
|
|
7387
|
+
): string {
|
|
7388
|
+
return JSON.stringify(
|
|
7389
|
+
GetDeploymentResponseBodyAliasWarning$outboundSchema.parse(
|
|
7390
|
+
getDeploymentResponseBodyAliasWarning,
|
|
7391
|
+
),
|
|
7392
|
+
);
|
|
7393
|
+
}
|
|
7394
|
+
|
|
7395
|
+
export function getDeploymentResponseBodyAliasWarningFromJSON(
|
|
7396
|
+
jsonString: string,
|
|
7397
|
+
): SafeParseResult<GetDeploymentResponseBodyAliasWarning, SDKValidationError> {
|
|
7398
|
+
return safeParse(
|
|
7399
|
+
jsonString,
|
|
7400
|
+
(x) =>
|
|
7401
|
+
GetDeploymentResponseBodyAliasWarning$inboundSchema.parse(JSON.parse(x)),
|
|
7402
|
+
`Failed to parse 'GetDeploymentResponseBodyAliasWarning' from JSON`,
|
|
7403
|
+
);
|
|
7404
|
+
}
|
|
7405
|
+
|
|
7406
|
+
/** @internal */
|
|
7407
|
+
export const GetDeploymentResponseBodyType$inboundSchema: z.ZodNativeEnum<
|
|
7408
|
+
typeof GetDeploymentResponseBodyType
|
|
7409
|
+
> = z.nativeEnum(GetDeploymentResponseBodyType);
|
|
7410
|
+
|
|
7411
|
+
/** @internal */
|
|
7412
|
+
export const GetDeploymentResponseBodyType$outboundSchema: z.ZodNativeEnum<
|
|
7413
|
+
typeof GetDeploymentResponseBodyType
|
|
7414
|
+
> = GetDeploymentResponseBodyType$inboundSchema;
|
|
7415
|
+
|
|
7416
|
+
/**
|
|
7417
|
+
* @internal
|
|
7418
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7419
|
+
*/
|
|
7420
|
+
export namespace GetDeploymentResponseBodyType$ {
|
|
7421
|
+
/** @deprecated use `GetDeploymentResponseBodyType$inboundSchema` instead. */
|
|
7422
|
+
export const inboundSchema = GetDeploymentResponseBodyType$inboundSchema;
|
|
7423
|
+
/** @deprecated use `GetDeploymentResponseBodyType$outboundSchema` instead. */
|
|
7424
|
+
export const outboundSchema = GetDeploymentResponseBodyType$outboundSchema;
|
|
7425
|
+
}
|
|
7426
|
+
|
|
7427
|
+
/** @internal */
|
|
7428
|
+
export const ResponseBodyReadyState$inboundSchema: z.ZodNativeEnum<
|
|
7429
|
+
typeof ResponseBodyReadyState
|
|
7430
|
+
> = z.nativeEnum(ResponseBodyReadyState);
|
|
7431
|
+
|
|
7432
|
+
/** @internal */
|
|
7433
|
+
export const ResponseBodyReadyState$outboundSchema: z.ZodNativeEnum<
|
|
7434
|
+
typeof ResponseBodyReadyState
|
|
7435
|
+
> = ResponseBodyReadyState$inboundSchema;
|
|
7436
|
+
|
|
7437
|
+
/**
|
|
7438
|
+
* @internal
|
|
7439
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7440
|
+
*/
|
|
7441
|
+
export namespace ResponseBodyReadyState$ {
|
|
7442
|
+
/** @deprecated use `ResponseBodyReadyState$inboundSchema` instead. */
|
|
7443
|
+
export const inboundSchema = ResponseBodyReadyState$inboundSchema;
|
|
7444
|
+
/** @deprecated use `ResponseBodyReadyState$outboundSchema` instead. */
|
|
7445
|
+
export const outboundSchema = ResponseBodyReadyState$outboundSchema;
|
|
7446
|
+
}
|
|
7447
|
+
|
|
7448
|
+
/** @internal */
|
|
7449
|
+
export const ResponseBodyAliasError$inboundSchema: z.ZodType<
|
|
7450
|
+
ResponseBodyAliasError,
|
|
7451
|
+
z.ZodTypeDef,
|
|
7452
|
+
unknown
|
|
7453
|
+
> = z.object({
|
|
7454
|
+
code: z.string(),
|
|
7455
|
+
message: z.string(),
|
|
7456
|
+
});
|
|
7457
|
+
|
|
7458
|
+
/** @internal */
|
|
7459
|
+
export type ResponseBodyAliasError$Outbound = {
|
|
7460
|
+
code: string;
|
|
7461
|
+
message: string;
|
|
7462
|
+
};
|
|
7463
|
+
|
|
7464
|
+
/** @internal */
|
|
7465
|
+
export const ResponseBodyAliasError$outboundSchema: z.ZodType<
|
|
7466
|
+
ResponseBodyAliasError$Outbound,
|
|
7467
|
+
z.ZodTypeDef,
|
|
7468
|
+
ResponseBodyAliasError
|
|
7469
|
+
> = z.object({
|
|
7470
|
+
code: z.string(),
|
|
7471
|
+
message: z.string(),
|
|
7472
|
+
});
|
|
7473
|
+
|
|
7474
|
+
/**
|
|
7475
|
+
* @internal
|
|
7476
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7477
|
+
*/
|
|
7478
|
+
export namespace ResponseBodyAliasError$ {
|
|
7479
|
+
/** @deprecated use `ResponseBodyAliasError$inboundSchema` instead. */
|
|
7480
|
+
export const inboundSchema = ResponseBodyAliasError$inboundSchema;
|
|
7481
|
+
/** @deprecated use `ResponseBodyAliasError$outboundSchema` instead. */
|
|
7482
|
+
export const outboundSchema = ResponseBodyAliasError$outboundSchema;
|
|
7483
|
+
/** @deprecated use `ResponseBodyAliasError$Outbound` instead. */
|
|
7484
|
+
export type Outbound = ResponseBodyAliasError$Outbound;
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7487
|
+
export function responseBodyAliasErrorToJSON(
|
|
7488
|
+
responseBodyAliasError: ResponseBodyAliasError,
|
|
7489
|
+
): string {
|
|
7490
|
+
return JSON.stringify(
|
|
7491
|
+
ResponseBodyAliasError$outboundSchema.parse(responseBodyAliasError),
|
|
7492
|
+
);
|
|
7493
|
+
}
|
|
7494
|
+
|
|
7495
|
+
export function responseBodyAliasErrorFromJSON(
|
|
7496
|
+
jsonString: string,
|
|
7497
|
+
): SafeParseResult<ResponseBodyAliasError, SDKValidationError> {
|
|
7498
|
+
return safeParse(
|
|
7499
|
+
jsonString,
|
|
7500
|
+
(x) => ResponseBodyAliasError$inboundSchema.parse(JSON.parse(x)),
|
|
7501
|
+
`Failed to parse 'ResponseBodyAliasError' from JSON`,
|
|
7502
|
+
);
|
|
7503
|
+
}
|
|
7504
|
+
|
|
7505
|
+
/** @internal */
|
|
7506
|
+
export const ResponseBodyChecksState$inboundSchema: z.ZodNativeEnum<
|
|
7507
|
+
typeof ResponseBodyChecksState
|
|
7508
|
+
> = z.nativeEnum(ResponseBodyChecksState);
|
|
7509
|
+
|
|
7510
|
+
/** @internal */
|
|
7511
|
+
export const ResponseBodyChecksState$outboundSchema: z.ZodNativeEnum<
|
|
7512
|
+
typeof ResponseBodyChecksState
|
|
7513
|
+
> = ResponseBodyChecksState$inboundSchema;
|
|
7514
|
+
|
|
7515
|
+
/**
|
|
7516
|
+
* @internal
|
|
7517
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7518
|
+
*/
|
|
7519
|
+
export namespace ResponseBodyChecksState$ {
|
|
7520
|
+
/** @deprecated use `ResponseBodyChecksState$inboundSchema` instead. */
|
|
7521
|
+
export const inboundSchema = ResponseBodyChecksState$inboundSchema;
|
|
7522
|
+
/** @deprecated use `ResponseBodyChecksState$outboundSchema` instead. */
|
|
7523
|
+
export const outboundSchema = ResponseBodyChecksState$outboundSchema;
|
|
7524
|
+
}
|
|
7525
|
+
|
|
7526
|
+
/** @internal */
|
|
7527
|
+
export const ResponseBodyChecksConclusion$inboundSchema: z.ZodNativeEnum<
|
|
7528
|
+
typeof ResponseBodyChecksConclusion
|
|
7529
|
+
> = z.nativeEnum(ResponseBodyChecksConclusion);
|
|
7530
|
+
|
|
7531
|
+
/** @internal */
|
|
7532
|
+
export const ResponseBodyChecksConclusion$outboundSchema: z.ZodNativeEnum<
|
|
7533
|
+
typeof ResponseBodyChecksConclusion
|
|
7534
|
+
> = ResponseBodyChecksConclusion$inboundSchema;
|
|
7535
|
+
|
|
7536
|
+
/**
|
|
7537
|
+
* @internal
|
|
7538
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7539
|
+
*/
|
|
7540
|
+
export namespace ResponseBodyChecksConclusion$ {
|
|
7541
|
+
/** @deprecated use `ResponseBodyChecksConclusion$inboundSchema` instead. */
|
|
7542
|
+
export const inboundSchema = ResponseBodyChecksConclusion$inboundSchema;
|
|
7543
|
+
/** @deprecated use `ResponseBodyChecksConclusion$outboundSchema` instead. */
|
|
7544
|
+
export const outboundSchema = ResponseBodyChecksConclusion$outboundSchema;
|
|
7545
|
+
}
|
|
7546
|
+
|
|
7547
|
+
/** @internal */
|
|
7548
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema:
|
|
7549
|
+
z.ZodNativeEnum<
|
|
7550
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type
|
|
7551
|
+
> = z.nativeEnum(
|
|
7552
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type,
|
|
7553
|
+
);
|
|
7554
|
+
|
|
7555
|
+
/** @internal */
|
|
7556
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema:
|
|
7557
|
+
z.ZodNativeEnum<
|
|
7558
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type
|
|
7559
|
+
> =
|
|
7560
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema;
|
|
7561
|
+
|
|
7562
|
+
/**
|
|
7563
|
+
* @internal
|
|
7564
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7565
|
+
*/
|
|
7566
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$ {
|
|
7567
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema` instead. */
|
|
7568
|
+
export const inboundSchema =
|
|
7569
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema;
|
|
7570
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema` instead. */
|
|
7571
|
+
export const outboundSchema =
|
|
7572
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema;
|
|
7573
|
+
}
|
|
7574
|
+
|
|
7575
|
+
/** @internal */
|
|
7576
|
+
export const GetDeploymentGitSourceDeployments15$inboundSchema: z.ZodType<
|
|
7577
|
+
GetDeploymentGitSourceDeployments15,
|
|
7578
|
+
z.ZodTypeDef,
|
|
7579
|
+
unknown
|
|
7580
|
+
> = z.object({
|
|
7581
|
+
type:
|
|
7582
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema,
|
|
7583
|
+
ref: z.string(),
|
|
7584
|
+
sha: z.string(),
|
|
7585
|
+
owner: z.string().optional(),
|
|
7586
|
+
slug: z.string().optional(),
|
|
7587
|
+
workspaceUuid: z.string(),
|
|
7588
|
+
repoUuid: z.string(),
|
|
7589
|
+
});
|
|
7590
|
+
|
|
7591
|
+
/** @internal */
|
|
7592
|
+
export type GetDeploymentGitSourceDeployments15$Outbound = {
|
|
7593
|
+
type: string;
|
|
7594
|
+
ref: string;
|
|
7595
|
+
sha: string;
|
|
7596
|
+
owner?: string | undefined;
|
|
7597
|
+
slug?: string | undefined;
|
|
7598
|
+
workspaceUuid: string;
|
|
7599
|
+
repoUuid: string;
|
|
7600
|
+
};
|
|
7601
|
+
|
|
7602
|
+
/** @internal */
|
|
7603
|
+
export const GetDeploymentGitSourceDeployments15$outboundSchema: z.ZodType<
|
|
7604
|
+
GetDeploymentGitSourceDeployments15$Outbound,
|
|
7605
|
+
z.ZodTypeDef,
|
|
7606
|
+
GetDeploymentGitSourceDeployments15
|
|
7607
|
+
> = z.object({
|
|
7608
|
+
type:
|
|
7609
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema,
|
|
7610
|
+
ref: z.string(),
|
|
7611
|
+
sha: z.string(),
|
|
7612
|
+
owner: z.string().optional(),
|
|
7613
|
+
slug: z.string().optional(),
|
|
7614
|
+
workspaceUuid: z.string(),
|
|
7615
|
+
repoUuid: z.string(),
|
|
7616
|
+
});
|
|
7617
|
+
|
|
7618
|
+
/**
|
|
7619
|
+
* @internal
|
|
7620
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7621
|
+
*/
|
|
7622
|
+
export namespace GetDeploymentGitSourceDeployments15$ {
|
|
7623
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$inboundSchema` instead. */
|
|
6786
7624
|
export const inboundSchema =
|
|
6787
|
-
|
|
6788
|
-
/** @deprecated use `
|
|
7625
|
+
GetDeploymentGitSourceDeployments15$inboundSchema;
|
|
7626
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$outboundSchema` instead. */
|
|
6789
7627
|
export const outboundSchema =
|
|
6790
|
-
|
|
6791
|
-
/** @deprecated use `
|
|
6792
|
-
export type Outbound =
|
|
7628
|
+
GetDeploymentGitSourceDeployments15$outboundSchema;
|
|
7629
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$Outbound` instead. */
|
|
7630
|
+
export type Outbound = GetDeploymentGitSourceDeployments15$Outbound;
|
|
6793
7631
|
}
|
|
6794
7632
|
|
|
6795
|
-
export function
|
|
6796
|
-
|
|
7633
|
+
export function getDeploymentGitSourceDeployments15ToJSON(
|
|
7634
|
+
getDeploymentGitSourceDeployments15: GetDeploymentGitSourceDeployments15,
|
|
6797
7635
|
): string {
|
|
6798
7636
|
return JSON.stringify(
|
|
6799
|
-
|
|
6800
|
-
|
|
7637
|
+
GetDeploymentGitSourceDeployments15$outboundSchema.parse(
|
|
7638
|
+
getDeploymentGitSourceDeployments15,
|
|
6801
7639
|
),
|
|
6802
7640
|
);
|
|
6803
7641
|
}
|
|
6804
7642
|
|
|
6805
|
-
export function
|
|
7643
|
+
export function getDeploymentGitSourceDeployments15FromJSON(
|
|
6806
7644
|
jsonString: string,
|
|
6807
|
-
): SafeParseResult<
|
|
7645
|
+
): SafeParseResult<GetDeploymentGitSourceDeployments15, SDKValidationError> {
|
|
6808
7646
|
return safeParse(
|
|
6809
7647
|
jsonString,
|
|
6810
7648
|
(x) =>
|
|
6811
|
-
|
|
6812
|
-
`Failed to parse '
|
|
7649
|
+
GetDeploymentGitSourceDeployments15$inboundSchema.parse(JSON.parse(x)),
|
|
7650
|
+
`Failed to parse 'GetDeploymentGitSourceDeployments15' from JSON`,
|
|
6813
7651
|
);
|
|
6814
7652
|
}
|
|
6815
7653
|
|
|
6816
7654
|
/** @internal */
|
|
6817
|
-
export const
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
typeof GetDeploymentResponseBodyType
|
|
6824
|
-
> = GetDeploymentResponseBodyType$inboundSchema;
|
|
6825
|
-
|
|
6826
|
-
/**
|
|
6827
|
-
* @internal
|
|
6828
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6829
|
-
*/
|
|
6830
|
-
export namespace GetDeploymentResponseBodyType$ {
|
|
6831
|
-
/** @deprecated use `GetDeploymentResponseBodyType$inboundSchema` instead. */
|
|
6832
|
-
export const inboundSchema = GetDeploymentResponseBodyType$inboundSchema;
|
|
6833
|
-
/** @deprecated use `GetDeploymentResponseBodyType$outboundSchema` instead. */
|
|
6834
|
-
export const outboundSchema = GetDeploymentResponseBodyType$outboundSchema;
|
|
6835
|
-
}
|
|
6836
|
-
|
|
6837
|
-
/** @internal */
|
|
6838
|
-
export const ResponseBodyReadyState$inboundSchema: z.ZodNativeEnum<
|
|
6839
|
-
typeof ResponseBodyReadyState
|
|
6840
|
-
> = z.nativeEnum(ResponseBodyReadyState);
|
|
7655
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema:
|
|
7656
|
+
z.ZodNativeEnum<
|
|
7657
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type
|
|
7658
|
+
> = z.nativeEnum(
|
|
7659
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type,
|
|
7660
|
+
);
|
|
6841
7661
|
|
|
6842
7662
|
/** @internal */
|
|
6843
|
-
export const
|
|
6844
|
-
|
|
6845
|
-
|
|
7663
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema:
|
|
7664
|
+
z.ZodNativeEnum<
|
|
7665
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type
|
|
7666
|
+
> =
|
|
7667
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema;
|
|
6846
7668
|
|
|
6847
7669
|
/**
|
|
6848
7670
|
* @internal
|
|
6849
7671
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6850
7672
|
*/
|
|
6851
|
-
export namespace
|
|
6852
|
-
/** @deprecated use `
|
|
6853
|
-
export const inboundSchema =
|
|
6854
|
-
|
|
6855
|
-
|
|
7673
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$ {
|
|
7674
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema` instead. */
|
|
7675
|
+
export const inboundSchema =
|
|
7676
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema;
|
|
7677
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema` instead. */
|
|
7678
|
+
export const outboundSchema =
|
|
7679
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema;
|
|
6856
7680
|
}
|
|
6857
7681
|
|
|
6858
7682
|
/** @internal */
|
|
6859
|
-
export const
|
|
6860
|
-
|
|
7683
|
+
export const GetDeploymentGitSourceDeployments14$inboundSchema: z.ZodType<
|
|
7684
|
+
GetDeploymentGitSourceDeployments14,
|
|
6861
7685
|
z.ZodTypeDef,
|
|
6862
7686
|
unknown
|
|
6863
7687
|
> = z.object({
|
|
6864
|
-
|
|
6865
|
-
|
|
7688
|
+
type:
|
|
7689
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema,
|
|
7690
|
+
ref: z.string(),
|
|
7691
|
+
sha: z.string(),
|
|
7692
|
+
projectId: z.number(),
|
|
6866
7693
|
});
|
|
6867
7694
|
|
|
6868
7695
|
/** @internal */
|
|
6869
|
-
export type
|
|
6870
|
-
|
|
6871
|
-
|
|
7696
|
+
export type GetDeploymentGitSourceDeployments14$Outbound = {
|
|
7697
|
+
type: string;
|
|
7698
|
+
ref: string;
|
|
7699
|
+
sha: string;
|
|
7700
|
+
projectId: number;
|
|
6872
7701
|
};
|
|
6873
7702
|
|
|
6874
7703
|
/** @internal */
|
|
6875
|
-
export const
|
|
6876
|
-
|
|
7704
|
+
export const GetDeploymentGitSourceDeployments14$outboundSchema: z.ZodType<
|
|
7705
|
+
GetDeploymentGitSourceDeployments14$Outbound,
|
|
6877
7706
|
z.ZodTypeDef,
|
|
6878
|
-
|
|
7707
|
+
GetDeploymentGitSourceDeployments14
|
|
6879
7708
|
> = z.object({
|
|
6880
|
-
|
|
6881
|
-
|
|
7709
|
+
type:
|
|
7710
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema,
|
|
7711
|
+
ref: z.string(),
|
|
7712
|
+
sha: z.string(),
|
|
7713
|
+
projectId: z.number(),
|
|
6882
7714
|
});
|
|
6883
7715
|
|
|
6884
7716
|
/**
|
|
6885
7717
|
* @internal
|
|
6886
7718
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6887
7719
|
*/
|
|
6888
|
-
export namespace
|
|
6889
|
-
/** @deprecated use `
|
|
6890
|
-
export const inboundSchema =
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
6894
|
-
|
|
7720
|
+
export namespace GetDeploymentGitSourceDeployments14$ {
|
|
7721
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$inboundSchema` instead. */
|
|
7722
|
+
export const inboundSchema =
|
|
7723
|
+
GetDeploymentGitSourceDeployments14$inboundSchema;
|
|
7724
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$outboundSchema` instead. */
|
|
7725
|
+
export const outboundSchema =
|
|
7726
|
+
GetDeploymentGitSourceDeployments14$outboundSchema;
|
|
7727
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$Outbound` instead. */
|
|
7728
|
+
export type Outbound = GetDeploymentGitSourceDeployments14$Outbound;
|
|
6895
7729
|
}
|
|
6896
7730
|
|
|
6897
|
-
export function
|
|
6898
|
-
|
|
7731
|
+
export function getDeploymentGitSourceDeployments14ToJSON(
|
|
7732
|
+
getDeploymentGitSourceDeployments14: GetDeploymentGitSourceDeployments14,
|
|
6899
7733
|
): string {
|
|
6900
7734
|
return JSON.stringify(
|
|
6901
|
-
|
|
7735
|
+
GetDeploymentGitSourceDeployments14$outboundSchema.parse(
|
|
7736
|
+
getDeploymentGitSourceDeployments14,
|
|
7737
|
+
),
|
|
6902
7738
|
);
|
|
6903
7739
|
}
|
|
6904
7740
|
|
|
6905
|
-
export function
|
|
7741
|
+
export function getDeploymentGitSourceDeployments14FromJSON(
|
|
6906
7742
|
jsonString: string,
|
|
6907
|
-
): SafeParseResult<
|
|
7743
|
+
): SafeParseResult<GetDeploymentGitSourceDeployments14, SDKValidationError> {
|
|
6908
7744
|
return safeParse(
|
|
6909
7745
|
jsonString,
|
|
6910
|
-
(x) =>
|
|
6911
|
-
|
|
7746
|
+
(x) =>
|
|
7747
|
+
GetDeploymentGitSourceDeployments14$inboundSchema.parse(JSON.parse(x)),
|
|
7748
|
+
`Failed to parse 'GetDeploymentGitSourceDeployments14' from JSON`,
|
|
6912
7749
|
);
|
|
6913
7750
|
}
|
|
6914
7751
|
|
|
6915
7752
|
/** @internal */
|
|
6916
|
-
export const
|
|
6917
|
-
|
|
6918
|
-
|
|
7753
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema:
|
|
7754
|
+
z.ZodNativeEnum<
|
|
7755
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type
|
|
7756
|
+
> = z.nativeEnum(
|
|
7757
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type,
|
|
7758
|
+
);
|
|
6919
7759
|
|
|
6920
7760
|
/** @internal */
|
|
6921
|
-
export const
|
|
6922
|
-
|
|
6923
|
-
|
|
7761
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema:
|
|
7762
|
+
z.ZodNativeEnum<
|
|
7763
|
+
typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type
|
|
7764
|
+
> =
|
|
7765
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema;
|
|
6924
7766
|
|
|
6925
7767
|
/**
|
|
6926
7768
|
* @internal
|
|
6927
7769
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6928
7770
|
*/
|
|
6929
|
-
export namespace
|
|
6930
|
-
/** @deprecated use `
|
|
6931
|
-
export const inboundSchema =
|
|
6932
|
-
|
|
6933
|
-
|
|
7771
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$ {
|
|
7772
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema` instead. */
|
|
7773
|
+
export const inboundSchema =
|
|
7774
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema;
|
|
7775
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema` instead. */
|
|
7776
|
+
export const outboundSchema =
|
|
7777
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema;
|
|
6934
7778
|
}
|
|
6935
7779
|
|
|
6936
7780
|
/** @internal */
|
|
6937
|
-
export const
|
|
6938
|
-
|
|
6939
|
-
|
|
7781
|
+
export const GetDeploymentGitSourceDeployments13$inboundSchema: z.ZodType<
|
|
7782
|
+
GetDeploymentGitSourceDeployments13,
|
|
7783
|
+
z.ZodTypeDef,
|
|
7784
|
+
unknown
|
|
7785
|
+
> = z.object({
|
|
7786
|
+
type:
|
|
7787
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema,
|
|
7788
|
+
ref: z.string(),
|
|
7789
|
+
sha: z.string(),
|
|
7790
|
+
repoId: z.number(),
|
|
7791
|
+
org: z.string().optional(),
|
|
7792
|
+
repo: z.string().optional(),
|
|
7793
|
+
});
|
|
6940
7794
|
|
|
6941
7795
|
/** @internal */
|
|
6942
|
-
export
|
|
6943
|
-
|
|
6944
|
-
|
|
7796
|
+
export type GetDeploymentGitSourceDeployments13$Outbound = {
|
|
7797
|
+
type: string;
|
|
7798
|
+
ref: string;
|
|
7799
|
+
sha: string;
|
|
7800
|
+
repoId: number;
|
|
7801
|
+
org?: string | undefined;
|
|
7802
|
+
repo?: string | undefined;
|
|
7803
|
+
};
|
|
7804
|
+
|
|
7805
|
+
/** @internal */
|
|
7806
|
+
export const GetDeploymentGitSourceDeployments13$outboundSchema: z.ZodType<
|
|
7807
|
+
GetDeploymentGitSourceDeployments13$Outbound,
|
|
7808
|
+
z.ZodTypeDef,
|
|
7809
|
+
GetDeploymentGitSourceDeployments13
|
|
7810
|
+
> = z.object({
|
|
7811
|
+
type:
|
|
7812
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema,
|
|
7813
|
+
ref: z.string(),
|
|
7814
|
+
sha: z.string(),
|
|
7815
|
+
repoId: z.number(),
|
|
7816
|
+
org: z.string().optional(),
|
|
7817
|
+
repo: z.string().optional(),
|
|
7818
|
+
});
|
|
6945
7819
|
|
|
6946
7820
|
/**
|
|
6947
7821
|
* @internal
|
|
6948
7822
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6949
7823
|
*/
|
|
6950
|
-
export namespace
|
|
6951
|
-
/** @deprecated use `
|
|
6952
|
-
export const inboundSchema =
|
|
6953
|
-
|
|
6954
|
-
|
|
7824
|
+
export namespace GetDeploymentGitSourceDeployments13$ {
|
|
7825
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$inboundSchema` instead. */
|
|
7826
|
+
export const inboundSchema =
|
|
7827
|
+
GetDeploymentGitSourceDeployments13$inboundSchema;
|
|
7828
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$outboundSchema` instead. */
|
|
7829
|
+
export const outboundSchema =
|
|
7830
|
+
GetDeploymentGitSourceDeployments13$outboundSchema;
|
|
7831
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$Outbound` instead. */
|
|
7832
|
+
export type Outbound = GetDeploymentGitSourceDeployments13$Outbound;
|
|
7833
|
+
}
|
|
7834
|
+
|
|
7835
|
+
export function getDeploymentGitSourceDeployments13ToJSON(
|
|
7836
|
+
getDeploymentGitSourceDeployments13: GetDeploymentGitSourceDeployments13,
|
|
7837
|
+
): string {
|
|
7838
|
+
return JSON.stringify(
|
|
7839
|
+
GetDeploymentGitSourceDeployments13$outboundSchema.parse(
|
|
7840
|
+
getDeploymentGitSourceDeployments13,
|
|
7841
|
+
),
|
|
7842
|
+
);
|
|
7843
|
+
}
|
|
7844
|
+
|
|
7845
|
+
export function getDeploymentGitSourceDeployments13FromJSON(
|
|
7846
|
+
jsonString: string,
|
|
7847
|
+
): SafeParseResult<GetDeploymentGitSourceDeployments13, SDKValidationError> {
|
|
7848
|
+
return safeParse(
|
|
7849
|
+
jsonString,
|
|
7850
|
+
(x) =>
|
|
7851
|
+
GetDeploymentGitSourceDeployments13$inboundSchema.parse(JSON.parse(x)),
|
|
7852
|
+
`Failed to parse 'GetDeploymentGitSourceDeployments13' from JSON`,
|
|
7853
|
+
);
|
|
6955
7854
|
}
|
|
6956
7855
|
|
|
6957
7856
|
/** @internal */
|
|
@@ -6990,23 +7889,23 @@ export const GetDeploymentGitSourceDeployments12$inboundSchema: z.ZodType<
|
|
|
6990
7889
|
> = z.object({
|
|
6991
7890
|
type:
|
|
6992
7891
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema,
|
|
7892
|
+
host: z.string(),
|
|
6993
7893
|
ref: z.string(),
|
|
6994
7894
|
sha: z.string(),
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
6998
|
-
repoUuid: z.string(),
|
|
7895
|
+
repoId: z.number(),
|
|
7896
|
+
org: z.string().optional(),
|
|
7897
|
+
repo: z.string().optional(),
|
|
6999
7898
|
});
|
|
7000
7899
|
|
|
7001
7900
|
/** @internal */
|
|
7002
7901
|
export type GetDeploymentGitSourceDeployments12$Outbound = {
|
|
7003
7902
|
type: string;
|
|
7903
|
+
host: string;
|
|
7004
7904
|
ref: string;
|
|
7005
7905
|
sha: string;
|
|
7006
|
-
|
|
7007
|
-
|
|
7008
|
-
|
|
7009
|
-
repoUuid: string;
|
|
7906
|
+
repoId: number;
|
|
7907
|
+
org?: string | undefined;
|
|
7908
|
+
repo?: string | undefined;
|
|
7010
7909
|
};
|
|
7011
7910
|
|
|
7012
7911
|
/** @internal */
|
|
@@ -7017,12 +7916,12 @@ export const GetDeploymentGitSourceDeployments12$outboundSchema: z.ZodType<
|
|
|
7017
7916
|
> = z.object({
|
|
7018
7917
|
type:
|
|
7019
7918
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema,
|
|
7919
|
+
host: z.string(),
|
|
7020
7920
|
ref: z.string(),
|
|
7021
7921
|
sha: z.string(),
|
|
7022
|
-
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
repoUuid: z.string(),
|
|
7922
|
+
repoId: z.number(),
|
|
7923
|
+
org: z.string().optional(),
|
|
7924
|
+
repo: z.string().optional(),
|
|
7026
7925
|
});
|
|
7027
7926
|
|
|
7028
7927
|
/**
|
|
@@ -7099,7 +7998,9 @@ export const GetDeploymentGitSourceDeployments11$inboundSchema: z.ZodType<
|
|
|
7099
7998
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$inboundSchema,
|
|
7100
7999
|
ref: z.string(),
|
|
7101
8000
|
sha: z.string(),
|
|
7102
|
-
|
|
8001
|
+
repoId: z.number(),
|
|
8002
|
+
org: z.string().optional(),
|
|
8003
|
+
repo: z.string().optional(),
|
|
7103
8004
|
});
|
|
7104
8005
|
|
|
7105
8006
|
/** @internal */
|
|
@@ -7107,7 +8008,9 @@ export type GetDeploymentGitSourceDeployments11$Outbound = {
|
|
|
7107
8008
|
type: string;
|
|
7108
8009
|
ref: string;
|
|
7109
8010
|
sha: string;
|
|
7110
|
-
|
|
8011
|
+
repoId: number;
|
|
8012
|
+
org?: string | undefined;
|
|
8013
|
+
repo?: string | undefined;
|
|
7111
8014
|
};
|
|
7112
8015
|
|
|
7113
8016
|
/** @internal */
|
|
@@ -7120,7 +8023,9 @@ export const GetDeploymentGitSourceDeployments11$outboundSchema: z.ZodType<
|
|
|
7120
8023
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$outboundSchema,
|
|
7121
8024
|
ref: z.string(),
|
|
7122
8025
|
sha: z.string(),
|
|
7123
|
-
|
|
8026
|
+
repoId: z.number(),
|
|
8027
|
+
org: z.string().optional(),
|
|
8028
|
+
repo: z.string().optional(),
|
|
7124
8029
|
});
|
|
7125
8030
|
|
|
7126
8031
|
/**
|
|
@@ -7195,23 +8100,17 @@ export const GetDeploymentGitSourceDeployments10$inboundSchema: z.ZodType<
|
|
|
7195
8100
|
> = z.object({
|
|
7196
8101
|
type:
|
|
7197
8102
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$inboundSchema,
|
|
7198
|
-
host: z.string(),
|
|
7199
8103
|
ref: z.string(),
|
|
7200
8104
|
sha: z.string(),
|
|
7201
|
-
|
|
7202
|
-
org: z.string().optional(),
|
|
7203
|
-
repo: z.string().optional(),
|
|
8105
|
+
gitUrl: z.string(),
|
|
7204
8106
|
});
|
|
7205
8107
|
|
|
7206
8108
|
/** @internal */
|
|
7207
8109
|
export type GetDeploymentGitSourceDeployments10$Outbound = {
|
|
7208
8110
|
type: string;
|
|
7209
|
-
host: string;
|
|
7210
8111
|
ref: string;
|
|
7211
8112
|
sha: string;
|
|
7212
|
-
|
|
7213
|
-
org?: string | undefined;
|
|
7214
|
-
repo?: string | undefined;
|
|
8113
|
+
gitUrl: string;
|
|
7215
8114
|
};
|
|
7216
8115
|
|
|
7217
8116
|
/** @internal */
|
|
@@ -7222,12 +8121,9 @@ export const GetDeploymentGitSourceDeployments10$outboundSchema: z.ZodType<
|
|
|
7222
8121
|
> = z.object({
|
|
7223
8122
|
type:
|
|
7224
8123
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$outboundSchema,
|
|
7225
|
-
host: z.string(),
|
|
7226
8124
|
ref: z.string(),
|
|
7227
8125
|
sha: z.string(),
|
|
7228
|
-
|
|
7229
|
-
org: z.string().optional(),
|
|
7230
|
-
repo: z.string().optional(),
|
|
8126
|
+
gitUrl: z.string(),
|
|
7231
8127
|
});
|
|
7232
8128
|
|
|
7233
8129
|
/**
|
|
@@ -7302,21 +8198,21 @@ export const GetDeploymentGitSourceDeployments9$inboundSchema: z.ZodType<
|
|
|
7302
8198
|
> = z.object({
|
|
7303
8199
|
type:
|
|
7304
8200
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$inboundSchema,
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
|
|
7309
|
-
|
|
8201
|
+
owner: z.string(),
|
|
8202
|
+
slug: z.string(),
|
|
8203
|
+
ref: z.nullable(z.string()).optional(),
|
|
8204
|
+
sha: z.string().optional(),
|
|
8205
|
+
prId: z.nullable(z.number()).optional(),
|
|
7310
8206
|
});
|
|
7311
8207
|
|
|
7312
8208
|
/** @internal */
|
|
7313
8209
|
export type GetDeploymentGitSourceDeployments9$Outbound = {
|
|
7314
8210
|
type: string;
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
|
|
7319
|
-
|
|
8211
|
+
owner: string;
|
|
8212
|
+
slug: string;
|
|
8213
|
+
ref?: string | null | undefined;
|
|
8214
|
+
sha?: string | undefined;
|
|
8215
|
+
prId?: number | null | undefined;
|
|
7320
8216
|
};
|
|
7321
8217
|
|
|
7322
8218
|
/** @internal */
|
|
@@ -7327,11 +8223,11 @@ export const GetDeploymentGitSourceDeployments9$outboundSchema: z.ZodType<
|
|
|
7327
8223
|
> = z.object({
|
|
7328
8224
|
type:
|
|
7329
8225
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$outboundSchema,
|
|
7330
|
-
|
|
7331
|
-
|
|
7332
|
-
|
|
7333
|
-
|
|
7334
|
-
|
|
8226
|
+
owner: z.string(),
|
|
8227
|
+
slug: z.string(),
|
|
8228
|
+
ref: z.nullable(z.string()).optional(),
|
|
8229
|
+
sha: z.string().optional(),
|
|
8230
|
+
prId: z.nullable(z.number()).optional(),
|
|
7335
8231
|
});
|
|
7336
8232
|
|
|
7337
8233
|
/**
|
|
@@ -7405,17 +8301,21 @@ export const GetDeploymentGitSourceDeployments8$inboundSchema: z.ZodType<
|
|
|
7405
8301
|
> = z.object({
|
|
7406
8302
|
type:
|
|
7407
8303
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$inboundSchema,
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
8304
|
+
workspaceUuid: z.string().optional(),
|
|
8305
|
+
repoUuid: z.string(),
|
|
8306
|
+
ref: z.nullable(z.string()).optional(),
|
|
8307
|
+
sha: z.string().optional(),
|
|
8308
|
+
prId: z.nullable(z.number()).optional(),
|
|
7411
8309
|
});
|
|
7412
8310
|
|
|
7413
8311
|
/** @internal */
|
|
7414
8312
|
export type GetDeploymentGitSourceDeployments8$Outbound = {
|
|
7415
8313
|
type: string;
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
8314
|
+
workspaceUuid?: string | undefined;
|
|
8315
|
+
repoUuid: string;
|
|
8316
|
+
ref?: string | null | undefined;
|
|
8317
|
+
sha?: string | undefined;
|
|
8318
|
+
prId?: number | null | undefined;
|
|
7419
8319
|
};
|
|
7420
8320
|
|
|
7421
8321
|
/** @internal */
|
|
@@ -7426,9 +8326,11 @@ export const GetDeploymentGitSourceDeployments8$outboundSchema: z.ZodType<
|
|
|
7426
8326
|
> = z.object({
|
|
7427
8327
|
type:
|
|
7428
8328
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$outboundSchema,
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
|
|
8329
|
+
workspaceUuid: z.string().optional(),
|
|
8330
|
+
repoUuid: z.string(),
|
|
8331
|
+
ref: z.nullable(z.string()).optional(),
|
|
8332
|
+
sha: z.string().optional(),
|
|
8333
|
+
prId: z.nullable(z.number()).optional(),
|
|
7432
8334
|
});
|
|
7433
8335
|
|
|
7434
8336
|
/**
|
|
@@ -7494,6 +8396,56 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResp
|
|
|
7494
8396
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema;
|
|
7495
8397
|
}
|
|
7496
8398
|
|
|
8399
|
+
/** @internal */
|
|
8400
|
+
export const GetDeploymentGitSourceProjectId$inboundSchema: z.ZodType<
|
|
8401
|
+
GetDeploymentGitSourceProjectId,
|
|
8402
|
+
z.ZodTypeDef,
|
|
8403
|
+
unknown
|
|
8404
|
+
> = z.union([z.string(), z.number()]);
|
|
8405
|
+
|
|
8406
|
+
/** @internal */
|
|
8407
|
+
export type GetDeploymentGitSourceProjectId$Outbound = string | number;
|
|
8408
|
+
|
|
8409
|
+
/** @internal */
|
|
8410
|
+
export const GetDeploymentGitSourceProjectId$outboundSchema: z.ZodType<
|
|
8411
|
+
GetDeploymentGitSourceProjectId$Outbound,
|
|
8412
|
+
z.ZodTypeDef,
|
|
8413
|
+
GetDeploymentGitSourceProjectId
|
|
8414
|
+
> = z.union([z.string(), z.number()]);
|
|
8415
|
+
|
|
8416
|
+
/**
|
|
8417
|
+
* @internal
|
|
8418
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8419
|
+
*/
|
|
8420
|
+
export namespace GetDeploymentGitSourceProjectId$ {
|
|
8421
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$inboundSchema` instead. */
|
|
8422
|
+
export const inboundSchema = GetDeploymentGitSourceProjectId$inboundSchema;
|
|
8423
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$outboundSchema` instead. */
|
|
8424
|
+
export const outboundSchema = GetDeploymentGitSourceProjectId$outboundSchema;
|
|
8425
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$Outbound` instead. */
|
|
8426
|
+
export type Outbound = GetDeploymentGitSourceProjectId$Outbound;
|
|
8427
|
+
}
|
|
8428
|
+
|
|
8429
|
+
export function getDeploymentGitSourceProjectIdToJSON(
|
|
8430
|
+
getDeploymentGitSourceProjectId: GetDeploymentGitSourceProjectId,
|
|
8431
|
+
): string {
|
|
8432
|
+
return JSON.stringify(
|
|
8433
|
+
GetDeploymentGitSourceProjectId$outboundSchema.parse(
|
|
8434
|
+
getDeploymentGitSourceProjectId,
|
|
8435
|
+
),
|
|
8436
|
+
);
|
|
8437
|
+
}
|
|
8438
|
+
|
|
8439
|
+
export function getDeploymentGitSourceProjectIdFromJSON(
|
|
8440
|
+
jsonString: string,
|
|
8441
|
+
): SafeParseResult<GetDeploymentGitSourceProjectId, SDKValidationError> {
|
|
8442
|
+
return safeParse(
|
|
8443
|
+
jsonString,
|
|
8444
|
+
(x) => GetDeploymentGitSourceProjectId$inboundSchema.parse(JSON.parse(x)),
|
|
8445
|
+
`Failed to parse 'GetDeploymentGitSourceProjectId' from JSON`,
|
|
8446
|
+
);
|
|
8447
|
+
}
|
|
8448
|
+
|
|
7497
8449
|
/** @internal */
|
|
7498
8450
|
export const GetDeploymentGitSourceDeployments7$inboundSchema: z.ZodType<
|
|
7499
8451
|
GetDeploymentGitSourceDeployments7,
|
|
@@ -7502,8 +8454,7 @@ export const GetDeploymentGitSourceDeployments7$inboundSchema: z.ZodType<
|
|
|
7502
8454
|
> = z.object({
|
|
7503
8455
|
type:
|
|
7504
8456
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
7505
|
-
|
|
7506
|
-
slug: z.string(),
|
|
8457
|
+
projectId: z.union([z.string(), z.number()]),
|
|
7507
8458
|
ref: z.nullable(z.string()).optional(),
|
|
7508
8459
|
sha: z.string().optional(),
|
|
7509
8460
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7512,8 +8463,7 @@ export const GetDeploymentGitSourceDeployments7$inboundSchema: z.ZodType<
|
|
|
7512
8463
|
/** @internal */
|
|
7513
8464
|
export type GetDeploymentGitSourceDeployments7$Outbound = {
|
|
7514
8465
|
type: string;
|
|
7515
|
-
|
|
7516
|
-
slug: string;
|
|
8466
|
+
projectId: string | number;
|
|
7517
8467
|
ref?: string | null | undefined;
|
|
7518
8468
|
sha?: string | undefined;
|
|
7519
8469
|
prId?: number | null | undefined;
|
|
@@ -7527,8 +8477,7 @@ export const GetDeploymentGitSourceDeployments7$outboundSchema: z.ZodType<
|
|
|
7527
8477
|
> = z.object({
|
|
7528
8478
|
type:
|
|
7529
8479
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
7530
|
-
|
|
7531
|
-
slug: z.string(),
|
|
8480
|
+
projectId: z.union([z.string(), z.number()]),
|
|
7532
8481
|
ref: z.nullable(z.string()).optional(),
|
|
7533
8482
|
sha: z.string().optional(),
|
|
7534
8483
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7605,8 +8554,8 @@ export const GetDeploymentGitSourceDeployments6$inboundSchema: z.ZodType<
|
|
|
7605
8554
|
> = z.object({
|
|
7606
8555
|
type:
|
|
7607
8556
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema,
|
|
7608
|
-
|
|
7609
|
-
|
|
8557
|
+
org: z.string(),
|
|
8558
|
+
repo: z.string(),
|
|
7610
8559
|
ref: z.nullable(z.string()).optional(),
|
|
7611
8560
|
sha: z.string().optional(),
|
|
7612
8561
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7615,8 +8564,8 @@ export const GetDeploymentGitSourceDeployments6$inboundSchema: z.ZodType<
|
|
|
7615
8564
|
/** @internal */
|
|
7616
8565
|
export type GetDeploymentGitSourceDeployments6$Outbound = {
|
|
7617
8566
|
type: string;
|
|
7618
|
-
|
|
7619
|
-
|
|
8567
|
+
org: string;
|
|
8568
|
+
repo: string;
|
|
7620
8569
|
ref?: string | null | undefined;
|
|
7621
8570
|
sha?: string | undefined;
|
|
7622
8571
|
prId?: number | null | undefined;
|
|
@@ -7630,8 +8579,8 @@ export const GetDeploymentGitSourceDeployments6$outboundSchema: z.ZodType<
|
|
|
7630
8579
|
> = z.object({
|
|
7631
8580
|
type:
|
|
7632
8581
|
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema,
|
|
7633
|
-
|
|
7634
|
-
|
|
8582
|
+
org: z.string(),
|
|
8583
|
+
repo: z.string(),
|
|
7635
8584
|
ref: z.nullable(z.string()).optional(),
|
|
7636
8585
|
sha: z.string().optional(),
|
|
7637
8586
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7696,52 +8645,52 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200Type$ {
|
|
|
7696
8645
|
}
|
|
7697
8646
|
|
|
7698
8647
|
/** @internal */
|
|
7699
|
-
export const
|
|
7700
|
-
|
|
8648
|
+
export const GetDeploymentGitSourceRepoId$inboundSchema: z.ZodType<
|
|
8649
|
+
GetDeploymentGitSourceRepoId,
|
|
7701
8650
|
z.ZodTypeDef,
|
|
7702
8651
|
unknown
|
|
7703
8652
|
> = z.union([z.string(), z.number()]);
|
|
7704
8653
|
|
|
7705
8654
|
/** @internal */
|
|
7706
|
-
export type
|
|
8655
|
+
export type GetDeploymentGitSourceRepoId$Outbound = string | number;
|
|
7707
8656
|
|
|
7708
8657
|
/** @internal */
|
|
7709
|
-
export const
|
|
7710
|
-
|
|
8658
|
+
export const GetDeploymentGitSourceRepoId$outboundSchema: z.ZodType<
|
|
8659
|
+
GetDeploymentGitSourceRepoId$Outbound,
|
|
7711
8660
|
z.ZodTypeDef,
|
|
7712
|
-
|
|
8661
|
+
GetDeploymentGitSourceRepoId
|
|
7713
8662
|
> = z.union([z.string(), z.number()]);
|
|
7714
8663
|
|
|
7715
8664
|
/**
|
|
7716
8665
|
* @internal
|
|
7717
8666
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7718
8667
|
*/
|
|
7719
|
-
export namespace
|
|
7720
|
-
/** @deprecated use `
|
|
7721
|
-
export const inboundSchema =
|
|
7722
|
-
/** @deprecated use `
|
|
7723
|
-
export const outboundSchema =
|
|
7724
|
-
/** @deprecated use `
|
|
7725
|
-
export type Outbound =
|
|
8668
|
+
export namespace GetDeploymentGitSourceRepoId$ {
|
|
8669
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$inboundSchema` instead. */
|
|
8670
|
+
export const inboundSchema = GetDeploymentGitSourceRepoId$inboundSchema;
|
|
8671
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$outboundSchema` instead. */
|
|
8672
|
+
export const outboundSchema = GetDeploymentGitSourceRepoId$outboundSchema;
|
|
8673
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$Outbound` instead. */
|
|
8674
|
+
export type Outbound = GetDeploymentGitSourceRepoId$Outbound;
|
|
7726
8675
|
}
|
|
7727
8676
|
|
|
7728
|
-
export function
|
|
7729
|
-
|
|
8677
|
+
export function getDeploymentGitSourceRepoIdToJSON(
|
|
8678
|
+
getDeploymentGitSourceRepoId: GetDeploymentGitSourceRepoId,
|
|
7730
8679
|
): string {
|
|
7731
8680
|
return JSON.stringify(
|
|
7732
|
-
|
|
7733
|
-
|
|
8681
|
+
GetDeploymentGitSourceRepoId$outboundSchema.parse(
|
|
8682
|
+
getDeploymentGitSourceRepoId,
|
|
7734
8683
|
),
|
|
7735
8684
|
);
|
|
7736
8685
|
}
|
|
7737
8686
|
|
|
7738
|
-
export function
|
|
8687
|
+
export function getDeploymentGitSourceRepoIdFromJSON(
|
|
7739
8688
|
jsonString: string,
|
|
7740
|
-
): SafeParseResult<
|
|
8689
|
+
): SafeParseResult<GetDeploymentGitSourceRepoId, SDKValidationError> {
|
|
7741
8690
|
return safeParse(
|
|
7742
8691
|
jsonString,
|
|
7743
|
-
(x) =>
|
|
7744
|
-
`Failed to parse '
|
|
8692
|
+
(x) => GetDeploymentGitSourceRepoId$inboundSchema.parse(JSON.parse(x)),
|
|
8693
|
+
`Failed to parse 'GetDeploymentGitSourceRepoId' from JSON`,
|
|
7745
8694
|
);
|
|
7746
8695
|
}
|
|
7747
8696
|
|
|
@@ -7752,7 +8701,7 @@ export const GetDeploymentGitSourceDeployments5$inboundSchema: z.ZodType<
|
|
|
7752
8701
|
unknown
|
|
7753
8702
|
> = z.object({
|
|
7754
8703
|
type: GetDeploymentGitSourceDeploymentsResponse200Type$inboundSchema,
|
|
7755
|
-
|
|
8704
|
+
repoId: z.union([z.string(), z.number()]),
|
|
7756
8705
|
ref: z.nullable(z.string()).optional(),
|
|
7757
8706
|
sha: z.string().optional(),
|
|
7758
8707
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7761,7 +8710,7 @@ export const GetDeploymentGitSourceDeployments5$inboundSchema: z.ZodType<
|
|
|
7761
8710
|
/** @internal */
|
|
7762
8711
|
export type GetDeploymentGitSourceDeployments5$Outbound = {
|
|
7763
8712
|
type: string;
|
|
7764
|
-
|
|
8713
|
+
repoId: string | number;
|
|
7765
8714
|
ref?: string | null | undefined;
|
|
7766
8715
|
sha?: string | undefined;
|
|
7767
8716
|
prId?: number | null | undefined;
|
|
@@ -7774,7 +8723,7 @@ export const GetDeploymentGitSourceDeployments5$outboundSchema: z.ZodType<
|
|
|
7774
8723
|
GetDeploymentGitSourceDeployments5
|
|
7775
8724
|
> = z.object({
|
|
7776
8725
|
type: GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema,
|
|
7777
|
-
|
|
8726
|
+
repoId: z.union([z.string(), z.number()]),
|
|
7778
8727
|
ref: z.nullable(z.string()).optional(),
|
|
7779
8728
|
sha: z.string().optional(),
|
|
7780
8729
|
prId: z.nullable(z.number()).optional(),
|
|
@@ -7939,66 +8888,66 @@ export namespace GetDeploymentGitSourceDeploymentsType$ {
|
|
|
7939
8888
|
}
|
|
7940
8889
|
|
|
7941
8890
|
/** @internal */
|
|
7942
|
-
export const
|
|
8891
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema:
|
|
7943
8892
|
z.ZodType<
|
|
7944
|
-
|
|
8893
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId,
|
|
7945
8894
|
z.ZodTypeDef,
|
|
7946
8895
|
unknown
|
|
7947
8896
|
> = z.union([z.string(), z.number()]);
|
|
7948
8897
|
|
|
7949
8898
|
/** @internal */
|
|
7950
|
-
export type
|
|
8899
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound =
|
|
7951
8900
|
| string
|
|
7952
8901
|
| number;
|
|
7953
8902
|
|
|
7954
8903
|
/** @internal */
|
|
7955
|
-
export const
|
|
8904
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema:
|
|
7956
8905
|
z.ZodType<
|
|
7957
|
-
|
|
8906
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound,
|
|
7958
8907
|
z.ZodTypeDef,
|
|
7959
|
-
|
|
8908
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId
|
|
7960
8909
|
> = z.union([z.string(), z.number()]);
|
|
7961
8910
|
|
|
7962
8911
|
/**
|
|
7963
8912
|
* @internal
|
|
7964
8913
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7965
8914
|
*/
|
|
7966
|
-
export namespace
|
|
7967
|
-
/** @deprecated use `
|
|
8915
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$ {
|
|
8916
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema` instead. */
|
|
7968
8917
|
export const inboundSchema =
|
|
7969
|
-
|
|
7970
|
-
/** @deprecated use `
|
|
8918
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema;
|
|
8919
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema` instead. */
|
|
7971
8920
|
export const outboundSchema =
|
|
7972
|
-
|
|
7973
|
-
/** @deprecated use `
|
|
8921
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema;
|
|
8922
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound` instead. */
|
|
7974
8923
|
export type Outbound =
|
|
7975
|
-
|
|
8924
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound;
|
|
7976
8925
|
}
|
|
7977
8926
|
|
|
7978
|
-
export function
|
|
7979
|
-
|
|
7980
|
-
|
|
8927
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdToJSON(
|
|
8928
|
+
getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId:
|
|
8929
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId,
|
|
7981
8930
|
): string {
|
|
7982
8931
|
return JSON.stringify(
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
8932
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema
|
|
8933
|
+
.parse(
|
|
8934
|
+
getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId,
|
|
8935
|
+
),
|
|
7986
8936
|
);
|
|
7987
8937
|
}
|
|
7988
8938
|
|
|
7989
|
-
export function
|
|
8939
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdFromJSON(
|
|
7990
8940
|
jsonString: string,
|
|
7991
8941
|
): SafeParseResult<
|
|
7992
|
-
|
|
8942
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId,
|
|
7993
8943
|
SDKValidationError
|
|
7994
8944
|
> {
|
|
7995
8945
|
return safeParse(
|
|
7996
8946
|
jsonString,
|
|
7997
8947
|
(x) =>
|
|
7998
|
-
|
|
7999
|
-
JSON.parse(x),
|
|
8000
|
-
|
|
8001
|
-
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200RepoId' from JSON`,
|
|
8948
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema
|
|
8949
|
+
.parse(JSON.parse(x)),
|
|
8950
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId' from JSON`,
|
|
8002
8951
|
);
|
|
8003
8952
|
}
|
|
8004
8953
|
|
|
@@ -8198,66 +9147,64 @@ export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResp
|
|
|
8198
9147
|
}
|
|
8199
9148
|
|
|
8200
9149
|
/** @internal */
|
|
8201
|
-
export const
|
|
9150
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema:
|
|
8202
9151
|
z.ZodType<
|
|
8203
|
-
|
|
9152
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId,
|
|
8204
9153
|
z.ZodTypeDef,
|
|
8205
9154
|
unknown
|
|
8206
9155
|
> = z.union([z.string(), z.number()]);
|
|
8207
9156
|
|
|
8208
9157
|
/** @internal */
|
|
8209
|
-
export type
|
|
9158
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound =
|
|
8210
9159
|
| string
|
|
8211
9160
|
| number;
|
|
8212
9161
|
|
|
8213
9162
|
/** @internal */
|
|
8214
|
-
export const
|
|
9163
|
+
export const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema:
|
|
8215
9164
|
z.ZodType<
|
|
8216
|
-
|
|
9165
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound,
|
|
8217
9166
|
z.ZodTypeDef,
|
|
8218
|
-
|
|
9167
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId
|
|
8219
9168
|
> = z.union([z.string(), z.number()]);
|
|
8220
9169
|
|
|
8221
9170
|
/**
|
|
8222
9171
|
* @internal
|
|
8223
9172
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8224
9173
|
*/
|
|
8225
|
-
export namespace
|
|
8226
|
-
/** @deprecated use `
|
|
9174
|
+
export namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$ {
|
|
9175
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema` instead. */
|
|
8227
9176
|
export const inboundSchema =
|
|
8228
|
-
|
|
8229
|
-
/** @deprecated use `
|
|
9177
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema;
|
|
9178
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema` instead. */
|
|
8230
9179
|
export const outboundSchema =
|
|
8231
|
-
|
|
8232
|
-
/** @deprecated use `
|
|
9180
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema;
|
|
9181
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound` instead. */
|
|
8233
9182
|
export type Outbound =
|
|
8234
|
-
|
|
9183
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound;
|
|
8235
9184
|
}
|
|
8236
9185
|
|
|
8237
|
-
export function
|
|
8238
|
-
|
|
8239
|
-
|
|
9186
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdToJSON(
|
|
9187
|
+
getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId:
|
|
9188
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId,
|
|
8240
9189
|
): string {
|
|
8241
9190
|
return JSON.stringify(
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
),
|
|
9191
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema
|
|
9192
|
+
.parse(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId),
|
|
8245
9193
|
);
|
|
8246
9194
|
}
|
|
8247
9195
|
|
|
8248
|
-
export function
|
|
9196
|
+
export function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdFromJSON(
|
|
8249
9197
|
jsonString: string,
|
|
8250
9198
|
): SafeParseResult<
|
|
8251
|
-
|
|
9199
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId,
|
|
8252
9200
|
SDKValidationError
|
|
8253
9201
|
> {
|
|
8254
9202
|
return safeParse(
|
|
8255
9203
|
jsonString,
|
|
8256
9204
|
(x) =>
|
|
8257
|
-
|
|
8258
|
-
JSON.parse(x),
|
|
8259
|
-
|
|
8260
|
-
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponseRepoId' from JSON`,
|
|
9205
|
+
GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema
|
|
9206
|
+
.parse(JSON.parse(x)),
|
|
9207
|
+
`Failed to parse 'GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId' from JSON`,
|
|
8261
9208
|
);
|
|
8262
9209
|
}
|
|
8263
9210
|
|
|
@@ -8339,34 +9286,40 @@ export const GetDeploymentResponseBodyGitSource$inboundSchema: z.ZodType<
|
|
|
8339
9286
|
z.ZodTypeDef,
|
|
8340
9287
|
unknown
|
|
8341
9288
|
> = z.union([
|
|
8342
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
8343
9289
|
z.lazy(() => GetDeploymentGitSourceDeployments12$inboundSchema),
|
|
9290
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$inboundSchema),
|
|
8344
9291
|
z.lazy(() => GetDeploymentGitSourceDeployments4$inboundSchema),
|
|
8345
|
-
z.lazy(() =>
|
|
8346
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
9292
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
8347
9293
|
z.lazy(() => GetDeploymentGitSourceDeployments11$inboundSchema),
|
|
9294
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$inboundSchema),
|
|
9295
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$inboundSchema),
|
|
8348
9296
|
z.lazy(() => GetDeploymentGitSourceDeployments2$inboundSchema),
|
|
8349
9297
|
z.lazy(() => GetDeploymentGitSourceDeployments3$inboundSchema),
|
|
8350
|
-
z.lazy(() =>
|
|
9298
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$inboundSchema),
|
|
9299
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
8351
9300
|
z.lazy(() => GetDeploymentGitSourceDeployments1$inboundSchema),
|
|
8352
9301
|
z.lazy(() => GetDeploymentGitSourceDeployments5$inboundSchema),
|
|
8353
|
-
z.lazy(() =>
|
|
9302
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$inboundSchema),
|
|
9303
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$inboundSchema),
|
|
8354
9304
|
]);
|
|
8355
9305
|
|
|
8356
9306
|
/** @internal */
|
|
8357
9307
|
export type GetDeploymentResponseBodyGitSource$Outbound =
|
|
8358
|
-
| GetDeploymentGitSourceDeployments10$Outbound
|
|
8359
9308
|
| GetDeploymentGitSourceDeployments12$Outbound
|
|
9309
|
+
| GetDeploymentGitSourceDeployments15$Outbound
|
|
8360
9310
|
| GetDeploymentGitSourceDeployments4$Outbound
|
|
8361
|
-
|
|
|
8362
|
-
| GetDeploymentGitSourceDeployments9$Outbound
|
|
9311
|
+
| GetDeploymentGitSourceDeployments10$Outbound
|
|
8363
9312
|
| GetDeploymentGitSourceDeployments11$Outbound
|
|
9313
|
+
| GetDeploymentGitSourceDeployments13$Outbound
|
|
9314
|
+
| GetDeploymentGitSourceDeployments14$Outbound
|
|
8364
9315
|
| GetDeploymentGitSourceDeployments2$Outbound
|
|
8365
9316
|
| GetDeploymentGitSourceDeployments3$Outbound
|
|
8366
|
-
|
|
|
9317
|
+
| GetDeploymentGitSourceDeployments6$Outbound
|
|
9318
|
+
| GetDeploymentGitSourceDeployments9$Outbound
|
|
8367
9319
|
| GetDeploymentGitSourceDeployments1$Outbound
|
|
8368
9320
|
| GetDeploymentGitSourceDeployments5$Outbound
|
|
8369
|
-
|
|
|
9321
|
+
| GetDeploymentGitSourceDeployments7$Outbound
|
|
9322
|
+
| GetDeploymentGitSourceDeployments8$Outbound;
|
|
8370
9323
|
|
|
8371
9324
|
/** @internal */
|
|
8372
9325
|
export const GetDeploymentResponseBodyGitSource$outboundSchema: z.ZodType<
|
|
@@ -8374,18 +9327,21 @@ export const GetDeploymentResponseBodyGitSource$outboundSchema: z.ZodType<
|
|
|
8374
9327
|
z.ZodTypeDef,
|
|
8375
9328
|
GetDeploymentResponseBodyGitSource
|
|
8376
9329
|
> = z.union([
|
|
8377
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
8378
9330
|
z.lazy(() => GetDeploymentGitSourceDeployments12$outboundSchema),
|
|
9331
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$outboundSchema),
|
|
8379
9332
|
z.lazy(() => GetDeploymentGitSourceDeployments4$outboundSchema),
|
|
8380
|
-
z.lazy(() =>
|
|
8381
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
9333
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
8382
9334
|
z.lazy(() => GetDeploymentGitSourceDeployments11$outboundSchema),
|
|
9335
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$outboundSchema),
|
|
9336
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$outboundSchema),
|
|
8383
9337
|
z.lazy(() => GetDeploymentGitSourceDeployments2$outboundSchema),
|
|
8384
9338
|
z.lazy(() => GetDeploymentGitSourceDeployments3$outboundSchema),
|
|
8385
|
-
z.lazy(() =>
|
|
9339
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$outboundSchema),
|
|
9340
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
8386
9341
|
z.lazy(() => GetDeploymentGitSourceDeployments1$outboundSchema),
|
|
8387
9342
|
z.lazy(() => GetDeploymentGitSourceDeployments5$outboundSchema),
|
|
8388
|
-
z.lazy(() =>
|
|
9343
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$outboundSchema),
|
|
9344
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$outboundSchema),
|
|
8389
9345
|
]);
|
|
8390
9346
|
|
|
8391
9347
|
/**
|
|
@@ -8423,6 +9379,27 @@ export function getDeploymentResponseBodyGitSourceFromJSON(
|
|
|
8423
9379
|
);
|
|
8424
9380
|
}
|
|
8425
9381
|
|
|
9382
|
+
/** @internal */
|
|
9383
|
+
export const ResponseBodyNodeVersion$inboundSchema: z.ZodNativeEnum<
|
|
9384
|
+
typeof ResponseBodyNodeVersion
|
|
9385
|
+
> = z.nativeEnum(ResponseBodyNodeVersion);
|
|
9386
|
+
|
|
9387
|
+
/** @internal */
|
|
9388
|
+
export const ResponseBodyNodeVersion$outboundSchema: z.ZodNativeEnum<
|
|
9389
|
+
typeof ResponseBodyNodeVersion
|
|
9390
|
+
> = ResponseBodyNodeVersion$inboundSchema;
|
|
9391
|
+
|
|
9392
|
+
/**
|
|
9393
|
+
* @internal
|
|
9394
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9395
|
+
*/
|
|
9396
|
+
export namespace ResponseBodyNodeVersion$ {
|
|
9397
|
+
/** @deprecated use `ResponseBodyNodeVersion$inboundSchema` instead. */
|
|
9398
|
+
export const inboundSchema = ResponseBodyNodeVersion$inboundSchema;
|
|
9399
|
+
/** @deprecated use `ResponseBodyNodeVersion$outboundSchema` instead. */
|
|
9400
|
+
export const outboundSchema = ResponseBodyNodeVersion$outboundSchema;
|
|
9401
|
+
}
|
|
9402
|
+
|
|
8426
9403
|
/** @internal */
|
|
8427
9404
|
export const ResponseBodyProject$inboundSchema: z.ZodType<
|
|
8428
9405
|
ResponseBodyProject,
|
|
@@ -11821,8 +12798,7 @@ export const GetDeploymentMicrofrontends2$inboundSchema: z.ZodType<
|
|
|
11821
12798
|
defaultAppProjectName: z.string(),
|
|
11822
12799
|
defaultRoute: z.string().optional(),
|
|
11823
12800
|
groupIds: z.array(z.string()),
|
|
11824
|
-
|
|
11825
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
12801
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
11826
12802
|
});
|
|
11827
12803
|
|
|
11828
12804
|
/** @internal */
|
|
@@ -11834,8 +12810,7 @@ export type GetDeploymentMicrofrontends2$Outbound = {
|
|
|
11834
12810
|
defaultAppProjectName: string;
|
|
11835
12811
|
defaultRoute?: string | undefined;
|
|
11836
12812
|
groupIds: Array<string>;
|
|
11837
|
-
|
|
11838
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
12813
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
11839
12814
|
};
|
|
11840
12815
|
|
|
11841
12816
|
/** @internal */
|
|
@@ -11851,8 +12826,7 @@ export const GetDeploymentMicrofrontends2$outboundSchema: z.ZodType<
|
|
|
11851
12826
|
defaultAppProjectName: z.string(),
|
|
11852
12827
|
defaultRoute: z.string().optional(),
|
|
11853
12828
|
groupIds: z.array(z.string()),
|
|
11854
|
-
|
|
11855
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
12829
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
11856
12830
|
});
|
|
11857
12831
|
|
|
11858
12832
|
/**
|
|
@@ -11898,8 +12872,7 @@ export const GetDeploymentMicrofrontends1$inboundSchema: z.ZodType<
|
|
|
11898
12872
|
defaultAppProjectName: z.string(),
|
|
11899
12873
|
defaultRoute: z.string().optional(),
|
|
11900
12874
|
groupIds: z.array(z.string()),
|
|
11901
|
-
|
|
11902
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
12875
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
11903
12876
|
});
|
|
11904
12877
|
|
|
11905
12878
|
/** @internal */
|
|
@@ -11908,8 +12881,7 @@ export type GetDeploymentMicrofrontends1$Outbound = {
|
|
|
11908
12881
|
defaultAppProjectName: string;
|
|
11909
12882
|
defaultRoute?: string | undefined;
|
|
11910
12883
|
groupIds: Array<string>;
|
|
11911
|
-
|
|
11912
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
12884
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
11913
12885
|
};
|
|
11914
12886
|
|
|
11915
12887
|
/** @internal */
|
|
@@ -11922,8 +12894,7 @@ export const GetDeploymentMicrofrontends1$outboundSchema: z.ZodType<
|
|
|
11922
12894
|
defaultAppProjectName: z.string(),
|
|
11923
12895
|
defaultRoute: z.string().optional(),
|
|
11924
12896
|
groupIds: z.array(z.string()),
|
|
11925
|
-
|
|
11926
|
-
previewEnvAliasEnabled: z.boolean().optional(),
|
|
12897
|
+
microfrontendsAlias2Enabled: z.boolean().optional(),
|
|
11927
12898
|
});
|
|
11928
12899
|
|
|
11929
12900
|
/**
|
|
@@ -12341,21 +13312,25 @@ export const GetDeploymentResponseBody1$inboundSchema: z.ZodType<
|
|
|
12341
13312
|
errorStep: z.string().optional(),
|
|
12342
13313
|
passiveRegions: z.array(z.string()).optional(),
|
|
12343
13314
|
gitSource: z.union([
|
|
12344
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
12345
13315
|
z.lazy(() => GetDeploymentGitSourceDeployments12$inboundSchema),
|
|
13316
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$inboundSchema),
|
|
12346
13317
|
z.lazy(() => GetDeploymentGitSourceDeployments4$inboundSchema),
|
|
12347
|
-
z.lazy(() =>
|
|
12348
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
13318
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$inboundSchema),
|
|
12349
13319
|
z.lazy(() => GetDeploymentGitSourceDeployments11$inboundSchema),
|
|
13320
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$inboundSchema),
|
|
13321
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$inboundSchema),
|
|
12350
13322
|
z.lazy(() => GetDeploymentGitSourceDeployments2$inboundSchema),
|
|
12351
13323
|
z.lazy(() => GetDeploymentGitSourceDeployments3$inboundSchema),
|
|
12352
|
-
z.lazy(() =>
|
|
13324
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$inboundSchema),
|
|
13325
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$inboundSchema),
|
|
12353
13326
|
z.lazy(() => GetDeploymentGitSourceDeployments1$inboundSchema),
|
|
12354
13327
|
z.lazy(() => GetDeploymentGitSourceDeployments5$inboundSchema),
|
|
12355
|
-
z.lazy(() =>
|
|
13328
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$inboundSchema),
|
|
13329
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$inboundSchema),
|
|
12356
13330
|
]).optional(),
|
|
12357
13331
|
meta: z.record(z.string()),
|
|
12358
13332
|
originCacheRegion: z.string().optional(),
|
|
13333
|
+
nodeVersion: ResponseBodyNodeVersion$inboundSchema.optional(),
|
|
12359
13334
|
project: z.lazy(() => ResponseBodyProject$inboundSchema).optional(),
|
|
12360
13335
|
readySubstate: ResponseBodyReadySubstate$inboundSchema.optional(),
|
|
12361
13336
|
regions: z.array(z.string()),
|
|
@@ -12469,21 +13444,25 @@ export type GetDeploymentResponseBody1$Outbound = {
|
|
|
12469
13444
|
errorStep?: string | undefined;
|
|
12470
13445
|
passiveRegions?: Array<string> | undefined;
|
|
12471
13446
|
gitSource?:
|
|
12472
|
-
| GetDeploymentGitSourceDeployments10$Outbound
|
|
12473
13447
|
| GetDeploymentGitSourceDeployments12$Outbound
|
|
13448
|
+
| GetDeploymentGitSourceDeployments15$Outbound
|
|
12474
13449
|
| GetDeploymentGitSourceDeployments4$Outbound
|
|
12475
|
-
|
|
|
12476
|
-
| GetDeploymentGitSourceDeployments9$Outbound
|
|
13450
|
+
| GetDeploymentGitSourceDeployments10$Outbound
|
|
12477
13451
|
| GetDeploymentGitSourceDeployments11$Outbound
|
|
13452
|
+
| GetDeploymentGitSourceDeployments13$Outbound
|
|
13453
|
+
| GetDeploymentGitSourceDeployments14$Outbound
|
|
12478
13454
|
| GetDeploymentGitSourceDeployments2$Outbound
|
|
12479
13455
|
| GetDeploymentGitSourceDeployments3$Outbound
|
|
12480
|
-
|
|
|
13456
|
+
| GetDeploymentGitSourceDeployments6$Outbound
|
|
13457
|
+
| GetDeploymentGitSourceDeployments9$Outbound
|
|
12481
13458
|
| GetDeploymentGitSourceDeployments1$Outbound
|
|
12482
13459
|
| GetDeploymentGitSourceDeployments5$Outbound
|
|
12483
|
-
|
|
|
13460
|
+
| GetDeploymentGitSourceDeployments7$Outbound
|
|
13461
|
+
| GetDeploymentGitSourceDeployments8$Outbound
|
|
12484
13462
|
| undefined;
|
|
12485
13463
|
meta: { [k: string]: string };
|
|
12486
13464
|
originCacheRegion?: string | undefined;
|
|
13465
|
+
nodeVersion?: string | undefined;
|
|
12487
13466
|
project?: ResponseBodyProject$Outbound | undefined;
|
|
12488
13467
|
readySubstate?: string | undefined;
|
|
12489
13468
|
regions: Array<string>;
|
|
@@ -12601,21 +13580,25 @@ export const GetDeploymentResponseBody1$outboundSchema: z.ZodType<
|
|
|
12601
13580
|
errorStep: z.string().optional(),
|
|
12602
13581
|
passiveRegions: z.array(z.string()).optional(),
|
|
12603
13582
|
gitSource: z.union([
|
|
12604
|
-
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
12605
13583
|
z.lazy(() => GetDeploymentGitSourceDeployments12$outboundSchema),
|
|
13584
|
+
z.lazy(() => GetDeploymentGitSourceDeployments15$outboundSchema),
|
|
12606
13585
|
z.lazy(() => GetDeploymentGitSourceDeployments4$outboundSchema),
|
|
12607
|
-
z.lazy(() =>
|
|
12608
|
-
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
13586
|
+
z.lazy(() => GetDeploymentGitSourceDeployments10$outboundSchema),
|
|
12609
13587
|
z.lazy(() => GetDeploymentGitSourceDeployments11$outboundSchema),
|
|
13588
|
+
z.lazy(() => GetDeploymentGitSourceDeployments13$outboundSchema),
|
|
13589
|
+
z.lazy(() => GetDeploymentGitSourceDeployments14$outboundSchema),
|
|
12610
13590
|
z.lazy(() => GetDeploymentGitSourceDeployments2$outboundSchema),
|
|
12611
13591
|
z.lazy(() => GetDeploymentGitSourceDeployments3$outboundSchema),
|
|
12612
|
-
z.lazy(() =>
|
|
13592
|
+
z.lazy(() => GetDeploymentGitSourceDeployments6$outboundSchema),
|
|
13593
|
+
z.lazy(() => GetDeploymentGitSourceDeployments9$outboundSchema),
|
|
12613
13594
|
z.lazy(() => GetDeploymentGitSourceDeployments1$outboundSchema),
|
|
12614
13595
|
z.lazy(() => GetDeploymentGitSourceDeployments5$outboundSchema),
|
|
12615
|
-
z.lazy(() =>
|
|
13596
|
+
z.lazy(() => GetDeploymentGitSourceDeployments7$outboundSchema),
|
|
13597
|
+
z.lazy(() => GetDeploymentGitSourceDeployments8$outboundSchema),
|
|
12616
13598
|
]).optional(),
|
|
12617
13599
|
meta: z.record(z.string()),
|
|
12618
13600
|
originCacheRegion: z.string().optional(),
|
|
13601
|
+
nodeVersion: ResponseBodyNodeVersion$outboundSchema.optional(),
|
|
12619
13602
|
project: z.lazy(() => ResponseBodyProject$outboundSchema).optional(),
|
|
12620
13603
|
readySubstate: ResponseBodyReadySubstate$outboundSchema.optional(),
|
|
12621
13604
|
regions: z.array(z.string()),
|