lusid-sdk 2.1.47__py3-none-any.whl → 2.1.61__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.
Potentially problematic release.
This version of lusid-sdk might be problematic. Click here for more details.
- lusid/api/abor_api.py +175 -0
- lusid/configuration.py +1 -1
- lusid/models/bond.py +2 -2
- lusid/models/complex_bond.py +1 -1
- lusid/models/inflation_linked_bond.py +2 -2
- {lusid_sdk-2.1.47.dist-info → lusid_sdk-2.1.61.dist-info}/METADATA +4 -3
- {lusid_sdk-2.1.47.dist-info → lusid_sdk-2.1.61.dist-info}/RECORD +8 -8
- {lusid_sdk-2.1.47.dist-info → lusid_sdk-2.1.61.dist-info}/WHEEL +0 -0
lusid/api/abor_api.py
CHANGED
|
@@ -36,6 +36,7 @@ from lusid.models.diary_entry_request import DiaryEntryRequest
|
|
|
36
36
|
from lusid.models.journal_entry_lines_query_parameters import JournalEntryLinesQueryParameters
|
|
37
37
|
from lusid.models.lock_period_diary_entry_request import LockPeriodDiaryEntryRequest
|
|
38
38
|
from lusid.models.model_property import ModelProperty
|
|
39
|
+
from lusid.models.operation import Operation
|
|
39
40
|
from lusid.models.paged_resource_list_of_abor import PagedResourceListOfAbor
|
|
40
41
|
from lusid.models.paged_resource_list_of_diary_entry import PagedResourceListOfDiaryEntry
|
|
41
42
|
from lusid.models.period_diary_entries_reopened_response import PeriodDiaryEntriesReopenedResponse
|
|
@@ -1948,6 +1949,180 @@ class AborApi:
|
|
|
1948
1949
|
collection_formats=_collection_formats,
|
|
1949
1950
|
_request_auth=_params.get('_request_auth'))
|
|
1950
1951
|
|
|
1952
|
+
@overload
|
|
1953
|
+
async def patch_abor(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.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> Abor: # noqa: E501
|
|
1954
|
+
...
|
|
1955
|
+
|
|
1956
|
+
@overload
|
|
1957
|
+
def patch_abor(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.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], async_req: Optional[bool]=True, **kwargs) -> Abor: # noqa: E501
|
|
1958
|
+
...
|
|
1959
|
+
|
|
1960
|
+
@validate_arguments
|
|
1961
|
+
def patch_abor(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.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], async_req: Optional[bool]=None, **kwargs) -> Union[Abor, Awaitable[Abor]]: # noqa: E501
|
|
1962
|
+
"""[EXPERIMENTAL] PatchAbor: Patch Abor. # noqa: E501
|
|
1963
|
+
|
|
1964
|
+
Create or update certain fields for a particular Abor. The behaviour is defined by the JSON Patch specification. Currently supported fields are: PortfolioIds. # noqa: E501
|
|
1965
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1966
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1967
|
+
|
|
1968
|
+
>>> thread = api.patch_abor(scope, code, operation, async_req=True)
|
|
1969
|
+
>>> result = thread.get()
|
|
1970
|
+
|
|
1971
|
+
:param scope: The scope of the Abor. (required)
|
|
1972
|
+
:type scope: str
|
|
1973
|
+
:param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
|
|
1974
|
+
:type code: str
|
|
1975
|
+
:param operation: The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902. (required)
|
|
1976
|
+
:type operation: List[Operation]
|
|
1977
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
1978
|
+
:type async_req: bool, optional
|
|
1979
|
+
:param _request_timeout: timeout setting for this request.
|
|
1980
|
+
If one number provided, it will be total request
|
|
1981
|
+
timeout. It can also be a pair (tuple) of
|
|
1982
|
+
(connection, read) timeouts.
|
|
1983
|
+
:return: Returns the result object.
|
|
1984
|
+
If the method is called asynchronously,
|
|
1985
|
+
returns the request thread.
|
|
1986
|
+
:rtype: Abor
|
|
1987
|
+
"""
|
|
1988
|
+
kwargs['_return_http_data_only'] = True
|
|
1989
|
+
if '_preload_content' in kwargs:
|
|
1990
|
+
message = "Error! Please call the patch_abor_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
|
1991
|
+
raise ValueError(message)
|
|
1992
|
+
if async_req is not None:
|
|
1993
|
+
kwargs['async_req'] = async_req
|
|
1994
|
+
return self.patch_abor_with_http_info(scope, code, operation, **kwargs) # noqa: E501
|
|
1995
|
+
|
|
1996
|
+
@validate_arguments
|
|
1997
|
+
def patch_abor_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.")], operation : Annotated[conlist(Operation), Field(..., description="The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902.")], **kwargs) -> ApiResponse: # noqa: E501
|
|
1998
|
+
"""[EXPERIMENTAL] PatchAbor: Patch Abor. # noqa: E501
|
|
1999
|
+
|
|
2000
|
+
Create or update certain fields for a particular Abor. The behaviour is defined by the JSON Patch specification. Currently supported fields are: PortfolioIds. # noqa: E501
|
|
2001
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
2002
|
+
asynchronous HTTP request, please pass async_req=True
|
|
2003
|
+
|
|
2004
|
+
>>> thread = api.patch_abor_with_http_info(scope, code, operation, async_req=True)
|
|
2005
|
+
>>> result = thread.get()
|
|
2006
|
+
|
|
2007
|
+
:param scope: The scope of the Abor. (required)
|
|
2008
|
+
:type scope: str
|
|
2009
|
+
:param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
|
|
2010
|
+
:type code: str
|
|
2011
|
+
:param operation: The json patch document. For more information see: https://datatracker.ietf.org/doc/html/rfc6902. (required)
|
|
2012
|
+
:type operation: List[Operation]
|
|
2013
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
2014
|
+
:type async_req: bool, optional
|
|
2015
|
+
:param _preload_content: if False, the ApiResponse.data will
|
|
2016
|
+
be set to none and raw_data will store the
|
|
2017
|
+
HTTP response body without reading/decoding.
|
|
2018
|
+
Default is True.
|
|
2019
|
+
:type _preload_content: bool, optional
|
|
2020
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
|
2021
|
+
object with status code, headers, etc
|
|
2022
|
+
:type _return_http_data_only: bool, optional
|
|
2023
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2024
|
+
number provided, it will be total request
|
|
2025
|
+
timeout. It can also be a pair (tuple) of
|
|
2026
|
+
(connection, read) timeouts.
|
|
2027
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2028
|
+
request; this effectively ignores the authentication
|
|
2029
|
+
in the spec for a single request.
|
|
2030
|
+
:type _request_auth: dict, optional
|
|
2031
|
+
:type _content_type: string, optional: force content-type for the request
|
|
2032
|
+
:return: Returns the result object.
|
|
2033
|
+
If the method is called asynchronously,
|
|
2034
|
+
returns the request thread.
|
|
2035
|
+
:rtype: tuple(Abor, status_code(int), headers(HTTPHeaderDict))
|
|
2036
|
+
"""
|
|
2037
|
+
|
|
2038
|
+
_params = locals()
|
|
2039
|
+
|
|
2040
|
+
_all_params = [
|
|
2041
|
+
'scope',
|
|
2042
|
+
'code',
|
|
2043
|
+
'operation'
|
|
2044
|
+
]
|
|
2045
|
+
_all_params.extend(
|
|
2046
|
+
[
|
|
2047
|
+
'async_req',
|
|
2048
|
+
'_return_http_data_only',
|
|
2049
|
+
'_preload_content',
|
|
2050
|
+
'_request_timeout',
|
|
2051
|
+
'_request_auth',
|
|
2052
|
+
'_content_type',
|
|
2053
|
+
'_headers'
|
|
2054
|
+
]
|
|
2055
|
+
)
|
|
2056
|
+
|
|
2057
|
+
# validate the arguments
|
|
2058
|
+
for _key, _val in _params['kwargs'].items():
|
|
2059
|
+
if _key not in _all_params:
|
|
2060
|
+
raise ApiTypeError(
|
|
2061
|
+
"Got an unexpected keyword argument '%s'"
|
|
2062
|
+
" to method patch_abor" % _key
|
|
2063
|
+
)
|
|
2064
|
+
_params[_key] = _val
|
|
2065
|
+
del _params['kwargs']
|
|
2066
|
+
|
|
2067
|
+
_collection_formats = {}
|
|
2068
|
+
|
|
2069
|
+
# process the path parameters
|
|
2070
|
+
_path_params = {}
|
|
2071
|
+
if _params['scope']:
|
|
2072
|
+
_path_params['scope'] = _params['scope']
|
|
2073
|
+
|
|
2074
|
+
if _params['code']:
|
|
2075
|
+
_path_params['code'] = _params['code']
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
# process the query parameters
|
|
2079
|
+
_query_params = []
|
|
2080
|
+
# process the header parameters
|
|
2081
|
+
_header_params = dict(_params.get('_headers', {}))
|
|
2082
|
+
# process the form parameters
|
|
2083
|
+
_form_params = []
|
|
2084
|
+
_files = {}
|
|
2085
|
+
# process the body parameter
|
|
2086
|
+
_body_params = None
|
|
2087
|
+
if _params['operation'] is not None:
|
|
2088
|
+
_body_params = _params['operation']
|
|
2089
|
+
|
|
2090
|
+
# set the HTTP header `Accept`
|
|
2091
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2092
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
|
2093
|
+
|
|
2094
|
+
# set the HTTP header `Content-Type`
|
|
2095
|
+
_content_types_list = _params.get('_content_type',
|
|
2096
|
+
self.api_client.select_header_content_type(
|
|
2097
|
+
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
|
|
2098
|
+
if _content_types_list:
|
|
2099
|
+
_header_params['Content-Type'] = _content_types_list
|
|
2100
|
+
|
|
2101
|
+
# authentication setting
|
|
2102
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
|
2103
|
+
|
|
2104
|
+
_response_types_map = {
|
|
2105
|
+
'200': "Abor",
|
|
2106
|
+
'400': "LusidValidationProblemDetails",
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
return self.api_client.call_api(
|
|
2110
|
+
'/api/abor/{scope}/{code}', 'PATCH',
|
|
2111
|
+
_path_params,
|
|
2112
|
+
_query_params,
|
|
2113
|
+
_header_params,
|
|
2114
|
+
body=_body_params,
|
|
2115
|
+
post_params=_form_params,
|
|
2116
|
+
files=_files,
|
|
2117
|
+
response_types_map=_response_types_map,
|
|
2118
|
+
auth_settings=_auth_settings,
|
|
2119
|
+
async_req=_params.get('async_req'),
|
|
2120
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
|
2121
|
+
_preload_content=_params.get('_preload_content', True),
|
|
2122
|
+
_request_timeout=_params.get('_request_timeout'),
|
|
2123
|
+
collection_formats=_collection_formats,
|
|
2124
|
+
_request_auth=_params.get('_request_auth'))
|
|
2125
|
+
|
|
1951
2126
|
@overload
|
|
1952
2127
|
async def re_open_periods(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor to be deleted.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor to be deleted. Together with the scope this uniquely identifies the Abor.")], re_open_period_diary_entry_request : Annotated[Optional[ReOpenPeriodDiaryEntryRequest], Field(description="The request body, detailing re open details")] = None, **kwargs) -> PeriodDiaryEntriesReopenedResponse: # noqa: E501
|
|
1953
2128
|
...
|
lusid/configuration.py
CHANGED
|
@@ -373,7 +373,7 @@ class Configuration:
|
|
|
373
373
|
return "Python SDK Debug Report:\n"\
|
|
374
374
|
"OS: {env}\n"\
|
|
375
375
|
"Python Version: {pyversion}\n"\
|
|
376
|
-
"Version of the API: 0.11.
|
|
376
|
+
"Version of the API: 0.11.6495\n"\
|
|
377
377
|
"SDK Package Version: {package_version}".\
|
|
378
378
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
|
379
379
|
|
lusid/models/bond.py
CHANGED
|
@@ -19,7 +19,7 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
|
22
|
-
from pydantic.v1 import Field, StrictFloat, StrictInt, StrictStr, conlist, validator
|
|
22
|
+
from pydantic.v1 import Field, StrictFloat, StrictInt, StrictStr, conlist, constr, validator
|
|
23
23
|
from lusid.models.ex_dividend_configuration import ExDividendConfiguration
|
|
24
24
|
from lusid.models.flow_conventions import FlowConventions
|
|
25
25
|
from lusid.models.lusid_instrument import LusidInstrument
|
|
@@ -39,7 +39,7 @@ class Bond(LusidInstrument):
|
|
|
39
39
|
ex_dividend_days: Optional[StrictInt] = Field(None, alias="exDividendDays", description="Optional. Number of calendar days in the ex-dividend period. If the settlement date falls in the ex-dividend period then the coupon paid is zero and the accrued interest is negative. If set, this must be a non-negative number. If not set, or set to 0, then there is no ex-dividend period. NOTE: This field is deprecated. If you wish to set the ExDividendDays on a bond, please use the ExDividendConfiguration.")
|
|
40
40
|
initial_coupon_date: Optional[datetime] = Field(None, alias="initialCouponDate", description="Optional and to be DEPRECATED. If set, this is the date at which the bond begins to accrue interest. Instead, this information should be entered in the field StartDate.")
|
|
41
41
|
first_coupon_pay_date: Optional[datetime] = Field(None, alias="firstCouponPayDate", description="The date that the first coupon of the bond is paid. This is required for bonds that have a long first coupon or short first coupon. The first coupon pay date is used as an anchor to compare with the start date and determine if this is a long/short coupon period.")
|
|
42
|
-
calculation_type: Optional[
|
|
42
|
+
calculation_type: Optional[constr(strict=True, max_length=50, min_length=0)] = Field(None, alias="calculationType", description="The calculation type applied to the bond coupon amount. This is required for bonds that have a particular type of computing the period coupon, such as simple compounding, irregular coupons etc. The default CalculationType is `Standard`, which returns a coupon amount equal to Principal * Coupon Rate / Coupon Frequency. Coupon Frequency is 12M / Payment Frequency. Payment Frequency can be 1M, 3M, 6M, 12M etc. So Coupon Frequency can be 12, 4, 2, 1 respectively. Supported string (enumeration) values are: [Standard, DayCountCoupon, NoCalculationFloater, BrazilFixedCoupon, StandardWithCappedAccruedInterest].")
|
|
43
43
|
rounding_conventions: Optional[conlist(RoundingConvention)] = Field(None, alias="roundingConventions", description="Rounding conventions for analytics, if any.")
|
|
44
44
|
ex_dividend_configuration: Optional[ExDividendConfiguration] = Field(None, alias="exDividendConfiguration")
|
|
45
45
|
original_issue_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="originalIssuePrice", description="The price the bond was issued at. This is to be entered as a percentage of par, for example a value of 98.5 would represent 98.5%.")
|
lusid/models/complex_bond.py
CHANGED
|
@@ -29,7 +29,7 @@ class ComplexBond(LusidInstrument):
|
|
|
29
29
|
LUSID representation of a Complex Bond. Including Floating, Fixed-to-float, Sinkable, Callable, Puttable, and Mortgage Backed Securities. # noqa: E501
|
|
30
30
|
"""
|
|
31
31
|
identifiers: Optional[Dict[str, StrictStr]] = Field(None, description="External market codes and identifiers for the bond, e.g. ISIN.")
|
|
32
|
-
calculation_type: Optional[
|
|
32
|
+
calculation_type: Optional[constr(strict=True, max_length=50, min_length=0)] = Field(None, alias="calculationType", description="The calculation type applied to the bond coupon amount. This is required for bonds that have a particular type of computing the period coupon, such as simple compounding, irregular coupons etc. The default CalculationType is `Standard`, which returns a coupon amount equal to Principal * Coupon Rate / Coupon Frequency. Coupon Frequency is 12M / Payment Frequency. Payment Frequency can be 1M, 3M, 6M, 12M etc. So Coupon Frequency can be 12, 4, 2, 1 respectively. Supported string (enumeration) values are: [Standard, DayCountCoupon, NoCalculationFloater, BrazilFixedCoupon, StandardWithCappedAccruedInterest].")
|
|
33
33
|
schedules: Optional[conlist(Schedule)] = Field(None, description="schedules.")
|
|
34
34
|
rounding_conventions: Optional[conlist(RoundingConvention)] = Field(None, alias="roundingConventions", description="Rounding conventions for analytics, if any.")
|
|
35
35
|
asset_backed: Optional[StrictBool] = Field(None, alias="assetBacked", description="If this flag is set to true, then the outstanding notional and principal repayments will be calculated based on pool factors in the quote store. Usually AssetBacked bonds also require a RollConvention setting of within the FlowConventions any given rates schedule (to ensure payment dates always happen on the same day of the month) and US Agency MBSs with Pay Delay features also require their rates schedules to include an ExDividendConfiguration to drive the lag between interest accrual and payment.")
|
|
@@ -19,7 +19,7 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
|
22
|
-
from pydantic.v1 import Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist, validator
|
|
22
|
+
from pydantic.v1 import Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist, constr, validator
|
|
23
23
|
from lusid.models.flow_conventions import FlowConventions
|
|
24
24
|
from lusid.models.inflation_index_conventions import InflationIndexConventions
|
|
25
25
|
from lusid.models.lusid_instrument import LusidInstrument
|
|
@@ -37,7 +37,7 @@ class InflationLinkedBond(LusidInstrument):
|
|
|
37
37
|
identifiers: Optional[Dict[str, StrictStr]] = Field(None, description="External market codes and identifiers for the bond, e.g. ISIN.")
|
|
38
38
|
base_cpi: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="baseCPI", description="BaseCPI value. This is optional, if not provided the BaseCPI value will be calculated from the BaseCPIDate, if that too is not present the StartDate will be used. If provided then this value will always set the BaseCPI on this bond. The BaseCPI of an inflation linked bond is calculated using the following logic: - If a BaseCPI value is provided, this is used. - Otherwise, if BaseCPIDate is provided, the CPI for this date is calculated and used. - Otherwise, the CPI for the StartDate is calculated and used. Note that if both BaseCPI and BaseCPIDate are set, the BaseCPI value will be used and the BaseCPIDate will be ignored but can still be added for informative purposes. Some bonds are issued with a BaseCPI date that does not correspond to the StartDate CPI value, in this case the value should be provided here or with the BaseCPIDate.")
|
|
39
39
|
base_cpi_date: Optional[datetime] = Field(None, alias="baseCPIDate", description="BaseCPIDate. This is optional. Gives the date that the BaseCPI is calculated for. Note this is an un-lagged date (similar to StartDate) so the Bond ObservationLag will be applied to this date when calculating the CPI. The BaseCPI of an inflation linked bond is calculated using the following logic: - If a BaseCPI value is provided, this is used. - Otherwise, if BaseCPIDate is provided, the CPI for this date is calculated and used. - Otherwise, the CPI for the StartDate is calculated and used. Note that if both BaseCPI and BaseCPIDate are set, the BaseCPI value will be used and the BaseCPIDate will be ignored but can still be added for informative purposes. Some bonds are issued with a BaseCPI date that does not correspond to the StartDate CPI value, in this case the value should be provided here or with the actual BaseCPI.")
|
|
40
|
-
calculation_type: Optional[
|
|
40
|
+
calculation_type: Optional[constr(strict=True, max_length=50, min_length=0)] = Field(None, alias="calculationType", description="The calculation type applied to the bond coupon and principal amount. The default CalculationType is `Standard`. Supported string (enumeration) values are: [Standard, Quarterly, Ratio, Brazil, StandardAccruedOnly, RatioAccruedOnly, StandardWithCappedAccruedInterest].")
|
|
41
41
|
ex_dividend_days: Optional[StrictInt] = Field(None, alias="exDividendDays", description="Number of Good Business Days before the next coupon payment, in which the bond goes ex-dividend.")
|
|
42
42
|
index_precision: Optional[StrictInt] = Field(None, alias="indexPrecision", description="Number of decimal places used to round IndexRatio. This defaults to 5 if not set.")
|
|
43
43
|
principal: Union[StrictFloat, StrictInt] = Field(..., description="The face-value or principal for the bond at outset.")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.61
|
|
4
4
|
Summary: LUSID API
|
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
|
6
6
|
License: MIT
|
|
@@ -29,8 +29,8 @@ FINBOURNE Technology
|
|
|
29
29
|
|
|
30
30
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
31
31
|
|
|
32
|
-
- API version: 0.11.
|
|
33
|
-
- Package version: 2.1.
|
|
32
|
+
- API version: 0.11.6495
|
|
33
|
+
- Package version: 2.1.61
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
|
|
36
36
|
|
|
@@ -228,6 +228,7 @@ Class | Method | HTTP request | Description
|
|
|
228
228
|
*AborApi* | [**list_abors**](docs/AborApi.md#list_abors) | **GET** /api/abor | [EXPERIMENTAL] ListAbors: List Abors.
|
|
229
229
|
*AborApi* | [**list_diary_entries**](docs/AborApi.md#list_diary_entries) | **GET** /api/abor/{scope}/{code}/accountingdiary | [EXPERIMENTAL] ListDiaryEntries: List diary entries.
|
|
230
230
|
*AborApi* | [**lock_period**](docs/AborApi.md#lock_period) | **POST** /api/abor/{scope}/{code}/accountingdiary/$lockperiod | [EXPERIMENTAL] LockPeriod: Locks the last Closed or given Closed Period.
|
|
231
|
+
*AborApi* | [**patch_abor**](docs/AborApi.md#patch_abor) | **PATCH** /api/abor/{scope}/{code} | [EXPERIMENTAL] PatchAbor: Patch Abor.
|
|
231
232
|
*AborApi* | [**re_open_periods**](docs/AborApi.md#re_open_periods) | **POST** /api/abor/{scope}/{code}/accountingdiary/$reopenperiods | [EXPERIMENTAL] ReOpenPeriods: Reopen periods from a seed Diary Entry Code or when not specified, the last Closed Period for the given Abor.
|
|
232
233
|
*AborApi* | [**upsert_abor_properties**](docs/AborApi.md#upsert_abor_properties) | **POST** /api/abor/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertAborProperties: Upsert Abor properties
|
|
233
234
|
*AborConfigurationApi* | [**create_abor_configuration**](docs/AborConfigurationApi.md#create_abor_configuration) | **POST** /api/aborconfiguration/{scope} | [EXPERIMENTAL] CreateAborConfiguration: Create an AborConfiguration.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
lusid/__init__.py,sha256=vyCbMHXsoRh7Jr8FpQE4B5KJe4S4AKnQyNME0VCejUQ,104213
|
|
2
2
|
lusid/api/__init__.py,sha256=jdU3SmYCzfXVHFVThKX_tCGad2-l4-5Qql1cN864mCs,5388
|
|
3
|
-
lusid/api/abor_api.py,sha256=
|
|
3
|
+
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=fZRzR63xwAvWnwNUsSUNTfFNAmKGerPF50BEjG9utlA,31640
|
|
6
6
|
lusid/api/aggregation_api.py,sha256=8lCQjh2VR5gvEnz6oq7JUg8_ccdhXiS95-3aLD-zIwU,38503
|
|
@@ -65,7 +65,7 @@ lusid/api/transaction_portfolios_api.py,sha256=q6AoYasxV3LQDossmM2BdJSo3arh526yU
|
|
|
65
65
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
66
66
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
67
67
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
68
|
-
lusid/configuration.py,sha256=
|
|
68
|
+
lusid/configuration.py,sha256=lhk15Jp-tKlN-vNgvjMOn28eNbg6_9FpF3eptkXjyYo,14404
|
|
69
69
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
70
70
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
71
71
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -151,7 +151,7 @@ lusid/models/block_and_orders_request.py,sha256=qbuJZe2-VptAuY2gXwC2foixx5qp9tIV
|
|
|
151
151
|
lusid/models/block_request.py,sha256=oSYaZNOUZF4WGV-NhlyEkBu9eKQpnni5ATa_sjGMw5A,5797
|
|
152
152
|
lusid/models/block_set_request.py,sha256=rf_hhzmOX2F57W1yino-nh4YZ8NGSWiaJxeCLwOL9UI,2620
|
|
153
153
|
lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x_ckzs-wI,5839
|
|
154
|
-
lusid/models/bond.py,sha256=
|
|
154
|
+
lusid/models/bond.py,sha256=uJZue_Xf8zoEgklJfnRxJRM8c-NzLTEEI19oClJct3I,12280
|
|
155
155
|
lusid/models/bond_coupon_event.py,sha256=c-mZLhlPWe8O69bF3ZcHjQfBDcybGIF8l7mmaPlhNHY,5121
|
|
156
156
|
lusid/models/bond_default_event.py,sha256=zXHRw2A72R4MCuebeMBmxGFKhm2dNFTAISerBzFRIRc,4599
|
|
157
157
|
lusid/models/bond_principal_event.py,sha256=Nzu0TG627Ge6NWbhx6B0ERwB7ajHS5RgL3zUl9EdyTw,5156
|
|
@@ -199,7 +199,7 @@ lusid/models/close_period_diary_entry_request.py,sha256=UOa8KG3HIOD07ORSle8u84ih
|
|
|
199
199
|
lusid/models/complete_portfolio.py,sha256=_y1LTAZ7pErx7ioQu20WLK_l3sy55JRoJo8c4yZb3jE,7827
|
|
200
200
|
lusid/models/complete_relation.py,sha256=T1Wd-knJ0m60ZV82FRinBboqaj0XioTUirK43ozT1q4,3908
|
|
201
201
|
lusid/models/complete_relationship.py,sha256=oO5LLSMYB6IXIsWZVoooboC0TEo3aaox6zLFdnn1wLk,5168
|
|
202
|
-
lusid/models/complex_bond.py,sha256=
|
|
202
|
+
lusid/models/complex_bond.py,sha256=G78CXpQv08WTRYseBOukKTnHR5325YtlISUeu6Krmd8,9687
|
|
203
203
|
lusid/models/complex_market_data.py,sha256=p0lDUrbTUaRavdvUAqEWYQioKDkEc8gDXZMAT6DJ-Oo,5865
|
|
204
204
|
lusid/models/complex_market_data_id.py,sha256=Wy6TsnE2ismNdytM1lV6TxPgl92-wTsfohXYt-dN_yk,3964
|
|
205
205
|
lusid/models/compliance_breached_order_info.py,sha256=mz1wCMcqXM8dW4LvbPavNCGpXlU4MYg8oOwVK51WcR8,2970
|
|
@@ -445,7 +445,7 @@ lusid/models/industry_classifier.py,sha256=hIckPWfHRyzkb7FaLvMfxOc8HizmWjGsr7PWj
|
|
|
445
445
|
lusid/models/inflation_fixing_dependency.py,sha256=PKxpTIJcyNIMums66g2qG0p6l6F19UiaIj6m6R6z_Wg,4259
|
|
446
446
|
lusid/models/inflation_index_conventions.py,sha256=I9uG6oCE8M5IHq63DZXvH1fI_5TzMcOnSThnfQW97Y0,4811
|
|
447
447
|
lusid/models/inflation_leg.py,sha256=Qg4hK2W848XjHNMGADo4QFQNR9uahravd-o8rFPZ0mA,9819
|
|
448
|
-
lusid/models/inflation_linked_bond.py,sha256=
|
|
448
|
+
lusid/models/inflation_linked_bond.py,sha256=hBb2K7jjMLv-F0ajkEdtTE3q5ROakXVIXW7WwpOmvLw,13828
|
|
449
449
|
lusid/models/inflation_swap.py,sha256=KgUiqhQgze1H9-lzKvBkwCpnIHMIXmLvIzpodvGB0cw,6839
|
|
450
450
|
lusid/models/informational_error_event.py,sha256=wgrxlb7Cs67lyo6f3YA6ON036FaGgNRhQ8W3DurBmsw,4946
|
|
451
451
|
lusid/models/informational_event.py,sha256=Z6UyGjxv50J47VzaqYMdM2HhCXGojtcNSIQfUs8AdNs,5959
|
|
@@ -1019,6 +1019,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1019
1019
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1020
1020
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1021
1021
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1022
|
-
lusid_sdk-2.1.
|
|
1023
|
-
lusid_sdk-2.1.
|
|
1024
|
-
lusid_sdk-2.1.
|
|
1022
|
+
lusid_sdk-2.1.61.dist-info/METADATA,sha256=GwkZ_bvf7LsqsLE4ko3K5wU5q3J-jH1CQKp4pJ7Bs20,180161
|
|
1023
|
+
lusid_sdk-2.1.61.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1024
|
+
lusid_sdk-2.1.61.dist-info/RECORD,,
|
|
File without changes
|