lusid-sdk 2.0.441__py3-none-any.whl → 2.0.459__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 +8 -0
- lusid/api/__init__.py +2 -0
- lusid/api/queryable_keys_api.py +211 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +6 -0
- 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/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/close_event.py +3 -3
- 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 +91 -0
- 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/maturity_event.py +3 -3
- lusid/models/open_event.py +3 -3
- lusid/models/queryable_key.py +124 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_queryable_key.py +113 -0
- lusid/models/stock_split_event.py +3 -3
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- {lusid_sdk-2.0.441.dist-info → lusid_sdk-2.0.459.dist-info}/METADATA +7 -3
- {lusid_sdk-2.0.441.dist-info → lusid_sdk-2.0.459.dist-info}/RECORD +34 -30
- {lusid_sdk-2.0.441.dist-info → lusid_sdk-2.0.459.dist-info}/WHEEL +0 -0
|
@@ -29,15 +29,15 @@ class StockSplitEvent(InstrumentEvent):
|
|
|
29
29
|
equity_split_ratio: Union[StrictFloat, StrictInt] = Field(..., alias="equitySplitRatio", description="This number describes the rate at which the company will be dividing their current shares outstanding. It is displayed as new shares per old.")
|
|
30
30
|
payment_date: datetime = Field(..., alias="paymentDate", description="Date on which the stock-split takes effect.")
|
|
31
31
|
record_date: datetime = Field(..., alias="recordDate", description="Date you have to be the holder of record in order to participate in the tender.")
|
|
32
|
-
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")
|
|
32
|
+
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")
|
|
33
33
|
additional_properties: Dict[str, Any] = {}
|
|
34
34
|
__properties = ["instrumentEventType", "equitySplitRatio", "paymentDate", "recordDate"]
|
|
35
35
|
|
|
36
36
|
@validator('instrument_event_type')
|
|
37
37
|
def instrument_event_type_validate_enum(cls, value):
|
|
38
38
|
"""Validates the enum"""
|
|
39
|
-
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'):
|
|
40
|
-
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')")
|
|
39
|
+
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'):
|
|
40
|
+
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')")
|
|
41
41
|
return value
|
|
42
42
|
|
|
43
43
|
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")
|
|
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")
|
|
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'):
|
|
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')")
|
|
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'):
|
|
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')")
|
|
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")
|
|
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")
|
|
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'):
|
|
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')")
|
|
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'):
|
|
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')")
|
|
43
43
|
return value
|
|
44
44
|
|
|
45
45
|
class Config:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.459
|
|
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.0.
|
|
32
|
+
- API version: 0.11.6406
|
|
33
|
+
- Package version: 2.0.459
|
|
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
|
|
|
@@ -558,6 +558,7 @@ Class | Method | HTTP request | Description
|
|
|
558
558
|
*PropertyDefinitionsApi* | [**update_derived_property_definition**](docs/PropertyDefinitionsApi.md#update_derived_property_definition) | **PUT** /api/propertydefinitions/derived/{domain}/{scope}/{code} | [EARLY ACCESS] UpdateDerivedPropertyDefinition: Update a pre-existing derived property definition
|
|
559
559
|
*PropertyDefinitionsApi* | [**update_property_definition**](docs/PropertyDefinitionsApi.md#update_property_definition) | **PUT** /api/propertydefinitions/{domain}/{scope}/{code} | UpdatePropertyDefinition: Update property definition
|
|
560
560
|
*PropertyDefinitionsApi* | [**upsert_property_definition_properties**](docs/PropertyDefinitionsApi.md#upsert_property_definition_properties) | **POST** /api/propertydefinitions/{domain}/{scope}/{code}/properties | [EARLY ACCESS] UpsertPropertyDefinitionProperties: Upsert properties to a property definition
|
|
561
|
+
*QueryableKeysApi* | [**get_all_queryable_keys**](docs/QueryableKeysApi.md#get_all_queryable_keys) | **GET** /api/queryablekeys | [EARLY ACCESS] GetAllQueryableKeys: Query the set of supported \"addresses\" that can be queried from all endpoints.
|
|
561
562
|
*QuotesApi* | [**delete_quote_access_metadata_rule**](docs/QuotesApi.md#delete_quote_access_metadata_rule) | **DELETE** /api/metadata/quotes/rules/{scope} | [EXPERIMENTAL] DeleteQuoteAccessMetadataRule: Delete a Quote Access Metadata Rule
|
|
562
563
|
*QuotesApi* | [**delete_quotes**](docs/QuotesApi.md#delete_quotes) | **POST** /api/quotes/{scope}/$delete | DeleteQuotes: Delete quotes
|
|
563
564
|
*QuotesApi* | [**get_quotes**](docs/QuotesApi.md#get_quotes) | **POST** /api/quotes/{scope}/$get | [EARLY ACCESS] GetQuotes: Get quotes
|
|
@@ -981,6 +982,7 @@ Class | Method | HTTP request | Description
|
|
|
981
982
|
- [ExerciseEvent](docs/ExerciseEvent.md)
|
|
982
983
|
- [ExoticInstrument](docs/ExoticInstrument.md)
|
|
983
984
|
- [ExpandedGroup](docs/ExpandedGroup.md)
|
|
985
|
+
- [ExpiryEvent](docs/ExpiryEvent.md)
|
|
984
986
|
- [FeeRule](docs/FeeRule.md)
|
|
985
987
|
- [FeeRuleUpsertRequest](docs/FeeRuleUpsertRequest.md)
|
|
986
988
|
- [FeeRuleUpsertResponse](docs/FeeRuleUpsertResponse.md)
|
|
@@ -1308,6 +1310,7 @@ Class | Method | HTTP request | Description
|
|
|
1308
1310
|
- [QueryCashFlowsRequest](docs/QueryCashFlowsRequest.md)
|
|
1309
1311
|
- [QueryInstrumentEventsRequest](docs/QueryInstrumentEventsRequest.md)
|
|
1310
1312
|
- [QueryTradeTicketsRequest](docs/QueryTradeTicketsRequest.md)
|
|
1313
|
+
- [QueryableKey](docs/QueryableKey.md)
|
|
1311
1314
|
- [Quote](docs/Quote.md)
|
|
1312
1315
|
- [QuoteAccessMetadataRule](docs/QuoteAccessMetadataRule.md)
|
|
1313
1316
|
- [QuoteAccessMetadataRuleId](docs/QuoteAccessMetadataRuleId.md)
|
|
@@ -1408,6 +1411,7 @@ Class | Method | HTTP request | Description
|
|
|
1408
1411
|
- [ResourceListOfProperty](docs/ResourceListOfProperty.md)
|
|
1409
1412
|
- [ResourceListOfPropertyDefinition](docs/ResourceListOfPropertyDefinition.md)
|
|
1410
1413
|
- [ResourceListOfPropertyInterval](docs/ResourceListOfPropertyInterval.md)
|
|
1414
|
+
- [ResourceListOfQueryableKey](docs/ResourceListOfQueryableKey.md)
|
|
1411
1415
|
- [ResourceListOfQuote](docs/ResourceListOfQuote.md)
|
|
1412
1416
|
- [ResourceListOfQuoteAccessMetadataRule](docs/ResourceListOfQuoteAccessMetadataRule.md)
|
|
1413
1417
|
- [ResourceListOfReconciliationBreak](docs/ResourceListOfReconciliationBreak.md)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
2
|
-
lusid/api/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=ir4IFz72v3cJlTdSJRDzroH_m_iV5HuUyyQX9loOXJM,101365
|
|
2
|
+
lusid/api/__init__.py,sha256=5WU9TKhE3y6cW1xynqURpX8nMUAADmb92Sa3RXtRMWE,5197
|
|
3
3
|
lusid/api/abor_api.py,sha256=c7jUtAQLrgCgnkNCLLTkelIoU-Yd674I3-4kVDnIJlc,149936
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=SBpk45BSb-XcS06xkpycyg6Q2U4hpiuftgmF4v9L7x0,64027
|
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=7f7UvEzHKEfQLcR_NgABxJmfIIz2ujTM__wnUdJCqyg,31634
|
|
@@ -40,6 +40,7 @@ lusid/api/placements_api.py,sha256=SRjL8iZ27bGd3mfKon1Ukzpe63fM-fn8DK8m_naJn-4,4
|
|
|
40
40
|
lusid/api/portfolio_groups_api.py,sha256=T0KcrgEimgFDUTaM-vU0MhvTOKwI6_pjJzBitykslyQ,378947
|
|
41
41
|
lusid/api/portfolios_api.py,sha256=liuI1sZN1RMB0uebq4kRGhLMxKZZynnZu9fUUSggUQg,367109
|
|
42
42
|
lusid/api/property_definitions_api.py,sha256=tBUF--jzLbZq9GmmY9NN0NSzt4a_rhSLKqb4ybIOmuc,140383
|
|
43
|
+
lusid/api/queryable_keys_api.py,sha256=4x7A1Ioyudg10_5eEv948wHnNxE2vbgrEgoYjsvSijI,10275
|
|
43
44
|
lusid/api/quotes_api.py,sha256=Vzq35czDG07ReDj3RuhLk0hewd73EB9Jhcm5vjWRCuY,115619
|
|
44
45
|
lusid/api/reconciliations_api.py,sha256=NDtX7cQq8YhTxtzhAC8qHEypxlMDaNE5lHjUtvRGXcg,143278
|
|
45
46
|
lusid/api/reference_lists_api.py,sha256=bqjsW-gTYDWNN-F5m2E04nYIrxnO1kOn6BA_y_5sPlc,39833
|
|
@@ -62,7 +63,7 @@ lusid/api/transaction_portfolios_api.py,sha256=Q-RvuNmYL4drz4LeytNHRCmvrWwxfnPnT
|
|
|
62
63
|
lusid/api/translation_api.py,sha256=8_YL07_CYCI-FV4jMdiq7zlsDXqvkPMFQPyT6NL4jvU,20086
|
|
63
64
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
64
65
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
65
|
-
lusid/configuration.py,sha256=
|
|
66
|
+
lusid/configuration.py,sha256=99bUZNRdkqxygzIKnVrVDSoY0d7aasFSxazUwxX1xHo,14404
|
|
66
67
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
67
68
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
68
69
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -75,7 +76,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
75
76
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
76
77
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
77
78
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
78
|
-
lusid/models/__init__.py,sha256=
|
|
79
|
+
lusid/models/__init__.py,sha256=X1WYpZwHm_vlHr_c-VRzBXxHmNtGLA5ALtwIJOlLQVg,95210
|
|
79
80
|
lusid/models/a2_b_breakdown.py,sha256=MmG2do_CuV3zyMZJP0BORoG_jTe0G308IjBYhSZbpUw,2944
|
|
80
81
|
lusid/models/a2_b_category.py,sha256=DKiB3y93L3-MXpqRqGo93PeFlvD4ZjnQfH489NRLQVc,2722
|
|
81
82
|
lusid/models/a2_b_data_record.py,sha256=Xey2yvdCY9D-oBM_0Z5QIxboMAIzxKAgHcrvKie7Ypk,9734
|
|
@@ -94,7 +95,7 @@ lusid/models/account.py,sha256=vLRnWPIKy4HwuNxygCDHvuOWdxWTNRNQEzhSypj4oX8,5141
|
|
|
94
95
|
lusid/models/account_properties.py,sha256=vMEJ0kSTVHZpVmEt-PBSAx1jvinMxGuvPIBFjoQqOFs,4269
|
|
95
96
|
lusid/models/accounting_method.py,sha256=iPWTzUtPG_HbVrtKuIFpP7Pn1ZKbSjQ9DkMQpBWb0dw,837
|
|
96
97
|
lusid/models/accounts_upsert_response.py,sha256=y9dOgoivbE821gt80-5yUaK6mDSJL1w6ITUkmtEJx-g,4117
|
|
97
|
-
lusid/models/accumulation_event.py,sha256=
|
|
98
|
+
lusid/models/accumulation_event.py,sha256=Hm_M7li7Khw7upVhnugnEDLG1Tm6Qm2MBjjn_kxBDQQ,5500
|
|
98
99
|
lusid/models/action_id.py,sha256=WUNOfrPP6tbWnY0pyuystIOjghhybfna4uBkbr4VsRw,2054
|
|
99
100
|
lusid/models/action_result_of_portfolio.py,sha256=zK58sAq-jfszTpe-vRIfVa4jiFUntmLqdoCRPZiVNRQ,2235
|
|
100
101
|
lusid/models/add_business_days_to_date_request.py,sha256=sDtqIV6tRsqOoRLAJCLxNiop8g0vj-CvtblnN_Jcr5o,2637
|
|
@@ -126,7 +127,7 @@ lusid/models/allocation.py,sha256=AcTOjzV_l-VKcaDAzo_BNboWggeh8awAq7rGYgA9BMQ,11
|
|
|
126
127
|
lusid/models/allocation_request.py,sha256=YYK0YIkn1RWFecRqbbXsow5Tt3LUoX0xMjdaW46Stfo,9774
|
|
127
128
|
lusid/models/allocation_service_run_response.py,sha256=a2_R2Nvgl4kyY01SBWL5UAkZ0S4ZrO3_fxns0qZHZRY,3451
|
|
128
129
|
lusid/models/allocation_set_request.py,sha256=5c7U_VLZ8LGg0F0aQDqYHhdDjaS7A_uDhY_Rrz4TiIU,2848
|
|
129
|
-
lusid/models/amortisation_event.py,sha256=
|
|
130
|
+
lusid/models/amortisation_event.py,sha256=nMpWP6kDcMykDqKPgLHB0w81gZDlz4ByNtIRIFx2MM8,5137
|
|
130
131
|
lusid/models/annul_quotes_response.py,sha256=pmMR6AjsYF0meJWwlKRJ8tQMK6pt0JwSTaZs6AN5Cxg,4344
|
|
131
132
|
lusid/models/annul_single_structured_data_response.py,sha256=aPE1Y8tHPmh4rGjhbpLSacaLy0DIT0fizp6URtYqXV8,3325
|
|
132
133
|
lusid/models/annul_structured_data_response.py,sha256=QufUyntA5grcZQWN5sKwCjWgHxerL8GgBD-CiXGU0FU,4496
|
|
@@ -148,9 +149,9 @@ lusid/models/block_request.py,sha256=PLj2eegllefknGGEfziUPmDfeoqGXNtqx2PtPoSSvd0
|
|
|
148
149
|
lusid/models/block_set_request.py,sha256=aVAd61ZPcVDsJf_QNhau9YdDidyWZUEUagkmnauN4gA,2617
|
|
149
150
|
lusid/models/blocked_order_request.py,sha256=ltv-rD7eiqXAeKeESSJBBR3Ei0xUGzJBkUK4olUJ_po,5836
|
|
150
151
|
lusid/models/bond.py,sha256=rPqVWi7nscm4lS1x9cXTxPw9ZcQWTw_SRr3th-ad_uk,12195
|
|
151
|
-
lusid/models/bond_coupon_event.py,sha256=
|
|
152
|
-
lusid/models/bond_default_event.py,sha256=
|
|
153
|
-
lusid/models/bond_principal_event.py,sha256=
|
|
152
|
+
lusid/models/bond_coupon_event.py,sha256=hsotvNdU1ZLysI3bdrG8_5hVi-NDULIssCjRakX7A_Y,4914
|
|
153
|
+
lusid/models/bond_default_event.py,sha256=YCb1BTabRZMdbbJCKp0CbxLVDLYU3VpDvmchy5S8UBk,4392
|
|
154
|
+
lusid/models/bond_principal_event.py,sha256=1UK3VrhUjkJrJ8dC2nCyrvAF8ZAlgHdOBPPucMaZEm8,4949
|
|
154
155
|
lusid/models/book_transactions_request.py,sha256=qImwdWaRRb5R6USnNlH0GaaCwMil0LcLwOMgYUWMvro,3716
|
|
155
156
|
lusid/models/book_transactions_response.py,sha256=E-suQZ7BeLIBr2jSlGNBWeZBisRIgjCoUj7DCZr9gGs,3534
|
|
156
157
|
lusid/models/bool_compliance_parameter.py,sha256=g9M-1EqelibEPMvjRvfDoIDIISItyAPZbzFlGp56z78,5062
|
|
@@ -165,9 +166,9 @@ lusid/models/calendar_date.py,sha256=TCjTifg-RPRme3pAqNTMowXp-PIzHmjmUn7SpjkrsAo
|
|
|
165
166
|
lusid/models/calendar_dependency.py,sha256=xtoWvU44UmyYNEKE3qQf-deuz4J_JNzKFOo-qUF3G3E,3868
|
|
166
167
|
lusid/models/cap_floor.py,sha256=l5Dm-3ZlLqssbj3Nz_V3Exq4C5NR4pjijKqOElN22ZA,5977
|
|
167
168
|
lusid/models/cash_dependency.py,sha256=9q6PgY1BnngabaIhIpdAvwIVD1e7lPvBZQHLrPJSfNY,4179
|
|
168
|
-
lusid/models/cash_dividend_event.py,sha256
|
|
169
|
+
lusid/models/cash_dividend_event.py,sha256=-anix0hWJQO2MN-W_h4OYBDQ8XhVOoX5IB_91dUMvoo,6203
|
|
169
170
|
lusid/models/cash_election.py,sha256=GbPEeJAdQ_4gq3SD3WusutuzU83XD2JNvhnMRIZmLXA,3879
|
|
170
|
-
lusid/models/cash_flow_event.py,sha256=
|
|
171
|
+
lusid/models/cash_flow_event.py,sha256=9PFcJyIUUWj8KRHIeGW3IrFd0c-0BxPVV5KZIL08Hp0,4912
|
|
171
172
|
lusid/models/cash_flow_lineage.py,sha256=vILjP_WZYSzCFdUqIupEE71q3AGFIoWoYhZeR9_tuXU,4782
|
|
172
173
|
lusid/models/cash_flow_value.py,sha256=kptA5VlVSP8bSY2h8CCzqReGFC_JeD0G7LFXESU3mXY,5096
|
|
173
174
|
lusid/models/cash_flow_value_set.py,sha256=p6LBCBi3acCr5BrQO9WhQrG-V4smrsDxeBLUt2J6M9E,4421
|
|
@@ -190,7 +191,7 @@ lusid/models/cleardown_module_response.py,sha256=AbUJ2Nj8PQGXISXZQ8KqVV6NKN-g_iM
|
|
|
190
191
|
lusid/models/cleardown_module_rule.py,sha256=o5FTxXk-sU0nuwJ9HyXL6POAn5ErBmi8aIp6StyzF2c,3502
|
|
191
192
|
lusid/models/cleardown_module_rules_updated_response.py,sha256=mEVvi-b-55rcAsZ1bpBvXJ--ihXAMz7P_H3JbQPvENE,4313
|
|
192
193
|
lusid/models/client.py,sha256=g1lIWL8Mp7Z13y9cmSs3z9DBczJMKdCoR-4W-edi7gI,1977
|
|
193
|
-
lusid/models/close_event.py,sha256=
|
|
194
|
+
lusid/models/close_event.py,sha256=VD_rAyo9_fZsHa0YfaIcrOTHvbjozUcax6-ntXJ6q4Q,4594
|
|
194
195
|
lusid/models/close_period_diary_entry_request.py,sha256=TqH4YXI1qlYM7P71C3DoycZyk5kMDoIB8aFHzyTbxl4,6410
|
|
195
196
|
lusid/models/complete_portfolio.py,sha256=-Xbfoi--0uXUTvRFyt2vtIdF07AMgSP9zXK-gONrzLU,7824
|
|
196
197
|
lusid/models/complete_relation.py,sha256=veAdnyCdEPYBtw0REFezoms8jxhYalME_PeuQRHp-7Q,3905
|
|
@@ -324,8 +325,8 @@ lusid/models/diary_entry_request.py,sha256=NtBDV4DoHZwg_PWUA9ZzY0yDgcJpxjFctJUZA
|
|
|
324
325
|
lusid/models/discount_factor_curve_data.py,sha256=Pk21p7qmZWzCQsIQgXJjvo6L921IXzrbtJj3EJSW6dY,5519
|
|
325
326
|
lusid/models/discounting_dependency.py,sha256=wUyjXewg6ah4zIAIDX-LHrdKITcCAWhaRm2CEkctTJs,4374
|
|
326
327
|
lusid/models/discounting_method.py,sha256=MlWtNqjuA9R4G5hosNUyP5NgFDnzlOpVHgnRH44uo-k,734
|
|
327
|
-
lusid/models/dividend_option_event.py,sha256
|
|
328
|
-
lusid/models/dividend_reinvestment_event.py,sha256=
|
|
328
|
+
lusid/models/dividend_option_event.py,sha256=naMF0UelIhS_fh1mXSLeRLm7qX2-oeZhCKAJGjGPRDQ,7247
|
|
329
|
+
lusid/models/dividend_reinvestment_event.py,sha256=k3qVxcGpHiv1l27NKLc6geQJDnRtyvulVoxCg5Mu2uc,7133
|
|
329
330
|
lusid/models/economic_dependency.py,sha256=9mUx3tW4e50wN2tPqe39ysvm1Brwi1cnD2eAuL28Mm4,6093
|
|
330
331
|
lusid/models/economic_dependency_type.py,sha256=tx37PkXssBSTW8Rqm1PN8XFEKR4lEkTgnLwL0EvMh3k,1290
|
|
331
332
|
lusid/models/economic_dependency_with_complex_market_data.py,sha256=x04Yf6eqTCZ1nuIO-q9oPJr-1gPgO5UGpmDd99XyEvc,3048
|
|
@@ -351,9 +352,10 @@ lusid/models/exchange_traded_option_contract_details.py,sha256=QOhej9RTYQelzC5hx
|
|
|
351
352
|
lusid/models/execution.py,sha256=RCnxv8wXYSgGb25DdRRqU6XoODW8a4MRayayYowR-Ao,8091
|
|
352
353
|
lusid/models/execution_request.py,sha256=GDSVnOeu4yUrL9x0T6pE5FPuFLinbiO9_3iJrqx22N0,6717
|
|
353
354
|
lusid/models/execution_set_request.py,sha256=8k_lv83nsR-sBTyq01cRaxjCHMK8Q2qynML5Zyci6vk,2669
|
|
354
|
-
lusid/models/exercise_event.py,sha256=
|
|
355
|
+
lusid/models/exercise_event.py,sha256=MLKhrP6fVooMuCnqLzwBmE2QHqP2VJjP8ORPt8KTA-Y,5142
|
|
355
356
|
lusid/models/exotic_instrument.py,sha256=4m82Hl-ygvYsjgqO3mS0OUVouPpyce5aUJmBLtXJegI,5702
|
|
356
357
|
lusid/models/expanded_group.py,sha256=x60OOVkY3lsTQhd_Q-dqpU6yMwa5VLlIeEPL1hnF94c,5928
|
|
358
|
+
lusid/models/expiry_event.py,sha256=lx75y33A3DjQ8HjLpTfopLmVseuqR4qvkYldnFjANh0,4308
|
|
357
359
|
lusid/models/fee_rule.py,sha256=tDOUYrCkdy5W5M9cZFpb_NMYLsRQxWvDU_Zf6qk0os0,6067
|
|
358
360
|
lusid/models/fee_rule_upsert_request.py,sha256=j8NnLHab1dSTcH2cwFSGAqHAa0OEcOVDrfdC3_7feyU,6163
|
|
359
361
|
lusid/models/fee_rule_upsert_response.py,sha256=go_F9DK6mephE-Y6K8FOxouu-ixLZLCQyqIXoCONnec,3141
|
|
@@ -388,7 +390,7 @@ lusid/models/fx_forward_curve_by_quote_reference.py,sha256=r5igh4w_mEJq7NNbWfI8L
|
|
|
388
390
|
lusid/models/fx_forward_curve_data.py,sha256=6IQpejyhaKdT_f_Am8AVXAyQYdqB4SLGRt93caquah4,5755
|
|
389
391
|
lusid/models/fx_forward_model_options.py,sha256=_z_ozGTGbF9ewmVtwWMktvnrXk8mPGMEGj8iuVGXTdY,4861
|
|
390
392
|
lusid/models/fx_forward_pips_curve_data.py,sha256=RSQxw48lqTZhKwpS_5untmOs6oBMRl1Eu6kLSUnR4A4,5882
|
|
391
|
-
lusid/models/fx_forward_settlement_event.py,sha256=
|
|
393
|
+
lusid/models/fx_forward_settlement_event.py,sha256=DvXnLlUPoSw5gx6YWdstSNBNJQeAT7-dTp_EgpGQVhA,8178
|
|
392
394
|
lusid/models/fx_forward_tenor_curve_data.py,sha256=aZQ6i12e7IrXCVgfBQmvulc_gOoLujalXYipq6XWoXk,7544
|
|
393
395
|
lusid/models/fx_forward_tenor_pips_curve_data.py,sha256=Fay0gMCnKVlsUtqZIx5RBX3VNh2Ci6dmrPM93SwKxrg,7642
|
|
394
396
|
lusid/models/fx_forwards_dependency.py,sha256=o9x4l9ut0t6_GqCELIv6O6GZktbfEoVbUZXVrCD1OQQ,5235
|
|
@@ -440,8 +442,8 @@ lusid/models/inflation_index_conventions.py,sha256=WBB3c5r4h70LL6biAUDqlIpdJJ5qt
|
|
|
440
442
|
lusid/models/inflation_leg.py,sha256=RJC0v-Bz0OBt-d3PWuknaetNl1Ad43dpZGjrr4akM5A,9816
|
|
441
443
|
lusid/models/inflation_linked_bond.py,sha256=YxFHK_WQGBsThh_sBKBXLAA3QiIB5AcIvggJtinOr70,13704
|
|
442
444
|
lusid/models/inflation_swap.py,sha256=CtQ9-zP27A83ppPg9JW0hbbPsmqc3sznPqiB04nWoxo,6836
|
|
443
|
-
lusid/models/informational_error_event.py,sha256=
|
|
444
|
-
lusid/models/informational_event.py,sha256=
|
|
445
|
+
lusid/models/informational_error_event.py,sha256=CiXzRm5dL8ABQbzJTn4rZ5eo60EmZtSYGS1JOVNHmiI,4739
|
|
446
|
+
lusid/models/informational_event.py,sha256=zHncTHHSJ6q6f3nWYyEe870kO_TOxAFHaWx5Puis-C4,5752
|
|
445
447
|
lusid/models/inline_valuation_request.py,sha256=ycKmeFX4KXzIFv9Liz-QijGaG53_5s0CEPmqQY-hO9o,10446
|
|
446
448
|
lusid/models/inline_valuations_reconciliation_request.py,sha256=7acXXVSrdf9BNmgz1ZY9KEiJHeCEm8aqDuf8-C7Qtwk,4746
|
|
447
449
|
lusid/models/input_transition.py,sha256=MjEtiPzTNDwNFE1hv3cAiXPOZkt-e1WxXhHSkp4dP5Y,2222
|
|
@@ -451,10 +453,10 @@ lusid/models/instrument_cash_flow.py,sha256=kfflNli7fM8p0hbCn9F34u5UqYVkgk60XpH-
|
|
|
451
453
|
lusid/models/instrument_definition.py,sha256=wqYRBsCBBaBiWqr4R9OlYKdNVDhxJe4a-2-zzqylvlg,4779
|
|
452
454
|
lusid/models/instrument_definition_format.py,sha256=8I0_bIZQTxVHP5Yxot1lj0VHsswuoRSXioQJiIPW8TA,2851
|
|
453
455
|
lusid/models/instrument_delete_modes.py,sha256=pRnKhwXly5wA6KEnvvphzEBS6ThT-iuuhS4JFVEal3s,682
|
|
454
|
-
lusid/models/instrument_event.py,sha256=
|
|
456
|
+
lusid/models/instrument_event.py,sha256=J91fRxCfwULqjX3yCX6IU7xAQfUgc_8GAGvA-_WTk44,6349
|
|
455
457
|
lusid/models/instrument_event_configuration.py,sha256=h2VBJjNExS5CuF_Z4O1k7j8fLSUzBAiVcDHdfLwYtLE,2368
|
|
456
458
|
lusid/models/instrument_event_holder.py,sha256=ciUi2b3tLvDhESZgNSZ7vDvNttHyozC27ZxdZiWcQoI,6991
|
|
457
|
-
lusid/models/instrument_event_type.py,sha256=
|
|
459
|
+
lusid/models/instrument_event_type.py,sha256=nqKY7ezNaYnrOXe6iHUPmbaXDi_yt8Rt1lNtICY4z3M,1552
|
|
458
460
|
lusid/models/instrument_id_type_descriptor.py,sha256=zUiyKyDjt55zEp9Uvf42s-S0af8-4u5wi84lygkdVFA,2566
|
|
459
461
|
lusid/models/instrument_id_value.py,sha256=aUc8m4AQx9we38gKSK1TOxqQ4PEkc7qnIDYD1HArz9Y,2217
|
|
460
462
|
lusid/models/instrument_leg.py,sha256=9rkmXns2KZr9_2dkaG1IvTh_zuSxkm02DneBHKHljAY,5603
|
|
@@ -510,7 +512,7 @@ lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNr
|
|
|
510
512
|
lusid/models/market_options.py,sha256=93QkSqGEAtQnHPTjD82CyVAFgwZ_zrfcmRd36PdF5fw,6244
|
|
511
513
|
lusid/models/market_quote.py,sha256=jefx9YdhaZ3euVudzPzxDvGzAUZDEtXaN13VuFQeqdM,3142
|
|
512
514
|
lusid/models/match_criterion.py,sha256=x_v99ypZ6O4z3cTNDsEQn_VDf4m1n_9TGBUr-Nf2_bI,3565
|
|
513
|
-
lusid/models/maturity_event.py,sha256=
|
|
515
|
+
lusid/models/maturity_event.py,sha256=mSTx_0gDFtw3x2i5EGpK234G51ODUpVax7ejVU1s7n8,4337
|
|
514
516
|
lusid/models/metric_value.py,sha256=_nX8ObKbHDdF_-vf93lDQVDBZKJMPREoLiKzydadlWQ,2184
|
|
515
517
|
lusid/models/model_options.py,sha256=Gl9JHLVa9NPohXYLg5T3j_-Wivsd8cn2EgZED8vAg-s,4199
|
|
516
518
|
lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
|
|
@@ -526,7 +528,7 @@ lusid/models/numeric_comparison_type.py,sha256=WGvpUP3x3ZPAuDiZjfQquJU6GoqIpubmm
|
|
|
526
528
|
lusid/models/opaque_dependency.py,sha256=B48HQwHOTdm_zk7UJjMmIK9jRfMK_E1NCidt6Ja8rp0,3775
|
|
527
529
|
lusid/models/opaque_market_data.py,sha256=XhbY92JaXfGegFYP2MwrVY-wUUHeyZigAz0bE0CHXco,5165
|
|
528
530
|
lusid/models/opaque_model_options.py,sha256=h_VA_yxteqVByOSdLXvj7sd6hq8IzaPiCFEt-9ubuYM,3295
|
|
529
|
-
lusid/models/open_event.py,sha256=
|
|
531
|
+
lusid/models/open_event.py,sha256=Ipj6Jq3yGUmdRgzuV8-X2X4zbsTmREHhzUBV0qs7ZaM,4271
|
|
530
532
|
lusid/models/operand_type.py,sha256=Loz7v9RxLu3rlHgcyZr3XtTkPNFLdBvST0D-YesPnHo,648
|
|
531
533
|
lusid/models/operation.py,sha256=ANBfpC0ZuU_rEuXdUr6XkgY7HqGABqZxX7tyHx-AFDE,2543
|
|
532
534
|
lusid/models/operation_type.py,sha256=P94KPO_IeR4OudGe2-magDMHSbwHWEEzfOTsjGEo-YA,622
|
|
@@ -681,6 +683,7 @@ lusid/models/query_bucketed_cash_flows_request.py,sha256=uuvg-ekAGZ7Rraozts3J6t0
|
|
|
681
683
|
lusid/models/query_cash_flows_request.py,sha256=J61cPePJ01AnDaNibOY2mq-UAQS-GBF2MU2lBWYxW7o,3983
|
|
682
684
|
lusid/models/query_instrument_events_request.py,sha256=HutMwXyuy2wbnjwC_oixyl9Cq3iEmNMIEuQLzwLOwrk,4966
|
|
683
685
|
lusid/models/query_trade_tickets_request.py,sha256=Ozqqn8JAFIxdRxhysxK-No-KxhIqG715BxEo-9R-gKo,4064
|
|
686
|
+
lusid/models/queryable_key.py,sha256=mIitwmwaUCmioyzK0oRJa2r4slUr5aRTn3W16CSuadk,8317
|
|
684
687
|
lusid/models/quote.py,sha256=B_NVeonVjlHv4t3eAKymXqqhfsdffslvkqyeqQedEow,4476
|
|
685
688
|
lusid/models/quote_access_metadata_rule.py,sha256=rFUepZZNWsz5uTIXTyQjwtDurS7COQjbk8Qxs6uSKB4,3176
|
|
686
689
|
lusid/models/quote_access_metadata_rule_id.py,sha256=4l3XsSm7L5noHwqqE7XrD6EseqzGi3Y2D1HXAhEZsBc,6207
|
|
@@ -689,7 +692,7 @@ lusid/models/quote_id.py,sha256=5ybCNGx6k4bQybDSUar5M5ibMkflsQt34rFBatHcUmk,2416
|
|
|
689
692
|
lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
|
|
690
693
|
lusid/models/quote_series_id.py,sha256=uk8TZgu41g-LY5KRZddat7VjqRUyuDEq9wnenk3SOyA,6131
|
|
691
694
|
lusid/models/quote_type.py,sha256=dwYbZgzgJticaNVZmTZaYx6VgJtC30GtjDk9bPyseFQ,958
|
|
692
|
-
lusid/models/raw_vendor_event.py,sha256=
|
|
695
|
+
lusid/models/raw_vendor_event.py,sha256=1CV8uNUN3cP9uJ9IpvGCiv5OwdHb9mPi2uQk6dyGRw4,5151
|
|
693
696
|
lusid/models/re_open_period_diary_entry_request.py,sha256=J_tTyGyqDWWn-nh_C17LUCI4cR6EyqJ839q8rZffmSU,2789
|
|
694
697
|
lusid/models/realised_gain_loss.py,sha256=usHan6MJ1UbyAJb8V7oZ9aJk0kaUVm3vexHDCGcp6ZU,7181
|
|
695
698
|
lusid/models/recipe_block.py,sha256=C3vKxKIiNngtE3ff9d2agR8EJV8q5HJgNJABPMuXXGM,2845
|
|
@@ -728,7 +731,7 @@ lusid/models/relationship.py,sha256=qDpz730nUoqVyWup1P8pCVw28eg5fgEqW4l-AVIaHsY,
|
|
|
728
731
|
lusid/models/relationship_definition.py,sha256=N0UPrxhujySSvzG8muEqZN3mnY-Tx0tChJ5fqaVSBD0,6147
|
|
729
732
|
lusid/models/relative_date_offset.py,sha256=zeVjvSvuTcHknbwTdfTGE67yWk5f_MNUVAg9fAQPbR0,2471
|
|
730
733
|
lusid/models/repo.py,sha256=LbYXqlGSzbqdajbRMy1htzN1ZsZ_QwURD5eDHGcTWsk,11320
|
|
731
|
-
lusid/models/reset_event.py,sha256=
|
|
734
|
+
lusid/models/reset_event.py,sha256=YE4WntCzU4xU6TP7_gvcQtjnpWqaeUGToGCxMLgVPcw,5486
|
|
732
735
|
lusid/models/resource_id.py,sha256=Lf1R5bIgnxw-eROfFdlsDFTwRHc-OWqMFiBMJcMAMZc,2061
|
|
733
736
|
lusid/models/resource_list_of_access_controlled_resource.py,sha256=jDA_Y6Vy-ufCwITYy7T9xL0JT7GIa98GPfnLBKJOzNQ,4221
|
|
734
737
|
lusid/models/resource_list_of_access_metadata_value_of.py,sha256=CGeu2vrk-BktHUC3fd5vAzo_f1J8x6Q71DbH-tpAseE,4392
|
|
@@ -781,6 +784,7 @@ lusid/models/resource_list_of_processed_command.py,sha256=dT7_06gjYfnSexk7Y9GKSQ
|
|
|
781
784
|
lusid/models/resource_list_of_property.py,sha256=tbGZI9iw3CXYmkQrP48dpqJDhNpp0TyfF8lW9eVp4WU,4048
|
|
782
785
|
lusid/models/resource_list_of_property_definition.py,sha256=8c_PSBuTQhSUkt9EMfJAxrm4vqjRvhSNCD3c3Uiw9Ps,4148
|
|
783
786
|
lusid/models/resource_list_of_property_interval.py,sha256=EcNAbpB3WBeCJa2RzUf4wsU5RyPyxGpnv4oo2x6J9ok,4124
|
|
787
|
+
lusid/models/resource_list_of_queryable_key.py,sha256=JloOx8Cu9Sf7Qz3BrMImAWTOgFxG6YxXRBWyhzjbXrY,4076
|
|
784
788
|
lusid/models/resource_list_of_quote.py,sha256=ysWeg9AXBBbvvhwILZYFp7C9v1CdSmNae1uZgeuM-6g,3991
|
|
785
789
|
lusid/models/resource_list_of_quote_access_metadata_rule.py,sha256=E3LHgBtO3g91MypQfmMcwici3rdDBUwdPwdpV_Zx-5c,4210
|
|
786
790
|
lusid/models/resource_list_of_reconciliation_break.py,sha256=KqO0sSIgBh4ITmYWllW_8kFop8LDi8tM6U4asplKobI,4160
|
|
@@ -833,7 +837,7 @@ lusid/models/simple_cash_flow_loan.py,sha256=8ohdLNBIbKHjd4QcR6I7Bh3tHXzu4M4x_rm
|
|
|
833
837
|
lusid/models/simple_instrument.py,sha256=HPS0Lv9d-ZSR4b9KiRoYxOm6Jtt47w_vQmnpCVAmxXw,6775
|
|
834
838
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
|
835
839
|
lusid/models/step_schedule.py,sha256=92aya4yzyY0GQHS4b-HIyqXHmW1QOZbM5xg_XjA3SX8,4501
|
|
836
|
-
lusid/models/stock_split_event.py,sha256=
|
|
840
|
+
lusid/models/stock_split_event.py,sha256=2H2k5zeCMrxasGxO5Q1AW8d-uFnsRi6oCHoRTFbJEs8,4965
|
|
837
841
|
lusid/models/stream.py,sha256=aeDl9hmQ9wQliWkZsRs_iVLMELXD7Qo-b5BX7EN6-3Q,2862
|
|
838
842
|
lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
|
|
839
843
|
lusid/models/string_compliance_parameter.py,sha256=s_V9G8eBkMQsDHVqeuxYTbIC2l9H4zvinMHuGasbjik,5097
|
|
@@ -885,7 +889,7 @@ lusid/models/transaction_type_movement.py,sha256=VeEKrFERnGtmchoT31cshB0keB5x-jj
|
|
|
885
889
|
lusid/models/transaction_type_property_mapping.py,sha256=ImwPhb5L4pBD0FJ2TNpqnxUBvhOXJ-trRucrGXUeXE8,3246
|
|
886
890
|
lusid/models/transaction_type_request.py,sha256=uzSUfi_bCtUb7KQ-pyruThVegHHnID-XHaEiSMKezg4,5118
|
|
887
891
|
lusid/models/transactions_reconciliations_response.py,sha256=qvn-XU2qM60x8zgTvYegLkPgACm6vWSjOnogDHP4sL4,3080
|
|
888
|
-
lusid/models/transition_event.py,sha256=
|
|
892
|
+
lusid/models/transition_event.py,sha256=h4l2M1nxJJ2GCcPe1buw5cy_xkmDwzieII6gu5Yl4KI,6496
|
|
889
893
|
lusid/models/translate_entities_inlined_request.py,sha256=I_Tio9tG3STYaITm8rO4Ja8Cq6Ae9heTcsIYWVfv5D8,3573
|
|
890
894
|
lusid/models/translate_entities_request.py,sha256=Ut3JGdSntJbdexYHce8AsZeLH0Enyk35g085NsnI6rU,3787
|
|
891
895
|
lusid/models/translate_entities_response.py,sha256=aNKGYhLhOY8eg0VvVm1ULYba7vUpZLklqG5MR8AdbJU,4455
|
|
@@ -900,7 +904,7 @@ lusid/models/translation_script.py,sha256=t8CfitZlMo4jVuxjKDPh6ArlDX4y1d9eqzc5pD
|
|
|
900
904
|
lusid/models/translation_script_id.py,sha256=j0rISvRm_KCYHU4WfK2_TAHNRGBwST0dtD-_N48iAiM,3276
|
|
901
905
|
lusid/models/trial_balance.py,sha256=bC1G0sr4DyZ3O-Tw1L_y1iXiav-jX-vuMVkbkvV2tRc,6213
|
|
902
906
|
lusid/models/trial_balance_query_parameters.py,sha256=FTZxsok-H-QWTKAXSmaD-HLZUxDMG-eDeLNWcqTSHHM,4931
|
|
903
|
-
lusid/models/trigger_event.py,sha256=
|
|
907
|
+
lusid/models/trigger_event.py,sha256=2b85kvW1UCQJ0Nasvj-Zzxn8Gez7W8AUJiJsxBi0JrE,5309
|
|
904
908
|
lusid/models/typed_resource_id.py,sha256=oN69uzrhYXglj0mU6pLe2vYK0E0HupKBcuQvYr-3eX4,3905
|
|
905
909
|
lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
|
|
906
910
|
lusid/models/units_ratio.py,sha256=dsxfeYSrLUQ2bIs3AGXzo-IjIrRNFCQ6WPC34HmVM74,2151
|
|
@@ -990,6 +994,6 @@ lusid/models/weighted_instruments.py,sha256=M2Mr7KTAcMS40g309xatBHDhvYk3g61yigx0
|
|
|
990
994
|
lusid/models/yield_curve_data.py,sha256=i2MHEJe9kdTTgxQFti2a6BAU7ikE0wTPXsS_sMJhrDk,6327
|
|
991
995
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
992
996
|
lusid/rest.py,sha256=gHQ76psf1vzmBJI14ZGVvb3f_Urp0zBBo3R5u3-kNIM,10032
|
|
993
|
-
lusid_sdk-2.0.
|
|
994
|
-
lusid_sdk-2.0.
|
|
995
|
-
lusid_sdk-2.0.
|
|
997
|
+
lusid_sdk-2.0.459.dist-info/METADATA,sha256=6Z1c9J9nstfHhtf8evKn8c8lPB9pKP3LxUbCwmFFRsQ,174852
|
|
998
|
+
lusid_sdk-2.0.459.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
999
|
+
lusid_sdk-2.0.459.dist-info/RECORD,,
|
|
File without changes
|