lusid-sdk 2.1.590__py3-none-any.whl → 2.1.637__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 (154) hide show
  1. lusid/__init__.py +42 -0
  2. lusid/api/__init__.py +2 -0
  3. lusid/api/chart_of_accounts_api.py +6 -6
  4. lusid/api/corporate_action_sources_api.py +6 -6
  5. lusid/api/entities_api.py +24 -24
  6. lusid/api/funds_api.py +438 -1
  7. lusid/api/order_management_api.py +16 -8
  8. lusid/api/staged_modifications_api.py +12 -12
  9. lusid/api/timelines_api.py +1094 -0
  10. lusid/api/transaction_portfolios_api.py +189 -6
  11. lusid/api/workspace_api.py +96 -48
  12. lusid/configuration.py +1 -1
  13. lusid/models/__init__.py +40 -0
  14. lusid/models/accounted_transaction.py +88 -0
  15. lusid/models/accumulation_event.py +3 -3
  16. lusid/models/adjust_global_commitment_event.py +93 -0
  17. lusid/models/amortisation_event.py +3 -3
  18. lusid/models/basket.py +3 -3
  19. lusid/models/bond.py +11 -5
  20. lusid/models/bond_coupon_event.py +3 -3
  21. lusid/models/bond_default_event.py +3 -3
  22. lusid/models/bond_principal_event.py +3 -3
  23. lusid/models/bonus_issue_event.py +3 -3
  24. lusid/models/call_on_intermediate_securities_event.py +3 -3
  25. lusid/models/cancel_single_holding_adjustment_request.py +96 -0
  26. lusid/models/cap_floor.py +22 -7
  27. lusid/models/capital_distribution_event.py +3 -3
  28. lusid/models/cash.py +3 -3
  29. lusid/models/cash_dividend_event.py +3 -3
  30. lusid/models/cash_flow_event.py +3 -3
  31. lusid/models/cash_perpetual.py +3 -3
  32. lusid/models/cds_credit_event.py +3 -3
  33. lusid/models/cds_index.py +3 -3
  34. lusid/models/cdx_credit_event.py +3 -3
  35. lusid/models/close_event.py +3 -3
  36. lusid/models/closed_period.py +128 -0
  37. lusid/models/complete_portfolio.py +3 -3
  38. lusid/models/complex_bond.py +20 -7
  39. lusid/models/contract_details.py +101 -0
  40. lusid/models/contract_for_difference.py +3 -3
  41. lusid/models/contract_initialisation_event.py +99 -0
  42. lusid/models/create_closed_period_request.py +96 -0
  43. lusid/models/create_derived_property_definition_request.py +8 -6
  44. lusid/models/create_derived_transaction_portfolio_request.py +8 -2
  45. lusid/models/create_property_definition_request.py +3 -3
  46. lusid/models/create_timeline_request.py +102 -0
  47. lusid/models/credit_default_swap.py +3 -3
  48. lusid/models/credit_premium_cash_flow_event.py +3 -3
  49. lusid/models/dependency_source_filter.py +19 -4
  50. lusid/models/dividend_option_event.py +3 -3
  51. lusid/models/dividend_reinvestment_event.py +3 -3
  52. lusid/models/drawdown_event.py +99 -0
  53. lusid/models/early_redemption_event.py +3 -3
  54. lusid/models/eligibility_calculation.py +6 -4
  55. lusid/models/equity.py +3 -3
  56. lusid/models/equity_option.py +29 -8
  57. lusid/models/equity_swap.py +3 -3
  58. lusid/models/exchange_traded_option.py +12 -6
  59. lusid/models/exercise_event.py +3 -3
  60. lusid/models/exotic_instrument.py +3 -3
  61. lusid/models/expiry_event.py +3 -3
  62. lusid/models/fee_accrual.py +3 -1
  63. lusid/models/fixed_leg.py +3 -3
  64. lusid/models/flexible_deposit.py +105 -0
  65. lusid/models/flexible_loan.py +3 -3
  66. lusid/models/floating_leg.py +3 -3
  67. lusid/models/forward_rate_agreement.py +3 -3
  68. lusid/models/fund_share_class.py +3 -3
  69. lusid/models/funding_leg.py +3 -3
  70. lusid/models/future.py +19 -7
  71. lusid/models/future_expiry_event.py +3 -3
  72. lusid/models/future_mark_to_market_event.py +100 -0
  73. lusid/models/fx_forward.py +3 -3
  74. lusid/models/fx_forward_settlement_event.py +3 -3
  75. lusid/models/fx_option.py +3 -3
  76. lusid/models/fx_swap.py +3 -3
  77. lusid/models/group_reconciliation_summary.py +2 -2
  78. lusid/models/inflation_leg.py +3 -3
  79. lusid/models/inflation_linked_bond.py +11 -5
  80. lusid/models/inflation_swap.py +3 -3
  81. lusid/models/informational_error_event.py +3 -3
  82. lusid/models/informational_event.py +3 -3
  83. lusid/models/instrument_event.py +10 -5
  84. lusid/models/instrument_event_instruction.py +9 -2
  85. lusid/models/instrument_event_instruction_request.py +10 -3
  86. lusid/models/instrument_event_type.py +5 -0
  87. lusid/models/instrument_leg.py +3 -3
  88. lusid/models/instrument_type.py +1 -0
  89. lusid/models/interest_rate_swap.py +3 -3
  90. lusid/models/interest_rate_swaption.py +4 -4
  91. lusid/models/intermediate_securities_distribution_event.py +3 -3
  92. lusid/models/loan_facility.py +3 -3
  93. lusid/models/loan_interest_repayment_event.py +97 -0
  94. lusid/models/lusid_instrument.py +6 -5
  95. lusid/models/mark_to_market_conventions.py +74 -0
  96. lusid/models/market_data_key_rule.py +1 -1
  97. lusid/models/market_data_specific_rule.py +1 -1
  98. lusid/models/mastered_instrument.py +3 -3
  99. lusid/models/maturity_event.py +3 -3
  100. lusid/models/mbs_coupon_event.py +3 -3
  101. lusid/models/mbs_interest_deferral_event.py +3 -3
  102. lusid/models/mbs_interest_shortfall_event.py +3 -3
  103. lusid/models/mbs_principal_event.py +3 -3
  104. lusid/models/mbs_principal_write_off_event.py +3 -3
  105. lusid/models/merger_event.py +3 -3
  106. lusid/models/open_event.py +3 -3
  107. lusid/models/option_exercise_cash_event.py +3 -3
  108. lusid/models/option_exercise_physical_event.py +3 -3
  109. lusid/models/output_transaction.py +7 -1
  110. lusid/models/pnl_journal_entry_line.py +95 -0
  111. lusid/models/portfolio.py +3 -3
  112. lusid/models/portfolio_id.py +80 -0
  113. lusid/models/portfolio_search_result.py +3 -3
  114. lusid/models/portfolio_type.py +1 -0
  115. lusid/models/portfolio_without_href.py +3 -3
  116. lusid/models/property_definition.py +6 -4
  117. lusid/models/property_definition_search_result.py +6 -4
  118. lusid/models/property_domain.py +1 -0
  119. lusid/models/protection_payout_cash_flow_event.py +3 -3
  120. lusid/models/raw_vendor_event.py +3 -3
  121. lusid/models/reference_instrument.py +3 -3
  122. lusid/models/repo.py +3 -3
  123. lusid/models/reset_event.py +3 -3
  124. lusid/models/reverse_stock_split_event.py +3 -3
  125. lusid/models/scrip_dividend_event.py +3 -3
  126. lusid/models/side_definition.py +8 -1
  127. lusid/models/side_definition_request.py +9 -2
  128. lusid/models/simple_cash_flow_loan.py +3 -3
  129. lusid/models/simple_instrument.py +3 -3
  130. lusid/models/spin_off_event.py +3 -3
  131. lusid/models/stock_dividend_event.py +3 -3
  132. lusid/models/stock_split_event.py +3 -3
  133. lusid/models/swap_cash_flow_event.py +3 -3
  134. lusid/models/swap_principal_event.py +3 -3
  135. lusid/models/tender_event.py +3 -3
  136. lusid/models/term_deposit.py +3 -3
  137. lusid/models/term_deposit_interest_event.py +3 -3
  138. lusid/models/term_deposit_principal_event.py +3 -3
  139. lusid/models/timeline.py +135 -0
  140. lusid/models/total_return_swap.py +3 -3
  141. lusid/models/trading_conventions.py +73 -0
  142. lusid/models/transition_event.py +3 -3
  143. lusid/models/trigger_event.py +3 -3
  144. lusid/models/update_derived_property_definition_request.py +5 -3
  145. lusid/models/update_timeline_request.py +96 -0
  146. lusid/models/valuation_point_resource_list_of_accounted_transaction.py +125 -0
  147. lusid/models/valuation_point_resource_list_of_pnl_journal_entry_line.py +125 -0
  148. lusid/models/workspace.py +1 -1
  149. lusid/models/workspace_creation_request.py +1 -1
  150. lusid/models/workspace_item.py +4 -2
  151. lusid/models/workspace_item_creation_request.py +11 -2
  152. {lusid_sdk-2.1.590.dist-info → lusid_sdk-2.1.637.dist-info}/METADATA +40 -10
  153. {lusid_sdk-2.1.590.dist-info → lusid_sdk-2.1.637.dist-info}/RECORD +154 -133
  154. {lusid_sdk-2.1.590.dist-info → lusid_sdk-2.1.637.dist-info}/WHEEL +1 -1
