lusid-sdk 2.1.390__py3-none-any.whl → 2.1.462__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 (252) hide show
  1. lusid/__init__.py +98 -8
  2. lusid/api/__init__.py +2 -2
  3. lusid/api/abor_api.py +126 -133
  4. lusid/api/abor_configuration_api.py +46 -45
  5. lusid/api/address_key_definition_api.py +28 -27
  6. lusid/api/aggregation_api.py +37 -36
  7. lusid/api/allocations_api.py +39 -38
  8. lusid/api/amortisation_rule_sets_api.py +55 -54
  9. lusid/api/application_metadata_api.py +28 -27
  10. lusid/api/blocks_api.py +37 -36
  11. lusid/api/calendars_api.py +469 -111
  12. lusid/api/chart_of_accounts_api.py +454 -279
  13. lusid/api/complex_market_data_api.py +37 -36
  14. lusid/api/compliance_api.py +136 -135
  15. lusid/api/configuration_recipe_api.py +100 -99
  16. lusid/api/conventions_api.py +109 -108
  17. lusid/api/corporate_action_sources_api.py +82 -81
  18. lusid/api/counterparties_api.py +73 -72
  19. lusid/api/custom_entities_api.py +102 -101
  20. lusid/api/custom_entity_definitions_api.py +37 -36
  21. lusid/api/custom_entity_types_api.py +37 -36
  22. lusid/api/cut_label_definitions_api.py +46 -45
  23. lusid/api/data_types_api.py +248 -72
  24. lusid/api/derived_transaction_portfolios_api.py +19 -18
  25. lusid/api/entities_api.py +431 -46
  26. lusid/api/executions_api.py +37 -36
  27. lusid/api/fee_types_api.py +55 -54
  28. lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
  29. lusid/api/funds_api.py +337 -162
  30. lusid/api/group_reconciliations_api.py +1437 -45
  31. lusid/api/instrument_event_types_api.py +64 -63
  32. lusid/api/instrument_events_api.py +46 -45
  33. lusid/api/instruments_api.py +187 -186
  34. lusid/api/legacy_compliance_api.py +73 -72
  35. lusid/api/legal_entities_api.py +167 -166
  36. lusid/api/order_graph_api.py +32 -31
  37. lusid/api/order_instructions_api.py +37 -36
  38. lusid/api/order_management_api.py +276 -102
  39. lusid/api/orders_api.py +37 -36
  40. lusid/api/packages_api.py +37 -36
  41. lusid/api/participations_api.py +37 -36
  42. lusid/api/persons_api.py +167 -166
  43. lusid/api/placements_api.py +37 -36
  44. lusid/api/portfolio_groups_api.py +235 -234
  45. lusid/api/portfolios_api.py +449 -272
  46. lusid/api/property_definitions_api.py +100 -99
  47. lusid/api/queryable_keys_api.py +10 -9
  48. lusid/api/quotes_api.py +82 -81
  49. lusid/api/reconciliations_api.py +136 -135
  50. lusid/api/reference_lists_api.py +39 -38
  51. lusid/api/reference_portfolio_api.py +213 -36
  52. lusid/api/relation_definitions_api.py +28 -27
  53. lusid/api/relations_api.py +19 -18
  54. lusid/api/relationship_definitions_api.py +46 -45
  55. lusid/api/relationships_api.py +19 -18
  56. lusid/api/schemas_api.py +37 -36
  57. lusid/api/scopes_api.py +19 -18
  58. lusid/api/scripted_translation_api.py +73 -72
  59. lusid/api/search_api.py +37 -36
  60. lusid/api/sequences_api.py +37 -36
  61. lusid/api/staged_modifications_api.py +37 -36
  62. lusid/api/staging_rule_set_api.py +46 -45
  63. lusid/api/structured_result_data_api.py +82 -81
  64. lusid/api/system_configuration_api.py +64 -63
  65. lusid/api/tax_rule_sets_api.py +46 -45
  66. lusid/api/transaction_configuration_api.py +100 -99
  67. lusid/api/transaction_fees_api.py +46 -45
  68. lusid/api/transaction_portfolios_api.py +569 -326
  69. lusid/api/translation_api.py +19 -18
  70. lusid/api/workspace_api.py +181 -180
  71. lusid/api_client.py +26 -17
  72. lusid/configuration.py +87 -2
  73. lusid/extensions/api_client.py +25 -17
  74. lusid/extensions/api_client_factory.py +14 -5
  75. lusid/extensions/api_configuration.py +50 -1
  76. lusid/extensions/configuration_loaders.py +39 -11
  77. lusid/extensions/configuration_options.py +67 -0
  78. lusid/extensions/rest.py +78 -26
  79. lusid/extensions/retry.py +109 -37
  80. lusid/models/__init__.py +96 -6
  81. lusid/models/access_metadata_value.py +1 -1
  82. lusid/models/accounting_method.py +7 -0
  83. lusid/models/accumulation_event.py +3 -3
  84. lusid/models/address_key_list.py +3 -3
  85. lusid/models/amortisation_event.py +3 -3
  86. lusid/models/amount.py +69 -0
  87. lusid/models/basket.py +3 -3
  88. lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
  89. lusid/models/batch_upsert_portfolio_access_metadata_request.py +92 -0
  90. lusid/models/batch_upsert_portfolio_access_metadata_response.py +122 -0
  91. lusid/models/batch_upsert_portfolio_access_metadata_response_item.py +92 -0
  92. lusid/models/bond.py +3 -3
  93. lusid/models/bond_coupon_event.py +3 -3
  94. lusid/models/bond_default_event.py +3 -3
  95. lusid/models/bond_principal_event.py +3 -3
  96. lusid/models/bonus_issue_event.py +166 -0
  97. lusid/models/{component_rule.py → break_code_source.py} +17 -21
  98. lusid/models/cancel_order_and_move_remaining_result.py +84 -0
  99. lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
  100. lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
  101. lusid/models/cap_floor.py +3 -3
  102. lusid/models/capital_distribution_event.py +3 -3
  103. lusid/models/cash.py +3 -3
  104. lusid/models/cash_dividend_event.py +3 -3
  105. lusid/models/cash_flow_event.py +3 -3
  106. lusid/models/cash_perpetual.py +3 -3
  107. lusid/models/cds_credit_event.py +105 -0
  108. lusid/models/cds_index.py +3 -3
  109. lusid/models/cdx_credit_event.py +114 -0
  110. lusid/models/change_interval.py +123 -0
  111. lusid/models/change_interval_with_order_management_detail.py +137 -0
  112. lusid/models/close_event.py +3 -3
  113. lusid/models/complex_bond.py +3 -3
  114. lusid/models/contract_for_difference.py +3 -3
  115. lusid/models/create_derived_transaction_portfolio_request.py +3 -3
  116. lusid/models/create_group_reconciliation_definition_request.py +113 -0
  117. lusid/models/create_transaction_portfolio_request.py +3 -3
  118. lusid/models/credit_default_swap.py +3 -3
  119. lusid/models/credit_premium_cash_flow_event.py +102 -0
  120. lusid/models/custom_entity_entity.py +146 -0
  121. lusid/models/custom_entity_response.py +7 -1
  122. lusid/models/decimal_list.py +3 -3
  123. lusid/models/diary_entry_request.py +10 -1
  124. lusid/models/dividend_option_event.py +3 -3
  125. lusid/models/dividend_reinvestment_event.py +3 -3
  126. lusid/models/effective_range.py +71 -0
  127. lusid/models/equity.py +3 -3
  128. lusid/models/equity_option.py +3 -3
  129. lusid/models/equity_swap.py +3 -3
  130. lusid/models/exchange_traded_option.py +3 -3
  131. lusid/models/exercise_event.py +3 -3
  132. lusid/models/exotic_instrument.py +3 -3
  133. lusid/models/expiry_event.py +3 -3
  134. lusid/models/fee.py +8 -8
  135. lusid/models/fee_request.py +8 -8
  136. lusid/models/fee_type.py +4 -4
  137. lusid/models/fee_type_request.py +3 -3
  138. lusid/models/fixed_leg.py +3 -3
  139. lusid/models/fixed_schedule.py +3 -3
  140. lusid/models/flexible_loan.py +3 -3
  141. lusid/models/float_schedule.py +4 -4
  142. lusid/models/floating_leg.py +3 -3
  143. lusid/models/flow_conventions.py +7 -1
  144. lusid/models/forward_rate_agreement.py +3 -3
  145. lusid/models/fund_configuration.py +44 -17
  146. lusid/models/fund_configuration_request.py +31 -19
  147. lusid/models/fund_id_list.py +99 -0
  148. lusid/models/fund_share_class.py +23 -8
  149. lusid/models/funding_leg.py +3 -3
  150. lusid/models/future.py +3 -3
  151. lusid/models/future_expiry_event.py +3 -3
  152. lusid/models/fx_forward.py +3 -3
  153. lusid/models/fx_forward_settlement_event.py +13 -5
  154. lusid/models/fx_option.py +3 -3
  155. lusid/models/fx_swap.py +3 -3
  156. lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
  157. lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
  158. lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
  159. lusid/models/group_reconciliation_definition.py +136 -0
  160. lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
  161. lusid/models/group_reconciliation_definition_currencies.py +71 -0
  162. lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
  163. lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
  164. lusid/models/holding_contributor.py +11 -4
  165. lusid/models/holding_ids_request.py +69 -0
  166. lusid/models/holding_pricing_info.py +110 -0
  167. lusid/models/inflation_leg.py +3 -3
  168. lusid/models/inflation_linked_bond.py +3 -3
  169. lusid/models/inflation_swap.py +3 -3
  170. lusid/models/informational_error_event.py +3 -3
  171. lusid/models/informational_event.py +3 -3
  172. lusid/models/instrument.py +7 -1
  173. lusid/models/instrument_definition.py +8 -2
  174. lusid/models/instrument_event.py +15 -5
  175. lusid/models/instrument_event_holder.py +9 -1
  176. lusid/models/instrument_event_type.py +10 -0
  177. lusid/models/instrument_leg.py +3 -3
  178. lusid/models/instrument_list.py +3 -3
  179. lusid/models/instrument_type.py +2 -0
  180. lusid/models/interest_rate_swap.py +3 -3
  181. lusid/models/interest_rate_swaption.py +3 -3
  182. lusid/models/lapse_election.py +73 -0
  183. lusid/models/loan_facility.py +97 -0
  184. lusid/models/lusid_instrument.py +7 -5
  185. lusid/models/market_data_key_rule.py +5 -3
  186. lusid/models/market_data_specific_rule.py +5 -3
  187. lusid/models/mastered_instrument.py +139 -0
  188. lusid/models/maturity_event.py +3 -3
  189. lusid/models/mbs_coupon_event.py +97 -0
  190. lusid/models/mbs_interest_deferral_event.py +97 -0
  191. lusid/models/mbs_interest_shortfall_event.py +97 -0
  192. lusid/models/mbs_principal_event.py +97 -0
  193. lusid/models/mbs_principal_write_off_event.py +97 -0
  194. lusid/models/merger_event.py +22 -22
  195. lusid/models/open_event.py +3 -3
  196. lusid/models/output_transaction.py +9 -2
  197. lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
  198. lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
  199. lusid/models/portfolio.py +3 -3
  200. lusid/models/portfolio_details.py +3 -3
  201. lusid/models/portfolio_group_id_list.py +3 -3
  202. lusid/models/portfolio_id_list.py +3 -3
  203. lusid/models/portfolio_without_href.py +3 -3
  204. lusid/models/pricing_context.py +8 -2
  205. lusid/models/property_list.py +3 -3
  206. lusid/models/raw_vendor_event.py +3 -3
  207. lusid/models/reference_instrument.py +3 -3
  208. lusid/models/reference_list.py +6 -5
  209. lusid/models/reference_list_type.py +1 -0
  210. lusid/models/repo.py +3 -3
  211. lusid/models/reset_event.py +3 -3
  212. lusid/models/{resource_list_of_entity_change_item.py → resource_list_of_change_interval.py} +11 -11
  213. lusid/models/resource_list_of_change_interval_with_order_management_detail.py +113 -0
  214. lusid/models/reverse_stock_split_event.py +21 -7
  215. lusid/models/scrip_dividend_event.py +3 -3
  216. lusid/models/settlement_cycle.py +79 -0
  217. lusid/models/share_class_dealing_breakdown.py +3 -2
  218. lusid/models/share_class_details.py +18 -1
  219. lusid/models/simple_cash_flow_loan.py +3 -3
  220. lusid/models/simple_instrument.py +3 -3
  221. lusid/models/simple_rounding_convention.py +76 -0
  222. lusid/models/specific_holding_pricing_info.py +75 -0
  223. lusid/models/spin_off_event.py +3 -3
  224. lusid/models/staged_modification.py +8 -1
  225. lusid/models/staged_modification_effective_range.py +2 -2
  226. lusid/models/stock_dividend_event.py +20 -6
  227. lusid/models/stock_split_event.py +3 -3
  228. lusid/models/string_list.py +3 -3
  229. lusid/models/swap_cash_flow_event.py +3 -3
  230. lusid/models/swap_principal_event.py +3 -3
  231. lusid/models/tender_event.py +172 -0
  232. lusid/models/term_deposit.py +3 -3
  233. lusid/models/total_return_swap.py +3 -3
  234. lusid/models/transaction.py +9 -2
  235. lusid/models/transaction_date_windows.py +85 -0
  236. lusid/models/transaction_request.py +9 -2
  237. lusid/models/transition_event.py +3 -3
  238. lusid/models/trigger_event.py +3 -3
  239. lusid/models/update_fee_type_request.py +4 -4
  240. lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
  241. lusid/models/update_group_reconciliation_definition_request.py +107 -0
  242. lusid/models/update_reference_data_request.py +87 -0
  243. lusid/models/upsert_custom_entities_response.py +20 -1
  244. lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
  245. lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
  246. lusid/models/valuation_point_data_query_parameters.py +3 -3
  247. lusid/models/valuation_point_data_response.py +8 -13
  248. lusid/rest.py +70 -20
  249. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/METADATA +90 -25
  250. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/RECORD +251 -205
  251. lusid/models/entity_change_item.py +0 -121
  252. {lusid_sdk-2.1.390.dist-info → lusid_sdk-2.1.462.dist-info}/WHEEL +0 -0
