lusid-sdk 2.1.610__py3-none-any.whl → 2.1.611__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +2 -0
- lusid/api/transaction_portfolios_api.py +183 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/cancel_single_holding_adjustment_request.py +96 -0
- {lusid_sdk-2.1.610.dist-info → lusid_sdk-2.1.611.dist-info}/METADATA +3 -1
- {lusid_sdk-2.1.610.dist-info → lusid_sdk-2.1.611.dist-info}/RECORD +8 -7
- {lusid_sdk-2.1.610.dist-info → lusid_sdk-2.1.611.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -206,6 +206,7 @@ from lusid.models.cancel_orders_and_move_remaining_request import CancelOrdersAn
|
|
206
206
|
from lusid.models.cancel_orders_and_move_remaining_response import CancelOrdersAndMoveRemainingResponse
|
207
207
|
from lusid.models.cancel_orders_response import CancelOrdersResponse
|
208
208
|
from lusid.models.cancel_placements_response import CancelPlacementsResponse
|
209
|
+
from lusid.models.cancel_single_holding_adjustment_request import CancelSingleHoldingAdjustmentRequest
|
209
210
|
from lusid.models.cancelled_order_result import CancelledOrderResult
|
210
211
|
from lusid.models.cancelled_placement_result import CancelledPlacementResult
|
211
212
|
from lusid.models.cap_floor import CapFloor
|
@@ -1450,6 +1451,7 @@ __all__ = [
|
|
1450
1451
|
"CancelOrdersAndMoveRemainingResponse",
|
1451
1452
|
"CancelOrdersResponse",
|
1452
1453
|
"CancelPlacementsResponse",
|
1454
|
+
"CancelSingleHoldingAdjustmentRequest",
|
1453
1455
|
"CancelledOrderResult",
|
1454
1456
|
"CancelledPlacementResult",
|
1455
1457
|
"CapFloor",
|
@@ -33,6 +33,7 @@ from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsRespo
|
|
33
33
|
from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
|
34
34
|
from lusid.models.bucketed_cash_flow_request import BucketedCashFlowRequest
|
35
35
|
from lusid.models.bucketed_cash_flow_response import BucketedCashFlowResponse
|
36
|
+
from lusid.models.cancel_single_holding_adjustment_request import CancelSingleHoldingAdjustmentRequest
|
36
37
|
from lusid.models.create_portfolio_details import CreatePortfolioDetails
|
37
38
|
from lusid.models.create_trade_tickets_response import CreateTradeTicketsResponse
|
38
39
|
from lusid.models.create_transaction_portfolio_request import CreateTransactionPortfolioRequest
|
@@ -1414,6 +1415,188 @@ class TransactionPortfoliosApi:
|
|
1414
1415
|
collection_formats=_collection_formats,
|
1415
1416
|
_request_auth=_params.get('_request_auth'))
|
1416
1417
|
|
1418
|
+
@overload
|
1419
|
+
async def cancel_single_adjust_holding(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[StrictStr, Field(..., description="The effective datetime or cut label at which the previous adjustment was made.")], cancel_single_holding_adjustment_request : Annotated[CancelSingleHoldingAdjustmentRequest, Field(..., description="The selected holding adjustment to be canceled.")], **kwargs) -> DeletedEntityResponse: # noqa: E501
|
1420
|
+
...
|
1421
|
+
|
1422
|
+
@overload
|
1423
|
+
def cancel_single_adjust_holding(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[StrictStr, Field(..., description="The effective datetime or cut label at which the previous adjustment was made.")], cancel_single_holding_adjustment_request : Annotated[CancelSingleHoldingAdjustmentRequest, Field(..., description="The selected holding adjustment to be canceled.")], async_req: Optional[bool]=True, **kwargs) -> DeletedEntityResponse: # noqa: E501
|
1424
|
+
...
|
1425
|
+
|
1426
|
+
@validate_arguments
|
1427
|
+
def cancel_single_adjust_holding(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[StrictStr, Field(..., description="The effective datetime or cut label at which the previous adjustment was made.")], cancel_single_holding_adjustment_request : Annotated[CancelSingleHoldingAdjustmentRequest, Field(..., description="The selected holding adjustment to be canceled.")], async_req: Optional[bool]=None, **kwargs) -> Union[DeletedEntityResponse, Awaitable[DeletedEntityResponse]]: # noqa: E501
|
1428
|
+
"""[EARLY ACCESS] CancelSingleAdjustHolding: Cancel single holding adjustment. # noqa: E501
|
1429
|
+
|
1430
|
+
Cancel one previously sent holding adjustment without affecting the rest of the adjustment in the previous request on the specified effective datetime. # noqa: E501
|
1431
|
+
This method makes a synchronous HTTP request by default. To make an
|
1432
|
+
asynchronous HTTP request, please pass async_req=True
|
1433
|
+
|
1434
|
+
>>> thread = api.cancel_single_adjust_holding(scope, code, effective_at, cancel_single_holding_adjustment_request, async_req=True)
|
1435
|
+
>>> result = thread.get()
|
1436
|
+
|
1437
|
+
:param scope: The scope of the transaction portfolio. (required)
|
1438
|
+
:type scope: str
|
1439
|
+
:param code: The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio. (required)
|
1440
|
+
:type code: str
|
1441
|
+
:param effective_at: The effective datetime or cut label at which the previous adjustment was made. (required)
|
1442
|
+
:type effective_at: str
|
1443
|
+
:param cancel_single_holding_adjustment_request: The selected holding adjustment to be canceled. (required)
|
1444
|
+
:type cancel_single_holding_adjustment_request: CancelSingleHoldingAdjustmentRequest
|
1445
|
+
:param async_req: Whether to execute the request asynchronously.
|
1446
|
+
:type async_req: bool, optional
|
1447
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1448
|
+
:param opts: Configuration options for this request
|
1449
|
+
:type opts: ConfigurationOptions, optional
|
1450
|
+
:return: Returns the result object.
|
1451
|
+
If the method is called asynchronously,
|
1452
|
+
returns the request thread.
|
1453
|
+
:rtype: DeletedEntityResponse
|
1454
|
+
"""
|
1455
|
+
kwargs['_return_http_data_only'] = True
|
1456
|
+
if '_preload_content' in kwargs:
|
1457
|
+
message = "Error! Please call the cancel_single_adjust_holding_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
1458
|
+
raise ValueError(message)
|
1459
|
+
if async_req is not None:
|
1460
|
+
kwargs['async_req'] = async_req
|
1461
|
+
return self.cancel_single_adjust_holding_with_http_info(scope, code, effective_at, cancel_single_holding_adjustment_request, **kwargs) # noqa: E501
|
1462
|
+
|
1463
|
+
@validate_arguments
|
1464
|
+
def cancel_single_adjust_holding_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[StrictStr, Field(..., description="The effective datetime or cut label at which the previous adjustment was made.")], cancel_single_holding_adjustment_request : Annotated[CancelSingleHoldingAdjustmentRequest, Field(..., description="The selected holding adjustment to be canceled.")], **kwargs) -> ApiResponse: # noqa: E501
|
1465
|
+
"""[EARLY ACCESS] CancelSingleAdjustHolding: Cancel single holding adjustment. # noqa: E501
|
1466
|
+
|
1467
|
+
Cancel one previously sent holding adjustment without affecting the rest of the adjustment in the previous request on the specified effective datetime. # noqa: E501
|
1468
|
+
This method makes a synchronous HTTP request by default. To make an
|
1469
|
+
asynchronous HTTP request, please pass async_req=True
|
1470
|
+
|
1471
|
+
>>> thread = api.cancel_single_adjust_holding_with_http_info(scope, code, effective_at, cancel_single_holding_adjustment_request, async_req=True)
|
1472
|
+
>>> result = thread.get()
|
1473
|
+
|
1474
|
+
:param scope: The scope of the transaction portfolio. (required)
|
1475
|
+
:type scope: str
|
1476
|
+
:param code: The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio. (required)
|
1477
|
+
:type code: str
|
1478
|
+
:param effective_at: The effective datetime or cut label at which the previous adjustment was made. (required)
|
1479
|
+
:type effective_at: str
|
1480
|
+
:param cancel_single_holding_adjustment_request: The selected holding adjustment to be canceled. (required)
|
1481
|
+
:type cancel_single_holding_adjustment_request: CancelSingleHoldingAdjustmentRequest
|
1482
|
+
:param async_req: Whether to execute the request asynchronously.
|
1483
|
+
:type async_req: bool, optional
|
1484
|
+
:param _preload_content: if False, the ApiResponse.data will
|
1485
|
+
be set to none and raw_data will store the
|
1486
|
+
HTTP response body without reading/decoding.
|
1487
|
+
Default is True.
|
1488
|
+
:type _preload_content: bool, optional
|
1489
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
1490
|
+
object with status code, headers, etc
|
1491
|
+
:type _return_http_data_only: bool, optional
|
1492
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1493
|
+
:param opts: Configuration options for this request
|
1494
|
+
:type opts: ConfigurationOptions, optional
|
1495
|
+
:param _request_auth: set to override the auth_settings for an a single
|
1496
|
+
request; this effectively ignores the authentication
|
1497
|
+
in the spec for a single request.
|
1498
|
+
:type _request_auth: dict, optional
|
1499
|
+
:type _content_type: string, optional: force content-type for the request
|
1500
|
+
:return: Returns the result object.
|
1501
|
+
If the method is called asynchronously,
|
1502
|
+
returns the request thread.
|
1503
|
+
:rtype: tuple(DeletedEntityResponse, status_code(int), headers(HTTPHeaderDict))
|
1504
|
+
"""
|
1505
|
+
|
1506
|
+
_params = locals()
|
1507
|
+
|
1508
|
+
_all_params = [
|
1509
|
+
'scope',
|
1510
|
+
'code',
|
1511
|
+
'effective_at',
|
1512
|
+
'cancel_single_holding_adjustment_request'
|
1513
|
+
]
|
1514
|
+
_all_params.extend(
|
1515
|
+
[
|
1516
|
+
'async_req',
|
1517
|
+
'_return_http_data_only',
|
1518
|
+
'_preload_content',
|
1519
|
+
'_request_timeout',
|
1520
|
+
'_request_auth',
|
1521
|
+
'_content_type',
|
1522
|
+
'_headers',
|
1523
|
+
'opts'
|
1524
|
+
]
|
1525
|
+
)
|
1526
|
+
|
1527
|
+
# validate the arguments
|
1528
|
+
for _key, _val in _params['kwargs'].items():
|
1529
|
+
if _key not in _all_params:
|
1530
|
+
raise ApiTypeError(
|
1531
|
+
"Got an unexpected keyword argument '%s'"
|
1532
|
+
" to method cancel_single_adjust_holding" % _key
|
1533
|
+
)
|
1534
|
+
_params[_key] = _val
|
1535
|
+
del _params['kwargs']
|
1536
|
+
|
1537
|
+
_collection_formats = {}
|
1538
|
+
|
1539
|
+
# process the path parameters
|
1540
|
+
_path_params = {}
|
1541
|
+
if _params['scope']:
|
1542
|
+
_path_params['scope'] = _params['scope']
|
1543
|
+
|
1544
|
+
if _params['code']:
|
1545
|
+
_path_params['code'] = _params['code']
|
1546
|
+
|
1547
|
+
|
1548
|
+
# process the query parameters
|
1549
|
+
_query_params = []
|
1550
|
+
if _params.get('effective_at') is not None: # noqa: E501
|
1551
|
+
_query_params.append(('effectiveAt', _params['effective_at']))
|
1552
|
+
|
1553
|
+
# process the header parameters
|
1554
|
+
_header_params = dict(_params.get('_headers', {}))
|
1555
|
+
# process the form parameters
|
1556
|
+
_form_params = []
|
1557
|
+
_files = {}
|
1558
|
+
# process the body parameter
|
1559
|
+
_body_params = None
|
1560
|
+
if _params['cancel_single_holding_adjustment_request'] is not None:
|
1561
|
+
_body_params = _params['cancel_single_holding_adjustment_request']
|
1562
|
+
|
1563
|
+
# set the HTTP header `Accept`
|
1564
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1565
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
1566
|
+
|
1567
|
+
# set the HTTP header `Content-Type`
|
1568
|
+
_content_types_list = _params.get('_content_type',
|
1569
|
+
self.api_client.select_header_content_type(
|
1570
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
1571
|
+
if _content_types_list:
|
1572
|
+
_header_params['Content-Type'] = _content_types_list
|
1573
|
+
|
1574
|
+
# authentication setting
|
1575
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
1576
|
+
|
1577
|
+
_response_types_map = {
|
1578
|
+
'200': "DeletedEntityResponse",
|
1579
|
+
'400': "LusidValidationProblemDetails",
|
1580
|
+
}
|
1581
|
+
|
1582
|
+
return self.api_client.call_api(
|
1583
|
+
'/api/transactionportfolios/{scope}/{code}/holdings/$cancelAdjustment', 'POST',
|
1584
|
+
_path_params,
|
1585
|
+
_query_params,
|
1586
|
+
_header_params,
|
1587
|
+
body=_body_params,
|
1588
|
+
post_params=_form_params,
|
1589
|
+
files=_files,
|
1590
|
+
response_types_map=_response_types_map,
|
1591
|
+
auth_settings=_auth_settings,
|
1592
|
+
async_req=_params.get('async_req'),
|
1593
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1594
|
+
_preload_content=_params.get('_preload_content', True),
|
1595
|
+
_request_timeout=_params.get('_request_timeout'),
|
1596
|
+
opts=_params.get('opts'),
|
1597
|
+
collection_formats=_collection_formats,
|
1598
|
+
_request_auth=_params.get('_request_auth'))
|
1599
|
+
|
1417
1600
|
@overload
|
1418
1601
|
async def cancel_transactions(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], transaction_ids : Annotated[conlist(StrictStr), Field(..., description="The IDs of the transactions to cancel.")], **kwargs) -> DeletedEntityResponse: # noqa: E501
|
1419
1602
|
...
|
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.7135\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
lusid/models/__init__.py
CHANGED
@@ -123,6 +123,7 @@ from lusid.models.cancel_orders_and_move_remaining_request import CancelOrdersAn
|
|
123
123
|
from lusid.models.cancel_orders_and_move_remaining_response import CancelOrdersAndMoveRemainingResponse
|
124
124
|
from lusid.models.cancel_orders_response import CancelOrdersResponse
|
125
125
|
from lusid.models.cancel_placements_response import CancelPlacementsResponse
|
126
|
+
from lusid.models.cancel_single_holding_adjustment_request import CancelSingleHoldingAdjustmentRequest
|
126
127
|
from lusid.models.cancelled_order_result import CancelledOrderResult
|
127
128
|
from lusid.models.cancelled_placement_result import CancelledPlacementResult
|
128
129
|
from lusid.models.cap_floor import CapFloor
|
@@ -1285,6 +1286,7 @@ __all__ = [
|
|
1285
1286
|
"CancelOrdersAndMoveRemainingResponse",
|
1286
1287
|
"CancelOrdersResponse",
|
1287
1288
|
"CancelPlacementsResponse",
|
1289
|
+
"CancelSingleHoldingAdjustmentRequest",
|
1288
1290
|
"CancelledOrderResult",
|
1289
1291
|
"CancelledPlacementResult",
|
1290
1292
|
"CapFloor",
|
@@ -0,0 +1,96 @@
|
|
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.perpetual_property import PerpetualProperty
|
24
|
+
|
25
|
+
class CancelSingleHoldingAdjustmentRequest(BaseModel):
|
26
|
+
"""
|
27
|
+
This request specifies single target holding. i.e. holding data that the system should match. And deletes previous adjustment made to that holding # noqa: E501
|
28
|
+
"""
|
29
|
+
instrument_identifiers: Dict[str, StrictStr] = Field(..., alias="instrumentIdentifiers", description="A set of instrument identifiers that can resolve the holding adjustment to a unique instrument.")
|
30
|
+
sub_holding_keys: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeys", description="The sub-holding properties which identify the holding. Each property must be from the 'Transaction' domain.")
|
31
|
+
currency: Optional[StrictStr] = Field(None, description="The Holding currency.")
|
32
|
+
__properties = ["instrumentIdentifiers", "subHoldingKeys", "currency"]
|
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) -> CancelSingleHoldingAdjustmentRequest:
|
49
|
+
"""Create an instance of CancelSingleHoldingAdjustmentRequest 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 value in sub_holding_keys (dict)
|
59
|
+
_field_dict = {}
|
60
|
+
if self.sub_holding_keys:
|
61
|
+
for _key in self.sub_holding_keys:
|
62
|
+
if self.sub_holding_keys[_key]:
|
63
|
+
_field_dict[_key] = self.sub_holding_keys[_key].to_dict()
|
64
|
+
_dict['subHoldingKeys'] = _field_dict
|
65
|
+
# set to None if sub_holding_keys (nullable) is None
|
66
|
+
# and __fields_set__ contains the field
|
67
|
+
if self.sub_holding_keys is None and "sub_holding_keys" in self.__fields_set__:
|
68
|
+
_dict['subHoldingKeys'] = None
|
69
|
+
|
70
|
+
# set to None if currency (nullable) is None
|
71
|
+
# and __fields_set__ contains the field
|
72
|
+
if self.currency is None and "currency" in self.__fields_set__:
|
73
|
+
_dict['currency'] = None
|
74
|
+
|
75
|
+
return _dict
|
76
|
+
|
77
|
+
@classmethod
|
78
|
+
def from_dict(cls, obj: dict) -> CancelSingleHoldingAdjustmentRequest:
|
79
|
+
"""Create an instance of CancelSingleHoldingAdjustmentRequest from a dict"""
|
80
|
+
if obj is None:
|
81
|
+
return None
|
82
|
+
|
83
|
+
if not isinstance(obj, dict):
|
84
|
+
return CancelSingleHoldingAdjustmentRequest.parse_obj(obj)
|
85
|
+
|
86
|
+
_obj = CancelSingleHoldingAdjustmentRequest.parse_obj({
|
87
|
+
"instrument_identifiers": obj.get("instrumentIdentifiers"),
|
88
|
+
"sub_holding_keys": dict(
|
89
|
+
(_k, PerpetualProperty.from_dict(_v))
|
90
|
+
for _k, _v in obj.get("subHoldingKeys").items()
|
91
|
+
)
|
92
|
+
if obj.get("subHoldingKeys") is not None
|
93
|
+
else None,
|
94
|
+
"currency": obj.get("currency")
|
95
|
+
})
|
96
|
+
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.611
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -581,6 +581,7 @@ Class | Method | HTTP request | Description
|
|
581
581
|
*TransactionPortfoliosApi* | [**batch_upsert_transactions**](docs/TransactionPortfoliosApi.md#batch_upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$batchUpsert | [EARLY ACCESS] BatchUpsertTransactions: Batch upsert transactions
|
582
582
|
*TransactionPortfoliosApi* | [**build_transactions**](docs/TransactionPortfoliosApi.md#build_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$build | BuildTransactions: Build transactions
|
583
583
|
*TransactionPortfoliosApi* | [**cancel_adjust_holdings**](docs/TransactionPortfoliosApi.md#cancel_adjust_holdings) | **DELETE** /api/transactionportfolios/{scope}/{code}/holdings | CancelAdjustHoldings: Cancel adjust holdings
|
584
|
+
*TransactionPortfoliosApi* | [**cancel_single_adjust_holding**](docs/TransactionPortfoliosApi.md#cancel_single_adjust_holding) | **POST** /api/transactionportfolios/{scope}/{code}/holdings/$cancelAdjustment | [EARLY ACCESS] CancelSingleAdjustHolding: Cancel single holding adjustment.
|
584
585
|
*TransactionPortfoliosApi* | [**cancel_transactions**](docs/TransactionPortfoliosApi.md#cancel_transactions) | **DELETE** /api/transactionportfolios/{scope}/{code}/transactions | CancelTransactions: Cancel transactions
|
585
586
|
*TransactionPortfoliosApi* | [**create_portfolio**](docs/TransactionPortfoliosApi.md#create_portfolio) | **POST** /api/transactionportfolios/{scope} | CreatePortfolio: Create portfolio
|
586
587
|
*TransactionPortfoliosApi* | [**create_trade_ticket**](docs/TransactionPortfoliosApi.md#create_trade_ticket) | **POST** /api/transactionportfolios/{scope}/{code}/$tradeticket | [EARLY ACCESS] CreateTradeTicket: Create Trade Ticket
|
@@ -749,6 +750,7 @@ Class | Method | HTTP request | Description
|
|
749
750
|
- [CancelOrdersAndMoveRemainingResponse](docs/CancelOrdersAndMoveRemainingResponse.md)
|
750
751
|
- [CancelOrdersResponse](docs/CancelOrdersResponse.md)
|
751
752
|
- [CancelPlacementsResponse](docs/CancelPlacementsResponse.md)
|
753
|
+
- [CancelSingleHoldingAdjustmentRequest](docs/CancelSingleHoldingAdjustmentRequest.md)
|
752
754
|
- [CancelledOrderResult](docs/CancelledOrderResult.md)
|
753
755
|
- [CancelledPlacementResult](docs/CancelledPlacementResult.md)
|
754
756
|
- [CapFloor](docs/CapFloor.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=tmf5Lm08IT3D2p6P0u-10cUs6g4AJCqd7z-4zMjJ_bQ,130823
|
2
2
|
lusid/api/__init__.py,sha256=Piygs8uSSBLR2ZZZIUS2aiyUEKMrNij6nUM6nHeaXkU,5992
|
3
3
|
lusid/api/abor_api.py,sha256=eC0xjrZEL_e7JZdwjpmjVG4GMQWAGJEv4w-2UngvYUk,159896
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=TmssMn5ni0mZV1q7LyPXYhBqqUGJqLYZapo8By8DFuI,63875
|
@@ -67,12 +67,12 @@ lusid/api/tax_rule_sets_api.py,sha256=Up74buqFZfgM8oxMObgVvMIJrrKY_fBJLwDBemXEr4
|
|
67
67
|
lusid/api/timelines_api.py,sha256=9Vhu9UUiGLb5lAZf52sfR0HVSn9HcCkea11rBIFn53E,41450
|
68
68
|
lusid/api/transaction_configuration_api.py,sha256=5wDGhFV3UYG61OPE45Xv0wsDSnNuKkk7F_o7oZzYqN0,107192
|
69
69
|
lusid/api/transaction_fees_api.py,sha256=nJ6Fd_AfguoHdXIm7aXWRL2D_KJa5Vbp6_IpNIitYLc,64354
|
70
|
-
lusid/api/transaction_portfolios_api.py,sha256=
|
70
|
+
lusid/api/transaction_portfolios_api.py,sha256=4M9g21DLQyxGzDN0fzPaegRYsmCBzDDcd-2pUMZO-BQ,619751
|
71
71
|
lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,20072
|
72
72
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
73
73
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
74
74
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
75
|
-
lusid/configuration.py,sha256=
|
75
|
+
lusid/configuration.py,sha256=Qd2YqkBAAsiXNuM0VM8-6-VGfCHpG2aE2JadotjWueU,17972
|
76
76
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
77
77
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
78
78
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -87,7 +87,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
87
87
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
88
88
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
89
89
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
90
|
-
lusid/models/__init__.py,sha256=
|
90
|
+
lusid/models/__init__.py,sha256=4M5G_59L1kzRwtBNSeE4he1wSJf1L6gzss4pyr5z5jE,123799
|
91
91
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
92
92
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
93
93
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -197,6 +197,7 @@ lusid/models/cancel_orders_and_move_remaining_request.py,sha256=KhhaXbnHMn9wBWjf
|
|
197
197
|
lusid/models/cancel_orders_and_move_remaining_response.py,sha256=fdPfcpAC6FrTqSxDapq2etf6l2MxSnjgbSe5BeXc_Qo,6252
|
198
198
|
lusid/models/cancel_orders_response.py,sha256=dbef36DqyiejdxVA9NwzQ5e0DGT9g7IfA4s6ZpfM4Xg,6033
|
199
199
|
lusid/models/cancel_placements_response.py,sha256=xe43QiiMvapew4BvR1C3wj5tYgn-zLy3cX54sdjbt3o,6089
|
200
|
+
lusid/models/cancel_single_holding_adjustment_request.py,sha256=55NQVC3IsJqXN6Cmn7E2y7Pa8OobQc71Dlgl_5-4Hcg,3880
|
200
201
|
lusid/models/cancelled_order_result.py,sha256=ZAwAhNd7IouFTPRwwYvAflZqlYkbweSttNmJ6cHoIkw,2187
|
201
202
|
lusid/models/cancelled_placement_result.py,sha256=eW3lgoyFakoGKcFSp3WN11bpuJyJun9jm8rVS4hdxwg,3127
|
202
203
|
lusid/models/cap_floor.py,sha256=cEgDxAa_Z91oDsa5HI6v8us0mvvN8gt41VVKDnh99Cs,6692
|
@@ -1249,6 +1250,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1249
1250
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1250
1251
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1251
1252
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1252
|
-
lusid_sdk-2.1.
|
1253
|
-
lusid_sdk-2.1.
|
1254
|
-
lusid_sdk-2.1.
|
1253
|
+
lusid_sdk-2.1.611.dist-info/METADATA,sha256=Gm4ULlrnlySZVO73wCRjEH_tVCft-ajZoLYM0NQdnWg,213430
|
1254
|
+
lusid_sdk-2.1.611.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1255
|
+
lusid_sdk-2.1.611.dist-info/RECORD,,
|
File without changes
|