lusid/__init__.py CHANGED
@@ -80,6 +80,7 @@ from lusid.api.staging_rule_set_api import StagingRuleSetApi
80
80
  from lusid.api.structured_result_data_api import StructuredResultDataApi
81
81
  from lusid.api.system_configuration_api import SystemConfigurationApi
82
82
  from lusid.api.tax_rule_sets_api import TaxRuleSetsApi
83
+ from lusid.api.timelines_api import TimelinesApi
83
84
  from lusid.api.transaction_configuration_api import TransactionConfigurationApi
84
85
  from lusid.api.transaction_fees_api import TransactionFeesApi
85
86
  from lusid.api.transaction_portfolios_api import TransactionPortfoliosApi
@@ -112,6 +113,7 @@ from lusid.models.access_metadata_operation import AccessMetadataOperation
112
113
  from lusid.models.access_metadata_value import AccessMetadataValue
113
114
  from lusid.models.account import Account
114
115
  from lusid.models.account_properties import AccountProperties
116
+ from lusid.models.accounted_transaction import AccountedTransaction
115
117
  from lusid.models.accounting_method import AccountingMethod
116
118
  from lusid.models.accounts_upsert_response import AccountsUpsertResponse
117
119
  from lusid.models.accumulation_event import AccumulationEvent
