lusid-sdk 2.1.321__py3-none-any.whl → 2.1.329__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/__init__.py CHANGED
@@ -694,6 +694,7 @@ from lusid.models.paged_resource_list_of_staging_rule_set import PagedResourceLi
694
694
  from lusid.models.paged_resource_list_of_transaction_template import PagedResourceListOfTransactionTemplate
695
695
  from lusid.models.paged_resource_list_of_transaction_template_specification import PagedResourceListOfTransactionTemplateSpecification
696
696
  from lusid.models.paged_resource_list_of_translation_script_id import PagedResourceListOfTranslationScriptId
697
+ from lusid.models.paged_resource_list_of_valuation_point_overview import PagedResourceListOfValuationPointOverview
697
698
  from lusid.models.paged_resource_list_of_virtual_row import PagedResourceListOfVirtualRow
698
699
  from lusid.models.participation import Participation
699
700
  from lusid.models.participation_request import ParticipationRequest
@@ -1094,6 +1095,7 @@ from lusid.models.user import User
1094
1095
  from lusid.models.valuation_point_data_query_parameters import ValuationPointDataQueryParameters
1095
1096
  from lusid.models.valuation_point_data_request import ValuationPointDataRequest
1096
1097
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
1098
+ from lusid.models.valuation_point_overview import ValuationPointOverview
1097
1099
  from lusid.models.valuation_request import ValuationRequest
1098
1100
  from lusid.models.valuation_schedule import ValuationSchedule
1099
1101
  from lusid.models.valuations_reconciliation_request import ValuationsReconciliationRequest
