lusid-sdk 2.1.261__py3-none-any.whl → 2.1.292__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.
Files changed (44) hide show
  1. lusid/__init__.py +30 -0
  2. lusid/api/compliance_api.py +191 -0
  3. lusid/api/funds_api.py +1 -1
  4. lusid/configuration.py +1 -1
  5. lusid/models/__init__.py +30 -0
  6. lusid/models/cash.py +93 -0
  7. lusid/models/compliance_run_configuration.py +73 -0
  8. lusid/models/component_filter.py +85 -0
  9. lusid/models/component_rule.py +13 -19
  10. lusid/models/contract_for_difference.py +4 -2
  11. lusid/models/fund.py +6 -1
  12. lusid/models/fund_amount.py +69 -0
  13. lusid/models/fund_configuration.py +16 -15
  14. lusid/models/fund_configuration_request.py +18 -12
  15. lusid/models/fund_previous_nav.py +69 -0
  16. lusid/models/fund_request.py +6 -1
  17. lusid/models/fund_valuation_point_data.py +160 -0
  18. lusid/models/futures_contract_details.py +9 -2
  19. lusid/models/lusid_instrument.py +3 -2
  20. lusid/models/market_data_key_rule.py +3 -3
  21. lusid/models/market_data_specific_rule.py +3 -3
  22. lusid/models/market_quote.py +3 -3
  23. lusid/models/model_selection.py +3 -3
  24. lusid/models/pre_trade_configuration.py +69 -0
  25. lusid/models/previous_fund_valuation_point_data.py +79 -0
  26. lusid/models/previous_nav.py +73 -0
  27. lusid/models/previous_share_class_breakdown.py +81 -0
  28. lusid/models/pricing_model.py +1 -0
  29. lusid/models/quote_series_id.py +4 -20
  30. lusid/models/quote_type.py +3 -0
  31. lusid/models/share_class_amount.py +73 -0
  32. lusid/models/share_class_breakdown.py +171 -0
  33. lusid/models/share_class_data.py +79 -0
  34. lusid/models/share_class_details.py +108 -0
  35. lusid/models/staged_modification.py +8 -1
  36. lusid/models/transaction_configuration_movement_data.py +2 -2
  37. lusid/models/transaction_configuration_movement_data_request.py +1 -1
  38. lusid/models/transaction_field_map.py +1 -1
  39. lusid/models/transaction_type_movement.py +2 -2
  40. lusid/models/unitisation_data.py +73 -0
  41. lusid/models/valuation_point_data_response.py +30 -9
  42. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.292.dist-info}/METADATA +20 -4
  43. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.292.dist-info}/RECORD +44 -29
  44. {lusid_sdk-2.1.261.dist-info → lusid_sdk-2.1.292.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.292
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.6725
33
+ - Package version: 2.1.292
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
 
@@ -318,6 +318,7 @@ Class | Method | HTTP request | Description
318
318
  *ComplianceApi* | [**list_compliance_runs**](docs/ComplianceApi.md#list_compliance_runs) | **GET** /api/compliance/runs | [EARLY ACCESS] ListComplianceRuns: List historical compliance run identifiers.
319
319
  *ComplianceApi* | [**list_compliance_templates**](docs/ComplianceApi.md#list_compliance_templates) | **GET** /api/compliance/templates | [EARLY ACCESS] ListComplianceTemplates: List compliance templates.
320
320
  *ComplianceApi* | [**run_compliance**](docs/ComplianceApi.md#run_compliance) | **POST** /api/compliance/runs | [EARLY ACCESS] RunCompliance: Run a compliance check.
321
+ *ComplianceApi* | [**run_compliance_preview**](docs/ComplianceApi.md#run_compliance_preview) | **POST** /api/compliance/preview/runs | [EARLY ACCESS] RunCompliancePreview: Run a compliance check.
321
322
  *ComplianceApi* | [**update_compliance_template**](docs/ComplianceApi.md#update_compliance_template) | **PUT** /api/compliance/templates/{scope}/{code} | [EARLY ACCESS] UpdateComplianceTemplate: Update a ComplianceRuleTemplate
322
323
  *ComplianceApi* | [**upsert_compliance_rule**](docs/ComplianceApi.md#upsert_compliance_rule) | **POST** /api/compliance/rules | [EARLY ACCESS] UpsertComplianceRule: Upsert a compliance rule.
323
324
  *ComplianceApi* | [**upsert_compliance_run_summary**](docs/ComplianceApi.md#upsert_compliance_run_summary) | **POST** /api/compliance/runs/summary | [EARLY ACCESS] UpsertComplianceRunSummary: Upsert a compliance run summary.
@@ -427,7 +428,7 @@ Class | Method | HTTP request | Description
427
428
  *FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
428
429
  *FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
429
430
  *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.
431
+ *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
432
  *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
433
  *FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
433
434
  *InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
@@ -854,6 +855,7 @@ Class | Method | HTTP request | Description
854
855
  - [CancelledPlacementResult](docs/CancelledPlacementResult.md)
855
856
  - [CapFloor](docs/CapFloor.md)
856
857
  - [CapitalDistributionEvent](docs/CapitalDistributionEvent.md)
858
+ - [Cash](docs/Cash.md)
857
859
  - [CashAndSecurityOfferElection](docs/CashAndSecurityOfferElection.md)
858
860
  - [CashDependency](docs/CashDependency.md)
859
861
  - [CashDividendEvent](docs/CashDividendEvent.md)
@@ -905,6 +907,7 @@ Class | Method | HTTP request | Description
905
907
  - [ComplianceRuleTemplate](docs/ComplianceRuleTemplate.md)
906
908
  - [ComplianceRuleUpsertRequest](docs/ComplianceRuleUpsertRequest.md)
907
909
  - [ComplianceRuleUpsertResponse](docs/ComplianceRuleUpsertResponse.md)
910
+ - [ComplianceRunConfiguration](docs/ComplianceRunConfiguration.md)
908
911
  - [ComplianceRunInfo](docs/ComplianceRunInfo.md)
909
912
  - [ComplianceRunInfoV2](docs/ComplianceRunInfoV2.md)
910
913
  - [ComplianceStep](docs/ComplianceStep.md)
@@ -918,6 +921,7 @@ Class | Method | HTTP request | Description
918
921
  - [ComplianceTemplateVariation](docs/ComplianceTemplateVariation.md)
919
922
  - [ComplianceTemplateVariationDto](docs/ComplianceTemplateVariationDto.md)
920
923
  - [ComplianceTemplateVariationRequest](docs/ComplianceTemplateVariationRequest.md)
924
+ - [ComponentFilter](docs/ComponentFilter.md)
921
925
  - [ComponentRule](docs/ComponentRule.md)
922
926
  - [ComponentTransaction](docs/ComponentTransaction.md)
923
927
  - [CompositeBreakdown](docs/CompositeBreakdown.md)
@@ -1085,12 +1089,15 @@ Class | Method | HTTP request | Description
1085
1089
  - [ForwardRateAgreement](docs/ForwardRateAgreement.md)
1086
1090
  - [FromRecipe](docs/FromRecipe.md)
1087
1091
  - [Fund](docs/Fund.md)
1092
+ - [FundAmount](docs/FundAmount.md)
1088
1093
  - [FundConfiguration](docs/FundConfiguration.md)
1089
1094
  - [FundConfigurationProperties](docs/FundConfigurationProperties.md)
1090
1095
  - [FundConfigurationRequest](docs/FundConfigurationRequest.md)
1096
+ - [FundPreviousNAV](docs/FundPreviousNAV.md)
1091
1097
  - [FundProperties](docs/FundProperties.md)
1092
1098
  - [FundRequest](docs/FundRequest.md)
1093
1099
  - [FundShareClass](docs/FundShareClass.md)
1100
+ - [FundValuationPointData](docs/FundValuationPointData.md)
1094
1101
  - [FundingLeg](docs/FundingLeg.md)
1095
1102
  - [FundingLegOptions](docs/FundingLegOptions.md)
1096
1103
  - [Future](docs/Future.md)
@@ -1398,7 +1405,11 @@ Class | Method | HTTP request | Description
1398
1405
  - [PostingModuleResponse](docs/PostingModuleResponse.md)
1399
1406
  - [PostingModuleRule](docs/PostingModuleRule.md)
1400
1407
  - [PostingModuleRulesUpdatedResponse](docs/PostingModuleRulesUpdatedResponse.md)
1408
+ - [PreTradeConfiguration](docs/PreTradeConfiguration.md)
1401
1409
  - [Premium](docs/Premium.md)
1410
+ - [PreviousFundValuationPointData](docs/PreviousFundValuationPointData.md)
1411
+ - [PreviousNAV](docs/PreviousNAV.md)
1412
+ - [PreviousShareClassBreakdown](docs/PreviousShareClassBreakdown.md)
1402
1413
  - [PricingContext](docs/PricingContext.md)
1403
1414
  - [PricingModel](docs/PricingModel.md)
1404
1415
  - [PricingOptions](docs/PricingOptions.md)
@@ -1579,6 +1590,10 @@ Class | Method | HTTP request | Description
1579
1590
  - [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
1580
1591
  - [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
1581
1592
  - [SettlementSchedule](docs/SettlementSchedule.md)
1593
+ - [ShareClassAmount](docs/ShareClassAmount.md)
1594
+ - [ShareClassBreakdown](docs/ShareClassBreakdown.md)
1595
+ - [ShareClassData](docs/ShareClassData.md)
1596
+ - [ShareClassDetails](docs/ShareClassDetails.md)
1582
1597
  - [SideConfigurationData](docs/SideConfigurationData.md)
1583
1598
  - [SideConfigurationDataRequest](docs/SideConfigurationDataRequest.md)
1584
1599
  - [SideDefinition](docs/SideDefinition.md)
@@ -1672,6 +1687,7 @@ Class | Method | HTTP request | Description
1672
1687
  - [TriggerEvent](docs/TriggerEvent.md)
1673
1688
  - [TypedResourceId](docs/TypedResourceId.md)
1674
1689
  - [UnitSchema](docs/UnitSchema.md)
1690
+ - [UnitisationData](docs/UnitisationData.md)
1675
1691
  - [UnitsRatio](docs/UnitsRatio.md)
1676
1692
  - [UnmatchedHoldingMethod](docs/UnmatchedHoldingMethod.md)
1677
1693
  - [UpdateAmortisationRuleSetDetailsRequest](docs/UpdateAmortisationRuleSetDetailsRequest.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=M9woAUW08ZtwfxDhiZY0CE6lqoo3QLkyPYCVwaRVfMk,112276
1
+ lusid/__init__.py,sha256=DK7MQXQVc3LyFRUWNVJcJ6zM6-F-G3yoZK9wRipZWdY,113615
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
@@ -11,7 +11,7 @@ lusid/api/blocks_api.py,sha256=Gpm_8fKo6xRVmpN_1kkpUrrZp7RgL-cuWUkXCz88koI,43529
11
11
  lusid/api/calendars_api.py,sha256=tpLX1Tazzy-_HlFpnFxqwluJPWTzCWQzF_cP8xxZ-rk,126864
12
12
  lusid/api/chart_of_accounts_api.py,sha256=FhElAjmMguluXl8D-LZkEbrdYvxcpCVhhUlQcng4xSs,386384
13
13
  lusid/api/complex_market_data_api.py,sha256=51XMZq9VzRXOLJxxyqTor5Jbjm-64AeURDB78RQseSI,48558
14
- lusid/api/compliance_api.py,sha256=8tjiMMpUN4jGlFF9Ui6LkHOyr91FpH23F3l1q-zHnf0,140689
14
+ lusid/api/compliance_api.py,sha256=emRbgGqr0Eevwts8WWTDdc9NMkg6LaocMNlAzad5_B8,153085
15
15
  lusid/api/configuration_recipe_api.py,sha256=FxqzoH-8_iIxi84Nq3yMJO1ueNX8cATg-h9SMwvg2Zc,101713
16
16
  lusid/api/conventions_api.py,sha256=EFDtbR8rhb3sFkuNAh7r8ND0Mqj3BXf_54zYaUeMBiA,106475
17
17
  lusid/api/corporate_action_sources_api.py,sha256=zsB_oU6OmxQCRAa8tHxvrc_nLDYM1sqsXQt7GoAATv0,102152
@@ -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=zTVkeB_8R0K-mHNAp6n-mmbsdQFTLGQ4mL1flhQc8ms,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=g0_5oFHveza3kSXyQDwbIEbZeofj6FbyGgPctzg3Sow,106931
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
@@ -230,6 +231,7 @@ lusid/models/compliance_rule_result_v2.py,sha256=LjNimUWqoOQR7np1_WGtLxG92lUOb4p
230
231
  lusid/models/compliance_rule_template.py,sha256=3Bp2MCRKIWY4RBxsfAfwGtjt5JlFLllDQ11yeQglEBI,6358
231
232
  lusid/models/compliance_rule_upsert_request.py,sha256=xBJDzaTMJsoUltHJ3_qbBwGff5BH6R877MHepb01p8M,7163
232
233
  lusid/models/compliance_rule_upsert_response.py,sha256=XMXmAkYSvIBvV8w12TjvhIkCBNBtCzYA3OQ64zN7lJw,2503
234
+ lusid/models/compliance_run_configuration.py,sha256=8rP4EyJcv7fKrFPuvAD7JezkC7XqZR4siqUwMaAyxsM,2456
233
235
  lusid/models/compliance_run_info.py,sha256=8wPXKyXzX3Mu2UFZd84qI2c9Wl7nG2ihcFuU2k-UPpE,3437
234
236
  lusid/models/compliance_run_info_v2.py,sha256=z6OnjF92yy5bqqfJg3r4qJ7RgH_t7FIGBZJ8lMpX518,2703
235
237
  lusid/models/compliance_step.py,sha256=gnrckVEVPWDFYQDQs_4s7k1SWiAUvemXzwew0h2uzZU,3943
@@ -243,7 +245,8 @@ lusid/models/compliance_template_parameter.py,sha256=LWVk_yP-tYBkoUxKzqSozxnjeK8
243
245
  lusid/models/compliance_template_variation.py,sha256=mnbKZ78bbQyq7L3LtcXPT2DrymDvCIVR_pzDb4OQ0_Q,4961
244
246
  lusid/models/compliance_template_variation_dto.py,sha256=fWH4WbJjLPjpyb0p4_SVeRaVYyb22KOsthPo-sftggE,4300
245
247
  lusid/models/compliance_template_variation_request.py,sha256=UFy6md9GFHvKgH2GT0-Cwfg48pSvo2UtKcCYLFZG2js,4361
246
- lusid/models/component_rule.py,sha256=WMTPlx_YcDM5a51SJqF9N0WTJh4Sio2YFQqsJjgz9TM,2560
248
+ lusid/models/component_filter.py,sha256=lIRWmBzhjHiA3KOraTZ1jFbUBWR2bz5JUet9Kzx2N3I,2590
249
+ lusid/models/component_rule.py,sha256=Q9dzMqQiG290IicuNEZR0uJArD5V9UO_TZOjqya4Tlw,2318
247
250
  lusid/models/component_transaction.py,sha256=9q-Xj49CIIMWk7QZflkaunWUJAkHiKxaHqdc-owL_8Q,3645
248
251
  lusid/models/composite_breakdown.py,sha256=WfT-c2bvOmT9LP1zFI8V2cIWOLJ4LRsaLZH98IImZ8U,3350
249
252
  lusid/models/composite_breakdown_request.py,sha256=fjhlpBroC8ys0jwfglD-_HJlsDdp3mDIDmvdyD6llj8,5315
@@ -254,7 +257,7 @@ lusid/models/compounding.py,sha256=yfKEFwGOy8Nndk9IPo9sAfotNM9_bJTIa8b3huUymqw,5
254
257
  lusid/models/configuration_recipe.py,sha256=O9gOzlKxFhnnzMxZQwPEwc29wF9fPS86s771qWmcCnk,5894
255
258
  lusid/models/constant_volatility_surface.py,sha256=1l4eyD78UaUsyjkX7NhPTuGUYgJY-nXzs4ZACc0dQQs,5178
256
259
  lusid/models/constituents_adjustment_header.py,sha256=2wnnigKPOPttpRFJa8yzJspIhyfdLq_8_H5QLsWOQy0,3233
257
- lusid/models/contract_for_difference.py,sha256=eyxfU-0uZr3PsVPBNRyDDPkegsKPM5B30QQpxCRv4KM,7004
260
+ lusid/models/contract_for_difference.py,sha256=8kxB5x4t-FK-Cp1ODwJHTzKHprWLLATvStOXxNw95XE,7283
258
261
  lusid/models/corporate_action.py,sha256=L2jWWTX1qcCL4sxqJw9cp6xjjbGo1aezfHlt84TMRTg,4151
259
262
  lusid/models/corporate_action_source.py,sha256=n99ggLwqEUf2ik9Z882RIYVS29IZqI2LqYlPgOBF3zQ,5011
260
263
  lusid/models/corporate_action_transition.py,sha256=ZGFoyxH9IrTwlOWPzf7P81dsoRjrbUlYHwgNaeb7a_E,3508
@@ -409,18 +412,21 @@ lusid/models/flow_convention_name.py,sha256=HFTshKIRBvjLdmcd8FzM-6Jb6-dlq-yTOwjC
409
412
  lusid/models/flow_conventions.py,sha256=OJBFQ28_-Wp5VCQ_CXwLksvz--6kysJh3zUF8xM8ORE,10512
410
413
  lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yWzg2Mukl0A,6660
411
414
  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
415
+ lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
416
+ lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1879
417
+ lusid/models/fund_configuration.py,sha256=rZYEyTyXhq4kOXiAFLGO3shzvfZKN8CXdBpwsE_x8Bs,6754
414
418
  lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
415
- lusid/models/fund_configuration_request.py,sha256=HP-B75VqsIKbnjfEnFVKHQHjxspQWcNOeC8YPz5hOYQ,5106
419
+ lusid/models/fund_configuration_request.py,sha256=L7grtgaC97bf5rQ7IaJ4u-PRB6FrFW0kZVyXOh8smnM,5787
420
+ lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
416
421
  lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
417
- lusid/models/fund_request.py,sha256=h9dhzlamZhMN3LVzVfKrqIXi0tjoO6XSqi-oqrCvtD8,7865
422
+ lusid/models/fund_request.py,sha256=fBU3prGytCvKWfAzP0gHj4VUANarueKwB7r9evPoIEI,8345
418
423
  lusid/models/fund_share_class.py,sha256=06VL9vb5vKCEmNFQbKPmj_uvJjn9QAyk9WjdD5ICBAA,6623
424
+ lusid/models/fund_valuation_point_data.py,sha256=JbV3QXY-RW_ZleatER0FgXmG4nwdTEucBbjsUMD7unc,7546
419
425
  lusid/models/funding_leg.py,sha256=b_0D_GqQCPqOllNvb6VSqyjBO4H2v7YYefAj7joTsBI,7455
420
426
  lusid/models/funding_leg_options.py,sha256=_GxHVcvcsd96OaNcb7iHs43UUfrwVno_x2cNowUSwjw,3515
421
427
  lusid/models/future.py,sha256=9jcXTZJxaijpVAz-8-65Jv9yig4qYQEeU2z9oRdEPaU,9084
422
428
  lusid/models/future_expiry_event.py,sha256=88juc3yihAbsYpwMh3ZxrwrgU9C_piGTc_Z9YTbo-MI,5635
423
- lusid/models/futures_contract_details.py,sha256=crSsBLSWPR8R7gQiUC0XFsYG2GSQtlZIuTUcaJog8HE,7336
429
+ lusid/models/futures_contract_details.py,sha256=CjQVhrPcyBfyVdpob0UD8L5MM3velxwtYxFLyZlwKug,7903
424
430
  lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
425
431
  lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
426
432
  lusid/models/fx_forward.py,sha256=1_gRS1vvsE6Pm32Z-gWGYqPjprVv3mUYAmigGtVO0nA,8648
@@ -538,7 +544,7 @@ lusid/models/list_aggregation_response.py,sha256=VJR_hkvGitD_xVUwvAufhtQ5ibLI01M
538
544
  lusid/models/list_complex_market_data_with_meta_data_response.py,sha256=cniypfHR-ovUTyEFYlGpxUTfb_jI51TW_y0Q8SfS95o,3601
539
545
  lusid/models/loan_period.py,sha256=C8oJ0vYb4Z__hhB2MbZHcHy0GMI2RAoKBAwZ1E-7ZiI,2151
540
546
  lusid/models/lock_period_diary_entry_request.py,sha256=QlmA6zWLWuI0D5-97xg8_IdzaCTDnpWBHpOMYaL9vLI,3298
541
- lusid/models/lusid_instrument.py,sha256=hDbH0sqpWNJ4Z0rRL0kSurMLi9bYqWm006pfsuPnrDk,7537
547
+ lusid/models/lusid_instrument.py,sha256=WWj5q0fWiMx_YC-Wayn_kVr56_uQmIGQmNkGkhh6si0,7573
542
548
  lusid/models/lusid_problem_details.py,sha256=Y1yNxDwEJ-eP6m_5PsBAIFaJsmfmvqmwrdemWamss34,3844
543
549
  lusid/models/lusid_trade_ticket.py,sha256=cjiQkP4yJqjMnnnIC6O2mMPlC34enW9EtmuPMBRr7fs,9952
544
550
  lusid/models/lusid_unique_id.py,sha256=xZ2uBRFjQDmi7vcY2i7X8bc878gx8BMCIOIn2qeVO4Y,2137
@@ -548,15 +554,15 @@ lusid/models/mapping.py,sha256=iDaQpBRL0f0Q6sHePxs-vZi3dQPPVfUWLxFFfQ07QCM,4180
548
554
  lusid/models/mapping_rule.py,sha256=dsHfOokEp2HrX029E0JsTBmweNAvS9-RCugDDb04ZGc,4965
549
555
  lusid/models/market_context.py,sha256=1vSjCeaiosx6BdF5XbuVyFYXVZVyX3mrv_kEUCuOIA0,7596
550
556
  lusid/models/market_context_suppliers.py,sha256=njSyqndQ1zLVA2iyB8tU_ATeWtg4NqCuzkUsJGwYH_o,2514
551
- lusid/models/market_data_key_rule.py,sha256=Qd3z1R6LBQ_-cnyp1WQqfOiTr01Y1R01xb0SSiBwlZs,9275
557
+ lusid/models/market_data_key_rule.py,sha256=ewZvu_dANEIaW7hlNMc7mIa5-0f2aaQKWmWAbdOg92o,9455
552
558
  lusid/models/market_data_options.py,sha256=_BBEeqMCbfcmfGtD0fFr3z90kF3mhpsvNRBir1mImA0,3566
553
559
  lusid/models/market_data_options_type.py,sha256=NlFpXuMw8cVK5czQY0h0GJhjYP_wpPuOIpin_AzXKwM,697
554
560
  lusid/models/market_data_overrides.py,sha256=QuKrYw9r4rZjzeqltcnFffww0F5ZNiRpr8v15C95MLM,3921
555
- lusid/models/market_data_specific_rule.py,sha256=fnegd5MHEhSNn3fOX3H8YkGah7Y54iBfhEEbFXEcFLU,8280
561
+ lusid/models/market_data_specific_rule.py,sha256=6w6S9tOfZV-5HD5kAvcvCNHNCnSCO3vbkjb4ith9t4c,8460
556
562
  lusid/models/market_data_type.py,sha256=4NyCfdwiQjP1MZK_SovXB6IVrspTU56JhmxfSdNRweU,1583
557
563
  lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNrXZlwYywAk,801
558
564
  lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
559
- lusid/models/market_quote.py,sha256=ZibHoxhLJcdtZ5AgZhyv8HS-jXRdLs8bKHlvTmaZqwI,3145
565
+ lusid/models/market_quote.py,sha256=Ra6tOiimR6Rdf7pAESEWW2IMZG669jU8eNje8NepYZg,3325
560
566
  lusid/models/match_criterion.py,sha256=cnLfFgO9k05dH7ooGS7s3d8BvyJNuVMDUh3Yt-SPuec,3568
561
567
  lusid/models/maturity_event.py,sha256=ChjKP2EkCeAvBXHf9MEGB29d2mWBQsB7_mwM9BBKRCM,4776
562
568
  lusid/models/merger_event.py,sha256=kS1fnAOpon3F5x4QFPO5c0qnHXSofSr_dBbT5wR_KpU,10857
@@ -565,7 +571,7 @@ lusid/models/model_options.py,sha256=MaLJVMOfpgwL_ZLIIrLbLwpC1lhZKNkzMOGlFlVFgSM
565
571
  lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
566
572
  lusid/models/model_property.py,sha256=M8NkEirTngdA1ZPd0N3d4lr5-1vFMNF8HNW_ePHBMV4,3385
567
573
  lusid/models/model_schema.py,sha256=i2_Wq4yUjd8nfDnU1HA7WvnLQZQ71jc0oI1GrUk6m_8,3861
568
- lusid/models/model_selection.py,sha256=0Beg7CsWydF5zEhhdDGOlG7X9BC55beEauD98sYovPw,4086
574
+ lusid/models/model_selection.py,sha256=XfOXNyO6U0cLx3dU_VKYz16po7Cn1wGjPzdpmHl60Q8,4141
569
575
  lusid/models/move_orders_to_different_blocks_request.py,sha256=g93gGwV0TqDF1dYM-S9j96BdCySKNrlVG7jlon23P88,2568
570
576
  lusid/models/moved_order_to_different_block_response.py,sha256=21MpC1iuv21x3l3WxSOuTkPZveTT31hfcoiYNthUt3o,3162
571
577
  lusid/models/movement_type.py,sha256=TzwVWgA0Y9AYA_Zp1S-6FbLibKf8V5J5-GOaV3EraZQ,1221
@@ -723,9 +729,13 @@ lusid/models/posting_module_request.py,sha256=x6aq23t1GtSpg60mAe3gXTRBjgIkOVqUp4
723
729
  lusid/models/posting_module_response.py,sha256=HPPZHdC6hVr5F6ZHaZUW6s095XnCPDA_IamSkTaOMjQ,6104
724
730
  lusid/models/posting_module_rule.py,sha256=ts9EcdU97sCixCMSmZQuYTT1hkRm-sU_-wYK5FRVb8E,4632
725
731
  lusid/models/posting_module_rules_updated_response.py,sha256=qGQSPvvIjNJJr-F9YOXkQAEXYlsflzcaxMNzOX1tF3k,4288
732
+ lusid/models/pre_trade_configuration.py,sha256=OjyrngvMxxnF3Qf_a-YCF2Pe8URzV87s0WC3PsxcBVo,2371
726
733
  lusid/models/premium.py,sha256=R2eYbrUmKAmxdWdmWGuUqg78Hm07y1iVBW7IRu4C92I,2200
734
+ lusid/models/previous_fund_valuation_point_data.py,sha256=4uzpfU2DKzh_Rk5VufpsDNcxM_wT1vSBY-J53OLXFAA,2676
735
+ lusid/models/previous_nav.py,sha256=C9Iqas6Z2GeiuW7Wwm7E0dSxax0pUWpMk-rD7B1YxFY,2102
736
+ lusid/models/previous_share_class_breakdown.py,sha256=usEE_ZlKAXR805pSOd-PDlXCpobqyvKE_7l3p15eds0,2991
727
737
  lusid/models/pricing_context.py,sha256=E8B73sz2c6A2o4HykfbMMfaspv4F6gQfx4fjzDLr6EY,7264
728
- lusid/models/pricing_model.py,sha256=DqxFxGtRJHj3BIDdHqND5MwI9X3d1jh6cPc3hDkzuCk,1447
738
+ lusid/models/pricing_model.py,sha256=hQrGV0w4BhaIiRED3kW3I37UkRop05d3IGHHwyPoFq4,1487
729
739
  lusid/models/pricing_options.py,sha256=ueSekxM9_XWSVd7uVELUtY86w-ul8WnLJR2gtTQm264,7961
730
740
  lusid/models/processed_command.py,sha256=YJ13QMu5M7XCkOqabOvkh3d-w_7P_2VEgRkliLsjTn4,2970
731
741
  lusid/models/property_definition.py,sha256=lcFiMp5z94xW5QY_6hHfpKyxUXW8gCuLUhGcf_cPBfw,17322
@@ -757,8 +767,8 @@ lusid/models/quote_access_metadata_rule_id.py,sha256=qc2bySwq38ZvxuSW105zZehvRFW
757
767
  lusid/models/quote_dependency.py,sha256=1xlJfTJjjLVnN5lTY7JQLUT_5IPEUNtNaLUFfBjDC9E,4595
758
768
  lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
759
769
  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
770
+ lusid/models/quote_series_id.py,sha256=_YpNZz5Gr8Fglegkuj6hDmRZj6nngMrjrHb1HsajxGY,5914
771
+ lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
762
772
  lusid/models/raw_vendor_event.py,sha256=gj2rgb29Pyy-G8FCpQDiNJcXcr9NhtPX3UPb_2xPE4U,5590
763
773
  lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
764
774
  lusid/models/realised_gain_loss.py,sha256=SqOAkbqLzwVkwmV4V4kFRLB6n55CJJhIfSDVK7xRHvg,7190
@@ -904,6 +914,10 @@ lusid/models/set_share_class_instruments_request.py,sha256=v5sYOS9s9oZWnD6SlYZ41
904
914
  lusid/models/set_transaction_configuration_alias.py,sha256=FTa9WQPxzZYO6DguFirEwBB8yfg9ckl_rYeDq9e0wN8,2936
905
915
  lusid/models/set_transaction_configuration_source_request.py,sha256=Sz1Kp__LcFo1ubK2S7lf5_NTjFL9Ab23kHikaj8DWxQ,4226
906
916
  lusid/models/settlement_schedule.py,sha256=59PJAHeLK6_fxSRjQ7wGk4zUbyIMjZhiZ-RJ1aH22FY,2420
917
+ lusid/models/share_class_amount.py,sha256=l-3zCMzmy84d1c0co0t_DgXOCk8t2RKBZ1XljO1jOks,2133
918
+ lusid/models/share_class_breakdown.py,sha256=dJC6vIXKbmVHZec9P159OMZT_db6YNxHYdSmTLMKRMA,8351
919
+ lusid/models/share_class_data.py,sha256=dQp2IM-pzSazRdXT4aIHN3BsWiso360CemAwWmu_UH0,2903
920
+ lusid/models/share_class_details.py,sha256=dBbEwt4rC4zox8dzf0XiZQwJv_s8kSqgNWmXIqJTym4,4040
907
921
  lusid/models/side_configuration_data.py,sha256=iv4nyDEEAYA2TUfY-dlqOGwn-mft8qMGVQk6itgxqe4,3518
908
922
  lusid/models/side_configuration_data_request.py,sha256=qWt-UDjQbcoPpHCUpRwcSN8NFfcZ4TpHMn2dRuR3WVw,2842
909
923
  lusid/models/side_definition.py,sha256=GpAnmArPMxwMe_BHZVihoYi9-Dl8HbQJ3nW4QAxXXow,4149
@@ -913,7 +927,7 @@ lusid/models/simple_cash_flow_loan.py,sha256=9iHHvivjXERGxq5TlRj48zHzDmpjka83V11
913
927
  lusid/models/simple_instrument.py,sha256=Cerk4RI9xGwP59xF19u0ar6JVMqHcEqC9mAysPCIlps,6849
914
928
  lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
915
929
  lusid/models/spin_off_event.py,sha256=g-Xm433_Few87wFC_nG0FtCjCFQbk4rUn7fHCFugUzI,8534
916
- lusid/models/staged_modification.py,sha256=rwguOPa8tgKaObYiZ_fC8QogvxzV35PL3Jn7efFsBhg,8731
930
+ lusid/models/staged_modification.py,sha256=SMPrCbKed3JZ8Sv5qOzdCY_S41tA37PcO5jv2QZ7ij8,9179
917
931
  lusid/models/staged_modification_decision.py,sha256=IUIpOwYjk41vLP_nMWDzZgI354cCtM9L6Yrf-K_DP4s,3544
918
932
  lusid/models/staged_modification_decision_request.py,sha256=6PlH7coUQUIJe1-2GcwpatO3tpcqHIBelpgrd_BZ8qQ,2257
919
933
  lusid/models/staged_modification_effective_range.py,sha256=G9oChBwQ_358d41tVDab-j1dGqOwiaRj_wDSDJYcsIU,2256
@@ -949,11 +963,11 @@ lusid/models/trade_ticket_type.py,sha256=j7f2bfiA_cxaFtjZpT3Natl4BoaGAaEXF6E0ltE
949
963
  lusid/models/transaction.py,sha256=s_t93axEEHXHIFkmTCqeWWbJ0b2IuaP465yBvQGtK2w,11577
950
964
  lusid/models/transaction_configuration_data.py,sha256=BSHXnMn6TWaubn2zTxPvbRUOsRtGYb0N4sDNUcf1SaY,4318
951
965
  lusid/models/transaction_configuration_data_request.py,sha256=mypVKRfltmkG5NEUGqDDyBYdIir3S1nkYzGL8BwHWgo,4398
952
- lusid/models/transaction_configuration_movement_data.py,sha256=_reiT_ZkjGFvAzyuftXxFfJNJ3YIe0lLws9wFBPGmd8,7011
953
- lusid/models/transaction_configuration_movement_data_request.py,sha256=3o7WmlP4XNSjLfWWmlfcCsZSeRUFCRBdZERr-TnHYRk,6650
966
+ lusid/models/transaction_configuration_movement_data.py,sha256=ofaJZQOHloSpT4Y09Sgw-JtQq3RWNwkBl-JLMGg_yYo,7418
967
+ lusid/models/transaction_configuration_movement_data_request.py,sha256=Dw52ClN9G_Tln13YQuzW7DOP7mfpuFQ3h2E8F-HCVQ8,6713
954
968
  lusid/models/transaction_configuration_type_alias.py,sha256=YXhlJeoClTMcY0KmAfqGGV6mkYQFP2YF6B4PXOLjQt0,4750
955
969
  lusid/models/transaction_currency_and_amount.py,sha256=us7dfLcpX_55r_K3EjDeTha0k2NTDl0FkkWg9LhX6Lo,2524
956
- lusid/models/transaction_field_map.py,sha256=E55h7dpdc8NCMGrCX7-DQ0b4l0goXSGmPrtuBacCLzA,4580
970
+ lusid/models/transaction_field_map.py,sha256=hhb6KeyDpqY-8AFeI7sFIVk0PLqOR5qrQPyriX1njJ8,4591
957
971
  lusid/models/transaction_price.py,sha256=l1AuDGuIUFJ6dt-2P07qOC1ORPlD8fc6I39Xn1ZI0JE,2420
958
972
  lusid/models/transaction_price_and_type.py,sha256=SV4GDgkQ_04uMKmylEgrv8L1N3yMFnjgXH3QJ7Q1Y5w,2444
959
973
  lusid/models/transaction_price_type.py,sha256=w12kLCHQhbnSisOXJLsSmY8rBCUTLcGc5AHWhG_AS7w,743
@@ -975,7 +989,7 @@ lusid/models/transaction_template_specification.py,sha256=dggD7J8ZSUTznJddC_Sn65
975
989
  lusid/models/transaction_type.py,sha256=zcWUQPVY5JKEOzNWQls7TjTiKOB7QVY8iFh1zgJXYUc,5765
976
990
  lusid/models/transaction_type_alias.py,sha256=xL9k8kjgAcEPe5sfK8asHscvz7gLcAa6pC_eGgVvXlY,3532
977
991
  lusid/models/transaction_type_calculation.py,sha256=Re4rt0IuLxo1hgjDz-VyIgQhVat6w7Fh-DwUF19nYYs,2846
978
- lusid/models/transaction_type_movement.py,sha256=WYGZJzPCozznev3IBG8wQQlExufRDEU1wj240-REY5w,8354
992
+ lusid/models/transaction_type_movement.py,sha256=eG4MQrMi0P_ihxOcfsqPAnkYuOmwbho9xQDoAJWH2ro,8695
979
993
  lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
980
994
  lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
981
995
  lusid/models/transactions_reconciliations_response.py,sha256=ogcMW8W4vgIDqEdggwJDA0tH-SInrqIFCLved7SZ-VM,3083
@@ -997,6 +1011,7 @@ lusid/models/trial_balance_query_parameters.py,sha256=u9ivqLRFnZMsHpAqEIX7RFkK3n
997
1011
  lusid/models/trigger_event.py,sha256=m4PuFATY7h2ejIYglvgEZAUQmmRQMe6nbYoB7j90mj4,5748
998
1012
  lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW01PD8,3908
999
1013
  lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
1014
+ lusid/models/unitisation_data.py,sha256=SNaV2LP5zHqLol4huDJyIFYu1knhHdB9O75oUfWkJds,2550
1000
1015
  lusid/models/units_ratio.py,sha256=BaJI9h_cMLk7idXL55jRYnO2tf8MTItoejRDHseJbH4,2154
1001
1016
  lusid/models/unmatched_holding_method.py,sha256=FKe4xqhL8C8Stohy89gki7Zio2Jg85bWwo_-mm0tllM,870
1002
1017
  lusid/models/update_amortisation_rule_set_details_request.py,sha256=1mOChVtkpV6ALx17hx7khCeSL9yJThyXiMkrDCo_bNI,3127
@@ -1064,7 +1079,7 @@ lusid/models/upsert_valuation_point_request.py,sha256=7_wa5XPGbnaViZsKr5lEBIBmfI
1064
1079
  lusid/models/user.py,sha256=0lccLmhN2l5KyhvbEBYWp8LGpgIBOMYF_hgTGJniADE,2028
1065
1080
  lusid/models/valuation_point_data_query_parameters.py,sha256=vZq_o0zKM0Ez1BpNwoTqijrkLX8zE64UcufqEjKwL5o,2271
1066
1081
  lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEtl9uUk4jNvjf-WFk,2394
1067
- lusid/models/valuation_point_data_response.py,sha256=bogqziwJYXRcJZHO7oAyB6jAczu_Q1G2iqVtgQ-0YEs,5608
1082
+ lusid/models/valuation_point_data_response.py,sha256=oh_9KJWu7dLYtZbnFZCyUq95dBnPEpbH_K0QbNeoESY,7201
1068
1083
  lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
1069
1084
  lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
1070
1085
  lusid/models/valuations_reconciliation_request.py,sha256=X7NF_7du1RdtPW4i3ayn5OGC7GAfKsCdOT1QIB8DAfQ,5001
@@ -1094,6 +1109,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1094
1109
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1095
1110
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1096
1111
  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,,
1112
+ lusid_sdk-2.1.292.dist-info/METADATA,sha256=yiXJcAffwQKFDPdHAjghxvQep1pQ-6FGSZlvbnXo-sw,193452
1113
+ lusid_sdk-2.1.292.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1114
+ lusid_sdk-2.1.292.dist-info/RECORD,,