@@ -126,6 +128,7 @@ from lusid.models.address_key_filter import AddressKeyFilter
126
128
  from lusid.models.address_key_list import AddressKeyList
127
129
  from lusid.models.address_key_list_compliance_parameter import AddressKeyListComplianceParameter
128
130
  from lusid.models.address_key_option_definition import AddressKeyOptionDefinition
131
+ from lusid.models.adjust_global_commitment_event import AdjustGlobalCommitmentEvent
129
132
  from lusid.models.adjust_holding import AdjustHolding
130
133
  from lusid.models.adjust_holding_for_date_request import AdjustHoldingForDateRequest
131
134
  from lusid.models.adjust_holding_request import AdjustHoldingRequest
@@ -203,6 +206,7 @@ from lusid.models.cancel_orders_and_move_remaining_request import CancelOrdersAn
203
206
  from lusid.models.cancel_orders_and_move_remaining_response import CancelOrdersAndMoveRemainingResponse
204
207
  from lusid.models.cancel_orders_response import CancelOrdersResponse
205
208
  from lusid.models.cancel_placements_response import CancelPlacementsResponse
209
+ from lusid.models.cancel_single_holding_adjustment_request import CancelSingleHoldingAdjustmentRequest
206
210
  from lusid.models.cancelled_order_result import CancelledOrderResult
207
211
  from lusid.models.cancelled_placement_result import CancelledPlacementResult
208
212
  from lusid.models.cap_floor import CapFloor
@@ -243,6 +247,7 @@ from lusid.models.cleardown_module_rules_updated_response import CleardownModule
243
247
  from lusid.models.client import Client
244
248
  from lusid.models.close_event import CloseEvent
245
249
  from lusid.models.close_period_diary_entry_request import ClosePeriodDiaryEntryRequest
250
+ from lusid.models.closed_period import ClosedPeriod
246
251
  from lusid.models.comparison_attribute_value_pair import ComparisonAttributeValuePair
247
252
  from lusid.models.complete_portfolio import CompletePortfolio
248
253
  from lusid.models.complete_relation import CompleteRelation
@@ -289,7 +294,9 @@ from lusid.models.compounding import Compounding
289
294
  from lusid.models.configuration_recipe import ConfigurationRecipe
290
295
  from lusid.models.constant_volatility_surface import ConstantVolatilitySurface
291
296
  from lusid.models.constituents_adjustment_header import ConstituentsAdjustmentHeader
297
+ from lusid.models.contract_details import ContractDetails
292
298
  from lusid.models.contract_for_difference import ContractForDifference
299
+ from lusid.models.contract_initialisation_event import ContractInitialisationEvent
293
300
  from lusid.models.contribution_to_non_passing_rule_detail import ContributionToNonPassingRuleDetail
294
301
  from lusid.models.corporate_action import CorporateAction
295
302
  from lusid.models.corporate_action_source import CorporateActionSource
@@ -303,6 +310,7 @@ from lusid.models.counterparty_signatory import CounterpartySignatory
303
310
  from lusid.models.create_address_key_definition_request import CreateAddressKeyDefinitionRequest
304
311
  from lusid.models.create_amortisation_rule_set_request import CreateAmortisationRuleSetRequest
305
312
  from lusid.models.create_calendar_request import CreateCalendarRequest
313
+ from lusid.models.create_closed_period_request import CreateClosedPeriodRequest
306
314
  from lusid.models.create_compliance_template_request import CreateComplianceTemplateRequest
307
315
  from lusid.models.create_corporate_action_source_request import CreateCorporateActionSourceRequest
308
316
  from lusid.models.create_custom_entity_type_request import CreateCustomEntityTypeRequest
