lusid-sdk 2.0.455__py3-none-any.whl → 2.0.468__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 +18 -0
- lusid/api/__init__.py +2 -0
- lusid/api/funds_api.py +175 -0
- lusid/api/staging_rule_set_api.py +885 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +16 -0
- lusid/models/create_derived_property_definition_request.py +3 -3
- lusid/models/create_property_definition_request.py +3 -3
- lusid/models/create_staging_rule_set_request.py +91 -0
- lusid/models/fund_request.py +1 -1
- lusid/models/paged_resource_list_of_staging_rule_set.py +113 -0
- lusid/models/property_definition.py +3 -3
- lusid/models/property_definition_search_result.py +3 -3
- lusid/models/property_domain.py +1 -0
- lusid/models/set_share_class_instruments_request.py +79 -0
- lusid/models/staging_rule.py +90 -0
- lusid/models/staging_rule_approval_criteria.py +81 -0
- lusid/models/staging_rule_match_criteria.py +95 -0
- lusid/models/staging_rule_set.py +103 -0
- lusid/models/update_staging_rule_set_request.py +91 -0
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.468.dist-info}/METADATA +17 -3
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.468.dist-info}/RECORD +23 -14
- {lusid_sdk-2.0.455.dist-info → lusid_sdk-2.0.468.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,81 @@
|
|
|
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 import BaseModel, Field, StrictInt, constr
|
|
23
|
+
|
|
24
|
+
class StagingRuleApprovalCriteria(BaseModel):
|
|
25
|
+
"""
|
|
26
|
+
StagingRuleApprovalCriteria
|
|
27
|
+
"""
|
|
28
|
+
required_approvals: Optional[StrictInt] = Field(None, alias="requiredApprovals")
|
|
29
|
+
deciding_user: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, alias="decidingUser")
|
|
30
|
+
__properties = ["requiredApprovals", "decidingUser"]
|
|
31
|
+
|
|
32
|
+
class Config:
|
|
33
|
+
"""Pydantic configuration"""
|
|
34
|
+
allow_population_by_field_name = True
|
|
35
|
+
validate_assignment = True
|
|
36
|
+
|
|
37
|
+
def to_str(self) -> str:
|
|
38
|
+
"""Returns the string representation of the model using alias"""
|
|
39
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
40
|
+
|
|
41
|
+
def to_json(self) -> str:
|
|
42
|
+
"""Returns the JSON representation of the model using alias"""
|
|
43
|
+
return json.dumps(self.to_dict())
|
|
44
|
+
|
|
45
|
+
@classmethod
|
|
46
|
+
def from_json(cls, json_str: str) -> StagingRuleApprovalCriteria:
|
|
47
|
+
"""Create an instance of StagingRuleApprovalCriteria from a JSON string"""
|
|
48
|
+
return cls.from_dict(json.loads(json_str))
|
|
49
|
+
|
|
50
|
+
def to_dict(self):
|
|
51
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
52
|
+
_dict = self.dict(by_alias=True,
|
|
53
|
+
exclude={
|
|
54
|
+
},
|
|
55
|
+
exclude_none=True)
|
|
56
|
+
# set to None if required_approvals (nullable) is None
|
|
57
|
+
# and __fields_set__ contains the field
|
|
58
|
+
if self.required_approvals is None and "required_approvals" in self.__fields_set__:
|
|
59
|
+
_dict['requiredApprovals'] = None
|
|
60
|
+
|
|
61
|
+
# set to None if deciding_user (nullable) is None
|
|
62
|
+
# and __fields_set__ contains the field
|
|
63
|
+
if self.deciding_user is None and "deciding_user" in self.__fields_set__:
|
|
64
|
+
_dict['decidingUser'] = None
|
|
65
|
+
|
|
66
|
+
return _dict
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_dict(cls, obj: dict) -> StagingRuleApprovalCriteria:
|
|
70
|
+
"""Create an instance of StagingRuleApprovalCriteria from a dict"""
|
|
71
|
+
if obj is None:
|
|
72
|
+
return None
|
|
73
|
+
|
|
74
|
+
if not isinstance(obj, dict):
|
|
75
|
+
return StagingRuleApprovalCriteria.parse_obj(obj)
|
|
76
|
+
|
|
77
|
+
_obj = StagingRuleApprovalCriteria.parse_obj({
|
|
78
|
+
"required_approvals": obj.get("requiredApprovals"),
|
|
79
|
+
"deciding_user": obj.get("decidingUser")
|
|
80
|
+
})
|
|
81
|
+
return _obj
|
|
@@ -0,0 +1,95 @@
|
|
|
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 import BaseModel, Field, StrictStr, conlist, constr
|
|
23
|
+
|
|
24
|
+
class StagingRuleMatchCriteria(BaseModel):
|
|
25
|
+
"""
|
|
26
|
+
StagingRuleMatchCriteria
|
|
27
|
+
"""
|
|
28
|
+
action_in: Optional[conlist(StrictStr)] = Field(None, alias="actionIn")
|
|
29
|
+
requesting_user: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, alias="requestingUser")
|
|
30
|
+
entity_attributes: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, alias="entityAttributes")
|
|
31
|
+
changed_attribute_name_in: Optional[conlist(StrictStr)] = Field(None, alias="changedAttributeNameIn")
|
|
32
|
+
__properties = ["actionIn", "requestingUser", "entityAttributes", "changedAttributeNameIn"]
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
"""Pydantic configuration"""
|
|
36
|
+
allow_population_by_field_name = True
|
|
37
|
+
validate_assignment = True
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
return json.dumps(self.to_dict())
|
|
46
|
+
|
|
47
|
+
@classmethod
|
|
48
|
+
def from_json(cls, json_str: str) -> StagingRuleMatchCriteria:
|
|
49
|
+
"""Create an instance of StagingRuleMatchCriteria from a JSON string"""
|
|
50
|
+
return cls.from_dict(json.loads(json_str))
|
|
51
|
+
|
|
52
|
+
def to_dict(self):
|
|
53
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
54
|
+
_dict = self.dict(by_alias=True,
|
|
55
|
+
exclude={
|
|
56
|
+
},
|
|
57
|
+
exclude_none=True)
|
|
58
|
+
# set to None if action_in (nullable) is None
|
|
59
|
+
# and __fields_set__ contains the field
|
|
60
|
+
if self.action_in is None and "action_in" in self.__fields_set__:
|
|
61
|
+
_dict['actionIn'] = None
|
|
62
|
+
|
|
63
|
+
# set to None if requesting_user (nullable) is None
|
|
64
|
+
# and __fields_set__ contains the field
|
|
65
|
+
if self.requesting_user is None and "requesting_user" in self.__fields_set__:
|
|
66
|
+
_dict['requestingUser'] = None
|
|
67
|
+
|
|
68
|
+
# set to None if entity_attributes (nullable) is None
|
|
69
|
+
# and __fields_set__ contains the field
|
|
70
|
+
if self.entity_attributes is None and "entity_attributes" in self.__fields_set__:
|
|
71
|
+
_dict['entityAttributes'] = None
|
|
72
|
+
|
|
73
|
+
# set to None if changed_attribute_name_in (nullable) is None
|
|
74
|
+
# and __fields_set__ contains the field
|
|
75
|
+
if self.changed_attribute_name_in is None and "changed_attribute_name_in" in self.__fields_set__:
|
|
76
|
+
_dict['changedAttributeNameIn'] = None
|
|
77
|
+
|
|
78
|
+
return _dict
|
|
79
|
+
|
|
80
|
+
@classmethod
|
|
81
|
+
def from_dict(cls, obj: dict) -> StagingRuleMatchCriteria:
|
|
82
|
+
"""Create an instance of StagingRuleMatchCriteria from a dict"""
|
|
83
|
+
if obj is None:
|
|
84
|
+
return None
|
|
85
|
+
|
|
86
|
+
if not isinstance(obj, dict):
|
|
87
|
+
return StagingRuleMatchCriteria.parse_obj(obj)
|
|
88
|
+
|
|
89
|
+
_obj = StagingRuleMatchCriteria.parse_obj({
|
|
90
|
+
"action_in": obj.get("actionIn"),
|
|
91
|
+
"requesting_user": obj.get("requestingUser"),
|
|
92
|
+
"entity_attributes": obj.get("entityAttributes"),
|
|
93
|
+
"changed_attribute_name_in": obj.get("changedAttributeNameIn")
|
|
94
|
+
})
|
|
95
|
+
return _obj
|
|
@@ -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 import BaseModel, Field, StrictStr, conlist, constr
|
|
23
|
+
from lusid.models.staging_rule import StagingRule
|
|
24
|
+
from lusid.models.version import Version
|
|
25
|
+
|
|
26
|
+
class StagingRuleSet(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
StagingRuleSet
|
|
29
|
+
"""
|
|
30
|
+
entity_type: constr(strict=True, min_length=1) = Field(..., alias="entityType", description="The entity type the staging rule set applies to.")
|
|
31
|
+
staging_rule_set_id: constr(strict=True, min_length=1) = Field(..., alias="stagingRuleSetId", description="System generated unique id for the staging rule set.")
|
|
32
|
+
display_name: constr(strict=True, min_length=1) = Field(..., alias="displayName", description="The name of the staging rule set.")
|
|
33
|
+
description: Optional[StrictStr] = Field(None, description="A description for the staging rule set.")
|
|
34
|
+
rules: conlist(StagingRule) = Field(..., description="The list of staging rules that apply to a specific entity type.")
|
|
35
|
+
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
|
36
|
+
version: Optional[Version] = None
|
|
37
|
+
__properties = ["entityType", "stagingRuleSetId", "displayName", "description", "rules", "href", "version"]
|
|
38
|
+
|
|
39
|
+
class Config:
|
|
40
|
+
"""Pydantic configuration"""
|
|
41
|
+
allow_population_by_field_name = True
|
|
42
|
+
validate_assignment = True
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""Returns the JSON representation of the model using alias"""
|
|
50
|
+
return json.dumps(self.to_dict())
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_json(cls, json_str: str) -> StagingRuleSet:
|
|
54
|
+
"""Create an instance of StagingRuleSet from a JSON string"""
|
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
|
56
|
+
|
|
57
|
+
def to_dict(self):
|
|
58
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
59
|
+
_dict = self.dict(by_alias=True,
|
|
60
|
+
exclude={
|
|
61
|
+
},
|
|
62
|
+
exclude_none=True)
|
|
63
|
+
# override the default output from pydantic by calling `to_dict()` of each item in rules (list)
|
|
64
|
+
_items = []
|
|
65
|
+
if self.rules:
|
|
66
|
+
for _item in self.rules:
|
|
67
|
+
if _item:
|
|
68
|
+
_items.append(_item.to_dict())
|
|
69
|
+
_dict['rules'] = _items
|
|
70
|
+
# override the default output from pydantic by calling `to_dict()` of version
|
|
71
|
+
if self.version:
|
|
72
|
+
_dict['version'] = self.version.to_dict()
|
|
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
|
+
# set to None if href (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.href is None and "href" in self.__fields_set__:
|
|
81
|
+
_dict['href'] = None
|
|
82
|
+
|
|
83
|
+
return _dict
|
|
84
|
+
|
|
85
|
+
@classmethod
|
|
86
|
+
def from_dict(cls, obj: dict) -> StagingRuleSet:
|
|
87
|
+
"""Create an instance of StagingRuleSet from a dict"""
|
|
88
|
+
if obj is None:
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
if not isinstance(obj, dict):
|
|
92
|
+
return StagingRuleSet.parse_obj(obj)
|
|
93
|
+
|
|
94
|
+
_obj = StagingRuleSet.parse_obj({
|
|
95
|
+
"entity_type": obj.get("entityType"),
|
|
96
|
+
"staging_rule_set_id": obj.get("stagingRuleSetId"),
|
|
97
|
+
"display_name": obj.get("displayName"),
|
|
98
|
+
"description": obj.get("description"),
|
|
99
|
+
"rules": [StagingRule.from_dict(_item) for _item in obj.get("rules")] if obj.get("rules") is not None else None,
|
|
100
|
+
"href": obj.get("href"),
|
|
101
|
+
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None
|
|
102
|
+
})
|
|
103
|
+
return _obj
|
|
@@ -0,0 +1,91 @@
|
|
|
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 import BaseModel, Field, conlist, constr
|
|
23
|
+
from lusid.models.staging_rule import StagingRule
|
|
24
|
+
|
|
25
|
+
class UpdateStagingRuleSetRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
UpdateStagingRuleSetRequest
|
|
28
|
+
"""
|
|
29
|
+
display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the staging rule set.")
|
|
30
|
+
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the staging rule set.")
|
|
31
|
+
rules: conlist(StagingRule) = Field(..., description="The list of staging rules that apply to a specific entity type.")
|
|
32
|
+
__properties = ["displayName", "description", "rules"]
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
"""Pydantic configuration"""
|
|
36
|
+
allow_population_by_field_name = True
|
|
37
|
+
validate_assignment = True
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
return json.dumps(self.to_dict())
|
|
46
|
+
|
|
47
|
+
@classmethod
|
|
48
|
+
def from_json(cls, json_str: str) -> UpdateStagingRuleSetRequest:
|
|
49
|
+
"""Create an instance of UpdateStagingRuleSetRequest from a JSON string"""
|
|
50
|
+
return cls.from_dict(json.loads(json_str))
|
|
51
|
+
|
|
52
|
+
def to_dict(self):
|
|
53
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
54
|
+
_dict = self.dict(by_alias=True,
|
|
55
|
+
exclude={
|
|
56
|
+
},
|
|
57
|
+
exclude_none=True)
|
|
58
|
+
# override the default output from pydantic by calling `to_dict()` of each item in rules (list)
|
|
59
|
+
_items = []
|
|
60
|
+
if self.rules:
|
|
61
|
+
for _item in self.rules:
|
|
62
|
+
if _item:
|
|
63
|
+
_items.append(_item.to_dict())
|
|
64
|
+
_dict['rules'] = _items
|
|
65
|
+
# set to None if display_name (nullable) is None
|
|
66
|
+
# and __fields_set__ contains the field
|
|
67
|
+
if self.display_name is None and "display_name" in self.__fields_set__:
|
|
68
|
+
_dict['displayName'] = None
|
|
69
|
+
|
|
70
|
+
# set to None if description (nullable) is None
|
|
71
|
+
# and __fields_set__ contains the field
|
|
72
|
+
if self.description is None and "description" in self.__fields_set__:
|
|
73
|
+
_dict['description'] = None
|
|
74
|
+
|
|
75
|
+
return _dict
|
|
76
|
+
|
|
77
|
+
@classmethod
|
|
78
|
+
def from_dict(cls, obj: dict) -> UpdateStagingRuleSetRequest:
|
|
79
|
+
"""Create an instance of UpdateStagingRuleSetRequest from a dict"""
|
|
80
|
+
if obj is None:
|
|
81
|
+
return None
|
|
82
|
+
|
|
83
|
+
if not isinstance(obj, dict):
|
|
84
|
+
return UpdateStagingRuleSetRequest.parse_obj(obj)
|
|
85
|
+
|
|
86
|
+
_obj = UpdateStagingRuleSetRequest.parse_obj({
|
|
87
|
+
"display_name": obj.get("displayName"),
|
|
88
|
+
"description": obj.get("description"),
|
|
89
|
+
"rules": [StagingRule.from_dict(_item) for _item in obj.get("rules")] if obj.get("rules") is not None else None
|
|
90
|
+
})
|
|
91
|
+
return _obj
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.468
|
|
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.6415
|
|
33
|
+
- Package version: 2.0.468
|
|
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
|
|
|
@@ -392,6 +392,7 @@ Class | Method | HTTP request | Description
|
|
|
392
392
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
|
393
393
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
|
394
394
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
|
395
|
+
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **POST** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
|
|
395
396
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties
|
|
396
397
|
*InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] CreateTransactionTemplate: Create Transaction Template
|
|
397
398
|
*InstrumentEventTypesApi* | [**delete_transaction_template**](docs/InstrumentEventTypesApi.md#delete_transaction_template) | **DELETE** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EXPERIMENTAL] DeleteTransactionTemplate: Delete Transaction Template
|
|
@@ -625,6 +626,11 @@ Class | Method | HTTP request | Description
|
|
|
625
626
|
*SequencesApi* | [**get_sequence**](docs/SequencesApi.md#get_sequence) | **GET** /api/sequences/{scope}/{code} | [EARLY ACCESS] GetSequence: Get a specified sequence
|
|
626
627
|
*SequencesApi* | [**list_sequences**](docs/SequencesApi.md#list_sequences) | **GET** /api/sequences | [EARLY ACCESS] ListSequences: List Sequences
|
|
627
628
|
*SequencesApi* | [**next**](docs/SequencesApi.md#next) | **GET** /api/sequences/{scope}/{code}/next | [EARLY ACCESS] Next: Get next values from sequence
|
|
629
|
+
*StagingRuleSetApi* | [**create_staging_rule_set**](docs/StagingRuleSetApi.md#create_staging_rule_set) | **POST** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] CreateStagingRuleSet: Create a StagingRuleSet
|
|
630
|
+
*StagingRuleSetApi* | [**delete_staging_rule_set**](docs/StagingRuleSetApi.md#delete_staging_rule_set) | **DELETE** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] DeleteStagingRuleSet: Delete a StagingRuleSet
|
|
631
|
+
*StagingRuleSetApi* | [**get_staging_rule_set**](docs/StagingRuleSetApi.md#get_staging_rule_set) | **GET** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] GetStagingRuleSet: Get a StagingRuleSet
|
|
632
|
+
*StagingRuleSetApi* | [**list_staging_rule_sets**](docs/StagingRuleSetApi.md#list_staging_rule_sets) | **GET** /api/stagingrulesets | [EXPERIMENTAL] ListStagingRuleSets: List StagingRuleSets
|
|
633
|
+
*StagingRuleSetApi* | [**update_staging_rule_set**](docs/StagingRuleSetApi.md#update_staging_rule_set) | **PUT** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] UpdateStagingRuleSet: Update a StagingRuleSet
|
|
628
634
|
*StructuredResultDataApi* | [**create_data_map**](docs/StructuredResultDataApi.md#create_data_map) | **POST** /api/unitresults/datamap/{scope} | [EXPERIMENTAL] CreateDataMap: Create data map
|
|
629
635
|
*StructuredResultDataApi* | [**delete_structured_result_data**](docs/StructuredResultDataApi.md#delete_structured_result_data) | **POST** /api/unitresults/{scope}/$delete | [EXPERIMENTAL] DeleteStructuredResultData: Delete structured result data
|
|
630
636
|
*StructuredResultDataApi* | [**get_address_key_definitions_for_document**](docs/StructuredResultDataApi.md#get_address_key_definitions_for_document) | **GET** /api/unitresults/virtualdocument/{scope}/{code}/{source}/{resultType}/addresskeydefinitions | [EARLY ACCESS] GetAddressKeyDefinitionsForDocument: Get AddressKeyDefinitions for a virtual document.
|
|
@@ -889,6 +895,7 @@ Class | Method | HTTP request | Description
|
|
|
889
895
|
- [CreateRelationshipDefinitionRequest](docs/CreateRelationshipDefinitionRequest.md)
|
|
890
896
|
- [CreateRelationshipRequest](docs/CreateRelationshipRequest.md)
|
|
891
897
|
- [CreateSequenceRequest](docs/CreateSequenceRequest.md)
|
|
898
|
+
- [CreateStagingRuleSetRequest](docs/CreateStagingRuleSetRequest.md)
|
|
892
899
|
- [CreateTaxRuleSetRequest](docs/CreateTaxRuleSetRequest.md)
|
|
893
900
|
- [CreateTradeTicketsResponse](docs/CreateTradeTicketsResponse.md)
|
|
894
901
|
- [CreateTransactionPortfolioRequest](docs/CreateTransactionPortfolioRequest.md)
|
|
@@ -1241,6 +1248,7 @@ Class | Method | HTTP request | Description
|
|
|
1241
1248
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
|
1242
1249
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
|
1243
1250
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
|
1251
|
+
- [PagedResourceListOfStagingRuleSet](docs/PagedResourceListOfStagingRuleSet.md)
|
|
1244
1252
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
|
1245
1253
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
|
1246
1254
|
- [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
|
|
@@ -1453,6 +1461,7 @@ Class | Method | HTTP request | Description
|
|
|
1453
1461
|
- [SetLegalEntityPropertiesRequest](docs/SetLegalEntityPropertiesRequest.md)
|
|
1454
1462
|
- [SetPersonIdentifiersRequest](docs/SetPersonIdentifiersRequest.md)
|
|
1455
1463
|
- [SetPersonPropertiesRequest](docs/SetPersonPropertiesRequest.md)
|
|
1464
|
+
- [SetShareClassInstrumentsRequest](docs/SetShareClassInstrumentsRequest.md)
|
|
1456
1465
|
- [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
|
|
1457
1466
|
- [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
|
|
1458
1467
|
- [SideConfigurationData](docs/SideConfigurationData.md)
|
|
@@ -1463,6 +1472,10 @@ Class | Method | HTTP request | Description
|
|
|
1463
1472
|
- [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
|
|
1464
1473
|
- [SimpleInstrument](docs/SimpleInstrument.md)
|
|
1465
1474
|
- [SortOrder](docs/SortOrder.md)
|
|
1475
|
+
- [StagingRule](docs/StagingRule.md)
|
|
1476
|
+
- [StagingRuleApprovalCriteria](docs/StagingRuleApprovalCriteria.md)
|
|
1477
|
+
- [StagingRuleMatchCriteria](docs/StagingRuleMatchCriteria.md)
|
|
1478
|
+
- [StagingRuleSet](docs/StagingRuleSet.md)
|
|
1466
1479
|
- [StepSchedule](docs/StepSchedule.md)
|
|
1467
1480
|
- [StockSplitEvent](docs/StockSplitEvent.md)
|
|
1468
1481
|
- [Stream](docs/Stream.md)
|
|
@@ -1548,6 +1561,7 @@ Class | Method | HTTP request | Description
|
|
|
1548
1561
|
- [UpdatePropertyDefinitionRequest](docs/UpdatePropertyDefinitionRequest.md)
|
|
1549
1562
|
- [UpdateReconciliationRequest](docs/UpdateReconciliationRequest.md)
|
|
1550
1563
|
- [UpdateRelationshipDefinitionRequest](docs/UpdateRelationshipDefinitionRequest.md)
|
|
1564
|
+
- [UpdateStagingRuleSetRequest](docs/UpdateStagingRuleSetRequest.md)
|
|
1551
1565
|
- [UpdateTaxRuleSetRequest](docs/UpdateTaxRuleSetRequest.md)
|
|
1552
1566
|
- [UpdateUnitRequest](docs/UpdateUnitRequest.md)
|
|
1553
1567
|
- [UpsertCdsFlowConventionsRequest](docs/UpsertCdsFlowConventionsRequest.md)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
2
|
-
lusid/api/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=EQK9tQOiC7QAoJGo8UE_pNfiMCGfEk49qcmCaWIpnFs,102340
|
|
2
|
+
lusid/api/__init__.py,sha256=YLItLvUuZfBp40i0JAN__zT6iZVl_lW3wDCU1HGd6-M,5283
|
|
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
|
|
@@ -23,7 +23,7 @@ lusid/api/data_types_api.py,sha256=EQ3yzW21xj7Dgxf_BGNqd6BMUIyjCsKIaXLjwHZuAB0,7
|
|
|
23
23
|
lusid/api/derived_transaction_portfolios_api.py,sha256=hncRVE3KtxoHSHGZOFf0GGPD9TWSVmcgLa5WNMI4CWQ,20221
|
|
24
24
|
lusid/api/entities_api.py,sha256=W2uFKv2Z20p-n1JJwpYqW7gaUt0jsGQAJFUgBZcsBSc,10437
|
|
25
25
|
lusid/api/executions_api.py,sha256=bkZ17d5H6cNvw38fPalxVr5OiTR3ZV0yLp16AFYTjrk,44429
|
|
26
|
-
lusid/api/funds_api.py,sha256=
|
|
26
|
+
lusid/api/funds_api.py,sha256=bgkNz8utUOQktRjWJbdMrz5uU80SssP-tToC_o9RuVQ,69638
|
|
27
27
|
lusid/api/instrument_event_types_api.py,sha256=h-cToquxz4MOrs5wTaiDMPXiCryv0mSw0s1MdJCd2GQ,81540
|
|
28
28
|
lusid/api/instrument_events_api.py,sha256=oF1UskrI1z8Rox-55dsgmHIOD10WyPoAI9hApsk5kT8,45405
|
|
29
29
|
lusid/api/instruments_api.py,sha256=_dEsRxGdTF-4lG6AVCYh8zgb_pdDmHNOK2lg5nAC_6o,281327
|
|
@@ -54,6 +54,7 @@ lusid/api/scopes_api.py,sha256=huZ6UOLN6Mh91hUeqT_VZJO1jzy6EQEBj9ASmQB-cAk,16384
|
|
|
54
54
|
lusid/api/scripted_translation_api.py,sha256=RaniqqVQwyVrJAJZrVSwtiuSYGZOiOEHXPUM4gK7bHE,84042
|
|
55
55
|
lusid/api/search_api.py,sha256=K69ZwT8JE4kXJ4ZWjY71Xg5cHOxYY8jrtdx7S8nBMkE,58527
|
|
56
56
|
lusid/api/sequences_api.py,sha256=942BSnzeEmfH5R46uXQAeM0l8G5BAAxCrPjg4aLgnxA,37454
|
|
57
|
+
lusid/api/staging_rule_set_api.py,sha256=uKK1DIEhmacN8gKUqiAWVXeuad2YWyLm1ghXgyaQVnQ,49940
|
|
57
58
|
lusid/api/structured_result_data_api.py,sha256=M93sy22sm7rcebryyE_lrUsmBa1ov6r2wZU8q8C3gIs,112483
|
|
58
59
|
lusid/api/system_configuration_api.py,sha256=VaDXmsgDYhTbshO7hRLQEezpjUe8mb6CfyXJ84EPkl4,62048
|
|
59
60
|
lusid/api/tax_rule_sets_api.py,sha256=PRk9ThxUMGjJ_0rWscJHLQl2PgZ0spANKTSCICMrxaw,50018
|
|
@@ -63,7 +64,7 @@ lusid/api/transaction_portfolios_api.py,sha256=Q-RvuNmYL4drz4LeytNHRCmvrWwxfnPnT
|
|
|
63
64
|
lusid/api/translation_api.py,sha256=8_YL07_CYCI-FV4jMdiq7zlsDXqvkPMFQPyT6NL4jvU,20086
|
|
64
65
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
65
66
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
66
|
-
lusid/configuration.py,sha256=
|
|
67
|
+
lusid/configuration.py,sha256=fzyWm34IcsnIj0bRgFOMEeRKCz1m-FiebwjrUIBIghI,14404
|
|
67
68
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
68
69
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
69
70
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -76,7 +77,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
76
77
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
77
78
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
78
79
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
79
|
-
lusid/models/__init__.py,sha256=
|
|
80
|
+
lusid/models/__init__.py,sha256=tSErjzxjmRT7ThzdR551H_07oEWtwlVmwVoURiBzEps,96099
|
|
80
81
|
lusid/models/a2_b_breakdown.py,sha256=MmG2do_CuV3zyMZJP0BORoG_jTe0G308IjBYhSZbpUw,2944
|
|
81
82
|
lusid/models/a2_b_category.py,sha256=DKiB3y93L3-MXpqRqGo93PeFlvD4ZjnQfH489NRLQVc,2722
|
|
82
83
|
lusid/models/a2_b_data_record.py,sha256=Xey2yvdCY9D-oBM_0Z5QIxboMAIzxKAgHcrvKie7Ypk,9734
|
|
@@ -249,11 +250,11 @@ lusid/models/create_cut_label_definition_request.py,sha256=wfWpkFwehkihecK5A58bj
|
|
|
249
250
|
lusid/models/create_data_map_request.py,sha256=IF0E_xI-2SVTo7qF1fA7MA2JQV0nBNHt_oMH2HaLudc,2475
|
|
250
251
|
lusid/models/create_data_type_request.py,sha256=D7ZXjQXolelTatTuUS9Ni_fPpG37xAnOu4D3XWmgAxc,8055
|
|
251
252
|
lusid/models/create_date_request.py,sha256=K0KVdbYccw-WMeGYfAIg45eWfIWYEI8PtHDXWZyEtMQ,4782
|
|
252
|
-
lusid/models/create_derived_property_definition_request.py,sha256=
|
|
253
|
+
lusid/models/create_derived_property_definition_request.py,sha256=bQk27EHhtH8b9DuovQzDnqgkJxLMR1jZt2Pbwx6GbQQ,5948
|
|
253
254
|
lusid/models/create_derived_transaction_portfolio_request.py,sha256=iwn5XQE6rvgCfS1b9rGIZ23We8FIfBakRBFNNNTCTBQ,9642
|
|
254
255
|
lusid/models/create_portfolio_details.py,sha256=mFlulbLBeE0e-N6-hoQRwWHhDUbZPd8NO7NV8U4UiRk,2361
|
|
255
256
|
lusid/models/create_portfolio_group_request.py,sha256=ltsPuzQGyZretFlfC6C3mNIJP28mw6pRynsJPW5RYYI,6129
|
|
256
|
-
lusid/models/create_property_definition_request.py,sha256=
|
|
257
|
+
lusid/models/create_property_definition_request.py,sha256=oIt4YodEo0ZaGEpjQo1JUA3LQJZsW-LMHZqARtPMV_g,7426
|
|
257
258
|
lusid/models/create_recipe_request.py,sha256=3pEtX1XZQxjFNxSHGfKasSa5NqrKW82O4XClV-NsRBY,3730
|
|
258
259
|
lusid/models/create_reconciliation_request.py,sha256=lsNlQ-UDjSg-SzVejdMdJP1aS5QMiBGBQjcGKtLlUz8,6388
|
|
259
260
|
lusid/models/create_reference_portfolio_request.py,sha256=vq1Nwbuwc8RPJ2Jirn0cYnxLcZD99_Ts1I5QpP_qVgE,5015
|
|
@@ -262,6 +263,7 @@ lusid/models/create_relation_request.py,sha256=-9SVap4zJ0iktPXsoCQCAqOcZfzpxh1So
|
|
|
262
263
|
lusid/models/create_relationship_definition_request.py,sha256=qTuDRfksezzh_Fak6QZC-uXxaHzv19PoEOpmat2EL80,6599
|
|
263
264
|
lusid/models/create_relationship_request.py,sha256=UOemiknOezPGK8G4aqde9Y122jZDUUgQccSwyQcrlfI,4057
|
|
264
265
|
lusid/models/create_sequence_request.py,sha256=Farmz6CF2US6ZR4HoG06yIWAtF7fG-0r5JZ5sBW49l8,4882
|
|
266
|
+
lusid/models/create_staging_rule_set_request.py,sha256=M-vArxyOpkSW4Eca2BQKJ-Gj35ivzU5JOHEz2txa8Qw,3347
|
|
265
267
|
lusid/models/create_tax_rule_set_request.py,sha256=VCPozA_IvYUeROVppLBKZ4703CdG2a0BTEAKn8SHeP8,3737
|
|
266
268
|
lusid/models/create_trade_tickets_response.py,sha256=cpa_2jCxwEGnaqrbWBO1RmhJXJh1fVZW6qKxZDV5BCw,2958
|
|
267
269
|
lusid/models/create_transaction_portfolio_request.py,sha256=eXv4iOR0zZGDM74ljsTFa_fF62KmPpt8AyL9J24JEtU,10385
|
|
@@ -377,7 +379,7 @@ lusid/models/forward_rate_agreement.py,sha256=KYktaQyiZfQfOLLVOYwbfClIYpiQq5Vxqu
|
|
|
377
379
|
lusid/models/from_recipe.py,sha256=FY1tuJJTdWumPX9qwyT_27-yVfQjfBVqyjJzEeQSiSg,2258
|
|
378
380
|
lusid/models/fund.py,sha256=F5ONwY6I6kJYrqi4f_yCLrpP3wEwEUuXIF2ShuIHiiw,8475
|
|
379
381
|
lusid/models/fund_properties.py,sha256=BEnVAQE_N26-2_xugtkhbyDY4m-l85-I57PuiA-zhrk,4239
|
|
380
|
-
lusid/models/fund_request.py,sha256=
|
|
382
|
+
lusid/models/fund_request.py,sha256=q5V0ifqSauXEbswZ1R5jGfUwLdPKFboY8HecA7dxt4g,7862
|
|
381
383
|
lusid/models/fund_share_class.py,sha256=dGCPHX_SGUei-8dRQbnVgCCfjiUOdJ8Z9wQXXzf-I_Q,6549
|
|
382
384
|
lusid/models/funding_leg.py,sha256=qejNziErzVaDnC17JvyrEiUhMBWikfCb-SKbTFSHnF0,7381
|
|
383
385
|
lusid/models/funding_leg_options.py,sha256=8R922n9hPhaaez4sbCr7moDSv3nApt9Amtj0xqDvD-I,3512
|
|
@@ -614,6 +616,7 @@ lusid/models/paged_resource_list_of_reconciliation.py,sha256=bhS07E9p4X7rVrVi9dS
|
|
|
614
616
|
lusid/models/paged_resource_list_of_reference_list_response.py,sha256=_cXf2elmGLOrTAnv0wNpoV0m-fy3TfU1NWhLQ_0H3_Y,4225
|
|
615
617
|
lusid/models/paged_resource_list_of_relationship_definition.py,sha256=YV75ebl_K6G_qygD6Jiaf7rslyJX0cdgOtWaQa45Db8,4236
|
|
616
618
|
lusid/models/paged_resource_list_of_sequence_definition.py,sha256=YgPVUaT2qZzerJSohfeYmSGClhhlQpyErcCfofH5vNU,4188
|
|
619
|
+
lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=Hxy_aL2P5v-lkZ9aloRmT_Fh4XPexXg6SHV-BweC4ww,4141
|
|
617
620
|
lusid/models/paged_resource_list_of_transaction_template.py,sha256=iZjlmACjqFxnjDuK82x4KHsU-Bql31BCFjqvKjxW_u0,4200
|
|
618
621
|
lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=Kh6p0AoJABDSWXSSvcr9zU6qfPAOYRaWeemc-lDpUXA,4357
|
|
619
622
|
lusid/models/paged_resource_list_of_translation_script_id.py,sha256=MuVKq0kTNqdelvHfvXrF3yS3ut4op2mWO0KGoZz9L-U,4201
|
|
@@ -665,10 +668,10 @@ lusid/models/pricing_context.py,sha256=7x9V7Kq5yx2VvdBZS4KAzzD3Z8dhUE7MI56IY2zxA
|
|
|
665
668
|
lusid/models/pricing_model.py,sha256=DqxFxGtRJHj3BIDdHqND5MwI9X3d1jh6cPc3hDkzuCk,1447
|
|
666
669
|
lusid/models/pricing_options.py,sha256=nIopy4NbXwd9VWMACA7gcJ9UmSKPkaxaBgecFd-TQ_s,7958
|
|
667
670
|
lusid/models/processed_command.py,sha256=8YPJG_jv_jU3ZcuR8HcKRoTKw1R7pghI3JvKqxWuZoc,2967
|
|
668
|
-
lusid/models/property_definition.py,sha256=
|
|
669
|
-
lusid/models/property_definition_search_result.py,sha256=
|
|
671
|
+
lusid/models/property_definition.py,sha256=n-04bvKNEUiHP6DzBGiMbNalHsBlDguiq9-hbVEohMk,14733
|
|
672
|
+
lusid/models/property_definition_search_result.py,sha256=wA4TFkc-mpr6c44fdo8cc2YA0QDVw6ILObHWmM4MfAg,12848
|
|
670
673
|
lusid/models/property_definition_type.py,sha256=0OhOMXLaFU6yGWTx0XfyrbQL3LSWYiVW2eFE6D9y9Pw,731
|
|
671
|
-
lusid/models/property_domain.py,sha256=
|
|
674
|
+
lusid/models/property_domain.py,sha256=MNG4tthOwsty0M1d0yPUcZrQg3KK3tKesqp3xLQYhog,2060
|
|
672
675
|
lusid/models/property_filter.py,sha256=z2FeYifdeLyONlKFxP9eLJo0WmAFY1nGVDGU3yL7NCc,3644
|
|
673
676
|
lusid/models/property_interval.py,sha256=vClxXX09qL4CVpDbfhX3rcFrHVGYJ1zf02iYJNgaiTw,3218
|
|
674
677
|
lusid/models/property_key_compliance_parameter.py,sha256=x2SkLNVx3iXmsKHJ2M6wbhy0r4C953FkLHVbGZBDj6k,5210
|
|
@@ -826,6 +829,7 @@ lusid/models/set_legal_entity_identifiers_request.py,sha256=ZISMFHbKpDF8iAe7fLma
|
|
|
826
829
|
lusid/models/set_legal_entity_properties_request.py,sha256=UOZTEHrX1go9hYIRwK9lw_rN51y5dYmApq0T8l-yilw,2980
|
|
827
830
|
lusid/models/set_person_identifiers_request.py,sha256=5sWcR9xnksJOHPxOm0uWm3tqlm0ZLkpQG_RMcjq4o70,2896
|
|
828
831
|
lusid/models/set_person_properties_request.py,sha256=vT6jfBgm2yi1mAA91ehMWOOq8znDHXMXZTK2a6d_mqk,2694
|
|
832
|
+
lusid/models/set_share_class_instruments_request.py,sha256=4qqF-vt2iMookexjEcr3NfYL192PmqVaiplLD0zhNho,3080
|
|
829
833
|
lusid/models/set_transaction_configuration_alias.py,sha256=AvA-QbuqzxtL-9A6JFkFAq30rniE2tqj_cqBv3Vqu3U,2933
|
|
830
834
|
lusid/models/set_transaction_configuration_source_request.py,sha256=UhvJfkaqXZ9Y0CeY7KEEPapN4Qxf4e4VPJFy5yBMYeA,4223
|
|
831
835
|
lusid/models/side_configuration_data.py,sha256=iT7rPjwXwN535P-ObpFwzSgceSwXXPWmDv5LuhmrqdA,3515
|
|
@@ -836,6 +840,10 @@ lusid/models/sides_definition_request.py,sha256=Gr2sRchGc4kcOKi6pP_rqVuNZEITuXe2
|
|
|
836
840
|
lusid/models/simple_cash_flow_loan.py,sha256=8ohdLNBIbKHjd4QcR6I7Bh3tHXzu4M4x_rmqcB2ncuM,6269
|
|
837
841
|
lusid/models/simple_instrument.py,sha256=HPS0Lv9d-ZSR4b9KiRoYxOm6Jtt47w_vQmnpCVAmxXw,6775
|
|
838
842
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
|
843
|
+
lusid/models/staging_rule.py,sha256=MJApQWS124iMbLIjDFKgxoPJYbC7Ft0i2YhIHHtlJkQ,3557
|
|
844
|
+
lusid/models/staging_rule_approval_criteria.py,sha256=5mumHS8T2C1C77xx8uBVc14SowfCiqEbzoUtH1huIaU,2684
|
|
845
|
+
lusid/models/staging_rule_match_criteria.py,sha256=NVNH-vBKJwBaXpm0oUOMRNx6MnWH-juJnWI-4DaOuls,3558
|
|
846
|
+
lusid/models/staging_rule_set.py,sha256=U28OQZQ7FH0AmplciV3K6FS8jP8cBxp7JMg7WYQNto8,4193
|
|
839
847
|
lusid/models/step_schedule.py,sha256=92aya4yzyY0GQHS4b-HIyqXHmW1QOZbM5xg_XjA3SX8,4501
|
|
840
848
|
lusid/models/stock_split_event.py,sha256=2H2k5zeCMrxasGxO5Q1AW8d-uFnsRi6oCHoRTFbJEs8,4965
|
|
841
849
|
lusid/models/stream.py,sha256=aeDl9hmQ9wQliWkZsRs_iVLMELXD7Qo-b5BX7EN6-3Q,2862
|
|
@@ -921,6 +929,7 @@ lusid/models/update_portfolio_request.py,sha256=VRYBUnJa0lDvVPz-XOuaJQ0FJFwxrXlM
|
|
|
921
929
|
lusid/models/update_property_definition_request.py,sha256=SiSHOb_dVrlSK6bpObzVE9D1NFUXM8FeSyWMBPrOXsc,2572
|
|
922
930
|
lusid/models/update_reconciliation_request.py,sha256=1chsML4pPsMhTWQ9Vutdf4riv2YWtc2J7oanTCmtS5g,5898
|
|
923
931
|
lusid/models/update_relationship_definition_request.py,sha256=7jf49VIH-qT6bsFet84RXIQpE15F_yOBsPFqI3Dqh1I,3594
|
|
932
|
+
lusid/models/update_staging_rule_set_request.py,sha256=1lWqcFXybMnC8eudSo43eI9JdmjpqowZgTgMs6yIqA8,3347
|
|
924
933
|
lusid/models/update_tax_rule_set_request.py,sha256=VPbm1aQlDWFS5ETrVP8d6oeScGWhfvW6TldvuFVVnsM,3240
|
|
925
934
|
lusid/models/update_unit_request.py,sha256=8v3H0M5lw4TaVwb09TWwW1GrBNxc4sw1VUW_DlPeov4,3886
|
|
926
935
|
lusid/models/upsert_cds_flow_conventions_request.py,sha256=Ur3z1Muxs2n5p3P6BY3GnefC2m8ljB22LHSOi6LXdz8,2500
|
|
@@ -994,6 +1003,6 @@ lusid/models/weighted_instruments.py,sha256=M2Mr7KTAcMS40g309xatBHDhvYk3g61yigx0
|
|
|
994
1003
|
lusid/models/yield_curve_data.py,sha256=i2MHEJe9kdTTgxQFti2a6BAU7ikE0wTPXsS_sMJhrDk,6327
|
|
995
1004
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
996
1005
|
lusid/rest.py,sha256=gHQ76psf1vzmBJI14ZGVvb3f_Urp0zBBo3R5u3-kNIM,10032
|
|
997
|
-
lusid_sdk-2.0.
|
|
998
|
-
lusid_sdk-2.0.
|
|
999
|
-
lusid_sdk-2.0.
|
|
1006
|
+
lusid_sdk-2.0.468.dist-info/METADATA,sha256=HPqFP1FAQPAW-A3Rs5pIUGPYv_FmSpYF4SXMtiYAVFY,176619
|
|
1007
|
+
lusid_sdk-2.0.468.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1008
|
+
lusid_sdk-2.0.468.dist-info/RECORD,,
|
|
File without changes
|