5959from ....types .shared_params .option_input import OptionInput
6060from ....types .cms .event_visibility_change import EventVisibilityChange
6161from ....types .cms .event_visibility_response import EventVisibilityResponse
62+ from ....types .shared .association_definition import AssociationDefinition
63+ from ....types .shared .object_type_definition import ObjectTypeDefinition
6264from ....types .cms .object_definition_response import ObjectDefinitionResponse
6365from ....types .cms .media_played_percentage_event import MediaPlayedPercentageEvent
64- from ....types .shared .base_association_definition import BaseAssociationDefinition
65- from ....types .shared .base_object_type_definition import BaseObjectTypeDefinition
6666from ....types .cms .integrator_o_embed_domain_model import IntegratorOEmbedDomainModel
6767from ....types .cms .o_embed_domains_collection_response import OEmbedDomainsCollectionResponse
6868from ....types .cms .attention_span_calculated_values_param import AttentionSpanCalculatedValuesParam
@@ -114,7 +114,7 @@ def create_association(
114114 extra_query : Query | None = None ,
115115 extra_body : Body | None = None ,
116116 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
117- ) -> BaseAssociationDefinition :
117+ ) -> AssociationDefinition :
118118 """
119119 Create a new association definition for the specified object type.
120120
@@ -146,7 +146,7 @@ def create_association(
146146 options = make_request_options (
147147 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
148148 ),
149- cast_to = BaseAssociationDefinition ,
149+ cast_to = AssociationDefinition ,
150150 )
151151
152152 def create_attention_span_event (
@@ -574,7 +574,7 @@ def create_video_association_definition(
574574 extra_query : Query | None = None ,
575575 extra_body : Body | None = None ,
576576 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
577- ) -> BaseAssociationDefinition :
577+ ) -> AssociationDefinition :
578578 """
579579 Args:
580580 extra_headers: Send extra headers
@@ -590,7 +590,7 @@ def create_video_association_definition(
590590 options = make_request_options (
591591 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
592592 ),
593- cast_to = BaseAssociationDefinition ,
593+ cast_to = AssociationDefinition ,
594594 )
595595
596596 def delete_association (
@@ -1480,7 +1480,7 @@ def update_schema(
14801480 extra_query : Query | None = None ,
14811481 extra_body : Body | None = None ,
14821482 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
1483- ) -> BaseObjectTypeDefinition :
1483+ ) -> ObjectTypeDefinition :
14841484 """
14851485 Update the schema for an existing object type
14861486
@@ -1516,7 +1516,7 @@ def update_schema(
15161516 options = make_request_options (
15171517 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
15181518 ),
1519- cast_to = BaseObjectTypeDefinition ,
1519+ cast_to = ObjectTypeDefinition ,
15201520 )
15211521
15221522 def update_settings (
@@ -1603,7 +1603,7 @@ async def create_association(
16031603 extra_query : Query | None = None ,
16041604 extra_body : Body | None = None ,
16051605 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
1606- ) -> BaseAssociationDefinition :
1606+ ) -> AssociationDefinition :
16071607 """
16081608 Create a new association definition for the specified object type.
16091609
@@ -1635,7 +1635,7 @@ async def create_association(
16351635 options = make_request_options (
16361636 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
16371637 ),
1638- cast_to = BaseAssociationDefinition ,
1638+ cast_to = AssociationDefinition ,
16391639 )
16401640
16411641 async def create_attention_span_event (
@@ -2063,7 +2063,7 @@ async def create_video_association_definition(
20632063 extra_query : Query | None = None ,
20642064 extra_body : Body | None = None ,
20652065 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
2066- ) -> BaseAssociationDefinition :
2066+ ) -> AssociationDefinition :
20672067 """
20682068 Args:
20692069 extra_headers: Send extra headers
@@ -2079,7 +2079,7 @@ async def create_video_association_definition(
20792079 options = make_request_options (
20802080 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
20812081 ),
2082- cast_to = BaseAssociationDefinition ,
2082+ cast_to = AssociationDefinition ,
20832083 )
20842084
20852085 async def delete_association (
@@ -2969,7 +2969,7 @@ async def update_schema(
29692969 extra_query : Query | None = None ,
29702970 extra_body : Body | None = None ,
29712971 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
2972- ) -> BaseObjectTypeDefinition :
2972+ ) -> ObjectTypeDefinition :
29732973 """
29742974 Update the schema for an existing object type
29752975
@@ -3005,7 +3005,7 @@ async def update_schema(
30053005 options = make_request_options (
30063006 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
30073007 ),
3008- cast_to = BaseObjectTypeDefinition ,
3008+ cast_to = ObjectTypeDefinition ,
30093009 )
30103010
30113011 async def update_settings (
0 commit comments