@@ -327,6 +335,7 @@ from lusid.models.create_relationship_request import CreateRelationshipRequest
327
335
  from lusid.models.create_sequence_request import CreateSequenceRequest
328
336
  from lusid.models.create_staging_rule_set_request import CreateStagingRuleSetRequest
329
337
  from lusid.models.create_tax_rule_set_request import CreateTaxRuleSetRequest
338
+ from lusid.models.create_timeline_request import CreateTimelineRequest
330
339
  from lusid.models.create_trade_tickets_response import CreateTradeTicketsResponse
331
340
  from lusid.models.create_transaction_portfolio_request import CreateTransactionPortfolioRequest
332
341
  from lusid.models.create_unit_definition import CreateUnitDefinition
@@ -394,6 +403,7 @@ from lusid.models.discounting_dependency import DiscountingDependency
394
403
  from lusid.models.discounting_method import DiscountingMethod
395
404
  from lusid.models.dividend_option_event import DividendOptionEvent
396
405
  from lusid.models.dividend_reinvestment_event import DividendReinvestmentEvent
406
+ from lusid.models.drawdown_event import DrawdownEvent
397
407
  from lusid.models.early_redemption_election import EarlyRedemptionElection
398
408
  from lusid.models.early_redemption_event import EarlyRedemptionEvent
399
409
  from lusid.models.economic_dependency import EconomicDependency
@@ -447,6 +457,7 @@ from lusid.models.filter_step_request import FilterStepRequest
447
457
  from lusid.models.fixed_leg import FixedLeg
448
458
  from lusid.models.fixed_leg_all_of_overrides import FixedLegAllOfOverrides
449
459
  from lusid.models.fixed_schedule import FixedSchedule
460
+ from lusid.models.flexible_deposit import FlexibleDeposit
450
461
  from lusid.models.flexible_loan import FlexibleLoan
451
462
  from lusid.models.float_schedule import FloatSchedule
452
463
  from lusid.models.floating_leg import FloatingLeg
@@ -471,6 +482,7 @@ from lusid.models.funding_leg import FundingLeg
471
482
  from lusid.models.funding_leg_options import FundingLegOptions
472
483
  from lusid.models.future import Future
473
484
  from lusid.models.future_expiry_event import FutureExpiryEvent
485
+ from lusid.models.future_mark_to_market_event import FutureMarkToMarketEvent
474
486
  from lusid.models.futures_contract_details import FuturesContractDetails
475
487
  from lusid.models.fx_conventions import FxConventions
476
488
  from lusid.models.fx_dependency import FxDependency
@@ -624,6 +636,7 @@ from lusid.models.list_aggregation_reconciliation import ListAggregationReconcil
624
636
  from lusid.models.list_aggregation_response import ListAggregationResponse
625
637
  from lusid.models.list_complex_market_data_with_meta_data_response import ListComplexMarketDataWithMetaDataResponse
626
638
  from lusid.models.loan_facility import LoanFacility
639
+ from lusid.models.loan_interest_repayment_event import LoanInterestRepaymentEvent
627
640
  from lusid.models.loan_period import LoanPeriod
628
641
  from lusid.models.lock_period_diary_entry_request import LockPeriodDiaryEntryRequest
629
642
  from lusid.models.lusid_instrument import LusidInstrument
@@ -634,6 +647,7 @@ from lusid.models.lusid_validation_problem_details import LusidValidationProblem
634
647
  from lusid.models.mapped_string import MappedString
635
648
  from lusid.models.mapping import Mapping
636
649
  from lusid.models.mapping_rule import MappingRule
650
+ from lusid.models.mark_to_market_conventions import MarkToMarketConventions
637
651
  from lusid.models.market_context import MarketContext
638
652
  from lusid.models.market_context_suppliers import MarketContextSuppliers
639
653
  from lusid.models.market_data_key_rule import MarketDataKeyRule
@@ -797,6 +811,7 @@ from lusid.models.placement import Placement
797
811
  from lusid.models.placement_request import PlacementRequest
798
812
  from lusid.models.placement_set_request import PlacementSetRequest
799
813
  from lusid.models.placement_update_request import PlacementUpdateRequest
814
+ from lusid.models.pnl_journal_entry_line import PnlJournalEntryLine
800
815
  from lusid.models.portfolio import Portfolio
801
816
  from lusid.models.portfolio_cash_flow import PortfolioCashFlow
802
817
  from lusid.models.portfolio_cash_ladder import PortfolioCashLadder
@@ -810,6 +825,7 @@ from lusid.models.portfolio_group_id_list_compliance_parameter import PortfolioG
810
825
  from lusid.models.portfolio_group_properties import PortfolioGroupProperties
811
826
  from lusid.models.portfolio_group_search_result import PortfolioGroupSearchResult
812
827
  from lusid.models.portfolio_holding import PortfolioHolding
