lusid-sdk 2.1.320__py3-none-any.whl → 2.1.347__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 +10 -0
- lusid/api/entities_api.py +172 -0
- lusid/api/funds_api.py +212 -0
- lusid/api/order_management_api.py +160 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +10 -0
- lusid/models/data_type.py +8 -8
- lusid/models/data_type_entity.py +131 -0
- lusid/models/fund_configuration.py +6 -6
- lusid/models/fund_configuration_request.py +6 -6
- lusid/models/journal_entry_line.py +5 -3
- lusid/models/order_update_request.py +116 -0
- lusid/models/paged_resource_list_of_valuation_point_overview.py +113 -0
- lusid/models/posting_module_rule.py +7 -32
- lusid/models/quote_access_metadata_rule_id.py +2 -2
- lusid/models/quote_series_id.py +2 -2
- lusid/models/scrip_dividend_event.py +17 -3
- lusid/models/share_class_details.py +5 -3
- lusid/models/stock_split_event.py +18 -4
- lusid/models/update_orders_response.py +153 -0
- lusid/models/valuation_point_overview.py +125 -0
- {lusid_sdk-2.1.320.dist-info → lusid_sdk-2.1.347.dist-info}/METADATA +9 -1
- {lusid_sdk-2.1.320.dist-info → lusid_sdk-2.1.347.dist-info}/RECORD +24 -19
- {lusid_sdk-2.1.320.dist-info → lusid_sdk-2.1.347.dist-info}/WHEEL +0 -0
@@ -0,0 +1,125 @@
|
|
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
|
+
from datetime import datetime
|
21
|
+
from typing import Any, Dict, List, Optional, Union
|
22
|
+
from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
|
+
from lusid.models.link import Link
|
24
|
+
from lusid.models.model_property import ModelProperty
|
25
|
+
|
26
|
+
class ValuationPointOverview(BaseModel):
|
27
|
+
"""
|
28
|
+
ValuationPointOverview
|
29
|
+
"""
|
30
|
+
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
31
|
+
diary_entry_code: StrictStr = Field(..., alias="diaryEntryCode", description="The code for the Valuation Point.")
|
32
|
+
effective_from: datetime = Field(..., alias="effectiveFrom", description="The effective time of the last Valuation Point.")
|
33
|
+
effective_to: datetime = Field(..., alias="effectiveTo", description="The effective time of the current Valuation Point.")
|
34
|
+
query_as_at: Optional[datetime] = Field(None, alias="queryAsAt", description="The query time of the Valuation Point. Defaults to latest.")
|
35
|
+
type: constr(strict=True, min_length=1) = Field(..., description="The type of the diary entry. This is 'ValuationPoint'.")
|
36
|
+
status: constr(strict=True, min_length=1) = Field(..., description="The status of the Valuation Point. Can be 'Estimate', 'Candidate' or 'Final'.")
|
37
|
+
gav: Union[StrictFloat, StrictInt] = Field(..., description="The Gross Asset Value of the Fund or Share Class at the Valuation Point. This is effectively a summation of all Trial balance entries linked to accounts of types 'Asset' and 'Liabilities'.")
|
38
|
+
nav: Union[StrictFloat, StrictInt] = Field(..., description="The Net Asset Value of the Fund or Share Class at the Valuation Point. This represents the GAV with any fees applied in the period.")
|
39
|
+
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="The Fee properties. These will be from the 'Fee' domain.")
|
40
|
+
links: Optional[conlist(Link)] = None
|
41
|
+
__properties = ["href", "diaryEntryCode", "effectiveFrom", "effectiveTo", "queryAsAt", "type", "status", "gav", "nav", "properties", "links"]
|
42
|
+
|
43
|
+
class Config:
|
44
|
+
"""Pydantic configuration"""
|
45
|
+
allow_population_by_field_name = True
|
46
|
+
validate_assignment = True
|
47
|
+
|
48
|
+
def to_str(self) -> str:
|
49
|
+
"""Returns the string representation of the model using alias"""
|
50
|
+
return pprint.pformat(self.dict(by_alias=True))
|
51
|
+
|
52
|
+
def to_json(self) -> str:
|
53
|
+
"""Returns the JSON representation of the model using alias"""
|
54
|
+
return json.dumps(self.to_dict())
|
55
|
+
|
56
|
+
@classmethod
|
57
|
+
def from_json(cls, json_str: str) -> ValuationPointOverview:
|
58
|
+
"""Create an instance of ValuationPointOverview from a JSON string"""
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
60
|
+
|
61
|
+
def to_dict(self):
|
62
|
+
"""Returns the dictionary representation of the model using alias"""
|
63
|
+
_dict = self.dict(by_alias=True,
|
64
|
+
exclude={
|
65
|
+
},
|
66
|
+
exclude_none=True)
|
67
|
+
# override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
|
68
|
+
_field_dict = {}
|
69
|
+
if self.properties:
|
70
|
+
for _key in self.properties:
|
71
|
+
if self.properties[_key]:
|
72
|
+
_field_dict[_key] = self.properties[_key].to_dict()
|
73
|
+
_dict['properties'] = _field_dict
|
74
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
75
|
+
_items = []
|
76
|
+
if self.links:
|
77
|
+
for _item in self.links:
|
78
|
+
if _item:
|
79
|
+
_items.append(_item.to_dict())
|
80
|
+
_dict['links'] = _items
|
81
|
+
# set to None if href (nullable) is None
|
82
|
+
# and __fields_set__ contains the field
|
83
|
+
if self.href is None and "href" in self.__fields_set__:
|
84
|
+
_dict['href'] = None
|
85
|
+
|
86
|
+
# set to None if properties (nullable) is None
|
87
|
+
# and __fields_set__ contains the field
|
88
|
+
if self.properties is None and "properties" in self.__fields_set__:
|
89
|
+
_dict['properties'] = None
|
90
|
+
|
91
|
+
# set to None if links (nullable) is None
|
92
|
+
# and __fields_set__ contains the field
|
93
|
+
if self.links is None and "links" in self.__fields_set__:
|
94
|
+
_dict['links'] = None
|
95
|
+
|
96
|
+
return _dict
|
97
|
+
|
98
|
+
@classmethod
|
99
|
+
def from_dict(cls, obj: dict) -> ValuationPointOverview:
|
100
|
+
"""Create an instance of ValuationPointOverview from a dict"""
|
101
|
+
if obj is None:
|
102
|
+
return None
|
103
|
+
|
104
|
+
if not isinstance(obj, dict):
|
105
|
+
return ValuationPointOverview.parse_obj(obj)
|
106
|
+
|
107
|
+
_obj = ValuationPointOverview.parse_obj({
|
108
|
+
"href": obj.get("href"),
|
109
|
+
"diary_entry_code": obj.get("diaryEntryCode"),
|
110
|
+
"effective_from": obj.get("effectiveFrom"),
|
111
|
+
"effective_to": obj.get("effectiveTo"),
|
112
|
+
"query_as_at": obj.get("queryAsAt"),
|
113
|
+
"type": obj.get("type"),
|
114
|
+
"status": obj.get("status"),
|
115
|
+
"gav": obj.get("gav"),
|
116
|
+
"nav": obj.get("nav"),
|
117
|
+
"properties": dict(
|
118
|
+
(_k, ModelProperty.from_dict(_v))
|
119
|
+
for _k, _v in obj.get("properties").items()
|
120
|
+
)
|
121
|
+
if obj.get("properties") is not None
|
122
|
+
else None,
|
123
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
124
|
+
})
|
125
|
+
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.347
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -208,6 +208,7 @@ Class | Method | HTTP request | Description
|
|
208
208
|
*DataTypesApi* | [**update_reference_values**](docs/DataTypesApi.md#update_reference_values) | **PUT** /api/datatypes/{scope}/{code}/referencedatavalues | [EARLY ACCESS] UpdateReferenceValues: Update reference data on a data type
|
209
209
|
*DerivedTransactionPortfoliosApi* | [**create_derived_portfolio**](docs/DerivedTransactionPortfoliosApi.md#create_derived_portfolio) | **POST** /api/derivedtransactionportfolios/{scope} | CreateDerivedPortfolio: Create derived portfolio
|
210
210
|
*DerivedTransactionPortfoliosApi* | [**delete_derived_portfolio_details**](docs/DerivedTransactionPortfoliosApi.md#delete_derived_portfolio_details) | **DELETE** /api/derivedtransactionportfolios/{scope}/{code}/details | [EARLY ACCESS] DeleteDerivedPortfolioDetails: Delete derived portfolio details
|
211
|
+
*EntitiesApi* | [**get_data_type_by_entity_unique_id**](docs/EntitiesApi.md#get_data_type_by_entity_unique_id) | **GET** /api/entities/datatypes/{entityUniqueId} | [EXPERIMENTAL] GetDataTypeByEntityUniqueId: Get DataType by EntityUniqueId
|
211
212
|
*EntitiesApi* | [**get_instrument_by_entity_unique_id**](docs/EntitiesApi.md#get_instrument_by_entity_unique_id) | **GET** /api/entities/instruments/{entityUniqueId} | [EXPERIMENTAL] GetInstrumentByEntityUniqueId: Get instrument by EntityUniqueId
|
212
213
|
*EntitiesApi* | [**get_portfolio_by_entity_unique_id**](docs/EntitiesApi.md#get_portfolio_by_entity_unique_id) | **GET** /api/entities/portfolios/{entityUniqueId} | [EXPERIMENTAL] GetPortfolioByEntityUniqueId: Get portfolio by EntityUniqueId
|
213
214
|
*EntitiesApi* | [**get_portfolio_changes**](docs/EntitiesApi.md#get_portfolio_changes) | **GET** /api/entities/changes/portfolios | GetPortfolioChanges: Get the next change to each portfolio in a scope.
|
@@ -239,6 +240,7 @@ Class | Method | HTTP request | Description
|
|
239
240
|
*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.
|
240
241
|
*FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
|
241
242
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
243
|
+
*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.
|
242
244
|
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
|
243
245
|
*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.
|
244
246
|
*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.
|
@@ -316,6 +318,7 @@ Class | Method | HTTP request | Description
|
|
316
318
|
*OrderManagementApi* | [**move_orders**](docs/OrderManagementApi.md#move_orders) | **POST** /api/ordermanagement/moveorders | [EARLY ACCESS] MoveOrders: Move orders to new or existing block
|
317
319
|
*OrderManagementApi* | [**place_blocks**](docs/OrderManagementApi.md#place_blocks) | **POST** /api/ordermanagement/placeblocks | [EARLY ACCESS] PlaceBlocks: Places blocks for a given list of placement requests.
|
318
320
|
*OrderManagementApi* | [**run_allocation_service**](docs/OrderManagementApi.md#run_allocation_service) | **POST** /api/ordermanagement/allocate | [EXPERIMENTAL] RunAllocationService: Runs the Allocation Service
|
321
|
+
*OrderManagementApi* | [**update_orders**](docs/OrderManagementApi.md#update_orders) | **POST** /api/ordermanagement/updateorders | [EARLY ACCESS] UpdateOrders: Update existing orders
|
319
322
|
*OrderManagementApi* | [**update_placements**](docs/OrderManagementApi.md#update_placements) | **POST** /api/ordermanagement/$updateplacements | [EARLY ACCESS] UpdatePlacements: Update existing placements
|
320
323
|
*OrdersApi* | [**delete_order**](docs/OrdersApi.md#delete_order) | **DELETE** /api/orders/{scope}/{code} | [EARLY ACCESS] DeleteOrder: Delete order
|
321
324
|
*OrdersApi* | [**get_order**](docs/OrdersApi.md#get_order) | **GET** /api/orders/{scope}/{code} | [EARLY ACCESS] GetOrder: Get Order
|
@@ -814,6 +817,7 @@ Class | Method | HTTP request | Description
|
|
814
817
|
- [DataMapping](docs/DataMapping.md)
|
815
818
|
- [DataScope](docs/DataScope.md)
|
816
819
|
- [DataType](docs/DataType.md)
|
820
|
+
- [DataTypeEntity](docs/DataTypeEntity.md)
|
817
821
|
- [DataTypeSummary](docs/DataTypeSummary.md)
|
818
822
|
- [DataTypeValueRange](docs/DataTypeValueRange.md)
|
819
823
|
- [DateAttributes](docs/DateAttributes.md)
|
@@ -1111,6 +1115,7 @@ Class | Method | HTTP request | Description
|
|
1111
1115
|
- [OrderInstructionSetRequest](docs/OrderInstructionSetRequest.md)
|
1112
1116
|
- [OrderRequest](docs/OrderRequest.md)
|
1113
1117
|
- [OrderSetRequest](docs/OrderSetRequest.md)
|
1118
|
+
- [OrderUpdateRequest](docs/OrderUpdateRequest.md)
|
1114
1119
|
- [OtcConfirmation](docs/OtcConfirmation.md)
|
1115
1120
|
- [OutputTransaction](docs/OutputTransaction.md)
|
1116
1121
|
- [OutputTransition](docs/OutputTransition.md)
|
@@ -1175,6 +1180,7 @@ Class | Method | HTTP request | Description
|
|
1175
1180
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
1176
1181
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
1177
1182
|
- [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
|
1183
|
+
- [PagedResourceListOfValuationPointOverview](docs/PagedResourceListOfValuationPointOverview.md)
|
1178
1184
|
- [PagedResourceListOfVirtualRow](docs/PagedResourceListOfVirtualRow.md)
|
1179
1185
|
- [Participation](docs/Participation.md)
|
1180
1186
|
- [ParticipationRequest](docs/ParticipationRequest.md)
|
@@ -1519,6 +1525,7 @@ Class | Method | HTTP request | Description
|
|
1519
1525
|
- [UpdateDerivedPropertyDefinitionRequest](docs/UpdateDerivedPropertyDefinitionRequest.md)
|
1520
1526
|
- [UpdateFeeTypeRequest](docs/UpdateFeeTypeRequest.md)
|
1521
1527
|
- [UpdateInstrumentIdentifierRequest](docs/UpdateInstrumentIdentifierRequest.md)
|
1528
|
+
- [UpdateOrdersResponse](docs/UpdateOrdersResponse.md)
|
1522
1529
|
- [UpdatePlacementsResponse](docs/UpdatePlacementsResponse.md)
|
1523
1530
|
- [UpdatePortfolioGroupRequest](docs/UpdatePortfolioGroupRequest.md)
|
1524
1531
|
- [UpdatePortfolioRequest](docs/UpdatePortfolioRequest.md)
|
@@ -1575,6 +1582,7 @@ Class | Method | HTTP request | Description
|
|
1575
1582
|
- [ValuationPointDataQueryParameters](docs/ValuationPointDataQueryParameters.md)
|
1576
1583
|
- [ValuationPointDataRequest](docs/ValuationPointDataRequest.md)
|
1577
1584
|
- [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
|
1585
|
+
- [ValuationPointOverview](docs/ValuationPointOverview.md)
|
1578
1586
|
- [ValuationRequest](docs/ValuationRequest.md)
|
1579
1587
|
- [ValuationSchedule](docs/ValuationSchedule.md)
|
1580
1588
|
- [ValuationsReconciliationRequest](docs/ValuationsReconciliationRequest.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=jfWnMPrlK5wzfQtIWAMfIPVnW4YEJnr5gGfZcauxxgU,114532
|
2
2
|
lusid/api/__init__.py,sha256=EuHJI-4kmmibn1IVmY9akKMT-R1Bnth9msFll5hlBGY,5652
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
@@ -22,11 +22,11 @@ lusid/api/custom_entity_types_api.py,sha256=fLeAZaJ9Gdkfkr_UVDuqueiIxuN_5ri80dvq
|
|
22
22
|
lusid/api/cut_label_definitions_api.py,sha256=7sroMqRhrOXdJlHQJ6f4NbqDRwOh7ewfY2yHGopZ7KM,47049
|
23
23
|
lusid/api/data_types_api.py,sha256=OiQL4CRxwWd06DovdcLZbOqPx4AfbwYQ9yXYtaRqWWc,77801
|
24
24
|
lusid/api/derived_transaction_portfolios_api.py,sha256=cKv5mKNmTiuHzWGwupwcSBibj3Ncwv88GiEJSqmAbCY,20227
|
25
|
-
lusid/api/entities_api.py,sha256=
|
25
|
+
lusid/api/entities_api.py,sha256=gwA41PK2gtuUq8tT20Nl5sC0EffveDvvR_83X5NOWso,57122
|
26
26
|
lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
|
27
27
|
lusid/api/fee_types_api.py,sha256=4_wZtZkRyK2RHfDBwAK2XrspWzF_LCBYe_RUt_Y17zM,56137
|
28
28
|
lusid/api/fund_configurations_api.py,sha256=XbNaocdjU8sf37NZmH6NR1VMSITut9Fw6SMhOVBEjJ4,64107
|
29
|
-
lusid/api/funds_api.py,sha256=
|
29
|
+
lusid/api/funds_api.py,sha256=tRNGqv14vYLjsJ1WqY_Q55bick_EAe8MH28CdByeHIw,215308
|
30
30
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
31
31
|
lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
|
32
32
|
lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
|
@@ -34,7 +34,7 @@ lusid/api/legacy_compliance_api.py,sha256=EjYqCQTemq71q2_sfHU9ptr-ULhNk1EJ0Vejrf
|
|
34
34
|
lusid/api/legal_entities_api.py,sha256=DFpQxYU_illhMl8_CnlmpLKcBEaxOt7ECiHT51Xl49Q,267854
|
35
35
|
lusid/api/order_graph_api.py,sha256=YcL-SdC42ufKcFgbzD_qwVpWRZKkRDRijGpBviizbVU,45280
|
36
36
|
lusid/api/order_instructions_api.py,sha256=HZn9ZwVgp6bF32GIHpBwaejKKri0tG_KLfgHWfllR8U,46091
|
37
|
-
lusid/api/order_management_api.py,sha256=
|
37
|
+
lusid/api/order_management_api.py,sha256=hgm3FP6KkEJ-8cYIdMUUE5a3rlF_DNSOjzjkIjDhUbY,76572
|
38
38
|
lusid/api/orders_api.py,sha256=PjkqtLhbS6lQEEfZiXXAiIa5ls0jLokiqizseg7_nx0,43527
|
39
39
|
lusid/api/packages_api.py,sha256=-2mdoL2HSQ2aCXqYUMxt-1rrlezyQhgCNtevVazqM9o,43985
|
40
40
|
lusid/api/participations_api.py,sha256=nlVzeyfE33X9Ue9HC9rqCW3WACEPKBvcrEjFEmT8wlk,45263
|
@@ -68,7 +68,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
|
|
68
68
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
69
69
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
70
70
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
71
|
-
lusid/configuration.py,sha256=
|
71
|
+
lusid/configuration.py,sha256=GIdBYkY5L7MO3-mP9Ry0FWSTEq0L-lOFrLFuMeVim0s,14404
|
72
72
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
73
73
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
74
74
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
@@ -82,7 +82,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
82
82
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
83
83
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
84
84
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
85
|
-
lusid/models/__init__.py,sha256=
|
85
|
+
lusid/models/__init__.py,sha256=GkO5sIC1eAmxnnHo05m6I-JNf7NQbDDLnfyHXhz0hOU,107848
|
86
86
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
87
87
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
88
88
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -322,7 +322,8 @@ lusid/models/data_definition.py,sha256=Qec5QcARQS0eU7l2ffhCKirfcPg1aQD-YRH-C0S-H
|
|
322
322
|
lusid/models/data_map_key.py,sha256=C5B8fN4pTsO1DOGwiBrzudP96Mn9FHn8OLpjA6rLfLc,3407
|
323
323
|
lusid/models/data_mapping.py,sha256=Is0cRnq2bDOXbx6SSheCH4diqFxNcsobCpIv34B4TLc,3637
|
324
324
|
lusid/models/data_scope.py,sha256=p-8zVk5vyLUzWERyDPgmBMkYMwKTDdM-ShGKwAFJ2Ko,2324
|
325
|
-
lusid/models/data_type.py,sha256=
|
325
|
+
lusid/models/data_type.py,sha256=m-KEJwXEMSVnP_XrECT9lCy4dvkr1Q-mWQ7lYuuDAgc,7760
|
326
|
+
lusid/models/data_type_entity.py,sha256=6Bwf9syJbtMUm1BSTLlL1p0Birq6rCAqy7wCQ0qrmGw,6677
|
326
327
|
lusid/models/data_type_summary.py,sha256=vxRqXJKBcXMJmlLKTxRcG4F4zv2eFVfPl6q6hFGsyPQ,6616
|
327
328
|
lusid/models/data_type_value_range.py,sha256=5YSqhwEsjFS9_0UpjmiTra9NDWAi0Bp8ZMS62hBlYlo,722
|
328
329
|
lusid/models/date_attributes.py,sha256=1zy4nT1ZA2i6UT7p9zVrUkZjBgpQPJzOZMqlQtacsm8,5794
|
@@ -416,9 +417,9 @@ lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yW
|
|
416
417
|
lusid/models/from_recipe.py,sha256=paSou6poZf5CHkswKhZXc8jXmVcxj7s7kJXRw4ucbfQ,2261
|
417
418
|
lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
|
418
419
|
lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1879
|
419
|
-
lusid/models/fund_configuration.py,sha256=
|
420
|
+
lusid/models/fund_configuration.py,sha256=lVNLZ9bxEAKWxm119GI1fHhEdvsrB5C8zHr9u67_Hlg,6614
|
420
421
|
lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
|
421
|
-
lusid/models/fund_configuration_request.py,sha256=
|
422
|
+
lusid/models/fund_configuration_request.py,sha256=jNcDedVJHjGhJwrGOfQOJii01MAQuOGbdl2Trb0p-uc,5636
|
422
423
|
lusid/models/fund_pnl_breakdown.py,sha256=FVWePhLbtAjdikBOG3yipSUD4fIbNnmsM7PsOe1cL4w,4421
|
423
424
|
lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
|
424
425
|
lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
|
@@ -532,7 +533,7 @@ lusid/models/intermediate_compliance_step_request.py,sha256=cx9WUvfU_jlcOv3RskTe
|
|
532
533
|
lusid/models/ir_vol_cube_data.py,sha256=2USuuiZigPzS0kwmMMTu1Ih9GHln6TAkPamcYNmUYQ4,5867
|
533
534
|
lusid/models/ir_vol_dependency.py,sha256=D937a4jaVJw75aCY4iQfkwVQW9T5F_vL8g6pbULBmMQ,4523
|
534
535
|
lusid/models/is_business_day_response.py,sha256=LMwNCeJaC1JJ1W5Qp9WkWOBQ-mBA036kPYkG7p-7Yjs,2163
|
535
|
-
lusid/models/journal_entry_line.py,sha256=
|
536
|
+
lusid/models/journal_entry_line.py,sha256=qUPznQuVteBt5MwPtZjWJHBWPfiZ9s1TtE734oHQ8D0,14060
|
536
537
|
lusid/models/journal_entry_lines_query_parameters.py,sha256=ZZhOnG3yXxNvfzL9gxLO0OzFdg_O4R5ZqIz83EE-CwE,4663
|
537
538
|
lusid/models/label_value_set.py,sha256=LmKlXRjeEx_uT1enh_EthgQx6e9JKNyGkBKkTd2eijI,1895
|
538
539
|
lusid/models/leg_definition.py,sha256=WgraquXV_a2tt9Zo4TetGUz8_CMEh-PsxI90VN_1yJk,11100
|
@@ -620,6 +621,7 @@ lusid/models/order_instruction_request.py,sha256=69JFcMA3Aju-lzjGVH0h3fzlcvjnjVd
|
|
620
621
|
lusid/models/order_instruction_set_request.py,sha256=QucOY45KZ2qGKFeSn4MIFAm9lmRdKVjCTYtRvkFXNDU,2764
|
621
622
|
lusid/models/order_request.py,sha256=hOwerLbLdwdGW4bbETyml3ecg4wdNKvtnRefq6wPk1U,7833
|
622
623
|
lusid/models/order_set_request.py,sha256=RfOrLNJ67eLBKScPgm-eQhO0Nc0QjhO243d_u4qCfmA,2716
|
624
|
+
lusid/models/order_update_request.py,sha256=7SFQWUTKs6bYYVGdQiB8yb6nwu39DChhZWGaAZtujT4,4928
|
623
625
|
lusid/models/otc_confirmation.py,sha256=OQF6QzTdyya99HApPCZaF3rkcnSztw4GHkL-qdGh-A4,2419
|
624
626
|
lusid/models/output_transaction.py,sha256=Jqbq3wjB-5OIhWM5eR2CE2nRuk7C8tkUP2-L1wORIos,13905
|
625
627
|
lusid/models/output_transition.py,sha256=1K7llvbd7xO0aesRTbK4AFFGn_V6ZsSyWh2o8wQrTt8,3985
|
@@ -684,6 +686,7 @@ lusid/models/paged_resource_list_of_staging_rule_set.py,sha256=KOyb_cntzRt-MYYTw
|
|
684
686
|
lusid/models/paged_resource_list_of_transaction_template.py,sha256=ZmNRSNB3ffs4DmjmikmvyhlN2INUL73j__ASXiWkMVc,4203
|
685
687
|
lusid/models/paged_resource_list_of_transaction_template_specification.py,sha256=CUV-fdc2rz300-pq5JYr02C65JqIP8cn4fpa_oCAAJY,4360
|
686
688
|
lusid/models/paged_resource_list_of_translation_script_id.py,sha256=yZqT6myy5zVj-dtKSXAR9HpuoJz7Bd8dj4kPg5aAros,4204
|
689
|
+
lusid/models/paged_resource_list_of_valuation_point_overview.py,sha256=O68qS2Lzl1ZjFt-Dit7H1cHQpNyGYhl5BNAEZ-I9rZM,4240
|
687
690
|
lusid/models/paged_resource_list_of_virtual_row.py,sha256=mJfVJw0tV7ZijC2qhyb_NimpLaBo9To-a6wpIbU5Nig,4095
|
688
691
|
lusid/models/participation.py,sha256=We75WzDetOnagVympIFfP1BN9fnpyeuSvqPB249MZEs,3909
|
689
692
|
lusid/models/participation_request.py,sha256=6cf3yrM70fVl14xSctVnWetQ2GvPKSLHRPcbXw5VHyo,2858
|
@@ -730,7 +733,7 @@ lusid/models/portfolios_reconciliation_request.py,sha256=NlI1pOGr08bwob0a4FZRRZi
|
|
730
733
|
lusid/models/posting_module_details.py,sha256=YtjckonotvLC-UwLecW2G12FVxlww-VkyEU4q-urvsA,3310
|
731
734
|
lusid/models/posting_module_request.py,sha256=x6aq23t1GtSpg60mAe3gXTRBjgIkOVqUp4qRb3tLFDs,4473
|
732
735
|
lusid/models/posting_module_response.py,sha256=HPPZHdC6hVr5F6ZHaZUW6s095XnCPDA_IamSkTaOMjQ,6104
|
733
|
-
lusid/models/posting_module_rule.py,sha256=
|
736
|
+
lusid/models/posting_module_rule.py,sha256=MGCBOmedwF1hANp9_-lg8tynBYDdTWFDMkzzg_j-ktY,3512
|
734
737
|
lusid/models/posting_module_rules_updated_response.py,sha256=qGQSPvvIjNJJr-F9YOXkQAEXYlsflzcaxMNzOX1tF3k,4288
|
735
738
|
lusid/models/pre_trade_configuration.py,sha256=OjyrngvMxxnF3Qf_a-YCF2Pe8URzV87s0WC3PsxcBVo,2371
|
736
739
|
lusid/models/premium.py,sha256=R2eYbrUmKAmxdWdmWGuUqg78Hm07y1iVBW7IRu4C92I,2200
|
@@ -766,11 +769,11 @@ lusid/models/query_trade_tickets_request.py,sha256=fNQ0Y0sQ_x19G1y3lnqXV2d3L9jZR
|
|
766
769
|
lusid/models/queryable_key.py,sha256=wuXBcvzYrjRJZ-eZ34cHwJWzRYhoyKMjqWjClosoR9Y,8320
|
767
770
|
lusid/models/quote.py,sha256=zuGCv7tOb-k4bBXJLaEa3g3s7FW_zhbI3Ux9yb2a-DI,4479
|
768
771
|
lusid/models/quote_access_metadata_rule.py,sha256=s0-r0q6h72-XRO4_9G6abSWp88OFM7QUS0MOGXYV9s8,3179
|
769
|
-
lusid/models/quote_access_metadata_rule_id.py,sha256=
|
772
|
+
lusid/models/quote_access_metadata_rule_id.py,sha256=9MiRE9XPUw3vuIlRicOqeMZi789OqZB8v5uBJVY7CUQ,6493
|
770
773
|
lusid/models/quote_dependency.py,sha256=1xlJfTJjjLVnN5lTY7JQLUT_5IPEUNtNaLUFfBjDC9E,4595
|
771
774
|
lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
|
772
775
|
lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
|
773
|
-
lusid/models/quote_series_id.py,sha256=
|
776
|
+
lusid/models/quote_series_id.py,sha256=Y6Gvn6CFkbs2Rok7Cy2OxRetg4OCdhPPIzg7PlyzYGA,6006
|
774
777
|
lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
|
775
778
|
lusid/models/raw_vendor_event.py,sha256=gj2rgb29Pyy-G8FCpQDiNJcXcr9NhtPX3UPb_2xPE4U,5590
|
776
779
|
lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
|
@@ -903,7 +906,7 @@ lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-
|
|
903
906
|
lusid/models/schedule.py,sha256=IQeymxyyU0fHANXmPICy6vUQ2sDC9KoyUk9U_X23wTU,4216
|
904
907
|
lusid/models/schedule_type.py,sha256=hdAqhI4A6L1z-Ipwd2xaecMiTCFqRN1Bz1Lc2BWXZTg,955
|
905
908
|
lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
|
906
|
-
lusid/models/scrip_dividend_event.py,sha256=
|
909
|
+
lusid/models/scrip_dividend_event.py,sha256=rH29DhTYZwdGUQJ04a_06W6-AnuBuKErRgvvdyTknXU,7613
|
907
910
|
lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
|
908
911
|
lusid/models/security_election.py,sha256=tY1AkshueFnIgGzSpAmpK3gydlzIkU-JOFYW_T8p6zA,3429
|
909
912
|
lusid/models/security_offer_election.py,sha256=LIGdAJtyjY2dq58UAikfRTaogu321kDikLZfA4eKGmY,3000
|
@@ -920,7 +923,7 @@ lusid/models/settlement_schedule.py,sha256=59PJAHeLK6_fxSRjQ7wGk4zUbyIMjZhiZ-RJ1
|
|
920
923
|
lusid/models/share_class_amount.py,sha256=l-3zCMzmy84d1c0co0t_DgXOCk8t2RKBZ1XljO1jOks,2133
|
921
924
|
lusid/models/share_class_breakdown.py,sha256=IrD_nQ6cMUod_fA8V_vWAVGgbPh8ccQgP6xQ_hodTJk,8058
|
922
925
|
lusid/models/share_class_data.py,sha256=dQp2IM-pzSazRdXT4aIHN3BsWiso360CemAwWmu_UH0,2903
|
923
|
-
lusid/models/share_class_details.py,sha256=
|
926
|
+
lusid/models/share_class_details.py,sha256=SMX_luuHnRXghiCct1Ftt_KhwNjSyo2fC6uxAB_oqmA,4281
|
924
927
|
lusid/models/share_class_pnl_breakdown.py,sha256=fKJrgNp-Fn9c52DXeNdwAWz-WZ2suJ8-LdyAl5iZRrY,4551
|
925
928
|
lusid/models/side_configuration_data.py,sha256=iv4nyDEEAYA2TUfY-dlqOGwn-mft8qMGVQk6itgxqe4,3518
|
926
929
|
lusid/models/side_configuration_data_request.py,sha256=qWt-UDjQbcoPpHCUpRwcSN8NFfcZ4TpHMn2dRuR3WVw,2842
|
@@ -945,7 +948,7 @@ lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAkt
|
|
945
948
|
lusid/models/staging_rule_set.py,sha256=05h5vV_9s3V2MYoH7o1K8pmjlUq15jJSsmyJ5ObRyKs,4896
|
946
949
|
lusid/models/step_schedule.py,sha256=1xCC_C_GzTIOY8GPUIaF75YoieJ6fwV4qQFQHTsJypg,4580
|
947
950
|
lusid/models/stock_dividend_event.py,sha256=k-AsG05mYs-Cc9ttTZLOYO4HSMMC6t170U_mm0GStPA,6415
|
948
|
-
lusid/models/stock_split_event.py,sha256=
|
951
|
+
lusid/models/stock_split_event.py,sha256=hnSydKXmHVBli5jV8KoyoupYmICAb_KgLUQtK_gmjS0,7595
|
949
952
|
lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
|
950
953
|
lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
|
951
954
|
lusid/models/string_compliance_parameter.py,sha256=_DVIosVMDhLYoONZUcMuIre5Ku8JAfIWjHB_okBu-DU,5318
|
@@ -1028,6 +1031,7 @@ lusid/models/update_data_type_request.py,sha256=D9-a9SnXYvk6OLWTjouKu9F2e-SZxCgX
|
|
1028
1031
|
lusid/models/update_derived_property_definition_request.py,sha256=ywIjoYEVA2VMZo_EYrmGkXIUD3gExDBhBXsW4hi9R3o,3323
|
1029
1032
|
lusid/models/update_fee_type_request.py,sha256=fM6q1vKQUR5cTkPUX9uR3CZrNboo-W3UmOK7QKkY5kY,3585
|
1030
1033
|
lusid/models/update_instrument_identifier_request.py,sha256=lPZDvks6d_cuFN1AGuYJFwRrTSCsbLczkgMU5vSlOCQ,3054
|
1034
|
+
lusid/models/update_orders_response.py,sha256=HQG6w8kNYY-xgK9aPkIt2yUmv1hYnvYEwCv8fGpUP9I,5961
|
1031
1035
|
lusid/models/update_placements_response.py,sha256=VwDwHI-bsIhdQ2I1sOKdSrHJ9arhZtuJeoHYSNbFdkw,6017
|
1032
1036
|
lusid/models/update_portfolio_group_request.py,sha256=qp-jCVMlFeXY87_z9PBAz0Kzj6T_ZWALS6UVhIFvg94,2454
|
1033
1037
|
lusid/models/update_portfolio_request.py,sha256=m6OP1BXQ4QQMv57ZGnYuNlWkYWWMZhelqgDmAa9R9Fo,2418
|
@@ -1084,6 +1088,7 @@ lusid/models/user.py,sha256=0lccLmhN2l5KyhvbEBYWp8LGpgIBOMYF_hgTGJniADE,2028
|
|
1084
1088
|
lusid/models/valuation_point_data_query_parameters.py,sha256=vZq_o0zKM0Ez1BpNwoTqijrkLX8zE64UcufqEjKwL5o,2271
|
1085
1089
|
lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEtl9uUk4jNvjf-WFk,2394
|
1086
1090
|
lusid/models/valuation_point_data_response.py,sha256=oh_9KJWu7dLYtZbnFZCyUq95dBnPEpbH_K0QbNeoESY,7201
|
1091
|
+
lusid/models/valuation_point_overview.py,sha256=Z4GZTneHZBbQkdHj7JaEhILqhKkMbJDaJD6UwEFNWSs,5720
|
1087
1092
|
lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
|
1088
1093
|
lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
|
1089
1094
|
lusid/models/valuations_reconciliation_request.py,sha256=X7NF_7du1RdtPW4i3ayn5OGC7GAfKsCdOT1QIB8DAfQ,5001
|
@@ -1113,6 +1118,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
1113
1118
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1114
1119
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1115
1120
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
1116
|
-
lusid_sdk-2.1.
|
1117
|
-
lusid_sdk-2.1.
|
1118
|
-
lusid_sdk-2.1.
|
1121
|
+
lusid_sdk-2.1.347.dist-info/METADATA,sha256=xHlIB7Rja1t4GnxuFMTVcDMmE6v55g-MinGbWM_1TPg,188754
|
1122
|
+
lusid_sdk-2.1.347.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1123
|
+
lusid_sdk-2.1.347.dist-info/RECORD,,
|
File without changes
|