lusid-sdk 2.1.888__py3-none-any.whl → 2.1.890__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/orders_api.py +32 -8
- lusid/configuration.py +1 -1
- lusid/models/allocation.py +7 -1
- lusid/models/block.py +7 -1
- lusid/models/execution.py +7 -1
- lusid/models/order.py +7 -1
- lusid/models/order_instruction.py +7 -1
- lusid/models/package.py +7 -1
- lusid/models/participation.py +7 -1
- lusid/models/placement.py +7 -1
- {lusid_sdk-2.1.888.dist-info → lusid_sdk-2.1.890.dist-info}/METADATA +1 -1
- {lusid_sdk-2.1.888.dist-info → lusid_sdk-2.1.890.dist-info}/RECORD +13 -13
- {lusid_sdk-2.1.888.dist-info → lusid_sdk-2.1.890.dist-info}/WHEEL +0 -0
lusid/api/orders_api.py
CHANGED
@@ -399,22 +399,22 @@ class OrdersApi:
|
|
399
399
|
|
400
400
|
|
401
401
|
@overload
|
402
|
-
async def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, **kwargs) -> PagedResourceListOfOrder: # noqa: E501
|
402
|
+
async def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, membership_type : Annotated[Optional[StrictStr], Field( description="The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.")] = None, **kwargs) -> PagedResourceListOfOrder: # noqa: E501
|
403
403
|
...
|
404
404
|
|
405
405
|
@overload
|
406
|
-
def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, async_req: Optional[bool]=True, **kwargs) -> PagedResourceListOfOrder: # noqa: E501
|
406
|
+
def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, membership_type : Annotated[Optional[StrictStr], Field( description="The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.")] = None, async_req: Optional[bool]=True, **kwargs) -> PagedResourceListOfOrder: # noqa: E501
|
407
407
|
...
|
408
408
|
|
409
409
|
@validate_arguments
|
410
|
-
def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfOrder, Awaitable[PagedResourceListOfOrder]]: # noqa: E501
|
410
|
+
def list_orders(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, membership_type : Annotated[Optional[StrictStr], Field( description="The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfOrder, Awaitable[PagedResourceListOfOrder]]: # noqa: E501
|
411
411
|
"""ListOrders: List Orders # noqa: E501
|
412
412
|
|
413
413
|
Fetch the last pre-AsAt date version of each order with optional filtering (does not fetch the entire history). # noqa: E501
|
414
414
|
This method makes a synchronous HTTP request by default. To make an
|
415
415
|
asynchronous HTTP request, please pass async_req=True
|
416
416
|
|
417
|
-
>>> thread = api.list_orders(as_at, page, sort_by, limit, filter, property_keys, async_req=True)
|
417
|
+
>>> thread = api.list_orders(as_at, page, sort_by, limit, filter, property_keys, data_model_scope, data_model_code, membership_type, async_req=True)
|
418
418
|
>>> result = thread.get()
|
419
419
|
|
420
420
|
:param as_at: The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.
|
@@ -429,6 +429,12 @@ class OrdersApi:
|
|
429
429
|
:type filter: str
|
430
430
|
:param property_keys: A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.
|
431
431
|
:type property_keys: List[str]
|
432
|
+
:param data_model_scope: The optional scope of a Custom Data Model to use
|
433
|
+
:type data_model_scope: str
|
434
|
+
:param data_model_code: The optional code of a Custom Data Model to use
|
435
|
+
:type data_model_code: str
|
436
|
+
:param membership_type: The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.
|
437
|
+
:type membership_type: str
|
432
438
|
:param async_req: Whether to execute the request asynchronously.
|
433
439
|
:type async_req: bool, optional
|
434
440
|
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
@@ -445,17 +451,17 @@ class OrdersApi:
|
|
445
451
|
raise ValueError(message)
|
446
452
|
if async_req is not None:
|
447
453
|
kwargs['async_req'] = async_req
|
448
|
-
return self.list_orders_with_http_info(as_at, page, sort_by, limit, filter, property_keys, **kwargs) # noqa: E501
|
454
|
+
return self.list_orders_with_http_info(as_at, page, sort_by, limit, filter, property_keys, data_model_scope, data_model_code, membership_type, **kwargs) # noqa: E501
|
449
455
|
|
450
456
|
@validate_arguments
|
451
|
-
def list_orders_with_http_info(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
457
|
+
def list_orders_with_http_info(self, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing orders from a previous call to list orders. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this many.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.")] = None, data_model_scope : Annotated[Optional[StrictStr], Field( description="The optional scope of a Custom Data Model to use")] = None, data_model_code : Annotated[Optional[StrictStr], Field( description="The optional code of a Custom Data Model to use")] = None, membership_type : Annotated[Optional[StrictStr], Field( description="The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
452
458
|
"""ListOrders: List Orders # noqa: E501
|
453
459
|
|
454
460
|
Fetch the last pre-AsAt date version of each order with optional filtering (does not fetch the entire history). # noqa: E501
|
455
461
|
This method makes a synchronous HTTP request by default. To make an
|
456
462
|
asynchronous HTTP request, please pass async_req=True
|
457
463
|
|
458
|
-
>>> thread = api.list_orders_with_http_info(as_at, page, sort_by, limit, filter, property_keys, async_req=True)
|
464
|
+
>>> thread = api.list_orders_with_http_info(as_at, page, sort_by, limit, filter, property_keys, data_model_scope, data_model_code, membership_type, async_req=True)
|
459
465
|
>>> result = thread.get()
|
460
466
|
|
461
467
|
:param as_at: The asAt datetime at which to retrieve the order. Defaults to return the latest version of the order if not specified.
|
@@ -470,6 +476,12 @@ class OrdersApi:
|
|
470
476
|
:type filter: str
|
471
477
|
:param property_keys: A list of property keys from the \"Orders\" domain to decorate onto each order. These take the format {domain}/{scope}/{code} e.g. \"Orders/system/Name\". All properties, except derived properties, are returned by default, without specifying here.
|
472
478
|
:type property_keys: List[str]
|
479
|
+
:param data_model_scope: The optional scope of a Custom Data Model to use
|
480
|
+
:type data_model_scope: str
|
481
|
+
:param data_model_code: The optional code of a Custom Data Model to use
|
482
|
+
:type data_model_code: str
|
483
|
+
:param membership_type: The membership types of the specified Custom Data Model to return. Allowable values are Member, Candidate and All.
|
484
|
+
:type membership_type: str
|
473
485
|
:param async_req: Whether to execute the request asynchronously.
|
474
486
|
:type async_req: bool, optional
|
475
487
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -502,7 +514,10 @@ class OrdersApi:
|
|
502
514
|
'sort_by',
|
503
515
|
'limit',
|
504
516
|
'filter',
|
505
|
-
'property_keys'
|
517
|
+
'property_keys',
|
518
|
+
'data_model_scope',
|
519
|
+
'data_model_code',
|
520
|
+
'membership_type'
|
506
521
|
]
|
507
522
|
_all_params.extend(
|
508
523
|
[
|
@@ -557,6 +572,15 @@ class OrdersApi:
|
|
557
572
|
_query_params.append(('propertyKeys', _params['property_keys']))
|
558
573
|
_collection_formats['propertyKeys'] = 'multi'
|
559
574
|
|
575
|
+
if _params.get('data_model_scope') is not None: # noqa: E501
|
576
|
+
_query_params.append(('dataModelScope', _params['data_model_scope']))
|
577
|
+
|
578
|
+
if _params.get('data_model_code') is not None: # noqa: E501
|
579
|
+
_query_params.append(('dataModelCode', _params['data_model_code']))
|
580
|
+
|
581
|
+
if _params.get('membership_type') is not None: # noqa: E501
|
582
|
+
_query_params.append(('membershipType', _params['membership_type']))
|
583
|
+
|
560
584
|
# process the header parameters
|
561
585
|
_header_params = dict(_params.get('_headers', {}))
|
562
586
|
# process the form parameters
|
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.8111\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
lusid/models/allocation.py
CHANGED
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -50,8 +51,9 @@ class Allocation(BaseModel):
|
|
50
51
|
settlement_currency_fx_rate: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="settlementCurrencyFxRate", description="The settlement currency to allocation currency FX rate.")
|
51
52
|
counterparty: Optional[StrictStr] = Field(None,alias="counterparty", description="The counterparty for this allocation.")
|
52
53
|
execution_ids: Optional[conlist(ResourceId)] = Field(None, alias="executionIds", description="The executions associated with this allocation")
|
54
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
53
55
|
links: Optional[conlist(Link)] = None
|
54
|
-
__properties = ["id", "allocatedOrderId", "portfolioId", "quantity", "instrumentIdentifiers", "version", "properties", "instrumentScope", "lusidInstrumentId", "placementIds", "state", "side", "type", "settlementDate", "date", "price", "settlementCurrency", "settlementCurrencyFxRate", "counterparty", "executionIds", "links"]
|
56
|
+
__properties = ["id", "allocatedOrderId", "portfolioId", "quantity", "instrumentIdentifiers", "version", "properties", "instrumentScope", "lusidInstrumentId", "placementIds", "state", "side", "type", "settlementDate", "date", "price", "settlementCurrency", "settlementCurrencyFxRate", "counterparty", "executionIds", "dataModelMembership", "links"]
|
55
57
|
|
56
58
|
class Config:
|
57
59
|
"""Pydantic configuration"""
|
@@ -121,6 +123,9 @@ class Allocation(BaseModel):
|
|
121
123
|
if _item:
|
122
124
|
_items.append(_item.to_dict())
|
123
125
|
_dict['executionIds'] = _items
|
126
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
127
|
+
if self.data_model_membership:
|
128
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
124
129
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
125
130
|
_items = []
|
126
131
|
if self.links:
|
@@ -225,6 +230,7 @@ class Allocation(BaseModel):
|
|
225
230
|
"settlement_currency_fx_rate": obj.get("settlementCurrencyFxRate"),
|
226
231
|
"counterparty": obj.get("counterparty"),
|
227
232
|
"execution_ids": [ResourceId.from_dict(_item) for _item in obj.get("executionIds")] if obj.get("executionIds") is not None else None,
|
233
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
228
234
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
229
235
|
})
|
230
236
|
return _obj
|
lusid/models/block.py
CHANGED
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -44,8 +45,9 @@ class Block(BaseModel):
|
|
44
45
|
stop_price: Optional[CurrencyAndAmount] = Field(None, alias="stopPrice")
|
45
46
|
is_swept: StrictBool = Field(..., alias="isSwept", description="Swept blocks are considered no longer of active interest, and no longer take part in various order management processes")
|
46
47
|
version: Optional[Version] = None
|
48
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
47
49
|
links: Optional[conlist(Link)] = None
|
48
|
-
__properties = ["id", "orderIds", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "side", "type", "timeInForce", "createdDate", "limitPrice", "stopPrice", "isSwept", "version", "links"]
|
50
|
+
__properties = ["id", "orderIds", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "side", "type", "timeInForce", "createdDate", "limitPrice", "stopPrice", "isSwept", "version", "dataModelMembership", "links"]
|
49
51
|
|
50
52
|
class Config:
|
51
53
|
"""Pydantic configuration"""
|
@@ -105,6 +107,9 @@ class Block(BaseModel):
|
|
105
107
|
# override the default output from pydantic by calling `to_dict()` of version
|
106
108
|
if self.version:
|
107
109
|
_dict['version'] = self.version.to_dict()
|
110
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
111
|
+
if self.data_model_membership:
|
112
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
108
113
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
109
114
|
_items = []
|
110
115
|
if self.links:
|
@@ -153,6 +158,7 @@ class Block(BaseModel):
|
|
153
158
|
"stop_price": CurrencyAndAmount.from_dict(obj.get("stopPrice")) if obj.get("stopPrice") is not None else None,
|
154
159
|
"is_swept": obj.get("isSwept"),
|
155
160
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
161
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
156
162
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
157
163
|
})
|
158
164
|
return _obj
|
lusid/models/execution.py
CHANGED
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -47,8 +48,9 @@ class Execution(BaseModel):
|
|
47
48
|
counterparty: StrictStr = Field(...,alias="counterparty", description="The market entity this placement is placed with.")
|
48
49
|
average_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="averagePrice", description="The average price of all executions for a given placement at the time of upsert")
|
49
50
|
version: Optional[Version] = None
|
51
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
50
52
|
links: Optional[conlist(Link)] = None
|
51
|
-
__properties = ["id", "placementId", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "state", "side", "type", "createdDate", "settlementDate", "price", "settlementCurrency", "settlementCurrencyFxRate", "counterparty", "averagePrice", "version", "links"]
|
53
|
+
__properties = ["id", "placementId", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "state", "side", "type", "createdDate", "settlementDate", "price", "settlementCurrency", "settlementCurrencyFxRate", "counterparty", "averagePrice", "version", "dataModelMembership", "links"]
|
52
54
|
|
53
55
|
class Config:
|
54
56
|
"""Pydantic configuration"""
|
@@ -101,6 +103,9 @@ class Execution(BaseModel):
|
|
101
103
|
# override the default output from pydantic by calling `to_dict()` of version
|
102
104
|
if self.version:
|
103
105
|
_dict['version'] = self.version.to_dict()
|
106
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
107
|
+
if self.data_model_membership:
|
108
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
104
109
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
105
110
|
_items = []
|
106
111
|
if self.links:
|
@@ -162,6 +167,7 @@ class Execution(BaseModel):
|
|
162
167
|
"counterparty": obj.get("counterparty"),
|
163
168
|
"average_price": obj.get("averagePrice"),
|
164
169
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
170
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
165
171
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
166
172
|
})
|
167
173
|
return _obj
|
lusid/models/order.py
CHANGED
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -51,8 +52,9 @@ class Order(BaseModel):
|
|
51
52
|
package_id: Optional[ResourceId] = Field(None, alias="packageId")
|
52
53
|
weight: Optional[Union[StrictFloat, StrictInt]] = Field(None, description="The proportion of the total portfolio value ordered for the given instrument ordered.")
|
53
54
|
amount: Optional[CurrencyAndAmount] = None
|
55
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
54
56
|
links: Optional[conlist(Link)] = None
|
55
|
-
__properties = ["properties", "version", "instrumentIdentifiers", "quantity", "side", "orderBookId", "portfolioId", "id", "instrumentScope", "lusidInstrumentId", "state", "type", "timeInForce", "date", "price", "limitPrice", "stopPrice", "orderInstructionId", "packageId", "weight", "amount", "links"]
|
57
|
+
__properties = ["properties", "version", "instrumentIdentifiers", "quantity", "side", "orderBookId", "portfolioId", "id", "instrumentScope", "lusidInstrumentId", "state", "type", "timeInForce", "date", "price", "limitPrice", "stopPrice", "orderInstructionId", "packageId", "weight", "amount", "dataModelMembership", "links"]
|
56
58
|
|
57
59
|
class Config:
|
58
60
|
"""Pydantic configuration"""
|
@@ -123,6 +125,9 @@ class Order(BaseModel):
|
|
123
125
|
# override the default output from pydantic by calling `to_dict()` of amount
|
124
126
|
if self.amount:
|
125
127
|
_dict['amount'] = self.amount.to_dict()
|
128
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
129
|
+
if self.data_model_membership:
|
130
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
126
131
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
127
132
|
_items = []
|
128
133
|
if self.links:
|
@@ -208,6 +213,7 @@ class Order(BaseModel):
|
|
208
213
|
"package_id": ResourceId.from_dict(obj.get("packageId")) if obj.get("packageId") is not None else None,
|
209
214
|
"weight": obj.get("weight"),
|
210
215
|
"amount": CurrencyAndAmount.from_dict(obj.get("amount")) if obj.get("amount") is not None else None,
|
216
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
211
217
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
212
218
|
})
|
213
219
|
return _obj
|
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -41,8 +42,9 @@ class OrderInstruction(BaseModel):
|
|
41
42
|
instrument_scope: Optional[StrictStr] = Field(None,alias="instrumentScope", description="The scope in which the instrument lies")
|
42
43
|
lusid_instrument_id: Optional[StrictStr] = Field(None,alias="lusidInstrumentId", description="The LUSID instrument id for the instrument ordered.")
|
43
44
|
version: Optional[Version] = None
|
45
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
44
46
|
links: Optional[conlist(Link)] = None
|
45
|
-
__properties = ["id", "createdDate", "properties", "portfolioId", "instrumentIdentifiers", "quantity", "weight", "price", "instrumentScope", "lusidInstrumentId", "version", "links"]
|
47
|
+
__properties = ["id", "createdDate", "properties", "portfolioId", "instrumentIdentifiers", "quantity", "weight", "price", "instrumentScope", "lusidInstrumentId", "version", "dataModelMembership", "links"]
|
46
48
|
|
47
49
|
class Config:
|
48
50
|
"""Pydantic configuration"""
|
@@ -95,6 +97,9 @@ class OrderInstruction(BaseModel):
|
|
95
97
|
# override the default output from pydantic by calling `to_dict()` of version
|
96
98
|
if self.version:
|
97
99
|
_dict['version'] = self.version.to_dict()
|
100
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
101
|
+
if self.data_model_membership:
|
102
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
98
103
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
99
104
|
_items = []
|
100
105
|
if self.links:
|
@@ -160,6 +165,7 @@ class OrderInstruction(BaseModel):
|
|
160
165
|
"instrument_scope": obj.get("instrumentScope"),
|
161
166
|
"lusid_instrument_id": obj.get("lusidInstrumentId"),
|
162
167
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
168
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
163
169
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
164
170
|
})
|
165
171
|
return _obj
|
lusid/models/package.py
CHANGED
@@ -20,6 +20,7 @@ import json
|
|
20
20
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, conlist
|
23
|
+
from lusid.models.data_model_membership import DataModelMembership
|
23
24
|
from lusid.models.link import Link
|
24
25
|
from lusid.models.perpetual_property import PerpetualProperty
|
25
26
|
from lusid.models.resource_id import ResourceId
|
@@ -34,8 +35,9 @@ class Package(BaseModel):
|
|
34
35
|
order_instruction_ids: conlist(ResourceId) = Field(..., alias="orderInstructionIds", description="Related order instruction ids.")
|
35
36
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="Client-defined properties associated with this execution.")
|
36
37
|
version: Optional[Version] = None
|
38
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
37
39
|
links: Optional[conlist(Link)] = None
|
38
|
-
__properties = ["id", "orderIds", "orderInstructionIds", "properties", "version", "links"]
|
40
|
+
__properties = ["id", "orderIds", "orderInstructionIds", "properties", "version", "dataModelMembership", "links"]
|
39
41
|
|
40
42
|
class Config:
|
41
43
|
"""Pydantic configuration"""
|
@@ -96,6 +98,9 @@ class Package(BaseModel):
|
|
96
98
|
# override the default output from pydantic by calling `to_dict()` of version
|
97
99
|
if self.version:
|
98
100
|
_dict['version'] = self.version.to_dict()
|
101
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
102
|
+
if self.data_model_membership:
|
103
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
99
104
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
100
105
|
_items = []
|
101
106
|
if self.links:
|
@@ -135,6 +140,7 @@ class Package(BaseModel):
|
|
135
140
|
if obj.get("properties") is not None
|
136
141
|
else None,
|
137
142
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
143
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
138
144
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
139
145
|
})
|
140
146
|
return _obj
|
lusid/models/participation.py
CHANGED
@@ -20,6 +20,7 @@ import json
|
|
20
20
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, conlist
|
23
|
+
from lusid.models.data_model_membership import DataModelMembership
|
23
24
|
from lusid.models.link import Link
|
24
25
|
from lusid.models.resource_id import ResourceId
|
25
26
|
from lusid.models.version import Version
|
@@ -32,8 +33,9 @@ class Participation(BaseModel):
|
|
32
33
|
placement_id: ResourceId = Field(..., alias="placementId")
|
33
34
|
order_id: ResourceId = Field(..., alias="orderId")
|
34
35
|
version: Optional[Version] = None
|
36
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
35
37
|
links: Optional[conlist(Link)] = None
|
36
|
-
__properties = ["id", "placementId", "orderId", "version", "links"]
|
38
|
+
__properties = ["id", "placementId", "orderId", "version", "dataModelMembership", "links"]
|
37
39
|
|
38
40
|
class Config:
|
39
41
|
"""Pydantic configuration"""
|
@@ -79,6 +81,9 @@ class Participation(BaseModel):
|
|
79
81
|
# override the default output from pydantic by calling `to_dict()` of version
|
80
82
|
if self.version:
|
81
83
|
_dict['version'] = self.version.to_dict()
|
84
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
85
|
+
if self.data_model_membership:
|
86
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
82
87
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
83
88
|
_items = []
|
84
89
|
if self.links:
|
@@ -107,6 +112,7 @@ class Participation(BaseModel):
|
|
107
112
|
"placement_id": ResourceId.from_dict(obj.get("placementId")) if obj.get("placementId") is not None else None,
|
108
113
|
"order_id": ResourceId.from_dict(obj.get("orderId")) if obj.get("orderId") is not None else None,
|
109
114
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
115
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
110
116
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
111
117
|
})
|
112
118
|
return _obj
|
lusid/models/placement.py
CHANGED
@@ -21,6 +21,7 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional, Union
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
|
+
from lusid.models.data_model_membership import DataModelMembership
|
24
25
|
from lusid.models.link import Link
|
25
26
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
27
|
from lusid.models.resource_id import ResourceId
|
@@ -48,8 +49,9 @@ class Placement(BaseModel):
|
|
48
49
|
execution_system: Optional[StrictStr] = Field(None,alias="executionSystem", description="Optionally specifies the execution system in use.")
|
49
50
|
entry_type: Optional[StrictStr] = Field(None,alias="entryType", description="Optionally specifies the entry type of this placement.")
|
50
51
|
version: Optional[Version] = None
|
52
|
+
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
51
53
|
links: Optional[conlist(Link)] = None
|
52
|
-
__properties = ["id", "parentPlacementId", "blockIds", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "state", "side", "timeInForce", "type", "createdDate", "limitPrice", "stopPrice", "counterparty", "executionSystem", "entryType", "version", "links"]
|
54
|
+
__properties = ["id", "parentPlacementId", "blockIds", "properties", "instrumentIdentifiers", "lusidInstrumentId", "quantity", "state", "side", "timeInForce", "type", "createdDate", "limitPrice", "stopPrice", "counterparty", "executionSystem", "entryType", "version", "dataModelMembership", "links"]
|
53
55
|
|
54
56
|
class Config:
|
55
57
|
"""Pydantic configuration"""
|
@@ -112,6 +114,9 @@ class Placement(BaseModel):
|
|
112
114
|
# override the default output from pydantic by calling `to_dict()` of version
|
113
115
|
if self.version:
|
114
116
|
_dict['version'] = self.version.to_dict()
|
117
|
+
# override the default output from pydantic by calling `to_dict()` of data_model_membership
|
118
|
+
if self.data_model_membership:
|
119
|
+
_dict['dataModelMembership'] = self.data_model_membership.to_dict()
|
115
120
|
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
116
121
|
_items = []
|
117
122
|
if self.links:
|
@@ -179,6 +184,7 @@ class Placement(BaseModel):
|
|
179
184
|
"execution_system": obj.get("executionSystem"),
|
180
185
|
"entry_type": obj.get("entryType"),
|
181
186
|
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
187
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
182
188
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
183
189
|
})
|
184
190
|
return _obj
|
@@ -42,7 +42,7 @@ lusid/api/legal_entities_api.py,sha256=LMmm184b6OJLJiWaKwTXiodtOgDMpKbaz1cl_tqWn
|
|
42
42
|
lusid/api/order_graph_api.py,sha256=-oaauVeAJxJsK6AHscON1nODEDbv8dcXlKNb6ilBOAU,44022
|
43
43
|
lusid/api/order_instructions_api.py,sha256=o6zLGAFzsZsZdj78fXZ0_jIYz7fo4ZHam75Af4eXg4k,45672
|
44
44
|
lusid/api/order_management_api.py,sha256=GKSvyJglWTVDkddD91_c7XS_qvSgfUvWrbdG7h4C1Ks,104078
|
45
|
-
lusid/api/orders_api.py,sha256=
|
45
|
+
lusid/api/orders_api.py,sha256=sEZKM0I-cf6aXpDTC7fbflgJ0XWjepMKQpOiKYaN-hs,48517
|
46
46
|
lusid/api/packages_api.py,sha256=Vis2ktcicNqTF8Bw66vWhmFUyu0jOfiR5FT6iLKGXSM,43686
|
47
47
|
lusid/api/participations_api.py,sha256=UivNIoEmZ2eIxYwHvMnW94Tfy6loXDu5PO5loY0yDJk,44964
|
48
48
|
lusid/api/persons_api.py,sha256=SlNOfUj8ww6vBD-zQoisNNe45scWn1QNkDOZu8ostb4,250280
|
@@ -80,7 +80,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
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=sCkF5O7rX2byktgeGvpmAtRCqqqCRXKrGYnSzoYONeA,17972
|
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
|
@@ -147,7 +147,7 @@ lusid/models/aggregation_options.py,sha256=eiLFbli-cg667Csk1mLbijmF_tB8vs_-BrwyZ
|
|
147
147
|
lusid/models/aggregation_query.py,sha256=5OK9lbFhES4uxSRPm-J2NXBaPcDPanURPtNSeL6kDqE,14512
|
148
148
|
lusid/models/aggregation_type.py,sha256=XjHrk2_0OhQyn5RK2-LUzDIjvT_blRVYdvyFdkyxQuw,892
|
149
149
|
lusid/models/alias.py,sha256=WwwT4dxDZy-XH9dD4aPlOBhHK50NawxNdUJL-6qn1CE,2358
|
150
|
-
lusid/models/allocation.py,sha256=
|
150
|
+
lusid/models/allocation.py,sha256=VIiQLzimvJG6p0bdnFmqgeTMUSO3G7hRU1v44EcoYn0,12399
|
151
151
|
lusid/models/allocation_request.py,sha256=6A9ge706H69-iYUmiU_1za-qoOJLLp4NrEShldwKfH8,10079
|
152
152
|
lusid/models/allocation_service_run_response.py,sha256=y6We5S6O5kaio-XZPguI9qSphzvoJW_xF7qjcsVXyko,3686
|
153
153
|
lusid/models/allocation_set_request.py,sha256=aiN_7hy91UrDgW4MJjU5qfGUNr8LpxoIRFLuTS0mmtA,3083
|
@@ -183,7 +183,7 @@ lusid/models/batch_upsert_portfolio_access_metadata_response.py,sha256=DtCMT2jDx
|
|
183
183
|
lusid/models/batch_upsert_portfolio_access_metadata_response_item.py,sha256=tuH9DGT8nUrmfPqOTwbVbMVuwdIlAoD31-yhVqZUrWQ,3550
|
184
184
|
lusid/models/batch_upsert_portfolio_transactions_response.py,sha256=0IVDUtW7cwLo_DWrjiweBD_WRvUp2smI-unU0XJsnDI,6035
|
185
185
|
lusid/models/batch_upsert_property_definition_properties_response.py,sha256=xITK95pcgyoFz3m4U96pRUQpG88I_XOFrSjchjKU7Wo,4656
|
186
|
-
lusid/models/block.py,sha256=
|
186
|
+
lusid/models/block.py,sha256=b0VMrkJpD_uqrzLJU8jcMw516FB7jnV-HAmJxxI8-pA,8148
|
187
187
|
lusid/models/block_and_order_id_request.py,sha256=vkvCIdiZKrery_X3-qnyB3Y0EY5zB_COFuh3HsGJNqA,2864
|
188
188
|
lusid/models/block_and_orders.py,sha256=dC3tTwGLZ95CXYp_vVB3xvo6JTCnJuH32h3Ua6NVels,2805
|
189
189
|
lusid/models/block_and_orders_create_request.py,sha256=LUbuPi0mtdZ0T6vqDu7ZOv7JOO4xOVW8fUYcgzY1sc0,2717
|
@@ -468,7 +468,7 @@ lusid/models/event_date_range.py,sha256=bCa-KYbgjgQX1KZ8DMvQv7D056dHmPLhHJGsSvTR
|
|
468
468
|
lusid/models/ex_dividend_configuration.py,sha256=82r83JBGnhkmvI-SSybnP8-0nfsTUB6Cw_RQNxdkJKA,3714
|
469
469
|
lusid/models/exchange_traded_option.py,sha256=cmC2BPT3lWq6dWk6E3ncSCrbXAlj9u28PMVYYeuo7c4,10661
|
470
470
|
lusid/models/exchange_traded_option_contract_details.py,sha256=lGNfXepR-w61o-p8Jfeouejth6sbBcM89A4JFiXZKCk,7276
|
471
|
-
lusid/models/execution.py,sha256=
|
471
|
+
lusid/models/execution.py,sha256=D1KR4YY5jWIpLqPYorcRe8MuIJA-xyY2rnRzMmYd8nA,8842
|
472
472
|
lusid/models/execution_request.py,sha256=52znCOco6znzn0MHSsMdjy1TvXT8VkmnafpsuIwt1-g,6926
|
473
473
|
lusid/models/execution_set_request.py,sha256=WZ6samOLxEqZDPU-ToySgVLl9ZcQq_u11bonDv6Yjf8,2904
|
474
474
|
lusid/models/exercise_event.py,sha256=uiWnLNrjb5PXaPMuxOXFMioM37XEd_509615uU-vJeg,11841
|
@@ -758,7 +758,7 @@ lusid/models/option_exercise_cash_event.py,sha256=dstVzQeGGZllrjg8dwLidGtnanGiPc
|
|
758
758
|
lusid/models/option_exercise_election.py,sha256=n6rxh81aPTSSXQPZ62IMO4NmSaDZbXpntWiBmLby_EI,2755
|
759
759
|
lusid/models/option_exercise_physical_event.py,sha256=ED7njGDkflwA781dT9bnL7xKCvWdnxQLNwoaC4n1HME,16314
|
760
760
|
lusid/models/optionality_schedule.py,sha256=6UAJJyujoLY8b4ujDXMpu-V9WFVyKI-l7inKdmofIqw,8759
|
761
|
-
lusid/models/order.py,sha256=
|
761
|
+
lusid/models/order.py,sha256=Su-dnNnPxwcdFtvvBo3_yZOoAPxSfmiXbQZCA_ravO8,11435
|
762
762
|
lusid/models/order_breach_history.py,sha256=1G-1ieqx_4ksW4MjQmU9op9abqRyKvfbWcpJL50N4RU,4511
|
763
763
|
lusid/models/order_by_spec.py,sha256=q-vo1gZt9JhjNeRXez-hfpHV1JMjK6OGf6TKi4wfR9U,5578
|
764
764
|
lusid/models/order_flow_configuration.py,sha256=7iWxrL8fryDbcXrKytM6rzB0xmkCOm3F6-dKoACEBA0,2482
|
@@ -782,7 +782,7 @@ lusid/models/order_graph_placement_execution_synopsis.py,sha256=rOE4Njk8Xn_yKDF1
|
|
782
782
|
lusid/models/order_graph_placement_order_detail.py,sha256=XtH_1TV71BvqI-0PCE55ZpxnxfagP4YAUkO6DLgAyVo,2402
|
783
783
|
lusid/models/order_graph_placement_order_synopsis.py,sha256=dxrjWizXsgM30X5RigYBKq3AMsJG2cX13fpwp1w3UlM,2787
|
784
784
|
lusid/models/order_graph_placement_placement_synopsis.py,sha256=_B1MNZ0WxUSfXMsKsG-chp_dPI0koaFppyhaNgTxB0U,3062
|
785
|
-
lusid/models/order_instruction.py,sha256=
|
785
|
+
lusid/models/order_instruction.py,sha256=GFf0GVfAjSFjg6KKw2VdEWycM9SQUD4trBQxkkMIBYc,8032
|
786
786
|
lusid/models/order_instruction_request.py,sha256=4du1ipovxhs2Kx6CMkK7wnXbbefTC0gCBzvchKOkUSc,5787
|
787
787
|
lusid/models/order_instruction_set_request.py,sha256=HFlDichvpwgPsPZj6awIo6ofn066RP1rosX7kgUQ7FI,2996
|
788
788
|
lusid/models/order_request.py,sha256=uEFMLyGHPaf6Vndg0JRV7gN0LoF5NmtcRlysDomKkRI,9066
|
@@ -792,7 +792,7 @@ lusid/models/order_update_request.py,sha256=1ZJpbX9CxVlfnArTHWr9RcEIpIk-MIJGcQJm
|
|
792
792
|
lusid/models/otc_confirmation.py,sha256=05mvXvcPLgyCNIHXN7g9L5nqAZORKrQA_wHW-fHe2O0,2651
|
793
793
|
lusid/models/output_transaction.py,sha256=9icL7XvV2xlSnqqhISgf8H4pagX0wBml7xcxxwtPeLQ,21951
|
794
794
|
lusid/models/output_transition.py,sha256=R_EGRE5yzpcgTth20s58MA5a3QVRA7ZvNtkxfAKtNCU,4219
|
795
|
-
lusid/models/package.py,sha256=
|
795
|
+
lusid/models/package.py,sha256=1HFvrxivEXou71xi2lRT8x6ZsQ2zw1IdrIcu738okvU,6250
|
796
796
|
lusid/models/package_request.py,sha256=4sYvxIYutClYd8qLoZxZW96XMZn5jeyhcfpsvyXZfek,4615
|
797
797
|
lusid/models/package_set_request.py,sha256=-Jk6-3gf9FLtoyYRXResakiBv2712-zp5RnaiRJ4mFI,2878
|
798
798
|
lusid/models/paged_resource_list_of_abor.py,sha256=RZdfqIb-mgnX-4jGexP_8Cte5WScmpstdk4cTCOw2YA,4278
|
@@ -869,7 +869,7 @@ lusid/models/paged_resource_list_of_virtual_row.py,sha256=S9wSEOSPdA-zfn7vBB4JO4
|
|
869
869
|
lusid/models/paged_resource_list_of_workspace.py,sha256=80NrMSb7ptF3xbVX-ax2WmWgzLRNxBjXUrbDK229PvI,4338
|
870
870
|
lusid/models/paged_resource_list_of_workspace_item.py,sha256=CpgandeD4ZwVd1xpD8_Qz5mnvVeUrC11IrmU7KcB2gM,4387
|
871
871
|
lusid/models/partial_closure_constituent.py,sha256=KRJ-dDYAUTijBpDsZd9_kav5fWnwCk5TQ9PMp-wDLjs,3917
|
872
|
-
lusid/models/participation.py,sha256=
|
872
|
+
lusid/models/participation.py,sha256=r4ZldATl85qa0TFervt21pYO012TR0COgeA1O5M-2u4,4706
|
873
873
|
lusid/models/participation_request.py,sha256=NIAtwZw0lXbsrY_hIlwC0d9E2xd5tne9gmJI51o_9Yc,3090
|
874
874
|
lusid/models/participation_set_request.py,sha256=YXaw5J_n8ywVidHrrOASwMELATro-oNr0p2HqRLZ5e8,2956
|
875
875
|
lusid/models/percent_check_step.py,sha256=8TcLbPhjY-Km_y_8o0IwfeD9leFOfi1_0Z0VZUJKmn8,8124
|
@@ -882,7 +882,7 @@ lusid/models/perpetual_entity_state.py,sha256=laZ8FCkiqDXCY8ZVpXsfNz97cJDzFO8uVW
|
|
882
882
|
lusid/models/perpetual_property.py,sha256=Es8N-jOLxeyBvA0GhT_yWdqe2MilOmyjJSosoGBg8do,3895
|
883
883
|
lusid/models/person.py,sha256=Yr_0QEWfFbVUNt4S8OJRet3Qtrz2l9az-xC9rqdHzhk,7627
|
884
884
|
lusid/models/place_blocks_request.py,sha256=HOUdJFfvwVo1-2tiUT3BIox5yKjAyOVVDOaDUAGnQlA,2618
|
885
|
-
lusid/models/placement.py,sha256=
|
885
|
+
lusid/models/placement.py,sha256=QK1C-4-bLLlAYwOYBLIzXjvRUN42RAGwONA6_2JgGA0,9856
|
886
886
|
lusid/models/placement_request.py,sha256=-Hprj8bQxa_WwF_eJFWO7ukyuEx2y6XoRH8r9yoVxy8,7998
|
887
887
|
lusid/models/placement_set_request.py,sha256=YNbzS741_Ho70syIzpsNZRSalbzMD2idK8hLvNTcohA,2904
|
888
888
|
lusid/models/placement_update_request.py,sha256=coR6GJusitnkQkzNkh8ts51-p1XVdl0W6X2XbMQNauo,5201
|
@@ -1369,6 +1369,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1369
1369
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1370
1370
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1371
1371
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1372
|
-
lusid_sdk-2.1.
|
1373
|
-
lusid_sdk-2.1.
|
1374
|
-
lusid_sdk-2.1.
|
1372
|
+
lusid_sdk-2.1.890.dist-info/METADATA,sha256=nvhMaz6eYMS7gz_cG1vWnE9_YRR8ic_f4t51P8JiLII,228776
|
1373
|
+
lusid_sdk-2.1.890.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1374
|
+
lusid_sdk-2.1.890.dist-info/RECORD,,
|
File without changes
|