@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
|
@@ -65,6 +65,7 @@ export const UpdateProjectFramework = {
|
|
|
65
65
|
Sanity: "sanity",
|
|
66
66
|
Storybook: "storybook",
|
|
67
67
|
Nitro: "nitro",
|
|
68
|
+
Hono: "hono",
|
|
68
69
|
} as const;
|
|
69
70
|
/**
|
|
70
71
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
@@ -457,8 +458,8 @@ export type UpdateProjectSpeedInsights = {
|
|
|
457
458
|
};
|
|
458
459
|
|
|
459
460
|
export const UpdateProjectEnvId2 = {
|
|
460
|
-
Production: "production",
|
|
461
461
|
Preview: "preview",
|
|
462
|
+
Production: "production",
|
|
462
463
|
} as const;
|
|
463
464
|
export type UpdateProjectEnvId2 = ClosedEnum<typeof UpdateProjectEnvId2>;
|
|
464
465
|
|
|
@@ -472,6 +473,7 @@ export type UpdateProjectAws = {
|
|
|
472
473
|
export type UpdateProjectConnectConfigurations = {
|
|
473
474
|
envId: string | UpdateProjectEnvId2;
|
|
474
475
|
connectConfigurationId: string;
|
|
476
|
+
dc?: string | undefined;
|
|
475
477
|
passive: boolean;
|
|
476
478
|
buildsEnabled: boolean;
|
|
477
479
|
aws?: UpdateProjectAws | undefined;
|
|
@@ -843,8 +845,8 @@ export type UpdateProjectEnv = {
|
|
|
843
845
|
* The type of environment (production, preview, or development)
|
|
844
846
|
*/
|
|
845
847
|
export const UpdateProjectProjectsType = {
|
|
846
|
-
Production: "production",
|
|
847
848
|
Preview: "preview",
|
|
849
|
+
Production: "production",
|
|
848
850
|
Development: "development",
|
|
849
851
|
} as const;
|
|
850
852
|
/**
|
|
@@ -1009,6 +1011,7 @@ export const UpdateProjectProjectsFramework = {
|
|
|
1009
1011
|
Sanity: "sanity",
|
|
1010
1012
|
Storybook: "storybook",
|
|
1011
1013
|
Nitro: "nitro",
|
|
1014
|
+
Hono: "hono",
|
|
1012
1015
|
} as const;
|
|
1013
1016
|
export type UpdateProjectProjectsFramework = ClosedEnum<
|
|
1014
1017
|
typeof UpdateProjectProjectsFramework
|
|
@@ -1177,14 +1180,13 @@ export type UpdateProjectLatestDeployments = {
|
|
|
1177
1180
|
withCache?: boolean | undefined;
|
|
1178
1181
|
};
|
|
1179
1182
|
|
|
1180
|
-
export const
|
|
1183
|
+
export const UpdateProjectLinkProjectsResponse200ApplicationJSONType = {
|
|
1181
1184
|
GithubCustomHost: "github-custom-host",
|
|
1182
1185
|
} as const;
|
|
1183
|
-
export type
|
|
1184
|
-
typeof
|
|
1185
|
-
>;
|
|
1186
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONType =
|
|
1187
|
+
ClosedEnum<typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType>;
|
|
1186
1188
|
|
|
1187
|
-
export type
|
|
1189
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks = {
|
|
1188
1190
|
createdAt?: number | undefined;
|
|
1189
1191
|
id: string;
|
|
1190
1192
|
name: string;
|
|
@@ -1192,7 +1194,7 @@ export type UpdateProjectLinkProjectsResponse200DeployHooks = {
|
|
|
1192
1194
|
url: string;
|
|
1193
1195
|
};
|
|
1194
1196
|
|
|
1195
|
-
export type
|
|
1197
|
+
export type UpdateProjectLink5 = {
|
|
1196
1198
|
org?: string | undefined;
|
|
1197
1199
|
/**
|
|
1198
1200
|
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
@@ -1200,24 +1202,26 @@ export type UpdateProjectLink4 = {
|
|
|
1200
1202
|
repoOwnerId?: number | undefined;
|
|
1201
1203
|
repo?: string | undefined;
|
|
1202
1204
|
repoId?: number | undefined;
|
|
1203
|
-
type?:
|
|
1205
|
+
type?: UpdateProjectLinkProjectsResponse200ApplicationJSONType | undefined;
|
|
1204
1206
|
host?: string | undefined;
|
|
1205
1207
|
createdAt?: number | undefined;
|
|
1206
|
-
deployHooks: Array<
|
|
1208
|
+
deployHooks: Array<
|
|
1209
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks
|
|
1210
|
+
>;
|
|
1207
1211
|
gitCredentialId?: string | undefined;
|
|
1208
1212
|
updatedAt?: number | undefined;
|
|
1209
1213
|
sourceless?: boolean | undefined;
|
|
1210
1214
|
productionBranch?: string | undefined;
|
|
1211
1215
|
};
|
|
1212
1216
|
|
|
1213
|
-
export const
|
|
1217
|
+
export const UpdateProjectLinkProjectsResponse200Type = {
|
|
1214
1218
|
Bitbucket: "bitbucket",
|
|
1215
1219
|
} as const;
|
|
1216
|
-
export type
|
|
1217
|
-
typeof
|
|
1220
|
+
export type UpdateProjectLinkProjectsResponse200Type = ClosedEnum<
|
|
1221
|
+
typeof UpdateProjectLinkProjectsResponse200Type
|
|
1218
1222
|
>;
|
|
1219
1223
|
|
|
1220
|
-
export type
|
|
1224
|
+
export type UpdateProjectLinkProjectsResponse200DeployHooks = {
|
|
1221
1225
|
createdAt?: number | undefined;
|
|
1222
1226
|
id: string;
|
|
1223
1227
|
name: string;
|
|
@@ -1225,29 +1229,29 @@ export type UpdateProjectLinkProjectsResponseDeployHooks = {
|
|
|
1225
1229
|
url: string;
|
|
1226
1230
|
};
|
|
1227
1231
|
|
|
1228
|
-
export type
|
|
1232
|
+
export type UpdateProjectLink4 = {
|
|
1229
1233
|
name?: string | undefined;
|
|
1230
1234
|
slug?: string | undefined;
|
|
1231
1235
|
owner?: string | undefined;
|
|
1232
|
-
type?:
|
|
1236
|
+
type?: UpdateProjectLinkProjectsResponse200Type | undefined;
|
|
1233
1237
|
uuid?: string | undefined;
|
|
1234
1238
|
workspaceUuid?: string | undefined;
|
|
1235
1239
|
createdAt?: number | undefined;
|
|
1236
|
-
deployHooks: Array<
|
|
1240
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponse200DeployHooks>;
|
|
1237
1241
|
gitCredentialId?: string | undefined;
|
|
1238
1242
|
updatedAt?: number | undefined;
|
|
1239
1243
|
sourceless?: boolean | undefined;
|
|
1240
1244
|
productionBranch?: string | undefined;
|
|
1241
1245
|
};
|
|
1242
1246
|
|
|
1243
|
-
export const
|
|
1247
|
+
export const UpdateProjectLinkProjectsResponseType = {
|
|
1244
1248
|
Gitlab: "gitlab",
|
|
1245
1249
|
} as const;
|
|
1246
|
-
export type
|
|
1247
|
-
typeof
|
|
1250
|
+
export type UpdateProjectLinkProjectsResponseType = ClosedEnum<
|
|
1251
|
+
typeof UpdateProjectLinkProjectsResponseType
|
|
1248
1252
|
>;
|
|
1249
1253
|
|
|
1250
|
-
export type
|
|
1254
|
+
export type UpdateProjectLinkProjectsResponseDeployHooks = {
|
|
1251
1255
|
createdAt?: number | undefined;
|
|
1252
1256
|
id: string;
|
|
1253
1257
|
name: string;
|
|
@@ -1255,7 +1259,7 @@ export type UpdateProjectLinkProjectsDeployHooks = {
|
|
|
1255
1259
|
url: string;
|
|
1256
1260
|
};
|
|
1257
1261
|
|
|
1258
|
-
export type
|
|
1262
|
+
export type UpdateProjectLink3 = {
|
|
1259
1263
|
projectId?: string | undefined;
|
|
1260
1264
|
projectName?: string | undefined;
|
|
1261
1265
|
projectNameWithNamespace?: string | undefined;
|
|
@@ -1265,11 +1269,43 @@ export type UpdateProjectLink2 = {
|
|
|
1265
1269
|
*/
|
|
1266
1270
|
projectOwnerId?: number | undefined;
|
|
1267
1271
|
projectUrl?: string | undefined;
|
|
1272
|
+
type?: UpdateProjectLinkProjectsResponseType | undefined;
|
|
1273
|
+
createdAt?: number | undefined;
|
|
1274
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponseDeployHooks>;
|
|
1275
|
+
gitCredentialId?: string | undefined;
|
|
1276
|
+
updatedAt?: number | undefined;
|
|
1277
|
+
sourceless?: boolean | undefined;
|
|
1278
|
+
productionBranch?: string | undefined;
|
|
1279
|
+
};
|
|
1280
|
+
|
|
1281
|
+
export const UpdateProjectLinkProjectsType = {
|
|
1282
|
+
GithubLimited: "github-limited",
|
|
1283
|
+
} as const;
|
|
1284
|
+
export type UpdateProjectLinkProjectsType = ClosedEnum<
|
|
1285
|
+
typeof UpdateProjectLinkProjectsType
|
|
1286
|
+
>;
|
|
1287
|
+
|
|
1288
|
+
export type UpdateProjectLinkProjectsDeployHooks = {
|
|
1289
|
+
createdAt?: number | undefined;
|
|
1290
|
+
id: string;
|
|
1291
|
+
name: string;
|
|
1292
|
+
ref: string;
|
|
1293
|
+
url: string;
|
|
1294
|
+
};
|
|
1295
|
+
|
|
1296
|
+
export type UpdateProjectLink2 = {
|
|
1268
1297
|
type?: UpdateProjectLinkProjectsType | undefined;
|
|
1298
|
+
repo?: string | undefined;
|
|
1299
|
+
repoId?: number | undefined;
|
|
1300
|
+
updatedAt?: number | undefined;
|
|
1269
1301
|
createdAt?: number | undefined;
|
|
1302
|
+
org?: string | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
|
|
1305
|
+
*/
|
|
1306
|
+
repoOwnerId?: number | undefined;
|
|
1270
1307
|
deployHooks: Array<UpdateProjectLinkProjectsDeployHooks>;
|
|
1271
1308
|
gitCredentialId?: string | undefined;
|
|
1272
|
-
updatedAt?: number | undefined;
|
|
1273
1309
|
sourceless?: boolean | undefined;
|
|
1274
1310
|
productionBranch?: string | undefined;
|
|
1275
1311
|
};
|
|
@@ -1308,7 +1344,8 @@ export type UpdateProjectLink =
|
|
|
1308
1344
|
| UpdateProjectLink1
|
|
1309
1345
|
| UpdateProjectLink2
|
|
1310
1346
|
| UpdateProjectLink3
|
|
1311
|
-
| UpdateProjectLink4
|
|
1347
|
+
| UpdateProjectLink4
|
|
1348
|
+
| UpdateProjectLink5;
|
|
1312
1349
|
|
|
1313
1350
|
export type UpdateProjectMicrofrontends2 = {
|
|
1314
1351
|
updatedAt: number;
|
|
@@ -1668,6 +1705,7 @@ export type UpdateProjectPermissions = {
|
|
|
1668
1705
|
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1669
1706
|
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1670
1707
|
deployment?: Array<ACLAction> | undefined;
|
|
1708
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1671
1709
|
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1672
1710
|
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1673
1711
|
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
@@ -1718,6 +1756,7 @@ export type UpdateProjectPermissions = {
|
|
|
1718
1756
|
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1719
1757
|
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1720
1758
|
projectTier?: Array<ACLAction> | undefined;
|
|
1759
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1721
1760
|
seawallConfig?: Array<ACLAction> | undefined;
|
|
1722
1761
|
skewProtection?: Array<ACLAction> | undefined;
|
|
1723
1762
|
analytics?: Array<ACLAction> | undefined;
|
|
@@ -1725,11 +1764,11 @@ export type UpdateProjectPermissions = {
|
|
|
1725
1764
|
webAnalytics?: Array<ACLAction> | undefined;
|
|
1726
1765
|
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1727
1766
|
sonar?: Array<ACLAction> | undefined;
|
|
1767
|
+
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1728
1768
|
user?: Array<ACLAction> | undefined;
|
|
1729
1769
|
userConnection?: Array<ACLAction> | undefined;
|
|
1730
1770
|
userSudo?: Array<ACLAction> | undefined;
|
|
1731
1771
|
webAuthn?: Array<ACLAction> | undefined;
|
|
1732
|
-
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1733
1772
|
accessGroup?: Array<ACLAction> | undefined;
|
|
1734
1773
|
aliasGlobal?: Array<ACLAction> | undefined;
|
|
1735
1774
|
analyticsSampling?: Array<ACLAction> | undefined;
|
|
@@ -1742,6 +1781,7 @@ export type UpdateProjectPermissions = {
|
|
|
1742
1781
|
billingInvoiceLanguage?: Array<ACLAction> | undefined;
|
|
1743
1782
|
billingPlan?: Array<ACLAction> | undefined;
|
|
1744
1783
|
billingPurchaseOrder?: Array<ACLAction> | undefined;
|
|
1784
|
+
billingRefund?: Array<ACLAction> | undefined;
|
|
1745
1785
|
billingTaxId?: Array<ACLAction> | undefined;
|
|
1746
1786
|
blob?: Array<ACLAction> | undefined;
|
|
1747
1787
|
budget?: Array<ACLAction> | undefined;
|
|
@@ -1751,6 +1791,7 @@ export type UpdateProjectPermissions = {
|
|
|
1751
1791
|
concurrentBuilds?: Array<ACLAction> | undefined;
|
|
1752
1792
|
connect?: Array<ACLAction> | undefined;
|
|
1753
1793
|
connectConfiguration?: Array<ACLAction> | undefined;
|
|
1794
|
+
defaultDeploymentProtection?: Array<ACLAction> | undefined;
|
|
1754
1795
|
domain?: Array<ACLAction> | undefined;
|
|
1755
1796
|
domainAcceptDelegation?: Array<ACLAction> | undefined;
|
|
1756
1797
|
domainAuthCodes?: Array<ACLAction> | undefined;
|
|
@@ -1783,6 +1824,7 @@ export type UpdateProjectPermissions = {
|
|
|
1783
1824
|
marketplaceInstallationMember?: Array<ACLAction> | undefined;
|
|
1784
1825
|
marketplaceBillingData?: Array<ACLAction> | undefined;
|
|
1785
1826
|
marketplaceInvoice?: Array<ACLAction> | undefined;
|
|
1827
|
+
marketplaceSettings?: Array<ACLAction> | undefined;
|
|
1786
1828
|
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
|
|
1787
1829
|
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
|
|
1788
1830
|
jobGlobal?: Array<ACLAction> | undefined;
|
|
@@ -1809,6 +1851,7 @@ export type UpdateProjectPermissions = {
|
|
|
1809
1851
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1810
1852
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1811
1853
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1854
|
+
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1812
1855
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1813
1856
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1814
1857
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
@@ -1931,8 +1974,8 @@ export type UpdateProjectProtectionBypass =
|
|
|
1931
1974
|
| UpdateProjectProtectionBypass2;
|
|
1932
1975
|
|
|
1933
1976
|
export const UpdateProjectTrustedIpsProjectsDeploymentType = {
|
|
1934
|
-
Production: "production",
|
|
1935
1977
|
Preview: "preview",
|
|
1978
|
+
Production: "production",
|
|
1936
1979
|
All: "all",
|
|
1937
1980
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1938
1981
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -1946,8 +1989,8 @@ export type UpdateProjectTrustedIps2 = {
|
|
|
1946
1989
|
};
|
|
1947
1990
|
|
|
1948
1991
|
export const UpdateProjectTrustedIpsDeploymentType = {
|
|
1949
|
-
Production: "production",
|
|
1950
1992
|
Preview: "preview",
|
|
1993
|
+
Production: "production",
|
|
1951
1994
|
All: "all",
|
|
1952
1995
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1953
1996
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -2009,6 +2052,10 @@ export type UpdateProjectGitProviderOptions = {
|
|
|
2009
2052
|
* Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead
|
|
2010
2053
|
*/
|
|
2011
2054
|
createDeployments: UpdateProjectCreateDeployments;
|
|
2055
|
+
/**
|
|
2056
|
+
* Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events
|
|
2057
|
+
*/
|
|
2058
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
2012
2059
|
};
|
|
2013
2060
|
|
|
2014
2061
|
export type UpdateProjectWebAnalytics = {
|
|
@@ -2306,6 +2353,7 @@ export type UpdateProjectResponseBody = {
|
|
|
2306
2353
|
| UpdateProjectLink2
|
|
2307
2354
|
| UpdateProjectLink3
|
|
2308
2355
|
| UpdateProjectLink4
|
|
2356
|
+
| UpdateProjectLink5
|
|
2309
2357
|
| undefined;
|
|
2310
2358
|
microfrontends?:
|
|
2311
2359
|
| UpdateProjectMicrofrontends1
|
|
@@ -2371,6 +2419,7 @@ export type UpdateProjectResponseBody = {
|
|
|
2371
2419
|
oidcTokenConfig?: UpdateProjectProjectsOidcTokenConfig | undefined;
|
|
2372
2420
|
tier?: UpdateProjectTier | undefined;
|
|
2373
2421
|
features?: UpdateProjectFeatures | undefined;
|
|
2422
|
+
v0?: boolean | undefined;
|
|
2374
2423
|
};
|
|
2375
2424
|
|
|
2376
2425
|
/** @internal */
|
|
@@ -3682,6 +3731,7 @@ export const UpdateProjectConnectConfigurations$inboundSchema: z.ZodType<
|
|
|
3682
3731
|
> = z.object({
|
|
3683
3732
|
envId: z.union([z.string(), UpdateProjectEnvId2$inboundSchema]),
|
|
3684
3733
|
connectConfigurationId: z.string(),
|
|
3734
|
+
dc: z.string().optional(),
|
|
3685
3735
|
passive: z.boolean(),
|
|
3686
3736
|
buildsEnabled: z.boolean(),
|
|
3687
3737
|
aws: z.lazy(() => UpdateProjectAws$inboundSchema).optional(),
|
|
@@ -3693,6 +3743,7 @@ export const UpdateProjectConnectConfigurations$inboundSchema: z.ZodType<
|
|
|
3693
3743
|
export type UpdateProjectConnectConfigurations$Outbound = {
|
|
3694
3744
|
envId: string | string;
|
|
3695
3745
|
connectConfigurationId: string;
|
|
3746
|
+
dc?: string | undefined;
|
|
3696
3747
|
passive: boolean;
|
|
3697
3748
|
buildsEnabled: boolean;
|
|
3698
3749
|
aws?: UpdateProjectAws$Outbound | undefined;
|
|
@@ -3708,6 +3759,7 @@ export const UpdateProjectConnectConfigurations$outboundSchema: z.ZodType<
|
|
|
3708
3759
|
> = z.object({
|
|
3709
3760
|
envId: z.union([z.string(), UpdateProjectEnvId2$outboundSchema]),
|
|
3710
3761
|
connectConfigurationId: z.string(),
|
|
3762
|
+
dc: z.string().optional(),
|
|
3711
3763
|
passive: z.boolean(),
|
|
3712
3764
|
buildsEnabled: z.boolean(),
|
|
3713
3765
|
aws: z.lazy(() => UpdateProjectAws$outboundSchema).optional(),
|
|
@@ -6861,6 +6913,209 @@ export function updateProjectLatestDeploymentsFromJSON(
|
|
|
6861
6913
|
);
|
|
6862
6914
|
}
|
|
6863
6915
|
|
|
6916
|
+
/** @internal */
|
|
6917
|
+
export const UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema:
|
|
6918
|
+
z.ZodNativeEnum<
|
|
6919
|
+
typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType
|
|
6920
|
+
> = z.nativeEnum(UpdateProjectLinkProjectsResponse200ApplicationJSONType);
|
|
6921
|
+
|
|
6922
|
+
/** @internal */
|
|
6923
|
+
export const UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema:
|
|
6924
|
+
z.ZodNativeEnum<
|
|
6925
|
+
typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType
|
|
6926
|
+
> = UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema;
|
|
6927
|
+
|
|
6928
|
+
/**
|
|
6929
|
+
* @internal
|
|
6930
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6931
|
+
*/
|
|
6932
|
+
export namespace UpdateProjectLinkProjectsResponse200ApplicationJSONType$ {
|
|
6933
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
6934
|
+
export const inboundSchema =
|
|
6935
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema;
|
|
6936
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
6937
|
+
export const outboundSchema =
|
|
6938
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema;
|
|
6939
|
+
}
|
|
6940
|
+
|
|
6941
|
+
/** @internal */
|
|
6942
|
+
export const UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema:
|
|
6943
|
+
z.ZodType<
|
|
6944
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
6945
|
+
z.ZodTypeDef,
|
|
6946
|
+
unknown
|
|
6947
|
+
> = z.object({
|
|
6948
|
+
createdAt: z.number().optional(),
|
|
6949
|
+
id: z.string(),
|
|
6950
|
+
name: z.string(),
|
|
6951
|
+
ref: z.string(),
|
|
6952
|
+
url: z.string(),
|
|
6953
|
+
});
|
|
6954
|
+
|
|
6955
|
+
/** @internal */
|
|
6956
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound =
|
|
6957
|
+
{
|
|
6958
|
+
createdAt?: number | undefined;
|
|
6959
|
+
id: string;
|
|
6960
|
+
name: string;
|
|
6961
|
+
ref: string;
|
|
6962
|
+
url: string;
|
|
6963
|
+
};
|
|
6964
|
+
|
|
6965
|
+
/** @internal */
|
|
6966
|
+
export const UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema:
|
|
6967
|
+
z.ZodType<
|
|
6968
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound,
|
|
6969
|
+
z.ZodTypeDef,
|
|
6970
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks
|
|
6971
|
+
> = z.object({
|
|
6972
|
+
createdAt: z.number().optional(),
|
|
6973
|
+
id: z.string(),
|
|
6974
|
+
name: z.string(),
|
|
6975
|
+
ref: z.string(),
|
|
6976
|
+
url: z.string(),
|
|
6977
|
+
});
|
|
6978
|
+
|
|
6979
|
+
/**
|
|
6980
|
+
* @internal
|
|
6981
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6982
|
+
*/
|
|
6983
|
+
export namespace UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$ {
|
|
6984
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema` instead. */
|
|
6985
|
+
export const inboundSchema =
|
|
6986
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema;
|
|
6987
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema` instead. */
|
|
6988
|
+
export const outboundSchema =
|
|
6989
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema;
|
|
6990
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound` instead. */
|
|
6991
|
+
export type Outbound =
|
|
6992
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound;
|
|
6993
|
+
}
|
|
6994
|
+
|
|
6995
|
+
export function updateProjectLinkProjectsResponse200ApplicationJSONDeployHooksToJSON(
|
|
6996
|
+
updateProjectLinkProjectsResponse200ApplicationJSONDeployHooks:
|
|
6997
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
6998
|
+
): string {
|
|
6999
|
+
return JSON.stringify(
|
|
7000
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema
|
|
7001
|
+
.parse(updateProjectLinkProjectsResponse200ApplicationJSONDeployHooks),
|
|
7002
|
+
);
|
|
7003
|
+
}
|
|
7004
|
+
|
|
7005
|
+
export function updateProjectLinkProjectsResponse200ApplicationJSONDeployHooksFromJSON(
|
|
7006
|
+
jsonString: string,
|
|
7007
|
+
): SafeParseResult<
|
|
7008
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
7009
|
+
SDKValidationError
|
|
7010
|
+
> {
|
|
7011
|
+
return safeParse(
|
|
7012
|
+
jsonString,
|
|
7013
|
+
(x) =>
|
|
7014
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema
|
|
7015
|
+
.parse(JSON.parse(x)),
|
|
7016
|
+
`Failed to parse 'UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks' from JSON`,
|
|
7017
|
+
);
|
|
7018
|
+
}
|
|
7019
|
+
|
|
7020
|
+
/** @internal */
|
|
7021
|
+
export const UpdateProjectLink5$inboundSchema: z.ZodType<
|
|
7022
|
+
UpdateProjectLink5,
|
|
7023
|
+
z.ZodTypeDef,
|
|
7024
|
+
unknown
|
|
7025
|
+
> = z.object({
|
|
7026
|
+
org: z.string().optional(),
|
|
7027
|
+
repoOwnerId: z.number().optional(),
|
|
7028
|
+
repo: z.string().optional(),
|
|
7029
|
+
repoId: z.number().optional(),
|
|
7030
|
+
type: UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema
|
|
7031
|
+
.optional(),
|
|
7032
|
+
host: z.string().optional(),
|
|
7033
|
+
createdAt: z.number().optional(),
|
|
7034
|
+
deployHooks: z.array(
|
|
7035
|
+
z.lazy(() =>
|
|
7036
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema
|
|
7037
|
+
),
|
|
7038
|
+
),
|
|
7039
|
+
gitCredentialId: z.string().optional(),
|
|
7040
|
+
updatedAt: z.number().optional(),
|
|
7041
|
+
sourceless: z.boolean().optional(),
|
|
7042
|
+
productionBranch: z.string().optional(),
|
|
7043
|
+
});
|
|
7044
|
+
|
|
7045
|
+
/** @internal */
|
|
7046
|
+
export type UpdateProjectLink5$Outbound = {
|
|
7047
|
+
org?: string | undefined;
|
|
7048
|
+
repoOwnerId?: number | undefined;
|
|
7049
|
+
repo?: string | undefined;
|
|
7050
|
+
repoId?: number | undefined;
|
|
7051
|
+
type?: string | undefined;
|
|
7052
|
+
host?: string | undefined;
|
|
7053
|
+
createdAt?: number | undefined;
|
|
7054
|
+
deployHooks: Array<
|
|
7055
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound
|
|
7056
|
+
>;
|
|
7057
|
+
gitCredentialId?: string | undefined;
|
|
7058
|
+
updatedAt?: number | undefined;
|
|
7059
|
+
sourceless?: boolean | undefined;
|
|
7060
|
+
productionBranch?: string | undefined;
|
|
7061
|
+
};
|
|
7062
|
+
|
|
7063
|
+
/** @internal */
|
|
7064
|
+
export const UpdateProjectLink5$outboundSchema: z.ZodType<
|
|
7065
|
+
UpdateProjectLink5$Outbound,
|
|
7066
|
+
z.ZodTypeDef,
|
|
7067
|
+
UpdateProjectLink5
|
|
7068
|
+
> = z.object({
|
|
7069
|
+
org: z.string().optional(),
|
|
7070
|
+
repoOwnerId: z.number().optional(),
|
|
7071
|
+
repo: z.string().optional(),
|
|
7072
|
+
repoId: z.number().optional(),
|
|
7073
|
+
type: UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema
|
|
7074
|
+
.optional(),
|
|
7075
|
+
host: z.string().optional(),
|
|
7076
|
+
createdAt: z.number().optional(),
|
|
7077
|
+
deployHooks: z.array(
|
|
7078
|
+
z.lazy(() =>
|
|
7079
|
+
UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema
|
|
7080
|
+
),
|
|
7081
|
+
),
|
|
7082
|
+
gitCredentialId: z.string().optional(),
|
|
7083
|
+
updatedAt: z.number().optional(),
|
|
7084
|
+
sourceless: z.boolean().optional(),
|
|
7085
|
+
productionBranch: z.string().optional(),
|
|
7086
|
+
});
|
|
7087
|
+
|
|
7088
|
+
/**
|
|
7089
|
+
* @internal
|
|
7090
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7091
|
+
*/
|
|
7092
|
+
export namespace UpdateProjectLink5$ {
|
|
7093
|
+
/** @deprecated use `UpdateProjectLink5$inboundSchema` instead. */
|
|
7094
|
+
export const inboundSchema = UpdateProjectLink5$inboundSchema;
|
|
7095
|
+
/** @deprecated use `UpdateProjectLink5$outboundSchema` instead. */
|
|
7096
|
+
export const outboundSchema = UpdateProjectLink5$outboundSchema;
|
|
7097
|
+
/** @deprecated use `UpdateProjectLink5$Outbound` instead. */
|
|
7098
|
+
export type Outbound = UpdateProjectLink5$Outbound;
|
|
7099
|
+
}
|
|
7100
|
+
|
|
7101
|
+
export function updateProjectLink5ToJSON(
|
|
7102
|
+
updateProjectLink5: UpdateProjectLink5,
|
|
7103
|
+
): string {
|
|
7104
|
+
return JSON.stringify(
|
|
7105
|
+
UpdateProjectLink5$outboundSchema.parse(updateProjectLink5),
|
|
7106
|
+
);
|
|
7107
|
+
}
|
|
7108
|
+
|
|
7109
|
+
export function updateProjectLink5FromJSON(
|
|
7110
|
+
jsonString: string,
|
|
7111
|
+
): SafeParseResult<UpdateProjectLink5, SDKValidationError> {
|
|
7112
|
+
return safeParse(
|
|
7113
|
+
jsonString,
|
|
7114
|
+
(x) => UpdateProjectLink5$inboundSchema.parse(JSON.parse(x)),
|
|
7115
|
+
`Failed to parse 'UpdateProjectLink5' from JSON`,
|
|
7116
|
+
);
|
|
7117
|
+
}
|
|
7118
|
+
|
|
6864
7119
|
/** @internal */
|
|
6865
7120
|
export const UpdateProjectLinkProjectsResponse200Type$inboundSchema:
|
|
6866
7121
|
z.ZodNativeEnum<typeof UpdateProjectLinkProjectsResponse200Type> = z
|
|
@@ -6970,12 +7225,12 @@ export const UpdateProjectLink4$inboundSchema: z.ZodType<
|
|
|
6970
7225
|
z.ZodTypeDef,
|
|
6971
7226
|
unknown
|
|
6972
7227
|
> = z.object({
|
|
6973
|
-
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
repoId: z.number().optional(),
|
|
7228
|
+
name: z.string().optional(),
|
|
7229
|
+
slug: z.string().optional(),
|
|
7230
|
+
owner: z.string().optional(),
|
|
6977
7231
|
type: UpdateProjectLinkProjectsResponse200Type$inboundSchema.optional(),
|
|
6978
|
-
|
|
7232
|
+
uuid: z.string().optional(),
|
|
7233
|
+
workspaceUuid: z.string().optional(),
|
|
6979
7234
|
createdAt: z.number().optional(),
|
|
6980
7235
|
deployHooks: z.array(
|
|
6981
7236
|
z.lazy(() => UpdateProjectLinkProjectsResponse200DeployHooks$inboundSchema),
|
|
@@ -6988,12 +7243,12 @@ export const UpdateProjectLink4$inboundSchema: z.ZodType<
|
|
|
6988
7243
|
|
|
6989
7244
|
/** @internal */
|
|
6990
7245
|
export type UpdateProjectLink4$Outbound = {
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
repoId?: number | undefined;
|
|
7246
|
+
name?: string | undefined;
|
|
7247
|
+
slug?: string | undefined;
|
|
7248
|
+
owner?: string | undefined;
|
|
6995
7249
|
type?: string | undefined;
|
|
6996
|
-
|
|
7250
|
+
uuid?: string | undefined;
|
|
7251
|
+
workspaceUuid?: string | undefined;
|
|
6997
7252
|
createdAt?: number | undefined;
|
|
6998
7253
|
deployHooks: Array<UpdateProjectLinkProjectsResponse200DeployHooks$Outbound>;
|
|
6999
7254
|
gitCredentialId?: string | undefined;
|
|
@@ -7008,12 +7263,12 @@ export const UpdateProjectLink4$outboundSchema: z.ZodType<
|
|
|
7008
7263
|
z.ZodTypeDef,
|
|
7009
7264
|
UpdateProjectLink4
|
|
7010
7265
|
> = z.object({
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
|
|
7014
|
-
repoId: z.number().optional(),
|
|
7266
|
+
name: z.string().optional(),
|
|
7267
|
+
slug: z.string().optional(),
|
|
7268
|
+
owner: z.string().optional(),
|
|
7015
7269
|
type: UpdateProjectLinkProjectsResponse200Type$outboundSchema.optional(),
|
|
7016
|
-
|
|
7270
|
+
uuid: z.string().optional(),
|
|
7271
|
+
workspaceUuid: z.string().optional(),
|
|
7017
7272
|
createdAt: z.number().optional(),
|
|
7018
7273
|
deployHooks: z.array(
|
|
7019
7274
|
z.lazy(() =>
|
|
@@ -7166,12 +7421,13 @@ export const UpdateProjectLink3$inboundSchema: z.ZodType<
|
|
|
7166
7421
|
z.ZodTypeDef,
|
|
7167
7422
|
unknown
|
|
7168
7423
|
> = z.object({
|
|
7169
|
-
|
|
7170
|
-
|
|
7171
|
-
|
|
7424
|
+
projectId: z.string().optional(),
|
|
7425
|
+
projectName: z.string().optional(),
|
|
7426
|
+
projectNameWithNamespace: z.string().optional(),
|
|
7427
|
+
projectNamespace: z.string().optional(),
|
|
7428
|
+
projectOwnerId: z.number().optional(),
|
|
7429
|
+
projectUrl: z.string().optional(),
|
|
7172
7430
|
type: UpdateProjectLinkProjectsResponseType$inboundSchema.optional(),
|
|
7173
|
-
uuid: z.string().optional(),
|
|
7174
|
-
workspaceUuid: z.string().optional(),
|
|
7175
7431
|
createdAt: z.number().optional(),
|
|
7176
7432
|
deployHooks: z.array(
|
|
7177
7433
|
z.lazy(() => UpdateProjectLinkProjectsResponseDeployHooks$inboundSchema),
|
|
@@ -7184,12 +7440,13 @@ export const UpdateProjectLink3$inboundSchema: z.ZodType<
|
|
|
7184
7440
|
|
|
7185
7441
|
/** @internal */
|
|
7186
7442
|
export type UpdateProjectLink3$Outbound = {
|
|
7187
|
-
|
|
7188
|
-
|
|
7189
|
-
|
|
7443
|
+
projectId?: string | undefined;
|
|
7444
|
+
projectName?: string | undefined;
|
|
7445
|
+
projectNameWithNamespace?: string | undefined;
|
|
7446
|
+
projectNamespace?: string | undefined;
|
|
7447
|
+
projectOwnerId?: number | undefined;
|
|
7448
|
+
projectUrl?: string | undefined;
|
|
7190
7449
|
type?: string | undefined;
|
|
7191
|
-
uuid?: string | undefined;
|
|
7192
|
-
workspaceUuid?: string | undefined;
|
|
7193
7450
|
createdAt?: number | undefined;
|
|
7194
7451
|
deployHooks: Array<UpdateProjectLinkProjectsResponseDeployHooks$Outbound>;
|
|
7195
7452
|
gitCredentialId?: string | undefined;
|
|
@@ -7204,12 +7461,13 @@ export const UpdateProjectLink3$outboundSchema: z.ZodType<
|
|
|
7204
7461
|
z.ZodTypeDef,
|
|
7205
7462
|
UpdateProjectLink3
|
|
7206
7463
|
> = z.object({
|
|
7207
|
-
|
|
7208
|
-
|
|
7209
|
-
|
|
7464
|
+
projectId: z.string().optional(),
|
|
7465
|
+
projectName: z.string().optional(),
|
|
7466
|
+
projectNameWithNamespace: z.string().optional(),
|
|
7467
|
+
projectNamespace: z.string().optional(),
|
|
7468
|
+
projectOwnerId: z.number().optional(),
|
|
7469
|
+
projectUrl: z.string().optional(),
|
|
7210
7470
|
type: UpdateProjectLinkProjectsResponseType$outboundSchema.optional(),
|
|
7211
|
-
uuid: z.string().optional(),
|
|
7212
|
-
workspaceUuid: z.string().optional(),
|
|
7213
7471
|
createdAt: z.number().optional(),
|
|
7214
7472
|
deployHooks: z.array(
|
|
7215
7473
|
z.lazy(() => UpdateProjectLinkProjectsResponseDeployHooks$outboundSchema),
|
|
@@ -7349,36 +7607,32 @@ export const UpdateProjectLink2$inboundSchema: z.ZodType<
|
|
|
7349
7607
|
z.ZodTypeDef,
|
|
7350
7608
|
unknown
|
|
7351
7609
|
> = z.object({
|
|
7352
|
-
projectId: z.string().optional(),
|
|
7353
|
-
projectName: z.string().optional(),
|
|
7354
|
-
projectNameWithNamespace: z.string().optional(),
|
|
7355
|
-
projectNamespace: z.string().optional(),
|
|
7356
|
-
projectOwnerId: z.number().optional(),
|
|
7357
|
-
projectUrl: z.string().optional(),
|
|
7358
7610
|
type: UpdateProjectLinkProjectsType$inboundSchema.optional(),
|
|
7611
|
+
repo: z.string().optional(),
|
|
7612
|
+
repoId: z.number().optional(),
|
|
7613
|
+
updatedAt: z.number().optional(),
|
|
7359
7614
|
createdAt: z.number().optional(),
|
|
7615
|
+
org: z.string().optional(),
|
|
7616
|
+
repoOwnerId: z.number().optional(),
|
|
7360
7617
|
deployHooks: z.array(
|
|
7361
7618
|
z.lazy(() => UpdateProjectLinkProjectsDeployHooks$inboundSchema),
|
|
7362
7619
|
),
|
|
7363
7620
|
gitCredentialId: z.string().optional(),
|
|
7364
|
-
updatedAt: z.number().optional(),
|
|
7365
7621
|
sourceless: z.boolean().optional(),
|
|
7366
7622
|
productionBranch: z.string().optional(),
|
|
7367
7623
|
});
|
|
7368
7624
|
|
|
7369
7625
|
/** @internal */
|
|
7370
7626
|
export type UpdateProjectLink2$Outbound = {
|
|
7371
|
-
projectId?: string | undefined;
|
|
7372
|
-
projectName?: string | undefined;
|
|
7373
|
-
projectNameWithNamespace?: string | undefined;
|
|
7374
|
-
projectNamespace?: string | undefined;
|
|
7375
|
-
projectOwnerId?: number | undefined;
|
|
7376
|
-
projectUrl?: string | undefined;
|
|
7377
7627
|
type?: string | undefined;
|
|
7628
|
+
repo?: string | undefined;
|
|
7629
|
+
repoId?: number | undefined;
|
|
7630
|
+
updatedAt?: number | undefined;
|
|
7378
7631
|
createdAt?: number | undefined;
|
|
7632
|
+
org?: string | undefined;
|
|
7633
|
+
repoOwnerId?: number | undefined;
|
|
7379
7634
|
deployHooks: Array<UpdateProjectLinkProjectsDeployHooks$Outbound>;
|
|
7380
7635
|
gitCredentialId?: string | undefined;
|
|
7381
|
-
updatedAt?: number | undefined;
|
|
7382
7636
|
sourceless?: boolean | undefined;
|
|
7383
7637
|
productionBranch?: string | undefined;
|
|
7384
7638
|
};
|
|
@@ -7389,19 +7643,17 @@ export const UpdateProjectLink2$outboundSchema: z.ZodType<
|
|
|
7389
7643
|
z.ZodTypeDef,
|
|
7390
7644
|
UpdateProjectLink2
|
|
7391
7645
|
> = z.object({
|
|
7392
|
-
projectId: z.string().optional(),
|
|
7393
|
-
projectName: z.string().optional(),
|
|
7394
|
-
projectNameWithNamespace: z.string().optional(),
|
|
7395
|
-
projectNamespace: z.string().optional(),
|
|
7396
|
-
projectOwnerId: z.number().optional(),
|
|
7397
|
-
projectUrl: z.string().optional(),
|
|
7398
7646
|
type: UpdateProjectLinkProjectsType$outboundSchema.optional(),
|
|
7647
|
+
repo: z.string().optional(),
|
|
7648
|
+
repoId: z.number().optional(),
|
|
7649
|
+
updatedAt: z.number().optional(),
|
|
7399
7650
|
createdAt: z.number().optional(),
|
|
7651
|
+
org: z.string().optional(),
|
|
7652
|
+
repoOwnerId: z.number().optional(),
|
|
7400
7653
|
deployHooks: z.array(
|
|
7401
7654
|
z.lazy(() => UpdateProjectLinkProjectsDeployHooks$outboundSchema),
|
|
7402
7655
|
),
|
|
7403
7656
|
gitCredentialId: z.string().optional(),
|
|
7404
|
-
updatedAt: z.number().optional(),
|
|
7405
7657
|
sourceless: z.boolean().optional(),
|
|
7406
7658
|
productionBranch: z.string().optional(),
|
|
7407
7659
|
});
|
|
@@ -7624,6 +7876,7 @@ export const UpdateProjectLink$inboundSchema: z.ZodType<
|
|
|
7624
7876
|
z.lazy(() => UpdateProjectLink2$inboundSchema),
|
|
7625
7877
|
z.lazy(() => UpdateProjectLink3$inboundSchema),
|
|
7626
7878
|
z.lazy(() => UpdateProjectLink4$inboundSchema),
|
|
7879
|
+
z.lazy(() => UpdateProjectLink5$inboundSchema),
|
|
7627
7880
|
]);
|
|
7628
7881
|
|
|
7629
7882
|
/** @internal */
|
|
@@ -7631,7 +7884,8 @@ export type UpdateProjectLink$Outbound =
|
|
|
7631
7884
|
| UpdateProjectLink1$Outbound
|
|
7632
7885
|
| UpdateProjectLink2$Outbound
|
|
7633
7886
|
| UpdateProjectLink3$Outbound
|
|
7634
|
-
| UpdateProjectLink4$Outbound
|
|
7887
|
+
| UpdateProjectLink4$Outbound
|
|
7888
|
+
| UpdateProjectLink5$Outbound;
|
|
7635
7889
|
|
|
7636
7890
|
/** @internal */
|
|
7637
7891
|
export const UpdateProjectLink$outboundSchema: z.ZodType<
|
|
@@ -7643,6 +7897,7 @@ export const UpdateProjectLink$outboundSchema: z.ZodType<
|
|
|
7643
7897
|
z.lazy(() => UpdateProjectLink2$outboundSchema),
|
|
7644
7898
|
z.lazy(() => UpdateProjectLink3$outboundSchema),
|
|
7645
7899
|
z.lazy(() => UpdateProjectLink4$outboundSchema),
|
|
7900
|
+
z.lazy(() => UpdateProjectLink5$outboundSchema),
|
|
7646
7901
|
]);
|
|
7647
7902
|
|
|
7648
7903
|
/**
|
|
@@ -9344,6 +9599,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9344
9599
|
connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
|
|
9345
9600
|
dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
|
|
9346
9601
|
deployment: z.array(ACLAction$inboundSchema).optional(),
|
|
9602
|
+
deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
|
|
9347
9603
|
deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
|
|
9348
9604
|
deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
|
|
9349
9605
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
|
|
@@ -9396,6 +9652,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9396
9652
|
projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
|
|
9397
9653
|
projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
|
|
9398
9654
|
projectTier: z.array(ACLAction$inboundSchema).optional(),
|
|
9655
|
+
projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
|
|
9399
9656
|
seawallConfig: z.array(ACLAction$inboundSchema).optional(),
|
|
9400
9657
|
skewProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
9401
9658
|
analytics: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9403,11 +9660,11 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9403
9660
|
webAnalytics: z.array(ACLAction$inboundSchema).optional(),
|
|
9404
9661
|
sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
|
|
9405
9662
|
sonar: z.array(ACLAction$inboundSchema).optional(),
|
|
9663
|
+
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
9406
9664
|
user: z.array(ACLAction$inboundSchema).optional(),
|
|
9407
9665
|
userConnection: z.array(ACLAction$inboundSchema).optional(),
|
|
9408
9666
|
userSudo: z.array(ACLAction$inboundSchema).optional(),
|
|
9409
9667
|
webAuthn: z.array(ACLAction$inboundSchema).optional(),
|
|
9410
|
-
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
9411
9668
|
accessGroup: z.array(ACLAction$inboundSchema).optional(),
|
|
9412
9669
|
aliasGlobal: z.array(ACLAction$inboundSchema).optional(),
|
|
9413
9670
|
analyticsSampling: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9420,6 +9677,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9420
9677
|
billingInvoiceLanguage: z.array(ACLAction$inboundSchema).optional(),
|
|
9421
9678
|
billingPlan: z.array(ACLAction$inboundSchema).optional(),
|
|
9422
9679
|
billingPurchaseOrder: z.array(ACLAction$inboundSchema).optional(),
|
|
9680
|
+
billingRefund: z.array(ACLAction$inboundSchema).optional(),
|
|
9423
9681
|
billingTaxId: z.array(ACLAction$inboundSchema).optional(),
|
|
9424
9682
|
blob: z.array(ACLAction$inboundSchema).optional(),
|
|
9425
9683
|
budget: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9429,6 +9687,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9429
9687
|
concurrentBuilds: z.array(ACLAction$inboundSchema).optional(),
|
|
9430
9688
|
connect: z.array(ACLAction$inboundSchema).optional(),
|
|
9431
9689
|
connectConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
9690
|
+
defaultDeploymentProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
9432
9691
|
domain: z.array(ACLAction$inboundSchema).optional(),
|
|
9433
9692
|
domainAcceptDelegation: z.array(ACLAction$inboundSchema).optional(),
|
|
9434
9693
|
domainAuthCodes: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9463,6 +9722,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9463
9722
|
marketplaceInstallationMember: z.array(ACLAction$inboundSchema).optional(),
|
|
9464
9723
|
marketplaceBillingData: z.array(ACLAction$inboundSchema).optional(),
|
|
9465
9724
|
marketplaceInvoice: z.array(ACLAction$inboundSchema).optional(),
|
|
9725
|
+
marketplaceSettings: z.array(ACLAction$inboundSchema).optional(),
|
|
9466
9726
|
marketplaceExperimentationItem: z.array(ACLAction$inboundSchema).optional(),
|
|
9467
9727
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$inboundSchema)
|
|
9468
9728
|
.optional(),
|
|
@@ -9490,6 +9750,7 @@ export const UpdateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9490
9750
|
notificationStatementOfReasons: z.array(ACLAction$inboundSchema).optional(),
|
|
9491
9751
|
observabilityConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
9492
9752
|
observabilityNotebook: z.array(ACLAction$inboundSchema).optional(),
|
|
9753
|
+
observabilityFunnel: z.array(ACLAction$inboundSchema).optional(),
|
|
9493
9754
|
openTelemetryEndpoint: z.array(ACLAction$inboundSchema).optional(),
|
|
9494
9755
|
vercelAppInstallation: z.array(ACLAction$inboundSchema).optional(),
|
|
9495
9756
|
paymentMethod: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9563,6 +9824,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9563
9824
|
connectConfigurationLink?: Array<string> | undefined;
|
|
9564
9825
|
dataCacheNamespace?: Array<string> | undefined;
|
|
9565
9826
|
deployment?: Array<string> | undefined;
|
|
9827
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
9566
9828
|
deploymentCheck?: Array<string> | undefined;
|
|
9567
9829
|
deploymentCheckPreview?: Array<string> | undefined;
|
|
9568
9830
|
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
@@ -9613,6 +9875,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9613
9875
|
projectDeploymentExpiration?: Array<string> | undefined;
|
|
9614
9876
|
projectRollingRelease?: Array<string> | undefined;
|
|
9615
9877
|
projectTier?: Array<string> | undefined;
|
|
9878
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
9616
9879
|
seawallConfig?: Array<string> | undefined;
|
|
9617
9880
|
skewProtection?: Array<string> | undefined;
|
|
9618
9881
|
analytics?: Array<string> | undefined;
|
|
@@ -9620,11 +9883,11 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9620
9883
|
webAnalytics?: Array<string> | undefined;
|
|
9621
9884
|
sharedEnvVarConnection?: Array<string> | undefined;
|
|
9622
9885
|
sonar?: Array<string> | undefined;
|
|
9886
|
+
oauth2Connection?: Array<string> | undefined;
|
|
9623
9887
|
user?: Array<string> | undefined;
|
|
9624
9888
|
userConnection?: Array<string> | undefined;
|
|
9625
9889
|
userSudo?: Array<string> | undefined;
|
|
9626
9890
|
webAuthn?: Array<string> | undefined;
|
|
9627
|
-
oauth2Connection?: Array<string> | undefined;
|
|
9628
9891
|
accessGroup?: Array<string> | undefined;
|
|
9629
9892
|
aliasGlobal?: Array<string> | undefined;
|
|
9630
9893
|
analyticsSampling?: Array<string> | undefined;
|
|
@@ -9637,6 +9900,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9637
9900
|
billingInvoiceLanguage?: Array<string> | undefined;
|
|
9638
9901
|
billingPlan?: Array<string> | undefined;
|
|
9639
9902
|
billingPurchaseOrder?: Array<string> | undefined;
|
|
9903
|
+
billingRefund?: Array<string> | undefined;
|
|
9640
9904
|
billingTaxId?: Array<string> | undefined;
|
|
9641
9905
|
blob?: Array<string> | undefined;
|
|
9642
9906
|
budget?: Array<string> | undefined;
|
|
@@ -9646,6 +9910,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9646
9910
|
concurrentBuilds?: Array<string> | undefined;
|
|
9647
9911
|
connect?: Array<string> | undefined;
|
|
9648
9912
|
connectConfiguration?: Array<string> | undefined;
|
|
9913
|
+
defaultDeploymentProtection?: Array<string> | undefined;
|
|
9649
9914
|
domain?: Array<string> | undefined;
|
|
9650
9915
|
domainAcceptDelegation?: Array<string> | undefined;
|
|
9651
9916
|
domainAuthCodes?: Array<string> | undefined;
|
|
@@ -9678,6 +9943,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9678
9943
|
marketplaceInstallationMember?: Array<string> | undefined;
|
|
9679
9944
|
marketplaceBillingData?: Array<string> | undefined;
|
|
9680
9945
|
marketplaceInvoice?: Array<string> | undefined;
|
|
9946
|
+
marketplaceSettings?: Array<string> | undefined;
|
|
9681
9947
|
marketplaceExperimentationItem?: Array<string> | undefined;
|
|
9682
9948
|
marketplaceExperimentationEdgeConfigData?: Array<string> | undefined;
|
|
9683
9949
|
jobGlobal?: Array<string> | undefined;
|
|
@@ -9704,6 +9970,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
9704
9970
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
9705
9971
|
observabilityConfiguration?: Array<string> | undefined;
|
|
9706
9972
|
observabilityNotebook?: Array<string> | undefined;
|
|
9973
|
+
observabilityFunnel?: Array<string> | undefined;
|
|
9707
9974
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
9708
9975
|
vercelAppInstallation?: Array<string> | undefined;
|
|
9709
9976
|
paymentMethod?: Array<string> | undefined;
|
|
@@ -9775,6 +10042,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9775
10042
|
connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
|
|
9776
10043
|
dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
|
|
9777
10044
|
deployment: z.array(ACLAction$outboundSchema).optional(),
|
|
10045
|
+
deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
|
|
9778
10046
|
deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
|
|
9779
10047
|
deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
|
|
9780
10048
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
|
|
@@ -9827,6 +10095,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9827
10095
|
projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
|
|
9828
10096
|
projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
|
|
9829
10097
|
projectTier: z.array(ACLAction$outboundSchema).optional(),
|
|
10098
|
+
projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
|
|
9830
10099
|
seawallConfig: z.array(ACLAction$outboundSchema).optional(),
|
|
9831
10100
|
skewProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
9832
10101
|
analytics: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9834,11 +10103,11 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9834
10103
|
webAnalytics: z.array(ACLAction$outboundSchema).optional(),
|
|
9835
10104
|
sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
|
|
9836
10105
|
sonar: z.array(ACLAction$outboundSchema).optional(),
|
|
10106
|
+
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
9837
10107
|
user: z.array(ACLAction$outboundSchema).optional(),
|
|
9838
10108
|
userConnection: z.array(ACLAction$outboundSchema).optional(),
|
|
9839
10109
|
userSudo: z.array(ACLAction$outboundSchema).optional(),
|
|
9840
10110
|
webAuthn: z.array(ACLAction$outboundSchema).optional(),
|
|
9841
|
-
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
9842
10111
|
accessGroup: z.array(ACLAction$outboundSchema).optional(),
|
|
9843
10112
|
aliasGlobal: z.array(ACLAction$outboundSchema).optional(),
|
|
9844
10113
|
analyticsSampling: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9851,6 +10120,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9851
10120
|
billingInvoiceLanguage: z.array(ACLAction$outboundSchema).optional(),
|
|
9852
10121
|
billingPlan: z.array(ACLAction$outboundSchema).optional(),
|
|
9853
10122
|
billingPurchaseOrder: z.array(ACLAction$outboundSchema).optional(),
|
|
10123
|
+
billingRefund: z.array(ACLAction$outboundSchema).optional(),
|
|
9854
10124
|
billingTaxId: z.array(ACLAction$outboundSchema).optional(),
|
|
9855
10125
|
blob: z.array(ACLAction$outboundSchema).optional(),
|
|
9856
10126
|
budget: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9860,6 +10130,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9860
10130
|
concurrentBuilds: z.array(ACLAction$outboundSchema).optional(),
|
|
9861
10131
|
connect: z.array(ACLAction$outboundSchema).optional(),
|
|
9862
10132
|
connectConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
10133
|
+
defaultDeploymentProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
9863
10134
|
domain: z.array(ACLAction$outboundSchema).optional(),
|
|
9864
10135
|
domainAcceptDelegation: z.array(ACLAction$outboundSchema).optional(),
|
|
9865
10136
|
domainAuthCodes: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9896,6 +10167,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9896
10167
|
marketplaceInstallationMember: z.array(ACLAction$outboundSchema).optional(),
|
|
9897
10168
|
marketplaceBillingData: z.array(ACLAction$outboundSchema).optional(),
|
|
9898
10169
|
marketplaceInvoice: z.array(ACLAction$outboundSchema).optional(),
|
|
10170
|
+
marketplaceSettings: z.array(ACLAction$outboundSchema).optional(),
|
|
9899
10171
|
marketplaceExperimentationItem: z.array(ACLAction$outboundSchema).optional(),
|
|
9900
10172
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$outboundSchema)
|
|
9901
10173
|
.optional(),
|
|
@@ -9923,6 +10195,7 @@ export const UpdateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9923
10195
|
notificationStatementOfReasons: z.array(ACLAction$outboundSchema).optional(),
|
|
9924
10196
|
observabilityConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
9925
10197
|
observabilityNotebook: z.array(ACLAction$outboundSchema).optional(),
|
|
10198
|
+
observabilityFunnel: z.array(ACLAction$outboundSchema).optional(),
|
|
9926
10199
|
openTelemetryEndpoint: z.array(ACLAction$outboundSchema).optional(),
|
|
9927
10200
|
vercelAppInstallation: z.array(ACLAction$outboundSchema).optional(),
|
|
9928
10201
|
paymentMethod: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -10807,11 +11080,13 @@ export const UpdateProjectGitProviderOptions$inboundSchema: z.ZodType<
|
|
|
10807
11080
|
unknown
|
|
10808
11081
|
> = z.object({
|
|
10809
11082
|
createDeployments: UpdateProjectCreateDeployments$inboundSchema,
|
|
11083
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
10810
11084
|
});
|
|
10811
11085
|
|
|
10812
11086
|
/** @internal */
|
|
10813
11087
|
export type UpdateProjectGitProviderOptions$Outbound = {
|
|
10814
11088
|
createDeployments: string;
|
|
11089
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
10815
11090
|
};
|
|
10816
11091
|
|
|
10817
11092
|
/** @internal */
|
|
@@ -10821,6 +11096,7 @@ export const UpdateProjectGitProviderOptions$outboundSchema: z.ZodType<
|
|
|
10821
11096
|
UpdateProjectGitProviderOptions
|
|
10822
11097
|
> = z.object({
|
|
10823
11098
|
createDeployments: UpdateProjectCreateDeployments$outboundSchema,
|
|
11099
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
10824
11100
|
});
|
|
10825
11101
|
|
|
10826
11102
|
/**
|
|
@@ -12405,6 +12681,7 @@ export const UpdateProjectResponseBody$inboundSchema: z.ZodType<
|
|
|
12405
12681
|
z.lazy(() => UpdateProjectLink2$inboundSchema),
|
|
12406
12682
|
z.lazy(() => UpdateProjectLink3$inboundSchema),
|
|
12407
12683
|
z.lazy(() => UpdateProjectLink4$inboundSchema),
|
|
12684
|
+
z.lazy(() => UpdateProjectLink5$inboundSchema),
|
|
12408
12685
|
]).optional(),
|
|
12409
12686
|
microfrontends: z.union([
|
|
12410
12687
|
z.lazy(() => UpdateProjectMicrofrontends1$inboundSchema),
|
|
@@ -12488,6 +12765,7 @@ export const UpdateProjectResponseBody$inboundSchema: z.ZodType<
|
|
|
12488
12765
|
).optional(),
|
|
12489
12766
|
tier: UpdateProjectTier$inboundSchema.optional(),
|
|
12490
12767
|
features: z.lazy(() => UpdateProjectFeatures$inboundSchema).optional(),
|
|
12768
|
+
v0: z.boolean().optional(),
|
|
12491
12769
|
});
|
|
12492
12770
|
|
|
12493
12771
|
/** @internal */
|
|
@@ -12535,6 +12813,7 @@ export type UpdateProjectResponseBody$Outbound = {
|
|
|
12535
12813
|
| UpdateProjectLink2$Outbound
|
|
12536
12814
|
| UpdateProjectLink3$Outbound
|
|
12537
12815
|
| UpdateProjectLink4$Outbound
|
|
12816
|
+
| UpdateProjectLink5$Outbound
|
|
12538
12817
|
| undefined;
|
|
12539
12818
|
microfrontends?:
|
|
12540
12819
|
| UpdateProjectMicrofrontends1$Outbound
|
|
@@ -12603,6 +12882,7 @@ export type UpdateProjectResponseBody$Outbound = {
|
|
|
12603
12882
|
oidcTokenConfig?: UpdateProjectProjectsOidcTokenConfig$Outbound | undefined;
|
|
12604
12883
|
tier?: string | undefined;
|
|
12605
12884
|
features?: UpdateProjectFeatures$Outbound | undefined;
|
|
12885
|
+
v0?: boolean | undefined;
|
|
12606
12886
|
};
|
|
12607
12887
|
|
|
12608
12888
|
/** @internal */
|
|
@@ -12655,6 +12935,7 @@ export const UpdateProjectResponseBody$outboundSchema: z.ZodType<
|
|
|
12655
12935
|
z.lazy(() => UpdateProjectLink2$outboundSchema),
|
|
12656
12936
|
z.lazy(() => UpdateProjectLink3$outboundSchema),
|
|
12657
12937
|
z.lazy(() => UpdateProjectLink4$outboundSchema),
|
|
12938
|
+
z.lazy(() => UpdateProjectLink5$outboundSchema),
|
|
12658
12939
|
]).optional(),
|
|
12659
12940
|
microfrontends: z.union([
|
|
12660
12941
|
z.lazy(() => UpdateProjectMicrofrontends1$outboundSchema),
|
|
@@ -12738,6 +13019,7 @@ export const UpdateProjectResponseBody$outboundSchema: z.ZodType<
|
|
|
12738
13019
|
).optional(),
|
|
12739
13020
|
tier: UpdateProjectTier$outboundSchema.optional(),
|
|
12740
13021
|
features: z.lazy(() => UpdateProjectFeatures$outboundSchema).optional(),
|
|
13022
|
+
v0: z.boolean().optional(),
|
|
12741
13023
|
});
|
|
12742
13024
|
|
|
12743
13025
|
/**
|