lusid-sdk 2.1.246__py3-none-any.whl → 2.1.250__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/__init__.py +2 -0
- lusid/api/fee_types_api.py +143 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/fee_transaction_template_specification.py +79 -0
- {lusid_sdk-2.1.246.dist-info → lusid_sdk-2.1.250.dist-info}/METADATA +5 -3
- {lusid_sdk-2.1.246.dist-info → lusid_sdk-2.1.250.dist-info}/RECORD +8 -7
- {lusid_sdk-2.1.246.dist-info → lusid_sdk-2.1.250.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
|
@@ -395,6 +395,7 @@ from lusid.models.fee_request import FeeRequest
|
|
|
395
395
|
from lusid.models.fee_rule import FeeRule
|
|
396
396
|
from lusid.models.fee_rule_upsert_request import FeeRuleUpsertRequest
|
|
397
397
|
from lusid.models.fee_rule_upsert_response import FeeRuleUpsertResponse
|
|
398
|
+
from lusid.models.fee_transaction_template_specification import FeeTransactionTemplateSpecification
|
|
398
399
|
from lusid.models.fee_type import FeeType
|
|
399
400
|
from lusid.models.fee_type_request import FeeTypeRequest
|
|
400
401
|
from lusid.models.field_definition import FieldDefinition
|
|
@@ -1475,6 +1476,7 @@ __all__ = [
|
|
|
1475
1476
|
"FeeRule",
|
|
1476
1477
|
"FeeRuleUpsertRequest",
|
|
1477
1478
|
"FeeRuleUpsertResponse",
|
|
1479
|
+
"FeeTransactionTemplateSpecification",
|
|
1478
1480
|
"FeeType",
|
|
1479
1481
|
"FeeTypeRequest",
|
|
1480
1482
|
"FieldDefinition",
|
lusid/api/fee_types_api.py
CHANGED
|
@@ -27,6 +27,7 @@ from pydantic.v1 import Field, StrictStr, conint, conlist, constr, validator
|
|
|
27
27
|
from typing import Optional
|
|
28
28
|
|
|
29
29
|
from lusid.models.deleted_entity_response import DeletedEntityResponse
|
|
30
|
+
from lusid.models.fee_transaction_template_specification import FeeTransactionTemplateSpecification
|
|
30
31
|
from lusid.models.fee_type import FeeType
|
|
31
32
|
from lusid.models.fee_type_request import FeeTypeRequest
|
|
32
33
|
from lusid.models.paged_resource_list_of_fee_type import PagedResourceListOfFeeType
|
|
@@ -377,6 +378,148 @@ class FeeTypesApi:
|
|
|
377
378
|
collection_formats=_collection_formats,
|
|
378
379
|
_request_auth=_params.get('_request_auth'))
|
|
379
380
|
|
|
381
|
+
@overload
|
|
382
|
+
async def get_fee_template_specifications(self, **kwargs) -> FeeTransactionTemplateSpecification: # noqa: E501
|
|
383
|
+
...
|
|
384
|
+
|
|
385
|
+
@overload
|
|
386
|
+
def get_fee_template_specifications(self, async_req: Optional[bool]=True, **kwargs) -> FeeTransactionTemplateSpecification: # noqa: E501
|
|
387
|
+
...
|
|
388
|
+
|
|
389
|
+
@validate_arguments
|
|
390
|
+
def get_fee_template_specifications(self, async_req: Optional[bool]=None, **kwargs) -> Union[FeeTransactionTemplateSpecification, Awaitable[FeeTransactionTemplateSpecification]]: # noqa: E501
|
|
391
|
+
"""[EXPERIMENTAL] GetFeeTemplateSpecifications: Get FeeTemplateSpecifications used in the FeeType. # noqa: E501
|
|
392
|
+
|
|
393
|
+
Get FeeTemplateSpecifications used in the FeeType. # noqa: E501
|
|
394
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
395
|
+
asynchronous HTTP request, please pass async_req=True
|
|
396
|
+
|
|
397
|
+
>>> thread = api.get_fee_template_specifications(async_req=True)
|
|
398
|
+
>>> result = thread.get()
|
|
399
|
+
|
|
400
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
401
|
+
:type async_req: bool, optional
|
|
402
|
+
:param _request_timeout: timeout setting for this request.
|
|
403
|
+
If one number provided, it will be total request
|
|
404
|
+
timeout. It can also be a pair (tuple) of
|
|
405
|
+
(connection, read) timeouts.
|
|
406
|
+
:return: Returns the result object.
|
|
407
|
+
If the method is called asynchronously,
|
|
408
|
+
returns the request thread.
|
|
409
|
+
:rtype: FeeTransactionTemplateSpecification
|
|
410
|
+
"""
|
|
411
|
+
kwargs['_return_http_data_only'] = True
|
|
412
|
+
if '_preload_content' in kwargs:
|
|
413
|
+
message = "Error! Please call the get_fee_template_specifications_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
|
414
|
+
raise ValueError(message)
|
|
415
|
+
if async_req is not None:
|
|
416
|
+
kwargs['async_req'] = async_req
|
|
417
|
+
return self.get_fee_template_specifications_with_http_info(**kwargs) # noqa: E501
|
|
418
|
+
|
|
419
|
+
@validate_arguments
|
|
420
|
+
def get_fee_template_specifications_with_http_info(self, **kwargs) -> ApiResponse: # noqa: E501
|
|
421
|
+
"""[EXPERIMENTAL] GetFeeTemplateSpecifications: Get FeeTemplateSpecifications used in the FeeType. # noqa: E501
|
|
422
|
+
|
|
423
|
+
Get FeeTemplateSpecifications used in the FeeType. # noqa: E501
|
|
424
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
425
|
+
asynchronous HTTP request, please pass async_req=True
|
|
426
|
+
|
|
427
|
+
>>> thread = api.get_fee_template_specifications_with_http_info(async_req=True)
|
|
428
|
+
>>> result = thread.get()
|
|
429
|
+
|
|
430
|
+
:param async_req: Whether to execute the request asynchronously.
|
|
431
|
+
:type async_req: bool, optional
|
|
432
|
+
:param _preload_content: if False, the ApiResponse.data will
|
|
433
|
+
be set to none and raw_data will store the
|
|
434
|
+
HTTP response body without reading/decoding.
|
|
435
|
+
Default is True.
|
|
436
|
+
:type _preload_content: bool, optional
|
|
437
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
|
438
|
+
object with status code, headers, etc
|
|
439
|
+
:type _return_http_data_only: bool, optional
|
|
440
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
441
|
+
number provided, it will be total request
|
|
442
|
+
timeout. It can also be a pair (tuple) of
|
|
443
|
+
(connection, read) timeouts.
|
|
444
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
445
|
+
request; this effectively ignores the authentication
|
|
446
|
+
in the spec for a single request.
|
|
447
|
+
:type _request_auth: dict, optional
|
|
448
|
+
:type _content_type: string, optional: force content-type for the request
|
|
449
|
+
:return: Returns the result object.
|
|
450
|
+
If the method is called asynchronously,
|
|
451
|
+
returns the request thread.
|
|
452
|
+
:rtype: tuple(FeeTransactionTemplateSpecification, status_code(int), headers(HTTPHeaderDict))
|
|
453
|
+
"""
|
|
454
|
+
|
|
455
|
+
_params = locals()
|
|
456
|
+
|
|
457
|
+
_all_params = [
|
|
458
|
+
]
|
|
459
|
+
_all_params.extend(
|
|
460
|
+
[
|
|
461
|
+
'async_req',
|
|
462
|
+
'_return_http_data_only',
|
|
463
|
+
'_preload_content',
|
|
464
|
+
'_request_timeout',
|
|
465
|
+
'_request_auth',
|
|
466
|
+
'_content_type',
|
|
467
|
+
'_headers'
|
|
468
|
+
]
|
|
469
|
+
)
|
|
470
|
+
|
|
471
|
+
# validate the arguments
|
|
472
|
+
for _key, _val in _params['kwargs'].items():
|
|
473
|
+
if _key not in _all_params:
|
|
474
|
+
raise ApiTypeError(
|
|
475
|
+
"Got an unexpected keyword argument '%s'"
|
|
476
|
+
" to method get_fee_template_specifications" % _key
|
|
477
|
+
)
|
|
478
|
+
_params[_key] = _val
|
|
479
|
+
del _params['kwargs']
|
|
480
|
+
|
|
481
|
+
_collection_formats = {}
|
|
482
|
+
|
|
483
|
+
# process the path parameters
|
|
484
|
+
_path_params = {}
|
|
485
|
+
|
|
486
|
+
# process the query parameters
|
|
487
|
+
_query_params = []
|
|
488
|
+
# process the header parameters
|
|
489
|
+
_header_params = dict(_params.get('_headers', {}))
|
|
490
|
+
# process the form parameters
|
|
491
|
+
_form_params = []
|
|
492
|
+
_files = {}
|
|
493
|
+
# process the body parameter
|
|
494
|
+
_body_params = None
|
|
495
|
+
# set the HTTP header `Accept`
|
|
496
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
497
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
|
498
|
+
|
|
499
|
+
# authentication setting
|
|
500
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
|
501
|
+
|
|
502
|
+
_response_types_map = {
|
|
503
|
+
'200': "FeeTransactionTemplateSpecification",
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
return self.api_client.call_api(
|
|
507
|
+
'/api/feetypes/feetransactiontemplatespecification', 'GET',
|
|
508
|
+
_path_params,
|
|
509
|
+
_query_params,
|
|
510
|
+
_header_params,
|
|
511
|
+
body=_body_params,
|
|
512
|
+
post_params=_form_params,
|
|
513
|
+
files=_files,
|
|
514
|
+
response_types_map=_response_types_map,
|
|
515
|
+
auth_settings=_auth_settings,
|
|
516
|
+
async_req=_params.get('async_req'),
|
|
517
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
|
518
|
+
_preload_content=_params.get('_preload_content', True),
|
|
519
|
+
_request_timeout=_params.get('_request_timeout'),
|
|
520
|
+
collection_formats=_collection_formats,
|
|
521
|
+
_request_auth=_params.get('_request_auth'))
|
|
522
|
+
|
|
380
523
|
@overload
|
|
381
524
|
async def get_fee_type(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the FeeType")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the FeeType")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the FeeType. Defaults to returning the latest version of the FeeType, if not specified.")] = None, **kwargs) -> FeeType: # noqa: E501
|
|
382
525
|
...
|
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.6683\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/__init__.py
CHANGED
|
@@ -317,6 +317,7 @@ from lusid.models.fee_request import FeeRequest
|
|
|
317
317
|
from lusid.models.fee_rule import FeeRule
|
|
318
318
|
from lusid.models.fee_rule_upsert_request import FeeRuleUpsertRequest
|
|
319
319
|
from lusid.models.fee_rule_upsert_response import FeeRuleUpsertResponse
|
|
320
|
+
from lusid.models.fee_transaction_template_specification import FeeTransactionTemplateSpecification
|
|
320
321
|
from lusid.models.fee_type import FeeType
|
|
321
322
|
from lusid.models.fee_type_request import FeeTypeRequest
|
|
322
323
|
from lusid.models.field_definition import FieldDefinition
|
|
@@ -1320,6 +1321,7 @@ __all__ = [
|
|
|
1320
1321
|
"FeeRule",
|
|
1321
1322
|
"FeeRuleUpsertRequest",
|
|
1322
1323
|
"FeeRuleUpsertResponse",
|
|
1324
|
+
"FeeTransactionTemplateSpecification",
|
|
1323
1325
|
"FeeType",
|
|
1324
1326
|
"FeeTypeRequest",
|
|
1325
1327
|
"FieldDefinition",
|
|
@@ -0,0 +1,79 @@
|
|
|
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
|
|
22
|
+
from pydantic.v1 import BaseModel, Field, conlist, constr
|
|
23
|
+
from lusid.models.template_field import TemplateField
|
|
24
|
+
|
|
25
|
+
class FeeTransactionTemplateSpecification(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
FeeTransactionTemplateSpecification
|
|
28
|
+
"""
|
|
29
|
+
specification_type_name: constr(strict=True, min_length=1) = Field(..., alias="specificationTypeName")
|
|
30
|
+
supported_template_fields: conlist(TemplateField) = Field(..., alias="supportedTemplateFields")
|
|
31
|
+
__properties = ["specificationTypeName", "supportedTemplateFields"]
|
|
32
|
+
|
|
33
|
+
class Config:
|
|
34
|
+
"""Pydantic configuration"""
|
|
35
|
+
allow_population_by_field_name = True
|
|
36
|
+
validate_assignment = True
|
|
37
|
+
|
|
38
|
+
def to_str(self) -> str:
|
|
39
|
+
"""Returns the string representation of the model using alias"""
|
|
40
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
41
|
+
|
|
42
|
+
def to_json(self) -> str:
|
|
43
|
+
"""Returns the JSON representation of the model using alias"""
|
|
44
|
+
return json.dumps(self.to_dict())
|
|
45
|
+
|
|
46
|
+
@classmethod
|
|
47
|
+
def from_json(cls, json_str: str) -> FeeTransactionTemplateSpecification:
|
|
48
|
+
"""Create an instance of FeeTransactionTemplateSpecification from a JSON string"""
|
|
49
|
+
return cls.from_dict(json.loads(json_str))
|
|
50
|
+
|
|
51
|
+
def to_dict(self):
|
|
52
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
53
|
+
_dict = self.dict(by_alias=True,
|
|
54
|
+
exclude={
|
|
55
|
+
},
|
|
56
|
+
exclude_none=True)
|
|
57
|
+
# override the default output from pydantic by calling `to_dict()` of each item in supported_template_fields (list)
|
|
58
|
+
_items = []
|
|
59
|
+
if self.supported_template_fields:
|
|
60
|
+
for _item in self.supported_template_fields:
|
|
61
|
+
if _item:
|
|
62
|
+
_items.append(_item.to_dict())
|
|
63
|
+
_dict['supportedTemplateFields'] = _items
|
|
64
|
+
return _dict
|
|
65
|
+
|
|
66
|
+
@classmethod
|
|
67
|
+
def from_dict(cls, obj: dict) -> FeeTransactionTemplateSpecification:
|
|
68
|
+
"""Create an instance of FeeTransactionTemplateSpecification from a dict"""
|
|
69
|
+
if obj is None:
|
|
70
|
+
return None
|
|
71
|
+
|
|
72
|
+
if not isinstance(obj, dict):
|
|
73
|
+
return FeeTransactionTemplateSpecification.parse_obj(obj)
|
|
74
|
+
|
|
75
|
+
_obj = FeeTransactionTemplateSpecification.parse_obj({
|
|
76
|
+
"specification_type_name": obj.get("specificationTypeName"),
|
|
77
|
+
"supported_template_fields": [TemplateField.from_dict(_item) for _item in obj.get("supportedTemplateFields")] if obj.get("supportedTemplateFields") is not None else None
|
|
78
|
+
})
|
|
79
|
+
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.250
|
|
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.6683
|
|
33
|
+
- Package version: 2.1.250
|
|
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
|
|
|
@@ -404,6 +404,7 @@ Class | Method | HTTP request | Description
|
|
|
404
404
|
*ExecutionsApi* | [**upsert_executions**](docs/ExecutionsApi.md#upsert_executions) | **POST** /api/executions | UpsertExecutions: Upsert Execution
|
|
405
405
|
*FeeTypesApi* | [**create_fee_type**](docs/FeeTypesApi.md#create_fee_type) | **POST** /api/feetypes/{scope} | [EXPERIMENTAL] CreateFeeType: Create a FeeType.
|
|
406
406
|
*FeeTypesApi* | [**delete_fee_type**](docs/FeeTypesApi.md#delete_fee_type) | **DELETE** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] DeleteFeeType: Delete a FeeType.
|
|
407
|
+
*FeeTypesApi* | [**get_fee_template_specifications**](docs/FeeTypesApi.md#get_fee_template_specifications) | **GET** /api/feetypes/feetransactiontemplatespecification | [EXPERIMENTAL] GetFeeTemplateSpecifications: Get FeeTemplateSpecifications used in the FeeType.
|
|
407
408
|
*FeeTypesApi* | [**get_fee_type**](docs/FeeTypesApi.md#get_fee_type) | **GET** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] GetFeeType: Get a FeeType
|
|
408
409
|
*FeeTypesApi* | [**list_fee_types**](docs/FeeTypesApi.md#list_fee_types) | **GET** /api/feetypes | [EXPERIMENTAL] ListFeeTypes: List FeeTypes
|
|
409
410
|
*FeeTypesApi* | [**update_fee_type**](docs/FeeTypesApi.md#update_fee_type) | **PUT** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] UpdateFeeType: Update a FeeType.
|
|
@@ -1054,6 +1055,7 @@ Class | Method | HTTP request | Description
|
|
|
1054
1055
|
- [FeeRule](docs/FeeRule.md)
|
|
1055
1056
|
- [FeeRuleUpsertRequest](docs/FeeRuleUpsertRequest.md)
|
|
1056
1057
|
- [FeeRuleUpsertResponse](docs/FeeRuleUpsertResponse.md)
|
|
1058
|
+
- [FeeTransactionTemplateSpecification](docs/FeeTransactionTemplateSpecification.md)
|
|
1057
1059
|
- [FeeType](docs/FeeType.md)
|
|
1058
1060
|
- [FeeTypeRequest](docs/FeeTypeRequest.md)
|
|
1059
1061
|
- [FieldDefinition](docs/FieldDefinition.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=70LfeMzkR35pIcmwQXDVCx5rulm86C819ju4H7Eqa-A,111336
|
|
2
2
|
lusid/api/__init__.py,sha256=PFpT-ADthWd08-JqKOqQTbVW6cz9wdP_us6bg3aBFfs,5555
|
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
|
@@ -24,7 +24,7 @@ lusid/api/data_types_api.py,sha256=OiQL4CRxwWd06DovdcLZbOqPx4AfbwYQ9yXYtaRqWWc,7
|
|
|
24
24
|
lusid/api/derived_transaction_portfolios_api.py,sha256=cKv5mKNmTiuHzWGwupwcSBibj3Ncwv88GiEJSqmAbCY,20227
|
|
25
25
|
lusid/api/entities_api.py,sha256=kV00-PgBlWfwLV4T9qhaaOntVoo-NJwzkSACLQu80Xw,46666
|
|
26
26
|
lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
|
|
27
|
-
lusid/api/fee_types_api.py,sha256=
|
|
27
|
+
lusid/api/fee_types_api.py,sha256=4_wZtZkRyK2RHfDBwAK2XrspWzF_LCBYe_RUt_Y17zM,56137
|
|
28
28
|
lusid/api/funds_api.py,sha256=pv4gajsbbbkMi5Q07ixKzzcuhPTfZ-MoenSLsj9tpJ0,196396
|
|
29
29
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
|
30
30
|
lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
|
|
@@ -67,7 +67,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
|
|
|
67
67
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
68
68
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
69
69
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
70
|
-
lusid/configuration.py,sha256=
|
|
70
|
+
lusid/configuration.py,sha256=lELWYcu0jgPdH6U2XiXQbhv440E7Xh4ZkTDqaSBg2Es,14404
|
|
71
71
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
72
72
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
|
73
73
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -81,7 +81,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
81
81
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
82
82
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
83
83
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
84
|
-
lusid/models/__init__.py,sha256=
|
|
84
|
+
lusid/models/__init__.py,sha256=J5uq15Sf9owwvqdYi5OAmFftQC4clLoXXxRkzWrRfGA,104749
|
|
85
85
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
|
86
86
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
|
87
87
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
|
@@ -385,6 +385,7 @@ lusid/models/fee_request.py,sha256=AhQo8pWjPJX2crZhfE-jrwqagNSaOGNkChxDJc2jEio,9
|
|
|
385
385
|
lusid/models/fee_rule.py,sha256=Ez0GUE-1FlzEO8VF1IbH3p2I6gjMaQ6arWzo3VCyi5Q,6070
|
|
386
386
|
lusid/models/fee_rule_upsert_request.py,sha256=0s31dKcYP1kUfOdeuwqbCTxNL6VQ42ryi_QPzayIrXw,6166
|
|
387
387
|
lusid/models/fee_rule_upsert_response.py,sha256=PH0YLPebZM42YRxgoUXYoP6aDdMuDnw7wBAU_VYCwuE,3144
|
|
388
|
+
lusid/models/fee_transaction_template_specification.py,sha256=Jpksec6UznA-rXOewwumPLMfzhJWyyeuDRH8nJGgk90,2852
|
|
388
389
|
lusid/models/fee_type.py,sha256=Jx57FtKFnNHVqeTbqO4uXJc2JHqudpvLBd5vHfzJq3A,4640
|
|
389
390
|
lusid/models/fee_type_request.py,sha256=C_MKr7h3Rf1gqxW32U0Qu-2MbkB7wVpJbuhbEYEU2H4,3944
|
|
390
391
|
lusid/models/field_definition.py,sha256=wM3KAx8CQbgCAhDVk8inIShgvqV2UFXBSe15-p-AmRk,2382
|
|
@@ -1084,6 +1085,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1084
1085
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1085
1086
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1086
1087
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1087
|
-
lusid_sdk-2.1.
|
|
1088
|
-
lusid_sdk-2.1.
|
|
1089
|
-
lusid_sdk-2.1.
|
|
1088
|
+
lusid_sdk-2.1.250.dist-info/METADATA,sha256=NgZeb2v1N4a8JGF9j1AvPmG3k_ty0lnasArmFwITATA,190612
|
|
1089
|
+
lusid_sdk-2.1.250.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1090
|
+
lusid_sdk-2.1.250.dist-info/RECORD,,
|
|
File without changes
|