@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
|
@@ -57,8 +57,8 @@ export type SpeedInsights = {
|
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
export const UpdateProjectDataCacheEnvId2 = {
|
|
60
|
-
Production: "production",
|
|
61
60
|
Preview: "preview",
|
|
61
|
+
Production: "production",
|
|
62
62
|
} as const;
|
|
63
63
|
export type UpdateProjectDataCacheEnvId2 = ClosedEnum<
|
|
64
64
|
typeof UpdateProjectDataCacheEnvId2
|
|
@@ -74,6 +74,7 @@ export type UpdateProjectDataCacheAws = {
|
|
|
74
74
|
export type UpdateProjectDataCacheConnectConfigurations = {
|
|
75
75
|
envId: string | UpdateProjectDataCacheEnvId2;
|
|
76
76
|
connectConfigurationId: string;
|
|
77
|
+
dc?: string | undefined;
|
|
77
78
|
passive: boolean;
|
|
78
79
|
buildsEnabled: boolean;
|
|
79
80
|
aws?: UpdateProjectDataCacheAws | undefined;
|
|
@@ -461,8 +462,8 @@ export type Env = {
|
|
|
461
462
|
* The type of environment (production, preview, or development)
|
|
462
463
|
*/
|
|
463
464
|
export const UpdateProjectDataCacheType = {
|
|
464
|
-
Production: "production",
|
|
465
465
|
Preview: "preview",
|
|
466
|
+
Production: "production",
|
|
466
467
|
Development: "development",
|
|
467
468
|
} as const;
|
|
468
469
|
/**
|
|
@@ -629,6 +630,7 @@ export const UpdateProjectDataCacheFramework = {
|
|
|
629
630
|
Sanity: "sanity",
|
|
630
631
|
Storybook: "storybook",
|
|
631
632
|
Nitro: "nitro",
|
|
633
|
+
Hono: "hono",
|
|
632
634
|
} as const;
|
|
633
635
|
export type UpdateProjectDataCacheFramework = ClosedEnum<
|
|
634
636
|
typeof UpdateProjectDataCacheFramework
|
|
@@ -799,14 +801,14 @@ export type LatestDeployments = {
|
|
|
799
801
|
withCache?: boolean | undefined;
|
|
800
802
|
};
|
|
801
803
|
|
|
802
|
-
export const
|
|
804
|
+
export const UpdateProjectDataCacheLinkProjectsResponse200Type = {
|
|
803
805
|
GithubCustomHost: "github-custom-host",
|
|
804
806
|
} as const;
|
|
805
|
-
export type
|
|
806
|
-
typeof
|
|
807
|
+
export type UpdateProjectDataCacheLinkProjectsResponse200Type = ClosedEnum<
|
|
808
|
+
typeof UpdateProjectDataCacheLinkProjectsResponse200Type
|
|
807
809
|
>;
|
|
808
810
|
|
|
809
|
-
export type
|
|
811
|
+
export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks = {
|
|
810
812
|
createdAt?: number | undefined;
|
|
811
813
|
id: string;
|
|
812
814
|
name: string;
|
|
@@ -814,7 +816,7 @@ export type UpdateProjectDataCacheLinkProjectsDeployHooks = {
|
|
|
814
816
|
url: string;
|
|
815
817
|
};
|
|
816
818
|
|
|
817
|
-
export type
|
|
819
|
+
export type Link5 = {
|
|
818
820
|
org?: string | undefined;
|
|
819
821
|
/**
|
|
820
822
|
* 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.
|
|
@@ -822,24 +824,24 @@ export type Link4 = {
|
|
|
822
824
|
repoOwnerId?: number | undefined;
|
|
823
825
|
repo?: string | undefined;
|
|
824
826
|
repoId?: number | undefined;
|
|
825
|
-
type?:
|
|
827
|
+
type?: UpdateProjectDataCacheLinkProjectsResponse200Type | undefined;
|
|
826
828
|
host?: string | undefined;
|
|
827
829
|
createdAt?: number | undefined;
|
|
828
|
-
deployHooks: Array<
|
|
830
|
+
deployHooks: Array<UpdateProjectDataCacheLinkProjectsResponseDeployHooks>;
|
|
829
831
|
gitCredentialId?: string | undefined;
|
|
830
832
|
updatedAt?: number | undefined;
|
|
831
833
|
sourceless?: boolean | undefined;
|
|
832
834
|
productionBranch?: string | undefined;
|
|
833
835
|
};
|
|
834
836
|
|
|
835
|
-
export const
|
|
837
|
+
export const UpdateProjectDataCacheLinkProjectsResponseType = {
|
|
836
838
|
Bitbucket: "bitbucket",
|
|
837
839
|
} as const;
|
|
838
|
-
export type
|
|
839
|
-
typeof
|
|
840
|
+
export type UpdateProjectDataCacheLinkProjectsResponseType = ClosedEnum<
|
|
841
|
+
typeof UpdateProjectDataCacheLinkProjectsResponseType
|
|
840
842
|
>;
|
|
841
843
|
|
|
842
|
-
export type
|
|
844
|
+
export type UpdateProjectDataCacheLinkProjectsDeployHooks = {
|
|
843
845
|
createdAt?: number | undefined;
|
|
844
846
|
id: string;
|
|
845
847
|
name: string;
|
|
@@ -847,29 +849,29 @@ export type UpdateProjectDataCacheLinkDeployHooks = {
|
|
|
847
849
|
url: string;
|
|
848
850
|
};
|
|
849
851
|
|
|
850
|
-
export type
|
|
852
|
+
export type Link4 = {
|
|
851
853
|
name?: string | undefined;
|
|
852
854
|
slug?: string | undefined;
|
|
853
855
|
owner?: string | undefined;
|
|
854
|
-
type?:
|
|
856
|
+
type?: UpdateProjectDataCacheLinkProjectsResponseType | undefined;
|
|
855
857
|
uuid?: string | undefined;
|
|
856
858
|
workspaceUuid?: string | undefined;
|
|
857
859
|
createdAt?: number | undefined;
|
|
858
|
-
deployHooks: Array<
|
|
860
|
+
deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks>;
|
|
859
861
|
gitCredentialId?: string | undefined;
|
|
860
862
|
updatedAt?: number | undefined;
|
|
861
863
|
sourceless?: boolean | undefined;
|
|
862
864
|
productionBranch?: string | undefined;
|
|
863
865
|
};
|
|
864
866
|
|
|
865
|
-
export const
|
|
867
|
+
export const UpdateProjectDataCacheLinkProjectsType = {
|
|
866
868
|
Gitlab: "gitlab",
|
|
867
869
|
} as const;
|
|
868
|
-
export type
|
|
869
|
-
typeof
|
|
870
|
+
export type UpdateProjectDataCacheLinkProjectsType = ClosedEnum<
|
|
871
|
+
typeof UpdateProjectDataCacheLinkProjectsType
|
|
870
872
|
>;
|
|
871
873
|
|
|
872
|
-
export type
|
|
874
|
+
export type UpdateProjectDataCacheLinkDeployHooks = {
|
|
873
875
|
createdAt?: number | undefined;
|
|
874
876
|
id: string;
|
|
875
877
|
name: string;
|
|
@@ -877,7 +879,7 @@ export type LinkDeployHooks = {
|
|
|
877
879
|
url: string;
|
|
878
880
|
};
|
|
879
881
|
|
|
880
|
-
export type
|
|
882
|
+
export type Link3 = {
|
|
881
883
|
projectId?: string | undefined;
|
|
882
884
|
projectName?: string | undefined;
|
|
883
885
|
projectNameWithNamespace?: string | undefined;
|
|
@@ -887,11 +889,43 @@ export type Link2 = {
|
|
|
887
889
|
*/
|
|
888
890
|
projectOwnerId?: number | undefined;
|
|
889
891
|
projectUrl?: string | undefined;
|
|
892
|
+
type?: UpdateProjectDataCacheLinkProjectsType | undefined;
|
|
893
|
+
createdAt?: number | undefined;
|
|
894
|
+
deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks>;
|
|
895
|
+
gitCredentialId?: string | undefined;
|
|
896
|
+
updatedAt?: number | undefined;
|
|
897
|
+
sourceless?: boolean | undefined;
|
|
898
|
+
productionBranch?: string | undefined;
|
|
899
|
+
};
|
|
900
|
+
|
|
901
|
+
export const UpdateProjectDataCacheLinkType = {
|
|
902
|
+
GithubLimited: "github-limited",
|
|
903
|
+
} as const;
|
|
904
|
+
export type UpdateProjectDataCacheLinkType = ClosedEnum<
|
|
905
|
+
typeof UpdateProjectDataCacheLinkType
|
|
906
|
+
>;
|
|
907
|
+
|
|
908
|
+
export type LinkDeployHooks = {
|
|
909
|
+
createdAt?: number | undefined;
|
|
910
|
+
id: string;
|
|
911
|
+
name: string;
|
|
912
|
+
ref: string;
|
|
913
|
+
url: string;
|
|
914
|
+
};
|
|
915
|
+
|
|
916
|
+
export type Link2 = {
|
|
890
917
|
type?: UpdateProjectDataCacheLinkType | undefined;
|
|
891
918
|
createdAt?: number | undefined;
|
|
919
|
+
updatedAt?: number | undefined;
|
|
920
|
+
org?: string | undefined;
|
|
921
|
+
/**
|
|
922
|
+
* 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.
|
|
923
|
+
*/
|
|
924
|
+
repoOwnerId?: number | undefined;
|
|
925
|
+
repo?: string | undefined;
|
|
926
|
+
repoId?: number | undefined;
|
|
892
927
|
deployHooks: Array<LinkDeployHooks>;
|
|
893
928
|
gitCredentialId?: string | undefined;
|
|
894
|
-
updatedAt?: number | undefined;
|
|
895
929
|
sourceless?: boolean | undefined;
|
|
896
930
|
productionBranch?: string | undefined;
|
|
897
931
|
};
|
|
@@ -926,7 +960,7 @@ export type Link1 = {
|
|
|
926
960
|
productionBranch?: string | undefined;
|
|
927
961
|
};
|
|
928
962
|
|
|
929
|
-
export type Link = Link1 | Link2 | Link3 | Link4;
|
|
963
|
+
export type Link = Link1 | Link2 | Link3 | Link4 | Link5;
|
|
930
964
|
|
|
931
965
|
export type UpdateProjectDataCacheMicrofrontends2 = {
|
|
932
966
|
updatedAt: number;
|
|
@@ -1279,11 +1313,11 @@ export type Targets = {
|
|
|
1279
1313
|
};
|
|
1280
1314
|
|
|
1281
1315
|
export type Permissions = {
|
|
1316
|
+
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1282
1317
|
user?: Array<ACLAction> | undefined;
|
|
1283
1318
|
userConnection?: Array<ACLAction> | undefined;
|
|
1284
1319
|
userSudo?: Array<ACLAction> | undefined;
|
|
1285
1320
|
webAuthn?: Array<ACLAction> | undefined;
|
|
1286
|
-
oauth2Connection?: Array<ACLAction> | undefined;
|
|
1287
1321
|
accessGroup?: Array<ACLAction> | undefined;
|
|
1288
1322
|
aliasGlobal?: Array<ACLAction> | undefined;
|
|
1289
1323
|
analyticsSampling?: Array<ACLAction> | undefined;
|
|
@@ -1296,6 +1330,7 @@ export type Permissions = {
|
|
|
1296
1330
|
billingInvoiceLanguage?: Array<ACLAction> | undefined;
|
|
1297
1331
|
billingPlan?: Array<ACLAction> | undefined;
|
|
1298
1332
|
billingPurchaseOrder?: Array<ACLAction> | undefined;
|
|
1333
|
+
billingRefund?: Array<ACLAction> | undefined;
|
|
1299
1334
|
billingTaxId?: Array<ACLAction> | undefined;
|
|
1300
1335
|
blob?: Array<ACLAction> | undefined;
|
|
1301
1336
|
budget?: Array<ACLAction> | undefined;
|
|
@@ -1305,6 +1340,7 @@ export type Permissions = {
|
|
|
1305
1340
|
concurrentBuilds?: Array<ACLAction> | undefined;
|
|
1306
1341
|
connect?: Array<ACLAction> | undefined;
|
|
1307
1342
|
connectConfiguration?: Array<ACLAction> | undefined;
|
|
1343
|
+
defaultDeploymentProtection?: Array<ACLAction> | undefined;
|
|
1308
1344
|
domain?: Array<ACLAction> | undefined;
|
|
1309
1345
|
domainAcceptDelegation?: Array<ACLAction> | undefined;
|
|
1310
1346
|
domainAuthCodes?: Array<ACLAction> | undefined;
|
|
@@ -1337,6 +1373,7 @@ export type Permissions = {
|
|
|
1337
1373
|
marketplaceInstallationMember?: Array<ACLAction> | undefined;
|
|
1338
1374
|
marketplaceBillingData?: Array<ACLAction> | undefined;
|
|
1339
1375
|
marketplaceInvoice?: Array<ACLAction> | undefined;
|
|
1376
|
+
marketplaceSettings?: Array<ACLAction> | undefined;
|
|
1340
1377
|
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
|
|
1341
1378
|
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
|
|
1342
1379
|
jobGlobal?: Array<ACLAction> | undefined;
|
|
@@ -1363,6 +1400,7 @@ export type Permissions = {
|
|
|
1363
1400
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1364
1401
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1365
1402
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1403
|
+
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1366
1404
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1367
1405
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1368
1406
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
@@ -1426,6 +1464,7 @@ export type Permissions = {
|
|
|
1426
1464
|
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1427
1465
|
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1428
1466
|
deployment?: Array<ACLAction> | undefined;
|
|
1467
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1429
1468
|
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1430
1469
|
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1431
1470
|
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
@@ -1476,6 +1515,7 @@ export type Permissions = {
|
|
|
1476
1515
|
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1477
1516
|
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1478
1517
|
projectTier?: Array<ACLAction> | undefined;
|
|
1518
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1479
1519
|
seawallConfig?: Array<ACLAction> | undefined;
|
|
1480
1520
|
skewProtection?: Array<ACLAction> | undefined;
|
|
1481
1521
|
analytics?: Array<ACLAction> | undefined;
|
|
@@ -1545,8 +1585,8 @@ export type ProtectionBypass1 = {
|
|
|
1545
1585
|
export type ProtectionBypass = ProtectionBypass1 | ProtectionBypass2;
|
|
1546
1586
|
|
|
1547
1587
|
export const UpdateProjectDataCacheTrustedIpsDeploymentType = {
|
|
1548
|
-
Production: "production",
|
|
1549
1588
|
Preview: "preview",
|
|
1589
|
+
Production: "production",
|
|
1550
1590
|
All: "all",
|
|
1551
1591
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1552
1592
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -1560,8 +1600,8 @@ export type TrustedIps2 = {
|
|
|
1560
1600
|
};
|
|
1561
1601
|
|
|
1562
1602
|
export const TrustedIpsDeploymentType = {
|
|
1563
|
-
Production: "production",
|
|
1564
1603
|
Preview: "preview",
|
|
1604
|
+
Production: "production",
|
|
1565
1605
|
All: "all",
|
|
1566
1606
|
ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
|
|
1567
1607
|
AllExceptCustomDomains: "all_except_custom_domains",
|
|
@@ -1619,6 +1659,10 @@ export type GitProviderOptions = {
|
|
|
1619
1659
|
* 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
|
|
1620
1660
|
*/
|
|
1621
1661
|
createDeployments: CreateDeployments;
|
|
1662
|
+
/**
|
|
1663
|
+
* 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
|
|
1664
|
+
*/
|
|
1665
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
1622
1666
|
};
|
|
1623
1667
|
|
|
1624
1668
|
export type UpdateProjectDataCacheWebAnalytics = {
|
|
@@ -1917,7 +1961,7 @@ export type UpdateProjectDataCacheResponseBody = {
|
|
|
1917
1961
|
id: string;
|
|
1918
1962
|
ipBuckets?: Array<UpdateProjectDataCacheIpBuckets> | undefined;
|
|
1919
1963
|
latestDeployments?: Array<LatestDeployments> | undefined;
|
|
1920
|
-
link?: Link1 | Link2 | Link3 | Link4 | undefined;
|
|
1964
|
+
link?: Link1 | Link2 | Link3 | Link4 | Link5 | undefined;
|
|
1921
1965
|
microfrontends?:
|
|
1922
1966
|
| UpdateProjectDataCacheMicrofrontends1
|
|
1923
1967
|
| UpdateProjectDataCacheMicrofrontends2
|
|
@@ -1976,6 +2020,7 @@ export type UpdateProjectDataCacheResponseBody = {
|
|
|
1976
2020
|
oidcTokenConfig?: UpdateProjectDataCacheOidcTokenConfig | undefined;
|
|
1977
2021
|
tier?: UpdateProjectDataCacheTier | undefined;
|
|
1978
2022
|
features?: Features | undefined;
|
|
2023
|
+
v0?: boolean | undefined;
|
|
1979
2024
|
};
|
|
1980
2025
|
|
|
1981
2026
|
/** @internal */
|
|
@@ -2378,6 +2423,7 @@ export const UpdateProjectDataCacheConnectConfigurations$inboundSchema:
|
|
|
2378
2423
|
> = z.object({
|
|
2379
2424
|
envId: z.union([z.string(), UpdateProjectDataCacheEnvId2$inboundSchema]),
|
|
2380
2425
|
connectConfigurationId: z.string(),
|
|
2426
|
+
dc: z.string().optional(),
|
|
2381
2427
|
passive: z.boolean(),
|
|
2382
2428
|
buildsEnabled: z.boolean(),
|
|
2383
2429
|
aws: z.lazy(() => UpdateProjectDataCacheAws$inboundSchema).optional(),
|
|
@@ -2389,6 +2435,7 @@ export const UpdateProjectDataCacheConnectConfigurations$inboundSchema:
|
|
|
2389
2435
|
export type UpdateProjectDataCacheConnectConfigurations$Outbound = {
|
|
2390
2436
|
envId: string | string;
|
|
2391
2437
|
connectConfigurationId: string;
|
|
2438
|
+
dc?: string | undefined;
|
|
2392
2439
|
passive: boolean;
|
|
2393
2440
|
buildsEnabled: boolean;
|
|
2394
2441
|
aws?: UpdateProjectDataCacheAws$Outbound | undefined;
|
|
@@ -2405,6 +2452,7 @@ export const UpdateProjectDataCacheConnectConfigurations$outboundSchema:
|
|
|
2405
2452
|
> = z.object({
|
|
2406
2453
|
envId: z.union([z.string(), UpdateProjectDataCacheEnvId2$outboundSchema]),
|
|
2407
2454
|
connectConfigurationId: z.string(),
|
|
2455
|
+
dc: z.string().optional(),
|
|
2408
2456
|
passive: z.boolean(),
|
|
2409
2457
|
buildsEnabled: z.boolean(),
|
|
2410
2458
|
aws: z.lazy(() => UpdateProjectDataCacheAws$outboundSchema).optional(),
|
|
@@ -5600,6 +5648,201 @@ export function latestDeploymentsFromJSON(
|
|
|
5600
5648
|
);
|
|
5601
5649
|
}
|
|
5602
5650
|
|
|
5651
|
+
/** @internal */
|
|
5652
|
+
export const UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema:
|
|
5653
|
+
z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type> = z
|
|
5654
|
+
.nativeEnum(UpdateProjectDataCacheLinkProjectsResponse200Type);
|
|
5655
|
+
|
|
5656
|
+
/** @internal */
|
|
5657
|
+
export const UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema:
|
|
5658
|
+
z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type> =
|
|
5659
|
+
UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema;
|
|
5660
|
+
|
|
5661
|
+
/**
|
|
5662
|
+
* @internal
|
|
5663
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5664
|
+
*/
|
|
5665
|
+
export namespace UpdateProjectDataCacheLinkProjectsResponse200Type$ {
|
|
5666
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema` instead. */
|
|
5667
|
+
export const inboundSchema =
|
|
5668
|
+
UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema;
|
|
5669
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema` instead. */
|
|
5670
|
+
export const outboundSchema =
|
|
5671
|
+
UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema;
|
|
5672
|
+
}
|
|
5673
|
+
|
|
5674
|
+
/** @internal */
|
|
5675
|
+
export const UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema:
|
|
5676
|
+
z.ZodType<
|
|
5677
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks,
|
|
5678
|
+
z.ZodTypeDef,
|
|
5679
|
+
unknown
|
|
5680
|
+
> = z.object({
|
|
5681
|
+
createdAt: z.number().optional(),
|
|
5682
|
+
id: z.string(),
|
|
5683
|
+
name: z.string(),
|
|
5684
|
+
ref: z.string(),
|
|
5685
|
+
url: z.string(),
|
|
5686
|
+
});
|
|
5687
|
+
|
|
5688
|
+
/** @internal */
|
|
5689
|
+
export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound = {
|
|
5690
|
+
createdAt?: number | undefined;
|
|
5691
|
+
id: string;
|
|
5692
|
+
name: string;
|
|
5693
|
+
ref: string;
|
|
5694
|
+
url: string;
|
|
5695
|
+
};
|
|
5696
|
+
|
|
5697
|
+
/** @internal */
|
|
5698
|
+
export const UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema:
|
|
5699
|
+
z.ZodType<
|
|
5700
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound,
|
|
5701
|
+
z.ZodTypeDef,
|
|
5702
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks
|
|
5703
|
+
> = z.object({
|
|
5704
|
+
createdAt: z.number().optional(),
|
|
5705
|
+
id: z.string(),
|
|
5706
|
+
name: z.string(),
|
|
5707
|
+
ref: z.string(),
|
|
5708
|
+
url: z.string(),
|
|
5709
|
+
});
|
|
5710
|
+
|
|
5711
|
+
/**
|
|
5712
|
+
* @internal
|
|
5713
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5714
|
+
*/
|
|
5715
|
+
export namespace UpdateProjectDataCacheLinkProjectsResponseDeployHooks$ {
|
|
5716
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema` instead. */
|
|
5717
|
+
export const inboundSchema =
|
|
5718
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema;
|
|
5719
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema` instead. */
|
|
5720
|
+
export const outboundSchema =
|
|
5721
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema;
|
|
5722
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound` instead. */
|
|
5723
|
+
export type Outbound =
|
|
5724
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound;
|
|
5725
|
+
}
|
|
5726
|
+
|
|
5727
|
+
export function updateProjectDataCacheLinkProjectsResponseDeployHooksToJSON(
|
|
5728
|
+
updateProjectDataCacheLinkProjectsResponseDeployHooks:
|
|
5729
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks,
|
|
5730
|
+
): string {
|
|
5731
|
+
return JSON.stringify(
|
|
5732
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema.parse(
|
|
5733
|
+
updateProjectDataCacheLinkProjectsResponseDeployHooks,
|
|
5734
|
+
),
|
|
5735
|
+
);
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
export function updateProjectDataCacheLinkProjectsResponseDeployHooksFromJSON(
|
|
5739
|
+
jsonString: string,
|
|
5740
|
+
): SafeParseResult<
|
|
5741
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks,
|
|
5742
|
+
SDKValidationError
|
|
5743
|
+
> {
|
|
5744
|
+
return safeParse(
|
|
5745
|
+
jsonString,
|
|
5746
|
+
(x) =>
|
|
5747
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema.parse(
|
|
5748
|
+
JSON.parse(x),
|
|
5749
|
+
),
|
|
5750
|
+
`Failed to parse 'UpdateProjectDataCacheLinkProjectsResponseDeployHooks' from JSON`,
|
|
5751
|
+
);
|
|
5752
|
+
}
|
|
5753
|
+
|
|
5754
|
+
/** @internal */
|
|
5755
|
+
export const Link5$inboundSchema: z.ZodType<Link5, z.ZodTypeDef, unknown> = z
|
|
5756
|
+
.object({
|
|
5757
|
+
org: z.string().optional(),
|
|
5758
|
+
repoOwnerId: z.number().optional(),
|
|
5759
|
+
repo: z.string().optional(),
|
|
5760
|
+
repoId: z.number().optional(),
|
|
5761
|
+
type: UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema
|
|
5762
|
+
.optional(),
|
|
5763
|
+
host: z.string().optional(),
|
|
5764
|
+
createdAt: z.number().optional(),
|
|
5765
|
+
deployHooks: z.array(
|
|
5766
|
+
z.lazy(() =>
|
|
5767
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema
|
|
5768
|
+
),
|
|
5769
|
+
),
|
|
5770
|
+
gitCredentialId: z.string().optional(),
|
|
5771
|
+
updatedAt: z.number().optional(),
|
|
5772
|
+
sourceless: z.boolean().optional(),
|
|
5773
|
+
productionBranch: z.string().optional(),
|
|
5774
|
+
});
|
|
5775
|
+
|
|
5776
|
+
/** @internal */
|
|
5777
|
+
export type Link5$Outbound = {
|
|
5778
|
+
org?: string | undefined;
|
|
5779
|
+
repoOwnerId?: number | undefined;
|
|
5780
|
+
repo?: string | undefined;
|
|
5781
|
+
repoId?: number | undefined;
|
|
5782
|
+
type?: string | undefined;
|
|
5783
|
+
host?: string | undefined;
|
|
5784
|
+
createdAt?: number | undefined;
|
|
5785
|
+
deployHooks: Array<
|
|
5786
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound
|
|
5787
|
+
>;
|
|
5788
|
+
gitCredentialId?: string | undefined;
|
|
5789
|
+
updatedAt?: number | undefined;
|
|
5790
|
+
sourceless?: boolean | undefined;
|
|
5791
|
+
productionBranch?: string | undefined;
|
|
5792
|
+
};
|
|
5793
|
+
|
|
5794
|
+
/** @internal */
|
|
5795
|
+
export const Link5$outboundSchema: z.ZodType<
|
|
5796
|
+
Link5$Outbound,
|
|
5797
|
+
z.ZodTypeDef,
|
|
5798
|
+
Link5
|
|
5799
|
+
> = z.object({
|
|
5800
|
+
org: z.string().optional(),
|
|
5801
|
+
repoOwnerId: z.number().optional(),
|
|
5802
|
+
repo: z.string().optional(),
|
|
5803
|
+
repoId: z.number().optional(),
|
|
5804
|
+
type: UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema
|
|
5805
|
+
.optional(),
|
|
5806
|
+
host: z.string().optional(),
|
|
5807
|
+
createdAt: z.number().optional(),
|
|
5808
|
+
deployHooks: z.array(
|
|
5809
|
+
z.lazy(() =>
|
|
5810
|
+
UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema
|
|
5811
|
+
),
|
|
5812
|
+
),
|
|
5813
|
+
gitCredentialId: z.string().optional(),
|
|
5814
|
+
updatedAt: z.number().optional(),
|
|
5815
|
+
sourceless: z.boolean().optional(),
|
|
5816
|
+
productionBranch: z.string().optional(),
|
|
5817
|
+
});
|
|
5818
|
+
|
|
5819
|
+
/**
|
|
5820
|
+
* @internal
|
|
5821
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5822
|
+
*/
|
|
5823
|
+
export namespace Link5$ {
|
|
5824
|
+
/** @deprecated use `Link5$inboundSchema` instead. */
|
|
5825
|
+
export const inboundSchema = Link5$inboundSchema;
|
|
5826
|
+
/** @deprecated use `Link5$outboundSchema` instead. */
|
|
5827
|
+
export const outboundSchema = Link5$outboundSchema;
|
|
5828
|
+
/** @deprecated use `Link5$Outbound` instead. */
|
|
5829
|
+
export type Outbound = Link5$Outbound;
|
|
5830
|
+
}
|
|
5831
|
+
|
|
5832
|
+
export function link5ToJSON(link5: Link5): string {
|
|
5833
|
+
return JSON.stringify(Link5$outboundSchema.parse(link5));
|
|
5834
|
+
}
|
|
5835
|
+
|
|
5836
|
+
export function link5FromJSON(
|
|
5837
|
+
jsonString: string,
|
|
5838
|
+
): SafeParseResult<Link5, SDKValidationError> {
|
|
5839
|
+
return safeParse(
|
|
5840
|
+
jsonString,
|
|
5841
|
+
(x) => Link5$inboundSchema.parse(JSON.parse(x)),
|
|
5842
|
+
`Failed to parse 'Link5' from JSON`,
|
|
5843
|
+
);
|
|
5844
|
+
}
|
|
5845
|
+
|
|
5603
5846
|
/** @internal */
|
|
5604
5847
|
export const UpdateProjectDataCacheLinkProjectsResponseType$inboundSchema:
|
|
5605
5848
|
z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponseType> = z
|
|
@@ -5705,13 +5948,13 @@ export function updateProjectDataCacheLinkProjectsDeployHooksFromJSON(
|
|
|
5705
5948
|
/** @internal */
|
|
5706
5949
|
export const Link4$inboundSchema: z.ZodType<Link4, z.ZodTypeDef, unknown> = z
|
|
5707
5950
|
.object({
|
|
5708
|
-
|
|
5709
|
-
|
|
5710
|
-
|
|
5711
|
-
repoId: z.number().optional(),
|
|
5951
|
+
name: z.string().optional(),
|
|
5952
|
+
slug: z.string().optional(),
|
|
5953
|
+
owner: z.string().optional(),
|
|
5712
5954
|
type: UpdateProjectDataCacheLinkProjectsResponseType$inboundSchema
|
|
5713
5955
|
.optional(),
|
|
5714
|
-
|
|
5956
|
+
uuid: z.string().optional(),
|
|
5957
|
+
workspaceUuid: z.string().optional(),
|
|
5715
5958
|
createdAt: z.number().optional(),
|
|
5716
5959
|
deployHooks: z.array(
|
|
5717
5960
|
z.lazy(() => UpdateProjectDataCacheLinkProjectsDeployHooks$inboundSchema),
|
|
@@ -5724,12 +5967,12 @@ export const Link4$inboundSchema: z.ZodType<Link4, z.ZodTypeDef, unknown> = z
|
|
|
5724
5967
|
|
|
5725
5968
|
/** @internal */
|
|
5726
5969
|
export type Link4$Outbound = {
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
repoId?: number | undefined;
|
|
5970
|
+
name?: string | undefined;
|
|
5971
|
+
slug?: string | undefined;
|
|
5972
|
+
owner?: string | undefined;
|
|
5731
5973
|
type?: string | undefined;
|
|
5732
|
-
|
|
5974
|
+
uuid?: string | undefined;
|
|
5975
|
+
workspaceUuid?: string | undefined;
|
|
5733
5976
|
createdAt?: number | undefined;
|
|
5734
5977
|
deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks$Outbound>;
|
|
5735
5978
|
gitCredentialId?: string | undefined;
|
|
@@ -5744,13 +5987,13 @@ export const Link4$outboundSchema: z.ZodType<
|
|
|
5744
5987
|
z.ZodTypeDef,
|
|
5745
5988
|
Link4
|
|
5746
5989
|
> = z.object({
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
repoId: z.number().optional(),
|
|
5990
|
+
name: z.string().optional(),
|
|
5991
|
+
slug: z.string().optional(),
|
|
5992
|
+
owner: z.string().optional(),
|
|
5751
5993
|
type: UpdateProjectDataCacheLinkProjectsResponseType$outboundSchema
|
|
5752
5994
|
.optional(),
|
|
5753
|
-
|
|
5995
|
+
uuid: z.string().optional(),
|
|
5996
|
+
workspaceUuid: z.string().optional(),
|
|
5754
5997
|
createdAt: z.number().optional(),
|
|
5755
5998
|
deployHooks: z.array(
|
|
5756
5999
|
z.lazy(() => UpdateProjectDataCacheLinkProjectsDeployHooks$outboundSchema),
|
|
@@ -5886,12 +6129,13 @@ export function updateProjectDataCacheLinkDeployHooksFromJSON(
|
|
|
5886
6129
|
/** @internal */
|
|
5887
6130
|
export const Link3$inboundSchema: z.ZodType<Link3, z.ZodTypeDef, unknown> = z
|
|
5888
6131
|
.object({
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
6132
|
+
projectId: z.string().optional(),
|
|
6133
|
+
projectName: z.string().optional(),
|
|
6134
|
+
projectNameWithNamespace: z.string().optional(),
|
|
6135
|
+
projectNamespace: z.string().optional(),
|
|
6136
|
+
projectOwnerId: z.number().optional(),
|
|
6137
|
+
projectUrl: z.string().optional(),
|
|
5892
6138
|
type: UpdateProjectDataCacheLinkProjectsType$inboundSchema.optional(),
|
|
5893
|
-
uuid: z.string().optional(),
|
|
5894
|
-
workspaceUuid: z.string().optional(),
|
|
5895
6139
|
createdAt: z.number().optional(),
|
|
5896
6140
|
deployHooks: z.array(
|
|
5897
6141
|
z.lazy(() => UpdateProjectDataCacheLinkDeployHooks$inboundSchema),
|
|
@@ -5904,12 +6148,13 @@ export const Link3$inboundSchema: z.ZodType<Link3, z.ZodTypeDef, unknown> = z
|
|
|
5904
6148
|
|
|
5905
6149
|
/** @internal */
|
|
5906
6150
|
export type Link3$Outbound = {
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
6151
|
+
projectId?: string | undefined;
|
|
6152
|
+
projectName?: string | undefined;
|
|
6153
|
+
projectNameWithNamespace?: string | undefined;
|
|
6154
|
+
projectNamespace?: string | undefined;
|
|
6155
|
+
projectOwnerId?: number | undefined;
|
|
6156
|
+
projectUrl?: string | undefined;
|
|
5910
6157
|
type?: string | undefined;
|
|
5911
|
-
uuid?: string | undefined;
|
|
5912
|
-
workspaceUuid?: string | undefined;
|
|
5913
6158
|
createdAt?: number | undefined;
|
|
5914
6159
|
deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks$Outbound>;
|
|
5915
6160
|
gitCredentialId?: string | undefined;
|
|
@@ -5924,12 +6169,13 @@ export const Link3$outboundSchema: z.ZodType<
|
|
|
5924
6169
|
z.ZodTypeDef,
|
|
5925
6170
|
Link3
|
|
5926
6171
|
> = z.object({
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
6172
|
+
projectId: z.string().optional(),
|
|
6173
|
+
projectName: z.string().optional(),
|
|
6174
|
+
projectNameWithNamespace: z.string().optional(),
|
|
6175
|
+
projectNamespace: z.string().optional(),
|
|
6176
|
+
projectOwnerId: z.number().optional(),
|
|
6177
|
+
projectUrl: z.string().optional(),
|
|
5930
6178
|
type: UpdateProjectDataCacheLinkProjectsType$outboundSchema.optional(),
|
|
5931
|
-
uuid: z.string().optional(),
|
|
5932
|
-
workspaceUuid: z.string().optional(),
|
|
5933
6179
|
createdAt: z.number().optional(),
|
|
5934
6180
|
deployHooks: z.array(
|
|
5935
6181
|
z.lazy(() => UpdateProjectDataCacheLinkDeployHooks$outboundSchema),
|
|
@@ -6055,34 +6301,30 @@ export function linkDeployHooksFromJSON(
|
|
|
6055
6301
|
/** @internal */
|
|
6056
6302
|
export const Link2$inboundSchema: z.ZodType<Link2, z.ZodTypeDef, unknown> = z
|
|
6057
6303
|
.object({
|
|
6058
|
-
projectId: z.string().optional(),
|
|
6059
|
-
projectName: z.string().optional(),
|
|
6060
|
-
projectNameWithNamespace: z.string().optional(),
|
|
6061
|
-
projectNamespace: z.string().optional(),
|
|
6062
|
-
projectOwnerId: z.number().optional(),
|
|
6063
|
-
projectUrl: z.string().optional(),
|
|
6064
6304
|
type: UpdateProjectDataCacheLinkType$inboundSchema.optional(),
|
|
6065
6305
|
createdAt: z.number().optional(),
|
|
6306
|
+
updatedAt: z.number().optional(),
|
|
6307
|
+
org: z.string().optional(),
|
|
6308
|
+
repoOwnerId: z.number().optional(),
|
|
6309
|
+
repo: z.string().optional(),
|
|
6310
|
+
repoId: z.number().optional(),
|
|
6066
6311
|
deployHooks: z.array(z.lazy(() => LinkDeployHooks$inboundSchema)),
|
|
6067
6312
|
gitCredentialId: z.string().optional(),
|
|
6068
|
-
updatedAt: z.number().optional(),
|
|
6069
6313
|
sourceless: z.boolean().optional(),
|
|
6070
6314
|
productionBranch: z.string().optional(),
|
|
6071
6315
|
});
|
|
6072
6316
|
|
|
6073
6317
|
/** @internal */
|
|
6074
6318
|
export type Link2$Outbound = {
|
|
6075
|
-
projectId?: string | undefined;
|
|
6076
|
-
projectName?: string | undefined;
|
|
6077
|
-
projectNameWithNamespace?: string | undefined;
|
|
6078
|
-
projectNamespace?: string | undefined;
|
|
6079
|
-
projectOwnerId?: number | undefined;
|
|
6080
|
-
projectUrl?: string | undefined;
|
|
6081
6319
|
type?: string | undefined;
|
|
6082
6320
|
createdAt?: number | undefined;
|
|
6321
|
+
updatedAt?: number | undefined;
|
|
6322
|
+
org?: string | undefined;
|
|
6323
|
+
repoOwnerId?: number | undefined;
|
|
6324
|
+
repo?: string | undefined;
|
|
6325
|
+
repoId?: number | undefined;
|
|
6083
6326
|
deployHooks: Array<LinkDeployHooks$Outbound>;
|
|
6084
6327
|
gitCredentialId?: string | undefined;
|
|
6085
|
-
updatedAt?: number | undefined;
|
|
6086
6328
|
sourceless?: boolean | undefined;
|
|
6087
6329
|
productionBranch?: string | undefined;
|
|
6088
6330
|
};
|
|
@@ -6093,17 +6335,15 @@ export const Link2$outboundSchema: z.ZodType<
|
|
|
6093
6335
|
z.ZodTypeDef,
|
|
6094
6336
|
Link2
|
|
6095
6337
|
> = z.object({
|
|
6096
|
-
projectId: z.string().optional(),
|
|
6097
|
-
projectName: z.string().optional(),
|
|
6098
|
-
projectNameWithNamespace: z.string().optional(),
|
|
6099
|
-
projectNamespace: z.string().optional(),
|
|
6100
|
-
projectOwnerId: z.number().optional(),
|
|
6101
|
-
projectUrl: z.string().optional(),
|
|
6102
6338
|
type: UpdateProjectDataCacheLinkType$outboundSchema.optional(),
|
|
6103
6339
|
createdAt: z.number().optional(),
|
|
6340
|
+
updatedAt: z.number().optional(),
|
|
6341
|
+
org: z.string().optional(),
|
|
6342
|
+
repoOwnerId: z.number().optional(),
|
|
6343
|
+
repo: z.string().optional(),
|
|
6344
|
+
repoId: z.number().optional(),
|
|
6104
6345
|
deployHooks: z.array(z.lazy(() => LinkDeployHooks$outboundSchema)),
|
|
6105
6346
|
gitCredentialId: z.string().optional(),
|
|
6106
|
-
updatedAt: z.number().optional(),
|
|
6107
6347
|
sourceless: z.boolean().optional(),
|
|
6108
6348
|
productionBranch: z.string().optional(),
|
|
6109
6349
|
});
|
|
@@ -6300,6 +6540,7 @@ export const Link$inboundSchema: z.ZodType<Link, z.ZodTypeDef, unknown> = z
|
|
|
6300
6540
|
z.lazy(() => Link2$inboundSchema),
|
|
6301
6541
|
z.lazy(() => Link3$inboundSchema),
|
|
6302
6542
|
z.lazy(() => Link4$inboundSchema),
|
|
6543
|
+
z.lazy(() => Link5$inboundSchema),
|
|
6303
6544
|
]);
|
|
6304
6545
|
|
|
6305
6546
|
/** @internal */
|
|
@@ -6307,7 +6548,8 @@ export type Link$Outbound =
|
|
|
6307
6548
|
| Link1$Outbound
|
|
6308
6549
|
| Link2$Outbound
|
|
6309
6550
|
| Link3$Outbound
|
|
6310
|
-
| Link4$Outbound
|
|
6551
|
+
| Link4$Outbound
|
|
6552
|
+
| Link5$Outbound;
|
|
6311
6553
|
|
|
6312
6554
|
/** @internal */
|
|
6313
6555
|
export const Link$outboundSchema: z.ZodType<Link$Outbound, z.ZodTypeDef, Link> =
|
|
@@ -6316,6 +6558,7 @@ export const Link$outboundSchema: z.ZodType<Link$Outbound, z.ZodTypeDef, Link> =
|
|
|
6316
6558
|
z.lazy(() => Link2$outboundSchema),
|
|
6317
6559
|
z.lazy(() => Link3$outboundSchema),
|
|
6318
6560
|
z.lazy(() => Link4$outboundSchema),
|
|
6561
|
+
z.lazy(() => Link5$outboundSchema),
|
|
6319
6562
|
]);
|
|
6320
6563
|
|
|
6321
6564
|
/**
|
|
@@ -8000,11 +8243,11 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8000
8243
|
z.ZodTypeDef,
|
|
8001
8244
|
unknown
|
|
8002
8245
|
> = z.object({
|
|
8246
|
+
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
8003
8247
|
user: z.array(ACLAction$inboundSchema).optional(),
|
|
8004
8248
|
userConnection: z.array(ACLAction$inboundSchema).optional(),
|
|
8005
8249
|
userSudo: z.array(ACLAction$inboundSchema).optional(),
|
|
8006
8250
|
webAuthn: z.array(ACLAction$inboundSchema).optional(),
|
|
8007
|
-
oauth2Connection: z.array(ACLAction$inboundSchema).optional(),
|
|
8008
8251
|
accessGroup: z.array(ACLAction$inboundSchema).optional(),
|
|
8009
8252
|
aliasGlobal: z.array(ACLAction$inboundSchema).optional(),
|
|
8010
8253
|
analyticsSampling: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -8017,6 +8260,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8017
8260
|
billingInvoiceLanguage: z.array(ACLAction$inboundSchema).optional(),
|
|
8018
8261
|
billingPlan: z.array(ACLAction$inboundSchema).optional(),
|
|
8019
8262
|
billingPurchaseOrder: z.array(ACLAction$inboundSchema).optional(),
|
|
8263
|
+
billingRefund: z.array(ACLAction$inboundSchema).optional(),
|
|
8020
8264
|
billingTaxId: z.array(ACLAction$inboundSchema).optional(),
|
|
8021
8265
|
blob: z.array(ACLAction$inboundSchema).optional(),
|
|
8022
8266
|
budget: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -8026,6 +8270,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8026
8270
|
concurrentBuilds: z.array(ACLAction$inboundSchema).optional(),
|
|
8027
8271
|
connect: z.array(ACLAction$inboundSchema).optional(),
|
|
8028
8272
|
connectConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
8273
|
+
defaultDeploymentProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
8029
8274
|
domain: z.array(ACLAction$inboundSchema).optional(),
|
|
8030
8275
|
domainAcceptDelegation: z.array(ACLAction$inboundSchema).optional(),
|
|
8031
8276
|
domainAuthCodes: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -8060,6 +8305,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8060
8305
|
marketplaceInstallationMember: z.array(ACLAction$inboundSchema).optional(),
|
|
8061
8306
|
marketplaceBillingData: z.array(ACLAction$inboundSchema).optional(),
|
|
8062
8307
|
marketplaceInvoice: z.array(ACLAction$inboundSchema).optional(),
|
|
8308
|
+
marketplaceSettings: z.array(ACLAction$inboundSchema).optional(),
|
|
8063
8309
|
marketplaceExperimentationItem: z.array(ACLAction$inboundSchema).optional(),
|
|
8064
8310
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$inboundSchema)
|
|
8065
8311
|
.optional(),
|
|
@@ -8087,6 +8333,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8087
8333
|
notificationStatementOfReasons: z.array(ACLAction$inboundSchema).optional(),
|
|
8088
8334
|
observabilityConfiguration: z.array(ACLAction$inboundSchema).optional(),
|
|
8089
8335
|
observabilityNotebook: z.array(ACLAction$inboundSchema).optional(),
|
|
8336
|
+
observabilityFunnel: z.array(ACLAction$inboundSchema).optional(),
|
|
8090
8337
|
openTelemetryEndpoint: z.array(ACLAction$inboundSchema).optional(),
|
|
8091
8338
|
vercelAppInstallation: z.array(ACLAction$inboundSchema).optional(),
|
|
8092
8339
|
paymentMethod: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -8150,6 +8397,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8150
8397
|
connectConfigurationLink: z.array(ACLAction$inboundSchema).optional(),
|
|
8151
8398
|
dataCacheNamespace: z.array(ACLAction$inboundSchema).optional(),
|
|
8152
8399
|
deployment: z.array(ACLAction$inboundSchema).optional(),
|
|
8400
|
+
deploymentBuildLogs: z.array(ACLAction$inboundSchema).optional(),
|
|
8153
8401
|
deploymentCheck: z.array(ACLAction$inboundSchema).optional(),
|
|
8154
8402
|
deploymentCheckPreview: z.array(ACLAction$inboundSchema).optional(),
|
|
8155
8403
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$inboundSchema)
|
|
@@ -8202,6 +8450,7 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8202
8450
|
projectDeploymentExpiration: z.array(ACLAction$inboundSchema).optional(),
|
|
8203
8451
|
projectRollingRelease: z.array(ACLAction$inboundSchema).optional(),
|
|
8204
8452
|
projectTier: z.array(ACLAction$inboundSchema).optional(),
|
|
8453
|
+
projectOIDCToken: z.array(ACLAction$inboundSchema).optional(),
|
|
8205
8454
|
seawallConfig: z.array(ACLAction$inboundSchema).optional(),
|
|
8206
8455
|
skewProtection: z.array(ACLAction$inboundSchema).optional(),
|
|
8207
8456
|
analytics: z.array(ACLAction$inboundSchema).optional(),
|
|
@@ -8219,11 +8468,11 @@ export const Permissions$inboundSchema: z.ZodType<
|
|
|
8219
8468
|
|
|
8220
8469
|
/** @internal */
|
|
8221
8470
|
export type Permissions$Outbound = {
|
|
8471
|
+
oauth2Connection?: Array<string> | undefined;
|
|
8222
8472
|
user?: Array<string> | undefined;
|
|
8223
8473
|
userConnection?: Array<string> | undefined;
|
|
8224
8474
|
userSudo?: Array<string> | undefined;
|
|
8225
8475
|
webAuthn?: Array<string> | undefined;
|
|
8226
|
-
oauth2Connection?: Array<string> | undefined;
|
|
8227
8476
|
accessGroup?: Array<string> | undefined;
|
|
8228
8477
|
aliasGlobal?: Array<string> | undefined;
|
|
8229
8478
|
analyticsSampling?: Array<string> | undefined;
|
|
@@ -8236,6 +8485,7 @@ export type Permissions$Outbound = {
|
|
|
8236
8485
|
billingInvoiceLanguage?: Array<string> | undefined;
|
|
8237
8486
|
billingPlan?: Array<string> | undefined;
|
|
8238
8487
|
billingPurchaseOrder?: Array<string> | undefined;
|
|
8488
|
+
billingRefund?: Array<string> | undefined;
|
|
8239
8489
|
billingTaxId?: Array<string> | undefined;
|
|
8240
8490
|
blob?: Array<string> | undefined;
|
|
8241
8491
|
budget?: Array<string> | undefined;
|
|
@@ -8245,6 +8495,7 @@ export type Permissions$Outbound = {
|
|
|
8245
8495
|
concurrentBuilds?: Array<string> | undefined;
|
|
8246
8496
|
connect?: Array<string> | undefined;
|
|
8247
8497
|
connectConfiguration?: Array<string> | undefined;
|
|
8498
|
+
defaultDeploymentProtection?: Array<string> | undefined;
|
|
8248
8499
|
domain?: Array<string> | undefined;
|
|
8249
8500
|
domainAcceptDelegation?: Array<string> | undefined;
|
|
8250
8501
|
domainAuthCodes?: Array<string> | undefined;
|
|
@@ -8277,6 +8528,7 @@ export type Permissions$Outbound = {
|
|
|
8277
8528
|
marketplaceInstallationMember?: Array<string> | undefined;
|
|
8278
8529
|
marketplaceBillingData?: Array<string> | undefined;
|
|
8279
8530
|
marketplaceInvoice?: Array<string> | undefined;
|
|
8531
|
+
marketplaceSettings?: Array<string> | undefined;
|
|
8280
8532
|
marketplaceExperimentationItem?: Array<string> | undefined;
|
|
8281
8533
|
marketplaceExperimentationEdgeConfigData?: Array<string> | undefined;
|
|
8282
8534
|
jobGlobal?: Array<string> | undefined;
|
|
@@ -8303,6 +8555,7 @@ export type Permissions$Outbound = {
|
|
|
8303
8555
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
8304
8556
|
observabilityConfiguration?: Array<string> | undefined;
|
|
8305
8557
|
observabilityNotebook?: Array<string> | undefined;
|
|
8558
|
+
observabilityFunnel?: Array<string> | undefined;
|
|
8306
8559
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
8307
8560
|
vercelAppInstallation?: Array<string> | undefined;
|
|
8308
8561
|
paymentMethod?: Array<string> | undefined;
|
|
@@ -8366,6 +8619,7 @@ export type Permissions$Outbound = {
|
|
|
8366
8619
|
connectConfigurationLink?: Array<string> | undefined;
|
|
8367
8620
|
dataCacheNamespace?: Array<string> | undefined;
|
|
8368
8621
|
deployment?: Array<string> | undefined;
|
|
8622
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
8369
8623
|
deploymentCheck?: Array<string> | undefined;
|
|
8370
8624
|
deploymentCheckPreview?: Array<string> | undefined;
|
|
8371
8625
|
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
@@ -8416,6 +8670,7 @@ export type Permissions$Outbound = {
|
|
|
8416
8670
|
projectDeploymentExpiration?: Array<string> | undefined;
|
|
8417
8671
|
projectRollingRelease?: Array<string> | undefined;
|
|
8418
8672
|
projectTier?: Array<string> | undefined;
|
|
8673
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
8419
8674
|
seawallConfig?: Array<string> | undefined;
|
|
8420
8675
|
skewProtection?: Array<string> | undefined;
|
|
8421
8676
|
analytics?: Array<string> | undefined;
|
|
@@ -8431,11 +8686,11 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8431
8686
|
z.ZodTypeDef,
|
|
8432
8687
|
Permissions
|
|
8433
8688
|
> = z.object({
|
|
8689
|
+
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
8434
8690
|
user: z.array(ACLAction$outboundSchema).optional(),
|
|
8435
8691
|
userConnection: z.array(ACLAction$outboundSchema).optional(),
|
|
8436
8692
|
userSudo: z.array(ACLAction$outboundSchema).optional(),
|
|
8437
8693
|
webAuthn: z.array(ACLAction$outboundSchema).optional(),
|
|
8438
|
-
oauth2Connection: z.array(ACLAction$outboundSchema).optional(),
|
|
8439
8694
|
accessGroup: z.array(ACLAction$outboundSchema).optional(),
|
|
8440
8695
|
aliasGlobal: z.array(ACLAction$outboundSchema).optional(),
|
|
8441
8696
|
analyticsSampling: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -8448,6 +8703,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8448
8703
|
billingInvoiceLanguage: z.array(ACLAction$outboundSchema).optional(),
|
|
8449
8704
|
billingPlan: z.array(ACLAction$outboundSchema).optional(),
|
|
8450
8705
|
billingPurchaseOrder: z.array(ACLAction$outboundSchema).optional(),
|
|
8706
|
+
billingRefund: z.array(ACLAction$outboundSchema).optional(),
|
|
8451
8707
|
billingTaxId: z.array(ACLAction$outboundSchema).optional(),
|
|
8452
8708
|
blob: z.array(ACLAction$outboundSchema).optional(),
|
|
8453
8709
|
budget: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -8457,6 +8713,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8457
8713
|
concurrentBuilds: z.array(ACLAction$outboundSchema).optional(),
|
|
8458
8714
|
connect: z.array(ACLAction$outboundSchema).optional(),
|
|
8459
8715
|
connectConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
8716
|
+
defaultDeploymentProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
8460
8717
|
domain: z.array(ACLAction$outboundSchema).optional(),
|
|
8461
8718
|
domainAcceptDelegation: z.array(ACLAction$outboundSchema).optional(),
|
|
8462
8719
|
domainAuthCodes: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -8493,6 +8750,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8493
8750
|
marketplaceInstallationMember: z.array(ACLAction$outboundSchema).optional(),
|
|
8494
8751
|
marketplaceBillingData: z.array(ACLAction$outboundSchema).optional(),
|
|
8495
8752
|
marketplaceInvoice: z.array(ACLAction$outboundSchema).optional(),
|
|
8753
|
+
marketplaceSettings: z.array(ACLAction$outboundSchema).optional(),
|
|
8496
8754
|
marketplaceExperimentationItem: z.array(ACLAction$outboundSchema).optional(),
|
|
8497
8755
|
marketplaceExperimentationEdgeConfigData: z.array(ACLAction$outboundSchema)
|
|
8498
8756
|
.optional(),
|
|
@@ -8520,6 +8778,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8520
8778
|
notificationStatementOfReasons: z.array(ACLAction$outboundSchema).optional(),
|
|
8521
8779
|
observabilityConfiguration: z.array(ACLAction$outboundSchema).optional(),
|
|
8522
8780
|
observabilityNotebook: z.array(ACLAction$outboundSchema).optional(),
|
|
8781
|
+
observabilityFunnel: z.array(ACLAction$outboundSchema).optional(),
|
|
8523
8782
|
openTelemetryEndpoint: z.array(ACLAction$outboundSchema).optional(),
|
|
8524
8783
|
vercelAppInstallation: z.array(ACLAction$outboundSchema).optional(),
|
|
8525
8784
|
paymentMethod: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -8583,6 +8842,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8583
8842
|
connectConfigurationLink: z.array(ACLAction$outboundSchema).optional(),
|
|
8584
8843
|
dataCacheNamespace: z.array(ACLAction$outboundSchema).optional(),
|
|
8585
8844
|
deployment: z.array(ACLAction$outboundSchema).optional(),
|
|
8845
|
+
deploymentBuildLogs: z.array(ACLAction$outboundSchema).optional(),
|
|
8586
8846
|
deploymentCheck: z.array(ACLAction$outboundSchema).optional(),
|
|
8587
8847
|
deploymentCheckPreview: z.array(ACLAction$outboundSchema).optional(),
|
|
8588
8848
|
deploymentCheckReRunFromProductionBranch: z.array(ACLAction$outboundSchema)
|
|
@@ -8635,6 +8895,7 @@ export const Permissions$outboundSchema: z.ZodType<
|
|
|
8635
8895
|
projectDeploymentExpiration: z.array(ACLAction$outboundSchema).optional(),
|
|
8636
8896
|
projectRollingRelease: z.array(ACLAction$outboundSchema).optional(),
|
|
8637
8897
|
projectTier: z.array(ACLAction$outboundSchema).optional(),
|
|
8898
|
+
projectOIDCToken: z.array(ACLAction$outboundSchema).optional(),
|
|
8638
8899
|
seawallConfig: z.array(ACLAction$outboundSchema).optional(),
|
|
8639
8900
|
skewProtection: z.array(ACLAction$outboundSchema).optional(),
|
|
8640
8901
|
analytics: z.array(ACLAction$outboundSchema).optional(),
|
|
@@ -9447,11 +9708,13 @@ export const GitProviderOptions$inboundSchema: z.ZodType<
|
|
|
9447
9708
|
unknown
|
|
9448
9709
|
> = z.object({
|
|
9449
9710
|
createDeployments: CreateDeployments$inboundSchema,
|
|
9711
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
9450
9712
|
});
|
|
9451
9713
|
|
|
9452
9714
|
/** @internal */
|
|
9453
9715
|
export type GitProviderOptions$Outbound = {
|
|
9454
9716
|
createDeployments: string;
|
|
9717
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
9455
9718
|
};
|
|
9456
9719
|
|
|
9457
9720
|
/** @internal */
|
|
@@ -9461,6 +9724,7 @@ export const GitProviderOptions$outboundSchema: z.ZodType<
|
|
|
9461
9724
|
GitProviderOptions
|
|
9462
9725
|
> = z.object({
|
|
9463
9726
|
createDeployments: CreateDeployments$outboundSchema,
|
|
9727
|
+
disableRepositoryDispatchEvents: z.boolean().optional(),
|
|
9464
9728
|
});
|
|
9465
9729
|
|
|
9466
9730
|
/**
|
|
@@ -11022,6 +11286,7 @@ export const UpdateProjectDataCacheResponseBody$inboundSchema: z.ZodType<
|
|
|
11022
11286
|
z.lazy(() => Link2$inboundSchema),
|
|
11023
11287
|
z.lazy(() => Link3$inboundSchema),
|
|
11024
11288
|
z.lazy(() => Link4$inboundSchema),
|
|
11289
|
+
z.lazy(() => Link5$inboundSchema),
|
|
11025
11290
|
]).optional(),
|
|
11026
11291
|
microfrontends: z.union([
|
|
11027
11292
|
z.lazy(() => UpdateProjectDataCacheMicrofrontends1$inboundSchema),
|
|
@@ -11096,6 +11361,7 @@ export const UpdateProjectDataCacheResponseBody$inboundSchema: z.ZodType<
|
|
|
11096
11361
|
).optional(),
|
|
11097
11362
|
tier: UpdateProjectDataCacheTier$inboundSchema.optional(),
|
|
11098
11363
|
features: z.lazy(() => Features$inboundSchema).optional(),
|
|
11364
|
+
v0: z.boolean().optional(),
|
|
11099
11365
|
});
|
|
11100
11366
|
|
|
11101
11367
|
/** @internal */
|
|
@@ -11136,6 +11402,7 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
|
|
|
11136
11402
|
| Link2$Outbound
|
|
11137
11403
|
| Link3$Outbound
|
|
11138
11404
|
| Link4$Outbound
|
|
11405
|
+
| Link5$Outbound
|
|
11139
11406
|
| undefined;
|
|
11140
11407
|
microfrontends?:
|
|
11141
11408
|
| UpdateProjectDataCacheMicrofrontends1$Outbound
|
|
@@ -11195,6 +11462,7 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
|
|
|
11195
11462
|
oidcTokenConfig?: UpdateProjectDataCacheOidcTokenConfig$Outbound | undefined;
|
|
11196
11463
|
tier?: string | undefined;
|
|
11197
11464
|
features?: Features$Outbound | undefined;
|
|
11465
|
+
v0?: boolean | undefined;
|
|
11198
11466
|
};
|
|
11199
11467
|
|
|
11200
11468
|
/** @internal */
|
|
@@ -11248,6 +11516,7 @@ export const UpdateProjectDataCacheResponseBody$outboundSchema: z.ZodType<
|
|
|
11248
11516
|
z.lazy(() => Link2$outboundSchema),
|
|
11249
11517
|
z.lazy(() => Link3$outboundSchema),
|
|
11250
11518
|
z.lazy(() => Link4$outboundSchema),
|
|
11519
|
+
z.lazy(() => Link5$outboundSchema),
|
|
11251
11520
|
]).optional(),
|
|
11252
11521
|
microfrontends: z.union([
|
|
11253
11522
|
z.lazy(() => UpdateProjectDataCacheMicrofrontends1$outboundSchema),
|
|
@@ -11325,6 +11594,7 @@ export const UpdateProjectDataCacheResponseBody$outboundSchema: z.ZodType<
|
|
|
11325
11594
|
).optional(),
|
|
11326
11595
|
tier: UpdateProjectDataCacheTier$outboundSchema.optional(),
|
|
11327
11596
|
features: z.lazy(() => Features$outboundSchema).optional(),
|
|
11597
|
+
v0: z.boolean().optional(),
|
|
11328
11598
|
});
|
|
11329
11599
|
|
|
11330
11600
|
/**
|