lusid-sdk 2.1.4__py3-none-any.whl → 2.1.7__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.

@@ -0,0 +1,99 @@
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
22
+ from pydantic.v1 import Field, StrictStr, conlist, validator
23
+ from lusid.models.model_property import ModelProperty
24
+ from lusid.models.reference_list import ReferenceList
25
+
26
+ class PropertyList(ReferenceList):
27
+ """
28
+ PropertyList
29
+ """
30
+ values: conlist(ModelProperty, max_items=100, min_items=0) = Field(...)
31
+ reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList")
32
+ additional_properties: Dict[str, Any] = {}
33
+ __properties = ["referenceListType", "values"]
34
+
35
+ @validator('reference_list_type')
36
+ def reference_list_type_validate_enum(cls, value):
37
+ """Validates the enum"""
38
+ if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList'):
39
+ raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList')")
40
+ return value
41
+
42
+ class Config:
43
+ """Pydantic configuration"""
44
+ allow_population_by_field_name = True
45
+ validate_assignment = True
46
+
47
+ def to_str(self) -> str:
48
+ """Returns the string representation of the model using alias"""
49
+ return pprint.pformat(self.dict(by_alias=True))
50
+
51
+ def to_json(self) -> str:
52
+ """Returns the JSON representation of the model using alias"""
53
+ return json.dumps(self.to_dict())
54
+
55
+ @classmethod
56
+ def from_json(cls, json_str: str) -> PropertyList:
57
+ """Create an instance of PropertyList from a JSON string"""
58
+ return cls.from_dict(json.loads(json_str))
59
+
60
+ def to_dict(self):
61
+ """Returns the dictionary representation of the model using alias"""
62
+ _dict = self.dict(by_alias=True,
63
+ exclude={
64
+ "additional_properties"
65
+ },
66
+ exclude_none=True)
67
+ # override the default output from pydantic by calling `to_dict()` of each item in values (list)
68
+ _items = []
69
+ if self.values:
70
+ for _item in self.values:
71
+ if _item:
72
+ _items.append(_item.to_dict())
73
+ _dict['values'] = _items
74
+ # puts key-value pairs in additional_properties in the top level
75
+ if self.additional_properties is not None:
76
+ for _key, _value in self.additional_properties.items():
77
+ _dict[_key] = _value
78
+
79
+ return _dict
80
+
81
+ @classmethod
82
+ def from_dict(cls, obj: dict) -> PropertyList:
83
+ """Create an instance of PropertyList from a dict"""
84
+ if obj is None:
85
+ return None
86
+
87
+ if not isinstance(obj, dict):
88
+ return PropertyList.parse_obj(obj)
89
+
90
+ _obj = PropertyList.parse_obj({
91
+ "reference_list_type": obj.get("referenceListType"),
92
+ "values": [ModelProperty.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None
93
+ })
94
+ # store additional fields in additional_properties
95
+ for _key in obj.keys():
96
+ if _key not in cls.__properties:
97
+ _obj.additional_properties[_key] = obj.get(_key)
98
+
99
+ return _obj
@@ -26,14 +26,14 @@ class ReferenceList(BaseModel):
26
26
  """
27
27
  ReferenceList
28
28
  """
29
- reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList")
29
+ reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList")
30
30
  __properties = ["referenceListType"]
31
31
 
32
32
  @validator('reference_list_type')
33
33
  def reference_list_type_validate_enum(cls, value):
34
34
  """Validates the enum"""
35
- if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList'):
36
- raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList')")
35
+ if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList'):
36
+ raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList')")
37
37
  return value
38
38
 
39
39
  class Config:
@@ -51,6 +51,7 @@ class ReferenceList(BaseModel):
51
51
  'InstrumentList': 'InstrumentList',
52
52
  'PortfolioGroupIdList': 'PortfolioGroupIdList',
53
53
  'PortfolioIdList': 'PortfolioIdList',
54
+ 'PropertyList': 'PropertyList',
54
55
  'StringList': 'StringList'
55
56
  }
56
57
 
@@ -72,7 +73,7 @@ class ReferenceList(BaseModel):
72
73
  return json.dumps(self.to_dict())
73
74
 
74
75
  @classmethod
75
- def from_json(cls, json_str: str) -> Union(AddressKeyList, DecimalList, InstrumentList, PortfolioGroupIdList, PortfolioIdList, StringList):
76
+ def from_json(cls, json_str: str) -> Union(AddressKeyList, DecimalList, InstrumentList, PortfolioGroupIdList, PortfolioIdList, PropertyList, StringList):
76
77
  """Create an instance of ReferenceList from a JSON string"""
77
78
  return cls.from_dict(json.loads(json_str))
78
79
 
@@ -85,7 +86,7 @@ class ReferenceList(BaseModel):
85
86
  return _dict
86
87
 
87
88
  @classmethod
