lusid-sdk 2.1.961__py3-none-any.whl → 2.1.963__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/data_types_api.py +128 -32
- lusid/api/funds_api.py +252 -236
- lusid/api/portfolio_groups_api.py +24 -8
- lusid/api/transaction_portfolios_api.py +176 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/batch_upsert_transaction_settlement_instruction_response.py +137 -0
- {lusid_sdk-2.1.961.dist-info → lusid_sdk-2.1.963.dist-info}/METADATA +10 -8
- {lusid_sdk-2.1.961.dist-info → lusid_sdk-2.1.963.dist-info}/RECORD +11 -10
- {lusid_sdk-2.1.961.dist-info → lusid_sdk-2.1.963.dist-info}/WHEEL +0 -0
@@ -442,22 +442,22 @@ class PortfolioGroupsApi:
|
|
442
442
|
|
443
443
|
|
444
444
|
@overload
|
445
|
-
async def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, **kwargs) -> VersionedResourceListOfOutputTransaction: # noqa: E501
|
445
|
+
async def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, **kwargs) -> VersionedResourceListOfOutputTransaction: # noqa: E501
|
446
446
|
...
|
447
447
|
|
448
448
|
@overload
|
449
|
-
def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfOutputTransaction: # noqa: E501
|
449
|
+
def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfOutputTransaction: # noqa: E501
|
450
450
|
...
|
451
451
|
|
452
452
|
@validate_arguments
|
453
|
-
def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfOutputTransaction, Awaitable[VersionedResourceListOfOutputTransaction]]: # noqa: E501
|
453
|
+
def build_transactions_for_portfolio_group(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfOutputTransaction, Awaitable[VersionedResourceListOfOutputTransaction]]: # noqa: E501
|
454
454
|
"""BuildTransactionsForPortfolioGroup: Build transactions for transaction portfolios in a portfolio group # noqa: E501
|
455
455
|
|
456
456
|
Build transactions for transaction portfolios in a portfolio group over a given interval of effective time. When the specified portfolio in a portfolio group is a derived transaction portfolio, the returned set of transactions is the union set of all transactions of the parent (and any grandparents etc.) and the specified derived transaction portfolio itself. # noqa: E501
|
457
457
|
This method makes a synchronous HTTP request by default. To make an
|
458
458
|
asynchronous HTTP request, please pass async_req=True
|
459
459
|
|
460
|
-
>>> thread = api.build_transactions_for_portfolio_group(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, async_req=True)
|
460
|
+
>>> thread = api.build_transactions_for_portfolio_group(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, data_model_scope, data_model_code, async_req=True)
|
461
461
|
>>> result = thread.get()
|
462
462
|
|
463
463
|
:param scope: The scope of the portfolio group. (required)
|
@@ -476,6 +476,10 @@ class PortfolioGroupsApi:
|
|
476
476
|
:type limit: int
|
477
477
|
:param page: The pagination token to use to continue listing transactions from a previous call to BuildTransactions.
|
478
478
|
:type page: str
|
479
|
+
:param data_model_scope: The optional scope of a Custom Data Model to use
|
480
|
+
:type data_model_scope: str
|
481
|
+
:param data_model_code: The optional code of a Custom Data Model to use
|
482
|
+
:type data_model_code: str
|
479
483
|
:param async_req: Whether to execute the request asynchronously.
|
480
484
|
:type async_req: bool, optional
|
481
485
|
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
@@ -492,17 +496,17 @@ class PortfolioGroupsApi:
|
|
492
496
|
raise ValueError(message)
|
493
497
|
if async_req is not None:
|
494
498
|
kwargs['async_req'] = async_req
|
495
|
-
return self.build_transactions_for_portfolio_group_with_http_info(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, **kwargs) # noqa: E501
|
499
|
+
return self.build_transactions_for_portfolio_group_with_http_info(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, data_model_scope, data_model_code, **kwargs) # noqa: E501
|
496
500
|
|
497
501
|
@validate_arguments
|
498
|
-
def build_transactions_for_portfolio_group_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
502
|
+
def build_transactions_for_portfolio_group_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio group.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], transaction_query_parameters : Annotated[TransactionQueryParameters, Field(..., description="The query queryParameters which control how the output transactions are built.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to build the transactions. Defaults to return the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. For example, to filter on the Transaction Type, use \"type eq 'Buy'\" Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\" or \"Transaction\" domain to decorate onto the transactions. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Transaction/strategy/quantsignal\".")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing transactions from a previous call to BuildTransactions.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
499
503
|
"""BuildTransactionsForPortfolioGroup: Build transactions for transaction portfolios in a portfolio group # noqa: E501
|
500
504
|
|
501
505
|
Build transactions for transaction portfolios in a portfolio group over a given interval of effective time. When the specified portfolio in a portfolio group is a derived transaction portfolio, the returned set of transactions is the union set of all transactions of the parent (and any grandparents etc.) and the specified derived transaction portfolio itself. # noqa: E501
|
502
506
|
This method makes a synchronous HTTP request by default. To make an
|
503
507
|
asynchronous HTTP request, please pass async_req=True
|
504
508
|
|
505
|
-
>>> thread = api.build_transactions_for_portfolio_group_with_http_info(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, async_req=True)
|
509
|
+
>>> thread = api.build_transactions_for_portfolio_group_with_http_info(scope, code, transaction_query_parameters, as_at, filter, property_keys, limit, page, data_model_scope, data_model_code, async_req=True)
|
506
510
|
>>> result = thread.get()
|
507
511
|
|
508
512
|
:param scope: The scope of the portfolio group. (required)
|
@@ -521,6 +525,10 @@ class PortfolioGroupsApi:
|
|
521
525
|
:type limit: int
|
522
526
|
:param page: The pagination token to use to continue listing transactions from a previous call to BuildTransactions.
|
523
527
|
:type page: str
|
528
|
+
:param data_model_scope: The optional scope of a Custom Data Model to use
|
529
|
+
:type data_model_scope: str
|
530
|
+
:param data_model_code: The optional code of a Custom Data Model to use
|
531
|
+
:type data_model_code: str
|
524
532
|
:param async_req: Whether to execute the request asynchronously.
|
525
533
|
:type async_req: bool, optional
|
526
534
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -555,7 +563,9 @@ class PortfolioGroupsApi:
|
|
555
563
|
'filter',
|
556
564
|
'property_keys',
|
557
565
|
'limit',
|
558
|
-
'page'
|
566
|
+
'page',
|
567
|
+
'data_model_scope',
|
568
|
+
'data_model_code'
|
559
569
|
]
|
560
570
|
_all_params.extend(
|
561
571
|
[
|
@@ -612,6 +622,12 @@ class PortfolioGroupsApi:
|
|
612
622
|
if _params.get('page') is not None: # noqa: E501
|
613
623
|
_query_params.append(('page', _params['page']))
|
614
624
|
|
625
|
+
if _params.get('data_model_scope') is not None: # noqa: E501
|
626
|
+
_query_params.append(('dataModelScope', _params['data_model_scope']))
|
627
|
+
|
628
|
+
if _params.get('data_model_code') is not None: # noqa: E501
|
629
|
+
_query_params.append(('dataModelCode', _params['data_model_code']))
|
630
|
+
|
615
631
|
# process the header parameters
|
616
632
|
_header_params = dict(_params.get('_headers', {}))
|
617
633
|
# process the form parameters
|
@@ -31,6 +31,7 @@ from lusid.models.adjust_holding_for_date_request import AdjustHoldingForDateReq
|
|
31
31
|
from lusid.models.adjust_holding_request import AdjustHoldingRequest
|
32
32
|
from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsResponse
|
33
33
|
from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
|
34
|
+
from lusid.models.batch_upsert_transaction_settlement_instruction_response import BatchUpsertTransactionSettlementInstructionResponse
|
34
35
|
from lusid.models.bucketed_cash_flow_request import BucketedCashFlowRequest
|
35
36
|
from lusid.models.bucketed_cash_flow_response import BucketedCashFlowResponse
|
36
37
|
from lusid.models.cancel_single_holding_adjustment_request import CancelSingleHoldingAdjustmentRequest
|
@@ -870,6 +871,181 @@ class TransactionPortfoliosApi:
|
|
870
871
|
_request_auth=_params.get('_request_auth'))
|
871
872
|
|
872
873
|
|
874
|
+
@overload
|
875
|
+
async def batch_upsert_settlement_instructions(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio.")], request_body : Annotated[Dict[str, SettlementInstructionRequest], Field(..., description="The definition of the settlement instruction.")], **kwargs) -> BatchUpsertTransactionSettlementInstructionResponse: # noqa: E501
|
876
|
+
...
|
877
|
+
|
878
|
+
@overload
|
879
|
+
def batch_upsert_settlement_instructions(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio.")], request_body : Annotated[Dict[str, SettlementInstructionRequest], Field(..., description="The definition of the settlement instruction.")], async_req: Optional[bool]=True, **kwargs) -> BatchUpsertTransactionSettlementInstructionResponse: # noqa: E501
|
880
|
+
...
|
881
|
+
|
882
|
+
@validate_arguments
|
883
|
+
def batch_upsert_settlement_instructions(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio.")], request_body : Annotated[Dict[str, SettlementInstructionRequest], Field(..., description="The definition of the settlement instruction.")], async_req: Optional[bool]=None, **kwargs) -> Union[BatchUpsertTransactionSettlementInstructionResponse, Awaitable[BatchUpsertTransactionSettlementInstructionResponse]]: # noqa: E501
|
884
|
+
"""[EARLY ACCESS] BatchUpsertSettlementInstructions: Batch Upsert Settlement Instructions. # noqa: E501
|
885
|
+
|
886
|
+
Create or update instructions to settle specific transactions. # noqa: E501
|
887
|
+
This method makes a synchronous HTTP request by default. To make an
|
888
|
+
asynchronous HTTP request, please pass async_req=True
|
889
|
+
|
890
|
+
>>> thread = api.batch_upsert_settlement_instructions(scope, code, request_body, async_req=True)
|
891
|
+
>>> result = thread.get()
|
892
|
+
|
893
|
+
:param scope: The scope of the portfolio. (required)
|
894
|
+
:type scope: str
|
895
|
+
:param code: The code of the portfolio. (required)
|
896
|
+
:type code: str
|
897
|
+
:param request_body: The definition of the settlement instruction. (required)
|
898
|
+
:type request_body: Dict[str, SettlementInstructionRequest]
|
899
|
+
:param async_req: Whether to execute the request asynchronously.
|
900
|
+
:type async_req: bool, optional
|
901
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
902
|
+
:param opts: Configuration options for this request
|
903
|
+
:type opts: ConfigurationOptions, optional
|
904
|
+
:return: Returns the result object.
|
905
|
+
If the method is called asynchronously,
|
906
|
+
returns the request thread.
|
907
|
+
:rtype: BatchUpsertTransactionSettlementInstructionResponse
|
908
|
+
"""
|
909
|
+
kwargs['_return_http_data_only'] = True
|
910
|
+
if '_preload_content' in kwargs:
|
911
|
+
message = "Error! Please call the batch_upsert_settlement_instructions_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
912
|
+
raise ValueError(message)
|
913
|
+
if async_req is not None:
|
914
|
+
kwargs['async_req'] = async_req
|
915
|
+
return self.batch_upsert_settlement_instructions_with_http_info(scope, code, request_body, **kwargs) # noqa: E501
|
916
|
+
|
917
|
+
@validate_arguments
|
918
|
+
def batch_upsert_settlement_instructions_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the portfolio.")], code : Annotated[StrictStr, Field(..., description="The code of the portfolio.")], request_body : Annotated[Dict[str, SettlementInstructionRequest], Field(..., description="The definition of the settlement instruction.")], **kwargs) -> ApiResponse: # noqa: E501
|
919
|
+
"""[EARLY ACCESS] BatchUpsertSettlementInstructions: Batch Upsert Settlement Instructions. # noqa: E501
|
920
|
+
|
921
|
+
Create or update instructions to settle specific transactions. # noqa: E501
|
922
|
+
This method makes a synchronous HTTP request by default. To make an
|
923
|
+
asynchronous HTTP request, please pass async_req=True
|
924
|
+
|
925
|
+
>>> thread = api.batch_upsert_settlement_instructions_with_http_info(scope, code, request_body, async_req=True)
|
926
|
+
>>> result = thread.get()
|
927
|
+
|
928
|
+
:param scope: The scope of the portfolio. (required)
|
929
|
+
:type scope: str
|
930
|
+
:param code: The code of the portfolio. (required)
|
931
|
+
:type code: str
|
932
|
+
:param request_body: The definition of the settlement instruction. (required)
|
933
|
+
:type request_body: Dict[str, SettlementInstructionRequest]
|
934
|
+
:param async_req: Whether to execute the request asynchronously.
|
935
|
+
:type async_req: bool, optional
|
936
|
+
:param _preload_content: if False, the ApiResponse.data will
|
937
|
+
be set to none and raw_data will store the
|
938
|
+
HTTP response body without reading/decoding.
|
939
|
+
Default is True.
|
940
|
+
:type _preload_content: bool, optional
|
941
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
942
|
+
object with status code, headers, etc
|
943
|
+
:type _return_http_data_only: bool, optional
|
944
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
945
|
+
:param opts: Configuration options for this request
|
946
|
+
:type opts: ConfigurationOptions, optional
|
947
|
+
:param _request_auth: set to override the auth_settings for an a single
|
948
|
+
request; this effectively ignores the authentication
|
949
|
+
in the spec for a single request.
|
950
|
+
:type _request_auth: dict, optional
|
951
|
+
:type _content_type: string, optional: force content-type for the request
|
952
|
+
:return: Returns the result object.
|
953
|
+
If the method is called asynchronously,
|
954
|
+
returns the request thread.
|
955
|
+
:rtype: tuple(BatchUpsertTransactionSettlementInstructionResponse, status_code(int), headers(HTTPHeaderDict))
|
956
|
+
"""
|
957
|
+
|
958
|
+
_params = locals()
|
959
|
+
|
960
|
+
_all_params = [
|
961
|
+
'scope',
|
962
|
+
'code',
|
963
|
+
'request_body'
|
964
|
+
]
|
965
|
+
_all_params.extend(
|
966
|
+
[
|
967
|
+
'async_req',
|
968
|
+
'_return_http_data_only',
|
969
|
+
'_preload_content',
|
970
|
+
'_request_timeout',
|
971
|
+
'_request_auth',
|
972
|
+
'_content_type',
|
973
|
+
'_headers',
|
974
|
+
'opts'
|
975
|
+
]
|
976
|
+
)
|
977
|
+
|
978
|
+
# validate the arguments
|
979
|
+
for _key, _val in _params['kwargs'].items():
|
980
|
+
if _key not in _all_params:
|
981
|
+
raise ApiTypeError(
|
982
|
+
"Got an unexpected keyword argument '%s'"
|
983
|
+
" to method batch_upsert_settlement_instructions" % _key
|
984
|
+
)
|
985
|
+
_params[_key] = _val
|
986
|
+
del _params['kwargs']
|
987
|
+
|
988
|
+
_collection_formats = {}
|
989
|
+
|
990
|
+
# process the path parameters
|
991
|
+
_path_params = {}
|
992
|
+
if _params['scope']:
|
993
|
+
_path_params['scope'] = _params['scope']
|
994
|
+
|
995
|
+
if _params['code']:
|
996
|
+
_path_params['code'] = _params['code']
|
997
|
+
|
998
|
+
|
999
|
+
# process the query parameters
|
1000
|
+
_query_params = []
|
1001
|
+
# process the header parameters
|
1002
|
+
_header_params = dict(_params.get('_headers', {}))
|
1003
|
+
# process the form parameters
|
1004
|
+
_form_params = []
|
1005
|
+
_files = {}
|
1006
|
+
# process the body parameter
|
1007
|
+
_body_params = None
|
1008
|
+
if _params['request_body'] is not None:
|
1009
|
+
_body_params = _params['request_body']
|
1010
|
+
|
1011
|
+
# set the HTTP header `Accept`
|
1012
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1013
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
1014
|
+
|
1015
|
+
# set the HTTP header `Content-Type`
|
1016
|
+
_content_types_list = _params.get('_content_type',
|
1017
|
+
self.api_client.select_header_content_type(
|
1018
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
1019
|
+
if _content_types_list:
|
1020
|
+
_header_params['Content-Type'] = _content_types_list
|
1021
|
+
|
1022
|
+
# authentication setting
|
1023
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
1024
|
+
|
1025
|
+
_response_types_map = {
|
1026
|
+
'201': "BatchUpsertTransactionSettlementInstructionResponse",
|
1027
|
+
'400': "LusidValidationProblemDetails",
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
return self.api_client.call_api(
|
1031
|
+
'/api/transactionportfolios/{scope}/{code}/settlementinstructions/$batchUpsert', 'POST',
|
1032
|
+
_path_params,
|
1033
|
+
_query_params,
|
1034
|
+
_header_params,
|
1035
|
+
body=_body_params,
|
1036
|
+
post_params=_form_params,
|
1037
|
+
files=_files,
|
1038
|
+
response_types_map=_response_types_map,
|
1039
|
+
auth_settings=_auth_settings,
|
1040
|
+
async_req=_params.get('async_req'),
|
1041
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1042
|
+
_preload_content=_params.get('_preload_content', True),
|
1043
|
+
_request_timeout=_params.get('_request_timeout'),
|
1044
|
+
opts=_params.get('opts'),
|
1045
|
+
collection_formats=_collection_formats,
|
1046
|
+
_request_auth=_params.get('_request_auth'))
|
1047
|
+
|
1048
|
+
|
873
1049
|
@overload
|
874
1050
|
async def batch_upsert_transactions(self, scope : Annotated[StrictStr, Field(..., description="The scope of the transaction portfolio.")], code : Annotated[StrictStr, Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], success_mode : Annotated[StrictStr, Field(..., description="Whether the batch request should fail Atomically or in a Partial fashion - Allowed Values: Atomic, Partial.")], request_body : Annotated[Dict[str, TransactionRequest], Field(..., description="The payload describing the transactions to be created or updated.")], preserve_properties : Annotated[Optional[StrictBool], Field(description="If set to false, the entire property set will be overwritten by the provided properties. If not specified or set to true, only the properties provided will be updated.")] = None, **kwargs) -> BatchUpsertPortfolioTransactionsResponse: # noqa: E501
|
875
1051
|
...
|
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.8322\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
@@ -101,6 +101,7 @@ from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUp
|
|
101
101
|
from lusid.models.batch_upsert_portfolio_access_metadata_response_item import BatchUpsertPortfolioAccessMetadataResponseItem
|
102
102
|
from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
|
103
103
|
from lusid.models.batch_upsert_property_definition_properties_response import BatchUpsertPropertyDefinitionPropertiesResponse
|
104
|
+
from lusid.models.batch_upsert_transaction_settlement_instruction_response import BatchUpsertTransactionSettlementInstructionResponse
|
104
105
|
from lusid.models.block import Block
|
105
106
|
from lusid.models.block_and_order_id_request import BlockAndOrderIdRequest
|
106
107
|
from lusid.models.block_and_orders import BlockAndOrders
|
@@ -1397,6 +1398,7 @@ __all__ = [
|
|
1397
1398
|
"BatchUpsertPortfolioAccessMetadataResponseItem",
|
1398
1399
|
"BatchUpsertPortfolioTransactionsResponse",
|
1399
1400
|
"BatchUpsertPropertyDefinitionPropertiesResponse",
|
1401
|
+
"BatchUpsertTransactionSettlementInstructionResponse",
|
1400
1402
|
"Block",
|
1401
1403
|
"BlockAndOrderIdRequest",
|
1402
1404
|
"BlockAndOrders",
|
@@ -0,0 +1,137 @@
|
|
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.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist
|
23
|
+
from lusid.models.error_detail import ErrorDetail
|
24
|
+
from lusid.models.link import Link
|
25
|
+
from lusid.models.transaction_settlement_instruction import TransactionSettlementInstruction
|
26
|
+
|
27
|
+
class BatchUpsertTransactionSettlementInstructionResponse(BaseModel):
|
28
|
+
"""
|
29
|
+
BatchUpsertTransactionSettlementInstructionResponse
|
30
|
+
"""
|
31
|
+
href: Optional[StrictStr] = Field(None,alias="href", description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
32
|
+
values: Optional[Dict[str, TransactionSettlementInstruction]] = Field(None, description="The settlement instructions which have been successfully upserted.")
|
33
|
+
failed: Optional[Dict[str, ErrorDetail]] = Field(None, description="The request ids of the settlement instructions which could not be upserted, along with a reason for their failure.")
|
34
|
+
links: Optional[conlist(Link)] = None
|
35
|
+
__properties = ["href", "values", "failed", "links"]
|
36
|
+
|
37
|
+
class Config:
|
38
|
+
"""Pydantic configuration"""
|
39
|
+
allow_population_by_field_name = True
|
40
|
+
validate_assignment = True
|
41
|
+
|
42
|
+
def __str__(self):
|
43
|
+
"""For `print` and `pprint`"""
|
44
|
+
return pprint.pformat(self.dict(by_alias=False))
|
45
|
+
|
46
|
+
def __repr__(self):
|
47
|
+
"""For `print` and `pprint`"""
|
48
|
+
return self.to_str()
|
49
|
+
|
50
|
+
def to_str(self) -> str:
|
51
|
+
"""Returns the string representation of the model using alias"""
|
52
|
+
return pprint.pformat(self.dict(by_alias=True))
|
53
|
+
|
54
|
+
def to_json(self) -> str:
|
55
|
+
"""Returns the JSON representation of the model using alias"""
|
56
|
+
return json.dumps(self.to_dict())
|
57
|
+
|
58
|
+
@classmethod
|
59
|
+
def from_json(cls, json_str: str) -> BatchUpsertTransactionSettlementInstructionResponse:
|
60
|
+
"""Create an instance of BatchUpsertTransactionSettlementInstructionResponse from a JSON string"""
|
61
|
+
return cls.from_dict(json.loads(json_str))
|
62
|
+
|
63
|
+
def to_dict(self):
|
64
|
+
"""Returns the dictionary representation of the model using alias"""
|
65
|
+
_dict = self.dict(by_alias=True,
|
66
|
+
exclude={
|
67
|
+
},
|
68
|
+
exclude_none=True)
|
69
|
+
# override the default output from pydantic by calling `to_dict()` of each value in values (dict)
|
70
|
+
_field_dict = {}
|
71
|
+
if self.values:
|
72
|
+
for _key in self.values:
|
73
|
+
if self.values[_key]:
|
74
|
+
_field_dict[_key] = self.values[_key].to_dict()
|
75
|
+
_dict['values'] = _field_dict
|
76
|
+
# override the default output from pydantic by calling `to_dict()` of each value in failed (dict)
|
77
|
+
_field_dict = {}
|
78
|
+
if self.failed:
|
79
|
+
for _key in self.failed:
|
80
|
+
if self.failed[_key]:
|
81
|
+
_field_dict[_key] = self.failed[_key].to_dict()
|
82
|
+
_dict['failed'] = _field_dict
|
83
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
84
|
+
_items = []
|
85
|
+
if self.links:
|
86
|
+
for _item in self.links:
|
87
|
+
if _item:
|
88
|
+
_items.append(_item.to_dict())
|
89
|
+
_dict['links'] = _items
|
90
|
+
# set to None if href (nullable) is None
|
91
|
+
# and __fields_set__ contains the field
|
92
|
+
if self.href is None and "href" in self.__fields_set__:
|
93
|
+
_dict['href'] = None
|
94
|
+
|
95
|
+
# set to None if values (nullable) is None
|
96
|
+
# and __fields_set__ contains the field
|
97
|
+
if self.values is None and "values" in self.__fields_set__:
|
98
|
+
_dict['values'] = None
|
99
|
+
|
100
|
+
# set to None if failed (nullable) is None
|
101
|
+
# and __fields_set__ contains the field
|
102
|
+
if self.failed is None and "failed" in self.__fields_set__:
|
103
|
+
_dict['failed'] = None
|
104
|
+
|
105
|
+
# set to None if links (nullable) is None
|
106
|
+
# and __fields_set__ contains the field
|
107
|
+
if self.links is None and "links" in self.__fields_set__:
|
108
|
+
_dict['links'] = None
|
109
|
+
|
110
|
+
return _dict
|
111
|
+
|
112
|
+
@classmethod
|
113
|
+
def from_dict(cls, obj: dict) -> BatchUpsertTransactionSettlementInstructionResponse:
|
114
|
+
"""Create an instance of BatchUpsertTransactionSettlementInstructionResponse from a dict"""
|
115
|
+
if obj is None:
|
116
|
+
return None
|
117
|
+
|
118
|
+
if not isinstance(obj, dict):
|
119
|
+
return BatchUpsertTransactionSettlementInstructionResponse.parse_obj(obj)
|
120
|
+
|
121
|
+
_obj = BatchUpsertTransactionSettlementInstructionResponse.parse_obj({
|
122
|
+
"href": obj.get("href"),
|
123
|
+
"values": dict(
|
124
|
+
(_k, TransactionSettlementInstruction.from_dict(_v))
|
125
|
+
for _k, _v in obj.get("values").items()
|
126
|
+
)
|
127
|
+
if obj.get("values") is not None
|
128
|
+
else None,
|
129
|
+
"failed": dict(
|
130
|
+
(_k, ErrorDetail.from_dict(_v))
|
131
|
+
for _k, _v in obj.get("failed").items()
|
132
|
+
)
|
133
|
+
if obj.get("failed") is not None
|
134
|
+
else None,
|
135
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
136
|
+
})
|
137
|
+
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.963
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -270,15 +270,15 @@ Class | Method | HTTP request | Description
|
|
270
270
|
*FundsApi* | [**delete_fee**](docs/FundsApi.md#delete_fee) | **DELETE** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] DeleteFee: Delete a Fee.
|
271
271
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
272
272
|
*FundsApi* | [**delete_valuation_point**](docs/FundsApi.md#delete_valuation_point) | **DELETE** /api/funds/{scope}/{code}/valuationpoints/{diaryEntryCode} | [EXPERIMENTAL] DeleteValuationPoint: Delete a Valuation Point.
|
273
|
-
*FundsApi* | [**finalise_candidate_valuation_point**](docs/FundsApi.md#finalise_candidate_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuationPoint: Finalise Candidate.
|
273
|
+
*FundsApi* | [**finalise_candidate_valuation_point**](docs/FundsApi.md#finalise_candidate_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuationPoint: Finalise a Candidate Valuation Point.
|
274
274
|
*FundsApi* | [**get_fee**](docs/FundsApi.md#get_fee) | **GET** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] GetFee: Get a Fee for a specified Fund.
|
275
|
-
*FundsApi* | [**get_fee_properties**](docs/FundsApi.md#get_fee_properties) | **GET** /api/funds/{scope}/{code}/fees/{feeCode}/properties | [EXPERIMENTAL] GetFeeProperties: Get Fee properties
|
275
|
+
*FundsApi* | [**get_fee_properties**](docs/FundsApi.md#get_fee_properties) | **GET** /api/funds/{scope}/{code}/fees/{feeCode}/properties | [EXPERIMENTAL] GetFeeProperties: Get Fee properties.
|
276
276
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
277
|
-
*FundsApi* | [**get_fund_properties**](docs/FundsApi.md#get_fund_properties) | **GET** /api/funds/{scope}/{code}/properties | [EXPERIMENTAL] GetFundProperties: Get Fund properties
|
277
|
+
*FundsApi* | [**get_fund_properties**](docs/FundsApi.md#get_fund_properties) | **GET** /api/funds/{scope}/{code}/properties | [EXPERIMENTAL] GetFundProperties: Get Fund properties.
|
278
278
|
*FundsApi* | [**get_holdings_for_fund**](docs/FundsApi.md#get_holdings_for_fund) | **POST** /api/funds/{scope}/{code}/$holdings | [EXPERIMENTAL] GetHoldingsForFund: Get holdings for transaction portfolios in a Fund.
|
279
|
-
*FundsApi* | [**get_valuation_for_fund**](docs/FundsApi.md#get_valuation_for_fund) | **POST** /api/funds/{scope}/{code}/$valuation | [EXPERIMENTAL] GetValuationForFund: Perform valuation for a Fund
|
279
|
+
*FundsApi* | [**get_valuation_for_fund**](docs/FundsApi.md#get_valuation_for_fund) | **POST** /api/funds/{scope}/{code}/$valuation | [EXPERIMENTAL] GetValuationForFund: Perform valuation for a Fund.
|
280
280
|
*FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints/$query | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
|
281
|
-
*FundsApi* | [**get_valuation_point_journal_entry_lines**](docs/FundsApi.md#get_valuation_point_journal_entry_lines) | **POST** /api/funds/{scope}/{code}/valuationpoints/journalentrylines/$query | [EXPERIMENTAL] GetValuationPointJournalEntryLines: Get the Journal Entry
|
281
|
+
*FundsApi* | [**get_valuation_point_journal_entry_lines**](docs/FundsApi.md#get_valuation_point_journal_entry_lines) | **POST** /api/funds/{scope}/{code}/valuationpoints/journalentrylines/$query | [EXPERIMENTAL] GetValuationPointJournalEntryLines: Get the Journal Entry Lines for the given Fund.
|
282
282
|
*FundsApi* | [**get_valuation_point_pnl_summary**](docs/FundsApi.md#get_valuation_point_pnl_summary) | **POST** /api/funds/{scope}/{code}/valuationpoints/pnlsummary/$query | [EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund.
|
283
283
|
*FundsApi* | [**get_valuation_point_transactions**](docs/FundsApi.md#get_valuation_point_transactions) | **POST** /api/funds/{scope}/{code}/valuationpoints/transactions/$query | [EXPERIMENTAL] GetValuationPointTransactions: Get the Transactions for the given Fund.
|
284
284
|
*FundsApi* | [**get_valuation_point_trial_balance**](docs/FundsApi.md#get_valuation_point_trial_balance) | **POST** /api/funds/{scope}/{code}/valuationpoints/trialbalance/$query | [EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund.
|
@@ -288,9 +288,9 @@ Class | Method | HTTP request | Description
|
|
288
288
|
*FundsApi* | [**list_valuation_point_overview**](docs/FundsApi.md#list_valuation_point_overview) | **GET** /api/funds/{scope}/{code}/valuationPointOverview | [EXPERIMENTAL] ListValuationPointOverview: List Valuation Points Overview for a given Fund.
|
289
289
|
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
|
290
290
|
*FundsApi* | [**patch_fund**](docs/FundsApi.md#patch_fund) | **PATCH** /api/funds/{scope}/{code} | [EXPERIMENTAL] PatchFund: Patch a Fund.
|
291
|
-
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a
|
291
|
+
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a Fund.
|
292
292
|
*FundsApi* | [**upsert_bookmark**](docs/FundsApi.md#upsert_bookmark) | **POST** /api/funds/{scope}/{code}/bookmarks | [EXPERIMENTAL] UpsertBookmark: Upsert a bookmark.
|
293
|
-
*FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert Valuation Point.
|
293
|
+
*FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert a Valuation Point.
|
294
294
|
*FundsApi* | [**upsert_fee_properties**](docs/FundsApi.md#upsert_fee_properties) | **POST** /api/funds/{scope}/{code}/fees/{feeCode}/properties/$upsert | [EXPERIMENTAL] UpsertFeeProperties: Upsert Fee properties.
|
295
295
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
|
296
296
|
*GroupReconciliationsApi* | [**batch_update_comparison_results**](docs/GroupReconciliationsApi.md#batch_update_comparison_results) | **POST** /api/reconciliations/groupreconciliationdefinitions/{scope}/{code}/comparisonresults/$batchReview | [EXPERIMENTAL] BatchUpdateComparisonResults: Add User Review entries for a range of comparison results related to a specific GroupReconciliationDefinition.
|
@@ -633,6 +633,7 @@ Class | Method | HTTP request | Description
|
|
633
633
|
*TransactionPortfoliosApi* | [**batch_adjust_holdings**](docs/TransactionPortfoliosApi.md#batch_adjust_holdings) | **POST** /api/transactionportfolios/{scope}/{code}/holdings/$batchAdjust | BatchAdjustHoldings: Batch adjust holdings
|
634
634
|
*TransactionPortfoliosApi* | [**batch_create_trade_tickets**](docs/TransactionPortfoliosApi.md#batch_create_trade_tickets) | **POST** /api/transactionportfolios/{scope}/{code}/$batchtradetickets | BatchCreateTradeTickets: Batch Create Trade Tickets
|
635
635
|
*TransactionPortfoliosApi* | [**batch_set_holdings**](docs/TransactionPortfoliosApi.md#batch_set_holdings) | **POST** /api/transactionportfolios/{scope}/{code}/holdings/$batchSet | BatchSetHoldings: Batch set holdings
|
636
|
+
*TransactionPortfoliosApi* | [**batch_upsert_settlement_instructions**](docs/TransactionPortfoliosApi.md#batch_upsert_settlement_instructions) | **POST** /api/transactionportfolios/{scope}/{code}/settlementinstructions/$batchUpsert | [EARLY ACCESS] BatchUpsertSettlementInstructions: Batch Upsert Settlement Instructions.
|
636
637
|
*TransactionPortfoliosApi* | [**batch_upsert_transactions**](docs/TransactionPortfoliosApi.md#batch_upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$batchUpsert | BatchUpsertTransactions: Batch upsert transactions
|
637
638
|
*TransactionPortfoliosApi* | [**build_settlement_instructions**](docs/TransactionPortfoliosApi.md#build_settlement_instructions) | **POST** /api/transactionportfolios/{scope}/{code}/settlementinstructions/$build | [EARLY ACCESS] BuildSettlementInstructions: Build Settlement Instructions
|
638
639
|
*TransactionPortfoliosApi* | [**build_transactions**](docs/TransactionPortfoliosApi.md#build_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$build | BuildTransactions: Build transactions
|
@@ -780,6 +781,7 @@ Class | Method | HTTP request | Description
|
|
780
781
|
- [BatchUpsertPortfolioAccessMetadataResponseItem](docs/BatchUpsertPortfolioAccessMetadataResponseItem.md)
|
781
782
|
- [BatchUpsertPortfolioTransactionsResponse](docs/BatchUpsertPortfolioTransactionsResponse.md)
|
782
783
|
- [BatchUpsertPropertyDefinitionPropertiesResponse](docs/BatchUpsertPropertyDefinitionPropertiesResponse.md)
|
784
|
+
- [BatchUpsertTransactionSettlementInstructionResponse](docs/BatchUpsertTransactionSettlementInstructionResponse.md)
|
783
785
|
- [Block](docs/Block.md)
|
784
786
|
- [BlockAndOrderIdRequest](docs/BlockAndOrderIdRequest.md)
|
785
787
|
- [BlockAndOrders](docs/BlockAndOrders.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=wKp2SVKOuS8wnKEQCWa9qAzrjWqj0CwlFcJJlFKHfZI,147164
|
2
2
|
lusid/api/__init__.py,sha256=yCGwgeQBZ1RZovOUo7Jq24Txz4o6naRgnWAzQVGdHAk,6784
|
3
3
|
lusid/api/abor_api.py,sha256=EdyHrd5yRcz7MOffhFa1cgtcBaPuPJmbArHWIXv7tuQ,174322
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=xQ9HcXm02eDFhCdWUHjqFRWl1oQMxm2LNObJ9kcLauU,84216
|
@@ -23,13 +23,13 @@ lusid/api/custom_entities_api.py,sha256=Cr4KXS9-q_sFfYxoQrTnZhDheA7OW73kcZTEEv4f
|
|
23
23
|
lusid/api/custom_entity_definitions_api.py,sha256=Hcuv2Au9oMpg1E5aMyveiq3dxcwldvZrvRzVdI-T_mo,40202
|
24
24
|
lusid/api/custom_entity_types_api.py,sha256=Ldk2f5BDjzmnFUDR-Rw71tCpNoEnNeHZ5bptJUrV1EQ,40856
|
25
25
|
lusid/api/cut_label_definitions_api.py,sha256=aBnmIqapySIsW4JiWtbGrFVLC1mMZBZqSSCeccO3moQ,46261
|
26
|
-
lusid/api/data_types_api.py,sha256=
|
26
|
+
lusid/api/data_types_api.py,sha256=Jv-BAGc-Ue0tgFwVRLXsaOxFvSpsGmkaFF23Sn47IMA,111402
|
27
27
|
lusid/api/derived_transaction_portfolios_api.py,sha256=0Krc4vfLm73UqzKQ4nae7Zcto2e_q-CAAk949uVg4pE,19738
|
28
28
|
lusid/api/entities_api.py,sha256=uImduqQPNkudngZn85Zwk35oAG-JEFvGEpADfJeMf_E,83685
|
29
29
|
lusid/api/executions_api.py,sha256=ZL8xmOxGpjIJtdU7lCdwcapILElWx7FGBDr8cjskCZs,44076
|
30
30
|
lusid/api/fee_types_api.py,sha256=qRVfNS91XHBlD_CrewsPMsetIHB6M0mn3RWbD4LTuro,54620
|
31
31
|
lusid/api/fund_configuration_api.py,sha256=18oHsK1ncAobjd8_uDHAI7UbWz4Vm5bPVubFmBdoERo,72665
|
32
|
-
lusid/api/funds_api.py,sha256=
|
32
|
+
lusid/api/funds_api.py,sha256=hJdhXBYo-VXO8HSc8Ib1_axTmAfCTsHw-QECaBKGSN0,402265
|
33
33
|
lusid/api/group_reconciliations_api.py,sha256=aoGqJa8X-uS9rVr7xOJOdbeu8jYLqYM2DoHVH7UGTj0,162917
|
34
34
|
lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL9Dq4YH60MI,64305
|
35
35
|
lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
|
@@ -47,7 +47,7 @@ lusid/api/packages_api.py,sha256=Vis2ktcicNqTF8Bw66vWhmFUyu0jOfiR5FT6iLKGXSM,436
|
|
47
47
|
lusid/api/participations_api.py,sha256=UivNIoEmZ2eIxYwHvMnW94Tfy6loXDu5PO5loY0yDJk,44964
|
48
48
|
lusid/api/persons_api.py,sha256=SlNOfUj8ww6vBD-zQoisNNe45scWn1QNkDOZu8ostb4,250280
|
49
49
|
lusid/api/placements_api.py,sha256=LsjljDP59rUcpkkGG_hJX-HX06fFIeNnoVomsFpL-QY,45498
|
50
|
-
lusid/api/portfolio_groups_api.py,sha256=
|
50
|
+
lusid/api/portfolio_groups_api.py,sha256=dnbfzVTb7Ytn2PjHW4KcQD7w9PK2Swjz1zpgPPdPXXA,371285
|
51
51
|
lusid/api/portfolios_api.py,sha256=noShU8FEhBz1FEIWc9WQMuPnk9mlhSmZuZcoKax8SCY,417537
|
52
52
|
lusid/api/property_definitions_api.py,sha256=C_WNPwPBJ6BJAnQkVbgW0bvIFhSQc3tfpcv2BIDAn6k,136845
|
53
53
|
lusid/api/queryable_keys_api.py,sha256=oZWb9BugLDEKmYay_DhuYu4B7pwEramzz5dBHiqgGsc,10297
|
@@ -74,13 +74,13 @@ lusid/api/tax_rule_sets_api.py,sha256=ia8zjTdwlgLGC8KDWFBT21agOrfWgn1zC_ik75mNDJ
|
|
74
74
|
lusid/api/timelines_api.py,sha256=uxSMdLi9dI6y8LSaezsLXEVedy9I7A-k22RAKY0Rw4k,109878
|
75
75
|
lusid/api/transaction_configuration_api.py,sha256=VKzr-F1WWtMXK1MuyiiE7reWJZrBUQs655cIgX8CGC0,122096
|
76
76
|
lusid/api/transaction_fees_api.py,sha256=r8Gl44-WYZebyJ_Uw2stLsf3-hPi1bK6Ij64Kx0L6A8,62698
|
77
|
-
lusid/api/transaction_portfolios_api.py,sha256=
|
77
|
+
lusid/api/transaction_portfolios_api.py,sha256=HqTP3fDLJ8MOAShOyWdvW9tKJ1r507ENu0EsGKAhyso,694297
|
78
78
|
lusid/api/transfer_agency_api.py,sha256=m-o3srFi7ZcUcWlO_lpOJiYZJvDSt2JLy7QPcXQoPh4,9545
|
79
79
|
lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,20227
|
80
80
|
lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
|
81
81
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
82
82
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
83
|
-
lusid/configuration.py,sha256=
|
83
|
+
lusid/configuration.py,sha256=k8UZxSWpqIKVOzI3RdgSEecEby1gNvnaaJstScbw9Xw,17980
|
84
84
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
85
85
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
86
86
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -95,7 +95,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
95
95
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
96
96
|
lusid/extensions/socket_keep_alive.py,sha256=eX5ICvGfVzUCGIm80Q2RknfFZrBQAdnrcpY61M29V_k,1997
|
97
97
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
98
|
-
lusid/models/__init__.py,sha256=
|
98
|
+
lusid/models/__init__.py,sha256=dXRFd1filWJ_P0iwAUJopfnwfit4z92ZpIBN5uQinFQ,139348
|
99
99
|
lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
|
100
100
|
lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
|
101
101
|
lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
|
@@ -183,6 +183,7 @@ lusid/models/batch_upsert_portfolio_access_metadata_response.py,sha256=DtCMT2jDx
|
|
183
183
|
lusid/models/batch_upsert_portfolio_access_metadata_response_item.py,sha256=tuH9DGT8nUrmfPqOTwbVbMVuwdIlAoD31-yhVqZUrWQ,3550
|
184
184
|
lusid/models/batch_upsert_portfolio_transactions_response.py,sha256=0IVDUtW7cwLo_DWrjiweBD_WRvUp2smI-unU0XJsnDI,6035
|
185
185
|
lusid/models/batch_upsert_property_definition_properties_response.py,sha256=xITK95pcgyoFz3m4U96pRUQpG88I_XOFrSjchjKU7Wo,4656
|
186
|
+
lusid/models/batch_upsert_transaction_settlement_instruction_response.py,sha256=Yg-pEbeODPmodD2loGvS-3MKnHiDPI5bWP7_fr3D7Tg,5455
|
186
187
|
lusid/models/block.py,sha256=b0VMrkJpD_uqrzLJU8jcMw516FB7jnV-HAmJxxI8-pA,8148
|
187
188
|
lusid/models/block_and_order_id_request.py,sha256=vkvCIdiZKrery_X3-qnyB3Y0EY5zB_COFuh3HsGJNqA,2864
|
188
189
|
lusid/models/block_and_orders.py,sha256=dC3tTwGLZ95CXYp_vVB3xvo6JTCnJuH32h3Ua6NVels,2805
|
@@ -1391,6 +1392,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1391
1392
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1392
1393
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1393
1394
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1394
|
-
lusid_sdk-2.1.
|
1395
|
-
lusid_sdk-2.1.
|
1396
|
-
lusid_sdk-2.1.
|
1395
|
+
lusid_sdk-2.1.963.dist-info/METADATA,sha256=uYcbjR0DrYvTQAzcpnHO9yUa7ZYElbTXdFBhxt_WwQU,234072
|
1396
|
+
lusid_sdk-2.1.963.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1397
|
+
lusid_sdk-2.1.963.dist-info/RECORD,,
|
File without changes
|