lusid-sdk 2.1.788__py3-none-any.whl → 2.1.790__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 +10 -0
- lusid/api/__init__.py +2 -0
- lusid/api/aggregated_returns_api.py +701 -0
- lusid/api/order_management_api.py +161 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +8 -0
- lusid/models/resource_list_of_returns_entity.py +121 -0
- lusid/models/returns_entity.py +121 -0
- lusid/models/sweep_blocks_request.py +92 -0
- lusid/models/sweep_blocks_response.py +115 -0
- {lusid_sdk-2.1.788.dist-info → lusid_sdk-2.1.790.dist-info}/METADATA +10 -1
- {lusid_sdk-2.1.788.dist-info → lusid_sdk-2.1.790.dist-info}/RECORD +13 -8
- {lusid_sdk-2.1.788.dist-info → lusid_sdk-2.1.790.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -20,6 +20,7 @@ from __future__ import absolute_import
|
|
20
20
|
from lusid.api.abor_api import AborApi
|
21
21
|
from lusid.api.abor_configuration_api import AborConfigurationApi
|
22
22
|
from lusid.api.address_key_definition_api import AddressKeyDefinitionApi
|
23
|
+
from lusid.api.aggregated_returns_api import AggregatedReturnsApi
|
23
24
|
from lusid.api.aggregation_api import AggregationApi
|
24
25
|
from lusid.api.allocations_api import AllocationsApi
|
25
26
|
from lusid.api.amortisation_rule_sets_api import AmortisationRuleSetsApi
|
@@ -1030,6 +1031,7 @@ from lusid.models.resource_list_of_quote_access_metadata_rule import ResourceLis
|
|
1030
1031
|
from lusid.models.resource_list_of_reconciliation_break import ResourceListOfReconciliationBreak
|
1031
1032
|
from lusid.models.resource_list_of_relation import ResourceListOfRelation
|
1032
1033
|
from lusid.models.resource_list_of_relationship import ResourceListOfRelationship
|
1034
|
+
from lusid.models.resource_list_of_returns_entity import ResourceListOfReturnsEntity
|
1033
1035
|
from lusid.models.resource_list_of_scope_definition import ResourceListOfScopeDefinition
|
1034
1036
|
from lusid.models.resource_list_of_side_definition import ResourceListOfSideDefinition
|
1035
1037
|
from lusid.models.resource_list_of_string import ResourceListOfString
|
@@ -1053,6 +1055,7 @@ from lusid.models.result_value_int import ResultValueInt
|
|
1053
1055
|
from lusid.models.result_value_string import ResultValueString
|
1054
1056
|
from lusid.models.result_value_type import ResultValueType
|
1055
1057
|
from lusid.models.return_zero_pv_options import ReturnZeroPvOptions
|
1058
|
+
from lusid.models.returns_entity import ReturnsEntity
|
1056
1059
|
from lusid.models.reverse_stock_split_event import ReverseStockSplitEvent
|
1057
1060
|
from lusid.models.rollover_constituent import RolloverConstituent
|
1058
1061
|
from lusid.models.rounding_configuration import RoundingConfiguration
|
@@ -1120,6 +1123,8 @@ from lusid.models.structured_result_data_id import StructuredResultDataId
|
|
1120
1123
|
from lusid.models.sub_holding_key_value_equals import SubHoldingKeyValueEquals
|
1121
1124
|
from lusid.models.swap_cash_flow_event import SwapCashFlowEvent
|
1122
1125
|
from lusid.models.swap_principal_event import SwapPrincipalEvent
|
1126
|
+
from lusid.models.sweep_blocks_request import SweepBlocksRequest
|
1127
|
+
from lusid.models.sweep_blocks_response import SweepBlocksResponse
|
1123
1128
|
from lusid.models.target_tax_lot import TargetTaxLot
|
1124
1129
|
from lusid.models.target_tax_lot_request import TargetTaxLotRequest
|
1125
1130
|
from lusid.models.tax_rule import TaxRule
|
@@ -1331,6 +1336,7 @@ __all__ = [
|
|
1331
1336
|
"AborApi",
|
1332
1337
|
"AborConfigurationApi",
|
1333
1338
|
"AddressKeyDefinitionApi",
|
1339
|
+
"AggregatedReturnsApi",
|
1334
1340
|
"AggregationApi",
|
1335
1341
|
"AllocationsApi",
|
1336
1342
|
"AmortisationRuleSetsApi",
|
@@ -2331,6 +2337,7 @@ __all__ = [
|
|
2331
2337
|
"ResourceListOfReconciliationBreak",
|
2332
2338
|
"ResourceListOfRelation",
|
2333
2339
|
"ResourceListOfRelationship",
|
2340
|
+
"ResourceListOfReturnsEntity",
|
2334
2341
|
"ResourceListOfScopeDefinition",
|
2335
2342
|
"ResourceListOfSideDefinition",
|
2336
2343
|
"ResourceListOfString",
|
@@ -2354,6 +2361,7 @@ __all__ = [
|
|
2354
2361
|
"ResultValueString",
|
2355
2362
|
"ResultValueType",
|
2356
2363
|
"ReturnZeroPvOptions",
|
2364
|
+
"ReturnsEntity",
|
2357
2365
|
"ReverseStockSplitEvent",
|
2358
2366
|
"RolloverConstituent",
|
2359
2367
|
"RoundingConfiguration",
|
@@ -2421,6 +2429,8 @@ __all__ = [
|
|
2421
2429
|
"SubHoldingKeyValueEquals",
|
2422
2430
|
"SwapCashFlowEvent",
|
2423
2431
|
"SwapPrincipalEvent",
|
2432
|
+
"SweepBlocksRequest",
|
2433
|
+
"SweepBlocksResponse",
|
2424
2434
|
"TargetTaxLot",
|
2425
2435
|
"TargetTaxLotRequest",
|
2426
2436
|
"TaxRule",
|
lusid/api/__init__.py
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
from lusid.api.abor_api import AborApi
|
5
5
|
from lusid.api.abor_configuration_api import AborConfigurationApi
|
6
6
|
from lusid.api.address_key_definition_api import AddressKeyDefinitionApi
|
7
|
+
from lusid.api.aggregated_returns_api import AggregatedReturnsApi
|
7
8
|
from lusid.api.aggregation_api import AggregationApi
|
8
9
|
from lusid.api.allocations_api import AllocationsApi
|
9
10
|
from lusid.api.amortisation_rule_sets_api import AmortisationRuleSetsApi
|
@@ -80,6 +81,7 @@ __all__ = [
|
|
80
81
|
"AborApi",
|
81
82
|
"AborConfigurationApi",
|
82
83
|
"AddressKeyDefinitionApi",
|
84
|
+
"AggregatedReturnsApi",
|
83
85
|
"AggregationApi",
|
84
86
|
"AllocationsApi",
|
85
87
|
"AmortisationRuleSetsApi",
|