lusid-sdk 2.1.608__py3-none-any.whl → 2.1.610__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +14 -0
- lusid/api/__init__.py +2 -0
- lusid/api/risk_model_factor_sets_api.py +902 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +12 -0
- lusid/models/bond.py +8 -2
- lusid/models/complex_bond.py +8 -2
- lusid/models/create_risk_model_factor_set_request.py +75 -0
- lusid/models/exchange_traded_option.py +9 -3
- lusid/models/future.py +15 -3
- lusid/models/inflation_linked_bond.py +8 -2
- lusid/models/mark_to_market_conventions.py +74 -0
- lusid/models/market_data_key_rule.py +1 -1
- lusid/models/market_data_specific_rule.py +1 -1
- lusid/models/paged_resource_list_of_risk_model_factor_set.py +113 -0
- lusid/models/risk_model_factor_set.py +103 -0
- lusid/models/trading_conventions.py +73 -0
- lusid/models/update_risk_model_factor_set_request.py +69 -0
- {lusid_sdk-2.1.608.dist-info → lusid_sdk-2.1.610.dist-info}/METADATA +12 -1
- {lusid_sdk-2.1.608.dist-info → lusid_sdk-2.1.610.dist-info}/RECORD +21 -14
- {lusid_sdk-2.1.608.dist-info → lusid_sdk-2.1.610.dist-info}/WHEEL +0 -0
@@ -0,0 +1,103 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
|
21
|
+
from typing import Any, Dict, List, Optional
|
22
|
+
from pydantic.v1 import BaseModel, Field, StrictStr, conlist, constr
|
23
|
+
from lusid.models.link import Link
|
24
|
+
from lusid.models.resource_id import ResourceId
|
25
|
+
from lusid.models.version import Version
|
26
|
+
|
27
|
+
class RiskModelFactorSet(BaseModel):
|
28
|
+
"""
|
29
|
+
RiskModelFactorSet
|
30
|
+
"""
|
31
|
+
id: ResourceId = Field(...)
|
32
|
+
display_name: constr(strict=True, min_length=1) = Field(..., alias="displayName", description="Factor Set name.")
|
33
|
+
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
34
|
+
version: Optional[Version] = None
|
35
|
+
links: Optional[conlist(Link)] = None
|
36
|
+
__properties = ["id", "displayName", "href", "version", "links"]
|
37
|
+
|
38
|
+
class Config:
|
39
|
+
"""Pydantic configuration"""
|
40
|
+
allow_population_by_field_name = True
|
41
|
+
validate_assignment = True
|
42
|
+
|
43
|
+
def to_str(self) -> str:
|
44
|
+
"""Returns the string representation of the model using alias"""
|
45
|
+
return pprint.pformat(self.dict(by_alias=True))
|
46
|
+
|
47
|
+
def to_json(self) -> str:
|
48
|
+
"""Returns the JSON representation of the model using alias"""
|
49
|
+
return json.dumps(self.to_dict())
|
50
|
+
|
51
|
+
@classmethod
|
52
|
+
def from_json(cls, json_str: str) -> RiskModelFactorSet:
|
53
|
+
"""Create an instance of RiskModelFactorSet from a JSON string"""
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
55
|
+
|
56
|
+
def to_dict(self):
|
57
|
+
"""Returns the dictionary representation of the model using alias"""
|
58
|
+
_dict = self.dict(by_alias=True,
|
59
|
+
exclude={
|
60
|
+
},
|
61
|
+
exclude_none=True)
|
62
|
+
# override the default output from pydantic by calling `to_dict()` of id
|
63
|
+
if self.id:
|
64
|
+
_dict['id'] = self.id.to_dict()
|
65
|
+
# override the default output from pydantic by calling `to_dict()` of version
|
66
|
+
if self.version:
|
67
|
+
_dict['version'] = self.version.to_dict()
|
68
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
69
|
+
_items = []
|
70
|
+
if self.links:
|
71
|
+
for _item in self.links:
|
72
|
+
if _item:
|
73
|
+
_items.append(_item.to_dict())
|
74
|
+
_dict['links'] = _items
|
75
|
+
# set to None if href (nullable) is None
|
76
|
+
# and __fields_set__ contains the field
|
77
|
+
if self.href is None and "href" in self.__fields_set__:
|
78
|
+
_dict['href'] = None
|
79
|
+
|
80
|
+
# set to None if links (nullable) is None
|
81
|
+
# and __fields_set__ contains the field
|
82
|
+
if self.links is None and "links" in self.__fields_set__:
|
83
|
+
_dict['links'] = None
|
84
|
+
|
85
|
+
return _dict
|
86
|
+
|
87
|
+
@classmethod
|
88
|
+
def from_dict(cls, obj: dict) -> RiskModelFactorSet:
|
89
|
+
"""Create an instance of RiskModelFactorSet from a dict"""
|
90
|
+
if obj is None:
|
91
|
+
return None
|
92
|
+
|
93
|
+
if not isinstance(obj, dict):
|
94
|
+
return RiskModelFactorSet.parse_obj(obj)
|
95
|
+
|
96
|
+
_obj = RiskModelFactorSet.parse_obj({
|
97
|
+
"id": ResourceId.from_dict(obj.get("id")) if obj.get("id") is not None else None,
|
98
|
+
"display_name": obj.get("displayName"),
|
99
|
+
"href": obj.get("href"),
|
100
|
+
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
101
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
102
|
+
})
|
103
|
+
return _obj
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
|
21
|
+
from typing import Any, Dict, Optional, Union
|
22
|
+
from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt
|
23
|
+
|
24
|
+
class TradingConventions(BaseModel):
|
25
|
+
"""
|
26
|
+
Common Trading details for exchange traded instruments like Futures and Bonds # noqa: E501
|
27
|
+
"""
|
28
|
+
price_scale_factor: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="priceScaleFactor", description="The factor used to scale prices for the instrument. Currently used by LUSID when calculating cost and notional amounts on transactions. Note this factor does not yet impact Valuation, PV, exposure, all of which use the scale factor attached to the price quotes in the QuoteStore. Must be positive and defaults to 1 if not set.")
|
29
|
+
minimum_order_size: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="minimumOrderSize", description="The Minimum Order Size Must be non-negative and defaults to 0 if not set.")
|
30
|
+
minimum_order_increment: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="minimumOrderIncrement", description="The Minimum Order Increment Must be non-negative and defaults to 0 if not set.")
|
31
|
+
__properties = ["priceScaleFactor", "minimumOrderSize", "minimumOrderIncrement"]
|
32
|
+
|
33
|
+
class Config:
|
34
|
+
"""Pydantic configuration"""
|
35
|
+
allow_population_by_field_name = True
|
36
|
+
validate_assignment = True
|
37
|
+
|
38
|
+
def to_str(self) -> str:
|
39
|
+
"""Returns the string representation of the model using alias"""
|
40
|
+
return pprint.pformat(self.dict(by_alias=True))
|
41
|
+
|
42
|
+
def to_json(self) -> str:
|
43
|
+
"""Returns the JSON representation of the model using alias"""
|
44
|
+
return json.dumps(self.to_dict())
|
45
|
+
|
46
|
+
@classmethod
|
47
|
+
def from_json(cls, json_str: str) -> TradingConventions:
|
48
|
+
"""Create an instance of TradingConventions from a JSON string"""
|
49
|
+
return cls.from_dict(json.loads(json_str))
|
50
|
+
|
51
|
+
def to_dict(self):
|
52
|
+
"""Returns the dictionary representation of the model using alias"""
|
53
|
+
_dict = self.dict(by_alias=True,
|
54
|
+
exclude={
|
55
|
+
},
|
56
|
+
exclude_none=True)
|
57
|
+
return _dict
|
58
|
+
|
59
|
+
@classmethod
|
60
|
+
def from_dict(cls, obj: dict) -> TradingConventions:
|
61
|
+
"""Create an instance of TradingConventions from a dict"""
|
62
|
+
if obj is None:
|
63
|
+
return None
|
64
|
+
|
65
|
+
if not isinstance(obj, dict):
|
66
|
+
return TradingConventions.parse_obj(obj)
|
67
|
+
|
68
|
+
_obj = TradingConventions.parse_obj({
|
69
|
+
"price_scale_factor": obj.get("priceScaleFactor"),
|
70
|
+
"minimum_order_size": obj.get("minimumOrderSize"),
|
71
|
+
"minimum_order_increment": obj.get("minimumOrderIncrement")
|
72
|
+
})
|
73
|
+
return _obj
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
|
21
|
+
from typing import Any, Dict
|
22
|
+
from pydantic.v1 import BaseModel, Field, constr
|
23
|
+
|
24
|
+
class UpdateRiskModelFactorSetRequest(BaseModel):
|
25
|
+
"""
|
26
|
+
UpdateRiskModelFactorSetRequest
|
27
|
+
"""
|
28
|
+
display_name: constr(strict=True, max_length=256, min_length=1) = Field(..., alias="displayName", description="Factor Set name.")
|
29
|
+
__properties = ["displayName"]
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
"""Pydantic configuration"""
|
33
|
+
allow_population_by_field_name = True
|
34
|
+
validate_assignment = True
|
35
|
+
|
36
|
+
def to_str(self) -> str:
|
37
|
+
"""Returns the string representation of the model using alias"""
|
38
|
+
return pprint.pformat(self.dict(by_alias=True))
|
39
|
+
|
40
|
+
def to_json(self) -> str:
|
41
|
+
"""Returns the JSON representation of the model using alias"""
|
42
|
+
return json.dumps(self.to_dict())
|
43
|
+
|
44
|
+
@classmethod
|
45
|
+
def from_json(cls, json_str: str) -> UpdateRiskModelFactorSetRequest:
|
46
|
+
"""Create an instance of UpdateRiskModelFactorSetRequest from a JSON string"""
|
47
|
+
return cls.from_dict(json.loads(json_str))
|
48
|
+
|
49
|
+
def to_dict(self):
|
50
|
+
"""Returns the dictionary representation of the model using alias"""
|
51
|
+
_dict = self.dict(by_alias=True,
|
52
|
+
exclude={
|
53
|
+
},
|
54
|
+
exclude_none=True)
|
55
|
+
return _dict
|
56
|
+
|
57
|
+
@classmethod
|
58
|
+
def from_dict(cls, obj: dict) -> UpdateRiskModelFactorSetRequest:
|
59
|
+
"""Create an instance of UpdateRiskModelFactorSetRequest from a dict"""
|
60
|
+
if obj is None:
|
61
|
+
return None
|
62
|
+
|
63
|
+
if not isinstance(obj, dict):
|
64
|
+
return UpdateRiskModelFactorSetRequest.parse_obj(obj)
|
65
|
+
|
66
|
+
_obj = UpdateRiskModelFactorSetRequest.parse_obj({
|
67
|
+
"display_name": obj.get("displayName")
|
68
|
+
})
|
69
|
+
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.610
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -497,6 +497,11 @@ Class | Method | HTTP request | Description
|
|
497
497
|
*RelationshipDefinitionsApi* | [**update_relationship_definition**](docs/RelationshipDefinitionsApi.md#update_relationship_definition) | **PUT** /api/relationshipdefinitions/{scope}/{code} | [EARLY ACCESS] UpdateRelationshipDefinition: Update Relationship Definition
|
498
498
|
*RelationshipsApi* | [**create_relationship**](docs/RelationshipsApi.md#create_relationship) | **POST** /api/relationshipdefinitions/{scope}/{code}/relationships | CreateRelationship: Create Relationship
|
499
499
|
*RelationshipsApi* | [**delete_relationship**](docs/RelationshipsApi.md#delete_relationship) | **POST** /api/relationshipdefinitions/{scope}/{code}/relationships/$delete | [EARLY ACCESS] DeleteRelationship: Delete Relationship
|
500
|
+
*RiskModelFactorSetsApi* | [**create_risk_model_factor_set**](docs/RiskModelFactorSetsApi.md#create_risk_model_factor_set) | **POST** /api/riskmodels/factorsets | [EXPERIMENTAL] CreateRiskModelFactorSet: Create a Factor Set
|
501
|
+
*RiskModelFactorSetsApi* | [**delete_risk_model_factor_set**](docs/RiskModelFactorSetsApi.md#delete_risk_model_factor_set) | **DELETE** /api/riskmodels/factorsets/{scope}/{code} | [EXPERIMENTAL] DeleteRiskModelFactorSet: Deletes a particular Factor Set
|
502
|
+
*RiskModelFactorSetsApi* | [**get_risk_model_factor_set**](docs/RiskModelFactorSetsApi.md#get_risk_model_factor_set) | **GET** /api/riskmodels/factorsets/{scope}/{code} | [EXPERIMENTAL] GetRiskModelFactorSet: Get a single Factor Set by scope and code.
|
503
|
+
*RiskModelFactorSetsApi* | [**list_risk_model_factor_sets**](docs/RiskModelFactorSetsApi.md#list_risk_model_factor_sets) | **GET** /api/riskmodels/factorsets | [EXPERIMENTAL] ListRiskModelFactorSets: Get a set of Factor Sets
|
504
|
+
*RiskModelFactorSetsApi* | [**update_risk_model_factor_set_name**](docs/RiskModelFactorSetsApi.md#update_risk_model_factor_set_name) | **PUT** /api/riskmodels/factorsets/{scope}/{code} | [EXPERIMENTAL] UpdateRiskModelFactorSetName: Update Factor Set Display Name
|
500
505
|
*SchemasApi* | [**get_entity_schema**](docs/SchemasApi.md#get_entity_schema) | **GET** /api/schemas/entities/{entity} | [EARLY ACCESS] GetEntitySchema: Get schema
|
501
506
|
*SchemasApi* | [**get_property_schema**](docs/SchemasApi.md#get_property_schema) | **GET** /api/schemas/properties | [EARLY ACCESS] GetPropertySchema: Get property schema
|
502
507
|
*SchemasApi* | [**get_value_types**](docs/SchemasApi.md#get_value_types) | **GET** /api/schemas/types | [EARLY ACCESS] GetValueTypes: Get value types
|
@@ -867,6 +872,7 @@ Class | Method | HTTP request | Description
|
|
867
872
|
- [CreateRelationRequest](docs/CreateRelationRequest.md)
|
868
873
|
- [CreateRelationshipDefinitionRequest](docs/CreateRelationshipDefinitionRequest.md)
|
869
874
|
- [CreateRelationshipRequest](docs/CreateRelationshipRequest.md)
|
875
|
+
- [CreateRiskModelFactorSetRequest](docs/CreateRiskModelFactorSetRequest.md)
|
870
876
|
- [CreateSequenceRequest](docs/CreateSequenceRequest.md)
|
871
877
|
- [CreateStagingRuleSetRequest](docs/CreateStagingRuleSetRequest.md)
|
872
878
|
- [CreateTaxRuleSetRequest](docs/CreateTaxRuleSetRequest.md)
|
@@ -1181,6 +1187,7 @@ Class | Method | HTTP request | Description
|
|
1181
1187
|
- [MappedString](docs/MappedString.md)
|
1182
1188
|
- [Mapping](docs/Mapping.md)
|
1183
1189
|
- [MappingRule](docs/MappingRule.md)
|
1190
|
+
- [MarkToMarketConventions](docs/MarkToMarketConventions.md)
|
1184
1191
|
- [MarketContext](docs/MarketContext.md)
|
1185
1192
|
- [MarketContextSuppliers](docs/MarketContextSuppliers.md)
|
1186
1193
|
- [MarketDataKeyRule](docs/MarketDataKeyRule.md)
|
@@ -1316,6 +1323,7 @@ Class | Method | HTTP request | Description
|
|
1316
1323
|
- [PagedResourceListOfReconciliation](docs/PagedResourceListOfReconciliation.md)
|
1317
1324
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
1318
1325
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
1326
|
+
- [PagedResourceListOfRiskModelFactorSet](docs/PagedResourceListOfRiskModelFactorSet.md)
|
1319
1327
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
1320
1328
|
- [PagedResourceListOfStagedModification](docs/PagedResourceListOfStagedModification.md)
|
1321
1329
|
- [PagedResourceListOfStagedModificationsRequestedChangeInterval](docs/PagedResourceListOfStagedModificationsRequestedChangeInterval.md)
|
@@ -1542,6 +1550,7 @@ Class | Method | HTTP request | Description
|
|
1542
1550
|
- [ResultValueType](docs/ResultValueType.md)
|
1543
1551
|
- [ReturnZeroPvOptions](docs/ReturnZeroPvOptions.md)
|
1544
1552
|
- [ReverseStockSplitEvent](docs/ReverseStockSplitEvent.md)
|
1553
|
+
- [RiskModelFactorSet](docs/RiskModelFactorSet.md)
|
1545
1554
|
- [RoundingConfiguration](docs/RoundingConfiguration.md)
|
1546
1555
|
- [RoundingConfigurationComponent](docs/RoundingConfigurationComponent.md)
|
1547
1556
|
- [RoundingConvention](docs/RoundingConvention.md)
|
@@ -1622,6 +1631,7 @@ Class | Method | HTTP request | Description
|
|
1622
1631
|
- [Touch](docs/Touch.md)
|
1623
1632
|
- [TradeTicket](docs/TradeTicket.md)
|
1624
1633
|
- [TradeTicketType](docs/TradeTicketType.md)
|
1634
|
+
- [TradingConventions](docs/TradingConventions.md)
|
1625
1635
|
- [Transaction](docs/Transaction.md)
|
1626
1636
|
- [TransactionConfigurationData](docs/TransactionConfigurationData.md)
|
1627
1637
|
- [TransactionConfigurationDataRequest](docs/TransactionConfigurationDataRequest.md)
|
@@ -1699,6 +1709,7 @@ Class | Method | HTTP request | Description
|
|
1699
1709
|
- [UpdateReconciliationRequest](docs/UpdateReconciliationRequest.md)
|
1700
1710
|
- [UpdateReferenceDataRequest](docs/UpdateReferenceDataRequest.md)
|
1701
1711
|
- [UpdateRelationshipDefinitionRequest](docs/UpdateRelationshipDefinitionRequest.md)
|
1712
|
+
- [UpdateRiskModelFactorSetRequest](docs/UpdateRiskModelFactorSetRequest.md)
|
1702
1713
|
- [UpdateStagingRuleSetRequest](docs/UpdateStagingRuleSetRequest.md)
|
1703
1714
|
- [UpdateTaxRuleSetRequest](docs/UpdateTaxRuleSetRequest.md)
|
1704
1715
|
- [UpdateTimelineRequest](docs/UpdateTimelineRequest.md)
|
@@ -1,5 +1,5 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
2
|
-
lusid/api/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=e4uGwTgUb0J_pDmeDngJQMpZ1Rf3zv8TrQcEOp4zeGM,130676
|
2
|
+
lusid/api/__init__.py,sha256=Piygs8uSSBLR2ZZZIUS2aiyUEKMrNij6nUM6nHeaXkU,5992
|
3
3
|
lusid/api/abor_api.py,sha256=eC0xjrZEL_e7JZdwjpmjVG4GMQWAGJEv4w-2UngvYUk,159896
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=TmssMn5ni0mZV1q7LyPXYhBqqUGJqLYZapo8By8DFuI,63875
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=jlvpmsmvVedaMNr1sRMNj2Kj4qArNtZxXKXD0DvRUwM,31574
|
@@ -53,6 +53,7 @@ lusid/api/relation_definitions_api.py,sha256=tNUjqNmveOWnm0qy_rF7s7t-y1XCctCafNz
|
|
53
53
|
lusid/api/relations_api.py,sha256=V0aN5UNNZLmrE24IGW5PcrailRLBQw-VhQw86OldCRA,22868
|
54
54
|
lusid/api/relationship_definitions_api.py,sha256=MghehhGjJGw7YF8ePttFVAmvZ2TwKiIKgkYUz8EleH0,54535
|
55
55
|
lusid/api/relationships_api.py,sha256=qUVbxrNb9S-gfv6E6nH1mRcmXUAQl7qRRhW7JXY6MHA,19936
|
56
|
+
lusid/api/risk_model_factor_sets_api.py,sha256=5i6hPMwCyFfgEmPZVwe1epXZQjGdijT4mHir6RefJAU,52883
|
56
57
|
lusid/api/schemas_api.py,sha256=WYunCWecYKPWzO4ba4e0g71RKBT_2qhV-19ywp21Q9c,30816
|
57
58
|
lusid/api/scopes_api.py,sha256=EP_7zy3KOVqLmOfa3OuRkoQ41YfOOsEC4YhGt3U6F8s,21297
|
58
59
|
lusid/api/scripted_translation_api.py,sha256=kRi7csBH9eN0SkkuUCOXB5Tfz4EoCWgDFpqJC-fUKek,83752
|
@@ -71,7 +72,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
71
72
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
72
73
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
73
74
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
74
|
-
lusid/configuration.py,sha256=
|
75
|
+
lusid/configuration.py,sha256=uFhzW_dK2nRCrbqnGeoBKMGcbtKkwMWm6jNjQ9Gho5U,17972
|
75
76
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
76
77
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
77
78
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -86,7 +87,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
86
87
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
87
88
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
88
89
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
89
|
-
lusid/models/__init__.py,sha256=
|
90
|
+
lusid/models/__init__.py,sha256=cscMnnSa8ua9nx0QwNufVpCzUxJ0kP0e5HEokoBcH-o,123652
|
90
91
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
91
92
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
92
93
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -169,7 +170,7 @@ lusid/models/block_and_orders_request.py,sha256=qbuJZe2-VptAuY2gXwC2foixx5qp9tIV
|
|
169
170
|
lusid/models/block_request.py,sha256=oSYaZNOUZF4WGV-NhlyEkBu9eKQpnni5ATa_sjGMw5A,5797
|
170
171
|
lusid/models/block_set_request.py,sha256=rf_hhzmOX2F57W1yino-nh4YZ8NGSWiaJxeCLwOL9UI,2620
|
171
172
|
lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x_ckzs-wI,5839
|
172
|
-
lusid/models/bond.py,sha256=
|
173
|
+
lusid/models/bond.py,sha256=Vw2qAVUWMsOlM96Rbe1LyM2kgxAr8gYkKRIZhuWA4tI,13061
|
173
174
|
lusid/models/bond_conversion_entry.py,sha256=DFS635pxCi5hsrfOfOxH6gWlAzUDD9D7u75NPCLZF6Q,3549
|
174
175
|
lusid/models/bond_conversion_schedule.py,sha256=ETxUYhDRyycn_LyLd2P8dT0bHS-Z1XrCYIQdc-vWm8k,7658
|
175
176
|
lusid/models/bond_coupon_event.py,sha256=5o1gsmKTPp7PeO7VHBzSn3miUVVm07YKudmcNRf6EYg,7441
|
@@ -240,7 +241,7 @@ lusid/models/comparison_attribute_value_pair.py,sha256=4AYi8WddelHw2hQw-O8z6snCK
|
|
240
241
|
lusid/models/complete_portfolio.py,sha256=_y1LTAZ7pErx7ioQu20WLK_l3sy55JRoJo8c4yZb3jE,7827
|
241
242
|
lusid/models/complete_relation.py,sha256=T1Wd-knJ0m60ZV82FRinBboqaj0XioTUirK43ozT1q4,3908
|
242
243
|
lusid/models/complete_relationship.py,sha256=oO5LLSMYB6IXIsWZVoooboC0TEo3aaox6zLFdnn1wLk,5168
|
243
|
-
lusid/models/complex_bond.py,sha256=
|
244
|
+
lusid/models/complex_bond.py,sha256=C1R-4D0lvGAQeP35Bf8Jioobi4dBFU4IG-rwh3QM_u4,10468
|
244
245
|
lusid/models/complex_market_data.py,sha256=p0lDUrbTUaRavdvUAqEWYQioKDkEc8gDXZMAT6DJ-Oo,5865
|
245
246
|
lusid/models/complex_market_data_id.py,sha256=Wy6TsnE2ismNdytM1lV6TxPgl92-wTsfohXYt-dN_yk,3964
|
246
247
|
lusid/models/compliance_breached_order_info.py,sha256=mz1wCMcqXM8dW4LvbPavNCGpXlU4MYg8oOwVK51WcR8,2970
|
@@ -319,6 +320,7 @@ lusid/models/create_relation_definition_request.py,sha256=CbhwygtZRbBwi6TPqZKwU0
|
|
319
320
|
lusid/models/create_relation_request.py,sha256=_TPhFjqdlfhXsJlgJpIivNtU1MNcznL1bYrk554hzzA,2202
|
320
321
|
lusid/models/create_relationship_definition_request.py,sha256=8aE2H2pFnFV1cm-XirA-JCSXuAqFxcFoxy_czWo0KKM,6630
|
321
322
|
lusid/models/create_relationship_request.py,sha256=T5TLdyu2VVk9-ipbeDSCn2vTtKCUvlBoz4oBEmljfgo,4060
|
323
|
+
lusid/models/create_risk_model_factor_set_request.py,sha256=SqGGc7xPGpfisCatIQ-u97yisf05zrNRz1ohW2DqLLc,2401
|
322
324
|
lusid/models/create_sequence_request.py,sha256=5nCcIM4RrExb2Gemet66DcQUPKn_qulgV9660cKWa4M,4885
|
323
325
|
lusid/models/create_staging_rule_set_request.py,sha256=VO43zYlxYErwCpqGU6u43E1lg6q9U3tS3J0G3PIiMqM,3113
|
324
326
|
lusid/models/create_tax_rule_set_request.py,sha256=4K9Kysssj-zFpvE6tVu-DXyVJYu0YfEkXXvWUL0l6mo,3740
|
@@ -414,7 +416,7 @@ lusid/models/equity_vol_surface_data.py,sha256=INLwejaCYkya6fjf_rrG33B_z2FFcgFaI
|
|
414
416
|
lusid/models/error_detail.py,sha256=XkNJc5yCGsIri9wDciaONqobIbADaU90i5UrI71WM4c,3279
|
415
417
|
lusid/models/event_date_range.py,sha256=5JHxchKA0cjiv_dgYzDUrnj08Za90WDasnXpP9pM85s,2252
|
416
418
|
lusid/models/ex_dividend_configuration.py,sha256=TFJwnRyy5TBp3jTYUkV9zc2Av5Zc3TVWl8ukfQOU2Kc,3511
|
417
|
-
lusid/models/exchange_traded_option.py,sha256=
|
419
|
+
lusid/models/exchange_traded_option.py,sha256=NV2KX5bC7wVM7UpYvUgP_NkVbYxEiYnX2jM5_3poyUA,6791
|
418
420
|
lusid/models/exchange_traded_option_contract_details.py,sha256=8e-LGUmWY6IU-skbQDHWmG-wlGgxIIC9C5NP4atMhwY,7188
|
419
421
|
lusid/models/execution.py,sha256=xgTGRwDwyKoIs2Pr1bO2gyqCZse_xbUX-FawwhMDgS8,8094
|
420
422
|
lusid/models/execution_request.py,sha256=QIRsZXIKhl_YftXWBWjaT1IZuvIzSi766FWAx7I6Qlc,6720
|
@@ -467,7 +469,7 @@ lusid/models/fund_share_class.py,sha256=OkL-YEL7x1L1nKmejbL7I_9JwF0iFG5O7W-jjpoN
|
|
467
469
|
lusid/models/fund_valuation_point_data.py,sha256=IAo9WtREzoM9BG0R2cuQqaLsVP1ulYQetEF_7CSpQJk,6810
|
468
470
|
lusid/models/funding_leg.py,sha256=66D5Nhyyng-ORJH2IHvuH0oa7YCfkwbtmmkGatg-zSk,7620
|
469
471
|
lusid/models/funding_leg_options.py,sha256=_GxHVcvcsd96OaNcb7iHs43UUfrwVno_x2cNowUSwjw,3515
|
470
|
-
lusid/models/future.py,sha256=
|
472
|
+
lusid/models/future.py,sha256=etsetepoBoc1fhMpXXN8XqyzkRJyQEqaRHW7K5-MmWg,10445
|
471
473
|
lusid/models/future_expiry_event.py,sha256=UTSOnmzdZizqsLbkSpErtDe4f9tCeixzx1P6rAY8C8A,7465
|
472
474
|
lusid/models/future_mark_to_market_event.py,sha256=vbTllnk6Cew-DgBj4vhp6hWqP4VBTQU0upqIugTF-Cw,7535
|
473
475
|
lusid/models/futures_contract_details.py,sha256=xLxo1FvdHw0Ejup6-IllCpR40JRsKjR5wc7cV2DixNQ,8124
|
@@ -565,7 +567,7 @@ lusid/models/industry_classifier.py,sha256=hIckPWfHRyzkb7FaLvMfxOc8HizmWjGsr7PWj
|
|
565
567
|
lusid/models/inflation_fixing_dependency.py,sha256=PKxpTIJcyNIMums66g2qG0p6l6F19UiaIj6m6R6z_Wg,4259
|
566
568
|
lusid/models/inflation_index_conventions.py,sha256=I9uG6oCE8M5IHq63DZXvH1fI_5TzMcOnSThnfQW97Y0,4811
|
567
569
|
lusid/models/inflation_leg.py,sha256=8K7jhhOl5ApeuHKGMSw7cMfrI78J-xF04P36Md9pKjo,10055
|
568
|
-
lusid/models/inflation_linked_bond.py,sha256=
|
570
|
+
lusid/models/inflation_linked_bond.py,sha256=bdJRl_Q7-2KCVB1DHjiSTsmGfoEcr7sdC7HscHDJpc0,14609
|
569
571
|
lusid/models/inflation_swap.py,sha256=yrSDy1K59_r4P7R0Sysl5uwhvMqOprqrwv9wwqq8XMo,8347
|
570
572
|
lusid/models/informational_error_event.py,sha256=kgKUbxIxSJgcOWEiwHp_s7ZP55aK8OSUUAj-gIUe8u0,7008
|
571
573
|
lusid/models/informational_event.py,sha256=Jq-eTnwtgJSrawdMjkG_zsswS51NZo_9cnbBw-_zW7c,8021
|
@@ -633,13 +635,14 @@ lusid/models/lusid_validation_problem_details.py,sha256=rTHEWLHoaXQpQ_7RdjT9Ud5Q
|
|
633
635
|
lusid/models/mapped_string.py,sha256=_xhRB8Ake2UUeIj5hpfABnggrQcTSKW9CtTniJqAb8M,3013
|
634
636
|
lusid/models/mapping.py,sha256=iDaQpBRL0f0Q6sHePxs-vZi3dQPPVfUWLxFFfQ07QCM,4180
|
635
637
|
lusid/models/mapping_rule.py,sha256=dsHfOokEp2HrX029E0JsTBmweNAvS9-RCugDDb04ZGc,4965
|
638
|
+
lusid/models/mark_to_market_conventions.py,sha256=fhwUHRY8Uqh26aYQA2WjYzBZlgy0m6OGAXnBe0UgrJU,2498
|
636
639
|
lusid/models/market_context.py,sha256=1vSjCeaiosx6BdF5XbuVyFYXVZVyX3mrv_kEUCuOIA0,7596
|
637
640
|
lusid/models/market_context_suppliers.py,sha256=njSyqndQ1zLVA2iyB8tU_ATeWtg4NqCuzkUsJGwYH_o,2514
|
638
|
-
lusid/models/market_data_key_rule.py,sha256=
|
641
|
+
lusid/models/market_data_key_rule.py,sha256=h9s5vrvuwYKcw3e_-iBfyoSNcVLUzY1OzyJOvEEa1bQ,10346
|
639
642
|
lusid/models/market_data_options.py,sha256=_BBEeqMCbfcmfGtD0fFr3z90kF3mhpsvNRBir1mImA0,3566
|
640
643
|
lusid/models/market_data_options_type.py,sha256=NlFpXuMw8cVK5czQY0h0GJhjYP_wpPuOIpin_AzXKwM,697
|
641
644
|
lusid/models/market_data_overrides.py,sha256=QuKrYw9r4rZjzeqltcnFffww0F5ZNiRpr8v15C95MLM,3921
|
642
|
-
lusid/models/market_data_specific_rule.py,sha256=
|
645
|
+
lusid/models/market_data_specific_rule.py,sha256=kdc_-JGD0uwIRU9npsBwDWRMYldaOLPInGEF1BfuRKU,9351
|
643
646
|
lusid/models/market_data_type.py,sha256=4NyCfdwiQjP1MZK_SovXB6IVrspTU56JhmxfSdNRweU,1583
|
644
647
|
lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNrXZlwYywAk,801
|
645
648
|
lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
|
@@ -768,6 +771,7 @@ lusid/models/paged_resource_list_of_property_definition_search_result.py,sha256=
|
|
768
771
|
lusid/models/paged_resource_list_of_reconciliation.py,sha256=iODKH_7NDVwlcIDirVFBXad3wDDR6bslU7AAVlnOwJ8,4142
|
769
772
|
lusid/models/paged_resource_list_of_reference_list_response.py,sha256=ffpB6EG7wL5aaxr7CIlP9YrGeyLorud3y9dk1gGCgMU,4228
|
770
773
|
lusid/models/paged_resource_list_of_relationship_definition.py,sha256=qaxiS4NZ4k3AvMB6KTLDiCHQybNs6MZsfX-vGyxQatc,4239
|
774
|
+
lusid/models/paged_resource_list_of_risk_model_factor_set.py,sha256=1dl7buY_OKehxX0s76RyZD45Cx_mY7bjQ8qpo3DwAI4,4193
|
771
775
|
lusid/models/paged_resource_list_of_sequence_definition.py,sha256=Rygp8Id0FON4madTc6FIgmLAX3_d5cOLCLzHBGuenU4,4191
|
772
776
|
lusid/models/paged_resource_list_of_staged_modification.py,sha256=U8RG2vZoBh94C0NUQJ_2B3y1rPBe2RKRNhilniEAatE,4191
|
773
777
|
lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py,sha256=JMmlX9AD1l1I3cld1RrOO1ThNlOki-vPdxwlcfDvFFw,4482
|
@@ -994,6 +998,7 @@ lusid/models/result_value_string.py,sha256=FCe2SsB9fZAvvjqRNuxQFTsa5sth7-3TlBdWu
|
|
994
998
|
lusid/models/result_value_type.py,sha256=CrOf0KEyx1VJIkAAyXjoGm8rcpSx26Gl_b5MgzZGqHU,1216
|
995
999
|
lusid/models/return_zero_pv_options.py,sha256=CedbP5yMZllWif8Xq5t7UdIA_jHrEq9RvNYSw_x6vE8,2160
|
996
1000
|
lusid/models/reverse_stock_split_event.py,sha256=jsZbzgQHUbr_aDAGWFiw_0PV_UjFhQ4bNV8Zk_YqZZs,9449
|
1001
|
+
lusid/models/risk_model_factor_set.py,sha256=absQBK1G8z8Qmd6x94axhVeThmw0YUG89Jb78tjbM9o,3774
|
997
1002
|
lusid/models/rounding_configuration.py,sha256=jpeBHvca82qlK64vSOkZD7azNRI3Z599lhpx66BKKcM,2297
|
998
1003
|
lusid/models/rounding_configuration_component.py,sha256=bLKRyNkrImXApHRSxODZ0Kp6-mX-JK9ycdOIFdr45g4,2111
|
999
1004
|
lusid/models/rounding_convention.py,sha256=wHP76MnZGN_2m25x7fRsNA6mkcCLmkHx-YSGSRRnrzk,3968
|
@@ -1074,6 +1079,7 @@ lusid/models/total_return_swap.py,sha256=p_lfDxbEF1EgLeeE0vdBC5g1Dq2rtWbcXdXoWkB
|
|
1074
1079
|
lusid/models/touch.py,sha256=OECUpEFcCT1kPT5SJIsoNHtR8k2AhEAbDd6P86NcF4s,2726
|
1075
1080
|
lusid/models/trade_ticket.py,sha256=ONpDAdaWs3yfUqMxI7Mq0cYpX0aJkN8XH_9n9rIs5IA,2320
|
1076
1081
|
lusid/models/trade_ticket_type.py,sha256=j7f2bfiA_cxaFtjZpT3Natl4BoaGAaEXF6E0ltEzTWE,706
|
1082
|
+
lusid/models/trading_conventions.py,sha256=j6vTB1Rdb204xUJVelFPhrpJfOVgAKswbWcRq8WYoxI,2979
|
1077
1083
|
lusid/models/transaction.py,sha256=ItU_ujzGcj7RR0br8zxrNCMXk2zO5bh5ZcriGoRdhB4,13742
|
1078
1084
|
lusid/models/transaction_configuration_data.py,sha256=BSHXnMn6TWaubn2zTxPvbRUOsRtGYb0N4sDNUcf1SaY,4318
|
1079
1085
|
lusid/models/transaction_configuration_data_request.py,sha256=mypVKRfltmkG5NEUGqDDyBYdIir3S1nkYzGL8BwHWgo,4398
|
@@ -1151,6 +1157,7 @@ lusid/models/update_property_definition_request.py,sha256=_837XUHsucQqyVMhHUGQR_
|
|
1151
1157
|
lusid/models/update_reconciliation_request.py,sha256=lhn7qGzQYI7-kQ-skfYqnziwxxt19jfdYLQhnAjZTac,5901
|
1152
1158
|
lusid/models/update_reference_data_request.py,sha256=m7cwK1vIV-4DhsG_L0dk9-2t32e8htu0Kb-QOeRW7aA,3226
|
1153
1159
|
lusid/models/update_relationship_definition_request.py,sha256=dBeaRhUPQ2Qh3BT64DqR7y2PmoS0dweL4svocnHNXGg,3597
|
1160
|
+
lusid/models/update_risk_model_factor_set_request.py,sha256=pHtBmVs7X_J5vsrLDHS26V6VpqW8MHQ8YssG01_T7WY,2062
|
1154
1161
|
lusid/models/update_staging_rule_set_request.py,sha256=omznQnoyJ4Ymi2KdjwXYOtE8wvczL-66HDQWF18dclI,3113
|
1155
1162
|
lusid/models/update_tax_rule_set_request.py,sha256=yJ3owIkEEKstK7-bd6bt3rXAvsgNe0_08DFOykOuK-A,3243
|
1156
1163
|
lusid/models/update_timeline_request.py,sha256=ouyqLuJVP-r0sFIFHqN-Cp6CnpUMpiXqIj9tdiM3dc8,3455
|
@@ -1242,6 +1249,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1242
1249
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1243
1250
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1244
1251
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1245
|
-
lusid_sdk-2.1.
|
1246
|
-
lusid_sdk-2.1.
|
1247
|
-
lusid_sdk-2.1.
|
1252
|
+
lusid_sdk-2.1.610.dist-info/METADATA,sha256=IX3tf6EcNSk-dvbvIcrd5K0nAFNOijA9smme44nnAYU,213057
|
1253
|
+
lusid_sdk-2.1.610.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1254
|
+
lusid_sdk-2.1.610.dist-info/RECORD,,
|
File without changes
|