lusid-sdk 2.1.351__py3-none-any.whl → 2.1.405__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 +52 -0
- lusid/api/__init__.py +2 -0
- lusid/api/funds_api.py +9 -8
- lusid/api/group_reconciliations_api.py +378 -0
- lusid/api/order_management_api.py +174 -0
- lusid/api/persons_api.py +4 -4
- lusid/api/portfolios_api.py +179 -0
- lusid/api/workspace_api.py +40 -40
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +50 -0
- lusid/models/accept_estimate_valuation_point_response.py +100 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/action_id.py +1 -1
- lusid/models/amortisation_event.py +3 -3
- lusid/models/applicable_instrument_event.py +14 -2
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +82 -0
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +82 -0
- lusid/models/bond_coupon_event.py +3 -3
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +3 -3
- lusid/models/calendar.py +17 -2
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cds_credit_event.py +105 -0
- lusid/models/cdx_credit_event.py +114 -0
- lusid/models/change_interval_with_order_management_detail.py +137 -0
- lusid/models/close_event.py +3 -3
- lusid/models/create_group_reconciliation_comparison_ruleset_request.py +97 -0
- lusid/models/credit_premium_cash_flow_event.py +102 -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/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +3 -3
- lusid/models/exercise_event.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +1 -1
- lusid/models/fee_request.py +1 -1
- lusid/models/flow_conventions.py +1 -1
- lusid/models/fund_amount.py +1 -1
- lusid/models/fund_details.py +74 -0
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/futures_contract_details.py +6 -1
- lusid/models/fx_forward_settlement_event.py +13 -5
- 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/holding_pricing_info.py +110 -0
- lusid/models/index_convention.py +1 -1
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument_event.py +10 -5
- lusid/models/instrument_event_instruction.py +19 -4
- lusid/models/instrument_event_type.py +5 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/merger_event.py +3 -3
- lusid/models/metadata_key_value.py +86 -0
- lusid/models/metadata_key_value_response.py +86 -0
- lusid/models/new_instrument.py +10 -2
- lusid/models/open_event.py +3 -3
- lusid/models/order_graph_block_order_detail.py +1 -1
- lusid/models/order_update_request.py +5 -0
- lusid/models/person.py +17 -2
- lusid/models/placement_update_request.py +6 -1
- lusid/models/previous_nav.py +3 -3
- lusid/models/pricing_context.py +8 -2
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval_with_order_management_detail.py +113 -0
- lusid/models/reverse_stock_split_event.py +3 -3
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/share_class_amount.py +7 -9
- lusid/models/share_class_breakdown.py +4 -5
- lusid/models/specific_holding_pricing_info.py +75 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification.py +8 -1
- lusid/models/stock_dividend_event.py +3 -3
- lusid/models/stock_split_event.py +3 -3
- lusid/models/swap_cash_flow_event.py +97 -0
- lusid/models/swap_principal_event.py +97 -0
- lusid/models/transaction_diagnostics.py +71 -0
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/valuation_point_data_response.py +21 -1
- lusid/models/weighted_instrument.py +9 -2
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/METADATA +52 -23
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/RECORD +94 -68
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.405.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -44,6 +44,7 @@ from lusid.api.executions_api import ExecutionsApi
|
|
44
44
|
from lusid.api.fee_types_api import FeeTypesApi
|
45
45
|
from lusid.api.fund_configurations_api import FundConfigurationsApi
|
46
46
|
from lusid.api.funds_api import FundsApi
|
47
|
+
from lusid.api.group_reconciliations_api import GroupReconciliationsApi
|
47
48
|
from lusid.api.instrument_event_types_api import InstrumentEventTypesApi
|
48
49
|
from lusid.api.instrument_events_api import InstrumentEventsApi
|
49
50
|
from lusid.api.instruments_api import InstrumentsApi
|
@@ -104,6 +105,7 @@ from lusid.models.abor_configuration_properties import AborConfigurationProperti
|
|
104
105
|
from lusid.models.abor_configuration_request import AborConfigurationRequest
|
105
106
|
from lusid.models.abor_properties import AborProperties
|
106
107
|
from lusid.models.abor_request import AborRequest
|
108
|
+
from lusid.models.accept_estimate_valuation_point_response import AcceptEstimateValuationPointResponse
|
107
109
|
from lusid.models.access_controlled_action import AccessControlledAction
|
108
110
|
from lusid.models.access_controlled_resource import AccessControlledResource
|
109
111
|
from lusid.models.access_metadata_operation import AccessMetadataOperation
|
@@ -157,6 +159,8 @@ from lusid.models.basket import Basket
|
|
157
159
|
from lusid.models.basket_identifier import BasketIdentifier
|
158
160
|
from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsResponse
|
159
161
|
from lusid.models.batch_upsert_instrument_properties_response import BatchUpsertInstrumentPropertiesResponse
|
162
|
+
from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
|
163
|
+
from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
|
160
164
|
from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
|
161
165
|
from lusid.models.batch_upsert_property_definition_properties_response import BatchUpsertPropertyDefinitionPropertiesResponse
|
162
166
|
from lusid.models.block import Block
|
@@ -204,12 +208,15 @@ from lusid.models.cash_flow_value_set import CashFlowValueSet
|
|
204
208
|
from lusid.models.cash_ladder_record import CashLadderRecord
|
205
209
|
from lusid.models.cash_offer_election import CashOfferElection
|
206
210
|
from lusid.models.cash_perpetual import CashPerpetual
|
211
|
+
from lusid.models.cds_credit_event import CdsCreditEvent
|
207
212
|
from lusid.models.cds_flow_conventions import CdsFlowConventions
|
208
213
|
from lusid.models.cds_index import CdsIndex
|
209
214
|
from lusid.models.cds_protection_detail_specification import CdsProtectionDetailSpecification
|
215
|
+
from lusid.models.cdx_credit_event import CdxCreditEvent
|
210
216
|
from lusid.models.change import Change
|
211
217
|
from lusid.models.change_history import ChangeHistory
|
212
218
|
from lusid.models.change_history_action import ChangeHistoryAction
|
219
|
+
from lusid.models.change_interval_with_order_management_detail import ChangeIntervalWithOrderManagementDetail
|
213
220
|
from lusid.models.change_item import ChangeItem
|
214
221
|
from lusid.models.chart_of_accounts import ChartOfAccounts
|
215
222
|
from lusid.models.chart_of_accounts_properties import ChartOfAccountsProperties
|
@@ -292,6 +299,7 @@ from lusid.models.create_data_type_request import CreateDataTypeRequest
|
|
292
299
|
from lusid.models.create_date_request import CreateDateRequest
|
293
300
|
from lusid.models.create_derived_property_definition_request import CreateDerivedPropertyDefinitionRequest
|
294
301
|
from lusid.models.create_derived_transaction_portfolio_request import CreateDerivedTransactionPortfolioRequest
|
302
|
+
from lusid.models.create_group_reconciliation_comparison_ruleset_request import CreateGroupReconciliationComparisonRulesetRequest
|
295
303
|
from lusid.models.create_portfolio_details import CreatePortfolioDetails
|
296
304
|
from lusid.models.create_portfolio_group_request import CreatePortfolioGroupRequest
|
297
305
|
from lusid.models.create_property_definition_request import CreatePropertyDefinitionRequest
|
@@ -309,6 +317,7 @@ from lusid.models.create_trade_tickets_response import CreateTradeTicketsRespons
|
|
309
317
|
from lusid.models.create_transaction_portfolio_request import CreateTransactionPortfolioRequest
|
310
318
|
from lusid.models.create_unit_definition import CreateUnitDefinition
|
311
319
|
from lusid.models.credit_default_swap import CreditDefaultSwap
|
320
|
+
from lusid.models.credit_premium_cash_flow_event import CreditPremiumCashFlowEvent
|
312
321
|
from lusid.models.credit_rating import CreditRating
|
313
322
|
from lusid.models.credit_spread_curve_data import CreditSpreadCurveData
|
314
323
|
from lusid.models.credit_support_annex import CreditSupportAnnex
|
@@ -431,6 +440,7 @@ from lusid.models.fund_amount import FundAmount
|
|
431
440
|
from lusid.models.fund_configuration import FundConfiguration
|
432
441
|
from lusid.models.fund_configuration_properties import FundConfigurationProperties
|
433
442
|
from lusid.models.fund_configuration_request import FundConfigurationRequest
|
443
|
+
from lusid.models.fund_details import FundDetails
|
434
444
|
from lusid.models.fund_pnl_breakdown import FundPnlBreakdown
|
435
445
|
from lusid.models.fund_previous_nav import FundPreviousNAV
|
436
446
|
from lusid.models.fund_properties import FundProperties
|
@@ -463,6 +473,7 @@ from lusid.models.fx_vol_surface_data import FxVolSurfaceData
|
|
463
473
|
from lusid.models.general_ledger_profile_mapping import GeneralLedgerProfileMapping
|
464
474
|
from lusid.models.general_ledger_profile_request import GeneralLedgerProfileRequest
|
465
475
|
from lusid.models.general_ledger_profile_response import GeneralLedgerProfileResponse
|
476
|
+
from lusid.models.generated_event_diagnostics import GeneratedEventDiagnostics
|
466
477
|
from lusid.models.get_cds_flow_conventions_response import GetCdsFlowConventionsResponse
|
467
478
|
from lusid.models.get_complex_market_data_response import GetComplexMarketDataResponse
|
468
479
|
from lusid.models.get_counterparty_agreement_response import GetCounterpartyAgreementResponse
|
@@ -485,11 +496,19 @@ from lusid.models.group_filter_predicate_compliance_parameter import GroupFilter
|
|
485
496
|
from lusid.models.group_filter_step import GroupFilterStep
|
486
497
|
from lusid.models.group_filter_step_request import GroupFilterStepRequest
|
487
498
|
from lusid.models.group_of_market_data_key_rules import GroupOfMarketDataKeyRules
|
499
|
+
from lusid.models.group_reconciliation_aggregate_attribute_rule import GroupReconciliationAggregateAttributeRule
|
500
|
+
from lusid.models.group_reconciliation_aggregate_comparison_rule_operand import GroupReconciliationAggregateComparisonRuleOperand
|
501
|
+
from lusid.models.group_reconciliation_comparison_rule_string_value_map import GroupReconciliationComparisonRuleStringValueMap
|
502
|
+
from lusid.models.group_reconciliation_comparison_rule_tolerance import GroupReconciliationComparisonRuleTolerance
|
503
|
+
from lusid.models.group_reconciliation_comparison_ruleset import GroupReconciliationComparisonRuleset
|
504
|
+
from lusid.models.group_reconciliation_core_attribute_rule import GroupReconciliationCoreAttributeRule
|
505
|
+
from lusid.models.group_reconciliation_core_comparison_rule_operand import GroupReconciliationCoreComparisonRuleOperand
|
488
506
|
from lusid.models.grouped_result_of_address_key import GroupedResultOfAddressKey
|
489
507
|
from lusid.models.holding_adjustment import HoldingAdjustment
|
490
508
|
from lusid.models.holding_adjustment_with_date import HoldingAdjustmentWithDate
|
491
509
|
from lusid.models.holding_context import HoldingContext
|
492
510
|
from lusid.models.holding_contributor import HoldingContributor
|
511
|
+
from lusid.models.holding_pricing_info import HoldingPricingInfo
|
493
512
|
from lusid.models.holdings_adjustment import HoldingsAdjustment
|
494
513
|
from lusid.models.holdings_adjustment_header import HoldingsAdjustmentHeader
|
495
514
|
from lusid.models.i_unit_definition_dto import IUnitDefinitionDto
|
@@ -581,6 +600,8 @@ from lusid.models.market_quote import MarketQuote
|
|
581
600
|
from lusid.models.match_criterion import MatchCriterion
|
582
601
|
from lusid.models.maturity_event import MaturityEvent
|
583
602
|
from lusid.models.merger_event import MergerEvent
|
603
|
+
from lusid.models.metadata_key_value import MetadataKeyValue
|
604
|
+
from lusid.models.metadata_key_value_response import MetadataKeyValueResponse
|
584
605
|
from lusid.models.metric_value import MetricValue
|
585
606
|
from lusid.models.model_options import ModelOptions
|
586
607
|
from lusid.models.model_options_type import ModelOptionsType
|
@@ -842,6 +863,7 @@ from lusid.models.resource_list_of_block_and_orders import ResourceListOfBlockAn
|
|
842
863
|
from lusid.models.resource_list_of_calendar_date import ResourceListOfCalendarDate
|
843
864
|
from lusid.models.resource_list_of_change import ResourceListOfChange
|
844
865
|
from lusid.models.resource_list_of_change_history import ResourceListOfChangeHistory
|
866
|
+
from lusid.models.resource_list_of_change_interval_with_order_management_detail import ResourceListOfChangeIntervalWithOrderManagementDetail
|
845
867
|
from lusid.models.resource_list_of_compliance_breached_order_info import ResourceListOfComplianceBreachedOrderInfo
|
846
868
|
from lusid.models.resource_list_of_compliance_rule import ResourceListOfComplianceRule
|
847
869
|
from lusid.models.resource_list_of_compliance_rule_result import ResourceListOfComplianceRuleResult
|
@@ -947,6 +969,7 @@ from lusid.models.sides_definition_request import SidesDefinitionRequest
|
|
947
969
|
from lusid.models.simple_cash_flow_loan import SimpleCashFlowLoan
|
948
970
|
from lusid.models.simple_instrument import SimpleInstrument
|
949
971
|
from lusid.models.sort_order import SortOrder
|
972
|
+
from lusid.models.specific_holding_pricing_info import SpecificHoldingPricingInfo
|
950
973
|
from lusid.models.spin_off_event import SpinOffEvent
|
951
974
|
from lusid.models.staged_modification import StagedModification
|
952
975
|
from lusid.models.staged_modification_decision import StagedModificationDecision
|
@@ -971,6 +994,8 @@ from lusid.models.string_list_compliance_parameter import StringListCompliancePa
|
|
971
994
|
from lusid.models.structured_result_data import StructuredResultData
|
972
995
|
from lusid.models.structured_result_data_id import StructuredResultDataId
|
973
996
|
from lusid.models.sub_holding_key_value_equals import SubHoldingKeyValueEquals
|
997
|
+
from lusid.models.swap_cash_flow_event import SwapCashFlowEvent
|
998
|
+
from lusid.models.swap_principal_event import SwapPrincipalEvent
|
974
999
|
from lusid.models.target_tax_lot import TargetTaxLot
|
975
1000
|
from lusid.models.target_tax_lot_request import TargetTaxLotRequest
|
976
1001
|
from lusid.models.tax_rule import TaxRule
|
@@ -988,6 +1013,7 @@ from lusid.models.transaction_configuration_movement_data import TransactionConf
|
|
988
1013
|
from lusid.models.transaction_configuration_movement_data_request import TransactionConfigurationMovementDataRequest
|
989
1014
|
from lusid.models.transaction_configuration_type_alias import TransactionConfigurationTypeAlias
|
990
1015
|
from lusid.models.transaction_currency_and_amount import TransactionCurrencyAndAmount
|
1016
|
+
from lusid.models.transaction_diagnostics import TransactionDiagnostics
|
991
1017
|
from lusid.models.transaction_field_map import TransactionFieldMap
|
992
1018
|
from lusid.models.transaction_price import TransactionPrice
|
993
1019
|
from lusid.models.transaction_price_and_type import TransactionPriceAndType
|
@@ -1178,6 +1204,7 @@ __all__ = [
|
|
1178
1204
|
"FeeTypesApi",
|
1179
1205
|
"FundConfigurationsApi",
|
1180
1206
|
"FundsApi",
|
1207
|
+
"GroupReconciliationsApi",
|
1181
1208
|
"InstrumentEventTypesApi",
|
1182
1209
|
"InstrumentEventsApi",
|
1183
1210
|
"InstrumentsApi",
|
@@ -1228,6 +1255,7 @@ __all__ = [
|
|
1228
1255
|
"AborConfigurationRequest",
|
1229
1256
|
"AborProperties",
|
1230
1257
|
"AborRequest",
|
1258
|
+
"AcceptEstimateValuationPointResponse",
|
1231
1259
|
"AccessControlledAction",
|
1232
1260
|
"AccessControlledResource",
|
1233
1261
|
"AccessMetadataOperation",
|
@@ -1281,6 +1309,8 @@ __all__ = [
|
|
1281
1309
|
"BasketIdentifier",
|
1282
1310
|
"BatchAdjustHoldingsResponse",
|
1283
1311
|
"BatchUpsertInstrumentPropertiesResponse",
|
1312
|
+
"BatchUpsertPortfolioAccessMetadataRequest",
|
1313
|
+
"BatchUpsertPortfolioAccessMetadataResponse",
|
1284
1314
|
"BatchUpsertPortfolioTransactionsResponse",
|
1285
1315
|
"BatchUpsertPropertyDefinitionPropertiesResponse",
|
1286
1316
|
"Block",
|
@@ -1328,12 +1358,15 @@ __all__ = [
|
|
1328
1358
|
"CashLadderRecord",
|
1329
1359
|
"CashOfferElection",
|
1330
1360
|
"CashPerpetual",
|
1361
|
+
"CdsCreditEvent",
|
1331
1362
|
"CdsFlowConventions",
|
1332
1363
|
"CdsIndex",
|
1333
1364
|
"CdsProtectionDetailSpecification",
|
1365
|
+
"CdxCreditEvent",
|
1334
1366
|
"Change",
|
1335
1367
|
"ChangeHistory",
|
1336
1368
|
"ChangeHistoryAction",
|
1369
|
+
"ChangeIntervalWithOrderManagementDetail",
|
1337
1370
|
"ChangeItem",
|
1338
1371
|
"ChartOfAccounts",
|
1339
1372
|
"ChartOfAccountsProperties",
|
@@ -1416,6 +1449,7 @@ __all__ = [
|
|
1416
1449
|
"CreateDateRequest",
|
1417
1450
|
"CreateDerivedPropertyDefinitionRequest",
|
1418
1451
|
"CreateDerivedTransactionPortfolioRequest",
|
1452
|
+
"CreateGroupReconciliationComparisonRulesetRequest",
|
1419
1453
|
"CreatePortfolioDetails",
|
1420
1454
|
"CreatePortfolioGroupRequest",
|
1421
1455
|
"CreatePropertyDefinitionRequest",
|
@@ -1433,6 +1467,7 @@ __all__ = [
|
|
1433
1467
|
"CreateTransactionPortfolioRequest",
|
1434
1468
|
"CreateUnitDefinition",
|
1435
1469
|
"CreditDefaultSwap",
|
1470
|
+
"CreditPremiumCashFlowEvent",
|
1436
1471
|
"CreditRating",
|
1437
1472
|
"CreditSpreadCurveData",
|
1438
1473
|
"CreditSupportAnnex",
|
@@ -1555,6 +1590,7 @@ __all__ = [
|
|
1555
1590
|
"FundConfiguration",
|
1556
1591
|
"FundConfigurationProperties",
|
1557
1592
|
"FundConfigurationRequest",
|
1593
|
+
"FundDetails",
|
1558
1594
|
"FundPnlBreakdown",
|
1559
1595
|
"FundPreviousNAV",
|
1560
1596
|
"FundProperties",
|
@@ -1587,6 +1623,7 @@ __all__ = [
|
|
1587
1623
|
"GeneralLedgerProfileMapping",
|
1588
1624
|
"GeneralLedgerProfileRequest",
|
1589
1625
|
"GeneralLedgerProfileResponse",
|
1626
|
+
"GeneratedEventDiagnostics",
|
1590
1627
|
"GetCdsFlowConventionsResponse",
|
1591
1628
|
"GetComplexMarketDataResponse",
|
1592
1629
|
"GetCounterpartyAgreementResponse",
|
@@ -1609,11 +1646,19 @@ __all__ = [
|
|
1609
1646
|
"GroupFilterStep",
|
1610
1647
|
"GroupFilterStepRequest",
|
1611
1648
|
"GroupOfMarketDataKeyRules",
|
1649
|
+
"GroupReconciliationAggregateAttributeRule",
|
1650
|
+
"GroupReconciliationAggregateComparisonRuleOperand",
|
1651
|
+
"GroupReconciliationComparisonRuleStringValueMap",
|
1652
|
+
"GroupReconciliationComparisonRuleTolerance",
|
1653
|
+
"GroupReconciliationComparisonRuleset",
|
1654
|
+
"GroupReconciliationCoreAttributeRule",
|
1655
|
+
"GroupReconciliationCoreComparisonRuleOperand",
|
1612
1656
|
"GroupedResultOfAddressKey",
|
1613
1657
|
"HoldingAdjustment",
|
1614
1658
|
"HoldingAdjustmentWithDate",
|
1615
1659
|
"HoldingContext",
|
1616
1660
|
"HoldingContributor",
|
1661
|
+
"HoldingPricingInfo",
|
1617
1662
|
"HoldingsAdjustment",
|
1618
1663
|
"HoldingsAdjustmentHeader",
|
1619
1664
|
"IUnitDefinitionDto",
|
@@ -1705,6 +1750,8 @@ __all__ = [
|
|
1705
1750
|
"MatchCriterion",
|
1706
1751
|
"MaturityEvent",
|
1707
1752
|
"MergerEvent",
|
1753
|
+
"MetadataKeyValue",
|
1754
|
+
"MetadataKeyValueResponse",
|
1708
1755
|
"MetricValue",
|
1709
1756
|
"ModelOptions",
|
1710
1757
|
"ModelOptionsType",
|
@@ -1966,6 +2013,7 @@ __all__ = [
|
|
1966
2013
|
"ResourceListOfCalendarDate",
|
1967
2014
|
"ResourceListOfChange",
|
1968
2015
|
"ResourceListOfChangeHistory",
|
2016
|
+
"ResourceListOfChangeIntervalWithOrderManagementDetail",
|
1969
2017
|
"ResourceListOfComplianceBreachedOrderInfo",
|
1970
2018
|
"ResourceListOfComplianceRule",
|
1971
2019
|
"ResourceListOfComplianceRuleResult",
|
@@ -2071,6 +2119,7 @@ __all__ = [
|
|
2071
2119
|
"SimpleCashFlowLoan",
|
2072
2120
|
"SimpleInstrument",
|
2073
2121
|
"SortOrder",
|
2122
|
+
"SpecificHoldingPricingInfo",
|
2074
2123
|
"SpinOffEvent",
|
2075
2124
|
"StagedModification",
|
2076
2125
|
"StagedModificationDecision",
|
@@ -2095,6 +2144,8 @@ __all__ = [
|
|
2095
2144
|
"StructuredResultData",
|
2096
2145
|
"StructuredResultDataId",
|
2097
2146
|
"SubHoldingKeyValueEquals",
|
2147
|
+
"SwapCashFlowEvent",
|
2148
|
+
"SwapPrincipalEvent",
|
2098
2149
|
"TargetTaxLot",
|
2099
2150
|
"TargetTaxLotRequest",
|
2100
2151
|
"TaxRule",
|
@@ -2112,6 +2163,7 @@ __all__ = [
|
|
2112
2163
|
"TransactionConfigurationMovementDataRequest",
|
2113
2164
|
"TransactionConfigurationTypeAlias",
|
2114
2165
|
"TransactionCurrencyAndAmount",
|
2166
|
+
"TransactionDiagnostics",
|
2115
2167
|
"TransactionFieldMap",
|
2116
2168
|
"TransactionPrice",
|
2117
2169
|
"TransactionPriceAndType",
|
lusid/api/__init__.py
CHANGED
@@ -28,6 +28,7 @@ from lusid.api.executions_api import ExecutionsApi
|
|
28
28
|
from lusid.api.fee_types_api import FeeTypesApi
|
29
29
|
from lusid.api.fund_configurations_api import FundConfigurationsApi
|
30
30
|
from lusid.api.funds_api import FundsApi
|
31
|
+
from lusid.api.group_reconciliations_api import GroupReconciliationsApi
|
31
32
|
from lusid.api.instrument_event_types_api import InstrumentEventTypesApi
|
32
33
|
from lusid.api.instrument_events_api import InstrumentEventsApi
|
33
34
|
from lusid.api.instruments_api import InstrumentsApi
|
@@ -98,6 +99,7 @@ __all__ = [
|
|
98
99
|
"FeeTypesApi",
|
99
100
|
"FundConfigurationsApi",
|
100
101
|
"FundsApi",
|
102
|
+
"GroupReconciliationsApi",
|
101
103
|
"InstrumentEventTypesApi",
|
102
104
|
"InstrumentEventsApi",
|
103
105
|
"InstrumentsApi",
|
lusid/api/funds_api.py
CHANGED
@@ -26,6 +26,7 @@ from pydantic.v1 import Field, StrictStr, conint, conlist, constr, validator
|
|
26
26
|
|
27
27
|
from typing import Dict, Optional
|
28
28
|
|
29
|
+
from lusid.models.accept_estimate_valuation_point_response import AcceptEstimateValuationPointResponse
|
29
30
|
from lusid.models.deleted_entity_response import DeletedEntityResponse
|
30
31
|
from lusid.models.diary_entry import DiaryEntry
|
31
32
|
from lusid.models.fee import Fee
|
@@ -66,18 +67,18 @@ class FundsApi:
|
|
66
67
|
self.api_client = api_client
|
67
68
|
|
68
69
|
@overload
|
69
|
-
async def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], **kwargs) ->
|
70
|
+
async def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], **kwargs) -> AcceptEstimateValuationPointResponse: # noqa: E501
|
70
71
|
...
|
71
72
|
|
72
73
|
@overload
|
73
|
-
def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], async_req: Optional[bool]=True, **kwargs) ->
|
74
|
+
def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], async_req: Optional[bool]=True, **kwargs) -> AcceptEstimateValuationPointResponse: # noqa: E501
|
74
75
|
...
|
75
76
|
|
76
77
|
@validate_arguments
|
77
|
-
def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], async_req: Optional[bool]=None, **kwargs) -> Union[
|
78
|
+
def accept_estimate_valuation_point(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], async_req: Optional[bool]=None, **kwargs) -> Union[AcceptEstimateValuationPointResponse, Awaitable[AcceptEstimateValuationPointResponse]]: # noqa: E501
|
78
79
|
"""[EXPERIMENTAL] AcceptEstimateValuationPoint: Accepts an Estimate Valuation Point. # noqa: E501
|
79
80
|
|
80
|
-
Accepts the specified estimate Valuation Point.
|
81
|
+
Accepts the specified estimate Valuation Point. Should the Valuation Point differ since the Valuation Point was last run, both Valuation Points will be returned and status will be marked as 'Candidate', otherwise it will be marked as 'Final'. # noqa: E501
|
81
82
|
This method makes a synchronous HTTP request by default. To make an
|
82
83
|
asynchronous HTTP request, please pass async_req=True
|
83
84
|
|
@@ -99,7 +100,7 @@ class FundsApi:
|
|
99
100
|
:return: Returns the result object.
|
100
101
|
If the method is called asynchronously,
|
101
102
|
returns the request thread.
|
102
|
-
:rtype:
|
103
|
+
:rtype: AcceptEstimateValuationPointResponse
|
103
104
|
"""
|
104
105
|
kwargs['_return_http_data_only'] = True
|
105
106
|
if '_preload_content' in kwargs:
|
@@ -113,7 +114,7 @@ class FundsApi:
|
|
113
114
|
def accept_estimate_valuation_point_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_request : Annotated[ValuationPointDataRequest, Field(..., description="The valuationPointDataRequest which contains the Diary Entry code for the Estimate Valuation Point to move to Candidate or Final state.")], **kwargs) -> ApiResponse: # noqa: E501
|
114
115
|
"""[EXPERIMENTAL] AcceptEstimateValuationPoint: Accepts an Estimate Valuation Point. # noqa: E501
|
115
116
|
|
116
|
-
Accepts the specified estimate Valuation Point.
|
117
|
+
Accepts the specified estimate Valuation Point. Should the Valuation Point differ since the Valuation Point was last run, both Valuation Points will be returned and status will be marked as 'Candidate', otherwise it will be marked as 'Final'. # noqa: E501
|
117
118
|
This method makes a synchronous HTTP request by default. To make an
|
118
119
|
asynchronous HTTP request, please pass async_req=True
|
119
120
|
|
@@ -148,7 +149,7 @@ class FundsApi:
|
|
148
149
|
:return: Returns the result object.
|
149
150
|
If the method is called asynchronously,
|
150
151
|
returns the request thread.
|
151
|
-
:rtype: tuple(
|
152
|
+
:rtype: tuple(AcceptEstimateValuationPointResponse, status_code(int), headers(HTTPHeaderDict))
|
152
153
|
"""
|
153
154
|
|
154
155
|
_params = locals()
|
@@ -218,7 +219,7 @@ class FundsApi:
|
|
218
219
|
_auth_settings = ['oauth2'] # noqa: E501
|
219
220
|
|
220
221
|
_response_types_map = {
|
221
|
-
'200': "
|
222
|
+
'200': "AcceptEstimateValuationPointResponse",
|
222
223
|
'400': "LusidValidationProblemDetails",
|
223
224
|
}
|
224
225
|
|