@vercel/sdk 1.6.8 → 1.6.10

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.
Files changed (85) hide show
  1. package/bin/mcp-server.js +310 -118
  2. package/bin/mcp-server.js.map +18 -18
  3. package/docs/sdks/user/README.md +2 -0
  4. package/esm/__tests__/environment.test.js +12 -12
  5. package/esm/__tests__/environment.test.js.map +1 -1
  6. package/esm/__tests__/projects.test.js +13 -15
  7. package/esm/__tests__/projects.test.js.map +1 -1
  8. package/esm/funcs/userListUserEvents.js +1 -0
  9. package/esm/funcs/userListUserEvents.js.map +1 -1
  10. package/esm/lib/config.d.ts +3 -3
  11. package/esm/lib/config.js +3 -3
  12. package/esm/lib/config.js.map +1 -1
  13. package/esm/mcp-server/mcp-server.js +1 -1
  14. package/esm/mcp-server/mcp-server.js.map +1 -1
  15. package/esm/mcp-server/server.js +1 -1
  16. package/esm/mcp-server/server.js.map +1 -1
  17. package/esm/models/authuser.d.ts +3 -3
  18. package/esm/models/authuser.d.ts.map +1 -1
  19. package/esm/models/authuser.js +1 -1
  20. package/esm/models/authuser.js.map +1 -1
  21. package/esm/models/createprojectop.d.ts +6 -0
  22. package/esm/models/createprojectop.d.ts.map +1 -1
  23. package/esm/models/createprojectop.js +2 -0
  24. package/esm/models/createprojectop.js.map +1 -1
  25. package/esm/models/createwebhookop.d.ts +24 -0
  26. package/esm/models/createwebhookop.d.ts.map +1 -1
  27. package/esm/models/createwebhookop.js +8 -0
  28. package/esm/models/createwebhookop.js.map +1 -1
  29. package/esm/models/getbypassipop.d.ts +28 -28
  30. package/esm/models/getbypassipop.d.ts.map +1 -1
  31. package/esm/models/getbypassipop.js +28 -28
  32. package/esm/models/getbypassipop.js.map +1 -1
  33. package/esm/models/getprojectsop.d.ts +6 -0
  34. package/esm/models/getprojectsop.d.ts.map +1 -1
  35. package/esm/models/getprojectsop.js +2 -0
  36. package/esm/models/getprojectsop.js.map +1 -1
  37. package/esm/models/getwebhookop.d.ts +12 -0
  38. package/esm/models/getwebhookop.d.ts.map +1 -1
  39. package/esm/models/getwebhookop.js +4 -0
  40. package/esm/models/getwebhookop.js.map +1 -1
  41. package/esm/models/getwebhooksop.d.ts +24 -0
  42. package/esm/models/getwebhooksop.d.ts.map +1 -1
  43. package/esm/models/getwebhooksop.js +8 -0
  44. package/esm/models/getwebhooksop.js.map +1 -1
  45. package/esm/models/listusereventsop.d.ts +6 -1
  46. package/esm/models/listusereventsop.d.ts.map +1 -1
  47. package/esm/models/listusereventsop.js +2 -0
  48. package/esm/models/listusereventsop.js.map +1 -1
  49. package/esm/models/teamlimited.d.ts +30 -1
  50. package/esm/models/teamlimited.d.ts.map +1 -1
  51. package/esm/models/teamlimited.js +24 -0
  52. package/esm/models/teamlimited.js.map +1 -1
  53. package/esm/models/updateprojectdatacacheop.d.ts +6 -0
  54. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  55. package/esm/models/updateprojectdatacacheop.js +2 -0
  56. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  57. package/esm/models/updateprojectop.d.ts +75 -0
  58. package/esm/models/updateprojectop.d.ts.map +1 -1
  59. package/esm/models/updateprojectop.js +56 -0
  60. package/esm/models/updateprojectop.js.map +1 -1
  61. package/esm/models/userevent.d.ts +361 -114
  62. package/esm/models/userevent.d.ts.map +1 -1
  63. package/esm/models/userevent.js +338 -98
  64. package/esm/models/userevent.js.map +1 -1
  65. package/jsr.json +1 -1
  66. package/package.json +1 -1
  67. package/src/__tests__/environment.test.ts +12 -12
  68. package/src/__tests__/projects.test.ts +13 -15
  69. package/src/funcs/userListUserEvents.ts +1 -0
  70. package/src/lib/config.ts +3 -3
  71. package/src/mcp-server/mcp-server.ts +1 -1
  72. package/src/mcp-server/server.ts +1 -1
  73. package/src/models/authuser.ts +1 -1
  74. package/src/models/createprojectop.ts +2 -0
  75. package/src/models/createwebhookop.ts +8 -0
  76. package/src/models/getbypassipop.ts +56 -56
  77. package/src/models/getprojectsop.ts +2 -0
  78. package/src/models/getwebhookop.ts +4 -0
  79. package/src/models/getwebhooksop.ts +8 -0
  80. package/src/models/listusereventsop.ts +8 -1
  81. package/src/models/teamlimited.ts +34 -1
  82. package/src/models/updateprojectdatacacheop.ts +2 -0
  83. package/src/models/updateprojectop.ts +148 -0
  84. package/src/models/userevent.ts +620 -179
  85. package/vercel-spec.json +282 -87
package/bin/mcp-server.js CHANGED
@@ -34190,9 +34190,9 @@ var init_config = __esm(() => {
34190
34190
  SDK_METADATA = {
34191
34191
  language: "typescript",
34192
34192
  openapiDocVersion: "0.0.1",
34193
- sdkVersion: "1.6.8",
34194
- genVersion: "2.596.2",
34195
- userAgent: "speakeasy-sdk/typescript 1.6.8 2.596.2 0.0.1 @vercel/sdk"
34193
+ sdkVersion: "1.6.10",
34194
+ genVersion: "2.597.9",
34195
+ userAgent: "speakeasy-sdk/typescript 1.6.10 2.597.9 0.0.1 @vercel/sdk"
34196
34196
  };
34197
34197
  });
34198
34198
 
