lusid-sdk 2.1.261__py3-none-any.whl → 2.1.286__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.

Potentially problematic release.


This version of lusid-sdk might be problematic. Click here for more details.

Files changed (37) hide show
  1. lusid/__init__.py +26 -0
  2. lusid/api/funds_api.py +1 -1
  3. lusid/configuration.py +1 -1
  4. lusid/models/__init__.py +26 -0
  5. lusid/models/cash.py +93 -0
  6. lusid/models/component_filter.py +85 -0
  7. lusid/models/component_rule.py +13 -19
  8. lusid/models/contract_for_difference.py +4 -2
  9. lusid/models/fund.py +6 -1
  10. lusid/models/fund_amount.py +69 -0
  11. lusid/models/fund_configuration.py +16 -15
  12. lusid/models/fund_configuration_request.py +18 -12
  13. lusid/models/fund_previous_nav.py +69 -0
  14. lusid/models/fund_request.py +6 -1
  15. lusid/models/fund_valuation_point_data.py +160 -0
  16. lusid/models/futures_contract_details.py +9 -2
  17. lusid/models/lusid_instrument.py +3 -2
  18. lusid/models/market_data_key_rule.py +3 -3
  19. lusid/models/market_data_specific_rule.py +3 -3
  20. lusid/models/market_quote.py +3 -3
  21. lusid/models/model_selection.py +3 -3
  22. lusid/models/previous_fund_valuation_point_data.py +79 -0
  23. lusid/models/previous_nav.py +73 -0
  24. lusid/models/previous_share_class_breakdown.py +81 -0
  25. lusid/models/pricing_model.py +1 -0
  26. lusid/models/quote_series_id.py +4 -20
  27. lusid/models/quote_type.py +3 -0
  28. lusid/models/share_class_amount.py +73 -0
  29. lusid/models/share_class_breakdown.py +171 -0
  30. lusid/models/share_class_data.py +79 -0
  31. lusid/models/share_class_details.py +108 -0
  32. lusid/models/transaction_field_map.py +1 -1
  33. lusid/models/unitisation_data.py +73 -0
  34. lusid/models/valuation_point_data_response.py +30 -9
  35. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.286.dist-info}/METADATA +17 -4
  36. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.286.dist-info}/RECORD +37 -24
  37. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.286.dist-info}/WHEEL +0 -0
@@ -0,0 +1,73 @@
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, Union
22
+ from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt
23
+
24
+ class UnitisationData(BaseModel):
25
+ """
26
+ UnitisationData
27
+ """
28
+ shares_in_issue: Union[StrictFloat, StrictInt] = Field(..., alias="sharesInIssue", description="The number of shares in issue at a valuation point.")
29
+ unit_price: Union[StrictFloat, StrictInt] = Field(..., alias="unitPrice", description="The price of one unit of the share class at a valuation point.")
30
+ net_dealing_units: Union[StrictFloat, StrictInt] = Field(..., alias="netDealingUnits", description="The net dealing in units for the share class at a valuation point. This could be the sum of negative redemptions (in units) and positive subscriptions (in units).")
31
+ __properties = ["sharesInIssue", "unitPrice", "netDealingUnits"]
32
+
33
+ class Config:
34
+ """Pydantic configuration"""
35
+ allow_population_by_field_name = True
36
+ validate_assignment = True
37
+
38
+ def to_str(self) -> str:
39
+ """Returns the string representation of the model using alias"""
40
+ return pprint.pformat(self.dict(by_alias=True))
41
+
42
+ def to_json(self) -> str:
43
+ """Returns the JSON representation of the model using alias"""
44
+ return json.dumps(self.to_dict())
45
+
46
+ @classmethod
47
+ def from_json(cls, json_str: str) -> UnitisationData:
48
+ """Create an instance of UnitisationData from a JSON string"""
49
+ return cls.from_dict(json.loads(json_str))
50
+
51
+ def to_dict(self):
52
+ """Returns the dictionary representation of the model using alias"""
53
+ _dict = self.dict(by_alias=True,
54
+ exclude={
55
+ },
56
+ exclude_none=True)
57
+ return _dict
58
+
59
+ @classmethod
60
+ def from_dict(cls, obj: dict) -> UnitisationData:
61
+ """Create an instance of UnitisationData from a dict"""
62
+ if obj is None:
63
+ return None
64
+
65
+ if not isinstance(obj, dict):
66
+ return UnitisationData.parse_obj(obj)
67
+
68
+ _obj = UnitisationData.parse_obj({
69
+ "shares_in_issue": obj.get("sharesInIssue"),
70
+ "unit_price": obj.get("unitPrice"),
71
+ "net_dealing_units": obj.get("netDealingUnits")
72
+ })
73
+ return _obj
@@ -21,24 +21,28 @@ import json
21
21
  from typing import Any, Dict, List, Optional, Union
22
22
  from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
23
23
  from lusid.models.fee_accrual import FeeAccrual
24
+ from lusid.models.fund_valuation_point_data import FundValuationPointData
24
25
  from lusid.models.link import Link
26
+ from lusid.models.share_class_data import ShareClassData
25
27
 
26
28
  class ValuationPointDataResponse(BaseModel):
27
29
  """
28
30
  The Valuation Point Data Response for the Fund and specified date. # noqa: E501
29
31
  """
30
32
  href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
