lusid-sdk 2.1.462__py3-none-any.whl → 2.1.468__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/instruments_api.py +187 -0
- lusid/configuration.py +1 -1
- lusid/models/transaction_price.py +3 -3
- lusid/models/transaction_price_type.py +2 -0
- {lusid_sdk-2.1.462.dist-info → lusid_sdk-2.1.468.dist-info}/METADATA +2 -1
- {lusid_sdk-2.1.462.dist-info → lusid_sdk-2.1.468.dist-info}/RECORD +7 -7
- {lusid_sdk-2.1.462.dist-info → lusid_sdk-2.1.468.dist-info}/WHEEL +0 -0
lusid/api/instruments_api.py
CHANGED
@@ -26,6 +26,7 @@ from pydantic.v1 import Field, StrictStr, conint, conlist, constr, validator
|
|
26
26
|
|
27
27
|
from typing import Dict, List, Optional
|
28
28
|
|
29
|
+
from lusid.models.add_business_days_to_date_response import AddBusinessDaysToDateResponse
|
29
30
|
from lusid.models.batch_upsert_instrument_properties_response import BatchUpsertInstrumentPropertiesResponse
|
30
31
|
from lusid.models.delete_instrument_properties_response import DeleteInstrumentPropertiesResponse
|
31
32
|
from lusid.models.delete_instrument_response import DeleteInstrumentResponse
|
@@ -251,6 +252,192 @@ class InstrumentsApi:
|
|
251
252
|
collection_formats=_collection_formats,
|
252
253
|
_request_auth=_params.get('_request_auth'))
|
253
254
|
|
255
|
+
@overload
|
256
|
+
async def calculate_settlement_date(self, identifier_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="An identifier type attached to the Instrument.")], identifier : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier value.")], transaction_date : Annotated[Optional[StrictStr], Field(description="The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.")] = None, scope : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The scope in which the instrument lies. When not supplied the scope is 'default'.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.")] = None, **kwargs) -> AddBusinessDaysToDateResponse: # noqa: E501
|
257
|
+
...
|
258
|
+
|
259
|
+
@overload
|
260
|
+
def calculate_settlement_date(self, identifier_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="An identifier type attached to the Instrument.")], identifier : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier value.")], transaction_date : Annotated[Optional[StrictStr], Field(description="The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.")] = None, scope : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The scope in which the instrument lies. When not supplied the scope is 'default'.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.")] = None, async_req: Optional[bool]=True, **kwargs) -> AddBusinessDaysToDateResponse: # noqa: E501
|
261
|
+
...
|
262
|
+
|
263
|
+
@validate_arguments
|
264
|
+
def calculate_settlement_date(self, identifier_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="An identifier type attached to the Instrument.")], identifier : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier value.")], transaction_date : Annotated[Optional[StrictStr], Field(description="The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.")] = None, scope : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The scope in which the instrument lies. When not supplied the scope is 'default'.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[AddBusinessDaysToDateResponse, Awaitable[AddBusinessDaysToDateResponse]]: # noqa: E501
|
265
|
+
"""[EARLY ACCESS] CalculateSettlementDate: Get the settlement date for an instrument. # noqa: E501
|
266
|
+
|
267
|
+
Get the settlement date for a given trade date and instrument. The calculated settlement date will be in UTC. If a cut label transaction date is provided, the settlement date will be calculated relative to the absolute UTC datetime. # noqa: E501
|
268
|
+
This method makes a synchronous HTTP request by default. To make an
|
269
|
+
asynchronous HTTP request, please pass async_req=True
|
270
|
+
|
271
|
+
>>> thread = api.calculate_settlement_date(identifier_type, identifier, transaction_date, scope, as_at, async_req=True)
|
272
|
+
>>> result = thread.get()
|
273
|
+
|
274
|
+
:param identifier_type: An identifier type attached to the Instrument. (required)
|
275
|
+
:type identifier_type: str
|
276
|
+
:param identifier: The identifier value. (required)
|
277
|
+
:type identifier: str
|
278
|
+
:param transaction_date: The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.
|
279
|
+
:type transaction_date: str
|
280
|
+
:param scope: The scope in which the instrument lies. When not supplied the scope is 'default'.
|
281
|
+
:type scope: str
|
282
|
+
:param as_at: The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.
|
283
|
+
:type as_at: datetime
|
284
|
+
:param async_req: Whether to execute the request asynchronously.
|
285
|
+
:type async_req: bool, optional
|
286
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
287
|
+
:param opts: Configuration options for this request
|
288
|
+
:type opts: ConfigurationOptions, optional
|
289
|
+
:return: Returns the result object.
|
290
|
+
If the method is called asynchronously,
|
291
|
+
returns the request thread.
|
292
|
+
:rtype: AddBusinessDaysToDateResponse
|
293
|
+
"""
|
294
|
+
kwargs['_return_http_data_only'] = True
|
295
|
+
if '_preload_content' in kwargs:
|
296
|
+
message = "Error! Please call the calculate_settlement_date_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
297
|
+
raise ValueError(message)
|
298
|
+
if async_req is not None:
|
299
|
+
kwargs['async_req'] = async_req
|
300
|
+
return self.calculate_settlement_date_with_http_info(identifier_type, identifier, transaction_date, scope, as_at, **kwargs) # noqa: E501
|
301
|
+
|
302
|
+
@validate_arguments
|
303
|
+
def calculate_settlement_date_with_http_info(self, identifier_type : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="An identifier type attached to the Instrument.")], identifier : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The identifier value.")], transaction_date : Annotated[Optional[StrictStr], Field(description="The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.")] = None, scope : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The scope in which the instrument lies. When not supplied the scope is 'default'.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
304
|
+
"""[EARLY ACCESS] CalculateSettlementDate: Get the settlement date for an instrument. # noqa: E501
|
305
|
+
|
306
|
+
Get the settlement date for a given trade date and instrument. The calculated settlement date will be in UTC. If a cut label transaction date is provided, the settlement date will be calculated relative to the absolute UTC datetime. # noqa: E501
|
307
|
+
This method makes a synchronous HTTP request by default. To make an
|
308
|
+
asynchronous HTTP request, please pass async_req=True
|
309
|
+
|
310
|
+
>>> thread = api.calculate_settlement_date_with_http_info(identifier_type, identifier, transaction_date, scope, as_at, async_req=True)
|
311
|
+
>>> result = thread.get()
|
312
|
+
|
313
|
+
:param identifier_type: An identifier type attached to the Instrument. (required)
|
314
|
+
:type identifier_type: str
|
315
|
+
:param identifier: The identifier value. (required)
|
316
|
+
:type identifier: str
|
317
|
+
:param transaction_date: The transaction date to calculate the settlement date from. This can be a UTC datetime offset or a cut label.
|
318
|
+
:type transaction_date: str
|
319
|
+
:param scope: The scope in which the instrument lies. When not supplied the scope is 'default'.
|
320
|
+
:type scope: str
|
321
|
+
:param as_at: The asAt datetime at which to retrieve the related instrument and calendars for calculation. Defaults to returning the latest version if not specified.
|
322
|
+
:type as_at: datetime
|
323
|
+
:param async_req: Whether to execute the request asynchronously.
|
324
|
+
:type async_req: bool, optional
|
325
|
+
:param _preload_content: if False, the ApiResponse.data will
|
326
|
+
be set to none and raw_data will store the
|
327
|
+
HTTP response body without reading/decoding.
|
328
|
+
Default is True.
|
329
|
+
:type _preload_content: bool, optional
|
330
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
331
|
+
object with status code, headers, etc
|
332
|
+
:type _return_http_data_only: bool, optional
|
333
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
334
|
+
:param opts: Configuration options for this request
|
335
|
+
:type opts: ConfigurationOptions, optional
|
336
|
+
:param _request_auth: set to override the auth_settings for an a single
|
337
|
+
request; this effectively ignores the authentication
|
338
|
+
in the spec for a single request.
|
339
|
+
:type _request_auth: dict, optional
|
340
|
+
:type _content_type: string, optional: force content-type for the request
|
341
|
+
:return: Returns the result object.
|
342
|
+
If the method is called asynchronously,
|
343
|
+
returns the request thread.
|
344
|
+
:rtype: tuple(AddBusinessDaysToDateResponse, status_code(int), headers(HTTPHeaderDict))
|
345
|
+
"""
|
346
|
+
|
347
|
+
_params = locals()
|
348
|
+
|
349
|
+
_all_params = [
|
350
|
+
'identifier_type',
|
351
|
+
'identifier',
|
352
|
+
'transaction_date',
|
353
|
+
'scope',
|
354
|
+
'as_at'
|
355
|
+
]
|
356
|
+
_all_params.extend(
|
357
|
+
[
|
358
|
+
'async_req',
|
359
|
+
'_return_http_data_only',
|
360
|
+
'_preload_content',
|
361
|
+
'_request_timeout',
|
362
|
+
'_request_auth',
|
363
|
+
'_content_type',
|
364
|
+
'_headers',
|
365
|
+
'opts'
|
366
|
+
]
|
367
|
+
)
|
368
|
+
|
369
|
+
# validate the arguments
|
370
|
+
for _key, _val in _params['kwargs'].items():
|
371
|
+
if _key not in _all_params:
|
372
|
+
raise ApiTypeError(
|
373
|
+
"Got an unexpected keyword argument '%s'"
|
374
|
+
" to method calculate_settlement_date" % _key
|
375
|
+
)
|
376
|
+
_params[_key] = _val
|
377
|
+
del _params['kwargs']
|
378
|
+
|
379
|
+
_collection_formats = {}
|
380
|
+
|
381
|
+
# process the path parameters
|
382
|
+
_path_params = {}
|
383
|
+
if _params['identifier_type']:
|
384
|
+
_path_params['identifierType'] = _params['identifier_type']
|
385
|
+
|
386
|
+
if _params['identifier']:
|
387
|
+
_path_params['identifier'] = _params['identifier']
|
388
|
+
|
389
|
+
|
390
|
+
# process the query parameters
|
391
|
+
_query_params = []
|
392
|
+
if _params.get('transaction_date') is not None: # noqa: E501
|
393
|
+
_query_params.append(('transactionDate', _params['transaction_date']))
|
394
|
+
|
395
|
+
if _params.get('scope') is not None: # noqa: E501
|
396
|
+
_query_params.append(('scope', _params['scope']))
|
397
|
+
|
398
|
+
if _params.get('as_at') is not None: # noqa: E501
|
399
|
+
if isinstance(_params['as_at'], datetime):
|
400
|
+
_query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
|
401
|
+
else:
|
402
|
+
_query_params.append(('asAt', _params['as_at']))
|
403
|
+
|
404
|
+
# process the header parameters
|
405
|
+
_header_params = dict(_params.get('_headers', {}))
|
406
|
+
# process the form parameters
|
407
|
+
_form_params = []
|
408
|
+
_files = {}
|
409
|
+
# process the body parameter
|
410
|
+
_body_params = None
|
411
|
+
# set the HTTP header `Accept`
|
412
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
413
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
414
|
+
|
415
|
+
# authentication setting
|
416
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
417
|
+
|
418
|
+
_response_types_map = {
|
419
|
+
'200': "AddBusinessDaysToDateResponse",
|
420
|
+
'400': "LusidValidationProblemDetails",
|
421
|
+
}
|
422
|
+
|
423
|
+
return self.api_client.call_api(
|
424
|
+
'/api/instruments/{identifierType}/{identifier}/settlementdate', 'GET',
|
425
|
+
_path_params,
|
426
|
+
_query_params,
|
427
|
+
_header_params,
|
428
|
+
body=_body_params,
|
429
|
+
post_params=_form_params,
|
430
|
+
files=_files,
|
431
|
+
response_types_map=_response_types_map,
|
432
|
+
auth_settings=_auth_settings,
|
433
|
+
async_req=_params.get('async_req'),
|
434
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
435
|
+
_preload_content=_params.get('_preload_content', True),
|
436
|
+
_request_timeout=_params.get('_request_timeout'),
|
437
|
+
opts=_params.get('opts'),
|
438
|
+
collection_formats=_collection_formats,
|
439
|
+
_request_auth=_params.get('_request_auth'))
|
440
|
+
|
254
441
|
@overload
|
255
442
|
async def delete_instrument(self, identifier_type : Annotated[StrictStr, Field(..., description="The unique identifier type to search, for example 'Figi'.")], identifier : Annotated[StrictStr, Field(..., description="An <i>identifierType</i> value to use to identify the instrument, for example 'BBG000BLNNV0'.")], scope : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The scope in which the instrument lies. When not supplied the scope is 'default'.")] = None, **kwargs) -> DeleteInstrumentResponse: # noqa: E501
|
256
443
|
...
|
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.6897\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -26,7 +26,7 @@ class TransactionPrice(BaseModel):
|
|
26
26
|
TransactionPrice
|
27
27
|
"""
|
28
28
|
price: Optional[Union[StrictFloat, StrictInt]] = None
|
29
|
-
type: Optional[StrictStr] = Field(None, description="The available values are: Price, Yield, Spread, CashFlowPerUnit")
|
29
|
+
type: Optional[StrictStr] = Field(None, description="The available values are: Price, Yield, Spread, CashFlowPerUnit, CleanPrice, DirtyPrice")
|
30
30
|
__properties = ["price", "type"]
|
31
31
|
|
32
32
|
@validator('type')
|
@@ -35,8 +35,8 @@ class TransactionPrice(BaseModel):
|
|
35
35
|
if value is None:
|
36
36
|
return value
|
37
37
|
|
38
|
-
if value not in ('Price', 'Yield', 'Spread', 'CashFlowPerUnit'):
|
39
|
-
raise ValueError("must be one of enum values ('Price', 'Yield', 'Spread', 'CashFlowPerUnit')")
|
38
|
+
if value not in ('Price', 'Yield', 'Spread', 'CashFlowPerUnit', 'CleanPrice', 'DirtyPrice'):
|
39
|
+
raise ValueError("must be one of enum values ('Price', 'Yield', 'Spread', 'CashFlowPerUnit', 'CleanPrice', 'DirtyPrice')")
|
40
40
|
return value
|
41
41
|
|
42
42
|
class Config:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.468
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -278,6 +278,7 @@ Class | Method | HTTP request | Description
|
|
278
278
|
*InstrumentEventsApi* | [**query_instrument_events**](docs/InstrumentEventsApi.md#query_instrument_events) | **POST** /api/instrumentevents/$query | [EXPERIMENTAL] QueryInstrumentEvents: Returns a list of instrument events based on the holdings of the portfolios and date range specified in the query.
|
279
279
|
*InstrumentEventsApi* | [**query_trade_tickets**](docs/InstrumentEventsApi.md#query_trade_tickets) | **POST** /api/instrumentevents/$queryTradeTickets | [EXPERIMENTAL] QueryTradeTickets: Returns a list of trade tickets based on the holdings of the portfolios and date range specified in the query.
|
280
280
|
*InstrumentsApi* | [**batch_upsert_instrument_properties**](docs/InstrumentsApi.md#batch_upsert_instrument_properties) | **POST** /api/instruments/$batchupsertproperties | BatchUpsertInstrumentProperties: Batch upsert instruments properties
|
281
|
+
*InstrumentsApi* | [**calculate_settlement_date**](docs/InstrumentsApi.md#calculate_settlement_date) | **GET** /api/instruments/{identifierType}/{identifier}/settlementdate | [EARLY ACCESS] CalculateSettlementDate: Get the settlement date for an instrument.
|
281
282
|
*InstrumentsApi* | [**delete_instrument**](docs/InstrumentsApi.md#delete_instrument) | **DELETE** /api/instruments/{identifierType}/{identifier} | DeleteInstrument: Soft delete a single instrument
|
282
283
|
*InstrumentsApi* | [**delete_instrument_properties**](docs/InstrumentsApi.md#delete_instrument_properties) | **POST** /api/instruments/{identifierType}/{identifier}/properties/$delete | [EARLY ACCESS] DeleteInstrumentProperties: Delete instrument properties
|
283
284
|
*InstrumentsApi* | [**delete_instruments**](docs/InstrumentsApi.md#delete_instruments) | **POST** /api/instruments/$delete | DeleteInstruments: Soft or hard delete multiple instruments
|
@@ -30,7 +30,7 @@ lusid/api/funds_api.py,sha256=cfiP9aomuX9SNepJfrF8FpEy1_2rSg0ROPZDGVKU-aU,224540
|
|
30
30
|
lusid/api/group_reconciliations_api.py,sha256=97A4RwUSaylKaWDKrbDzHrbRbTSnHjWImI0reagHYHc,114527
|
31
31
|
lusid/api/instrument_event_types_api.py,sha256=G4gpfM6eWl77dtF3DC7b0lUOby_EREyLmXTxSyo9-ew,81296
|
32
32
|
lusid/api/instrument_events_api.py,sha256=HJoC-pHztF2jKfX5xhXItEn3svBya8RNzd_hMDbmZKI,58350
|
33
|
-
lusid/api/instruments_api.py,sha256=
|
33
|
+
lusid/api/instruments_api.py,sha256=bsFgBfz5dPAd4uNxrWn5m0m8B7ne85z10jvVagL3FWs,293269
|
34
34
|
lusid/api/legacy_compliance_api.py,sha256=a7nqMHB7Eh9f33Hrh55kOTmIB_Gfj9y4b8xOjMSBuxw,96394
|
35
35
|
lusid/api/legal_entities_api.py,sha256=YiKzvDknl_Yc61F4m-kbz976UWTGDjcLAJK2g_3Wn70,267038
|
36
36
|
lusid/api/order_graph_api.py,sha256=iouv81cDentnN_yKCF3_Vb7pMtKTecbpzgfur5rjb2Y,45154
|
@@ -70,7 +70,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
70
70
|
lusid/api/workspace_api.py,sha256=mYQPqFUVf1VKYeWQUV5VkcdSqwejSmPDGd66Az86-_E,191319
|
71
71
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
72
72
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
73
|
-
lusid/configuration.py,sha256=
|
73
|
+
lusid/configuration.py,sha256=NQg9fIP1SWhKqonMrJnI3_NXpkkB3jqSa_imDDjiruE,17972
|
74
74
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
75
75
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
76
76
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -1037,9 +1037,9 @@ lusid/models/transaction_currency_and_amount.py,sha256=us7dfLcpX_55r_K3EjDeTha0k
|
|
1037
1037
|
lusid/models/transaction_date_windows.py,sha256=rYtMjWLr5NsCwKhSrirwEsSSW0NM40GtSh5DOu2tiII,3371
|
1038
1038
|
lusid/models/transaction_diagnostics.py,sha256=1cmUNpZGY-ocwpfXXxqn5gVS9_HCJIFsXOCT6XLNyeU,2226
|
1039
1039
|
lusid/models/transaction_field_map.py,sha256=hhb6KeyDpqY-8AFeI7sFIVk0PLqOR5qrQPyriX1njJ8,4591
|
1040
|
-
lusid/models/transaction_price.py,sha256=
|
1040
|
+
lusid/models/transaction_price.py,sha256=VnfXrlrmIipysb3dKqxZw6ajc2_ar8-JXkIzRnVvj_4,2500
|
1041
1041
|
lusid/models/transaction_price_and_type.py,sha256=SV4GDgkQ_04uMKmylEgrv8L1N3yMFnjgXH3QJ7Q1Y5w,2444
|
1042
|
-
lusid/models/transaction_price_type.py,sha256=
|
1042
|
+
lusid/models/transaction_price_type.py,sha256=FSyAH7BahD7s6G3DxLX6CPtjXAqzQGFOXpe1Yxk23OA,803
|
1043
1043
|
lusid/models/transaction_property_map.py,sha256=4Yr62QtYTTBJRzmd99pjszrXY-SDior5RFPy3h1XndM,2607
|
1044
1044
|
lusid/models/transaction_property_mapping.py,sha256=ZYhaV5LLzk14jIHgLgN8edyR0_9Z_Hq-UhVCvxdvgEE,2822
|
1045
1045
|
lusid/models/transaction_property_mapping_request.py,sha256=Fj5xxqU69ex_Jht84_L4XmXFwo2e-i-J3dkVhrMKGmM,2877
|
@@ -1191,6 +1191,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1191
1191
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1192
1192
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1193
1193
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1194
|
-
lusid_sdk-2.1.
|
1195
|
-
lusid_sdk-2.1.
|
1196
|
-
lusid_sdk-2.1.
|
1194
|
+
lusid_sdk-2.1.468.dist-info/METADATA,sha256=ds-TDw-tBDKlYTU0rCOe0tLSE-_xitHTbv4j_KCfmP8,204661
|
1195
|
+
lusid_sdk-2.1.468.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1196
|
+
lusid_sdk-2.1.468.dist-info/RECORD,,
|
File without changes
|