lusid-sdk 2.1.755__py3-none-any.whl → 2.1.757__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +8 -0
- lusid/api/workspace_api.py +392 -2034
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +8 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/adjust_global_commitment_event.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/bond_coupon_event.py +3 -3
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +3 -3
- lusid/models/bonus_issue_event.py +3 -3
- lusid/models/call_on_intermediate_securities_event.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cds_credit_event.py +3 -3
- lusid/models/cdx_credit_event.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/contract_initialisation_event.py +3 -3
- lusid/models/credit_premium_cash_flow_event.py +3 -3
- lusid/models/deposit_close_event.py +3 -3
- lusid/models/deposit_interest_payment_event.py +3 -3
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +3 -3
- lusid/models/drawdown_event.py +3 -3
- lusid/models/early_redemption_event.py +3 -3
- lusid/models/exercise_event.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/future_mark_to_market_event.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument_event.py +6 -5
- lusid/models/instrument_event_type.py +1 -0
- lusid/models/intermediate_securities_distribution_event.py +3 -3
- lusid/models/loan_facility_contract_rollover_event.py +163 -0
- lusid/models/loan_interest_repayment_event.py +3 -3
- lusid/models/loan_principal_repayment_event.py +3 -3
- lusid/models/maturity_event.py +3 -3
- lusid/models/mbs_coupon_event.py +3 -3
- lusid/models/mbs_interest_deferral_event.py +3 -3
- lusid/models/mbs_interest_shortfall_event.py +3 -3
- lusid/models/mbs_principal_event.py +3 -3
- lusid/models/mbs_principal_write_off_event.py +3 -3
- lusid/models/merger_event.py +3 -3
- lusid/models/model_property.py +23 -2
- lusid/models/open_event.py +3 -3
- lusid/models/option_exercise_cash_event.py +3 -3
- lusid/models/option_exercise_physical_event.py +3 -3
- lusid/models/perpetual_property.py +23 -2
- lusid/models/property_reference_data_value.py +89 -0
- lusid/models/protection_payout_cash_flow_event.py +3 -3
- lusid/models/quote_access_metadata_rule_id.py +1 -1
- lusid/models/quote_series_id.py +1 -1
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/reverse_stock_split_event.py +3 -3
- lusid/models/rollover_constituent.py +83 -0
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/spin_off_event.py +3 -3
- lusid/models/stock_dividend_event.py +3 -3
- lusid/models/stock_split_event.py +3 -3
- lusid/models/swap_cash_flow_event.py +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/tender_event.py +3 -3
- lusid/models/term_deposit_interest_event.py +3 -3
- lusid/models/term_deposit_principal_event.py +3 -3
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/update_deposit_amount_event.py +3 -3
- lusid/models/valuation_point_data_response.py +3 -30
- lusid/models/workspace_visibility.py +38 -0
- {lusid_sdk-2.1.755.dist-info → lusid_sdk-2.1.757.dist-info}/METADATA +15 -21
- {lusid_sdk-2.1.755.dist-info → lusid_sdk-2.1.757.dist-info}/RECORD +76 -72
- {lusid_sdk-2.1.755.dist-info → lusid_sdk-2.1.757.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -664,6 +664,7 @@ from lusid.models.list_aggregation_reconciliation import ListAggregationReconcil
|
|
664
664
|
from lusid.models.list_aggregation_response import ListAggregationResponse
|
665
665
|
from lusid.models.list_complex_market_data_with_meta_data_response import ListComplexMarketDataWithMetaDataResponse
|
666
666
|
from lusid.models.loan_facility import LoanFacility
|
667
|
+
from lusid.models.loan_facility_contract_rollover_event import LoanFacilityContractRolloverEvent
|
667
668
|
from lusid.models.loan_interest_repayment_event import LoanInterestRepaymentEvent
|
668
669
|
from lusid.models.loan_period import LoanPeriod
|
669
670
|
from lusid.models.loan_principal_repayment_event import LoanPrincipalRepaymentEvent
|
@@ -898,6 +899,7 @@ from lusid.models.property_key_list_compliance_parameter import PropertyKeyListC
|
|
898
899
|
from lusid.models.property_life_time import PropertyLifeTime
|
899
900
|
from lusid.models.property_list import PropertyList
|
900
901
|
from lusid.models.property_list_compliance_parameter import PropertyListComplianceParameter
|
902
|
+
from lusid.models.property_reference_data_value import PropertyReferenceDataValue
|
901
903
|
from lusid.models.property_schema import PropertySchema
|
902
904
|
from lusid.models.property_type import PropertyType
|
903
905
|
from lusid.models.property_value import PropertyValue
|
@@ -1048,6 +1050,7 @@ from lusid.models.result_value_string import ResultValueString
|
|
1048
1050
|
from lusid.models.result_value_type import ResultValueType
|
1049
1051
|
from lusid.models.return_zero_pv_options import ReturnZeroPvOptions
|
1050
1052
|
from lusid.models.reverse_stock_split_event import ReverseStockSplitEvent
|
1053
|
+
from lusid.models.rollover_constituent import RolloverConstituent
|
1051
1054
|
from lusid.models.rounding_configuration import RoundingConfiguration
|
1052
1055
|
from lusid.models.rounding_configuration_component import RoundingConfigurationComponent
|
1053
1056
|
from lusid.models.rounding_convention import RoundingConvention
|
@@ -1299,6 +1302,7 @@ from lusid.models.workspace_item import WorkspaceItem
|
|
1299
1302
|
from lusid.models.workspace_item_creation_request import WorkspaceItemCreationRequest
|
1300
1303
|
from lusid.models.workspace_item_update_request import WorkspaceItemUpdateRequest
|
1301
1304
|
from lusid.models.workspace_update_request import WorkspaceUpdateRequest
|
1305
|
+
from lusid.models.workspace_visibility import WorkspaceVisibility
|
1302
1306
|
from lusid.models.yield_curve_data import YieldCurveData
|
1303
1307
|
|
1304
1308
|
# import extensions into sdk package
|
@@ -1952,6 +1956,7 @@ __all__ = [
|
|
1952
1956
|
"ListAggregationResponse",
|
1953
1957
|
"ListComplexMarketDataWithMetaDataResponse",
|
1954
1958
|
"LoanFacility",
|
1959
|
+
"LoanFacilityContractRolloverEvent",
|
1955
1960
|
"LoanInterestRepaymentEvent",
|
1956
1961
|
"LoanPeriod",
|
1957
1962
|
"LoanPrincipalRepaymentEvent",
|
@@ -2186,6 +2191,7 @@ __all__ = [
|
|
2186
2191
|
"PropertyLifeTime",
|
2187
2192
|
"PropertyList",
|
2188
2193
|
"PropertyListComplianceParameter",
|
2194
|
+
"PropertyReferenceDataValue",
|
2189
2195
|
"PropertySchema",
|
2190
2196
|
"PropertyType",
|
2191
2197
|
"PropertyValue",
|
@@ -2336,6 +2342,7 @@ __all__ = [
|
|
2336
2342
|
"ResultValueType",
|
2337
2343
|
"ReturnZeroPvOptions",
|
2338
2344
|
"ReverseStockSplitEvent",
|
2345
|
+
"RolloverConstituent",
|
2339
2346
|
"RoundingConfiguration",
|
2340
2347
|
"RoundingConfigurationComponent",
|
2341
2348
|
"RoundingConvention",
|
@@ -2587,6 +2594,7 @@ __all__ = [
|
|
2587
2594
|
"WorkspaceItemCreationRequest",
|
2588
2595
|
"WorkspaceItemUpdateRequest",
|
2589
2596
|
"WorkspaceUpdateRequest",
|
2597
|
+
"WorkspaceVisibility",
|
2590
2598
|
"YieldCurveData",
|
2591
2599
|
"ApiClient",
|
2592
2600
|
"Configuration",
|