828
+ from lusid.models.portfolio_id import PortfolioId
813
829
  from lusid.models.portfolio_id_compliance_parameter import PortfolioIdComplianceParameter
814
830
  from lusid.models.portfolio_id_list import PortfolioIdList
815
831
  from lusid.models.portfolio_id_list_compliance_parameter import PortfolioIdListComplianceParameter
@@ -1070,10 +1086,12 @@ from lusid.models.tender_event import TenderEvent
1070
1086
  from lusid.models.term_deposit import TermDeposit
1071
1087
  from lusid.models.term_deposit_interest_event import TermDepositInterestEvent
1072
1088
  from lusid.models.term_deposit_principal_event import TermDepositPrincipalEvent
1089
+ from lusid.models.timeline import Timeline
1073
1090
  from lusid.models.total_return_swap import TotalReturnSwap
1074
1091
  from lusid.models.touch import Touch
1075
1092
  from lusid.models.trade_ticket import TradeTicket
1076
1093
  from lusid.models.trade_ticket_type import TradeTicketType
1094
+ from lusid.models.trading_conventions import TradingConventions
1077
1095
  from lusid.models.transaction import Transaction
1078
1096
  from lusid.models.transaction_configuration_data import TransactionConfigurationData
1079
1097
  from lusid.models.transaction_configuration_data_request import TransactionConfigurationDataRequest
@@ -1153,6 +1171,7 @@ from lusid.models.update_reference_data_request import UpdateReferenceDataReques
1153
1171
  from lusid.models.update_relationship_definition_request import UpdateRelationshipDefinitionRequest
1154
1172
  from lusid.models.update_staging_rule_set_request import UpdateStagingRuleSetRequest
1155
1173
  from lusid.models.update_tax_rule_set_request import UpdateTaxRuleSetRequest
1174
+ from lusid.models.update_timeline_request import UpdateTimelineRequest
1156
1175
  from lusid.models.update_unit_request import UpdateUnitRequest
1157
1176
  from lusid.models.upsert_cds_flow_conventions_request import UpsertCdsFlowConventionsRequest
1158
1177
  from lusid.models.upsert_complex_market_data_request import UpsertComplexMarketDataRequest
@@ -1204,7 +1223,9 @@ from lusid.models.valuation_point_data_query_parameters import ValuationPointDat
1204
1223
  from lusid.models.valuation_point_data_request import ValuationPointDataRequest
1205
1224
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
1206
1225
  from lusid.models.valuation_point_overview import ValuationPointOverview
1226
+ from lusid.models.valuation_point_resource_list_of_accounted_transaction import ValuationPointResourceListOfAccountedTransaction
1207
1227
  from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
1228
+ from lusid.models.valuation_point_resource_list_of_pnl_journal_entry_line import ValuationPointResourceListOfPnlJournalEntryLine
1208
1229
  from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
1209
1230
  from lusid.models.valuation_request import ValuationRequest
1210
1231
  from lusid.models.valuation_schedule import ValuationSchedule
