lusid-sdk 2.1.930__py3-none-any.whl → 2.1.931__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.
@@ -6943,15 +6943,15 @@ class TransactionPortfoliosApi:
|
|
6943
6943
|
|
6944
6944
|
|
6945
6945
|
@overload
|
6946
|
-
async def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
6946
|
+
async def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.")] = None, **kwargs) -> PortfolioDetails: # noqa: E501
|
6947
6947
|
...
|
6948
6948
|
|
6949
6949
|
@overload
|
6950
|
-
def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
6950
|
+
def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.")] = None, async_req: Optional[bool]=True, **kwargs) -> PortfolioDetails: # noqa: E501
|
6951
6951
|
...
|
6952
6952
|
|
6953
6953
|
@validate_arguments
|
6954
|
-
def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
6954
|
+
def patch_portfolio_details(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PortfolioDetails, Awaitable[PortfolioDetails]]: # noqa: E501
|
6955
6955
|
"""PatchPortfolioDetails: Patch portfolio details # noqa: E501
|
6956
6956
|
|
6957
6957
|
Create or update certain details for a particular transaction portfolio. Note that not all elements of a transaction portfolio definition are modifiable once it has been created due to the potential implications for data already stored. The behaviour is defined by the JSON Patch specification. Currently supported fields are: BaseCurrency, AccountingMethod, SubHoldingKeys, AmortisationMethod, TransactionTypeScope, CashGainLossCalculationDate, InstrumentEventConfiguration, AmortisationRuleSetId, TaxRuleSetScope, SettlementConfiguration. # noqa: E501
|
@@ -6967,7 +6967,7 @@ class TransactionPortfoliosApi:
|
|
6967
6967
|
:type code: str
|
6968
6968
|
:param operation: The patch document. (required)
|
6969
6969
|
:type operation: List[Operation]
|
6970
|
-
:param effective_at: The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
6970
|
+
:param effective_at: The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.
|
6971
6971
|
:type effective_at: str
|
6972
6972
|
:param async_req: Whether to execute the request asynchronously.
|
6973
6973
|
:type async_req: bool, optional
|
@@ -6988,7 +6988,7 @@ class TransactionPortfoliosApi:
|
|
6988
6988
|
return self.patch_portfolio_details_with_http_info(scope, code, operation, effective_at, **kwargs) # noqa: E501
|
6989
6989
|
|
6990
6990
|
@validate_arguments
|
6991
|
-
def patch_portfolio_details_with_http_info(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
6991
|
+
def patch_portfolio_details_with_http_info(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.")], operation : Annotated[conlist(Operation), Field(..., description="The patch document.")], effective_at : Annotated[Optional[StrictStr], Field( description="The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
6992
6992
|
"""PatchPortfolioDetails: Patch portfolio details # noqa: E501
|
6993
6993
|
|
6994
6994
|
Create or update certain details for a particular transaction portfolio. Note that not all elements of a transaction portfolio definition are modifiable once it has been created due to the potential implications for data already stored. The behaviour is defined by the JSON Patch specification. Currently supported fields are: BaseCurrency, AccountingMethod, SubHoldingKeys, AmortisationMethod, TransactionTypeScope, CashGainLossCalculationDate, InstrumentEventConfiguration, AmortisationRuleSetId, TaxRuleSetScope, SettlementConfiguration. # noqa: E501
|
@@ -7004,7 +7004,7 @@ class TransactionPortfoliosApi:
|
|
7004
7004
|
:type code: str
|
7005
7005
|
:param operation: The patch document. (required)
|
7006
7006
|
:type operation: List[Operation]
|
7007
|
-
:param effective_at: The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal
|
7007
|
+
:param effective_at: The effective datetime or cut label at which the updated or inserted details should become valid. Defaults to the current LUSID system datetime if not specified. Note that this will affect all bitemporal fields (eg: SettlementConfiguration) in the request (but will not be used for any perpetual fields). When patching a bitemporal field, the field will be updated from the effectiveAt onwards and until the end of effective time.
|
7008
7008
|
:type effective_at: str
|
7009
7009
|
:param async_req: Whether to execute the request asynchronously.
|
7010
7010
|
:type async_req: bool, optional
|
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.8230\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -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=OHs853-U1RWs2oApEO3raiMxixxiMQMcXu566qsm5v4,103968
|
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=rMBKJfmc4KFOJtL4gX--VfROTrPzn7aNoYBKWrL-8Yc,669928
|
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=Rd-AiYZZdwsYDjl2HiIpClvJv20KpYYp-St0LiOdKE8,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
|
@@ -1385,6 +1385,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1385
1385
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1386
1386
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1387
1387
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1388
|
-
lusid_sdk-2.1.
|
1389
|
-
lusid_sdk-2.1.
|
1390
|
-
lusid_sdk-2.1.
|
1388
|
+
lusid_sdk-2.1.931.dist-info/METADATA,sha256=ZCVCP5wgy3_qlk4MvTbn6aOmHeWbSnKUlLDjPfHXrMA,231927
|
1389
|
+
lusid_sdk-2.1.931.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1390
|
+
lusid_sdk-2.1.931.dist-info/RECORD,,
|
File without changes
|