lusid/models/__init__.py CHANGED
@@ -67,6 +67,7 @@ from lusid.models.allocation_set_request import AllocationSetRequest
67
67
  from lusid.models.amortisation_event import AmortisationEvent
68
68
  from lusid.models.amortisation_rule import AmortisationRule
69
69
  from lusid.models.amortisation_rule_set import AmortisationRuleSet
70
+ from lusid.models.amount import Amount
70
71
  from lusid.models.annul_quotes_response import AnnulQuotesResponse
71
72
  from lusid.models.annul_single_structured_data_response import AnnulSingleStructuredDataResponse
72
73
  from lusid.models.annul_structured_data_response import AnnulStructuredDataResponse
@@ -77,7 +78,11 @@ from lusid.models.barrier import Barrier
77
78
  from lusid.models.basket import Basket
78
79
  from lusid.models.basket_identifier import BasketIdentifier
79
80
  from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsResponse
81
+ from lusid.models.batch_upsert_dates_for_calendar_response import BatchUpsertDatesForCalendarResponse
80
82
  from lusid.models.batch_upsert_instrument_properties_response import BatchUpsertInstrumentPropertiesResponse
83
+ from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
84
+ from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
85
+ from lusid.models.batch_upsert_portfolio_access_metadata_response_item import BatchUpsertPortfolioAccessMetadataResponseItem
81
86
  from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
