lusid-sdk 2.3.19__py3-none-any.whl → 2.3.21__py3-none-any.whl

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.
lusid/api/funds_api.py CHANGED
@@ -2606,22 +2606,22 @@ class FundsApi:
2606
2606
 
2607
2607
 
2608
2608
  @overload
2609
- async def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], single_valuation_point_query_parameters : Annotated[SingleValuationPointQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, from_trade_date : Annotated[Optional[StrictStr], Field( description="The from trade date, defaults to first time this holding is opened, lower bound for transactions")] = None, to_trade_date : Annotated[Optional[StrictStr], Field( description="The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, **kwargs) -> VersionedResourceListOfHoldingContributor: # noqa: E501
2609
+ async def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, **kwargs) -> VersionedResourceListOfHoldingContributor: # noqa: E501
2610
2610
  ...
2611
2611
 
2612
2612
  @overload
2613
- def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], single_valuation_point_query_parameters : Annotated[SingleValuationPointQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, from_trade_date : Annotated[Optional[StrictStr], Field( description="The from trade date, defaults to first time this holding is opened, lower bound for transactions")] = None, to_trade_date : Annotated[Optional[StrictStr], Field( description="The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfHoldingContributor: # noqa: E501
2613
+ def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfHoldingContributor: # noqa: E501
2614
2614
  ...
2615
2615
 
2616
2616
  @validate_arguments
2617
- def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], single_valuation_point_query_parameters : Annotated[SingleValuationPointQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, from_trade_date : Annotated[Optional[StrictStr], Field( description="The from trade date, defaults to first time this holding is opened, lower bound for transactions")] = None, to_trade_date : Annotated[Optional[StrictStr], Field( description="The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfHoldingContributor, Awaitable[VersionedResourceListOfHoldingContributor]]: # noqa: E501
2617
+ def get_holding_contributors_for_fund(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfHoldingContributor, Awaitable[VersionedResourceListOfHoldingContributor]]: # noqa: E501
2618
2618
  """[EXPERIMENTAL] GetHoldingContributorsForFund: Get holdings contributors for transaction portfolios in a Fund. # noqa: E501
2619
2619
 
2620
2620
  Get the holdings of transaction portfolios in a specified Fund. # noqa: E501
2621
2621
  This method makes a synchronous HTTP request by default. To make an
2622
2622
  asynchronous HTTP request, please pass async_req=True
2623
2623
 
2624
- >>> thread = api.get_holding_contributors_for_fund(scope, code, holding_id, single_valuation_point_query_parameters, nav_type_code, from_trade_date, to_trade_date, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, async_req=True)
2624
+ >>> thread = api.get_holding_contributors_for_fund(scope, code, holding_id, valuation_point_data_query_parameters, nav_type_code, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, async_req=True)
2625
2625
  >>> result = thread.get()
2626
2626
 
2627
2627
  :param scope: The scope of the Fund. (required)
@@ -2630,14 +2630,10 @@ class FundsApi:
2630
2630
  :type code: str
2631
2631
  :param holding_id: The unique holding identifier (required)
2632
2632
  :type holding_id: int
2633
- :param single_valuation_point_query_parameters: The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark. (required)
2634
- :type single_valuation_point_query_parameters: SingleValuationPointQueryParameters
2633
+ :param valuation_point_data_query_parameters: The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark. (required)
2634
+ :type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
2635
2635
  :param nav_type_code: When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.
2636
2636
  :type nav_type_code: str
2637
- :param from_trade_date: The from trade date, defaults to first time this holding is opened, lower bound for transactions
2638
- :type from_trade_date: str
2639
- :param to_trade_date: The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions
2640
- :type to_trade_date: str
2641
2637
  :param include_historic: If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.
2642
2638
  :type include_historic: bool
2643
2639
  :param tax_lot_id: Constrains the Holding Contributors to those which contributed to the specified tax lot.
@@ -2666,17 +2662,17 @@ class FundsApi:
2666
2662
  raise ValueError(message)
2667
2663
  if async_req is not None:
2668
2664
  kwargs['async_req'] = async_req
2669
- return self.get_holding_contributors_for_fund_with_http_info(scope, code, holding_id, single_valuation_point_query_parameters, nav_type_code, from_trade_date, to_trade_date, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, **kwargs) # noqa: E501
2665
+ return self.get_holding_contributors_for_fund_with_http_info(scope, code, holding_id, valuation_point_data_query_parameters, nav_type_code, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, **kwargs) # noqa: E501
2670
2666
 
2671
2667
  @validate_arguments
2672
- def get_holding_contributors_for_fund_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], single_valuation_point_query_parameters : Annotated[SingleValuationPointQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, from_trade_date : Annotated[Optional[StrictStr], Field( description="The from trade date, defaults to first time this holding is opened, lower bound for transactions")] = None, to_trade_date : Annotated[Optional[StrictStr], Field( description="The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, **kwargs) -> ApiResponse: # noqa: E501
2668
+ def get_holding_contributors_for_fund_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], holding_id : Annotated[StrictInt, Field(description="The unique holding identifier")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(description="The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark.")], nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, include_historic : Annotated[Optional[StrictBool], Field(description="If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.")] = None, tax_lot_id : Annotated[Optional[StrictStr], Field( description="Constrains the Holding Contributors to those which contributed to the specified tax lot.")] = None, include_unsettled_movements : Annotated[Optional[StrictBool], Field(description="If true, contributing transaction which have not settled yet will also be returned. False by default")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to GetHoldingContributors.")] = None, **kwargs) -> ApiResponse: # noqa: E501
2673
2669
  """[EXPERIMENTAL] GetHoldingContributorsForFund: Get holdings contributors for transaction portfolios in a Fund. # noqa: E501
2674
2670
 
2675
2671
  Get the holdings of transaction portfolios in a specified Fund. # noqa: E501
2676
2672
  This method makes a synchronous HTTP request by default. To make an
2677
2673
  asynchronous HTTP request, please pass async_req=True
2678
2674
 
2679
- >>> thread = api.get_holding_contributors_for_fund_with_http_info(scope, code, holding_id, single_valuation_point_query_parameters, nav_type_code, from_trade_date, to_trade_date, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, async_req=True)
2675
+ >>> thread = api.get_holding_contributors_for_fund_with_http_info(scope, code, holding_id, valuation_point_data_query_parameters, nav_type_code, include_historic, tax_lot_id, include_unsettled_movements, limit, as_at, page, async_req=True)
2680
2676
  >>> result = thread.get()
2681
2677
 
2682
2678
  :param scope: The scope of the Fund. (required)
@@ -2685,14 +2681,10 @@ class FundsApi:
2685
2681
  :type code: str
2686
2682
  :param holding_id: The unique holding identifier (required)
2687
2683
  :type holding_id: int
2688
- :param single_valuation_point_query_parameters: The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark. (required)
2689
- :type single_valuation_point_query_parameters: SingleValuationPointQueryParameters
2684
+ :param valuation_point_data_query_parameters: The arguments to use for querying the holdings.This can be a date, valuationPoint or a bookmark. (required)
2685
+ :type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
2690
2686
  :param nav_type_code: When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.
2691
2687
  :type nav_type_code: str
2692
- :param from_trade_date: The from trade date, defaults to first time this holding is opened, lower bound for transactions
2693
- :type from_trade_date: str
2694
- :param to_trade_date: The to trade date upper bound date, defaults to effectiveDate. upper bound for transactions
2695
- :type to_trade_date: str
2696
2688
  :param include_historic: If true, transactions from previously closed holdings are returned. If false, only transactions from last time position is opened.
2697
2689
  :type include_historic: bool
2698
2690
  :param tax_lot_id: Constrains the Holding Contributors to those which contributed to the specified tax lot.
@@ -2735,10 +2727,8 @@ class FundsApi:
2735
2727
  'scope',
2736
2728
  'code',
2737
2729
  'holding_id',
2738
- 'single_valuation_point_query_parameters',
2730
+ 'valuation_point_data_query_parameters',
2739
2731
  'nav_type_code',
2740
- 'from_trade_date',
2741
- 'to_trade_date',
2742
2732
  'include_historic',
2743
2733
  'tax_lot_id',
2744
2734
  'include_unsettled_movements',
@@ -2788,12 +2778,6 @@ class FundsApi:
2788
2778
  if _params.get('nav_type_code') is not None: # noqa: E501
2789
2779
  _query_params.append(('navTypeCode', _params['nav_type_code']))
2790
2780
 
2791
- if _params.get('from_trade_date') is not None: # noqa: E501
2792
- _query_params.append(('fromTradeDate', _params['from_trade_date']))
2793
-
2794
- if _params.get('to_trade_date') is not None: # noqa: E501
2795
- _query_params.append(('toTradeDate', _params['to_trade_date']))
2796
-
2797
2781
  if _params.get('include_historic') is not None: # noqa: E501
2798
2782
  _query_params.append(('includeHistoric', _params['include_historic']))
2799
2783
 
@@ -2822,8 +2806,8 @@ class FundsApi:
2822
2806
  _files = {}
2823
2807
  # process the body parameter
2824
2808
  _body_params = None
2825
- if _params['single_valuation_point_query_parameters'] is not None:
2826
- _body_params = _params['single_valuation_point_query_parameters']
2809
+ if _params['valuation_point_data_query_parameters'] is not None:
2810
+ _body_params = _params['valuation_point_data_query_parameters']
2827
2811
 
2828
2812
  # set the HTTP header `Accept`
2829
2813
  _header_params['Accept'] = self.api_client.select_header_accept(
lusid/configuration.py CHANGED
@@ -445,7 +445,7 @@ class Configuration:
445
445
  return "Python SDK Debug Report:\n"\
446
446
  "OS: {env}\n"\
447
447
  "Python Version: {pyversion}\n"\
448
- "Version of the API: 0.11.8757\n"\
448
+ "Version of the API: 0.11.8760\n"\
449
449
  "SDK Package Version: {package_version}".\
450
450
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
451
451
 
@@ -48,7 +48,8 @@ class FundCalendarEntry(BaseModel):
48
48
  properties: Optional[Dict[str, ModelProperty]] = Field(default=None, description="The properties for the Calendar Entry. These will be from the 'ClosedPeriod' domain.")
49
49
  version: Version
50
50
  href: Optional[StrictStr] = Field(None,alias="href", description="The specific Uniform Resource Identifier (URI) for this resource at the requested asAt datetime.")
51
- __properties = ["code", "variant", "displayName", "description", "navTypeCode", "timelineId", "previousEntry", "effectiveAt", "asAt", "entryType", "status", "applyClearDown", "holdingsAsAtOverride", "valuationsAsAtOverride", "properties", "version", "href"]
51
+ leader_nav_type_code: Optional[StrictStr] = Field(None,alias="leaderNavTypeCode", description="The code of the Nav Type that this Nav Type will follow when set.")
52
+ __properties = ["code", "variant", "displayName", "description", "navTypeCode", "timelineId", "previousEntry", "effectiveAt", "asAt", "entryType", "status", "applyClearDown", "holdingsAsAtOverride", "valuationsAsAtOverride", "properties", "version", "href", "leaderNavTypeCode"]
52
53
 
53
54
  @validator('entry_type')
54
55
  def entry_type_validate_enum(cls, value):
@@ -201,6 +202,11 @@ class FundCalendarEntry(BaseModel):
201
202
  if self.href is None and "href" in self.__fields_set__:
202
203
  _dict['href'] = None
203
204
 
205
+ # set to None if leader_nav_type_code (nullable) is None
206
+ # and __fields_set__ contains the field
207
+ if self.leader_nav_type_code is None and "leader_nav_type_code" in self.__fields_set__:
208
+ _dict['leaderNavTypeCode'] = None
209
+
204
210
  return _dict
205
211
 
206
212
  @classmethod
@@ -234,7 +240,8 @@ class FundCalendarEntry(BaseModel):
234
240
  if obj.get("properties") is not None
235
241
  else None,
236
242
  "version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
237
- "href": obj.get("href")
243
+ "href": obj.get("href"),
244
+ "leader_nav_type_code": obj.get("leaderNavTypeCode")
238
245
  })
239
246
  return _obj
240
247
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lusid-sdk
3
- Version: 2.3.19
3
+ Version: 2.3.21
4
4
  Summary: LUSID API
5
5
  License: MIT
6
6
  Keywords: OpenAPI,OpenAPI-Generator,LUSID API,lusid-sdk
@@ -29,7 +29,7 @@ lusid/api/entities_api.py,sha256=keMb8tv3Xa2wVfYRecBGoWb3oe-QHh-mosUVYLGzTAg,855
29
29
  lusid/api/executions_api.py,sha256=9q9OHVph5U8_nboUYCpm5dRd2nRULacsIohoYs9Dgfw,43978
30
30
  lusid/api/fee_types_api.py,sha256=3aUaFLIEVGQhE1z1FHBbHRaWD2wjdotQ5-croJePB3w,54506
31
31
  lusid/api/fund_configuration_api.py,sha256=fyUoHiQiGSRLcsrm-CUhB4OwpzvVAzFBxyw-PJHxfmE,72515
32
- lusid/api/funds_api.py,sha256=FEBzBytjn_xp_dSLUwup-7gzB-lSdput-d8j9MK_03E,487868
32
+ lusid/api/funds_api.py,sha256=h4HTfdr91J1bB4FA1YlPmwC05pbulgoNq4z_gc3mdJM,485352
33
33
  lusid/api/group_reconciliations_api.py,sha256=P_j-RyGPaiqbGLxBWpOgADXsqacsnijviYt3EDYEQZ0,162707
34
34
  lusid/api/identifier_definitions_api.py,sha256=qBRRpMAUSTSZ5IoEFBdTx4heuPc6HB5-sN5oHcknVWQ,64207
35
35
  lusid/api/instrument_event_types_api.py,sha256=4zql8PyenLx3B5nWzZ8sjrEN-ql8QHXGZYpOWSgNt2o,79696
@@ -81,7 +81,7 @@ lusid/api/translation_api.py,sha256=ykq--aAObjON30cqkCgtlvNVN_X9o1kCFHBuhx0TqOY,
81
81
  lusid/api/workspace_api.py,sha256=cIVlsVXulKjrNIF1NMaEH11-YRF3gOmLN6KaXVeECnk,120530
82
82
  lusid/api_client.py,sha256=9ShwOKmMJEOUj82dVLKP8CIkwu0aGV2H5qwGxTVJp7w,31170
83
83
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
84
- lusid/configuration.py,sha256=9srmjzgQYeGfyHF9A6toUaHk6stYNsnrAcWjUANLTh8,17980
84
+ lusid/configuration.py,sha256=vpEWTdxwRpkIJnpEMpXRmo7-ZBPiK9lq6FwPchiWIMA,17980
85
85
  lusid/exceptions.py,sha256=lYAJyHpruxMPUtZ95NwiYJvqzInY8S0yhRE0-JFYCww,5873
86
86
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
87
87
  lusid/extensions/api_client.py,sha256=cq0kCulu3hsJ7jMPQfsE8B6FIa8ppTSXqneHo19RrXQ,30973
@@ -533,7 +533,7 @@ lusid/models/forward_rate_agreement.py,sha256=k5eMOrYAGG0mzwnzymckq4FSctrc-HBvtp
533
533
  lusid/models/from_recipe.py,sha256=OQF_vw-Ji2OJDYG2ymqSr3Q8Z490lz40R5iu35cIw2c,2752
534
534
  lusid/models/fund.py,sha256=0FrJq8F_C2dlQjRkNj_Jt2wbBVDkZxSYqGLOzUon-Q8,12544
535
535
  lusid/models/fund_amount.py,sha256=R_NLDMB69C6Nmc-QTwH3nn-G5RrB0fdLoB5XgGZI5Gk,2327
536
- lusid/models/fund_calendar_entry.py,sha256=Ibovm7YfU3_wPzRxCGKrJOaDZci4vG4iyzv7qKsNw1Y,12927
536
+ lusid/models/fund_calendar_entry.py,sha256=X6Lj5OClDgViEzNpJRtg5BmJgy1Co1OCIFxF-7Ac9nA,13439
537
537
  lusid/models/fund_calendar_entry_type.py,sha256=_fvyWF7CnpjokWS0RhGjIN70gc3oPzp9RkKZ3_oUATo,1059
538
538
  lusid/models/fund_configuration.py,sha256=JR0R6HwqRdm4UZUzco-XPZbCiVMP1KN5pZoWuVbYy8U,9817
539
539
  lusid/models/fund_configuration_properties.py,sha256=qafEGUPIiLe-kHHeexufZN9Ef3D1z0PX04jiO3YFXyE,4834
@@ -1440,6 +1440,6 @@ lusid/models/year_month_day.py,sha256=H4OeBzWuMg6mwiOAHFfAvrzjd3QrFCqx1ldsB4L9YQ
1440
1440
  lusid/models/yield_curve_data.py,sha256=ErrQ72NxVza3dC-NnjdbwUpFJKLC-i9UfAWgZyQlEC0,10599
1441
1441
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1442
1442
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1443
- lusid_sdk-2.3.19.dist-info/METADATA,sha256=4wwgyagBB-qmRO1gf4SPlBpSaU9hEXTH8rz1ETICOIU,242300
1444
- lusid_sdk-2.3.19.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
1445
- lusid_sdk-2.3.19.dist-info/RECORD,,
1443
+ lusid_sdk-2.3.21.dist-info/METADATA,sha256=c-jwHWBw24oMISThRz0J1U7CiGbtyZcsVsyfIXUTlxo,242300
1444
+ lusid_sdk-2.3.21.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
1445
+ lusid_sdk-2.3.21.dist-info/RECORD,,