lusid-sdk 2.1.785__py3-none-any.whl → 2.1.787__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/api/investor_records_api.py +210 -2
- lusid/configuration.py +1 -1
- lusid/models/resource_list_of_value_type.py +1 -1
- lusid/models/weekend_mask.py +1 -1
- {lusid_sdk-2.1.785.dist-info → lusid_sdk-2.1.787.dist-info}/METADATA +2 -1
- {lusid_sdk-2.1.785.dist-info → lusid_sdk-2.1.787.dist-info}/RECORD +7 -7
- {lusid_sdk-2.1.785.dist-info → lusid_sdk-2.1.787.dist-info}/WHEEL +0 -0
@@ -20,10 +20,13 @@ from pydantic.v1 import validate_arguments, ValidationError
|
|
20
20
|
from typing import overload, Optional, Union, Awaitable
|
21
21
|
|
22
22
|
from typing_extensions import Annotated
|
23
|
-
from
|
23
|
+
from datetime import datetime
|
24
24
|
|
25
|
-
from
|
25
|
+
from pydantic.v1 import Field, StrictStr, conlist, constr, validator
|
26
26
|
|
27
|
+
from typing import Dict, Optional
|
28
|
+
|
29
|
+
from lusid.models.investor_record import InvestorRecord
|
27
30
|
from lusid.models.upsert_investor_record_request import UpsertInvestorRecordRequest
|
28
31
|
from lusid.models.upsert_investor_records_response import UpsertInvestorRecordsResponse
|
29
32
|
|
@@ -53,6 +56,211 @@ class InvestorRecordsApi:
|
|
53
56
|
self.api_client = api_client
|
54
57
|
|
55
58
|
|
59
|
+
@overload
|
60
|
+
async def get_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="Scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="Code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record.")], property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".")] = None, effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, **kwargs) -> InvestorRecord: # noqa: E501
|
61
|
+
...
|
62
|
+
|
63
|
+
@overload
|
64
|
+
def get_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="Scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="Code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record.")], property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".")] = None, effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, async_req: Optional[bool]=True, **kwargs) -> InvestorRecord: # noqa: E501
|
65
|
+
...
|
66
|
+
|
67
|
+
@validate_arguments
|
68
|
+
def get_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="Scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="Code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record.")], property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".")] = None, effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[InvestorRecord, Awaitable[InvestorRecord]]: # noqa: E501
|
69
|
+
"""[EARLY ACCESS] GetInvestorRecord: Get Investor Record # noqa: E501
|
70
|
+
|
71
|
+
Retrieve the definition of a investor record. # noqa: E501
|
72
|
+
This method makes a synchronous HTTP request by default. To make an
|
73
|
+
asynchronous HTTP request, please pass async_req=True
|
74
|
+
|
75
|
+
>>> thread = api.get_investor_record(id_type_scope, id_type_code, code, property_keys, effective_at, as_at, relationship_definition_ids, async_req=True)
|
76
|
+
>>> result = thread.get()
|
77
|
+
|
78
|
+
:param id_type_scope: Scope of the investor record identifier type. (required)
|
79
|
+
:type id_type_scope: str
|
80
|
+
:param id_type_code: Code of the investor record identifier type. (required)
|
81
|
+
:type id_type_code: str
|
82
|
+
:param code: Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record. (required)
|
83
|
+
:type code: str
|
84
|
+
:param property_keys: A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".
|
85
|
+
:type property_keys: List[str]
|
86
|
+
:param effective_at: The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.
|
87
|
+
:type effective_at: str
|
88
|
+
:param as_at: The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.
|
89
|
+
:type as_at: datetime
|
90
|
+
:param relationship_definition_ids: A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.
|
91
|
+
:type relationship_definition_ids: List[str]
|
92
|
+
:param async_req: Whether to execute the request asynchronously.
|
93
|
+
:type async_req: bool, optional
|
94
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
95
|
+
:param opts: Configuration options for this request
|
96
|
+
:type opts: ConfigurationOptions, optional
|
97
|
+
:return: Returns the result object.
|
98
|
+
If the method is called asynchronously,
|
99
|
+
returns the request thread.
|
100
|
+
:rtype: InvestorRecord
|
101
|
+
"""
|
102
|
+
kwargs['_return_http_data_only'] = True
|
103
|
+
if '_preload_content' in kwargs:
|
104
|
+
message = "Error! Please call the get_investor_record_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
105
|
+
raise ValueError(message)
|
106
|
+
if async_req is not None:
|
107
|
+
kwargs['async_req'] = async_req
|
108
|
+
return self.get_investor_record_with_http_info(id_type_scope, id_type_code, code, property_keys, effective_at, as_at, relationship_definition_ids, **kwargs) # noqa: E501
|
109
|
+
|
110
|
+
@validate_arguments
|
111
|
+
def get_investor_record_with_http_info(self, id_type_scope : Annotated[StrictStr, Field(..., description="Scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="Code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record.")], property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".")] = None, effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
112
|
+
"""[EARLY ACCESS] GetInvestorRecord: Get Investor Record # noqa: E501
|
113
|
+
|
114
|
+
Retrieve the definition of a investor record. # noqa: E501
|
115
|
+
This method makes a synchronous HTTP request by default. To make an
|
116
|
+
asynchronous HTTP request, please pass async_req=True
|
117
|
+
|
118
|
+
>>> thread = api.get_investor_record_with_http_info(id_type_scope, id_type_code, code, property_keys, effective_at, as_at, relationship_definition_ids, async_req=True)
|
119
|
+
>>> result = thread.get()
|
120
|
+
|
121
|
+
:param id_type_scope: Scope of the investor record identifier type. (required)
|
122
|
+
:type id_type_scope: str
|
123
|
+
:param id_type_code: Code of the investor record identifier type. (required)
|
124
|
+
:type id_type_code: str
|
125
|
+
:param code: Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record. (required)
|
126
|
+
:type code: str
|
127
|
+
:param property_keys: A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".
|
128
|
+
:type property_keys: List[str]
|
129
|
+
:param effective_at: The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.
|
130
|
+
:type effective_at: str
|
131
|
+
:param as_at: The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.
|
132
|
+
:type as_at: datetime
|
133
|
+
:param relationship_definition_ids: A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.
|
134
|
+
:type relationship_definition_ids: List[str]
|
135
|
+
:param async_req: Whether to execute the request asynchronously.
|
136
|
+
:type async_req: bool, optional
|
137
|
+
:param _preload_content: if False, the ApiResponse.data will
|
138
|
+
be set to none and raw_data will store the
|
139
|
+
HTTP response body without reading/decoding.
|
140
|
+
Default is True.
|
141
|
+
:type _preload_content: bool, optional
|
142
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
143
|
+
object with status code, headers, etc
|
144
|
+
:type _return_http_data_only: bool, optional
|
145
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
146
|
+
:param opts: Configuration options for this request
|
147
|
+
:type opts: ConfigurationOptions, optional
|
148
|
+
:param _request_auth: set to override the auth_settings for an a single
|
149
|
+
request; this effectively ignores the authentication
|
150
|
+
in the spec for a single request.
|
151
|
+
:type _request_auth: dict, optional
|
152
|
+
:type _content_type: string, optional: force content-type for the request
|
153
|
+
:return: Returns the result object.
|
154
|
+
If the method is called asynchronously,
|
155
|
+
returns the request thread.
|
156
|
+
:rtype: tuple(InvestorRecord, status_code(int), headers(HTTPHeaderDict))
|
157
|
+
"""
|
158
|
+
|
159
|
+
_params = locals()
|
160
|
+
|
161
|
+
_all_params = [
|
162
|
+
'id_type_scope',
|
163
|
+
'id_type_code',
|
164
|
+
'code',
|
165
|
+
'property_keys',
|
166
|
+
'effective_at',
|
167
|
+
'as_at',
|
168
|
+
'relationship_definition_ids'
|
169
|
+
]
|
170
|
+
_all_params.extend(
|
171
|
+
[
|
172
|
+
'async_req',
|
173
|
+
'_return_http_data_only',
|
174
|
+
'_preload_content',
|
175
|
+
'_request_timeout',
|
176
|
+
'_request_auth',
|
177
|
+
'_content_type',
|
178
|
+
'_headers',
|
179
|
+
'opts'
|
180
|
+
]
|
181
|
+
)
|
182
|
+
|
183
|
+
# validate the arguments
|
184
|
+
for _key, _val in _params['kwargs'].items():
|
185
|
+
if _key not in _all_params:
|
186
|
+
raise ApiTypeError(
|
187
|
+
"Got an unexpected keyword argument '%s'"
|
188
|
+
" to method get_investor_record" % _key
|
189
|
+
)
|
190
|
+
_params[_key] = _val
|
191
|
+
del _params['kwargs']
|
192
|
+
|
193
|
+
_collection_formats = {}
|
194
|
+
|
195
|
+
# process the path parameters
|
196
|
+
_path_params = {}
|
197
|
+
if _params['id_type_scope']:
|
198
|
+
_path_params['idTypeScope'] = _params['id_type_scope']
|
199
|
+
|
200
|
+
if _params['id_type_code']:
|
201
|
+
_path_params['idTypeCode'] = _params['id_type_code']
|
202
|
+
|
203
|
+
if _params['code']:
|
204
|
+
_path_params['code'] = _params['code']
|
205
|
+
|
206
|
+
|
207
|
+
# process the query parameters
|
208
|
+
_query_params = []
|
209
|
+
if _params.get('property_keys') is not None: # noqa: E501
|
210
|
+
_query_params.append(('propertyKeys', _params['property_keys']))
|
211
|
+
_collection_formats['propertyKeys'] = 'multi'
|
212
|
+
|
213
|
+
if _params.get('effective_at') is not None: # noqa: E501
|
214
|
+
_query_params.append(('effectiveAt', _params['effective_at']))
|
215
|
+
|
216
|
+
if _params.get('as_at') is not None: # noqa: E501
|
217
|
+
if isinstance(_params['as_at'], datetime):
|
218
|
+
_query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
|
219
|
+
else:
|
220
|
+
_query_params.append(('asAt', _params['as_at']))
|
221
|
+
|
222
|
+
if _params.get('relationship_definition_ids') is not None: # noqa: E501
|
223
|
+
_query_params.append(('relationshipDefinitionIds', _params['relationship_definition_ids']))
|
224
|
+
_collection_formats['relationshipDefinitionIds'] = 'multi'
|
225
|
+
|
226
|
+
# process the header parameters
|
227
|
+
_header_params = dict(_params.get('_headers', {}))
|
228
|
+
# process the form parameters
|
229
|
+
_form_params = []
|
230
|
+
_files = {}
|
231
|
+
# process the body parameter
|
232
|
+
_body_params = None
|
233
|
+
# set the HTTP header `Accept`
|
234
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
235
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
236
|
+
|
237
|
+
# authentication setting
|
238
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
239
|
+
|
240
|
+
_response_types_map = {
|
241
|
+
'200': "InvestorRecord",
|
242
|
+
'400': "LusidValidationProblemDetails",
|
243
|
+
}
|
244
|
+
|
245
|
+
return self.api_client.call_api(
|
246
|
+
'/api/investorrecords/{idTypeScope}/{idTypeCode}/{code}', 'GET',
|
247
|
+
_path_params,
|
248
|
+
_query_params,
|
249
|
+
_header_params,
|
250
|
+
body=_body_params,
|
251
|
+
post_params=_form_params,
|
252
|
+
files=_files,
|
253
|
+
response_types_map=_response_types_map,
|
254
|
+
auth_settings=_auth_settings,
|
255
|
+
async_req=_params.get('async_req'),
|
256
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
257
|
+
_preload_content=_params.get('_preload_content', True),
|
258
|
+
_request_timeout=_params.get('_request_timeout'),
|
259
|
+
opts=_params.get('opts'),
|
260
|
+
collection_formats=_collection_formats,
|
261
|
+
_request_auth=_params.get('_request_auth'))
|
262
|
+
|
263
|
+
|
56
264
|
@overload
|
57
265
|
async def upsert_investor_records(self, success_mode : Annotated[StrictStr, Field(..., description="Whether the batch request should fail Atomically or in a Partial fashion - Allowed Values: Atomic, Partial")], request_body : Annotated[Dict[str, UpsertInvestorRecordRequest], Field(..., description="A collection of requests to create or update Investor Records.")], **kwargs) -> UpsertInvestorRecordsResponse: # noqa: E501
|
58
266
|
...
|
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.7762\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -27,7 +27,7 @@ class ResourceListOfValueType(BaseModel):
|
|
27
27
|
"""
|
28
28
|
ResourceListOfValueType
|
29
29
|
"""
|
30
|
-
values: conlist
|
30
|
+
values: conlist(str) = Field(...,alias="values")
|
31
31
|
href: Optional[StrictStr] = Field(None,alias="href")
|
32
32
|
links: Optional[conlist(Link)] = None
|
33
33
|
next_page: Optional[StrictStr] = Field(None,alias="nextPage")
|
lusid/models/weekend_mask.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.787
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -325,6 +325,7 @@ Class | Method | HTTP request | Description
|
|
325
325
|
*InstrumentsApi* | [**update_instrument_identifier**](docs/InstrumentsApi.md#update_instrument_identifier) | **POST** /api/instruments/{identifierType}/{identifier} | UpdateInstrumentIdentifier: Update instrument identifier
|
326
326
|
*InstrumentsApi* | [**upsert_instruments**](docs/InstrumentsApi.md#upsert_instruments) | **POST** /api/instruments | UpsertInstruments: Upsert instruments
|
327
327
|
*InstrumentsApi* | [**upsert_instruments_properties**](docs/InstrumentsApi.md#upsert_instruments_properties) | **POST** /api/instruments/$upsertproperties | UpsertInstrumentsProperties: Upsert instruments properties
|
328
|
+
*InvestorRecordsApi* | [**get_investor_record**](docs/InvestorRecordsApi.md#get_investor_record) | **GET** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | [EARLY ACCESS] GetInvestorRecord: Get Investor Record
|
328
329
|
*InvestorRecordsApi* | [**upsert_investor_records**](docs/InvestorRecordsApi.md#upsert_investor_records) | **POST** /api/investorrecords/$batchUpsert | [EARLY ACCESS] UpsertInvestorRecords: Pluralised upsert of Investor Records
|
329
330
|
*LegacyComplianceApi* | [**delete_legacy_compliance_rule**](docs/LegacyComplianceApi.md#delete_legacy_compliance_rule) | **DELETE** /api/legacy/compliance/rules/{scope}/{code} | [EXPERIMENTAL] DeleteLegacyComplianceRule: Deletes a compliance rule.
|
330
331
|
*LegacyComplianceApi* | [**get_legacy_breached_orders_info**](docs/LegacyComplianceApi.md#get_legacy_breached_orders_info) | **GET** /api/legacy/compliance/runs/breached/{runId} | [EXPERIMENTAL] GetLegacyBreachedOrdersInfo: Get the Ids of Breached orders in a given compliance run and the corresponding list of rules that could have caused it.
|
@@ -33,7 +33,7 @@ lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL
|
|
33
33
|
lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
|
34
34
|
lusid/api/instrument_events_api.py,sha256=o_VlUMrovreM3P6N84W5jMUrZmc6tVsvD7Ckhf05sfw,57764
|
35
35
|
lusid/api/instruments_api.py,sha256=-pOWq9bPcXvXULKV-FPWlRugZuBEPwVp2oPX91PEzTs,298533
|
36
|
-
lusid/api/investor_records_api.py,sha256=
|
36
|
+
lusid/api/investor_records_api.py,sha256=GJhD4vLpGkZZHQyY4L1CsyF_RLsiTM8D67N1xUPmesE,27981
|
37
37
|
lusid/api/legacy_compliance_api.py,sha256=DvApZDZ-_yzZ72e9oqKBK7Ey8oEaavGtw5cgxhEkV0s,93819
|
38
38
|
lusid/api/legal_entities_api.py,sha256=3rCwRIrEXwKH2T8-16ZizKx_Hyi8YeEfrZFpCJX5Hfs,257649
|
39
39
|
lusid/api/order_graph_api.py,sha256=-oaauVeAJxJsK6AHscON1nODEDbv8dcXlKNb6ilBOAU,44022
|
@@ -75,7 +75,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
75
75
|
lusid/api/workspace_api.py,sha256=QmcywrL34lbVo4CbSwyyJDh0kRG7Gt91xrQB0ShqQQQ,106017
|
76
76
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
77
77
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
78
|
-
lusid/configuration.py,sha256=
|
78
|
+
lusid/configuration.py,sha256=fTcTWbKu4mLJzLL14rYoMLaMJZdD0YtHscfvC1WrwSE,17972
|
79
79
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
80
80
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
81
81
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -1027,7 +1027,7 @@ lusid/models/resource_list_of_string.py,sha256=a21qwmXtmefzjX2Ij_WFgyX_9v23zrN_p
|
|
1027
1027
|
lusid/models/resource_list_of_tax_rule_set.py,sha256=ZPvs6aaX64LQdJdTi89PGJYlCj_SKOVW4qpCLo-DBqE,4312
|
1028
1028
|
lusid/models/resource_list_of_transaction.py,sha256=HjzedHR_cDUdVi9HT1-eKDV2gYoyEa1OYbKpF9KEbG4,4322
|
1029
1029
|
lusid/models/resource_list_of_transaction_type.py,sha256=6iHogz70ogIVG-C-kL9LsJAYPMwUhE0Un5C8cbxcpVM,4371
|
1030
|
-
lusid/models/resource_list_of_value_type.py,sha256=
|
1030
|
+
lusid/models/resource_list_of_value_type.py,sha256=DZV6PYjnzwmMD69g7_7Mk3vgSVGytdypykgOn1XZFSE,3922
|
1031
1031
|
lusid/models/response_meta_data.py,sha256=iRCELepffC2GVCyV7wt3A8HZbEAypWk2VEeoWBVsETM,3708
|
1032
1032
|
lusid/models/result_data_key_rule.py,sha256=665mWAJkPXE9GBdISyOT6lBl337wmizdnHHsXdkKKiI,8195
|
1033
1033
|
lusid/models/result_data_schema.py,sha256=gGRhQ4oenc8_K4_D2EoKfB_LdZE2Dd0JEB5xkMVMwl0,5545
|
@@ -1291,7 +1291,7 @@ lusid/models/virtual_document.py,sha256=HRV-SnfqnaKYSua2hDZ_0LIKKH4-aEhsmWtfXT1c
|
|
1291
1291
|
lusid/models/virtual_document_row.py,sha256=W9czg2u-__8mLAbVFrAy062APEd8tyWOK_q7-bdlK6A,2988
|
1292
1292
|
lusid/models/virtual_row.py,sha256=G7HdIpJjlxIfpectVewDHFS9OVvlY48HMj-fBzM4QXQ,3431
|
1293
1293
|
lusid/models/warning.py,sha256=Wa6BG-onbFIzInsSWbxptkqro2SCxdyJgBCFOSRttrg,2127
|
1294
|
-
lusid/models/weekend_mask.py,sha256=
|
1294
|
+
lusid/models/weekend_mask.py,sha256=pu2aQW_afuf5oA50aF_6Ct5UW1McX2UJ8cka5MVGcwM,2215
|
1295
1295
|
lusid/models/weighted_instrument.py,sha256=u9or5JxC4t3q7fSQ6AYl0GcJvXfpafyWBYYCMWzCSWM,5297
|
1296
1296
|
lusid/models/weighted_instrument_in_line_lookup_identifiers.py,sha256=AJVEsJvTWFkMBXwk23mOj8_Q6ut55VUCZSlFBX5JMs4,3684
|
1297
1297
|
lusid/models/weighted_instruments.py,sha256=oP4PS7L1zMwAceIvIM3BO6-qKuG1OCCjOrIjZrWm3t0,2775
|
@@ -1306,6 +1306,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1306
1306
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1307
1307
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1308
1308
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1309
|
-
lusid_sdk-2.1.
|
1310
|
-
lusid_sdk-2.1.
|
1311
|
-
lusid_sdk-2.1.
|
1309
|
+
lusid_sdk-2.1.787.dist-info/METADATA,sha256=ko434hKgUcz7F1c7KHA48zT2K_ylyqM5TaOl9vJcTZ0,218632
|
1310
|
+
lusid_sdk-2.1.787.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1311
|
+
lusid_sdk-2.1.787.dist-info/RECORD,,
|
File without changes
|