82
87
  from lusid.models.batch_upsert_property_definition_properties_response import BatchUpsertPropertyDefinitionPropertiesResponse
83
88
  from lusid.models.block import Block
@@ -94,12 +99,14 @@ from lusid.models.bond_conversion_schedule import BondConversionSchedule
94
99
  from lusid.models.bond_coupon_event import BondCouponEvent
95
100
  from lusid.models.bond_default_event import BondDefaultEvent
96
101
  from lusid.models.bond_principal_event import BondPrincipalEvent
102
+ from lusid.models.bonus_issue_event import BonusIssueEvent
97
103
  from lusid.models.book_transactions_request import BookTransactionsRequest
98
104
  from lusid.models.book_transactions_response import BookTransactionsResponse
99
105
  from lusid.models.bool_compliance_parameter import BoolComplianceParameter
100
106
  from lusid.models.bool_list_compliance_parameter import BoolListComplianceParameter
101
107
  from lusid.models.branch_step import BranchStep
102
108
  from lusid.models.branch_step_request import BranchStepRequest
109
+ from lusid.models.break_code_source import BreakCodeSource
103
110
  from lusid.models.bucketed_cash_flow_request import BucketedCashFlowRequest
104
111
  from lusid.models.bucketed_cash_flow_response import BucketedCashFlowResponse
105
112
  from lusid.models.bucketing_schedule import BucketingSchedule
@@ -107,6 +114,9 @@ from lusid.models.calculation_info import CalculationInfo
107
114
  from lusid.models.calendar import Calendar
108
115
  from lusid.models.calendar_date import CalendarDate
109
116
  from lusid.models.calendar_dependency import CalendarDependency
117
+ from lusid.models.cancel_order_and_move_remaining_result import CancelOrderAndMoveRemainingResult
118
+ from lusid.models.cancel_orders_and_move_remaining_request import CancelOrdersAndMoveRemainingRequest
119
+ from lusid.models.cancel_orders_and_move_remaining_response import CancelOrdersAndMoveRemainingResponse
110
120
  from lusid.models.cancel_orders_response import CancelOrdersResponse
111
121
  from lusid.models.cancel_placements_response import CancelPlacementsResponse
112
122
  from lusid.models.cancelled_order_result import CancelledOrderResult
@@ -125,12 +135,16 @@ from lusid.models.cash_flow_value_set import CashFlowValueSet
125
135
  from lusid.models.cash_ladder_record import CashLadderRecord
126
136
  from lusid.models.cash_offer_election import CashOfferElection
127
137
  from lusid.models.cash_perpetual import CashPerpetual
138
+ from lusid.models.cds_credit_event import CdsCreditEvent
128
139
  from lusid.models.cds_flow_conventions import CdsFlowConventions
129
140
  from lusid.models.cds_index import CdsIndex
130
141
  from lusid.models.cds_protection_detail_specification import CdsProtectionDetailSpecification
142
+ from lusid.models.cdx_credit_event import CdxCreditEvent
131
143
  from lusid.models.change import Change
132
144
  from lusid.models.change_history import ChangeHistory
133
145
  from lusid.models.change_history_action import ChangeHistoryAction
146
+ from lusid.models.change_interval import ChangeInterval
147
+ from lusid.models.change_interval_with_order_management_detail import ChangeIntervalWithOrderManagementDetail
134
148
  from lusid.models.change_item import ChangeItem
135
149
  from lusid.models.chart_of_accounts import ChartOfAccounts
136
150
  from lusid.models.chart_of_accounts_properties import ChartOfAccountsProperties
@@ -180,7 +194,6 @@ from lusid.models.compliance_template_variation import ComplianceTemplateVariati
180
194
  from lusid.models.compliance_template_variation_dto import ComplianceTemplateVariationDto
181
195
  from lusid.models.compliance_template_variation_request import ComplianceTemplateVariationRequest
182
196
  from lusid.models.component_filter import ComponentFilter
183
- from lusid.models.component_rule import ComponentRule
184
197
  from lusid.models.component_transaction import ComponentTransaction
185
198
  from lusid.models.composite_breakdown import CompositeBreakdown
186
199
  from lusid.models.composite_breakdown_request import CompositeBreakdownRequest
@@ -214,6 +227,7 @@ from lusid.models.create_date_request import CreateDateRequest
214
227
  from lusid.models.create_derived_property_definition_request import CreateDerivedPropertyDefinitionRequest
215
228
  from lusid.models.create_derived_transaction_portfolio_request import CreateDerivedTransactionPortfolioRequest
216
229
  from lusid.models.create_group_reconciliation_comparison_ruleset_request import CreateGroupReconciliationComparisonRulesetRequest
230
+ from lusid.models.create_group_reconciliation_definition_request import CreateGroupReconciliationDefinitionRequest
217
231
  from lusid.models.create_portfolio_details import CreatePortfolioDetails
