@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
|
@@ -122,6 +122,7 @@ export const CreateProjectFramework = {
|
|
|
122
122
|
Sanity: "sanity",
|
|
123
123
|
Storybook: "storybook",
|
|
124
124
|
Nitro: "nitro",
|
|
125
|
+
Hono: "hono",
|
|
125
126
|
} as const;
|
|
126
127
|
/**
|
|
127
128
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
@@ -133,6 +134,7 @@ export type CreateProjectFramework = ClosedEnum<typeof CreateProjectFramework>;
|
|
|
133
134
|
*/
|
|
134
135
|
export const CreateProjectProjectsType = {
|
|
135
136
|
Github: "github",
|
|
137
|
+
GithubLimited: "github-limited",
|
|
136
138
|
Gitlab: "gitlab",
|
|
137
139
|
Bitbucket: "bitbucket",
|
|
138
140
|
} as const;
|
|
@@ -350,8 +352,8 @@ export type CreateProjectSpeedInsights = {
|
|
|
350
352
|
};
|
|
351
353
|
|
|
352
354
|
export const CreateProjectEnvId2 = {
|
|
353
|
-
Production: "production",
|
|
354
355
|
Preview: "preview",
|
|
356
|
+
Production: "production",
|
|
355
357
|
} as const;
|
|
356
358
|
export type CreateProjectEnvId2 = ClosedEnum<typeof CreateProjectEnvId2>;
|
|
357
359
|
|
|
@@ -365,6 +367,7 @@ export type CreateProjectAws = {
|
|
|
365
367
|
export type CreateProjectConnectConfigurations = {
|
|
366
368
|
envId: string | CreateProjectEnvId2;
|
|
367
369
|
connectConfigurationId: string;
|
|
370
|
+
dc?: string | undefined;
|
|
368
371
|
passive: boolean;
|
|
369
372
|
buildsEnabled: boolean;
|
|
370
373
|
aws?: CreateProjectAws | undefined;
|
|
@@ -748,8 +751,8 @@ export type CreateProjectEnv = {
|
|
|
748
751
|
* The type of environment (production, preview, or development)
|
|
749
752
|
*/
|
|
750
753
|
export const CreateProjectProjectsResponse200Type = {
|
|
751
|
-
Production: "production",
|
|
752
754
|
Preview: "preview",
|
|
755
|
+
Production: "production",
|
|
753
756
|
Development: "development",
|
|
754
757
|
} as const;
|
|
755
758
|
/**
|
|
@@ -914,6 +917,7 @@ export const CreateProjectProjectsFramework = {
|
|
|
914
917
|
Sanity: "sanity",
|
|
915
918
|
Storybook: "storybook",
|
|
916
919
|
Nitro: "nitro",
|
|
920
|
+
Hono: "hono",
|
|
917
921
|
} as const;
|
|
918
922
|
export type CreateProjectProjectsFramework = ClosedEnum<
|
|
919
923
|
typeof CreateProjectProjectsFramework
|
|
@@ -1082,14 +1086,13 @@ export type CreateProjectLatestDeployments = {
|
|
|
1082
1086
|
withCache?: boolean | undefined;
|
|
1083
1087
|
};
|
|
1084
1088
|
|
|
1085
|
-
export const
|
|
1089
|
+
export const CreateProjectLinkProjectsResponse200ApplicationJSONType = {
|
|
1086
1090
|
GithubCustomHost: "github-custom-host",
|
|
1087
1091
|
} as const;
|
|
1088
|
-
export type
|
|
1089
|
-
typeof
|
|
1090
|
-
>;
|
|
1092
|
+
export type CreateProjectLinkProjectsResponse200ApplicationJSONType =
|
|
1093
|
+
ClosedEnum<typeof CreateProjectLinkProjectsResponse200ApplicationJSONType>;
|
|
1091
1094
|
|
|
1092
|
-
export type
|
|
1095
|
+
export type CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks = {
|
|
1093
1096
|
createdAt?: number | undefined;
|
|
1094
1097
|
id: string;
|
|
1095
1098
|
name: string;
|
|
@@ -1097,7 +1100,7 @@ export type CreateProjectLinkProjectsResponse200DeployHooks = {
|
|
|
1097
1100
|
url: string;
|
|
1098
1101
|
};
|
|
1099
1102
|
|
|
1100
|
-
export type
|
|
1103
|
+
export type CreateProjectLink5 = {
|
|
1101
1104
|
org?: string | undefined;
|
|
1102
1105
|
/**
|
|
1103
1106
|
* 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.
|
|
@@ -1105,24 +1108,26 @@ export type CreateProjectLink4 = {
|
|
|
1105
1108
|
repoOwnerId?: number | undefined;
|
|
1106
1109
|
repo?: string | undefined;
|
|
1107
1110
|
repoId?: number | undefined;
|
|
1108
|
-
type?:
|
|
1111
|
+
type?: CreateProjectLinkProjectsResponse200ApplicationJSONType | undefined;
|
|
1109
1112
|
host?: string | undefined;
|
|
1110
1113
|
createdAt?: number | undefined;
|
|
1111
|
-
deployHooks: Array<
|
|
1114
|
+
deployHooks: Array<
|
|
1115
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks
|
|
1116
|
+
>;
|
|
1112
1117
|
gitCredentialId?: string | undefined;
|
|
1113
1118
|
updatedAt?: number | undefined;
|
|
1114
1119
|
sourceless?: boolean | undefined;
|
|
1115
1120
|
productionBranch?: string | undefined;
|
|
1116
1121
|
};
|
|
1117
1122
|
|
|
1118
|
-
export const
|
|
1123
|
+
export const CreateProjectLinkProjectsResponse200Type = {
|
|
1119
1124
|
Bitbucket: "bitbucket",
|
|
1120
1125
|
} as const;
|
|
1121
|
-
export type
|
|
1122
|
-
typeof
|
|
1126
|
+
export type CreateProjectLinkProjectsResponse200Type = ClosedEnum<
|
|
1127
|
+
typeof CreateProjectLinkProjectsResponse200Type
|
|
1123
1128
|
>;
|
|
1124
1129
|
|
|
1125
|
-
export type
|
|
1130
|
+
export type CreateProjectLinkProjectsResponse200DeployHooks = {
|
|
1126
1131
|
createdAt?: number | undefined;
|
|
1127
1132
|
id: string;
|
|
1128
1133
|
name: string;
|
|
@@ -1130,29 +1135,29 @@ export type CreateProjectLinkProjectsResponseDeployHooks = {
|
|
|
1130
1135
|
url: string;
|
|
1131
1136
|
};
|
|
1132
1137
|
|
|
1133
|
-
export type
|
|
1138
|
+
export type CreateProjectLink4 = {
|
|
1134
1139
|
name?: string | undefined;
|
|
1135
1140
|
slug?: string | undefined;
|
|
1136
1141
|
owner?: string | undefined;
|
|
1137
|
-
type?:
|
|
1142
|
+
type?: CreateProjectLinkProjectsResponse200Type | undefined;
|
|
1138
1143
|
uuid?: string | undefined;
|
|
1139
1144
|
workspaceUuid?: string | undefined;
|
|
1140
1145
|
createdAt?: number | undefined;
|
|
1141
|
-
deployHooks: Array<
|
|
1146
|
+
deployHooks: Array<CreateProjectLinkProjectsResponse200DeployHooks>;
|
|
1142
1147
|
gitCredentialId?: string | undefined;
|
|
1143
1148
|
updatedAt?: number | undefined;
|
|
1144
1149
|
sourceless?: boolean | undefined;
|
|
1145
1150
|
productionBranch?: string | undefined;
|
|
1146
1151
|
};
|
|
1147
1152
|
|
|
1148
|
-
export const
|
|
1153
|
+
export const CreateProjectLinkProjectsResponseType = {
|
|
1149
1154
|
Gitlab: "gitlab",
|
|
1150
1155
|
} as const;
|
|
1151
|
-
export type
|
|
1152
|
-
typeof
|
|
1156
|
+
export type CreateProjectLinkProjectsResponseType = ClosedEnum<
|
|
1157
|
+
typeof CreateProjectLinkProjectsResponseType
|
|
1153
1158
|
>;
|
|
1154
1159
|
|
|
1155
|
-
export type
|
|
1160
|
+
export type CreateProjectLinkProjectsResponseDeployHooks = {
|
|
1156
1161
|
createdAt?: number | undefined;
|
|
1157
1162
|
id: string;
|
|
1158
1163
|
name: string;
|
|
@@ -1160,7 +1165,7 @@ export type CreateProjectLinkProjectsDeployHooks = {
|
|
|
1160
1165
|
url: string;
|
|
1161
1166
|
};
|
|
1162
1167
|
|
|
1163
|
-
export type
|
|
1168
|
+
export type CreateProjectLink3 = {
|
|
1164
1169
|
projectId?: string | undefined;
|
|
1165
1170
|
projectName?: string | undefined;
|
|
1166
1171
|
projectNameWithNamespace?: string | undefined;
|
|
@@ -1170,11 +1175,43 @@ export type CreateProjectLink2 = {
|
|
|
1170
1175
|
*/
|
|
1171
1176
|
projectOwnerId?: number | undefined;
|
|
1172
1177
|
projectUrl?: string | undefined;
|
|
1178
|
+
type?: CreateProjectLinkProjectsResponseType | undefined;
|
|
1179
|
+
createdAt?: number | undefined;
|
|
1180
|
+
deployHooks: Array<CreateProjectLinkProjectsResponseDeployHooks>;
|
|
1181
|
+
gitCredentialId?: string | undefined;
|
|
1182
|
+
updatedAt?: number | undefined;
|
|
1183
|
+
sourceless?: boolean | undefined;
|
|
1184
|
+
productionBranch?: string | undefined;
|
|
1185
|
+
};
|
|
1186
|
+
|
|
1187
|
+
export const CreateProjectLinkProjectsType = {
|
|
1188
|
+
GithubLimited: "github-limited",
|
|
1189
|
+
} as const;
|
|
1190
|
+
export type CreateProjectLinkProjectsType = ClosedEnum<
|
|
1191
|
+
typeof CreateProjectLinkProjectsType
|
|
1192
|
+
>;
|
|
1193
|
+
|
|
1194
|
+
export type CreateProjectLinkProjectsDeployHooks = {
|
|
1195
|
+
createdAt?: number | undefined;
|
|
1196
|
+
id: string;
|
|
1197
|
+
name: string;
|
|
1198
|
+
ref: string;
|
|
1199
|
+
url: string;
|
|
1200
|
+
};
|
|
1201
|
+
|
|
1202
|
+
export type CreateProjectLink2 = {
|
|
1173
1203
|
type?: CreateProjectLinkProjectsType | undefined;
|
|
1204
|
+
repo?: string | undefined;
|
|
1205
|
+
repoId?: number | undefined;
|
|
1206
|
+
updatedAt?: number | undefined;
|
|
1174
1207
|
createdAt?: number | undefined;
|
|
1208
|
+
org?: string | undefined;
|
|
1209
|
+
/**
|
|
1210
|
+
* 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.
|
|
1211
|
+
*/
|
|
1212
|
+
repoOwnerId?: number | undefined;
|
|
1175
1213
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks>;
|
|
1176
1214
|
gitCredentialId?: string | undefined;
|
|
1177
|
-
updatedAt?: number | undefined;
|
|
1178
1215
|
sourceless?: boolean | undefined;
|
|
1179
1216
|
productionBranch?: string | undefined;
|
|
1180
1217
|
};
|
|
@@ -1213,7 +1250,8 @@ export type CreateProjectLink =
|
|
|
1213
1250
|
| CreateProjectLink1
|
|
1214
1251
|
| CreateProjectLink2
|
|
1215
1252
|
| CreateProjectLink3
|
|
1216
|
-
| CreateProjectLink4
|
|
1253
|
+
| CreateProjectLink4
|
|
1254
|
+
| CreateProjectLink5;
|
|
1217
1255
|
|
|
1218
1256
|
export type CreateProjectMicrofrontends2 = {
|
|
1219
1257
|
updatedAt: number;
|
|
@@ -1574,6 +1612,7 @@ export type CreateProjectPermissions = {
|
|
|
1574
1612
|
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1575
1613
|
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1576
1614
|
deployment?: Array<ACLAction> | undefined;
|
|
1615
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1577
1616
|
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1578
1617
|
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1579
1618
|
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
@@ -1624,6 +1663,7 @@ export type CreateProjectPermissions = {
|
|
|
1624
1663
|
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1625
1664
|
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1626
1665
|
projectTier?: Array<ACLAction> | undefined;
|
|
1666
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1627
1667
|
seawallConfig?: Array<ACLAction> | undefined;
|
|
1628
1668
|
skewProtection?: Array<ACLAction> | undefined;
|
|
1629
1669
|
analytics?: Array<ACLAction> | undefined;
|
|
@@ -1631,11 +1671,11 @@ export type CreateProjectPermissions = {
|
|
|
1631
1671
|
webAnalytics?: Array<ACLAction> | undefined;
|
|
1632
1672
|
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1633
1673
|
sonar?: Array<ACLAction> | undefined;
|
|
1674
|
+
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1634
1675
|
user?: Array<ACLAction> | undefined;
|
|
1635
1676
|
userConnection?: Array<ACLAction> | undefined;
|
|
1636
1677
|
userSudo?: Array<ACLAction> | undefined;
|
|
1637
1678
|
webAuthn?: Array<ACLAction> | undefined;
|
|
1638
|
-
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1639
1679
|
accessGroup?: Array<ACLAction> | undefined;
|
|
1640
1680
|
aliasGlobal?: Array<ACLAction> | undefined;
|
|
1641
1681
|
analyticsSampling?: Array<ACLAction> | undefined;
|
|
@@ -1648,6 +1688,7 @@ export type CreateProjectPermissions = {
|
|
|
1648
1688
|
billingInvoiceLanguage?: Array<ACLAction> | undefined;
|
|
1649
1689
|
billingPlan?: Array<ACLAction> | undefined;
|
|
1650
1690
|
billingPurchaseOrder?: Array<ACLAction> | undefined;
|
|
1691
|
+
billingRefund?: Array<ACLAction> | undefined;
|
|
1651
1692
|
billingTaxId?: Array<ACLAction> | undefined;
|
|
1652
1693
|
blob?: Array<ACLAction> | undefined;
|
|
1653
1694
|
budget?: Array<ACLAction> | undefined;
|
|
@@ -1657,6 +1698,7 @@ export type CreateProjectPermissions = {
|
|
|
1657
1698
|
concurrentBuilds?: Array<ACLAction> | undefined;
|
|
1658
1699
|
connect?: Array<ACLAction> | undefined;
|
|
1659
1700
|
connectConfiguration?: Array<ACLAction> | undefined;
|
|
1701
|
+
defaultDeploymentProtection?: Array<ACLAction> | undefined;
|
|
1660
1702
|
domain?: Array<ACLAction> | undefined;
|
|
1661
1703
|
domainAcceptDelegation?: Array<ACLAction> | undefined;
|
|
1662
1704
|
domainAuthCodes?: Array<ACLAction> | undefined;
|
|
@@ -1689,6 +1731,7 @@ export type CreateProjectPermissions = {
|
|
|
1689
1731
|
marketplaceInstallationMember?: Array<ACLAction> | undefined;
|
|
1690
1732
|
marketplaceBillingData?: Array<ACLAction> | undefined;
|
|
1691
1733
|
marketplaceInvoice?: Array<ACLAction> | undefined;
|
|
1734
|
+
marketplaceSettings?: Array<ACLAction> | undefined;
|
|
1692
1735
|
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
|
|
1693
1736
|
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
|
|
1694
1737
|
jobGlobal?: Array<ACLAction> | undefined;
|
|
@@ -1715,6 +1758,7 @@ export type CreateProjectPermissions = {
|
|
|
1715
1758
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1716
1759
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1717
1760
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1761
|
+
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1718
1762
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1719
1763
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1720
1764
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
@@ -1840,8 +1884,8 @@ export type CreateProjectProtectionBypass =
|
|
|
1840
1884
|
| CreateProjectProtectionBypass2;
|
|
1841
1885
|
|
|
1842
1886
|
export const CreateProjectTrustedIpsProjectsDeploymentType = {
|
|
1843
|
-
Production: "production",
|
|
1844
1887
|
Preview: "preview",
|
|
1888
|
+
Production: "production",
|
|
1845
1889
|
All: "all",
|
|
1846
1890
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1847
1891
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -1855,8 +1899,8 @@ export type CreateProjectTrustedIps2 = {
|
|
|
1855
1899
|
};
|
|
1856
1900
|
|
|
1857
1901
|
export const CreateProjectTrustedIpsDeploymentType = {
|
|
1858
|
-
Production: "production",
|
|
1859
1902
|
Preview: "preview",
|
|
1903
|
+
Production: "production",
|
|
1860
1904
|
All: "all",
|
|
1861
1905
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1862
1906
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -1918,6 +1962,10 @@ export type CreateProjectGitProviderOptions = {
|
|
|
1918
1962
|
* 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
|
|
1919
1963
|
*/
|
|
1920
1964
|
createDeployments: CreateProjectCreateDeployments;
|
|
1965
|
+
/**
|
|
1966
|
+
* 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
|
|
1967
|
+
*/
|
|
1968
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
1921
1969
|
};
|
|
1922
1970
|
|
|
1923
1971
|
export type CreateProjectWebAnalytics = {
|
|
@@ -2215,6 +2263,7 @@ export type CreateProjectResponseBody = {
|
|
|
2215
2263
|
| CreateProjectLink2
|
|
2216
2264
|
| CreateProjectLink3
|
|
2217
2265
|
| CreateProjectLink4
|
|
2266
|
+
| CreateProjectLink5
|
|
2218
2267
|
| undefined;
|
|
2219
2268
|
microfrontends?:
|
|
2220
2269
|
| CreateProjectMicrofrontends1
|
|
@@ -2277,6 +2326,7 @@ export type CreateProjectResponseBody = {
|
|
|
2277
2326
|
oidcTokenConfig?: CreateProjectOidcTokenConfig | undefined;
|
|
2278
2327
|
tier?: CreateProjectTier | undefined;
|
|
2279
2328
|
features?: CreateProjectFeatures | undefined;
|
|
2329
|
+
v0?: boolean | undefined;
|
|
2280
2330
|
};
|
|
2281
2331
|
|
|
2282
2332
|
/** @internal */
|
|
@@ -3277,6 +3327,7 @@ export const CreateProjectConnectConfigurations$inboundSchema: z.ZodType<
|
|
|
3277
3327
|
> = z.object({
|
|
3278
3328
|
envId: z.union([z.string(), CreateProjectEnvId2$inboundSchema]),
|
|
3279
3329
|
connectConfigurationId: z.string(),
|
|
3330
|
+
dc: z.string().optional(),
|
|
3280
3331
|
passive: z.boolean(),
|
|
3281
3332
|
buildsEnabled: z.boolean(),
|
|
3282
3333
|
aws: z.lazy(() => CreateProjectAws$inboundSchema).optional(),
|
|
@@ -3288,6 +3339,7 @@ export const CreateProjectConnectConfigurations$inboundSchema: z.ZodType<
|
|
|
3288
3339
|
export type CreateProjectConnectConfigurations$Outbound = {
|
|
3289
3340
|
envId: string | string;
|
|
3290
3341
|
connectConfigurationId: string;
|
|
3342
|
+
dc?: string | undefined;
|
|
3291
3343
|
passive: boolean;
|
|
3292
3344
|
buildsEnabled: boolean;
|
|
3293
3345
|
aws?: CreateProjectAws$Outbound | undefined;
|
|
@@ -3303,6 +3355,7 @@ export const CreateProjectConnectConfigurations$outboundSchema: z.ZodType<
|
|
|
3303
3355
|
> = z.object({
|
|
3304
3356
|
envId: z.union([z.string(), CreateProjectEnvId2$outboundSchema]),
|
|
3305
3357
|
connectConfigurationId: z.string(),
|
|
3358
|
+
dc: z.string().optional(),
|
|
3306
3359
|
passive: z.boolean(),
|
|
3307
3360
|
buildsEnabled: z.boolean(),
|
|
3308
3361
|
aws: z.lazy(() => CreateProjectAws$outboundSchema).optional(),
|
|
@@ -6494,6 +6547,209 @@ export function createProjectLatestDeploymentsFromJSON(
|
|
|
6494
6547
|
);
|
|
6495
6548
|
}
|
|
6496
6549
|
|
|
6550
|
+
/** @internal */
|
|
6551
|
+
export const CreateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema:
|
|
6552
|
+
z.ZodNativeEnum<
|
|
6553
|
+
typeof CreateProjectLinkProjectsResponse200ApplicationJSONType
|
|
6554
|
+
> = z.nativeEnum(CreateProjectLinkProjectsResponse200ApplicationJSONType);
|
|
6555
|
+
|
|
6556
|
+
/** @internal */
|
|
6557
|
+
export const CreateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema:
|
|
6558
|
+
z.ZodNativeEnum<
|
|
6559
|
+
typeof CreateProjectLinkProjectsResponse200ApplicationJSONType
|
|
6560
|
+
> = CreateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema;
|
|
6561
|
+
|
|
6562
|
+
/**
|
|
6563
|
+
* @internal
|
|
6564
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6565
|
+
*/
|
|
6566
|
+
export namespace CreateProjectLinkProjectsResponse200ApplicationJSONType$ {
|
|
6567
|
+
/** @deprecated use `CreateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
6568
|
+
export const inboundSchema =
|
|
6569
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema;
|
|
6570
|
+
/** @deprecated use `CreateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
6571
|
+
export const outboundSchema =
|
|
6572
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema;
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6575
|
+
/** @internal */
|
|
6576
|
+
export const CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema:
|
|
6577
|
+
z.ZodType<
|
|
6578
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
6579
|
+
z.ZodTypeDef,
|
|
6580
|
+
unknown
|
|
6581
|
+
> = z.object({
|
|
6582
|
+
createdAt: z.number().optional(),
|
|
6583
|
+
id: z.string(),
|
|
6584
|
+
name: z.string(),
|
|
6585
|
+
ref: z.string(),
|
|
6586
|
+
url: z.string(),
|
|
6587
|
+
});
|
|
6588
|
+
|
|
6589
|
+
/** @internal */
|
|
6590
|
+
export type CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound =
|
|
6591
|
+
{
|
|
6592
|
+
createdAt?: number | undefined;
|
|
6593
|
+
id: string;
|
|
6594
|
+
name: string;
|
|
6595
|
+
ref: string;
|
|
6596
|
+
url: string;
|
|
6597
|
+
};
|
|
6598
|
+
|
|
6599
|
+
/** @internal */
|
|
6600
|
+
export const CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema:
|
|
6601
|
+
z.ZodType<
|
|
6602
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound,
|
|
6603
|
+
z.ZodTypeDef,
|
|
6604
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks
|
|
6605
|
+
> = z.object({
|
|
6606
|
+
createdAt: z.number().optional(),
|
|
6607
|
+
id: z.string(),
|
|
6608
|
+
name: z.string(),
|
|
6609
|
+
ref: z.string(),
|
|
6610
|
+
url: z.string(),
|
|
6611
|
+
});
|
|
6612
|
+
|
|
6613
|
+
/**
|
|
6614
|
+
* @internal
|
|
6615
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6616
|
+
*/
|
|
6617
|
+
export namespace CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$ {
|
|
6618
|
+
/** @deprecated use `CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema` instead. */
|
|
6619
|
+
export const inboundSchema =
|
|
6620
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema;
|
|
6621
|
+
/** @deprecated use `CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema` instead. */
|
|
6622
|
+
export const outboundSchema =
|
|
6623
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema;
|
|
6624
|
+
/** @deprecated use `CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound` instead. */
|
|
6625
|
+
export type Outbound =
|
|
6626
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound;
|
|
6627
|
+
}
|
|
6628
|
+
|
|
6629
|
+
export function createProjectLinkProjectsResponse200ApplicationJSONDeployHooksToJSON(
|
|
6630
|
+
createProjectLinkProjectsResponse200ApplicationJSONDeployHooks:
|
|
6631
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
6632
|
+
): string {
|
|
6633
|
+
return JSON.stringify(
|
|
6634
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema
|
|
6635
|
+
.parse(createProjectLinkProjectsResponse200ApplicationJSONDeployHooks),
|
|
6636
|
+
);
|
|
6637
|
+
}
|
|
6638
|
+
|
|
6639
|
+
export function createProjectLinkProjectsResponse200ApplicationJSONDeployHooksFromJSON(
|
|
6640
|
+
jsonString: string,
|
|
6641
|
+
): SafeParseResult<
|
|
6642
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks,
|
|
6643
|
+
SDKValidationError
|
|
6644
|
+
> {
|
|
6645
|
+
return safeParse(
|
|
6646
|
+
jsonString,
|
|
6647
|
+
(x) =>
|
|
6648
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema
|
|
6649
|
+
.parse(JSON.parse(x)),
|
|
6650
|
+
`Failed to parse 'CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks' from JSON`,
|
|
6651
|
+
);
|
|
6652
|
+
}
|
|
6653
|
+
|
|
6654
|
+
/** @internal */
|
|
6655
|
+
export const CreateProjectLink5$inboundSchema: z.ZodType<
|
|
6656
|
+
CreateProjectLink5,
|
|
6657
|
+
z.ZodTypeDef,
|
|
6658
|
+
unknown
|
|
6659
|
+
> = z.object({
|
|
6660
|
+
org: z.string().optional(),
|
|
6661
|
+
repoOwnerId: z.number().optional(),
|
|
6662
|
+
repo: z.string().optional(),
|
|
6663
|
+
repoId: z.number().optional(),
|
|
6664
|
+
type: CreateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema
|
|
6665
|
+
.optional(),
|
|
6666
|
+
host: z.string().optional(),
|
|
6667
|
+
createdAt: z.number().optional(),
|
|
6668
|
+
deployHooks: z.array(
|
|
6669
|
+
z.lazy(() =>
|
|
6670
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema
|
|
6671
|
+
),
|
|
6672
|
+
),
|
|
6673
|
+
gitCredentialId: z.string().optional(),
|
|
6674
|
+
updatedAt: z.number().optional(),
|
|
6675
|
+
sourceless: z.boolean().optional(),
|
|
6676
|
+
productionBranch: z.string().optional(),
|
|
6677
|
+
});
|
|
6678
|
+
|
|
6679
|
+
/** @internal */
|
|
6680
|
+
export type CreateProjectLink5$Outbound = {
|
|
6681
|
+
org?: string | undefined;
|
|
6682
|
+
repoOwnerId?: number | undefined;
|
|
6683
|
+
repo?: string | undefined;
|
|
6684
|
+
repoId?: number | undefined;
|
|
6685
|
+
type?: string | undefined;
|
|
6686
|
+
host?: string | undefined;
|
|
6687
|
+
createdAt?: number | undefined;
|
|
6688
|
+
deployHooks: Array<
|
|
6689
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound
|
|
6690
|
+
>;
|
|
6691
|
+
gitCredentialId?: string | undefined;
|
|
6692
|
+
updatedAt?: number | undefined;
|
|
6693
|
+
sourceless?: boolean | undefined;
|
|
6694
|
+
productionBranch?: string | undefined;
|
|
6695
|
+
};
|
|
6696
|
+
|
|
6697
|
+
/** @internal */
|
|
6698
|
+
export const CreateProjectLink5$outboundSchema: z.ZodType<
|
|
6699
|
+
CreateProjectLink5$Outbound,
|
|
6700
|
+
z.ZodTypeDef,
|
|
6701
|
+
CreateProjectLink5
|
|
6702
|
+
> = z.object({
|
|
6703
|
+
org: z.string().optional(),
|
|
6704
|
+
repoOwnerId: z.number().optional(),
|
|
6705
|
+
repo: z.string().optional(),
|
|
6706
|
+
repoId: z.number().optional(),
|
|
6707
|
+
type: CreateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema
|
|
6708
|
+
.optional(),
|
|
6709
|
+
host: z.string().optional(),
|
|
6710
|
+
createdAt: z.number().optional(),
|
|
6711
|
+
deployHooks: z.array(
|
|
6712
|
+
z.lazy(() =>
|
|
6713
|
+
CreateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema
|
|
6714
|
+
),
|
|
6715
|
+
),
|
|
6716
|
+
gitCredentialId: z.string().optional(),
|
|
6717
|
+
updatedAt: z.number().optional(),
|
|
6718
|
+
sourceless: z.boolean().optional(),
|
|
6719
|
+
productionBranch: z.string().optional(),
|
|
6720
|
+
});
|
|
6721
|
+
|
|
6722
|
+
/**
|
|
6723
|
+
* @internal
|
|
6724
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6725
|
+
*/
|
|
6726
|
+
export namespace CreateProjectLink5$ {
|
|
6727
|
+
/** @deprecated use `CreateProjectLink5$inboundSchema` instead. */
|
|
6728
|
+
export const inboundSchema = CreateProjectLink5$inboundSchema;
|
|
6729
|
+
/** @deprecated use `CreateProjectLink5$outboundSchema` instead. */
|
|
6730
|
+
export const outboundSchema = CreateProjectLink5$outboundSchema;
|
|
6731
|
+
/** @deprecated use `CreateProjectLink5$Outbound` instead. */
|
|
6732
|
+
export type Outbound = CreateProjectLink5$Outbound;
|
|
6733
|
+
}
|
|
6734
|
+
|
|
6735
|
+
export function createProjectLink5ToJSON(
|
|
6736
|
+
createProjectLink5: CreateProjectLink5,
|
|
6737
|
+
): string {
|
|
6738
|
+
return JSON.stringify(
|
|
6739
|
+
CreateProjectLink5$outboundSchema.parse(createProjectLink5),
|
|
6740
|
+
);
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
export function createProjectLink5FromJSON(
|
|
6744
|
+
jsonString: string,
|
|
6745
|
+
): SafeParseResult<CreateProjectLink5, SDKValidationError> {
|
|
6746
|
+
return safeParse(
|
|
6747
|
+
jsonString,
|
|
6748
|
+
(x) => CreateProjectLink5$inboundSchema.parse(JSON.parse(x)),
|
|
6749
|
+
`Failed to parse 'CreateProjectLink5' from JSON`,
|
|
6750
|
+
);
|
|
6751
|
+
}
|
|
6752
|
+
|
|
6497
6753
|
/** @internal */
|
|
6498
6754
|
export const CreateProjectLinkProjectsResponse200Type$inboundSchema:
|
|
6499
6755
|
z.ZodNativeEnum<typeof CreateProjectLinkProjectsResponse200Type> = z
|
|
@@ -6603,12 +6859,12 @@ export const CreateProjectLink4$inboundSchema: z.ZodType<
|
|
|
6603
6859
|
z.ZodTypeDef,
|
|
6604
6860
|
unknown
|
|
6605
6861
|
> = z.object({
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
repoId: z.number().optional(),
|
|
6862
|
+
name: z.string().optional(),
|
|
6863
|
+
slug: z.string().optional(),
|
|
6864
|
+
owner: z.string().optional(),
|
|
6610
6865
|
type: CreateProjectLinkProjectsResponse200Type$inboundSchema.optional(),
|
|
6611
|
-
|
|
6866
|
+
uuid: z.string().optional(),
|
|
6867
|
+
workspaceUuid: z.string().optional(),
|
|
6612
6868
|
createdAt: z.number().optional(),
|
|
6613
6869
|
deployHooks: z.array(
|
|
6614
6870
|
z.lazy(() => CreateProjectLinkProjectsResponse200DeployHooks$inboundSchema),
|
|
@@ -6621,12 +6877,12 @@ export const CreateProjectLink4$inboundSchema: z.ZodType<
|
|
|
6621
6877
|
|
|
6622
6878
|
/** @internal */
|
|
6623
6879
|
export type CreateProjectLink4$Outbound = {
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
repoId?: number | undefined;
|
|
6880
|
+
name?: string | undefined;
|
|
6881
|
+
slug?: string | undefined;
|
|
6882
|
+
owner?: string | undefined;
|
|
6628
6883
|
type?: string | undefined;
|
|
6629
|
-
|
|
6884
|
+
uuid?: string | undefined;
|
|
6885
|
+
workspaceUuid?: string | undefined;
|
|
6630
6886
|
createdAt?: number | undefined;
|
|
6631
6887
|
deployHooks: Array<CreateProjectLinkProjectsResponse200DeployHooks$Outbound>;
|
|
6632
6888
|
gitCredentialId?: string | undefined;
|
|
@@ -6641,12 +6897,12 @@ export const CreateProjectLink4$outboundSchema: z.ZodType<
|
|
|
6641
6897
|
z.ZodTypeDef,
|
|
6642
6898
|
CreateProjectLink4
|
|
6643
6899
|
> = z.object({
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
repoId: z.number().optional(),
|
|
6900
|
+
name: z.string().optional(),
|
|
6901
|
+
slug: z.string().optional(),
|
|
6902
|
+
owner: z.string().optional(),
|
|
6648
6903
|
type: CreateProjectLinkProjectsResponse200Type$outboundSchema.optional(),
|
|
6649
|
-
|
|
6904
|
+
uuid: z.string().optional(),
|
|
6905
|
+
workspaceUuid: z.string().optional(),
|
|
6650
6906
|
createdAt: z.number().optional(),
|
|
6651
6907
|
deployHooks: z.array(
|
|
6652
6908
|
z.lazy(() =>
|
|
@@ -6799,12 +7055,13 @@ export const CreateProjectLink3$inboundSchema: z.ZodType<
|
|
|
6799
7055
|
z.ZodTypeDef,
|
|
6800
7056
|
unknown
|
|
6801
7057
|
> = z.object({
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
7058
|
+
projectId: z.string().optional(),
|
|
7059
|
+
projectName: z.string().optional(),
|
|
7060
|
+
projectNameWithNamespace: z.string().optional(),
|
|
7061
|
+
projectNamespace: z.string().optional(),
|
|
7062
|
+
projectOwnerId: z.number().optional(),
|
|
7063
|
+
projectUrl: z.string().optional(),
|
|
6805
7064
|
type: CreateProjectLinkProjectsResponseType$inboundSchema.optional(),
|
|
6806
|
-
uuid: z.string().optional(),
|
|
6807
|
-
workspaceUuid: z.string().optional(),
|
|
6808
7065
|
createdAt: z.number().optional(),
|
|
6809
7066
|
deployHooks: z.array(
|
|
6810
7067
|
z.lazy(() => CreateProjectLinkProjectsResponseDeployHooks$inboundSchema),
|
|
@@ -6817,12 +7074,13 @@ export const CreateProjectLink3$inboundSchema: z.ZodType<
|
|
|
6817
7074
|
|
|
6818
7075
|
/** @internal */
|
|
6819
7076
|
export type CreateProjectLink3$Outbound = {
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
7077
|
+
projectId?: string | undefined;
|
|
7078
|
+
projectName?: string | undefined;
|
|
7079
|
+
projectNameWithNamespace?: string | undefined;
|
|
7080
|
+
projectNamespace?: string | undefined;
|
|
7081
|
+
projectOwnerId?: number | undefined;
|
|
7082
|
+
projectUrl?: string | undefined;
|
|
6823
7083
|
type?: string | undefined;
|
|
6824
|
-
uuid?: string | undefined;
|
|
6825
|
-
workspaceUuid?: string | undefined;
|
|
6826
7084
|
createdAt?: number | undefined;
|
|
6827
7085
|
deployHooks: Array<CreateProjectLinkProjectsResponseDeployHooks$Outbound>;
|
|
6828
7086
|
gitCredentialId?: string | undefined;
|
|
@@ -6837,12 +7095,13 @@ export const CreateProjectLink3$outboundSchema: z.ZodType<
|
|
|
6837
7095
|
z.ZodTypeDef,
|
|
6838
7096
|
CreateProjectLink3
|
|
6839
7097
|
> = z.object({
|
|
6840
|
-
|
|
6841
|
-
|
|
6842
|
-
|
|
7098
|
+
projectId: z.string().optional(),
|
|
7099
|
+
projectName: z.string().optional(),
|
|
7100
|
+
projectNameWithNamespace: z.string().optional(),
|
|
7101
|
+
projectNamespace: z.string().optional(),
|
|
7102
|
+
projectOwnerId: z.number().optional(),
|
|
7103
|
+
projectUrl: z.string().optional(),
|
|
6843
7104
|
type: CreateProjectLinkProjectsResponseType$outboundSchema.optional(),
|
|
6844
|
-
uuid: z.string().optional(),
|
|
6845
|
-
workspaceUuid: z.string().optional(),
|
|
6846
7105
|
createdAt: z.number().optional(),
|
|
6847
7106
|
deployHooks: z.array(
|
|
6848
7107
|
z.lazy(() => CreateProjectLinkProjectsResponseDeployHooks$outboundSchema),
|
|
@@ -6982,36 +7241,32 @@ export const CreateProjectLink2$inboundSchema: z.ZodType<
|
|
|
6982
7241
|
z.ZodTypeDef,
|
|
6983
7242
|
unknown
|
|
6984
7243
|
> = z.object({
|
|
6985
|
-
projectId: z.string().optional(),
|
|
6986
|
-
projectName: z.string().optional(),
|
|
6987
|
-
projectNameWithNamespace: z.string().optional(),
|
|
6988
|
-
projectNamespace: z.string().optional(),
|
|
6989
|
-
projectOwnerId: z.number().optional(),
|
|
6990
|
-
projectUrl: z.string().optional(),
|
|
6991
7244
|
type: CreateProjectLinkProjectsType$inboundSchema.optional(),
|
|
7245
|
+
repo: z.string().optional(),
|
|
7246
|
+
repoId: z.number().optional(),
|
|
7247
|
+
updatedAt: z.number().optional(),
|
|
6992
7248
|
createdAt: z.number().optional(),
|
|
7249
|
+
org: z.string().optional(),
|
|
7250
|
+
repoOwnerId: z.number().optional(),
|
|
6993
7251
|
deployHooks: z.array(
|
|
6994
7252
|
z.lazy(() => CreateProjectLinkProjectsDeployHooks$inboundSchema),
|
|
6995
7253
|
),
|
|
6996
7254
|
gitCredentialId: z.string().optional(),
|
|
6997
|
-
updatedAt: z.number().optional(),
|
|
6998
7255
|
sourceless: z.boolean().optional(),
|
|
6999
7256
|
productionBranch: z.string().optional(),
|
|
7000
7257
|
});
|
|
7001
7258
|
|
|
7002
7259
|
/** @internal */
|
|
7003
7260
|
export type CreateProjectLink2$Outbound = {
|
|
7004
|
-
projectId?: string | undefined;
|
|
7005
|
-
projectName?: string | undefined;
|
|
7006
|
-
projectNameWithNamespace?: string | undefined;
|
|
7007
|
-
projectNamespace?: string | undefined;
|
|
7008
|
-
projectOwnerId?: number | undefined;
|
|
7009
|
-
projectUrl?: string | undefined;
|
|
7010
7261
|
type?: string | undefined;
|
|
7262
|
+
repo?: string | undefined;
|
|
7263
|
+
repoId?: number | undefined;
|
|
7264
|
+
updatedAt?: number | undefined;
|
|
7011
7265
|
createdAt?: number | undefined;
|
|
7266
|
+
org?: string | undefined;
|
|
7267
|
+
repoOwnerId?: number | undefined;
|
|
7012
7268
|
deployHooks: Array<CreateProjectLinkProjectsDeployHooks$Outbound>;
|
|
7013
7269
|
gitCredentialId?: string | undefined;
|
|
7014
|
-
updatedAt?: number | undefined;
|
|
7015
7270
|
sourceless?: boolean | undefined;
|
|
7016
7271
|
productionBranch?: string | undefined;
|
|
7017
7272
|
};
|
|
@@ -7022,19 +7277,17 @@ export const CreateProjectLink2$outboundSchema: z.ZodType<
|
|
|
7022
7277
|
z.ZodTypeDef,
|
|
7023
7278
|
CreateProjectLink2
|
|
7024
7279
|
> = z.object({
|
|
7025
|
-
projectId: z.string().optional(),
|
|
7026
|
-
projectName: z.string().optional(),
|
|
7027
|
-
projectNameWithNamespace: z.string().optional(),
|
|
7028
|
-
projectNamespace: z.string().optional(),
|
|
7029
|
-
projectOwnerId: z.number().optional(),
|
|
7030
|
-
projectUrl: z.string().optional(),
|
|
7031
7280
|
type: CreateProjectLinkProjectsType$outboundSchema.optional(),
|
|
7281
|
+
repo: z.string().optional(),
|
|
7282
|
+
repoId: z.number().optional(),
|
|
7283
|
+
updatedAt: z.number().optional(),
|
|
7032
7284
|
createdAt: z.number().optional(),
|
|
7285
|
+
org: z.string().optional(),
|
|
7286
|
+
repoOwnerId: z.number().optional(),
|
|
7033
7287
|
deployHooks: z.array(
|
|
7034
7288
|
z.lazy(() => CreateProjectLinkProjectsDeployHooks$outboundSchema),
|
|
7035
7289
|
),
|
|
7036
7290
|
gitCredentialId: z.string().optional(),
|
|
7037
|
-
updatedAt: z.number().optional(),
|
|
7038
7291
|
sourceless: z.boolean().optional(),
|
|
7039
7292
|
productionBranch: z.string().optional(),
|
|
7040
7293
|
});
|
|
@@ -7257,6 +7510,7 @@ export const CreateProjectLink$inboundSchema: z.ZodType<
|
|
|
7257
7510
|
z.lazy(() => CreateProjectLink2$inboundSchema),
|
|
7258
7511
|
z.lazy(() => CreateProjectLink3$inboundSchema),
|
|
7259
7512
|
z.lazy(() => CreateProjectLink4$inboundSchema),
|
|
7513
|
+
z.lazy(() => CreateProjectLink5$inboundSchema),
|
|
7260
7514
|
]);
|
|
7261
7515
|
|
|
7262
7516
|
/** @internal */
|
|
@@ -7264,7 +7518,8 @@ export type CreateProjectLink$Outbound =
|
|
|
7264
7518
|
| CreateProjectLink1$Outbound
|
|
7265
7519
|
| CreateProjectLink2$Outbound
|
|
7266
7520
|
| CreateProjectLink3$Outbound
|
|
7267
|
-
| CreateProjectLink4$Outbound
|
|
7521
|
+
| CreateProjectLink4$Outbound
|
|
7522
|
+
| CreateProjectLink5$Outbound;
|
|
7268
7523
|
|
|
7269
7524
|
/** @internal */
|
|
7270
7525
|
export const CreateProjectLink$outboundSchema: z.ZodType<
|
|
@@ -7276,6 +7531,7 @@ export const CreateProjectLink$outboundSchema: z.ZodType<
|
|
|
7276
7531
|
z.lazy(() => CreateProjectLink2$outboundSchema),
|
|
7277
7532
|
z.lazy(() => CreateProjectLink3$outboundSchema),
|
|
7278
7533
|
z.lazy(() => CreateProjectLink4$outboundSchema),
|
|
7534
|
+
z.lazy(() => CreateProjectLink5$outboundSchema),
|
|
7279
7535
|
]);
|
|
7280
7536
|
|
|
7281
7537
|
/**
|
|
@@ -8964,6 +9220,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
8964
9220
|
connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
|
|
8965
9221
|
dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
|
|
8966
9222
|
deployment: z.array(ACLAction$inboundSchema).optional(),
|
|
9223
|
+
deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
|
|
8967
9224
|
deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
|
|
8968
9225
|
deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
|
|
8969
9226
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
|
|
@@ -9016,6 +9273,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9016
9273
|
projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
|
|
9017
9274
|
projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
|
|
9018
9275
|
projectTier: z.array(ACLAction$inboundSchema).optional(),
|
|
9276
|
+
projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
|
|
9019
9277
|
seawallConfig: z.array(ACLAction$inboundSchema).optional(),
|
|
9020
9278
|
skewProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
9021
9279
|
analytics: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9023,11 +9281,11 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9023
9281
|
webAnalytics: z.array(ACLAction$inboundSchema).optional(),
|
|
9024
9282
|
sharedEnvVarConnection: z.array(ACLAction$inboundSchema).optional(),
|
|
9025
9283
|
sonar: z.array(ACLAction$inboundSchema).optional(),
|
|
9284
|
+
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
9026
9285
|
user: z.array(ACLAction$inboundSchema).optional(),
|
|
9027
9286
|
userConnection: z.array(ACLAction$inboundSchema).optional(),
|
|
9028
9287
|
userSudo: z.array(ACLAction$inboundSchema).optional(),
|
|
9029
9288
|
webAuthn: z.array(ACLAction$inboundSchema).optional(),
|
|
9030
|
-
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
9031
9289
|
accessGroup: z.array(ACLAction$inboundSchema).optional(),
|
|
9032
9290
|
aliasGlobal: z.array(ACLAction$inboundSchema).optional(),
|
|
9033
9291
|
analyticsSampling: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9040,6 +9298,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9040
9298
|
billingInvoiceLanguage: z.array(ACLAction$inboundSchema).optional(),
|
|
9041
9299
|
billingPlan: z.array(ACLAction$inboundSchema).optional(),
|
|
9042
9300
|
billingPurchaseOrder: z.array(ACLAction$inboundSchema).optional(),
|
|
9301
|
+
billingRefund: z.array(ACLAction$inboundSchema).optional(),
|
|
9043
9302
|
billingTaxId: z.array(ACLAction$inboundSchema).optional(),
|
|
9044
9303
|
blob: z.array(ACLAction$inboundSchema).optional(),
|
|
9045
9304
|
budget: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9049,6 +9308,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9049
9308
|
concurrentBuilds: z.array(ACLAction$inboundSchema).optional(),
|
|
9050
9309
|
connect: z.array(ACLAction$inboundSchema).optional(),
|
|
9051
9310
|
connectConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
9311
|
+
defaultDeploymentProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
9052
9312
|
domain: z.array(ACLAction$inboundSchema).optional(),
|
|
9053
9313
|
domainAcceptDelegation: z.array(ACLAction$inboundSchema).optional(),
|
|
9054
9314
|
domainAuthCodes: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9083,6 +9343,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9083
9343
|
marketplaceInstallationMember: z.array(ACLAction$inboundSchema).optional(),
|
|
9084
9344
|
marketplaceBillingData: z.array(ACLAction$inboundSchema).optional(),
|
|
9085
9345
|
marketplaceInvoice: z.array(ACLAction$inboundSchema).optional(),
|
|
9346
|
+
marketplaceSettings: z.array(ACLAction$inboundSchema).optional(),
|
|
9086
9347
|
marketplaceExperimentationItem: z.array(ACLAction$inboundSchema).optional(),
|
|
9087
9348
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$inboundSchema)
|
|
9088
9349
|
.optional(),
|
|
@@ -9110,6 +9371,7 @@ export const CreateProjectPermissions$inboundSchema: z.ZodType<
|
|
|
9110
9371
|
notificationStatementOfReasons: z.array(ACLAction$inboundSchema).optional(),
|
|
9111
9372
|
observabilityConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
9112
9373
|
observabilityNotebook: z.array(ACLAction$inboundSchema).optional(),
|
|
9374
|
+
observabilityFunnel: z.array(ACLAction$inboundSchema).optional(),
|
|
9113
9375
|
openTelemetryEndpoint: z.array(ACLAction$inboundSchema).optional(),
|
|
9114
9376
|
vercelAppInstallation: z.array(ACLAction$inboundSchema).optional(),
|
|
9115
9377
|
paymentMethod: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -9183,6 +9445,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9183
9445
|
connectConfigurationLink?: Array<string> | undefined;
|
|
9184
9446
|
dataCacheNamespace?: Array<string> | undefined;
|
|
9185
9447
|
deployment?: Array<string> | undefined;
|
|
9448
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
9186
9449
|
deploymentCheck?: Array<string> | undefined;
|
|
9187
9450
|
deploymentCheckPreview?: Array<string> | undefined;
|
|
9188
9451
|
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
@@ -9233,6 +9496,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9233
9496
|
projectDeploymentExpiration?: Array<string> | undefined;
|
|
9234
9497
|
projectRollingRelease?: Array<string> | undefined;
|
|
9235
9498
|
projectTier?: Array<string> | undefined;
|
|
9499
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
9236
9500
|
seawallConfig?: Array<string> | undefined;
|
|
9237
9501
|
skewProtection?: Array<string> | undefined;
|
|
9238
9502
|
analytics?: Array<string> | undefined;
|
|
@@ -9240,11 +9504,11 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9240
9504
|
webAnalytics?: Array<string> | undefined;
|
|
9241
9505
|
sharedEnvVarConnection?: Array<string> | undefined;
|
|
9242
9506
|
sonar?: Array<string> | undefined;
|
|
9507
|
+
oauth2Connection?: Array<string> | undefined;
|
|
9243
9508
|
user?: Array<string> | undefined;
|
|
9244
9509
|
userConnection?: Array<string> | undefined;
|
|
9245
9510
|
userSudo?: Array<string> | undefined;
|
|
9246
9511
|
webAuthn?: Array<string> | undefined;
|
|
9247
|
-
oauth2Connection?: Array<string> | undefined;
|
|
9248
9512
|
accessGroup?: Array<string> | undefined;
|
|
9249
9513
|
aliasGlobal?: Array<string> | undefined;
|
|
9250
9514
|
analyticsSampling?: Array<string> | undefined;
|
|
@@ -9257,6 +9521,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9257
9521
|
billingInvoiceLanguage?: Array<string> | undefined;
|
|
9258
9522
|
billingPlan?: Array<string> | undefined;
|
|
9259
9523
|
billingPurchaseOrder?: Array<string> | undefined;
|
|
9524
|
+
billingRefund?: Array<string> | undefined;
|
|
9260
9525
|
billingTaxId?: Array<string> | undefined;
|
|
9261
9526
|
blob?: Array<string> | undefined;
|
|
9262
9527
|
budget?: Array<string> | undefined;
|
|
@@ -9266,6 +9531,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9266
9531
|
concurrentBuilds?: Array<string> | undefined;
|
|
9267
9532
|
connect?: Array<string> | undefined;
|
|
9268
9533
|
connectConfiguration?: Array<string> | undefined;
|
|
9534
|
+
defaultDeploymentProtection?: Array<string> | undefined;
|
|
9269
9535
|
domain?: Array<string> | undefined;
|
|
9270
9536
|
domainAcceptDelegation?: Array<string> | undefined;
|
|
9271
9537
|
domainAuthCodes?: Array<string> | undefined;
|
|
@@ -9298,6 +9564,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9298
9564
|
marketplaceInstallationMember?: Array<string> | undefined;
|
|
9299
9565
|
marketplaceBillingData?: Array<string> | undefined;
|
|
9300
9566
|
marketplaceInvoice?: Array<string> | undefined;
|
|
9567
|
+
marketplaceSettings?: Array<string> | undefined;
|
|
9301
9568
|
marketplaceExperimentationItem?: Array<string> | undefined;
|
|
9302
9569
|
marketplaceExperimentationEdgeConfigData?: Array<string> | undefined;
|
|
9303
9570
|
jobGlobal?: Array<string> | undefined;
|
|
@@ -9324,6 +9591,7 @@ export type CreateProjectPermissions$Outbound = {
|
|
|
9324
9591
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
9325
9592
|
observabilityConfiguration?: Array<string> | undefined;
|
|
9326
9593
|
observabilityNotebook?: Array<string> | undefined;
|
|
9594
|
+
observabilityFunnel?: Array<string> | undefined;
|
|
9327
9595
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
9328
9596
|
vercelAppInstallation?: Array<string> | undefined;
|
|
9329
9597
|
paymentMethod?: Array<string> | undefined;
|
|
@@ -9395,6 +9663,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9395
9663
|
connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
|
|
9396
9664
|
dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
|
|
9397
9665
|
deployment: z.array(ACLAction$outboundSchema).optional(),
|
|
9666
|
+
deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
|
|
9398
9667
|
deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
|
|
9399
9668
|
deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
|
|
9400
9669
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
|
|
@@ -9447,6 +9716,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9447
9716
|
projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
|
|
9448
9717
|
projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
|
|
9449
9718
|
projectTier: z.array(ACLAction$outboundSchema).optional(),
|
|
9719
|
+
projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
|
|
9450
9720
|
seawallConfig: z.array(ACLAction$outboundSchema).optional(),
|
|
9451
9721
|
skewProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
9452
9722
|
analytics: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9454,11 +9724,11 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9454
9724
|
webAnalytics: z.array(ACLAction$outboundSchema).optional(),
|
|
9455
9725
|
sharedEnvVarConnection: z.array(ACLAction$outboundSchema).optional(),
|
|
9456
9726
|
sonar: z.array(ACLAction$outboundSchema).optional(),
|
|
9727
|
+
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
9457
9728
|
user: z.array(ACLAction$outboundSchema).optional(),
|
|
9458
9729
|
userConnection: z.array(ACLAction$outboundSchema).optional(),
|
|
9459
9730
|
userSudo: z.array(ACLAction$outboundSchema).optional(),
|
|
9460
9731
|
webAuthn: z.array(ACLAction$outboundSchema).optional(),
|
|
9461
|
-
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
9462
9732
|
accessGroup: z.array(ACLAction$outboundSchema).optional(),
|
|
9463
9733
|
aliasGlobal: z.array(ACLAction$outboundSchema).optional(),
|
|
9464
9734
|
analyticsSampling: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9471,6 +9741,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9471
9741
|
billingInvoiceLanguage: z.array(ACLAction$outboundSchema).optional(),
|
|
9472
9742
|
billingPlan: z.array(ACLAction$outboundSchema).optional(),
|
|
9473
9743
|
billingPurchaseOrder: z.array(ACLAction$outboundSchema).optional(),
|
|
9744
|
+
billingRefund: z.array(ACLAction$outboundSchema).optional(),
|
|
9474
9745
|
billingTaxId: z.array(ACLAction$outboundSchema).optional(),
|
|
9475
9746
|
blob: z.array(ACLAction$outboundSchema).optional(),
|
|
9476
9747
|
budget: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9480,6 +9751,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9480
9751
|
concurrentBuilds: z.array(ACLAction$outboundSchema).optional(),
|
|
9481
9752
|
connect: z.array(ACLAction$outboundSchema).optional(),
|
|
9482
9753
|
connectConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
9754
|
+
defaultDeploymentProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
9483
9755
|
domain: z.array(ACLAction$outboundSchema).optional(),
|
|
9484
9756
|
domainAcceptDelegation: z.array(ACLAction$outboundSchema).optional(),
|
|
9485
9757
|
domainAuthCodes: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9516,6 +9788,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9516
9788
|
marketplaceInstallationMember: z.array(ACLAction$outboundSchema).optional(),
|
|
9517
9789
|
marketplaceBillingData: z.array(ACLAction$outboundSchema).optional(),
|
|
9518
9790
|
marketplaceInvoice: z.array(ACLAction$outboundSchema).optional(),
|
|
9791
|
+
marketplaceSettings: z.array(ACLAction$outboundSchema).optional(),
|
|
9519
9792
|
marketplaceExperimentationItem: z.array(ACLAction$outboundSchema).optional(),
|
|
9520
9793
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$outboundSchema)
|
|
9521
9794
|
.optional(),
|
|
@@ -9543,6 +9816,7 @@ export const CreateProjectPermissions$outboundSchema: z.ZodType<
|
|
|
9543
9816
|
notificationStatementOfReasons: z.array(ACLAction$outboundSchema).optional(),
|
|
9544
9817
|
observabilityConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
9545
9818
|
observabilityNotebook: z.array(ACLAction$outboundSchema).optional(),
|
|
9819
|
+
observabilityFunnel: z.array(ACLAction$outboundSchema).optional(),
|
|
9546
9820
|
openTelemetryEndpoint: z.array(ACLAction$outboundSchema).optional(),
|
|
9547
9821
|
vercelAppInstallation: z.array(ACLAction$outboundSchema).optional(),
|
|
9548
9822
|
paymentMethod: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -10423,11 +10697,13 @@ export const CreateProjectGitProviderOptions$inboundSchema: z.ZodType<
|
|
|
10423
10697
|
unknown
|
|
10424
10698
|
> = z.object({
|
|
10425
10699
|
createDeployments: CreateProjectCreateDeployments$inboundSchema,
|
|
10700
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
10426
10701
|
});
|
|
10427
10702
|
|
|
10428
10703
|
/** @internal */
|
|
10429
10704
|
export type CreateProjectGitProviderOptions$Outbound = {
|
|
10430
10705
|
createDeployments: string;
|
|
10706
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
10431
10707
|
};
|
|
10432
10708
|
|
|
10433
10709
|
/** @internal */
|
|
@@ -10437,6 +10713,7 @@ export const CreateProjectGitProviderOptions$outboundSchema: z.ZodType<
|
|
|
10437
10713
|
CreateProjectGitProviderOptions
|
|
10438
10714
|
> = z.object({
|
|
10439
10715
|
createDeployments: CreateProjectCreateDeployments$outboundSchema,
|
|
10716
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
10440
10717
|
});
|
|
10441
10718
|
|
|
10442
10719
|
/**
|
|
@@ -12018,6 +12295,7 @@ export const CreateProjectResponseBody$inboundSchema: z.ZodType<
|
|
|
12018
12295
|
z.lazy(() => CreateProjectLink2$inboundSchema),
|
|
12019
12296
|
z.lazy(() => CreateProjectLink3$inboundSchema),
|
|
12020
12297
|
z.lazy(() => CreateProjectLink4$inboundSchema),
|
|
12298
|
+
z.lazy(() => CreateProjectLink5$inboundSchema),
|
|
12021
12299
|
]).optional(),
|
|
12022
12300
|
microfrontends: z.union([
|
|
12023
12301
|
z.lazy(() => CreateProjectMicrofrontends1$inboundSchema),
|
|
@@ -12100,6 +12378,7 @@ export const CreateProjectResponseBody$inboundSchema: z.ZodType<
|
|
|
12100
12378
|
.optional(),
|
|
12101
12379
|
tier: CreateProjectTier$inboundSchema.optional(),
|
|
12102
12380
|
features: z.lazy(() => CreateProjectFeatures$inboundSchema).optional(),
|
|
12381
|
+
v0: z.boolean().optional(),
|
|
12103
12382
|
});
|
|
12104
12383
|
|
|
12105
12384
|
/** @internal */
|
|
@@ -12147,6 +12426,7 @@ export type CreateProjectResponseBody$Outbound = {
|
|
|
12147
12426
|
| CreateProjectLink2$Outbound
|
|
12148
12427
|
| CreateProjectLink3$Outbound
|
|
12149
12428
|
| CreateProjectLink4$Outbound
|
|
12429
|
+
| CreateProjectLink5$Outbound
|
|
12150
12430
|
| undefined;
|
|
12151
12431
|
microfrontends?:
|
|
12152
12432
|
| CreateProjectMicrofrontends1$Outbound
|
|
@@ -12212,6 +12492,7 @@ export type CreateProjectResponseBody$Outbound = {
|
|
|
12212
12492
|
oidcTokenConfig?: CreateProjectOidcTokenConfig$Outbound | undefined;
|
|
12213
12493
|
tier?: string | undefined;
|
|
12214
12494
|
features?: CreateProjectFeatures$Outbound | undefined;
|
|
12495
|
+
v0?: boolean | undefined;
|
|
12215
12496
|
};
|
|
12216
12497
|
|
|
12217
12498
|
/** @internal */
|
|
@@ -12264,6 +12545,7 @@ export const CreateProjectResponseBody$outboundSchema: z.ZodType<
|
|
|
12264
12545
|
z.lazy(() => CreateProjectLink2$outboundSchema),
|
|
12265
12546
|
z.lazy(() => CreateProjectLink3$outboundSchema),
|
|
12266
12547
|
z.lazy(() => CreateProjectLink4$outboundSchema),
|
|
12548
|
+
z.lazy(() => CreateProjectLink5$outboundSchema),
|
|
12267
12549
|
]).optional(),
|
|
12268
12550
|
microfrontends: z.union([
|
|
12269
12551
|
z.lazy(() => CreateProjectMicrofrontends1$outboundSchema),
|
|
@@ -12346,6 +12628,7 @@ export const CreateProjectResponseBody$outboundSchema: z.ZodType<
|
|
|
12346
12628
|
.optional(),
|
|
12347
12629
|
tier: CreateProjectTier$outboundSchema.optional(),
|
|
12348
12630
|
features: z.lazy(() => CreateProjectFeatures$outboundSchema).optional(),
|
|
12631
|
+
v0: z.boolean().optional(),
|
|
12349
12632
|
});
|
|
12350
12633
|
|
|
12351
12634
|
/**
|