lusid-sdk 2.1.790__py3-none-any.whl → 2.1.791__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 +4 -0
- lusid/api/order_management_api.py +26 -34
- lusid/api/workspace_api.py +197 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +4 -0
- lusid/models/fund_journal_entry_line.py +4 -4
- lusid/models/item_and_workspace.py +83 -0
- lusid/models/journal_entry_line.py +4 -4
- lusid/models/paged_resource_list_of_item_and_workspace.py +121 -0
- {lusid_sdk-2.1.790.dist-info → lusid_sdk-2.1.791.dist-info}/METADATA +8 -5
- {lusid_sdk-2.1.790.dist-info → lusid_sdk-2.1.791.dist-info}/RECORD +12 -10
- {lusid_sdk-2.1.790.dist-info → lusid_sdk-2.1.791.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -652,6 +652,7 @@ from lusid.models.investor_record import InvestorRecord
|
|
652
652
|
from lusid.models.ir_vol_cube_data import IrVolCubeData
|
653
653
|
from lusid.models.ir_vol_dependency import IrVolDependency
|
654
654
|
from lusid.models.is_business_day_response import IsBusinessDayResponse
|
655
|
+
from lusid.models.item_and_workspace import ItemAndWorkspace
|
655
656
|
from lusid.models.journal_entry_line import JournalEntryLine
|
656
657
|
from lusid.models.journal_entry_line_share_class_breakdown import JournalEntryLineShareClassBreakdown
|
657
658
|
from lusid.models.journal_entry_lines_query_parameters import JournalEntryLinesQueryParameters
|
@@ -802,6 +803,7 @@ from lusid.models.paged_resource_list_of_identifier_definition import PagedResou
|
|
802
803
|
from lusid.models.paged_resource_list_of_instrument import PagedResourceListOfInstrument
|
803
804
|
from lusid.models.paged_resource_list_of_instrument_event_holder import PagedResourceListOfInstrumentEventHolder
|
804
805
|
from lusid.models.paged_resource_list_of_instrument_event_instruction import PagedResourceListOfInstrumentEventInstruction
|
806
|
+
from lusid.models.paged_resource_list_of_item_and_workspace import PagedResourceListOfItemAndWorkspace
|
805
807
|
from lusid.models.paged_resource_list_of_legal_entity import PagedResourceListOfLegalEntity
|
806
808
|
from lusid.models.paged_resource_list_of_order import PagedResourceListOfOrder
|
807
809
|
from lusid.models.paged_resource_list_of_order_graph_block import PagedResourceListOfOrderGraphBlock
|
@@ -1958,6 +1960,7 @@ __all__ = [
|
|
1958
1960
|
"IrVolCubeData",
|
1959
1961
|
"IrVolDependency",
|
1960
1962
|
"IsBusinessDayResponse",
|
1963
|
+
"ItemAndWorkspace",
|
1961
1964
|
"JournalEntryLine",
|
1962
1965
|
"JournalEntryLineShareClassBreakdown",
|
1963
1966
|
"JournalEntryLinesQueryParameters",
|
@@ -2108,6 +2111,7 @@ __all__ = [
|
|
2108
2111
|
"PagedResourceListOfInstrument",
|
2109
2112
|
"PagedResourceListOfInstrumentEventHolder",
|
2110
2113
|
"PagedResourceListOfInstrumentEventInstruction",
|
2114
|
+
"PagedResourceListOfItemAndWorkspace",
|
2111
2115
|
"PagedResourceListOfLegalEntity",
|
2112
2116
|
"PagedResourceListOfOrder",
|
2113
2117
|
"PagedResourceListOfOrderGraphBlock",
|
@@ -75,22 +75,22 @@ class OrderManagementApi:
|
|
75
75
|
|
76
76
|
|
77
77
|
@overload
|
78
|
-
async def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None,
|
78
|
+
async def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None, **kwargs) -> BookTransactionsResponse: # noqa: E501
|
79
79
|
...
|
80
80
|
|
81
81
|
@overload
|
82
|
-
def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None,
|
82
|
+
def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None, async_req: Optional[bool]=True, **kwargs) -> BookTransactionsResponse: # noqa: E501
|
83
83
|
...
|
84
84
|
|
85
85
|
@validate_arguments
|
86
|
-
def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None,
|
87
|
-
"""
|
86
|
+
def book_transactions(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[BookTransactionsResponse, Awaitable[BookTransactionsResponse]]: # noqa: E501
|
87
|
+
"""BookTransactions: Books transactions using specific allocations as a source. # noqa: E501
|
88
88
|
|
89
89
|
Takes a collection of allocation IDs, and maps fields from those allocations and related orders onto new transactions. # noqa: E501
|
90
90
|
This method makes a synchronous HTTP request by default. To make an
|
91
91
|
asynchronous HTTP request, please pass async_req=True
|
92
92
|
|
93
|
-
>>> thread = api.book_transactions(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked,
|
93
|
+
>>> thread = api.book_transactions(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked, async_req=True)
|
94
94
|
>>> result = thread.get()
|
95
95
|
|
96
96
|
:param book_transactions_request: The allocations to create transactions for (required)
|
@@ -99,8 +99,6 @@ class OrderManagementApi:
|
|
99
99
|
:type apply_fees_and_commission: bool
|
100
100
|
:param mark_orders_and_allocations_as_booked: Whether to mark allocations and fully-booked orders with state Booked
|
101
101
|
:type mark_orders_and_allocations_as_booked: bool
|
102
|
-
:param use_preview_transactions_for_pricing: Whether to use calculators for the transaction type to work out pricing fields on the booked transactions
|
103
|
-
:type use_preview_transactions_for_pricing: bool
|
104
102
|
:param async_req: Whether to execute the request asynchronously.
|
105
103
|
:type async_req: bool, optional
|
106
104
|
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
@@ -117,17 +115,17 @@ class OrderManagementApi:
|
|
117
115
|
raise ValueError(message)
|
118
116
|
if async_req is not None:
|
119
117
|
kwargs['async_req'] = async_req
|
120
|
-
return self.book_transactions_with_http_info(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked,
|
118
|
+
return self.book_transactions_with_http_info(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked, **kwargs) # noqa: E501
|
121
119
|
|
122
120
|
@validate_arguments
|
123
|
-
def book_transactions_with_http_info(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None,
|
124
|
-
"""
|
121
|
+
def book_transactions_with_http_info(self, book_transactions_request : Annotated[BookTransactionsRequest, Field(..., description="The allocations to create transactions for")], apply_fees_and_commission : Annotated[Optional[StrictBool], Field(description="Whether to apply fees and commissions to transactions (default: true)")] = None, mark_orders_and_allocations_as_booked : Annotated[Optional[StrictBool], Field(description="Whether to mark allocations and fully-booked orders with state Booked")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
122
|
+
"""BookTransactions: Books transactions using specific allocations as a source. # noqa: E501
|
125
123
|
|
126
124
|
Takes a collection of allocation IDs, and maps fields from those allocations and related orders onto new transactions. # noqa: E501
|
127
125
|
This method makes a synchronous HTTP request by default. To make an
|
128
126
|
asynchronous HTTP request, please pass async_req=True
|
129
127
|
|
130
|
-
>>> thread = api.book_transactions_with_http_info(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked,
|
128
|
+
>>> thread = api.book_transactions_with_http_info(book_transactions_request, apply_fees_and_commission, mark_orders_and_allocations_as_booked, async_req=True)
|
131
129
|
>>> result = thread.get()
|
132
130
|
|
133
131
|
:param book_transactions_request: The allocations to create transactions for (required)
|
@@ -136,8 +134,6 @@ class OrderManagementApi:
|
|
136
134
|
:type apply_fees_and_commission: bool
|
137
135
|
:param mark_orders_and_allocations_as_booked: Whether to mark allocations and fully-booked orders with state Booked
|
138
136
|
:type mark_orders_and_allocations_as_booked: bool
|
139
|
-
:param use_preview_transactions_for_pricing: Whether to use calculators for the transaction type to work out pricing fields on the booked transactions
|
140
|
-
:type use_preview_transactions_for_pricing: bool
|
141
137
|
:param async_req: Whether to execute the request asynchronously.
|
142
138
|
:type async_req: bool, optional
|
143
139
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -167,8 +163,7 @@ class OrderManagementApi:
|
|
167
163
|
_all_params = [
|
168
164
|
'book_transactions_request',
|
169
165
|
'apply_fees_and_commission',
|
170
|
-
'mark_orders_and_allocations_as_booked'
|
171
|
-
'use_preview_transactions_for_pricing'
|
166
|
+
'mark_orders_and_allocations_as_booked'
|
172
167
|
]
|
173
168
|
_all_params.extend(
|
174
169
|
[
|
@@ -206,9 +201,6 @@ class OrderManagementApi:
|
|
206
201
|
if _params.get('mark_orders_and_allocations_as_booked') is not None: # noqa: E501
|
207
202
|
_query_params.append(('markOrdersAndAllocationsAsBooked', _params['mark_orders_and_allocations_as_booked']))
|
208
203
|
|
209
|
-
if _params.get('use_preview_transactions_for_pricing') is not None: # noqa: E501
|
210
|
-
_query_params.append(('usePreviewTransactionsForPricing', _params['use_preview_transactions_for_pricing']))
|
211
|
-
|
212
204
|
# process the header parameters
|
213
205
|
_header_params = dict(_params.get('_headers', {}))
|
214
206
|
# process the form parameters
|
@@ -744,9 +736,9 @@ class OrderManagementApi:
|
|
744
736
|
|
745
737
|
@validate_arguments
|
746
738
|
def create_orders(self, block_and_orders_create_request : Annotated[BlockAndOrdersCreateRequest, Field(..., description="The collection of block and orders requests.")], async_req: Optional[bool]=None, **kwargs) -> Union[ResourceListOfBlockAndOrders, Awaitable[ResourceListOfBlockAndOrders]]: # noqa: E501
|
747
|
-
"""
|
739
|
+
"""CreateOrders: Upsert a Block and associated orders # noqa: E501
|
748
740
|
|
749
|
-
|
741
|
+
Create orders, and blocks if they don't already exist. This will fail if the block exists and already references orders with differing blocking fields. # noqa: E501
|
750
742
|
This method makes a synchronous HTTP request by default. To make an
|
751
743
|
asynchronous HTTP request, please pass async_req=True
|
752
744
|
|
@@ -775,9 +767,9 @@ class OrderManagementApi:
|
|
775
767
|
|
776
768
|
@validate_arguments
|
777
769
|
def create_orders_with_http_info(self, block_and_orders_create_request : Annotated[BlockAndOrdersCreateRequest, Field(..., description="The collection of block and orders requests.")], **kwargs) -> ApiResponse: # noqa: E501
|
778
|
-
"""
|
770
|
+
"""CreateOrders: Upsert a Block and associated orders # noqa: E501
|
779
771
|
|
780
|
-
|
772
|
+
Create orders, and blocks if they don't already exist. This will fail if the block exists and already references orders with differing blocking fields. # noqa: E501
|
781
773
|
This method makes a synchronous HTTP request by default. To make an
|
782
774
|
asynchronous HTTP request, please pass async_req=True
|
783
775
|
|
@@ -903,7 +895,7 @@ class OrderManagementApi:
|
|
903
895
|
|
904
896
|
@validate_arguments
|
905
897
|
def get_order_history(self, scope : Annotated[StrictStr, Field(..., description="The scope of the order.")], code : Annotated[StrictStr, Field(..., description="The code of the order.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the history of the order and related entities. Defaults to return the latest version if not specified.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ResourceListOfChangeIntervalWithOrderManagementDetail, Awaitable[ResourceListOfChangeIntervalWithOrderManagementDetail]]: # noqa: E501
|
906
|
-
"""
|
898
|
+
"""GetOrderHistory: Get the history of an order and related entity changes # noqa: E501
|
907
899
|
|
908
900
|
Get the changes that have happened to an order and related entities. # noqa: E501
|
909
901
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -938,7 +930,7 @@ class OrderManagementApi:
|
|
938
930
|
|
939
931
|
@validate_arguments
|
940
932
|
def get_order_history_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the order.")], code : Annotated[StrictStr, Field(..., description="The code of the order.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the history of the order and related entities. Defaults to return the latest version if not specified.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
941
|
-
"""
|
933
|
+
"""GetOrderHistory: Get the history of an order and related entity changes # noqa: E501
|
942
934
|
|
943
935
|
Get the changes that have happened to an order and related entities. # noqa: E501
|
944
936
|
This method makes a synchronous HTTP request by default. To make an
|
@@ -1384,25 +1376,25 @@ class OrderManagementApi:
|
|
1384
1376
|
|
1385
1377
|
|
1386
1378
|
@overload
|
1387
|
-
async def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate
|
1379
|
+
async def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate Executions.")], allocation_algorithm : Annotated[Optional[StrictStr], Field( description="A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".")] = None, **kwargs) -> AllocationServiceRunResponse: # noqa: E501
|
1388
1380
|
...
|
1389
1381
|
|
1390
1382
|
@overload
|
1391
|
-
def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate
|
1383
|
+
def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate Executions.")], allocation_algorithm : Annotated[Optional[StrictStr], Field( description="A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".")] = None, async_req: Optional[bool]=True, **kwargs) -> AllocationServiceRunResponse: # noqa: E501
|
1392
1384
|
...
|
1393
1385
|
|
1394
1386
|
@validate_arguments
|
1395
|
-
def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate
|
1396
|
-
"""
|
1387
|
+
def run_allocation_service(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate Executions.")], allocation_algorithm : Annotated[Optional[StrictStr], Field( description="A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[AllocationServiceRunResponse, Awaitable[AllocationServiceRunResponse]]: # noqa: E501
|
1388
|
+
"""RunAllocationService: Runs the Allocation Service # noqa: E501
|
1397
1389
|
|
1398
|
-
|
1390
|
+
Allocates Executions for a given list of placements back to their originating orders using one of the LUSID algorithms, creating Allocations to record the results. # noqa: E501
|
1399
1391
|
This method makes a synchronous HTTP request by default. To make an
|
1400
1392
|
asynchronous HTTP request, please pass async_req=True
|
1401
1393
|
|
1402
1394
|
>>> thread = api.run_allocation_service(resource_id, allocation_algorithm, async_req=True)
|
1403
1395
|
>>> result = thread.get()
|
1404
1396
|
|
1405
|
-
:param resource_id: The List of Placement IDs for which you wish to allocate
|
1397
|
+
:param resource_id: The List of Placement IDs for which you wish to allocate Executions. (required)
|
1406
1398
|
:type resource_id: List[ResourceId]
|
1407
1399
|
:param allocation_algorithm: A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".
|
1408
1400
|
:type allocation_algorithm: str
|
@@ -1425,17 +1417,17 @@ class OrderManagementApi:
|
|
1425
1417
|
return self.run_allocation_service_with_http_info(resource_id, allocation_algorithm, **kwargs) # noqa: E501
|
1426
1418
|
|
1427
1419
|
@validate_arguments
|
1428
|
-
def run_allocation_service_with_http_info(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate
|
1429
|
-
"""
|
1420
|
+
def run_allocation_service_with_http_info(self, resource_id : Annotated[conlist(ResourceId), Field(..., description="The List of Placement IDs for which you wish to allocate Executions.")], allocation_algorithm : Annotated[Optional[StrictStr], Field( description="A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
1421
|
+
"""RunAllocationService: Runs the Allocation Service # noqa: E501
|
1430
1422
|
|
1431
|
-
|
1423
|
+
Allocates Executions for a given list of placements back to their originating orders using one of the LUSID algorithms, creating Allocations to record the results. # noqa: E501
|
1432
1424
|
This method makes a synchronous HTTP request by default. To make an
|
1433
1425
|
asynchronous HTTP request, please pass async_req=True
|
1434
1426
|
|
1435
1427
|
>>> thread = api.run_allocation_service_with_http_info(resource_id, allocation_algorithm, async_req=True)
|
1436
1428
|
>>> result = thread.get()
|
1437
1429
|
|
1438
|
-
:param resource_id: The List of Placement IDs for which you wish to allocate
|
1430
|
+
:param resource_id: The List of Placement IDs for which you wish to allocate Executions. (required)
|
1439
1431
|
:type resource_id: List[ResourceId]
|
1440
1432
|
:param allocation_algorithm: A string representation of the allocation algorithm you would like to use to allocate shares from executions e.g. \"PR-FIFO\". This defaults to \"PR-FIFO\".
|
1441
1433
|
:type allocation_algorithm: str
|
lusid/api/workspace_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.paged_resource_list_of_item_and_workspace import PagedResourceListOfItemAndWorkspace
|
30
31
|
from lusid.models.paged_resource_list_of_workspace import PagedResourceListOfWorkspace
|
31
32
|
from lusid.models.paged_resource_list_of_workspace_item import PagedResourceListOfWorkspaceItem
|
32
33
|
from lusid.models.workspace import Workspace
|
@@ -1498,6 +1499,202 @@ class WorkspaceApi:
|
|
1498
1499
|
_request_auth=_params.get('_request_auth'))
|
1499
1500
|
|
1500
1501
|
|
1502
|
+
@overload
|
1503
|
+
async def search_items(self, visibility : Annotated[StrictStr, Field(..., description="The visibility for the containing workspace. Must be `shared` or `personal`; case is important.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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 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, **kwargs) -> PagedResourceListOfItemAndWorkspace: # noqa: E501
|
1504
|
+
...
|
1505
|
+
|
1506
|
+
@overload
|
1507
|
+
def search_items(self, visibility : Annotated[StrictStr, Field(..., description="The visibility for the containing workspace. Must be `shared` or `personal`; case is important.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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 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, async_req: Optional[bool]=True, **kwargs) -> PagedResourceListOfItemAndWorkspace: # noqa: E501
|
1508
|
+
...
|
1509
|
+
|
1510
|
+
@validate_arguments
|
1511
|
+
def search_items(self, visibility : Annotated[StrictStr, Field(..., description="The visibility for the containing workspace. Must be `shared` or `personal`; case is important.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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 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, async_req: Optional[bool]=None, **kwargs) -> Union[PagedResourceListOfItemAndWorkspace, Awaitable[PagedResourceListOfItemAndWorkspace]]: # noqa: E501
|
1512
|
+
"""[EXPERIMENTAL] SearchItems: List items across all workspaces. # noqa: E501
|
1513
|
+
|
1514
|
+
List items across all workspaces. # noqa: E501
|
1515
|
+
This method makes a synchronous HTTP request by default. To make an
|
1516
|
+
asynchronous HTTP request, please pass async_req=True
|
1517
|
+
|
1518
|
+
>>> thread = api.search_items(visibility, as_at, page, sort_by, limit, filter, async_req=True)
|
1519
|
+
>>> result = thread.get()
|
1520
|
+
|
1521
|
+
:param visibility: The visibility for the containing workspace. Must be `shared` or `personal`; case is important. (required)
|
1522
|
+
:type visibility: str
|
1523
|
+
:param as_at: The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.
|
1524
|
+
:type as_at: datetime
|
1525
|
+
:param page: The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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.
|
1526
|
+
:type page: str
|
1527
|
+
:param sort_by: A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".
|
1528
|
+
:type sort_by: List[str]
|
1529
|
+
:param limit: When paginating, limit the number of returned results to this many.
|
1530
|
+
:type limit: int
|
1531
|
+
:param filter: Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.
|
1532
|
+
:type filter: str
|
1533
|
+
:param async_req: Whether to execute the request asynchronously.
|
1534
|
+
:type async_req: bool, optional
|
1535
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1536
|
+
:param opts: Configuration options for this request
|
1537
|
+
:type opts: ConfigurationOptions, optional
|
1538
|
+
:return: Returns the result object.
|
1539
|
+
If the method is called asynchronously,
|
1540
|
+
returns the request thread.
|
1541
|
+
:rtype: PagedResourceListOfItemAndWorkspace
|
1542
|
+
"""
|
1543
|
+
kwargs['_return_http_data_only'] = True
|
1544
|
+
if '_preload_content' in kwargs:
|
1545
|
+
message = "Error! Please call the search_items_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
1546
|
+
raise ValueError(message)
|
1547
|
+
if async_req is not None:
|
1548
|
+
kwargs['async_req'] = async_req
|
1549
|
+
return self.search_items_with_http_info(visibility, as_at, page, sort_by, limit, filter, **kwargs) # noqa: E501
|
1550
|
+
|
1551
|
+
@validate_arguments
|
1552
|
+
def search_items_with_http_info(self, visibility : Annotated[StrictStr, Field(..., description="The visibility for the containing workspace. Must be `shared` or `personal`; case is important.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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 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, **kwargs) -> ApiResponse: # noqa: E501
|
1553
|
+
"""[EXPERIMENTAL] SearchItems: List items across all workspaces. # noqa: E501
|
1554
|
+
|
1555
|
+
List items across all workspaces. # noqa: E501
|
1556
|
+
This method makes a synchronous HTTP request by default. To make an
|
1557
|
+
asynchronous HTTP request, please pass async_req=True
|
1558
|
+
|
1559
|
+
>>> thread = api.search_items_with_http_info(visibility, as_at, page, sort_by, limit, filter, async_req=True)
|
1560
|
+
>>> result = thread.get()
|
1561
|
+
|
1562
|
+
:param visibility: The visibility for the containing workspace. Must be `shared` or `personal`; case is important. (required)
|
1563
|
+
:type visibility: str
|
1564
|
+
:param as_at: The asAt datetime at which to retrieve workspace items. Defaults to 'latest' if not specified.
|
1565
|
+
:type as_at: datetime
|
1566
|
+
:param page: The pagination token to use to continue listing workspaces items from a previous call to list workspaces items. 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.
|
1567
|
+
:type page: str
|
1568
|
+
:param sort_by: A list of field names to sort by, each suffixed by \" ASC\" or \" DESC\".
|
1569
|
+
:type sort_by: List[str]
|
1570
|
+
:param limit: When paginating, limit the number of returned results to this many.
|
1571
|
+
:type limit: int
|
1572
|
+
:param filter: Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid.
|
1573
|
+
:type filter: str
|
1574
|
+
:param async_req: Whether to execute the request asynchronously.
|
1575
|
+
:type async_req: bool, optional
|
1576
|
+
:param _preload_content: if False, the ApiResponse.data will
|
1577
|
+
be set to none and raw_data will store the
|
1578
|
+
HTTP response body without reading/decoding.
|
1579
|
+
Default is True.
|
1580
|
+
:type _preload_content: bool, optional
|
1581
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
1582
|
+
object with status code, headers, etc
|
1583
|
+
:type _return_http_data_only: bool, optional
|
1584
|
+
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
1585
|
+
:param opts: Configuration options for this request
|
1586
|
+
:type opts: ConfigurationOptions, optional
|
1587
|
+
:param _request_auth: set to override the auth_settings for an a single
|
1588
|
+
request; this effectively ignores the authentication
|
1589
|
+
in the spec for a single request.
|
1590
|
+
:type _request_auth: dict, optional
|
1591
|
+
:type _content_type: string, optional: force content-type for the request
|
1592
|
+
:return: Returns the result object.
|
1593
|
+
If the method is called asynchronously,
|
1594
|
+
returns the request thread.
|
1595
|
+
:rtype: tuple(PagedResourceListOfItemAndWorkspace, status_code(int), headers(HTTPHeaderDict))
|
1596
|
+
"""
|
1597
|
+
|
1598
|
+
_params = locals()
|
1599
|
+
|
1600
|
+
_all_params = [
|
1601
|
+
'visibility',
|
1602
|
+
'as_at',
|
1603
|
+
'page',
|
1604
|
+
'sort_by',
|
1605
|
+
'limit',
|
1606
|
+
'filter'
|
1607
|
+
]
|
1608
|
+
_all_params.extend(
|
1609
|
+
[
|
1610
|
+
'async_req',
|
1611
|
+
'_return_http_data_only',
|
1612
|
+
'_preload_content',
|
1613
|
+
'_request_timeout',
|
1614
|
+
'_request_auth',
|
1615
|
+
'_content_type',
|
1616
|
+
'_headers',
|
1617
|
+
'opts'
|
1618
|
+
]
|
1619
|
+
)
|
1620
|
+
|
1621
|
+
# validate the arguments
|
1622
|
+
for _key, _val in _params['kwargs'].items():
|
1623
|
+
if _key not in _all_params:
|
1624
|
+
raise ApiTypeError(
|
1625
|
+
"Got an unexpected keyword argument '%s'"
|
1626
|
+
" to method search_items" % _key
|
1627
|
+
)
|
1628
|
+
_params[_key] = _val
|
1629
|
+
del _params['kwargs']
|
1630
|
+
|
1631
|
+
_collection_formats = {}
|
1632
|
+
|
1633
|
+
# process the path parameters
|
1634
|
+
_path_params = {}
|
1635
|
+
if _params['visibility']:
|
1636
|
+
_path_params['visibility'] = _params['visibility']
|
1637
|
+
|
1638
|
+
|
1639
|
+
# process the query parameters
|
1640
|
+
_query_params = []
|
1641
|
+
if _params.get('as_at') is not None: # noqa: E501
|
1642
|
+
if isinstance(_params['as_at'], datetime):
|
1643
|
+
_query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
|
1644
|
+
else:
|
1645
|
+
_query_params.append(('asAt', _params['as_at']))
|
1646
|
+
|
1647
|
+
if _params.get('page') is not None: # noqa: E501
|
1648
|
+
_query_params.append(('page', _params['page']))
|
1649
|
+
|
1650
|
+
if _params.get('sort_by') is not None: # noqa: E501
|
1651
|
+
_query_params.append(('sortBy', _params['sort_by']))
|
1652
|
+
_collection_formats['sortBy'] = 'multi'
|
1653
|
+
|
1654
|
+
if _params.get('limit') is not None: # noqa: E501
|
1655
|
+
_query_params.append(('limit', _params['limit']))
|
1656
|
+
|
1657
|
+
if _params.get('filter') is not None: # noqa: E501
|
1658
|
+
_query_params.append(('filter', _params['filter']))
|
1659
|
+
|
1660
|
+
# process the header parameters
|
1661
|
+
_header_params = dict(_params.get('_headers', {}))
|
1662
|
+
# process the form parameters
|
1663
|
+
_form_params = []
|
1664
|
+
_files = {}
|
1665
|
+
# process the body parameter
|
1666
|
+
_body_params = None
|
1667
|
+
# set the HTTP header `Accept`
|
1668
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
1669
|
+
['text/plain', 'application/json', 'text/json']) # noqa: E501
|
1670
|
+
|
1671
|
+
# authentication setting
|
1672
|
+
_auth_settings = ['oauth2'] # noqa: E501
|
1673
|
+
|
1674
|
+
_response_types_map = {
|
1675
|
+
'200': "PagedResourceListOfItemAndWorkspace",
|
1676
|
+
'400': "LusidValidationProblemDetails",
|
1677
|
+
}
|
1678
|
+
|
1679
|
+
return self.api_client.call_api(
|
1680
|
+
'/api/workspaces/{visibility}/items', 'GET',
|
1681
|
+
_path_params,
|
1682
|
+
_query_params,
|
1683
|
+
_header_params,
|
1684
|
+
body=_body_params,
|
1685
|
+
post_params=_form_params,
|
1686
|
+
files=_files,
|
1687
|
+
response_types_map=_response_types_map,
|
1688
|
+
auth_settings=_auth_settings,
|
1689
|
+
async_req=_params.get('async_req'),
|
1690
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
1691
|
+
_preload_content=_params.get('_preload_content', True),
|
1692
|
+
_request_timeout=_params.get('_request_timeout'),
|
1693
|
+
opts=_params.get('opts'),
|
1694
|
+
collection_formats=_collection_formats,
|
1695
|
+
_request_auth=_params.get('_request_auth'))
|
1696
|
+
|
1697
|
+
|
1501
1698
|
@overload
|
1502
1699
|
async def update_item(self, visibility : Annotated[StrictStr, Field(..., description="The visibility for the containing workspace. Must be `shared` or `personal`; case is important.")], workspace_name : Annotated[StrictStr, Field(..., description="The workspace name.")], group_name : Annotated[StrictStr, Field(..., description="The group containing the item.")], item_name : Annotated[StrictStr, Field(..., description="The item name.")], workspace_item_update_request : Annotated[Optional[WorkspaceItemUpdateRequest], Field(description="The new item details.")] = None, **kwargs) -> WorkspaceItem: # noqa: E501
|
1503
1700
|
...
|
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.7772\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/__init__.py
CHANGED
@@ -565,6 +565,7 @@ from lusid.models.investor_record import InvestorRecord
|
|
565
565
|
from lusid.models.ir_vol_cube_data import IrVolCubeData
|
566
566
|
from lusid.models.ir_vol_dependency import IrVolDependency
|
567
567
|
from lusid.models.is_business_day_response import IsBusinessDayResponse
|
568
|
+
from lusid.models.item_and_workspace import ItemAndWorkspace
|
568
569
|
from lusid.models.journal_entry_line import JournalEntryLine
|
569
570
|
from lusid.models.journal_entry_line_share_class_breakdown import JournalEntryLineShareClassBreakdown
|
570
571
|
from lusid.models.journal_entry_lines_query_parameters import JournalEntryLinesQueryParameters
|
@@ -715,6 +716,7 @@ from lusid.models.paged_resource_list_of_identifier_definition import PagedResou
|
|
715
716
|
from lusid.models.paged_resource_list_of_instrument import PagedResourceListOfInstrument
|
716
717
|
from lusid.models.paged_resource_list_of_instrument_event_holder import PagedResourceListOfInstrumentEventHolder
|
717
718
|
from lusid.models.paged_resource_list_of_instrument_event_instruction import PagedResourceListOfInstrumentEventInstruction
|
719
|
+
from lusid.models.paged_resource_list_of_item_and_workspace import PagedResourceListOfItemAndWorkspace
|
718
720
|
from lusid.models.paged_resource_list_of_legal_entity import PagedResourceListOfLegalEntity
|
719
721
|
from lusid.models.paged_resource_list_of_order import PagedResourceListOfOrder
|
720
722
|
from lusid.models.paged_resource_list_of_order_graph_block import PagedResourceListOfOrderGraphBlock
|
@@ -1785,6 +1787,7 @@ __all__ = [
|
|
1785
1787
|
"IrVolCubeData",
|
1786
1788
|
"IrVolDependency",
|
1787
1789
|
"IsBusinessDayResponse",
|
1790
|
+
"ItemAndWorkspace",
|
1788
1791
|
"JournalEntryLine",
|
1789
1792
|
"JournalEntryLineShareClassBreakdown",
|
1790
1793
|
"JournalEntryLinesQueryParameters",
|
@@ -1935,6 +1938,7 @@ __all__ = [
|
|
1935
1938
|
"PagedResourceListOfInstrument",
|
1936
1939
|
"PagedResourceListOfInstrumentEventHolder",
|
1937
1940
|
"PagedResourceListOfInstrumentEventInstruction",
|
1941
|
+
"PagedResourceListOfItemAndWorkspace",
|
1938
1942
|
"PagedResourceListOfLegalEntity",
|
1939
1943
|
"PagedResourceListOfOrder",
|
1940
1944
|
"PagedResourceListOfOrderGraphBlock",
|
@@ -37,7 +37,7 @@ class FundJournalEntryLine(BaseModel):
|
|
37
37
|
instrument_id: StrictStr = Field(...,alias="instrumentId", description="To indicate the instrument of the transaction that the Journal Entry Line posted for, if applicable.")
|
38
38
|
instrument_scope: StrictStr = Field(...,alias="instrumentScope", description="The scope in which the Journal Entry Line instrument is in.")
|
39
39
|
sub_holding_keys: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeys", description="The sub-holding properties which are part of the AccountingKey.")
|
40
|
-
tax_lot_id: Optional[StrictStr] = Field(None,alias="taxLotId", description="
|
40
|
+
tax_lot_id: Optional[StrictStr] = Field(None,alias="taxLotId", description="If the holding type is 'B' (settled cash balance), this is 1. Otherwise, this is the ID of a tax lot if applicable, or the source ID of the original transaction if not.")
|
41
41
|
general_ledger_account_code: StrictStr = Field(...,alias="generalLedgerAccountCode", description="The code of the account in the general ledger the Journal Entry was posted to.")
|
42
42
|
local: CurrencyAndAmount = Field(...)
|
43
43
|
base: CurrencyAndAmount = Field(...)
|
@@ -49,9 +49,9 @@ class FundJournalEntryLine(BaseModel):
|
|
49
49
|
source_type: StrictStr = Field(...,alias="sourceType", description="So far are 4 types: LusidTxn, LusidValuation, Manual and External.")
|
50
50
|
source_id: StrictStr = Field(...,alias="sourceId", description="For the Lusid Source Type this will be the txn Id. For the rest will be what the user populates.")
|
51
51
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Abor.")
|
52
|
-
movement_name: Optional[StrictStr] = Field(None,alias="movementName", description="
|
53
|
-
holding_type: StrictStr = Field(...,alias="holdingType", description="
|
54
|
-
economic_bucket: StrictStr = Field(...,alias="economicBucket", description="
|
52
|
+
movement_name: Optional[StrictStr] = Field(None,alias="movementName", description="If the JE Line is generated from a transaction, the name of the side in the transaction type's movement. If from a valuation, this is 'MarkToMarket'.")
|
53
|
+
holding_type: StrictStr = Field(...,alias="holdingType", description="One of the LUSID holding types such as 'P' for position or 'B' for settled cash balance.")
|
54
|
+
economic_bucket: StrictStr = Field(...,alias="economicBucket", description="LUSID automatically categorises a JE Line into a broad economic bucket such as 'NA_Cost' or 'PL_RealPriceGL'.")
|
55
55
|
economic_bucket_component: Optional[StrictStr] = Field(None,alias="economicBucketComponent", description="Sub bucket of the economic bucket.")
|
56
56
|
economic_bucket_variant: Optional[StrictStr] = Field(None,alias="economicBucketVariant", description="Categorisation of a Mark-to-market journal entry line into LongTerm or ShortTerm based on whether the ActivityDate is more than a year after the purchase trade date or not.")
|
57
57
|
levels: Optional[conlist(StrictStr)] = Field(None, description="Resolved data from the general ledger profile where the GeneralLedgerProfileCode is specified in the GetJournalEntryLines request body.")
|
@@ -0,0 +1,83 @@
|
|
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
|
22
|
+
from pydantic.v1 import StrictStr, Field, BaseModel, Field, constr
|
23
|
+
from lusid.models.workspace_item import WorkspaceItem
|
24
|
+
|
25
|
+
class ItemAndWorkspace(BaseModel):
|
26
|
+
"""
|
27
|
+
An item plus its containing workspace name. # noqa: E501
|
28
|
+
"""
|
29
|
+
workspace_name: StrictStr = Field(...,alias="workspaceName", description="A workspace's name.")
|
30
|
+
workspace_item: WorkspaceItem = Field(..., alias="workspaceItem")
|
31
|
+
__properties = ["workspaceName", "workspaceItem"]
|
32
|
+
|
33
|
+
class Config:
|
34
|
+
"""Pydantic configuration"""
|
35
|
+
allow_population_by_field_name = True
|
36
|
+
validate_assignment = True
|
37
|
+
|
38
|
+
def __str__(self):
|
39
|
+
"""For `print` and `pprint`"""
|
40
|
+
return pprint.pformat(self.dict(by_alias=False))
|
41
|
+
|
42
|
+
def __repr__(self):
|
43
|
+
"""For `print` and `pprint`"""
|
44
|
+
return self.to_str()
|
45
|
+
|
46
|
+
def to_str(self) -> str:
|
47
|
+
"""Returns the string representation of the model using alias"""
|
48
|
+
return pprint.pformat(self.dict(by_alias=True))
|
49
|
+
|
50
|
+
def to_json(self) -> str:
|
51
|
+
"""Returns the JSON representation of the model using alias"""
|
52
|
+
return json.dumps(self.to_dict())
|
53
|
+
|
54
|
+
@classmethod
|
55
|
+
def from_json(cls, json_str: str) -> ItemAndWorkspace:
|
56
|
+
"""Create an instance of ItemAndWorkspace from a JSON string"""
|
57
|
+
return cls.from_dict(json.loads(json_str))
|
58
|
+
|
59
|
+
def to_dict(self):
|
60
|
+
"""Returns the dictionary representation of the model using alias"""
|
61
|
+
_dict = self.dict(by_alias=True,
|
62
|
+
exclude={
|
63
|
+
},
|
64
|
+
exclude_none=True)
|
65
|
+
# override the default output from pydantic by calling `to_dict()` of workspace_item
|
66
|
+
if self.workspace_item:
|
67
|
+
_dict['workspaceItem'] = self.workspace_item.to_dict()
|
68
|
+
return _dict
|
69
|
+
|
70
|
+
@classmethod
|
71
|
+
def from_dict(cls, obj: dict) -> ItemAndWorkspace:
|
72
|
+
"""Create an instance of ItemAndWorkspace from a dict"""
|
73
|
+
if obj is None:
|
74
|
+
return None
|
75
|
+
|
76
|
+
if not isinstance(obj, dict):
|
77
|
+
return ItemAndWorkspace.parse_obj(obj)
|
78
|
+
|
79
|
+
_obj = ItemAndWorkspace.parse_obj({
|
80
|
+
"workspace_name": obj.get("workspaceName"),
|
81
|
+
"workspace_item": WorkspaceItem.from_dict(obj.get("workspaceItem")) if obj.get("workspaceItem") is not None else None
|
82
|
+
})
|
83
|
+
return _obj
|
@@ -36,7 +36,7 @@ class JournalEntryLine(BaseModel):
|
|
36
36
|
instrument_id: StrictStr = Field(...,alias="instrumentId", description="To indicate the instrument of the transaction that the Journal Entry Line posted for, if applicable.")
|
37
37
|
instrument_scope: StrictStr = Field(...,alias="instrumentScope", description="The scope in which the Journal Entry Line instrument is in.")
|
38
38
|
sub_holding_keys: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeys", description="The sub-holding properties which are part of the AccountingKey.")
|
39
|
-
tax_lot_id: Optional[StrictStr] = Field(None,alias="taxLotId", description="
|
39
|
+
tax_lot_id: Optional[StrictStr] = Field(None,alias="taxLotId", description="If the holding type is 'B' (settled cash balance), this is 1. Otherwise, this is the ID of a tax lot if applicable, or the source ID of the original transaction if not.")
|
40
40
|
general_ledger_account_code: StrictStr = Field(...,alias="generalLedgerAccountCode", description="The code of the account in the general ledger the Journal Entry was posted to.")
|
41
41
|
local: CurrencyAndAmount = Field(...)
|
42
42
|
base: CurrencyAndAmount = Field(...)
|
@@ -48,9 +48,9 @@ class JournalEntryLine(BaseModel):
|
|
48
48
|
source_type: StrictStr = Field(...,alias="sourceType", description="So far are 4 types: LusidTxn, LusidValuation, Manual and External.")
|
49
49
|
source_id: StrictStr = Field(...,alias="sourceId", description="For the Lusid Source Type this will be the txn Id. For the rest will be what the user populates.")
|
50
50
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Abor.")
|
51
|
-
movement_name: Optional[StrictStr] = Field(None,alias="movementName", description="
|
52
|
-
holding_type: StrictStr = Field(...,alias="holdingType", description="
|
53
|
-
economic_bucket: StrictStr = Field(...,alias="economicBucket", description="
|
51
|
+
movement_name: Optional[StrictStr] = Field(None,alias="movementName", description="If the JE Line is generated from a transaction, the name of the side in the transaction type's movement. If from a valuation, this is 'MarkToMarket'.")
|
52
|
+
holding_type: StrictStr = Field(...,alias="holdingType", description="One of the LUSID holding types such as 'P' for position or 'B' for settled cash balance.")
|
53
|
+
economic_bucket: StrictStr = Field(...,alias="economicBucket", description="LUSID automatically categorises a JE Line into a broad economic bucket such as 'NA_Cost' or 'PL_RealPriceGL'.")
|
54
54
|
economic_bucket_component: Optional[StrictStr] = Field(None,alias="economicBucketComponent", description="Sub bucket of the economic bucket.")
|
55
55
|
economic_bucket_variant: Optional[StrictStr] = Field(None,alias="economicBucketVariant", description="Categorisation of a Mark-to-market journal entry line into LongTerm or ShortTerm based on whether the ActivityDate is more than a year after the purchase trade date or not.")
|
56
56
|
levels: Optional[conlist(StrictStr)] = Field(None, description="Resolved data from the general ledger profile where the GeneralLedgerProfileCode is specified in the GetJournalEntryLines request body.")
|
@@ -0,0 +1,121 @@
|
|
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, Optional
|
22
|
+
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist
|
23
|
+
from lusid.models.item_and_workspace import ItemAndWorkspace
|
24
|
+
from lusid.models.link import Link
|
25
|
+
|
26
|
+
class PagedResourceListOfItemAndWorkspace(BaseModel):
|
27
|
+
"""
|
28
|
+
PagedResourceListOfItemAndWorkspace
|
29
|
+
"""
|
30
|
+
next_page: Optional[StrictStr] = Field(None,alias="nextPage")
|
31
|
+
previous_page: Optional[StrictStr] = Field(None,alias="previousPage")
|
32
|
+
values: conlist(ItemAndWorkspace) = Field(...)
|
33
|
+
href: Optional[StrictStr] = Field(None,alias="href")
|
34
|
+
links: Optional[conlist(Link)] = None
|
35
|
+
__properties = ["nextPage", "previousPage", "values", "href", "links"]
|
36
|
+
|
37
|
+
class Config:
|
38
|
+
"""Pydantic configuration"""
|
39
|
+
allow_population_by_field_name = True
|
40
|
+
validate_assignment = True
|
41
|
+
|
42
|
+
def __str__(self):
|
43
|
+
"""For `print` and `pprint`"""
|
44
|
+
return pprint.pformat(self.dict(by_alias=False))
|
45
|
+
|
46
|
+
def __repr__(self):
|
47
|
+
"""For `print` and `pprint`"""
|
48
|
+
return self.to_str()
|
49
|
+
|
50
|
+
def to_str(self) -> str:
|
51
|
+
"""Returns the string representation of the model using alias"""
|
52
|
+
return pprint.pformat(self.dict(by_alias=True))
|
53
|
+
|
54
|
+
def to_json(self) -> str:
|
55
|
+
"""Returns the JSON representation of the model using alias"""
|
56
|
+
return json.dumps(self.to_dict())
|
57
|
+
|
58
|
+
@classmethod
|
59
|
+
def from_json(cls, json_str: str) -> PagedResourceListOfItemAndWorkspace:
|
60
|
+
"""Create an instance of PagedResourceListOfItemAndWorkspace from a JSON string"""
|
61
|
+
return cls.from_dict(json.loads(json_str))
|
62
|
+
|
63
|
+
def to_dict(self):
|
64
|
+
"""Returns the dictionary representation of the model using alias"""
|
65
|
+
_dict = self.dict(by_alias=True,
|
66
|
+
exclude={
|
67
|
+
},
|
68
|
+
exclude_none=True)
|
69
|
+
# override the default output from pydantic by calling `to_dict()` of each item in values (list)
|
70
|
+
_items = []
|
71
|
+
if self.values:
|
72
|
+
for _item in self.values:
|
73
|
+
if _item:
|
74
|
+
_items.append(_item.to_dict())
|
75
|
+
_dict['values'] = _items
|
76
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
77
|
+
_items = []
|
78
|
+
if self.links:
|
79
|
+
for _item in self.links:
|
80
|
+
if _item:
|
81
|
+
_items.append(_item.to_dict())
|
82
|
+
_dict['links'] = _items
|
83
|
+
# set to None if next_page (nullable) is None
|
84
|
+
# and __fields_set__ contains the field
|
85
|
+
if self.next_page is None and "next_page" in self.__fields_set__:
|
86
|
+
_dict['nextPage'] = None
|
87
|
+
|
88
|
+
# set to None if previous_page (nullable) is None
|
89
|
+
# and __fields_set__ contains the field
|
90
|
+
if self.previous_page is None and "previous_page" in self.__fields_set__:
|
91
|
+
_dict['previousPage'] = None
|
92
|
+
|
93
|
+
# set to None if href (nullable) is None
|
94
|
+
# and __fields_set__ contains the field
|
95
|
+
if self.href is None and "href" in self.__fields_set__:
|
96
|
+
_dict['href'] = None
|
97
|
+
|
98
|
+
# set to None if links (nullable) is None
|
99
|
+
# and __fields_set__ contains the field
|
100
|
+
if self.links is None and "links" in self.__fields_set__:
|
101
|
+
_dict['links'] = None
|
102
|
+
|
103
|
+
return _dict
|
104
|
+
|
105
|
+
@classmethod
|
106
|
+
def from_dict(cls, obj: dict) -> PagedResourceListOfItemAndWorkspace:
|
107
|
+
"""Create an instance of PagedResourceListOfItemAndWorkspace from a dict"""
|
108
|
+
if obj is None:
|
109
|
+
return None
|
110
|
+
|
111
|
+
if not isinstance(obj, dict):
|
112
|
+
return PagedResourceListOfItemAndWorkspace.parse_obj(obj)
|
113
|
+
|
114
|
+
_obj = PagedResourceListOfItemAndWorkspace.parse_obj({
|
115
|
+
"next_page": obj.get("nextPage"),
|
116
|
+
"previous_page": obj.get("previousPage"),
|
117
|
+
"values": [ItemAndWorkspace.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
|
118
|
+
"href": obj.get("href"),
|
119
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
120
|
+
})
|
121
|
+
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.791
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -364,15 +364,15 @@ Class | Method | HTTP request | Description
|
|
364
364
|
*OrderInstructionsApi* | [**get_order_instruction**](docs/OrderInstructionsApi.md#get_order_instruction) | **GET** /api/orderinstructions/{scope}/{code} | GetOrderInstruction: Get OrderInstruction
|
365
365
|
*OrderInstructionsApi* | [**list_order_instructions**](docs/OrderInstructionsApi.md#list_order_instructions) | **GET** /api/orderinstructions | ListOrderInstructions: List OrderInstructions
|
366
366
|
*OrderInstructionsApi* | [**upsert_order_instructions**](docs/OrderInstructionsApi.md#upsert_order_instructions) | **POST** /api/orderinstructions | UpsertOrderInstructions: Upsert OrderInstruction
|
367
|
-
*OrderManagementApi* | [**book_transactions**](docs/OrderManagementApi.md#book_transactions) | **POST** /api/ordermanagement/booktransactions |
|
367
|
+
*OrderManagementApi* | [**book_transactions**](docs/OrderManagementApi.md#book_transactions) | **POST** /api/ordermanagement/booktransactions | BookTransactions: Books transactions using specific allocations as a source.
|
368
368
|
*OrderManagementApi* | [**cancel_orders**](docs/OrderManagementApi.md#cancel_orders) | **POST** /api/ordermanagement/cancelorders | [EARLY ACCESS] CancelOrders: Cancel existing orders
|
369
369
|
*OrderManagementApi* | [**cancel_orders_and_move_remaining**](docs/OrderManagementApi.md#cancel_orders_and_move_remaining) | **POST** /api/ordermanagement/cancelordersandmoveremaining | [EARLY ACCESS] CancelOrdersAndMoveRemaining: Cancel existing orders and move any unplaced quantities to new orders in new blocks
|
370
370
|
*OrderManagementApi* | [**cancel_placements**](docs/OrderManagementApi.md#cancel_placements) | **POST** /api/ordermanagement/$cancelplacements | [EARLY ACCESS] CancelPlacements: Cancel existing placements
|
371
|
-
*OrderManagementApi* | [**create_orders**](docs/OrderManagementApi.md#create_orders) | **POST** /api/ordermanagement/createorders |
|
372
|
-
*OrderManagementApi* | [**get_order_history**](docs/OrderManagementApi.md#get_order_history) | **GET** /api/ordermanagement/order/{scope}/{code}/$history |
|
371
|
+
*OrderManagementApi* | [**create_orders**](docs/OrderManagementApi.md#create_orders) | **POST** /api/ordermanagement/createorders | CreateOrders: Upsert a Block and associated orders
|
372
|
+
*OrderManagementApi* | [**get_order_history**](docs/OrderManagementApi.md#get_order_history) | **GET** /api/ordermanagement/order/{scope}/{code}/$history | GetOrderHistory: Get the history of an order and related entity changes
|
373
373
|
*OrderManagementApi* | [**move_orders**](docs/OrderManagementApi.md#move_orders) | **POST** /api/ordermanagement/moveorders | [EARLY ACCESS] MoveOrders: Move orders to new or existing block
|
374
374
|
*OrderManagementApi* | [**place_blocks**](docs/OrderManagementApi.md#place_blocks) | **POST** /api/ordermanagement/placeblocks | [EARLY ACCESS] PlaceBlocks: Places blocks for a given list of placement requests.
|
375
|
-
*OrderManagementApi* | [**run_allocation_service**](docs/OrderManagementApi.md#run_allocation_service) | **POST** /api/ordermanagement/allocate |
|
375
|
+
*OrderManagementApi* | [**run_allocation_service**](docs/OrderManagementApi.md#run_allocation_service) | **POST** /api/ordermanagement/allocate | RunAllocationService: Runs the Allocation Service
|
376
376
|
*OrderManagementApi* | [**sweep_blocks**](docs/OrderManagementApi.md#sweep_blocks) | **POST** /api/ordermanagement/SweepBlocks | [EXPERIMENTAL] SweepBlocks: Sweeps specified blocks, for each block that meets the requirements. The request may be partially successful.
|
377
377
|
*OrderManagementApi* | [**update_orders**](docs/OrderManagementApi.md#update_orders) | **POST** /api/ordermanagement/updateorders | [EARLY ACCESS] UpdateOrders: Update existing orders
|
378
378
|
*OrderManagementApi* | [**update_placements**](docs/OrderManagementApi.md#update_placements) | **POST** /api/ordermanagement/$updateplacements | [EARLY ACCESS] UpdatePlacements: Update existing placements
|
@@ -651,6 +651,7 @@ Class | Method | HTTP request | Description
|
|
651
651
|
*WorkspaceApi* | [**get_workspace**](docs/WorkspaceApi.md#get_workspace) | **GET** /api/workspaces/{visibility}/{workspaceName} | [EXPERIMENTAL] GetWorkspace: Get a workspace.
|
652
652
|
*WorkspaceApi* | [**list_items**](docs/WorkspaceApi.md#list_items) | **GET** /api/workspaces/{visibility}/{workspaceName}/items | [EXPERIMENTAL] ListItems: List the items in a workspace.
|
653
653
|
*WorkspaceApi* | [**list_workspaces**](docs/WorkspaceApi.md#list_workspaces) | **GET** /api/workspaces/{visibility} | [EXPERIMENTAL] ListWorkspaces: List workspaces.
|
654
|
+
*WorkspaceApi* | [**search_items**](docs/WorkspaceApi.md#search_items) | **GET** /api/workspaces/{visibility}/items | [EXPERIMENTAL] SearchItems: List items across all workspaces.
|
654
655
|
*WorkspaceApi* | [**update_item**](docs/WorkspaceApi.md#update_item) | **PUT** /api/workspaces/{visibility}/{workspaceName}/items/{groupName}/{itemName} | [EXPERIMENTAL] UpdateItem: Update an item in a workspace.
|
655
656
|
*WorkspaceApi* | [**update_workspace**](docs/WorkspaceApi.md#update_workspace) | **PUT** /api/workspaces/{visibility}/{workspaceName} | [EXPERIMENTAL] UpdateWorkspace: Update a workspace.
|
656
657
|
|
@@ -1209,6 +1210,7 @@ Class | Method | HTTP request | Description
|
|
1209
1210
|
- [IrVolCubeData](docs/IrVolCubeData.md)
|
1210
1211
|
- [IrVolDependency](docs/IrVolDependency.md)
|
1211
1212
|
- [IsBusinessDayResponse](docs/IsBusinessDayResponse.md)
|
1213
|
+
- [ItemAndWorkspace](docs/ItemAndWorkspace.md)
|
1212
1214
|
- [JournalEntryLine](docs/JournalEntryLine.md)
|
1213
1215
|
- [JournalEntryLineShareClassBreakdown](docs/JournalEntryLineShareClassBreakdown.md)
|
1214
1216
|
- [JournalEntryLinesQueryParameters](docs/JournalEntryLinesQueryParameters.md)
|
@@ -1359,6 +1361,7 @@ Class | Method | HTTP request | Description
|
|
1359
1361
|
- [PagedResourceListOfInstrument](docs/PagedResourceListOfInstrument.md)
|
1360
1362
|
- [PagedResourceListOfInstrumentEventHolder](docs/PagedResourceListOfInstrumentEventHolder.md)
|
1361
1363
|
- [PagedResourceListOfInstrumentEventInstruction](docs/PagedResourceListOfInstrumentEventInstruction.md)
|
1364
|
+
- [PagedResourceListOfItemAndWorkspace](docs/PagedResourceListOfItemAndWorkspace.md)
|
1362
1365
|
- [PagedResourceListOfLegalEntity](docs/PagedResourceListOfLegalEntity.md)
|
1363
1366
|
- [PagedResourceListOfOrder](docs/PagedResourceListOfOrder.md)
|
1364
1367
|
- [PagedResourceListOfOrderGraphBlock](docs/PagedResourceListOfOrderGraphBlock.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=4Hw7NZgANwcliapBeQKw2nNcY00_gtLirIYETT5vJog,137886
|
2
2
|
lusid/api/__init__.py,sha256=EQ3XKHP9QY2QeLD97_6ePDtx6g6tykdAzwWWHaW0dYo,6386
|
3
3
|
lusid/api/abor_api.py,sha256=oAvtx9mQGWa5ZQRKjhzkJJH110GiIqiPIefIYNoiT14,166017
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=3Y3KwOOJqPsCsl7rfP-ScCYrKvVsQSP5adbsAsJ9G1s,74238
|
@@ -39,7 +39,7 @@ lusid/api/legacy_compliance_api.py,sha256=DvApZDZ-_yzZ72e9oqKBK7Ey8oEaavGtw5cgxh
|
|
39
39
|
lusid/api/legal_entities_api.py,sha256=3rCwRIrEXwKH2T8-16ZizKx_Hyi8YeEfrZFpCJX5Hfs,257649
|
40
40
|
lusid/api/order_graph_api.py,sha256=-oaauVeAJxJsK6AHscON1nODEDbv8dcXlKNb6ilBOAU,44022
|
41
41
|
lusid/api/order_instructions_api.py,sha256=o6zLGAFzsZsZdj78fXZ0_jIYz7fo4ZHam75Af4eXg4k,45672
|
42
|
-
lusid/api/order_management_api.py,sha256=
|
42
|
+
lusid/api/order_management_api.py,sha256=GKSvyJglWTVDkddD91_c7XS_qvSgfUvWrbdG7h4C1Ks,104078
|
43
43
|
lusid/api/orders_api.py,sha256=ujZOS8BbUlAOaGAgA7eEiwOiGNxfCAgeKEH94OiNxGE,43228
|
44
44
|
lusid/api/packages_api.py,sha256=Vis2ktcicNqTF8Bw66vWhmFUyu0jOfiR5FT6iLKGXSM,43686
|
45
45
|
lusid/api/participations_api.py,sha256=UivNIoEmZ2eIxYwHvMnW94Tfy6loXDu5PO5loY0yDJk,44964
|
@@ -73,10 +73,10 @@ lusid/api/transaction_configuration_api.py,sha256=OHs853-U1RWs2oApEO3raiMxixxiMQ
|
|
73
73
|
lusid/api/transaction_fees_api.py,sha256=r8Gl44-WYZebyJ_Uw2stLsf3-hPi1bK6Ij64Kx0L6A8,62698
|
74
74
|
lusid/api/transaction_portfolios_api.py,sha256=ZaazyXK90EG7RRGbzWxV-bbDcb_Ulw9B6qEgedT0EBk,608525
|
75
75
|
lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,20227
|
76
|
-
lusid/api/workspace_api.py,sha256=
|
76
|
+
lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
|
77
77
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
78
78
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
79
|
-
lusid/configuration.py,sha256=
|
79
|
+
lusid/configuration.py,sha256=Ucm6iMTW_Og5EpbQIUKk79PqvbCH-XA61XArldmb2Mc,17972
|
80
80
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
81
81
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
82
82
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -91,7 +91,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
91
91
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
92
92
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
93
93
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
94
|
-
lusid/models/__init__.py,sha256=
|
94
|
+
lusid/models/__init__.py,sha256=bkzNNztWCCpvXe3su9Y9kJEZ9udnRBmXn9TVzPELhH4,130468
|
95
95
|
lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
|
96
96
|
lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
|
97
97
|
lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
|
@@ -490,7 +490,7 @@ lusid/models/fund_configuration_properties.py,sha256=b-4hJF9TltJf3lmaSyDjeGUhjjh
|
|
490
490
|
lusid/models/fund_configuration_request.py,sha256=ALjjBed5PSP9vPaJzGPeXmsm0LzfmiBmjZNGu5eWJ7Y,7208
|
491
491
|
lusid/models/fund_details.py,sha256=LCOrrTtyRtdxIfKxIuhf7a_qW5iNfQ_-5NJdMr7sZBw,2427
|
492
492
|
lusid/models/fund_id_list.py,sha256=D_idTEzdmYc5gDVHSI-K5aY7o1ZKSees358NO4g1h1w,6944
|
493
|
-
lusid/models/fund_journal_entry_line.py,sha256=
|
493
|
+
lusid/models/fund_journal_entry_line.py,sha256=Yu0mYBv6HCxtmvnncJ_MQJ5rQzyuQwKisgzonhpbY4o,16242
|
494
494
|
lusid/models/fund_pnl_breakdown.py,sha256=VnRhnpqPP6QNFaIKjJRx9UT77Rcquxl--ynKEzzVPDM,4653
|
495
495
|
lusid/models/fund_previous_nav.py,sha256=pS6RoeqlQRytoJq_vplGYDGX2oH-6Q44B7elZGRfYsE,2162
|
496
496
|
lusid/models/fund_properties.py,sha256=SfdvEcARxxk_Akxr92DTGxM_0Ode9T6bBcExeG6K7ys,4489
|
@@ -643,7 +643,8 @@ lusid/models/investor_record.py,sha256=K4tfet2yUeEXcs18wAJPKvnuXnjIpeg1HfC2FsHyw
|
|
643
643
|
lusid/models/ir_vol_cube_data.py,sha256=uJGOWjam6iYYa2zv-Zq3YEtBPFa-ceiLom6CmCYmxGo,9097
|
644
644
|
lusid/models/ir_vol_dependency.py,sha256=KXlWve54ZYT7oD3L3nudagtHx70IYGSxNuZ-Fwlm13I,7758
|
645
645
|
lusid/models/is_business_day_response.py,sha256=s2swRw2kvUrJtUF-tVG_lIR9sFqdPzgfk4acEs9ifm8,2395
|
646
|
-
lusid/models/
|
646
|
+
lusid/models/item_and_workspace.py,sha256=99XD1JY84BkT8n3A8558rFZMyEOLvgyVPKKg8ABU8P8,2653
|
647
|
+
lusid/models/journal_entry_line.py,sha256=HBZNXNArKX3Xx6C6SQ83BexRXeUW3YWQjJcNxidVG08,15022
|
647
648
|
lusid/models/journal_entry_line_share_class_breakdown.py,sha256=3owK3HEMv5Qa_NbKm9Wy3cQLyS0rfwvPkGVorV0h8VQ,3376
|
648
649
|
lusid/models/journal_entry_lines_query_parameters.py,sha256=btvDczLwU_gyjjwy9NRxZZ6ziPIYy8PSmllDNl_h0gs,4470
|
649
650
|
lusid/models/label_value_set.py,sha256=6ewaKwSt-cUanN0ZtH1E4y4UtZAe4hs9TF40MKXbtM4,2114
|
@@ -793,6 +794,7 @@ lusid/models/paged_resource_list_of_identifier_definition.py,sha256=Cn2JQE1glASa
|
|
793
794
|
lusid/models/paged_resource_list_of_instrument.py,sha256=4y0jq__WQta_Lcdg_FqsxnQZybU1KQkjxt9ps0NjXqA,4350
|
794
795
|
lusid/models/paged_resource_list_of_instrument_event_holder.py,sha256=pkqd4FbP0a5a7O2Kon1x6OO7-gEwMfVUOC3DGUmtF_U,4484
|
795
796
|
lusid/models/paged_resource_list_of_instrument_event_instruction.py,sha256=j7vW0xGJ7JWsPTLkzyCOmxsilnpeWrfUi9RCw9ShEn0,4544
|
797
|
+
lusid/models/paged_resource_list_of_item_and_workspace.py,sha256=3tb3XW-kvPvu15o-YiDPRonZv2ptfeUisWJmIMCiWX4,4424
|
796
798
|
lusid/models/paged_resource_list_of_legal_entity.py,sha256=kc__KlK_idJw8g0be1HUtCbEFo-l3OH1ZH5Abmp6JJo,4363
|
797
799
|
lusid/models/paged_resource_list_of_order.py,sha256=fNxwZBrLsNnp1fVcvbrNxh7zeKtybdgfC0hFfxaRePI,4290
|
798
800
|
lusid/models/paged_resource_list_of_order_graph_block.py,sha256=69pMcdJ21oPEl80Nev5PfVZ_jCewGXbJKgAn58Ji7a8,4412
|
@@ -1311,6 +1313,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1311
1313
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1312
1314
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1313
1315
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1314
|
-
lusid_sdk-2.1.
|
1315
|
-
lusid_sdk-2.1.
|
1316
|
-
lusid_sdk-2.1.
|
1316
|
+
lusid_sdk-2.1.791.dist-info/METADATA,sha256=Ibdlkt_eGfgwzsvgeJbFJmh6C93-LiqKm1e1AbDolYc,220149
|
1317
|
+
lusid_sdk-2.1.791.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1318
|
+
lusid_sdk-2.1.791.dist-info/RECORD,,
|
File without changes
|