218
232
  from lusid.models.create_portfolio_group_request import CreatePortfolioGroupRequest
219
233
  from lusid.models.create_property_definition_request import CreatePropertyDefinitionRequest
@@ -231,6 +245,7 @@ from lusid.models.create_trade_tickets_response import CreateTradeTicketsRespons
231
245
  from lusid.models.create_transaction_portfolio_request import CreateTransactionPortfolioRequest
232
246
  from lusid.models.create_unit_definition import CreateUnitDefinition
233
247
  from lusid.models.credit_default_swap import CreditDefaultSwap
248
+ from lusid.models.credit_premium_cash_flow_event import CreditPremiumCashFlowEvent
234
249
  from lusid.models.credit_rating import CreditRating
235
250
  from lusid.models.credit_spread_curve_data import CreditSpreadCurveData
236
251
  from lusid.models.credit_support_annex import CreditSupportAnnex
@@ -243,6 +258,7 @@ from lusid.models.custodian_account_request import CustodianAccountRequest
243
258
  from lusid.models.custodian_accounts_upsert_response import CustodianAccountsUpsertResponse
244
259
  from lusid.models.custom_entity_definition import CustomEntityDefinition
245
260
  from lusid.models.custom_entity_definition_request import CustomEntityDefinitionRequest
261
+ from lusid.models.custom_entity_entity import CustomEntityEntity
246
262
  from lusid.models.custom_entity_field import CustomEntityField
247
263
  from lusid.models.custom_entity_field_definition import CustomEntityFieldDefinition
248
264
  from lusid.models.custom_entity_id import CustomEntityId
@@ -296,10 +312,10 @@ from lusid.models.economic_dependency import EconomicDependency
296
312
  from lusid.models.economic_dependency_type import EconomicDependencyType
297
313
  from lusid.models.economic_dependency_with_complex_market_data import EconomicDependencyWithComplexMarketData
298
314
  from lusid.models.economic_dependency_with_quote import EconomicDependencyWithQuote
315
+ from lusid.models.effective_range import EffectiveRange
299
316
  from lusid.models.election_specification import ElectionSpecification
300
317
  from lusid.models.eligibility_calculation import EligibilityCalculation
301
318
  from lusid.models.empty_model_options import EmptyModelOptions
302
- from lusid.models.entity_change_item import EntityChangeItem
303
319
  from lusid.models.entity_identifier import EntityIdentifier
304
320
  from lusid.models.equity import Equity
305
321
  from lusid.models.equity_all_of_identifiers import EquityAllOfIdentifiers
@@ -355,6 +371,7 @@ from lusid.models.fund_configuration import FundConfiguration
355
371
  from lusid.models.fund_configuration_properties import FundConfigurationProperties
356
372
  from lusid.models.fund_configuration_request import FundConfigurationRequest
357
373
  from lusid.models.fund_details import FundDetails
374
+ from lusid.models.fund_id_list import FundIdList
358
375
  from lusid.models.fund_pnl_breakdown import FundPnlBreakdown
359
376
  from lusid.models.fund_previous_nav import FundPreviousNAV
360
377
  from lusid.models.fund_properties import FundProperties
@@ -417,11 +434,18 @@ from lusid.models.group_reconciliation_comparison_rule_tolerance import GroupRec
417
434
  from lusid.models.group_reconciliation_comparison_ruleset import GroupReconciliationComparisonRuleset
418
435
  from lusid.models.group_reconciliation_core_attribute_rule import GroupReconciliationCoreAttributeRule
419
436
  from lusid.models.group_reconciliation_core_comparison_rule_operand import GroupReconciliationCoreComparisonRuleOperand
437
+ from lusid.models.group_reconciliation_definition import GroupReconciliationDefinition
438
+ from lusid.models.group_reconciliation_definition_comparison_ruleset_ids import GroupReconciliationDefinitionComparisonRulesetIds
439
+ from lusid.models.group_reconciliation_definition_currencies import GroupReconciliationDefinitionCurrencies
440
+ from lusid.models.group_reconciliation_definition_portfolio_entity_ids import GroupReconciliationDefinitionPortfolioEntityIds
441
+ from lusid.models.group_reconciliation_definition_recipe_ids import GroupReconciliationDefinitionRecipeIds
420
442
  from lusid.models.grouped_result_of_address_key import GroupedResultOfAddressKey
421
443
  from lusid.models.holding_adjustment import HoldingAdjustment
422
444
  from lusid.models.holding_adjustment_with_date import HoldingAdjustmentWithDate
423
445
  from lusid.models.holding_context import HoldingContext
424
446
  from lusid.models.holding_contributor import HoldingContributor
447
+ from lusid.models.holding_ids_request import HoldingIdsRequest
448
+ from lusid.models.holding_pricing_info import HoldingPricingInfo
425
449
  from lusid.models.holdings_adjustment import HoldingsAdjustment
426
450
  from lusid.models.holdings_adjustment_header import HoldingsAdjustmentHeader
427
451
  from lusid.models.i_unit_definition_dto import IUnitDefinitionDto
@@ -479,6 +503,7 @@ from lusid.models.is_business_day_response import IsBusinessDayResponse
479
503
  from lusid.models.journal_entry_line import JournalEntryLine
480
504
  from lusid.models.journal_entry_lines_query_parameters import JournalEntryLinesQueryParameters
481
505
  from lusid.models.label_value_set import LabelValueSet
506
+ from lusid.models.lapse_election import LapseElection
482
507
  from lusid.models.leg_definition import LegDefinition
483
508
  from lusid.models.legal_entity import LegalEntity
484
509
  from lusid.models.level_step import LevelStep
@@ -489,6 +514,7 @@ from lusid.models.link import Link
489
514
  from lusid.models.list_aggregation_reconciliation import ListAggregationReconciliation
490
515
  from lusid.models.list_aggregation_response import ListAggregationResponse
491
516
  from lusid.models.list_complex_market_data_with_meta_data_response import ListComplexMarketDataWithMetaDataResponse
517
+ from lusid.models.loan_facility import LoanFacility
492
518
  from lusid.models.loan_period import LoanPeriod
493
519
  from lusid.models.lock_period_diary_entry_request import LockPeriodDiaryEntryRequest
494
520
  from lusid.models.lusid_instrument import LusidInstrument
@@ -510,8 +536,14 @@ from lusid.models.market_data_type import MarketDataType
510
536
  from lusid.models.market_observable_type import MarketObservableType
511
537
  from lusid.models.market_options import MarketOptions
512
538
  from lusid.models.market_quote import MarketQuote
539
+ from lusid.models.mastered_instrument import MasteredInstrument
513
540
  from lusid.models.match_criterion import MatchCriterion
514
541
  from lusid.models.maturity_event import MaturityEvent
