@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
|
@@ -54,6 +54,7 @@ export declare const UpdateProjectFramework: {
|
|
|
54
54
|
readonly Sanity: "sanity";
|
|
55
55
|
readonly Storybook: "storybook";
|
|
56
56
|
readonly Nitro: "nitro";
|
|
57
|
+
readonly Hono: "hono";
|
|
57
58
|
};
|
|
58
59
|
/**
|
|
59
60
|
* The framework that is being used for this project. When `null` is used no framework is selected
|
|
@@ -407,8 +408,8 @@ export type UpdateProjectSpeedInsights = {
|
|
|
407
408
|
paidAt?: number | undefined;
|
|
408
409
|
};
|
|
409
410
|
export declare const UpdateProjectEnvId2: {
|
|
410
|
-
readonly Production: "production";
|
|
411
411
|
readonly Preview: "preview";
|
|
412
|
+
readonly Production: "production";
|
|
412
413
|
};
|
|
413
414
|
export type UpdateProjectEnvId2 = ClosedEnum<typeof UpdateProjectEnvId2>;
|
|
414
415
|
export type UpdateProjectEnvId = string | UpdateProjectEnvId2;
|
|
@@ -419,6 +420,7 @@ export type UpdateProjectAws = {
|
|
|
419
420
|
export type UpdateProjectConnectConfigurations = {
|
|
420
421
|
envId: string | UpdateProjectEnvId2;
|
|
421
422
|
connectConfigurationId: string;
|
|
423
|
+
dc?: string | undefined;
|
|
422
424
|
passive: boolean;
|
|
423
425
|
buildsEnabled: boolean;
|
|
424
426
|
aws?: UpdateProjectAws | undefined;
|
|
@@ -652,8 +654,8 @@ export type UpdateProjectEnv = {
|
|
|
652
654
|
* The type of environment (production, preview, or development)
|
|
653
655
|
*/
|
|
654
656
|
export declare const UpdateProjectProjectsType: {
|
|
655
|
-
readonly Production: "production";
|
|
656
657
|
readonly Preview: "preview";
|
|
658
|
+
readonly Production: "production";
|
|
657
659
|
readonly Development: "development";
|
|
658
660
|
};
|
|
659
661
|
/**
|
|
@@ -805,6 +807,7 @@ export declare const UpdateProjectProjectsFramework: {
|
|
|
805
807
|
readonly Sanity: "sanity";
|
|
806
808
|
readonly Storybook: "storybook";
|
|
807
809
|
readonly Nitro: "nitro";
|
|
810
|
+
readonly Hono: "hono";
|
|
808
811
|
};
|
|
809
812
|
export type UpdateProjectProjectsFramework = ClosedEnum<typeof UpdateProjectProjectsFramework>;
|
|
810
813
|
export type UpdateProjectIpBuckets = {
|
|
@@ -942,18 +945,18 @@ export type UpdateProjectLatestDeployments = {
|
|
|
942
945
|
userId: string;
|
|
943
946
|
withCache?: boolean | undefined;
|
|
944
947
|
};
|
|
945
|
-
export declare const
|
|
948
|
+
export declare const UpdateProjectLinkProjectsResponse200ApplicationJSONType: {
|
|
946
949
|
readonly GithubCustomHost: "github-custom-host";
|
|
947
950
|
};
|
|
948
|
-
export type
|
|
949
|
-
export type
|
|
951
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONType = ClosedEnum<typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType>;
|
|
952
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks = {
|
|
950
953
|
createdAt?: number | undefined;
|
|
951
954
|
id: string;
|
|
952
955
|
name: string;
|
|
953
956
|
ref: string;
|
|
954
957
|
url: string;
|
|
955
958
|
};
|
|
956
|
-
export type
|
|
959
|
+
export type UpdateProjectLink5 = {
|
|
957
960
|
org?: string | undefined;
|
|
958
961
|
/**
|
|
959
962
|
* 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.
|
|
@@ -961,52 +964,52 @@ export type UpdateProjectLink4 = {
|
|
|
961
964
|
repoOwnerId?: number | undefined;
|
|
962
965
|
repo?: string | undefined;
|
|
963
966
|
repoId?: number | undefined;
|
|
964
|
-
type?:
|
|
967
|
+
type?: UpdateProjectLinkProjectsResponse200ApplicationJSONType | undefined;
|
|
965
968
|
host?: string | undefined;
|
|
966
969
|
createdAt?: number | undefined;
|
|
967
|
-
deployHooks: Array<
|
|
970
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks>;
|
|
968
971
|
gitCredentialId?: string | undefined;
|
|
969
972
|
updatedAt?: number | undefined;
|
|
970
973
|
sourceless?: boolean | undefined;
|
|
971
974
|
productionBranch?: string | undefined;
|
|
972
975
|
};
|
|
973
|
-
export declare const
|
|
976
|
+
export declare const UpdateProjectLinkProjectsResponse200Type: {
|
|
974
977
|
readonly Bitbucket: "bitbucket";
|
|
975
978
|
};
|
|
976
|
-
export type
|
|
977
|
-
export type
|
|
979
|
+
export type UpdateProjectLinkProjectsResponse200Type = ClosedEnum<typeof UpdateProjectLinkProjectsResponse200Type>;
|
|
980
|
+
export type UpdateProjectLinkProjectsResponse200DeployHooks = {
|
|
978
981
|
createdAt?: number | undefined;
|
|
979
982
|
id: string;
|
|
980
983
|
name: string;
|
|
981
984
|
ref: string;
|
|
982
985
|
url: string;
|
|
983
986
|
};
|
|
984
|
-
export type
|
|
987
|
+
export type UpdateProjectLink4 = {
|
|
985
988
|
name?: string | undefined;
|
|
986
989
|
slug?: string | undefined;
|
|
987
990
|
owner?: string | undefined;
|
|
988
|
-
type?:
|
|
991
|
+
type?: UpdateProjectLinkProjectsResponse200Type | undefined;
|
|
989
992
|
uuid?: string | undefined;
|
|
990
993
|
workspaceUuid?: string | undefined;
|
|
991
994
|
createdAt?: number | undefined;
|
|
992
|
-
deployHooks: Array<
|
|
995
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponse200DeployHooks>;
|
|
993
996
|
gitCredentialId?: string | undefined;
|
|
994
997
|
updatedAt?: number | undefined;
|
|
995
998
|
sourceless?: boolean | undefined;
|
|
996
999
|
productionBranch?: string | undefined;
|
|
997
1000
|
};
|
|
998
|
-
export declare const
|
|
1001
|
+
export declare const UpdateProjectLinkProjectsResponseType: {
|
|
999
1002
|
readonly Gitlab: "gitlab";
|
|
1000
1003
|
};
|
|
1001
|
-
export type
|
|
1002
|
-
export type
|
|
1004
|
+
export type UpdateProjectLinkProjectsResponseType = ClosedEnum<typeof UpdateProjectLinkProjectsResponseType>;
|
|
1005
|
+
export type UpdateProjectLinkProjectsResponseDeployHooks = {
|
|
1003
1006
|
createdAt?: number | undefined;
|
|
1004
1007
|
id: string;
|
|
1005
1008
|
name: string;
|
|
1006
1009
|
ref: string;
|
|
1007
1010
|
url: string;
|
|
1008
1011
|
};
|
|
1009
|
-
export type
|
|
1012
|
+
export type UpdateProjectLink3 = {
|
|
1010
1013
|
projectId?: string | undefined;
|
|
1011
1014
|
projectName?: string | undefined;
|
|
1012
1015
|
projectNameWithNamespace?: string | undefined;
|
|
@@ -1016,11 +1019,38 @@ export type UpdateProjectLink2 = {
|
|
|
1016
1019
|
*/
|
|
1017
1020
|
projectOwnerId?: number | undefined;
|
|
1018
1021
|
projectUrl?: string | undefined;
|
|
1022
|
+
type?: UpdateProjectLinkProjectsResponseType | undefined;
|
|
1023
|
+
createdAt?: number | undefined;
|
|
1024
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponseDeployHooks>;
|
|
1025
|
+
gitCredentialId?: string | undefined;
|
|
1026
|
+
updatedAt?: number | undefined;
|
|
1027
|
+
sourceless?: boolean | undefined;
|
|
1028
|
+
productionBranch?: string | undefined;
|
|
1029
|
+
};
|
|
1030
|
+
export declare const UpdateProjectLinkProjectsType: {
|
|
1031
|
+
readonly GithubLimited: "github-limited";
|
|
1032
|
+
};
|
|
1033
|
+
export type UpdateProjectLinkProjectsType = ClosedEnum<typeof UpdateProjectLinkProjectsType>;
|
|
1034
|
+
export type UpdateProjectLinkProjectsDeployHooks = {
|
|
1035
|
+
createdAt?: number | undefined;
|
|
1036
|
+
id: string;
|
|
1037
|
+
name: string;
|
|
1038
|
+
ref: string;
|
|
1039
|
+
url: string;
|
|
1040
|
+
};
|
|
1041
|
+
export type UpdateProjectLink2 = {
|
|
1019
1042
|
type?: UpdateProjectLinkProjectsType | undefined;
|
|
1043
|
+
repo?: string | undefined;
|
|
1044
|
+
repoId?: number | undefined;
|
|
1045
|
+
updatedAt?: number | undefined;
|
|
1020
1046
|
createdAt?: number | undefined;
|
|
1047
|
+
org?: string | undefined;
|
|
1048
|
+
/**
|
|
1049
|
+
* 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.
|
|
1050
|
+
*/
|
|
1051
|
+
repoOwnerId?: number | undefined;
|
|
1021
1052
|
deployHooks: Array<UpdateProjectLinkProjectsDeployHooks>;
|
|
1022
1053
|
gitCredentialId?: string | undefined;
|
|
1023
|
-
updatedAt?: number | undefined;
|
|
1024
1054
|
sourceless?: boolean | undefined;
|
|
1025
1055
|
productionBranch?: string | undefined;
|
|
1026
1056
|
};
|
|
@@ -1051,7 +1081,7 @@ export type UpdateProjectLink1 = {
|
|
|
1051
1081
|
sourceless?: boolean | undefined;
|
|
1052
1082
|
productionBranch?: string | undefined;
|
|
1053
1083
|
};
|
|
1054
|
-
export type UpdateProjectLink = UpdateProjectLink1 | UpdateProjectLink2 | UpdateProjectLink3 | UpdateProjectLink4;
|
|
1084
|
+
export type UpdateProjectLink = UpdateProjectLink1 | UpdateProjectLink2 | UpdateProjectLink3 | UpdateProjectLink4 | UpdateProjectLink5;
|
|
1055
1085
|
export type UpdateProjectMicrofrontends2 = {
|
|
1056
1086
|
updatedAt: number;
|
|
1057
1087
|
groupIds: Array<any>;
|
|
@@ -1346,6 +1376,7 @@ export type UpdateProjectPermissions = {
|
|
|
1346
1376
|
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1347
1377
|
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1348
1378
|
deployment?: Array<ACLAction> | undefined;
|
|
1379
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1349
1380
|
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1350
1381
|
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1351
1382
|
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
@@ -1396,6 +1427,7 @@ export type UpdateProjectPermissions = {
|
|
|
1396
1427
|
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1397
1428
|
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1398
1429
|
projectTier?: Array<ACLAction> | undefined;
|
|
1430
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1399
1431
|
seawallConfig?: Array<ACLAction> | undefined;
|
|
1400
1432
|
skewProtection?: Array<ACLAction> | undefined;
|
|
1401
1433
|
analytics?: Array<ACLAction> | undefined;
|
|
@@ -1403,11 +1435,11 @@ export type UpdateProjectPermissions = {
|
|
|
1403
1435
|
webAnalytics?: Array<ACLAction> | undefined;
|
|
1404
1436
|
sharedEnvVarConnection?: Array<ACLAction> | undefined;
|
|
1405
1437
|
sonar?: Array<ACLAction> | undefined;
|
|
1438
|
+
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1406
1439
|
user?: Array<ACLAction> | undefined;
|
|
1407
1440
|
userConnection?: Array<ACLAction> | undefined;
|
|
1408
1441
|
userSudo?: Array<ACLAction> | undefined;
|
|
1409
1442
|
webAuthn?: Array<ACLAction> | undefined;
|
|
1410
|
-
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1411
1443
|
accessGroup?: Array<ACLAction> | undefined;
|
|
1412
1444
|
aliasGlobal?: Array<ACLAction> | undefined;
|
|
1413
1445
|
analyticsSampling?: Array<ACLAction> | undefined;
|
|
@@ -1420,6 +1452,7 @@ export type UpdateProjectPermissions = {
|
|
|
1420
1452
|
billingInvoiceLanguage?: Array<ACLAction> | undefined;
|
|
1421
1453
|
billingPlan?: Array<ACLAction> | undefined;
|
|
1422
1454
|
billingPurchaseOrder?: Array<ACLAction> | undefined;
|
|
1455
|
+
billingRefund?: Array<ACLAction> | undefined;
|
|
1423
1456
|
billingTaxId?: Array<ACLAction> | undefined;
|
|
1424
1457
|
blob?: Array<ACLAction> | undefined;
|
|
1425
1458
|
budget?: Array<ACLAction> | undefined;
|
|
@@ -1429,6 +1462,7 @@ export type UpdateProjectPermissions = {
|
|
|
1429
1462
|
concurrentBuilds?: Array<ACLAction> | undefined;
|
|
1430
1463
|
connect?: Array<ACLAction> | undefined;
|
|
1431
1464
|
connectConfiguration?: Array<ACLAction> | undefined;
|
|
1465
|
+
defaultDeploymentProtection?: Array<ACLAction> | undefined;
|
|
1432
1466
|
domain?: Array<ACLAction> | undefined;
|
|
1433
1467
|
domainAcceptDelegation?: Array<ACLAction> | undefined;
|
|
1434
1468
|
domainAuthCodes?: Array<ACLAction> | undefined;
|
|
@@ -1461,6 +1495,7 @@ export type UpdateProjectPermissions = {
|
|
|
1461
1495
|
marketplaceInstallationMember?: Array<ACLAction> | undefined;
|
|
1462
1496
|
marketplaceBillingData?: Array<ACLAction> | undefined;
|
|
1463
1497
|
marketplaceInvoice?: Array<ACLAction> | undefined;
|
|
1498
|
+
marketplaceSettings?: Array<ACLAction> | undefined;
|
|
1464
1499
|
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
|
|
1465
1500
|
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
|
|
1466
1501
|
jobGlobal?: Array<ACLAction> | undefined;
|
|
@@ -1487,6 +1522,7 @@ export type UpdateProjectPermissions = {
|
|
|
1487
1522
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1488
1523
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1489
1524
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1525
|
+
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1490
1526
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1491
1527
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1492
1528
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
@@ -1591,8 +1627,8 @@ export type UpdateProjectProtectionBypass1 = {
|
|
|
1591
1627
|
};
|
|
1592
1628
|
export type UpdateProjectProtectionBypass = UpdateProjectProtectionBypass1 | UpdateProjectProtectionBypass2;
|
|
1593
1629
|
export declare const UpdateProjectTrustedIpsProjectsDeploymentType: {
|
|
1594
|
-
readonly Production: "production";
|
|
1595
1630
|
readonly Preview: "preview";
|
|
1631
|
+
readonly Production: "production";
|
|
1596
1632
|
readonly All: "all";
|
|
1597
1633
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1598
1634
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -1602,8 +1638,8 @@ export type UpdateProjectTrustedIps2 = {
|
|
|
1602
1638
|
deploymentType: UpdateProjectTrustedIpsProjectsDeploymentType;
|
|
1603
1639
|
};
|
|
1604
1640
|
export declare const UpdateProjectTrustedIpsDeploymentType: {
|
|
1605
|
-
readonly Production: "production";
|
|
1606
1641
|
readonly Preview: "preview";
|
|
1642
|
+
readonly Production: "production";
|
|
1607
1643
|
readonly All: "all";
|
|
1608
1644
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1609
1645
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -1650,6 +1686,10 @@ export type UpdateProjectGitProviderOptions = {
|
|
|
1650
1686
|
* 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
|
|
1651
1687
|
*/
|
|
1652
1688
|
createDeployments: UpdateProjectCreateDeployments;
|
|
1689
|
+
/**
|
|
1690
|
+
* 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
|
|
1691
|
+
*/
|
|
1692
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
1653
1693
|
};
|
|
1654
1694
|
export type UpdateProjectWebAnalytics = {
|
|
1655
1695
|
id: string;
|
|
@@ -1892,7 +1932,7 @@ export type UpdateProjectResponseBody = {
|
|
|
1892
1932
|
id: string;
|
|
1893
1933
|
ipBuckets?: Array<UpdateProjectIpBuckets> | undefined;
|
|
1894
1934
|
latestDeployments?: Array<UpdateProjectLatestDeployments> | undefined;
|
|
1895
|
-
link?: UpdateProjectLink1 | UpdateProjectLink2 | UpdateProjectLink3 | UpdateProjectLink4 | undefined;
|
|
1935
|
+
link?: UpdateProjectLink1 | UpdateProjectLink2 | UpdateProjectLink3 | UpdateProjectLink4 | UpdateProjectLink5 | undefined;
|
|
1896
1936
|
microfrontends?: UpdateProjectMicrofrontends1 | UpdateProjectMicrofrontends2 | undefined;
|
|
1897
1937
|
name: string;
|
|
1898
1938
|
nodeVersion: UpdateProjectProjectsNodeVersion;
|
|
@@ -1947,6 +1987,7 @@ export type UpdateProjectResponseBody = {
|
|
|
1947
1987
|
oidcTokenConfig?: UpdateProjectProjectsOidcTokenConfig | undefined;
|
|
1948
1988
|
tier?: UpdateProjectTier | undefined;
|
|
1949
1989
|
features?: UpdateProjectFeatures | undefined;
|
|
1990
|
+
v0?: boolean | undefined;
|
|
1950
1991
|
};
|
|
1951
1992
|
/** @internal */
|
|
1952
1993
|
export declare const UpdateProjectFramework$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectFramework>;
|
|
@@ -2006,6 +2047,7 @@ export declare namespace UpdateProjectFramework$ {
|
|
|
2006
2047
|
readonly Sanity: "sanity";
|
|
2007
2048
|
readonly Storybook: "storybook";
|
|
2008
2049
|
readonly Nitro: "nitro";
|
|
2050
|
+
readonly Hono: "hono";
|
|
2009
2051
|
}>;
|
|
2010
2052
|
/** @deprecated use `UpdateProjectFramework$outboundSchema` instead. */
|
|
2011
2053
|
const outboundSchema: z.ZodNativeEnum<{
|
|
@@ -2056,6 +2098,7 @@ export declare namespace UpdateProjectFramework$ {
|
|
|
2056
2098
|
readonly Sanity: "sanity";
|
|
2057
2099
|
readonly Storybook: "storybook";
|
|
2058
2100
|
readonly Nitro: "nitro";
|
|
2101
|
+
readonly Hono: "hono";
|
|
2059
2102
|
}>;
|
|
2060
2103
|
}
|
|
2061
2104
|
/** @internal */
|
|
@@ -2622,13 +2665,13 @@ export declare const UpdateProjectEnvId2$outboundSchema: z.ZodNativeEnum<typeof
|
|
|
2622
2665
|
export declare namespace UpdateProjectEnvId2$ {
|
|
2623
2666
|
/** @deprecated use `UpdateProjectEnvId2$inboundSchema` instead. */
|
|
2624
2667
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2625
|
-
readonly Production: "production";
|
|
2626
2668
|
readonly Preview: "preview";
|
|
2669
|
+
readonly Production: "production";
|
|
2627
2670
|
}>;
|
|
2628
2671
|
/** @deprecated use `UpdateProjectEnvId2$outboundSchema` instead. */
|
|
2629
2672
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2630
|
-
readonly Production: "production";
|
|
2631
2673
|
readonly Preview: "preview";
|
|
2674
|
+
readonly Production: "production";
|
|
2632
2675
|
}>;
|
|
2633
2676
|
}
|
|
2634
2677
|
/** @internal */
|
|
@@ -2680,6 +2723,7 @@ export declare const UpdateProjectConnectConfigurations$inboundSchema: z.ZodType
|
|
|
2680
2723
|
export type UpdateProjectConnectConfigurations$Outbound = {
|
|
2681
2724
|
envId: string | string;
|
|
2682
2725
|
connectConfigurationId: string;
|
|
2726
|
+
dc?: string | undefined;
|
|
2683
2727
|
passive: boolean;
|
|
2684
2728
|
buildsEnabled: boolean;
|
|
2685
2729
|
aws?: UpdateProjectAws$Outbound | undefined;
|
|
@@ -3601,14 +3645,14 @@ export declare const UpdateProjectProjectsType$outboundSchema: z.ZodNativeEnum<t
|
|
|
3601
3645
|
export declare namespace UpdateProjectProjectsType$ {
|
|
3602
3646
|
/** @deprecated use `UpdateProjectProjectsType$inboundSchema` instead. */
|
|
3603
3647
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3604
|
-
readonly Production: "production";
|
|
3605
3648
|
readonly Preview: "preview";
|
|
3649
|
+
readonly Production: "production";
|
|
3606
3650
|
readonly Development: "development";
|
|
3607
3651
|
}>;
|
|
3608
3652
|
/** @deprecated use `UpdateProjectProjectsType$outboundSchema` instead. */
|
|
3609
3653
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3610
|
-
readonly Production: "production";
|
|
3611
3654
|
readonly Preview: "preview";
|
|
3655
|
+
readonly Production: "production";
|
|
3612
3656
|
readonly Development: "development";
|
|
3613
3657
|
}>;
|
|
3614
3658
|
}
|
|
@@ -3802,6 +3846,7 @@ export declare namespace UpdateProjectProjectsFramework$ {
|
|
|
3802
3846
|
readonly Sanity: "sanity";
|
|
3803
3847
|
readonly Storybook: "storybook";
|
|
3804
3848
|
readonly Nitro: "nitro";
|
|
3849
|
+
readonly Hono: "hono";
|
|
3805
3850
|
}>;
|
|
3806
3851
|
/** @deprecated use `UpdateProjectProjectsFramework$outboundSchema` instead. */
|
|
3807
3852
|
const outboundSchema: z.ZodNativeEnum<{
|
|
@@ -3852,6 +3897,7 @@ export declare namespace UpdateProjectProjectsFramework$ {
|
|
|
3852
3897
|
readonly Sanity: "sanity";
|
|
3853
3898
|
readonly Storybook: "storybook";
|
|
3854
3899
|
readonly Nitro: "nitro";
|
|
3900
|
+
readonly Hono: "hono";
|
|
3855
3901
|
}>;
|
|
3856
3902
|
}
|
|
3857
3903
|
/** @internal */
|
|
@@ -4241,6 +4287,83 @@ export declare namespace UpdateProjectLatestDeployments$ {
|
|
|
4241
4287
|
export declare function updateProjectLatestDeploymentsToJSON(updateProjectLatestDeployments: UpdateProjectLatestDeployments): string;
|
|
4242
4288
|
export declare function updateProjectLatestDeploymentsFromJSON(jsonString: string): SafeParseResult<UpdateProjectLatestDeployments, SDKValidationError>;
|
|
4243
4289
|
/** @internal */
|
|
4290
|
+
export declare const UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType>;
|
|
4291
|
+
/** @internal */
|
|
4292
|
+
export declare const UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectLinkProjectsResponse200ApplicationJSONType>;
|
|
4293
|
+
/**
|
|
4294
|
+
* @internal
|
|
4295
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4296
|
+
*/
|
|
4297
|
+
export declare namespace UpdateProjectLinkProjectsResponse200ApplicationJSONType$ {
|
|
4298
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
4299
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
4300
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
4301
|
+
}>;
|
|
4302
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
4303
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
4304
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
4305
|
+
}>;
|
|
4306
|
+
}
|
|
4307
|
+
/** @internal */
|
|
4308
|
+
export declare const UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema: z.ZodType<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks, z.ZodTypeDef, unknown>;
|
|
4309
|
+
/** @internal */
|
|
4310
|
+
export type UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound = {
|
|
4311
|
+
createdAt?: number | undefined;
|
|
4312
|
+
id: string;
|
|
4313
|
+
name: string;
|
|
4314
|
+
ref: string;
|
|
4315
|
+
url: string;
|
|
4316
|
+
};
|
|
4317
|
+
/** @internal */
|
|
4318
|
+
export declare const UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema: z.ZodType<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound, z.ZodTypeDef, UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks>;
|
|
4319
|
+
/**
|
|
4320
|
+
* @internal
|
|
4321
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4322
|
+
*/
|
|
4323
|
+
export declare namespace UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$ {
|
|
4324
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$inboundSchema` instead. */
|
|
4325
|
+
const inboundSchema: z.ZodType<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks, z.ZodTypeDef, unknown>;
|
|
4326
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$outboundSchema` instead. */
|
|
4327
|
+
const outboundSchema: z.ZodType<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound, z.ZodTypeDef, UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks>;
|
|
4328
|
+
/** @deprecated use `UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound` instead. */
|
|
4329
|
+
type Outbound = UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound;
|
|
4330
|
+
}
|
|
4331
|
+
export declare function updateProjectLinkProjectsResponse200ApplicationJSONDeployHooksToJSON(updateProjectLinkProjectsResponse200ApplicationJSONDeployHooks: UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks): string;
|
|
4332
|
+
export declare function updateProjectLinkProjectsResponse200ApplicationJSONDeployHooksFromJSON(jsonString: string): SafeParseResult<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks, SDKValidationError>;
|
|
4333
|
+
/** @internal */
|
|
4334
|
+
export declare const UpdateProjectLink5$inboundSchema: z.ZodType<UpdateProjectLink5, z.ZodTypeDef, unknown>;
|
|
4335
|
+
/** @internal */
|
|
4336
|
+
export type UpdateProjectLink5$Outbound = {
|
|
4337
|
+
org?: string | undefined;
|
|
4338
|
+
repoOwnerId?: number | undefined;
|
|
4339
|
+
repo?: string | undefined;
|
|
4340
|
+
repoId?: number | undefined;
|
|
4341
|
+
type?: string | undefined;
|
|
4342
|
+
host?: string | undefined;
|
|
4343
|
+
createdAt?: number | undefined;
|
|
4344
|
+
deployHooks: Array<UpdateProjectLinkProjectsResponse200ApplicationJSONDeployHooks$Outbound>;
|
|
4345
|
+
gitCredentialId?: string | undefined;
|
|
4346
|
+
updatedAt?: number | undefined;
|
|
4347
|
+
sourceless?: boolean | undefined;
|
|
4348
|
+
productionBranch?: string | undefined;
|
|
4349
|
+
};
|
|
4350
|
+
/** @internal */
|
|
4351
|
+
export declare const UpdateProjectLink5$outboundSchema: z.ZodType<UpdateProjectLink5$Outbound, z.ZodTypeDef, UpdateProjectLink5>;
|
|
4352
|
+
/**
|
|
4353
|
+
* @internal
|
|
4354
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4355
|
+
*/
|
|
4356
|
+
export declare namespace UpdateProjectLink5$ {
|
|
4357
|
+
/** @deprecated use `UpdateProjectLink5$inboundSchema` instead. */
|
|
4358
|
+
const inboundSchema: z.ZodType<UpdateProjectLink5, z.ZodTypeDef, unknown>;
|
|
4359
|
+
/** @deprecated use `UpdateProjectLink5$outboundSchema` instead. */
|
|
4360
|
+
const outboundSchema: z.ZodType<UpdateProjectLink5$Outbound, z.ZodTypeDef, UpdateProjectLink5>;
|
|
4361
|
+
/** @deprecated use `UpdateProjectLink5$Outbound` instead. */
|
|
4362
|
+
type Outbound = UpdateProjectLink5$Outbound;
|
|
4363
|
+
}
|
|
4364
|
+
export declare function updateProjectLink5ToJSON(updateProjectLink5: UpdateProjectLink5): string;
|
|
4365
|
+
export declare function updateProjectLink5FromJSON(jsonString: string): SafeParseResult<UpdateProjectLink5, SDKValidationError>;
|
|
4366
|
+
/** @internal */
|
|
4244
4367
|
export declare const UpdateProjectLinkProjectsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectLinkProjectsResponse200Type>;
|
|
4245
4368
|
/** @internal */
|
|
4246
4369
|
export declare const UpdateProjectLinkProjectsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectLinkProjectsResponse200Type>;
|
|
@@ -4251,11 +4374,11 @@ export declare const UpdateProjectLinkProjectsResponse200Type$outboundSchema: z.
|
|
|
4251
4374
|
export declare namespace UpdateProjectLinkProjectsResponse200Type$ {
|
|
4252
4375
|
/** @deprecated use `UpdateProjectLinkProjectsResponse200Type$inboundSchema` instead. */
|
|
4253
4376
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4254
|
-
readonly
|
|
4377
|
+
readonly Bitbucket: "bitbucket";
|
|
4255
4378
|
}>;
|
|
4256
4379
|
/** @deprecated use `UpdateProjectLinkProjectsResponse200Type$outboundSchema` instead. */
|
|
4257
4380
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4258
|
-
readonly
|
|
4381
|
+
readonly Bitbucket: "bitbucket";
|
|
4259
4382
|
}>;
|
|
4260
4383
|
}
|
|
4261
4384
|
/** @internal */
|
|
@@ -4288,12 +4411,12 @@ export declare function updateProjectLinkProjectsResponse200DeployHooksFromJSON(
|
|
|
4288
4411
|
export declare const UpdateProjectLink4$inboundSchema: z.ZodType<UpdateProjectLink4, z.ZodTypeDef, unknown>;
|
|
4289
4412
|
/** @internal */
|
|
4290
4413
|
export type UpdateProjectLink4$Outbound = {
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
repoId?: number | undefined;
|
|
4414
|
+
name?: string | undefined;
|
|
4415
|
+
slug?: string | undefined;
|
|
4416
|
+
owner?: string | undefined;
|
|
4295
4417
|
type?: string | undefined;
|
|
4296
|
-
|
|
4418
|
+
uuid?: string | undefined;
|
|
4419
|
+
workspaceUuid?: string | undefined;
|
|
4297
4420
|
createdAt?: number | undefined;
|
|
4298
4421
|
deployHooks: Array<UpdateProjectLinkProjectsResponse200DeployHooks$Outbound>;
|
|
4299
4422
|
gitCredentialId?: string | undefined;
|
|
@@ -4328,11 +4451,11 @@ export declare const UpdateProjectLinkProjectsResponseType$outboundSchema: z.Zod
|
|
|
4328
4451
|
export declare namespace UpdateProjectLinkProjectsResponseType$ {
|
|
4329
4452
|
/** @deprecated use `UpdateProjectLinkProjectsResponseType$inboundSchema` instead. */
|
|
4330
4453
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4331
|
-
readonly
|
|
4454
|
+
readonly Gitlab: "gitlab";
|
|
4332
4455
|
}>;
|
|
4333
4456
|
/** @deprecated use `UpdateProjectLinkProjectsResponseType$outboundSchema` instead. */
|
|
4334
4457
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4335
|
-
readonly
|
|
4458
|
+
readonly Gitlab: "gitlab";
|
|
4336
4459
|
}>;
|
|
4337
4460
|
}
|
|
4338
4461
|
/** @internal */
|
|
@@ -4365,12 +4488,13 @@ export declare function updateProjectLinkProjectsResponseDeployHooksFromJSON(jso
|
|
|
4365
4488
|
export declare const UpdateProjectLink3$inboundSchema: z.ZodType<UpdateProjectLink3, z.ZodTypeDef, unknown>;
|
|
4366
4489
|
/** @internal */
|
|
4367
4490
|
export type UpdateProjectLink3$Outbound = {
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4491
|
+
projectId?: string | undefined;
|
|
4492
|
+
projectName?: string | undefined;
|
|
4493
|
+
projectNameWithNamespace?: string | undefined;
|
|
4494
|
+
projectNamespace?: string | undefined;
|
|
4495
|
+
projectOwnerId?: number | undefined;
|
|
4496
|
+
projectUrl?: string | undefined;
|
|
4371
4497
|
type?: string | undefined;
|
|
4372
|
-
uuid?: string | undefined;
|
|
4373
|
-
workspaceUuid?: string | undefined;
|
|
4374
4498
|
createdAt?: number | undefined;
|
|
4375
4499
|
deployHooks: Array<UpdateProjectLinkProjectsResponseDeployHooks$Outbound>;
|
|
4376
4500
|
gitCredentialId?: string | undefined;
|
|
@@ -4405,11 +4529,11 @@ export declare const UpdateProjectLinkProjectsType$outboundSchema: z.ZodNativeEn
|
|
|
4405
4529
|
export declare namespace UpdateProjectLinkProjectsType$ {
|
|
4406
4530
|
/** @deprecated use `UpdateProjectLinkProjectsType$inboundSchema` instead. */
|
|
4407
4531
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4408
|
-
readonly
|
|
4532
|
+
readonly GithubLimited: "github-limited";
|
|
4409
4533
|
}>;
|
|
4410
4534
|
/** @deprecated use `UpdateProjectLinkProjectsType$outboundSchema` instead. */
|
|
4411
4535
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4412
|
-
readonly
|
|
4536
|
+
readonly GithubLimited: "github-limited";
|
|
4413
4537
|
}>;
|
|
4414
4538
|
}
|
|
4415
4539
|
/** @internal */
|
|
@@ -4442,17 +4566,15 @@ export declare function updateProjectLinkProjectsDeployHooksFromJSON(jsonString:
|
|
|
4442
4566
|
export declare const UpdateProjectLink2$inboundSchema: z.ZodType<UpdateProjectLink2, z.ZodTypeDef, unknown>;
|
|
4443
4567
|
/** @internal */
|
|
4444
4568
|
export type UpdateProjectLink2$Outbound = {
|
|
4445
|
-
projectId?: string | undefined;
|
|
4446
|
-
projectName?: string | undefined;
|
|
4447
|
-
projectNameWithNamespace?: string | undefined;
|
|
4448
|
-
projectNamespace?: string | undefined;
|
|
4449
|
-
projectOwnerId?: number | undefined;
|
|
4450
|
-
projectUrl?: string | undefined;
|
|
4451
4569
|
type?: string | undefined;
|
|
4570
|
+
repo?: string | undefined;
|
|
4571
|
+
repoId?: number | undefined;
|
|
4572
|
+
updatedAt?: number | undefined;
|
|
4452
4573
|
createdAt?: number | undefined;
|
|
4574
|
+
org?: string | undefined;
|
|
4575
|
+
repoOwnerId?: number | undefined;
|
|
4453
4576
|
deployHooks: Array<UpdateProjectLinkProjectsDeployHooks$Outbound>;
|
|
4454
4577
|
gitCredentialId?: string | undefined;
|
|
4455
|
-
updatedAt?: number | undefined;
|
|
4456
4578
|
sourceless?: boolean | undefined;
|
|
4457
4579
|
productionBranch?: string | undefined;
|
|
4458
4580
|
};
|
|
@@ -4551,7 +4673,7 @@ export declare function updateProjectLink1FromJSON(jsonString: string): SafePars
|
|
|
4551
4673
|
/** @internal */
|
|
4552
4674
|
export declare const UpdateProjectLink$inboundSchema: z.ZodType<UpdateProjectLink, z.ZodTypeDef, unknown>;
|
|
4553
4675
|
/** @internal */
|
|
4554
|
-
export type UpdateProjectLink$Outbound = UpdateProjectLink1$Outbound | UpdateProjectLink2$Outbound | UpdateProjectLink3$Outbound | UpdateProjectLink4$Outbound;
|
|
4676
|
+
export type UpdateProjectLink$Outbound = UpdateProjectLink1$Outbound | UpdateProjectLink2$Outbound | UpdateProjectLink3$Outbound | UpdateProjectLink4$Outbound | UpdateProjectLink5$Outbound;
|
|
4555
4677
|
/** @internal */
|
|
4556
4678
|
export declare const UpdateProjectLink$outboundSchema: z.ZodType<UpdateProjectLink$Outbound, z.ZodTypeDef, UpdateProjectLink>;
|
|
4557
4679
|
/**
|
|
@@ -5368,6 +5490,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5368
5490
|
connectConfigurationLink?: Array<string> | undefined;
|
|
5369
5491
|
dataCacheNamespace?: Array<string> | undefined;
|
|
5370
5492
|
deployment?: Array<string> | undefined;
|
|
5493
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
5371
5494
|
deploymentCheck?: Array<string> | undefined;
|
|
5372
5495
|
deploymentCheckPreview?: Array<string> | undefined;
|
|
5373
5496
|
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
@@ -5418,6 +5541,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5418
5541
|
projectDeploymentExpiration?: Array<string> | undefined;
|
|
5419
5542
|
projectRollingRelease?: Array<string> | undefined;
|
|
5420
5543
|
projectTier?: Array<string> | undefined;
|
|
5544
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
5421
5545
|
seawallConfig?: Array<string> | undefined;
|
|
5422
5546
|
skewProtection?: Array<string> | undefined;
|
|
5423
5547
|
analytics?: Array<string> | undefined;
|
|
@@ -5425,11 +5549,11 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5425
5549
|
webAnalytics?: Array<string> | undefined;
|
|
5426
5550
|
sharedEnvVarConnection?: Array<string> | undefined;
|
|
5427
5551
|
sonar?: Array<string> | undefined;
|
|
5552
|
+
oauth2Connection?: Array<string> | undefined;
|
|
5428
5553
|
user?: Array<string> | undefined;
|
|
5429
5554
|
userConnection?: Array<string> | undefined;
|
|
5430
5555
|
userSudo?: Array<string> | undefined;
|
|
5431
5556
|
webAuthn?: Array<string> | undefined;
|
|
5432
|
-
oauth2Connection?: Array<string> | undefined;
|
|
5433
5557
|
accessGroup?: Array<string> | undefined;
|
|
5434
5558
|
aliasGlobal?: Array<string> | undefined;
|
|
5435
5559
|
analyticsSampling?: Array<string> | undefined;
|
|
@@ -5442,6 +5566,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5442
5566
|
billingInvoiceLanguage?: Array<string> | undefined;
|
|
5443
5567
|
billingPlan?: Array<string> | undefined;
|
|
5444
5568
|
billingPurchaseOrder?: Array<string> | undefined;
|
|
5569
|
+
billingRefund?: Array<string> | undefined;
|
|
5445
5570
|
billingTaxId?: Array<string> | undefined;
|
|
5446
5571
|
blob?: Array<string> | undefined;
|
|
5447
5572
|
budget?: Array<string> | undefined;
|
|
@@ -5451,6 +5576,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5451
5576
|
concurrentBuilds?: Array<string> | undefined;
|
|
5452
5577
|
connect?: Array<string> | undefined;
|
|
5453
5578
|
connectConfiguration?: Array<string> | undefined;
|
|
5579
|
+
defaultDeploymentProtection?: Array<string> | undefined;
|
|
5454
5580
|
domain?: Array<string> | undefined;
|
|
5455
5581
|
domainAcceptDelegation?: Array<string> | undefined;
|
|
5456
5582
|
domainAuthCodes?: Array<string> | undefined;
|
|
@@ -5483,6 +5609,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5483
5609
|
marketplaceInstallationMember?: Array<string> | undefined;
|
|
5484
5610
|
marketplaceBillingData?: Array<string> | undefined;
|
|
5485
5611
|
marketplaceInvoice?: Array<string> | undefined;
|
|
5612
|
+
marketplaceSettings?: Array<string> | undefined;
|
|
5486
5613
|
marketplaceExperimentationItem?: Array<string> | undefined;
|
|
5487
5614
|
marketplaceExperimentationEdgeConfigData?: Array<string> | undefined;
|
|
5488
5615
|
jobGlobal?: Array<string> | undefined;
|
|
@@ -5509,6 +5636,7 @@ export type UpdateProjectPermissions$Outbound = {
|
|
|
5509
5636
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
5510
5637
|
observabilityConfiguration?: Array<string> | undefined;
|
|
5511
5638
|
observabilityNotebook?: Array<string> | undefined;
|
|
5639
|
+
observabilityFunnel?: Array<string> | undefined;
|
|
5512
5640
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
5513
5641
|
vercelAppInstallation?: Array<string> | undefined;
|
|
5514
5642
|
paymentMethod?: Array<string> | undefined;
|
|
@@ -5792,16 +5920,16 @@ export declare const UpdateProjectTrustedIpsProjectsDeploymentType$outboundSchem
|
|
|
5792
5920
|
export declare namespace UpdateProjectTrustedIpsProjectsDeploymentType$ {
|
|
5793
5921
|
/** @deprecated use `UpdateProjectTrustedIpsProjectsDeploymentType$inboundSchema` instead. */
|
|
5794
5922
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5795
|
-
readonly Production: "production";
|
|
5796
5923
|
readonly Preview: "preview";
|
|
5924
|
+
readonly Production: "production";
|
|
5797
5925
|
readonly All: "all";
|
|
5798
5926
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5799
5927
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5800
5928
|
}>;
|
|
5801
5929
|
/** @deprecated use `UpdateProjectTrustedIpsProjectsDeploymentType$outboundSchema` instead. */
|
|
5802
5930
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5803
|
-
readonly Production: "production";
|
|
5804
5931
|
readonly Preview: "preview";
|
|
5932
|
+
readonly Production: "production";
|
|
5805
5933
|
readonly All: "all";
|
|
5806
5934
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5807
5935
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -5840,16 +5968,16 @@ export declare const UpdateProjectTrustedIpsDeploymentType$outboundSchema: z.Zod
|
|
|
5840
5968
|
export declare namespace UpdateProjectTrustedIpsDeploymentType$ {
|
|
5841
5969
|
/** @deprecated use `UpdateProjectTrustedIpsDeploymentType$inboundSchema` instead. */
|
|
5842
5970
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5843
|
-
readonly Production: "production";
|
|
5844
5971
|
readonly Preview: "preview";
|
|
5972
|
+
readonly Production: "production";
|
|
5845
5973
|
readonly All: "all";
|
|
5846
5974
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5847
5975
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
5848
5976
|
}>;
|
|
5849
5977
|
/** @deprecated use `UpdateProjectTrustedIpsDeploymentType$outboundSchema` instead. */
|
|
5850
5978
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5851
|
-
readonly Production: "production";
|
|
5852
5979
|
readonly Preview: "preview";
|
|
5980
|
+
readonly Production: "production";
|
|
5853
5981
|
readonly All: "all";
|
|
5854
5982
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
5855
5983
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -5990,6 +6118,7 @@ export declare const UpdateProjectGitProviderOptions$inboundSchema: z.ZodType<Up
|
|
|
5990
6118
|
/** @internal */
|
|
5991
6119
|
export type UpdateProjectGitProviderOptions$Outbound = {
|
|
5992
6120
|
createDeployments: string;
|
|
6121
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
5993
6122
|
};
|
|
5994
6123
|
/** @internal */
|
|
5995
6124
|
export declare const UpdateProjectGitProviderOptions$outboundSchema: z.ZodType<UpdateProjectGitProviderOptions$Outbound, z.ZodTypeDef, UpdateProjectGitProviderOptions>;
|
|
@@ -6775,7 +6904,7 @@ export type UpdateProjectResponseBody$Outbound = {
|
|
|
6775
6904
|
id: string;
|
|
6776
6905
|
ipBuckets?: Array<UpdateProjectIpBuckets$Outbound> | undefined;
|
|
6777
6906
|
latestDeployments?: Array<UpdateProjectLatestDeployments$Outbound> | undefined;
|
|
6778
|
-
link?: UpdateProjectLink1$Outbound | UpdateProjectLink2$Outbound | UpdateProjectLink3$Outbound | UpdateProjectLink4$Outbound | undefined;
|
|
6907
|
+
link?: UpdateProjectLink1$Outbound | UpdateProjectLink2$Outbound | UpdateProjectLink3$Outbound | UpdateProjectLink4$Outbound | UpdateProjectLink5$Outbound | undefined;
|
|
6779
6908
|
microfrontends?: UpdateProjectMicrofrontends1$Outbound | UpdateProjectMicrofrontends2$Outbound | undefined;
|
|
6780
6909
|
name: string;
|
|
6781
6910
|
nodeVersion: string;
|
|
@@ -6824,6 +6953,7 @@ export type UpdateProjectResponseBody$Outbound = {
|
|
|
6824
6953
|
oidcTokenConfig?: UpdateProjectProjectsOidcTokenConfig$Outbound | undefined;
|
|
6825
6954
|
tier?: string | undefined;
|
|
6826
6955
|
features?: UpdateProjectFeatures$Outbound | undefined;
|
|
6956
|
+
v0?: boolean | undefined;
|
|
6827
6957
|
};
|
|
6828
6958
|
/** @internal */
|
|
6829
6959
|
export declare const UpdateProjectResponseBody$outboundSchema: z.ZodType<UpdateProjectResponseBody$Outbound, z.ZodTypeDef, UpdateProjectResponseBody>;
|