lusid-sdk 2.1.754__py3-none-any.whl → 2.1.756__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 +2 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/model_property.py +23 -2
- lusid/models/perpetual_property.py +23 -2
- lusid/models/property_reference_data_value.py +89 -0
- lusid/models/valuation_point_data_response.py +3 -30
- {lusid_sdk-2.1.754.dist-info → lusid_sdk-2.1.756.dist-info}/METADATA +2 -1
- {lusid_sdk-2.1.754.dist-info → lusid_sdk-2.1.756.dist-info}/RECORD +10 -9
- {lusid_sdk-2.1.754.dist-info → lusid_sdk-2.1.756.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -898,6 +898,7 @@ from lusid.models.property_key_list_compliance_parameter import PropertyKeyListC
|
|
898
898
|
from lusid.models.property_life_time import PropertyLifeTime
|
899
899
|
from lusid.models.property_list import PropertyList
|
900
900
|
from lusid.models.property_list_compliance_parameter import PropertyListComplianceParameter
|
901
|
+
from lusid.models.property_reference_data_value import PropertyReferenceDataValue
|
901
902
|
from lusid.models.property_schema import PropertySchema
|
902
903
|
from lusid.models.property_type import PropertyType
|
903
904
|
from lusid.models.property_value import PropertyValue
|
@@ -2186,6 +2187,7 @@ __all__ = [
|
|
2186
2187
|
"PropertyLifeTime",
|
2187
2188
|
"PropertyList",
|
2188
2189
|
"PropertyListComplianceParameter",
|
2190
|
+
"PropertyReferenceDataValue",
|
2189
2191
|
"PropertySchema",
|
2190
2192
|
"PropertyType",
|
2191
2193
|
"PropertyValue",
|
lusid/configuration.py
CHANGED
@@ -445,7 +445,7 @@ class Configuration:
|
|
445
445
|
return "Python SDK Debug Report:\n"\
|
446
446
|
"OS: {env}\n"\
|
447
447
|
"Python Version: {pyversion}\n"\
|
448
|
-
"Version of the API: 0.11.
|
448
|
+
"Version of the API: 0.11.7616\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
lusid/models/__init__.py
CHANGED
@@ -813,6 +813,7 @@ from lusid.models.property_key_list_compliance_parameter import PropertyKeyListC
|
|
813
813
|
from lusid.models.property_life_time import PropertyLifeTime
|
814
814
|
from lusid.models.property_list import PropertyList
|
815
815
|
from lusid.models.property_list_compliance_parameter import PropertyListComplianceParameter
|
816
|
+
from lusid.models.property_reference_data_value import PropertyReferenceDataValue
|
816
817
|
from lusid.models.property_schema import PropertySchema
|
817
818
|
from lusid.models.property_type import PropertyType
|
818
819
|
from lusid.models.property_value import PropertyValue
|
@@ -2017,6 +2018,7 @@ __all__ = [
|
|
2017
2018
|
"PropertyLifeTime",
|
2018
2019
|
"PropertyList",
|
2019
2020
|
"PropertyListComplianceParameter",
|
2021
|
+
"PropertyReferenceDataValue",
|
2020
2022
|
"PropertySchema",
|
2021
2023
|
"PropertyType",
|
2022
2024
|
"PropertyValue",
|
lusid/models/model_property.py
CHANGED
@@ -20,6 +20,7 @@ import json
|
|
20
20
|
from datetime import datetime
|
21
21
|
from typing import Any, Dict, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr
|
23
|
+
from lusid.models.property_reference_data_value import PropertyReferenceDataValue
|
23
24
|
from lusid.models.property_value import PropertyValue
|
24
25
|
|
25
26
|
class ModelProperty(BaseModel):
|
@@ -30,7 +31,8 @@ class ModelProperty(BaseModel):
|
|
30
31
|
value: Optional[PropertyValue] = None
|
31
32
|
effective_from: Optional[datetime] = Field(None, alias="effectiveFrom", description="The effective datetime from which the property is valid.")
|
32
33
|
effective_until: Optional[datetime] = Field(None, alias="effectiveUntil", description="The effective datetime until which the property is valid. If not supplied this will be valid indefinitely, or until the next 'effectiveFrom' datetime of the property.")
|
33
|
-
|
34
|
+
reference_data: Optional[Dict[str, PropertyReferenceDataValue]] = Field(None, alias="referenceData", description="The ReferenceData linked to the value of the property. The ReferenceData is taken from the DataType on the PropertyDefinition that defines the property.")
|
35
|
+
__properties = ["key", "value", "effectiveFrom", "effectiveUntil", "referenceData"]
|
34
36
|
|
35
37
|
class Config:
|
36
38
|
"""Pydantic configuration"""
|
@@ -62,11 +64,19 @@ class ModelProperty(BaseModel):
|
|
62
64
|
"""Returns the dictionary representation of the model using alias"""
|
63
65
|
_dict = self.dict(by_alias=True,
|
64
66
|
exclude={
|
67
|
+
"reference_data",
|
65
68
|
},
|
66
69
|
exclude_none=True)
|
67
70
|
# override the default output from pydantic by calling `to_dict()` of value
|
68
71
|
if self.value:
|
69
72
|
_dict['value'] = self.value.to_dict()
|
73
|
+
# override the default output from pydantic by calling `to_dict()` of each value in reference_data (dict)
|
74
|
+
_field_dict = {}
|
75
|
+
if self.reference_data:
|
76
|
+
for _key in self.reference_data:
|
77
|
+
if self.reference_data[_key]:
|
78
|
+
_field_dict[_key] = self.reference_data[_key].to_dict()
|
79
|
+
_dict['referenceData'] = _field_dict
|
70
80
|
# set to None if effective_from (nullable) is None
|
71
81
|
# and __fields_set__ contains the field
|
72
82
|
if self.effective_from is None and "effective_from" in self.__fields_set__:
|
@@ -77,6 +87,11 @@ class ModelProperty(BaseModel):
|
|
77
87
|
if self.effective_until is None and "effective_until" in self.__fields_set__:
|
78
88
|
_dict['effectiveUntil'] = None
|
79
89
|
|
90
|
+
# set to None if reference_data (nullable) is None
|
91
|
+
# and __fields_set__ contains the field
|
92
|
+
if self.reference_data is None and "reference_data" in self.__fields_set__:
|
93
|
+
_dict['referenceData'] = None
|
94
|
+
|
80
95
|
return _dict
|
81
96
|
|
82
97
|
@classmethod
|
@@ -92,6 +107,12 @@ class ModelProperty(BaseModel):
|
|
92
107
|
"key": obj.get("key"),
|
93
108
|
"value": PropertyValue.from_dict(obj.get("value")) if obj.get("value") is not None else None,
|
94
109
|
"effective_from": obj.get("effectiveFrom"),
|
95
|
-
"effective_until": obj.get("effectiveUntil")
|
110
|
+
"effective_until": obj.get("effectiveUntil"),
|
111
|
+
"reference_data": dict(
|
112
|
+
(_k, PropertyReferenceDataValue.from_dict(_v))
|
113
|
+
for _k, _v in obj.get("referenceData").items()
|
114
|
+
)
|
115
|
+
if obj.get("referenceData") is not None
|
116
|
+
else None
|
96
117
|
})
|
97
118
|
return _obj
|
@@ -20,6 +20,7 @@ import json
|
|
20
20
|
|
21
21
|
from typing import Any, Dict, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr
|
23
|
+
from lusid.models.property_reference_data_value import PropertyReferenceDataValue
|
23
24
|
from lusid.models.property_value import PropertyValue
|
24
25
|
|
25
26
|
class PerpetualProperty(BaseModel):
|
@@ -28,7 +29,8 @@ class PerpetualProperty(BaseModel):
|
|
28
29
|
"""
|
29
30
|
key: StrictStr = Field(...,alias="key", description="The key of the property. This takes the format {domain}/{scope}/{code} e.g. 'Instrument/system/Name' or 'Transaction/strategy/quantsignal'.")
|
30
31
|
value: Optional[PropertyValue] = None
|
31
|
-
|
32
|
+
reference_data: Optional[Dict[str, PropertyReferenceDataValue]] = Field(None, alias="referenceData", description="The ReferenceData linked to the value of the property. The ReferenceData is taken from the DataType on the PropertyDefinition that defines the property.")
|
33
|
+
__properties = ["key", "value", "referenceData"]
|
32
34
|
|
33
35
|
class Config:
|
34
36
|
"""Pydantic configuration"""
|
@@ -60,11 +62,24 @@ class PerpetualProperty(BaseModel):
|
|
60
62
|
"""Returns the dictionary representation of the model using alias"""
|
61
63
|
_dict = self.dict(by_alias=True,
|
62
64
|
exclude={
|
65
|
+
"reference_data",
|
63
66
|
},
|
64
67
|
exclude_none=True)
|
65
68
|
# override the default output from pydantic by calling `to_dict()` of value
|
66
69
|
if self.value:
|
67
70
|
_dict['value'] = self.value.to_dict()
|
71
|
+
# override the default output from pydantic by calling `to_dict()` of each value in reference_data (dict)
|
72
|
+
_field_dict = {}
|
73
|
+
if self.reference_data:
|
74
|
+
for _key in self.reference_data:
|
75
|
+
if self.reference_data[_key]:
|
76
|
+
_field_dict[_key] = self.reference_data[_key].to_dict()
|
77
|
+
_dict['referenceData'] = _field_dict
|
78
|
+
# set to None if reference_data (nullable) is None
|
79
|
+
# and __fields_set__ contains the field
|
80
|
+
if self.reference_data is None and "reference_data" in self.__fields_set__:
|
81
|
+
_dict['referenceData'] = None
|
82
|
+
|
68
83
|
return _dict
|
69
84
|
|
70
85
|
@classmethod
|
@@ -78,6 +93,12 @@ class PerpetualProperty(BaseModel):
|
|
78
93
|
|
79
94
|
_obj = PerpetualProperty.parse_obj({
|
80
95
|
"key": obj.get("key"),
|
81
|
-
"value": PropertyValue.from_dict(obj.get("value")) if obj.get("value") is not None else None
|
96
|
+
"value": PropertyValue.from_dict(obj.get("value")) if obj.get("value") is not None else None,
|
97
|
+
"reference_data": dict(
|
98
|
+
(_k, PropertyReferenceDataValue.from_dict(_v))
|
99
|
+
for _k, _v in obj.get("referenceData").items()
|
100
|
+
)
|
101
|
+
if obj.get("referenceData") is not None
|
102
|
+
else None
|
82
103
|
})
|
83
104
|
return _obj
|
@@ -0,0 +1,89 @@
|
|
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 StrictStr, Field, BaseModel, Field, confloat, conint, constr
|
23
|
+
|
24
|
+
class PropertyReferenceDataValue(BaseModel):
|
25
|
+
"""
|
26
|
+
The ReferenceData relevant to the property. The ReferenceData is taken from the DataType on the PropertyDefinition that defines the Property. Only ReferenceData where the ReferenceData value matches the Property value is included. # noqa: E501
|
27
|
+
"""
|
28
|
+
string_value: Optional[StrictStr] = Field(None,alias="stringValue")
|
29
|
+
numeric_value: Optional[Union[confloat(strict=True), conint(strict=True)]] = Field(None, alias="numericValue")
|
30
|
+
__properties = ["stringValue", "numericValue"]
|
31
|
+
|
32
|
+
class Config:
|
33
|
+
"""Pydantic configuration"""
|
34
|
+
allow_population_by_field_name = True
|
35
|
+
validate_assignment = True
|
36
|
+
|
37
|
+
def __str__(self):
|
38
|
+
"""For `print` and `pprint`"""
|
39
|
+
return pprint.pformat(self.dict(by_alias=False))
|
40
|
+
|
41
|
+
def __repr__(self):
|
42
|
+
"""For `print` and `pprint`"""
|
43
|
+
return self.to_str()
|
44
|
+
|
45
|
+
def to_str(self) -> str:
|
46
|
+
"""Returns the string representation of the model using alias"""
|
47
|
+
return pprint.pformat(self.dict(by_alias=True))
|
48
|
+
|
49
|
+
def to_json(self) -> str:
|
50
|
+
"""Returns the JSON representation of the model using alias"""
|
51
|
+
return json.dumps(self.to_dict())
|
52
|
+
|
53
|
+
@classmethod
|
54
|
+
def from_json(cls, json_str: str) -> PropertyReferenceDataValue:
|
55
|
+
"""Create an instance of PropertyReferenceDataValue from a JSON string"""
|
56
|
+
return cls.from_dict(json.loads(json_str))
|
57
|
+
|
58
|
+
def to_dict(self):
|
59
|
+
"""Returns the dictionary representation of the model using alias"""
|
60
|
+
_dict = self.dict(by_alias=True,
|
61
|
+
exclude={
|
62
|
+
},
|
63
|
+
exclude_none=True)
|
64
|
+
# set to None if string_value (nullable) is None
|
65
|
+
# and __fields_set__ contains the field
|
66
|
+
if self.string_value is None and "string_value" in self.__fields_set__:
|
67
|
+
_dict['stringValue'] = None
|
68
|
+
|
69
|
+
# set to None if numeric_value (nullable) is None
|
70
|
+
# and __fields_set__ contains the field
|
71
|
+
if self.numeric_value is None and "numeric_value" in self.__fields_set__:
|
72
|
+
_dict['numericValue'] = None
|
73
|
+
|
74
|
+
return _dict
|
75
|
+
|
76
|
+
@classmethod
|
77
|
+
def from_dict(cls, obj: dict) -> PropertyReferenceDataValue:
|
78
|
+
"""Create an instance of PropertyReferenceDataValue from a dict"""
|
79
|
+
if obj is None:
|
80
|
+
return None
|
81
|
+
|
82
|
+
if not isinstance(obj, dict):
|
83
|
+
return PropertyReferenceDataValue.parse_obj(obj)
|
84
|
+
|
85
|
+
_obj = PropertyReferenceDataValue.parse_obj({
|
86
|
+
"string_value": obj.get("stringValue"),
|
87
|
+
"numeric_value": obj.get("numericValue")
|
88
|
+
})
|
89
|
+
return _obj
|
@@ -18,9 +18,8 @@ import re # noqa: F401
|
|
18
18
|
import json
|
19
19
|
|
20
20
|
|
21
|
-
from typing import Any, Dict, List, Optional
|
22
|
-
from pydantic.v1 import StrictStr, Field, BaseModel, Field,
|
23
|
-
from lusid.models.fee_accrual import FeeAccrual
|
21
|
+
from typing import Any, Dict, List, Optional
|
22
|
+
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist, constr
|
24
23
|
from lusid.models.fund_details import FundDetails
|
25
24
|
from lusid.models.fund_valuation_point_data import FundValuationPointData
|
26
25
|
from lusid.models.link import Link
|
@@ -33,20 +32,13 @@ class ValuationPointDataResponse(BaseModel):
|
|
33
32
|
href: Optional[StrictStr] = Field(None,alias="href", description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
34
33
|
type: StrictStr = Field(...,alias="type", description="The Type of the associated Diary Entry ('PeriodBoundary','ValuationPoint','Other' or 'Adhoc' when a diary entry wasn't used).")
|
35
34
|
status: StrictStr = Field(...,alias="status", description="The status of a Diary Entry of Type 'ValuationPoint'. Defaults to 'Estimate' when upserting a diary entry, moves to 'Candidate' or 'Final' when a ValuationPoint is accepted, and 'Final' when it is finalised. The status of a Diary Entry becomes 'Unofficial' when a diary entry wasn't used.")
|
36
|
-
backout: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="DEPRECATED. Bucket of detail for the Valuation Point, where data points have been 'backed out'.")
|
37
|
-
dealing: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., description="DEPRECATED. Bucket of detail for any 'Dealing' that has occured inside the queried period.")
|
38
|
-
pn_l: Dict[str, Union[StrictFloat, StrictInt]] = Field(..., alias="pnL", description="DEPRECATED. Bucket of detail for 'PnL' that has occured inside the queried period.")
|
39
|
-
gav: Union[StrictFloat, StrictInt] = Field(..., description="DEPRECATED. The Gross Asset Value of the Fund at the Period end. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
|
40
|
-
fees: Dict[str, FeeAccrual] = Field(..., description="DEPRECATED. Bucket of detail for any 'Fees' that have been charged in the selected period.")
|
41
|
-
nav: Union[StrictFloat, StrictInt] = Field(..., description="DEPRECATED. The Net Asset Value of the Fund at the Period end. This represents the GAV with any fees applied in the period.")
|
42
|
-
previous_nav: Union[StrictFloat, StrictInt] = Field(..., alias="previousNav", description="DEPRECATED. The Net Asset Value of the Fund at the End of the last Period.")
|
43
35
|
fund_details: FundDetails = Field(..., alias="fundDetails")
|
44
36
|
fund_valuation_point_data: FundValuationPointData = Field(..., alias="fundValuationPointData")
|
45
37
|
share_class_data: conlist(ShareClassData) = Field(..., alias="shareClassData", description="The data for all share classes in fund. Share classes are identified by their short codes.")
|
46
38
|
valuation_point_code: Optional[StrictStr] = Field(None,alias="valuationPointCode", description="The code of the valuation point.")
|
47
39
|
previous_valuation_point_code: Optional[StrictStr] = Field(None,alias="previousValuationPointCode", description="The code of the previous valuation point.")
|
48
40
|
links: Optional[conlist(Link)] = None
|
49
|
-
__properties = ["href", "type", "status", "
|
41
|
+
__properties = ["href", "type", "status", "fundDetails", "fundValuationPointData", "shareClassData", "valuationPointCode", "previousValuationPointCode", "links"]
|
50
42
|
|
51
43
|
class Config:
|
52
44
|
"""Pydantic configuration"""
|
@@ -80,13 +72,6 @@ class ValuationPointDataResponse(BaseModel):
|
|
80
72
|
exclude={
|
81
73
|
},
|
82
74
|
exclude_none=True)
|
83
|
-
# override the default output from pydantic by calling `to_dict()` of each value in fees (dict)
|
84
|
-
_field_dict = {}
|
85
|
-
if self.fees:
|
86
|
-
for _key in self.fees:
|
87
|
-
if self.fees[_key]:
|
88
|
-
_field_dict[_key] = self.fees[_key].to_dict()
|
89
|
-
_dict['fees'] = _field_dict
|
90
75
|
# override the default output from pydantic by calling `to_dict()` of fund_details
|
91
76
|
if self.fund_details:
|
92
77
|
_dict['fundDetails'] = self.fund_details.to_dict()
|
@@ -142,18 +127,6 @@ class ValuationPointDataResponse(BaseModel):
|
|
142
127
|
"href": obj.get("href"),
|
143
128
|
"type": obj.get("type"),
|
144
129
|
"status": obj.get("status"),
|
145
|
-
"backout": obj.get("backout"),
|
146
|
-
"dealing": obj.get("dealing"),
|
147
|
-
"pn_l": obj.get("pnL"),
|
148
|
-
"gav": obj.get("gav"),
|
149
|
-
"fees": dict(
|
150
|
-
(_k, FeeAccrual.from_dict(_v))
|
151
|
-
for _k, _v in obj.get("fees").items()
|
152
|
-
)
|
153
|
-
if obj.get("fees") is not None
|
154
|
-
else None,
|
155
|
-
"nav": obj.get("nav"),
|
156
|
-
"previous_nav": obj.get("previousNav"),
|
157
130
|
"fund_details": FundDetails.from_dict(obj.get("fundDetails")) if obj.get("fundDetails") is not None else None,
|
158
131
|
"fund_valuation_point_data": FundValuationPointData.from_dict(obj.get("fundValuationPointData")) if obj.get("fundValuationPointData") is not None else None,
|
159
132
|
"share_class_data": [ShareClassData.from_dict(_item) for _item in obj.get("shareClassData")] if obj.get("shareClassData") is not None else None,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.756
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -1460,6 +1460,7 @@ Class | Method | HTTP request | Description
|
|
1460
1460
|
- [PropertyLifeTime](docs/PropertyLifeTime.md)
|
1461
1461
|
- [PropertyList](docs/PropertyList.md)
|
1462
1462
|
- [PropertyListComplianceParameter](docs/PropertyListComplianceParameter.md)
|
1463
|
+
- [PropertyReferenceDataValue](docs/PropertyReferenceDataValue.md)
|
1463
1464
|
- [PropertySchema](docs/PropertySchema.md)
|
1464
1465
|
- [PropertyType](docs/PropertyType.md)
|
1465
1466
|
- [PropertyValue](docs/PropertyValue.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=UcHCPIAJTF16EFr3cRc80w_NeADHqQGg8xdemzWlYqE,136046
|
2
2
|
lusid/api/__init__.py,sha256=b9BsX0qfl4jZSlEid6ihux1dyYgNwjtKQZk23veBuc0,6204
|
3
3
|
lusid/api/abor_api.py,sha256=oAvtx9mQGWa5ZQRKjhzkJJH110GiIqiPIefIYNoiT14,166017
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=3Y3KwOOJqPsCsl7rfP-ScCYrKvVsQSP5adbsAsJ9G1s,74238
|
@@ -74,7 +74,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
74
74
|
lusid/api/workspace_api.py,sha256=RplAKcky_SrK0V3nhh2K0UmWGeXggr6RQ4-g9Hqy7hw,190986
|
75
75
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
76
76
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
77
|
-
lusid/configuration.py,sha256=
|
77
|
+
lusid/configuration.py,sha256=Kw6x_R13DGHVDvG4x6r2pKfJkSVuxCWvTOYwssn-jqo,17972
|
78
78
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
79
79
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
80
80
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -89,7 +89,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
89
89
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
90
90
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
91
91
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
92
|
-
lusid/models/__init__.py,sha256=
|
92
|
+
lusid/models/__init__.py,sha256=Wu62jAY2vTsG-PfstqTaUUZLjtmKL2PzwHDnOuh1yWY,128810
|
93
93
|
lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
|
94
94
|
lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
|
95
95
|
lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
|
@@ -693,7 +693,7 @@ lusid/models/merger_event.py,sha256=txwzv8NwuV5tf7OUhj0H4b-ecZtpv3o-MCkddvYfmUM,
|
|
693
693
|
lusid/models/metric_value.py,sha256=VOO9uPCoJ0NeBxUnEuzvi5XfjootT0LfmKmxRTDft20,2441
|
694
694
|
lusid/models/model_options.py,sha256=GSccFrSCRxiLuqrt6N50U_hl41mndwm7aSq27QT9NLw,7456
|
695
695
|
lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
|
696
|
-
lusid/models/model_property.py,sha256=
|
696
|
+
lusid/models/model_property.py,sha256=P0YK9YnVlfvxNbh0W9SKiBqQDiCb-3qA56lvI8iDMM4,4921
|
697
697
|
lusid/models/model_schema.py,sha256=o_3-Few9w88CC3O5HsI1nKcPqFj9eiMPZU--MwcsuwQ,4139
|
698
698
|
lusid/models/model_selection.py,sha256=ulMEFDcAP8y-F2n--eNkxSoe0hX9GT1D9yOcIJk6dIQ,10493
|
699
699
|
lusid/models/move_orders_to_different_blocks_request.py,sha256=c4VNDkSHnrbANPvNAB4RYQPMu12CDE_0zItxOo1JtRA,2772
|
@@ -829,7 +829,7 @@ lusid/models/performance_returns_metric.py,sha256=sTjFCRkWjRudgvQgkGUsBBw8eoWxSR
|
|
829
829
|
lusid/models/period_diary_entries_reopened_response.py,sha256=zWSSCHu_SimrDpeNFTSJWCuUf7SC5pLIl-Bwrf-ejs0,4774
|
830
830
|
lusid/models/period_type.py,sha256=oYKJl_sl6LvyK9jRvywZebEo22_-8x5qmSp6T5X9Iow,711
|
831
831
|
lusid/models/perpetual_entity_state.py,sha256=laZ8FCkiqDXCY8ZVpXsfNz97cJDzFO8uVW2B5NdD_zU,713
|
832
|
-
lusid/models/perpetual_property.py,sha256=
|
832
|
+
lusid/models/perpetual_property.py,sha256=Es8N-jOLxeyBvA0GhT_yWdqe2MilOmyjJSosoGBg8do,3895
|
833
833
|
lusid/models/person.py,sha256=Yr_0QEWfFbVUNt4S8OJRet3Qtrz2l9az-xC9rqdHzhk,7627
|
834
834
|
lusid/models/place_blocks_request.py,sha256=HOUdJFfvwVo1-2tiUT3BIox5yKjAyOVVDOaDUAGnQlA,2618
|
835
835
|
lusid/models/placement.py,sha256=kS0B0EXVcZiM8OTV-7xvYv4jLYgsw9hNhcgTnTv8OjA,9291
|
@@ -889,6 +889,7 @@ lusid/models/property_key_list_compliance_parameter.py,sha256=d3s8MEXbSAjcbM0-cx
|
|
889
889
|
lusid/models/property_life_time.py,sha256=J3yUafzD0tis5kSMKy77p87ngARdmAmw3iHhjxB5vqc,681
|
890
890
|
lusid/models/property_list.py,sha256=TmlAgUjqeK3RXZnPJ2DzsL3MW_IGUGyITD_IjhgdOU0,6974
|
891
891
|
lusid/models/property_list_compliance_parameter.py,sha256=zju2dFK-MUQX-7wNwf4iQ3s8HqVWeySnCFiC3rYTH48,8884
|
892
|
+
lusid/models/property_reference_data_value.py,sha256=tH0LcER4HbKk7VjS36b1Yj2yV2aPcesdwNA4quT2eKc,3089
|
892
893
|
lusid/models/property_schema.py,sha256=jRn0eSkrqVe04crCepPWBTmAz-SgWwpRj_h0nzWt6P0,3846
|
893
894
|
lusid/models/property_type.py,sha256=eo21Rzc7NvOksRW_tld66GXrIjg0UbZJC1XmVQSn6OA,729
|
894
895
|
lusid/models/property_value.py,sha256=1og4VJuxOXpgx3mhHPsFNWbSRKp2gNK2D8rqt4UVb-c,3355
|
@@ -1252,7 +1253,7 @@ lusid/models/upsert_valuation_point_request.py,sha256=BoVcE7dS6vd4q7ZWOvh26ryy8Y
|
|
1252
1253
|
lusid/models/user.py,sha256=w0Ci15MQI00_eoPaUiWnHnPDzDThuAAR3g4UvlsHt9I,2273
|
1253
1254
|
lusid/models/valuation_point_data_query_parameters.py,sha256=t6ShsqnBqhOK6L8vGmeL-9lbPMQ_877Fv6aBNl65cVQ,2496
|
1254
1255
|
lusid/models/valuation_point_data_request.py,sha256=3haNAxaWwqsd_AhNuf5rxuPC4ehEd9LZiH2TgOG59NI,2274
|
1255
|
-
lusid/models/valuation_point_data_response.py,sha256
|
1256
|
+
lusid/models/valuation_point_data_response.py,sha256=b1YVkLsk4Jr1HgjYMwlqvovYgu6supAdRolHKwWwUo4,6759
|
1256
1257
|
lusid/models/valuation_point_overview.py,sha256=91p71fdjFacSMBc3hpd0f9oWtvjuMfmG7Z3IsPhLPHg,5952
|
1257
1258
|
lusid/models/valuation_point_resource_list_of_accounted_transaction.py,sha256=OGdk06THfLMFFXAe0Vq79KeI61dLJXz5UEEUF7rByR4,5541
|
1258
1259
|
lusid/models/valuation_point_resource_list_of_fund_journal_entry_line.py,sha256=wtoGMyc07w7IUadLy_bGIUvexvoY_M50_XDai1Oj4Mg,5543
|
@@ -1293,6 +1294,6 @@ lusid/models/workspace_update_request.py,sha256=ihKnBY685hfgs9uoyAXQNt1w7iOF-6Jc
|
|
1293
1294
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1294
1295
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1295
1296
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1296
|
-
lusid_sdk-2.1.
|
1297
|
-
lusid_sdk-2.1.
|
1298
|
-
lusid_sdk-2.1.
|
1297
|
+
lusid_sdk-2.1.756.dist-info/METADATA,sha256=nGt6wBfRZVGbT5gR2lvU7ATAdx4hM2RtA4-IXyT9ox4,220014
|
1298
|
+
lusid_sdk-2.1.756.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1299
|
+
lusid_sdk-2.1.756.dist-info/RECORD,,
|
File without changes
|