542
+ from lusid.models.mbs_coupon_event import MbsCouponEvent
543
+ from lusid.models.mbs_interest_deferral_event import MbsInterestDeferralEvent
544
+ from lusid.models.mbs_interest_shortfall_event import MbsInterestShortfallEvent
545
+ from lusid.models.mbs_principal_event import MbsPrincipalEvent
546
+ from lusid.models.mbs_principal_write_off_event import MbsPrincipalWriteOffEvent
515
547
  from lusid.models.merger_event import MergerEvent
516
548
  from lusid.models.metric_value import MetricValue
517
549
  from lusid.models.model_options import ModelOptions
@@ -600,6 +632,8 @@ from lusid.models.paged_resource_list_of_fee_type import PagedResourceListOfFeeT
600
632
  from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
601
633
  from lusid.models.paged_resource_list_of_fund_configuration import PagedResourceListOfFundConfiguration
602
634
  from lusid.models.paged_resource_list_of_general_ledger_profile_response import PagedResourceListOfGeneralLedgerProfileResponse
635
+ from lusid.models.paged_resource_list_of_group_reconciliation_comparison_ruleset import PagedResourceListOfGroupReconciliationComparisonRuleset
636
+ from lusid.models.paged_resource_list_of_group_reconciliation_definition import PagedResourceListOfGroupReconciliationDefinition
603
637
  from lusid.models.paged_resource_list_of_instrument import PagedResourceListOfInstrument
604
638
  from lusid.models.paged_resource_list_of_instrument_event_holder import PagedResourceListOfInstrumentEventHolder
605
639
  from lusid.models.paged_resource_list_of_instrument_event_instruction import PagedResourceListOfInstrumentEventInstruction
@@ -774,6 +808,8 @@ from lusid.models.resource_list_of_block_and_orders import ResourceListOfBlockAn
774
808
  from lusid.models.resource_list_of_calendar_date import ResourceListOfCalendarDate
775
809
  from lusid.models.resource_list_of_change import ResourceListOfChange
776
810
  from lusid.models.resource_list_of_change_history import ResourceListOfChangeHistory
811
+ from lusid.models.resource_list_of_change_interval import ResourceListOfChangeInterval
812
+ from lusid.models.resource_list_of_change_interval_with_order_management_detail import ResourceListOfChangeIntervalWithOrderManagementDetail
777
813
  from lusid.models.resource_list_of_compliance_breached_order_info import ResourceListOfComplianceBreachedOrderInfo
778
814
  from lusid.models.resource_list_of_compliance_rule import ResourceListOfComplianceRule
779
815
  from lusid.models.resource_list_of_compliance_rule_result import ResourceListOfComplianceRuleResult
@@ -781,7 +817,6 @@ from lusid.models.resource_list_of_compliance_run_info import ResourceListOfComp
781
817
  from lusid.models.resource_list_of_constituents_adjustment_header import ResourceListOfConstituentsAdjustmentHeader
782
818
  from lusid.models.resource_list_of_corporate_action import ResourceListOfCorporateAction
783
819
  from lusid.models.resource_list_of_data_type import ResourceListOfDataType
784
- from lusid.models.resource_list_of_entity_change_item import ResourceListOfEntityChangeItem
785
820
  from lusid.models.resource_list_of_execution import ResourceListOfExecution
786
821
  from lusid.models.resource_list_of_fee_rule import ResourceListOfFeeRule
787
822
  from lusid.models.resource_list_of_get_cds_flow_conventions_response import ResourceListOfGetCdsFlowConventionsResponse
@@ -865,6 +900,7 @@ from lusid.models.set_person_properties_request import SetPersonPropertiesReques
865
900
  from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
866
901
  from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
867
902
  from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
903
+ from lusid.models.settlement_cycle import SettlementCycle
868
904
  from lusid.models.settlement_schedule import SettlementSchedule
869
905
  from lusid.models.share_class_amount import ShareClassAmount
870
906
  from lusid.models.share_class_breakdown import ShareClassBreakdown
@@ -879,7 +915,9 @@ from lusid.models.side_definition_request import SideDefinitionRequest
879
915
  from lusid.models.sides_definition_request import SidesDefinitionRequest
880
916
  from lusid.models.simple_cash_flow_loan import SimpleCashFlowLoan
881
917
  from lusid.models.simple_instrument import SimpleInstrument
918
+ from lusid.models.simple_rounding_convention import SimpleRoundingConvention
882
919
  from lusid.models.sort_order import SortOrder
920
+ from lusid.models.specific_holding_pricing_info import SpecificHoldingPricingInfo
883
921
  from lusid.models.spin_off_event import SpinOffEvent
884
922
  from lusid.models.staged_modification import StagedModification
885
923
  from lusid.models.staged_modification_decision import StagedModificationDecision
@@ -911,6 +949,7 @@ from lusid.models.target_tax_lot_request import TargetTaxLotRequest
911
949
  from lusid.models.tax_rule import TaxRule
912
950
  from lusid.models.tax_rule_set import TaxRuleSet
913
951
  from lusid.models.template_field import TemplateField
952
+ from lusid.models.tender_event import TenderEvent
914
953
  from lusid.models.term_deposit import TermDeposit
915
954
  from lusid.models.total_return_swap import TotalReturnSwap
916
955
  from lusid.models.touch import Touch
@@ -923,6 +962,7 @@ from lusid.models.transaction_configuration_movement_data import TransactionConf
923
962
  from lusid.models.transaction_configuration_movement_data_request import TransactionConfigurationMovementDataRequest
924
963
  from lusid.models.transaction_configuration_type_alias import TransactionConfigurationTypeAlias
925
964
  from lusid.models.transaction_currency_and_amount import TransactionCurrencyAndAmount
965
+ from lusid.models.transaction_date_windows import TransactionDateWindows
926
966
  from lusid.models.transaction_diagnostics import TransactionDiagnostics
927
967
  from lusid.models.transaction_field_map import TransactionFieldMap
928
968
  from lusid.models.transaction_price import TransactionPrice
@@ -980,6 +1020,8 @@ from lusid.models.update_cut_label_definition_request import UpdateCutLabelDefin
980
1020
  from lusid.models.update_data_type_request import UpdateDataTypeRequest
981
1021
  from lusid.models.update_derived_property_definition_request import UpdateDerivedPropertyDefinitionRequest
982
1022
  from lusid.models.update_fee_type_request import UpdateFeeTypeRequest
1023
+ from lusid.models.update_group_reconciliation_comparison_ruleset_request import UpdateGroupReconciliationComparisonRulesetRequest
1024
+ from lusid.models.update_group_reconciliation_definition_request import UpdateGroupReconciliationDefinitionRequest
983
1025
  from lusid.models.update_instrument_identifier_request import UpdateInstrumentIdentifierRequest
984
1026
  from lusid.models.update_orders_response import UpdateOrdersResponse
985
1027
  from lusid.models.update_placements_response import UpdatePlacementsResponse
