lusid-sdk 2.1.703__py3-none-any.whl → 2.1.705__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lusid/api/abor_api.py
CHANGED
@@ -2295,15 +2295,15 @@ class AborApi:
|
|
2295
2295
|
_request_auth=_params.get('_request_auth'))
|
2296
2296
|
|
2297
2297
|
@overload
|
2298
|
-
async def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor
|
2298
|
+
async def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], re_open_period_diary_entry_request : Annotated[Optional[ReOpenPeriodDiaryEntryRequest], Field(description="The request body, containing details about the period to be re-opened.")] = None, **kwargs) -> PeriodDiaryEntriesReopenedResponse: # noqa: E501
|
2299
2299
|
...
|
2300
2300
|
|
2301
2301
|
@overload
|
2302
|
-
def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor
|
2302
|
+
def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], re_open_period_diary_entry_request : Annotated[Optional[ReOpenPeriodDiaryEntryRequest], Field(description="The request body, containing details about the period to be re-opened.")] = None, async_req: Optional[bool]=True, **kwargs) -> PeriodDiaryEntriesReopenedResponse: # noqa: E501
|
2303
2303
|
...
|
2304
2304
|
|
2305
2305
|
@validate_arguments
|
2306
|
-
def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor
|
2306
|
+
def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], re_open_period_diary_entry_request : Annotated[Optional[ReOpenPeriodDiaryEntryRequest], Field(description="The request body, containing details about the period to be re-opened.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PeriodDiaryEntriesReopenedResponse, Awaitable[PeriodDiaryEntriesReopenedResponse]]: # noqa: E501
|
2307
2307
|
"""[EXPERIMENTAL] ReOpenPeriods: Reopen periods from a seed Diary Entry Code or when not specified, the last Closed Period for the given Abor. # noqa: E501
|
2308
2308
|
|
2309
2309
|
Reopens one or more periods. # noqa: E501
|
@@ -2313,11 +2313,11 @@ class AborApi:
|
|
2313
2313
|
>>> thread = api.re_open_periods(scope, code, re_open_period_diary_entry_request, async_req=True)
|
2314
2314
|
>>> result = thread.get()
|
2315
2315
|
|
2316
|
-
:param scope: The scope of the Abor
|
2316
|
+
:param scope: The scope of the Abor. (required)
|
2317
2317
|
:type scope: str
|
2318
|
-
:param code: The code of the Abor
|
2318
|
+
:param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
|
2319
2319
|
:type code: str
|
2320
|
-
:param re_open_period_diary_entry_request: The request body,
|
2320
|
+
:param re_open_period_diary_entry_request: The request body, containing details about the period to be re-opened.
|
2321
2321
|
:type re_open_period_diary_entry_request: ReOpenPeriodDiaryEntryRequest
|
2322
2322
|
:param async_req: Whether to execute the request asynchronously.
|
2323
2323
|
:type async_req: bool, optional
|
@@ -2338,7 +2338,7 @@ class AborApi:
|
|
2338
2338
|
return self.re_open_periods_with_http_info(scope, code, re_open_period_diary_entry_request, **kwargs) # noqa: E501
|
2339
2339
|
|
2340
2340
|
@validate_arguments
|
2341
|
-
def re_open_periods_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor
|
2341
|
+
def re_open_periods_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], re_open_period_diary_entry_request : Annotated[Optional[ReOpenPeriodDiaryEntryRequest], Field(description="The request body, containing details about the period to be re-opened.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
2342
2342
|
"""[EXPERIMENTAL] ReOpenPeriods: Reopen periods from a seed Diary Entry Code or when not specified, the last Closed Period for the given Abor. # noqa: E501
|
2343
2343
|
|
2344
2344
|
Reopens one or more periods. # noqa: E501
|
@@ -2348,11 +2348,11 @@ class AborApi:
|
|
2348
2348
|
>>> thread = api.re_open_periods_with_http_info(scope, code, re_open_period_diary_entry_request, async_req=True)
|
2349
2349
|
>>> result = thread.get()
|
2350
2350
|
|
2351
|
-
:param scope: The scope of the Abor
|
2351
|
+
:param scope: The scope of the Abor. (required)
|
2352
2352
|
:type scope: str
|
2353
|
-
:param code: The code of the Abor
|
2353
|
+
:param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
|
2354
2354
|
:type code: str
|
2355
|
-
:param re_open_period_diary_entry_request: The request body,
|
2355
|
+
:param re_open_period_diary_entry_request: The request body, containing details about the period to be re-opened.
|
2356
2356
|
:type re_open_period_diary_entry_request: ReOpenPeriodDiaryEntryRequest
|
2357
2357
|
:param async_req: Whether to execute the request asynchronously.
|
2358
2358
|
: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.7404\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
lusid/__init__.py,sha256=FWrbueI3l41IUchsiCm0QN0q79nKV7ejrohBf2_9h1c,133795
|
2
2
|
lusid/api/__init__.py,sha256=b9BsX0qfl4jZSlEid6ihux1dyYgNwjtKQZk23veBuc0,6204
|
3
|
-
lusid/api/abor_api.py,sha256=
|
3
|
+
lusid/api/abor_api.py,sha256=dlEEwISzI_StiKKp-VAajSocjPiXmKQskYHQp6bOljE,171294
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=ug36aCVNswcZuRZXSNl1rq9yDrceobDdbVio8EG3oPQ,76011
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=jlvpmsmvVedaMNr1sRMNj2Kj4qArNtZxXKXD0DvRUwM,31574
|
6
6
|
lusid/api/aggregation_api.py,sha256=Hbupc46i7zS4nLAhiWZMU7gQAowBlP__iSotN2zu_Xo,38361
|
@@ -74,7 +74,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
74
74
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
75
75
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
76
76
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
77
|
-
lusid/configuration.py,sha256=
|
77
|
+
lusid/configuration.py,sha256=d0At6B_bP-EU7SRnomMpyYuxzsoPJ3Dw12ub_Wvv4GY,17972
|
78
78
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
79
79
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
80
80
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -1274,6 +1274,6 @@ lusid/models/workspace_update_request.py,sha256=5N7j21uF9XV75Sl3oJbsSOKT5PrQEx3y
|
|
1274
1274
|
lusid/models/yield_curve_data.py,sha256=vtOzY4t2lgHJUWcna9dEKnuZ_tinolyb8IAFPB23DZ0,6543
|
1275
1275
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1276
1276
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1277
|
-
lusid_sdk-2.1.
|
1278
|
-
lusid_sdk-2.1.
|
1279
|
-
lusid_sdk-2.1.
|
1277
|
+
lusid_sdk-2.1.705.dist-info/METADATA,sha256=sBWaVYbSmpo_wNFaqQn0bVE4ihjhYGrBdssBIp85xoA,219380
|
1278
|
+
lusid_sdk-2.1.705.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1279
|
+
lusid_sdk-2.1.705.dist-info/RECORD,,
|
File without changes
|