@@ -66781,7 +66781,8 @@ var init_createprojectop = __esm(() => {
66781
66781
  Performance: "performance"
66782
66782
  };
66783
66783
  CreateProjectBuildMachineType = {
66784
- Enhanced: "enhanced"
66784
+ Enhanced: "enhanced",
66785
+ Ultra: "ultra"
66785
66786
  };
66786
66787
  CreateProjectProjectsFunctionDefaultMemoryType = {
66787
66788
  StandardLegacy: "standard_legacy",
@@ -66789,7 +66790,8 @@ var init_createprojectop = __esm(() => {
66789
66790
  Performance: "performance"
66790
66791
  };
66791
66792
  CreateProjectProjectsBuildMachineType = {
66792
- Enhanced: "enhanced"
66793
+ Enhanced: "enhanced",
66794
+ Ultra: "ultra"
66793
66795
  };
66794
66796
  CreateProjectDeploymentType = {
66795
66797
  Preview: "preview",
@@ -76487,7 +76489,8 @@ var init_getprojectsop = __esm(() => {
76487
76489
  Performance: "performance"
76488
76490
  };
76489
76491
  GetProjectsBuildMachineType = {
76490
- Enhanced: "enhanced"
76492
+ Enhanced: "enhanced",
76493
+ Ultra: "ultra"
76491
76494
  };
76492
76495
  GetProjectsProjectsFunctionDefaultMemoryType = {
76493
76496
  StandardLegacy: "standard_legacy",
@@ -76495,7 +76498,8 @@ var init_getprojectsop = __esm(() => {
76495
76498
  Performance: "performance"
76496
76499
  };
76497
76500
  GetProjectsProjectsBuildMachineType = {
76498
- Enhanced: "enhanced"
76501
+ Enhanced: "enhanced",
76502
+ Ultra: "ultra"
76499
76503
  };
76500
76504
  GetProjectsDeploymentType = {
76501
76505
  Preview: "preview",
@@ -82049,7 +82053,7 @@ Unpause a project by passing its project \`id\` in the URL. If the project does
82049
82053
  });
82050
82054
 
82051
82055
  // src/models/updateprojectop.ts
82052
- var UpdateProjectFramework, UpdateProjectNodeVersion, UpdateProjectIssuerMode, UpdateProjectDeploymentType, UpdateProjectProjectsDeploymentType, UpdateProjectProjectsRequestDeploymentType, ProtectionMode, UpdateProjectTarget2, UpdateProjectType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectContentHintProjectsResponse200ApplicationJSONType, UpdateProjectContentHintProjectsResponse200Type, UpdateProjectContentHintProjectsResponseType, UpdateProjectContentHintProjectsType, UpdateProjectContentHintType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectProjectsType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType, UpdateProjectProjectsFramework, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType, UpdateProjectChecksConclusion, UpdateProjectChecksState, UpdateProjectPlan, UpdateProjectReadyState, UpdateProjectReadySubstate, UpdateProjectProjectsResponseType, UpdateProjectLinkProjectsResponse200Type, UpdateProjectLinkProjectsResponseType, UpdateProjectLinkProjectsType, UpdateProjectLinkType, UpdateProjectProjectsNodeVersion, UpdateProjectFunctionDefaultMemoryType, UpdateProjectBuildMachineType, UpdateProjectProjectsFunctionDefaultMemoryType, UpdateProjectProjectsBuildMachineType, UpdateProjectProjectsResponseDeploymentType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType, UpdateProjectProjectsChecksConclusion, UpdateProjectProjectsChecksState, UpdateProjectProjectsPlan, UpdateProjectProjectsReadyState, UpdateProjectProjectsReadySubstate, UpdateProjectProjectsResponse200Type, UpdateProjectJobStatus, UpdateProjectProjectsResponse200ApplicationJSONType, UpdateProjectScope, UpdateProjectTrustedIpsProjectsDeploymentType, UpdateProjectTrustedIpsDeploymentType, UpdateProjectTrustedIpsProtectionMode, UpdateProjectCreateDeployments, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType, UpdateProjectHandle, UpdateProjectProjectsAction, UpdateProjectAlgo, UpdateProjectAction, UpdateProjectProjectsIssuerMode, UpdateProjectTier, UpdateProjectFramework$inboundSchema, UpdateProjectFramework$outboundSchema, UpdateProjectFramework$, UpdateProjectNodeVersion$inboundSchema, UpdateProjectNodeVersion$outboundSchema, UpdateProjectNodeVersion$, UpdateProjectIssuerMode$inboundSchema, UpdateProjectIssuerMode$outboundSchema, UpdateProjectIssuerMode$, UpdateProjectOidcTokenConfig$inboundSchema, UpdateProjectOidcTokenConfig$outboundSchema, UpdateProjectOidcTokenConfig$, UpdateProjectDeploymentType$inboundSchema, UpdateProjectDeploymentType$outboundSchema, UpdateProjectDeploymentType$, UpdateProjectPasswordProtection$inboundSchema, UpdateProjectPasswordProtection$outboundSchema, UpdateProjectPasswordProtection$, UpdateProjectProjectsDeploymentType$inboundSchema, UpdateProjectProjectsDeploymentType$outboundSchema, UpdateProjectProjectsDeploymentType$, UpdateProjectSsoProtection$inboundSchema, UpdateProjectSsoProtection$outboundSchema, UpdateProjectSsoProtection$, UpdateProjectProjectsRequestDeploymentType$inboundSchema, UpdateProjectProjectsRequestDeploymentType$outboundSchema, UpdateProjectProjectsRequestDeploymentType$, Addresses$inboundSchema, Addresses$outboundSchema, Addresses$, ProtectionMode$inboundSchema, ProtectionMode$outboundSchema, ProtectionMode$, UpdateProjectTrustedIps$inboundSchema, UpdateProjectTrustedIps$outboundSchema, UpdateProjectTrustedIps$, UpdateProjectPaths$inboundSchema, UpdateProjectPaths$outboundSchema, UpdateProjectPaths$, UpdateProjectOptionsAllowlist$inboundSchema, UpdateProjectOptionsAllowlist$outboundSchema, UpdateProjectOptionsAllowlist$, UpdateProjectRequestBody$inboundSchema, UpdateProjectRequestBody$outboundSchema, UpdateProjectRequestBody$, UpdateProjectRequest$inboundSchema, UpdateProjectRequest$outboundSchema, UpdateProjectRequest$, UpdateProjectAnalytics$inboundSchema, UpdateProjectAnalytics$outboundSchema, UpdateProjectAnalytics$, UpdateProjectSpeedInsights$inboundSchema, UpdateProjectSpeedInsights$outboundSchema, UpdateProjectSpeedInsights$, UpdateProjectDefinitions$inboundSchema, UpdateProjectDefinitions$outboundSchema, UpdateProjectDefinitions$, UpdateProjectCrons$inboundSchema, UpdateProjectCrons$outboundSchema, UpdateProjectCrons$, UpdateProjectDataCache$inboundSchema, UpdateProjectDataCache$outboundSchema, UpdateProjectDataCache$, UpdateProjectDeploymentExpiration$inboundSchema, UpdateProjectDeploymentExpiration$outboundSchema, UpdateProjectDeploymentExpiration$, UpdateProjectTarget2$inboundSchema, UpdateProjectTarget2$outboundSchema, UpdateProjectTarget2$, UpdateProjectTarget$inboundSchema, UpdateProjectTarget$outboundSchema, UpdateProjectTarget$, UpdateProjectType$inboundSchema, UpdateProjectType$outboundSchema, UpdateProjectType$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$, UpdateProjectContentHint15$inboundSchema, UpdateProjectContentHint15$outboundSchema, UpdateProjectContentHint15$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$, UpdateProjectContentHint14$inboundSchema, UpdateProjectContentHint14$outboundSchema, UpdateProjectContentHint14$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$, UpdateProjectContentHint13$inboundSchema, UpdateProjectContentHint13$outboundSchema, UpdateProjectContentHint13$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$, UpdateProjectContentHint12$inboundSchema, UpdateProjectContentHint12$outboundSchema, UpdateProjectContentHint12$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$, UpdateProjectContentHint11$inboundSchema, UpdateProjectContentHint11$outboundSchema, UpdateProjectContentHint11$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$, UpdateProjectContentHint10$inboundSchema, UpdateProjectContentHint10$outboundSchema, UpdateProjectContentHint10$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$, UpdateProjectContentHint9$inboundSchema, UpdateProjectContentHint9$outboundSchema, UpdateProjectContentHint9$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$, UpdateProjectContentHint8$inboundSchema, UpdateProjectContentHint8$outboundSchema, UpdateProjectContentHint8$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$, UpdateProjectContentHint7$inboundSchema, UpdateProjectContentHint7$outboundSchema, UpdateProjectContentHint7$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectContentHint6$inboundSchema, UpdateProjectContentHint6$outboundSchema, UpdateProjectContentHint6$, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$, UpdateProjectContentHint5$inboundSchema, UpdateProjectContentHint5$outboundSchema, UpdateProjectContentHint5$, UpdateProjectContentHintProjectsResponse200Type$inboundSchema, UpdateProjectContentHintProjectsResponse200Type$outboundSchema, UpdateProjectContentHintProjectsResponse200Type$, UpdateProjectContentHint4$inboundSchema, UpdateProjectContentHint4$outboundSchema, UpdateProjectContentHint4$, UpdateProjectContentHintProjectsResponseType$inboundSchema, UpdateProjectContentHintProjectsResponseType$outboundSchema, UpdateProjectContentHintProjectsResponseType$, UpdateProjectContentHint3$inboundSchema, UpdateProjectContentHint3$outboundSchema, UpdateProjectContentHint3$, UpdateProjectContentHintProjectsType$inboundSchema, UpdateProjectContentHintProjectsType$outboundSchema, UpdateProjectContentHintProjectsType$, UpdateProjectContentHint2$inboundSchema, UpdateProjectContentHint2$outboundSchema, UpdateProjectContentHint2$, UpdateProjectContentHintType$inboundSchema, UpdateProjectContentHintType$outboundSchema, UpdateProjectContentHintType$, UpdateProjectContentHint1$inboundSchema, UpdateProjectContentHint1$outboundSchema, UpdateProjectContentHint1$, UpdateProjectContentHint$inboundSchema, UpdateProjectContentHint$outboundSchema, UpdateProjectContentHint$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectInternalContentHint$inboundSchema, UpdateProjectInternalContentHint$outboundSchema, UpdateProjectInternalContentHint$, UpdateProjectEnv$inboundSchema, UpdateProjectEnv$outboundSchema, UpdateProjectEnv$, UpdateProjectProjectsType$inboundSchema, UpdateProjectProjectsType$outboundSchema, UpdateProjectProjectsType$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$, UpdateProjectBranchMatcher$inboundSchema, UpdateProjectBranchMatcher$outboundSchema, UpdateProjectBranchMatcher$, UpdateProjectVerification$inboundSchema, UpdateProjectVerification$outboundSchema, UpdateProjectVerification$, UpdateProjectDomains$inboundSchema, UpdateProjectDomains$outboundSchema, UpdateProjectDomains$, UpdateProjectCustomEnvironments$inboundSchema, UpdateProjectCustomEnvironments$outboundSchema, UpdateProjectCustomEnvironments$, UpdateProjectProjectsFramework$inboundSchema, UpdateProjectProjectsFramework$outboundSchema, UpdateProjectProjectsFramework$, UpdateProjectIpBuckets$inboundSchema, UpdateProjectIpBuckets$outboundSchema, UpdateProjectIpBuckets$, UpdateProjectAliasAssigned$inboundSchema, UpdateProjectAliasAssigned$outboundSchema, UpdateProjectAliasAssigned$, UpdateProjectAliasError$inboundSchema, UpdateProjectAliasError$outboundSchema, UpdateProjectAliasError$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$, UpdateProjectProjectsBranchMatcher$inboundSchema, UpdateProjectProjectsBranchMatcher$outboundSchema, UpdateProjectProjectsBranchMatcher$, UpdateProjectBuilds$inboundSchema, UpdateProjectBuilds$outboundSchema, UpdateProjectBuilds$, UpdateProjectChecksConclusion$inboundSchema, UpdateProjectChecksConclusion$outboundSchema, UpdateProjectChecksConclusion$, UpdateProjectChecksState$inboundSchema, UpdateProjectChecksState$outboundSchema, UpdateProjectChecksState$, UpdateProjectCreator$inboundSchema, UpdateProjectCreator$outboundSchema, UpdateProjectCreator$, UpdateProjectOidcTokenClaims$inboundSchema, UpdateProjectOidcTokenClaims$outboundSchema, UpdateProjectOidcTokenClaims$, UpdateProjectPlan$inboundSchema, UpdateProjectPlan$outboundSchema, UpdateProjectPlan$, UpdateProjectReadyState$inboundSchema, UpdateProjectReadyState$outboundSchema, UpdateProjectReadyState$, UpdateProjectReadySubstate$inboundSchema, UpdateProjectReadySubstate$outboundSchema, UpdateProjectReadySubstate$, UpdateProjectProjectsResponseType$inboundSchema, UpdateProjectProjectsResponseType$outboundSchema, UpdateProjectProjectsResponseType$, UpdateProjectLatestDeployments$inboundSchema, UpdateProjectLatestDeployments$outboundSchema, UpdateProjectLatestDeployments$, UpdateProjectLinkProjectsResponse200Type$inboundSchema, UpdateProjectLinkProjectsResponse200Type$outboundSchema, UpdateProjectLinkProjectsResponse200Type$, UpdateProjectLinkProjectsResponse200DeployHooks$inboundSchema, UpdateProjectLinkProjectsResponse200DeployHooks$outboundSchema, UpdateProjectLinkProjectsResponse200DeployHooks$, UpdateProjectLink4$inboundSchema, UpdateProjectLink4$outboundSchema, UpdateProjectLink4$, UpdateProjectLinkProjectsResponseType$inboundSchema, UpdateProjectLinkProjectsResponseType$outboundSchema, UpdateProjectLinkProjectsResponseType$, UpdateProjectLinkProjectsResponseDeployHooks$inboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$outboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$, UpdateProjectLink3$inboundSchema, UpdateProjectLink3$outboundSchema, UpdateProjectLink3$, UpdateProjectLinkProjectsType$inboundSchema, UpdateProjectLinkProjectsType$outboundSchema, UpdateProjectLinkProjectsType$, UpdateProjectLinkProjectsDeployHooks$inboundSchema, UpdateProjectLinkProjectsDeployHooks$outboundSchema, UpdateProjectLinkProjectsDeployHooks$, UpdateProjectLink2$inboundSchema, UpdateProjectLink2$outboundSchema, UpdateProjectLink2$, UpdateProjectLinkType$inboundSchema, UpdateProjectLinkType$outboundSchema, UpdateProjectLinkType$, UpdateProjectLinkDeployHooks$inboundSchema, UpdateProjectLinkDeployHooks$outboundSchema, UpdateProjectLinkDeployHooks$, UpdateProjectLink1$inboundSchema, UpdateProjectLink1$outboundSchema, UpdateProjectLink1$, UpdateProjectLink$inboundSchema, UpdateProjectLink$outboundSchema, UpdateProjectLink$, UpdateProjectMicrofrontends2$inboundSchema, UpdateProjectMicrofrontends2$outboundSchema, UpdateProjectMicrofrontends2$, UpdateProjectMicrofrontends1$inboundSchema, UpdateProjectMicrofrontends1$outboundSchema, UpdateProjectMicrofrontends1$, UpdateProjectMicrofrontends$inboundSchema, UpdateProjectMicrofrontends$outboundSchema, UpdateProjectMicrofrontends$, UpdateProjectProjectsNodeVersion$inboundSchema, UpdateProjectProjectsNodeVersion$outboundSchema, UpdateProjectProjectsNodeVersion$, UpdateProjectProjectsPaths$inboundSchema, UpdateProjectProjectsPaths$outboundSchema, UpdateProjectProjectsPaths$, UpdateProjectProjectsOptionsAllowlist$inboundSchema, UpdateProjectProjectsOptionsAllowlist$outboundSchema, UpdateProjectProjectsOptionsAllowlist$, UpdateProjectProjectsPasswordProtection$inboundSchema, UpdateProjectProjectsPasswordProtection$outboundSchema, UpdateProjectProjectsPasswordProtection$, UpdateProjectFunctionDefaultMemoryType$inboundSchema, UpdateProjectFunctionDefaultMemoryType$outboundSchema, UpdateProjectFunctionDefaultMemoryType$, UpdateProjectBuildMachineType$inboundSchema, UpdateProjectBuildMachineType$outboundSchema, UpdateProjectBuildMachineType$, UpdateProjectResourceConfig$inboundSchema, UpdateProjectResourceConfig$outboundSchema, UpdateProjectResourceConfig$, UpdateProjectStages$inboundSchema, UpdateProjectStages$outboundSchema, UpdateProjectStages$, UpdateProjectRollingRelease$inboundSchema, UpdateProjectRollingRelease$outboundSchema, UpdateProjectRollingRelease$, UpdateProjectProjectsFunctionDefaultMemoryType$inboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$outboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$, UpdateProjectProjectsBuildMachineType$inboundSchema, UpdateProjectProjectsBuildMachineType$outboundSchema, UpdateProjectProjectsBuildMachineType$, UpdateProjectDefaultResourceConfig$inboundSchema, UpdateProjectDefaultResourceConfig$outboundSchema, UpdateProjectDefaultResourceConfig$, UpdateProjectProjectsResponseDeploymentType$inboundSchema, UpdateProjectProjectsResponseDeploymentType$outboundSchema, UpdateProjectProjectsResponseDeploymentType$, UpdateProjectProjectsSsoProtection$inboundSchema, UpdateProjectProjectsSsoProtection$outboundSchema, UpdateProjectProjectsSsoProtection$, UpdateProjectProjectsAliasAssigned$inboundSchema, UpdateProjectProjectsAliasAssigned$outboundSchema, UpdateProjectProjectsAliasAssigned$, UpdateProjectProjectsAliasError$inboundSchema, UpdateProjectProjectsAliasError$outboundSchema, UpdateProjectProjectsAliasError$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$, UpdateProjectProjectsResponseBranchMatcher$inboundSchema, UpdateProjectProjectsResponseBranchMatcher$outboundSchema, UpdateProjectProjectsResponseBranchMatcher$, UpdateProjectProjectsBuilds$inboundSchema, UpdateProjectProjectsBuilds$outboundSchema, UpdateProjectProjectsBuilds$, UpdateProjectProjectsChecksConclusion$inboundSchema, UpdateProjectProjectsChecksConclusion$outboundSchema, UpdateProjectProjectsChecksConclusion$, UpdateProjectProjectsChecksState$inboundSchema, UpdateProjectProjectsChecksState$outboundSchema, UpdateProjectProjectsChecksState$, UpdateProjectProjectsCreator$inboundSchema, UpdateProjectProjectsCreator$outboundSchema, UpdateProjectProjectsCreator$, UpdateProjectProjectsOidcTokenClaims$inboundSchema, UpdateProjectProjectsOidcTokenClaims$outboundSchema, UpdateProjectProjectsOidcTokenClaims$, UpdateProjectProjectsPlan$inboundSchema, UpdateProjectProjectsPlan$outboundSchema, UpdateProjectProjectsPlan$, UpdateProjectProjectsReadyState$inboundSchema, UpdateProjectProjectsReadyState$outboundSchema, UpdateProjectProjectsReadyState$, UpdateProjectProjectsReadySubstate$inboundSchema, UpdateProjectProjectsReadySubstate$outboundSchema, UpdateProjectProjectsReadySubstate$, UpdateProjectProjectsResponse200Type$inboundSchema, UpdateProjectProjectsResponse200Type$outboundSchema, UpdateProjectProjectsResponse200Type$, UpdateProjectTargets$inboundSchema, UpdateProjectTargets$outboundSchema, UpdateProjectTargets$, UpdateProjectPermissions$inboundSchema, UpdateProjectPermissions$outboundSchema, UpdateProjectPermissions$, UpdateProjectLastRollbackTarget$inboundSchema, UpdateProjectLastRollbackTarget$outboundSchema, UpdateProjectLastRollbackTarget$, UpdateProjectJobStatus$inboundSchema, UpdateProjectJobStatus$outboundSchema, UpdateProjectJobStatus$, UpdateProjectProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$, UpdateProjectLastAliasRequest$inboundSchema, UpdateProjectLastAliasRequest$outboundSchema, UpdateProjectLastAliasRequest$, UpdateProjectScope$inboundSchema, UpdateProjectScope$outboundSchema, UpdateProjectScope$, UpdateProjectProtectionBypass$inboundSchema, UpdateProjectProtectionBypass$outboundSchema, UpdateProjectProtectionBypass$, UpdateProjectTrustedIpsProjectsDeploymentType$inboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$outboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$, UpdateProjectTrustedIps2$inboundSchema, UpdateProjectTrustedIps2$outboundSchema, UpdateProjectTrustedIps2$, UpdateProjectTrustedIpsDeploymentType$inboundSchema, UpdateProjectTrustedIpsDeploymentType$outboundSchema, UpdateProjectTrustedIpsDeploymentType$, UpdateProjectTrustedIpsAddresses$inboundSchema, UpdateProjectTrustedIpsAddresses$outboundSchema, UpdateProjectTrustedIpsAddresses$, UpdateProjectTrustedIpsProtectionMode$inboundSchema, UpdateProjectTrustedIpsProtectionMode$outboundSchema, UpdateProjectTrustedIpsProtectionMode$, UpdateProjectTrustedIps1$inboundSchema, UpdateProjectTrustedIps1$outboundSchema, UpdateProjectTrustedIps1$, UpdateProjectProjectsTrustedIps$inboundSchema, UpdateProjectProjectsTrustedIps$outboundSchema, UpdateProjectProjectsTrustedIps$, UpdateProjectGitComments$inboundSchema, UpdateProjectGitComments$outboundSchema, UpdateProjectGitComments$, UpdateProjectCreateDeployments$inboundSchema, UpdateProjectCreateDeployments$outboundSchema, UpdateProjectCreateDeployments$, UpdateProjectGitProviderOptions$inboundSchema, UpdateProjectGitProviderOptions$outboundSchema, UpdateProjectGitProviderOptions$, UpdateProjectWebAnalytics$inboundSchema, UpdateProjectWebAnalytics$outboundSchema, UpdateProjectWebAnalytics$, UpdateProjectSrc2$inboundSchema, UpdateProjectSrc2$outboundSchema, UpdateProjectSrc2$, UpdateProjectSrc$inboundSchema, UpdateProjectSrc$outboundSchema, UpdateProjectSrc$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$, UpdateProjectValue2$inboundSchema, UpdateProjectValue2$outboundSchema, UpdateProjectValue2$, UpdateProjectValue$inboundSchema, UpdateProjectValue$outboundSchema, UpdateProjectValue$, UpdateProjectHas$inboundSchema, UpdateProjectHas$outboundSchema, UpdateProjectHas$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$, UpdateProjectValueProjects2$inboundSchema, UpdateProjectValueProjects2$outboundSchema, UpdateProjectValueProjects2$, UpdateProjectProjectsValue$inboundSchema, UpdateProjectProjectsValue$outboundSchema, UpdateProjectProjectsValue$, UpdateProjectMissing$inboundSchema, UpdateProjectMissing$outboundSchema, UpdateProjectMissing$, UpdateProjectHandle$inboundSchema, UpdateProjectHandle$outboundSchema, UpdateProjectHandle$, UpdateProjectProjectsAction$inboundSchema, UpdateProjectProjectsAction$outboundSchema, UpdateProjectProjectsAction$, UpdateProjectAlgo$inboundSchema, UpdateProjectAlgo$outboundSchema, UpdateProjectAlgo$, UpdateProjectErl$inboundSchema, UpdateProjectErl$outboundSchema, UpdateProjectErl$, UpdateProjectMitigate$inboundSchema, UpdateProjectMitigate$outboundSchema, UpdateProjectMitigate$, UpdateProjectFirewallRoutes$inboundSchema, UpdateProjectFirewallRoutes$outboundSchema, UpdateProjectFirewallRoutes$, UpdateProjectAction$inboundSchema, UpdateProjectAction$outboundSchema, UpdateProjectAction$, UpdateProjectManagedRules$inboundSchema, UpdateProjectManagedRules$outboundSchema, UpdateProjectManagedRules$, UpdateProjectSecurity$inboundSchema, UpdateProjectSecurity$outboundSchema, UpdateProjectSecurity$, UpdateProjectProjectsIssuerMode$inboundSchema, UpdateProjectProjectsIssuerMode$outboundSchema, UpdateProjectProjectsIssuerMode$, UpdateProjectProjectsOidcTokenConfig$inboundSchema, UpdateProjectProjectsOidcTokenConfig$outboundSchema, UpdateProjectProjectsOidcTokenConfig$, UpdateProjectTier$inboundSchema, UpdateProjectTier$outboundSchema, UpdateProjectTier$, UpdateProjectResponseBody$inboundSchema, UpdateProjectResponseBody$outboundSchema, UpdateProjectResponseBody$;
82056
+ var UpdateProjectFramework, UpdateProjectNodeVersion, UpdateProjectIssuerMode, UpdateProjectDeploymentType, UpdateProjectProjectsDeploymentType, UpdateProjectProjectsRequestDeploymentType, ProtectionMode, UpdateProjectTarget2, UpdateProjectType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectContentHintProjectsResponse200ApplicationJSONType, UpdateProjectContentHintProjectsResponse200Type, UpdateProjectContentHintProjectsResponseType, UpdateProjectContentHintProjectsType, UpdateProjectContentHintType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType, UpdateProjectProjectsType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType, UpdateProjectProjectsFramework, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType, UpdateProjectChecksConclusion, UpdateProjectChecksState, UpdateProjectPlan, UpdateProjectReadyState, UpdateProjectReadySubstate, UpdateProjectProjectsResponseType, UpdateProjectLinkProjectsResponse200Type, UpdateProjectLinkProjectsResponseType, UpdateProjectLinkProjectsType, UpdateProjectLinkType, UpdateProjectProjectsNodeVersion, UpdateProjectFunctionDefaultMemoryType, UpdateProjectBuildMachineType, UpdateProjectProjectsFunctionDefaultMemoryType, UpdateProjectProjectsBuildMachineType, UpdateProjectProjectsResponseDeploymentType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType, UpdateProjectProjectsChecksConclusion, UpdateProjectProjectsChecksState, UpdateProjectProjectsPlan, UpdateProjectProjectsReadyState, UpdateProjectProjectsReadySubstate, UpdateProjectProjectsResponse200Type, UpdateProjectJobStatus, UpdateProjectProjectsResponse200ApplicationJSONType, UpdateProjectScope, UpdateProjectTrustedIpsProjectsDeploymentType, UpdateProjectTrustedIpsDeploymentType, UpdateProjectTrustedIpsProtectionMode, UpdateProjectCreateDeployments, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType, UpdateProjectHandle, UpdateProjectProjectsAction, UpdateProjectAlgo, UpdateProjectAction, UpdateProjectProjectsIssuerMode, UpdateProjectTier, UpdateProjectFramework$inboundSchema, UpdateProjectFramework$outboundSchema, UpdateProjectFramework$, UpdateProjectNodeVersion$inboundSchema, UpdateProjectNodeVersion$outboundSchema, UpdateProjectNodeVersion$, UpdateProjectIssuerMode$inboundSchema, UpdateProjectIssuerMode$outboundSchema, UpdateProjectIssuerMode$, UpdateProjectOidcTokenConfig$inboundSchema, UpdateProjectOidcTokenConfig$outboundSchema, UpdateProjectOidcTokenConfig$, UpdateProjectDeploymentType$inboundSchema, UpdateProjectDeploymentType$outboundSchema, UpdateProjectDeploymentType$, UpdateProjectPasswordProtection$inboundSchema, UpdateProjectPasswordProtection$outboundSchema, UpdateProjectPasswordProtection$, UpdateProjectProjectsDeploymentType$inboundSchema, UpdateProjectProjectsDeploymentType$outboundSchema, UpdateProjectProjectsDeploymentType$, UpdateProjectSsoProtection$inboundSchema, UpdateProjectSsoProtection$outboundSchema, UpdateProjectSsoProtection$, UpdateProjectProjectsRequestDeploymentType$inboundSchema, UpdateProjectProjectsRequestDeploymentType$outboundSchema, UpdateProjectProjectsRequestDeploymentType$, Addresses$inboundSchema, Addresses$outboundSchema, Addresses$, ProtectionMode$inboundSchema, ProtectionMode$outboundSchema, ProtectionMode$, UpdateProjectTrustedIps$inboundSchema, UpdateProjectTrustedIps$outboundSchema, UpdateProjectTrustedIps$, UpdateProjectPaths$inboundSchema, UpdateProjectPaths$outboundSchema, UpdateProjectPaths$, UpdateProjectOptionsAllowlist$inboundSchema, UpdateProjectOptionsAllowlist$outboundSchema, UpdateProjectOptionsAllowlist$, ConnectConfigurations1$inboundSchema, ConnectConfigurations1$outboundSchema, ConnectConfigurations1$, ConnectConfigurations$inboundSchema, ConnectConfigurations$outboundSchema, ConnectConfigurations$, UpdateProjectRequestBody$inboundSchema, UpdateProjectRequestBody$outboundSchema, UpdateProjectRequestBody$, UpdateProjectRequest$inboundSchema, UpdateProjectRequest$outboundSchema, UpdateProjectRequest$, UpdateProjectAnalytics$inboundSchema, UpdateProjectAnalytics$outboundSchema, UpdateProjectAnalytics$, UpdateProjectSpeedInsights$inboundSchema, UpdateProjectSpeedInsights$outboundSchema, UpdateProjectSpeedInsights$, UpdateProjectDefinitions$inboundSchema, UpdateProjectDefinitions$outboundSchema, UpdateProjectDefinitions$, UpdateProjectCrons$inboundSchema, UpdateProjectCrons$outboundSchema, UpdateProjectCrons$, UpdateProjectDataCache$inboundSchema, UpdateProjectDataCache$outboundSchema, UpdateProjectDataCache$, UpdateProjectDeploymentExpiration$inboundSchema, UpdateProjectDeploymentExpiration$outboundSchema, UpdateProjectDeploymentExpiration$, UpdateProjectTarget2$inboundSchema, UpdateProjectTarget2$outboundSchema, UpdateProjectTarget2$, UpdateProjectTarget$inboundSchema, UpdateProjectTarget$outboundSchema, UpdateProjectTarget$, UpdateProjectType$inboundSchema, UpdateProjectType$outboundSchema, UpdateProjectType$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type$, UpdateProjectContentHint15$inboundSchema, UpdateProjectContentHint15$outboundSchema, UpdateProjectContentHint15$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv14Type$, UpdateProjectContentHint14$inboundSchema, UpdateProjectContentHint14$outboundSchema, UpdateProjectContentHint14$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv13Type$, UpdateProjectContentHint13$inboundSchema, UpdateProjectContentHint13$outboundSchema, UpdateProjectContentHint13$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv12Type$, UpdateProjectContentHint12$inboundSchema, UpdateProjectContentHint12$outboundSchema, UpdateProjectContentHint12$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv11Type$, UpdateProjectContentHint11$inboundSchema, UpdateProjectContentHint11$outboundSchema, UpdateProjectContentHint11$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv10Type$, UpdateProjectContentHint10$inboundSchema, UpdateProjectContentHint10$outboundSchema, UpdateProjectContentHint10$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv9Type$, UpdateProjectContentHint9$inboundSchema, UpdateProjectContentHint9$outboundSchema, UpdateProjectContentHint9$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv8Type$, UpdateProjectContentHint8$inboundSchema, UpdateProjectContentHint8$outboundSchema, UpdateProjectContentHint8$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnvType$, UpdateProjectContentHint7$inboundSchema, UpdateProjectContentHint7$outboundSchema, UpdateProjectContentHint7$, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectContentHint6$inboundSchema, UpdateProjectContentHint6$outboundSchema, UpdateProjectContentHint6$, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectContentHintProjectsResponse200ApplicationJSONType$, UpdateProjectContentHint5$inboundSchema, UpdateProjectContentHint5$outboundSchema, UpdateProjectContentHint5$, UpdateProjectContentHintProjectsResponse200Type$inboundSchema, UpdateProjectContentHintProjectsResponse200Type$outboundSchema, UpdateProjectContentHintProjectsResponse200Type$, UpdateProjectContentHint4$inboundSchema, UpdateProjectContentHint4$outboundSchema, UpdateProjectContentHint4$, UpdateProjectContentHintProjectsResponseType$inboundSchema, UpdateProjectContentHintProjectsResponseType$outboundSchema, UpdateProjectContentHintProjectsResponseType$, UpdateProjectContentHint3$inboundSchema, UpdateProjectContentHint3$outboundSchema, UpdateProjectContentHint3$, UpdateProjectContentHintProjectsType$inboundSchema, UpdateProjectContentHintProjectsType$outboundSchema, UpdateProjectContentHintProjectsType$, UpdateProjectContentHint2$inboundSchema, UpdateProjectContentHint2$outboundSchema, UpdateProjectContentHint2$, UpdateProjectContentHintType$inboundSchema, UpdateProjectContentHintType$outboundSchema, UpdateProjectContentHintType$, UpdateProjectContentHint1$inboundSchema, UpdateProjectContentHint1$outboundSchema, UpdateProjectContentHint1$, UpdateProjectContentHint$inboundSchema, UpdateProjectContentHint$outboundSchema, UpdateProjectContentHint$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyType$, UpdateProjectInternalContentHint$inboundSchema, UpdateProjectInternalContentHint$outboundSchema, UpdateProjectInternalContentHint$, UpdateProjectEnv$inboundSchema, UpdateProjectEnv$outboundSchema, UpdateProjectEnv$, UpdateProjectProjectsType$inboundSchema, UpdateProjectProjectsType$outboundSchema, UpdateProjectProjectsType$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyCustomEnvironmentsType$, UpdateProjectBranchMatcher$inboundSchema, UpdateProjectBranchMatcher$outboundSchema, UpdateProjectBranchMatcher$, UpdateProjectVerification$inboundSchema, UpdateProjectVerification$outboundSchema, UpdateProjectVerification$, UpdateProjectDomains$inboundSchema, UpdateProjectDomains$outboundSchema, UpdateProjectDomains$, UpdateProjectCustomEnvironments$inboundSchema, UpdateProjectCustomEnvironments$outboundSchema, UpdateProjectCustomEnvironments$, UpdateProjectProjectsFramework$inboundSchema, UpdateProjectProjectsFramework$outboundSchema, UpdateProjectProjectsFramework$, UpdateProjectIpBuckets$inboundSchema, UpdateProjectIpBuckets$outboundSchema, UpdateProjectIpBuckets$, UpdateProjectAliasAssigned$inboundSchema, UpdateProjectAliasAssigned$outboundSchema, UpdateProjectAliasAssigned$, UpdateProjectAliasError$inboundSchema, UpdateProjectAliasError$outboundSchema, UpdateProjectAliasError$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyLatestDeploymentsType$, UpdateProjectProjectsBranchMatcher$inboundSchema, UpdateProjectProjectsBranchMatcher$outboundSchema, UpdateProjectProjectsBranchMatcher$, UpdateProjectBuilds$inboundSchema, UpdateProjectBuilds$outboundSchema, UpdateProjectBuilds$, UpdateProjectChecksConclusion$inboundSchema, UpdateProjectChecksConclusion$outboundSchema, UpdateProjectChecksConclusion$, UpdateProjectChecksState$inboundSchema, UpdateProjectChecksState$outboundSchema, UpdateProjectChecksState$, UpdateProjectCreator$inboundSchema, UpdateProjectCreator$outboundSchema, UpdateProjectCreator$, UpdateProjectOidcTokenClaims$inboundSchema, UpdateProjectOidcTokenClaims$outboundSchema, UpdateProjectOidcTokenClaims$, UpdateProjectPlan$inboundSchema, UpdateProjectPlan$outboundSchema, UpdateProjectPlan$, UpdateProjectReadyState$inboundSchema, UpdateProjectReadyState$outboundSchema, UpdateProjectReadyState$, UpdateProjectReadySubstate$inboundSchema, UpdateProjectReadySubstate$outboundSchema, UpdateProjectReadySubstate$, UpdateProjectProjectsResponseType$inboundSchema, UpdateProjectProjectsResponseType$outboundSchema, UpdateProjectProjectsResponseType$, UpdateProjectLatestDeployments$inboundSchema, UpdateProjectLatestDeployments$outboundSchema, UpdateProjectLatestDeployments$, UpdateProjectLinkProjectsResponse200Type$inboundSchema, UpdateProjectLinkProjectsResponse200Type$outboundSchema, UpdateProjectLinkProjectsResponse200Type$, UpdateProjectLinkProjectsResponse200DeployHooks$inboundSchema, UpdateProjectLinkProjectsResponse200DeployHooks$outboundSchema, UpdateProjectLinkProjectsResponse200DeployHooks$, UpdateProjectLink4$inboundSchema, UpdateProjectLink4$outboundSchema, UpdateProjectLink4$, UpdateProjectLinkProjectsResponseType$inboundSchema, UpdateProjectLinkProjectsResponseType$outboundSchema, UpdateProjectLinkProjectsResponseType$, UpdateProjectLinkProjectsResponseDeployHooks$inboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$outboundSchema, UpdateProjectLinkProjectsResponseDeployHooks$, UpdateProjectLink3$inboundSchema, UpdateProjectLink3$outboundSchema, UpdateProjectLink3$, UpdateProjectLinkProjectsType$inboundSchema, UpdateProjectLinkProjectsType$outboundSchema, UpdateProjectLinkProjectsType$, UpdateProjectLinkProjectsDeployHooks$inboundSchema, UpdateProjectLinkProjectsDeployHooks$outboundSchema, UpdateProjectLinkProjectsDeployHooks$, UpdateProjectLink2$inboundSchema, UpdateProjectLink2$outboundSchema, UpdateProjectLink2$, UpdateProjectLinkType$inboundSchema, UpdateProjectLinkType$outboundSchema, UpdateProjectLinkType$, UpdateProjectLinkDeployHooks$inboundSchema, UpdateProjectLinkDeployHooks$outboundSchema, UpdateProjectLinkDeployHooks$, UpdateProjectLink1$inboundSchema, UpdateProjectLink1$outboundSchema, UpdateProjectLink1$, UpdateProjectLink$inboundSchema, UpdateProjectLink$outboundSchema, UpdateProjectLink$, UpdateProjectMicrofrontends2$inboundSchema, UpdateProjectMicrofrontends2$outboundSchema, UpdateProjectMicrofrontends2$, UpdateProjectMicrofrontends1$inboundSchema, UpdateProjectMicrofrontends1$outboundSchema, UpdateProjectMicrofrontends1$, UpdateProjectMicrofrontends$inboundSchema, UpdateProjectMicrofrontends$outboundSchema, UpdateProjectMicrofrontends$, UpdateProjectProjectsNodeVersion$inboundSchema, UpdateProjectProjectsNodeVersion$outboundSchema, UpdateProjectProjectsNodeVersion$, UpdateProjectProjectsPaths$inboundSchema, UpdateProjectProjectsPaths$outboundSchema, UpdateProjectProjectsPaths$, UpdateProjectProjectsOptionsAllowlist$inboundSchema, UpdateProjectProjectsOptionsAllowlist$outboundSchema, UpdateProjectProjectsOptionsAllowlist$, UpdateProjectProjectsPasswordProtection$inboundSchema, UpdateProjectProjectsPasswordProtection$outboundSchema, UpdateProjectProjectsPasswordProtection$, UpdateProjectFunctionDefaultMemoryType$inboundSchema, UpdateProjectFunctionDefaultMemoryType$outboundSchema, UpdateProjectFunctionDefaultMemoryType$, UpdateProjectBuildMachineType$inboundSchema, UpdateProjectBuildMachineType$outboundSchema, UpdateProjectBuildMachineType$, UpdateProjectResourceConfig$inboundSchema, UpdateProjectResourceConfig$outboundSchema, UpdateProjectResourceConfig$, UpdateProjectStages$inboundSchema, UpdateProjectStages$outboundSchema, UpdateProjectStages$, UpdateProjectRollingRelease$inboundSchema, UpdateProjectRollingRelease$outboundSchema, UpdateProjectRollingRelease$, UpdateProjectProjectsFunctionDefaultMemoryType$inboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$outboundSchema, UpdateProjectProjectsFunctionDefaultMemoryType$, UpdateProjectProjectsBuildMachineType$inboundSchema, UpdateProjectProjectsBuildMachineType$outboundSchema, UpdateProjectProjectsBuildMachineType$, UpdateProjectDefaultResourceConfig$inboundSchema, UpdateProjectDefaultResourceConfig$outboundSchema, UpdateProjectDefaultResourceConfig$, UpdateProjectProjectsResponseDeploymentType$inboundSchema, UpdateProjectProjectsResponseDeploymentType$outboundSchema, UpdateProjectProjectsResponseDeploymentType$, UpdateProjectProjectsSsoProtection$inboundSchema, UpdateProjectProjectsSsoProtection$outboundSchema, UpdateProjectProjectsSsoProtection$, UpdateProjectProjectsAliasAssigned$inboundSchema, UpdateProjectProjectsAliasAssigned$outboundSchema, UpdateProjectProjectsAliasAssigned$, UpdateProjectProjectsAliasError$inboundSchema, UpdateProjectProjectsAliasError$outboundSchema, UpdateProjectProjectsAliasError$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodyTargetsType$, UpdateProjectProjectsResponseBranchMatcher$inboundSchema, UpdateProjectProjectsResponseBranchMatcher$outboundSchema, UpdateProjectProjectsResponseBranchMatcher$, UpdateProjectProjectsBuilds$inboundSchema, UpdateProjectProjectsBuilds$outboundSchema, UpdateProjectProjectsBuilds$, UpdateProjectProjectsChecksConclusion$inboundSchema, UpdateProjectProjectsChecksConclusion$outboundSchema, UpdateProjectProjectsChecksConclusion$, UpdateProjectProjectsChecksState$inboundSchema, UpdateProjectProjectsChecksState$outboundSchema, UpdateProjectProjectsChecksState$, UpdateProjectProjectsCreator$inboundSchema, UpdateProjectProjectsCreator$outboundSchema, UpdateProjectProjectsCreator$, UpdateProjectProjectsOidcTokenClaims$inboundSchema, UpdateProjectProjectsOidcTokenClaims$outboundSchema, UpdateProjectProjectsOidcTokenClaims$, UpdateProjectProjectsPlan$inboundSchema, UpdateProjectProjectsPlan$outboundSchema, UpdateProjectProjectsPlan$, UpdateProjectProjectsReadyState$inboundSchema, UpdateProjectProjectsReadyState$outboundSchema, UpdateProjectProjectsReadyState$, UpdateProjectProjectsReadySubstate$inboundSchema, UpdateProjectProjectsReadySubstate$outboundSchema, UpdateProjectProjectsReadySubstate$, UpdateProjectProjectsResponse200Type$inboundSchema, UpdateProjectProjectsResponse200Type$outboundSchema, UpdateProjectProjectsResponse200Type$, UpdateProjectTargets$inboundSchema, UpdateProjectTargets$outboundSchema, UpdateProjectTargets$, UpdateProjectPermissions$inboundSchema, UpdateProjectPermissions$outboundSchema, UpdateProjectPermissions$, UpdateProjectLastRollbackTarget$inboundSchema, UpdateProjectLastRollbackTarget$outboundSchema, UpdateProjectLastRollbackTarget$, UpdateProjectJobStatus$inboundSchema, UpdateProjectJobStatus$outboundSchema, UpdateProjectJobStatus$, UpdateProjectProjectsResponse200ApplicationJSONType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONType$, UpdateProjectLastAliasRequest$inboundSchema, UpdateProjectLastAliasRequest$outboundSchema, UpdateProjectLastAliasRequest$, UpdateProjectScope$inboundSchema, UpdateProjectScope$outboundSchema, UpdateProjectScope$, UpdateProjectProtectionBypass$inboundSchema, UpdateProjectProtectionBypass$outboundSchema, UpdateProjectProtectionBypass$, UpdateProjectTrustedIpsProjectsDeploymentType$inboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$outboundSchema, UpdateProjectTrustedIpsProjectsDeploymentType$, UpdateProjectTrustedIps2$inboundSchema, UpdateProjectTrustedIps2$outboundSchema, UpdateProjectTrustedIps2$, UpdateProjectTrustedIpsDeploymentType$inboundSchema, UpdateProjectTrustedIpsDeploymentType$outboundSchema, UpdateProjectTrustedIpsDeploymentType$, UpdateProjectTrustedIpsAddresses$inboundSchema, UpdateProjectTrustedIpsAddresses$outboundSchema, UpdateProjectTrustedIpsAddresses$, UpdateProjectTrustedIpsProtectionMode$inboundSchema, UpdateProjectTrustedIpsProtectionMode$outboundSchema, UpdateProjectTrustedIpsProtectionMode$, UpdateProjectTrustedIps1$inboundSchema, UpdateProjectTrustedIps1$outboundSchema, UpdateProjectTrustedIps1$, UpdateProjectProjectsTrustedIps$inboundSchema, UpdateProjectProjectsTrustedIps$outboundSchema, UpdateProjectProjectsTrustedIps$, UpdateProjectGitComments$inboundSchema, UpdateProjectGitComments$outboundSchema, UpdateProjectGitComments$, UpdateProjectCreateDeployments$inboundSchema, UpdateProjectCreateDeployments$outboundSchema, UpdateProjectCreateDeployments$, UpdateProjectGitProviderOptions$inboundSchema, UpdateProjectGitProviderOptions$outboundSchema, UpdateProjectGitProviderOptions$, UpdateProjectWebAnalytics$inboundSchema, UpdateProjectWebAnalytics$outboundSchema, UpdateProjectWebAnalytics$, UpdateProjectSrc2$inboundSchema, UpdateProjectSrc2$outboundSchema, UpdateProjectSrc2$, UpdateProjectSrc$inboundSchema, UpdateProjectSrc$outboundSchema, UpdateProjectSrc$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType$, UpdateProjectValue2$inboundSchema, UpdateProjectValue2$outboundSchema, UpdateProjectValue2$, UpdateProjectValue$inboundSchema, UpdateProjectValue$outboundSchema, UpdateProjectValue$, UpdateProjectHas$inboundSchema, UpdateProjectHas$outboundSchema, UpdateProjectHas$, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$inboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$outboundSchema, UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType$, UpdateProjectValueProjects2$inboundSchema, UpdateProjectValueProjects2$outboundSchema, UpdateProjectValueProjects2$, UpdateProjectProjectsValue$inboundSchema, UpdateProjectProjectsValue$outboundSchema, UpdateProjectProjectsValue$, UpdateProjectMissing$inboundSchema, UpdateProjectMissing$outboundSchema, UpdateProjectMissing$, UpdateProjectHandle$inboundSchema, UpdateProjectHandle$outboundSchema, UpdateProjectHandle$, UpdateProjectProjectsAction$inboundSchema, UpdateProjectProjectsAction$outboundSchema, UpdateProjectProjectsAction$, UpdateProjectAlgo$inboundSchema, UpdateProjectAlgo$outboundSchema, UpdateProjectAlgo$, UpdateProjectErl$inboundSchema, UpdateProjectErl$outboundSchema, UpdateProjectErl$, UpdateProjectMitigate$inboundSchema, UpdateProjectMitigate$outboundSchema, UpdateProjectMitigate$, UpdateProjectFirewallRoutes$inboundSchema, UpdateProjectFirewallRoutes$outboundSchema, UpdateProjectFirewallRoutes$, UpdateProjectAction$inboundSchema, UpdateProjectAction$outboundSchema, UpdateProjectAction$, UpdateProjectManagedRules$inboundSchema, UpdateProjectManagedRules$outboundSchema, UpdateProjectManagedRules$, UpdateProjectSecurity$inboundSchema, UpdateProjectSecurity$outboundSchema, UpdateProjectSecurity$, UpdateProjectProjectsIssuerMode$inboundSchema, UpdateProjectProjectsIssuerMode$outboundSchema, UpdateProjectProjectsIssuerMode$, UpdateProjectProjectsOidcTokenConfig$inboundSchema, UpdateProjectProjectsOidcTokenConfig$outboundSchema, UpdateProjectProjectsOidcTokenConfig$, UpdateProjectTier$inboundSchema, UpdateProjectTier$outboundSchema, UpdateProjectTier$, UpdateProjectResponseBody$inboundSchema, UpdateProjectResponseBody$outboundSchema, UpdateProjectResponseBody$;
82053
82057
  var init_updateprojectop = __esm(() => {
82054
82058
  init_lib();
82055
82059
  init_primitives();
@@ -82318,7 +82322,8 @@ var init_updateprojectop = __esm(() => {
82318
82322
  Performance: "performance"
82319
82323
  };
82320
82324
  UpdateProjectBuildMachineType = {
82321
- Enhanced: "enhanced"
82325
+ Enhanced: "enhanced",
82326
+ Ultra: "ultra"
82322
82327
  };
82323
82328
  UpdateProjectProjectsFunctionDefaultMemoryType = {
82324
82329
  StandardLegacy: "standard_legacy",
@@ -82326,7 +82331,8 @@ var init_updateprojectop = __esm(() => {
82326
82331
  Performance: "performance"
82327
82332
  };
82328
82333
  UpdateProjectProjectsBuildMachineType = {
82329
- Enhanced: "enhanced"
82334
+ Enhanced: "enhanced",
82335
+ Ultra: "ultra"
82330
82336
  };
82331
82337
  UpdateProjectProjectsResponseDeploymentType = {
82332
82338
  Preview: "preview",
@@ -82584,6 +82590,28 @@ var init_updateprojectop = __esm(() => {
82584
82590
  UpdateProjectOptionsAllowlist$.inboundSchema = UpdateProjectOptionsAllowlist$inboundSchema;
82585
82591
  UpdateProjectOptionsAllowlist$.outboundSchema = UpdateProjectOptionsAllowlist$outboundSchema;
82586
82592
  })(UpdateProjectOptionsAllowlist$ ||= {});
82593
+ ConnectConfigurations1$inboundSchema = objectType({
82594
+ envId: stringType(),
82595
+ connectConfigurationId: stringType(),
82596
+ passive: booleanType(),
82597
+ buildsEnabled: booleanType()
82598
+ });
82599
+ ConnectConfigurations1$outboundSchema = objectType({
82600
+ envId: stringType(),
82601
+ connectConfigurationId: stringType(),
82602
+ passive: booleanType(),
82603
+ buildsEnabled: booleanType()
82604
+ });
82605
+ ((ConnectConfigurations1$) => {
82606
+ ConnectConfigurations1$.inboundSchema = ConnectConfigurations1$inboundSchema;
82607
+ ConnectConfigurations1$.outboundSchema = ConnectConfigurations1$outboundSchema;
82608
+ })(ConnectConfigurations1$ ||= {});
82609
+ ConnectConfigurations$inboundSchema = lazyType(() => ConnectConfigurations1$inboundSchema);
82610
+ ConnectConfigurations$outboundSchema = lazyType(() => ConnectConfigurations1$outboundSchema);
82611
+ ((ConnectConfigurations$) => {
82612
+ ConnectConfigurations$.inboundSchema = ConnectConfigurations$inboundSchema;
82613
+ ConnectConfigurations$.outboundSchema = ConnectConfigurations$outboundSchema;
82614
+ })(ConnectConfigurations$ ||= {});
82587
82615
  UpdateProjectRequestBody$inboundSchema = objectType({
82588
82616
  autoExposeSystemEnvs: booleanType().optional(),
82589
82617
  autoAssignCustomDomains: booleanType().optional(),
@@ -82616,7 +82644,8 @@ var init_updateprojectop = __esm(() => {
82616
82644
  passwordProtection: nullableType(lazyType(() => UpdateProjectPasswordProtection$inboundSchema)).optional(),
82617
82645
  ssoProtection: nullableType(lazyType(() => UpdateProjectSsoProtection$inboundSchema)).optional(),
82618
82646
  trustedIps: nullableType(lazyType(() => UpdateProjectTrustedIps$inboundSchema)).optional(),
82619
- optionsAllowlist: nullableType(lazyType(() => UpdateProjectOptionsAllowlist$inboundSchema)).optional()
82647
+ optionsAllowlist: nullableType(lazyType(() => UpdateProjectOptionsAllowlist$inboundSchema)).optional(),
82648
+ connectConfigurations: nullableType(arrayType(lazyType(() => ConnectConfigurations1$inboundSchema))).optional()
82620
82649
  });
82621
82650
  UpdateProjectRequestBody$outboundSchema = objectType({
82622
82651
  autoExposeSystemEnvs: booleanType().optional(),
@@ -82650,7 +82679,8 @@ var init_updateprojectop = __esm(() => {
82650
82679
  passwordProtection: nullableType(lazyType(() => UpdateProjectPasswordProtection$outboundSchema)).optional(),
82651
82680
  ssoProtection: nullableType(lazyType(() => UpdateProjectSsoProtection$outboundSchema)).optional(),
82652
82681
  trustedIps: nullableType(lazyType(() => UpdateProjectTrustedIps$outboundSchema)).optional(),
82653
- optionsAllowlist: nullableType(lazyType(() => UpdateProjectOptionsAllowlist$outboundSchema)).optional()
82682
+ optionsAllowlist: nullableType(lazyType(() => UpdateProjectOptionsAllowlist$outboundSchema)).optional(),
82683
+ connectConfigurations: nullableType(arrayType(lazyType(() => ConnectConfigurations1$outboundSchema))).optional()
82654
82684
  });
82655
82685
  ((UpdateProjectRequestBody$) => {
82656
82686
  UpdateProjectRequestBody$.inboundSchema = UpdateProjectRequestBody$inboundSchema;
@@ -85578,7 +85608,8 @@ var init_updateprojectdatacacheop = __esm(() => {
85578
85608
  Performance: "performance"
85579
85609
  };
85580
85610
  BuildMachineType = {
85581
- Enhanced: "enhanced"
85611
+ Enhanced: "enhanced",
85612
+ Ultra: "ultra"
85582
85613
  };
85583
85614
  UpdateProjectDataCacheFunctionDefaultMemoryType = {
85584
85615
  StandardLegacy: "standard_legacy",
@@ -85586,7 +85617,8 @@ var init_updateprojectdatacacheop = __esm(() => {
85586
85617
  Performance: "performance"
85587
85618
  };
85588
85619
  UpdateProjectDataCacheBuildMachineType = {
85589
- Enhanced: "enhanced"
85620
+ Enhanced: "enhanced",
85621
+ Ultra: "ultra"
85590
85622
  };
85591
85623
  UpdateProjectDataCacheDeploymentType = {
85592
85624
  Preview: "preview",
@@ -89727,18 +89759,18 @@ var init_getbypassipop = __esm(() => {
89727
89759
  GetBypassIpResponseBodyAction$.outboundSchema = GetBypassIpResponseBodyAction$outboundSchema;
89728
89760
  })(GetBypassIpResponseBodyAction$ ||= {});
89729
89761
  GetBypassIpResponseBodyResult$inboundSchema = objectType({
89730
- OwnerId: stringType(),
89731
- Id: stringType(),
89732
- Domain: stringType(),
89733
- Ip: stringType(),
89762
+ OwnerId: stringType().optional(),
89763
+ Id: stringType().optional(),
89764
+ Domain: stringType().optional(),
89765
+ Ip: stringType().optional(),
89734
89766
  Action: GetBypassIpResponseBodyAction$inboundSchema.optional(),
89735
89767
  ProjectId: stringType().optional(),
89736
89768
  IsProjectRule: booleanType().optional(),
89737
89769
  Note: stringType().optional(),
89738
- CreatedAt: stringType(),
89770
+ CreatedAt: stringType().optional(),
89739
89771
  ActorId: stringType().optional(),
89740
- UpdatedAt: stringType(),
89741
- UpdatedAtHour: stringType(),
89772
+ UpdatedAt: stringType().optional(),
89773
+ UpdatedAtHour: stringType().optional(),
89742
89774
  DeletedAt: stringType().optional(),
89743
89775
  ExpiresAt: nullableType(numberType()).optional()
89744
89776
  }).transform((v2) => {
@@ -89760,18 +89792,18 @@ var init_getbypassipop = __esm(() => {
89760
89792
  });
89761
89793
  });
89762
89794
  GetBypassIpResponseBodyResult$outboundSchema = objectType({
89763
- ownerId: stringType(),
89764
- id: stringType(),
89765
- domain: stringType(),
89766
- ip: stringType(),
89795
+ ownerId: stringType().optional(),
89796
+ id: stringType().optional(),
89797
+ domain: stringType().optional(),
89798
+ ip: stringType().optional(),
89767
89799
  action: GetBypassIpResponseBodyAction$outboundSchema.optional(),
89768
89800
  projectId: stringType().optional(),
89769
89801
  isProjectRule: booleanType().optional(),
89770
89802
  note: stringType().optional(),
89771
- createdAt: stringType(),
89803
+ createdAt: stringType().optional(),
89772
89804
  actorId: stringType().optional(),
89773
- updatedAt: stringType(),
89774
- updatedAtHour: stringType(),
89805
+ updatedAt: stringType().optional(),
89806
+ updatedAtHour: stringType().optional(),
89775
89807
  deletedAt: stringType().optional(),
89776
89808
  expiresAt: nullableType(numberType()).optional()
89777
89809
  }).transform((v2) => {
@@ -89837,18 +89869,18 @@ var init_getbypassipop = __esm(() => {
89837
89869
  ResponseBodyAction$.outboundSchema = ResponseBodyAction$outboundSchema;
89838
89870
  })(ResponseBodyAction$ ||= {});
89839
89871
  ResponseBodyResult$inboundSchema = objectType({
89840
- OwnerId: stringType(),
89841
- Id: stringType(),
89842
- Domain: stringType(),
89843
- Ip: stringType(),
89872
+ OwnerId: stringType().optional(),
89873
+ Id: stringType().optional(),
89874
+ Domain: stringType().optional(),
89875
+ Ip: stringType().optional(),
89844
89876
  Action: ResponseBodyAction$inboundSchema.optional(),
89845
89877
  ProjectId: stringType().optional(),
89846
89878
  IsProjectRule: booleanType().optional(),
89847
89879
  Note: stringType().optional(),
89848
- CreatedAt: stringType(),
89880
+ CreatedAt: stringType().optional(),
89849
89881
  ActorId: stringType().optional(),
89850
- UpdatedAt: stringType(),
89851
- UpdatedAtHour: stringType(),
89882
+ UpdatedAt: stringType().optional(),
89883
+ UpdatedAtHour: stringType().optional(),
89852
89884
  DeletedAt: stringType().optional(),
89853
89885
  ExpiresAt: nullableType(numberType()).optional()
89854
89886
  }).transform((v2) => {
@@ -89870,18 +89902,18 @@ var init_getbypassipop = __esm(() => {
89870
89902
  });
89871
89903
  });
89872
89904
  ResponseBodyResult$outboundSchema = objectType({
89873
- ownerId: stringType(),
89874
- id: stringType(),
89875
- domain: stringType(),
89876
- ip: stringType(),
89905
+ ownerId: stringType().optional(),
89906
+ id: stringType().optional(),
89907
+ domain: stringType().optional(),
89908
+ ip: stringType().optional(),
89877
89909
  action: ResponseBodyAction$outboundSchema.optional(),
89878
89910
  projectId: stringType().optional(),
89879
89911
  isProjectRule: booleanType().optional(),
89880
89912
  note: stringType().optional(),
89881
- createdAt: stringType(),
89913
+ createdAt: stringType().optional(),
89882
89914
  actorId: stringType().optional(),
89883
- updatedAt: stringType(),
89884
- updatedAtHour: stringType(),
89915
+ updatedAt: stringType().optional(),
89916
+ updatedAtHour: stringType().optional(),
89885
89917
  deletedAt: stringType().optional(),
89886
89918
  expiresAt: nullableType(numberType()).optional()
89887
89919
  }).transform((v2) => {
@@ -94779,9 +94811,13 @@ Get a paginated list of team members for the provided team.`,
94779
94811
  });
94780
94812
 
94781
94813
  // src/models/teamlimited.ts
94782
- var Role, TeamRoles, TeamPermissions, Origin, Connection$inboundSchema, Connection$outboundSchema, Connection$, Directory$inboundSchema, Directory$outboundSchema, Directory$, Saml$inboundSchema, Saml$outboundSchema, Saml$, Entitlements$inboundSchema, Entitlements$outboundSchema, Entitlements$, Role$inboundSchema, Role$outboundSchema, Role$, TeamRoles$inboundSchema, TeamRoles$outboundSchema, TeamRoles$, TeamPermissions$inboundSchema, TeamPermissions$outboundSchema, TeamPermissions$, Origin$inboundSchema, Origin$outboundSchema, Origin$, GitUserId$inboundSchema, GitUserId$outboundSchema, GitUserId$, JoinedFrom$inboundSchema, JoinedFrom$outboundSchema, JoinedFrom$, Membership$inboundSchema, Membership$outboundSchema, Membership$, TeamLimited$inboundSchema, TeamLimited$outboundSchema, TeamLimited$;
94814
+ var LimitedBy, Role, TeamRoles, TeamPermissions, Origin, LimitedBy$inboundSchema, LimitedBy$outboundSchema, LimitedBy$, Connection$inboundSchema, Connection$outboundSchema, Connection$, Directory$inboundSchema, Directory$outboundSchema, Directory$, Saml$inboundSchema, Saml$outboundSchema, Saml$, Entitlements$inboundSchema, Entitlements$outboundSchema, Entitlements$, Role$inboundSchema, Role$outboundSchema, Role$, TeamRoles$inboundSchema, TeamRoles$outboundSchema, TeamRoles$, TeamPermissions$inboundSchema, TeamPermissions$outboundSchema, TeamPermissions$, Origin$inboundSchema, Origin$outboundSchema, Origin$, GitUserId$inboundSchema, GitUserId$outboundSchema, GitUserId$, JoinedFrom$inboundSchema, JoinedFrom$outboundSchema, JoinedFrom$, Membership$inboundSchema, Membership$outboundSchema, Membership$, TeamLimited$inboundSchema, TeamLimited$outboundSchema, TeamLimited$;
94783
94815
  var init_teamlimited = __esm(() => {
94784
94816
  init_lib();
94817
+ LimitedBy = {
94818
+ Saml: "saml",
94819
+ Mfa: "mfa"
94820
+ };
94785
94821
  Role = {
94786
94822
  Owner: "OWNER",
94787
94823
  Member: "MEMBER",
@@ -94820,6 +94856,12 @@ var init_teamlimited = __esm(() => {
94820
94856
  Feedback: "feedback",
94821
94857
  OrganizationTeams: "organization-teams"
94822
94858
  };
94859
+ LimitedBy$inboundSchema = nativeEnumType(LimitedBy);
94860
+ LimitedBy$outboundSchema = LimitedBy$inboundSchema;
94861
+ ((LimitedBy$) => {
94862
+ LimitedBy$.inboundSchema = LimitedBy$inboundSchema;
94863
+ LimitedBy$.outboundSchema = LimitedBy$outboundSchema;
94864
+ })(LimitedBy$ ||= {});
94823
94865
  Connection$inboundSchema = objectType({
94824
94866
  type: stringType(),
94825
94867
  status: stringType(),
@@ -94972,7 +95014,9 @@ var init_teamlimited = __esm(() => {
94972
95014
  })(Membership$ ||= {});
94973
95015
  TeamLimited$inboundSchema = objectType({
94974
95016
  limited: booleanType(),
95017
+ limitedBy: arrayType(LimitedBy$inboundSchema),
94975
95018
  saml: lazyType(() => Saml$inboundSchema).optional(),
95019
+ mfaEnforced: booleanType().optional(),
94976
95020
  id: stringType(),
94977
95021
  slug: stringType(),
94978
95022
  name: nullableType(stringType()),
@@ -94983,7 +95027,9 @@ var init_teamlimited = __esm(() => {
94983
95027
  });
94984
95028
  TeamLimited$outboundSchema = objectType({
94985
95029
  limited: booleanType(),
95030
+ limitedBy: arrayType(LimitedBy$outboundSchema),
94986
95031
  saml: lazyType(() => Saml$outboundSchema).optional(),
95032
+ mfaEnforced: booleanType().optional(),
94987
95033
  id: stringType(),
94988
95034
  slug: stringType(),
94989
95035
  name: nullableType(stringType()),
@@ -96521,7 +96567,6 @@ var init_authuser = __esm(() => {
96521
96567
  BlockedForPlatformAbuse: "BLOCKED_FOR_PLATFORM_ABUSE"
96522
96568
  };
96523
96569
  BlockedDueToOverageType = {
96524
- AiCredits: "aiCredits",
96525
96570
  AnalyticsUsage: "analyticsUsage",
96526
96571
  Artifacts: "artifacts",
96527
96572
  Bandwidth: "bandwidth",
@@ -96566,7 +96611,8 @@ var init_authuser = __esm(() => {
96566
96611
  WebAnalyticsEvent: "webAnalyticsEvent"
96567
96612
  };
96568
96613
  PurchaseType = {
96569
- Enhanced: "enhanced"
96614
+ Enhanced: "enhanced",
96615
+ Ultra: "ultra"
96570
96616
  };
96571
96617
  ViewPreference = {
96572
96618
  List: "list",
@@ -97098,14 +97144,11 @@ Retrieves information related to the currently authenticated User.`,
97098
97144
  });
97099
97145
 
97100
97146
  // src/models/userevent.ts
97101
- var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, EnvId2, UserEventEnvId2, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, EnvId2$inboundSchema, EnvId2$outboundSchema, EnvId2$, EnvId$inboundSchema, EnvId$outboundSchema, EnvId$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, UserEventEnvId2$inboundSchema, UserEventEnvId2$outboundSchema, UserEventEnvId2$, PayloadEnvId$inboundSchema, PayloadEnvId$outboundSchema, PayloadEnvId$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AiCredits$inboundSchema, AiCredits$outboundSchema, AiCredits$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, OverageMetadata$inboundSchema, OverageMetadata$outboundSchema, OverageMetadata$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Two$inboundSchema, Two$outboundSchema, Two$, One$inboundSchema, One$outboundSchema, One$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
97147
+ var UserEventType, UserEventPrincipalType, PrincipalType, UserEventViaType, ViaType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, EnvId2, UserEventEnvId2, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, UserEventPrincipalType$inboundSchema, UserEventPrincipalType$outboundSchema, UserEventPrincipalType$, Two$inboundSchema, Two$outboundSchema, Two$, PrincipalType$inboundSchema, PrincipalType$outboundSchema, PrincipalType$, One$inboundSchema, One$outboundSchema, One$, Principal$inboundSchema, Principal$outboundSchema, Principal$, UserEventViaType$inboundSchema, UserEventViaType$outboundSchema, UserEventViaType$, Via2$inboundSchema, Via2$outboundSchema, Via2$, ViaType$inboundSchema, ViaType$outboundSchema, ViaType$, Via1$inboundSchema, Via1$outboundSchema, Via1$, Via$inboundSchema, Via$outboundSchema, Via$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, EnvId2$inboundSchema, EnvId2$outboundSchema, EnvId2$, EnvId$inboundSchema, EnvId$outboundSchema, EnvId$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, UserEventEnvId2$inboundSchema, UserEventEnvId2$outboundSchema, UserEventEnvId2$, PayloadEnvId$inboundSchema, PayloadEnvId$outboundSchema, PayloadEnvId$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, OverageMetadata$inboundSchema, OverageMetadata$outboundSchema, OverageMetadata$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Payload2$inboundSchema, Payload2$outboundSchema, Payload2$, Payload1$inboundSchema, Payload1$outboundSchema, Payload1$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
97102
97148
  var init_userevent = __esm(() => {
97103
97149
  init_lib();
97104
97150
  init_primitives();
97105
97151
  UserEventType = {
97106
- Flag: "flag",
97107
- FlagsSegment: "flags-segment",
97108
- FlagsSettings: "flags-settings",
97109
97152
  Author: "author",
97110
97153
  BitbucketLogin: "bitbucket_login",
97111
97154
  Bold: "bold",
@@ -97117,6 +97160,9 @@ var init_userevent = __esm(() => {
97117
97160
  HookName: "hook_name",
97118
97161
  Integration: "integration",
97119
97162
  EdgeConfig: "edge-config",
97163
+ Flag: "flag",
97164
+ FlagsSegment: "flags-segment",
97165
+ FlagsSettings: "flags-settings",
97120
97166
  Link: "link",
97121
97167
  ProjectName: "project_name",
97122
97168
  ScalingRules: "scaling_rules",
@@ -97125,6 +97171,18 @@ var init_userevent = __esm(() => {
97125
97171
  Store: "store",
97126
97172
  System: "system"
97127
97173
  };
97174
+ UserEventPrincipalType = {
97175
+ App: "app"
97176
+ };
97177
+ PrincipalType = {
97178
+ User: "user"
97179
+ };
97180
+ UserEventViaType = {
97181
+ App: "app"
97182
+ };
97183
+ ViaType = {
97184
+ User: "user"
97185
+ };
97128
97186
  GrantType = {
97129
97187
  AuthorizationCode: "authorization_code",
97130
97188
  RefreshToken: "refresh_token",
@@ -97178,11 +97236,11 @@ var init_userevent = __esm(() => {
97178
97236
  Postgres: "postgres"
97179
97237
  };
97180
97238
  UserEventPayloadType = {
97181
- Integration: "integration",
97182
- EdgeConfig: "edge-config",
97183
97239
  Redis: "redis",
97184
97240
  Postgres: "postgres",
97185
- Blob: "blob"
97241
+ EdgeConfig: "edge-config",
97242
+ Blob: "blob",
97243
+ Integration: "integration"
97186
97244
  };
97187
97245
  UserEventPayload97Type = {
97188
97246
  Fixed: "fixed"
@@ -97275,11 +97333,11 @@ var init_userevent = __esm(() => {
97275
97333
  PayloadOrigin = {
97276
97334
  Teams: "teams",
97277
97335
  Saml: "saml",
97278
- Link: "link",
97279
97336
  Github: "github",
97280
97337
  Gitlab: "gitlab",
97281
97338
  Bitbucket: "bitbucket",
97282
97339
  Mail: "mail",
97340
+ Link: "link",
97283
97341
  Import: "import",
97284
97342
  Dsync: "dsync",
97285
97343
  Feedback: "feedback",
@@ -97337,7 +97395,8 @@ var init_userevent = __esm(() => {
97337
97395
  GithubCustomHost: "github-custom-host"
97338
97396
  };
97339
97397
  PayloadPurchaseType = {
97340
- Enhanced: "enhanced"
97398
+ Enhanced: "enhanced",
97399
+ Ultra: "ultra"
97341
97400
  };
97342
97401
  PayloadViewPreference = {
97343
97402
  Cards: "cards",
@@ -97363,7 +97422,6 @@ var init_userevent = __esm(() => {
97363
97422
  BlockedForPlatformAbuse: "BLOCKED_FOR_PLATFORM_ABUSE"
97364
97423
  };
97365
97424
  PayloadBlockedDueToOverageType = {
97366
- AiCredits: "aiCredits",
97367
97425
  AnalyticsUsage: "analyticsUsage",
97368
97426
  Artifacts: "artifacts",
97369
97427
  Bandwidth: "bandwidth",
@@ -97435,11 +97493,11 @@ var init_userevent = __esm(() => {
97435
97493
  UserEventPayloadOrigin = {
97436
97494
  Teams: "teams",
97437
97495
  Saml: "saml",
97438
- Link: "link",
97439
97496
  Github: "github",
97440
97497
  Gitlab: "gitlab",
97441
97498
  Bitbucket: "bitbucket",
97442
97499
  Mail: "mail",
97500
+ Link: "link",
97443
97501
  Import: "import",
97444
97502
  Dsync: "dsync",
97445
97503
  Feedback: "feedback",
@@ -97493,7 +97551,6 @@ var init_userevent = __esm(() => {
97493
97551
  LimitsExceeded: "limits_exceeded"
97494
97552
  };
97495
97553
  OverageReason = {
97496
- AiCredits: "aiCredits",
97497
97554
  AnalyticsUsage: "analyticsUsage",
97498
97555
  Artifacts: "artifacts",
97499
97556
  Bandwidth: "bandwidth",
@@ -97542,7 +97599,6 @@ var init_userevent = __esm(() => {
97542
97599
  LimitsExceeded: "limits_exceeded"
97543
97600
  };
97544
97601
  PayloadOverageReason = {
97545
- AiCredits: "aiCredits",
97546
97602
  AnalyticsUsage: "analyticsUsage",
97547
97603
  Artifacts: "artifacts",
97548
97604
  Bandwidth: "bandwidth",
@@ -97591,7 +97647,6 @@ var init_userevent = __esm(() => {
97591
97647
  LimitsExceeded: "limits_exceeded"
97592
97648
  };
97593
97649
  UserEventPayloadOverageReason = {
97594
- AiCredits: "aiCredits",
97595
97650
  AnalyticsUsage: "analyticsUsage",
97596
97651
  Artifacts: "artifacts",
97597
97652
  Bandwidth: "bandwidth",
@@ -97715,21 +97770,131 @@ var init_userevent = __esm(() => {
97715
97770
  User$inboundSchema = objectType({
97716
97771
  avatar: stringType(),
97717
97772
  email: stringType(),
97773
+ username: stringType(),
97718
97774
  slug: stringType().optional(),
97719
- uid: stringType(),
97720
- username: stringType()
97775
+ uid: stringType()
97721
97776
  });
97722
97777
  User$outboundSchema = objectType({
97723
97778
  avatar: stringType(),
97724
97779
  email: stringType(),
97780
+ username: stringType(),
97725
97781
  slug: stringType().optional(),
97726
- uid: stringType(),
97727
- username: stringType()
97782
+ uid: stringType()
97728
97783
  });
97729
97784
  ((User$) => {
97730
97785
  User$.inboundSchema = User$inboundSchema;
97731
97786
  User$.outboundSchema = User$outboundSchema;
97732
97787
  })(User$ ||= {});
97788
+ UserEventPrincipalType$inboundSchema = nativeEnumType(UserEventPrincipalType);
97789
+ UserEventPrincipalType$outboundSchema = UserEventPrincipalType$inboundSchema;
97790
+ ((UserEventPrincipalType$) => {
97791
+ UserEventPrincipalType$.inboundSchema = UserEventPrincipalType$inboundSchema;
97792
+ UserEventPrincipalType$.outboundSchema = UserEventPrincipalType$outboundSchema;
97793
+ })(UserEventPrincipalType$ ||= {});
97794
+ Two$inboundSchema = objectType({
97795
+ type: UserEventPrincipalType$inboundSchema,
97796
+ clientId: stringType(),
97797
+ name: stringType()
97798
+ });
97799
+ Two$outboundSchema = objectType({
97800
+ type: UserEventPrincipalType$outboundSchema,
97801
+ clientId: stringType(),
97802
+ name: stringType()
97803
+ });
97804
+ ((Two$) => {
97805
+ Two$.inboundSchema = Two$inboundSchema;
97806
+ Two$.outboundSchema = Two$outboundSchema;
97807
+ })(Two$ ||= {});
97808
+ PrincipalType$inboundSchema = nativeEnumType(PrincipalType);
97809
+ PrincipalType$outboundSchema = PrincipalType$inboundSchema;
97810
+ ((PrincipalType$) => {
97811
+ PrincipalType$.inboundSchema = PrincipalType$inboundSchema;
97812
+ PrincipalType$.outboundSchema = PrincipalType$outboundSchema;
97813
+ })(PrincipalType$ ||= {});
97814
+ One$inboundSchema = objectType({
97815
+ type: PrincipalType$inboundSchema.optional(),
97816
+ avatar: stringType(),
97817
+ email: stringType(),
97818
+ slug: stringType().optional(),
97819
+ uid: stringType(),
97820
+ username: stringType()
97821
+ });
97822
+ One$outboundSchema = objectType({
97823
+ type: PrincipalType$outboundSchema.optional(),
97824
+ avatar: stringType(),
97825
+ email: stringType(),
97826
+ slug: stringType().optional(),
97827
+ uid: stringType(),
97828
+ username: stringType()
97829
+ });
97830
+ ((One$) => {
97831
+ One$.inboundSchema = One$inboundSchema;
97832
+ One$.outboundSchema = One$outboundSchema;
97833
+ })(One$ ||= {});
97834
+ Principal$inboundSchema = unionType([lazyType(() => Two$inboundSchema), lazyType(() => One$inboundSchema)]);
97835
+ Principal$outboundSchema = unionType([
97836
+ lazyType(() => Two$outboundSchema),
97837
+ lazyType(() => One$outboundSchema)
97838
+ ]);
97839
+ ((Principal$) => {
97840
+ Principal$.inboundSchema = Principal$inboundSchema;
97841
+ Principal$.outboundSchema = Principal$outboundSchema;
97842
+ })(Principal$ ||= {});
97843
+ UserEventViaType$inboundSchema = nativeEnumType(UserEventViaType);
97844
+ UserEventViaType$outboundSchema = UserEventViaType$inboundSchema;
97845
+ ((UserEventViaType$) => {
97846
+ UserEventViaType$.inboundSchema = UserEventViaType$inboundSchema;
97847
+ UserEventViaType$.outboundSchema = UserEventViaType$outboundSchema;
97848
+ })(UserEventViaType$ ||= {});
97849
+ Via2$inboundSchema = objectType({
97850
+ type: UserEventViaType$inboundSchema,
97851
+ clientId: stringType(),
97852
+ name: stringType()
97853
+ });
97854
+ Via2$outboundSchema = objectType({
97855
+ type: UserEventViaType$outboundSchema,
97856
+ clientId: stringType(),
97857
+ name: stringType()
97858
+ });
97859
+ ((Via2$) => {
97860
+ Via2$.inboundSchema = Via2$inboundSchema;
97861
+ Via2$.outboundSchema = Via2$outboundSchema;
97862
+ })(Via2$ ||= {});
97863
+ ViaType$inboundSchema = nativeEnumType(ViaType);
97864
+ ViaType$outboundSchema = ViaType$inboundSchema;
97865
+ ((ViaType$) => {
97866
+ ViaType$.inboundSchema = ViaType$inboundSchema;
97867
+ ViaType$.outboundSchema = ViaType$outboundSchema;
97868
+ })(ViaType$ ||= {});
97869
+ Via1$inboundSchema = objectType({
97870
+ type: ViaType$inboundSchema.optional(),
97871
+ avatar: stringType(),
97872
+ email: stringType(),
97873
+ slug: stringType().optional(),
97874
+ uid: stringType(),
97875
+ username: stringType()
97876
+ });
97877
+ Via1$outboundSchema = objectType({
97878
+ type: ViaType$outboundSchema.optional(),
97879
+ avatar: stringType(),
97880
+ email: stringType(),
97881
+ slug: stringType().optional(),
97882
+ uid: stringType(),
97883
+ username: stringType()
97884
+ });
97885
+ ((Via1$) => {
97886
+ Via1$.inboundSchema = Via1$inboundSchema;
97887
+ Via1$.outboundSchema = Via1$outboundSchema;
97888
+ })(Via1$ ||= {});
97889
+ Via$inboundSchema = unionType([lazyType(() => Via2$inboundSchema), lazyType(() => Via1$inboundSchema)]);
97890
+ Via$outboundSchema = unionType([
97891
+ lazyType(() => Via2$outboundSchema),
97892
+ lazyType(() => Via1$outboundSchema)
97893
+ ]);
97894
+ ((Via$) => {
97895
+ Via$.inboundSchema = Via$inboundSchema;
97896
+ Via$.outboundSchema = Via$outboundSchema;
97897
+ })(Via$ ||= {});
97733
97898
  GrantType$inboundSchema = nativeEnumType(GrantType);
97734
97899
  GrantType$outboundSchema = GrantType$inboundSchema;
97735
97900
  ((GrantType$) => {
@@ -100896,20 +101061,6 @@ var init_userevent = __esm(() => {
100896
101061
  UsageAlerts$.inboundSchema = UsageAlerts$inboundSchema;
100897
101062
  UsageAlerts$.outboundSchema = UsageAlerts$outboundSchema;
100898
101063
  })(UsageAlerts$ ||= {});
100899
- AiCredits$inboundSchema = objectType({
100900
- currentThreshold: numberType(),
100901
- warningAt: nullableType(numberType()).optional(),
100902
- blockedAt: nullableType(numberType()).optional()
100903
- });
100904
- AiCredits$outboundSchema = objectType({
100905
- currentThreshold: numberType(),
100906
- warningAt: nullableType(numberType()).optional(),
100907
- blockedAt: nullableType(numberType()).optional()
100908
- });
100909
- ((AiCredits$) => {
100910
- AiCredits$.inboundSchema = AiCredits$inboundSchema;
100911
- AiCredits$.outboundSchema = AiCredits$outboundSchema;
100912
- })(AiCredits$ ||= {});
100913
101064
  AnalyticsUsage$inboundSchema = objectType({
100914
101065
  currentThreshold: numberType(),
100915
101066
  warningAt: nullableType(numberType()).optional(),
@@ -101499,7 +101650,6 @@ var init_userevent = __esm(() => {
101499
101650
  WebAnalyticsEvent$.outboundSchema = WebAnalyticsEvent$outboundSchema;
101500
101651
  })(WebAnalyticsEvent$ ||= {});
101501
101652
  OverageUsageAlerts$inboundSchema = objectType({
101502
- aiCredits: lazyType(() => AiCredits$inboundSchema).optional(),
101503
101653
  analyticsUsage: lazyType(() => AnalyticsUsage$inboundSchema).optional(),
101504
101654
  artifacts: lazyType(() => Artifacts$inboundSchema).optional(),
101505
101655
  bandwidth: lazyType(() => Bandwidth$inboundSchema).optional(),
@@ -101544,7 +101694,6 @@ var init_userevent = __esm(() => {
101544
101694
  webAnalyticsEvent: lazyType(() => WebAnalyticsEvent$inboundSchema).optional()
101545
101695
  });
101546
101696
  OverageUsageAlerts$outboundSchema = objectType({
101547
- aiCredits: lazyType(() => AiCredits$outboundSchema).optional(),
101548
101697
  analyticsUsage: lazyType(() => AnalyticsUsage$outboundSchema).optional(),
101549
101698
  artifacts: lazyType(() => Artifacts$outboundSchema).optional(),
101550
101699
  bandwidth: lazyType(() => Bandwidth$outboundSchema).optional(),
@@ -102175,10 +102324,10 @@ var init_userevent = __esm(() => {
102175
102324
  UserEventPayloadTarget$.outboundSchema = UserEventPayloadTarget$outboundSchema;
102176
102325
  })(UserEventPayloadTarget$ ||= {});
102177
102326
  OldEnvVar$inboundSchema = objectType({
102178
- created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
102179
- key: stringType(),
102327
+ created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
102328
+ key: stringType().optional(),
102180
102329
  ownerId: nullableType(stringType()).optional(),
102181
- id: stringType(),
102330
+ id: stringType().optional(),
102182
102331
  createdBy: nullableType(stringType()).optional(),
102183
102332
  deletedBy: nullableType(stringType()).optional(),
102184
102333
  updatedBy: nullableType(stringType()).optional(),
@@ -102190,15 +102339,15 @@ var init_userevent = __esm(() => {
102190
102339
  type: UserEventPayload58OldEnvVarType$inboundSchema.optional(),
102191
102340
  target: arrayType(UserEventPayloadTarget$inboundSchema).optional(),
102192
102341
  applyToAllCustomEnvironments: booleanType().optional(),
102193
- decrypted: booleanType(),
102342
+ decrypted: booleanType().optional(),
102194
102343
  comment: stringType().optional(),
102195
102344
  lastEditedByDisplayName: stringType().optional()
102196
102345
  });
102197
102346
  OldEnvVar$outboundSchema = objectType({
102198
- created: dateType().transform((v2) => v2.toISOString()),
102199
- key: stringType(),
102347
+ created: dateType().transform((v2) => v2.toISOString()).optional(),
102348
+ key: stringType().optional(),
102200
102349
  ownerId: nullableType(stringType()).optional(),
102201
- id: stringType(),
102350
+ id: stringType().optional(),
102202
102351
  createdBy: nullableType(stringType()).optional(),
102203
102352
  deletedBy: nullableType(stringType()).optional(),
102204
102353
  updatedBy: nullableType(stringType()).optional(),
@@ -102210,7 +102359,7 @@ var init_userevent = __esm(() => {
102210
102359
  type: UserEventPayload58OldEnvVarType$outboundSchema.optional(),
102211
102360
  target: arrayType(UserEventPayloadTarget$outboundSchema).optional(),
102212
102361
  applyToAllCustomEnvironments: booleanType().optional(),
102213
- decrypted: booleanType(),
102362
+ decrypted: booleanType().optional(),
102214
102363
  comment: stringType().optional(),
102215
102364
  lastEditedByDisplayName: stringType().optional()
102216
102365
  });
@@ -102231,10 +102380,10 @@ var init_userevent = __esm(() => {
102231
102380
  UserEventPayload58Target$.outboundSchema = UserEventPayload58Target$outboundSchema;
102232
102381
  })(UserEventPayload58Target$ ||= {});
102233
102382
  NewEnvVar$inboundSchema = objectType({
102234
- created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
102235
- key: stringType(),
102383
+ created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
102384
+ key: stringType().optional(),
102236
102385
  ownerId: nullableType(stringType()).optional(),
102237
- id: stringType(),
102386
+ id: stringType().optional(),
102238
102387
  createdBy: nullableType(stringType()).optional(),
102239
102388
  deletedBy: nullableType(stringType()).optional(),
102240
102389
  updatedBy: nullableType(stringType()).optional(),
@@ -102246,15 +102395,15 @@ var init_userevent = __esm(() => {
102246
102395
  type: UserEventPayload58Type$inboundSchema.optional(),
102247
102396
  target: arrayType(UserEventPayload58Target$inboundSchema).optional(),
102248
102397
  applyToAllCustomEnvironments: booleanType().optional(),
102249
- decrypted: booleanType(),
102398
+ decrypted: booleanType().optional(),
102250
102399
  comment: stringType().optional(),
102251
102400
  lastEditedByDisplayName: stringType().optional()
102252
102401
  });
102253
102402
  NewEnvVar$outboundSchema = objectType({
102254
- created: dateType().transform((v2) => v2.toISOString()),
102255
- key: stringType(),
102403
+ created: dateType().transform((v2) => v2.toISOString()).optional(),
102404
+ key: stringType().optional(),
102256
102405
  ownerId: nullableType(stringType()).optional(),
102257
- id: stringType(),
102406
+ id: stringType().optional(),
102258
102407
  createdBy: nullableType(stringType()).optional(),
102259
102408
  deletedBy: nullableType(stringType()).optional(),
102260
102409
  updatedBy: nullableType(stringType()).optional(),
@@ -102266,7 +102415,7 @@ var init_userevent = __esm(() => {
102266
102415
  type: UserEventPayload58Type$outboundSchema.optional(),
102267
102416
  target: arrayType(UserEventPayload58Target$outboundSchema).optional(),
102268
102417
  applyToAllCustomEnvironments: booleanType().optional(),
102269
- decrypted: booleanType(),
102418
+ decrypted: booleanType().optional(),
102270
102419
  comment: stringType().optional(),
102271
102420
  lastEditedByDisplayName: stringType().optional()
102272
102421
  });
@@ -103588,30 +103737,30 @@ var init_userevent = __esm(() => {
103588
103737
  Action$.inboundSchema = Action$inboundSchema;
103589
103738
  Action$.outboundSchema = Action$outboundSchema;
103590
103739
  })(Action$ ||= {});
103591
- Two$inboundSchema = objectType({
103740
+ Payload2$inboundSchema = objectType({
103592
103741
  action: Action$inboundSchema,
103593
103742
  id: stringType(),
103594
103743
  slug: stringType(),
103595
103744
  projectId: stringType()
103596
103745
  });
103597
- Two$outboundSchema = objectType({
103746
+ Payload2$outboundSchema = objectType({
103598
103747
  action: Action$outboundSchema,
103599
103748
  id: stringType(),
103600
103749
  slug: stringType(),
103601
103750
  projectId: stringType()
103602
103751
  });
103603
- ((Two$) => {
103604
- Two$.inboundSchema = Two$inboundSchema;
103605
- Two$.outboundSchema = Two$outboundSchema;
103606
- })(Two$ ||= {});
103607
- One$inboundSchema = objectType({});
103608
- One$outboundSchema = objectType({});
103609
- ((One$) => {
103610
- One$.inboundSchema = One$inboundSchema;
103611
- One$.outboundSchema = One$outboundSchema;
103612
- })(One$ ||= {});
103752
+ ((Payload2$) => {
103753
+ Payload2$.inboundSchema = Payload2$inboundSchema;
103754
+ Payload2$.outboundSchema = Payload2$outboundSchema;
103755
+ })(Payload2$ ||= {});
103756
+ Payload1$inboundSchema = objectType({});
103757
+ Payload1$outboundSchema = objectType({});
103758
+ ((Payload1$) => {
103759
+ Payload1$.inboundSchema = Payload1$inboundSchema;
103760
+ Payload1$.outboundSchema = Payload1$outboundSchema;
103761
+ })(Payload1$ ||= {});
103613
103762
  Payload$inboundSchema = unionType([
103614
- lazyType(() => One$inboundSchema),
103763
+ lazyType(() => Payload1$inboundSchema),
103615
103764
  lazyType(() => Three$inboundSchema),
103616
103765
  lazyType(() => Nine$inboundSchema),
103617
103766
  lazyType(() => Nineteen$inboundSchema),
@@ -103716,7 +103865,7 @@ var init_userevent = __esm(() => {
103716
103865
  lazyType(() => OneHundredAndThirtyEight$inboundSchema),
103717
103866
  lazyType(() => OneHundredAndFortyFive$inboundSchema),
103718
103867
  lazyType(() => OneHundredAndFortySix$inboundSchema),
103719
- lazyType(() => Two$inboundSchema),
103868
+ lazyType(() => Payload2$inboundSchema),
103720
103869
  lazyType(() => Six$inboundSchema),
103721
103870
  lazyType(() => Eleven$inboundSchema),
103722
103871
  lazyType(() => Fifteen$inboundSchema),
@@ -103761,7 +103910,7 @@ var init_userevent = __esm(() => {
103761
103910
  lazyType(() => FiftySeven$inboundSchema)
103762
103911
  ]);
103763
103912
  Payload$outboundSchema = unionType([
103764
- lazyType(() => One$outboundSchema),
103913
+ lazyType(() => Payload1$outboundSchema),
103765
103914
  lazyType(() => Three$outboundSchema),
103766
103915
  lazyType(() => Nine$outboundSchema),
103767
103916
  lazyType(() => Nineteen$outboundSchema),
@@ -103866,7 +104015,7 @@ var init_userevent = __esm(() => {
103866
104015
  lazyType(() => OneHundredAndThirtyEight$outboundSchema),
103867
104016
  lazyType(() => OneHundredAndFortyFive$outboundSchema),
103868
104017
  lazyType(() => OneHundredAndFortySix$outboundSchema),
103869
- lazyType(() => Two$outboundSchema),
104018
+ lazyType(() => Payload2$outboundSchema),
103870
104019
  lazyType(() => Six$outboundSchema),
103871
104020
  lazyType(() => Eleven$outboundSchema),
103872
104021
  lazyType(() => Fifteen$outboundSchema),
@@ -103920,9 +104069,19 @@ var init_userevent = __esm(() => {
103920
104069
  entities: arrayType(lazyType(() => Entities$inboundSchema)),
103921
104070
  createdAt: numberType(),
103922
104071
  user: lazyType(() => User$inboundSchema).optional(),
104072
+ principal: unionType([
104073
+ lazyType(() => Two$inboundSchema),
104074
+ lazyType(() => One$inboundSchema)
104075
+ ]).optional(),
104076
+ via: arrayType(unionType([
104077
+ lazyType(() => Via2$inboundSchema),
104078
+ lazyType(() => Via1$inboundSchema)
104079
+ ])).optional(),
103923
104080
  userId: stringType(),
104081
+ principalId: stringType(),
104082
+ viaIds: arrayType(stringType()).optional(),
103924
104083
  payload: unionType([
103925
- lazyType(() => One$inboundSchema),
104084
+ lazyType(() => Payload1$inboundSchema),
103926
104085
  lazyType(() => Three$inboundSchema),
103927
104086
  lazyType(() => Nine$inboundSchema),
103928
104087
  lazyType(() => Nineteen$inboundSchema),
@@ -104027,7 +104186,7 @@ var init_userevent = __esm(() => {
104027
104186
  lazyType(() => OneHundredAndThirtyEight$inboundSchema),
104028
104187
  lazyType(() => OneHundredAndFortyFive$inboundSchema),
104029
104188
  lazyType(() => OneHundredAndFortySix$inboundSchema),
104030
- lazyType(() => Two$inboundSchema),
104189
+ lazyType(() => Payload2$inboundSchema),
104031
104190
  lazyType(() => Six$inboundSchema),
104032
104191
  lazyType(() => Eleven$inboundSchema),
104033
104192
  lazyType(() => Fifteen$inboundSchema),
@@ -104078,9 +104237,19 @@ var init_userevent = __esm(() => {
104078
104237
  entities: arrayType(lazyType(() => Entities$outboundSchema)),
104079
104238
  createdAt: numberType(),
104080
104239
  user: lazyType(() => User$outboundSchema).optional(),
104240
+ principal: unionType([
104241
+ lazyType(() => Two$outboundSchema),
104242
+ lazyType(() => One$outboundSchema)
104243
+ ]).optional(),
104244
+ via: arrayType(unionType([
104245
+ lazyType(() => Via2$outboundSchema),
104246
+ lazyType(() => Via1$outboundSchema)
104247
+ ])).optional(),
104081
104248
  userId: stringType(),
104249
+ principalId: stringType(),
104250
+ viaIds: arrayType(stringType()).optional(),
104082
104251
  payload: unionType([
104083
- lazyType(() => One$outboundSchema),
104252
+ lazyType(() => Payload1$outboundSchema),
104084
104253
  lazyType(() => Three$outboundSchema),
104085
104254
  lazyType(() => Nine$outboundSchema),
104086
104255
  lazyType(() => Nineteen$outboundSchema),
@@ -104185,7 +104354,7 @@ var init_userevent = __esm(() => {
104185
104354
  lazyType(() => OneHundredAndThirtyEight$outboundSchema),
104186
104355
  lazyType(() => OneHundredAndFortyFive$outboundSchema),
104187
104356
  lazyType(() => OneHundredAndFortySix$outboundSchema),
104188
- lazyType(() => Two$outboundSchema),
104357
+ lazyType(() => Payload2$outboundSchema),
104189
104358
  lazyType(() => Six$outboundSchema),
104190
104359
  lazyType(() => Eleven$outboundSchema),
104191
104360
  lazyType(() => Fifteen$outboundSchema),
@@ -104247,6 +104416,7 @@ var init_listusereventsop = __esm(() => {
104247
104416
  until: stringType().optional(),
104248
104417
  types: stringType().optional(),
104249
104418
  userId: stringType().optional(),
104419
+ principalId: stringType().optional(),
104250
104420
  withPayload: stringType().optional(),
104251
104421
  teamId: stringType().optional(),
104252
104422
  slug: stringType().optional()
@@ -104257,6 +104427,7 @@ var init_listusereventsop = __esm(() => {
104257
104427
  until: stringType().optional(),
104258
104428
  types: stringType().optional(),
104259
104429
  userId: stringType().optional(),
104430
+ principalId: stringType().optional(),
104260
104431
  withPayload: stringType().optional(),
104261
104432
  teamId: stringType().optional(),
104262
104433
  slug: stringType().optional()
@@ -104291,6 +104462,7 @@ async function $do157(client, request, options) {
104291
104462
  const path = pathToFunc("/v3/events")();
104292
104463
  const query = encodeFormQuery({
104293
104464
  limit: payload.limit,
104465
+ principalId: payload.principalId,
104294
104466
  since: payload.since,
104295
104467
  slug: payload.slug,
104296
104468
  teamId: payload.teamId,
@@ -104563,6 +104735,10 @@ var init_createwebhookop = __esm(() => {
104563
104735
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104564
104736
  ProjectCreated: "project.created",
104565
104737
  ProjectRemoved: "project.removed",
104738
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
104739
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
104740
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
104741
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104566
104742
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104567
104743
  DeploymentReadyLegacy: "deployment-ready",
104568
104744
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -104608,6 +104784,10 @@ var init_createwebhookop = __esm(() => {
104608
104784
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104609
104785
  ProjectCreated: "project.created",
104610
104786
  ProjectRemoved: "project.removed",
104787
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
104788
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
104789
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
104790
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104611
104791
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104612
104792
  DeploymentReadyLegacy: "deployment-ready",
104613
104793
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -104970,6 +105150,10 @@ var init_getwebhookop = __esm(() => {
104970
105150
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104971
105151
  ProjectCreated: "project.created",
104972
105152
  ProjectRemoved: "project.removed",
105153
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105154
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105155
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105156
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104973
105157
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104974
105158
  DeploymentReadyLegacy: "deployment-ready",
104975
105159
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105175,6 +105359,10 @@ var init_getwebhooksop = __esm(() => {
105175
105359
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
105176
105360
  ProjectCreated: "project.created",
105177
105361
  ProjectRemoved: "project.removed",
105362
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105363
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105364
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105365
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
105178
105366
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
105179
105367
  DeploymentReadyLegacy: "deployment-ready",
105180
105368
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105268,6 +105456,10 @@ var init_getwebhooksop = __esm(() => {
105268
105456
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
105269
105457
  ProjectCreated: "project.created",
105270
105458
  ProjectRemoved: "project.removed",
105459
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105460
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105461
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105462
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
105271
105463
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
105272
105464
  DeploymentReadyLegacy: "deployment-ready",
105273
105465
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105507,7 +105699,7 @@ Get a list of webhooks`,
105507
105699
  function createMCPServer(deps) {
105508
105700
  const server = new McpServer({
105509
105701
  name: "Vercel",
105510
- version: "1.6.8"
105702
+ version: "1.6.10"
105511
105703
  });
105512
105704
  const client = new VercelCore({
105513
105705
  bearerToken: deps.bearerToken,
@@ -107042,7 +107234,7 @@ var routes = an({
107042
107234
  var app = He(routes, {
107043
107235
  name: "mcp",
107044
107236
  versionInfo: {
107045
- currentVersion: "1.6.8"
107237
+ currentVersion: "1.6.10"
107046
107238
  }
107047
107239
  });
107048
107240
  zt(app, process3.argv.slice(2), buildContext(process3));
@@ -107050,5 +107242,5 @@ export {
107050
107242
  app
107051
107243
  };
107052
107244
 
107053
- //# debugId=638E762F65EE86D364756E2164756E21
107245
+ //# debugId=C6D97F233342445664756E2164756E21
107054
107246
  //# sourceMappingURL=mcp-server.js.map