lusid-sdk 2.1.791__py3-none-any.whl → 2.1.792__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/api/investor_records_api.py +169 -0
- lusid/configuration.py +1 -1
- lusid/models/output_transaction.py +12 -5
- lusid/models/transaction.py +3 -3
- lusid/models/transaction_query_parameters.py +16 -2
- lusid/models/transaction_status.py +3 -0
- {lusid_sdk-2.1.791.dist-info → lusid_sdk-2.1.792.dist-info}/METADATA +2 -1
- {lusid_sdk-2.1.791.dist-info → lusid_sdk-2.1.792.dist-info}/RECORD +9 -9
- {lusid_sdk-2.1.791.dist-info → lusid_sdk-2.1.792.dist-info}/WHEEL +0 -0
@@ -26,6 +26,7 @@ from pydantic.v1 import Field, StrictStr, conlist, constr, validator
|
|
26
26
|
|
27
27
|
from typing import Dict, Optional
|
28
28
|
|
29
|
+
from lusid.models.deleted_entity_response import DeletedEntityResponse
|
29
30
|
from lusid.models.investor_record import InvestorRecord
|
30
31
|
from lusid.models.upsert_investor_record_request import UpsertInvestorRecordRequest
|
31
32
|
from lusid.models.upsert_investor_records_response import UpsertInvestorRecordsResponse
|
@@ -56,6 +57,174 @@ class InvestorRecordsApi:
|
|
56
57
|
self.api_client = api_client
|
57
58
|
|
58
59
|
|
60
|
+
@overload
|
61
|
+
async def delete_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="The scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="The code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete.")], **kwargs) -> DeletedEntityResponse: # noqa: E501
|
62
|
+
...
|
63
|
+
|
64
|
+
@overload
|
65
|
+
def delete_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="The scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="The code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete.")], async_req: Optional[bool]=True, **kwargs) -> DeletedEntityResponse: # noqa: E501
|
66
|
+
...
|
67
|
+
|
68
|
+
@validate_arguments
|
69
|
+
def delete_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="The scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="The code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
70
|
+
"""DeleteInvestorRecord: Delete Investor Record # noqa: E501
|
71
|
+
|
72
|
+
Delete an investor record. Deletion will be valid from the investor record's creation datetime. This means that the investor record will no longer exist at any effective datetime from the asAt datetime of deletion. # noqa: E501
|
73
|
+
This method makes a synchronous HTTP request by default. To make an
|
74
|
+
asynchronous HTTP request, please pass async_req=True
|
75
|
+
|
76
|
+
>>> thread = api.delete_investor_record(id_type_scope, id_type_code, code, async_req=True)
|
77
|
+
>>> result = thread.get()
|
78
|
+
|
79
|
+
:param id_type_scope: The scope of the investor record identifier type. (required)
|
80
|
+
:type id_type_scope: str
|
81
|
+
:param id_type_code: The code of the investor record identifier type. (required)
|
82
|
+
:type id_type_code: str
|
83
|
+
:param code: Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete. (required)
|
84
|
+
:type code: str
|
85
|
+
:param async_req: Whether to execute the request asynchronously.
|
86
|
+
:type async_req: bool, optional
|
87
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
88
|
+
:param opts: Configuration options for this request
|
89
|
+
:type opts: ConfigurationOptions, optional
|
90
|
+
:return: Returns the result object.
|
91
|
+
If the method is called asynchronously,
|
92
|
+
returns the request thread.
|
93
|
+
:rtype: DeletedEntityResponse
|
94
|
+
"""
|
95
|
+
kwargs['_return_http_data_only'] = True
|
96
|
+
if '_preload_content' in kwargs:
|
97
|
+
message = "Error! Please call the delete_investor_record_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
98
|
+
raise ValueError(message)
|
99
|
+
if async_req is not None:
|
100
|
+
kwargs['async_req'] = async_req
|
101
|
+
return self.delete_investor_record_with_http_info(id_type_scope, id_type_code, code, **kwargs) # noqa: E501
|
102
|
+
|
103
|
+
@validate_arguments
|
104
|
+
def delete_investor_record_with_http_info(self, id_type_scope : Annotated[StrictStr, Field(..., description="The scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="The code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete.")], **kwargs) -> ApiResponse: # noqa: E501
|
105
|
+
"""DeleteInvestorRecord: Delete Investor Record # noqa: E501
|
106
|
+
|
107
|
+
Delete an investor record. Deletion will be valid from the investor record's creation datetime. This means that the investor record will no longer exist at any effective datetime from the asAt datetime of deletion. # noqa: E501
|
108
|
+
This method makes a synchronous HTTP request by default. To make an
|
109
|
+
asynchronous HTTP request, please pass async_req=True
|
110
|
+
|
111
|
+
>>> thread = api.delete_investor_record_with_http_info(id_type_scope, id_type_code, code, async_req=True)
|
112
|
+
>>> result = thread.get()
|
113
|
+
|
114
|
+
:param id_type_scope: The scope of the investor record identifier type. (required)
|
115
|
+
:type id_type_scope: str
|
116
|
+
:param id_type_code: The code of the investor record identifier type. (required)
|
117
|
+
:type id_type_code: str
|
118
|
+
:param code: Code of the investor record under specified identifier type's scope and code. This together with defined identifier type uniquely identifies the investor record to delete. (required)
|
119
|
+
:type code: str
|
120
|
+
:param async_req: Whether to execute the request asynchronously.
|
121
|
+
:type async_req: bool, optional
|
122
|
+
:param _preload_content: if False, the ApiResponse.data will
|
123
|
+
be set to none and raw_data will store the
|
124
|
+
HTTP response body without reading/decoding.
|
125
|
+
Default is True.
|
126
|
+
:type _preload_content: bool, optional
|
127
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
128
|
+
object with status code, headers, etc
|
129
|
+
:type _return_http_data_only: bool, optional
|
130
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
131
|
+
:param opts: Configuration options for this request
|
132
|
+
:type opts: ConfigurationOptions, optional
|
133
|
+
:param _request_auth: set to override the auth_settings for an a single
|
134
|
+
request; this effectively ignores the authentication
|
135
|
+
in the spec for a single request.
|
136
|
+
:type _request_auth: dict, optional
|
137
|
+
:type _content_type: string, optional: force content-type for the request
|
138
|
+
:return: Returns the result object.
|
139
|
+
If the method is called asynchronously,
|
140
|
+
returns the request thread.
|
141
|
+
:rtype: tuple(DeletedEntityResponse, status_code(int), headers(HTTPHeaderDict))
|
142
|
+
"""
|
143
|
+
|
144
|
+
_params = locals()
|
145
|
+
|
146
|
+
_all_params = [
|
147
|
+
'id_type_scope',
|
148
|
+
'id_type_code',
|
149
|
+
'code'
|
150
|
+
]
|
151
|
+
_all_params.extend(
|
152
|
+
[
|
153
|
+
'async_req',
|
154
|
+
'_return_http_data_only',
|
155
|
+
'_preload_content',
|
156
|
+
'_request_timeout',
|
157
|
+
'_request_auth',
|
158
|
+
'_content_type',
|
159
|
+
'_headers',
|
160
|
+
'opts'
|
161
|
+
]
|
162
|
+
)
|
163
|
+
|
164
|
+
# validate the arguments
|
165
|
+
for _key, _val in _params['kwargs'].items():
|
166
|
+
if _key not in _all_params:
|
167
|
+
raise ApiTypeError(
|
168
|
+
"Got an unexpected keyword argument '%s'"
|
169
|
+
" to method delete_investor_record" % _key
|
170
|
+
)
|
171
|
+
_params[_key] = _val
|
172
|
+
del _params['kwargs']
|
173
|
+
|
174
|
+
_collection_formats = {}
|
175
|
+
|
176
|
+
# process the path parameters
|
177
|
+
_path_params = {}
|
178
|
+
if _params['id_type_scope']:
|
179
|
+
_path_params['idTypeScope'] = _params['id_type_scope']
|
180
|
+
|
181
|
+
if _params['id_type_code']:
|
182
|
+
_path_params['idTypeCode'] = _params['id_type_code']
|
183
|
+
|
184
|
+
if _params['code']:
|
185
|
+
_path_params['code'] = _params['code']
|
186
|
+
|
187
|
+
|
188
|
+
# process the query parameters
|
189
|
+
_query_params = []
|
190
|
+
# process the header parameters
|
191
|
+
_header_params = dict(_params.get('_headers', {}))
|
192
|
+
# process the form parameters
|
193
|
+
_form_params = []
|
194
|
+
_files = {}
|
195
|
+
# process the body parameter
|
196
|
+
_body_params = None
|
197
|
+
# set the HTTP header `Accept`
|
198
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
199
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
200
|
+
|
201
|
+
# authentication setting
|
202
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
203
|
+
|
204
|
+
_response_types_map = {
|
205
|
+
'200': "DeletedEntityResponse",
|
206
|
+
'400': "LusidValidationProblemDetails",
|
207
|
+
}
|
208
|
+
|
209
|
+
return self.api_client.call_api(
|
210
|
+
'/api/investorrecords/{idTypeScope}/{idTypeCode}/{code}', 'DELETE',
|
211
|
+
_path_params,
|
212
|
+
_query_params,
|
213
|
+
_header_params,
|
214
|
+
body=_body_params,
|
215
|
+
post_params=_form_params,
|
216
|
+
files=_files,
|
217
|
+
response_types_map=_response_types_map,
|
218
|
+
auth_settings=_auth_settings,
|
219
|
+
async_req=_params.get('async_req'),
|
220
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
221
|
+
_preload_content=_params.get('_preload_content', True),
|
222
|
+
_request_timeout=_params.get('_request_timeout'),
|
223
|
+
opts=_params.get('opts'),
|
224
|
+
collection_formats=_collection_formats,
|
225
|
+
_request_auth=_params.get('_request_auth'))
|
226
|
+
|
227
|
+
|
59
228
|
@overload
|
60
229
|
async def get_investor_record(self, id_type_scope : Annotated[StrictStr, Field(..., description="Scope of the investor record identifier type.")], id_type_code : Annotated[StrictStr, Field(..., description="Code of the investor record identifier type.")], code : Annotated[StrictStr, Field(..., description="Code of the investor record under specified identifier type's scope and code. This together with stated identifier type uniquely identifies the investor record.")], property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys or identifier types (as property keys) from the \"InvestorRecord\" domain to include for found investor record, or from any domain that supports relationships to decorate onto related entities. These take the format {domain}/{scope}/{code} e.g. \"InvestorRecord/ContactDetails/Address\".")] = None, effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which to retrieve the investor record. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the investor record. Defaults to return the latest version of the investor record if not specified.")] = None, relationship_definition_ids : Annotated[Optional[conlist(StrictStr)], Field(description="A list of relationship definitions that are used to decorate related entities onto the investor record in the response. These must take the form {relationshipDefinitionScope}/{relationshipDefinitionCode}.")] = None, **kwargs) -> InvestorRecord: # noqa: E501
|
61
230
|
...
|
lusid/configuration.py
CHANGED
@@ -445,7 +445,7 @@ class Configuration:
|
|
445
445
|
return "Python SDK Debug Report:\n"\
|
446
446
|
"OS: {env}\n"\
|
447
447
|
"Python Version: {pyversion}\n"\
|
448
|
-
"Version of the API: 0.11.
|
448
|
+
"Version of the API: 0.11.7785\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -51,7 +51,7 @@ class OutputTransaction(BaseModel):
|
|
51
51
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="Set of unique transaction properties and associated values to stored with the transaction. Each property will be from the 'Transaction' domain.")
|
52
52
|
counterparty_id: Optional[StrictStr] = Field(None,alias="counterpartyId", description="The identifier for the counterparty of the transaction.")
|
53
53
|
source: Optional[StrictStr] = Field(None,alias="source", description="The source of the transaction. This is used to look up the appropriate transaction group set in the transaction type configuration.")
|
54
|
-
transaction_status: Optional[StrictStr] = Field(None,alias="transactionStatus", description="The status of the transaction. The available values are: Active, Amended, Cancelled")
|
54
|
+
transaction_status: Optional[StrictStr] = Field(None,alias="transactionStatus", description="The status of the transaction. The available values are: Active, Amended, Cancelled, ActiveReversal, ActiveTrueUp, CancelledTrueUp")
|
55
55
|
entry_date_time: Optional[datetime] = Field(None, alias="entryDateTime", description="The asAt datetime that the transaction was added to LUSID.")
|
56
56
|
cancel_date_time: Optional[datetime] = Field(None, alias="cancelDateTime", description="If the transaction has been cancelled, the asAt datetime that the transaction was cancelled.")
|
57
57
|
realised_gain_loss: Optional[conlist(RealisedGainLoss)] = Field(None, alias="realisedGainLoss", description="The collection of realised gains or losses resulting from relevant transactions e.g. a sale transaction. The cost used in calculating the realised gain or loss is determined by the accounting method defined when the transaction portfolio is created.")
|
@@ -65,7 +65,8 @@ class OutputTransaction(BaseModel):
|
|
65
65
|
otc_confirmation: Optional[OtcConfirmation] = Field(None, alias="otcConfirmation")
|
66
66
|
order_id: Optional[ResourceId] = Field(None, alias="orderId")
|
67
67
|
allocation_id: Optional[ResourceId] = Field(None, alias="allocationId")
|
68
|
-
|
68
|
+
accounting_date: Optional[datetime] = Field(None, alias="accountingDate", description="The accounting date of the transaction.")
|
69
|
+
__properties = ["transactionId", "type", "description", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionAmount", "transactionPrice", "totalConsideration", "exchangeRate", "transactionToPortfolioRate", "transactionCurrency", "properties", "counterpartyId", "source", "transactionStatus", "entryDateTime", "cancelDateTime", "realisedGainLoss", "holdingIds", "sourceType", "sourceInstrumentEventId", "custodianAccount", "transactionGroupId", "resolvedTransactionTypeDetails", "grossTransactionAmount", "otcConfirmation", "orderId", "allocationId", "accountingDate"]
|
69
70
|
|
70
71
|
@validator('transaction_status')
|
71
72
|
def transaction_status_validate_enum(cls, value):
|
@@ -125,8 +126,8 @@ class OutputTransaction(BaseModel):
|
|
125
126
|
if value is None:
|
126
127
|
return value
|
127
128
|
|
128
|
-
if value not in ('Active', 'Amended', 'Cancelled'):
|
129
|
-
raise ValueError("must be one of enum values ('Active', 'Amended', 'Cancelled')")
|
129
|
+
if value not in ('Active', 'Amended', 'Cancelled', 'ActiveReversal', 'ActiveTrueUp', 'CancelledTrueUp'):
|
130
|
+
raise ValueError("must be one of enum values ('Active', 'Amended', 'Cancelled', 'ActiveReversal', 'ActiveTrueUp', 'CancelledTrueUp')")
|
130
131
|
return value
|
131
132
|
|
132
133
|
class Config:
|
@@ -266,6 +267,11 @@ class OutputTransaction(BaseModel):
|
|
266
267
|
if self.transaction_group_id is None and "transaction_group_id" in self.__fields_set__:
|
267
268
|
_dict['transactionGroupId'] = None
|
268
269
|
|
270
|
+
# set to None if accounting_date (nullable) is None
|
271
|
+
# and __fields_set__ contains the field
|
272
|
+
if self.accounting_date is None and "accounting_date" in self.__fields_set__:
|
273
|
+
_dict['accountingDate'] = None
|
274
|
+
|
269
275
|
return _dict
|
270
276
|
|
271
277
|
@classmethod
|
@@ -314,6 +320,7 @@ class OutputTransaction(BaseModel):
|
|
314
320
|
"gross_transaction_amount": obj.get("grossTransactionAmount"),
|
315
321
|
"otc_confirmation": OtcConfirmation.from_dict(obj.get("otcConfirmation")) if obj.get("otcConfirmation") is not None else None,
|
316
322
|
"order_id": ResourceId.from_dict(obj.get("orderId")) if obj.get("orderId") is not None else None,
|
317
|
-
"allocation_id": ResourceId.from_dict(obj.get("allocationId")) if obj.get("allocationId") is not None else None
|
323
|
+
"allocation_id": ResourceId.from_dict(obj.get("allocationId")) if obj.get("allocationId") is not None else None,
|
324
|
+
"accounting_date": obj.get("accountingDate")
|
318
325
|
})
|
319
326
|
return _obj
|
lusid/models/transaction.py
CHANGED
@@ -51,7 +51,7 @@ class Transaction(BaseModel):
|
|
51
51
|
source: Optional[StrictStr] = Field(None,alias="source", description="The source of the transaction. This is used to look up the appropriate transaction group set in the transaction type configuration.")
|
52
52
|
entry_date_time: Optional[datetime] = Field(None, alias="entryDateTime", description="The asAt datetime that the transaction was added to LUSID.")
|
53
53
|
otc_confirmation: Optional[OtcConfirmation] = Field(None, alias="otcConfirmation")
|
54
|
-
transaction_status: Optional[StrictStr] = Field(None,alias="transactionStatus", description="The status of the transaction. The available values are: Active, Amended, Cancelled")
|
54
|
+
transaction_status: Optional[StrictStr] = Field(None,alias="transactionStatus", description="The status of the transaction. The available values are: Active, Amended, Cancelled, ActiveReversal, ActiveTrueUp, CancelledTrueUp")
|
55
55
|
cancel_date_time: Optional[datetime] = Field(None, alias="cancelDateTime", description="If the transaction has been cancelled, the asAt datetime that the transaction was cancelled.")
|
56
56
|
order_id: Optional[ResourceId] = Field(None, alias="orderId")
|
57
57
|
allocation_id: Optional[ResourceId] = Field(None, alias="allocationId")
|
@@ -120,8 +120,8 @@ class Transaction(BaseModel):
|
|
120
120
|
if value is None:
|
121
121
|
return value
|
122
122
|
|
123
|
-
if value not in ('Active', 'Amended', 'Cancelled'):
|
124
|
-
raise ValueError("must be one of enum values ('Active', 'Amended', 'Cancelled')")
|
123
|
+
if value not in ('Active', 'Amended', 'Cancelled', 'ActiveReversal', 'ActiveTrueUp', 'CancelledTrueUp'):
|
124
|
+
raise ValueError("must be one of enum values ('Active', 'Amended', 'Cancelled', 'ActiveReversal', 'ActiveTrueUp', 'CancelledTrueUp')")
|
125
125
|
return value
|
126
126
|
|
127
127
|
class Config:
|
@@ -29,7 +29,9 @@ class TransactionQueryParameters(BaseModel):
|
|
29
29
|
end_date: StrictStr = Field(...,alias="endDate", description="The upper bound effective datetime or cut label (inclusive) from which to retrieve transactions.")
|
30
30
|
query_mode: Optional[StrictStr] = Field(None,alias="queryMode", description="The date to compare against the upper and lower bounds for the effective datetime or cut label. Defaults to 'TradeDate' if not specified. The available values are: TradeDate, SettleDate")
|
31
31
|
show_cancelled_transactions: Optional[StrictBool] = Field(None, alias="showCancelledTransactions", description="Option to specify whether or not to include cancelled transactions in the output. Defaults to False if not specified.")
|
32
|
-
|
32
|
+
timeline_scope: Optional[StrictStr] = Field(None,alias="timelineScope", description="Scope of the Timeline for the Portfolio. The Timeline to be used while building transactions")
|
33
|
+
timeline_code: Optional[StrictStr] = Field(None,alias="timelineCode", description="Code of the Timeline for the Portfolio. The Timeline to be used while building transactions")
|
34
|
+
__properties = ["startDate", "endDate", "queryMode", "showCancelledTransactions", "timelineScope", "timelineCode"]
|
33
35
|
|
34
36
|
@validator('query_mode')
|
35
37
|
def query_mode_validate_enum(cls, value):
|
@@ -125,6 +127,16 @@ class TransactionQueryParameters(BaseModel):
|
|
125
127
|
exclude={
|
126
128
|
},
|
127
129
|
exclude_none=True)
|
130
|
+
# set to None if timeline_scope (nullable) is None
|
131
|
+
# and __fields_set__ contains the field
|
132
|
+
if self.timeline_scope is None and "timeline_scope" in self.__fields_set__:
|
133
|
+
_dict['timelineScope'] = None
|
134
|
+
|
135
|
+
# set to None if timeline_code (nullable) is None
|
136
|
+
# and __fields_set__ contains the field
|
137
|
+
if self.timeline_code is None and "timeline_code" in self.__fields_set__:
|
138
|
+
_dict['timelineCode'] = None
|
139
|
+
|
128
140
|
return _dict
|
129
141
|
|
130
142
|
@classmethod
|
@@ -140,6 +152,8 @@ class TransactionQueryParameters(BaseModel):
|
|
140
152
|
"start_date": obj.get("startDate"),
|
141
153
|
"end_date": obj.get("endDate"),
|
142
154
|
"query_mode": obj.get("queryMode"),
|
143
|
-
"show_cancelled_transactions": obj.get("showCancelledTransactions")
|
155
|
+
"show_cancelled_transactions": obj.get("showCancelledTransactions"),
|
156
|
+
"timeline_scope": obj.get("timelineScope"),
|
157
|
+
"timeline_code": obj.get("timelineCode")
|
144
158
|
})
|
145
159
|
return _obj
|
@@ -32,6 +32,9 @@ class TransactionStatus(str, Enum):
|
|
32
32
|
ACTIVE = 'Active'
|
33
33
|
AMENDED = 'Amended'
|
34
34
|
CANCELLED = 'Cancelled'
|
35
|
+
ACTIVEREVERSAL = 'ActiveReversal'
|
36
|
+
ACTIVETRUEUP = 'ActiveTrueUp'
|
37
|
+
CANCELLEDTRUEUP = 'CancelledTrueUp'
|
35
38
|
|
36
39
|
@classmethod
|
37
40
|
def from_json(cls, json_str: str) -> TransactionStatus:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.792
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -329,6 +329,7 @@ Class | Method | HTTP request | Description
|
|
329
329
|
*InstrumentsApi* | [**update_instrument_identifier**](docs/InstrumentsApi.md#update_instrument_identifier) | **POST** /api/instruments/{identifierType}/{identifier} | UpdateInstrumentIdentifier: Update instrument identifier
|
330
330
|
*InstrumentsApi* | [**upsert_instruments**](docs/InstrumentsApi.md#upsert_instruments) | **POST** /api/instruments | UpsertInstruments: Upsert instruments
|
331
331
|
*InstrumentsApi* | [**upsert_instruments_properties**](docs/InstrumentsApi.md#upsert_instruments_properties) | **POST** /api/instruments/$upsertproperties | UpsertInstrumentsProperties: Upsert instruments properties
|
332
|
+
*InvestorRecordsApi* | [**delete_investor_record**](docs/InvestorRecordsApi.md#delete_investor_record) | **DELETE** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | DeleteInvestorRecord: Delete Investor Record
|
332
333
|
*InvestorRecordsApi* | [**get_investor_record**](docs/InvestorRecordsApi.md#get_investor_record) | **GET** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | [EARLY ACCESS] GetInvestorRecord: Get Investor Record
|
333
334
|
*InvestorRecordsApi* | [**upsert_investor_records**](docs/InvestorRecordsApi.md#upsert_investor_records) | **POST** /api/investorrecords/$batchUpsert | [EARLY ACCESS] UpsertInvestorRecords: Pluralised upsert of Investor Records
|
334
335
|
*LegacyComplianceApi* | [**delete_legacy_compliance_rule**](docs/LegacyComplianceApi.md#delete_legacy_compliance_rule) | **DELETE** /api/legacy/compliance/rules/{scope}/{code} | [EXPERIMENTAL] DeleteLegacyComplianceRule: Deletes a compliance rule.
|
@@ -34,7 +34,7 @@ lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL
|
|
34
34
|
lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
|
35
35
|
lusid/api/instrument_events_api.py,sha256=o_VlUMrovreM3P6N84W5jMUrZmc6tVsvD7Ckhf05sfw,57764
|
36
36
|
lusid/api/instruments_api.py,sha256=-pOWq9bPcXvXULKV-FPWlRugZuBEPwVp2oPX91PEzTs,298533
|
37
|
-
lusid/api/investor_records_api.py,sha256=
|
37
|
+
lusid/api/investor_records_api.py,sha256=Acz5CdJuLH9zKm2Iq5EitSJ42u-U6G2AOckD9EQvoFo,37860
|
38
38
|
lusid/api/legacy_compliance_api.py,sha256=DvApZDZ-_yzZ72e9oqKBK7Ey8oEaavGtw5cgxhEkV0s,93819
|
39
39
|
lusid/api/legal_entities_api.py,sha256=3rCwRIrEXwKH2T8-16ZizKx_Hyi8YeEfrZFpCJX5Hfs,257649
|
40
40
|
lusid/api/order_graph_api.py,sha256=-oaauVeAJxJsK6AHscON1nODEDbv8dcXlKNb6ilBOAU,44022
|
@@ -76,7 +76,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
76
76
|
lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
|
77
77
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
78
78
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
79
|
-
lusid/configuration.py,sha256=
|
79
|
+
lusid/configuration.py,sha256=tt3aWKH1XG6dkrBceEV7eJHOB4V0uAK9UQnKVsmo2X4,17972
|
80
80
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
81
81
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
82
82
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -752,7 +752,7 @@ lusid/models/order_request.py,sha256=vA90s8q8Y58x--4KpJJ6O5fWtoauOBBhusMdpherXDA
|
|
752
752
|
lusid/models/order_set_request.py,sha256=b7FHKZWawLGR83gRHpShjtdYxvlvyMdLhQGLi2HTjmQ,2948
|
753
753
|
lusid/models/order_update_request.py,sha256=eXPD9g6f-W5C42JGpNyOijrnPO7jmYERWNgXMfu46VU,5371
|
754
754
|
lusid/models/otc_confirmation.py,sha256=05mvXvcPLgyCNIHXN7g9L5nqAZORKrQA_wHW-fHe2O0,2651
|
755
|
-
lusid/models/output_transaction.py,sha256=
|
755
|
+
lusid/models/output_transaction.py,sha256=G_YVh-B76LTQGlx8dLGAZbdditj7uwX7TxkIeVPho_8,21098
|
756
756
|
lusid/models/output_transition.py,sha256=R_EGRE5yzpcgTth20s58MA5a3QVRA7ZvNtkxfAKtNCU,4219
|
757
757
|
lusid/models/package.py,sha256=MjIyvz3UaXqJoS_0KiR6BKikHcBaJBV4iZYqo7AmslQ,5685
|
758
758
|
lusid/models/package_request.py,sha256=4sYvxIYutClYd8qLoZxZW96XMZn5jeyhcfpsvyXZfek,4615
|
@@ -1135,7 +1135,7 @@ lusid/models/touch.py,sha256=989spNJsiwn74GJE3GPr8GNaP0MPnkMsFIWO67Wd6FQ,2966
|
|
1135
1135
|
lusid/models/trade_ticket.py,sha256=9ZBpxLJ-VpPgmo7Z2i6YvxUf8oJmgwX2ffGlg73PNxY,5572
|
1136
1136
|
lusid/models/trade_ticket_type.py,sha256=j7f2bfiA_cxaFtjZpT3Natl4BoaGAaEXF6E0ltEzTWE,706
|
1137
1137
|
lusid/models/trading_conventions.py,sha256=w_oFIB8faBhd6lPqbUwPbUhdLZuaIVgoZryKuUxRyBM,3211
|
1138
|
-
lusid/models/transaction.py,sha256=
|
1138
|
+
lusid/models/transaction.py,sha256=qrl3fbgrOKU6ZEZiAE99vWAB8CvtkPreQj1vocPK8vo,17679
|
1139
1139
|
lusid/models/transaction_configuration_data.py,sha256=0Gm-MXYMpoS_wz_td3U4gkP8CMjnY5E38JGQVdwjsqc,4550
|
1140
1140
|
lusid/models/transaction_configuration_data_request.py,sha256=8fzgpawxQN4C07McluIUImNMqnB25YZBDGuCRgikqQw,4630
|
1141
1141
|
lusid/models/transaction_configuration_movement_data.py,sha256=16yPiDdXvpOiwLfVnajHoCcgjLdTAPYBNN4aU-Mx3Eg,10814
|
@@ -1152,14 +1152,14 @@ lusid/models/transaction_property_map.py,sha256=-wHRWG3detIms7R03Z1LP8Ll_5h1OKtU
|
|
1152
1152
|
lusid/models/transaction_property_mapping.py,sha256=zR68kn6GCZnWPxq9d0bof8-TnZj-jSrWfHGOrfN5kTo,3056
|
1153
1153
|
lusid/models/transaction_property_mapping_request.py,sha256=1gRNyMZDfayaDSY5fp7nxTWFTMIjzabLIvfwxMk0BT8,3111
|
1154
1154
|
lusid/models/transaction_query_mode.py,sha256=q3QNcFSP-LwfdQF_yRUOZMd6ElemQm03yOEQdQrCjvE,699
|
1155
|
-
lusid/models/transaction_query_parameters.py,sha256=
|
1155
|
+
lusid/models/transaction_query_parameters.py,sha256=9c7HCPVkE77ctVzGAwJTKtmcrAROoPporSOU-dP1S2c,7555
|
1156
1156
|
lusid/models/transaction_reconciliation_request.py,sha256=0MtuzOqdGdToiO7tbffVR4drmNAR8Ygzcosqt4sECt4,4526
|
1157
1157
|
lusid/models/transaction_reconciliation_request_v2.py,sha256=cgzBwUa3lIRYksf1xiKEN85iUHKp2_cEnFhHBlsvp-4,6178
|
1158
1158
|
lusid/models/transaction_request.py,sha256=s6OVPLAxPDbUMU4gLN_XNX9ngdlKdPBgGeRDBg7QzdA,10982
|
1159
1159
|
lusid/models/transaction_roles.py,sha256=1r-BzcchffLl6p4lSUhRAUmsVdrl7Bvce2cCiwxJanE,839
|
1160
1160
|
lusid/models/transaction_set_configuration_data.py,sha256=hgtBUJzYyJlOj11GTpTkY05Sqdcd4SdNY2gFhP3Zzis,4643
|
1161
1161
|
lusid/models/transaction_set_configuration_data_request.py,sha256=Nq8DEDlONeOEJ_XHqKAcKaOlRibqrjfh06xo-RNQdbs,4179
|
1162
|
-
lusid/models/transaction_status.py,sha256=
|
1162
|
+
lusid/models/transaction_status.py,sha256=8b1pF1I7A3PzeZmStCXvnhqcDsPSlo8fQnnNQFYGZlA,812
|
1163
1163
|
lusid/models/transaction_template.py,sha256=mFZdjodcv7BQZEb4V0chCUiMc7mz_VgYF2CPppev3Fo,4351
|
1164
1164
|
lusid/models/transaction_template_request.py,sha256=5zZKzBg5bl_1XWq4T9rO3HbzRfoQOYz3XDFH0OdXBeY,3088
|
1165
1165
|
lusid/models/transaction_template_specification.py,sha256=TCmZNao343_x0WtND3TfejDpOv2_6FTPKAobZJnAU1A,4814
|
@@ -1313,6 +1313,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1313
1313
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1314
1314
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1315
1315
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1316
|
-
lusid_sdk-2.1.
|
1317
|
-
lusid_sdk-2.1.
|
1318
|
-
lusid_sdk-2.1.
|
1316
|
+
lusid_sdk-2.1.792.dist-info/METADATA,sha256=uAyXQUpELSbfdRn0yTCbE6R7CxMrEV-J11AKccxKg4E,220367
|
1317
|
+
lusid_sdk-2.1.792.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1318
|
+
lusid_sdk-2.1.792.dist-info/RECORD,,
|
File without changes
|