lusid-sdk 2.1.77__py3-none-any.whl → 2.1.92__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 +24 -0
- lusid/api/__init__.py +2 -0
- lusid/api/entities_api.py +4 -4
- lusid/api/staged_modifications_api.py +762 -0
- lusid/api_response.py +1 -1
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +22 -0
- lusid/models/output_transaction.py +9 -2
- lusid/models/paged_resource_list_of_staged_modification.py +113 -0
- lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py +113 -0
- lusid/models/portfolio.py +7 -1
- lusid/models/portfolio_entity.py +40 -5
- lusid/models/portfolio_without_href.py +7 -1
- lusid/models/requested_changes.py +76 -0
- lusid/models/staged_modification.py +160 -0
- lusid/models/staged_modification_decision.py +97 -0
- lusid/models/staged_modification_decision_request.py +71 -0
- lusid/models/staged_modification_effective_range.py +71 -0
- lusid/models/staged_modification_staging_rule.py +85 -0
- lusid/models/staged_modifications_entity_hrefs.py +88 -0
- lusid/models/staged_modifications_info.py +78 -0
- lusid/models/staged_modifications_requested_change_interval.py +101 -0
- lusid/models/version.py +10 -10
- {lusid_sdk-2.1.77.dist-info → lusid_sdk-2.1.92.dist-info}/METADATA +18 -3
- {lusid_sdk-2.1.77.dist-info → lusid_sdk-2.1.92.dist-info}/RECORD +26 -14
- {lusid_sdk-2.1.77.dist-info → lusid_sdk-2.1.92.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,101 @@
|
|
|
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, StrictStr
|
|
23
|
+
from lusid.models.staged_modification_effective_range import StagedModificationEffectiveRange
|
|
24
|
+
|
|
25
|
+
class StagedModificationsRequestedChangeInterval(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
StagedModificationsRequestedChangeInterval
|
|
28
|
+
"""
|
|
29
|
+
attribute_name: Optional[StrictStr] = Field(None, alias="attributeName", description="Name of the property the change applies to.")
|
|
30
|
+
effective_range: Optional[StagedModificationEffectiveRange] = Field(None, alias="effectiveRange")
|
|
31
|
+
previous_value: Optional[Any] = Field(None, alias="previousValue", description="The previous value of the attribute before the requested change is applied.")
|
|
32
|
+
new_value: Optional[Any] = Field(None, alias="newValue", description="The value of the attribute once the requested change is applied.")
|
|
33
|
+
as_at_basis: Optional[StrictStr] = Field(None, alias="asAtBasis", description="Whether the change represents the modification when the request was made or the modification as it would be at the latest time.")
|
|
34
|
+
__properties = ["attributeName", "effectiveRange", "previousValue", "newValue", "asAtBasis"]
|
|
35
|
+
|
|
36
|
+
class Config:
|
|
37
|
+
"""Pydantic configuration"""
|
|
38
|
+
allow_population_by_field_name = True
|
|
39
|
+
validate_assignment = True
|
|
40
|
+
|
|
41
|
+
def to_str(self) -> str:
|
|
42
|
+
"""Returns the string representation of the model using alias"""
|
|
43
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
44
|
+
|
|
45
|
+
def to_json(self) -> str:
|
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
|
47
|
+
return json.dumps(self.to_dict())
|
|
48
|
+
|
|
49
|
+
@classmethod
|
|
50
|
+
def from_json(cls, json_str: str) -> StagedModificationsRequestedChangeInterval:
|
|
51
|
+
"""Create an instance of StagedModificationsRequestedChangeInterval from a JSON string"""
|
|
52
|
+
return cls.from_dict(json.loads(json_str))
|
|
53
|
+
|
|
54
|
+
def to_dict(self):
|
|
55
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
56
|
+
_dict = self.dict(by_alias=True,
|
|
57
|
+
exclude={
|
|
58
|
+
},
|
|
59
|
+
exclude_none=True)
|
|
60
|
+
# override the default output from pydantic by calling `to_dict()` of effective_range
|
|
61
|
+
if self.effective_range:
|
|
62
|
+
_dict['effectiveRange'] = self.effective_range.to_dict()
|
|
63
|
+
# set to None if attribute_name (nullable) is None
|
|
64
|
+
# and __fields_set__ contains the field
|
|
65
|
+
if self.attribute_name is None and "attribute_name" in self.__fields_set__:
|
|
66
|
+
_dict['attributeName'] = None
|
|
67
|
+
|
|
68
|
+
# set to None if previous_value (nullable) is None
|
|
69
|
+
# and __fields_set__ contains the field
|
|
70
|
+
if self.previous_value is None and "previous_value" in self.__fields_set__:
|
|
71
|
+
_dict['previousValue'] = None
|
|
72
|
+
|
|
73
|
+
# set to None if new_value (nullable) is None
|
|
74
|
+
# and __fields_set__ contains the field
|
|
75
|
+
if self.new_value is None and "new_value" in self.__fields_set__:
|
|
76
|
+
_dict['newValue'] = None
|
|
77
|
+
|
|
78
|
+
# set to None if as_at_basis (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.as_at_basis is None and "as_at_basis" in self.__fields_set__:
|
|
81
|
+
_dict['asAtBasis'] = None
|
|
82
|
+
|
|
83
|
+
return _dict
|
|
84
|
+
|
|
85
|
+
@classmethod
|
|
86
|
+
def from_dict(cls, obj: dict) -> StagedModificationsRequestedChangeInterval:
|
|
87
|
+
"""Create an instance of StagedModificationsRequestedChangeInterval from a dict"""
|
|
88
|
+
if obj is None:
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
if not isinstance(obj, dict):
|
|
92
|
+
return StagedModificationsRequestedChangeInterval.parse_obj(obj)
|
|
93
|
+
|
|
94
|
+
_obj = StagedModificationsRequestedChangeInterval.parse_obj({
|
|
95
|
+
"attribute_name": obj.get("attributeName"),
|
|
96
|
+
"effective_range": StagedModificationEffectiveRange.from_dict(obj.get("effectiveRange")) if obj.get("effectiveRange") is not None else None,
|
|
97
|
+
"previous_value": obj.get("previousValue"),
|
|
98
|
+
"new_value": obj.get("newValue"),
|
|
99
|
+
"as_at_basis": obj.get("asAtBasis")
|
|
100
|
+
})
|
|
101
|
+
return _obj
|
lusid/models/version.py
CHANGED
|
@@ -35,7 +35,8 @@ class Version(BaseModel):
|
|
|
35
35
|
request_id_modified: Optional[StrictStr] = Field(None, alias="requestIdModified", description="The unique request id of the command that last updated the entity (including its properties) in LUSID.")
|
|
36
36
|
as_at_version_number: Optional[StrictInt] = Field(None, alias="asAtVersionNumber", description="The integer version number for the entity (the entity was created at version 1)")
|
|
37
37
|
entity_unique_id: Optional[StrictStr] = Field(None, alias="entityUniqueId", description="The unique id of the entity")
|
|
38
|
-
|
|
38
|
+
staged_modification_id_modified: Optional[StrictStr] = Field(None, alias="stagedModificationIdModified", description="The ID of the staged change that resulted in the most recent modification.")
|
|
39
|
+
__properties = ["effectiveFrom", "asAtDate", "asAtCreated", "userIdCreated", "requestIdCreated", "asAtModified", "userIdModified", "requestIdModified", "asAtVersionNumber", "entityUniqueId", "stagedModificationIdModified"]
|
|
39
40
|
|
|
40
41
|
class Config:
|
|
41
42
|
"""Pydantic configuration"""
|
|
@@ -59,14 +60,7 @@ class Version(BaseModel):
|
|
|
59
60
|
"""Returns the dictionary representation of the model using alias"""
|
|
60
61
|
_dict = self.dict(by_alias=True,
|
|
61
62
|
exclude={
|
|
62
|
-
"
|
|
63
|
-
"user_id_created",
|
|
64
|
-
"request_id_created",
|
|
65
|
-
"as_at_modified",
|
|
66
|
-
"user_id_modified",
|
|
67
|
-
"request_id_modified",
|
|
68
|
-
"as_at_version_number",
|
|
69
|
-
"entity_unique_id",
|
|
63
|
+
"staged_modification_id_modified",
|
|
70
64
|
},
|
|
71
65
|
exclude_none=True)
|
|
72
66
|
# set to None if as_at_created (nullable) is None
|
|
@@ -109,6 +103,11 @@ class Version(BaseModel):
|
|
|
109
103
|
if self.entity_unique_id is None and "entity_unique_id" in self.__fields_set__:
|
|
110
104
|
_dict['entityUniqueId'] = None
|
|
111
105
|
|
|
106
|
+
# set to None if staged_modification_id_modified (nullable) is None
|
|
107
|
+
# and __fields_set__ contains the field
|
|
108
|
+
if self.staged_modification_id_modified is None and "staged_modification_id_modified" in self.__fields_set__:
|
|
109
|
+
_dict['stagedModificationIdModified'] = None
|
|
110
|
+
|
|
112
111
|
return _dict
|
|
113
112
|
|
|
114
113
|
@classmethod
|
|
@@ -130,6 +129,7 @@ class Version(BaseModel):
|
|
|
130
129
|
"user_id_modified": obj.get("userIdModified"),
|
|
131
130
|
"request_id_modified": obj.get("requestIdModified"),
|
|
132
131
|
"as_at_version_number": obj.get("asAtVersionNumber"),
|
|
133
|
-
"entity_unique_id": obj.get("entityUniqueId")
|
|
132
|
+
"entity_unique_id": obj.get("entityUniqueId"),
|
|
133
|
+
"staged_modification_id_modified": obj.get("stagedModificationIdModified")
|
|
134
134
|
})
|
|
135
135
|
return _obj
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.92
|
|
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.1.
|
|
32
|
+
- API version: 0.11.6527
|
|
33
|
+
- Package version: 2.1.92
|
|
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
|
|
|
@@ -637,6 +637,10 @@ Class | Method | HTTP request | Description
|
|
|
637
637
|
*SequencesApi* | [**get_sequence**](docs/SequencesApi.md#get_sequence) | **GET** /api/sequences/{scope}/{code} | [EARLY ACCESS] GetSequence: Get a specified sequence
|
|
638
638
|
*SequencesApi* | [**list_sequences**](docs/SequencesApi.md#list_sequences) | **GET** /api/sequences | [EARLY ACCESS] ListSequences: List Sequences
|
|
639
639
|
*SequencesApi* | [**next**](docs/SequencesApi.md#next) | **GET** /api/sequences/{scope}/{code}/next | [EARLY ACCESS] Next: Get next values from sequence
|
|
640
|
+
*StagedModificationsApi* | [**add_decision**](docs/StagedModificationsApi.md#add_decision) | **POST** /api/stagedmodifications/{id}/decision | [EXPERIMENTAL] AddDecision: AddDecision
|
|
641
|
+
*StagedModificationsApi* | [**get_staged_modification**](docs/StagedModificationsApi.md#get_staged_modification) | **GET** /api/stagedmodifications/{id} | [EXPERIMENTAL] GetStagedModification: GetStagedModification
|
|
642
|
+
*StagedModificationsApi* | [**list_requested_changes**](docs/StagedModificationsApi.md#list_requested_changes) | **GET** /api/stagedmodifications/{id}/requestedChanges | [EXPERIMENTAL] ListRequestedChanges: ListRequestedChanges
|
|
643
|
+
*StagedModificationsApi* | [**list_staged_modifications**](docs/StagedModificationsApi.md#list_staged_modifications) | **GET** /api/stagedmodifications | [EXPERIMENTAL] ListStagedModifications: ListStagedModifications
|
|
640
644
|
*StagingRuleSetApi* | [**create_staging_rule_set**](docs/StagingRuleSetApi.md#create_staging_rule_set) | **POST** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] CreateStagingRuleSet: Create a StagingRuleSet
|
|
641
645
|
*StagingRuleSetApi* | [**delete_staging_rule_set**](docs/StagingRuleSetApi.md#delete_staging_rule_set) | **DELETE** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] DeleteStagingRuleSet: Delete a StagingRuleSet
|
|
642
646
|
*StagingRuleSetApi* | [**get_staging_rule_set**](docs/StagingRuleSetApi.md#get_staging_rule_set) | **GET** /api/stagingrulesets/{entityType} | [EXPERIMENTAL] GetStagingRuleSet: Get a StagingRuleSet
|
|
@@ -1264,6 +1268,8 @@ Class | Method | HTTP request | Description
|
|
|
1264
1268
|
- [PagedResourceListOfReferenceListResponse](docs/PagedResourceListOfReferenceListResponse.md)
|
|
1265
1269
|
- [PagedResourceListOfRelationshipDefinition](docs/PagedResourceListOfRelationshipDefinition.md)
|
|
1266
1270
|
- [PagedResourceListOfSequenceDefinition](docs/PagedResourceListOfSequenceDefinition.md)
|
|
1271
|
+
- [PagedResourceListOfStagedModification](docs/PagedResourceListOfStagedModification.md)
|
|
1272
|
+
- [PagedResourceListOfStagedModificationsRequestedChangeInterval](docs/PagedResourceListOfStagedModificationsRequestedChangeInterval.md)
|
|
1267
1273
|
- [PagedResourceListOfStagingRuleSet](docs/PagedResourceListOfStagingRuleSet.md)
|
|
1268
1274
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
|
1269
1275
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
|
@@ -1386,6 +1392,7 @@ Class | Method | HTTP request | Description
|
|
|
1386
1392
|
- [RelationshipDefinition](docs/RelationshipDefinition.md)
|
|
1387
1393
|
- [RelativeDateOffset](docs/RelativeDateOffset.md)
|
|
1388
1394
|
- [Repo](docs/Repo.md)
|
|
1395
|
+
- [RequestedChanges](docs/RequestedChanges.md)
|
|
1389
1396
|
- [ResetEvent](docs/ResetEvent.md)
|
|
1390
1397
|
- [ResourceId](docs/ResourceId.md)
|
|
1391
1398
|
- [ResourceListOfAccessControlledResource](docs/ResourceListOfAccessControlledResource.md)
|
|
@@ -1494,6 +1501,14 @@ Class | Method | HTTP request | Description
|
|
|
1494
1501
|
- [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
|
|
1495
1502
|
- [SimpleInstrument](docs/SimpleInstrument.md)
|
|
1496
1503
|
- [SortOrder](docs/SortOrder.md)
|
|
1504
|
+
- [StagedModification](docs/StagedModification.md)
|
|
1505
|
+
- [StagedModificationDecision](docs/StagedModificationDecision.md)
|
|
1506
|
+
- [StagedModificationDecisionRequest](docs/StagedModificationDecisionRequest.md)
|
|
1507
|
+
- [StagedModificationEffectiveRange](docs/StagedModificationEffectiveRange.md)
|
|
1508
|
+
- [StagedModificationStagingRule](docs/StagedModificationStagingRule.md)
|
|
1509
|
+
- [StagedModificationsEntityHrefs](docs/StagedModificationsEntityHrefs.md)
|
|
1510
|
+
- [StagedModificationsInfo](docs/StagedModificationsInfo.md)
|
|
1511
|
+
- [StagedModificationsRequestedChangeInterval](docs/StagedModificationsRequestedChangeInterval.md)
|
|
1497
1512
|
- [StagingRule](docs/StagingRule.md)
|
|
1498
1513
|
- [StagingRuleApprovalCriteria](docs/StagingRuleApprovalCriteria.md)
|
|
1499
1514
|
- [StagingRuleMatchCriteria](docs/StagingRuleMatchCriteria.md)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
2
|
-
lusid/api/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=kUQ86K5EIATqlM7bT9DcHrRgR_arIWfyJiML8prSo5c,105952
|
|
2
|
+
lusid/api/__init__.py,sha256=nso_7bPeEC07g5iyuaKlm-DEjA39UZFgkwKoPe4lJQY,5488
|
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=fZRzR63xwAvWnwNUsSUNTfFNAmKGerPF50BEjG9utlA,31640
|
|
@@ -22,7 +22,7 @@ lusid/api/custom_entity_types_api.py,sha256=fLeAZaJ9Gdkfkr_UVDuqueiIxuN_5ri80dvq
|
|
|
22
22
|
lusid/api/cut_label_definitions_api.py,sha256=7sroMqRhrOXdJlHQJ6f4NbqDRwOh7ewfY2yHGopZ7KM,47049
|
|
23
23
|
lusid/api/data_types_api.py,sha256=OiQL4CRxwWd06DovdcLZbOqPx4AfbwYQ9yXYtaRqWWc,77801
|
|
24
24
|
lusid/api/derived_transaction_portfolios_api.py,sha256=cKv5mKNmTiuHzWGwupwcSBibj3Ncwv88GiEJSqmAbCY,20227
|
|
25
|
-
lusid/api/entities_api.py,sha256=
|
|
25
|
+
lusid/api/entities_api.py,sha256=kPVPA2CR-mXWhSHLga-l3R4fyhx69S7vfU47te42wng,21372
|
|
26
26
|
lusid/api/executions_api.py,sha256=84zjdPPCPB-aBjM5ntqTcEJa_kSqBSqdtqh47b0a_UY,44435
|
|
27
27
|
lusid/api/funds_api.py,sha256=s2xo4yrQeNs06nvCeDCedD7T2aB-XW8nO-ftAPG4kEk,122388
|
|
28
28
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
|
@@ -55,6 +55,7 @@ lusid/api/scopes_api.py,sha256=p8OnCyJtsYrM0I-jzmHfhMJKAXzWkl52LtGVQw5DMtc,16390
|
|
|
55
55
|
lusid/api/scripted_translation_api.py,sha256=jOeKhCjDpq3M1FU9mAH-2sbW_O3NhVuirKPtJrDbEgo,84048
|
|
56
56
|
lusid/api/search_api.py,sha256=Y6wgyv5H6EDEICDYERU_jXdAFmr0GPEe8r2BnM0KzXI,58533
|
|
57
57
|
lusid/api/sequences_api.py,sha256=NUACzaG_zcloEMFwuIxI2c2MiQNmkBULUq7qeNvZ0GQ,37460
|
|
58
|
+
lusid/api/staged_modifications_api.py,sha256=bIxy3gMkPUaxCZ13A_pBO-2_9Xk2aPMKFJvo2c4mgCY,48673
|
|
58
59
|
lusid/api/staging_rule_set_api.py,sha256=9KCTPEZsTtVeKNN9tcEuSICwWQG3z9aHd1aKY4EZsys,49946
|
|
59
60
|
lusid/api/structured_result_data_api.py,sha256=wD8NaDLKu2PrTm0mu3ZTvit8o1GtVNmwI11kPwojEEY,112489
|
|
60
61
|
lusid/api/system_configuration_api.py,sha256=aOgevINKgf3CDjXN4cW6R-eoTYfvz8me_wVHOWtqTLY,62054
|
|
@@ -64,8 +65,8 @@ lusid/api/transaction_fees_api.py,sha256=xVH3EPyc0clDSNivBO57PsKxaVNT3evVvPdfYWo
|
|
|
64
65
|
lusid/api/transaction_portfolios_api.py,sha256=q6AoYasxV3LQDossmM2BdJSo3arh526yUW34VPbxGmE,555070
|
|
65
66
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
66
67
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
67
|
-
lusid/api_response.py,sha256=
|
|
68
|
-
lusid/configuration.py,sha256=
|
|
68
|
+
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
69
|
+
lusid/configuration.py,sha256=iTZ4kA8-mrt0vxVeIs5gf7KXgZQcWnTeiAnVAf6HLok,14404
|
|
69
70
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
70
71
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
71
72
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -78,7 +79,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
78
79
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
79
80
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
80
81
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
81
|
-
lusid/models/__init__.py,sha256
|
|
82
|
+
lusid/models/__init__.py,sha256=Az0BTDsQRYlQFBa9pc8t0KCgVHTM9y3kt-6PcaQO2qQ,99507
|
|
82
83
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
|
83
84
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
|
84
85
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
|
@@ -569,7 +570,7 @@ lusid/models/order_instruction_set_request.py,sha256=QucOY45KZ2qGKFeSn4MIFAm9lmR
|
|
|
569
570
|
lusid/models/order_request.py,sha256=hOwerLbLdwdGW4bbETyml3ecg4wdNKvtnRefq6wPk1U,7833
|
|
570
571
|
lusid/models/order_set_request.py,sha256=RfOrLNJ67eLBKScPgm-eQhO0Nc0QjhO243d_u4qCfmA,2716
|
|
571
572
|
lusid/models/otc_confirmation.py,sha256=OQF6QzTdyya99HApPCZaF3rkcnSztw4GHkL-qdGh-A4,2419
|
|
572
|
-
lusid/models/output_transaction.py,sha256=
|
|
573
|
+
lusid/models/output_transaction.py,sha256=Jqbq3wjB-5OIhWM5eR2CE2nRuk7C8tkUP2-L1wORIos,13905
|
|
573
574
|
lusid/models/output_transition.py,sha256=1K7llvbd7xO0aesRTbK4AFFGn_V6ZsSyWh2o8wQrTt8,3985
|
|
574
575
|
lusid/models/package.py,sha256=Xty-TFjsHKOMbHapfg9linlIjNgGos3KanS3Z2d9t4k,5453
|
|
575
576
|
lusid/models/package_request.py,sha256=8PNCvyzho1JO-KJZqTV0u_gvNA0c7jxb2iHbPoywzWs,4383
|
|
@@ -622,6 +623,8 @@ lusid/models/paged_resource_list_of_reconciliation.py,sha256=iODKH_7NDVwlcIDirVF
|
|
|
622
623
|
lusid/models/paged_resource_list_of_reference_list_response.py,sha256=ffpB6EG7wL5aaxr7CIlP9YrGeyLorud3y9dk1gGCgMU,4228
|
|
623
624
|
lusid/models/paged_resource_list_of_relationship_definition.py,sha256=qaxiS4NZ4k3AvMB6KTLDiCHQybNs6MZsfX-vGyxQatc,4239
|
|
624
625
|
lusid/models/paged_resource_list_of_sequence_definition.py,sha256=Rygp8Id0FON4madTc6FIgmLAX3_d5cOLCLzHBGuenU4,4191
|
|
626
|
+
lusid/models/paged_resource_list_of_staged_modification.py,sha256=U8RG2vZoBh94C0NUQJ_2B3y1rPBe2RKRNhilniEAatE,4191
|
|
627
|
+
lusid/models/paged_resource_list_of_staged_modifications_requested_change_interval.py,sha256=JMmlX9AD1l1I3cld1RrOO1ThNlOki-vPdxwlcfDvFFw,4482
|
|
625
628
|
lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=KOyb_cntzRt-MYYTwJiD1KD5RkA2Ix74EOm89utWbs8,4144
|
|
626
629
|
lusid/models/paged_resource_list_of_transaction_template.py,sha256=ZmNRSNB3ffs4DmjmikmvyhlN2INUL73j__ASXiWkMVc,4203
|
|
627
630
|
lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=CUV-fdc2rz300-pq5JYr02C65JqIP8cn4fpa_oCAAJY,4360
|
|
@@ -641,11 +644,11 @@ lusid/models/place_blocks_request.py,sha256=RE2xCyRSQSV8wkzYvqF54fyMYi-FdoGqnqJn
|
|
|
641
644
|
lusid/models/placement.py,sha256=5kJMz_9t07KT3NFF2Pdsq93cozl4yvNcxpyv9o5ZmRA,9106
|
|
642
645
|
lusid/models/placement_request.py,sha256=qg7Yf6EQeqtC1l7lZ18_kFiGiNjBcrzMlScOWWaGkWM,7870
|
|
643
646
|
lusid/models/placement_set_request.py,sha256=hkljmDDqllEbAjb7J0QAp_fyDKsizX8T9x4n1UBFCmU,2672
|
|
644
|
-
lusid/models/portfolio.py,sha256=
|
|
647
|
+
lusid/models/portfolio.py,sha256=vLgosL-OAM9RIFkS84augDeHUkDNuidFAsy4PrB0J4k,12718
|
|
645
648
|
lusid/models/portfolio_cash_flow.py,sha256=Apnb2tfP3bJrBjhH69OLwiAOvn7lApH791owxr1wC8A,8997
|
|
646
649
|
lusid/models/portfolio_cash_ladder.py,sha256=cZHdUI-PZuLYXlQDxcA9zCTRPX_cHZy0-qHng9bRggU,5462
|
|
647
650
|
lusid/models/portfolio_details.py,sha256=NABbe06Xp0cl54_HwYeUsko51op7oFVlMqCENEaQVWs,9198
|
|
648
|
-
lusid/models/portfolio_entity.py,sha256=
|
|
651
|
+
lusid/models/portfolio_entity.py,sha256=9MGRDnwA5yuEhUXgOqtIoES2QYACvaIwXJSWBk4VnfI,6594
|
|
649
652
|
lusid/models/portfolio_entity_id.py,sha256=Q6Y2BocHtfoMiSWaJJqoidwPeQeaDtM_A2Qi9ufesXk,3941
|
|
650
653
|
lusid/models/portfolio_group.py,sha256=pt4ZLAFaXINyx9d8BQ9zZAlj9lIWAzVVWsQpty2PgZA,7106
|
|
651
654
|
lusid/models/portfolio_group_id_compliance_parameter.py,sha256=EKTEIf0siRNSh4j7CHdl_QOgsDPBMKff3KJ6DP8rX7I,5521
|
|
@@ -664,7 +667,7 @@ lusid/models/portfolio_return_breakdown.py,sha256=PGCCidYWkdSSzNJmZeZIEuYQBgozeF
|
|
|
664
667
|
lusid/models/portfolio_search_result.py,sha256=xMxRykRsaUoDbwtk7oFYqJeGeTEpR1BaZ8sw-4zRQJY,6669
|
|
665
668
|
lusid/models/portfolio_trade_ticket.py,sha256=29sx0JwS49GzDI65hh4YvLN1rgBGBPDOTxfJHIgtzPg,2780
|
|
666
669
|
lusid/models/portfolio_type.py,sha256=FU88oStdLwCnAk2xAWMUtJiaLbwWJKBi-rE1ZkZTs8g,712
|
|
667
|
-
lusid/models/portfolio_without_href.py,sha256=
|
|
670
|
+
lusid/models/portfolio_without_href.py,sha256=CDQjm1QHYHi1yfG5J7xNq9JfyDd7SUWabEkLxmxuUx8,12385
|
|
668
671
|
lusid/models/portfolios_reconciliation_request.py,sha256=NlI1pOGr08bwob0a4FZRRZiS6DylKDpZJA8cw7dgRsc,3001
|
|
669
672
|
lusid/models/posting_module_details.py,sha256=YtjckonotvLC-UwLecW2G12FVxlww-VkyEU4q-urvsA,3310
|
|
670
673
|
lusid/models/posting_module_request.py,sha256=x6aq23t1GtSpg60mAe3gXTRBjgIkOVqUp4qRb3tLFDs,4473
|
|
@@ -744,6 +747,7 @@ lusid/models/relationship.py,sha256=0-ns6HuERVBMgWwEmaiNCSIQ5ewT1XjPymr1t0t2a6s,
|
|
|
744
747
|
lusid/models/relationship_definition.py,sha256=npRAIrrwG26GYoljTFDrB-vpd4fQun7oCvcBcNNDCSQ,6150
|
|
745
748
|
lusid/models/relative_date_offset.py,sha256=vjd-yELXhcUmdNyv7UqEaml_-nb2VsDpUeocHxT2Vmg,3016
|
|
746
749
|
lusid/models/repo.py,sha256=coardYZkAdtxI5OBNlhu-v-eqEf8e-ypEZa4S4aN4V0,11323
|
|
750
|
+
lusid/models/requested_changes.py,sha256=kyZ8eoZCDRaN15ZIrvoJ9BRRdy8Lf1jw1MJrhjUNduY,2467
|
|
747
751
|
lusid/models/reset_event.py,sha256=fEONVPuGjLxA5gYNVqdcTqAsdAr3KjEJ35Tqo7qLLpQ,5693
|
|
748
752
|
lusid/models/resource_id.py,sha256=c3SxFZVH_E3F6lCmIMntMd6EDaeCyAF33dSrSKA9jZ0,2064
|
|
749
753
|
lusid/models/resource_list_of_access_controlled_resource.py,sha256=_zb2c9apUlsdi8mX20q_M8YX-39EX_pBhNEwAECB3yA,4224
|
|
@@ -852,6 +856,14 @@ lusid/models/sides_definition_request.py,sha256=dIwC8QWSo13i2TUv4KrpyAbo_fq-GxT7
|
|
|
852
856
|
lusid/models/simple_cash_flow_loan.py,sha256=NLVc19iiQEWnM-nUvT-hOz7vca8cG0mTXH9RIuK3iWo,6272
|
|
853
857
|
lusid/models/simple_instrument.py,sha256=gquWeXQKknx7JwuqPQNVHidMggVVXkIDTL_QSaByDSw,6778
|
|
854
858
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
|
859
|
+
lusid/models/staged_modification.py,sha256=y9ofgwWbvO6G4N5M-onHHYcJipVrZ4kpD0CEJNbGShw,8031
|
|
860
|
+
lusid/models/staged_modification_decision.py,sha256=IUIpOwYjk41vLP_nMWDzZgI354cCtM9L6Yrf-K_DP4s,3544
|
|
861
|
+
lusid/models/staged_modification_decision_request.py,sha256=6PlH7coUQUIJe1-2GcwpatO3tpcqHIBelpgrd_BZ8qQ,2257
|
|
862
|
+
lusid/models/staged_modification_effective_range.py,sha256=G9oChBwQ_358d41tVDab-j1dGqOwiaRj_wDSDJYcsIU,2256
|
|
863
|
+
lusid/models/staged_modification_staging_rule.py,sha256=lFw1OutPCR70LzJIhjiL-a6dcPGXV2e8aVAbhPsh0Qw,3295
|
|
864
|
+
lusid/models/staged_modifications_entity_hrefs.py,sha256=T11pXg42_dGxMiCbZwaXBpUWD-ZBlrnPiYioW3Br2mo,3199
|
|
865
|
+
lusid/models/staged_modifications_info.py,sha256=z2GkecAm0BLbrCmyBf5n_WzlWP-LPZW-s0io15Z5Spk,2827
|
|
866
|
+
lusid/models/staged_modifications_requested_change_interval.py,sha256=Kn_6j8tkyAazFC_ZVLw-W0suVFbnoK3t1HWfTudszUo,4346
|
|
855
867
|
lusid/models/staging_rule.py,sha256=RxvQoGTR8tShrGw4MLFhaR5L4kxdjeXK8hCGp0kagsk,3560
|
|
856
868
|
lusid/models/staging_rule_approval_criteria.py,sha256=qmAPg2CfdCQvgSiSLte1n9PAz0fYipc8oDVb2QaMIxk,2687
|
|
857
869
|
lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAktEN5cITthxm9F-w,3561
|
|
@@ -999,7 +1011,7 @@ lusid/models/value_type.py,sha256=jHK4tNBGG6VZsoUobxgcuY59JiMYF7YVSqu_tyYyL8U,12
|
|
|
999
1011
|
lusid/models/vendor_dependency.py,sha256=aoSaZxqR2Sa-oE9DAggXJMoXqnPsej_v1lcmOuwqmsM,4307
|
|
1000
1012
|
lusid/models/vendor_library.py,sha256=Fx8zktN5UuefXUGb27Pgw-N3grsyVMvjOs_3Lw_S4Ow,812
|
|
1001
1013
|
lusid/models/vendor_model_rule.py,sha256=lsuNCUYeK86M2S2iJdkTkFzqFBqFOpIutIuV40X9Nlo,6263
|
|
1002
|
-
lusid/models/version.py,sha256=
|
|
1014
|
+
lusid/models/version.py,sha256=_IlO_C6dsWF0rU4duap_dszj2wqPYGm5QvAWP_ZBw5o,6791
|
|
1003
1015
|
lusid/models/version_summary_dto.py,sha256=EjzyYugLxgsO8_myJU-egpQhRKdYD8AIljKRE2hZh14,3584
|
|
1004
1016
|
lusid/models/versioned_resource_list_of_a2_b_data_record.py,sha256=3X4yY5NWFUONWvWDFU4y6xne9BTmYIzI4Mh31_Cb0QY,4522
|
|
1005
1017
|
lusid/models/versioned_resource_list_of_a2_b_movement_record.py,sha256=rTddKkdkTeYGLNi00LwFiyva2i_ayLiNQ3-flIhdj8I,4570
|
|
@@ -1021,6 +1033,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1021
1033
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1022
1034
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1023
1035
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1024
|
-
lusid_sdk-2.1.
|
|
1025
|
-
lusid_sdk-2.1.
|
|
1026
|
-
lusid_sdk-2.1.
|
|
1036
|
+
lusid_sdk-2.1.92.dist-info/METADATA,sha256=7hJWYImLvrmeBL-DJxK16_RDy7m-wJgEfSZHZnMYAwA,182217
|
|
1037
|
+
lusid_sdk-2.1.92.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1038
|
+
lusid_sdk-2.1.92.dist-info/RECORD,,
|
|
File without changes
|