@@ -987,6 +1029,7 @@ from lusid.models.update_portfolio_group_request import UpdatePortfolioGroupRequ
987
1029
  from lusid.models.update_portfolio_request import UpdatePortfolioRequest
988
1030
  from lusid.models.update_property_definition_request import UpdatePropertyDefinitionRequest
989
1031
  from lusid.models.update_reconciliation_request import UpdateReconciliationRequest
1032
+ from lusid.models.update_reference_data_request import UpdateReferenceDataRequest
990
1033
  from lusid.models.update_relationship_definition_request import UpdateRelationshipDefinitionRequest
991
1034
  from lusid.models.update_staging_rule_set_request import UpdateStagingRuleSetRequest
992
1035
  from lusid.models.update_tax_rule_set_request import UpdateTaxRuleSetRequest
@@ -1024,6 +1067,8 @@ from lusid.models.upsert_quote_request import UpsertQuoteRequest
1024
1067
  from lusid.models.upsert_quotes_response import UpsertQuotesResponse
1025
1068
  from lusid.models.upsert_recipe_composer_request import UpsertRecipeComposerRequest
1026
1069
  from lusid.models.upsert_recipe_request import UpsertRecipeRequest
1070
+ from lusid.models.upsert_reference_portfolio_constituent_properties_request import UpsertReferencePortfolioConstituentPropertiesRequest
1071
+ from lusid.models.upsert_reference_portfolio_constituent_properties_response import UpsertReferencePortfolioConstituentPropertiesResponse
1027
1072
  from lusid.models.upsert_reference_portfolio_constituents_request import UpsertReferencePortfolioConstituentsRequest
1028
1073
  from lusid.models.upsert_reference_portfolio_constituents_response import UpsertReferencePortfolioConstituentsResponse
1029
1074
  from lusid.models.upsert_result_values_data_request import UpsertResultValuesDataRequest