31
- type: constr(strict=True, min_length=1) = Field(..., description="The Type of the associated Diary Entry ('PeriodBoundary','ValuationPoint','Other' or 'Adhoc' when a diary Entry wasn't used).")
33
+ type: constr(strict=True, min_length=1) = Field(..., description="The Type of the associated Diary Entry ('PeriodBoundary','ValuationPoint','Other' or 'Adhoc' when a diary entry wasn't used).")
32
34
  status: constr(strict=True, min_length=1) = Field(..., description="The Status of the associated Diary Entry ('Estimate','Final','Candidate' or 'Unofficial').")
33
- backout: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="Bucket of detail for the Valuation Point, where data points have been 'backed out'.")
34
- dealing: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="Bucket of detail for any 'Dealing' that has occured inside the queried period.")
35
- pn_l: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., alias="pnL", description="Bucket of detail for 'PnL' that has occured inside the queried period.")
36
- gav: Union[StrictFloat, StrictInt] = Field(..., description="The Gross Asset Value of the Fund at the Period end. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
37
- fees: Dict[str, FeeAccrual] = Field(..., description="Bucket of detail for any 'Fees' that have been charged in the selected period.")
38
- nav: Union[StrictFloat, StrictInt] = Field(..., description="The Net Asset Value of the Fund at the Period end. This represents the GAV with any fees applied in the period.")
39
- previous_nav: Union[StrictFloat, StrictInt] = Field(..., alias="previousNav", description="The Net Asset Value of the Fund at the End of the last Period.")
35
+ backout: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="DEPRECATED. Bucket of detail for the Valuation Point, where data points have been 'backed out'.")
36
+ dealing: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="DEPRECATED. Bucket of detail for any 'Dealing' that has occured inside the queried period.")
37
+ pn_l: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., alias="pnL", description="DEPRECATED. Bucket of detail for 'PnL' that has occured inside the queried period.")
38
+ gav: Union[StrictFloat, StrictInt] = Field(..., description="DEPRECATED. The Gross Asset Value of the Fund at the Period end. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
39
+ fees: Dict[str, FeeAccrual] = Field(..., description="DEPRECATED. Bucket of detail for any 'Fees' that have been charged in the selected period.")
40
+ nav: Union[StrictFloat, StrictInt] = Field(..., description="DEPRECATED. The Net Asset Value of the Fund at the Period end. This represents the GAV with any fees applied in the period.")
41
+ previous_nav: Union[StrictFloat, StrictInt] = Field(..., alias="previousNav", description="DEPRECATED. The Net Asset Value of the Fund at the End of the last Period.")
42
+ fund_valuation_point_data: FundValuationPointData = Field(..., alias="fundValuationPointData")
43
+ share_class_data: Dict[str, ShareClassData] = Field(..., alias="shareClassData", description="The data for all share classes in fund. Share classes are identified by their short codes.")
40
44
  links: Optional[conlist(Link)] = None
41
- __properties = ["href", "type", "status", "backout", "dealing", "pnL", "gav", "fees", "nav", "previousNav", "links"]
45
+ __properties = ["href", "type", "status", "backout", "dealing", "pnL", "gav", "fees", "nav", "previousNav", "fundValuationPointData", "shareClassData", "links"]
42
46
 
43
47
  class Config:
44
48
  """Pydantic configuration"""
@@ -71,6 +75,16 @@ class ValuationPointDataResponse(BaseModel):
71
75
  if self.fees[_key]:
72
76
  _field_dict[_key] = self.fees[_key].to_dict()
73
77
  _dict['fees'] = _field_dict
78
+ # override the default output from pydantic by calling `to_dict()` of fund_valuation_point_data
79
+ if self.fund_valuation_point_data:
80
+ _dict['fundValuationPointData'] = self.fund_valuation_point_data.to_dict()
81
+ # override the default output from pydantic by calling `to_dict()` of each value in share_class_data (dict)
82
+ _field_dict = {}
83
+ if self.share_class_data:
84
+ for _key in self.share_class_data:
85
+ if self.share_class_data[_key]:
86
+ _field_dict[_key] = self.share_class_data[_key].to_dict()
87
+ _dict['shareClassData'] = _field_dict
74
88
  # override the default output from pydantic by calling `to_dict()` of each item in links (list)
75
89
  _items = []
76
90
  if self.links:
@@ -115,6 +129,13 @@ class ValuationPointDataResponse(BaseModel):
115
129
  else None,
116
130
  "nav": obj.get("nav"),
117
131
  "previous_nav": obj.get("previousNav"),
132
+ "fund_valuation_point_data": FundValuationPointData.from_dict(obj.get("fundValuationPointData")) if obj.get("fundValuationPointData") is not None else None,
133
+ "share_class_data": dict(
134
+ (_k, ShareClassData.from_dict(_v))
135
+ for _k, _v in obj.get("shareClassData").items()
136
+ )
137
+ if obj.get("shareClassData") is not None
138
+ else None,
118
139
  "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
119
140
  })
120
141
  return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.261
3
+ Version: 2.1.286
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -29,8 +29,8 @@ FINBOURNE Technology
29
29
 
30
30
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
31
31
 
32
- - API version: 0.11.6694
33
- - Package version: 2.1.261
32
+ - API version: 0.11.6719
33
+ - Package version: 2.1.286
34
34
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
35
35
  For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
36
36
 