@@ -1803,6 +1805,7 @@ __all__ = [
1803
1805
  "PagedResourceListOfTransactionTemplate",
1804
1806
  "PagedResourceListOfTransactionTemplateSpecification",
1805
1807
  "PagedResourceListOfTranslationScriptId",
1808
+ "PagedResourceListOfValuationPointOverview",
1806
1809
  "PagedResourceListOfVirtualRow",
1807
1810
  "Participation",
1808
1811
  "ParticipationRequest",
@@ -2203,6 +2206,7 @@ __all__ = [
2203
2206
  "ValuationPointDataQueryParameters",
2204
2207
  "ValuationPointDataRequest",
2205
2208
  "ValuationPointDataResponse",
2209
+ "ValuationPointOverview",
2206
2210
  "ValuationRequest",
2207
2211
  "ValuationSchedule",
2208
2212
  "ValuationsReconciliationRequest",
lusid/api/funds_api.py CHANGED
@@ -38,6 +38,7 @@ from lusid.models.model_property import ModelProperty
38
38
  from lusid.models.operation import Operation
39
39
  from lusid.models.paged_resource_list_of_fee import PagedResourceListOfFee
40
40
  from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
41
+ from lusid.models.paged_resource_list_of_valuation_point_overview import PagedResourceListOfValuationPointOverview
41
42
  from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
42
43
  from lusid.models.upsert_valuation_point_request import UpsertValuationPointRequest
43
44
  from lusid.models.valuation_point_data_query_parameters import ValuationPointDataQueryParameters
@@ -2236,6 +2237,217 @@ class FundsApi:
2236
2237
  collection_formats=_collection_formats,
2237
2238
  _request_auth=_params.get('_request_auth'))
2238
2239
 
2240
+ @overload
2241
+ async def list_valuation_point_overview(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number. Defaults to 100 if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.")] = None, **kwargs) -> PagedResourceListOfValuationPointOverview: # noqa: E501
2242
+ ...
2243
+
2244
+ @overload
2245
+ def list_valuation_point_overview(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number. Defaults to 100 if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.")] = None, async_req: Optional[bool]=True, **kwargs) -> PagedResourceListOfValuationPointOverview: # noqa: E501
2246
+ ...
2247
+
2248
+ @validate_arguments
2249
+ def list_valuation_point_overview(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number. Defaults to 100 if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfValuationPointOverview, Awaitable[PagedResourceListOfValuationPointOverview]]: # noqa: E501
2250
+ """[EXPERIMENTAL] ListValuationPointOverview: List Valuation Points Overview for a given Fund. # noqa: E501
2251
+
2252
+ List all the Valuation Points that match the given criteria for a given Fund. # noqa: E501
2253
+ This method makes a synchronous HTTP request by default. To make an
2254
+ asynchronous HTTP request, please pass async_req=True
2255
+
2256
+ >>> thread = api.list_valuation_point_overview(scope, code, effective_at, as_at, page, limit, filter, property_keys, async_req=True)
2257
+ >>> result = thread.get()
2258
+
2259
+ :param scope: The scope of the Fund. (required)
2260
+ :type scope: str
2261
+ :param code: The code of the Fund. (required)
2262
+ :type code: str
2263
+ :param effective_at: The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.
2264
+ :type effective_at: str
2265
+ :param as_at: The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.
2266
+ :type as_at: datetime
2267
+ :param page: The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
2268
+ :type page: str
2269
+ :param limit: When paginating, limit the results to this number. Defaults to 100 if not specified.
2270
+ :type limit: int
2271
+ :param filter: Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
2272
+ :type filter: str
2273
+ :param property_keys: A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.
2274
+ :type property_keys: List[str]
2275
+ :param async_req: Whether to execute the request asynchronously.
2276
+ :type async_req: bool, optional
2277
+ :param _request_timeout: timeout setting for this request.
2278
+ If one number provided, it will be total request
2279
+ timeout. It can also be a pair (tuple) of
2280
+ (connection, read) timeouts.
2281
+ :return: Returns the result object.
2282
+ If the method is called asynchronously,
2283
+ returns the request thread.
2284
+ :rtype: PagedResourceListOfValuationPointOverview
2285
+ """
2286
+ kwargs['_return_http_data_only'] = True
2287
+ if '_preload_content' in kwargs:
2288
+ message = "Error! Please call the list_valuation_point_overview_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
2289
+ raise ValueError(message)
2290
+ if async_req is not None:
2291
+ kwargs['async_req'] = async_req
2292
+ return self.list_valuation_point_overview_with_http_info(scope, code, effective_at, as_at, page, limit, filter, property_keys, **kwargs) # noqa: E501
2293
+
2294
+ @validate_arguments
2295
+ def list_valuation_point_overview_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number. Defaults to 100 if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.")] = None, **kwargs) -> ApiResponse: # noqa: E501
2296
+ """[EXPERIMENTAL] ListValuationPointOverview: List Valuation Points Overview for a given Fund. # noqa: E501
2297
+
2298
+ List all the Valuation Points that match the given criteria for a given Fund. # noqa: E501
2299
+ This method makes a synchronous HTTP request by default. To make an
2300
+ asynchronous HTTP request, please pass async_req=True
2301
+
2302
+ >>> thread = api.list_valuation_point_overview_with_http_info(scope, code, effective_at, as_at, page, limit, filter, property_keys, async_req=True)
2303
+ >>> result = thread.get()
2304
+
2305
+ :param scope: The scope of the Fund. (required)
2306
+ :type scope: str
2307
+ :param code: The code of the Fund. (required)
2308
+ :type code: str
2309
+ :param effective_at: The effective datetime or cut label at which to list the TimeVariant properties for the ValuationPoints. Defaults to the current LUSID system datetime if not specified.
2310
+ :type effective_at: str
2311
+ :param as_at: The asAt datetime at which to list the ValuationPoints. Defaults to returning the latest version of each ValuationPoint if not specified.
2312
+ :type as_at: datetime
2313
+ :param page: The pagination token to use to continue listing ValuationPoints; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
2314
+ :type page: str
2315
+ :param limit: When paginating, limit the results to this number. Defaults to 100 if not specified.
2316
+ :type limit: int
2317
+ :param filter: Expression to filter the results by. For example, to filter on the NAV, specify \"NAV gt 300\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
2318
+ :type filter: str
2319
+ :param property_keys: A list of property keys from the 'DiaryEntry' domain to decorate onto each ValuationPoint. These must take the format {domain}/{scope}/{code}, for example 'DiaryEntry/ValuationPoint/Id'.
2320
+ :type property_keys: List[str]
2321
+ :param async_req: Whether to execute the request asynchronously.
2322
+ :type async_req: bool, optional
2323
+ :param _preload_content: if False, the ApiResponse.data will
2324
+ be set to none and raw_data will store the
2325
+ HTTP response body without reading/decoding.
2326
+ Default is True.
2327
+ :type _preload_content: bool, optional
2328
+ :param _return_http_data_only: response data instead of ApiResponse
2329
+ object with status code, headers, etc
2330
+ :type _return_http_data_only: bool, optional
2331
+ :param _request_timeout: timeout setting for this request. If one
2332
+ number provided, it will be total request
2333
+ timeout. It can also be a pair (tuple) of
2334
+ (connection, read) timeouts.
2335
+ :param _request_auth: set to override the auth_settings for an a single
2336
+ request; this effectively ignores the authentication
2337
+ in the spec for a single request.
2338
+ :type _request_auth: dict, optional
2339
+ :type _content_type: string, optional: force content-type for the request
2340
+ :return: Returns the result object.
2341
+ If the method is called asynchronously,
2342
+ returns the request thread.
2343
+ :rtype: tuple(PagedResourceListOfValuationPointOverview, status_code(int), headers(HTTPHeaderDict))
2344
+ """
2345
+
2346
+ _params = locals()
2347
+
2348
+ _all_params = [
2349
+ 'scope',
2350
+ 'code',
2351
+ 'effective_at',
2352
+ 'as_at',
2353
+ 'page',
2354
+ 'limit',
2355
+ 'filter',
2356
+ 'property_keys'
2357
+ ]
2358
+ _all_params.extend(
2359
+ [
2360
+ 'async_req',
2361
+ '_return_http_data_only',
2362
+ '_preload_content',
2363
+ '_request_timeout',
2364
+ '_request_auth',
2365
+ '_content_type',
2366
+ '_headers'
2367
+ ]
2368
+ )
2369
+
2370
+ # validate the arguments
2371
+ for _key, _val in _params['kwargs'].items():
2372
+ if _key not in _all_params:
2373
+ raise ApiTypeError(
2374
+ "Got an unexpected keyword argument '%s'"
2375
+ " to method list_valuation_point_overview" % _key
2376
+ )
2377
+ _params[_key] = _val
2378
+ del _params['kwargs']
2379
+
2380
+ _collection_formats = {}
2381
+
2382
+ # process the path parameters
2383
+ _path_params = {}
2384
+ if _params['scope']:
2385
+ _path_params['scope'] = _params['scope']
2386
+
2387
+ if _params['code']:
2388
+ _path_params['code'] = _params['code']
2389
+
2390
+
2391
+ # process the query parameters
2392
+ _query_params = []
2393
+ if _params.get('effective_at') is not None: # noqa: E501
2394
+ _query_params.append(('effectiveAt', _params['effective_at']))
2395
+
2396
+ if _params.get('as_at') is not None: # noqa: E501
2397
+ if isinstance(_params['as_at'], datetime):
2398
+ _query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
2399
+ else:
2400
+ _query_params.append(('asAt', _params['as_at']))
2401
+
2402
+ if _params.get('page') is not None: # noqa: E501
2403
+ _query_params.append(('page', _params['page']))
2404
+
2405
+ if _params.get('limit') is not None: # noqa: E501
2406
+ _query_params.append(('limit', _params['limit']))
2407
+
2408
+ if _params.get('filter') is not None: # noqa: E501
2409
+ _query_params.append(('filter', _params['filter']))
2410
+
2411
+ if _params.get('property_keys') is not None: # noqa: E501
2412
+ _query_params.append(('propertyKeys', _params['property_keys']))
2413
+ _collection_formats['propertyKeys'] = 'multi'
2414
+
2415
+ # process the header parameters
2416
+ _header_params = dict(_params.get('_headers', {}))
2417
+ # process the form parameters
2418
+ _form_params = []
2419
+ _files = {}
2420
+ # process the body parameter
2421
+ _body_params = None
2422
+ # set the HTTP header `Accept`
2423
+ _header_params['Accept'] = self.api_client.select_header_accept(
2424
+ ['text/plain', 'application/json', 'text/json']) # noqa: E501
2425
+
2426
+ # authentication setting
2427
+ _auth_settings = ['oauth2'] # noqa: E501
2428
+
2429
+ _response_types_map = {
2430
+ '200': "PagedResourceListOfValuationPointOverview",
2431
+ '400': "LusidValidationProblemDetails",
2432
+ }
2433
+
2434
+ return self.api_client.call_api(
2435
+ '/api/funds/{scope}/{code}/valuationPointOverview', 'GET',
2436
+ _path_params,
2437
+ _query_params,
2438
+ _header_params,
2439
+ body=_body_params,
2440
+ post_params=_form_params,
2441
+ files=_files,
2442
+ response_types_map=_response_types_map,
2443
+ auth_settings=_auth_settings,
2444
+ async_req=_params.get('async_req'),
2445
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2446
+ _preload_content=_params.get('_preload_content', True),
2447
+ _request_timeout=_params.get('_request_timeout'),
2448
+ collection_formats=_collection_formats,
2449
+ _request_auth=_params.get('_request_auth'))
2450
+
2239
2451
  @overload
2240
2452
  async def patch_fee(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], fee_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fee.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> Fee: # noqa: E501
2241
2453
  ...
lusid/configuration.py CHANGED
@@ -373,7 +373,7 @@ class Configuration:
373
373
  return "Python SDK Debug Report:\n"\
374
374
  "OS: {env}\n"\
375
375
  "Python Version: {pyversion}\n"\
376
- "Version of the API: 0.11.6752\n"\
376
+ "Version of the API: 0.11.6760\n"\
377
377
  "SDK Package Version: {package_version}".\
378
378
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
379
379
 
lusid/models/__init__.py CHANGED
@@ -615,6 +615,7 @@ from lusid.models.paged_resource_list_of_staging_rule_set import PagedResourceLi
615
615
  from lusid.models.paged_resource_list_of_transaction_template import PagedResourceListOfTransactionTemplate
616
616
  from lusid.models.paged_resource_list_of_transaction_template_specification import PagedResourceListOfTransactionTemplateSpecification
617
617
  from lusid.models.paged_resource_list_of_translation_script_id import PagedResourceListOfTranslationScriptId
618
+ from lusid.models.paged_resource_list_of_valuation_point_overview import PagedResourceListOfValuationPointOverview
618
619
  from lusid.models.paged_resource_list_of_virtual_row import PagedResourceListOfVirtualRow
619
620
  from lusid.models.participation import Participation
620
621
  from lusid.models.participation_request import ParticipationRequest
@@ -1015,6 +1016,7 @@ from lusid.models.user import User
1015
1016
  from lusid.models.valuation_point_data_query_parameters import ValuationPointDataQueryParameters
1016
1017
  from lusid.models.valuation_point_data_request import ValuationPointDataRequest
1017
1018
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
1019
+ from lusid.models.valuation_point_overview import ValuationPointOverview
1018
1020
  from lusid.models.valuation_request import ValuationRequest
1019
1021
  from lusid.models.valuation_schedule import ValuationSchedule
1020
1022
  from lusid.models.valuations_reconciliation_request import ValuationsReconciliationRequest
@@ -1646,6 +1648,7 @@ __all__ = [
1646
1648
  "PagedResourceListOfTransactionTemplate",
1647
1649
  "PagedResourceListOfTransactionTemplateSpecification",
1648
1650
  "PagedResourceListOfTranslationScriptId",
1651
+ "PagedResourceListOfValuationPointOverview",
1649
1652
  "PagedResourceListOfVirtualRow",
1650
1653
  "Participation",
1651
1654
  "ParticipationRequest",
@@ -2046,6 +2049,7 @@ __all__ = [
2046
2049
  "ValuationPointDataQueryParameters",
2047
2050
  "ValuationPointDataRequest",
2048
2051
  "ValuationPointDataResponse",
2052
+ "ValuationPointOverview",
2049
2053
  "ValuationRequest",
2050
2054
  "ValuationSchedule",
2051
2055
  "ValuationsReconciliationRequest",
@@ -35,12 +35,12 @@ class FundConfiguration(BaseModel):
35
35
  display_name: Optional[StrictStr] = Field(None, alias="displayName", description="The name of the FundConfiguration.")
36
36
  description: Optional[StrictStr] = Field(None, description="A description for the FundConfiguration.")
37
37
  dealing_rule: Optional[ComponentRule] = Field(None, alias="dealingRule")
38
- fund_pnl_rule: Optional[ComponentRule] = Field(None, alias="fundPnlRule")
38
+ pnl_rule: Optional[ComponentRule] = Field(None, alias="pnlRule")
39
39
  back_out_rule: Optional[ComponentRule] = Field(None, alias="backOutRule")
40
40
  properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund Configuration.")
41
41
  version: Optional[Version] = None
42
42
  links: Optional[conlist(Link)] = None
43
- __properties = ["href", "id", "displayName", "description", "dealingRule", "fundPnlRule", "backOutRule", "properties", "version", "links"]
43
+ __properties = ["href", "id", "displayName", "description", "dealingRule", "pnlRule", "backOutRule", "properties", "version", "links"]
44
44
 
45
45
  class Config:
46
46
  """Pydantic configuration"""
@@ -72,9 +72,9 @@ class FundConfiguration(BaseModel):
72
72
  # override the default output from pydantic by calling `to_dict()` of dealing_rule
73
73
  if self.dealing_rule:
74
74
  _dict['dealingRule'] = self.dealing_rule.to_dict()
75
- # override the default output from pydantic by calling `to_dict()` of fund_pnl_rule
76
- if self.fund_pnl_rule:
77
- _dict['fundPnlRule'] = self.fund_pnl_rule.to_dict()
75
+ # override the default output from pydantic by calling `to_dict()` of pnl_rule
76
+ if self.pnl_rule:
77
+ _dict['pnlRule'] = self.pnl_rule.to_dict()
78
78
  # override the default output from pydantic by calling `to_dict()` of back_out_rule
79
79
  if self.back_out_rule:
80
80
  _dict['backOutRule'] = self.back_out_rule.to_dict()
@@ -137,7 +137,7 @@ class FundConfiguration(BaseModel):
137
137
  "display_name": obj.get("displayName"),
138
138
  "description": obj.get("description"),
139
139
  "dealing_rule": ComponentRule.from_dict(obj.get("dealingRule")) if obj.get("dealingRule") is not None else None,
140
- "fund_pnl_rule": ComponentRule.from_dict(obj.get("fundPnlRule")) if obj.get("fundPnlRule") is not None else None,
140
+ "pnl_rule": ComponentRule.from_dict(obj.get("pnlRule")) if obj.get("pnlRule") is not None else None,
141
141
  "back_out_rule": ComponentRule.from_dict(obj.get("backOutRule")) if obj.get("backOutRule") is not None else None,
142
142
  "properties": dict(
143
143
  (_k, ModelProperty.from_dict(_v))
@@ -31,10 +31,10 @@ class FundConfigurationRequest(BaseModel):
31
31
  display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the Fund.")
32
32
  description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the Fund.")
33
33
  dealing_rule: ComponentRule = Field(..., alias="dealingRule")
34
- fund_pnl_rule: ComponentRule = Field(..., alias="fundPnlRule")
34
+ pnl_rule: ComponentRule = Field(..., alias="pnlRule")
35
35
  back_out_rule: ComponentRule = Field(..., alias="backOutRule")
36
36
  properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund Configuration.")
37
- __properties = ["code", "displayName", "description", "dealingRule", "fundPnlRule", "backOutRule", "properties"]
37
+ __properties = ["code", "displayName", "description", "dealingRule", "pnlRule", "backOutRule", "properties"]
38
38
 
39
39
  @validator('code')
40
40
  def code_validate_regular_expression(cls, value):
@@ -80,9 +80,9 @@ class FundConfigurationRequest(BaseModel):
80
80
  # override the default output from pydantic by calling `to_dict()` of dealing_rule
81
81
  if self.dealing_rule:
82
82
  _dict['dealingRule'] = self.dealing_rule.to_dict()
83
- # override the default output from pydantic by calling `to_dict()` of fund_pnl_rule
84
- if self.fund_pnl_rule:
85
- _dict['fundPnlRule'] = self.fund_pnl_rule.to_dict()
83
+ # override the default output from pydantic by calling `to_dict()` of pnl_rule
84
+ if self.pnl_rule:
85
+ _dict['pnlRule'] = self.pnl_rule.to_dict()
86
86
  # override the default output from pydantic by calling `to_dict()` of back_out_rule
87
87
  if self.back_out_rule:
88
88
  _dict['backOutRule'] = self.back_out_rule.to_dict()
@@ -124,7 +124,7 @@ class FundConfigurationRequest(BaseModel):
124
124
  "display_name": obj.get("displayName"),
125
125
  "description": obj.get("description"),
126
126
  "dealing_rule": ComponentRule.from_dict(obj.get("dealingRule")) if obj.get("dealingRule") is not None else None,
127
- "fund_pnl_rule": ComponentRule.from_dict(obj.get("fundPnlRule")) if obj.get("fundPnlRule") is not None else None,
127
+ "pnl_rule": ComponentRule.from_dict(obj.get("pnlRule")) if obj.get("pnlRule") is not None else None,
128
128
  "back_out_rule": ComponentRule.from_dict(obj.get("backOutRule")) if obj.get("backOutRule") is not None else None,
129
129
  "properties": dict(
130
130
  (_k, ModelProperty.from_dict(_v))
@@ -0,0 +1,113 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ LUSID API
5
+
6
+ FINBOURNE Technology # noqa: E501
7
+
8
+ Contact: info@finbourne.com
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, Dict, List, Optional
22
+ from pydantic.v1 import BaseModel, Field, StrictStr, conlist
23
+ from lusid.models.link import Link
24
+ from lusid.models.valuation_point_overview import ValuationPointOverview
25
+
26
+ class PagedResourceListOfValuationPointOverview(BaseModel):
27
+ """
28
+ PagedResourceListOfValuationPointOverview
29
+ """
30
+ next_page: Optional[StrictStr] = Field(None, alias="nextPage")
31
+ previous_page: Optional[StrictStr] = Field(None, alias="previousPage")
32
+ values: conlist(ValuationPointOverview) = Field(...)
33
+ href: Optional[StrictStr] = None
34
+ links: Optional[conlist(Link)] = None
35
+ __properties = ["nextPage", "previousPage", "values", "href", "links"]
36
+
37
+ class Config:
38
+ """Pydantic configuration"""
39
+ allow_population_by_field_name = True
40
+ validate_assignment = True
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.dict(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> PagedResourceListOfValuationPointOverview:
52
+ """Create an instance of PagedResourceListOfValuationPointOverview from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self):
56
+ """Returns the dictionary representation of the model using alias"""
57
+ _dict = self.dict(by_alias=True,
58
+ exclude={
59
+ },
60
+ exclude_none=True)
61
+ # override the default output from pydantic by calling `to_dict()` of each item in values (list)
62
+ _items = []
63
+ if self.values:
64
+ for _item in self.values:
65
+ if _item:
66
+ _items.append(_item.to_dict())
67
+ _dict['values'] = _items
68
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
69
+ _items = []
70
+ if self.links:
71
+ for _item in self.links:
72
+ if _item:
73
+ _items.append(_item.to_dict())
74
+ _dict['links'] = _items
75
+ # set to None if next_page (nullable) is None
76
+ # and __fields_set__ contains the field
77
+ if self.next_page is None and "next_page" in self.__fields_set__:
78
+ _dict['nextPage'] = None
79
+
80
+ # set to None if previous_page (nullable) is None
81
+ # and __fields_set__ contains the field
82
+ if self.previous_page is None and "previous_page" in self.__fields_set__:
83
+ _dict['previousPage'] = None
84
+
85
+ # set to None if href (nullable) is None
86
+ # and __fields_set__ contains the field
87
+ if self.href is None and "href" in self.__fields_set__:
88
+ _dict['href'] = None
89
+
90
+ # set to None if links (nullable) is None
91
+ # and __fields_set__ contains the field
92
+ if self.links is None and "links" in self.__fields_set__:
93
+ _dict['links'] = None
94
+
95
+ return _dict
96
+
97
+ @classmethod
98
+ def from_dict(cls, obj: dict) -> PagedResourceListOfValuationPointOverview:
99
+ """Create an instance of PagedResourceListOfValuationPointOverview from a dict"""
100
+ if obj is None:
101
+ return None
102
+
103
+ if not isinstance(obj, dict):
104
+ return PagedResourceListOfValuationPointOverview.parse_obj(obj)
105
+
106
+ _obj = PagedResourceListOfValuationPointOverview.parse_obj({
107
+ "next_page": obj.get("nextPage"),
108
+ "previous_page": obj.get("previousPage"),
109
+ "values": [ValuationPointOverview.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
110
+ "href": obj.get("href"),
111
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
112
+ })
113
+ return _obj
@@ -18,7 +18,7 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
 
21
- from typing import Any, Dict, Optional
21
+ from typing import Any, Dict
22
22
  from pydantic.v1 import BaseModel, Field, constr, validator
23
23
 
24
24
  class PostingModuleRule(BaseModel):
@@ -26,10 +26,9 @@ class PostingModuleRule(BaseModel):
26
26
  A Posting rule # noqa: E501
27
27
  """
28
28
  rule_id: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="ruleId", description="The identifier for the Posting Rule.")
29
- account: Optional[constr(strict=True, max_length=512, min_length=1)] = Field(None, description="The general ledger account to post the Activity credit or debit to.")
29
+ general_ledger_account_code: constr(strict=True, max_length=512, min_length=1) = Field(..., alias="generalLedgerAccountCode", description="The general ledger account to post the Activity credit or debit to.")
30
30
  rule_filter: constr(strict=True, max_length=16384, min_length=1) = Field(..., alias="ruleFilter", description="The filter syntax for the Posting Rule. See https://support.lusid.com/knowledgebase/article/KA-02140 for more information on filter syntax.")
31
- general_ledger_account_code: Optional[constr(strict=True, max_length=512, min_length=1)] = Field(None, alias="generalLedgerAccountCode", description="The general ledger account to post the Activity credit or debit to.")
32
- __properties = ["ruleId", "account", "ruleFilter", "generalLedgerAccountCode"]
31
+ __properties = ["ruleId", "generalLedgerAccountCode", "ruleFilter"]
33
32
 
34
33
  @validator('rule_id')
35
34
  def rule_id_validate_regular_expression(cls, value):
@@ -38,12 +37,9 @@ class PostingModuleRule(BaseModel):
38
37
  raise ValueError(r"must validate the regular expression /^[a-zA-Z0-9\-_]+$/")
39
38
  return value
40
39
 
41
- @validator('account')
42
- def account_validate_regular_expression(cls, value):
40
+ @validator('general_ledger_account_code')
41
+ def general_ledger_account_code_validate_regular_expression(cls, value):
43
42
  """Validates the regular expression"""
44
- if value is None:
45
- return value
46
-
47
43
  if not re.match(r"^[\s\S]*$", value):
48
44
  raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
49
45
  return value
@@ -55,16 +51,6 @@ class PostingModuleRule(BaseModel):
55
51
  raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
56
52
  return value
57
53
 
58
- @validator('general_ledger_account_code')
59
- def general_ledger_account_code_validate_regular_expression(cls, value):
60
- """Validates the regular expression"""
61
- if value is None:
62
- return value
63
-
64
- if not re.match(r"^[\s\S]*$", value):
65
- raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
66
- return value
67
-
68
54
  class Config:
69
55
  """Pydantic configuration"""
70
56
  allow_population_by_field_name = True
@@ -89,16 +75,6 @@ class PostingModuleRule(BaseModel):
89
75
  exclude={
90
76
  },
91
77
  exclude_none=True)
92
- # set to None if account (nullable) is None
93
- # and __fields_set__ contains the field
94
- if self.account is None and "account" in self.__fields_set__:
95
- _dict['account'] = None
96
-
97
- # set to None if general_ledger_account_code (nullable) is None
98
- # and __fields_set__ contains the field
99
- if self.general_ledger_account_code is None and "general_ledger_account_code" in self.__fields_set__:
100
- _dict['generalLedgerAccountCode'] = None
101
-
102
78
  return _dict
103
79
 
104
80
  @classmethod
@@ -112,8 +88,7 @@ class PostingModuleRule(BaseModel):
112
88
 
113
89
  _obj = PostingModuleRule.parse_obj({
114
90
  "rule_id": obj.get("ruleId"),
115
- "account": obj.get("account"),
116
- "rule_filter": obj.get("ruleFilter"),
117
- "general_ledger_account_code": obj.get("generalLedgerAccountCode")
91
+ "general_ledger_account_code": obj.get("generalLedgerAccountCode"),
92
+ "rule_filter": obj.get("ruleFilter")
118
93
  })
119
94
  return _obj
@@ -18,8 +18,8 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from typing import Any, Dict, Optional
22
- from pydantic.v1 import Field, StrictStr, validator
21
+ from typing import Any, Dict, Optional, Union
22
+ from pydantic.v1 import Field, StrictFloat, StrictInt, StrictStr, validator
23
23
  from lusid.models.instrument_event import InstrumentEvent
24
24
  from lusid.models.units_ratio import UnitsRatio
25
25
 
@@ -31,10 +31,12 @@ class ScripDividendEvent(InstrumentEvent):
31
31
  ex_date: datetime = Field(..., alias="exDate", description="The first business day on which the dividend is not owed to the buying party. Typically this is T-1 from the RecordDate.")
32
32
  record_date: Optional[datetime] = Field(None, alias="recordDate", description="Date you have to be the holder of record in order to participate in the tender.")
33
33
  payment_date: datetime = Field(..., alias="paymentDate", description="The date the company pays out dividends to shareholders.")
34
+ fractional_units_cash_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fractionalUnitsCashPrice", description="The cash price per unit paid in lieu when fractional units can not be distributed.")
35
+ fractional_units_cash_currency: Optional[StrictStr] = Field(None, alias="fractionalUnitsCashCurrency", description="The currency of the cash paid in lieu of fractional units.")
34
36
  units_ratio: UnitsRatio = Field(..., alias="unitsRatio")
35
37
  instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent")
36
38
  additional_properties: Dict[str, Any] = {}
37
- __properties = ["instrumentEventType", "announcementDate", "exDate", "recordDate", "paymentDate", "unitsRatio"]
39
+ __properties = ["instrumentEventType", "announcementDate", "exDate", "recordDate", "paymentDate", "fractionalUnitsCashPrice", "fractionalUnitsCashCurrency", "unitsRatio"]
38
40
 
39
41
  @validator('instrument_event_type')
40
42
  def instrument_event_type_validate_enum(cls, value):
@@ -86,6 +88,16 @@ class ScripDividendEvent(InstrumentEvent):
86
88
  if self.record_date is None and "record_date" in self.__fields_set__:
87
89
  _dict['recordDate'] = None
88
90
 
91
+ # set to None if fractional_units_cash_price (nullable) is None
92
+ # and __fields_set__ contains the field
93
+ if self.fractional_units_cash_price is None and "fractional_units_cash_price" in self.__fields_set__:
94
+ _dict['fractionalUnitsCashPrice'] = None
95
+
96
+ # set to None if fractional_units_cash_currency (nullable) is None
97
+ # and __fields_set__ contains the field
98
+ if self.fractional_units_cash_currency is None and "fractional_units_cash_currency" in self.__fields_set__:
99
+ _dict['fractionalUnitsCashCurrency'] = None
100
+
89
101
  return _dict
90
102
 
91
103
  @classmethod
@@ -103,6 +115,8 @@ class ScripDividendEvent(InstrumentEvent):
103
115
  "ex_date": obj.get("exDate"),
104
116
  "record_date": obj.get("recordDate"),
105
117
  "payment_date": obj.get("paymentDate"),
118
+ "fractional_units_cash_price": obj.get("fractionalUnitsCashPrice"),
119
+ "fractional_units_cash_currency": obj.get("fractionalUnitsCashCurrency"),
106
120
  "units_ratio": UnitsRatio.from_dict(obj.get("unitsRatio")) if obj.get("unitsRatio") is not None else None
107
121
  })
108
122
  # store additional fields in additional_properties
@@ -0,0 +1,125 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ LUSID API
5
+
6
+ FINBOURNE Technology # noqa: E501
7
+
8
+ Contact: info@finbourne.com
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from datetime import datetime
21
+ from typing import Any, Dict, List, Optional, Union
22
+ from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
23
+ from lusid.models.link import Link
24
+ from lusid.models.model_property import ModelProperty
25
+
26
+ class ValuationPointOverview(BaseModel):
27
+ """
28
+ ValuationPointOverview
29
+ """
30
+ href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
31
+ diary_entry_code: StrictStr = Field(..., alias="diaryEntryCode", description="The code for the Valuation Point.")
32
+ effective_from: datetime = Field(..., alias="effectiveFrom", description="The effective time of the last Valuation Point.")
33
+ effective_to: datetime = Field(..., alias="effectiveTo", description="The effective time of the current Valuation Point.")
34
+ query_as_at: Optional[datetime] = Field(None, alias="queryAsAt", description="The query time of the Valuation Point. Defaults to latest.")
35
+ type: constr(strict=True, min_length=1) = Field(..., description="The type of the diary entry. This is 'ValuationPoint'.")
36
+ status: constr(strict=True, min_length=1) = Field(..., description="The status of the Valuation Point. Can be 'Estimate', 'Candidate' or 'Final'.")
37
+ gav: Union[StrictFloat, StrictInt] = Field(..., description="The Gross Asset Value of the Fund or Share Class at the Valuation Point. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
38
+ nav: Union[StrictFloat, StrictInt] = Field(..., description="The Net Asset Value of the Fund or Share Class at the Valuation Point. This represents the GAV with any fees applied in the period.")
39
+ properties: Optional[Dict[str, ModelProperty]] = Field(None, description="The Fee properties. These will be from the 'Fee' domain.")
40
+ links: Optional[conlist(Link)] = None
41
+ __properties = ["href", "diaryEntryCode", "effectiveFrom", "effectiveTo", "queryAsAt", "type", "status", "gav", "nav", "properties", "links"]
42
+
43
+ class Config:
44
+ """Pydantic configuration"""
45
+ allow_population_by_field_name = True
46
+ validate_assignment = True
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> ValuationPointOverview:
58
+ """Create an instance of ValuationPointOverview from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self):
62
+ """Returns the dictionary representation of the model using alias"""
63
+ _dict = self.dict(by_alias=True,
64
+ exclude={
65
+ },
66
+ exclude_none=True)
67
+ # override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
68
+ _field_dict = {}
69
+ if self.properties:
70
+ for _key in self.properties:
71
+ if self.properties[_key]:
72
+ _field_dict[_key] = self.properties[_key].to_dict()
73
+ _dict['properties'] = _field_dict
74
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
75
+ _items = []
76
+ if self.links:
77
+ for _item in self.links:
78
+ if _item:
79
+ _items.append(_item.to_dict())
80
+ _dict['links'] = _items
81
+ # set to None if href (nullable) is None
82
+ # and __fields_set__ contains the field
83
+ if self.href is None and "href" in self.__fields_set__:
84
+ _dict['href'] = None
85
+
86
+ # set to None if properties (nullable) is None
87
+ # and __fields_set__ contains the field
88
+ if self.properties is None and "properties" in self.__fields_set__:
89
+ _dict['properties'] = None
90
+
91
+ # set to None if links (nullable) is None
92
+ # and __fields_set__ contains the field
93
+ if self.links is None and "links" in self.__fields_set__:
94
+ _dict['links'] = None
95
+
96
+ return _dict
97
+
98
+ @classmethod
99
+ def from_dict(cls, obj: dict) -> ValuationPointOverview:
100
+ """Create an instance of ValuationPointOverview from a dict"""
101
+ if obj is None:
102
+ return None
103
+
104
+ if not isinstance(obj, dict):
105
+ return ValuationPointOverview.parse_obj(obj)
106
+
107
+ _obj = ValuationPointOverview.parse_obj({
108
+ "href": obj.get("href"),
109
+ "diary_entry_code": obj.get("diaryEntryCode"),
110
+ "effective_from": obj.get("effectiveFrom"),
111
+ "effective_to": obj.get("effectiveTo"),
112
+ "query_as_at": obj.get("queryAsAt"),
113
+ "type": obj.get("type"),
114
+ "status": obj.get("status"),
115
+ "gav": obj.get("gav"),
116
+ "nav": obj.get("nav"),
117
+ "properties": dict(
118
+ (_k, ModelProperty.from_dict(_v))
119
+ for _k, _v in obj.get("properties").items()
120
+ )
121
+ if obj.get("properties") is not None
122
+ else None,
123
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
124
+ })
125
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.321
3
+ Version: 2.1.329
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -239,6 +239,7 @@ Class | Method | HTTP request | Description
239
239
  *FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints/$query | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
240
240
  *FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
241
241
  *FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
242
+ *FundsApi* | [**list_valuation_point_overview**](docs/FundsApi.md#list_valuation_point_overview) | **GET** /api/funds/{scope}/{code}/valuationPointOverview | [EXPERIMENTAL] ListValuationPointOverview: List Valuation Points Overview for a given Fund.
242
243
  *FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
243
244
  *FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
244
245
  *FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert Valuation Point.
@@ -1175,6 +1176,7 @@ Class | Method | HTTP request | Description
1175
1176
  - [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
1176
1177
  - [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
1177
1178
  - [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
1179
+ - [PagedResourceListOfValuationPointOverview](docs/PagedResourceListOfValuationPointOverview.md)
1178
1180
  - [PagedResourceListOfVirtualRow](docs/PagedResourceListOfVirtualRow.md)
1179
1181
  - [Participation](docs/Participation.md)
1180
1182
  - [ParticipationRequest](docs/ParticipationRequest.md)
@@ -1575,6 +1577,7 @@ Class | Method | HTTP request | Description
1575
1577
  - [ValuationPointDataQueryParameters](docs/ValuationPointDataQueryParameters.md)
1576
1578
  - [ValuationPointDataRequest](docs/ValuationPointDataRequest.md)
1577
1579
  - [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
1580
+ - [ValuationPointOverview](docs/ValuationPointOverview.md)
1578
1581
  - [ValuationRequest](docs/ValuationRequest.md)
1579
1582
  - [ValuationSchedule](docs/ValuationSchedule.md)
1580
1583
  - [ValuationsReconciliationRequest](docs/ValuationsReconciliationRequest.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=ISA3XY7Oek2VGwUe-Oihg0f1avsl9h69ONkP9A19__s,113998
1
+ lusid/__init__.py,sha256=cNaRXLVrMI6ymGtFzzDd6gD4v4koVw4j6PehOCpuYSE,114265
2
2
  lusid/api/__init__.py,sha256=EuHJI-4kmmibn1IVmY9akKMT-R1Bnth9msFll5hlBGY,5652
3
3
  lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
4
4
  lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
@@ -26,7 +26,7 @@ lusid/api/entities_api.py,sha256=kV00-PgBlWfwLV4T9qhaaOntVoo-NJwzkSACLQu80Xw,466
26
26
  lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
27
27
  lusid/api/fee_types_api.py,sha256=4_wZtZkRyK2RHfDBwAK2XrspWzF_LCBYe_RUt_Y17zM,56137
28
28
  lusid/api/fund_configurations_api.py,sha256=XbNaocdjU8sf37NZmH6NR1VMSITut9Fw6SMhOVBEjJ4,64107
29
- lusid/api/funds_api.py,sha256=Oj5FmtRDkKQzJMcepbLQ0UbsLP73XTZifAW4SnZJK5U,196388
29
+ lusid/api/funds_api.py,sha256=tRNGqv14vYLjsJ1WqY_Q55bick_EAe8MH28CdByeHIw,215308
30
30
  lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
31
31
  lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
32
32
  lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
@@ -68,7 +68,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
68
68
  lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
69
69
  lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
70
70
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
71
- lusid/configuration.py,sha256=mgjfIiSiFzJwL6OuSRcpWRiskc-L9rpM6G0xaxCa7hg,14404
71
+ lusid/configuration.py,sha256=KQU5NrUx6YLuM9VYu5zohV_VFQF-IU8Hn1TE6cynMmw,14404
72
72
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
73
73
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
74
74
  lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
@@ -82,7 +82,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
82
82
  lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
83
83
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
84
84
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
85
- lusid/models/__init__.py,sha256=2H_-odxZOoZHJBLzWc7235Wy2YrrUo-ybMykyvuCA_8,107314
85
+ lusid/models/__init__.py,sha256=PVp7EdxkDmGMDX4kTiaNrS5r9sE2nTKAKRqk6LCoxBA,107581
86
86
  lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
87
87
  lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
88
88
  lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
@@ -416,9 +416,9 @@ lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yW
416
416
  lusid/models/from_recipe.py,sha256=paSou6poZf5CHkswKhZXc8jXmVcxj7s7kJXRw4ucbfQ,2261
417
417
  lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
418
418
  lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1879
419
- lusid/models/fund_configuration.py,sha256=LjXCL02_v9d2MlAFq_a2lHZPMwCTLQKHszt0yHSk5y0,6659
419
+ lusid/models/fund_configuration.py,sha256=lVNLZ9bxEAKWxm119GI1fHhEdvsrB5C8zHr9u67_Hlg,6614
420
420
  lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
421
- lusid/models/fund_configuration_request.py,sha256=pE74oPYKgMuNVGANRIqUV5I4j47VMQc7swDHIHFScNo,5681
421
+ lusid/models/fund_configuration_request.py,sha256=jNcDedVJHjGhJwrGOfQOJii01MAQuOGbdl2Trb0p-uc,5636
422
422
  lusid/models/fund_pnl_breakdown.py,sha256=FVWePhLbtAjdikBOG3yipSUD4fIbNnmsM7PsOe1cL4w,4421
423
423
  lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
424
424
  lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
@@ -684,6 +684,7 @@ lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=KOyb_cntzRt-MYYTw
684
684
  lusid/models/paged_resource_list_of_transaction_template.py,sha256=ZmNRSNB3ffs4DmjmikmvyhlN2INUL73j__ASXiWkMVc,4203
685
685
  lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=CUV-fdc2rz300-pq5JYr02C65JqIP8cn4fpa_oCAAJY,4360
686
686
  lusid/models/paged_resource_list_of_translation_script_id.py,sha256=yZqT6myy5zVj-dtKSXAR9HpuoJz7Bd8dj4kPg5aAros,4204
687
+ lusid/models/paged_resource_list_of_valuation_point_overview.py,sha256=O68qS2Lzl1ZjFt-Dit7H1cHQpNyGYhl5BNAEZ-I9rZM,4240
687
688
  lusid/models/paged_resource_list_of_virtual_row.py,sha256=mJfVJw0tV7ZijC2qhyb_NimpLaBo9To-a6wpIbU5Nig,4095
688
689
  lusid/models/participation.py,sha256=We75WzDetOnagVympIFfP1BN9fnpyeuSvqPB249MZEs,3909
689
690
  lusid/models/participation_request.py,sha256=6cf3yrM70fVl14xSctVnWetQ2GvPKSLHRPcbXw5VHyo,2858
@@ -730,7 +731,7 @@ lusid/models/portfolios_reconciliation_request.py,sha256=NlI1pOGr08bwob0a4FZRRZi
730
731
  lusid/models/posting_module_details.py,sha256=YtjckonotvLC-UwLecW2G12FVxlww-VkyEU4q-urvsA,3310
731
732
  lusid/models/posting_module_request.py,sha256=x6aq23t1GtSpg60mAe3gXTRBjgIkOVqUp4qRb3tLFDs,4473
732
733
  lusid/models/posting_module_response.py,sha256=HPPZHdC6hVr5F6ZHaZUW6s095XnCPDA_IamSkTaOMjQ,6104
733
- lusid/models/posting_module_rule.py,sha256=ts9EcdU97sCixCMSmZQuYTT1hkRm-sU_-wYK5FRVb8E,4632
734
+ lusid/models/posting_module_rule.py,sha256=MGCBOmedwF1hANp9_-lg8tynBYDdTWFDMkzzg_j-ktY,3512
734
735
  lusid/models/posting_module_rules_updated_response.py,sha256=qGQSPvvIjNJJr-F9YOXkQAEXYlsflzcaxMNzOX1tF3k,4288
735
736
  lusid/models/pre_trade_configuration.py,sha256=OjyrngvMxxnF3Qf_a-YCF2Pe8URzV87s0WC3PsxcBVo,2371
736
737
  lusid/models/premium.py,sha256=R2eYbrUmKAmxdWdmWGuUqg78Hm07y1iVBW7IRu4C92I,2200
@@ -903,7 +904,7 @@ lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-
903
904
  lusid/models/schedule.py,sha256=IQeymxyyU0fHANXmPICy6vUQ2sDC9KoyUk9U_X23wTU,4216
904
905
  lusid/models/schedule_type.py,sha256=hdAqhI4A6L1z-Ipwd2xaecMiTCFqRN1Bz1Lc2BWXZTg,955
905
906
  lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
906
- lusid/models/scrip_dividend_event.py,sha256=kY9FpeHkyzbunSVsLxr1mZe0WbtgfNHDa021XFJL_cA,6377
907
+ lusid/models/scrip_dividend_event.py,sha256=rH29DhTYZwdGUQJ04a_06W6-AnuBuKErRgvvdyTknXU,7613
907
908
  lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
908
909
  lusid/models/security_election.py,sha256=tY1AkshueFnIgGzSpAmpK3gydlzIkU-JOFYW_T8p6zA,3429
909
910
  lusid/models/security_offer_election.py,sha256=LIGdAJtyjY2dq58UAikfRTaogu321kDikLZfA4eKGmY,3000
@@ -1084,6 +1085,7 @@ lusid/models/user.py,sha256=0lccLmhN2l5KyhvbEBYWp8LGpgIBOMYF_hgTGJniADE,2028
1084
1085
  lusid/models/valuation_point_data_query_parameters.py,sha256=vZq_o0zKM0Ez1BpNwoTqijrkLX8zE64UcufqEjKwL5o,2271
1085
1086
  lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEtl9uUk4jNvjf-WFk,2394
1086
1087
  lusid/models/valuation_point_data_response.py,sha256=oh_9KJWu7dLYtZbnFZCyUq95dBnPEpbH_K0QbNeoESY,7201
1088
+ lusid/models/valuation_point_overview.py,sha256=Z4GZTneHZBbQkdHj7JaEhILqhKkMbJDaJD6UwEFNWSs,5720
1087
1089
  lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
1088
1090
  lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
1089
1091
  lusid/models/valuations_reconciliation_request.py,sha256=X7NF_7du1RdtPW4i3ayn5OGC7GAfKsCdOT1QIB8DAfQ,5001
@@ -1113,6 +1115,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1113
1115
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1114
1116
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1115
1117
  lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
1116
- lusid_sdk-2.1.321.dist-info/METADATA,sha256=RLCb0klwit_gVdui9rlEObj0bstv787ibaINt-UWBKI,187771
1117
- lusid_sdk-2.1.321.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1118
- lusid_sdk-2.1.321.dist-info/RECORD,,
1118
+ lusid_sdk-2.1.329.dist-info/METADATA,sha256=H0zSn90ou09s8YG8rwPSvqmETCqFOMRIujJBTvwCKVY,188179
1119
+ lusid_sdk-2.1.329.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1120
+ lusid_sdk-2.1.329.dist-info/RECORD,,