88
- def from_dict(cls, obj: dict) -> Union(AddressKeyList, DecimalList, InstrumentList, PortfolioGroupIdList, PortfolioIdList, StringList):
89
+ def from_dict(cls, obj: dict) -> Union(AddressKeyList, DecimalList, InstrumentList, PortfolioGroupIdList, PortfolioIdList, PropertyList, StringList):
89
90
  """Create an instance of ReferenceList from a dict"""
90
91
  # look up the object type based on discriminator mapping
91
92
  object_type = cls.get_discriminator_value(obj)
@@ -35,6 +35,7 @@ class ReferenceListType(str, Enum):
35
35
  STRINGLIST = 'StringList'
36
36
  INSTRUMENTLIST = 'InstrumentList'
37
37
  DECIMALLIST = 'DecimalList'
38
+ PROPERTYLIST = 'PropertyList'
38
39
 
39
40
  @classmethod
40
41
  def from_json(cls, json_str: str) -> ReferenceListType:
@@ -27,15 +27,15 @@ class StringList(ReferenceList):
27
27
  StringList
28
28
  """
29
29
  values: conlist(StrictStr, max_items=100, min_items=0) = Field(...)
30
- reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList")
30
+ reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList")
31
31
  additional_properties: Dict[str, Any] = {}
32
32
  __properties = ["referenceListType", "values"]
33
33
 
34
34
  @validator('reference_list_type')
35
35
  def reference_list_type_validate_enum(cls, value):
36
36
  """Validates the enum"""
37
- if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList'):
38
- raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList')")
37
+ if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList'):
38
+ raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList')")
39
39
  return value
40
40
 
41
41
  class Config:
@@ -0,0 +1,93 @@
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
22
+ from pydantic.v1 import BaseModel, Field, constr, validator
23
+
24
+ class UpdateAmortisationRuleSetDetailsRequest(BaseModel):
25
+ """
26
+ UpdateAmortisationRuleSetDetailsRequest
27
+ """
28
+ display_name: constr(strict=True, max_length=256, min_length=1) = Field(..., alias="displayName")
29
+ description: Optional[constr(strict=True, max_length=1024, min_length=0)] = None
30
+ __properties = ["displayName", "description"]
31
+
32
+ @validator('display_name')
33
+ def display_name_validate_regular_expression(cls, value):
34
+ """Validates the regular expression"""
35
+ if not re.match(r"^[^\\<>&\"]+$", value):
36
+ raise ValueError(r"must validate the regular expression /^[^\\<>&\"]+$/")
37
+ return value
38
+
39
+ @validator('description')
40
+ def description_validate_regular_expression(cls, value):
41
+ """Validates the regular expression"""
42
+ if value is None:
43
+ return value
44
+
45
+ if not re.match(r"^[\s\S]*$", value):
46
+ raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
47
+ return value
48
+
49
+ class Config:
50
+ """Pydantic configuration"""
51
+ allow_population_by_field_name = True
52
+ validate_assignment = True
53
+
54
+ def to_str(self) -> str:
55
+ """Returns the string representation of the model using alias"""
56
+ return pprint.pformat(self.dict(by_alias=True))
57
+
58
+ def to_json(self) -> str:
59
+ """Returns the JSON representation of the model using alias"""
60
+ return json.dumps(self.to_dict())
61
+
62
+ @classmethod
63
+ def from_json(cls, json_str: str) -> UpdateAmortisationRuleSetDetailsRequest:
64
+ """Create an instance of UpdateAmortisationRuleSetDetailsRequest from a JSON string"""
65
+ return cls.from_dict(json.loads(json_str))
66
+
67
+ def to_dict(self):
68
+ """Returns the dictionary representation of the model using alias"""
69
+ _dict = self.dict(by_alias=True,
70
+ exclude={
71
+ },
72
+ exclude_none=True)
73
+ # set to None if description (nullable) is None
74
+ # and __fields_set__ contains the field
75
+ if self.description is None and "description" in self.__fields_set__:
76
+ _dict['description'] = None
77
+
78
+ return _dict
79
+
80
+ @classmethod
81
+ def from_dict(cls, obj: dict) -> UpdateAmortisationRuleSetDetailsRequest:
82
+ """Create an instance of UpdateAmortisationRuleSetDetailsRequest from a dict"""
83
+ if obj is None:
84
+ return None
85
+
86
+ if not isinstance(obj, dict):
87
+ return UpdateAmortisationRuleSetDetailsRequest.parse_obj(obj)
88
+
89
+ _obj = UpdateAmortisationRuleSetDetailsRequest.parse_obj({
90
+ "display_name": obj.get("displayName"),
91
+ "description": obj.get("description")
92
+ })
93
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.4
3
+ Version: 2.1.7
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.6439
33
- - Package version: 2.1.4
32
+ - API version: 0.11.6442
33
+ - Package version: 2.1.7
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
 
@@ -246,6 +246,11 @@ Class | Method | HTTP request | Description
246
246
  *AllocationsApi* | [**get_allocation**](docs/AllocationsApi.md#get_allocation) | **GET** /api/allocations/{scope}/{code} | [EARLY ACCESS] GetAllocation: Get Allocation
247
247
  *AllocationsApi* | [**list_allocations**](docs/AllocationsApi.md#list_allocations) | **GET** /api/allocations | [EARLY ACCESS] ListAllocations: List Allocations
248
248
  *AllocationsApi* | [**upsert_allocations**](docs/AllocationsApi.md#upsert_allocations) | **POST** /api/allocations | [EARLY ACCESS] UpsertAllocations: Upsert Allocations
249
+ *AmortisationRuleSetsApi* | [**create_amortisation_rule_set**](docs/AmortisationRuleSetsApi.md#create_amortisation_rule_set) | **POST** /api/amortisation/rulesets/{scope} | [EXPERIMENTAL] CreateAmortisationRuleSet: Create an amortisation rule set.
250
+ *AmortisationRuleSetsApi* | [**delete_amortisation_ruleset**](docs/AmortisationRuleSetsApi.md#delete_amortisation_ruleset) | **DELETE** /api/amortisation/rulesets/{scope}/{code} | [EXPERIMENTAL] DeleteAmortisationRuleset: Delete an amortisation rule set.
251
+ *AmortisationRuleSetsApi* | [**get_amortisation_rule_set**](docs/AmortisationRuleSetsApi.md#get_amortisation_rule_set) | **GET** /api/amortisation/rulesets/{scope}/{code} | [EXPERIMENTAL] GetAmortisationRuleSet: Retrieve the definition of a single amortisation rule set
252
+ *AmortisationRuleSetsApi* | [**list_amortisation_rule_sets**](docs/AmortisationRuleSetsApi.md#list_amortisation_rule_sets) | **GET** /api/amortisation/rulesets | [EXPERIMENTAL] ListAmortisationRuleSets: List amortisation rule sets.
253
+ *AmortisationRuleSetsApi* | [**update_amortisation_rule_set_details**](docs/AmortisationRuleSetsApi.md#update_amortisation_rule_set_details) | **PUT** /api/amortisation/rulesets/{scope}/{code}/details | [EXPERIMENTAL] UpdateAmortisationRuleSetDetails: Update an amortisation rule set.
249
254
  *ApplicationMetadataApi* | [**get_excel_addin**](docs/ApplicationMetadataApi.md#get_excel_addin) | **GET** /api/metadata/downloads/exceladdin | GetExcelAddin: Download Excel Addin
250
255
  *ApplicationMetadataApi* | [**get_lusid_versions**](docs/ApplicationMetadataApi.md#get_lusid_versions) | **GET** /api/metadata/versions | GetLusidVersions: Get LUSID versions
251
256
  *ApplicationMetadataApi* | [**list_access_controlled_resources**](docs/ApplicationMetadataApi.md#list_access_controlled_resources) | **GET** /api/metadata/access/resources | ListAccessControlledResources: Get resources available for access control
@@ -765,6 +770,8 @@ Class | Method | HTTP request | Description
765
770
  - [AllocationServiceRunResponse](docs/AllocationServiceRunResponse.md)
766
771
  - [AllocationSetRequest](docs/AllocationSetRequest.md)
767
772
  - [AmortisationEvent](docs/AmortisationEvent.md)
773
+ - [AmortisationRule](docs/AmortisationRule.md)
774
+ - [AmortisationRuleSet](docs/AmortisationRuleSet.md)
768
775
  - [AnnulQuotesResponse](docs/AnnulQuotesResponse.md)
769
776
  - [AnnulSingleStructuredDataResponse](docs/AnnulSingleStructuredDataResponse.md)
770
777
  - [AnnulStructuredDataResponse](docs/AnnulStructuredDataResponse.md)
@@ -879,6 +886,7 @@ Class | Method | HTTP request | Description
879
886
  - [CounterpartyRiskInformation](docs/CounterpartyRiskInformation.md)
880
887
  - [CounterpartySignatory](docs/CounterpartySignatory.md)
881
888
  - [CreateAddressKeyDefinitionRequest](docs/CreateAddressKeyDefinitionRequest.md)
889
+ - [CreateAmortisationRuleSetRequest](docs/CreateAmortisationRuleSetRequest.md)
882
890
  - [CreateCalendarRequest](docs/CreateCalendarRequest.md)
883
891
  - [CreateCorporateActionSourceRequest](docs/CreateCorporateActionSourceRequest.md)
884
892
  - [CreateCustomEntityTypeRequest](docs/CreateCustomEntityTypeRequest.md)
@@ -1210,6 +1218,7 @@ Class | Method | HTTP request | Description
1210
1218
  - [PagedResourceListOfAccount](docs/PagedResourceListOfAccount.md)
1211
1219
  - [PagedResourceListOfAddressKeyDefinition](docs/PagedResourceListOfAddressKeyDefinition.md)
1212
1220
  - [PagedResourceListOfAllocation](docs/PagedResourceListOfAllocation.md)
1221
+ - [PagedResourceListOfAmortisationRuleSet](docs/PagedResourceListOfAmortisationRuleSet.md)
1213
1222
  - [PagedResourceListOfBlock](docs/PagedResourceListOfBlock.md)
1214
1223
  - [PagedResourceListOfCalendar](docs/PagedResourceListOfCalendar.md)
1215
1224
  - [PagedResourceListOfChartOfAccounts](docs/PagedResourceListOfChartOfAccounts.md)
@@ -1313,6 +1322,7 @@ Class | Method | HTTP request | Description
1313
1322
  - [PropertyKeyComplianceParameter](docs/PropertyKeyComplianceParameter.md)
1314
1323
  - [PropertyKeyListComplianceParameter](docs/PropertyKeyListComplianceParameter.md)
1315
1324
  - [PropertyLifeTime](docs/PropertyLifeTime.md)
1325
+ - [PropertyList](docs/PropertyList.md)
1316
1326
  - [PropertySchema](docs/PropertySchema.md)
1317
1327
  - [PropertyType](docs/PropertyType.md)
1318
1328
  - [PropertyValue](docs/PropertyValue.md)
@@ -1553,6 +1563,7 @@ Class | Method | HTTP request | Description
1553
1563
  - [UnitSchema](docs/UnitSchema.md)
1554
1564
  - [UnitsRatio](docs/UnitsRatio.md)
1555
1565
  - [UnmatchedHoldingMethod](docs/UnmatchedHoldingMethod.md)
1566
+ - [UpdateAmortisationRuleSetDetailsRequest](docs/UpdateAmortisationRuleSetDetailsRequest.md)
1556
1567
  - [UpdateCalendarRequest](docs/UpdateCalendarRequest.md)
1557
1568
  - [UpdateCustomEntityDefinitionRequest](docs/UpdateCustomEntityDefinitionRequest.md)
1558
1569
  - [UpdateCustomEntityTypeRequest](docs/UpdateCustomEntityTypeRequest.md)
@@ -1,10 +1,11 @@
1
- lusid/__init__.py,sha256=5jCa4rnYJuDEF8Llsl5xSnADSpJE-pYFHD8iG6sG248,102826
2
- lusid/api/__init__.py,sha256=6bM_iPkYo6hs5SaBRquW9G_ee47m4TkUF6yfYi8e9y8,5284
1
+ lusid/__init__.py,sha256=RJ3pVlqDXbshdIE_475TrfljdkAwycFlz008cM_0-ZU,103627
2
+ lusid/api/__init__.py,sha256=jdU3SmYCzfXVHFVThKX_tCGad2-l4-5Qql1cN864mCs,5388
3
3
  lusid/api/abor_api.py,sha256=gEqLNum0O0fIHTMPG1E9hxroX6g3vBzqRwbRY7oHGNU,149942
4
4
  lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
5
5
  lusid/api/address_key_definition_api.py,sha256=fZRzR63xwAvWnwNUsSUNTfFNAmKGerPF50BEjG9utlA,31640
6
6
  lusid/api/aggregation_api.py,sha256=8lCQjh2VR5gvEnz6oq7JUg8_ccdhXiS95-3aLD-zIwU,38503
7
7
  lusid/api/allocations_api.py,sha256=ILfcDkZNyoSZasL6gLM6sS0pwCSM3GCxfwpTtbpurEc,44687
8
+ lusid/api/amortisation_rule_sets_api.py,sha256=9HKNoBWeogRD5-2zj8PjSx3k_6SLh-s051ArFztvbho,54742
8
9
  lusid/api/application_metadata_api.py,sha256=NM_mlxqDY62zrd2fVq6EcLgO4XkucXVelfsFnXqcgZg,23224
9
10
  lusid/api/blocks_api.py,sha256=Gpm_8fKo6xRVmpN_1kkpUrrZp7RgL-cuWUkXCz88koI,43529
10
11
  lusid/api/calendars_api.py,sha256=zdy1KHM40g8W9-CL9Udg9KBg8unP5vamqDW8viO8TQk,126954
@@ -64,7 +65,7 @@ lusid/api/transaction_portfolios_api.py,sha256=42th9dFApxhoX_mbYJHZg8mkZ4Pzt-rd4
64
65
  lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
65
66
  lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
66
67
  lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
67
- lusid/configuration.py,sha256=4EmfaZW5GpdLspKAkKWUw3rKmkeAjtpitATj8PODRIY,14404
68
+ lusid/configuration.py,sha256=_5ymLx3JwGA3ml3cjYU4Te_jjLS5s6zVCoEKSB9ZtoU,14404
68
69
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
69
70
  lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
70
71
  lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
@@ -77,7 +78,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
77
78
  lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
78
79
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
79
80
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
80
- lusid/models/__init__.py,sha256=_tAdedyeuHL-wX4Aa6Hl-EuEJgJivfsJ-bUY2NXm6fY,96585
81
+ lusid/models/__init__.py,sha256=qNtuRcT4XVgJygUVKfO2ocUqnPxuR5E2NM5AiFlr7u4,97282
81
82
  lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
82
83
  lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
83
84
  lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
@@ -106,7 +107,7 @@ lusid/models/address_definition.py,sha256=zTk3p8hfx0CcP_LcHSihJ8bKqT8R5p6RJe3h7m
106
107
  lusid/models/address_key_compliance_parameter.py,sha256=gylQE87Asl7YbN5HwFUK49HOoCSbO7pXtQE_kKrlsz8,5178
107
108
  lusid/models/address_key_definition.py,sha256=ZBOa_DoY_hGC1jaMwKERn1sFhqsk2YsP1HZ0F8tQDek,3212
108
109
  lusid/models/address_key_filter.py,sha256=zck6BPGlaKegIOmbaBs2DLKZQqQwKrjziRXzGYDCuBI,2968
109
- lusid/models/address_key_list.py,sha256=9SsW-ys3Z_nRuTxP_mkVmuLO5QiG3lmBvN3qGBpZ7K8,3229
110
+ lusid/models/address_key_list.py,sha256=xMWZFcy0hNwEhpHTDo8L9kPCqiPlKEziGnKJY8jnPTI,3275
110
111
  lusid/models/address_key_list_compliance_parameter.py,sha256=IKkPUlWkzibhjS57KzhWTbKo24dNFeVPjB_mWu6u7-8,5402
111
112
  lusid/models/address_key_option_definition.py,sha256=T2Zj9-KQJhDubLPIIK2pnaM5UDZvaune5gAfnLAAcxY,3451
112
113
  lusid/models/adjust_holding.py,sha256=K0FDmwFy3NTJ8HicVCJGA1Mqrbri77d1IGA_hk0ejLY,4387
@@ -129,6 +130,8 @@ lusid/models/allocation_request.py,sha256=GSGe0qAgCArKH1p7swa2a-4IG-w_hLwn_Ntsey
129
130
  lusid/models/allocation_service_run_response.py,sha256=qOd5aKAwcjpCh2q5zTxWdGD5FitMpB86hmB89mC2zlo,3454
130
131
  lusid/models/allocation_set_request.py,sha256=41ePNu4AX5sFtGER31_V2PFlqlqen1TkMsIAmcdmvd8,2851
131
132
  lusid/models/amortisation_event.py,sha256=DEe3v6rJkUjTmcb69JGOweYrNCaOPPaqsFGtSlUbpEw,5140
133
+ lusid/models/amortisation_rule.py,sha256=-82zbA7s0GE49EWBZ6yAsfehhN64j6z-nnOi4jTL1CE,3638
134
+ lusid/models/amortisation_rule_set.py,sha256=kmii1YjRpRgkztDIyIRL_gjQUnF5Ylqy49wJlTfZOmA,5496
132
135
  lusid/models/annul_quotes_response.py,sha256=mYZSWeQx2veyirZnrWl2HWLB1nLYxqfLC-kAD87L2Qo,4347
133
136
  lusid/models/annul_single_structured_data_response.py,sha256=8PLdLJ-9anIqCr8JYhYQnfwVvfEEMjY8euqfdvHTNKM,3328
134
137
  lusid/models/annul_structured_data_response.py,sha256=m_PPmlTTJmHWbjwlFVOY4fRS8O1eL2K5ZZYLWyjcXJM,4499
@@ -243,6 +246,7 @@ lusid/models/counterparty_agreement.py,sha256=7xgfCJ6mQwW6jGKkEW_PlK4EU0OLvVRM2o
243
246
  lusid/models/counterparty_risk_information.py,sha256=mp9UQ5N50Xo9GLcLn3oiaSmFo8LL0awwqLUIWt6i2z0,4209
244
247
  lusid/models/counterparty_signatory.py,sha256=v4uoOJYkb6CyTDI4NKx0d2NQIDJUa1ZUDlQZhHM1hEE,2826
245
248
  lusid/models/create_address_key_definition_request.py,sha256=LhuJmLyBPAYZNJaCY75hAF1eLhhh6U2cmO0oY3GwV4w,2230
249
+ lusid/models/create_amortisation_rule_set_request.py,sha256=ErQiQBUDoYXY3hz6eJOcd2_fLzD7OgxAAe6jPRUjwSg,3478
246
250
  lusid/models/create_calendar_request.py,sha256=2T5y4ZbM3JPIlBfKFpe8vDXa5fmzJ4HuDSxJU9f01Vc,4454
247
251
  lusid/models/create_corporate_action_source_request.py,sha256=skvMViHLaW2kSlxoYAFH2tzBvaGugKy93bTphJgLt8s,4734
248
252
  lusid/models/create_custom_entity_type_request.py,sha256=ygxKLaJudkKwFe4fExakxOyB1muzRD4Xyh6sqOfdiVM,3948
@@ -305,7 +309,7 @@ lusid/models/date_time_list_compliance_parameter.py,sha256=5Ql35OdjMOBh7Pi9wQQnw
305
309
  lusid/models/day_month.py,sha256=vV2uMx905FIxzJivvzDTeX9rQPgFksSIQV2jCrT507s,2023
306
310
  lusid/models/day_of_week.py,sha256=fqdnbmdpOaxHXxDdcmR_oa62mEv6FHsyHu8KuE0UPqw,756
307
311
  lusid/models/decimal_compliance_parameter.py,sha256=I3_Fs-FO0D5ck9wy12L-yDpVg7Myssy1pbzjd92Vr_Y,5127
308
- lusid/models/decimal_list.py,sha256=bF8JDsxYblsecWV3oOcrgzgDGbt4TELp-C8lGMVr7qU,3256
312
+ lusid/models/decimal_list.py,sha256=EoFlMIGkbdcXW_dGowPhEMB-O7psz2bQM39wyOQwaSE,3302
309
313
  lusid/models/decimal_list_compliance_parameter.py,sha256=1adg9eC5juhhT3L8q8ZNllUO_YBZ6GWcAybrPiJy8Jg,5378
310
314
  lusid/models/decorated_compliance_run_summary.py,sha256=efdlYnflDMqgVI0XtDSLh_QSBO0I2Miyln-NhzWKntQ,2830
311
315
  lusid/models/delete_accounts_response.py,sha256=rMXK160ZieqoPNGyR9EUFrlINhPUHUhVnB0qwwE_HHU,3327
@@ -462,7 +466,7 @@ lusid/models/instrument_event_type.py,sha256=nqKY7ezNaYnrOXe6iHUPmbaXDi_yt8Rt1lN
462
466
  lusid/models/instrument_id_type_descriptor.py,sha256=0p18FCVnh60RF3LiLPOsDgbqAyeGJPn_UETTaII0Dx4,2569
463
467
  lusid/models/instrument_id_value.py,sha256=wWr4npSEr_hpTWDjFf8WhALa4o0NFNPmNKpuxY1S6PI,2220
464
468
  lusid/models/instrument_leg.py,sha256=oipN1b6S1XYsbxmUaEky0rn3Z2VinWVmFykx4VIiFvE,5606
465
- lusid/models/instrument_list.py,sha256=nbT5eSuWdBu4l24745AM02t-YtCIzANFSlU3TKD-c44,3229
469
+ lusid/models/instrument_list.py,sha256=Uv8lR5p9246NYXbBcLMyQa8KM7I9s_Pn3zE_RyjrfCQ,3275
466
470
  lusid/models/instrument_list_compliance_parameter.py,sha256=a8_WDkweiSQgx0knRrKvo_xYtE0izhE-Kd08pr8j-oo,5402
467
471
  lusid/models/instrument_match.py,sha256=t8RigSJcvJr6QI3NfX0wPB-zLnzh3lc2M_dx5YqOJYw,3947
468
472
  lusid/models/instrument_models.py,sha256=LTOV-JTMtiF0e3awvho3DqPsYT3PNk7w9bESXYyuf4I,3458
@@ -574,6 +578,7 @@ lusid/models/paged_resource_list_of_abor_configuration.py,sha256=WMGnn7RC2Ykgpi5
574
578
  lusid/models/paged_resource_list_of_account.py,sha256=0ke32_-pFT4Mp77OF584qycEewysO7B1y5LG8FEaIuw,4058
575
579
  lusid/models/paged_resource_list_of_address_key_definition.py,sha256=PloRnY2kM6Vn8SnBakKY8atcDlEpNbuYriG6zLFfh2I,4216
576
580
  lusid/models/paged_resource_list_of_allocation.py,sha256=eNtg4sxT6xTXfizYiDQ_VXgbGGLpSXcUA5jXcvMy82w,4094
581
+ lusid/models/paged_resource_list_of_amortisation_rule_set.py,sha256=LndWu1mgUKj6UDKcLaCrsa6ytSL62hMhVpVVZiWUXjs,4204
577
582
  lusid/models/paged_resource_list_of_block.py,sha256=g0xPDT2yze_OCiB8mF6ZvMUD0UaqwaAb5_5KT_2PYfk,4034
578
583
  lusid/models/paged_resource_list_of_calendar.py,sha256=Nf_z25QusgyIF4pKuEGDFhgPZjQfMhVsUmSg_84D29Q,4070
579
584
  lusid/models/paged_resource_list_of_chart_of_accounts.py,sha256=GUUfQH-ouQp8nDWAtctsObr9eXp9EIJmQkqArbyIp0g,4156
@@ -642,13 +647,13 @@ lusid/models/portfolio_details.py,sha256=ZYOTSLq466JT0-0msT9bry3xp9g2qWfHZ4eLkKW
642
647
  lusid/models/portfolio_entity_id.py,sha256=Q6Y2BocHtfoMiSWaJJqoidwPeQeaDtM_A2Qi9ufesXk,3941
643
648
  lusid/models/portfolio_group.py,sha256=pt4ZLAFaXINyx9d8BQ9zZAlj9lIWAzVVWsQpty2PgZA,7106
644
649
  lusid/models/portfolio_group_id_compliance_parameter.py,sha256=0QvIbPxedX9Ljv063c4i4dgQueKoKcpr1ZcR_BLE7J4,5418
645
- lusid/models/portfolio_group_id_list.py,sha256=abd2dPnyeWowaiYabNMGkehO1cqsNYf2L0I-O4gC6H8,3700
650
+ lusid/models/portfolio_group_id_list.py,sha256=Ezx5rsh8tu-YcuP8CNIlid5v_zJGKiGEroJjBTGZqH0,3746
646
651
  lusid/models/portfolio_group_id_list_compliance_parameter.py,sha256=BQEAvQ37WDmBaAyvQUsKgyGtYDChxji98P_swO_P9oU,5450
647
652
  lusid/models/portfolio_group_properties.py,sha256=TXoraXowbiMx0fh5_VWJWPA7NZ85eRFw0w_A6jpRpus,4343
648
653
  lusid/models/portfolio_group_search_result.py,sha256=rDJjz4MXk3f9yUd_DF4kBiOkaJsST4e0rjmU25p2CHM,6286
649
654
  lusid/models/portfolio_holding.py,sha256=QIL72AA1GqSgm6sYdegfquucdlpORqHpQ8IkCvz9Hkk,10562
650
655
  lusid/models/portfolio_id_compliance_parameter.py,sha256=NGetiRfPa4kLdLxS08raaU4YLmTSuwlnw-qdD-Py2h0,5378
651
- lusid/models/portfolio_id_list.py,sha256=95LRPFP5c8tecXPBARu8D0V4YscYLeJrnTvIm-k9H10,3660
656
+ lusid/models/portfolio_id_list.py,sha256=zCe0UDzkP1VjIQHfxBjf-hlL0TEuxlGqGSmyP-6prlo,3706
652
657
  lusid/models/portfolio_id_list_compliance_parameter.py,sha256=-Fe3TRdiIV8f60KBAJYJ17212551SGXDhM1WyLTeSZ4,5410
653
658
  lusid/models/portfolio_properties.py,sha256=5-YLgi1d19x3DQ2lgAF1vLvUhfdlznjYCG_WWog2pQ8,4292
654
659
  lusid/models/portfolio_reconciliation_request.py,sha256=wCxZIivxGZoFmnxItD66J1VSFUqKbtm6SAqq4rNp85w,2886
@@ -677,6 +682,7 @@ lusid/models/property_interval.py,sha256=d8Beue8awpdtK-bLATPbQyqg91RQVgkq3GddTa_
677
682
  lusid/models/property_key_compliance_parameter.py,sha256=SIrM649KNI1HokOGlBFZS459L7E_sbPQpxXemi2mwQc,5213
678
683
  lusid/models/property_key_list_compliance_parameter.py,sha256=2EP-sLnuDvR7mI2T2EW0hDYlmGR69FcXER4vtF7_hEc,5410
679
684
  lusid/models/property_life_time.py,sha256=J3yUafzD0tis5kSMKy77p87ngARdmAmw3iHhjxB5vqc,681
685
+ lusid/models/property_list.py,sha256=mbGV2IPwkEnkuqFpp6RB3HIAsABHwtJaOAc-CSUbxBU,3707
680
686
  lusid/models/property_schema.py,sha256=bjc56KZ4Xzx7QUG-eCNxulczSUIVAozU90HabO5Np24,3592
681
687
  lusid/models/property_type.py,sha256=eo21Rzc7NvOksRW_tld66GXrIjg0UbZJC1XmVQSn6OA,729
682
688
  lusid/models/property_value.py,sha256=ZgB3oNb-mGjhMTf6mBZ2kzaTKVU87ccTON0BDeC6b34,3122
@@ -720,10 +726,10 @@ lusid/models/reconciliation_side_configuration.py,sha256=Ho6hamC07_rddy_WXTu4aUp
720
726
  lusid/models/reconciliation_transactions.py,sha256=FMd3dmdTc_k8oS-PEV9CIynuGxTWdqH6X1BFe-78Deg,2797
721
727
  lusid/models/reference_data.py,sha256=Uzoo6vMAYa98Oa7J5XDJY7LtHV3ZBUC030Le-KRxKwE,2927
722
728
  lusid/models/reference_instrument.py,sha256=El9Lek_x0dgXRbaBCqwzvTWGOO2szlMiyqPM9SoGnf0,5288
723
- lusid/models/reference_list.py,sha256=tx4CjISP5eIrZfMIkQc31OJm46RXLLdriVgz8Pcbcuk,3803
729
+ lusid/models/reference_list.py,sha256=i_dzc9pvHfj38daPGz-VfmYwu-WV33-8Z5uAUyoaC0M,3917
724
730
  lusid/models/reference_list_request.py,sha256=RF2juDzf_envfCHLM7sPTsxpybt8IpJ4a8ZVS38-bPo,3494
725
731
  lusid/models/reference_list_response.py,sha256=e61pfP6JsHKN9a-a0eDkHiMweNPy__al8UnMRpZRL10,4559
726
- lusid/models/reference_list_type.py,sha256=7bCUDS_GoXGrDQAcAdhTYJYu3Sy3J_NzVHmiCUZ6Q0g,854
732
+ lusid/models/reference_list_type.py,sha256=wykOJIDkHZjjLjmOyIwCKRGyOppI3-E8iVmG1ha3Z8c,888
727
733
  lusid/models/reference_portfolio_constituent.py,sha256=vELtFLVORa6BTSq5NtB0i-_uX07u_91-I99sWHsE3ig,4708
728
734
  lusid/models/reference_portfolio_constituent_request.py,sha256=uL6c9CWtqWj0Kj5ofcZIHGoL0Dz99OTxzinTYt-eQrM,3548
729
735
  lusid/models/reference_portfolio_weight_type.py,sha256=5rggGu_sCoc_lRpGyQRMA10l3KFix-rak7v2YdMOqWo,759
@@ -849,7 +855,7 @@ lusid/models/stock_split_event.py,sha256=XmclBAd6_AkG3gh-gZn7WqJCWN2KgNoOzuyRVsL
849
855
  lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
850
856
  lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
851
857
  lusid/models/string_compliance_parameter.py,sha256=0S7zWDfc9GQdOch-sO_aSLHvkRLqInJjh9hCwCLazow,5100
852
- lusid/models/string_list.py,sha256=s1cCjHLCtH47D94rNp5-6P_wurWqJcdqXI0ssE3eEXY,3197
858
+ lusid/models/string_list.py,sha256=Xl8PYRRoB3DPvtKZGfjpWrbiVzgR8m96iRc54p_XyyU,3243
853
859
  lusid/models/string_list_compliance_parameter.py,sha256=2e1qWoetKQNkyh4YUY4ACqiG3bKd1AAXSI9cG0wcpXA,5370
854
860
  lusid/models/structured_result_data.py,sha256=54I81CqBkq875kkEX3-gjGf2k9t23D62eCzefY-sek4,3744
855
861
  lusid/models/structured_result_data_id.py,sha256=R15RxvxzgMy9R4zW0Ya1fSaYpMsXSijMDXiKTzGPAoM,4411
@@ -917,6 +923,7 @@ lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW0
917
923
  lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
918
924
  lusid/models/units_ratio.py,sha256=BaJI9h_cMLk7idXL55jRYnO2tf8MTItoejRDHseJbH4,2154
919
925
  lusid/models/unmatched_holding_method.py,sha256=FKe4xqhL8C8Stohy89gki7Zio2Jg85bWwo_-mm0tllM,870
926
+ lusid/models/update_amortisation_rule_set_details_request.py,sha256=1mOChVtkpV6ALx17hx7khCeSL9yJThyXiMkrDCo_bNI,3127
920
927
  lusid/models/update_calendar_request.py,sha256=qISMkBiXqidfWJ4JWyr87WwnqrbwuV62Z9-j-elhuxo,3318
921
928
  lusid/models/update_custom_entity_definition_request.py,sha256=ZnYQ_ceAB8VvIBmcPPXsquShIwSI-vc_Zatoxska_qw,3640
922
929
  lusid/models/update_custom_entity_type_request.py,sha256=UGIkMSy9V-__AHVImDHaEAA1LRAg9gar5BzDXV7cvZA,3592
@@ -1007,6 +1014,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1007
1014
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1008
1015
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1009
1016
  lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
1010
- lusid_sdk-2.1.4.dist-info/METADATA,sha256=05q6UG16oo2AiFgZZBEBifVjA5OVJ9XoJ9pPdDLZxRo,177984
1011
- lusid_sdk-2.1.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1012
- lusid_sdk-2.1.4.dist-info/RECORD,,
1017
+ lusid_sdk-2.1.7.dist-info/METADATA,sha256=yC6JKqp9SD1IXmfWRSL2cMzD7tuNXgwDjR5Dn8zsSqE,179682
1018
+ lusid_sdk-2.1.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1019
+ lusid_sdk-2.1.7.dist-info/RECORD,,