@@ -1317,6 +1338,7 @@ __all__ = [
1317
1338
  "StructuredResultDataApi",
1318
1339
  "SystemConfigurationApi",
1319
1340
  "TaxRuleSetsApi",
1341
+ "TimelinesApi",
1320
1342
  "TransactionConfigurationApi",
1321
1343
  "TransactionFeesApi",
1322
1344
  "TransactionPortfoliosApi",
@@ -1339,6 +1361,7 @@ __all__ = [
1339
1361
  "AccessMetadataValue",
1340
1362
  "Account",
1341
1363
  "AccountProperties",
1364
+ "AccountedTransaction",
1342
1365
  "AccountingMethod",
1343
1366
  "AccountsUpsertResponse",
1344
1367
  "AccumulationEvent",
@@ -1353,6 +1376,7 @@ __all__ = [
1353
1376
  "AddressKeyList",
1354
1377
  "AddressKeyListComplianceParameter",
1355
1378
  "AddressKeyOptionDefinition",
1379
+ "AdjustGlobalCommitmentEvent",
1356
1380
  "AdjustHolding",
1357
1381
  "AdjustHoldingForDateRequest",
1358
1382
  "AdjustHoldingRequest",
@@ -1430,6 +1454,7 @@ __all__ = [
1430
1454
  "CancelOrdersAndMoveRemainingResponse",
1431
1455
  "CancelOrdersResponse",
1432
1456
  "CancelPlacementsResponse",
1457
+ "CancelSingleHoldingAdjustmentRequest",
1433
1458
  "CancelledOrderResult",
1434
1459
  "CancelledPlacementResult",
1435
1460
  "CapFloor",
@@ -1470,6 +1495,7 @@ __all__ = [
1470
1495
  "Client",
1471
1496
  "CloseEvent",
1472
1497
  "ClosePeriodDiaryEntryRequest",
1498
+ "ClosedPeriod",
1473
1499
  "ComparisonAttributeValuePair",
1474
1500
  "CompletePortfolio",
1475
1501
  "CompleteRelation",
@@ -1516,7 +1542,9 @@ __all__ = [
1516
1542
  "ConfigurationRecipe",
1517
1543
  "ConstantVolatilitySurface",
1518
1544
  "ConstituentsAdjustmentHeader",
1545
+ "ContractDetails",
1519
1546
  "ContractForDifference",
1547
+ "ContractInitialisationEvent",
1520
1548
  "ContributionToNonPassingRuleDetail",
1521
1549
  "CorporateAction",
1522
1550
  "CorporateActionSource",
@@ -1530,6 +1558,7 @@ __all__ = [
1530
1558
  "CreateAddressKeyDefinitionRequest",
1531
1559
  "CreateAmortisationRuleSetRequest",
1532
1560
  "CreateCalendarRequest",
1561
+ "CreateClosedPeriodRequest",
1533
1562
  "CreateComplianceTemplateRequest",
1534
1563
  "CreateCorporateActionSourceRequest",
1535
1564
  "CreateCustomEntityTypeRequest",
@@ -1554,6 +1583,7 @@ __all__ = [
1554
1583
  "CreateSequenceRequest",
1555
1584
  "CreateStagingRuleSetRequest",
1556
1585
  "CreateTaxRuleSetRequest",
1586
+ "CreateTimelineRequest",
1557
1587
  "CreateTradeTicketsResponse",
1558
1588
  "CreateTransactionPortfolioRequest",
1559
1589
  "CreateUnitDefinition",
@@ -1621,6 +1651,7 @@ __all__ = [
1621
1651
  "DiscountingMethod",
1622
1652
  "DividendOptionEvent",
1623
1653
  "DividendReinvestmentEvent",
1654
+ "DrawdownEvent",
1624
1655
  "EarlyRedemptionElection",
1625
1656
  "EarlyRedemptionEvent",
1626
1657
  "EconomicDependency",
@@ -1674,6 +1705,7 @@ __all__ = [
1674
1705
  "FixedLeg",
1675
1706
  "FixedLegAllOfOverrides",
1676
1707
  "FixedSchedule",
1708
+ "FlexibleDeposit",
1677
1709
  "FlexibleLoan",
1678
1710
  "FloatSchedule",
1679
1711
  "FloatingLeg",
@@ -1698,6 +1730,7 @@ __all__ = [
1698
1730
  "FundingLegOptions",
1699
1731
  "Future",
1700
1732
  "FutureExpiryEvent",
1733
+ "FutureMarkToMarketEvent",
1701
1734
  "FuturesContractDetails",
1702
1735
  "FxConventions",
1703
1736
  "FxDependency",
@@ -1851,6 +1884,7 @@ __all__ = [
1851
1884
  "ListAggregationResponse",
1852
1885
  "ListComplexMarketDataWithMetaDataResponse",
1853
1886
  "LoanFacility",
1887
+ "LoanInterestRepaymentEvent",
1854
1888
  "LoanPeriod",
1855
1889
  "LockPeriodDiaryEntryRequest",
1856
1890
  "LusidInstrument",
@@ -1861,6 +1895,7 @@ __all__ = [
1861
1895
  "MappedString",
1862
1896
  "Mapping",
1863
1897
  "MappingRule",
1898
+ "MarkToMarketConventions",
1864
1899
  "MarketContext",
1865
1900
  "MarketContextSuppliers",
1866
1901
  "MarketDataKeyRule",
@@ -2024,6 +2059,7 @@ __all__ = [
2024
2059
  "PlacementRequest",
2025
2060
  "PlacementSetRequest",
2026
2061
  "PlacementUpdateRequest",
2062
+ "PnlJournalEntryLine",
2027
2063
  "Portfolio",
2028
2064
  "PortfolioCashFlow",
2029
2065
  "PortfolioCashLadder",
@@ -2037,6 +2073,7 @@ __all__ = [
2037
2073
  "PortfolioGroupProperties",
2038
2074
  "PortfolioGroupSearchResult",
2039
2075
  "PortfolioHolding",
2076
+ "PortfolioId",
2040
2077
  "PortfolioIdComplianceParameter",
2041
2078
  "PortfolioIdList",
2042
2079
  "PortfolioIdListComplianceParameter",
@@ -2297,10 +2334,12 @@ __all__ = [
2297
2334
  "TermDeposit",
2298
2335
  "TermDepositInterestEvent",
2299
2336
  "TermDepositPrincipalEvent",
2337
+ "Timeline",
2300
2338
  "TotalReturnSwap",
2301
2339
  "Touch",
2302
2340
  "TradeTicket",
2303
2341
  "TradeTicketType",
2342
+ "TradingConventions",
2304
2343
  "Transaction",
2305
2344
  "TransactionConfigurationData",
2306
2345
  "TransactionConfigurationDataRequest",
@@ -2380,6 +2419,7 @@ __all__ = [
2380
2419
  "UpdateRelationshipDefinitionRequest",
2381
2420
  "UpdateStagingRuleSetRequest",
2382
2421
  "UpdateTaxRuleSetRequest",
2422
+ "UpdateTimelineRequest",
2383
2423
  "UpdateUnitRequest",
2384
2424
  "UpsertCdsFlowConventionsRequest",
2385
2425
  "UpsertComplexMarketDataRequest",
@@ -2431,7 +2471,9 @@ __all__ = [
2431
2471
  "ValuationPointDataRequest",
2432
2472
  "ValuationPointDataResponse",
2433
2473
  "ValuationPointOverview",
2474
+ "ValuationPointResourceListOfAccountedTransaction",
2434
2475
  "ValuationPointResourceListOfJournalEntryLine",
2476
+ "ValuationPointResourceListOfPnlJournalEntryLine",
2435
2477
  "ValuationPointResourceListOfTrialBalance",
2436
2478
  "ValuationRequest",
2437
2479
  "ValuationSchedule",
lusid/api/__init__.py CHANGED
@@ -64,6 +64,7 @@ from lusid.api.staging_rule_set_api import StagingRuleSetApi
64
64
  from lusid.api.structured_result_data_api import StructuredResultDataApi
65
65
  from lusid.api.system_configuration_api import SystemConfigurationApi
66
66
  from lusid.api.tax_rule_sets_api import TaxRuleSetsApi
67
+ from lusid.api.timelines_api import TimelinesApi
67
68
  from lusid.api.transaction_configuration_api import TransactionConfigurationApi
68
69
  from lusid.api.transaction_fees_api import TransactionFeesApi
69
70
  from lusid.api.transaction_portfolios_api import TransactionPortfoliosApi
@@ -135,6 +136,7 @@ __all__ = [
135
136
  "StructuredResultDataApi",
136
137
  "SystemConfigurationApi",
137
138
  "TaxRuleSetsApi",
139
+ "TimelinesApi",
138
140
  "TransactionConfigurationApi",
139
141
  "TransactionFeesApi",
140
142
  "TransactionPortfoliosApi",
@@ -1609,15 +1609,15 @@ class ChartOfAccountsApi:
1609
1609
  _request_auth=_params.get('_request_auth'))
1610
1610
 
1611
1611
  @overload
1612
- async def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.")] = None, **kwargs) -> Account: # noqa: E501
1612
+ async def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.")] = None, **kwargs) -> Account: # noqa: E501
1613
1613
  ...
1614
1614
 
1615
1615
  @overload
1616
- def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.")] = None, async_req: Optional[bool]=True, **kwargs) -> Account: # noqa: E501
1616
+ def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.")] = None, async_req: Optional[bool]=True, **kwargs) -> Account: # noqa: E501
1617
1617
  ...
1618
1618
 
1619
1619
  @validate_arguments
1620
- def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Account, Awaitable[Account]]: # noqa: E501
1620
+ def get_account(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[Account, Awaitable[Account]]: # noqa: E501
1621
1621
  """[EXPERIMENTAL] GetAccount: Get Account # noqa: E501
1622
1622
 
1623
1623
  Retrieve the definition of a particular Account which is part of a Chart of Accounts. # noqa: E501
@@ -1637,7 +1637,7 @@ class ChartOfAccountsApi:
1637
1637
  :type effective_at: str
1638
1638
  :param as_at: The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.
1639
1639
  :type as_at: datetime
1640
- :param property_keys: A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.
1640
+ :param property_keys: A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.
1641
1641
  :type property_keys: List[str]
1642
1642
  :param async_req: Whether to execute the request asynchronously.
1643
1643
  :type async_req: bool, optional
@@ -1658,7 +1658,7 @@ class ChartOfAccountsApi:
1658
1658
  return self.get_account_with_http_info(scope, code, account_code, effective_at, as_at, property_keys, **kwargs) # noqa: E501
1659
1659
 
1660
1660
  @validate_arguments
1661
- def get_account_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1661
+ def get_account_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Chart of Accounts.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Chart of Accounts. Together with the scope this uniquely identifies the Chart of Accounts.")], account_code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Account.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the Account properties. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1662
1662
  """[EXPERIMENTAL] GetAccount: Get Account # noqa: E501
1663
1663
 
1664
1664
  Retrieve the definition of a particular Account which is part of a Chart of Accounts. # noqa: E501
@@ -1678,7 +1678,7 @@ class ChartOfAccountsApi:
1678
1678
  :type effective_at: str
1679
1679
  :param as_at: The asAt datetime at which to retrieve the Account definition. Defaults to returning the latest version of the Account definition if not specified.
1680
1680
  :type as_at: datetime
1681
- :param property_keys: A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If not provided will return all the entitled properties for that Account.
1681
+ :param property_keys: A list of property keys from the 'Account' domain to decorate onto the Account. These must take the format {domain}/{scope}/{code}, for example 'Account/Manager/Id'. If no properties are specified, then no properties will be returned.
1682
1682
  :type property_keys: List[str]
1683
1683
  :param async_req: Whether to execute the request asynchronously.
1684
1684
  :type async_req: bool, optional
@@ -400,7 +400,7 @@ class CorporateActionSourcesApi:
400
400
 
401
401
  @validate_arguments
402
402
  def delete_corporate_action_source(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source to be deleted")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source to be deleted")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
403
- """[BETA] DeleteCorporateActionSource: Delete corporate actions (instrument transition events) from the corporate action source. # noqa: E501
403
+ """[BETA] DeleteCorporateActionSource: Delete a corporate action source # noqa: E501
404
404
 
405
405
  Deletes a single corporate action source # noqa: E501
406
406
  This method makes a synchronous HTTP request by default. To make an
@@ -433,7 +433,7 @@ class CorporateActionSourcesApi:
433
433
 
434
434
  @validate_arguments
435
435
  def delete_corporate_action_source_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source to be deleted")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source to be deleted")], **kwargs) -> ApiResponse: # noqa: E501
436
- """[BETA] DeleteCorporateActionSource: Delete corporate actions (instrument transition events) from the corporate action source. # noqa: E501
436
+ """[BETA] DeleteCorporateActionSource: Delete a corporate action source # noqa: E501
437
437
 
438
438
  Deletes a single corporate action source # noqa: E501
439
439
  This method makes a synchronous HTTP request by default. To make an
@@ -559,7 +559,7 @@ class CorporateActionSourcesApi:
559
559
 
560
560
  @validate_arguments
561
561
  def delete_corporate_actions(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source")], corporate_action_ids : Annotated[conlist(StrictStr, max_items=1000), Field(..., description="The IDs of the corporate actions to delete")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
562
- """[EARLY ACCESS] DeleteCorporateActions: Delete corporate actions # noqa: E501
562
+ """[EARLY ACCESS] DeleteCorporateActions: Delete corporate actions (instrument transition events) from a corporate action source # noqa: E501
563
563
 
564
564
  Delete one or more corporate actions from a particular corporate action source. The maximum number of corporate actions that this method can delete per request is 1,000. # noqa: E501
565
565
  This method makes a synchronous HTTP request by default. To make an
@@ -594,7 +594,7 @@ class CorporateActionSourcesApi:
594
594
 
595
595
  @validate_arguments
596
596
  def delete_corporate_actions_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source")], corporate_action_ids : Annotated[conlist(StrictStr, max_items=1000), Field(..., description="The IDs of the corporate actions to delete")], **kwargs) -> ApiResponse: # noqa: E501
597
- """[EARLY ACCESS] DeleteCorporateActions: Delete corporate actions # noqa: E501
597
+ """[EARLY ACCESS] DeleteCorporateActions: Delete corporate actions (instrument transition events) from a corporate action source # noqa: E501
598
598
 
599
599
  Delete one or more corporate actions from a particular corporate action source. The maximum number of corporate actions that this method can delete per request is 1,000. # noqa: E501
600
600
  This method makes a synchronous HTTP request by default. To make an
@@ -727,7 +727,7 @@ class CorporateActionSourcesApi:
727
727
 
728
728
  @validate_arguments
729
729
  def delete_instrument_events(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source")], instrument_event_ids : Annotated[conlist(StrictStr, max_items=1000), Field(..., description="The IDs of the instrument events to delete")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
730
- """[EARLY ACCESS] DeleteInstrumentEvents: Delete corporate actions (instrument transition events) from the corporate action source. # noqa: E501
730
+ """[EARLY ACCESS] DeleteInstrumentEvents: Delete instrument events from a corporate action source # noqa: E501
731
731
 
732
732
  Delete one or more corporate actions from a particular corporate action source. The maximum number of instrument events that this method can delete per request is 1,000. # noqa: E501
733
733
  This method makes a synchronous HTTP request by default. To make an
@@ -762,7 +762,7 @@ class CorporateActionSourcesApi:
762
762
 
763
763
  @validate_arguments
764
764
  def delete_instrument_events_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the corporate action source")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the corporate action source")], instrument_event_ids : Annotated[conlist(StrictStr, max_items=1000), Field(..., description="The IDs of the instrument events to delete")], **kwargs) -> ApiResponse: # noqa: E501
765
- """[EARLY ACCESS] DeleteInstrumentEvents: Delete corporate actions (instrument transition events) from the corporate action source. # noqa: E501
765
+ """[EARLY ACCESS] DeleteInstrumentEvents: Delete instrument events from a corporate action source # noqa: E501
766
766
 
767
767
  Delete one or more corporate actions from a particular corporate action source. The maximum number of instrument events that this method can delete per request is 1,000. # noqa: E501
768
768
  This method makes a synchronous HTTP request by default. To make an