@@ -1128,6 +1173,7 @@ __all__ = [
1128
1173
  "AmortisationEvent",
1129
1174
  "AmortisationRule",
1130
1175
  "AmortisationRuleSet",
1176
+ "Amount",
1131
1177
  "AnnulQuotesResponse",
1132
1178
  "AnnulSingleStructuredDataResponse",
1133
1179
  "AnnulStructuredDataResponse",
@@ -1138,7 +1184,11 @@ __all__ = [
1138
1184
  "Basket",
1139
1185
  "BasketIdentifier",
1140
1186
  "BatchAdjustHoldingsResponse",
1187
+ "BatchUpsertDatesForCalendarResponse",
1141
1188
  "BatchUpsertInstrumentPropertiesResponse",
1189
+ "BatchUpsertPortfolioAccessMetadataRequest",
1190
+ "BatchUpsertPortfolioAccessMetadataResponse",
1191
+ "BatchUpsertPortfolioAccessMetadataResponseItem",
1142
1192
  "BatchUpsertPortfolioTransactionsResponse",
1143
1193
  "BatchUpsertPropertyDefinitionPropertiesResponse",
1144
1194
  "Block",
@@ -1155,12 +1205,14 @@ __all__ = [
1155
1205
  "BondCouponEvent",
1156
1206
  "BondDefaultEvent",
1157
1207
  "BondPrincipalEvent",
1208
+ "BonusIssueEvent",
1158
1209
  "BookTransactionsRequest",
1159
1210
  "BookTransactionsResponse",
1160
1211
  "BoolComplianceParameter",
1161
1212
  "BoolListComplianceParameter",
1162
1213
  "BranchStep",
1163
1214
  "BranchStepRequest",
1215
+ "BreakCodeSource",
1164
1216
  "BucketedCashFlowRequest",
1165
1217
  "BucketedCashFlowResponse",
1166
1218
  "BucketingSchedule",
@@ -1168,6 +1220,9 @@ __all__ = [
1168
1220
  "Calendar",
1169
1221
  "CalendarDate",
1170
1222
  "CalendarDependency",
1223
+ "CancelOrderAndMoveRemainingResult",
1224
+ "CancelOrdersAndMoveRemainingRequest",
1225
+ "CancelOrdersAndMoveRemainingResponse",
1171
1226
  "CancelOrdersResponse",
1172
1227
  "CancelPlacementsResponse",
1173
1228
  "CancelledOrderResult",
@@ -1186,12 +1241,16 @@ __all__ = [
1186
1241
  "CashLadderRecord",
1187
1242
  "CashOfferElection",
1188
1243
  "CashPerpetual",
1244
+ "CdsCreditEvent",
1189
1245
  "CdsFlowConventions",
1190
1246
  "CdsIndex",
1191
1247
  "CdsProtectionDetailSpecification",
1248
+ "CdxCreditEvent",
1192
1249
  "Change",
1193
1250
  "ChangeHistory",
1194
1251
  "ChangeHistoryAction",
1252
+ "ChangeInterval",
1253
+ "ChangeIntervalWithOrderManagementDetail",
1195
1254
  "ChangeItem",
1196
1255
  "ChartOfAccounts",
1197
1256
  "ChartOfAccountsProperties",
@@ -1241,7 +1300,6 @@ __all__ = [
1241
1300
  "ComplianceTemplateVariationDto",
1242
1301
  "ComplianceTemplateVariationRequest",
1243
1302
  "ComponentFilter",
1244
- "ComponentRule",
1245
1303
  "ComponentTransaction",
1246
1304
  "CompositeBreakdown",
1247
1305
  "CompositeBreakdownRequest",
@@ -1275,6 +1333,7 @@ __all__ = [
1275
1333
  "CreateDerivedPropertyDefinitionRequest",
1276
1334
  "CreateDerivedTransactionPortfolioRequest",
1277
1335
  "CreateGroupReconciliationComparisonRulesetRequest",
1336
+ "CreateGroupReconciliationDefinitionRequest",
1278
1337
  "CreatePortfolioDetails",
1279
1338
  "CreatePortfolioGroupRequest",
1280
1339
  "CreatePropertyDefinitionRequest",
@@ -1292,6 +1351,7 @@ __all__ = [
1292
1351
  "CreateTransactionPortfolioRequest",
1293
1352
  "CreateUnitDefinition",
1294
1353
  "CreditDefaultSwap",
1354
+ "CreditPremiumCashFlowEvent",
1295
1355
  "CreditRating",
1296
1356
  "CreditSpreadCurveData",
1297
1357
  "CreditSupportAnnex",
@@ -1304,6 +1364,7 @@ __all__ = [
1304
1364
  "CustodianAccountsUpsertResponse",
1305
1365
  "CustomEntityDefinition",
1306
1366
  "CustomEntityDefinitionRequest",
1367
+ "CustomEntityEntity",
1307
1368
  "CustomEntityField",
1308
1369
  "CustomEntityFieldDefinition",
1309
1370
  "CustomEntityId",
@@ -1357,10 +1418,10 @@ __all__ = [
1357
1418
  "EconomicDependencyType",
1358
1419
  "EconomicDependencyWithComplexMarketData",
1359
1420
  "EconomicDependencyWithQuote",
1421
+ "EffectiveRange",
1360
1422
  "ElectionSpecification",
1361
1423
  "EligibilityCalculation",
1362
1424
  "EmptyModelOptions",
1363
- "EntityChangeItem",
1364
1425
  "EntityIdentifier",
1365
1426
  "Equity",
1366
1427
  "EquityAllOfIdentifiers",
@@ -1416,6 +1477,7 @@ __all__ = [
1416
1477
  "FundConfigurationProperties",
1417
1478
  "FundConfigurationRequest",
1418
1479
  "FundDetails",
1480
+ "FundIdList",
1419
1481
  "FundPnlBreakdown",
1420
1482
  "FundPreviousNAV",
1421
1483
  "FundProperties",
@@ -1478,11 +1540,18 @@ __all__ = [
1478
1540
  "GroupReconciliationComparisonRuleset",
1479
1541
  "GroupReconciliationCoreAttributeRule",
1480
1542
  "GroupReconciliationCoreComparisonRuleOperand",
1543
+ "GroupReconciliationDefinition",
1544
+ "GroupReconciliationDefinitionComparisonRulesetIds",
1545
+ "GroupReconciliationDefinitionCurrencies",
1546
+ "GroupReconciliationDefinitionPortfolioEntityIds",
1547
+ "GroupReconciliationDefinitionRecipeIds",
1481
1548
  "GroupedResultOfAddressKey",
1482
1549
  "HoldingAdjustment",
1483
1550
  "HoldingAdjustmentWithDate",
1484
1551
  "HoldingContext",
1485
1552
  "HoldingContributor",
1553
+ "HoldingIdsRequest",
1554
+ "HoldingPricingInfo",
1486
1555
  "HoldingsAdjustment",
1487
1556
  "HoldingsAdjustmentHeader",
1488
1557
  "IUnitDefinitionDto",
@@ -1540,6 +1609,7 @@ __all__ = [
1540
1609
  "JournalEntryLine",
1541
1610
  "JournalEntryLinesQueryParameters",
1542
1611
  "LabelValueSet",
1612
+ "LapseElection",
1543
1613
  "LegDefinition",
1544
1614
  "LegalEntity",
1545
1615
  "LevelStep",
@@ -1550,6 +1620,7 @@ __all__ = [
1550
1620
  "ListAggregationReconciliation",
1551
1621
  "ListAggregationResponse",
1552
1622
  "ListComplexMarketDataWithMetaDataResponse",
1623
+ "LoanFacility",
1553
1624
  "LoanPeriod",
1554
1625
  "LockPeriodDiaryEntryRequest",
1555
1626
  "LusidInstrument",
@@ -1571,8 +1642,14 @@ __all__ = [
1571
1642
  "MarketObservableType",
1572
1643
  "MarketOptions",
1573
1644
  "MarketQuote",
1645
+ "MasteredInstrument",
1574
1646
  "MatchCriterion",
1575
1647
  "MaturityEvent",
1648
+ "MbsCouponEvent",
1649
+ "MbsInterestDeferralEvent",
1650
+ "MbsInterestShortfallEvent",
1651
+ "MbsPrincipalEvent",
1652
+ "MbsPrincipalWriteOffEvent",
1576
1653
  "MergerEvent",
1577
1654
  "MetricValue",
1578
1655
  "ModelOptions",
@@ -1661,6 +1738,8 @@ __all__ = [
1661
1738
  "PagedResourceListOfFund",
1662
1739
  "PagedResourceListOfFundConfiguration",
1663
1740
  "PagedResourceListOfGeneralLedgerProfileResponse",
1741
+ "PagedResourceListOfGroupReconciliationComparisonRuleset",
1742
+ "PagedResourceListOfGroupReconciliationDefinition",
1664
1743
  "PagedResourceListOfInstrument",
1665
1744
  "PagedResourceListOfInstrumentEventHolder",
1666
1745
  "PagedResourceListOfInstrumentEventInstruction",
@@ -1835,6 +1914,8 @@ __all__ = [
1835
1914
  "ResourceListOfCalendarDate",
1836
1915
  "ResourceListOfChange",
1837
1916
  "ResourceListOfChangeHistory",
1917
+ "ResourceListOfChangeInterval",
1918
+ "ResourceListOfChangeIntervalWithOrderManagementDetail",
1838
1919
  "ResourceListOfComplianceBreachedOrderInfo",
1839
1920
  "ResourceListOfComplianceRule",
1840
1921
  "ResourceListOfComplianceRuleResult",
@@ -1842,7 +1923,6 @@ __all__ = [
1842
1923
  "ResourceListOfConstituentsAdjustmentHeader",
1843
1924
  "ResourceListOfCorporateAction",
1844
1925
  "ResourceListOfDataType",
1845
- "ResourceListOfEntityChangeItem",
1846
1926
  "ResourceListOfExecution",
1847
1927
  "ResourceListOfFeeRule",
1848
1928
  "ResourceListOfGetCdsFlowConventionsResponse",
@@ -1926,6 +2006,7 @@ __all__ = [
1926
2006
  "SetShareClassInstrumentsRequest",
1927
2007
  "SetTransactionConfigurationAlias",
1928
2008
  "SetTransactionConfigurationSourceRequest",
2009
+ "SettlementCycle",
1929
2010
  "SettlementSchedule",
1930
2011
  "ShareClassAmount",
1931
2012
  "ShareClassBreakdown",
@@ -1940,7 +2021,9 @@ __all__ = [
1940
2021
  "SidesDefinitionRequest",
1941
2022
  "SimpleCashFlowLoan",
1942
2023
  "SimpleInstrument",
2024
+ "SimpleRoundingConvention",
1943
2025
  "SortOrder",
2026
+ "SpecificHoldingPricingInfo",
1944
2027
  "SpinOffEvent",
1945
2028
  "StagedModification",
1946
2029
  "StagedModificationDecision",
@@ -1972,6 +2055,7 @@ __all__ = [
1972
2055
  "TaxRule",
1973
2056
  "TaxRuleSet",
1974
2057
  "TemplateField",
2058
+ "TenderEvent",
1975
2059
  "TermDeposit",
1976
2060
  "TotalReturnSwap",
1977
2061
  "Touch",
@@ -1984,6 +2068,7 @@ __all__ = [
1984
2068
  "TransactionConfigurationMovementDataRequest",
1985
2069
  "TransactionConfigurationTypeAlias",
1986
2070
  "TransactionCurrencyAndAmount",
2071
+ "TransactionDateWindows",
1987
2072
  "TransactionDiagnostics",
1988
2073
  "TransactionFieldMap",
1989
2074
  "TransactionPrice",
@@ -2041,6 +2126,8 @@ __all__ = [
2041
2126
  "UpdateDataTypeRequest",
2042
2127
  "UpdateDerivedPropertyDefinitionRequest",
2043
2128
  "UpdateFeeTypeRequest",
2129
+ "UpdateGroupReconciliationComparisonRulesetRequest",
2130
+ "UpdateGroupReconciliationDefinitionRequest",
2044
2131
  "UpdateInstrumentIdentifierRequest",
2045
2132
  "UpdateOrdersResponse",
2046
2133
  "UpdatePlacementsResponse",
@@ -2048,6 +2135,7 @@ __all__ = [
2048
2135
  "UpdatePortfolioRequest",
2049
2136
  "UpdatePropertyDefinitionRequest",
2050
2137
  "UpdateReconciliationRequest",
2138
+ "UpdateReferenceDataRequest",
2051
2139
  "UpdateRelationshipDefinitionRequest",
2052
2140
  "UpdateStagingRuleSetRequest",
2053
2141
  "UpdateTaxRuleSetRequest",
@@ -2085,6 +2173,8 @@ __all__ = [
2085
2173
  "UpsertQuotesResponse",
2086
2174
  "UpsertRecipeComposerRequest",
2087
2175
  "UpsertRecipeRequest",
2176
+ "UpsertReferencePortfolioConstituentPropertiesRequest",
2177
+ "UpsertReferencePortfolioConstituentPropertiesResponse",
2088
2178
  "UpsertReferencePortfolioConstituentsRequest",
2089
2179
  "UpsertReferencePortfolioConstituentsResponse",
2090
2180
  "UpsertResultValuesDataRequest",
@@ -23,7 +23,7 @@ from pydantic.v1 import BaseModel, Field, constr
23
23
 
24
24
  class AccessMetadataValue(BaseModel):
25
25
  """
26
- An access control value. Provider should only be used if you are a service provide licensing data. In that case the provider value must match your domain. # noqa: E501
26
+ An access control value. Provider should only be used if you are a service provider licensing data. In that case the provider value must match your domain. # noqa: E501
27
27
  """
28
28
  value: constr(strict=True, max_length=2048, min_length=0) = Field(...)
29
29
  provider: Optional[constr(strict=True, max_length=50, min_length=0)] = None
@@ -38,6 +38,13 @@ class AccountingMethod(str, Enum):
38
38
  PRORATEBYUNITS = 'ProRateByUnits'
39
39
  PRORATEBYCOST = 'ProRateByCost'
40
40
  PRORATEBYCOSTPORTFOLIOCURRENCY = 'ProRateByCostPortfolioCurrency'
41
+ INTRADAYTHENFIRSTINFIRSTOUT = 'IntraDayThenFirstInFirstOut'
42
+ LONGTERMHIGHESTCOSTFIRST = 'LongTermHighestCostFirst'
43
+ LONGTERMHIGHESTCOSTFIRSTPORTFOLIOCURRENCY = 'LongTermHighestCostFirstPortfolioCurrency'
44
+ HIGHESTCOSTFIRSTPORTFOLIOCURRENCY = 'HighestCostFirstPortfolioCurrency'
45
+ LOWESTCOSTFIRSTPORTFOLIOCURRENCY = 'LowestCostFirstPortfolioCurrency'
46
+ MAXIMUMLOSSMINIMUMGAIN = 'MaximumLossMinimumGain'
47
+ MAXIMUMLOSSMINIMUMGAINPORTFOLIOCURRENCY = 'MaximumLossMinimumGainPortfolioCurrency'
41
48
 
42
49
  @classmethod
43
50
  def from_json(cls, json_str: str) -> AccountingMethod:
@@ -31,15 +31,15 @@ class AccumulationEvent(InstrumentEvent):
31
31
  dividend_rate: Union[StrictFloat, StrictInt] = Field(..., alias="dividendRate", description="Dividend rate or payment rate as a percentage. i.e. 5% is written as 0.05")
32
32
  ex_date: datetime = Field(..., alias="exDate", description="The first business day on which the dividend is not owed to the buying party. Typically this is T-1 from the RecordDate.")
33
33
  payment_date: datetime = Field(..., alias="paymentDate", description="The date the company pays out dividends to shareholders.")
34
- instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent")
34
+ instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent, BonusIssueEvent, MbsPrincipalWriteOffEvent, MbsInterestDeferralEvent, MbsInterestShortfallEvent, TenderEvent")
35
35
  additional_properties: Dict[str, Any] = {}
36
36
  __properties = ["instrumentEventType", "announcementDate", "dividendCurrency", "dividendRate", "exDate", "paymentDate"]
37
37
 
38
38
  @validator('instrument_event_type')
39
39
  def instrument_event_type_validate_enum(cls, value):
40
40
  """Validates the enum"""
41
- if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent'):
42
- raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent')")
41
+ if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent'):
42
+ raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent')")
43
43
  return value
44
44
 
45
45
  class Config:
@@ -27,15 +27,15 @@ class AddressKeyList(ReferenceList):
27
27
  AddressKeyList
28
28
  """
29
29
  values: conlist(StrictStr, max_items=100, min_items=0) = Field(...)
30
- reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList")
30
+ reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList, FundIdList")
31
31
  additional_properties: Dict[str, Any] = {}
32
32
  __properties = ["referenceListType", "values"]
33
33
 
34
34
  @validator('reference_list_type')
35
35
  def reference_list_type_validate_enum(cls, value):
36
36
  """Validates the enum"""
37
- if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList'):
38
- raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList')")
37
+ if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList', 'FundIdList'):
38
+ raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList', 'FundIdList')")
39
39
  return value
40
40
 
41
41
  class Config:
@@ -30,15 +30,15 @@ class AmortisationEvent(InstrumentEvent):
30
30
  dom_ccy: StrictStr = Field(..., alias="domCcy", description="Domestic currency of the originating instrument")
31
31
  pay_receive: constr(strict=True, min_length=1) = Field(..., alias="payReceive", description="Is this event in relation to the Pay or Receive leg")
32
32
  payment_date: datetime = Field(..., alias="paymentDate", description="The date the principal payment is to be made.")
33
- instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent")
33
+ instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent, BonusIssueEvent, MbsPrincipalWriteOffEvent, MbsInterestDeferralEvent, MbsInterestShortfallEvent, TenderEvent")
34
34
  additional_properties: Dict[str, Any] = {}
35
35
  __properties = ["instrumentEventType", "amountReduced", "domCcy", "payReceive", "paymentDate"]
36
36
 
37
37
  @validator('instrument_event_type')
38
38
  def instrument_event_type_validate_enum(cls, value):
39
39
  """Validates the enum"""
40
- if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent'):
41
- raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent')")
40
+ if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent'):
41
+ raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent')")
42
42
  return value
43
43
 
44
44
  class Config: