@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
|
@@ -216,12 +216,12 @@ export declare const GetDeploymentResponseBodyChecksConclusion: {
|
|
|
216
216
|
readonly Canceled: "canceled";
|
|
217
217
|
};
|
|
218
218
|
export type GetDeploymentResponseBodyChecksConclusion = ClosedEnum<typeof GetDeploymentResponseBodyChecksConclusion>;
|
|
219
|
-
export declare const
|
|
219
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type: {
|
|
220
220
|
readonly Bitbucket: "bitbucket";
|
|
221
221
|
};
|
|
222
|
-
export type
|
|
223
|
-
export type
|
|
224
|
-
type:
|
|
222
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type>;
|
|
223
|
+
export type GetDeploymentGitSource15 = {
|
|
224
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type;
|
|
225
225
|
ref: string;
|
|
226
226
|
sha: string;
|
|
227
227
|
owner?: string | undefined;
|
|
@@ -229,22 +229,34 @@ export type GetDeploymentGitSource12 = {
|
|
|
229
229
|
workspaceUuid: string;
|
|
230
230
|
repoUuid: string;
|
|
231
231
|
};
|
|
232
|
-
export declare const
|
|
232
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type: {
|
|
233
233
|
readonly Gitlab: "gitlab";
|
|
234
234
|
};
|
|
235
|
-
export type
|
|
236
|
-
export type
|
|
237
|
-
type:
|
|
235
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type>;
|
|
236
|
+
export type GetDeploymentGitSource14 = {
|
|
237
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type;
|
|
238
238
|
ref: string;
|
|
239
239
|
sha: string;
|
|
240
240
|
projectId: number;
|
|
241
241
|
};
|
|
242
|
-
export declare const
|
|
242
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type: {
|
|
243
|
+
readonly GithubLimited: "github-limited";
|
|
244
|
+
};
|
|
245
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type>;
|
|
246
|
+
export type GetDeploymentGitSource13 = {
|
|
247
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type;
|
|
248
|
+
ref: string;
|
|
249
|
+
sha: string;
|
|
250
|
+
repoId: number;
|
|
251
|
+
org?: string | undefined;
|
|
252
|
+
repo?: string | undefined;
|
|
253
|
+
};
|
|
254
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type: {
|
|
243
255
|
readonly GithubCustomHost: "github-custom-host";
|
|
244
256
|
};
|
|
245
|
-
export type
|
|
246
|
-
export type
|
|
247
|
-
type:
|
|
257
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type>;
|
|
258
|
+
export type GetDeploymentGitSource12 = {
|
|
259
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type;
|
|
248
260
|
host: string;
|
|
249
261
|
ref: string;
|
|
250
262
|
sha: string;
|
|
@@ -252,63 +264,87 @@ export type GetDeploymentGitSource10 = {
|
|
|
252
264
|
org?: string | undefined;
|
|
253
265
|
repo?: string | undefined;
|
|
254
266
|
};
|
|
255
|
-
export declare const
|
|
267
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type: {
|
|
256
268
|
readonly Github: "github";
|
|
257
269
|
};
|
|
258
|
-
export type
|
|
259
|
-
export type
|
|
260
|
-
type:
|
|
270
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type>;
|
|
271
|
+
export type GetDeploymentGitSource11 = {
|
|
272
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type;
|
|
261
273
|
ref: string;
|
|
262
274
|
sha: string;
|
|
263
275
|
repoId: number;
|
|
264
276
|
org?: string | undefined;
|
|
265
277
|
repo?: string | undefined;
|
|
266
278
|
};
|
|
267
|
-
export declare const
|
|
279
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type: {
|
|
268
280
|
readonly Custom: "custom";
|
|
269
281
|
};
|
|
270
|
-
export type
|
|
282
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type>;
|
|
271
283
|
/**
|
|
272
284
|
* Allows custom git sources (local folder mounted to the container) in test mode
|
|
273
285
|
*/
|
|
274
|
-
export type
|
|
275
|
-
type:
|
|
286
|
+
export type GetDeploymentGitSource10 = {
|
|
287
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type;
|
|
276
288
|
ref: string;
|
|
277
289
|
sha: string;
|
|
278
290
|
gitUrl: string;
|
|
279
291
|
};
|
|
280
|
-
export declare const
|
|
292
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type: {
|
|
293
|
+
readonly Bitbucket: "bitbucket";
|
|
294
|
+
};
|
|
295
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type>;
|
|
296
|
+
export type GetDeploymentGitSource9 = {
|
|
297
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type;
|
|
298
|
+
owner: string;
|
|
299
|
+
slug: string;
|
|
300
|
+
ref?: string | null | undefined;
|
|
301
|
+
sha?: string | undefined;
|
|
302
|
+
prId?: number | null | undefined;
|
|
303
|
+
};
|
|
304
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type: {
|
|
281
305
|
readonly Bitbucket: "bitbucket";
|
|
282
306
|
};
|
|
307
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type>;
|
|
308
|
+
export type GetDeploymentGitSource8 = {
|
|
309
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type;
|
|
310
|
+
workspaceUuid?: string | undefined;
|
|
311
|
+
repoUuid: string;
|
|
312
|
+
ref?: string | null | undefined;
|
|
313
|
+
sha?: string | undefined;
|
|
314
|
+
prId?: number | null | undefined;
|
|
315
|
+
};
|
|
316
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type: {
|
|
317
|
+
readonly Gitlab: "gitlab";
|
|
318
|
+
};
|
|
283
319
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type>;
|
|
320
|
+
export type GetDeploymentGitSourceDeploymentsProjectId = string | number;
|
|
284
321
|
export type GetDeploymentGitSource7 = {
|
|
285
322
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type;
|
|
286
|
-
|
|
287
|
-
slug: string;
|
|
323
|
+
projectId: string | number;
|
|
288
324
|
ref?: string | null | undefined;
|
|
289
325
|
sha?: string | undefined;
|
|
290
326
|
prId?: number | null | undefined;
|
|
291
327
|
};
|
|
292
328
|
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type: {
|
|
293
|
-
readonly
|
|
329
|
+
readonly GithubLimited: "github-limited";
|
|
294
330
|
};
|
|
295
331
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type>;
|
|
296
332
|
export type GetDeploymentGitSource6 = {
|
|
297
333
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type;
|
|
298
|
-
|
|
299
|
-
|
|
334
|
+
org: string;
|
|
335
|
+
repo: string;
|
|
300
336
|
ref?: string | null | undefined;
|
|
301
337
|
sha?: string | undefined;
|
|
302
338
|
prId?: number | null | undefined;
|
|
303
339
|
};
|
|
304
340
|
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type: {
|
|
305
|
-
readonly
|
|
341
|
+
readonly GithubLimited: "github-limited";
|
|
306
342
|
};
|
|
307
343
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type>;
|
|
308
|
-
export type
|
|
344
|
+
export type GetDeploymentGitSourceDeploymentsResponse200RepoId = string | number;
|
|
309
345
|
export type GetDeploymentGitSource5 = {
|
|
310
346
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type;
|
|
311
|
-
|
|
347
|
+
repoId: string | number;
|
|
312
348
|
ref?: string | null | undefined;
|
|
313
349
|
sha?: string | undefined;
|
|
314
350
|
prId?: number | null | undefined;
|
|
@@ -330,7 +366,7 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
330
366
|
readonly GithubCustomHost: "github-custom-host";
|
|
331
367
|
};
|
|
332
368
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type>;
|
|
333
|
-
export type
|
|
369
|
+
export type GetDeploymentGitSourceDeploymentsResponseRepoId = string | number;
|
|
334
370
|
export type GetDeploymentGitSource3 = {
|
|
335
371
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type;
|
|
336
372
|
host: string;
|
|
@@ -355,7 +391,7 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
355
391
|
readonly Github: "github";
|
|
356
392
|
};
|
|
357
393
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type>;
|
|
358
|
-
export type
|
|
394
|
+
export type GetDeploymentGitSourceDeploymentsRepoId = string | number;
|
|
359
395
|
export type GetDeploymentGitSource1 = {
|
|
360
396
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type;
|
|
361
397
|
repoId: string | number;
|
|
@@ -363,7 +399,24 @@ export type GetDeploymentGitSource1 = {
|
|
|
363
399
|
sha?: string | undefined;
|
|
364
400
|
prId?: number | null | undefined;
|
|
365
401
|
};
|
|
366
|
-
export type ResponseBodyGitSource =
|
|
402
|
+
export type ResponseBodyGitSource = GetDeploymentGitSource12 | GetDeploymentGitSource15 | GetDeploymentGitSource4 | GetDeploymentGitSource10 | GetDeploymentGitSource11 | GetDeploymentGitSource13 | GetDeploymentGitSource14 | GetDeploymentGitSource2 | GetDeploymentGitSource3 | GetDeploymentGitSource6 | GetDeploymentGitSource9 | GetDeploymentGitSource1 | GetDeploymentGitSource5 | GetDeploymentGitSource7 | GetDeploymentGitSource8;
|
|
403
|
+
/**
|
|
404
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
405
|
+
*/
|
|
406
|
+
export declare const GetDeploymentResponseBodyNodeVersion: {
|
|
407
|
+
readonly TwentyTwoDotX: "22.x";
|
|
408
|
+
readonly TwentyDotX: "20.x";
|
|
409
|
+
readonly EighteenDotX: "18.x";
|
|
410
|
+
readonly SixteenDotX: "16.x";
|
|
411
|
+
readonly FourteenDotX: "14.x";
|
|
412
|
+
readonly TwelveDotX: "12.x";
|
|
413
|
+
readonly TenDotX: "10.x";
|
|
414
|
+
readonly EightDot10DotX: "8.10.x";
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
418
|
+
*/
|
|
419
|
+
export type GetDeploymentResponseBodyNodeVersion = ClosedEnum<typeof GetDeploymentResponseBodyNodeVersion>;
|
|
367
420
|
export type GetDeploymentResponseBodyProject = {
|
|
368
421
|
id: string;
|
|
369
422
|
name: string;
|
|
@@ -464,11 +517,15 @@ export type GetDeploymentResponseBody2 = {
|
|
|
464
517
|
* Since November 2023 this field defines a set of regions that we will deploy the lambda to passively Lambdas will be deployed to these regions but only invoked if all of the primary `regions` are marked as out of service
|
|
465
518
|
*/
|
|
466
519
|
passiveRegions?: Array<string> | undefined;
|
|
467
|
-
gitSource?:
|
|
520
|
+
gitSource?: GetDeploymentGitSource12 | GetDeploymentGitSource15 | GetDeploymentGitSource4 | GetDeploymentGitSource10 | GetDeploymentGitSource11 | GetDeploymentGitSource13 | GetDeploymentGitSource14 | GetDeploymentGitSource2 | GetDeploymentGitSource3 | GetDeploymentGitSource6 | GetDeploymentGitSource9 | GetDeploymentGitSource1 | GetDeploymentGitSource5 | GetDeploymentGitSource7 | GetDeploymentGitSource8 | undefined;
|
|
468
521
|
meta: {
|
|
469
522
|
[k: string]: string;
|
|
470
523
|
};
|
|
471
524
|
originCacheRegion?: string | undefined;
|
|
525
|
+
/**
|
|
526
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
527
|
+
*/
|
|
528
|
+
nodeVersion?: GetDeploymentResponseBodyNodeVersion | undefined;
|
|
472
529
|
project?: GetDeploymentResponseBodyProject | undefined;
|
|
473
530
|
/**
|
|
474
531
|
* 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
|
|
@@ -542,6 +599,7 @@ export declare const ResponseBodyFramework: {
|
|
|
542
599
|
readonly Sanity: "sanity";
|
|
543
600
|
readonly Storybook: "storybook";
|
|
544
601
|
readonly Nitro: "nitro";
|
|
602
|
+
readonly Hono: "hono";
|
|
545
603
|
};
|
|
546
604
|
export type ResponseBodyFramework = ClosedEnum<typeof ResponseBodyFramework>;
|
|
547
605
|
export type ResponseBodySpeedInsights = {
|
|
@@ -844,12 +902,12 @@ export declare const ResponseBodyChecksConclusion: {
|
|
|
844
902
|
readonly Canceled: "canceled";
|
|
845
903
|
};
|
|
846
904
|
export type ResponseBodyChecksConclusion = ClosedEnum<typeof ResponseBodyChecksConclusion>;
|
|
847
|
-
export declare const
|
|
905
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type: {
|
|
848
906
|
readonly Bitbucket: "bitbucket";
|
|
849
907
|
};
|
|
850
|
-
export type
|
|
851
|
-
export type
|
|
852
|
-
type:
|
|
908
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type>;
|
|
909
|
+
export type GetDeploymentGitSourceDeployments15 = {
|
|
910
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type;
|
|
853
911
|
ref: string;
|
|
854
912
|
sha: string;
|
|
855
913
|
owner?: string | undefined;
|
|
@@ -857,22 +915,34 @@ export type GetDeploymentGitSourceDeployments12 = {
|
|
|
857
915
|
workspaceUuid: string;
|
|
858
916
|
repoUuid: string;
|
|
859
917
|
};
|
|
860
|
-
export declare const
|
|
918
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type: {
|
|
861
919
|
readonly Gitlab: "gitlab";
|
|
862
920
|
};
|
|
863
|
-
export type
|
|
864
|
-
export type
|
|
865
|
-
type:
|
|
921
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type>;
|
|
922
|
+
export type GetDeploymentGitSourceDeployments14 = {
|
|
923
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type;
|
|
866
924
|
ref: string;
|
|
867
925
|
sha: string;
|
|
868
926
|
projectId: number;
|
|
869
927
|
};
|
|
870
|
-
export declare const
|
|
928
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type: {
|
|
929
|
+
readonly GithubLimited: "github-limited";
|
|
930
|
+
};
|
|
931
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type>;
|
|
932
|
+
export type GetDeploymentGitSourceDeployments13 = {
|
|
933
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type;
|
|
934
|
+
ref: string;
|
|
935
|
+
sha: string;
|
|
936
|
+
repoId: number;
|
|
937
|
+
org?: string | undefined;
|
|
938
|
+
repo?: string | undefined;
|
|
939
|
+
};
|
|
940
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type: {
|
|
871
941
|
readonly GithubCustomHost: "github-custom-host";
|
|
872
942
|
};
|
|
873
|
-
export type
|
|
874
|
-
export type
|
|
875
|
-
type:
|
|
943
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type>;
|
|
944
|
+
export type GetDeploymentGitSourceDeployments12 = {
|
|
945
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type;
|
|
876
946
|
host: string;
|
|
877
947
|
ref: string;
|
|
878
948
|
sha: string;
|
|
@@ -880,63 +950,87 @@ export type GetDeploymentGitSourceDeployments10 = {
|
|
|
880
950
|
org?: string | undefined;
|
|
881
951
|
repo?: string | undefined;
|
|
882
952
|
};
|
|
883
|
-
export declare const
|
|
953
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type: {
|
|
884
954
|
readonly Github: "github";
|
|
885
955
|
};
|
|
886
|
-
export type
|
|
887
|
-
export type
|
|
888
|
-
type:
|
|
956
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type>;
|
|
957
|
+
export type GetDeploymentGitSourceDeployments11 = {
|
|
958
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type;
|
|
889
959
|
ref: string;
|
|
890
960
|
sha: string;
|
|
891
961
|
repoId: number;
|
|
892
962
|
org?: string | undefined;
|
|
893
963
|
repo?: string | undefined;
|
|
894
964
|
};
|
|
895
|
-
export declare const
|
|
965
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type: {
|
|
896
966
|
readonly Custom: "custom";
|
|
897
967
|
};
|
|
898
|
-
export type
|
|
968
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type>;
|
|
899
969
|
/**
|
|
900
970
|
* Allows custom git sources (local folder mounted to the container) in test mode
|
|
901
971
|
*/
|
|
902
|
-
export type
|
|
903
|
-
type:
|
|
972
|
+
export type GetDeploymentGitSourceDeployments10 = {
|
|
973
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type;
|
|
904
974
|
ref: string;
|
|
905
975
|
sha: string;
|
|
906
976
|
gitUrl: string;
|
|
907
977
|
};
|
|
908
|
-
export declare const
|
|
978
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type: {
|
|
979
|
+
readonly Bitbucket: "bitbucket";
|
|
980
|
+
};
|
|
981
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type>;
|
|
982
|
+
export type GetDeploymentGitSourceDeployments9 = {
|
|
983
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type;
|
|
984
|
+
owner: string;
|
|
985
|
+
slug: string;
|
|
986
|
+
ref?: string | null | undefined;
|
|
987
|
+
sha?: string | undefined;
|
|
988
|
+
prId?: number | null | undefined;
|
|
989
|
+
};
|
|
990
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type: {
|
|
909
991
|
readonly Bitbucket: "bitbucket";
|
|
910
992
|
};
|
|
993
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type>;
|
|
994
|
+
export type GetDeploymentGitSourceDeployments8 = {
|
|
995
|
+
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type;
|
|
996
|
+
workspaceUuid?: string | undefined;
|
|
997
|
+
repoUuid: string;
|
|
998
|
+
ref?: string | null | undefined;
|
|
999
|
+
sha?: string | undefined;
|
|
1000
|
+
prId?: number | null | undefined;
|
|
1001
|
+
};
|
|
1002
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType: {
|
|
1003
|
+
readonly Gitlab: "gitlab";
|
|
1004
|
+
};
|
|
911
1005
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType>;
|
|
1006
|
+
export type GetDeploymentGitSourceProjectId = string | number;
|
|
912
1007
|
export type GetDeploymentGitSourceDeployments7 = {
|
|
913
1008
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType;
|
|
914
|
-
|
|
915
|
-
slug: string;
|
|
1009
|
+
projectId: string | number;
|
|
916
1010
|
ref?: string | null | undefined;
|
|
917
1011
|
sha?: string | undefined;
|
|
918
1012
|
prId?: number | null | undefined;
|
|
919
1013
|
};
|
|
920
1014
|
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType: {
|
|
921
|
-
readonly
|
|
1015
|
+
readonly GithubLimited: "github-limited";
|
|
922
1016
|
};
|
|
923
1017
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType>;
|
|
924
1018
|
export type GetDeploymentGitSourceDeployments6 = {
|
|
925
1019
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType;
|
|
926
|
-
|
|
927
|
-
|
|
1020
|
+
org: string;
|
|
1021
|
+
repo: string;
|
|
928
1022
|
ref?: string | null | undefined;
|
|
929
1023
|
sha?: string | undefined;
|
|
930
1024
|
prId?: number | null | undefined;
|
|
931
1025
|
};
|
|
932
1026
|
export declare const GetDeploymentGitSourceDeploymentsResponse200Type: {
|
|
933
|
-
readonly
|
|
1027
|
+
readonly GithubLimited: "github-limited";
|
|
934
1028
|
};
|
|
935
1029
|
export type GetDeploymentGitSourceDeploymentsResponse200Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200Type>;
|
|
936
|
-
export type
|
|
1030
|
+
export type GetDeploymentGitSourceRepoId = string | number;
|
|
937
1031
|
export type GetDeploymentGitSourceDeployments5 = {
|
|
938
1032
|
type: GetDeploymentGitSourceDeploymentsResponse200Type;
|
|
939
|
-
|
|
1033
|
+
repoId: string | number;
|
|
940
1034
|
ref?: string | null | undefined;
|
|
941
1035
|
sha?: string | undefined;
|
|
942
1036
|
prId?: number | null | undefined;
|
|
@@ -958,7 +1052,7 @@ export declare const GetDeploymentGitSourceDeploymentsType: {
|
|
|
958
1052
|
readonly GithubCustomHost: "github-custom-host";
|
|
959
1053
|
};
|
|
960
1054
|
export type GetDeploymentGitSourceDeploymentsType = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsType>;
|
|
961
|
-
export type
|
|
1055
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId = string | number;
|
|
962
1056
|
export type GetDeploymentGitSourceDeployments3 = {
|
|
963
1057
|
type: GetDeploymentGitSourceDeploymentsType;
|
|
964
1058
|
host: string;
|
|
@@ -983,7 +1077,7 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
983
1077
|
readonly Github: "github";
|
|
984
1078
|
};
|
|
985
1079
|
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type = ClosedEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type>;
|
|
986
|
-
export type
|
|
1080
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId = string | number;
|
|
987
1081
|
export type GetDeploymentGitSourceDeployments1 = {
|
|
988
1082
|
type: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type;
|
|
989
1083
|
repoId: string | number;
|
|
@@ -991,7 +1085,24 @@ export type GetDeploymentGitSourceDeployments1 = {
|
|
|
991
1085
|
sha?: string | undefined;
|
|
992
1086
|
prId?: number | null | undefined;
|
|
993
1087
|
};
|
|
994
|
-
export type GetDeploymentResponseBodyGitSource =
|
|
1088
|
+
export type GetDeploymentResponseBodyGitSource = GetDeploymentGitSourceDeployments12 | GetDeploymentGitSourceDeployments15 | GetDeploymentGitSourceDeployments4 | GetDeploymentGitSourceDeployments10 | GetDeploymentGitSourceDeployments11 | GetDeploymentGitSourceDeployments13 | GetDeploymentGitSourceDeployments14 | GetDeploymentGitSourceDeployments2 | GetDeploymentGitSourceDeployments3 | GetDeploymentGitSourceDeployments6 | GetDeploymentGitSourceDeployments9 | GetDeploymentGitSourceDeployments1 | GetDeploymentGitSourceDeployments5 | GetDeploymentGitSourceDeployments7 | GetDeploymentGitSourceDeployments8;
|
|
1089
|
+
/**
|
|
1090
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1091
|
+
*/
|
|
1092
|
+
export declare const ResponseBodyNodeVersion: {
|
|
1093
|
+
readonly TwentyTwoDotX: "22.x";
|
|
1094
|
+
readonly TwentyDotX: "20.x";
|
|
1095
|
+
readonly EighteenDotX: "18.x";
|
|
1096
|
+
readonly SixteenDotX: "16.x";
|
|
1097
|
+
readonly FourteenDotX: "14.x";
|
|
1098
|
+
readonly TwelveDotX: "12.x";
|
|
1099
|
+
readonly TenDotX: "10.x";
|
|
1100
|
+
readonly EightDot10DotX: "8.10.x";
|
|
1101
|
+
};
|
|
1102
|
+
/**
|
|
1103
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1104
|
+
*/
|
|
1105
|
+
export type ResponseBodyNodeVersion = ClosedEnum<typeof ResponseBodyNodeVersion>;
|
|
995
1106
|
export type ResponseBodyProject = {
|
|
996
1107
|
id: string;
|
|
997
1108
|
name: string;
|
|
@@ -1422,13 +1533,9 @@ export type GetDeploymentMicrofrontends2 = {
|
|
|
1422
1533
|
*/
|
|
1423
1534
|
groupIds: Array<string>;
|
|
1424
1535
|
/**
|
|
1425
|
-
* Whether the
|
|
1536
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1426
1537
|
*/
|
|
1427
|
-
|
|
1428
|
-
/**
|
|
1429
|
-
* 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.
|
|
1430
|
-
*/
|
|
1431
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
1538
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1432
1539
|
};
|
|
1433
1540
|
export type GetDeploymentMicrofrontends1 = {
|
|
1434
1541
|
/**
|
|
@@ -1448,13 +1555,9 @@ export type GetDeploymentMicrofrontends1 = {
|
|
|
1448
1555
|
*/
|
|
1449
1556
|
groupIds: Array<string>;
|
|
1450
1557
|
/**
|
|
1451
|
-
* Whether the
|
|
1452
|
-
*/
|
|
1453
|
-
microfrontendsAliasEnabled?: boolean | undefined;
|
|
1454
|
-
/**
|
|
1455
|
-
* 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.
|
|
1558
|
+
* Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not.
|
|
1456
1559
|
*/
|
|
1457
|
-
|
|
1560
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
1458
1561
|
};
|
|
1459
1562
|
export type ResponseBodyMicrofrontends = GetDeploymentMicrofrontends2 | GetDeploymentMicrofrontends1;
|
|
1460
1563
|
export declare const ResponseBodyFunctionType: {
|
|
@@ -1569,11 +1672,15 @@ export type GetDeploymentResponseBody1 = {
|
|
|
1569
1672
|
* Since November 2023 this field defines a set of regions that we will deploy the lambda to passively Lambdas will be deployed to these regions but only invoked if all of the primary `regions` are marked as out of service
|
|
1570
1673
|
*/
|
|
1571
1674
|
passiveRegions?: Array<string> | undefined;
|
|
1572
|
-
gitSource?:
|
|
1675
|
+
gitSource?: GetDeploymentGitSourceDeployments12 | GetDeploymentGitSourceDeployments15 | GetDeploymentGitSourceDeployments4 | GetDeploymentGitSourceDeployments10 | GetDeploymentGitSourceDeployments11 | GetDeploymentGitSourceDeployments13 | GetDeploymentGitSourceDeployments14 | GetDeploymentGitSourceDeployments2 | GetDeploymentGitSourceDeployments3 | GetDeploymentGitSourceDeployments6 | GetDeploymentGitSourceDeployments9 | GetDeploymentGitSourceDeployments1 | GetDeploymentGitSourceDeployments5 | GetDeploymentGitSourceDeployments7 | GetDeploymentGitSourceDeployments8 | undefined;
|
|
1573
1676
|
meta: {
|
|
1574
1677
|
[k: string]: string;
|
|
1575
1678
|
};
|
|
1576
1679
|
originCacheRegion?: string | undefined;
|
|
1680
|
+
/**
|
|
1681
|
+
* If set it overrides the `projectSettings.nodeVersion` for this deployment.
|
|
1682
|
+
*/
|
|
1683
|
+
nodeVersion?: ResponseBodyNodeVersion | undefined;
|
|
1577
1684
|
project?: ResponseBodyProject | undefined;
|
|
1578
1685
|
/**
|
|
1579
1686
|
* 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
|
|
@@ -2150,27 +2257,27 @@ export declare namespace GetDeploymentResponseBodyChecksConclusion$ {
|
|
|
2150
2257
|
}>;
|
|
2151
2258
|
}
|
|
2152
2259
|
/** @internal */
|
|
2153
|
-
export declare const
|
|
2260
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type>;
|
|
2154
2261
|
/** @internal */
|
|
2155
|
-
export declare const
|
|
2262
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type>;
|
|
2156
2263
|
/**
|
|
2157
2264
|
* @internal
|
|
2158
2265
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2159
2266
|
*/
|
|
2160
|
-
export declare namespace
|
|
2161
|
-
/** @deprecated use `
|
|
2267
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$ {
|
|
2268
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema` instead. */
|
|
2162
2269
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2163
2270
|
readonly Bitbucket: "bitbucket";
|
|
2164
2271
|
}>;
|
|
2165
|
-
/** @deprecated use `
|
|
2272
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema` instead. */
|
|
2166
2273
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2167
2274
|
readonly Bitbucket: "bitbucket";
|
|
2168
2275
|
}>;
|
|
2169
2276
|
}
|
|
2170
2277
|
/** @internal */
|
|
2171
|
-
export declare const
|
|
2278
|
+
export declare const GetDeploymentGitSource15$inboundSchema: z.ZodType<GetDeploymentGitSource15, z.ZodTypeDef, unknown>;
|
|
2172
2279
|
/** @internal */
|
|
2173
|
-
export type
|
|
2280
|
+
export type GetDeploymentGitSource15$Outbound = {
|
|
2174
2281
|
type: string;
|
|
2175
2282
|
ref: string;
|
|
2176
2283
|
sha: string;
|
|
@@ -2180,88 +2287,87 @@ export type GetDeploymentGitSource12$Outbound = {
|
|
|
2180
2287
|
repoUuid: string;
|
|
2181
2288
|
};
|
|
2182
2289
|
/** @internal */
|
|
2183
|
-
export declare const
|
|
2290
|
+
export declare const GetDeploymentGitSource15$outboundSchema: z.ZodType<GetDeploymentGitSource15$Outbound, z.ZodTypeDef, GetDeploymentGitSource15>;
|
|
2184
2291
|
/**
|
|
2185
2292
|
* @internal
|
|
2186
2293
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2187
2294
|
*/
|
|
2188
|
-
export declare namespace
|
|
2189
|
-
/** @deprecated use `
|
|
2190
|
-
const inboundSchema: z.ZodType<
|
|
2191
|
-
/** @deprecated use `
|
|
2192
|
-
const outboundSchema: z.ZodType<
|
|
2193
|
-
/** @deprecated use `
|
|
2194
|
-
type Outbound =
|
|
2295
|
+
export declare namespace GetDeploymentGitSource15$ {
|
|
2296
|
+
/** @deprecated use `GetDeploymentGitSource15$inboundSchema` instead. */
|
|
2297
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource15, z.ZodTypeDef, unknown>;
|
|
2298
|
+
/** @deprecated use `GetDeploymentGitSource15$outboundSchema` instead. */
|
|
2299
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource15$Outbound, z.ZodTypeDef, GetDeploymentGitSource15>;
|
|
2300
|
+
/** @deprecated use `GetDeploymentGitSource15$Outbound` instead. */
|
|
2301
|
+
type Outbound = GetDeploymentGitSource15$Outbound;
|
|
2195
2302
|
}
|
|
2196
|
-
export declare function
|
|
2197
|
-
export declare function
|
|
2303
|
+
export declare function getDeploymentGitSource15ToJSON(getDeploymentGitSource15: GetDeploymentGitSource15): string;
|
|
2304
|
+
export declare function getDeploymentGitSource15FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource15, SDKValidationError>;
|
|
2198
2305
|
/** @internal */
|
|
2199
|
-
export declare const
|
|
2306
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type>;
|
|
2200
2307
|
/** @internal */
|
|
2201
|
-
export declare const
|
|
2308
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type>;
|
|
2202
2309
|
/**
|
|
2203
2310
|
* @internal
|
|
2204
2311
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2205
2312
|
*/
|
|
2206
|
-
export declare namespace
|
|
2207
|
-
/** @deprecated use `
|
|
2313
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$ {
|
|
2314
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema` instead. */
|
|
2208
2315
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2209
2316
|
readonly Gitlab: "gitlab";
|
|
2210
2317
|
}>;
|
|
2211
|
-
/** @deprecated use `
|
|
2318
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema` instead. */
|
|
2212
2319
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2213
2320
|
readonly Gitlab: "gitlab";
|
|
2214
2321
|
}>;
|
|
2215
2322
|
}
|
|
2216
2323
|
/** @internal */
|
|
2217
|
-
export declare const
|
|
2324
|
+
export declare const GetDeploymentGitSource14$inboundSchema: z.ZodType<GetDeploymentGitSource14, z.ZodTypeDef, unknown>;
|
|
2218
2325
|
/** @internal */
|
|
2219
|
-
export type
|
|
2326
|
+
export type GetDeploymentGitSource14$Outbound = {
|
|
2220
2327
|
type: string;
|
|
2221
2328
|
ref: string;
|
|
2222
2329
|
sha: string;
|
|
2223
2330
|
projectId: number;
|
|
2224
2331
|
};
|
|
2225
2332
|
/** @internal */
|
|
2226
|
-
export declare const
|
|
2333
|
+
export declare const GetDeploymentGitSource14$outboundSchema: z.ZodType<GetDeploymentGitSource14$Outbound, z.ZodTypeDef, GetDeploymentGitSource14>;
|
|
2227
2334
|
/**
|
|
2228
2335
|
* @internal
|
|
2229
2336
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2230
2337
|
*/
|
|
2231
|
-
export declare namespace
|
|
2232
|
-
/** @deprecated use `
|
|
2233
|
-
const inboundSchema: z.ZodType<
|
|
2234
|
-
/** @deprecated use `
|
|
2235
|
-
const outboundSchema: z.ZodType<
|
|
2236
|
-
/** @deprecated use `
|
|
2237
|
-
type Outbound =
|
|
2338
|
+
export declare namespace GetDeploymentGitSource14$ {
|
|
2339
|
+
/** @deprecated use `GetDeploymentGitSource14$inboundSchema` instead. */
|
|
2340
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource14, z.ZodTypeDef, unknown>;
|
|
2341
|
+
/** @deprecated use `GetDeploymentGitSource14$outboundSchema` instead. */
|
|
2342
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource14$Outbound, z.ZodTypeDef, GetDeploymentGitSource14>;
|
|
2343
|
+
/** @deprecated use `GetDeploymentGitSource14$Outbound` instead. */
|
|
2344
|
+
type Outbound = GetDeploymentGitSource14$Outbound;
|
|
2238
2345
|
}
|
|
2239
|
-
export declare function
|
|
2240
|
-
export declare function
|
|
2346
|
+
export declare function getDeploymentGitSource14ToJSON(getDeploymentGitSource14: GetDeploymentGitSource14): string;
|
|
2347
|
+
export declare function getDeploymentGitSource14FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource14, SDKValidationError>;
|
|
2241
2348
|
/** @internal */
|
|
2242
|
-
export declare const
|
|
2349
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type>;
|
|
2243
2350
|
/** @internal */
|
|
2244
|
-
export declare const
|
|
2351
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type>;
|
|
2245
2352
|
/**
|
|
2246
2353
|
* @internal
|
|
2247
2354
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2248
2355
|
*/
|
|
2249
|
-
export declare namespace
|
|
2250
|
-
/** @deprecated use `
|
|
2356
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$ {
|
|
2357
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema` instead. */
|
|
2251
2358
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2252
|
-
readonly
|
|
2359
|
+
readonly GithubLimited: "github-limited";
|
|
2253
2360
|
}>;
|
|
2254
|
-
/** @deprecated use `
|
|
2361
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema` instead. */
|
|
2255
2362
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2256
|
-
readonly
|
|
2363
|
+
readonly GithubLimited: "github-limited";
|
|
2257
2364
|
}>;
|
|
2258
2365
|
}
|
|
2259
2366
|
/** @internal */
|
|
2260
|
-
export declare const
|
|
2367
|
+
export declare const GetDeploymentGitSource13$inboundSchema: z.ZodType<GetDeploymentGitSource13, z.ZodTypeDef, unknown>;
|
|
2261
2368
|
/** @internal */
|
|
2262
|
-
export type
|
|
2369
|
+
export type GetDeploymentGitSource13$Outbound = {
|
|
2263
2370
|
type: string;
|
|
2264
|
-
host: string;
|
|
2265
2371
|
ref: string;
|
|
2266
2372
|
sha: string;
|
|
2267
2373
|
repoId: number;
|
|
@@ -2269,44 +2375,45 @@ export type GetDeploymentGitSource10$Outbound = {
|
|
|
2269
2375
|
repo?: string | undefined;
|
|
2270
2376
|
};
|
|
2271
2377
|
/** @internal */
|
|
2272
|
-
export declare const
|
|
2378
|
+
export declare const GetDeploymentGitSource13$outboundSchema: z.ZodType<GetDeploymentGitSource13$Outbound, z.ZodTypeDef, GetDeploymentGitSource13>;
|
|
2273
2379
|
/**
|
|
2274
2380
|
* @internal
|
|
2275
2381
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2276
2382
|
*/
|
|
2277
|
-
export declare namespace
|
|
2278
|
-
/** @deprecated use `
|
|
2279
|
-
const inboundSchema: z.ZodType<
|
|
2280
|
-
/** @deprecated use `
|
|
2281
|
-
const outboundSchema: z.ZodType<
|
|
2282
|
-
/** @deprecated use `
|
|
2283
|
-
type Outbound =
|
|
2383
|
+
export declare namespace GetDeploymentGitSource13$ {
|
|
2384
|
+
/** @deprecated use `GetDeploymentGitSource13$inboundSchema` instead. */
|
|
2385
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource13, z.ZodTypeDef, unknown>;
|
|
2386
|
+
/** @deprecated use `GetDeploymentGitSource13$outboundSchema` instead. */
|
|
2387
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource13$Outbound, z.ZodTypeDef, GetDeploymentGitSource13>;
|
|
2388
|
+
/** @deprecated use `GetDeploymentGitSource13$Outbound` instead. */
|
|
2389
|
+
type Outbound = GetDeploymentGitSource13$Outbound;
|
|
2284
2390
|
}
|
|
2285
|
-
export declare function
|
|
2286
|
-
export declare function
|
|
2391
|
+
export declare function getDeploymentGitSource13ToJSON(getDeploymentGitSource13: GetDeploymentGitSource13): string;
|
|
2392
|
+
export declare function getDeploymentGitSource13FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource13, SDKValidationError>;
|
|
2287
2393
|
/** @internal */
|
|
2288
|
-
export declare const
|
|
2394
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type>;
|
|
2289
2395
|
/** @internal */
|
|
2290
|
-
export declare const
|
|
2396
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type>;
|
|
2291
2397
|
/**
|
|
2292
2398
|
* @internal
|
|
2293
2399
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2294
2400
|
*/
|
|
2295
|
-
export declare namespace
|
|
2296
|
-
/** @deprecated use `
|
|
2401
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$ {
|
|
2402
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema` instead. */
|
|
2297
2403
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2298
|
-
readonly
|
|
2404
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
2299
2405
|
}>;
|
|
2300
|
-
/** @deprecated use `
|
|
2406
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema` instead. */
|
|
2301
2407
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2302
|
-
readonly
|
|
2408
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
2303
2409
|
}>;
|
|
2304
2410
|
}
|
|
2305
2411
|
/** @internal */
|
|
2306
|
-
export declare const
|
|
2412
|
+
export declare const GetDeploymentGitSource12$inboundSchema: z.ZodType<GetDeploymentGitSource12, z.ZodTypeDef, unknown>;
|
|
2307
2413
|
/** @internal */
|
|
2308
|
-
export type
|
|
2414
|
+
export type GetDeploymentGitSource12$Outbound = {
|
|
2309
2415
|
type: string;
|
|
2416
|
+
host: string;
|
|
2310
2417
|
ref: string;
|
|
2311
2418
|
sha: string;
|
|
2312
2419
|
repoId: number;
|
|
@@ -2314,7 +2421,140 @@ export type GetDeploymentGitSource9$Outbound = {
|
|
|
2314
2421
|
repo?: string | undefined;
|
|
2315
2422
|
};
|
|
2316
2423
|
/** @internal */
|
|
2317
|
-
export declare const
|
|
2424
|
+
export declare const GetDeploymentGitSource12$outboundSchema: z.ZodType<GetDeploymentGitSource12$Outbound, z.ZodTypeDef, GetDeploymentGitSource12>;
|
|
2425
|
+
/**
|
|
2426
|
+
* @internal
|
|
2427
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2428
|
+
*/
|
|
2429
|
+
export declare namespace GetDeploymentGitSource12$ {
|
|
2430
|
+
/** @deprecated use `GetDeploymentGitSource12$inboundSchema` instead. */
|
|
2431
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource12, z.ZodTypeDef, unknown>;
|
|
2432
|
+
/** @deprecated use `GetDeploymentGitSource12$outboundSchema` instead. */
|
|
2433
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource12$Outbound, z.ZodTypeDef, GetDeploymentGitSource12>;
|
|
2434
|
+
/** @deprecated use `GetDeploymentGitSource12$Outbound` instead. */
|
|
2435
|
+
type Outbound = GetDeploymentGitSource12$Outbound;
|
|
2436
|
+
}
|
|
2437
|
+
export declare function getDeploymentGitSource12ToJSON(getDeploymentGitSource12: GetDeploymentGitSource12): string;
|
|
2438
|
+
export declare function getDeploymentGitSource12FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource12, SDKValidationError>;
|
|
2439
|
+
/** @internal */
|
|
2440
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type>;
|
|
2441
|
+
/** @internal */
|
|
2442
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type>;
|
|
2443
|
+
/**
|
|
2444
|
+
* @internal
|
|
2445
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2446
|
+
*/
|
|
2447
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$ {
|
|
2448
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema` instead. */
|
|
2449
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
2450
|
+
readonly Github: "github";
|
|
2451
|
+
}>;
|
|
2452
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema` instead. */
|
|
2453
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
2454
|
+
readonly Github: "github";
|
|
2455
|
+
}>;
|
|
2456
|
+
}
|
|
2457
|
+
/** @internal */
|
|
2458
|
+
export declare const GetDeploymentGitSource11$inboundSchema: z.ZodType<GetDeploymentGitSource11, z.ZodTypeDef, unknown>;
|
|
2459
|
+
/** @internal */
|
|
2460
|
+
export type GetDeploymentGitSource11$Outbound = {
|
|
2461
|
+
type: string;
|
|
2462
|
+
ref: string;
|
|
2463
|
+
sha: string;
|
|
2464
|
+
repoId: number;
|
|
2465
|
+
org?: string | undefined;
|
|
2466
|
+
repo?: string | undefined;
|
|
2467
|
+
};
|
|
2468
|
+
/** @internal */
|
|
2469
|
+
export declare const GetDeploymentGitSource11$outboundSchema: z.ZodType<GetDeploymentGitSource11$Outbound, z.ZodTypeDef, GetDeploymentGitSource11>;
|
|
2470
|
+
/**
|
|
2471
|
+
* @internal
|
|
2472
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2473
|
+
*/
|
|
2474
|
+
export declare namespace GetDeploymentGitSource11$ {
|
|
2475
|
+
/** @deprecated use `GetDeploymentGitSource11$inboundSchema` instead. */
|
|
2476
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource11, z.ZodTypeDef, unknown>;
|
|
2477
|
+
/** @deprecated use `GetDeploymentGitSource11$outboundSchema` instead. */
|
|
2478
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource11$Outbound, z.ZodTypeDef, GetDeploymentGitSource11>;
|
|
2479
|
+
/** @deprecated use `GetDeploymentGitSource11$Outbound` instead. */
|
|
2480
|
+
type Outbound = GetDeploymentGitSource11$Outbound;
|
|
2481
|
+
}
|
|
2482
|
+
export declare function getDeploymentGitSource11ToJSON(getDeploymentGitSource11: GetDeploymentGitSource11): string;
|
|
2483
|
+
export declare function getDeploymentGitSource11FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource11, SDKValidationError>;
|
|
2484
|
+
/** @internal */
|
|
2485
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type>;
|
|
2486
|
+
/** @internal */
|
|
2487
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type>;
|
|
2488
|
+
/**
|
|
2489
|
+
* @internal
|
|
2490
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2491
|
+
*/
|
|
2492
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$ {
|
|
2493
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema` instead. */
|
|
2494
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
2495
|
+
readonly Custom: "custom";
|
|
2496
|
+
}>;
|
|
2497
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema` instead. */
|
|
2498
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
2499
|
+
readonly Custom: "custom";
|
|
2500
|
+
}>;
|
|
2501
|
+
}
|
|
2502
|
+
/** @internal */
|
|
2503
|
+
export declare const GetDeploymentGitSource10$inboundSchema: z.ZodType<GetDeploymentGitSource10, z.ZodTypeDef, unknown>;
|
|
2504
|
+
/** @internal */
|
|
2505
|
+
export type GetDeploymentGitSource10$Outbound = {
|
|
2506
|
+
type: string;
|
|
2507
|
+
ref: string;
|
|
2508
|
+
sha: string;
|
|
2509
|
+
gitUrl: string;
|
|
2510
|
+
};
|
|
2511
|
+
/** @internal */
|
|
2512
|
+
export declare const GetDeploymentGitSource10$outboundSchema: z.ZodType<GetDeploymentGitSource10$Outbound, z.ZodTypeDef, GetDeploymentGitSource10>;
|
|
2513
|
+
/**
|
|
2514
|
+
* @internal
|
|
2515
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2516
|
+
*/
|
|
2517
|
+
export declare namespace GetDeploymentGitSource10$ {
|
|
2518
|
+
/** @deprecated use `GetDeploymentGitSource10$inboundSchema` instead. */
|
|
2519
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSource10, z.ZodTypeDef, unknown>;
|
|
2520
|
+
/** @deprecated use `GetDeploymentGitSource10$outboundSchema` instead. */
|
|
2521
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSource10$Outbound, z.ZodTypeDef, GetDeploymentGitSource10>;
|
|
2522
|
+
/** @deprecated use `GetDeploymentGitSource10$Outbound` instead. */
|
|
2523
|
+
type Outbound = GetDeploymentGitSource10$Outbound;
|
|
2524
|
+
}
|
|
2525
|
+
export declare function getDeploymentGitSource10ToJSON(getDeploymentGitSource10: GetDeploymentGitSource10): string;
|
|
2526
|
+
export declare function getDeploymentGitSource10FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSource10, SDKValidationError>;
|
|
2527
|
+
/** @internal */
|
|
2528
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type>;
|
|
2529
|
+
/** @internal */
|
|
2530
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type>;
|
|
2531
|
+
/**
|
|
2532
|
+
* @internal
|
|
2533
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2534
|
+
*/
|
|
2535
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$ {
|
|
2536
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema` instead. */
|
|
2537
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
2538
|
+
readonly Bitbucket: "bitbucket";
|
|
2539
|
+
}>;
|
|
2540
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema` instead. */
|
|
2541
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
2542
|
+
readonly Bitbucket: "bitbucket";
|
|
2543
|
+
}>;
|
|
2544
|
+
}
|
|
2545
|
+
/** @internal */
|
|
2546
|
+
export declare const GetDeploymentGitSource9$inboundSchema: z.ZodType<GetDeploymentGitSource9, z.ZodTypeDef, unknown>;
|
|
2547
|
+
/** @internal */
|
|
2548
|
+
export type GetDeploymentGitSource9$Outbound = {
|
|
2549
|
+
type: string;
|
|
2550
|
+
owner: string;
|
|
2551
|
+
slug: string;
|
|
2552
|
+
ref?: string | null | undefined;
|
|
2553
|
+
sha?: string | undefined;
|
|
2554
|
+
prId?: number | null | undefined;
|
|
2555
|
+
};
|
|
2556
|
+
/** @internal */
|
|
2557
|
+
export declare const GetDeploymentGitSource9$outboundSchema: z.ZodType<GetDeploymentGitSource9$Outbound, z.ZodTypeDef, GetDeploymentGitSource9>;
|
|
2318
2558
|
/**
|
|
2319
2559
|
* @internal
|
|
2320
2560
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -2340,11 +2580,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
2340
2580
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$ {
|
|
2341
2581
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema` instead. */
|
|
2342
2582
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2343
|
-
readonly
|
|
2583
|
+
readonly Bitbucket: "bitbucket";
|
|
2344
2584
|
}>;
|
|
2345
2585
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema` instead. */
|
|
2346
2586
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2347
|
-
readonly
|
|
2587
|
+
readonly Bitbucket: "bitbucket";
|
|
2348
2588
|
}>;
|
|
2349
2589
|
}
|
|
2350
2590
|
/** @internal */
|
|
@@ -2352,9 +2592,11 @@ export declare const GetDeploymentGitSource8$inboundSchema: z.ZodType<GetDeploym
|
|
|
2352
2592
|
/** @internal */
|
|
2353
2593
|
export type GetDeploymentGitSource8$Outbound = {
|
|
2354
2594
|
type: string;
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2595
|
+
workspaceUuid?: string | undefined;
|
|
2596
|
+
repoUuid: string;
|
|
2597
|
+
ref?: string | null | undefined;
|
|
2598
|
+
sha?: string | undefined;
|
|
2599
|
+
prId?: number | null | undefined;
|
|
2358
2600
|
};
|
|
2359
2601
|
/** @internal */
|
|
2360
2602
|
export declare const GetDeploymentGitSource8$outboundSchema: z.ZodType<GetDeploymentGitSource8$Outbound, z.ZodTypeDef, GetDeploymentGitSource8>;
|
|
@@ -2383,20 +2625,39 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
2383
2625
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$ {
|
|
2384
2626
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema` instead. */
|
|
2385
2627
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2386
|
-
readonly
|
|
2628
|
+
readonly Gitlab: "gitlab";
|
|
2387
2629
|
}>;
|
|
2388
2630
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema` instead. */
|
|
2389
2631
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2390
|
-
readonly
|
|
2632
|
+
readonly Gitlab: "gitlab";
|
|
2391
2633
|
}>;
|
|
2392
2634
|
}
|
|
2393
2635
|
/** @internal */
|
|
2636
|
+
export declare const GetDeploymentGitSourceDeploymentsProjectId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsProjectId, z.ZodTypeDef, unknown>;
|
|
2637
|
+
/** @internal */
|
|
2638
|
+
export type GetDeploymentGitSourceDeploymentsProjectId$Outbound = string | number;
|
|
2639
|
+
/** @internal */
|
|
2640
|
+
export declare const GetDeploymentGitSourceDeploymentsProjectId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsProjectId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsProjectId>;
|
|
2641
|
+
/**
|
|
2642
|
+
* @internal
|
|
2643
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2644
|
+
*/
|
|
2645
|
+
export declare namespace GetDeploymentGitSourceDeploymentsProjectId$ {
|
|
2646
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$inboundSchema` instead. */
|
|
2647
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsProjectId, z.ZodTypeDef, unknown>;
|
|
2648
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$outboundSchema` instead. */
|
|
2649
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsProjectId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsProjectId>;
|
|
2650
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsProjectId$Outbound` instead. */
|
|
2651
|
+
type Outbound = GetDeploymentGitSourceDeploymentsProjectId$Outbound;
|
|
2652
|
+
}
|
|
2653
|
+
export declare function getDeploymentGitSourceDeploymentsProjectIdToJSON(getDeploymentGitSourceDeploymentsProjectId: GetDeploymentGitSourceDeploymentsProjectId): string;
|
|
2654
|
+
export declare function getDeploymentGitSourceDeploymentsProjectIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsProjectId, SDKValidationError>;
|
|
2655
|
+
/** @internal */
|
|
2394
2656
|
export declare const GetDeploymentGitSource7$inboundSchema: z.ZodType<GetDeploymentGitSource7, z.ZodTypeDef, unknown>;
|
|
2395
2657
|
/** @internal */
|
|
2396
2658
|
export type GetDeploymentGitSource7$Outbound = {
|
|
2397
2659
|
type: string;
|
|
2398
|
-
|
|
2399
|
-
slug: string;
|
|
2660
|
+
projectId: string | number;
|
|
2400
2661
|
ref?: string | null | undefined;
|
|
2401
2662
|
sha?: string | undefined;
|
|
2402
2663
|
prId?: number | null | undefined;
|
|
@@ -2428,11 +2689,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
2428
2689
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$ {
|
|
2429
2690
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$inboundSchema` instead. */
|
|
2430
2691
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2431
|
-
readonly
|
|
2692
|
+
readonly GithubLimited: "github-limited";
|
|
2432
2693
|
}>;
|
|
2433
2694
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$outboundSchema` instead. */
|
|
2434
2695
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2435
|
-
readonly
|
|
2696
|
+
readonly GithubLimited: "github-limited";
|
|
2436
2697
|
}>;
|
|
2437
2698
|
}
|
|
2438
2699
|
/** @internal */
|
|
@@ -2440,8 +2701,8 @@ export declare const GetDeploymentGitSource6$inboundSchema: z.ZodType<GetDeploym
|
|
|
2440
2701
|
/** @internal */
|
|
2441
2702
|
export type GetDeploymentGitSource6$Outbound = {
|
|
2442
2703
|
type: string;
|
|
2443
|
-
|
|
2444
|
-
|
|
2704
|
+
org: string;
|
|
2705
|
+
repo: string;
|
|
2445
2706
|
ref?: string | null | undefined;
|
|
2446
2707
|
sha?: string | undefined;
|
|
2447
2708
|
prId?: number | null | undefined;
|
|
@@ -2473,39 +2734,39 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
2473
2734
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$ {
|
|
2474
2735
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$inboundSchema` instead. */
|
|
2475
2736
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2476
|
-
readonly
|
|
2737
|
+
readonly GithubLimited: "github-limited";
|
|
2477
2738
|
}>;
|
|
2478
2739
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema` instead. */
|
|
2479
2740
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2480
|
-
readonly
|
|
2741
|
+
readonly GithubLimited: "github-limited";
|
|
2481
2742
|
}>;
|
|
2482
2743
|
}
|
|
2483
2744
|
/** @internal */
|
|
2484
|
-
export declare const
|
|
2745
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200RepoId, z.ZodTypeDef, unknown>;
|
|
2485
2746
|
/** @internal */
|
|
2486
|
-
export type
|
|
2747
|
+
export type GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound = string | number;
|
|
2487
2748
|
/** @internal */
|
|
2488
|
-
export declare const
|
|
2749
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200RepoId>;
|
|
2489
2750
|
/**
|
|
2490
2751
|
* @internal
|
|
2491
2752
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2492
2753
|
*/
|
|
2493
|
-
export declare namespace
|
|
2494
|
-
/** @deprecated use `
|
|
2495
|
-
const inboundSchema: z.ZodType<
|
|
2496
|
-
/** @deprecated use `
|
|
2497
|
-
const outboundSchema: z.ZodType<
|
|
2498
|
-
/** @deprecated use `
|
|
2499
|
-
type Outbound =
|
|
2754
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200RepoId$ {
|
|
2755
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema` instead. */
|
|
2756
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200RepoId, z.ZodTypeDef, unknown>;
|
|
2757
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema` instead. */
|
|
2758
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200RepoId>;
|
|
2759
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound` instead. */
|
|
2760
|
+
type Outbound = GetDeploymentGitSourceDeploymentsResponse200RepoId$Outbound;
|
|
2500
2761
|
}
|
|
2501
|
-
export declare function
|
|
2502
|
-
export declare function
|
|
2762
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200RepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200RepoId: GetDeploymentGitSourceDeploymentsResponse200RepoId): string;
|
|
2763
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200RepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsResponse200RepoId, SDKValidationError>;
|
|
2503
2764
|
/** @internal */
|
|
2504
2765
|
export declare const GetDeploymentGitSource5$inboundSchema: z.ZodType<GetDeploymentGitSource5, z.ZodTypeDef, unknown>;
|
|
2505
2766
|
/** @internal */
|
|
2506
2767
|
export type GetDeploymentGitSource5$Outbound = {
|
|
2507
2768
|
type: string;
|
|
2508
|
-
|
|
2769
|
+
repoId: string | number;
|
|
2509
2770
|
ref?: string | null | undefined;
|
|
2510
2771
|
sha?: string | undefined;
|
|
2511
2772
|
prId?: number | null | undefined;
|
|
@@ -2591,25 +2852,25 @@ export declare namespace GetDeploymentGitSourceDeploymentsResponse200Application
|
|
|
2591
2852
|
}>;
|
|
2592
2853
|
}
|
|
2593
2854
|
/** @internal */
|
|
2594
|
-
export declare const
|
|
2855
|
+
export declare const GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponseRepoId, z.ZodTypeDef, unknown>;
|
|
2595
2856
|
/** @internal */
|
|
2596
|
-
export type
|
|
2857
|
+
export type GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound = string | number;
|
|
2597
2858
|
/** @internal */
|
|
2598
|
-
export declare const
|
|
2859
|
+
export declare const GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponseRepoId>;
|
|
2599
2860
|
/**
|
|
2600
2861
|
* @internal
|
|
2601
2862
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2602
2863
|
*/
|
|
2603
|
-
export declare namespace
|
|
2604
|
-
/** @deprecated use `
|
|
2605
|
-
const inboundSchema: z.ZodType<
|
|
2606
|
-
/** @deprecated use `
|
|
2607
|
-
const outboundSchema: z.ZodType<
|
|
2608
|
-
/** @deprecated use `
|
|
2609
|
-
type Outbound =
|
|
2864
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponseRepoId$ {
|
|
2865
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema` instead. */
|
|
2866
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponseRepoId, z.ZodTypeDef, unknown>;
|
|
2867
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema` instead. */
|
|
2868
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponseRepoId>;
|
|
2869
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound` instead. */
|
|
2870
|
+
type Outbound = GetDeploymentGitSourceDeploymentsResponseRepoId$Outbound;
|
|
2610
2871
|
}
|
|
2611
|
-
export declare function
|
|
2612
|
-
export declare function
|
|
2872
|
+
export declare function getDeploymentGitSourceDeploymentsResponseRepoIdToJSON(getDeploymentGitSourceDeploymentsResponseRepoId: GetDeploymentGitSourceDeploymentsResponseRepoId): string;
|
|
2873
|
+
export declare function getDeploymentGitSourceDeploymentsResponseRepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsResponseRepoId, SDKValidationError>;
|
|
2613
2874
|
/** @internal */
|
|
2614
2875
|
export declare const GetDeploymentGitSource3$inboundSchema: z.ZodType<GetDeploymentGitSource3, z.ZodTypeDef, unknown>;
|
|
2615
2876
|
/** @internal */
|
|
@@ -2701,25 +2962,25 @@ export declare namespace GetDeploymentGitSourceDeploymentsResponse200Application
|
|
|
2701
2962
|
}>;
|
|
2702
2963
|
}
|
|
2703
2964
|
/** @internal */
|
|
2704
|
-
export declare const
|
|
2965
|
+
export declare const GetDeploymentGitSourceDeploymentsRepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsRepoId, z.ZodTypeDef, unknown>;
|
|
2705
2966
|
/** @internal */
|
|
2706
|
-
export type
|
|
2967
|
+
export type GetDeploymentGitSourceDeploymentsRepoId$Outbound = string | number;
|
|
2707
2968
|
/** @internal */
|
|
2708
|
-
export declare const
|
|
2969
|
+
export declare const GetDeploymentGitSourceDeploymentsRepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsRepoId>;
|
|
2709
2970
|
/**
|
|
2710
2971
|
* @internal
|
|
2711
2972
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2712
2973
|
*/
|
|
2713
|
-
export declare namespace
|
|
2714
|
-
/** @deprecated use `
|
|
2715
|
-
const inboundSchema: z.ZodType<
|
|
2716
|
-
/** @deprecated use `
|
|
2717
|
-
const outboundSchema: z.ZodType<
|
|
2718
|
-
/** @deprecated use `
|
|
2719
|
-
type Outbound =
|
|
2974
|
+
export declare namespace GetDeploymentGitSourceDeploymentsRepoId$ {
|
|
2975
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$inboundSchema` instead. */
|
|
2976
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsRepoId, z.ZodTypeDef, unknown>;
|
|
2977
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$outboundSchema` instead. */
|
|
2978
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsRepoId>;
|
|
2979
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsRepoId$Outbound` instead. */
|
|
2980
|
+
type Outbound = GetDeploymentGitSourceDeploymentsRepoId$Outbound;
|
|
2720
2981
|
}
|
|
2721
|
-
export declare function
|
|
2722
|
-
export declare function
|
|
2982
|
+
export declare function getDeploymentGitSourceDeploymentsRepoIdToJSON(getDeploymentGitSourceDeploymentsRepoId: GetDeploymentGitSourceDeploymentsRepoId): string;
|
|
2983
|
+
export declare function getDeploymentGitSourceDeploymentsRepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsRepoId, SDKValidationError>;
|
|
2723
2984
|
/** @internal */
|
|
2724
2985
|
export declare const GetDeploymentGitSource1$inboundSchema: z.ZodType<GetDeploymentGitSource1, z.ZodTypeDef, unknown>;
|
|
2725
2986
|
/** @internal */
|
|
@@ -2749,7 +3010,7 @@ export declare function getDeploymentGitSource1FromJSON(jsonString: string): Saf
|
|
|
2749
3010
|
/** @internal */
|
|
2750
3011
|
export declare const ResponseBodyGitSource$inboundSchema: z.ZodType<ResponseBodyGitSource, z.ZodTypeDef, unknown>;
|
|
2751
3012
|
/** @internal */
|
|
2752
|
-
export type ResponseBodyGitSource$Outbound =
|
|
3013
|
+
export type ResponseBodyGitSource$Outbound = GetDeploymentGitSource12$Outbound | GetDeploymentGitSource15$Outbound | GetDeploymentGitSource4$Outbound | GetDeploymentGitSource10$Outbound | GetDeploymentGitSource11$Outbound | GetDeploymentGitSource13$Outbound | GetDeploymentGitSource14$Outbound | GetDeploymentGitSource2$Outbound | GetDeploymentGitSource3$Outbound | GetDeploymentGitSource6$Outbound | GetDeploymentGitSource9$Outbound | GetDeploymentGitSource1$Outbound | GetDeploymentGitSource5$Outbound | GetDeploymentGitSource7$Outbound | GetDeploymentGitSource8$Outbound;
|
|
2753
3014
|
/** @internal */
|
|
2754
3015
|
export declare const ResponseBodyGitSource$outboundSchema: z.ZodType<ResponseBodyGitSource$Outbound, z.ZodTypeDef, ResponseBodyGitSource>;
|
|
2755
3016
|
/**
|
|
@@ -2767,6 +3028,38 @@ export declare namespace ResponseBodyGitSource$ {
|
|
|
2767
3028
|
export declare function responseBodyGitSourceToJSON(responseBodyGitSource: ResponseBodyGitSource): string;
|
|
2768
3029
|
export declare function responseBodyGitSourceFromJSON(jsonString: string): SafeParseResult<ResponseBodyGitSource, SDKValidationError>;
|
|
2769
3030
|
/** @internal */
|
|
3031
|
+
export declare const GetDeploymentResponseBodyNodeVersion$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyNodeVersion>;
|
|
3032
|
+
/** @internal */
|
|
3033
|
+
export declare const GetDeploymentResponseBodyNodeVersion$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentResponseBodyNodeVersion>;
|
|
3034
|
+
/**
|
|
3035
|
+
* @internal
|
|
3036
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3037
|
+
*/
|
|
3038
|
+
export declare namespace GetDeploymentResponseBodyNodeVersion$ {
|
|
3039
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$inboundSchema` instead. */
|
|
3040
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3041
|
+
readonly TwentyTwoDotX: "22.x";
|
|
3042
|
+
readonly TwentyDotX: "20.x";
|
|
3043
|
+
readonly EighteenDotX: "18.x";
|
|
3044
|
+
readonly SixteenDotX: "16.x";
|
|
3045
|
+
readonly FourteenDotX: "14.x";
|
|
3046
|
+
readonly TwelveDotX: "12.x";
|
|
3047
|
+
readonly TenDotX: "10.x";
|
|
3048
|
+
readonly EightDot10DotX: "8.10.x";
|
|
3049
|
+
}>;
|
|
3050
|
+
/** @deprecated use `GetDeploymentResponseBodyNodeVersion$outboundSchema` instead. */
|
|
3051
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3052
|
+
readonly TwentyTwoDotX: "22.x";
|
|
3053
|
+
readonly TwentyDotX: "20.x";
|
|
3054
|
+
readonly EighteenDotX: "18.x";
|
|
3055
|
+
readonly SixteenDotX: "16.x";
|
|
3056
|
+
readonly FourteenDotX: "14.x";
|
|
3057
|
+
readonly TwelveDotX: "12.x";
|
|
3058
|
+
readonly TenDotX: "10.x";
|
|
3059
|
+
readonly EightDot10DotX: "8.10.x";
|
|
3060
|
+
}>;
|
|
3061
|
+
}
|
|
3062
|
+
/** @internal */
|
|
2770
3063
|
export declare const GetDeploymentResponseBodyProject$inboundSchema: z.ZodType<GetDeploymentResponseBodyProject, z.ZodTypeDef, unknown>;
|
|
2771
3064
|
/** @internal */
|
|
2772
3065
|
export type GetDeploymentResponseBodyProject$Outbound = {
|
|
@@ -2938,11 +3231,12 @@ export type GetDeploymentResponseBody2$Outbound = {
|
|
|
2938
3231
|
errorMessage?: string | null | undefined;
|
|
2939
3232
|
errorStep?: string | undefined;
|
|
2940
3233
|
passiveRegions?: Array<string> | undefined;
|
|
2941
|
-
gitSource?:
|
|
3234
|
+
gitSource?: GetDeploymentGitSource12$Outbound | GetDeploymentGitSource15$Outbound | GetDeploymentGitSource4$Outbound | GetDeploymentGitSource10$Outbound | GetDeploymentGitSource11$Outbound | GetDeploymentGitSource13$Outbound | GetDeploymentGitSource14$Outbound | GetDeploymentGitSource2$Outbound | GetDeploymentGitSource3$Outbound | GetDeploymentGitSource6$Outbound | GetDeploymentGitSource9$Outbound | GetDeploymentGitSource1$Outbound | GetDeploymentGitSource5$Outbound | GetDeploymentGitSource7$Outbound | GetDeploymentGitSource8$Outbound | undefined;
|
|
2942
3235
|
meta: {
|
|
2943
3236
|
[k: string]: string;
|
|
2944
3237
|
};
|
|
2945
3238
|
originCacheRegion?: string | undefined;
|
|
3239
|
+
nodeVersion?: string | undefined;
|
|
2946
3240
|
project?: GetDeploymentResponseBodyProject$Outbound | undefined;
|
|
2947
3241
|
readySubstate?: string | undefined;
|
|
2948
3242
|
regions: Array<string>;
|
|
@@ -3096,6 +3390,7 @@ export declare namespace ResponseBodyFramework$ {
|
|
|
3096
3390
|
readonly Sanity: "sanity";
|
|
3097
3391
|
readonly Storybook: "storybook";
|
|
3098
3392
|
readonly Nitro: "nitro";
|
|
3393
|
+
readonly Hono: "hono";
|
|
3099
3394
|
}>;
|
|
3100
3395
|
/** @deprecated use `ResponseBodyFramework$outboundSchema` instead. */
|
|
3101
3396
|
const outboundSchema: z.ZodNativeEnum<{
|
|
@@ -3146,6 +3441,7 @@ export declare namespace ResponseBodyFramework$ {
|
|
|
3146
3441
|
readonly Sanity: "sanity";
|
|
3147
3442
|
readonly Storybook: "storybook";
|
|
3148
3443
|
readonly Nitro: "nitro";
|
|
3444
|
+
readonly Hono: "hono";
|
|
3149
3445
|
}>;
|
|
3150
3446
|
}
|
|
3151
3447
|
/** @internal */
|
|
@@ -3928,6 +4224,140 @@ export declare namespace ResponseBodyChecksConclusion$ {
|
|
|
3928
4224
|
}>;
|
|
3929
4225
|
}
|
|
3930
4226
|
/** @internal */
|
|
4227
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type>;
|
|
4228
|
+
/** @internal */
|
|
4229
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type>;
|
|
4230
|
+
/**
|
|
4231
|
+
* @internal
|
|
4232
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4233
|
+
*/
|
|
4234
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$ {
|
|
4235
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema` instead. */
|
|
4236
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4237
|
+
readonly Bitbucket: "bitbucket";
|
|
4238
|
+
}>;
|
|
4239
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema` instead. */
|
|
4240
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4241
|
+
readonly Bitbucket: "bitbucket";
|
|
4242
|
+
}>;
|
|
4243
|
+
}
|
|
4244
|
+
/** @internal */
|
|
4245
|
+
export declare const GetDeploymentGitSourceDeployments15$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments15, z.ZodTypeDef, unknown>;
|
|
4246
|
+
/** @internal */
|
|
4247
|
+
export type GetDeploymentGitSourceDeployments15$Outbound = {
|
|
4248
|
+
type: string;
|
|
4249
|
+
ref: string;
|
|
4250
|
+
sha: string;
|
|
4251
|
+
owner?: string | undefined;
|
|
4252
|
+
slug?: string | undefined;
|
|
4253
|
+
workspaceUuid: string;
|
|
4254
|
+
repoUuid: string;
|
|
4255
|
+
};
|
|
4256
|
+
/** @internal */
|
|
4257
|
+
export declare const GetDeploymentGitSourceDeployments15$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments15$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments15>;
|
|
4258
|
+
/**
|
|
4259
|
+
* @internal
|
|
4260
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4261
|
+
*/
|
|
4262
|
+
export declare namespace GetDeploymentGitSourceDeployments15$ {
|
|
4263
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$inboundSchema` instead. */
|
|
4264
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments15, z.ZodTypeDef, unknown>;
|
|
4265
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$outboundSchema` instead. */
|
|
4266
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments15$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments15>;
|
|
4267
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments15$Outbound` instead. */
|
|
4268
|
+
type Outbound = GetDeploymentGitSourceDeployments15$Outbound;
|
|
4269
|
+
}
|
|
4270
|
+
export declare function getDeploymentGitSourceDeployments15ToJSON(getDeploymentGitSourceDeployments15: GetDeploymentGitSourceDeployments15): string;
|
|
4271
|
+
export declare function getDeploymentGitSourceDeployments15FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeployments15, SDKValidationError>;
|
|
4272
|
+
/** @internal */
|
|
4273
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type>;
|
|
4274
|
+
/** @internal */
|
|
4275
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type>;
|
|
4276
|
+
/**
|
|
4277
|
+
* @internal
|
|
4278
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4279
|
+
*/
|
|
4280
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$ {
|
|
4281
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema` instead. */
|
|
4282
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4283
|
+
readonly Gitlab: "gitlab";
|
|
4284
|
+
}>;
|
|
4285
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema` instead. */
|
|
4286
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4287
|
+
readonly Gitlab: "gitlab";
|
|
4288
|
+
}>;
|
|
4289
|
+
}
|
|
4290
|
+
/** @internal */
|
|
4291
|
+
export declare const GetDeploymentGitSourceDeployments14$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments14, z.ZodTypeDef, unknown>;
|
|
4292
|
+
/** @internal */
|
|
4293
|
+
export type GetDeploymentGitSourceDeployments14$Outbound = {
|
|
4294
|
+
type: string;
|
|
4295
|
+
ref: string;
|
|
4296
|
+
sha: string;
|
|
4297
|
+
projectId: number;
|
|
4298
|
+
};
|
|
4299
|
+
/** @internal */
|
|
4300
|
+
export declare const GetDeploymentGitSourceDeployments14$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments14$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments14>;
|
|
4301
|
+
/**
|
|
4302
|
+
* @internal
|
|
4303
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4304
|
+
*/
|
|
4305
|
+
export declare namespace GetDeploymentGitSourceDeployments14$ {
|
|
4306
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$inboundSchema` instead. */
|
|
4307
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments14, z.ZodTypeDef, unknown>;
|
|
4308
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$outboundSchema` instead. */
|
|
4309
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments14$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments14>;
|
|
4310
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments14$Outbound` instead. */
|
|
4311
|
+
type Outbound = GetDeploymentGitSourceDeployments14$Outbound;
|
|
4312
|
+
}
|
|
4313
|
+
export declare function getDeploymentGitSourceDeployments14ToJSON(getDeploymentGitSourceDeployments14: GetDeploymentGitSourceDeployments14): string;
|
|
4314
|
+
export declare function getDeploymentGitSourceDeployments14FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeployments14, SDKValidationError>;
|
|
4315
|
+
/** @internal */
|
|
4316
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type>;
|
|
4317
|
+
/** @internal */
|
|
4318
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type>;
|
|
4319
|
+
/**
|
|
4320
|
+
* @internal
|
|
4321
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4322
|
+
*/
|
|
4323
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$ {
|
|
4324
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema` instead. */
|
|
4325
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4326
|
+
readonly GithubLimited: "github-limited";
|
|
4327
|
+
}>;
|
|
4328
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema` instead. */
|
|
4329
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4330
|
+
readonly GithubLimited: "github-limited";
|
|
4331
|
+
}>;
|
|
4332
|
+
}
|
|
4333
|
+
/** @internal */
|
|
4334
|
+
export declare const GetDeploymentGitSourceDeployments13$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments13, z.ZodTypeDef, unknown>;
|
|
4335
|
+
/** @internal */
|
|
4336
|
+
export type GetDeploymentGitSourceDeployments13$Outbound = {
|
|
4337
|
+
type: string;
|
|
4338
|
+
ref: string;
|
|
4339
|
+
sha: string;
|
|
4340
|
+
repoId: number;
|
|
4341
|
+
org?: string | undefined;
|
|
4342
|
+
repo?: string | undefined;
|
|
4343
|
+
};
|
|
4344
|
+
/** @internal */
|
|
4345
|
+
export declare const GetDeploymentGitSourceDeployments13$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments13$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments13>;
|
|
4346
|
+
/**
|
|
4347
|
+
* @internal
|
|
4348
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4349
|
+
*/
|
|
4350
|
+
export declare namespace GetDeploymentGitSourceDeployments13$ {
|
|
4351
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$inboundSchema` instead. */
|
|
4352
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments13, z.ZodTypeDef, unknown>;
|
|
4353
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$outboundSchema` instead. */
|
|
4354
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments13$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments13>;
|
|
4355
|
+
/** @deprecated use `GetDeploymentGitSourceDeployments13$Outbound` instead. */
|
|
4356
|
+
type Outbound = GetDeploymentGitSourceDeployments13$Outbound;
|
|
4357
|
+
}
|
|
4358
|
+
export declare function getDeploymentGitSourceDeployments13ToJSON(getDeploymentGitSourceDeployments13: GetDeploymentGitSourceDeployments13): string;
|
|
4359
|
+
export declare function getDeploymentGitSourceDeployments13FromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeployments13, SDKValidationError>;
|
|
4360
|
+
/** @internal */
|
|
3931
4361
|
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type>;
|
|
3932
4362
|
/** @internal */
|
|
3933
4363
|
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema: z.ZodNativeEnum<typeof GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type>;
|
|
@@ -3938,11 +4368,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
3938
4368
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$ {
|
|
3939
4369
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema` instead. */
|
|
3940
4370
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3941
|
-
readonly
|
|
4371
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3942
4372
|
}>;
|
|
3943
4373
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema` instead. */
|
|
3944
4374
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3945
|
-
readonly
|
|
4375
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3946
4376
|
}>;
|
|
3947
4377
|
}
|
|
3948
4378
|
/** @internal */
|
|
@@ -3950,12 +4380,12 @@ export declare const GetDeploymentGitSourceDeployments12$inboundSchema: z.ZodTyp
|
|
|
3950
4380
|
/** @internal */
|
|
3951
4381
|
export type GetDeploymentGitSourceDeployments12$Outbound = {
|
|
3952
4382
|
type: string;
|
|
4383
|
+
host: string;
|
|
3953
4384
|
ref: string;
|
|
3954
4385
|
sha: string;
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
repoUuid: string;
|
|
4386
|
+
repoId: number;
|
|
4387
|
+
org?: string | undefined;
|
|
4388
|
+
repo?: string | undefined;
|
|
3959
4389
|
};
|
|
3960
4390
|
/** @internal */
|
|
3961
4391
|
export declare const GetDeploymentGitSourceDeployments12$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments12$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments12>;
|
|
@@ -3984,11 +4414,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
3984
4414
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$ {
|
|
3985
4415
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$inboundSchema` instead. */
|
|
3986
4416
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3987
|
-
readonly
|
|
4417
|
+
readonly Github: "github";
|
|
3988
4418
|
}>;
|
|
3989
4419
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$outboundSchema` instead. */
|
|
3990
4420
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3991
|
-
readonly
|
|
4421
|
+
readonly Github: "github";
|
|
3992
4422
|
}>;
|
|
3993
4423
|
}
|
|
3994
4424
|
/** @internal */
|
|
@@ -3998,7 +4428,9 @@ export type GetDeploymentGitSourceDeployments11$Outbound = {
|
|
|
3998
4428
|
type: string;
|
|
3999
4429
|
ref: string;
|
|
4000
4430
|
sha: string;
|
|
4001
|
-
|
|
4431
|
+
repoId: number;
|
|
4432
|
+
org?: string | undefined;
|
|
4433
|
+
repo?: string | undefined;
|
|
4002
4434
|
};
|
|
4003
4435
|
/** @internal */
|
|
4004
4436
|
export declare const GetDeploymentGitSourceDeployments11$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments11$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments11>;
|
|
@@ -4027,11 +4459,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
4027
4459
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$ {
|
|
4028
4460
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$inboundSchema` instead. */
|
|
4029
4461
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4030
|
-
readonly
|
|
4462
|
+
readonly Custom: "custom";
|
|
4031
4463
|
}>;
|
|
4032
4464
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$outboundSchema` instead. */
|
|
4033
4465
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4034
|
-
readonly
|
|
4466
|
+
readonly Custom: "custom";
|
|
4035
4467
|
}>;
|
|
4036
4468
|
}
|
|
4037
4469
|
/** @internal */
|
|
@@ -4039,12 +4471,9 @@ export declare const GetDeploymentGitSourceDeployments10$inboundSchema: z.ZodTyp
|
|
|
4039
4471
|
/** @internal */
|
|
4040
4472
|
export type GetDeploymentGitSourceDeployments10$Outbound = {
|
|
4041
4473
|
type: string;
|
|
4042
|
-
host: string;
|
|
4043
4474
|
ref: string;
|
|
4044
4475
|
sha: string;
|
|
4045
|
-
|
|
4046
|
-
org?: string | undefined;
|
|
4047
|
-
repo?: string | undefined;
|
|
4476
|
+
gitUrl: string;
|
|
4048
4477
|
};
|
|
4049
4478
|
/** @internal */
|
|
4050
4479
|
export declare const GetDeploymentGitSourceDeployments10$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments10$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments10>;
|
|
@@ -4073,11 +4502,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
4073
4502
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$ {
|
|
4074
4503
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$inboundSchema` instead. */
|
|
4075
4504
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4076
|
-
readonly
|
|
4505
|
+
readonly Bitbucket: "bitbucket";
|
|
4077
4506
|
}>;
|
|
4078
4507
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$outboundSchema` instead. */
|
|
4079
4508
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4080
|
-
readonly
|
|
4509
|
+
readonly Bitbucket: "bitbucket";
|
|
4081
4510
|
}>;
|
|
4082
4511
|
}
|
|
4083
4512
|
/** @internal */
|
|
@@ -4085,11 +4514,11 @@ export declare const GetDeploymentGitSourceDeployments9$inboundSchema: z.ZodType
|
|
|
4085
4514
|
/** @internal */
|
|
4086
4515
|
export type GetDeploymentGitSourceDeployments9$Outbound = {
|
|
4087
4516
|
type: string;
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4517
|
+
owner: string;
|
|
4518
|
+
slug: string;
|
|
4519
|
+
ref?: string | null | undefined;
|
|
4520
|
+
sha?: string | undefined;
|
|
4521
|
+
prId?: number | null | undefined;
|
|
4093
4522
|
};
|
|
4094
4523
|
/** @internal */
|
|
4095
4524
|
export declare const GetDeploymentGitSourceDeployments9$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments9$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments9>;
|
|
@@ -4118,11 +4547,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
4118
4547
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$ {
|
|
4119
4548
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$inboundSchema` instead. */
|
|
4120
4549
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4121
|
-
readonly
|
|
4550
|
+
readonly Bitbucket: "bitbucket";
|
|
4122
4551
|
}>;
|
|
4123
4552
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$outboundSchema` instead. */
|
|
4124
4553
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4125
|
-
readonly
|
|
4554
|
+
readonly Bitbucket: "bitbucket";
|
|
4126
4555
|
}>;
|
|
4127
4556
|
}
|
|
4128
4557
|
/** @internal */
|
|
@@ -4130,9 +4559,11 @@ export declare const GetDeploymentGitSourceDeployments8$inboundSchema: z.ZodType
|
|
|
4130
4559
|
/** @internal */
|
|
4131
4560
|
export type GetDeploymentGitSourceDeployments8$Outbound = {
|
|
4132
4561
|
type: string;
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4562
|
+
workspaceUuid?: string | undefined;
|
|
4563
|
+
repoUuid: string;
|
|
4564
|
+
ref?: string | null | undefined;
|
|
4565
|
+
sha?: string | undefined;
|
|
4566
|
+
prId?: number | null | undefined;
|
|
4136
4567
|
};
|
|
4137
4568
|
/** @internal */
|
|
4138
4569
|
export declare const GetDeploymentGitSourceDeployments8$outboundSchema: z.ZodType<GetDeploymentGitSourceDeployments8$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeployments8>;
|
|
@@ -4161,20 +4592,39 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
4161
4592
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$ {
|
|
4162
4593
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
|
|
4163
4594
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4164
|
-
readonly
|
|
4595
|
+
readonly Gitlab: "gitlab";
|
|
4165
4596
|
}>;
|
|
4166
4597
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
|
|
4167
4598
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4168
|
-
readonly
|
|
4599
|
+
readonly Gitlab: "gitlab";
|
|
4169
4600
|
}>;
|
|
4170
4601
|
}
|
|
4171
4602
|
/** @internal */
|
|
4603
|
+
export declare const GetDeploymentGitSourceProjectId$inboundSchema: z.ZodType<GetDeploymentGitSourceProjectId, z.ZodTypeDef, unknown>;
|
|
4604
|
+
/** @internal */
|
|
4605
|
+
export type GetDeploymentGitSourceProjectId$Outbound = string | number;
|
|
4606
|
+
/** @internal */
|
|
4607
|
+
export declare const GetDeploymentGitSourceProjectId$outboundSchema: z.ZodType<GetDeploymentGitSourceProjectId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceProjectId>;
|
|
4608
|
+
/**
|
|
4609
|
+
* @internal
|
|
4610
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4611
|
+
*/
|
|
4612
|
+
export declare namespace GetDeploymentGitSourceProjectId$ {
|
|
4613
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$inboundSchema` instead. */
|
|
4614
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceProjectId, z.ZodTypeDef, unknown>;
|
|
4615
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$outboundSchema` instead. */
|
|
4616
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceProjectId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceProjectId>;
|
|
4617
|
+
/** @deprecated use `GetDeploymentGitSourceProjectId$Outbound` instead. */
|
|
4618
|
+
type Outbound = GetDeploymentGitSourceProjectId$Outbound;
|
|
4619
|
+
}
|
|
4620
|
+
export declare function getDeploymentGitSourceProjectIdToJSON(getDeploymentGitSourceProjectId: GetDeploymentGitSourceProjectId): string;
|
|
4621
|
+
export declare function getDeploymentGitSourceProjectIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceProjectId, SDKValidationError>;
|
|
4622
|
+
/** @internal */
|
|
4172
4623
|
export declare const GetDeploymentGitSourceDeployments7$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments7, z.ZodTypeDef, unknown>;
|
|
4173
4624
|
/** @internal */
|
|
4174
4625
|
export type GetDeploymentGitSourceDeployments7$Outbound = {
|
|
4175
4626
|
type: string;
|
|
4176
|
-
|
|
4177
|
-
slug: string;
|
|
4627
|
+
projectId: string | number;
|
|
4178
4628
|
ref?: string | null | undefined;
|
|
4179
4629
|
sha?: string | undefined;
|
|
4180
4630
|
prId?: number | null | undefined;
|
|
@@ -4206,11 +4656,11 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSON
|
|
|
4206
4656
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$ {
|
|
4207
4657
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
4208
4658
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4209
|
-
readonly
|
|
4659
|
+
readonly GithubLimited: "github-limited";
|
|
4210
4660
|
}>;
|
|
4211
4661
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
4212
4662
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4213
|
-
readonly
|
|
4663
|
+
readonly GithubLimited: "github-limited";
|
|
4214
4664
|
}>;
|
|
4215
4665
|
}
|
|
4216
4666
|
/** @internal */
|
|
@@ -4218,8 +4668,8 @@ export declare const GetDeploymentGitSourceDeployments6$inboundSchema: z.ZodType
|
|
|
4218
4668
|
/** @internal */
|
|
4219
4669
|
export type GetDeploymentGitSourceDeployments6$Outbound = {
|
|
4220
4670
|
type: string;
|
|
4221
|
-
|
|
4222
|
-
|
|
4671
|
+
org: string;
|
|
4672
|
+
repo: string;
|
|
4223
4673
|
ref?: string | null | undefined;
|
|
4224
4674
|
sha?: string | undefined;
|
|
4225
4675
|
prId?: number | null | undefined;
|
|
@@ -4251,39 +4701,39 @@ export declare const GetDeploymentGitSourceDeploymentsResponse200Type$outboundSc
|
|
|
4251
4701
|
export declare namespace GetDeploymentGitSourceDeploymentsResponse200Type$ {
|
|
4252
4702
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200Type$inboundSchema` instead. */
|
|
4253
4703
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4254
|
-
readonly
|
|
4704
|
+
readonly GithubLimited: "github-limited";
|
|
4255
4705
|
}>;
|
|
4256
4706
|
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema` instead. */
|
|
4257
4707
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4258
|
-
readonly
|
|
4708
|
+
readonly GithubLimited: "github-limited";
|
|
4259
4709
|
}>;
|
|
4260
4710
|
}
|
|
4261
4711
|
/** @internal */
|
|
4262
|
-
export declare const
|
|
4712
|
+
export declare const GetDeploymentGitSourceRepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceRepoId, z.ZodTypeDef, unknown>;
|
|
4263
4713
|
/** @internal */
|
|
4264
|
-
export type
|
|
4714
|
+
export type GetDeploymentGitSourceRepoId$Outbound = string | number;
|
|
4265
4715
|
/** @internal */
|
|
4266
|
-
export declare const
|
|
4716
|
+
export declare const GetDeploymentGitSourceRepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceRepoId>;
|
|
4267
4717
|
/**
|
|
4268
4718
|
* @internal
|
|
4269
4719
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4270
4720
|
*/
|
|
4271
|
-
export declare namespace
|
|
4272
|
-
/** @deprecated use `
|
|
4273
|
-
const inboundSchema: z.ZodType<
|
|
4274
|
-
/** @deprecated use `
|
|
4275
|
-
const outboundSchema: z.ZodType<
|
|
4276
|
-
/** @deprecated use `
|
|
4277
|
-
type Outbound =
|
|
4721
|
+
export declare namespace GetDeploymentGitSourceRepoId$ {
|
|
4722
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$inboundSchema` instead. */
|
|
4723
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceRepoId, z.ZodTypeDef, unknown>;
|
|
4724
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$outboundSchema` instead. */
|
|
4725
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceRepoId>;
|
|
4726
|
+
/** @deprecated use `GetDeploymentGitSourceRepoId$Outbound` instead. */
|
|
4727
|
+
type Outbound = GetDeploymentGitSourceRepoId$Outbound;
|
|
4278
4728
|
}
|
|
4279
|
-
export declare function
|
|
4280
|
-
export declare function
|
|
4729
|
+
export declare function getDeploymentGitSourceRepoIdToJSON(getDeploymentGitSourceRepoId: GetDeploymentGitSourceRepoId): string;
|
|
4730
|
+
export declare function getDeploymentGitSourceRepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceRepoId, SDKValidationError>;
|
|
4281
4731
|
/** @internal */
|
|
4282
4732
|
export declare const GetDeploymentGitSourceDeployments5$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments5, z.ZodTypeDef, unknown>;
|
|
4283
4733
|
/** @internal */
|
|
4284
4734
|
export type GetDeploymentGitSourceDeployments5$Outbound = {
|
|
4285
4735
|
type: string;
|
|
4286
|
-
|
|
4736
|
+
repoId: string | number;
|
|
4287
4737
|
ref?: string | null | undefined;
|
|
4288
4738
|
sha?: string | undefined;
|
|
4289
4739
|
prId?: number | null | undefined;
|
|
@@ -4369,25 +4819,25 @@ export declare namespace GetDeploymentGitSourceDeploymentsType$ {
|
|
|
4369
4819
|
}>;
|
|
4370
4820
|
}
|
|
4371
4821
|
/** @internal */
|
|
4372
|
-
export declare const
|
|
4822
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId, z.ZodTypeDef, unknown>;
|
|
4373
4823
|
/** @internal */
|
|
4374
|
-
export type
|
|
4824
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound = string | number;
|
|
4375
4825
|
/** @internal */
|
|
4376
|
-
export declare const
|
|
4826
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId>;
|
|
4377
4827
|
/**
|
|
4378
4828
|
* @internal
|
|
4379
4829
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4380
4830
|
*/
|
|
4381
|
-
export declare namespace
|
|
4382
|
-
/** @deprecated use `
|
|
4383
|
-
const inboundSchema: z.ZodType<
|
|
4384
|
-
/** @deprecated use `
|
|
4385
|
-
const outboundSchema: z.ZodType<
|
|
4386
|
-
/** @deprecated use `
|
|
4387
|
-
type Outbound =
|
|
4831
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$ {
|
|
4832
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema` instead. */
|
|
4833
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId, z.ZodTypeDef, unknown>;
|
|
4834
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema` instead. */
|
|
4835
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId>;
|
|
4836
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound` instead. */
|
|
4837
|
+
type Outbound = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$Outbound;
|
|
4388
4838
|
}
|
|
4389
|
-
export declare function
|
|
4390
|
-
export declare function
|
|
4839
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId): string;
|
|
4840
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId, SDKValidationError>;
|
|
4391
4841
|
/** @internal */
|
|
4392
4842
|
export declare const GetDeploymentGitSourceDeployments3$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments3, z.ZodTypeDef, unknown>;
|
|
4393
4843
|
/** @internal */
|
|
@@ -4479,25 +4929,25 @@ export declare namespace GetDeploymentGitSourceDeploymentsResponse200Application
|
|
|
4479
4929
|
}>;
|
|
4480
4930
|
}
|
|
4481
4931
|
/** @internal */
|
|
4482
|
-
export declare const
|
|
4932
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId, z.ZodTypeDef, unknown>;
|
|
4483
4933
|
/** @internal */
|
|
4484
|
-
export type
|
|
4934
|
+
export type GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound = string | number;
|
|
4485
4935
|
/** @internal */
|
|
4486
|
-
export declare const
|
|
4936
|
+
export declare const GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId>;
|
|
4487
4937
|
/**
|
|
4488
4938
|
* @internal
|
|
4489
4939
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4490
4940
|
*/
|
|
4491
|
-
export declare namespace
|
|
4492
|
-
/** @deprecated use `
|
|
4493
|
-
const inboundSchema: z.ZodType<
|
|
4494
|
-
/** @deprecated use `
|
|
4495
|
-
const outboundSchema: z.ZodType<
|
|
4496
|
-
/** @deprecated use `
|
|
4497
|
-
type Outbound =
|
|
4941
|
+
export declare namespace GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$ {
|
|
4942
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema` instead. */
|
|
4943
|
+
const inboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId, z.ZodTypeDef, unknown>;
|
|
4944
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema` instead. */
|
|
4945
|
+
const outboundSchema: z.ZodType<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound, z.ZodTypeDef, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId>;
|
|
4946
|
+
/** @deprecated use `GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound` instead. */
|
|
4947
|
+
type Outbound = GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$Outbound;
|
|
4498
4948
|
}
|
|
4499
|
-
export declare function
|
|
4500
|
-
export declare function
|
|
4949
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdToJSON(getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId: GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId): string;
|
|
4950
|
+
export declare function getDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoIdFromJSON(jsonString: string): SafeParseResult<GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId, SDKValidationError>;
|
|
4501
4951
|
/** @internal */
|
|
4502
4952
|
export declare const GetDeploymentGitSourceDeployments1$inboundSchema: z.ZodType<GetDeploymentGitSourceDeployments1, z.ZodTypeDef, unknown>;
|
|
4503
4953
|
/** @internal */
|
|
@@ -4527,7 +4977,7 @@ export declare function getDeploymentGitSourceDeployments1FromJSON(jsonString: s
|
|
|
4527
4977
|
/** @internal */
|
|
4528
4978
|
export declare const GetDeploymentResponseBodyGitSource$inboundSchema: z.ZodType<GetDeploymentResponseBodyGitSource, z.ZodTypeDef, unknown>;
|
|
4529
4979
|
/** @internal */
|
|
4530
|
-
export type GetDeploymentResponseBodyGitSource$Outbound =
|
|
4980
|
+
export type GetDeploymentResponseBodyGitSource$Outbound = GetDeploymentGitSourceDeployments12$Outbound | GetDeploymentGitSourceDeployments15$Outbound | GetDeploymentGitSourceDeployments4$Outbound | GetDeploymentGitSourceDeployments10$Outbound | GetDeploymentGitSourceDeployments11$Outbound | GetDeploymentGitSourceDeployments13$Outbound | GetDeploymentGitSourceDeployments14$Outbound | GetDeploymentGitSourceDeployments2$Outbound | GetDeploymentGitSourceDeployments3$Outbound | GetDeploymentGitSourceDeployments6$Outbound | GetDeploymentGitSourceDeployments9$Outbound | GetDeploymentGitSourceDeployments1$Outbound | GetDeploymentGitSourceDeployments5$Outbound | GetDeploymentGitSourceDeployments7$Outbound | GetDeploymentGitSourceDeployments8$Outbound;
|
|
4531
4981
|
/** @internal */
|
|
4532
4982
|
export declare const GetDeploymentResponseBodyGitSource$outboundSchema: z.ZodType<GetDeploymentResponseBodyGitSource$Outbound, z.ZodTypeDef, GetDeploymentResponseBodyGitSource>;
|
|
4533
4983
|
/**
|
|
@@ -4545,6 +4995,38 @@ export declare namespace GetDeploymentResponseBodyGitSource$ {
|
|
|
4545
4995
|
export declare function getDeploymentResponseBodyGitSourceToJSON(getDeploymentResponseBodyGitSource: GetDeploymentResponseBodyGitSource): string;
|
|
4546
4996
|
export declare function getDeploymentResponseBodyGitSourceFromJSON(jsonString: string): SafeParseResult<GetDeploymentResponseBodyGitSource, SDKValidationError>;
|
|
4547
4997
|
/** @internal */
|
|
4998
|
+
export declare const ResponseBodyNodeVersion$inboundSchema: z.ZodNativeEnum<typeof ResponseBodyNodeVersion>;
|
|
4999
|
+
/** @internal */
|
|
5000
|
+
export declare const ResponseBodyNodeVersion$outboundSchema: z.ZodNativeEnum<typeof ResponseBodyNodeVersion>;
|
|
5001
|
+
/**
|
|
5002
|
+
* @internal
|
|
5003
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5004
|
+
*/
|
|
5005
|
+
export declare namespace ResponseBodyNodeVersion$ {
|
|
5006
|
+
/** @deprecated use `ResponseBodyNodeVersion$inboundSchema` instead. */
|
|
5007
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
5008
|
+
readonly TwentyTwoDotX: "22.x";
|
|
5009
|
+
readonly TwentyDotX: "20.x";
|
|
5010
|
+
readonly EighteenDotX: "18.x";
|
|
5011
|
+
readonly SixteenDotX: "16.x";
|
|
5012
|
+
readonly FourteenDotX: "14.x";
|
|
5013
|
+
readonly TwelveDotX: "12.x";
|
|
5014
|
+
readonly TenDotX: "10.x";
|
|
5015
|
+
readonly EightDot10DotX: "8.10.x";
|
|
5016
|
+
}>;
|
|
5017
|
+
/** @deprecated use `ResponseBodyNodeVersion$outboundSchema` instead. */
|
|
5018
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
5019
|
+
readonly TwentyTwoDotX: "22.x";
|
|
5020
|
+
readonly TwentyDotX: "20.x";
|
|
5021
|
+
readonly EighteenDotX: "18.x";
|
|
5022
|
+
readonly SixteenDotX: "16.x";
|
|
5023
|
+
readonly FourteenDotX: "14.x";
|
|
5024
|
+
readonly TwelveDotX: "12.x";
|
|
5025
|
+
readonly TenDotX: "10.x";
|
|
5026
|
+
readonly EightDot10DotX: "8.10.x";
|
|
5027
|
+
}>;
|
|
5028
|
+
}
|
|
5029
|
+
/** @internal */
|
|
4548
5030
|
export declare const ResponseBodyProject$inboundSchema: z.ZodType<ResponseBodyProject, z.ZodTypeDef, unknown>;
|
|
4549
5031
|
/** @internal */
|
|
4550
5032
|
export type ResponseBodyProject$Outbound = {
|
|
@@ -6072,8 +6554,7 @@ export type GetDeploymentMicrofrontends2$Outbound = {
|
|
|
6072
6554
|
defaultAppProjectName: string;
|
|
6073
6555
|
defaultRoute?: string | undefined;
|
|
6074
6556
|
groupIds: Array<string>;
|
|
6075
|
-
|
|
6076
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
6557
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
6077
6558
|
};
|
|
6078
6559
|
/** @internal */
|
|
6079
6560
|
export declare const GetDeploymentMicrofrontends2$outboundSchema: z.ZodType<GetDeploymentMicrofrontends2$Outbound, z.ZodTypeDef, GetDeploymentMicrofrontends2>;
|
|
@@ -6099,8 +6580,7 @@ export type GetDeploymentMicrofrontends1$Outbound = {
|
|
|
6099
6580
|
defaultAppProjectName: string;
|
|
6100
6581
|
defaultRoute?: string | undefined;
|
|
6101
6582
|
groupIds: Array<string>;
|
|
6102
|
-
|
|
6103
|
-
previewEnvAliasEnabled?: boolean | undefined;
|
|
6583
|
+
microfrontendsAlias2Enabled?: boolean | undefined;
|
|
6104
6584
|
};
|
|
6105
6585
|
/** @internal */
|
|
6106
6586
|
export declare const GetDeploymentMicrofrontends1$outboundSchema: z.ZodType<GetDeploymentMicrofrontends1$Outbound, z.ZodTypeDef, GetDeploymentMicrofrontends1>;
|
|
@@ -6333,11 +6813,12 @@ export type GetDeploymentResponseBody1$Outbound = {
|
|
|
6333
6813
|
errorMessage?: string | null | undefined;
|
|
6334
6814
|
errorStep?: string | undefined;
|
|
6335
6815
|
passiveRegions?: Array<string> | undefined;
|
|
6336
|
-
gitSource?:
|
|
6816
|
+
gitSource?: GetDeploymentGitSourceDeployments12$Outbound | GetDeploymentGitSourceDeployments15$Outbound | GetDeploymentGitSourceDeployments4$Outbound | GetDeploymentGitSourceDeployments10$Outbound | GetDeploymentGitSourceDeployments11$Outbound | GetDeploymentGitSourceDeployments13$Outbound | GetDeploymentGitSourceDeployments14$Outbound | GetDeploymentGitSourceDeployments2$Outbound | GetDeploymentGitSourceDeployments3$Outbound | GetDeploymentGitSourceDeployments6$Outbound | GetDeploymentGitSourceDeployments9$Outbound | GetDeploymentGitSourceDeployments1$Outbound | GetDeploymentGitSourceDeployments5$Outbound | GetDeploymentGitSourceDeployments7$Outbound | GetDeploymentGitSourceDeployments8$Outbound | undefined;
|
|
6337
6817
|
meta: {
|
|
6338
6818
|
[k: string]: string;
|
|
6339
6819
|
};
|
|
6340
6820
|
originCacheRegion?: string | undefined;
|
|
6821
|
+
nodeVersion?: string | undefined;
|
|
6341
6822
|
project?: ResponseBodyProject$Outbound | undefined;
|
|
6342
6823
|
readySubstate?: string | undefined;
|
|
6343
6824
|
regions: Array<string>;
|