File tree Expand file tree Collapse file tree
src/kernel/types/organization Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 "FeaturesManagedProxies" ,
2222 "FeaturesProfiles" ,
2323 "FeaturesProxyBypassHosts" ,
24+ "FeaturesVaults" ,
2425 "Limits" ,
2526 "Plan" ,
2627]
@@ -114,6 +115,15 @@ class FeaturesProxyBypassHosts(BaseModel):
114115 """Whether the organization is entitled to use this feature."""
115116
116117
118+ class FeaturesVaults (BaseModel ):
119+ """
120+ Whether the organization can access vaults, using the same access check as vault API routes.
121+ """
122+
123+ enabled : bool
124+ """Whether the organization is entitled to use this feature."""
125+
126+
117127class Features (BaseModel ):
118128 browser_extensions : FeaturesBrowserExtensions
119129
@@ -139,6 +149,12 @@ class Features(BaseModel):
139149
140150 proxy_bypass_hosts : FeaturesProxyBypassHosts
141151
152+ vaults : FeaturesVaults
153+ """
154+ Whether the organization can access vaults, using the same access check as vault
155+ API routes.
156+ """
157+
142158
143159class Limits (BaseModel ):
144160 default_max_concurrent_invocations_per_app : int
You can’t perform that action at this time.
0 commit comments