lusid-sdk 2.1.363__py3-none-any.whl → 2.1.386__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +24 -0
- lusid/api/__init__.py +2 -0
- lusid/api/group_reconciliations_api.py +378 -0
- lusid/api/workspace_api.py +40 -40
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +22 -0
- lusid/models/action_id.py +1 -1
- lusid/models/applicable_instrument_event.py +14 -2
- lusid/models/calendar.py +17 -2
- lusid/models/create_group_reconciliation_comparison_ruleset_request.py +97 -0
- lusid/models/custom_entity_definition.py +17 -2
- lusid/models/custom_entity_type.py +17 -2
- lusid/models/data_type.py +7 -1
- lusid/models/fee.py +1 -1
- lusid/models/fee_request.py +1 -1
- lusid/models/flow_conventions.py +1 -1
- lusid/models/fund_details.py +74 -0
- lusid/models/generated_event_diagnostics.py +75 -0
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +84 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +71 -0
- lusid/models/group_reconciliation_comparison_rule_string_value_map.py +73 -0
- lusid/models/group_reconciliation_comparison_rule_tolerance.py +71 -0
- lusid/models/group_reconciliation_comparison_ruleset.py +125 -0
- lusid/models/group_reconciliation_core_attribute_rule.py +95 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +71 -0
- lusid/models/index_convention.py +1 -1
- lusid/models/instrument_event_instruction.py +19 -4
- lusid/models/new_instrument.py +10 -2
- lusid/models/person.py +17 -2
- lusid/models/placement_update_request.py +6 -1
- lusid/models/transaction_diagnostics.py +71 -0
- lusid/models/valuation_point_data_response.py +21 -1
- {lusid_sdk-2.1.363.dist-info → lusid_sdk-2.1.386.dist-info}/METADATA +34 -21
- {lusid_sdk-2.1.363.dist-info → lusid_sdk-2.1.386.dist-info}/RECORD +35 -23
- {lusid_sdk-2.1.363.dist-info → lusid_sdk-2.1.386.dist-info}/WHEEL +0 -0
@@ -21,6 +21,7 @@ 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_details import FundDetails
|
24
25
|
from lusid.models.fund_valuation_point_data import FundValuationPointData
|
25
26
|
from lusid.models.link import Link
|
26
27
|
from lusid.models.share_class_data import ShareClassData
|
@@ -39,10 +40,13 @@ class ValuationPointDataResponse(BaseModel):
|
|
39
40
|
fees: Dict[str, FeeAccrual] = Field(..., description="DEPRECATED. Bucket of detail for any 'Fees' that have been charged in the selected period.")
|
40
41
|
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
42
|
previous_nav: Union[StrictFloat, StrictInt] = Field(..., alias="previousNav", description="DEPRECATED. The Net Asset Value of the Fund at the End of the last Period.")
|
43
|
+
fund_details: FundDetails = Field(..., alias="fundDetails")
|
42
44
|
fund_valuation_point_data: FundValuationPointData = Field(..., alias="fundValuationPointData")
|
43
45
|
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.")
|
46
|
+
valuation_point_code: Optional[StrictStr] = Field(None, alias="valuationPointCode", description="The code of the valuation point.")
|
47
|
+
previous_valuation_point_code: Optional[StrictStr] = Field(None, alias="previousValuationPointCode", description="The code of the previous valuation point.")
|
44
48
|
links: Optional[conlist(Link)] = None
|
45
|
-
__properties = ["href", "type", "status", "backout", "dealing", "pnL", "gav", "fees", "nav", "previousNav", "fundValuationPointData", "shareClassData", "links"]
|
49
|
+
__properties = ["href", "type", "status", "backout", "dealing", "pnL", "gav", "fees", "nav", "previousNav", "fundDetails", "fundValuationPointData", "shareClassData", "valuationPointCode", "previousValuationPointCode", "links"]
|
46
50
|
|
47
51
|
class Config:
|
48
52
|
"""Pydantic configuration"""
|
@@ -75,6 +79,9 @@ class ValuationPointDataResponse(BaseModel):
|
|
75
79
|
if self.fees[_key]:
|
76
80
|
_field_dict[_key] = self.fees[_key].to_dict()
|
77
81
|
_dict['fees'] = _field_dict
|
82
|
+
# override the default output from pydantic by calling `to_dict()` of fund_details
|
83
|
+
if self.fund_details:
|
84
|
+
_dict['fundDetails'] = self.fund_details.to_dict()
|
78
85
|
# override the default output from pydantic by calling `to_dict()` of fund_valuation_point_data
|
79
86
|
if self.fund_valuation_point_data:
|
80
87
|
_dict['fundValuationPointData'] = self.fund_valuation_point_data.to_dict()
|
@@ -97,6 +104,16 @@ class ValuationPointDataResponse(BaseModel):
|
|
97
104
|
if self.href is None and "href" in self.__fields_set__:
|
98
105
|
_dict['href'] = None
|
99
106
|
|
107
|
+
# set to None if valuation_point_code (nullable) is None
|
108
|
+
# and __fields_set__ contains the field
|
109
|
+
if self.valuation_point_code is None and "valuation_point_code" in self.__fields_set__:
|
110
|
+
_dict['valuationPointCode'] = None
|
111
|
+
|
112
|
+
# set to None if previous_valuation_point_code (nullable) is None
|
113
|
+
# and __fields_set__ contains the field
|
114
|
+
if self.previous_valuation_point_code is None and "previous_valuation_point_code" in self.__fields_set__:
|
115
|
+
_dict['previousValuationPointCode'] = None
|
116
|
+
|
100
117
|
# set to None if links (nullable) is None
|
101
118
|
# and __fields_set__ contains the field
|
102
119
|
if self.links is None and "links" in self.__fields_set__:
|
@@ -129,6 +146,7 @@ class ValuationPointDataResponse(BaseModel):
|
|
129
146
|
else None,
|
130
147
|
"nav": obj.get("nav"),
|
131
148
|
"previous_nav": obj.get("previousNav"),
|
149
|
+
"fund_details": FundDetails.from_dict(obj.get("fundDetails")) if obj.get("fundDetails") is not None else None,
|
132
150
|
"fund_valuation_point_data": FundValuationPointData.from_dict(obj.get("fundValuationPointData")) if obj.get("fundValuationPointData") is not None else None,
|
133
151
|
"share_class_data": dict(
|
134
152
|
(_k, ShareClassData.from_dict(_v))
|
@@ -136,6 +154,8 @@ class ValuationPointDataResponse(BaseModel):
|
|
136
154
|
)
|
137
155
|
if obj.get("shareClassData") is not None
|
138
156
|
else None,
|
157
|
+
"valuation_point_code": obj.get("valuationPointCode"),
|
158
|
+
"previous_valuation_point_code": obj.get("previousValuationPointCode"),
|
139
159
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
140
160
|
})
|
141
161
|
return _obj
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.386
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -247,6 +247,8 @@ Class | Method | HTTP request | Description
|
|
247
247
|
*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.
|
248
248
|
*FundsApi* | [**upsert_fee_properties**](docs/FundsApi.md#upsert_fee_properties) | **POST** /api/funds/{scope}/{code}/fees/{feeCode}/properties/$upsert | [EXPERIMENTAL] UpsertFeeProperties: Upsert Fee properties.
|
249
249
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
|
250
|
+
*GroupReconciliationsApi* | [**create_comparison_ruleset**](docs/GroupReconciliationsApi.md#create_comparison_ruleset) | **POST** /api/reconciliations/comparisonrulesets | [EXPERIMENTAL] CreateComparisonRuleset: Create a Group Reconciliation Comparison Ruleset
|
251
|
+
*GroupReconciliationsApi* | [**get_comparison_ruleset**](docs/GroupReconciliationsApi.md#get_comparison_ruleset) | **GET** /api/reconciliations/comparisonrulesets/{scope}/{code} | [EXPERIMENTAL] GetComparisonRuleset: Get a single Group Reconciliation Comparison Ruleset by scope and code
|
250
252
|
*InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
|
251
253
|
*InstrumentEventTypesApi* | [**delete_transaction_template**](docs/InstrumentEventTypesApi.md#delete_transaction_template) | **DELETE** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template
|
252
254
|
*InstrumentEventTypesApi* | [**get_transaction_template**](docs/InstrumentEventTypesApi.md#get_transaction_template) | **GET** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] GetTransactionTemplate: Get Transaction Template
|
@@ -573,26 +575,26 @@ Class | Method | HTTP request | Description
|
|
573
575
|
*TransactionPortfoliosApi* | [**upsert_transactions**](docs/TransactionPortfoliosApi.md#upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions | UpsertTransactions: Upsert transactions
|
574
576
|
*TranslationApi* | [**translate_instrument_definitions**](docs/TranslationApi.md#translate_instrument_definitions) | **POST** /api/translation/instrumentdefinitions | [EXPERIMENTAL] TranslateInstrumentDefinitions: Translate instruments
|
575
577
|
*TranslationApi* | [**translate_trade_tickets**](docs/TranslationApi.md#translate_trade_tickets) | **POST** /api/translation/tradetickets | [EXPERIMENTAL] TranslateTradeTickets: Translate trade ticket
|
576
|
-
*WorkspaceApi* | [**create_personal_item**](docs/WorkspaceApi.md#create_personal_item) | **POST** /api/workspaces/personal/{workspaceName}/items | [
|
577
|
-
*WorkspaceApi* | [**create_personal_workspace**](docs/WorkspaceApi.md#create_personal_workspace) | **POST** /api/workspaces/personal | [
|
578
|
-
*WorkspaceApi* | [**create_shared_item**](docs/WorkspaceApi.md#create_shared_item) | **POST** /api/workspaces/shared/{workspaceName}/items | [
|
579
|
-
*WorkspaceApi* | [**create_shared_workspace**](docs/WorkspaceApi.md#create_shared_workspace) | **POST** /api/workspaces/shared | [
|
580
|
-
*WorkspaceApi* | [**delete_personal_item**](docs/WorkspaceApi.md#delete_personal_item) | **DELETE** /api/workspaces/personal/{workspaceName}/items/{itemName} | [
|
581
|
-
*WorkspaceApi* | [**delete_personal_workspace**](docs/WorkspaceApi.md#delete_personal_workspace) | **DELETE** /api/workspaces/personal/{workspaceName} | [
|
582
|
-
*WorkspaceApi* | [**delete_shared_item**](docs/WorkspaceApi.md#delete_shared_item) | **DELETE** /api/workspaces/shared/{workspaceName}/items/{itemName} | [
|
583
|
-
*WorkspaceApi* | [**delete_shared_workspace**](docs/WorkspaceApi.md#delete_shared_workspace) | **DELETE** /api/workspaces/shared/{workspaceName} | [
|
584
|
-
*WorkspaceApi* | [**get_personal_item**](docs/WorkspaceApi.md#get_personal_item) | **GET** /api/workspaces/personal/{workspaceName}/items/{itemName} | [
|
585
|
-
*WorkspaceApi* | [**get_personal_workspace**](docs/WorkspaceApi.md#get_personal_workspace) | **GET** /api/workspaces/personal/{workspaceName} | [
|
586
|
-
*WorkspaceApi* | [**get_shared_item**](docs/WorkspaceApi.md#get_shared_item) | **GET** /api/workspaces/shared/{workspaceName}/items/{itemName} | [
|
587
|
-
*WorkspaceApi* | [**get_shared_workspace**](docs/WorkspaceApi.md#get_shared_workspace) | **GET** /api/workspaces/shared/{workspaceName} | [
|
588
|
-
*WorkspaceApi* | [**list_personal_items**](docs/WorkspaceApi.md#list_personal_items) | **GET** /api/workspaces/personal/{workspaceName}/items | [
|
589
|
-
*WorkspaceApi* | [**list_personal_workspaces**](docs/WorkspaceApi.md#list_personal_workspaces) | **GET** /api/workspaces/personal | [
|
590
|
-
*WorkspaceApi* | [**list_shared_items**](docs/WorkspaceApi.md#list_shared_items) | **GET** /api/workspaces/shared/{workspaceName}/items | [
|
591
|
-
*WorkspaceApi* | [**list_shared_workspaces**](docs/WorkspaceApi.md#list_shared_workspaces) | **GET** /api/workspaces/shared | [
|
592
|
-
*WorkspaceApi* | [**update_personal_item**](docs/WorkspaceApi.md#update_personal_item) | **PUT** /api/workspaces/personal/{workspaceName}/items/{itemName} | [
|
593
|
-
*WorkspaceApi* | [**update_personal_workspace**](docs/WorkspaceApi.md#update_personal_workspace) | **PUT** /api/workspaces/personal/{workspaceName} | [
|
594
|
-
*WorkspaceApi* | [**update_shared_item**](docs/WorkspaceApi.md#update_shared_item) | **PUT** /api/workspaces/shared/{workspaceName}/items/{itemName} | [
|
595
|
-
*WorkspaceApi* | [**update_shared_workspace**](docs/WorkspaceApi.md#update_shared_workspace) | **PUT** /api/workspaces/shared/{workspaceName} | [
|
578
|
+
*WorkspaceApi* | [**create_personal_item**](docs/WorkspaceApi.md#create_personal_item) | **POST** /api/workspaces/personal/{workspaceName}/items | [EXPERIMENTAL] CreatePersonalItem: Create a new item in a personal workspace.
|
579
|
+
*WorkspaceApi* | [**create_personal_workspace**](docs/WorkspaceApi.md#create_personal_workspace) | **POST** /api/workspaces/personal | [EXPERIMENTAL] CreatePersonalWorkspace: Create a new personal workspace.
|
580
|
+
*WorkspaceApi* | [**create_shared_item**](docs/WorkspaceApi.md#create_shared_item) | **POST** /api/workspaces/shared/{workspaceName}/items | [EXPERIMENTAL] CreateSharedItem: Create a new item in a shared workspace.
|
581
|
+
*WorkspaceApi* | [**create_shared_workspace**](docs/WorkspaceApi.md#create_shared_workspace) | **POST** /api/workspaces/shared | [EXPERIMENTAL] CreateSharedWorkspace: Create a new shared workspace.
|
582
|
+
*WorkspaceApi* | [**delete_personal_item**](docs/WorkspaceApi.md#delete_personal_item) | **DELETE** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EXPERIMENTAL] DeletePersonalItem: Delete an item from a personal workspace.
|
583
|
+
*WorkspaceApi* | [**delete_personal_workspace**](docs/WorkspaceApi.md#delete_personal_workspace) | **DELETE** /api/workspaces/personal/{workspaceName} | [EXPERIMENTAL] DeletePersonalWorkspace: Delete a personal workspace.
|
584
|
+
*WorkspaceApi* | [**delete_shared_item**](docs/WorkspaceApi.md#delete_shared_item) | **DELETE** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EXPERIMENTAL] DeleteSharedItem: Delete an item from a shared workspace.
|
585
|
+
*WorkspaceApi* | [**delete_shared_workspace**](docs/WorkspaceApi.md#delete_shared_workspace) | **DELETE** /api/workspaces/shared/{workspaceName} | [EXPERIMENTAL] DeleteSharedWorkspace: Delete a shared workspace.
|
586
|
+
*WorkspaceApi* | [**get_personal_item**](docs/WorkspaceApi.md#get_personal_item) | **GET** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EXPERIMENTAL] GetPersonalItem: Get a single personal workspace item.
|
587
|
+
*WorkspaceApi* | [**get_personal_workspace**](docs/WorkspaceApi.md#get_personal_workspace) | **GET** /api/workspaces/personal/{workspaceName} | [EXPERIMENTAL] GetPersonalWorkspace: Get a personal workspace.
|
588
|
+
*WorkspaceApi* | [**get_shared_item**](docs/WorkspaceApi.md#get_shared_item) | **GET** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EXPERIMENTAL] GetSharedItem: Get a single shared workspace item.
|
589
|
+
*WorkspaceApi* | [**get_shared_workspace**](docs/WorkspaceApi.md#get_shared_workspace) | **GET** /api/workspaces/shared/{workspaceName} | [EXPERIMENTAL] GetSharedWorkspace: Get a shared workspace.
|
590
|
+
*WorkspaceApi* | [**list_personal_items**](docs/WorkspaceApi.md#list_personal_items) | **GET** /api/workspaces/personal/{workspaceName}/items | [EXPERIMENTAL] ListPersonalItems: List the items in a personal workspace.
|
591
|
+
*WorkspaceApi* | [**list_personal_workspaces**](docs/WorkspaceApi.md#list_personal_workspaces) | **GET** /api/workspaces/personal | [EXPERIMENTAL] ListPersonalWorkspaces: List personal workspaces.
|
592
|
+
*WorkspaceApi* | [**list_shared_items**](docs/WorkspaceApi.md#list_shared_items) | **GET** /api/workspaces/shared/{workspaceName}/items | [EXPERIMENTAL] ListSharedItems: List the items in a shared workspace.
|
593
|
+
*WorkspaceApi* | [**list_shared_workspaces**](docs/WorkspaceApi.md#list_shared_workspaces) | **GET** /api/workspaces/shared | [EXPERIMENTAL] ListSharedWorkspaces: List shared workspaces.
|
594
|
+
*WorkspaceApi* | [**update_personal_item**](docs/WorkspaceApi.md#update_personal_item) | **PUT** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EXPERIMENTAL] UpdatePersonalItem: Update an item in a personal workspace.
|
595
|
+
*WorkspaceApi* | [**update_personal_workspace**](docs/WorkspaceApi.md#update_personal_workspace) | **PUT** /api/workspaces/personal/{workspaceName} | [EXPERIMENTAL] UpdatePersonalWorkspace: Update a personal workspace.
|
596
|
+
*WorkspaceApi* | [**update_shared_item**](docs/WorkspaceApi.md#update_shared_item) | **PUT** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EXPERIMENTAL] UpdateSharedItem: Update an item in a shared workspace.
|
597
|
+
*WorkspaceApi* | [**update_shared_workspace**](docs/WorkspaceApi.md#update_shared_workspace) | **PUT** /api/workspaces/shared/{workspaceName} | [EXPERIMENTAL] UpdateSharedWorkspace: Update a shared workspace.
|
596
598
|
|
597
599
|
|
598
600
|
<a id="documentation-for-models"></a>
|
@@ -797,6 +799,7 @@ Class | Method | HTTP request | Description
|
|
797
799
|
- [CreateDateRequest](docs/CreateDateRequest.md)
|
798
800
|
- [CreateDerivedPropertyDefinitionRequest](docs/CreateDerivedPropertyDefinitionRequest.md)
|
799
801
|
- [CreateDerivedTransactionPortfolioRequest](docs/CreateDerivedTransactionPortfolioRequest.md)
|
802
|
+
- [CreateGroupReconciliationComparisonRulesetRequest](docs/CreateGroupReconciliationComparisonRulesetRequest.md)
|
800
803
|
- [CreatePortfolioDetails](docs/CreatePortfolioDetails.md)
|
801
804
|
- [CreatePortfolioGroupRequest](docs/CreatePortfolioGroupRequest.md)
|
802
805
|
- [CreatePropertyDefinitionRequest](docs/CreatePropertyDefinitionRequest.md)
|
@@ -936,6 +939,7 @@ Class | Method | HTTP request | Description
|
|
936
939
|
- [FundConfiguration](docs/FundConfiguration.md)
|
937
940
|
- [FundConfigurationProperties](docs/FundConfigurationProperties.md)
|
938
941
|
- [FundConfigurationRequest](docs/FundConfigurationRequest.md)
|
942
|
+
- [FundDetails](docs/FundDetails.md)
|
939
943
|
- [FundPnlBreakdown](docs/FundPnlBreakdown.md)
|
940
944
|
- [FundPreviousNAV](docs/FundPreviousNAV.md)
|
941
945
|
- [FundProperties](docs/FundProperties.md)
|
@@ -968,6 +972,7 @@ Class | Method | HTTP request | Description
|
|
968
972
|
- [GeneralLedgerProfileMapping](docs/GeneralLedgerProfileMapping.md)
|
969
973
|
- [GeneralLedgerProfileRequest](docs/GeneralLedgerProfileRequest.md)
|
970
974
|
- [GeneralLedgerProfileResponse](docs/GeneralLedgerProfileResponse.md)
|
975
|
+
- [GeneratedEventDiagnostics](docs/GeneratedEventDiagnostics.md)
|
971
976
|
- [GetCdsFlowConventionsResponse](docs/GetCdsFlowConventionsResponse.md)
|
972
977
|
- [GetComplexMarketDataResponse](docs/GetComplexMarketDataResponse.md)
|
973
978
|
- [GetCounterpartyAgreementResponse](docs/GetCounterpartyAgreementResponse.md)
|
@@ -990,6 +995,13 @@ Class | Method | HTTP request | Description
|
|
990
995
|
- [GroupFilterStep](docs/GroupFilterStep.md)
|
991
996
|
- [GroupFilterStepRequest](docs/GroupFilterStepRequest.md)
|
992
997
|
- [GroupOfMarketDataKeyRules](docs/GroupOfMarketDataKeyRules.md)
|
998
|
+
- [GroupReconciliationAggregateAttributeRule](docs/GroupReconciliationAggregateAttributeRule.md)
|
999
|
+
- [GroupReconciliationAggregateComparisonRuleOperand](docs/GroupReconciliationAggregateComparisonRuleOperand.md)
|
1000
|
+
- [GroupReconciliationComparisonRuleStringValueMap](docs/GroupReconciliationComparisonRuleStringValueMap.md)
|
1001
|
+
- [GroupReconciliationComparisonRuleTolerance](docs/GroupReconciliationComparisonRuleTolerance.md)
|
1002
|
+
- [GroupReconciliationComparisonRuleset](docs/GroupReconciliationComparisonRuleset.md)
|
1003
|
+
- [GroupReconciliationCoreAttributeRule](docs/GroupReconciliationCoreAttributeRule.md)
|
1004
|
+
- [GroupReconciliationCoreComparisonRuleOperand](docs/GroupReconciliationCoreComparisonRuleOperand.md)
|
993
1005
|
- [GroupedResultOfAddressKey](docs/GroupedResultOfAddressKey.md)
|
994
1006
|
- [HoldingAdjustment](docs/HoldingAdjustment.md)
|
995
1007
|
- [HoldingAdjustmentWithDate](docs/HoldingAdjustmentWithDate.md)
|
@@ -1495,6 +1507,7 @@ Class | Method | HTTP request | Description
|
|
1495
1507
|
- [TransactionConfigurationMovementDataRequest](docs/TransactionConfigurationMovementDataRequest.md)
|
1496
1508
|
- [TransactionConfigurationTypeAlias](docs/TransactionConfigurationTypeAlias.md)
|
1497
1509
|
- [TransactionCurrencyAndAmount](docs/TransactionCurrencyAndAmount.md)
|
1510
|
+
- [TransactionDiagnostics](docs/TransactionDiagnostics.md)
|
1498
1511
|
- [TransactionFieldMap](docs/TransactionFieldMap.md)
|
1499
1512
|
- [TransactionPrice](docs/TransactionPrice.md)
|
1500
1513
|
- [TransactionPriceAndType](docs/TransactionPriceAndType.md)
|
@@ -1,5 +1,5 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
2
|
-
lusid/api/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=9g995bhr0CvKkMiq12Bnr5dPOfPQ3xtgd7UcumkKbV0,117624
|
2
|
+
lusid/api/__init__.py,sha256=PcSZQXr1WZ0bijnKFOIf_xpuAuCF6zMxQQZvMecw2U4,5824
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=fZRzR63xwAvWnwNUsSUNTfFNAmKGerPF50BEjG9utlA,31640
|
@@ -27,6 +27,7 @@ lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,4
|
|
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
29
|
lusid/api/funds_api.py,sha256=9XGZuq4hrZZyBoQUi6p-TLAgF4wfB2oRp0OGl95j8N4,215573
|
30
|
+
lusid/api/group_reconciliations_api.py,sha256=ZrXxb3PvHeXGFSnBtxn6USyGkbes5kSJc8ITVY9HFfc,20495
|
30
31
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
31
32
|
lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
|
32
33
|
lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
|
@@ -66,10 +67,10 @@ lusid/api/transaction_configuration_api.py,sha256=BVe83Sp6eRpzjpQPEx2jMEbo55Vu6p
|
|
66
67
|
lusid/api/transaction_fees_api.py,sha256=xVH3EPyc0clDSNivBO57PsKxaVNT3evVvPdfYWooyyM,64512
|
67
68
|
lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgDpVHQi2R9_E,558130
|
68
69
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
69
|
-
lusid/api/workspace_api.py,sha256=
|
70
|
+
lusid/api/workspace_api.py,sha256=GtjOpr7UDgtXa3KmlwmFX4LJEa5dg53qzTyfy-FY0d4,192167
|
70
71
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
71
72
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
72
|
-
lusid/configuration.py,sha256=
|
73
|
+
lusid/configuration.py,sha256=yI2o8crEaKMjiPZQF6BGJhxFgaLttvB6y02AT5ryrlA,14733
|
73
74
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
74
75
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
75
76
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
@@ -83,7 +84,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
83
84
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
84
85
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
85
86
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
86
|
-
lusid/models/__init__.py,sha256=
|
87
|
+
lusid/models/__init__.py,sha256=QsrIMgjg0EObJx-piQwI7KZqnNvPv3R5fSQaiP7jg2w,110768
|
87
88
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
88
89
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
89
90
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -104,7 +105,7 @@ lusid/models/account_properties.py,sha256=fqKIfQ7tbAwodW8tZu86JTapAW5lVNNMonB6F2
|
|
104
105
|
lusid/models/accounting_method.py,sha256=UC5QH3NF4X8MZoAxXfyb8HYDt4JghXoyFytj1Bx9zN4,981
|
105
106
|
lusid/models/accounts_upsert_response.py,sha256=qHHsFTkMqhIufYG3RBvXB1YimBluJREx-iq7bd2DL50,4120
|
106
107
|
lusid/models/accumulation_event.py,sha256=xGdpr6z0PJ7Zni_fMaPn3H4M303WpDQUPTtLJ6VU8II,6064
|
107
|
-
lusid/models/action_id.py,sha256=
|
108
|
+
lusid/models/action_id.py,sha256=NuJ7So7BAckiGCTpPdnwCmGVUEtsImy8r7PFLRYb6Ok,2057
|
108
109
|
lusid/models/add_business_days_to_date_request.py,sha256=AfWmdr91A1Wpf0yT6CEEymkHYLXYha5Lll3EXe8FDtE,2640
|
109
110
|
lusid/models/add_business_days_to_date_response.py,sha256=wWo01x8xabbdMWzv73T7nRNBsKi1LYXJWTSaj4VCnWs,2013
|
110
111
|
lusid/models/additional_payment.py,sha256=YrUygIdtiNQAMyek-TtBhOmKj2KJ3BiAd4HYztYQr9o,2534
|
@@ -140,7 +141,7 @@ lusid/models/amortisation_rule_set.py,sha256=ExFKfMCGVF2-MYZfT_GrCwgsP1aC8vc5R6H
|
|
140
141
|
lusid/models/annul_quotes_response.py,sha256=mYZSWeQx2veyirZnrWl2HWLB1nLYxqfLC-kAD87L2Qo,4347
|
141
142
|
lusid/models/annul_single_structured_data_response.py,sha256=8PLdLJ-9anIqCr8JYhYQnfwVvfEEMjY8euqfdvHTNKM,3328
|
142
143
|
lusid/models/annul_structured_data_response.py,sha256=m_PPmlTTJmHWbjwlFVOY4fRS8O1eL2K5ZZYLWyjcXJM,4499
|
143
|
-
lusid/models/applicable_instrument_event.py,sha256=
|
144
|
+
lusid/models/applicable_instrument_event.py,sha256=_S4HnxNFi2rZfhCuw5Fmx6CfZV4rt2KtGvENiql3PQE,6617
|
144
145
|
lusid/models/asset_class.py,sha256=yurc1IbYS3HCMRBncPFfIl8pBiYnt64MP4tiBYJ8usU,793
|
145
146
|
lusid/models/asset_leg.py,sha256=UyH91gd4MFYNtftvd0S1MvJmbtlKjg-BNJMQH1qSLPI,2435
|
146
147
|
lusid/models/barrier.py,sha256=NP7eTStjcFn5wV3KkKPnwCOjQpmbIp5aMm8rJmpwjmU,2745
|
@@ -174,7 +175,7 @@ lusid/models/bucketed_cash_flow_request.py,sha256=KQpdr91i4ZN3FGPsN5wseqb-_miMic
|
|
174
175
|
lusid/models/bucketed_cash_flow_response.py,sha256=Vmw1I1l-zrnqVDjReLKRJQD6i8MdD4q04sreJpyh0JQ,5611
|
175
176
|
lusid/models/bucketing_schedule.py,sha256=D72KfpglK3DnP0u3sUgsirw3UUkfHwpVST0pi2J0BXs,2100
|
176
177
|
lusid/models/calculation_info.py,sha256=ZdZp4VUza1yaBFDfPGZi6UHn4iy2N-pTbeVLdoNIcOI,2480
|
177
|
-
lusid/models/calendar.py,sha256=
|
178
|
+
lusid/models/calendar.py,sha256=nPe7TTvz9JRzeLcKae3K9HcWpDiXEJ_Kj4HL5fUIjQw,4661
|
178
179
|
lusid/models/calendar_date.py,sha256=CtQHbrmTnJdrjtVTL5AWd6rYn6bl5rtPi1-Lm5KFEUE,3688
|
179
180
|
lusid/models/calendar_dependency.py,sha256=XYN9AYoLnwuL234DkyDbXArsWalMIdG8U2iU_3dBXrY,3871
|
180
181
|
lusid/models/cancel_orders_response.py,sha256=dbef36DqyiejdxVA9NwzQ5e0DGT9g7IfA4s6ZpfM4Xg,6033
|
@@ -283,6 +284,7 @@ lusid/models/create_data_type_request.py,sha256=E4Ju3BNYIU23RmE0naixPbKYDRiKhRkm
|
|
283
284
|
lusid/models/create_date_request.py,sha256=BewoN8Nijcbuc2SKo40yMbGVFo9pdaeinGlZYFrQ1Aw,4785
|
284
285
|
lusid/models/create_derived_property_definition_request.py,sha256=D-AWs0ttNMr05keE1UZMXmfn3qtpeNCKEH4RHRMUmWg,7961
|
285
286
|
lusid/models/create_derived_transaction_portfolio_request.py,sha256=-1qXjL1oPZkKKcJ48WffN8zSySEO_00oHZkdD6ix2Cc,10351
|
287
|
+
lusid/models/create_group_reconciliation_comparison_ruleset_request.py,sha256=foZ8NM0z_xNo3x6rX-Tp9m409o3BoeLkEsaYhHuMbAs,4592
|
286
288
|
lusid/models/create_portfolio_details.py,sha256=yn9QqByAqH1RLx3lDnzr5PYj-y0xihxLzBYhhCRRq8A,2364
|
287
289
|
lusid/models/create_portfolio_group_request.py,sha256=sRqA38fZ0Zj7Olc0fnCQnFliDBlQm-tjGp0mqtl-u9E,6132
|
288
290
|
lusid/models/create_property_definition_request.py,sha256=i0vhBYHlZzmZJ8c-li7PJJwQNvrE7b5uyDqO_lnDPhQ,9439
|
@@ -310,21 +312,21 @@ lusid/models/custodian_account.py,sha256=u12g4jvcWG-ueWSpbBBBfpjmp09ehY3wEXcORQI
|
|
310
312
|
lusid/models/custodian_account_properties.py,sha256=733uiIZZOx86tQVcX0zfb6-HqF6DXKy5w4hl-9T7uSU,4363
|
311
313
|
lusid/models/custodian_account_request.py,sha256=wDKC0ANlxtwCPpiuCTD1BTDrogZ5J0DanGAe3-RIVkI,6691
|
312
314
|
lusid/models/custodian_accounts_upsert_response.py,sha256=QWLhQmLlgBACAeMyQjH8wy3TNJsYTvJIsHA8DFGErZc,4382
|
313
|
-
lusid/models/custom_entity_definition.py,sha256=
|
315
|
+
lusid/models/custom_entity_definition.py,sha256=m3htjoGRmaDZ7jD4YTB8QYd-2zed4xGu1zCRvGHp38w,5324
|
314
316
|
lusid/models/custom_entity_definition_request.py,sha256=sHJ-6k98L7uYmPkX-tsYzQVoj6VlEZIY1kc0VROus4o,3948
|
315
317
|
lusid/models/custom_entity_field.py,sha256=flLmIgh_AJ5k6Vpv7KSf8N9Q6oUBAc8L7fIWUoav0dU,3396
|
316
318
|
lusid/models/custom_entity_field_definition.py,sha256=ctumqUYr9FRlgHxToIPz5tQNsg0qbq_YBSBIMqQnuM4,3579
|
317
319
|
lusid/models/custom_entity_id.py,sha256=MRtoy-TZk6xFuzVZ4dqKD_hu5y3QvgH9qCtT3rNQq54,4569
|
318
320
|
lusid/models/custom_entity_request.py,sha256=cLM9X0a93DMbHU9mB4DuVmkM6W2d4jkL-MyCXK4aEMM,3676
|
319
321
|
lusid/models/custom_entity_response.py,sha256=rx2hMowz2pE3MwaI0ccWvfwmqj11DKb8HPBWDAudy-s,6028
|
320
|
-
lusid/models/custom_entity_type.py,sha256=
|
322
|
+
lusid/models/custom_entity_type.py,sha256=aBRlsHz6dE5tBgrARVq30SSidEFOeHS1-yITrHLkWLU,5282
|
321
323
|
lusid/models/cut_label_definition.py,sha256=DWPBT_v3b-cW0xHujZEZrI_RdYdeRgEZZJjQT5arzvU,4905
|
322
324
|
lusid/models/cut_local_time.py,sha256=lc-e9dtiywFfz6M7u3DEiur0VFfIV6hsAffzMbTC99g,1895
|
323
325
|
lusid/models/data_definition.py,sha256=Qec5QcARQS0eU7l2ffhCKirfcPg1aQD-YRH-C0S-HcU,5164
|
324
326
|
lusid/models/data_map_key.py,sha256=C5B8fN4pTsO1DOGwiBrzudP96Mn9FHn8OLpjA6rLfLc,3407
|
325
327
|
lusid/models/data_mapping.py,sha256=Is0cRnq2bDOXbx6SSheCH4diqFxNcsobCpIv34B4TLc,3637
|
326
328
|
lusid/models/data_scope.py,sha256=p-8zVk5vyLUzWERyDPgmBMkYMwKTDdM-ShGKwAFJ2Ko,2324
|
327
|
-
lusid/models/data_type.py,sha256=
|
329
|
+
lusid/models/data_type.py,sha256=13WWtRl5jWGlqbQ0g5PFxAKsUO_EQuzT0fCefNHZhAI,8336
|
328
330
|
lusid/models/data_type_entity.py,sha256=6Bwf9syJbtMUm1BSTLlL1p0Birq6rCAqy7wCQ0qrmGw,6677
|
329
331
|
lusid/models/data_type_summary.py,sha256=vxRqXJKBcXMJmlLKTxRcG4F4zv2eFVfPl6q6hFGsyPQ,6616
|
330
332
|
lusid/models/data_type_value_range.py,sha256=5YSqhwEsjFS9_0UpjmiTra9NDWAi0Bp8ZMS62hBlYlo,722
|
@@ -390,10 +392,10 @@ lusid/models/exercise_event.py,sha256=rnHT7hJuBRJ-YpLTjM6ogybpo9H9CrYPqH_ERC04Kn
|
|
390
392
|
lusid/models/exotic_instrument.py,sha256=S_6ClvoShzX-aMizXUufaQqpZ0aNSBQdRL8-r-DeFnA,5776
|
391
393
|
lusid/models/expanded_group.py,sha256=e1fIiusdlI_VtjJlF4g5O_yg6A_5VDOg2LaW94CUyJU,5931
|
392
394
|
lusid/models/expiry_event.py,sha256=PBBhGilyV2qpy-ujkEvk21Wo290XTt_8SIiV3AfSCvE,4872
|
393
|
-
lusid/models/fee.py,sha256=
|
395
|
+
lusid/models/fee.py,sha256=jRnyJyHwVxLiL6lD9HE8rEUfPqh79u9Tf7bXRgJVq6I,10676
|
394
396
|
lusid/models/fee_accrual.py,sha256=4u5DYJpuu0mwhpXafCRA1mHCdDhNMjwpuTMllxUiqkI,4319
|
395
397
|
lusid/models/fee_properties.py,sha256=Q92whmRw6aIwyxsgLVF9vntTY5WLwtrDdJMw9sSNoEQ,4232
|
396
|
-
lusid/models/fee_request.py,sha256=
|
398
|
+
lusid/models/fee_request.py,sha256=WlFJe3HS402opEwJHkktcw3-xRlmVHC8wa8IHSOCxZg,9134
|
397
399
|
lusid/models/fee_rule.py,sha256=Ez0GUE-1FlzEO8VF1IbH3p2I6gjMaQ6arWzo3VCyi5Q,6070
|
398
400
|
lusid/models/fee_rule_upsert_request.py,sha256=0s31dKcYP1kUfOdeuwqbCTxNL6VQ42ryi_QPzayIrXw,6166
|
399
401
|
lusid/models/fee_rule_upsert_response.py,sha256=PH0YLPebZM42YRxgoUXYoP6aDdMuDnw7wBAU_VYCwuE,3144
|
@@ -414,7 +416,7 @@ lusid/models/flexible_loan.py,sha256=qjH8S0jCT5Z3HkJ-iErrZ-npGaZmmRFni6sAl7tNUwU
|
|
414
416
|
lusid/models/float_schedule.py,sha256=auQ1P6MswaZ8R-uf7BxCmZ2gQOPP7D6J2DLRweI-EBs,9638
|
415
417
|
lusid/models/floating_leg.py,sha256=lv8NtyAh1bUg4MsAE77UtvoFGVUCYUA4g26AoB8rIYc,7629
|
416
418
|
lusid/models/flow_convention_name.py,sha256=HFTshKIRBvjLdmcd8FzM-6Jb6-dlq-yTOwjCw0p2ZME,2813
|
417
|
-
lusid/models/flow_conventions.py,sha256=
|
419
|
+
lusid/models/flow_conventions.py,sha256=_3PB4nvRgtzSXdhZqrPXU7yTIRxyNaJKLG6zF90-GZg,10525
|
418
420
|
lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yWzg2Mukl0A,6660
|
419
421
|
lusid/models/from_recipe.py,sha256=paSou6poZf5CHkswKhZXc8jXmVcxj7s7kJXRw4ucbfQ,2261
|
420
422
|
lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
|
@@ -422,6 +424,7 @@ lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1
|
|
422
424
|
lusid/models/fund_configuration.py,sha256=lVNLZ9bxEAKWxm119GI1fHhEdvsrB5C8zHr9u67_Hlg,6614
|
423
425
|
lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
|
424
426
|
lusid/models/fund_configuration_request.py,sha256=jNcDedVJHjGhJwrGOfQOJii01MAQuOGbdl2Trb0p-uc,5636
|
427
|
+
lusid/models/fund_details.py,sha256=5VcFaIfA7FyX0tB9kOkDKYiHxR-ms6CPTn_T2SotxkI,2176
|
425
428
|
lusid/models/fund_pnl_breakdown.py,sha256=FVWePhLbtAjdikBOG3yipSUD4fIbNnmsM7PsOe1cL4w,4421
|
426
429
|
lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
|
427
430
|
lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
|
@@ -454,6 +457,7 @@ lusid/models/fx_vol_surface_data.py,sha256=CGbt6Q3GfCb9D7fTbtIox10VaniUbIJvpjhWW
|
|
454
457
|
lusid/models/general_ledger_profile_mapping.py,sha256=Xkb6C1XPmRklLe7aAPAxW9oRldVYP5UngyRpyztkQOo,2723
|
455
458
|
lusid/models/general_ledger_profile_request.py,sha256=gvLuYHzNU7dsAeMEocGgNI7tZu_R25v4w0DFGLEs2rw,4780
|
456
459
|
lusid/models/general_ledger_profile_response.py,sha256=qsjlsbDnmi_jnYSECMo_3_08Lrj7_2PF9VCUr4Lbe_I,6771
|
460
|
+
lusid/models/generated_event_diagnostics.py,sha256=lpu6UTFppoTMoc0t-0nZ4Z2LvYlgsrWQ8-RjfxvKxbY,2437
|
457
461
|
lusid/models/get_cds_flow_conventions_response.py,sha256=JfFQu0tTc96cGLq_nue-1dGVw6Dz8cf-a15ozit4r44,4355
|
458
462
|
lusid/models/get_complex_market_data_response.py,sha256=8U1-4kqld1OJk9vfcTh6_VvTpiwjr1TuSUquxow555w,4940
|
459
463
|
lusid/models/get_counterparty_agreement_response.py,sha256=AlVRH5OF3kL9jhhwyuuTNyJmADS1h2q1gMg_aL0H_J4,4386
|
@@ -476,6 +480,13 @@ lusid/models/group_filter_predicate_compliance_parameter.py,sha256=qCPIIFwAGVIRf
|
|
476
480
|
lusid/models/group_filter_step.py,sha256=24lO3wqrUBMlNy9cpf0RYUGn7sFVEVI3DZLI0m9CBYQ,4100
|
477
481
|
lusid/models/group_filter_step_request.py,sha256=Z-XinYGsrZ3CsXsACxWNTh2-qYfe3nEZ9gMDvch8QS4,3771
|
478
482
|
lusid/models/group_of_market_data_key_rules.py,sha256=CX0B47yMarl4PKINWsSMrjxbK7_inN5fpdgFx7Cilag,3322
|
483
|
+
lusid/models/group_reconciliation_aggregate_attribute_rule.py,sha256=cKIbwYb_2nvQNLq38_ENXi61Tnj7FRPOj44peaAytXc,3337
|
484
|
+
lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py,sha256=gy8IHtUbyY9wzBTfClnze0wjTCa688-P4HW_LCiUTf4,2403
|
485
|
+
lusid/models/group_reconciliation_comparison_rule_string_value_map.py,sha256=C7eW8nYH-4vn6eRYtHnqBwkeqNhyRzZbVra3mgXgX9o,2587
|
486
|
+
lusid/models/group_reconciliation_comparison_rule_tolerance.py,sha256=Oh_mqd8XLajkdm_wKfaF0f4kyM_bg6uSY_n86AamFDE,2426
|
487
|
+
lusid/models/group_reconciliation_comparison_ruleset.py,sha256=E6IdNak2Q1unnRyoAMuiGWda3lA24qjZodR8YxNMCzI,5938
|
488
|
+
lusid/models/group_reconciliation_core_attribute_rule.py,sha256=9M8LttS-m3pJ9-pKldVggCH2CGj56BGCOPqX7pxVWkc,4297
|
489
|
+
lusid/models/group_reconciliation_core_comparison_rule_operand.py,sha256=i456-tzUzEQHBrPaFkOj48xMUtch5PHh85Hm0InB80A,2363
|
479
490
|
lusid/models/grouped_result_of_address_key.py,sha256=0QJiqtjI9E1HAVTk7z-djloCLgmBzmPo4F89lPnDGRM,3114
|
480
491
|
lusid/models/holding_adjustment.py,sha256=r1aezT3lh-Gk0DED9Oost7ZDjYUHPd8kNzIayfTU3EM,6451
|
481
492
|
lusid/models/holding_adjustment_with_date.py,sha256=NYeZyehQe5lE7G0Yh0nukm236WUHgrTjcCI-wpIwCMo,6726
|
@@ -486,7 +497,7 @@ lusid/models/holdings_adjustment_header.py,sha256=FdTXNCI6OtVO4HnLTn74ljfZee8rXp
|
|
486
497
|
lusid/models/i_unit_definition_dto.py,sha256=yevE4hOnEJWxBjQYp5sff-FsCQFevSwiUd1WpRrapEg,3420
|
487
498
|
lusid/models/id_selector_definition.py,sha256=oYzv0rNBaEPZytmba04CtVbj6JAFQzXFkkA_wOFXAKc,3158
|
488
499
|
lusid/models/identifier_part_schema.py,sha256=xaKdKilcunuPsGDsAh6Ma4dTTeecBJyoH0rOL6Q5mcM,3083
|
489
|
-
lusid/models/index_convention.py,sha256=
|
500
|
+
lusid/models/index_convention.py,sha256=Ai1wtctLbRe9zzYq4VF5qW1xfdC_QCceMdKWffZ-E4I,5936
|
490
501
|
lusid/models/index_model_options.py,sha256=j9Zsow2gcKdYIbn2e3I1Hl5rP3kBjE4-0G4LR7Y76jo,3707
|
491
502
|
lusid/models/index_projection_dependency.py,sha256=gRuKjM__ARZvSrD3OHJJB5DIVTBseEvSPFe-L-UFJdE,5043
|
492
503
|
lusid/models/industry_classifier.py,sha256=hIckPWfHRyzkb7FaLvMfxOc8HizmWjGsr7PWjxCpXzg,2860
|
@@ -510,7 +521,7 @@ lusid/models/instrument_entity.py,sha256=Rb9jT5z_oGK9fiKWjuU6Xi6HnYZVa6gbaFA35KC
|
|
510
521
|
lusid/models/instrument_event.py,sha256=IzFtlJMZV2GcNnLiVbScTfOrF3KlqGKlZQJcUxHtGp0,7721
|
511
522
|
lusid/models/instrument_event_configuration.py,sha256=igoNv4Dvea9arqNFQXuwV_NcDUD0ZmeJ5b8_YKOGWyY,2797
|
512
523
|
lusid/models/instrument_event_holder.py,sha256=kbrQ_yd4X9THZo4oLdvB3HeUwJSmeVpOoIOBUy1o7fs,6994
|
513
|
-
lusid/models/instrument_event_instruction.py,sha256=
|
524
|
+
lusid/models/instrument_event_instruction.py,sha256=dNjk_Z04hC303eClGP6b7VFRPjCvCx0dMDqAJ0OmD5k,6179
|
514
525
|
lusid/models/instrument_event_instruction_request.py,sha256=uDTvxy3TrTjrLCBl5G-zDEBWuSRYwtXJ_Bzys3NyuH0,3639
|
515
526
|
lusid/models/instrument_event_instructions_response.py,sha256=Wr4XI1bNMijF7h1COCze7QXUCbl-nc8fQ3ZTNFGZFGE,3984
|
516
527
|
lusid/models/instrument_event_type.py,sha256=GISfL8YHpvnnmWYIQniuEl4PTPLJYq45WSAN7ImAPGM,1956
|
@@ -582,7 +593,7 @@ lusid/models/move_orders_to_different_blocks_request.py,sha256=g93gGwV0TqDF1dYM-
|
|
582
593
|
lusid/models/moved_order_to_different_block_response.py,sha256=21MpC1iuv21x3l3WxSOuTkPZveTT31hfcoiYNthUt3o,3162
|
583
594
|
lusid/models/movement_type.py,sha256=TzwVWgA0Y9AYA_Zp1S-6FbLibKf8V5J5-GOaV3EraZQ,1221
|
584
595
|
lusid/models/multi_currency_amounts.py,sha256=Fb0nWODc38RqFoMI0wP8QrrvvAZ6gF-Ikk7_i42cSVI,2089
|
585
|
-
lusid/models/new_instrument.py,sha256
|
596
|
+
lusid/models/new_instrument.py,sha256=-_mv3ofZyGZrJ6no8WKe4Cjaqnol5iJVk7U2uoCC3nU,3640
|
586
597
|
lusid/models/next_value_in_sequence_response.py,sha256=2nckzenNQTESZqi7Yd5ZQfr3aHn-5o77E9D93yOtMnQ,2718
|
587
598
|
lusid/models/numeric_comparison_type.py,sha256=WGvpUP3x3ZPAuDiZjfQquJU6GoqIpubmm5J8mBha698,772
|
588
599
|
lusid/models/opaque_dependency.py,sha256=Ht0hyAe6RncSF7vqTkGIg-YAycmNarb9ipyrlha_t_M,3778
|
@@ -703,12 +714,12 @@ lusid/models/period_diary_entries_reopened_response.py,sha256=okc0J9Gkugmu56XDmD
|
|
703
714
|
lusid/models/period_type.py,sha256=oYKJl_sl6LvyK9jRvywZebEo22_-8x5qmSp6T5X9Iow,711
|
704
715
|
lusid/models/perpetual_entity_state.py,sha256=laZ8FCkiqDXCY8ZVpXsfNz97cJDzFO8uVW2B5NdD_zU,713
|
705
716
|
lusid/models/perpetual_property.py,sha256=tU3TKgMwyIfDLv6qQrjfXmMg-7HAOTUZ844lBwtkkks,2359
|
706
|
-
lusid/models/person.py,sha256=
|
717
|
+
lusid/models/person.py,sha256=zZawAmtOn9uGcgSHfEMtDdI7YFJynqmersQPru9Dkqg,7356
|
707
718
|
lusid/models/place_blocks_request.py,sha256=RE2xCyRSQSV8wkzYvqF54fyMYi-FdoGqnqJnTVPA5sg,2414
|
708
719
|
lusid/models/placement.py,sha256=5kJMz_9t07KT3NFF2Pdsq93cozl4yvNcxpyv9o5ZmRA,9106
|
709
720
|
lusid/models/placement_request.py,sha256=qg7Yf6EQeqtC1l7lZ18_kFiGiNjBcrzMlScOWWaGkWM,7870
|
710
721
|
lusid/models/placement_set_request.py,sha256=hkljmDDqllEbAjb7J0QAp_fyDKsizX8T9x4n1UBFCmU,2672
|
711
|
-
lusid/models/placement_update_request.py,sha256=
|
722
|
+
lusid/models/placement_update_request.py,sha256=9fS4NW-JtFLZcztHgp_nOG300FfTtC34GpKj60VJc_E,5024
|
712
723
|
lusid/models/portfolio.py,sha256=iwGyrMzX9UGV3MsCxWI21vCiEja4To78XvP0qv8ExkY,12919
|
713
724
|
lusid/models/portfolio_cash_flow.py,sha256=Apnb2tfP3bJrBjhH69OLwiAOvn7lApH791owxr1wC8A,8997
|
714
725
|
lusid/models/portfolio_cash_ladder.py,sha256=cZHdUI-PZuLYXlQDxcA9zCTRPX_cHZy0-qHng9bRggU,5462
|
@@ -981,6 +992,7 @@ lusid/models/transaction_configuration_movement_data.py,sha256=ofaJZQOHloSpT4Y09
|
|
981
992
|
lusid/models/transaction_configuration_movement_data_request.py,sha256=Dw52ClN9G_Tln13YQuzW7DOP7mfpuFQ3h2E8F-HCVQ8,6713
|
982
993
|
lusid/models/transaction_configuration_type_alias.py,sha256=YXhlJeoClTMcY0KmAfqGGV6mkYQFP2YF6B4PXOLjQt0,4750
|
983
994
|
lusid/models/transaction_currency_and_amount.py,sha256=us7dfLcpX_55r_K3EjDeTha0k2NTDl0FkkWg9LhX6Lo,2524
|
995
|
+
lusid/models/transaction_diagnostics.py,sha256=1cmUNpZGY-ocwpfXXxqn5gVS9_HCJIFsXOCT6XLNyeU,2226
|
984
996
|
lusid/models/transaction_field_map.py,sha256=hhb6KeyDpqY-8AFeI7sFIVk0PLqOR5qrQPyriX1njJ8,4591
|
985
997
|
lusid/models/transaction_price.py,sha256=l1AuDGuIUFJ6dt-2P07qOC1ORPlD8fc6I39Xn1ZI0JE,2420
|
986
998
|
lusid/models/transaction_price_and_type.py,sha256=SV4GDgkQ_04uMKmylEgrv8L1N3yMFnjgXH3QJ7Q1Y5w,2444
|
@@ -1094,7 +1106,7 @@ lusid/models/upsert_valuation_point_request.py,sha256=7_wa5XPGbnaViZsKr5lEBIBmfI
|
|
1094
1106
|
lusid/models/user.py,sha256=0lccLmhN2l5KyhvbEBYWp8LGpgIBOMYF_hgTGJniADE,2028
|
1095
1107
|
lusid/models/valuation_point_data_query_parameters.py,sha256=vZq_o0zKM0Ez1BpNwoTqijrkLX8zE64UcufqEjKwL5o,2271
|
1096
1108
|
lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEtl9uUk4jNvjf-WFk,2394
|
1097
|
-
lusid/models/valuation_point_data_response.py,sha256=
|
1109
|
+
lusid/models/valuation_point_data_response.py,sha256=lTlIU9aPQf80h-RrU6zCzS3GQBQ_ryC7O0uc2dFo8VA,8885
|
1098
1110
|
lusid/models/valuation_point_overview.py,sha256=Z4GZTneHZBbQkdHj7JaEhILqhKkMbJDaJD6UwEFNWSs,5720
|
1099
1111
|
lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
|
1100
1112
|
lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
|
@@ -1131,6 +1143,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1131
1143
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1132
1144
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1133
1145
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
1134
|
-
lusid_sdk-2.1.
|
1135
|
-
lusid_sdk-2.1.
|
1136
|
-
lusid_sdk-2.1.
|
1146
|
+
lusid_sdk-2.1.386.dist-info/METADATA,sha256=pSmq91ZZCcbx-C70Xp6wqHu4grA0Txuxcay6oQqSzVc,195476
|
1147
|
+
lusid_sdk-2.1.386.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1148
|
+
lusid_sdk-2.1.386.dist-info/RECORD,,
|
File without changes
|