@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
|
@@ -42,8 +42,8 @@ export type SpeedInsights = {
|
|
|
42
42
|
paidAt?: number | undefined;
|
|
43
43
|
};
|
|
44
44
|
export declare const UpdateProjectDataCacheEnvId2: {
|
|
45
|
-
readonly Production: "production";
|
|
46
45
|
readonly Preview: "preview";
|
|
46
|
+
readonly Production: "production";
|
|
47
47
|
};
|
|
48
48
|
export type UpdateProjectDataCacheEnvId2 = ClosedEnum<typeof UpdateProjectDataCacheEnvId2>;
|
|
49
49
|
export type UpdateProjectDataCacheEnvId = string | UpdateProjectDataCacheEnvId2;
|
|
@@ -54,6 +54,7 @@ export type UpdateProjectDataCacheAws = {
|
|
|
54
54
|
export type UpdateProjectDataCacheConnectConfigurations = {
|
|
55
55
|
envId: string | UpdateProjectDataCacheEnvId2;
|
|
56
56
|
connectConfigurationId: string;
|
|
57
|
+
dc?: string | undefined;
|
|
57
58
|
passive: boolean;
|
|
58
59
|
buildsEnabled: boolean;
|
|
59
60
|
aws?: UpdateProjectDataCacheAws | undefined;
|
|
@@ -293,8 +294,8 @@ export type Env = {
|
|
|
293
294
|
* The type of environment (production, preview, or development)
|
|
294
295
|
*/
|
|
295
296
|
export declare const UpdateProjectDataCacheType: {
|
|
296
|
-
readonly Production: "production";
|
|
297
297
|
readonly Preview: "preview";
|
|
298
|
+
readonly Production: "production";
|
|
298
299
|
readonly Development: "development";
|
|
299
300
|
};
|
|
300
301
|
/**
|
|
@@ -446,6 +447,7 @@ export declare const UpdateProjectDataCacheFramework: {
|
|
|
446
447
|
readonly Sanity: "sanity";
|
|
447
448
|
readonly Storybook: "storybook";
|
|
448
449
|
readonly Nitro: "nitro";
|
|
450
|
+
readonly Hono: "hono";
|
|
449
451
|
};
|
|
450
452
|
export type UpdateProjectDataCacheFramework = ClosedEnum<typeof UpdateProjectDataCacheFramework>;
|
|
451
453
|
export type UpdateProjectDataCacheIpBuckets = {
|
|
@@ -583,18 +585,18 @@ export type LatestDeployments = {
|
|
|
583
585
|
userId: string;
|
|
584
586
|
withCache?: boolean | undefined;
|
|
585
587
|
};
|
|
586
|
-
export declare const
|
|
588
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponse200Type: {
|
|
587
589
|
readonly GithubCustomHost: "github-custom-host";
|
|
588
590
|
};
|
|
589
|
-
export type
|
|
590
|
-
export type
|
|
591
|
+
export type UpdateProjectDataCacheLinkProjectsResponse200Type = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type>;
|
|
592
|
+
export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks = {
|
|
591
593
|
createdAt?: number | undefined;
|
|
592
594
|
id: string;
|
|
593
595
|
name: string;
|
|
594
596
|
ref: string;
|
|
595
597
|
url: string;
|
|
596
598
|
};
|
|
597
|
-
export type
|
|
599
|
+
export type Link5 = {
|
|
598
600
|
org?: string | undefined;
|
|
599
601
|
/**
|
|
600
602
|
* 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.
|
|
@@ -602,52 +604,52 @@ export type Link4 = {
|
|
|
602
604
|
repoOwnerId?: number | undefined;
|
|
603
605
|
repo?: string | undefined;
|
|
604
606
|
repoId?: number | undefined;
|
|
605
|
-
type?:
|
|
607
|
+
type?: UpdateProjectDataCacheLinkProjectsResponse200Type | undefined;
|
|
606
608
|
host?: string | undefined;
|
|
607
609
|
createdAt?: number | undefined;
|
|
608
|
-
deployHooks: Array<
|
|
610
|
+
deployHooks: Array<UpdateProjectDataCacheLinkProjectsResponseDeployHooks>;
|
|
609
611
|
gitCredentialId?: string | undefined;
|
|
610
612
|
updatedAt?: number | undefined;
|
|
611
613
|
sourceless?: boolean | undefined;
|
|
612
614
|
productionBranch?: string | undefined;
|
|
613
615
|
};
|
|
614
|
-
export declare const
|
|
616
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponseType: {
|
|
615
617
|
readonly Bitbucket: "bitbucket";
|
|
616
618
|
};
|
|
617
|
-
export type
|
|
618
|
-
export type
|
|
619
|
+
export type UpdateProjectDataCacheLinkProjectsResponseType = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsResponseType>;
|
|
620
|
+
export type UpdateProjectDataCacheLinkProjectsDeployHooks = {
|
|
619
621
|
createdAt?: number | undefined;
|
|
620
622
|
id: string;
|
|
621
623
|
name: string;
|
|
622
624
|
ref: string;
|
|
623
625
|
url: string;
|
|
624
626
|
};
|
|
625
|
-
export type
|
|
627
|
+
export type Link4 = {
|
|
626
628
|
name?: string | undefined;
|
|
627
629
|
slug?: string | undefined;
|
|
628
630
|
owner?: string | undefined;
|
|
629
|
-
type?:
|
|
631
|
+
type?: UpdateProjectDataCacheLinkProjectsResponseType | undefined;
|
|
630
632
|
uuid?: string | undefined;
|
|
631
633
|
workspaceUuid?: string | undefined;
|
|
632
634
|
createdAt?: number | undefined;
|
|
633
|
-
deployHooks: Array<
|
|
635
|
+
deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks>;
|
|
634
636
|
gitCredentialId?: string | undefined;
|
|
635
637
|
updatedAt?: number | undefined;
|
|
636
638
|
sourceless?: boolean | undefined;
|
|
637
639
|
productionBranch?: string | undefined;
|
|
638
640
|
};
|
|
639
|
-
export declare const
|
|
641
|
+
export declare const UpdateProjectDataCacheLinkProjectsType: {
|
|
640
642
|
readonly Gitlab: "gitlab";
|
|
641
643
|
};
|
|
642
|
-
export type
|
|
643
|
-
export type
|
|
644
|
+
export type UpdateProjectDataCacheLinkProjectsType = ClosedEnum<typeof UpdateProjectDataCacheLinkProjectsType>;
|
|
645
|
+
export type UpdateProjectDataCacheLinkDeployHooks = {
|
|
644
646
|
createdAt?: number | undefined;
|
|
645
647
|
id: string;
|
|
646
648
|
name: string;
|
|
647
649
|
ref: string;
|
|
648
650
|
url: string;
|
|
649
651
|
};
|
|
650
|
-
export type
|
|
652
|
+
export type Link3 = {
|
|
651
653
|
projectId?: string | undefined;
|
|
652
654
|
projectName?: string | undefined;
|
|
653
655
|
projectNameWithNamespace?: string | undefined;
|
|
@@ -657,11 +659,38 @@ export type Link2 = {
|
|
|
657
659
|
*/
|
|
658
660
|
projectOwnerId?: number | undefined;
|
|
659
661
|
projectUrl?: string | undefined;
|
|
662
|
+
type?: UpdateProjectDataCacheLinkProjectsType | undefined;
|
|
663
|
+
createdAt?: number | undefined;
|
|
664
|
+
deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks>;
|
|
665
|
+
gitCredentialId?: string | undefined;
|
|
666
|
+
updatedAt?: number | undefined;
|
|
667
|
+
sourceless?: boolean | undefined;
|
|
668
|
+
productionBranch?: string | undefined;
|
|
669
|
+
};
|
|
670
|
+
export declare const UpdateProjectDataCacheLinkType: {
|
|
671
|
+
readonly GithubLimited: "github-limited";
|
|
672
|
+
};
|
|
673
|
+
export type UpdateProjectDataCacheLinkType = ClosedEnum<typeof UpdateProjectDataCacheLinkType>;
|
|
674
|
+
export type LinkDeployHooks = {
|
|
675
|
+
createdAt?: number | undefined;
|
|
676
|
+
id: string;
|
|
677
|
+
name: string;
|
|
678
|
+
ref: string;
|
|
679
|
+
url: string;
|
|
680
|
+
};
|
|
681
|
+
export type Link2 = {
|
|
660
682
|
type?: UpdateProjectDataCacheLinkType | undefined;
|
|
661
683
|
createdAt?: number | undefined;
|
|
684
|
+
updatedAt?: number | undefined;
|
|
685
|
+
org?: string | undefined;
|
|
686
|
+
/**
|
|
687
|
+
* 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.
|
|
688
|
+
*/
|
|
689
|
+
repoOwnerId?: number | undefined;
|
|
690
|
+
repo?: string | undefined;
|
|
691
|
+
repoId?: number | undefined;
|
|
662
692
|
deployHooks: Array<LinkDeployHooks>;
|
|
663
693
|
gitCredentialId?: string | undefined;
|
|
664
|
-
updatedAt?: number | undefined;
|
|
665
694
|
sourceless?: boolean | undefined;
|
|
666
695
|
productionBranch?: string | undefined;
|
|
667
696
|
};
|
|
@@ -692,7 +721,7 @@ export type Link1 = {
|
|
|
692
721
|
sourceless?: boolean | undefined;
|
|
693
722
|
productionBranch?: string | undefined;
|
|
694
723
|
};
|
|
695
|
-
export type Link = Link1 | Link2 | Link3 | Link4;
|
|
724
|
+
export type Link = Link1 | Link2 | Link3 | Link4 | Link5;
|
|
696
725
|
export type UpdateProjectDataCacheMicrofrontends2 = {
|
|
697
726
|
updatedAt: number;
|
|
698
727
|
groupIds: Array<any>;
|
|
@@ -980,11 +1009,11 @@ export type Targets = {
|
|
|
980
1009
|
withCache?: boolean | undefined;
|
|
981
1010
|
};
|
|
982
1011
|
export type Permissions = {
|
|
1012
|
+
oauth2Connection?: Array<ACLAction> | undefined;
|
|
983
1013
|
user?: Array<ACLAction> | undefined;
|
|
984
1014
|
userConnection?: Array<ACLAction> | undefined;
|
|
985
1015
|
userSudo?: Array<ACLAction> | undefined;
|
|
986
1016
|
webAuthn?: Array<ACLAction> | undefined;
|
|
987
|
-
oauth2Connection?: Array<ACLAction> | undefined;
|
|
988
1017
|
accessGroup?: Array<ACLAction> | undefined;
|
|
989
1018
|
aliasGlobal?: Array<ACLAction> | undefined;
|
|
990
1019
|
analyticsSampling?: Array<ACLAction> | undefined;
|
|
@@ -997,6 +1026,7 @@ export type Permissions = {
|
|
|
997
1026
|
billingInvoiceLanguage?: Array<ACLAction> | undefined;
|
|
998
1027
|
billingPlan?: Array<ACLAction> | undefined;
|
|
999
1028
|
billingPurchaseOrder?: Array<ACLAction> | undefined;
|
|
1029
|
+
billingRefund?: Array<ACLAction> | undefined;
|
|
1000
1030
|
billingTaxId?: Array<ACLAction> | undefined;
|
|
1001
1031
|
blob?: Array<ACLAction> | undefined;
|
|
1002
1032
|
budget?: Array<ACLAction> | undefined;
|
|
@@ -1006,6 +1036,7 @@ export type Permissions = {
|
|
|
1006
1036
|
concurrentBuilds?: Array<ACLAction> | undefined;
|
|
1007
1037
|
connect?: Array<ACLAction> | undefined;
|
|
1008
1038
|
connectConfiguration?: Array<ACLAction> | undefined;
|
|
1039
|
+
defaultDeploymentProtection?: Array<ACLAction> | undefined;
|
|
1009
1040
|
domain?: Array<ACLAction> | undefined;
|
|
1010
1041
|
domainAcceptDelegation?: Array<ACLAction> | undefined;
|
|
1011
1042
|
domainAuthCodes?: Array<ACLAction> | undefined;
|
|
@@ -1038,6 +1069,7 @@ export type Permissions = {
|
|
|
1038
1069
|
marketplaceInstallationMember?: Array<ACLAction> | undefined;
|
|
1039
1070
|
marketplaceBillingData?: Array<ACLAction> | undefined;
|
|
1040
1071
|
marketplaceInvoice?: Array<ACLAction> | undefined;
|
|
1072
|
+
marketplaceSettings?: Array<ACLAction> | undefined;
|
|
1041
1073
|
marketplaceExperimentationItem?: Array<ACLAction> | undefined;
|
|
1042
1074
|
marketplaceExperimentationEdgeConfigData?: Array<ACLAction> | undefined;
|
|
1043
1075
|
jobGlobal?: Array<ACLAction> | undefined;
|
|
@@ -1064,6 +1096,7 @@ export type Permissions = {
|
|
|
1064
1096
|
notificationStatementOfReasons?: Array<ACLAction> | undefined;
|
|
1065
1097
|
observabilityConfiguration?: Array<ACLAction> | undefined;
|
|
1066
1098
|
observabilityNotebook?: Array<ACLAction> | undefined;
|
|
1099
|
+
observabilityFunnel?: Array<ACLAction> | undefined;
|
|
1067
1100
|
openTelemetryEndpoint?: Array<ACLAction> | undefined;
|
|
1068
1101
|
vercelAppInstallation?: Array<ACLAction> | undefined;
|
|
1069
1102
|
paymentMethod?: Array<ACLAction> | undefined;
|
|
@@ -1127,6 +1160,7 @@ export type Permissions = {
|
|
|
1127
1160
|
connectConfigurationLink?: Array<ACLAction> | undefined;
|
|
1128
1161
|
dataCacheNamespace?: Array<ACLAction> | undefined;
|
|
1129
1162
|
deployment?: Array<ACLAction> | undefined;
|
|
1163
|
+
deploymentBuildLogs?: Array<ACLAction> | undefined;
|
|
1130
1164
|
deploymentCheck?: Array<ACLAction> | undefined;
|
|
1131
1165
|
deploymentCheckPreview?: Array<ACLAction> | undefined;
|
|
1132
1166
|
deploymentCheckReRunFromProductionBranch?: Array<ACLAction> | undefined;
|
|
@@ -1177,6 +1211,7 @@ export type Permissions = {
|
|
|
1177
1211
|
projectDeploymentExpiration?: Array<ACLAction> | undefined;
|
|
1178
1212
|
projectRollingRelease?: Array<ACLAction> | undefined;
|
|
1179
1213
|
projectTier?: Array<ACLAction> | undefined;
|
|
1214
|
+
projectOIDCToken?: Array<ACLAction> | undefined;
|
|
1180
1215
|
seawallConfig?: Array<ACLAction> | undefined;
|
|
1181
1216
|
skewProtection?: Array<ACLAction> | undefined;
|
|
1182
1217
|
analytics?: Array<ACLAction> | undefined;
|
|
@@ -1232,8 +1267,8 @@ export type ProtectionBypass1 = {
|
|
|
1232
1267
|
};
|
|
1233
1268
|
export type ProtectionBypass = ProtectionBypass1 | ProtectionBypass2;
|
|
1234
1269
|
export declare const UpdateProjectDataCacheTrustedIpsDeploymentType: {
|
|
1235
|
-
readonly Production: "production";
|
|
1236
1270
|
readonly Preview: "preview";
|
|
1271
|
+
readonly Production: "production";
|
|
1237
1272
|
readonly All: "all";
|
|
1238
1273
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1239
1274
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -1243,8 +1278,8 @@ export type TrustedIps2 = {
|
|
|
1243
1278
|
deploymentType: UpdateProjectDataCacheTrustedIpsDeploymentType;
|
|
1244
1279
|
};
|
|
1245
1280
|
export declare const TrustedIpsDeploymentType: {
|
|
1246
|
-
readonly Production: "production";
|
|
1247
1281
|
readonly Preview: "preview";
|
|
1282
|
+
readonly Production: "production";
|
|
1248
1283
|
readonly All: "all";
|
|
1249
1284
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
1250
1285
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -1291,6 +1326,10 @@ export type GitProviderOptions = {
|
|
|
1291
1326
|
* 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
|
|
1292
1327
|
*/
|
|
1293
1328
|
createDeployments: CreateDeployments;
|
|
1329
|
+
/**
|
|
1330
|
+
* 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
|
|
1331
|
+
*/
|
|
1332
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
1294
1333
|
};
|
|
1295
1334
|
export type UpdateProjectDataCacheWebAnalytics = {
|
|
1296
1335
|
id: string;
|
|
@@ -1530,7 +1569,7 @@ export type UpdateProjectDataCacheResponseBody = {
|
|
|
1530
1569
|
id: string;
|
|
1531
1570
|
ipBuckets?: Array<UpdateProjectDataCacheIpBuckets> | undefined;
|
|
1532
1571
|
latestDeployments?: Array<LatestDeployments> | undefined;
|
|
1533
|
-
link?: Link1 | Link2 | Link3 | Link4 | undefined;
|
|
1572
|
+
link?: Link1 | Link2 | Link3 | Link4 | Link5 | undefined;
|
|
1534
1573
|
microfrontends?: UpdateProjectDataCacheMicrofrontends1 | UpdateProjectDataCacheMicrofrontends2 | undefined;
|
|
1535
1574
|
name: string;
|
|
1536
1575
|
nodeVersion: UpdateProjectDataCacheNodeVersion;
|
|
@@ -1585,6 +1624,7 @@ export type UpdateProjectDataCacheResponseBody = {
|
|
|
1585
1624
|
oidcTokenConfig?: UpdateProjectDataCacheOidcTokenConfig | undefined;
|
|
1586
1625
|
tier?: UpdateProjectDataCacheTier | undefined;
|
|
1587
1626
|
features?: Features | undefined;
|
|
1627
|
+
v0?: boolean | undefined;
|
|
1588
1628
|
};
|
|
1589
1629
|
/** @internal */
|
|
1590
1630
|
export declare const UpdateProjectDataCacheRequestBody$inboundSchema: z.ZodType<UpdateProjectDataCacheRequestBody, z.ZodTypeDef, unknown>;
|
|
@@ -1699,13 +1739,13 @@ export declare const UpdateProjectDataCacheEnvId2$outboundSchema: z.ZodNativeEnu
|
|
|
1699
1739
|
export declare namespace UpdateProjectDataCacheEnvId2$ {
|
|
1700
1740
|
/** @deprecated use `UpdateProjectDataCacheEnvId2$inboundSchema` instead. */
|
|
1701
1741
|
const inboundSchema: z.ZodNativeEnum<{
|
|
1702
|
-
readonly Production: "production";
|
|
1703
1742
|
readonly Preview: "preview";
|
|
1743
|
+
readonly Production: "production";
|
|
1704
1744
|
}>;
|
|
1705
1745
|
/** @deprecated use `UpdateProjectDataCacheEnvId2$outboundSchema` instead. */
|
|
1706
1746
|
const outboundSchema: z.ZodNativeEnum<{
|
|
1707
|
-
readonly Production: "production";
|
|
1708
1747
|
readonly Preview: "preview";
|
|
1748
|
+
readonly Production: "production";
|
|
1709
1749
|
}>;
|
|
1710
1750
|
}
|
|
1711
1751
|
/** @internal */
|
|
@@ -1757,6 +1797,7 @@ export declare const UpdateProjectDataCacheConnectConfigurations$inboundSchema:
|
|
|
1757
1797
|
export type UpdateProjectDataCacheConnectConfigurations$Outbound = {
|
|
1758
1798
|
envId: string | string;
|
|
1759
1799
|
connectConfigurationId: string;
|
|
1800
|
+
dc?: string | undefined;
|
|
1760
1801
|
passive: boolean;
|
|
1761
1802
|
buildsEnabled: boolean;
|
|
1762
1803
|
aws?: UpdateProjectDataCacheAws$Outbound | undefined;
|
|
@@ -2700,14 +2741,14 @@ export declare const UpdateProjectDataCacheType$outboundSchema: z.ZodNativeEnum<
|
|
|
2700
2741
|
export declare namespace UpdateProjectDataCacheType$ {
|
|
2701
2742
|
/** @deprecated use `UpdateProjectDataCacheType$inboundSchema` instead. */
|
|
2702
2743
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2703
|
-
readonly Production: "production";
|
|
2704
2744
|
readonly Preview: "preview";
|
|
2745
|
+
readonly Production: "production";
|
|
2705
2746
|
readonly Development: "development";
|
|
2706
2747
|
}>;
|
|
2707
2748
|
/** @deprecated use `UpdateProjectDataCacheType$outboundSchema` instead. */
|
|
2708
2749
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2709
|
-
readonly Production: "production";
|
|
2710
2750
|
readonly Preview: "preview";
|
|
2751
|
+
readonly Production: "production";
|
|
2711
2752
|
readonly Development: "development";
|
|
2712
2753
|
}>;
|
|
2713
2754
|
}
|
|
@@ -2901,6 +2942,7 @@ export declare namespace UpdateProjectDataCacheFramework$ {
|
|
|
2901
2942
|
readonly Sanity: "sanity";
|
|
2902
2943
|
readonly Storybook: "storybook";
|
|
2903
2944
|
readonly Nitro: "nitro";
|
|
2945
|
+
readonly Hono: "hono";
|
|
2904
2946
|
}>;
|
|
2905
2947
|
/** @deprecated use `UpdateProjectDataCacheFramework$outboundSchema` instead. */
|
|
2906
2948
|
const outboundSchema: z.ZodNativeEnum<{
|
|
@@ -2951,6 +2993,7 @@ export declare namespace UpdateProjectDataCacheFramework$ {
|
|
|
2951
2993
|
readonly Sanity: "sanity";
|
|
2952
2994
|
readonly Storybook: "storybook";
|
|
2953
2995
|
readonly Nitro: "nitro";
|
|
2996
|
+
readonly Hono: "hono";
|
|
2954
2997
|
}>;
|
|
2955
2998
|
}
|
|
2956
2999
|
/** @internal */
|
|
@@ -3340,6 +3383,83 @@ export declare namespace LatestDeployments$ {
|
|
|
3340
3383
|
export declare function latestDeploymentsToJSON(latestDeployments: LatestDeployments): string;
|
|
3341
3384
|
export declare function latestDeploymentsFromJSON(jsonString: string): SafeParseResult<LatestDeployments, SDKValidationError>;
|
|
3342
3385
|
/** @internal */
|
|
3386
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type>;
|
|
3387
|
+
/** @internal */
|
|
3388
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponse200Type>;
|
|
3389
|
+
/**
|
|
3390
|
+
* @internal
|
|
3391
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3392
|
+
*/
|
|
3393
|
+
export declare namespace UpdateProjectDataCacheLinkProjectsResponse200Type$ {
|
|
3394
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$inboundSchema` instead. */
|
|
3395
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
3396
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3397
|
+
}>;
|
|
3398
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponse200Type$outboundSchema` instead. */
|
|
3399
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
3400
|
+
readonly GithubCustomHost: "github-custom-host";
|
|
3401
|
+
}>;
|
|
3402
|
+
}
|
|
3403
|
+
/** @internal */
|
|
3404
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema: z.ZodType<UpdateProjectDataCacheLinkProjectsResponseDeployHooks, z.ZodTypeDef, unknown>;
|
|
3405
|
+
/** @internal */
|
|
3406
|
+
export type UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound = {
|
|
3407
|
+
createdAt?: number | undefined;
|
|
3408
|
+
id: string;
|
|
3409
|
+
name: string;
|
|
3410
|
+
ref: string;
|
|
3411
|
+
url: string;
|
|
3412
|
+
};
|
|
3413
|
+
/** @internal */
|
|
3414
|
+
export declare const UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema: z.ZodType<UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound, z.ZodTypeDef, UpdateProjectDataCacheLinkProjectsResponseDeployHooks>;
|
|
3415
|
+
/**
|
|
3416
|
+
* @internal
|
|
3417
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3418
|
+
*/
|
|
3419
|
+
export declare namespace UpdateProjectDataCacheLinkProjectsResponseDeployHooks$ {
|
|
3420
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$inboundSchema` instead. */
|
|
3421
|
+
const inboundSchema: z.ZodType<UpdateProjectDataCacheLinkProjectsResponseDeployHooks, z.ZodTypeDef, unknown>;
|
|
3422
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$outboundSchema` instead. */
|
|
3423
|
+
const outboundSchema: z.ZodType<UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound, z.ZodTypeDef, UpdateProjectDataCacheLinkProjectsResponseDeployHooks>;
|
|
3424
|
+
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound` instead. */
|
|
3425
|
+
type Outbound = UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound;
|
|
3426
|
+
}
|
|
3427
|
+
export declare function updateProjectDataCacheLinkProjectsResponseDeployHooksToJSON(updateProjectDataCacheLinkProjectsResponseDeployHooks: UpdateProjectDataCacheLinkProjectsResponseDeployHooks): string;
|
|
3428
|
+
export declare function updateProjectDataCacheLinkProjectsResponseDeployHooksFromJSON(jsonString: string): SafeParseResult<UpdateProjectDataCacheLinkProjectsResponseDeployHooks, SDKValidationError>;
|
|
3429
|
+
/** @internal */
|
|
3430
|
+
export declare const Link5$inboundSchema: z.ZodType<Link5, z.ZodTypeDef, unknown>;
|
|
3431
|
+
/** @internal */
|
|
3432
|
+
export type Link5$Outbound = {
|
|
3433
|
+
org?: string | undefined;
|
|
3434
|
+
repoOwnerId?: number | undefined;
|
|
3435
|
+
repo?: string | undefined;
|
|
3436
|
+
repoId?: number | undefined;
|
|
3437
|
+
type?: string | undefined;
|
|
3438
|
+
host?: string | undefined;
|
|
3439
|
+
createdAt?: number | undefined;
|
|
3440
|
+
deployHooks: Array<UpdateProjectDataCacheLinkProjectsResponseDeployHooks$Outbound>;
|
|
3441
|
+
gitCredentialId?: string | undefined;
|
|
3442
|
+
updatedAt?: number | undefined;
|
|
3443
|
+
sourceless?: boolean | undefined;
|
|
3444
|
+
productionBranch?: string | undefined;
|
|
3445
|
+
};
|
|
3446
|
+
/** @internal */
|
|
3447
|
+
export declare const Link5$outboundSchema: z.ZodType<Link5$Outbound, z.ZodTypeDef, Link5>;
|
|
3448
|
+
/**
|
|
3449
|
+
* @internal
|
|
3450
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3451
|
+
*/
|
|
3452
|
+
export declare namespace Link5$ {
|
|
3453
|
+
/** @deprecated use `Link5$inboundSchema` instead. */
|
|
3454
|
+
const inboundSchema: z.ZodType<Link5, z.ZodTypeDef, unknown>;
|
|
3455
|
+
/** @deprecated use `Link5$outboundSchema` instead. */
|
|
3456
|
+
const outboundSchema: z.ZodType<Link5$Outbound, z.ZodTypeDef, Link5>;
|
|
3457
|
+
/** @deprecated use `Link5$Outbound` instead. */
|
|
3458
|
+
type Outbound = Link5$Outbound;
|
|
3459
|
+
}
|
|
3460
|
+
export declare function link5ToJSON(link5: Link5): string;
|
|
3461
|
+
export declare function link5FromJSON(jsonString: string): SafeParseResult<Link5, SDKValidationError>;
|
|
3462
|
+
/** @internal */
|
|
3343
3463
|
export declare const UpdateProjectDataCacheLinkProjectsResponseType$inboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponseType>;
|
|
3344
3464
|
/** @internal */
|
|
3345
3465
|
export declare const UpdateProjectDataCacheLinkProjectsResponseType$outboundSchema: z.ZodNativeEnum<typeof UpdateProjectDataCacheLinkProjectsResponseType>;
|
|
@@ -3350,11 +3470,11 @@ export declare const UpdateProjectDataCacheLinkProjectsResponseType$outboundSche
|
|
|
3350
3470
|
export declare namespace UpdateProjectDataCacheLinkProjectsResponseType$ {
|
|
3351
3471
|
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseType$inboundSchema` instead. */
|
|
3352
3472
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3353
|
-
readonly
|
|
3473
|
+
readonly Bitbucket: "bitbucket";
|
|
3354
3474
|
}>;
|
|
3355
3475
|
/** @deprecated use `UpdateProjectDataCacheLinkProjectsResponseType$outboundSchema` instead. */
|
|
3356
3476
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3357
|
-
readonly
|
|
3477
|
+
readonly Bitbucket: "bitbucket";
|
|
3358
3478
|
}>;
|
|
3359
3479
|
}
|
|
3360
3480
|
/** @internal */
|
|
@@ -3387,12 +3507,12 @@ export declare function updateProjectDataCacheLinkProjectsDeployHooksFromJSON(js
|
|
|
3387
3507
|
export declare const Link4$inboundSchema: z.ZodType<Link4, z.ZodTypeDef, unknown>;
|
|
3388
3508
|
/** @internal */
|
|
3389
3509
|
export type Link4$Outbound = {
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
repoId?: number | undefined;
|
|
3510
|
+
name?: string | undefined;
|
|
3511
|
+
slug?: string | undefined;
|
|
3512
|
+
owner?: string | undefined;
|
|
3394
3513
|
type?: string | undefined;
|
|
3395
|
-
|
|
3514
|
+
uuid?: string | undefined;
|
|
3515
|
+
workspaceUuid?: string | undefined;
|
|
3396
3516
|
createdAt?: number | undefined;
|
|
3397
3517
|
deployHooks: Array<UpdateProjectDataCacheLinkProjectsDeployHooks$Outbound>;
|
|
3398
3518
|
gitCredentialId?: string | undefined;
|
|
@@ -3427,11 +3547,11 @@ export declare const UpdateProjectDataCacheLinkProjectsType$outboundSchema: z.Zo
|
|
|
3427
3547
|
export declare namespace UpdateProjectDataCacheLinkProjectsType$ {
|
|
3428
3548
|
/** @deprecated use `UpdateProjectDataCacheLinkProjectsType$inboundSchema` instead. */
|
|
3429
3549
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3430
|
-
readonly
|
|
3550
|
+
readonly Gitlab: "gitlab";
|
|
3431
3551
|
}>;
|
|
3432
3552
|
/** @deprecated use `UpdateProjectDataCacheLinkProjectsType$outboundSchema` instead. */
|
|
3433
3553
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3434
|
-
readonly
|
|
3554
|
+
readonly Gitlab: "gitlab";
|
|
3435
3555
|
}>;
|
|
3436
3556
|
}
|
|
3437
3557
|
/** @internal */
|
|
@@ -3464,12 +3584,13 @@ export declare function updateProjectDataCacheLinkDeployHooksFromJSON(jsonString
|
|
|
3464
3584
|
export declare const Link3$inboundSchema: z.ZodType<Link3, z.ZodTypeDef, unknown>;
|
|
3465
3585
|
/** @internal */
|
|
3466
3586
|
export type Link3$Outbound = {
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3587
|
+
projectId?: string | undefined;
|
|
3588
|
+
projectName?: string | undefined;
|
|
3589
|
+
projectNameWithNamespace?: string | undefined;
|
|
3590
|
+
projectNamespace?: string | undefined;
|
|
3591
|
+
projectOwnerId?: number | undefined;
|
|
3592
|
+
projectUrl?: string | undefined;
|
|
3470
3593
|
type?: string | undefined;
|
|
3471
|
-
uuid?: string | undefined;
|
|
3472
|
-
workspaceUuid?: string | undefined;
|
|
3473
3594
|
createdAt?: number | undefined;
|
|
3474
3595
|
deployHooks: Array<UpdateProjectDataCacheLinkDeployHooks$Outbound>;
|
|
3475
3596
|
gitCredentialId?: string | undefined;
|
|
@@ -3504,11 +3625,11 @@ export declare const UpdateProjectDataCacheLinkType$outboundSchema: z.ZodNativeE
|
|
|
3504
3625
|
export declare namespace UpdateProjectDataCacheLinkType$ {
|
|
3505
3626
|
/** @deprecated use `UpdateProjectDataCacheLinkType$inboundSchema` instead. */
|
|
3506
3627
|
const inboundSchema: z.ZodNativeEnum<{
|
|
3507
|
-
readonly
|
|
3628
|
+
readonly GithubLimited: "github-limited";
|
|
3508
3629
|
}>;
|
|
3509
3630
|
/** @deprecated use `UpdateProjectDataCacheLinkType$outboundSchema` instead. */
|
|
3510
3631
|
const outboundSchema: z.ZodNativeEnum<{
|
|
3511
|
-
readonly
|
|
3632
|
+
readonly GithubLimited: "github-limited";
|
|
3512
3633
|
}>;
|
|
3513
3634
|
}
|
|
3514
3635
|
/** @internal */
|
|
@@ -3541,17 +3662,15 @@ export declare function linkDeployHooksFromJSON(jsonString: string): SafeParseRe
|
|
|
3541
3662
|
export declare const Link2$inboundSchema: z.ZodType<Link2, z.ZodTypeDef, unknown>;
|
|
3542
3663
|
/** @internal */
|
|
3543
3664
|
export type Link2$Outbound = {
|
|
3544
|
-
projectId?: string | undefined;
|
|
3545
|
-
projectName?: string | undefined;
|
|
3546
|
-
projectNameWithNamespace?: string | undefined;
|
|
3547
|
-
projectNamespace?: string | undefined;
|
|
3548
|
-
projectOwnerId?: number | undefined;
|
|
3549
|
-
projectUrl?: string | undefined;
|
|
3550
3665
|
type?: string | undefined;
|
|
3551
3666
|
createdAt?: number | undefined;
|
|
3667
|
+
updatedAt?: number | undefined;
|
|
3668
|
+
org?: string | undefined;
|
|
3669
|
+
repoOwnerId?: number | undefined;
|
|
3670
|
+
repo?: string | undefined;
|
|
3671
|
+
repoId?: number | undefined;
|
|
3552
3672
|
deployHooks: Array<LinkDeployHooks$Outbound>;
|
|
3553
3673
|
gitCredentialId?: string | undefined;
|
|
3554
|
-
updatedAt?: number | undefined;
|
|
3555
3674
|
sourceless?: boolean | undefined;
|
|
3556
3675
|
productionBranch?: string | undefined;
|
|
3557
3676
|
};
|
|
@@ -3650,7 +3769,7 @@ export declare function link1FromJSON(jsonString: string): SafeParseResult<Link1
|
|
|
3650
3769
|
/** @internal */
|
|
3651
3770
|
export declare const Link$inboundSchema: z.ZodType<Link, z.ZodTypeDef, unknown>;
|
|
3652
3771
|
/** @internal */
|
|
3653
|
-
export type Link$Outbound = Link1$Outbound | Link2$Outbound | Link3$Outbound | Link4$Outbound;
|
|
3772
|
+
export type Link$Outbound = Link1$Outbound | Link2$Outbound | Link3$Outbound | Link4$Outbound | Link5$Outbound;
|
|
3654
3773
|
/** @internal */
|
|
3655
3774
|
export declare const Link$outboundSchema: z.ZodType<Link$Outbound, z.ZodTypeDef, Link>;
|
|
3656
3775
|
/**
|
|
@@ -4460,11 +4579,11 @@ export declare function targetsFromJSON(jsonString: string): SafeParseResult<Tar
|
|
|
4460
4579
|
export declare const Permissions$inboundSchema: z.ZodType<Permissions, z.ZodTypeDef, unknown>;
|
|
4461
4580
|
/** @internal */
|
|
4462
4581
|
export type Permissions$Outbound = {
|
|
4582
|
+
oauth2Connection?: Array<string> | undefined;
|
|
4463
4583
|
user?: Array<string> | undefined;
|
|
4464
4584
|
userConnection?: Array<string> | undefined;
|
|
4465
4585
|
userSudo?: Array<string> | undefined;
|
|
4466
4586
|
webAuthn?: Array<string> | undefined;
|
|
4467
|
-
oauth2Connection?: Array<string> | undefined;
|
|
4468
4587
|
accessGroup?: Array<string> | undefined;
|
|
4469
4588
|
aliasGlobal?: Array<string> | undefined;
|
|
4470
4589
|
analyticsSampling?: Array<string> | undefined;
|
|
@@ -4477,6 +4596,7 @@ export type Permissions$Outbound = {
|
|
|
4477
4596
|
billingInvoiceLanguage?: Array<string> | undefined;
|
|
4478
4597
|
billingPlan?: Array<string> | undefined;
|
|
4479
4598
|
billingPurchaseOrder?: Array<string> | undefined;
|
|
4599
|
+
billingRefund?: Array<string> | undefined;
|
|
4480
4600
|
billingTaxId?: Array<string> | undefined;
|
|
4481
4601
|
blob?: Array<string> | undefined;
|
|
4482
4602
|
budget?: Array<string> | undefined;
|
|
@@ -4486,6 +4606,7 @@ export type Permissions$Outbound = {
|
|
|
4486
4606
|
concurrentBuilds?: Array<string> | undefined;
|
|
4487
4607
|
connect?: Array<string> | undefined;
|
|
4488
4608
|
connectConfiguration?: Array<string> | undefined;
|
|
4609
|
+
defaultDeploymentProtection?: Array<string> | undefined;
|
|
4489
4610
|
domain?: Array<string> | undefined;
|
|
4490
4611
|
domainAcceptDelegation?: Array<string> | undefined;
|
|
4491
4612
|
domainAuthCodes?: Array<string> | undefined;
|
|
@@ -4518,6 +4639,7 @@ export type Permissions$Outbound = {
|
|
|
4518
4639
|
marketplaceInstallationMember?: Array<string> | undefined;
|
|
4519
4640
|
marketplaceBillingData?: Array<string> | undefined;
|
|
4520
4641
|
marketplaceInvoice?: Array<string> | undefined;
|
|
4642
|
+
marketplaceSettings?: Array<string> | undefined;
|
|
4521
4643
|
marketplaceExperimentationItem?: Array<string> | undefined;
|
|
4522
4644
|
marketplaceExperimentationEdgeConfigData?: Array<string> | undefined;
|
|
4523
4645
|
jobGlobal?: Array<string> | undefined;
|
|
@@ -4544,6 +4666,7 @@ export type Permissions$Outbound = {
|
|
|
4544
4666
|
notificationStatementOfReasons?: Array<string> | undefined;
|
|
4545
4667
|
observabilityConfiguration?: Array<string> | undefined;
|
|
4546
4668
|
observabilityNotebook?: Array<string> | undefined;
|
|
4669
|
+
observabilityFunnel?: Array<string> | undefined;
|
|
4547
4670
|
openTelemetryEndpoint?: Array<string> | undefined;
|
|
4548
4671
|
vercelAppInstallation?: Array<string> | undefined;
|
|
4549
4672
|
paymentMethod?: Array<string> | undefined;
|
|
@@ -4607,6 +4730,7 @@ export type Permissions$Outbound = {
|
|
|
4607
4730
|
connectConfigurationLink?: Array<string> | undefined;
|
|
4608
4731
|
dataCacheNamespace?: Array<string> | undefined;
|
|
4609
4732
|
deployment?: Array<string> | undefined;
|
|
4733
|
+
deploymentBuildLogs?: Array<string> | undefined;
|
|
4610
4734
|
deploymentCheck?: Array<string> | undefined;
|
|
4611
4735
|
deploymentCheckPreview?: Array<string> | undefined;
|
|
4612
4736
|
deploymentCheckReRunFromProductionBranch?: Array<string> | undefined;
|
|
@@ -4657,6 +4781,7 @@ export type Permissions$Outbound = {
|
|
|
4657
4781
|
projectDeploymentExpiration?: Array<string> | undefined;
|
|
4658
4782
|
projectRollingRelease?: Array<string> | undefined;
|
|
4659
4783
|
projectTier?: Array<string> | undefined;
|
|
4784
|
+
projectOIDCToken?: Array<string> | undefined;
|
|
4660
4785
|
seawallConfig?: Array<string> | undefined;
|
|
4661
4786
|
skewProtection?: Array<string> | undefined;
|
|
4662
4787
|
analytics?: Array<string> | undefined;
|
|
@@ -4891,16 +5016,16 @@ export declare const UpdateProjectDataCacheTrustedIpsDeploymentType$outboundSche
|
|
|
4891
5016
|
export declare namespace UpdateProjectDataCacheTrustedIpsDeploymentType$ {
|
|
4892
5017
|
/** @deprecated use `UpdateProjectDataCacheTrustedIpsDeploymentType$inboundSchema` instead. */
|
|
4893
5018
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4894
|
-
readonly Production: "production";
|
|
4895
5019
|
readonly Preview: "preview";
|
|
5020
|
+
readonly Production: "production";
|
|
4896
5021
|
readonly All: "all";
|
|
4897
5022
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4898
5023
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4899
5024
|
}>;
|
|
4900
5025
|
/** @deprecated use `UpdateProjectDataCacheTrustedIpsDeploymentType$outboundSchema` instead. */
|
|
4901
5026
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4902
|
-
readonly Production: "production";
|
|
4903
5027
|
readonly Preview: "preview";
|
|
5028
|
+
readonly Production: "production";
|
|
4904
5029
|
readonly All: "all";
|
|
4905
5030
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4906
5031
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -4939,16 +5064,16 @@ export declare const TrustedIpsDeploymentType$outboundSchema: z.ZodNativeEnum<ty
|
|
|
4939
5064
|
export declare namespace TrustedIpsDeploymentType$ {
|
|
4940
5065
|
/** @deprecated use `TrustedIpsDeploymentType$inboundSchema` instead. */
|
|
4941
5066
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4942
|
-
readonly Production: "production";
|
|
4943
5067
|
readonly Preview: "preview";
|
|
5068
|
+
readonly Production: "production";
|
|
4944
5069
|
readonly All: "all";
|
|
4945
5070
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4946
5071
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
4947
5072
|
}>;
|
|
4948
5073
|
/** @deprecated use `TrustedIpsDeploymentType$outboundSchema` instead. */
|
|
4949
5074
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4950
|
-
readonly Production: "production";
|
|
4951
5075
|
readonly Preview: "preview";
|
|
5076
|
+
readonly Production: "production";
|
|
4952
5077
|
readonly All: "all";
|
|
4953
5078
|
readonly ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews";
|
|
4954
5079
|
readonly AllExceptCustomDomains: "all_except_custom_domains";
|
|
@@ -5089,6 +5214,7 @@ export declare const GitProviderOptions$inboundSchema: z.ZodType<GitProviderOpti
|
|
|
5089
5214
|
/** @internal */
|
|
5090
5215
|
export type GitProviderOptions$Outbound = {
|
|
5091
5216
|
createDeployments: string;
|
|
5217
|
+
disableRepositoryDispatchEvents?: boolean | undefined;
|
|
5092
5218
|
};
|
|
5093
5219
|
/** @internal */
|
|
5094
5220
|
export declare const GitProviderOptions$outboundSchema: z.ZodType<GitProviderOptions$Outbound, z.ZodTypeDef, GitProviderOptions>;
|
|
@@ -5874,7 +6000,7 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
|
|
|
5874
6000
|
id: string;
|
|
5875
6001
|
ipBuckets?: Array<UpdateProjectDataCacheIpBuckets$Outbound> | undefined;
|
|
5876
6002
|
latestDeployments?: Array<LatestDeployments$Outbound> | undefined;
|
|
5877
|
-
link?: Link1$Outbound | Link2$Outbound | Link3$Outbound | Link4$Outbound | undefined;
|
|
6003
|
+
link?: Link1$Outbound | Link2$Outbound | Link3$Outbound | Link4$Outbound | Link5$Outbound | undefined;
|
|
5878
6004
|
microfrontends?: UpdateProjectDataCacheMicrofrontends1$Outbound | UpdateProjectDataCacheMicrofrontends2$Outbound | undefined;
|
|
5879
6005
|
name: string;
|
|
5880
6006
|
nodeVersion: string;
|
|
@@ -5923,6 +6049,7 @@ export type UpdateProjectDataCacheResponseBody$Outbound = {
|
|
|
5923
6049
|
oidcTokenConfig?: UpdateProjectDataCacheOidcTokenConfig$Outbound | undefined;
|
|
5924
6050
|
tier?: string | undefined;
|
|
5925
6051
|
features?: Features$Outbound | undefined;
|
|
6052
|
+
v0?: boolean | undefined;
|
|
5926
6053
|
};
|
|
5927
6054
|
/** @internal */
|
|
5928
6055
|
export declare const UpdateProjectDataCacheResponseBody$outboundSchema: z.ZodType<UpdateProjectDataCacheResponseBody$Outbound, z.ZodTypeDef, UpdateProjectDataCacheResponseBody>;
|