lusid-sdk 2.1.81__py3-none-any.whl → 2.1.110__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.
Potentially problematic release.
This version of lusid-sdk might be problematic. Click here for more details.
- lusid/__init__.py +32 -0
- lusid/api/__init__.py +2 -0
- lusid/api/entities_api.py +4 -4
- lusid/api/portfolios_api.py +554 -0
- lusid/api/staged_modifications_api.py +762 -0
- lusid/api_response.py +1 -1
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +30 -0
- lusid/models/account.py +1 -1
- lusid/models/accumulation_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/capital_distribution_event.py +117 -0
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/custodian_account.py +1 -1
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +3 -3
- lusid/models/exercise_event.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fx_forward.py +1 -1
- 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_instruction.py +121 -0
- lusid/models/instrument_event_instruction_request.py +87 -0
- lusid/models/instrument_event_instructions_response.py +107 -0
- lusid/models/instrument_event_type.py +1 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/open_event.py +3 -3
- lusid/models/paged_resource_list_of_staged_modification.py +113 -0
- lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py +113 -0
- lusid/models/portfolio.py +7 -1
- lusid/models/portfolio_entity.py +33 -5
- lusid/models/portfolio_without_href.py +7 -1
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/requested_changes.py +76 -0
- lusid/models/reset_event.py +3 -3
- lusid/models/reverse_stock_split_event.py +3 -3
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/staged_modification.py +175 -0
- lusid/models/staged_modification_decision.py +97 -0
- lusid/models/staged_modification_decision_request.py +71 -0
- lusid/models/staged_modification_effective_range.py +71 -0
- lusid/models/staged_modification_staging_rule.py +85 -0
- lusid/models/staged_modifications_entity_hrefs.py +103 -0
- lusid/models/staged_modifications_info.py +78 -0
- lusid/models/staged_modifications_requested_change_interval.py +116 -0
- lusid/models/staging_rule_set.py +17 -2
- lusid/models/stock_dividend_event.py +3 -3
- lusid/models/stock_split_event.py +3 -3
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/version.py +9 -2
- {lusid_sdk-2.1.81.dist-info → lusid_sdk-2.1.110.dist-info}/METADATA +25 -3
- {lusid_sdk-2.1.81.dist-info → lusid_sdk-2.1.110.dist-info}/RECORD +62 -46
- {lusid_sdk-2.1.81.dist-info → lusid_sdk-2.1.110.dist-info}/WHEEL +0 -0
|
@@ -32,15 +32,15 @@ class StockDividendEvent(InstrumentEvent):
|
|
|
32
32
|
payment_date: datetime = Field(..., alias="paymentDate", description="The date the company pays out dividends to shareholders.")
|
|
33
33
|
record_date: Optional[datetime] = Field(None, alias="recordDate", description="Date you have to be the holder of record in order to participate in the tender.")
|
|
34
34
|
units_ratio: UnitsRatio = Field(..., alias="unitsRatio")
|
|
35
|
-
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")
|
|
35
|
+
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")
|
|
36
36
|
additional_properties: Dict[str, Any] = {}
|
|
37
37
|
__properties = ["instrumentEventType", "announcementDate", "exDate", "paymentDate", "recordDate", "unitsRatio"]
|
|
38
38
|
|
|
39
39
|
@validator('instrument_event_type')
|
|
40
40
|
def instrument_event_type_validate_enum(cls, value):
|
|
41
41
|
"""Validates the enum"""
|
|
42
|
-
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'):
|
|
43
|
-
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')")
|
|
42
|
+
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'):
|
|
43
|
+
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')")
|
|
44
44
|
return value
|
|
45
45
|
|
|
46
46
|
class Config:
|
|
@@ -32,15 +32,15 @@ class StockSplitEvent(InstrumentEvent):
|
|
|
32
32
|
units_ratio: UnitsRatio = Field(..., alias="unitsRatio")
|
|
33
33
|
record_date: Optional[datetime] = Field(None, alias="recordDate", description="Date you have to be the holder of record in order to receive the additional shares.")
|
|
34
34
|
announcement_date: Optional[datetime] = Field(None, alias="announcementDate", description="Date the stock split was announced.")
|
|
35
|
-
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")
|
|
35
|
+
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")
|
|
36
36
|
additional_properties: Dict[str, Any] = {}
|
|
37
37
|
__properties = ["instrumentEventType", "paymentDate", "exDate", "unitsRatio", "recordDate", "announcementDate"]
|
|
38
38
|
|
|
39
39
|
@validator('instrument_event_type')
|
|
40
40
|
def instrument_event_type_validate_enum(cls, value):
|
|
41
41
|
"""Validates the enum"""
|
|
42
|
-
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'):
|
|
43
|
-
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')")
|
|
42
|
+
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'):
|
|
43
|
+
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')")
|
|
44
44
|
return value
|
|
45
45
|
|
|
46
46
|
class Config:
|
lusid/models/transition_event.py
CHANGED
|
@@ -34,15 +34,15 @@ class TransitionEvent(InstrumentEvent):
|
|
|
34
34
|
payment_date: Optional[datetime] = Field(None, alias="paymentDate", description="The payment date of the corporate action")
|
|
35
35
|
input_transition: Optional[InputTransition] = Field(None, alias="inputTransition")
|
|
36
36
|
output_transitions: Optional[conlist(OutputTransition)] = Field(None, alias="outputTransitions", description="The resulting transitions from this event")
|
|
37
|
-
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")
|
|
37
|
+
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")
|
|
38
38
|
additional_properties: Dict[str, Any] = {}
|
|
39
39
|
__properties = ["instrumentEventType", "announcementDate", "exDate", "recordDate", "paymentDate", "inputTransition", "outputTransitions"]
|
|
40
40
|
|
|
41
41
|
@validator('instrument_event_type')
|
|
42
42
|
def instrument_event_type_validate_enum(cls, value):
|
|
43
43
|
"""Validates the enum"""
|
|
44
|
-
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'):
|
|
45
|
-
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')")
|
|
44
|
+
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'):
|
|
45
|
+
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')")
|
|
46
46
|
return value
|
|
47
47
|
|
|
48
48
|
class Config:
|
lusid/models/trigger_event.py
CHANGED
|
@@ -31,15 +31,15 @@ class TriggerEvent(InstrumentEvent):
|
|
|
31
31
|
trigger_direction: constr(strict=True, min_length=1) = Field(..., alias="triggerDirection", description="The direction of the trigger; valid options are Up and Down")
|
|
32
32
|
trigger_date: datetime = Field(..., alias="triggerDate", description="The date the trigger happens at.")
|
|
33
33
|
maturity_date: datetime = Field(..., alias="maturityDate", description="The date the trigger takes effect.")
|
|
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")
|
|
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")
|
|
35
35
|
additional_properties: Dict[str, Any] = {}
|
|
36
36
|
__properties = ["instrumentEventType", "level", "triggerType", "triggerDirection", "triggerDate", "maturityDate"]
|
|
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'):
|
|
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')")
|
|
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'):
|
|
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')")
|
|
43
43
|
return value
|
|
44
44
|
|
|
45
45
|
class Config:
|
lusid/models/version.py
CHANGED
|
@@ -35,7 +35,8 @@ class Version(BaseModel):
|
|
|
35
35
|
request_id_modified: Optional[StrictStr] = Field(None, alias="requestIdModified", description="The unique request id of the command that last updated the entity (including its properties) in LUSID.")
|
|
36
36
|
as_at_version_number: Optional[StrictInt] = Field(None, alias="asAtVersionNumber", description="The integer version number for the entity (the entity was created at version 1)")
|
|
37
37
|
entity_unique_id: Optional[StrictStr] = Field(None, alias="entityUniqueId", description="The unique id of the entity")
|
|
38
|
-
|
|
38
|
+
staged_modification_id_modified: Optional[StrictStr] = Field(None, alias="stagedModificationIdModified", description="The ID of the staged change that resulted in the most recent modification.")
|
|
39
|
+
__properties = ["effectiveFrom", "asAtDate", "asAtCreated", "userIdCreated", "requestIdCreated", "asAtModified", "userIdModified", "requestIdModified", "asAtVersionNumber", "entityUniqueId", "stagedModificationIdModified"]
|
|
39
40
|
|
|
40
41
|
class Config:
|
|
41
42
|
"""Pydantic configuration"""
|
|
@@ -101,6 +102,11 @@ class Version(BaseModel):
|
|
|
101
102
|
if self.entity_unique_id is None and "entity_unique_id" in self.__fields_set__:
|
|
102
103
|
_dict['entityUniqueId'] = None
|
|
103
104
|
|
|
105
|
+
# set to None if staged_modification_id_modified (nullable) is None
|
|
106
|
+
# and __fields_set__ contains the field
|
|
107
|
+
if self.staged_modification_id_modified is None and "staged_modification_id_modified" in self.__fields_set__:
|
|
108
|
+
_dict['stagedModificationIdModified'] = None
|
|
109
|
+
|
|
104
110
|
return _dict
|
|
105
111
|
|
|
106
112
|
@classmethod
|
|
@@ -122,6 +128,7 @@ class Version(BaseModel):
|
|
|
122
128
|
"user_id_modified": obj.get("userIdModified"),
|
|
123
129
|
"request_id_modified": obj.get("requestIdModified"),
|
|
124
130
|
"as_at_version_number": obj.get("asAtVersionNumber"),
|
|
125
|
-
"entity_unique_id": obj.get("entityUniqueId")
|
|
131
|
+
"entity_unique_id": obj.get("entityUniqueId"),
|
|
132
|
+
"staged_modification_id_modified": obj.get("stagedModificationIdModified")
|
|
126
133
|
})
|
|
127
134
|
return _obj
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.110
|
|
4
4
|
Summary: LUSID API
|
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
|
6
6
|
License: MIT
|
|
@@ -29,8 +29,8 @@ FINBOURNE Technology
|
|
|
29
29
|
|
|
30
30
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
31
31
|
|
|
32
|
-
- API version: 0.11.
|
|
33
|
-
- Package version: 2.1.
|
|
32
|
+
- API version: 0.11.6544
|
|
33
|
+
- Package version: 2.1.110
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
|
|
36
36
|
|
|
@@ -533,12 +533,14 @@ Class | Method | HTTP request | Description
|
|
|
533
533
|
*PortfolioGroupsApi* | [**update_portfolio_group**](docs/PortfolioGroupsApi.md#update_portfolio_group) | **PUT** /api/portfoliogroups/{scope}/{code} | [EARLY ACCESS] UpdatePortfolioGroup: Update portfolio group
|
|
534
534
|
*PortfolioGroupsApi* | [**upsert_group_properties**](docs/PortfolioGroupsApi.md#upsert_group_properties) | **POST** /api/portfoliogroups/{scope}/{code}/properties/$upsert | [EARLY ACCESS] UpsertGroupProperties: Upsert group properties
|
|
535
535
|
*PortfolioGroupsApi* | [**upsert_portfolio_group_access_metadata**](docs/PortfolioGroupsApi.md#upsert_portfolio_group_access_metadata) | **PUT** /api/portfoliogroups/{scope}/{code}/metadata/{metadataKey} | [EARLY ACCESS] UpsertPortfolioGroupAccessMetadata: Upsert a Portfolio Group Access Metadata entry associated with a specific metadataKey. This creates or updates the data in LUSID.
|
|
536
|
+
*PortfoliosApi* | [**delete_instrument_event_instruction**](docs/PortfoliosApi.md#delete_instrument_event_instruction) | **DELETE** /api/portfolios/{scope}/{code}/instrumenteventinstructions/{instrumentEventInstructionId} | [EARLY ACCESS] DeleteInstrumentEventInstruction: Delete Instrument Event Instruction
|
|
536
537
|
*PortfoliosApi* | [**delete_key_from_portfolio_access_metadata**](docs/PortfoliosApi.md#delete_key_from_portfolio_access_metadata) | **DELETE** /api/portfolios/{scope}/{code}/metadata/{metadataKey} | [EARLY ACCESS] DeleteKeyFromPortfolioAccessMetadata: Delete a Portfolio Access Metadata Rule
|
|
537
538
|
*PortfoliosApi* | [**delete_portfolio**](docs/PortfoliosApi.md#delete_portfolio) | **DELETE** /api/portfolios/{scope}/{code} | DeletePortfolio: Delete portfolio
|
|
538
539
|
*PortfoliosApi* | [**delete_portfolio_properties**](docs/PortfoliosApi.md#delete_portfolio_properties) | **DELETE** /api/portfolios/{scope}/{code}/properties | DeletePortfolioProperties: Delete portfolio properties
|
|
539
540
|
*PortfoliosApi* | [**delete_portfolio_returns**](docs/PortfoliosApi.md#delete_portfolio_returns) | **DELETE** /api/portfolios/{scope}/{code}/returns/{returnScope}/{returnCode}/$delete | [EARLY ACCESS] DeletePortfolioReturns: Delete Returns
|
|
540
541
|
*PortfoliosApi* | [**get_aggregated_returns_dispersion_metrics**](docs/PortfoliosApi.md#get_aggregated_returns_dispersion_metrics) | **POST** /api/portfolios/{scope}/{code}/returns/dispersion/$aggregated | [EARLY ACCESS] GetAggregatedReturnsDispersionMetrics: Get the Aggregated Returns Dispersion metric
|
|
541
542
|
*PortfoliosApi* | [**get_composite_breakdown**](docs/PortfoliosApi.md#get_composite_breakdown) | **POST** /api/portfolios/{scope}/{code}/returns/breakdown | [EARLY ACCESS] GetCompositeBreakdown: Get the Composite Breakdown on how the composite Returns are calculated
|
|
543
|
+
*PortfoliosApi* | [**get_instrument_event_instruction**](docs/PortfoliosApi.md#get_instrument_event_instruction) | **GET** /api/portfolios/{scope}/{code}/instrumenteventinstructions/{instrumentEventInstructionId} | [EARLY ACCESS] GetInstrumentEventInstruction: Get Instrument Event Instruction
|
|
542
544
|
*PortfoliosApi* | [**get_portfolio**](docs/PortfoliosApi.md#get_portfolio) | **GET** /api/portfolios/{scope}/{code} | GetPortfolio: Get portfolio
|
|
543
545
|
*PortfoliosApi* | [**get_portfolio_aggregate_returns**](docs/PortfoliosApi.md#get_portfolio_aggregate_returns) | **GET** /api/portfolios/{scope}/{code}/returns/{returnScope}/{returnCode}/aggregated | [DEPRECATED] GetPortfolioAggregateReturns: Aggregate Returns (This is a deprecated endpoint).
|
|
544
546
|
*PortfoliosApi* | [**get_portfolio_aggregated_returns**](docs/PortfoliosApi.md#get_portfolio_aggregated_returns) | **POST** /api/portfolios/{scope}/{code}/returns/$aggregated | [EARLY ACCESS] GetPortfolioAggregatedReturns: Aggregated Returns
|
|
@@ -556,6 +558,7 @@ Class | Method | HTTP request | Description
|
|
|
556
558
|
*PortfoliosApi* | [**patch_portfolio**](docs/PortfoliosApi.md#patch_portfolio) | **PATCH** /api/portfolios/{scope}/{code} | [EARLY ACCESS] PatchPortfolio: Patch portfolio.
|
|
557
559
|
*PortfoliosApi* | [**patch_portfolio_access_metadata**](docs/PortfoliosApi.md#patch_portfolio_access_metadata) | **PATCH** /api/portfolios/{scope}/{code}/metadata | [EARLY ACCESS] PatchPortfolioAccessMetadata: Patch Access Metadata rules for a Portfolio.
|
|
558
560
|
*PortfoliosApi* | [**update_portfolio**](docs/PortfoliosApi.md#update_portfolio) | **PUT** /api/portfolios/{scope}/{code} | UpdatePortfolio: Update portfolio
|
|
561
|
+
*PortfoliosApi* | [**upsert_instrument_event_instructions**](docs/PortfoliosApi.md#upsert_instrument_event_instructions) | **POST** /api/portfolios/{scope}/{code}/instrumenteventinstructions | [EARLY ACCESS] UpsertInstrumentEventInstructions: Upsert Instrument Event Instructions
|
|
559
562
|
*PortfoliosApi* | [**upsert_portfolio_access_metadata**](docs/PortfoliosApi.md#upsert_portfolio_access_metadata) | **PUT** /api/portfolios/{scope}/{code}/metadata/{metadataKey} | [EARLY ACCESS] UpsertPortfolioAccessMetadata: Upsert a Portfolio Access Metadata Rule associated with specific metadataKey. This creates or updates the data in LUSID.
|
|
560
563
|
*PortfoliosApi* | [**upsert_portfolio_properties**](docs/PortfoliosApi.md#upsert_portfolio_properties) | **POST** /api/portfolios/{scope}/{code}/properties | UpsertPortfolioProperties: Upsert portfolio properties
|
|
561
564
|
*PortfoliosApi* | [**upsert_portfolio_returns**](docs/PortfoliosApi.md#upsert_portfolio_returns) | **POST** /api/portfolios/{scope}/{code}/returns/{returnScope}/{returnCode} | [EARLY ACCESS] UpsertPortfolioReturns: Upsert Returns
|
|
@@ -637,6 +640,10 @@ Class | Method | HTTP request | Description
|
|
|
637
640
|
*SequencesApi* | [**get_sequence**](docs/SequencesApi.md#get_sequence) | **GET** /api/sequences/{scope}/{code} | [EARLY ACCESS] GetSequence: Get a specified sequence
|
|
638
641
|
*SequencesApi* | [**list_sequences**](docs/SequencesApi.md#list_sequences) | **GET** /api/sequences | [EARLY ACCESS] ListSequences: List Sequences
|
|
639
642
|
*SequencesApi* | [**next**](docs/SequencesApi.md#next) | **GET** /api/sequences/{scope}/{code}/next | [EARLY ACCESS] Next: Get next values from sequence
|
|
643
|
+
*StagedModificationsApi* | [**add_decision**](docs/StagedModificationsApi.md#add_decision) | **POST** /api/stagedmodifications/{id}/decision | [EXPERIMENTAL] AddDecision: AddDecision
|
|
644
|
+
*StagedModificationsApi* | [**get_staged_modification**](docs/StagedModificationsApi.md#get_staged_modification) | **GET** /api/stagedmodifications/{id} | [EXPERIMENTAL] GetStagedModification: GetStagedModification
|
|
645
|
+
*StagedModificationsApi* | [**list_requested_changes**](docs/StagedModificationsApi.md#list_requested_changes) | **GET** /api/stagedmodifications/{id}/requestedChanges | [EXPERIMENTAL] ListRequestedChanges: ListRequestedChanges
|
|
646
|
+
*StagedModificationsApi* | [**list_staged_modifications**](docs/StagedModificationsApi.md#list_staged_modifications) | **GET** /api/stagedmodifications | [EXPERIMENTAL] ListStagedModifications: ListStagedModifications
|
|
640
647
|
*StagingRuleSetApi* | [**create_staging_rule_set**](docs/StagingRuleSetApi.md#create_staging_rule_set) | **POST** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] CreateStagingRuleSet: Create a StagingRuleSet
|
|
641
648
|
*StagingRuleSetApi* | [**delete_staging_rule_set**](docs/StagingRuleSetApi.md#delete_staging_rule_set) | **DELETE** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] DeleteStagingRuleSet: Delete a StagingRuleSet
|
|
642
649
|
*StagingRuleSetApi* | [**get_staging_rule_set**](docs/StagingRuleSetApi.md#get_staging_rule_set) | **GET** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] GetStagingRuleSet: Get a StagingRuleSet
|
|
@@ -810,6 +817,7 @@ Class | Method | HTTP request | Description
|
|
|
810
817
|
- [CalendarDate](docs/CalendarDate.md)
|
|
811
818
|
- [CalendarDependency](docs/CalendarDependency.md)
|
|
812
819
|
- [CapFloor](docs/CapFloor.md)
|
|
820
|
+
- [CapitalDistributionEvent](docs/CapitalDistributionEvent.md)
|
|
813
821
|
- [CashDependency](docs/CashDependency.md)
|
|
814
822
|
- [CashDividendEvent](docs/CashDividendEvent.md)
|
|
815
823
|
- [CashElection](docs/CashElection.md)
|
|
@@ -1103,6 +1111,9 @@ Class | Method | HTTP request | Description
|
|
|
1103
1111
|
- [InstrumentEvent](docs/InstrumentEvent.md)
|
|
1104
1112
|
- [InstrumentEventConfiguration](docs/InstrumentEventConfiguration.md)
|
|
1105
1113
|
- [InstrumentEventHolder](docs/InstrumentEventHolder.md)
|
|
1114
|
+
- [InstrumentEventInstruction](docs/InstrumentEventInstruction.md)
|
|
1115
|
+
- [InstrumentEventInstructionRequest](docs/InstrumentEventInstructionRequest.md)
|
|
1116
|
+
- [InstrumentEventInstructionsResponse](docs/InstrumentEventInstructionsResponse.md)
|
|
1106
1117
|
- [InstrumentEventType](docs/InstrumentEventType.md)
|
|
1107
1118
|
- [InstrumentIdTypeDescriptor](docs/InstrumentIdTypeDescriptor.md)
|
|
1108
1119
|
- [InstrumentIdValue](docs/InstrumentIdValue.md)
|
|
@@ -1264,6 +1275,8 @@ Class | Method | HTTP request | Description
|
|
|
1264
1275
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
|
1265
1276
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
|
1266
1277
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
|
1278
|
+
- [PagedResourceListOfStagedModification](docs/PagedResourceListOfStagedModification.md)
|
|
1279
|
+
- [PagedResourceListOfStagedModificationsRequestedChangeInterval](docs/PagedResourceListOfStagedModificationsRequestedChangeInterval.md)
|
|
1267
1280
|
- [PagedResourceListOfStagingRuleSet](docs/PagedResourceListOfStagingRuleSet.md)
|
|
1268
1281
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
|
1269
1282
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
|
@@ -1386,6 +1399,7 @@ Class | Method | HTTP request | Description
|
|
|
1386
1399
|
- [RelationshipDefinition](docs/RelationshipDefinition.md)
|
|
1387
1400
|
- [RelativeDateOffset](docs/RelativeDateOffset.md)
|
|
1388
1401
|
- [Repo](docs/Repo.md)
|
|
1402
|
+
- [RequestedChanges](docs/RequestedChanges.md)
|
|
1389
1403
|
- [ResetEvent](docs/ResetEvent.md)
|
|
1390
1404
|
- [ResourceId](docs/ResourceId.md)
|
|
1391
1405
|
- [ResourceListOfAccessControlledResource](docs/ResourceListOfAccessControlledResource.md)
|
|
@@ -1494,6 +1508,14 @@ Class | Method | HTTP request | Description
|
|
|
1494
1508
|
- [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
|
|
1495
1509
|
- [SimpleInstrument](docs/SimpleInstrument.md)
|
|
1496
1510
|
- [SortOrder](docs/SortOrder.md)
|
|
1511
|
+
- [StagedModification](docs/StagedModification.md)
|
|
1512
|
+
- [StagedModificationDecision](docs/StagedModificationDecision.md)
|
|
1513
|
+
- [StagedModificationDecisionRequest](docs/StagedModificationDecisionRequest.md)
|
|
1514
|
+
- [StagedModificationEffectiveRange](docs/StagedModificationEffectiveRange.md)
|
|
1515
|
+
- [StagedModificationStagingRule](docs/StagedModificationStagingRule.md)
|
|
1516
|
+
- [StagedModificationsEntityHrefs](docs/StagedModificationsEntityHrefs.md)
|
|
1517
|
+
- [StagedModificationsInfo](docs/StagedModificationsInfo.md)
|
|
1518
|
+
- [StagedModificationsRequestedChangeInterval](docs/StagedModificationsRequestedChangeInterval.md)
|
|
1497
1519
|
- [StagingRule](docs/StagingRule.md)
|
|
1498
1520
|
- [StagingRuleApprovalCriteria](docs/StagingRuleApprovalCriteria.md)
|
|
1499
1521
|
- [StagingRuleMatchCriteria](docs/StagingRuleMatchCriteria.md)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
2
|
-
lusid/api/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=oW0bjG4JuS3osca2anDuOvyudeWBUW1FXV8viE3neDM,106456
|
|
2
|
+
lusid/api/__init__.py,sha256=nso_7bPeEC07g5iyuaKlm-DEjA39UZFgkwKoPe4lJQY,5488
|
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=fZRzR63xwAvWnwNUsSUNTfFNAmKGerPF50BEjG9utlA,31640
|
|
@@ -22,7 +22,7 @@ lusid/api/custom_entity_types_api.py,sha256=fLeAZaJ9Gdkfkr_UVDuqueiIxuN_5ri80dvq
|
|
|
22
22
|
lusid/api/cut_label_definitions_api.py,sha256=7sroMqRhrOXdJlHQJ6f4NbqDRwOh7ewfY2yHGopZ7KM,47049
|
|
23
23
|
lusid/api/data_types_api.py,sha256=OiQL4CRxwWd06DovdcLZbOqPx4AfbwYQ9yXYtaRqWWc,77801
|
|
24
24
|
lusid/api/derived_transaction_portfolios_api.py,sha256=cKv5mKNmTiuHzWGwupwcSBibj3Ncwv88GiEJSqmAbCY,20227
|
|
25
|
-
lusid/api/entities_api.py,sha256=
|
|
25
|
+
lusid/api/entities_api.py,sha256=kPVPA2CR-mXWhSHLga-l3R4fyhx69S7vfU47te42wng,21372
|
|
26
26
|
lusid/api/executions_api.py,sha256=84zjdPPCPB-aBjM5ntqTcEJa_kSqBSqdtqh47b0a_UY,44435
|
|
27
27
|
lusid/api/funds_api.py,sha256=s2xo4yrQeNs06nvCeDCedD7T2aB-XW8nO-ftAPG4kEk,122388
|
|
28
28
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
|
@@ -39,7 +39,7 @@ lusid/api/participations_api.py,sha256=nlVzeyfE33X9Ue9HC9rqCW3WACEPKBvcrEjFEmT8w
|
|
|
39
39
|
lusid/api/persons_api.py,sha256=0ZUZykUD46ow8j6sXjqaxCTylzUkssOyimAxCoDMUb4,247306
|
|
40
40
|
lusid/api/placements_api.py,sha256=bsX7VHZlvnxJiZ3ZPtlJ8md_exerU-Qa_BkHGVRphH8,45797
|
|
41
41
|
lusid/api/portfolio_groups_api.py,sha256=GkR-rjb4khpRsT_3rTkQnWx8z9dczaT2UxYda7xZyCA,378953
|
|
42
|
-
lusid/api/portfolios_api.py,sha256=
|
|
42
|
+
lusid/api/portfolios_api.py,sha256=5NL3-HPP7FyZd3mODdVVzAZjsmL2Udh96QdWlr5nIrg,403923
|
|
43
43
|
lusid/api/property_definitions_api.py,sha256=Z2HQywmPS1T5DGOCr4BEWX2QmUVhuqLnQSEa4hZZwxo,140397
|
|
44
44
|
lusid/api/queryable_keys_api.py,sha256=1HafmN22bU1bV5H5nua8EZ5oL0pe0LZ5xkVDQTDSezg,10281
|
|
45
45
|
lusid/api/quotes_api.py,sha256=Lmb8CSqm7wytZcARzahdB2eBwxkCqrjvzpIKK-H6w34,115625
|
|
@@ -55,6 +55,7 @@ lusid/api/scopes_api.py,sha256=p8OnCyJtsYrM0I-jzmHfhMJKAXzWkl52LtGVQw5DMtc,16390
|
|
|
55
55
|
lusid/api/scripted_translation_api.py,sha256=jOeKhCjDpq3M1FU9mAH-2sbW_O3NhVuirKPtJrDbEgo,84048
|
|
56
56
|
lusid/api/search_api.py,sha256=Y6wgyv5H6EDEICDYERU_jXdAFmr0GPEe8r2BnM0KzXI,58533
|
|
57
57
|
lusid/api/sequences_api.py,sha256=NUACzaG_zcloEMFwuIxI2c2MiQNmkBULUq7qeNvZ0GQ,37460
|
|
58
|
+
lusid/api/staged_modifications_api.py,sha256=O1DexPywa_Y5e8kUOU5yWE4YxCZPq2czEWWlsPcaFrA,48685
|
|
58
59
|
lusid/api/staging_rule_set_api.py,sha256=9KCTPEZsTtVeKNN9tcEuSICwWQG3z9aHd1aKY4EZsys,49946
|
|
59
60
|
lusid/api/structured_result_data_api.py,sha256=wD8NaDLKu2PrTm0mu3ZTvit8o1GtVNmwI11kPwojEEY,112489
|
|
60
61
|
lusid/api/system_configuration_api.py,sha256=aOgevINKgf3CDjXN4cW6R-eoTYfvz8me_wVHOWtqTLY,62054
|
|
@@ -64,8 +65,8 @@ lusid/api/transaction_fees_api.py,sha256=xVH3EPyc0clDSNivBO57PsKxaVNT3evVvPdfYWo
|
|
|
64
65
|
lusid/api/transaction_portfolios_api.py,sha256=q6AoYasxV3LQDossmM2BdJSo3arh526yUW34VPbxGmE,555070
|
|
65
66
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
66
67
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
67
|
-
lusid/api_response.py,sha256=
|
|
68
|
-
lusid/configuration.py,sha256=
|
|
68
|
+
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
69
|
+
lusid/configuration.py,sha256=IBsbXsU1szmaOmSqF5Cod1TpN7A2jLAVEkAlHfqeZjc,14404
|
|
69
70
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
70
71
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
71
72
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -78,7 +79,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
78
79
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
79
80
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
80
81
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
81
|
-
lusid/models/__init__.py,sha256
|
|
82
|
+
lusid/models/__init__.py,sha256=wh3SrarmLd6AFxv4S1kI5B-kkXm3AGoTHk6L3V7vbbY,100011
|
|
82
83
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
|
83
84
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
|
84
85
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
|
@@ -93,11 +94,11 @@ lusid/models/access_controlled_action.py,sha256=SQ5nARtg3Y8wwyaMa7vPaaIcLlghZdg5
|
|
|
93
94
|
lusid/models/access_controlled_resource.py,sha256=T2Uo6SQ_hDnooZokdJRlEfUJpko4FLjv6E-jzbBMEeo,4806
|
|
94
95
|
lusid/models/access_metadata_operation.py,sha256=FOEJ3ZuMb_Ixf2k6anRhSwo9y5utif4GkaezgD46UxA,3448
|
|
95
96
|
lusid/models/access_metadata_value.py,sha256=Ri9J9CjqeSFHytQfdts3yFs-R-8zdq7xCJ4XZy07VmY,2396
|
|
96
|
-
lusid/models/account.py,sha256=
|
|
97
|
+
lusid/models/account.py,sha256=6sKzuazRI0NIs6HOu3y7cy5omeagVVCVxlILA8EGDQE,5124
|
|
97
98
|
lusid/models/account_properties.py,sha256=fqKIfQ7tbAwodW8tZu86JTapAW5lVNNMonB6F2C1s5g,4272
|
|
98
99
|
lusid/models/accounting_method.py,sha256=iPWTzUtPG_HbVrtKuIFpP7Pn1ZKbSjQ9DkMQpBWb0dw,837
|
|
99
100
|
lusid/models/accounts_upsert_response.py,sha256=qHHsFTkMqhIufYG3RBvXB1YimBluJREx-iq7bd2DL50,4120
|
|
100
|
-
lusid/models/accumulation_event.py,sha256=
|
|
101
|
+
lusid/models/accumulation_event.py,sha256=1JHtcDaYgh2QZdM031n3vbLk70F4hatSeEL_Ng91O6A,5789
|
|
101
102
|
lusid/models/action_id.py,sha256=rpG71w2AU6aWl6IpxkjpzkCgBtSLBQmLgmjQQ2cS3rw,2057
|
|
102
103
|
lusid/models/add_business_days_to_date_request.py,sha256=AfWmdr91A1Wpf0yT6CEEymkHYLXYha5Lll3EXe8FDtE,2640
|
|
103
104
|
lusid/models/add_business_days_to_date_response.py,sha256=wWo01x8xabbdMWzv73T7nRNBsKi1LYXJWTSaj4VCnWs,2013
|
|
@@ -128,7 +129,7 @@ lusid/models/allocation.py,sha256=sC9oB2NMNWtZt0wnh7wMzQXw6OQxaeHaCfLxNWO-JjM,11
|
|
|
128
129
|
lusid/models/allocation_request.py,sha256=GSGe0qAgCArKH1p7swa2a-4IG-w_hLwn_Ntseyh9dW0,9777
|
|
129
130
|
lusid/models/allocation_service_run_response.py,sha256=qOd5aKAwcjpCh2q5zTxWdGD5FitMpB86hmB89mC2zlo,3454
|
|
130
131
|
lusid/models/allocation_set_request.py,sha256=41ePNu4AX5sFtGER31_V2PFlqlqen1TkMsIAmcdmvd8,2851
|
|
131
|
-
lusid/models/amortisation_event.py,sha256
|
|
132
|
+
lusid/models/amortisation_event.py,sha256=xeNQiLHcZ7LkvFbAnH-uphJ2tYdAfiU6ZH_d49e8Mys,5426
|
|
132
133
|
lusid/models/amortisation_rule.py,sha256=-82zbA7s0GE49EWBZ6yAsfehhN64j6z-nnOi4jTL1CE,3638
|
|
133
134
|
lusid/models/amortisation_rule_set.py,sha256=kmii1YjRpRgkztDIyIRL_gjQUnF5Ylqy49wJlTfZOmA,5496
|
|
134
135
|
lusid/models/annul_quotes_response.py,sha256=mYZSWeQx2veyirZnrWl2HWLB1nLYxqfLC-kAD87L2Qo,4347
|
|
@@ -152,9 +153,9 @@ lusid/models/block_request.py,sha256=oSYaZNOUZF4WGV-NhlyEkBu9eKQpnni5ATa_sjGMw5A
|
|
|
152
153
|
lusid/models/block_set_request.py,sha256=rf_hhzmOX2F57W1yino-nh4YZ8NGSWiaJxeCLwOL9UI,2620
|
|
153
154
|
lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x_ckzs-wI,5839
|
|
154
155
|
lusid/models/bond.py,sha256=uJZue_Xf8zoEgklJfnRxJRM8c-NzLTEEI19oClJct3I,12280
|
|
155
|
-
lusid/models/bond_coupon_event.py,sha256=c
|
|
156
|
-
lusid/models/bond_default_event.py,sha256=
|
|
157
|
-
lusid/models/bond_principal_event.py,sha256=
|
|
156
|
+
lusid/models/bond_coupon_event.py,sha256=BX_J7WyLz3pvmg-ls4KV3xgQ7zQPsVfB6Jy90OJ0M-c,5203
|
|
157
|
+
lusid/models/bond_default_event.py,sha256=ZQ-YbNiazZS1uj1EbjV4qxaNQU9p-VUCw1Tg0D-rsOU,4681
|
|
158
|
+
lusid/models/bond_principal_event.py,sha256=tJ49qwWLOPExbVcSLIu0Tv6UL5oFyFaTKa7kDzhEpcw,5238
|
|
158
159
|
lusid/models/book_transactions_request.py,sha256=fPB779I5p_8Iv7VCrHsGId-5WhgSer6yNAmZpoDBksY,3719
|
|
159
160
|
lusid/models/book_transactions_response.py,sha256=4duW5WZ1cspArgEXKbm2eWXROYkJ1evRJK6QmvhXNMg,3537
|
|
160
161
|
lusid/models/bool_compliance_parameter.py,sha256=4KLs6EkHeUkR_wYPsSJitbGFD5QGURwUuJXE23FLUyA,5168
|
|
@@ -168,10 +169,11 @@ lusid/models/calendar.py,sha256=ZxD15NO_vvFHi6CTvYvYn0-oUOesbyGsRFzO47viJn4,3961
|
|
|
168
169
|
lusid/models/calendar_date.py,sha256=CtQHbrmTnJdrjtVTL5AWd6rYn6bl5rtPi1-Lm5KFEUE,3688
|
|
169
170
|
lusid/models/calendar_dependency.py,sha256=XYN9AYoLnwuL234DkyDbXArsWalMIdG8U2iU_3dBXrY,3871
|
|
170
171
|
lusid/models/cap_floor.py,sha256=FjJIqdPUbjayF4mqNrSQUohG33fyT5r_YWD8zaACjl0,5980
|
|
172
|
+
lusid/models/capital_distribution_event.py,sha256=d3blPEJK2jB9XyYmOh_BKv6vr0XxeKGiNfLHwTTch5s,6541
|
|
171
173
|
lusid/models/cash_dependency.py,sha256=zwUJWL1OvD_DRCBLNRunbtsw9vBRXcri3hMmlu3oXGI,4182
|
|
172
|
-
lusid/models/cash_dividend_event.py,sha256=
|
|
174
|
+
lusid/models/cash_dividend_event.py,sha256=Qu9ZHsofVTnx2p0ZHtF7JO7FxfNoibfk2IcMcrFwo10,6492
|
|
173
175
|
lusid/models/cash_election.py,sha256=S4WDmP90O1Q-M_PgOCkUCZ6qixZwBz3DF0HRpUMwD1I,3882
|
|
174
|
-
lusid/models/cash_flow_event.py,sha256=
|
|
176
|
+
lusid/models/cash_flow_event.py,sha256=6A9w0TDMZNKjZrFJnkqdfbuBFcILM33wR4rRMY_Tr8Q,5201
|
|
175
177
|
lusid/models/cash_flow_lineage.py,sha256=Y46Eg39U0pkAyCez2xzh87zHFu-3R8GAShjiEUyao78,4785
|
|
176
178
|
lusid/models/cash_flow_value.py,sha256=McLO_czOfxxoX6QrOHT-WJZh7pB5nzC--nxSg1KKcgo,5099
|
|
177
179
|
lusid/models/cash_flow_value_set.py,sha256=_YLdVEB8NRztQQ2TsQk0hDWR8wad6hRuO-5MTuOtw_Y,4424
|
|
@@ -194,7 +196,7 @@ lusid/models/cleardown_module_response.py,sha256=SjHPnXa8sgJmEniGDeZu4wxkNQke5SJ
|
|
|
194
196
|
lusid/models/cleardown_module_rule.py,sha256=ggzdjEZXxEAZjOL-zCZH7z05IkpBx4hJ60rKDc_QzhA,3505
|
|
195
197
|
lusid/models/cleardown_module_rules_updated_response.py,sha256=gVxjkztmGxvnHaGMQjmrL8hw0N7GhJKRpujbLdSk6T8,4316
|
|
196
198
|
lusid/models/client.py,sha256=C-cuudkA8GKpa3GKnbetJFu8kE5E88Ap1h_72UHqKVA,1980
|
|
197
|
-
lusid/models/close_event.py,sha256=
|
|
199
|
+
lusid/models/close_event.py,sha256=ftnqZNWKWEfkBUwxINdxBjVrDpQmMtWgzBPpZhhW5wo,4883
|
|
198
200
|
lusid/models/close_period_diary_entry_request.py,sha256=UOa8KG3HIOD07ORSle8u84ihW5i1aBmJU79qWIPXJMI,6413
|
|
199
201
|
lusid/models/complete_portfolio.py,sha256=_y1LTAZ7pErx7ioQu20WLK_l3sy55JRoJo8c4yZb3jE,7827
|
|
200
202
|
lusid/models/complete_relation.py,sha256=T1Wd-knJ0m60ZV82FRinBboqaj0XioTUirK43ozT1q4,3908
|
|
@@ -278,9 +280,9 @@ lusid/models/credit_support_annex.py,sha256=YFEtXS7mDojadeeJOfvfNVCBHjgkgBFbUMV0
|
|
|
278
280
|
lusid/models/criterion_type.py,sha256=Bd9KQZuS8O0ie_vYJZAvfnKMggoJOiCdcMFpik-m-q8,772
|
|
279
281
|
lusid/models/currency_and_amount.py,sha256=izd4FdwwuPPB79pNkbk4tuwB3-JiTUE4B-OhHyboJ9k,2277
|
|
280
282
|
lusid/models/curve_options.py,sha256=QrYx3ty0D8guh0t5mnxs6makVs3zGlJDO2-6ypIHN_c,5131
|
|
281
|
-
lusid/models/custodian_account.py,sha256=
|
|
283
|
+
lusid/models/custodian_account.py,sha256=u12g4jvcWG-ueWSpbBBBfpjmp09ehY3wEXcORQI-hx0,5020
|
|
282
284
|
lusid/models/custodian_account_properties.py,sha256=733uiIZZOx86tQVcX0zfb6-HqF6DXKy5w4hl-9T7uSU,4363
|
|
283
|
-
lusid/models/custodian_account_request.py,sha256=
|
|
285
|
+
lusid/models/custodian_account_request.py,sha256=wDKC0ANlxtwCPpiuCTD1BTDrogZ5J0DanGAe3-RIVkI,6691
|
|
284
286
|
lusid/models/custodian_accounts_upsert_response.py,sha256=QWLhQmLlgBACAeMyQjH8wy3TNJsYTvJIsHA8DFGErZc,4382
|
|
285
287
|
lusid/models/custom_entity_definition.py,sha256=_YZDm6pFP32L3wxeX70-alLQbsvNdw0cbZduVbwaOOA,4624
|
|
286
288
|
lusid/models/custom_entity_definition_request.py,sha256=sHJ-6k98L7uYmPkX-tsYzQVoj6VlEZIY1kc0VROus4o,3948
|
|
@@ -330,8 +332,8 @@ lusid/models/diary_entry_request.py,sha256=0S68BmPSO7D4K7jmWeddfrHmcPwgeJEz23yot
|
|
|
330
332
|
lusid/models/discount_factor_curve_data.py,sha256=Xh3uEXruTb6oVMQoTkAoCGSGC9nBC-5WtjGfjWbD5TU,5522
|
|
331
333
|
lusid/models/discounting_dependency.py,sha256=jE2qCUrOKNXFviSm7dxV9qH8KZcMtzhL65KSeSPVZ1c,4377
|
|
332
334
|
lusid/models/discounting_method.py,sha256=MlWtNqjuA9R4G5hosNUyP5NgFDnzlOpVHgnRH44uo-k,734
|
|
333
|
-
lusid/models/dividend_option_event.py,sha256=
|
|
334
|
-
lusid/models/dividend_reinvestment_event.py,sha256=
|
|
335
|
+
lusid/models/dividend_option_event.py,sha256=MOmZZi76GvAhzo_tRZvAxK2-hkJKK0alzj2OM3vRYV4,7536
|
|
336
|
+
lusid/models/dividend_reinvestment_event.py,sha256=VaTqBsJkCNMCMlTLl860qfbf33AdIDAEsr2ovQwhELg,7422
|
|
335
337
|
lusid/models/economic_dependency.py,sha256=cl_ZetMATxLqsO4VRK8k9JuVDQWuhYwuBDuXW7X-1RU,6096
|
|
336
338
|
lusid/models/economic_dependency_type.py,sha256=tx37PkXssBSTW8Rqm1PN8XFEKR4lEkTgnLwL0EvMh3k,1290
|
|
337
339
|
lusid/models/economic_dependency_with_complex_market_data.py,sha256=2iTNQhxgay9BaToXvx2v7SDq8Mm4qWCvYEczUQn0Zsk,3051
|
|
@@ -357,10 +359,10 @@ lusid/models/exchange_traded_option_contract_details.py,sha256=kTmC8XarImx5iMSCm
|
|
|
357
359
|
lusid/models/execution.py,sha256=xgTGRwDwyKoIs2Pr1bO2gyqCZse_xbUX-FawwhMDgS8,8094
|
|
358
360
|
lusid/models/execution_request.py,sha256=QIRsZXIKhl_YftXWBWjaT1IZuvIzSi766FWAx7I6Qlc,6720
|
|
359
361
|
lusid/models/execution_set_request.py,sha256=CXGgbdH8abVfPqnUs4J1xR_mHI3byH4ES_T7IGDm0nM,2672
|
|
360
|
-
lusid/models/exercise_event.py,sha256=
|
|
362
|
+
lusid/models/exercise_event.py,sha256=eVFMJjxkjz2bNwoxzqpmfvoHOyQn1RASPP_IzZx6cXk,5431
|
|
361
363
|
lusid/models/exotic_instrument.py,sha256=Nfv3cttH2eWGX_aeU6zxmLD5hsNnWC6yBSFeFS6sr80,5705
|
|
362
364
|
lusid/models/expanded_group.py,sha256=e1fIiusdlI_VtjJlF4g5O_yg6A_5VDOg2LaW94CUyJU,5931
|
|
363
|
-
lusid/models/expiry_event.py,sha256=
|
|
365
|
+
lusid/models/expiry_event.py,sha256=u7I-6ehFQwqurZHfP9sCC9lCqtMT_wwqRxxMRPy_dEk,4597
|
|
364
366
|
lusid/models/fee_rule.py,sha256=Ez0GUE-1FlzEO8VF1IbH3p2I6gjMaQ6arWzo3VCyi5Q,6070
|
|
365
367
|
lusid/models/fee_rule_upsert_request.py,sha256=0s31dKcYP1kUfOdeuwqbCTxNL6VQ42ryi_QPzayIrXw,6166
|
|
366
368
|
lusid/models/fee_rule_upsert_response.py,sha256=PH0YLPebZM42YRxgoUXYoP6aDdMuDnw7wBAU_VYCwuE,3144
|
|
@@ -390,12 +392,12 @@ lusid/models/future.py,sha256=pnx4e44D0N_iLII4qDp3_E5BS4WmtsDE3S0dq9SODVs,9013
|
|
|
390
392
|
lusid/models/futures_contract_details.py,sha256=crSsBLSWPR8R7gQiUC0XFsYG2GSQtlZIuTUcaJog8HE,7336
|
|
391
393
|
lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
|
|
392
394
|
lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
|
|
393
|
-
lusid/models/fx_forward.py,sha256=
|
|
395
|
+
lusid/models/fx_forward.py,sha256=6_JQn_ppPN-gd2ZpuXR80u8VLvMv4jihGrvTWBqYHAA,8577
|
|
394
396
|
lusid/models/fx_forward_curve_by_quote_reference.py,sha256=KUwwMke3qyymP2UTTrfDuH3oVV2e3wJ2EHtsRfCT9cM,7865
|
|
395
397
|
lusid/models/fx_forward_curve_data.py,sha256=6xwJY_fAEVIbZyDVrbrgUR8YikalHiZ22ooDJHPH9tk,5758
|
|
396
398
|
lusid/models/fx_forward_model_options.py,sha256=jSnnHeRJ8oKL7To5qWHpVg-vu9k0zlAuZoJ4vHnZXPw,4864
|
|
397
399
|
lusid/models/fx_forward_pips_curve_data.py,sha256=h4E7tSAeTqLRaINpG_CCDdIvVMwk6hMCrjGNdb34j4Y,5885
|
|
398
|
-
lusid/models/fx_forward_settlement_event.py,sha256=
|
|
400
|
+
lusid/models/fx_forward_settlement_event.py,sha256=3OqUozcBJ8r1eLo3IOH-LcH8mZrCAHi9ZFHAQf1KEk4,8467
|
|
399
401
|
lusid/models/fx_forward_tenor_curve_data.py,sha256=S1kHnkg2Fpds9xDXzjLxBoUXGb70uDsEBg0zkNxfs1Q,7547
|
|
400
402
|
lusid/models/fx_forward_tenor_pips_curve_data.py,sha256=S8fQm_x1CiHXAQAMs4Pp7bczo7DWfUpRTzbhbs-r-zw,7645
|
|
401
403
|
lusid/models/fx_forwards_dependency.py,sha256=0ziw4k_SX5hMqWJdZ0pYxRVL2xWD7d0hLgFOHQqosR0,5238
|
|
@@ -447,8 +449,8 @@ lusid/models/inflation_index_conventions.py,sha256=I9uG6oCE8M5IHq63DZXvH1fI_5TzM
|
|
|
447
449
|
lusid/models/inflation_leg.py,sha256=Qg4hK2W848XjHNMGADo4QFQNR9uahravd-o8rFPZ0mA,9819
|
|
448
450
|
lusid/models/inflation_linked_bond.py,sha256=hBb2K7jjMLv-F0ajkEdtTE3q5ROakXVIXW7WwpOmvLw,13828
|
|
449
451
|
lusid/models/inflation_swap.py,sha256=KgUiqhQgze1H9-lzKvBkwCpnIHMIXmLvIzpodvGB0cw,6839
|
|
450
|
-
lusid/models/informational_error_event.py,sha256=
|
|
451
|
-
lusid/models/informational_event.py,sha256=
|
|
452
|
+
lusid/models/informational_error_event.py,sha256=ECkqUWpNhsIkKR83xlmvL_tctL9gkPU_KdJO6F-VvWo,5028
|
|
453
|
+
lusid/models/informational_event.py,sha256=0A5y242N_Y_6tGpj1Pg5Z1oOX0rxkQg14FY03jtUISE,6041
|
|
452
454
|
lusid/models/inline_valuation_request.py,sha256=Qn5CwniPwvIDFzkF2GFubAyFFUkT2I9VK99q4mAHK2w,10449
|
|
453
455
|
lusid/models/inline_valuations_reconciliation_request.py,sha256=ifM58Y663WkSy5kgZCVxSkRxKDe4QpU6qSELGA25VGs,4749
|
|
454
456
|
lusid/models/input_transition.py,sha256=-ZYi6ocgtgDHyrJzVm04FvQSTO5Gn22Tx_wdY7wWKxg,2225
|
|
@@ -458,10 +460,13 @@ lusid/models/instrument_cash_flow.py,sha256=OQsDlRhKceb7ok0zZKxtIbhz82V0Iz3KArtn
|
|
|
458
460
|
lusid/models/instrument_definition.py,sha256=0WsRDxXH3Anop2IImyoQiEkMRxs8MktSfkjMLczYUpU,4782
|
|
459
461
|
lusid/models/instrument_definition_format.py,sha256=yhFb5bjsk3u2aUYukxXfcN2m9BBGVI0Zw0z9vBmm5Rk,2854
|
|
460
462
|
lusid/models/instrument_delete_modes.py,sha256=pRnKhwXly5wA6KEnvvphzEBS6ThT-iuuhS4JFVEal3s,682
|
|
461
|
-
lusid/models/instrument_event.py,sha256=
|
|
463
|
+
lusid/models/instrument_event.py,sha256=E17CnjDP3dDYkm1Cgjp4sf6h5fSVqSDrdjdRYm8T3UE,7046
|
|
462
464
|
lusid/models/instrument_event_configuration.py,sha256=KUMoeahiegPFRIMhitVHGYTkBNv9i2eWREigqdTxgqs,2784
|
|
463
465
|
lusid/models/instrument_event_holder.py,sha256=kbrQ_yd4X9THZo4oLdvB3HeUwJSmeVpOoIOBUy1o7fs,6994
|
|
464
|
-
lusid/models/
|
|
466
|
+
lusid/models/instrument_event_instruction.py,sha256=euUiqidTQl6Il7KsKvjGs0u1BmaJ8zBpnNWMSXzQ3GY,5464
|
|
467
|
+
lusid/models/instrument_event_instruction_request.py,sha256=uDTvxy3TrTjrLCBl5G-zDEBWuSRYwtXJ_Bzys3NyuH0,3639
|
|
468
|
+
lusid/models/instrument_event_instructions_response.py,sha256=Wr4XI1bNMijF7h1COCze7QXUCbl-nc8fQ3ZTNFGZFGE,3984
|
|
469
|
+
lusid/models/instrument_event_type.py,sha256=cyg5go3n1YHawoByjwCmLk8aVsJVBdm-AKIzjPv57Vk,1756
|
|
465
470
|
lusid/models/instrument_id_type_descriptor.py,sha256=0p18FCVnh60RF3LiLPOsDgbqAyeGJPn_UETTaII0Dx4,2569
|
|
466
471
|
lusid/models/instrument_id_value.py,sha256=wWr4npSEr_hpTWDjFf8WhALa4o0NFNPmNKpuxY1S6PI,2220
|
|
467
472
|
lusid/models/instrument_leg.py,sha256=oipN1b6S1XYsbxmUaEky0rn3Z2VinWVmFykx4VIiFvE,5606
|
|
@@ -517,7 +522,7 @@ lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNr
|
|
|
517
522
|
lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
|
|
518
523
|
lusid/models/market_quote.py,sha256=ZibHoxhLJcdtZ5AgZhyv8HS-jXRdLs8bKHlvTmaZqwI,3145
|
|
519
524
|
lusid/models/match_criterion.py,sha256=cnLfFgO9k05dH7ooGS7s3d8BvyJNuVMDUh3Yt-SPuec,3568
|
|
520
|
-
lusid/models/maturity_event.py,sha256=
|
|
525
|
+
lusid/models/maturity_event.py,sha256=NBdksz8bOwX84P0S0fIs-LTJGanfFMElqxQ1Erl_qOM,4626
|
|
521
526
|
lusid/models/metric_value.py,sha256=QycljuRptuyuEisuUKhJ9kSSlDPJrAykErN9wPZ-x7o,2187
|
|
522
527
|
lusid/models/model_options.py,sha256=MaLJVMOfpgwL_ZLIIrLbLwpC1lhZKNkzMOGlFlVFgSM,4202
|
|
523
528
|
lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
|
|
@@ -533,7 +538,7 @@ lusid/models/numeric_comparison_type.py,sha256=WGvpUP3x3ZPAuDiZjfQquJU6GoqIpubmm
|
|
|
533
538
|
lusid/models/opaque_dependency.py,sha256=Ht0hyAe6RncSF7vqTkGIg-YAycmNarb9ipyrlha_t_M,3778
|
|
534
539
|
lusid/models/opaque_market_data.py,sha256=-MZjF19x1jJRK3SNGqLE2u93eSFWgILoHQZMVQe1FBg,5168
|
|
535
540
|
lusid/models/opaque_model_options.py,sha256=kafN8F0SG-pjGN5yf--z1lBXyazMRYkrUI2saTfWCJY,3298
|
|
536
|
-
lusid/models/open_event.py,sha256=
|
|
541
|
+
lusid/models/open_event.py,sha256=dO9cTKtb029y7JxMrPBMgYiTg2qMQR3tJrTAaFH6vis,4560
|
|
537
542
|
lusid/models/operand_type.py,sha256=Loz7v9RxLu3rlHgcyZr3XtTkPNFLdBvST0D-YesPnHo,648
|
|
538
543
|
lusid/models/operation.py,sha256=fpIlpbdjWTx57q7g1BsGVvQLHFnDmP5bC5qvVgcxvaE,2546
|
|
539
544
|
lusid/models/operation_type.py,sha256=P94KPO_IeR4OudGe2-magDMHSbwHWEEzfOTsjGEo-YA,622
|
|
@@ -622,6 +627,8 @@ lusid/models/paged_resource_list_of_reconciliation.py,sha256=iODKH_7NDVwlcIDirVF
|
|
|
622
627
|
lusid/models/paged_resource_list_of_reference_list_response.py,sha256=ffpB6EG7wL5aaxr7CIlP9YrGeyLorud3y9dk1gGCgMU,4228
|
|
623
628
|
lusid/models/paged_resource_list_of_relationship_definition.py,sha256=qaxiS4NZ4k3AvMB6KTLDiCHQybNs6MZsfX-vGyxQatc,4239
|
|
624
629
|
lusid/models/paged_resource_list_of_sequence_definition.py,sha256=Rygp8Id0FON4madTc6FIgmLAX3_d5cOLCLzHBGuenU4,4191
|
|
630
|
+
lusid/models/paged_resource_list_of_staged_modification.py,sha256=U8RG2vZoBh94C0NUQJ_2B3y1rPBe2RKRNhilniEAatE,4191
|
|
631
|
+
lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py,sha256=JMmlX9AD1l1I3cld1RrOO1ThNlOki-vPdxwlcfDvFFw,4482
|
|
625
632
|
lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=KOyb_cntzRt-MYYTwJiD1KD5RkA2Ix74EOm89utWbs8,4144
|
|
626
633
|
lusid/models/paged_resource_list_of_transaction_template.py,sha256=ZmNRSNB3ffs4DmjmikmvyhlN2INUL73j__ASXiWkMVc,4203
|
|
627
634
|
lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=CUV-fdc2rz300-pq5JYr02C65JqIP8cn4fpa_oCAAJY,4360
|
|
@@ -641,11 +648,11 @@ lusid/models/place_blocks_request.py,sha256=RE2xCyRSQSV8wkzYvqF54fyMYi-FdoGqnqJn
|
|
|
641
648
|
lusid/models/placement.py,sha256=5kJMz_9t07KT3NFF2Pdsq93cozl4yvNcxpyv9o5ZmRA,9106
|
|
642
649
|
lusid/models/placement_request.py,sha256=qg7Yf6EQeqtC1l7lZ18_kFiGiNjBcrzMlScOWWaGkWM,7870
|
|
643
650
|
lusid/models/placement_set_request.py,sha256=hkljmDDqllEbAjb7J0QAp_fyDKsizX8T9x4n1UBFCmU,2672
|
|
644
|
-
lusid/models/portfolio.py,sha256=
|
|
651
|
+
lusid/models/portfolio.py,sha256=vLgosL-OAM9RIFkS84augDeHUkDNuidFAsy4PrB0J4k,12718
|
|
645
652
|
lusid/models/portfolio_cash_flow.py,sha256=Apnb2tfP3bJrBjhH69OLwiAOvn7lApH791owxr1wC8A,8997
|
|
646
653
|
lusid/models/portfolio_cash_ladder.py,sha256=cZHdUI-PZuLYXlQDxcA9zCTRPX_cHZy0-qHng9bRggU,5462
|
|
647
654
|
lusid/models/portfolio_details.py,sha256=NABbe06Xp0cl54_HwYeUsko51op7oFVlMqCENEaQVWs,9198
|
|
648
|
-
lusid/models/portfolio_entity.py,sha256=
|
|
655
|
+
lusid/models/portfolio_entity.py,sha256=9MGRDnwA5yuEhUXgOqtIoES2QYACvaIwXJSWBk4VnfI,6594
|
|
649
656
|
lusid/models/portfolio_entity_id.py,sha256=Q6Y2BocHtfoMiSWaJJqoidwPeQeaDtM_A2Qi9ufesXk,3941
|
|
650
657
|
lusid/models/portfolio_group.py,sha256=pt4ZLAFaXINyx9d8BQ9zZAlj9lIWAzVVWsQpty2PgZA,7106
|
|
651
658
|
lusid/models/portfolio_group_id_compliance_parameter.py,sha256=EKTEIf0siRNSh4j7CHdl_QOgsDPBMKff3KJ6DP8rX7I,5521
|
|
@@ -664,7 +671,7 @@ lusid/models/portfolio_return_breakdown.py,sha256=PGCCidYWkdSSzNJmZeZIEuYQBgozeF
|
|
|
664
671
|
lusid/models/portfolio_search_result.py,sha256=xMxRykRsaUoDbwtk7oFYqJeGeTEpR1BaZ8sw-4zRQJY,6669
|
|
665
672
|
lusid/models/portfolio_trade_ticket.py,sha256=29sx0JwS49GzDI65hh4YvLN1rgBGBPDOTxfJHIgtzPg,2780
|
|
666
673
|
lusid/models/portfolio_type.py,sha256=FU88oStdLwCnAk2xAWMUtJiaLbwWJKBi-rE1ZkZTs8g,712
|
|
667
|
-
lusid/models/portfolio_without_href.py,sha256=
|
|
674
|
+
lusid/models/portfolio_without_href.py,sha256=CDQjm1QHYHi1yfG5J7xNq9JfyDd7SUWabEkLxmxuUx8,12385
|
|
668
675
|
lusid/models/portfolios_reconciliation_request.py,sha256=NlI1pOGr08bwob0a4FZRRZiS6DylKDpZJA8cw7dgRsc,3001
|
|
669
676
|
lusid/models/posting_module_details.py,sha256=YtjckonotvLC-UwLecW2G12FVxlww-VkyEU4q-urvsA,3310
|
|
670
677
|
lusid/models/posting_module_request.py,sha256=x6aq23t1GtSpg60mAe3gXTRBjgIkOVqUp4qRb3tLFDs,4473
|
|
@@ -705,7 +712,7 @@ lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
|
|
|
705
712
|
lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
|
|
706
713
|
lusid/models/quote_series_id.py,sha256=aDnSa7OkXCmQkjFRhVYae_OOd8OD-dgRRt-0Q45JwOU,6134
|
|
707
714
|
lusid/models/quote_type.py,sha256=dwYbZgzgJticaNVZmTZaYx6VgJtC30GtjDk9bPyseFQ,958
|
|
708
|
-
lusid/models/raw_vendor_event.py,sha256=
|
|
715
|
+
lusid/models/raw_vendor_event.py,sha256=YxHZoBZ792JWfZI2BHpB_CjWzIDZpfi210CmGj0vFz4,5440
|
|
709
716
|
lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
|
|
710
717
|
lusid/models/realised_gain_loss.py,sha256=zs9WnDKYfegeKs_QTbR9RNKyYoKCiEq0oZomoQjJg_I,7184
|
|
711
718
|
lusid/models/recipe_block.py,sha256=HDA6kexcMXEZXYEknTdRhyTNXi44WOmE1KtadUkVDC0,2848
|
|
@@ -744,7 +751,8 @@ lusid/models/relationship.py,sha256=0-ns6HuERVBMgWwEmaiNCSIQ5ewT1XjPymr1t0t2a6s,
|
|
|
744
751
|
lusid/models/relationship_definition.py,sha256=npRAIrrwG26GYoljTFDrB-vpd4fQun7oCvcBcNNDCSQ,6150
|
|
745
752
|
lusid/models/relative_date_offset.py,sha256=vjd-yELXhcUmdNyv7UqEaml_-nb2VsDpUeocHxT2Vmg,3016
|
|
746
753
|
lusid/models/repo.py,sha256=coardYZkAdtxI5OBNlhu-v-eqEf8e-ypEZa4S4aN4V0,11323
|
|
747
|
-
lusid/models/
|
|
754
|
+
lusid/models/requested_changes.py,sha256=kyZ8eoZCDRaN15ZIrvoJ9BRRdy8Lf1jw1MJrhjUNduY,2467
|
|
755
|
+
lusid/models/reset_event.py,sha256=lAaYvqgv_hRd7byFgcK31JHsgTpgjB_J-vHXhfU2JVE,5775
|
|
748
756
|
lusid/models/resource_id.py,sha256=c3SxFZVH_E3F6lCmIMntMd6EDaeCyAF33dSrSKA9jZ0,2064
|
|
749
757
|
lusid/models/resource_list_of_access_controlled_resource.py,sha256=_zb2c9apUlsdi8mX20q_M8YX-39EX_pBhNEwAECB3yA,4224
|
|
750
758
|
lusid/models/resource_list_of_access_metadata_value_of.py,sha256=J-gQGqolN8gYFQ1dYEE3adMqxTANz1g_2HE9Z0r5VbY,4395
|
|
@@ -825,7 +833,7 @@ lusid/models/result_value_dictionary.py,sha256=9Y_LcAKrU_RY84gNBujObXEx59DYgtixO
|
|
|
825
833
|
lusid/models/result_value_int.py,sha256=_tXdKUiNtsb10Wco7Hq8LCuUwab4HPyXBs3UQIkIrOE,4173
|
|
826
834
|
lusid/models/result_value_string.py,sha256=FCe2SsB9fZAvvjqRNuxQFTsa5sth7-3TlBdWujqO-c4,3881
|
|
827
835
|
lusid/models/result_value_type.py,sha256=CrOf0KEyx1VJIkAAyXjoGm8rcpSx26Gl_b5MgzZGqHU,1216
|
|
828
|
-
lusid/models/reverse_stock_split_event.py,sha256=
|
|
836
|
+
lusid/models/reverse_stock_split_event.py,sha256=vvmaKutLHlDkp4PumqhL9N_B1ZGB9gzfp0nn1NHiiBI,6269
|
|
829
837
|
lusid/models/rounding_configuration.py,sha256=jpeBHvca82qlK64vSOkZD7azNRI3Z599lhpx66BKKcM,2297
|
|
830
838
|
lusid/models/rounding_configuration_component.py,sha256=bLKRyNkrImXApHRSxODZ0Kp6-mX-JK9ycdOIFdr45g4,2111
|
|
831
839
|
lusid/models/rounding_convention.py,sha256=wHP76MnZGN_2m25x7fRsNA6mkcCLmkHx-YSGSRRnrzk,3968
|
|
@@ -833,7 +841,7 @@ lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-
|
|
|
833
841
|
lusid/models/schedule.py,sha256=MVaZMITw7n7WrJYHlZ0UDSi89ypQ-MDpxcuPnpzapYo,4032
|
|
834
842
|
lusid/models/schedule_type.py,sha256=uhuSEg1BNpgNkbKtUEK8FLs_Tf0TeotY6fStjQNxMto,901
|
|
835
843
|
lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
|
|
836
|
-
lusid/models/scrip_dividend_event.py,sha256=
|
|
844
|
+
lusid/models/scrip_dividend_event.py,sha256=I7_zoyvcv-M2-hw472muXjiz1JhTwCBKxptfKZN_D7Y,6227
|
|
837
845
|
lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
|
|
838
846
|
lusid/models/security_election.py,sha256=tY1AkshueFnIgGzSpAmpK3gydlzIkU-JOFYW_T8p6zA,3429
|
|
839
847
|
lusid/models/sequence_definition.py,sha256=AYwg5voGGesPOyFYKXGseDTPuO4rl1BRDbqjBfo-oSk,4439
|
|
@@ -852,13 +860,21 @@ lusid/models/sides_definition_request.py,sha256=dIwC8QWSo13i2TUv4KrpyAbo_fq-GxT7
|
|
|
852
860
|
lusid/models/simple_cash_flow_loan.py,sha256=NLVc19iiQEWnM-nUvT-hOz7vca8cG0mTXH9RIuK3iWo,6272
|
|
853
861
|
lusid/models/simple_instrument.py,sha256=gquWeXQKknx7JwuqPQNVHidMggVVXkIDTL_QSaByDSw,6778
|
|
854
862
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
|
863
|
+
lusid/models/staged_modification.py,sha256=rwguOPa8tgKaObYiZ_fC8QogvxzV35PL3Jn7efFsBhg,8731
|
|
864
|
+
lusid/models/staged_modification_decision.py,sha256=IUIpOwYjk41vLP_nMWDzZgI354cCtM9L6Yrf-K_DP4s,3544
|
|
865
|
+
lusid/models/staged_modification_decision_request.py,sha256=6PlH7coUQUIJe1-2GcwpatO3tpcqHIBelpgrd_BZ8qQ,2257
|
|
866
|
+
lusid/models/staged_modification_effective_range.py,sha256=G9oChBwQ_358d41tVDab-j1dGqOwiaRj_wDSDJYcsIU,2256
|
|
867
|
+
lusid/models/staged_modification_staging_rule.py,sha256=lFw1OutPCR70LzJIhjiL-a6dcPGXV2e8aVAbhPsh0Qw,3295
|
|
868
|
+
lusid/models/staged_modifications_entity_hrefs.py,sha256=f0mhz_WUwZmSHhF4xxou76TEXXSlkHYp9BpRfDacL_8,3914
|
|
869
|
+
lusid/models/staged_modifications_info.py,sha256=z2GkecAm0BLbrCmyBf5n_WzlWP-LPZW-s0io15Z5Spk,2827
|
|
870
|
+
lusid/models/staged_modifications_requested_change_interval.py,sha256=ndNGD9mspoIFnjoGbwxaatBUjgPvRoKCh4yyoAv-w7g,5061
|
|
855
871
|
lusid/models/staging_rule.py,sha256=RxvQoGTR8tShrGw4MLFhaR5L4kxdjeXK8hCGp0kagsk,3560
|
|
856
872
|
lusid/models/staging_rule_approval_criteria.py,sha256=qmAPg2CfdCQvgSiSLte1n9PAz0fYipc8oDVb2QaMIxk,2687
|
|
857
873
|
lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAktEN5cITthxm9F-w,3561
|
|
858
|
-
lusid/models/staging_rule_set.py,sha256=
|
|
874
|
+
lusid/models/staging_rule_set.py,sha256=05h5vV_9s3V2MYoH7o1K8pmjlUq15jJSsmyJ5ObRyKs,4896
|
|
859
875
|
lusid/models/step_schedule.py,sha256=uNakrJcB9X3e31PekjEBbu_MLbKr77P-57Qf1Ot3uPg,4504
|
|
860
|
-
lusid/models/stock_dividend_event.py,sha256
|
|
861
|
-
lusid/models/stock_split_event.py,sha256=
|
|
876
|
+
lusid/models/stock_dividend_event.py,sha256=-VlY86GeRRQtCnyef9yin3eAiqPyba78WGTJFfYxSz0,6265
|
|
877
|
+
lusid/models/stock_split_event.py,sha256=c9v7xeQ2tdvPEJWx4shgY0r7PeL_tNa8XpSi0-cHPb4,6209
|
|
862
878
|
lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
|
|
863
879
|
lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
|
|
864
880
|
lusid/models/string_compliance_parameter.py,sha256=e5dmzp7EXy35Lr6HzZ1uQTUuZuiexlog-BghfAraswI,5203
|
|
@@ -910,7 +926,7 @@ lusid/models/transaction_type_movement.py,sha256=RfcTLPKRDVzVFQm7mWgDGVUyvv9psJl
|
|
|
910
926
|
lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
|
|
911
927
|
lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
|
|
912
928
|
lusid/models/transactions_reconciliations_response.py,sha256=ogcMW8W4vgIDqEdggwJDA0tH-SInrqIFCLved7SZ-VM,3083
|
|
913
|
-
lusid/models/transition_event.py,sha256=
|
|
929
|
+
lusid/models/transition_event.py,sha256=EpBdQOwFIo04Upz2xqDD3LAQ93OD32XAazs8AwYD3rk,6785
|
|
914
930
|
lusid/models/translate_entities_inlined_request.py,sha256=ZhGACGzNSDIeQwIN8iQniclFypCWEl4RsMf_NEKB3nU,3576
|
|
915
931
|
lusid/models/translate_entities_request.py,sha256=aCRconXgNBLgdPzKRK09t_jMoHCkkOIpktI0KyhKtDM,3790
|
|
916
932
|
lusid/models/translate_entities_response.py,sha256=nWI03db6VRy-SLlcW1i8l4R1uNGERNPUeIDLSexBrrc,4458
|
|
@@ -925,7 +941,7 @@ lusid/models/translation_script.py,sha256=j-UdU56HTuGFwrkTaJiq0Z6KFgE9GVGG9a9_jX
|
|
|
925
941
|
lusid/models/translation_script_id.py,sha256=5JWxbDjiPVpsDZuz8RNmiC3JkVGOhodnLc2_NNmw17Q,3279
|
|
926
942
|
lusid/models/trial_balance.py,sha256=Kv-qKEzG4UPxyYsY9As1LqojQ2BL5y4ijw6DuNkZvno,6216
|
|
927
943
|
lusid/models/trial_balance_query_parameters.py,sha256=nkhAUaYSW9IDNDWKZBjjdm5fJx5ep2ypDgyOPpAk0mI,4934
|
|
928
|
-
lusid/models/trigger_event.py,sha256=
|
|
944
|
+
lusid/models/trigger_event.py,sha256=fXZzs6krnW-1CMbx7vGvrs6JHX6rVBfMgw-yK4Na35o,5598
|
|
929
945
|
lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW01PD8,3908
|
|
930
946
|
lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
|
|
931
947
|
lusid/models/units_ratio.py,sha256=BaJI9h_cMLk7idXL55jRYnO2tf8MTItoejRDHseJbH4,2154
|
|
@@ -999,7 +1015,7 @@ lusid/models/value_type.py,sha256=jHK4tNBGG6VZsoUobxgcuY59JiMYF7YVSqu_tyYyL8U,12
|
|
|
999
1015
|
lusid/models/vendor_dependency.py,sha256=aoSaZxqR2Sa-oE9DAggXJMoXqnPsej_v1lcmOuwqmsM,4307
|
|
1000
1016
|
lusid/models/vendor_library.py,sha256=Fx8zktN5UuefXUGb27Pgw-N3grsyVMvjOs_3Lw_S4Ow,812
|
|
1001
1017
|
lusid/models/vendor_model_rule.py,sha256=lsuNCUYeK86M2S2iJdkTkFzqFBqFOpIutIuV40X9Nlo,6263
|
|
1002
|
-
lusid/models/version.py,sha256=
|
|
1018
|
+
lusid/models/version.py,sha256=yNxWf0znwc5rhxudpQrMZsvOnXLq-4hxm_SeN2PlGno,6728
|
|
1003
1019
|
lusid/models/version_summary_dto.py,sha256=EjzyYugLxgsO8_myJU-egpQhRKdYD8AIljKRE2hZh14,3584
|
|
1004
1020
|
lusid/models/versioned_resource_list_of_a2_b_data_record.py,sha256=3X4yY5NWFUONWvWDFU4y6xne9BTmYIzI4Mh31_Cb0QY,4522
|
|
1005
1021
|
lusid/models/versioned_resource_list_of_a2_b_movement_record.py,sha256=rTddKkdkTeYGLNi00LwFiyva2i_ayLiNQ3-flIhdj8I,4570
|
|
@@ -1021,6 +1037,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1021
1037
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1022
1038
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1023
1039
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1024
|
-
lusid_sdk-2.1.
|
|
1025
|
-
lusid_sdk-2.1.
|
|
1026
|
-
lusid_sdk-2.1.
|
|
1040
|
+
lusid_sdk-2.1.110.dist-info/METADATA,sha256=xjdlFVuryJ-YL17KPSr5rBaJqNm-h-9tTWTpniEaUB0,183402
|
|
1041
|
+
lusid_sdk-2.1.110.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1042
|
+
lusid_sdk-2.1.110.dist-info/RECORD,,
|
|
File without changes
|