File tree Expand file tree Collapse file tree 7 files changed +13
-8
lines changed
Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 160
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-13ed0159480c5c02ed02394764e7c528c1110cdc42d2a0ff5fac228f48403a08 .yml
3- openapi_spec_hash : e1b4c20a8a5faee0f2dd22b449e7a106
4- config_hash : f36d04c8359fe8baec226396a18b309e
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-504fab16d01ad7f81914542fd0523f4dfefce87813891da391b97b1b0a70f563 .yml
3+ openapi_spec_hash : 84d9d652cac365c646e01111cee89afc
4+ config_hash : acfe8cf5d6e4b26387e4fefa3bff8409
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ from gitpod.types import (
1010 FieldValue,
1111 Gateway,
1212 OrganizationRole,
13+ OrganizationTier,
1314 Principal,
1415 ProjectEnvironmentClass,
1516 ResourceType,
@@ -338,7 +339,6 @@ from gitpod.types import (
338339 InviteDomains,
339340 Organization,
340341 OrganizationMember,
341- OrganizationTier,
342342 OrganizationCreateResponse,
343343 OrganizationRetrieveResponse,
344344 OrganizationUpdateResponse,
Original file line number Diff line number Diff line change 2525 TaskExecution as TaskExecution ,
2626 EnvironmentClass as EnvironmentClass ,
2727 OrganizationRole as OrganizationRole ,
28+ OrganizationTier as OrganizationTier ,
2829 AutomationTrigger as AutomationTrigger ,
2930 TaskExecutionSpec as TaskExecutionSpec ,
3031 TaskExecutionPhase as TaskExecutionPhase ,
7273from .error_event_param import ErrorEventParam as ErrorEventParam
7374from .event_list_params import EventListParams as EventListParams
7475from .group_list_params import GroupListParams as GroupListParams
75- from .organization_tier import OrganizationTier as OrganizationTier
7676from .prebuild_metadata import PrebuildMetadata as PrebuildMetadata
7777from .runner_capability import RunnerCapability as RunnerCapability
7878from .runner_spec_param import RunnerSpecParam as RunnerSpecParam
Original file line number Diff line number Diff line change 66
77from .._models import BaseModel
88from .shared .organization_role import OrganizationRole
9+ from .shared .organization_tier import OrganizationTier
910
1011__all__ = ["AccountMembership" ]
1112
@@ -25,6 +26,9 @@ class AccountMembership(BaseModel):
2526
2627 organization_member_count : Optional [int ] = FieldInfo (alias = "organizationMemberCount" , default = None )
2728 """
28- organization_name is the member count of the organization the user is a member
29- of
29+ organization_member_count is the member count of the organization the user is a
30+ member of
3031 """
32+
33+ organization_tier : Optional [OrganizationTier ] = FieldInfo (alias = "organizationTier" , default = None )
34+ """organization_tier is the tier of the organization (Free, Core, Enterprise)"""
Original file line number Diff line number Diff line change 77
88from .._models import BaseModel
99from .invite_domains import InviteDomains
10- from .organization_tier import OrganizationTier
10+ from .shared . organization_tier import OrganizationTier
1111
1212__all__ = ["Organization" ]
1313
Original file line number Diff line number Diff line change 1616from .task_execution import TaskExecution as TaskExecution
1717from .environment_class import EnvironmentClass as EnvironmentClass
1818from .organization_role import OrganizationRole as OrganizationRole
19+ from .organization_tier import OrganizationTier as OrganizationTier
1920from .automation_trigger import AutomationTrigger as AutomationTrigger
2021from .task_execution_spec import TaskExecutionSpec as TaskExecutionSpec
2122from .task_execution_phase import TaskExecutionPhase as TaskExecutionPhase
File renamed without changes.
You can’t perform that action at this time.
0 commit comments