lusid-sdk 2.1.616__py3-none-any.whl → 2.1.618__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 +4 -0
- lusid/api/funds_api.py +219 -1
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +4 -0
- lusid/models/group_reconciliation_summary.py +2 -2
- lusid/models/pnl_journal_entry_line.py +95 -0
- lusid/models/side_definition.py +8 -1
- lusid/models/side_definition_request.py +9 -2
- lusid/models/valuation_point_resource_list_of_pnl_journal_entry_line.py +125 -0
- {lusid_sdk-2.1.616.dist-info → lusid_sdk-2.1.618.dist-info}/METADATA +4 -1
- {lusid_sdk-2.1.616.dist-info → lusid_sdk-2.1.618.dist-info}/RECORD +12 -10
- {lusid_sdk-2.1.616.dist-info → lusid_sdk-2.1.618.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -810,6 +810,7 @@ from lusid.models.placement import Placement
|
|
810
810
|
from lusid.models.placement_request import PlacementRequest
|
811
811
|
from lusid.models.placement_set_request import PlacementSetRequest
|
812
812
|
from lusid.models.placement_update_request import PlacementUpdateRequest
|
813
|
+
from lusid.models.pnl_journal_entry_line import PnlJournalEntryLine
|
813
814
|
from lusid.models.portfolio import Portfolio
|
814
815
|
from lusid.models.portfolio_cash_flow import PortfolioCashFlow
|
815
816
|
from lusid.models.portfolio_cash_ladder import PortfolioCashLadder
|
@@ -1223,6 +1224,7 @@ from lusid.models.valuation_point_data_request import ValuationPointDataRequest
|
|
1223
1224
|
from lusid.models.valuation_point_data_response import ValuationPointDataResponse
|
1224
1225
|
from lusid.models.valuation_point_overview import ValuationPointOverview
|
1225
1226
|
from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
|
1227
|
+
from lusid.models.valuation_point_resource_list_of_pnl_journal_entry_line import ValuationPointResourceListOfPnlJournalEntryLine
|
1226
1228
|
from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
|
1227
1229
|
from lusid.models.valuation_request import ValuationRequest
|
1228
1230
|
from lusid.models.valuation_schedule import ValuationSchedule
|
@@ -2055,6 +2057,7 @@ __all__ = [
|
|
2055
2057
|
"PlacementRequest",
|
2056
2058
|
"PlacementSetRequest",
|
2057
2059
|
"PlacementUpdateRequest",
|
2060
|
+
"PnlJournalEntryLine",
|
2058
2061
|
"Portfolio",
|
2059
2062
|
"PortfolioCashFlow",
|
2060
2063
|
"PortfolioCashLadder",
|
@@ -2468,6 +2471,7 @@ __all__ = [
|
|
2468
2471
|
"ValuationPointDataResponse",
|
2469
2472
|
"ValuationPointOverview",
|
2470
2473
|
"ValuationPointResourceListOfJournalEntryLine",
|
2474
|
+
"ValuationPointResourceListOfPnlJournalEntryLine",
|
2471
2475
|
"ValuationPointResourceListOfTrialBalance",
|
2472
2476
|
"ValuationRequest",
|
2473
2477
|
"ValuationSchedule",
|
lusid/api/funds_api.py
CHANGED
@@ -22,7 +22,7 @@ from typing import overload, Optional, Union, Awaitable
|
|
22
22
|
from typing_extensions import Annotated
|
23
23
|
from datetime import datetime
|
24
24
|
|
25
|
-
from pydantic.v1 import Field, StrictStr, conint, conlist, constr, validator
|
25
|
+
from pydantic.v1 import Field, StrictInt, StrictStr, conint, conlist, constr, validator
|
26
26
|
|
27
27
|
from typing import Dict, Optional
|
28
28
|
|
@@ -46,6 +46,7 @@ from lusid.models.valuation_point_data_query_parameters import ValuationPointDat
|
|
46
46
|
from lusid.models.valuation_point_data_request import ValuationPointDataRequest
|
47
47
|
from lusid.models.valuation_point_data_response import ValuationPointDataResponse
|
48
48
|
from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
|
49
|
+
from lusid.models.valuation_point_resource_list_of_pnl_journal_entry_line import ValuationPointResourceListOfPnlJournalEntryLine
|
49
50
|
from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
|
50
51
|
|
51
52
|
from lusid.api_client import ApiClient
|
@@ -2043,6 +2044,223 @@ class FundsApi:
|
|
2043
2044
|
collection_formats=_collection_formats,
|
2044
2045
|
_request_auth=_params.get('_request_auth'))
|
2045
2046
|
|
2047
|
+
@overload
|
2048
|
+
async def get_valuation_point_pnl_summary(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 is the unique identifier for the given Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the PnL summary")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = 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, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, **kwargs) -> ValuationPointResourceListOfPnlJournalEntryLine: # noqa: E501
|
2049
|
+
...
|
2050
|
+
|
2051
|
+
@overload
|
2052
|
+
def get_valuation_point_pnl_summary(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 is the unique identifier for the given Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the PnL summary")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = 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, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, async_req: Optional[bool]=True, **kwargs) -> ValuationPointResourceListOfPnlJournalEntryLine: # noqa: E501
|
2053
|
+
...
|
2054
|
+
|
2055
|
+
@validate_arguments
|
2056
|
+
def get_valuation_point_pnl_summary(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 is the unique identifier for the given Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the PnL summary")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = 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, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ValuationPointResourceListOfPnlJournalEntryLine, Awaitable[ValuationPointResourceListOfPnlJournalEntryLine]]: # noqa: E501
|
2057
|
+
"""[EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund. # noqa: E501
|
2058
|
+
|
2059
|
+
Gets the PnL Summary lines from the journal entry lines produced when calculating the valuation point. # noqa: E501
|
2060
|
+
This method makes a synchronous HTTP request by default. To make an
|
2061
|
+
asynchronous HTTP request, please pass async_req=True
|
2062
|
+
|
2063
|
+
>>> thread = api.get_valuation_point_pnl_summary(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, async_req=True)
|
2064
|
+
>>> result = thread.get()
|
2065
|
+
|
2066
|
+
:param scope: The scope of the Fund. (required)
|
2067
|
+
:type scope: str
|
2068
|
+
:param code: The code of the Fund. Together with the scope is the unique identifier for the given Fund. (required)
|
2069
|
+
:type code: str
|
2070
|
+
:param valuation_point_data_query_parameters: The query parameters used in running the generation of the PnL summary (required)
|
2071
|
+
:type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
|
2072
|
+
:param general_ledger_profile_code: The optional code of a general ledger profile used to decorate journal entry lines with levels.
|
2073
|
+
:type general_ledger_profile_code: str
|
2074
|
+
:param as_at: The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.
|
2075
|
+
:type as_at: datetime
|
2076
|
+
:param filter: \"Expression to filter the result set.\"
|
2077
|
+
:type filter: str
|
2078
|
+
:param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
|
2079
|
+
:type limit: int
|
2080
|
+
:param page: The pagination token to use to continue listing Trial balance from a previous call to Trial balance.
|
2081
|
+
:type page: str
|
2082
|
+
:param async_req: Whether to execute the request asynchronously.
|
2083
|
+
:type async_req: bool, optional
|
2084
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2085
|
+
:param opts: Configuration options for this request
|
2086
|
+
:type opts: ConfigurationOptions, optional
|
2087
|
+
:return: Returns the result object.
|
2088
|
+
If the method is called asynchronously,
|
2089
|
+
returns the request thread.
|
2090
|
+
:rtype: ValuationPointResourceListOfPnlJournalEntryLine
|
2091
|
+
"""
|
2092
|
+
kwargs['_return_http_data_only'] = True
|
2093
|
+
if '_preload_content' in kwargs:
|
2094
|
+
message = "Error! Please call the get_valuation_point_pnl_summary_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
2095
|
+
raise ValueError(message)
|
2096
|
+
if async_req is not None:
|
2097
|
+
kwargs['async_req'] = async_req
|
2098
|
+
return self.get_valuation_point_pnl_summary_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, **kwargs) # noqa: E501
|
2099
|
+
|
2100
|
+
@validate_arguments
|
2101
|
+
def get_valuation_point_pnl_summary_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. Together with the scope is the unique identifier for the given Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the PnL summary")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = 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, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2102
|
+
"""[EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund. # noqa: E501
|
2103
|
+
|
2104
|
+
Gets the PnL Summary lines from the journal entry lines produced when calculating the valuation point. # noqa: E501
|
2105
|
+
This method makes a synchronous HTTP request by default. To make an
|
2106
|
+
asynchronous HTTP request, please pass async_req=True
|
2107
|
+
|
2108
|
+
>>> thread = api.get_valuation_point_pnl_summary_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, async_req=True)
|
2109
|
+
>>> result = thread.get()
|
2110
|
+
|
2111
|
+
:param scope: The scope of the Fund. (required)
|
2112
|
+
:type scope: str
|
2113
|
+
:param code: The code of the Fund. Together with the scope is the unique identifier for the given Fund. (required)
|
2114
|
+
:type code: str
|
2115
|
+
:param valuation_point_data_query_parameters: The query parameters used in running the generation of the PnL summary (required)
|
2116
|
+
:type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
|
2117
|
+
:param general_ledger_profile_code: The optional code of a general ledger profile used to decorate journal entry lines with levels.
|
2118
|
+
:type general_ledger_profile_code: str
|
2119
|
+
:param as_at: The asAt datetime at which to retrieve PnL summary. Defaults to returning the latest version of each transaction if not specified.
|
2120
|
+
:type as_at: datetime
|
2121
|
+
:param filter: \"Expression to filter the result set.\"
|
2122
|
+
:type filter: str
|
2123
|
+
:param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
|
2124
|
+
:type limit: int
|
2125
|
+
:param page: The pagination token to use to continue listing Trial balance from a previous call to Trial balance.
|
2126
|
+
:type page: str
|
2127
|
+
:param async_req: Whether to execute the request asynchronously.
|
2128
|
+
:type async_req: bool, optional
|
2129
|
+
:param _preload_content: if False, the ApiResponse.data will
|
2130
|
+
be set to none and raw_data will store the
|
2131
|
+
HTTP response body without reading/decoding.
|
2132
|
+
Default is True.
|
2133
|
+
:type _preload_content: bool, optional
|
2134
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
2135
|
+
object with status code, headers, etc
|
2136
|
+
:type _return_http_data_only: bool, optional
|
2137
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
2138
|
+
:param opts: Configuration options for this request
|
2139
|
+
:type opts: ConfigurationOptions, optional
|
2140
|
+
:param _request_auth: set to override the auth_settings for an a single
|
2141
|
+
request; this effectively ignores the authentication
|
2142
|
+
in the spec for a single request.
|
2143
|
+
:type _request_auth: dict, optional
|
2144
|
+
:type _content_type: string, optional: force content-type for the request
|
2145
|
+
:return: Returns the result object.
|
2146
|
+
If the method is called asynchronously,
|
2147
|
+
returns the request thread.
|
2148
|
+
:rtype: tuple(ValuationPointResourceListOfPnlJournalEntryLine, status_code(int), headers(HTTPHeaderDict))
|
2149
|
+
"""
|
2150
|
+
|
2151
|
+
_params = locals()
|
2152
|
+
|
2153
|
+
_all_params = [
|
2154
|
+
'scope',
|
2155
|
+
'code',
|
2156
|
+
'valuation_point_data_query_parameters',
|
2157
|
+
'general_ledger_profile_code',
|
2158
|
+
'as_at',
|
2159
|
+
'filter',
|
2160
|
+
'limit',
|
2161
|
+
'page'
|
2162
|
+
]
|
2163
|
+
_all_params.extend(
|
2164
|
+
[
|
2165
|
+
'async_req',
|
2166
|
+
'_return_http_data_only',
|
2167
|
+
'_preload_content',
|
2168
|
+
'_request_timeout',
|
2169
|
+
'_request_auth',
|
2170
|
+
'_content_type',
|
2171
|
+
'_headers',
|
2172
|
+
'opts'
|
2173
|
+
]
|
2174
|
+
)
|
2175
|
+
|
2176
|
+
# validate the arguments
|
2177
|
+
for _key, _val in _params['kwargs'].items():
|
2178
|
+
if _key not in _all_params:
|
2179
|
+
raise ApiTypeError(
|
2180
|
+
"Got an unexpected keyword argument '%s'"
|
2181
|
+
" to method get_valuation_point_pnl_summary" % _key
|
2182
|
+
)
|
2183
|
+
_params[_key] = _val
|
2184
|
+
del _params['kwargs']
|
2185
|
+
|
2186
|
+
_collection_formats = {}
|
2187
|
+
|
2188
|
+
# process the path parameters
|
2189
|
+
_path_params = {}
|
2190
|
+
if _params['scope']:
|
2191
|
+
_path_params['scope'] = _params['scope']
|
2192
|
+
|
2193
|
+
if _params['code']:
|
2194
|
+
_path_params['code'] = _params['code']
|
2195
|
+
|
2196
|
+
|
2197
|
+
# process the query parameters
|
2198
|
+
_query_params = []
|
2199
|
+
if _params.get('general_ledger_profile_code') is not None: # noqa: E501
|
2200
|
+
_query_params.append(('generalLedgerProfileCode', _params['general_ledger_profile_code']))
|
2201
|
+
|
2202
|
+
if _params.get('as_at') is not None: # noqa: E501
|
2203
|
+
if isinstance(_params['as_at'], datetime):
|
2204
|
+
_query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
|
2205
|
+
else:
|
2206
|
+
_query_params.append(('asAt', _params['as_at']))
|
2207
|
+
|
2208
|
+
if _params.get('filter') is not None: # noqa: E501
|
2209
|
+
_query_params.append(('filter', _params['filter']))
|
2210
|
+
|
2211
|
+
if _params.get('limit') is not None: # noqa: E501
|
2212
|
+
_query_params.append(('limit', _params['limit']))
|
2213
|
+
|
2214
|
+
if _params.get('page') is not None: # noqa: E501
|
2215
|
+
_query_params.append(('page', _params['page']))
|
2216
|
+
|
2217
|
+
# process the header parameters
|
2218
|
+
_header_params = dict(_params.get('_headers', {}))
|
2219
|
+
# process the form parameters
|
2220
|
+
_form_params = []
|
2221
|
+
_files = {}
|
2222
|
+
# process the body parameter
|
2223
|
+
_body_params = None
|
2224
|
+
if _params['valuation_point_data_query_parameters'] is not None:
|
2225
|
+
_body_params = _params['valuation_point_data_query_parameters']
|
2226
|
+
|
2227
|
+
# set the HTTP header `Accept`
|
2228
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
2229
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
2230
|
+
|
2231
|
+
# set the HTTP header `Content-Type`
|
2232
|
+
_content_types_list = _params.get('_content_type',
|
2233
|
+
self.api_client.select_header_content_type(
|
2234
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
2235
|
+
if _content_types_list:
|
2236
|
+
_header_params['Content-Type'] = _content_types_list
|
2237
|
+
|
2238
|
+
# authentication setting
|
2239
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
2240
|
+
|
2241
|
+
_response_types_map = {
|
2242
|
+
'200': "ValuationPointResourceListOfPnlJournalEntryLine",
|
2243
|
+
'400': "LusidValidationProblemDetails",
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
return self.api_client.call_api(
|
2247
|
+
'/api/funds/{scope}/{code}/valuationpoints/pnlsummary/$query', 'POST',
|
2248
|
+
_path_params,
|
2249
|
+
_query_params,
|
2250
|
+
_header_params,
|
2251
|
+
body=_body_params,
|
2252
|
+
post_params=_form_params,
|
2253
|
+
files=_files,
|
2254
|
+
response_types_map=_response_types_map,
|
2255
|
+
auth_settings=_auth_settings,
|
2256
|
+
async_req=_params.get('async_req'),
|
2257
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
2258
|
+
_preload_content=_params.get('_preload_content', True),
|
2259
|
+
_request_timeout=_params.get('_request_timeout'),
|
2260
|
+
opts=_params.get('opts'),
|
2261
|
+
collection_formats=_collection_formats,
|
2262
|
+
_request_auth=_params.get('_request_auth'))
|
2263
|
+
|
2046
2264
|
@overload
|
2047
2265
|
async def get_valuation_point_trial_balance(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.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version 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 more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 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 Trial Balances. This token 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, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.")] = None, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
|
2048
2266
|
...
|
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.
|
448
|
+
"Version of the API: 0.11.7153\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
lusid/models/__init__.py
CHANGED
@@ -727,6 +727,7 @@ from lusid.models.placement import Placement
|
|
727
727
|
from lusid.models.placement_request import PlacementRequest
|
728
728
|
from lusid.models.placement_set_request import PlacementSetRequest
|
729
729
|
from lusid.models.placement_update_request import PlacementUpdateRequest
|
730
|
+
from lusid.models.pnl_journal_entry_line import PnlJournalEntryLine
|
730
731
|
from lusid.models.portfolio import Portfolio
|
731
732
|
from lusid.models.portfolio_cash_flow import PortfolioCashFlow
|
732
733
|
from lusid.models.portfolio_cash_ladder import PortfolioCashLadder
|
@@ -1140,6 +1141,7 @@ from lusid.models.valuation_point_data_request import ValuationPointDataRequest
|
|
1140
1141
|
from lusid.models.valuation_point_data_response import ValuationPointDataResponse
|
1141
1142
|
from lusid.models.valuation_point_overview import ValuationPointOverview
|
1142
1143
|
from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
|
1144
|
+
from lusid.models.valuation_point_resource_list_of_pnl_journal_entry_line import ValuationPointResourceListOfPnlJournalEntryLine
|
1143
1145
|
from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
|
1144
1146
|
from lusid.models.valuation_request import ValuationRequest
|
1145
1147
|
from lusid.models.valuation_schedule import ValuationSchedule
|
@@ -1890,6 +1892,7 @@ __all__ = [
|
|
1890
1892
|
"PlacementRequest",
|
1891
1893
|
"PlacementSetRequest",
|
1892
1894
|
"PlacementUpdateRequest",
|
1895
|
+
"PnlJournalEntryLine",
|
1893
1896
|
"Portfolio",
|
1894
1897
|
"PortfolioCashFlow",
|
1895
1898
|
"PortfolioCashLadder",
|
@@ -2303,6 +2306,7 @@ __all__ = [
|
|
2303
2306
|
"ValuationPointDataResponse",
|
2304
2307
|
"ValuationPointOverview",
|
2305
2308
|
"ValuationPointResourceListOfJournalEntryLine",
|
2309
|
+
"ValuationPointResourceListOfPnlJournalEntryLine",
|
2306
2310
|
"ValuationPointResourceListOfTrialBalance",
|
2307
2311
|
"ValuationRequest",
|
2308
2312
|
"ValuationSchedule",
|
@@ -17,7 +17,7 @@ import pprint
|
|
17
17
|
import re # noqa: F401
|
18
18
|
import json
|
19
19
|
|
20
|
-
|
20
|
+
from datetime import datetime
|
21
21
|
from typing import Any, Dict, Optional
|
22
22
|
from pydantic.v1 import BaseModel, Field, StrictInt, constr
|
23
23
|
from lusid.models.group_reconciliation_dates import GroupReconciliationDates
|
@@ -38,7 +38,7 @@ class GroupReconciliationSummary(BaseModel):
|
|
38
38
|
reconciliation_type: constr(strict=True, min_length=1) = Field(..., alias="reconciliationType", description="The type of reconciliation to perform. \"Holding\" | \"Transaction\" | \"Valuation\"")
|
39
39
|
instance_id: GroupReconciliationInstanceId = Field(..., alias="instanceId")
|
40
40
|
dates_reconciled: GroupReconciliationDates = Field(..., alias="datesReconciled")
|
41
|
-
reconciliation_run_as_at:
|
41
|
+
reconciliation_run_as_at: datetime = Field(..., alias="reconciliationRunAsAt", description="The date and time the reconciliation was run")
|
42
42
|
count_comparison_results: StrictInt = Field(..., alias="countComparisonResults", description="The total number of comparison results with this InstanceId and ReconciliationType")
|
43
43
|
link_comparison_results: Optional[Link] = Field(None, alias="linkComparisonResults")
|
44
44
|
result_types: Optional[GroupReconciliationResultTypes] = Field(None, alias="resultTypes")
|
@@ -0,0 +1,95 @@
|
|
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.journal_entry_line import JournalEntryLine
|
24
|
+
from lusid.models.link import Link
|
25
|
+
|
26
|
+
class PnlJournalEntryLine(BaseModel):
|
27
|
+
"""
|
28
|
+
PnlJournalEntryLine
|
29
|
+
"""
|
30
|
+
pnl_bucket: Optional[StrictStr] = Field(None, alias="pnlBucket", description="The Filter ID of the grouping used from the Fund Configuration PnL filters")
|
31
|
+
journal_entry_line: Optional[JournalEntryLine] = Field(None, alias="journalEntryLine")
|
32
|
+
links: Optional[conlist(Link)] = None
|
33
|
+
__properties = ["pnlBucket", "journalEntryLine", "links"]
|
34
|
+
|
35
|
+
class Config:
|
36
|
+
"""Pydantic configuration"""
|
37
|
+
allow_population_by_field_name = True
|
38
|
+
validate_assignment = True
|
39
|
+
|
40
|
+
def to_str(self) -> str:
|
41
|
+
"""Returns the string representation of the model using alias"""
|
42
|
+
return pprint.pformat(self.dict(by_alias=True))
|
43
|
+
|
44
|
+
def to_json(self) -> str:
|
45
|
+
"""Returns the JSON representation of the model using alias"""
|
46
|
+
return json.dumps(self.to_dict())
|
47
|
+
|
48
|
+
@classmethod
|
49
|
+
def from_json(cls, json_str: str) -> PnlJournalEntryLine:
|
50
|
+
"""Create an instance of PnlJournalEntryLine from a JSON string"""
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
52
|
+
|
53
|
+
def to_dict(self):
|
54
|
+
"""Returns the dictionary representation of the model using alias"""
|
55
|
+
_dict = self.dict(by_alias=True,
|
56
|
+
exclude={
|
57
|
+
},
|
58
|
+
exclude_none=True)
|
59
|
+
# override the default output from pydantic by calling `to_dict()` of journal_entry_line
|
60
|
+
if self.journal_entry_line:
|
61
|
+
_dict['journalEntryLine'] = self.journal_entry_line.to_dict()
|
62
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
63
|
+
_items = []
|
64
|
+
if self.links:
|
65
|
+
for _item in self.links:
|
66
|
+
if _item:
|
67
|
+
_items.append(_item.to_dict())
|
68
|
+
_dict['links'] = _items
|
69
|
+
# set to None if pnl_bucket (nullable) is None
|
70
|
+
# and __fields_set__ contains the field
|
71
|
+
if self.pnl_bucket is None and "pnl_bucket" in self.__fields_set__:
|
72
|
+
_dict['pnlBucket'] = None
|
73
|
+
|
74
|
+
# set to None if links (nullable) is None
|
75
|
+
# and __fields_set__ contains the field
|
76
|
+
if self.links is None and "links" in self.__fields_set__:
|
77
|
+
_dict['links'] = None
|
78
|
+
|
79
|
+
return _dict
|
80
|
+
|
81
|
+
@classmethod
|
82
|
+
def from_dict(cls, obj: dict) -> PnlJournalEntryLine:
|
83
|
+
"""Create an instance of PnlJournalEntryLine from a dict"""
|
84
|
+
if obj is None:
|
85
|
+
return None
|
86
|
+
|
87
|
+
if not isinstance(obj, dict):
|
88
|
+
return PnlJournalEntryLine.parse_obj(obj)
|
89
|
+
|
90
|
+
_obj = PnlJournalEntryLine.parse_obj({
|
91
|
+
"pnl_bucket": obj.get("pnlBucket"),
|
92
|
+
"journal_entry_line": JournalEntryLine.from_dict(obj.get("journalEntryLine")) if obj.get("journalEntryLine") is not None else None,
|
93
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
94
|
+
})
|
95
|
+
return _obj
|
lusid/models/side_definition.py
CHANGED
@@ -33,8 +33,9 @@ class SideDefinition(BaseModel):
|
|
33
33
|
units: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The value, field or property key defining the side's units.")
|
34
34
|
amount: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The value, field or property key defining the side's amount")
|
35
35
|
notional_amount: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="notionalAmount", description="The value, field or property key defining the side's notional amount")
|
36
|
+
current_face: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="currentFace", description="The value, field or property key defining the side's current face / outstanding notional.")
|
36
37
|
links: Optional[conlist(Link)] = None
|
37
|
-
__properties = ["side", "security", "currency", "rate", "units", "amount", "notionalAmount", "links"]
|
38
|
+
__properties = ["side", "security", "currency", "rate", "units", "amount", "notionalAmount", "currentFace", "links"]
|
38
39
|
|
39
40
|
class Config:
|
40
41
|
"""Pydantic configuration"""
|
@@ -72,6 +73,11 @@ class SideDefinition(BaseModel):
|
|
72
73
|
if self.notional_amount is None and "notional_amount" in self.__fields_set__:
|
73
74
|
_dict['notionalAmount'] = None
|
74
75
|
|
76
|
+
# set to None if current_face (nullable) is None
|
77
|
+
# and __fields_set__ contains the field
|
78
|
+
if self.current_face is None and "current_face" in self.__fields_set__:
|
79
|
+
_dict['currentFace'] = None
|
80
|
+
|
75
81
|
# set to None if links (nullable) is None
|
76
82
|
# and __fields_set__ contains the field
|
77
83
|
if self.links is None and "links" in self.__fields_set__:
|
@@ -96,6 +102,7 @@ class SideDefinition(BaseModel):
|
|
96
102
|
"units": obj.get("units"),
|
97
103
|
"amount": obj.get("amount"),
|
98
104
|
"notional_amount": obj.get("notionalAmount"),
|
105
|
+
"current_face": obj.get("currentFace"),
|
99
106
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
100
107
|
})
|
101
108
|
return _obj
|
@@ -31,7 +31,8 @@ class SideDefinitionRequest(BaseModel):
|
|
31
31
|
units: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The value, field or property key defining the side's units.")
|
32
32
|
amount: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The value, field or property key defining the side's amount")
|
33
33
|
notional_amount: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="notionalAmount", description="The value, field or property key defining the side's notional amount")
|
34
|
-
|
34
|
+
current_face: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="currentFace", description="The value, field or property key defining the side's current face / outstanding notional.")
|
35
|
+
__properties = ["security", "currency", "rate", "units", "amount", "notionalAmount", "currentFace"]
|
35
36
|
|
36
37
|
class Config:
|
37
38
|
"""Pydantic configuration"""
|
@@ -62,6 +63,11 @@ class SideDefinitionRequest(BaseModel):
|
|
62
63
|
if self.notional_amount is None and "notional_amount" in self.__fields_set__:
|
63
64
|
_dict['notionalAmount'] = None
|
64
65
|
|
66
|
+
# set to None if current_face (nullable) is None
|
67
|
+
# and __fields_set__ contains the field
|
68
|
+
if self.current_face is None and "current_face" in self.__fields_set__:
|
69
|
+
_dict['currentFace'] = None
|
70
|
+
|
65
71
|
return _dict
|
66
72
|
|
67
73
|
@classmethod
|
@@ -79,6 +85,7 @@ class SideDefinitionRequest(BaseModel):
|
|
79
85
|
"rate": obj.get("rate"),
|
80
86
|
"units": obj.get("units"),
|
81
87
|
"amount": obj.get("amount"),
|
82
|
-
"notional_amount": obj.get("notionalAmount")
|
88
|
+
"notional_amount": obj.get("notionalAmount"),
|
89
|
+
"current_face": obj.get("currentFace")
|
83
90
|
})
|
84
91
|
return _obj
|
@@ -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
|
+
|
21
|
+
from typing import Any, Dict, List, Optional
|
22
|
+
from pydantic.v1 import BaseModel, Field, StrictStr, conlist
|
23
|
+
from lusid.models.diary_entry import DiaryEntry
|
24
|
+
from lusid.models.link import Link
|
25
|
+
from lusid.models.pnl_journal_entry_line import PnlJournalEntryLine
|
26
|
+
from lusid.models.version import Version
|
27
|
+
|
28
|
+
class ValuationPointResourceListOfPnlJournalEntryLine(BaseModel):
|
29
|
+
"""
|
30
|
+
ResourceList with extra header fields used by the various ValuationPoint endpoints for returning additional context related to the list of results. # noqa: E501
|
31
|
+
"""
|
32
|
+
start_valuation_point: Optional[DiaryEntry] = Field(None, alias="startValuationPoint")
|
33
|
+
version: Version = Field(...)
|
34
|
+
values: conlist(PnlJournalEntryLine) = Field(...)
|
35
|
+
href: Optional[StrictStr] = None
|
36
|
+
next_page: Optional[StrictStr] = Field(None, alias="nextPage")
|
37
|
+
previous_page: Optional[StrictStr] = Field(None, alias="previousPage")
|
38
|
+
links: Optional[conlist(Link)] = None
|
39
|
+
__properties = ["startValuationPoint", "version", "values", "href", "nextPage", "previousPage", "links"]
|
40
|
+
|
41
|
+
class Config:
|
42
|
+
"""Pydantic configuration"""
|
43
|
+
allow_population_by_field_name = True
|
44
|
+
validate_assignment = True
|
45
|
+
|
46
|
+
def to_str(self) -> str:
|
47
|
+
"""Returns the string representation of the model using alias"""
|
48
|
+
return pprint.pformat(self.dict(by_alias=True))
|
49
|
+
|
50
|
+
def to_json(self) -> str:
|
51
|
+
"""Returns the JSON representation of the model using alias"""
|
52
|
+
return json.dumps(self.to_dict())
|
53
|
+
|
54
|
+
@classmethod
|
55
|
+
def from_json(cls, json_str: str) -> ValuationPointResourceListOfPnlJournalEntryLine:
|
56
|
+
"""Create an instance of ValuationPointResourceListOfPnlJournalEntryLine from a JSON string"""
|
57
|
+
return cls.from_dict(json.loads(json_str))
|
58
|
+
|
59
|
+
def to_dict(self):
|
60
|
+
"""Returns the dictionary representation of the model using alias"""
|
61
|
+
_dict = self.dict(by_alias=True,
|
62
|
+
exclude={
|
63
|
+
},
|
64
|
+
exclude_none=True)
|
65
|
+
# override the default output from pydantic by calling `to_dict()` of start_valuation_point
|
66
|
+
if self.start_valuation_point:
|
67
|
+
_dict['startValuationPoint'] = self.start_valuation_point.to_dict()
|
68
|
+
# override the default output from pydantic by calling `to_dict()` of version
|
69
|
+
if self.version:
|
70
|
+
_dict['version'] = self.version.to_dict()
|
71
|
+
# override the default output from pydantic by calling `to_dict()` of each item in values (list)
|
72
|
+
_items = []
|
73
|
+
if self.values:
|
74
|
+
for _item in self.values:
|
75
|
+
if _item:
|
76
|
+
_items.append(_item.to_dict())
|
77
|
+
_dict['values'] = _items
|
78
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
79
|
+
_items = []
|
80
|
+
if self.links:
|
81
|
+
for _item in self.links:
|
82
|
+
if _item:
|
83
|
+
_items.append(_item.to_dict())
|
84
|
+
_dict['links'] = _items
|
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 next_page (nullable) is None
|
91
|
+
# and __fields_set__ contains the field
|
92
|
+
if self.next_page is None and "next_page" in self.__fields_set__:
|
93
|
+
_dict['nextPage'] = None
|
94
|
+
|
95
|
+
# set to None if previous_page (nullable) is None
|
96
|
+
# and __fields_set__ contains the field
|
97
|
+
if self.previous_page is None and "previous_page" in self.__fields_set__:
|
98
|
+
_dict['previousPage'] = None
|
99
|
+
|
100
|
+
# set to None if links (nullable) is None
|
101
|
+
# and __fields_set__ contains the field
|
102
|
+
if self.links is None and "links" in self.__fields_set__:
|
103
|
+
_dict['links'] = None
|
104
|
+
|
105
|
+
return _dict
|
106
|
+
|
107
|
+
@classmethod
|
108
|
+
def from_dict(cls, obj: dict) -> ValuationPointResourceListOfPnlJournalEntryLine:
|
109
|
+
"""Create an instance of ValuationPointResourceListOfPnlJournalEntryLine from a dict"""
|
110
|
+
if obj is None:
|
111
|
+
return None
|
112
|
+
|
113
|
+
if not isinstance(obj, dict):
|
114
|
+
return ValuationPointResourceListOfPnlJournalEntryLine.parse_obj(obj)
|
115
|
+
|
116
|
+
_obj = ValuationPointResourceListOfPnlJournalEntryLine.parse_obj({
|
117
|
+
"start_valuation_point": DiaryEntry.from_dict(obj.get("startValuationPoint")) if obj.get("startValuationPoint") is not None else None,
|
118
|
+
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
119
|
+
"values": [PnlJournalEntryLine.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
|
120
|
+
"href": obj.get("href"),
|
121
|
+
"next_page": obj.get("nextPage"),
|
122
|
+
"previous_page": obj.get("previousPage"),
|
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.
|
3
|
+
Version: 2.1.618
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -248,6 +248,7 @@ Class | Method | HTTP request | Description
|
|
248
248
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
249
249
|
*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.
|
250
250
|
*FundsApi* | [**get_valuation_point_journal_entry_lines**](docs/FundsApi.md#get_valuation_point_journal_entry_lines) | **POST** /api/funds/{scope}/{code}/valuationpoints/journalentrylines/$query | [EXPERIMENTAL] GetValuationPointJournalEntryLines: Get the Journal Entry lines for the given Fund.
|
251
|
+
*FundsApi* | [**get_valuation_point_pnl_summary**](docs/FundsApi.md#get_valuation_point_pnl_summary) | **POST** /api/funds/{scope}/{code}/valuationpoints/pnlsummary/$query | [EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund.
|
251
252
|
*FundsApi* | [**get_valuation_point_trial_balance**](docs/FundsApi.md#get_valuation_point_trial_balance) | **POST** /api/funds/{scope}/{code}/valuationpoints/trialbalance/$query | [EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund.
|
252
253
|
*FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
|
253
254
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
@@ -1354,6 +1355,7 @@ Class | Method | HTTP request | Description
|
|
1354
1355
|
- [PlacementRequest](docs/PlacementRequest.md)
|
1355
1356
|
- [PlacementSetRequest](docs/PlacementSetRequest.md)
|
1356
1357
|
- [PlacementUpdateRequest](docs/PlacementUpdateRequest.md)
|
1358
|
+
- [PnlJournalEntryLine](docs/PnlJournalEntryLine.md)
|
1357
1359
|
- [Portfolio](docs/Portfolio.md)
|
1358
1360
|
- [PortfolioCashFlow](docs/PortfolioCashFlow.md)
|
1359
1361
|
- [PortfolioCashLadder](docs/PortfolioCashLadder.md)
|
@@ -1767,6 +1769,7 @@ Class | Method | HTTP request | Description
|
|
1767
1769
|
- [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
|
1768
1770
|
- [ValuationPointOverview](docs/ValuationPointOverview.md)
|
1769
1771
|
- [ValuationPointResourceListOfJournalEntryLine](docs/ValuationPointResourceListOfJournalEntryLine.md)
|
1772
|
+
- [ValuationPointResourceListOfPnlJournalEntryLine](docs/ValuationPointResourceListOfPnlJournalEntryLine.md)
|
1770
1773
|
- [ValuationPointResourceListOfTrialBalance](docs/ValuationPointResourceListOfTrialBalance.md)
|
1771
1774
|
- [ValuationRequest](docs/ValuationRequest.md)
|
1772
1775
|
- [ValuationSchedule](docs/ValuationSchedule.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=kqxxSRF1CmwSzQY1mkByQXRr6sBZBs3-iZq7NhPWmso,131102
|
2
2
|
lusid/api/__init__.py,sha256=Piygs8uSSBLR2ZZZIUS2aiyUEKMrNij6nUM6nHeaXkU,5992
|
3
3
|
lusid/api/abor_api.py,sha256=eC0xjrZEL_e7JZdwjpmjVG4GMQWAGJEv4w-2UngvYUk,159896
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=TmssMn5ni0mZV1q7LyPXYhBqqUGJqLYZapo8By8DFuI,63875
|
@@ -26,7 +26,7 @@ lusid/api/entities_api.py,sha256=ZE6QsxisPowNg6m9a-J_HjvV9vJSgFTYoNri6jJfaqg,855
|
|
26
26
|
lusid/api/executions_api.py,sha256=QW6_mT0rsZTiW1R5tG-_fa-UT6khiMYfHsnapbzlVmo,44263
|
27
27
|
lusid/api/fee_types_api.py,sha256=vcDM_7QOAX0LjNz5Wr7lTV_LVYtrmhZ8-59-ZRjL2Sg,55933
|
28
28
|
lusid/api/fund_configuration_api.py,sha256=sItl8nbm7PsJYVZYMLWKtGQG80y_y6LP7D_r6NjxbOc,74272
|
29
|
-
lusid/api/funds_api.py,sha256=
|
29
|
+
lusid/api/funds_api.py,sha256=7l7I_-X8vdQ1c6JyPpznAcDa38fJ8YLJNT1TYd7rLUQ,282300
|
30
30
|
lusid/api/group_reconciliations_api.py,sha256=0zuSvNM9c61ZhzdxSCVen_y3-y9gPeykflxgNzv9-8U,167598
|
31
31
|
lusid/api/instrument_event_types_api.py,sha256=G4gpfM6eWl77dtF3DC7b0lUOby_EREyLmXTxSyo9-ew,81296
|
32
32
|
lusid/api/instrument_events_api.py,sha256=sdKGJQAcoqEPJPuYSkP3axM1o63nB8qcdyIEHZ8cRkk,58350
|
@@ -72,7 +72,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
72
72
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
73
73
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
74
74
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
75
|
-
lusid/configuration.py,sha256=
|
75
|
+
lusid/configuration.py,sha256=L-1q7F302ddMoHR3xkg08D7m4WCUUsBo1BEkp2AWtKY,17972
|
76
76
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
77
77
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
78
78
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -87,7 +87,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
87
87
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
88
88
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
89
89
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
90
|
-
lusid/models/__init__.py,sha256=
|
90
|
+
lusid/models/__init__.py,sha256=jzlDVFhtX3GSMCH0ilSkhge_9TeMH8Buccg0UzNF0wU,124078
|
91
91
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
92
92
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
93
93
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -542,7 +542,7 @@ lusid/models/group_reconciliation_review_statuses.py,sha256=da466qnAq4v6fyy6iyxR
|
|
542
542
|
lusid/models/group_reconciliation_run_details.py,sha256=3u-DtrmlscQhJSK6tgg7-zNVuX_ke-k5f3RYBEajxb0,2582
|
543
543
|
lusid/models/group_reconciliation_run_request.py,sha256=_VCLVJIPxQPzq1PwRKY5yiPY6KUZ4aNZ_GzMGHvPRhY,2669
|
544
544
|
lusid/models/group_reconciliation_run_response.py,sha256=E63Hnj7WyvJ81xD0EMbdj2aYvnCoi2-eU_ocwCWatLg,2769
|
545
|
-
lusid/models/group_reconciliation_summary.py,sha256=
|
545
|
+
lusid/models/group_reconciliation_summary.py,sha256=KqRHn87CVY9HhIqQm5_NNeYrPEFYLNs0-Q1JVWb8rsg,7060
|
546
546
|
lusid/models/group_reconciliation_user_review.py,sha256=RmmfuG7AY5CTGZ-V1zizIp2DHnnAaeaMjT3WQ6ytNFs,4954
|
547
547
|
lusid/models/group_reconciliation_user_review_add.py,sha256=tJzFtb62BlXLtcRw6NQ6zSVqGDI4eDVvZ78619SRzIY,3121
|
548
548
|
lusid/models/group_reconciliation_user_review_break_code.py,sha256=z9FDs7OiD2HM_3mjXRw9oRsHUnyTfAZ7syKjycCaYRw,3049
|
@@ -801,6 +801,7 @@ lusid/models/placement.py,sha256=5kJMz_9t07KT3NFF2Pdsq93cozl4yvNcxpyv9o5ZmRA,910
|
|
801
801
|
lusid/models/placement_request.py,sha256=qg7Yf6EQeqtC1l7lZ18_kFiGiNjBcrzMlScOWWaGkWM,7870
|
802
802
|
lusid/models/placement_set_request.py,sha256=hkljmDDqllEbAjb7J0QAp_fyDKsizX8T9x4n1UBFCmU,2672
|
803
803
|
lusid/models/placement_update_request.py,sha256=9fS4NW-JtFLZcztHgp_nOG300FfTtC34GpKj60VJc_E,5024
|
804
|
+
lusid/models/pnl_journal_entry_line.py,sha256=9X4__BixmuTEY_rKcDLuGzNXLrSJ84yeMMxbyrs4Bq8,3454
|
804
805
|
lusid/models/portfolio.py,sha256=seYwWp2L1QI6POZyAua44df-s_RKDfmG76vZ7SnfeSg,13643
|
805
806
|
lusid/models/portfolio_cash_flow.py,sha256=Apnb2tfP3bJrBjhH69OLwiAOvn7lApH791owxr1wC8A,8997
|
806
807
|
lusid/models/portfolio_cash_ladder.py,sha256=cZHdUI-PZuLYXlQDxcA9zCTRPX_cHZy0-qHng9bRggU,5462
|
@@ -1031,8 +1032,8 @@ lusid/models/share_class_details.py,sha256=u_isnz6bw4IL3yAAlgrAqbWE0E0H7dSn_bkpA
|
|
1031
1032
|
lusid/models/share_class_pnl_breakdown.py,sha256=fKJrgNp-Fn9c52DXeNdwAWz-WZ2suJ8-LdyAl5iZRrY,4551
|
1032
1033
|
lusid/models/side_configuration_data.py,sha256=iv4nyDEEAYA2TUfY-dlqOGwn-mft8qMGVQk6itgxqe4,3518
|
1033
1034
|
lusid/models/side_configuration_data_request.py,sha256=qWt-UDjQbcoPpHCUpRwcSN8NFfcZ4TpHMn2dRuR3WVw,2842
|
1034
|
-
lusid/models/side_definition.py,sha256=
|
1035
|
-
lusid/models/side_definition_request.py,sha256=
|
1035
|
+
lusid/models/side_definition.py,sha256=wfpanTK91Cn0VYB_zJopiLsjobJrv4pCotY5sPzSfdI,4659
|
1036
|
+
lusid/models/side_definition_request.py,sha256=w0-mMuSQaN8P4KMp8ylbxBPXA3cclEwi9KtKIQUxFdk,3820
|
1036
1037
|
lusid/models/sides_definition_request.py,sha256=dIwC8QWSo13i2TUv4KrpyAbo_fq-GxT7kFne3H1ssFA,2446
|
1037
1038
|
lusid/models/simple_cash_flow_loan.py,sha256=0d8mP3dCxI2TQ_Fu60sfZxUwH0wnMUnod_cqzC_6Dco,6508
|
1038
1039
|
lusid/models/simple_instrument.py,sha256=VoudZsV7jd7I_g0l2hmxTa1PhMxQvdAU3gbgOpQwdBE,7014
|
@@ -1214,6 +1215,7 @@ lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEt
|
|
1214
1215
|
lusid/models/valuation_point_data_response.py,sha256=wHtYY5VFIz3suA1pX0Kk9wnOO8a34E77BmU9PYhNMDU,8738
|
1215
1216
|
lusid/models/valuation_point_overview.py,sha256=Z4GZTneHZBbQkdHj7JaEhILqhKkMbJDaJD6UwEFNWSs,5720
|
1216
1217
|
lusid/models/valuation_point_resource_list_of_journal_entry_line.py,sha256=AV1Y2lAYrTv02dgDqKzF0KhqmvFKLq-MYuaPJcBZdpg,5242
|
1218
|
+
lusid/models/valuation_point_resource_list_of_pnl_journal_entry_line.py,sha256=lBCsBMvrKyx9Mn56XvMII6MPt44Ad5OVk_DvJh5TuLY,5276
|
1217
1219
|
lusid/models/valuation_point_resource_list_of_trial_balance.py,sha256=nQdZMUa7lOhbIL-ICT83R3-B-alNXFqB0qsGWmryYgk,5197
|
1218
1220
|
lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
|
1219
1221
|
lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
|
@@ -1250,6 +1252,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1250
1252
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1251
1253
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1252
1254
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1253
|
-
lusid_sdk-2.1.
|
1254
|
-
lusid_sdk-2.1.
|
1255
|
-
lusid_sdk-2.1.
|
1255
|
+
lusid_sdk-2.1.618.dist-info/METADATA,sha256=9rYnwgpMHbFXz70F867eRQXhDtcPoKqO4EVQDIw-YSM,213873
|
1256
|
+
lusid_sdk-2.1.618.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1257
|
+
lusid_sdk-2.1.618.dist-info/RECORD,,
|
File without changes
|