lusid-sdk 2.1.756__py3-none-any.whl → 2.1.758__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 +6 -0
- lusid/api/workspace_api.py +392 -2034
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +6 -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/ex_dividend_configuration.py +2 -2
- 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/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/property_reference_data_value.py +2 -2
- 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/workspace_visibility.py +38 -0
- {lusid_sdk-2.1.756.dist-info → lusid_sdk-2.1.758.dist-info}/METADATA +14 -21
- {lusid_sdk-2.1.756.dist-info → lusid_sdk-2.1.758.dist-info}/RECORD +74 -71
- {lusid_sdk-2.1.756.dist-info → lusid_sdk-2.1.758.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
|
@@ -1049,6 +1050,7 @@ from lusid.models.result_value_string import ResultValueString
|
|
1049
1050
|
from lusid.models.result_value_type import ResultValueType
|
1050
1051
|
from lusid.models.return_zero_pv_options import ReturnZeroPvOptions
|
1051
1052
|
from lusid.models.reverse_stock_split_event import ReverseStockSplitEvent
|
1053
|
+
from lusid.models.rollover_constituent import RolloverConstituent
|
1052
1054
|
from lusid.models.rounding_configuration import RoundingConfiguration
|
1053
1055
|
from lusid.models.rounding_configuration_component import RoundingConfigurationComponent
|
1054
1056
|
from lusid.models.rounding_convention import RoundingConvention
|
@@ -1300,6 +1302,7 @@ from lusid.models.workspace_item import WorkspaceItem
|
|
1300
1302
|
from lusid.models.workspace_item_creation_request import WorkspaceItemCreationRequest
|
1301
1303
|
from lusid.models.workspace_item_update_request import WorkspaceItemUpdateRequest
|
1302
1304
|
from lusid.models.workspace_update_request import WorkspaceUpdateRequest
|
1305
|
+
from lusid.models.workspace_visibility import WorkspaceVisibility
|
1303
1306
|
from lusid.models.yield_curve_data import YieldCurveData
|
1304
1307
|
|
1305
1308
|
# import extensions into sdk package
|
@@ -1953,6 +1956,7 @@ __all__ = [
|
|
1953
1956
|
"ListAggregationResponse",
|
1954
1957
|
"ListComplexMarketDataWithMetaDataResponse",
|
1955
1958
|
"LoanFacility",
|
1959
|
+
"LoanFacilityContractRolloverEvent",
|
1956
1960
|
"LoanInterestRepaymentEvent",
|
1957
1961
|
"LoanPeriod",
|
1958
1962
|
"LoanPrincipalRepaymentEvent",
|
@@ -2338,6 +2342,7 @@ __all__ = [
|
|
2338
2342
|
"ResultValueType",
|
2339
2343
|
"ReturnZeroPvOptions",
|
2340
2344
|
"ReverseStockSplitEvent",
|
2345
|
+
"RolloverConstituent",
|
2341
2346
|
"RoundingConfiguration",
|
2342
2347
|
"RoundingConfigurationComponent",
|
2343
2348
|
"RoundingConvention",
|
@@ -2589,6 +2594,7 @@ __all__ = [
|
|
2589
2594
|
"WorkspaceItemCreationRequest",
|
2590
2595
|
"WorkspaceItemUpdateRequest",
|
2591
2596
|
"WorkspaceUpdateRequest",
|
2597
|
+
"WorkspaceVisibility",
|
2592
2598
|
"YieldCurveData",
|
2593
2599
|
"ApiClient",
|
2594
2600
|
"Configuration",
|