lusid-sdk 2.1.464__py3-none-any.whl → 2.1.472__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.
@@ -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.6893\n"\
448
+ "Version of the API: 0.11.6901\n"\
449
449
  "SDK Package Version: {package_version}".\
450
450
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
451
451
 
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
 
21
21
  from typing import Any, Dict, List, Optional
22
- from pydantic.v1 import BaseModel, Field, conlist, constr
22
+ from pydantic.v1 import BaseModel, Field, StrictBool, conlist, constr
23
23
  from lusid.models.transaction_field_map import TransactionFieldMap
24
24
  from lusid.models.transaction_property_map import TransactionPropertyMap
25
25
 
@@ -31,7 +31,8 @@ class ComponentTransaction(BaseModel):
31
31
  condition: Optional[constr(strict=True, max_length=1024, min_length=0)] = None
32
32
  transaction_field_map: TransactionFieldMap = Field(..., alias="transactionFieldMap")
33
33
  transaction_property_map: conlist(TransactionPropertyMap) = Field(..., alias="transactionPropertyMap")
34
- __properties = ["displayName", "condition", "transactionFieldMap", "transactionPropertyMap"]
34
+ preserve_tax_lot_structure: Optional[StrictBool] = Field(None, alias="preserveTaxLotStructure", description="Controls if tax lot structure should be preserved when cost base is transferred to a new holding. For example in Spin Off instrument events.")
35
+ __properties = ["displayName", "condition", "transactionFieldMap", "transactionPropertyMap", "preserveTaxLotStructure"]
35
36
 
36
37
  class Config:
37
38
  """Pydantic configuration"""
@@ -72,6 +73,11 @@ class ComponentTransaction(BaseModel):
72
73
  if self.condition is None and "condition" in self.__fields_set__:
73
74
  _dict['condition'] = None
74
75
 
76
+ # set to None if preserve_tax_lot_structure (nullable) is None
77
+ # and __fields_set__ contains the field
78
+ if self.preserve_tax_lot_structure is None and "preserve_tax_lot_structure" in self.__fields_set__:
79
+ _dict['preserveTaxLotStructure'] = None
80
+
75
81
  return _dict
76
82
 
77
83
  @classmethod
@@ -87,6 +93,7 @@ class ComponentTransaction(BaseModel):
87
93
  "display_name": obj.get("displayName"),
88
94
  "condition": obj.get("condition"),
89
95
  "transaction_field_map": TransactionFieldMap.from_dict(obj.get("transactionFieldMap")) if obj.get("transactionFieldMap") is not None else None,
90
- "transaction_property_map": [TransactionPropertyMap.from_dict(_item) for _item in obj.get("transactionPropertyMap")] if obj.get("transactionPropertyMap") is not None else None
96
+ "transaction_property_map": [TransactionPropertyMap.from_dict(_item) for _item in obj.get("transactionPropertyMap")] if obj.get("transactionPropertyMap") is not None else None,
97
+ "preserve_tax_lot_structure": obj.get("preserveTaxLotStructure")
91
98
  })
92
99
  return _obj
@@ -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:
@@ -33,6 +33,8 @@ class TransactionPriceType(str, Enum):
33
33
  YIELD = 'Yield'
34
34
  SPREAD = 'Spread'
35
35
  CASHFLOWPERUNIT = 'CashFlowPerUnit'
36
+ CLEANPRICE = 'CleanPrice'
37
+ DIRTYPRICE = 'DirtyPrice'
36
38
 
37
39
  @classmethod
38
40
  def from_json(cls, json_str: str) -> TransactionPriceType:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.464
3
+ Version: 2.1.472
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=YHViScZqufdQE34HwJUsE8Ys5NxvegGMrOyHv32BbTU,280335
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=sVd7jw06xPT5hsqhTSbpurlCMMxVhDkALFo5IuUlflo,17972
73
+ lusid/configuration.py,sha256=u2DgQeoU0sBctiWfKjJkUhlgAaW6yW3pYP7i6btmCKo,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
@@ -266,7 +266,7 @@ lusid/models/compliance_template_variation.py,sha256=mnbKZ78bbQyq7L3LtcXPT2DrymD
266
266
  lusid/models/compliance_template_variation_dto.py,sha256=fWH4WbJjLPjpyb0p4_SVeRaVYyb22KOsthPo-sftggE,4300
267
267
  lusid/models/compliance_template_variation_request.py,sha256=UFy6md9GFHvKgH2GT0-Cwfg48pSvo2UtKcCYLFZG2js,4361
268
268
  lusid/models/component_filter.py,sha256=lIRWmBzhjHiA3KOraTZ1jFbUBWR2bz5JUet9Kzx2N3I,2590
269
- lusid/models/component_transaction.py,sha256=9q-Xj49CIIMWk7QZflkaunWUJAkHiKxaHqdc-owL_8Q,3645
269
+ lusid/models/component_transaction.py,sha256=J5nGIdp-a6RIiVIISi1PeeiQX-7d3sbHrCoIrINVPfU,4298
270
270
  lusid/models/composite_breakdown.py,sha256=WfT-c2bvOmT9LP1zFI8V2cIWOLJ4LRsaLZH98IImZ8U,3350
271
271
  lusid/models/composite_breakdown_request.py,sha256=fjhlpBroC8ys0jwfglD-_HJlsDdp3mDIDmvdyD6llj8,5315
272
272
  lusid/models/composite_breakdown_response.py,sha256=i4TgND_eSE6zcYUsYzn0mD12CxEsGwNSVbhMTwzyTrI,3925
@@ -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=l1AuDGuIUFJ6dt-2P07qOC1ORPlD8fc6I39Xn1ZI0JE,2420
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=w12kLCHQhbnSisOXJLsSmY8rBCUTLcGc5AHWhG_AS7w,743
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.464.dist-info/METADATA,sha256=obHaV8780j5QwPRRe3KcIi5pYv9rGe-CSpxCS1xAYAk,204403
1195
- lusid_sdk-2.1.464.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1196
- lusid_sdk-2.1.464.dist-info/RECORD,,
1194
+ lusid_sdk-2.1.472.dist-info/METADATA,sha256=nkDMJb9JdM9vt9rJOKbWQlW81LpZq5ivJbM3CncabUU,204661
1195
+ lusid_sdk-2.1.472.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1196
+ lusid_sdk-2.1.472.dist-info/RECORD,,