@@ -427,7 +427,7 @@ Class | Method | HTTP request | Description
427
427
  *FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
428
428
  *FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
429
429
  *FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
430
- *FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$upsert | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert Valuation Point.
430
+ *FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert Valuation Point.
431
431
  *FundsApi* | [**upsert_fee_properties**](docs/FundsApi.md#upsert_fee_properties) | **POST** /api/funds/{scope}/{code}/fees/{feeCode}/properties/$upsert | [EXPERIMENTAL] UpsertFeeProperties: Upsert Fee properties.
432
432
  *FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
433
433
  *InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
@@ -854,6 +854,7 @@ Class | Method | HTTP request | Description
854
854
  - [CancelledPlacementResult](docs/CancelledPlacementResult.md)
855
855
  - [CapFloor](docs/CapFloor.md)
856
856
  - [CapitalDistributionEvent](docs/CapitalDistributionEvent.md)
857
+ - [Cash](docs/Cash.md)
857
858
  - [CashAndSecurityOfferElection](docs/CashAndSecurityOfferElection.md)
858
859
  - [CashDependency](docs/CashDependency.md)
859
860
  - [CashDividendEvent](docs/CashDividendEvent.md)
@@ -918,6 +919,7 @@ Class | Method | HTTP request | Description
918
919
  - [ComplianceTemplateVariation](docs/ComplianceTemplateVariation.md)
919
920
  - [ComplianceTemplateVariationDto](docs/ComplianceTemplateVariationDto.md)
920
921
  - [ComplianceTemplateVariationRequest](docs/ComplianceTemplateVariationRequest.md)
922
+ - [ComponentFilter](docs/ComponentFilter.md)
921
923
  - [ComponentRule](docs/ComponentRule.md)
922
924
  - [ComponentTransaction](docs/ComponentTransaction.md)
923
925
  - [CompositeBreakdown](docs/CompositeBreakdown.md)
@@ -1085,12 +1087,15 @@ Class | Method | HTTP request | Description
1085
1087
  - [ForwardRateAgreement](docs/ForwardRateAgreement.md)
1086
1088
  - [FromRecipe](docs/FromRecipe.md)
1087
1089
  - [Fund](docs/Fund.md)
1090
+ - [FundAmount](docs/FundAmount.md)
1088
1091
  - [FundConfiguration](docs/FundConfiguration.md)
1089
1092
  - [FundConfigurationProperties](docs/FundConfigurationProperties.md)
1090
1093
  - [FundConfigurationRequest](docs/FundConfigurationRequest.md)
1094
+ - [FundPreviousNAV](docs/FundPreviousNAV.md)
1091
1095
  - [FundProperties](docs/FundProperties.md)
1092
1096
  - [FundRequest](docs/FundRequest.md)
1093
1097
  - [FundShareClass](docs/FundShareClass.md)
1098
+ - [FundValuationPointData](docs/FundValuationPointData.md)
1094
1099
  - [FundingLeg](docs/FundingLeg.md)
1095
1100
  - [FundingLegOptions](docs/FundingLegOptions.md)
1096
1101
  - [Future](docs/Future.md)
@@ -1399,6 +1404,9 @@ Class | Method | HTTP request | Description
1399
1404
  - [PostingModuleRule](docs/PostingModuleRule.md)
1400
1405
  - [PostingModuleRulesUpdatedResponse](docs/PostingModuleRulesUpdatedResponse.md)
1401
1406
  - [Premium](docs/Premium.md)
1407
+ - [PreviousFundValuationPointData](docs/PreviousFundValuationPointData.md)
1408
+ - [PreviousNAV](docs/PreviousNAV.md)
1409
+ - [PreviousShareClassBreakdown](docs/PreviousShareClassBreakdown.md)
1402
1410
  - [PricingContext](docs/PricingContext.md)
1403
1411
  - [PricingModel](docs/PricingModel.md)
1404
1412
  - [PricingOptions](docs/PricingOptions.md)
@@ -1579,6 +1587,10 @@ Class | Method | HTTP request | Description
1579
1587
  - [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
1580
1588
  - [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
1581
1589
  - [SettlementSchedule](docs/SettlementSchedule.md)
1590
+ - [ShareClassAmount](docs/ShareClassAmount.md)
1591
+ - [ShareClassBreakdown](docs/ShareClassBreakdown.md)
1592
+ - [ShareClassData](docs/ShareClassData.md)
1593
+ - [ShareClassDetails](docs/ShareClassDetails.md)
1582
1594
  - [SideConfigurationData](docs/SideConfigurationData.md)
1583
1595
  - [SideConfigurationDataRequest](docs/SideConfigurationDataRequest.md)
1584
1596
  - [SideDefinition](docs/SideDefinition.md)
@@ -1672,6 +1684,7 @@ Class | Method | HTTP request | Description
1672
1684
  - [TriggerEvent](docs/TriggerEvent.md)
1673
1685
  - [TypedResourceId](docs/TypedResourceId.md)
1674
1686
  - [UnitSchema](docs/UnitSchema.md)
1687
+ - [UnitisationData](docs/UnitisationData.md)
1675
1688
  - [UnitsRatio](docs/UnitsRatio.md)
1676
1689
  - [UnmatchedHoldingMethod](docs/UnmatchedHoldingMethod.md)
1677
1690
  - [UpdateAmortisationRuleSetDetailsRequest](docs/UpdateAmortisationRuleSetDetailsRequest.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=M9woAUW08ZtwfxDhiZY0CE6lqoo3QLkyPYCVwaRVfMk,112276
1
+ lusid/__init__.py,sha256=Ti20jnkQMwRp6ov9IEJP_Ka_aoXAnRILs6TQuXr-JDM,113400
2
2
  lusid/api/__init__.py,sha256=EuHJI-4kmmibn1IVmY9akKMT-R1Bnth9msFll5hlBGY,5652
3
3
  lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
4
4
  lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
@@ -26,7 +26,7 @@ lusid/api/entities_api.py,sha256=kV00-PgBlWfwLV4T9qhaaOntVoo-NJwzkSACLQu80Xw,466
26
26
  lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
27
27
  lusid/api/fee_types_api.py,sha256=4_wZtZkRyK2RHfDBwAK2XrspWzF_LCBYe_RUt_Y17zM,56137
28
28
  lusid/api/fund_configurations_api.py,sha256=XbNaocdjU8sf37NZmH6NR1VMSITut9Fw6SMhOVBEjJ4,64107
29
- lusid/api/funds_api.py,sha256=pv4gajsbbbkMi5Q07ixKzzcuhPTfZ-MoenSLsj9tpJ0,196396
29
+ lusid/api/funds_api.py,sha256=Oj5FmtRDkKQzJMcepbLQ0UbsLP73XTZifAW4SnZJK5U,196388
30
30
  lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
31
31
  lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
32
32
  lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
@@ -68,7 +68,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
68
68
  lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
69
69
  lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
70
70
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
71
- lusid/configuration.py,sha256=3AMcE1DnwnatRXo2sNVMMXen-378JfDsF5AGzaQNLCw,14404
71
+ lusid/configuration.py,sha256=_xeD9ANzRag139LqtDrPpR4TSDpNHtLqGDDGGS4-58g,14404
72
72
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
73
73
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
74
74
  lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
@@ -82,7 +82,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
82
82
  lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
83
83
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
84
84
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
85
- lusid/models/__init__.py,sha256=Q0TBlFd761elWzPyxbQ6X2w9LVpARVivlWo_xcUfbKU,105592
85
+ lusid/models/__init__.py,sha256=twzzDSiN0N4ymo1z4-WK0XaeR60x8D1TyOLkaB9Brzc,106716
86
86
  lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
87
87
  lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
88
88
  lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
@@ -179,6 +179,7 @@ lusid/models/cancel_placements_response.py,sha256=xe43QiiMvapew4BvR1C3wj5tYgn-zL
179
179
  lusid/models/cancelled_placement_result.py,sha256=eW3lgoyFakoGKcFSp3WN11bpuJyJun9jm8rVS4hdxwg,3127
180
180
  lusid/models/cap_floor.py,sha256=njXRS6hQ-0fmlpaX7VVzLaxB5NpJHTYn_4HMp9e6BSA,6051
181
181
  lusid/models/capital_distribution_event.py,sha256=UXD4-9IBaDXgMWueV-ivEeJ8RDDbPsPAq6Xx4bH5dyg,6691
182
+ lusid/models/cash.py,sha256=2Cr5kt0P4mlmsMRwtiFNaMBHwa1YSDGcwhR8XrdWi18,4934
182
183
  lusid/models/cash_and_security_offer_election.py,sha256=9xxHftE8QRdsizLEXCyvxFdkPpm9KU3fxz8WNjJv430,3933
183
184
  lusid/models/cash_dependency.py,sha256=zwUJWL1OvD_DRCBLNRunbtsw9vBRXcri3hMmlu3oXGI,4182
184
185
  lusid/models/cash_dividend_event.py,sha256=Fp9gCJIWoRgBH52CPbRnDS_LIviso9rT0CuPGFZeCiw,6642
@@ -243,7 +244,8 @@ lusid/models/compliance_template_parameter.py,sha256=LWVk_yP-tYBkoUxKzqSozxnjeK8
243
244
  lusid/models/compliance_template_variation.py,sha256=mnbKZ78bbQyq7L3LtcXPT2DrymDvCIVR_pzDb4OQ0_Q,4961
244
245
  lusid/models/compliance_template_variation_dto.py,sha256=fWH4WbJjLPjpyb0p4_SVeRaVYyb22KOsthPo-sftggE,4300
245
246
  lusid/models/compliance_template_variation_request.py,sha256=UFy6md9GFHvKgH2GT0-Cwfg48pSvo2UtKcCYLFZG2js,4361
246
- lusid/models/component_rule.py,sha256=WMTPlx_YcDM5a51SJqF9N0WTJh4Sio2YFQqsJjgz9TM,2560
247
+ lusid/models/component_filter.py,sha256=lIRWmBzhjHiA3KOraTZ1jFbUBWR2bz5JUet9Kzx2N3I,2590
248
+ lusid/models/component_rule.py,sha256=Q9dzMqQiG290IicuNEZR0uJArD5V9UO_TZOjqya4Tlw,2318
247
249
  lusid/models/component_transaction.py,sha256=9q-Xj49CIIMWk7QZflkaunWUJAkHiKxaHqdc-owL_8Q,3645
248
250
  lusid/models/composite_breakdown.py,sha256=WfT-c2bvOmT9LP1zFI8V2cIWOLJ4LRsaLZH98IImZ8U,3350
249
251
  lusid/models/composite_breakdown_request.py,sha256=fjhlpBroC8ys0jwfglD-_HJlsDdp3mDIDmvdyD6llj8,5315
@@ -254,7 +256,7 @@ lusid/models/compounding.py,sha256=yfKEFwGOy8Nndk9IPo9sAfotNM9_bJTIa8b3huUymqw,5
254
256
  lusid/models/configuration_recipe.py,sha256=O9gOzlKxFhnnzMxZQwPEwc29wF9fPS86s771qWmcCnk,5894
255
257
  lusid/models/constant_volatility_surface.py,sha256=1l4eyD78UaUsyjkX7NhPTuGUYgJY-nXzs4ZACc0dQQs,5178
256
258
  lusid/models/constituents_adjustment_header.py,sha256=2wnnigKPOPttpRFJa8yzJspIhyfdLq_8_H5QLsWOQy0,3233
257
- lusid/models/contract_for_difference.py,sha256=eyxfU-0uZr3PsVPBNRyDDPkegsKPM5B30QQpxCRv4KM,7004
259
+ lusid/models/contract_for_difference.py,sha256=8kxB5x4t-FK-Cp1ODwJHTzKHprWLLATvStOXxNw95XE,7283
258
260
  lusid/models/corporate_action.py,sha256=L2jWWTX1qcCL4sxqJw9cp6xjjbGo1aezfHlt84TMRTg,4151
259
261
  lusid/models/corporate_action_source.py,sha256=n99ggLwqEUf2ik9Z882RIYVS29IZqI2LqYlPgOBF3zQ,5011
260
262
  lusid/models/corporate_action_transition.py,sha256=ZGFoyxH9IrTwlOWPzf7P81dsoRjrbUlYHwgNaeb7a_E,3508
@@ -409,18 +411,21 @@ lusid/models/flow_convention_name.py,sha256=HFTshKIRBvjLdmcd8FzM-6Jb6-dlq-yTOwjC
409
411
  lusid/models/flow_conventions.py,sha256=OJBFQ28_-Wp5VCQ_CXwLksvz--6kysJh3zUF8xM8ORE,10512
410
412
  lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yWzg2Mukl0A,6660
411
413
  lusid/models/from_recipe.py,sha256=paSou6poZf5CHkswKhZXc8jXmVcxj7s7kJXRw4ucbfQ,2261
412
- lusid/models/fund.py,sha256=vTHl_8gL05ZlCw1Wx3pa6scifXqZ5BzLWq-m9pJteYA,8478
413
- lusid/models/fund_configuration.py,sha256=c_IB3yaaStJWgwCfuqGgYoDqSW1phajM3RYFPVpN8Gs,6357
414
+ lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
415
+ lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1879
416
+ lusid/models/fund_configuration.py,sha256=rZYEyTyXhq4kOXiAFLGO3shzvfZKN8CXdBpwsE_x8Bs,6754
414
417
  lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
415
- lusid/models/fund_configuration_request.py,sha256=HP-B75VqsIKbnjfEnFVKHQHjxspQWcNOeC8YPz5hOYQ,5106
418
+ lusid/models/fund_configuration_request.py,sha256=L7grtgaC97bf5rQ7IaJ4u-PRB6FrFW0kZVyXOh8smnM,5787
419
+ lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
416
420
  lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
417
- lusid/models/fund_request.py,sha256=h9dhzlamZhMN3LVzVfKrqIXi0tjoO6XSqi-oqrCvtD8,7865
421
+ lusid/models/fund_request.py,sha256=fBU3prGytCvKWfAzP0gHj4VUANarueKwB7r9evPoIEI,8345
418
422
  lusid/models/fund_share_class.py,sha256=06VL9vb5vKCEmNFQbKPmj_uvJjn9QAyk9WjdD5ICBAA,6623
423
+ lusid/models/fund_valuation_point_data.py,sha256=JbV3QXY-RW_ZleatER0FgXmG4nwdTEucBbjsUMD7unc,7546
419
424
  lusid/models/funding_leg.py,sha256=b_0D_GqQCPqOllNvb6VSqyjBO4H2v7YYefAj7joTsBI,7455
420
425
  lusid/models/funding_leg_options.py,sha256=_GxHVcvcsd96OaNcb7iHs43UUfrwVno_x2cNowUSwjw,3515
421
426
  lusid/models/future.py,sha256=9jcXTZJxaijpVAz-8-65Jv9yig4qYQEeU2z9oRdEPaU,9084
422
427
  lusid/models/future_expiry_event.py,sha256=88juc3yihAbsYpwMh3ZxrwrgU9C_piGTc_Z9YTbo-MI,5635
423
- lusid/models/futures_contract_details.py,sha256=crSsBLSWPR8R7gQiUC0XFsYG2GSQtlZIuTUcaJog8HE,7336
428
+ lusid/models/futures_contract_details.py,sha256=CjQVhrPcyBfyVdpob0UD8L5MM3velxwtYxFLyZlwKug,7903
424
429
  lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
425
430
  lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
426
431
  lusid/models/fx_forward.py,sha256=1_gRS1vvsE6Pm32Z-gWGYqPjprVv3mUYAmigGtVO0nA,8648
@@ -538,7 +543,7 @@ lusid/models/list_aggregation_response.py,sha256=VJR_hkvGitD_xVUwvAufhtQ5ibLI01M
538
543
  lusid/models/list_complex_market_data_with_meta_data_response.py,sha256=cniypfHR-ovUTyEFYlGpxUTfb_jI51TW_y0Q8SfS95o,3601
539
544
  lusid/models/loan_period.py,sha256=C8oJ0vYb4Z__hhB2MbZHcHy0GMI2RAoKBAwZ1E-7ZiI,2151
540
545
  lusid/models/lock_period_diary_entry_request.py,sha256=QlmA6zWLWuI0D5-97xg8_IdzaCTDnpWBHpOMYaL9vLI,3298
541
- lusid/models/lusid_instrument.py,sha256=hDbH0sqpWNJ4Z0rRL0kSurMLi9bYqWm006pfsuPnrDk,7537
546
+ lusid/models/lusid_instrument.py,sha256=WWj5q0fWiMx_YC-Wayn_kVr56_uQmIGQmNkGkhh6si0,7573
542
547
  lusid/models/lusid_problem_details.py,sha256=Y1yNxDwEJ-eP6m_5PsBAIFaJsmfmvqmwrdemWamss34,3844
543
548
  lusid/models/lusid_trade_ticket.py,sha256=cjiQkP4yJqjMnnnIC6O2mMPlC34enW9EtmuPMBRr7fs,9952
544
549
  lusid/models/lusid_unique_id.py,sha256=xZ2uBRFjQDmi7vcY2i7X8bc878gx8BMCIOIn2qeVO4Y,2137
@@ -548,15 +553,15 @@ lusid/models/mapping.py,sha256=iDaQpBRL0f0Q6sHePxs-vZi3dQPPVfUWLxFFfQ07QCM,4180
548
553
  lusid/models/mapping_rule.py,sha256=dsHfOokEp2HrX029E0JsTBmweNAvS9-RCugDDb04ZGc,4965
549
554
  lusid/models/market_context.py,sha256=1vSjCeaiosx6BdF5XbuVyFYXVZVyX3mrv_kEUCuOIA0,7596
550
555
  lusid/models/market_context_suppliers.py,sha256=njSyqndQ1zLVA2iyB8tU_ATeWtg4NqCuzkUsJGwYH_o,2514
551
- lusid/models/market_data_key_rule.py,sha256=Qd3z1R6LBQ_-cnyp1WQqfOiTr01Y1R01xb0SSiBwlZs,9275
556
+ lusid/models/market_data_key_rule.py,sha256=ewZvu_dANEIaW7hlNMc7mIa5-0f2aaQKWmWAbdOg92o,9455
552
557
  lusid/models/market_data_options.py,sha256=_BBEeqMCbfcmfGtD0fFr3z90kF3mhpsvNRBir1mImA0,3566
553
558
  lusid/models/market_data_options_type.py,sha256=NlFpXuMw8cVK5czQY0h0GJhjYP_wpPuOIpin_AzXKwM,697
554
559
  lusid/models/market_data_overrides.py,sha256=QuKrYw9r4rZjzeqltcnFffww0F5ZNiRpr8v15C95MLM,3921
555
- lusid/models/market_data_specific_rule.py,sha256=fnegd5MHEhSNn3fOX3H8YkGah7Y54iBfhEEbFXEcFLU,8280
560
+ lusid/models/market_data_specific_rule.py,sha256=6w6S9tOfZV-5HD5kAvcvCNHNCnSCO3vbkjb4ith9t4c,8460
556
561
  lusid/models/market_data_type.py,sha256=4NyCfdwiQjP1MZK_SovXB6IVrspTU56JhmxfSdNRweU,1583
557
562
  lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNrXZlwYywAk,801
558
563
  lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
559
- lusid/models/market_quote.py,sha256=ZibHoxhLJcdtZ5AgZhyv8HS-jXRdLs8bKHlvTmaZqwI,3145
564
+ lusid/models/market_quote.py,sha256=Ra6tOiimR6Rdf7pAESEWW2IMZG669jU8eNje8NepYZg,3325
560
565
  lusid/models/match_criterion.py,sha256=cnLfFgO9k05dH7ooGS7s3d8BvyJNuVMDUh3Yt-SPuec,3568
561
566
  lusid/models/maturity_event.py,sha256=ChjKP2EkCeAvBXHf9MEGB29d2mWBQsB7_mwM9BBKRCM,4776
562
567
  lusid/models/merger_event.py,sha256=kS1fnAOpon3F5x4QFPO5c0qnHXSofSr_dBbT5wR_KpU,10857
@@ -565,7 +570,7 @@ lusid/models/model_options.py,sha256=MaLJVMOfpgwL_ZLIIrLbLwpC1lhZKNkzMOGlFlVFgSM
565
570
  lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
566
571
  lusid/models/model_property.py,sha256=M8NkEirTngdA1ZPd0N3d4lr5-1vFMNF8HNW_ePHBMV4,3385
567
572
  lusid/models/model_schema.py,sha256=i2_Wq4yUjd8nfDnU1HA7WvnLQZQ71jc0oI1GrUk6m_8,3861
568
- lusid/models/model_selection.py,sha256=0Beg7CsWydF5zEhhdDGOlG7X9BC55beEauD98sYovPw,4086
573
+ lusid/models/model_selection.py,sha256=XfOXNyO6U0cLx3dU_VKYz16po7Cn1wGjPzdpmHl60Q8,4141
569
574
  lusid/models/move_orders_to_different_blocks_request.py,sha256=g93gGwV0TqDF1dYM-S9j96BdCySKNrlVG7jlon23P88,2568
570
575
  lusid/models/moved_order_to_different_block_response.py,sha256=21MpC1iuv21x3l3WxSOuTkPZveTT31hfcoiYNthUt3o,3162
571
576
  lusid/models/movement_type.py,sha256=TzwVWgA0Y9AYA_Zp1S-6FbLibKf8V5J5-GOaV3EraZQ,1221
@@ -724,8 +729,11 @@ lusid/models/posting_module_response.py,sha256=HPPZHdC6hVr5F6ZHaZUW6s095XnCPDA_I
724
729
  lusid/models/posting_module_rule.py,sha256=ts9EcdU97sCixCMSmZQuYTT1hkRm-sU_-wYK5FRVb8E,4632
725
730
  lusid/models/posting_module_rules_updated_response.py,sha256=qGQSPvvIjNJJr-F9YOXkQAEXYlsflzcaxMNzOX1tF3k,4288
726
731
  lusid/models/premium.py,sha256=R2eYbrUmKAmxdWdmWGuUqg78Hm07y1iVBW7IRu4C92I,2200
732
+ lusid/models/previous_fund_valuation_point_data.py,sha256=4uzpfU2DKzh_Rk5VufpsDNcxM_wT1vSBY-J53OLXFAA,2676
733
+ lusid/models/previous_nav.py,sha256=C9Iqas6Z2GeiuW7Wwm7E0dSxax0pUWpMk-rD7B1YxFY,2102
734
+ lusid/models/previous_share_class_breakdown.py,sha256=usEE_ZlKAXR805pSOd-PDlXCpobqyvKE_7l3p15eds0,2991
727
735
  lusid/models/pricing_context.py,sha256=E8B73sz2c6A2o4HykfbMMfaspv4F6gQfx4fjzDLr6EY,7264
728
- lusid/models/pricing_model.py,sha256=DqxFxGtRJHj3BIDdHqND5MwI9X3d1jh6cPc3hDkzuCk,1447
736
+ lusid/models/pricing_model.py,sha256=hQrGV0w4BhaIiRED3kW3I37UkRop05d3IGHHwyPoFq4,1487
729
737
  lusid/models/pricing_options.py,sha256=ueSekxM9_XWSVd7uVELUtY86w-ul8WnLJR2gtTQm264,7961
730
738
  lusid/models/processed_command.py,sha256=YJ13QMu5M7XCkOqabOvkh3d-w_7P_2VEgRkliLsjTn4,2970
731
739
  lusid/models/property_definition.py,sha256=lcFiMp5z94xW5QY_6hHfpKyxUXW8gCuLUhGcf_cPBfw,17322
@@ -757,8 +765,8 @@ lusid/models/quote_access_metadata_rule_id.py,sha256=qc2bySwq38ZvxuSW105zZehvRFW
757
765
  lusid/models/quote_dependency.py,sha256=1xlJfTJjjLVnN5lTY7JQLUT_5IPEUNtNaLUFfBjDC9E,4595
758
766
  lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
759
767
  lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
760
- lusid/models/quote_series_id.py,sha256=8R3ate409A4V-XqIviXhhxBWfKR0Ksy5R4pD7yuK3Mo,6325
761
- lusid/models/quote_type.py,sha256=dwYbZgzgJticaNVZmTZaYx6VgJtC30GtjDk9bPyseFQ,958
768
+ lusid/models/quote_series_id.py,sha256=_YpNZz5Gr8Fglegkuj6hDmRZj6nngMrjrHb1HsajxGY,5914
769
+ lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
762
770
  lusid/models/raw_vendor_event.py,sha256=gj2rgb29Pyy-G8FCpQDiNJcXcr9NhtPX3UPb_2xPE4U,5590
763
771
  lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
764
772
  lusid/models/realised_gain_loss.py,sha256=SqOAkbqLzwVkwmV4V4kFRLB6n55CJJhIfSDVK7xRHvg,7190
@@ -904,6 +912,10 @@ lusid/models/set_share_class_instruments_request.py,sha256=v5sYOS9s9oZWnD6SlYZ41
904
912
  lusid/models/set_transaction_configuration_alias.py,sha256=FTa9WQPxzZYO6DguFirEwBB8yfg9ckl_rYeDq9e0wN8,2936
905
913
  lusid/models/set_transaction_configuration_source_request.py,sha256=Sz1Kp__LcFo1ubK2S7lf5_NTjFL9Ab23kHikaj8DWxQ,4226
906
914
  lusid/models/settlement_schedule.py,sha256=59PJAHeLK6_fxSRjQ7wGk4zUbyIMjZhiZ-RJ1aH22FY,2420
915
+ lusid/models/share_class_amount.py,sha256=l-3zCMzmy84d1c0co0t_DgXOCk8t2RKBZ1XljO1jOks,2133
916
+ lusid/models/share_class_breakdown.py,sha256=dJC6vIXKbmVHZec9P159OMZT_db6YNxHYdSmTLMKRMA,8351
917
+ lusid/models/share_class_data.py,sha256=dQp2IM-pzSazRdXT4aIHN3BsWiso360CemAwWmu_UH0,2903
918
+ lusid/models/share_class_details.py,sha256=dBbEwt4rC4zox8dzf0XiZQwJv_s8kSqgNWmXIqJTym4,4040
907
919
  lusid/models/side_configuration_data.py,sha256=iv4nyDEEAYA2TUfY-dlqOGwn-mft8qMGVQk6itgxqe4,3518
908
920
  lusid/models/side_configuration_data_request.py,sha256=qWt-UDjQbcoPpHCUpRwcSN8NFfcZ4TpHMn2dRuR3WVw,2842
909
921
  lusid/models/side_definition.py,sha256=GpAnmArPMxwMe_BHZVihoYi9-Dl8HbQJ3nW4QAxXXow,4149
@@ -953,7 +965,7 @@ lusid/models/transaction_configuration_movement_data.py,sha256=_reiT_ZkjGFvAzyuf
953
965
  lusid/models/transaction_configuration_movement_data_request.py,sha256=3o7WmlP4XNSjLfWWmlfcCsZSeRUFCRBdZERr-TnHYRk,6650
954
966
  lusid/models/transaction_configuration_type_alias.py,sha256=YXhlJeoClTMcY0KmAfqGGV6mkYQFP2YF6B4PXOLjQt0,4750
955
967
  lusid/models/transaction_currency_and_amount.py,sha256=us7dfLcpX_55r_K3EjDeTha0k2NTDl0FkkWg9LhX6Lo,2524
956
- lusid/models/transaction_field_map.py,sha256=E55h7dpdc8NCMGrCX7-DQ0b4l0goXSGmPrtuBacCLzA,4580
968
+ lusid/models/transaction_field_map.py,sha256=hhb6KeyDpqY-8AFeI7sFIVk0PLqOR5qrQPyriX1njJ8,4591
957
969
  lusid/models/transaction_price.py,sha256=l1AuDGuIUFJ6dt-2P07qOC1ORPlD8fc6I39Xn1ZI0JE,2420
958
970
  lusid/models/transaction_price_and_type.py,sha256=SV4GDgkQ_04uMKmylEgrv8L1N3yMFnjgXH3QJ7Q1Y5w,2444
959
971
  lusid/models/transaction_price_type.py,sha256=w12kLCHQhbnSisOXJLsSmY8rBCUTLcGc5AHWhG_AS7w,743
@@ -997,6 +1009,7 @@ lusid/models/trial_balance_query_parameters.py,sha256=u9ivqLRFnZMsHpAqEIX7RFkK3n
997
1009
  lusid/models/trigger_event.py,sha256=m4PuFATY7h2ejIYglvgEZAUQmmRQMe6nbYoB7j90mj4,5748
998
1010
  lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW01PD8,3908
999
1011
  lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
1012
+ lusid/models/unitisation_data.py,sha256=SNaV2LP5zHqLol4huDJyIFYu1knhHdB9O75oUfWkJds,2550
1000
1013
  lusid/models/units_ratio.py,sha256=BaJI9h_cMLk7idXL55jRYnO2tf8MTItoejRDHseJbH4,2154
1001
1014
  lusid/models/unmatched_holding_method.py,sha256=FKe4xqhL8C8Stohy89gki7Zio2Jg85bWwo_-mm0tllM,870
1002
1015
  lusid/models/update_amortisation_rule_set_details_request.py,sha256=1mOChVtkpV6ALx17hx7khCeSL9yJThyXiMkrDCo_bNI,3127
@@ -1064,7 +1077,7 @@ lusid/models/upsert_valuation_point_request.py,sha256=7_wa5XPGbnaViZsKr5lEBIBmfI
1064
1077
  lusid/models/user.py,sha256=0lccLmhN2l5KyhvbEBYWp8LGpgIBOMYF_hgTGJniADE,2028
1065
1078
  lusid/models/valuation_point_data_query_parameters.py,sha256=vZq_o0zKM0Ez1BpNwoTqijrkLX8zE64UcufqEjKwL5o,2271
1066
1079
  lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEtl9uUk4jNvjf-WFk,2394
1067
- lusid/models/valuation_point_data_response.py,sha256=bogqziwJYXRcJZHO7oAyB6jAczu_Q1G2iqVtgQ-0YEs,5608
1080
+ lusid/models/valuation_point_data_response.py,sha256=oh_9KJWu7dLYtZbnFZCyUq95dBnPEpbH_K0QbNeoESY,7201
1068
1081
  lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
1069
1082
  lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
1070
1083
  lusid/models/valuations_reconciliation_request.py,sha256=X7NF_7du1RdtPW4i3ayn5OGC7GAfKsCdOT1QIB8DAfQ,5001
@@ -1094,6 +1107,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1094
1107
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1095
1108
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1096
1109
  lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
1097
- lusid_sdk-2.1.261.dist-info/METADATA,sha256=Foxk0FPReYAkbsX1nD0gM_2qRw1Zczn3SrH_udOOeWo,192500
1098
- lusid_sdk-2.1.261.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1099
- lusid_sdk-2.1.261.dist-info/RECORD,,
1110
+ lusid_sdk-2.1.286.dist-info/METADATA,sha256=yq7giz8L3oak0T_DOTefzPda-4h4J-3mqx4aJKcqjuw,193130
1111
+ lusid_sdk-2.1.286.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1112
+ lusid_sdk-2.1.286.dist-info/RECORD,,