lusid-sdk 2.1.322__py3-none-any.whl → 2.1.351__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 +30 -0
- lusid/api/__init__.py +3 -1
- lusid/api/data_types_api.py +160 -0
- lusid/api/entities_api.py +172 -0
- lusid/api/funds_api.py +212 -0
- lusid/api/order_management_api.py +160 -0
- lusid/api/workspace_api.py +3433 -0
- lusid/configuration.py +16 -7
- lusid/models/__init__.py +28 -0
- lusid/models/close_period_diary_entry_request.py +1 -1
- lusid/models/data_type.py +8 -8
- lusid/models/data_type_entity.py +131 -0
- lusid/models/diary_entry.py +1 -1
- lusid/models/diary_entry_request.py +1 -1
- lusid/models/fund_configuration.py +6 -6
- lusid/models/fund_configuration_request.py +6 -6
- lusid/models/instrument_resolution_detail.py +19 -5
- lusid/models/journal_entry_line.py +5 -3
- lusid/models/order_update_request.py +116 -0
- lusid/models/paged_resource_list_of_valuation_point_overview.py +113 -0
- lusid/models/paged_resource_list_of_workspace.py +113 -0
- lusid/models/paged_resource_list_of_workspace_item.py +113 -0
- lusid/models/quote_access_metadata_rule_id.py +2 -2
- lusid/models/quote_series_id.py +2 -2
- lusid/models/scrip_dividend_event.py +17 -3
- lusid/models/share_class_breakdown.py +5 -13
- lusid/models/share_class_dealing_breakdown.py +96 -0
- lusid/models/share_class_details.py +5 -3
- lusid/models/stock_split_event.py +18 -4
- lusid/models/update_orders_response.py +153 -0
- lusid/models/valuation_point_data_response.py +1 -1
- lusid/models/valuation_point_overview.py +125 -0
- lusid/models/workspace.py +92 -0
- lusid/models/workspace_creation_request.py +78 -0
- lusid/models/workspace_item.py +105 -0
- lusid/models/workspace_item_creation_request.py +91 -0
- lusid/models/workspace_item_update_request.py +82 -0
- lusid/models/workspace_update_request.py +69 -0
- {lusid_sdk-2.1.322.dist-info → lusid_sdk-2.1.351.dist-info}/METADATA +39 -1
- {lusid_sdk-2.1.322.dist-info → lusid_sdk-2.1.351.dist-info}/RECORD +41 -26
- {lusid_sdk-2.1.322.dist-info → lusid_sdk-2.1.351.dist-info}/WHEEL +0 -0
@@ -0,0 +1,105 @@
|
|
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 BaseModel, Field, StrictInt, conlist, constr, validator
|
23
|
+
from lusid.models.link import Link
|
24
|
+
from lusid.models.version import Version
|
25
|
+
|
26
|
+
class WorkspaceItem(BaseModel):
|
27
|
+
"""
|
28
|
+
An item stored in a workspace. # noqa: E501
|
29
|
+
"""
|
30
|
+
type: constr(strict=True, min_length=1) = Field(..., description="The type of the workspace item.")
|
31
|
+
format: StrictInt = Field(..., description="A simple integer format identifier.")
|
32
|
+
name: constr(strict=True, min_length=1) = Field(..., description="A workspace item's name; a unique identifier.")
|
33
|
+
description: constr(strict=True, max_length=1024, min_length=0) = Field(..., description="The description of a workspace item.")
|
34
|
+
content: constr(strict=True, max_length=6000, min_length=0) = Field(..., description="The content associated with a workspace item.")
|
35
|
+
version: Optional[Version] = None
|
36
|
+
links: Optional[conlist(Link)] = None
|
37
|
+
__properties = ["type", "format", "name", "description", "content", "version", "links"]
|
38
|
+
|
39
|
+
@validator('description')
|
40
|
+
def description_validate_regular_expression(cls, value):
|
41
|
+
"""Validates the regular expression"""
|
42
|
+
if not re.match(r"^[\s\S]*$", value):
|
43
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
44
|
+
return value
|
45
|
+
|
46
|
+
class Config:
|
47
|
+
"""Pydantic configuration"""
|
48
|
+
allow_population_by_field_name = True
|
49
|
+
validate_assignment = True
|
50
|
+
|
51
|
+
def to_str(self) -> str:
|
52
|
+
"""Returns the string representation of the model using alias"""
|
53
|
+
return pprint.pformat(self.dict(by_alias=True))
|
54
|
+
|
55
|
+
def to_json(self) -> str:
|
56
|
+
"""Returns the JSON representation of the model using alias"""
|
57
|
+
return json.dumps(self.to_dict())
|
58
|
+
|
59
|
+
@classmethod
|
60
|
+
def from_json(cls, json_str: str) -> WorkspaceItem:
|
61
|
+
"""Create an instance of WorkspaceItem from a JSON string"""
|
62
|
+
return cls.from_dict(json.loads(json_str))
|
63
|
+
|
64
|
+
def to_dict(self):
|
65
|
+
"""Returns the dictionary representation of the model using alias"""
|
66
|
+
_dict = self.dict(by_alias=True,
|
67
|
+
exclude={
|
68
|
+
},
|
69
|
+
exclude_none=True)
|
70
|
+
# override the default output from pydantic by calling `to_dict()` of version
|
71
|
+
if self.version:
|
72
|
+
_dict['version'] = self.version.to_dict()
|
73
|
+
# override the default output from pydantic by calling `to_dict()` of each item in links (list)
|
74
|
+
_items = []
|
75
|
+
if self.links:
|
76
|
+
for _item in self.links:
|
77
|
+
if _item:
|
78
|
+
_items.append(_item.to_dict())
|
79
|
+
_dict['links'] = _items
|
80
|
+
# set to None if links (nullable) is None
|
81
|
+
# and __fields_set__ contains the field
|
82
|
+
if self.links is None and "links" in self.__fields_set__:
|
83
|
+
_dict['links'] = None
|
84
|
+
|
85
|
+
return _dict
|
86
|
+
|
87
|
+
@classmethod
|
88
|
+
def from_dict(cls, obj: dict) -> WorkspaceItem:
|
89
|
+
"""Create an instance of WorkspaceItem from a dict"""
|
90
|
+
if obj is None:
|
91
|
+
return None
|
92
|
+
|
93
|
+
if not isinstance(obj, dict):
|
94
|
+
return WorkspaceItem.parse_obj(obj)
|
95
|
+
|
96
|
+
_obj = WorkspaceItem.parse_obj({
|
97
|
+
"type": obj.get("type"),
|
98
|
+
"format": obj.get("format"),
|
99
|
+
"name": obj.get("name"),
|
100
|
+
"description": obj.get("description"),
|
101
|
+
"content": obj.get("content"),
|
102
|
+
"version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
|
103
|
+
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
104
|
+
})
|
105
|
+
return _obj
|
@@ -0,0 +1,91 @@
|
|
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 BaseModel, Field, StrictInt, constr, validator
|
23
|
+
|
24
|
+
class WorkspaceItemCreationRequest(BaseModel):
|
25
|
+
"""
|
26
|
+
A request to create an item in a workspace. # noqa: E501
|
27
|
+
"""
|
28
|
+
format: StrictInt = Field(..., description="A simple integer format identifier.")
|
29
|
+
name: constr(strict=True, max_length=64, min_length=1) = Field(..., description="A workspace item's name; a unique identifier.")
|
30
|
+
description: constr(strict=True, max_length=1024, min_length=0) = Field(..., description="The description of a workspace item.")
|
31
|
+
content: constr(strict=True, max_length=6000, min_length=0) = Field(..., description="The content associated with a workspace item.")
|
32
|
+
type: constr(strict=True, max_length=6000, min_length=0) = Field(..., description="The type of the workspace item.")
|
33
|
+
__properties = ["format", "name", "description", "content", "type"]
|
34
|
+
|
35
|
+
@validator('name')
|
36
|
+
def name_validate_regular_expression(cls, value):
|
37
|
+
"""Validates the regular expression"""
|
38
|
+
if not re.match(r"^[a-zA-Z0-9\-_]+$", value):
|
39
|
+
raise ValueError(r"must validate the regular expression /^[a-zA-Z0-9\-_]+$/")
|
40
|
+
return value
|
41
|
+
|
42
|
+
@validator('description')
|
43
|
+
def description_validate_regular_expression(cls, value):
|
44
|
+
"""Validates the regular expression"""
|
45
|
+
if not re.match(r"^[\s\S]*$", value):
|
46
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
47
|
+
return value
|
48
|
+
|
49
|
+
class Config:
|
50
|
+
"""Pydantic configuration"""
|
51
|
+
allow_population_by_field_name = True
|
52
|
+
validate_assignment = True
|
53
|
+
|
54
|
+
def to_str(self) -> str:
|
55
|
+
"""Returns the string representation of the model using alias"""
|
56
|
+
return pprint.pformat(self.dict(by_alias=True))
|
57
|
+
|
58
|
+
def to_json(self) -> str:
|
59
|
+
"""Returns the JSON representation of the model using alias"""
|
60
|
+
return json.dumps(self.to_dict())
|
61
|
+
|
62
|
+
@classmethod
|
63
|
+
def from_json(cls, json_str: str) -> WorkspaceItemCreationRequest:
|
64
|
+
"""Create an instance of WorkspaceItemCreationRequest from a JSON string"""
|
65
|
+
return cls.from_dict(json.loads(json_str))
|
66
|
+
|
67
|
+
def to_dict(self):
|
68
|
+
"""Returns the dictionary representation of the model using alias"""
|
69
|
+
_dict = self.dict(by_alias=True,
|
70
|
+
exclude={
|
71
|
+
},
|
72
|
+
exclude_none=True)
|
73
|
+
return _dict
|
74
|
+
|
75
|
+
@classmethod
|
76
|
+
def from_dict(cls, obj: dict) -> WorkspaceItemCreationRequest:
|
77
|
+
"""Create an instance of WorkspaceItemCreationRequest from a dict"""
|
78
|
+
if obj is None:
|
79
|
+
return None
|
80
|
+
|
81
|
+
if not isinstance(obj, dict):
|
82
|
+
return WorkspaceItemCreationRequest.parse_obj(obj)
|
83
|
+
|
84
|
+
_obj = WorkspaceItemCreationRequest.parse_obj({
|
85
|
+
"format": obj.get("format"),
|
86
|
+
"name": obj.get("name"),
|
87
|
+
"description": obj.get("description"),
|
88
|
+
"content": obj.get("content"),
|
89
|
+
"type": obj.get("type")
|
90
|
+
})
|
91
|
+
return _obj
|
@@ -0,0 +1,82 @@
|
|
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 BaseModel, Field, StrictInt, constr, validator
|
23
|
+
|
24
|
+
class WorkspaceItemUpdateRequest(BaseModel):
|
25
|
+
"""
|
26
|
+
A request to update a workspace item. # noqa: E501
|
27
|
+
"""
|
28
|
+
format: StrictInt = Field(..., description="A simple integer format identifier.")
|
29
|
+
description: constr(strict=True, max_length=1024, min_length=0) = Field(..., description="The description of a workspace item.")
|
30
|
+
content: constr(strict=True, max_length=6000, min_length=0) = Field(..., description="The content associated with a workspace item.")
|
31
|
+
type: constr(strict=True, max_length=6000, min_length=0) = Field(..., description="The type of the workspace item.")
|
32
|
+
__properties = ["format", "description", "content", "type"]
|
33
|
+
|
34
|
+
@validator('description')
|
35
|
+
def description_validate_regular_expression(cls, value):
|
36
|
+
"""Validates the regular expression"""
|
37
|
+
if not re.match(r"^[\s\S]*$", value):
|
38
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
39
|
+
return value
|
40
|
+
|
41
|
+
class Config:
|
42
|
+
"""Pydantic configuration"""
|
43
|
+
allow_population_by_field_name = True
|
44
|
+
validate_assignment = True
|
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) -> WorkspaceItemUpdateRequest:
|
56
|
+
"""Create an instance of WorkspaceItemUpdateRequest 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
|
+
return _dict
|
66
|
+
|
67
|
+
@classmethod
|
68
|
+
def from_dict(cls, obj: dict) -> WorkspaceItemUpdateRequest:
|
69
|
+
"""Create an instance of WorkspaceItemUpdateRequest from a dict"""
|
70
|
+
if obj is None:
|
71
|
+
return None
|
72
|
+
|
73
|
+
if not isinstance(obj, dict):
|
74
|
+
return WorkspaceItemUpdateRequest.parse_obj(obj)
|
75
|
+
|
76
|
+
_obj = WorkspaceItemUpdateRequest.parse_obj({
|
77
|
+
"format": obj.get("format"),
|
78
|
+
"description": obj.get("description"),
|
79
|
+
"content": obj.get("content"),
|
80
|
+
"type": obj.get("type")
|
81
|
+
})
|
82
|
+
return _obj
|
@@ -0,0 +1,69 @@
|
|
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 BaseModel, Field, constr
|
23
|
+
|
24
|
+
class WorkspaceUpdateRequest(BaseModel):
|
25
|
+
"""
|
26
|
+
A request to update a workspace. # noqa: E501
|
27
|
+
"""
|
28
|
+
description: constr(strict=True, max_length=256, min_length=1) = Field(..., description="A friendly description for the workspace.")
|
29
|
+
__properties = ["description"]
|
30
|
+
|
31
|
+
class Config:
|
32
|
+
"""Pydantic configuration"""
|
33
|
+
allow_population_by_field_name = True
|
34
|
+
validate_assignment = True
|
35
|
+
|
36
|
+
def to_str(self) -> str:
|
37
|
+
"""Returns the string representation of the model using alias"""
|
38
|
+
return pprint.pformat(self.dict(by_alias=True))
|
39
|
+
|
40
|
+
def to_json(self) -> str:
|
41
|
+
"""Returns the JSON representation of the model using alias"""
|
42
|
+
return json.dumps(self.to_dict())
|
43
|
+
|
44
|
+
@classmethod
|
45
|
+
def from_json(cls, json_str: str) -> WorkspaceUpdateRequest:
|
46
|
+
"""Create an instance of WorkspaceUpdateRequest from a JSON string"""
|
47
|
+
return cls.from_dict(json.loads(json_str))
|
48
|
+
|
49
|
+
def to_dict(self):
|
50
|
+
"""Returns the dictionary representation of the model using alias"""
|
51
|
+
_dict = self.dict(by_alias=True,
|
52
|
+
exclude={
|
53
|
+
},
|
54
|
+
exclude_none=True)
|
55
|
+
return _dict
|
56
|
+
|
57
|
+
@classmethod
|
58
|
+
def from_dict(cls, obj: dict) -> WorkspaceUpdateRequest:
|
59
|
+
"""Create an instance of WorkspaceUpdateRequest from a dict"""
|
60
|
+
if obj is None:
|
61
|
+
return None
|
62
|
+
|
63
|
+
if not isinstance(obj, dict):
|
64
|
+
return WorkspaceUpdateRequest.parse_obj(obj)
|
65
|
+
|
66
|
+
_obj = WorkspaceUpdateRequest.parse_obj({
|
67
|
+
"description": obj.get("description")
|
68
|
+
})
|
69
|
+
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.351
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -200,6 +200,7 @@ Class | Method | HTTP request | Description
|
|
200
200
|
*CutLabelDefinitionsApi* | [**list_cut_label_definitions**](docs/CutLabelDefinitionsApi.md#list_cut_label_definitions) | **GET** /api/systemconfiguration/cutlabels | ListCutLabelDefinitions: List Existing Cut Labels
|
201
201
|
*CutLabelDefinitionsApi* | [**update_cut_label_definition**](docs/CutLabelDefinitionsApi.md#update_cut_label_definition) | **PUT** /api/systemconfiguration/cutlabels/{code} | UpdateCutLabelDefinition: Update a Cut Label
|
202
202
|
*DataTypesApi* | [**create_data_type**](docs/DataTypesApi.md#create_data_type) | **POST** /api/datatypes | [EARLY ACCESS] CreateDataType: Create data type definition
|
203
|
+
*DataTypesApi* | [**delete_data_type**](docs/DataTypesApi.md#delete_data_type) | **DELETE** /api/datatypes/{scope}/{code} | DeleteDataType: Delete a data type definition.
|
203
204
|
*DataTypesApi* | [**get_data_type**](docs/DataTypesApi.md#get_data_type) | **GET** /api/datatypes/{scope}/{code} | GetDataType: Get data type definition
|
204
205
|
*DataTypesApi* | [**get_units_from_data_type**](docs/DataTypesApi.md#get_units_from_data_type) | **GET** /api/datatypes/{scope}/{code}/units | [EARLY ACCESS] GetUnitsFromDataType: Get units from data type
|
205
206
|
*DataTypesApi* | [**list_data_type_summaries**](docs/DataTypesApi.md#list_data_type_summaries) | **GET** /api/datatypes | [EARLY ACCESS] ListDataTypeSummaries: List all data type summaries, without the reference data
|
@@ -208,6 +209,7 @@ Class | Method | HTTP request | Description
|
|
208
209
|
*DataTypesApi* | [**update_reference_values**](docs/DataTypesApi.md#update_reference_values) | **PUT** /api/datatypes/{scope}/{code}/referencedatavalues | [EARLY ACCESS] UpdateReferenceValues: Update reference data on a data type
|
209
210
|
*DerivedTransactionPortfoliosApi* | [**create_derived_portfolio**](docs/DerivedTransactionPortfoliosApi.md#create_derived_portfolio) | **POST** /api/derivedtransactionportfolios/{scope} | CreateDerivedPortfolio: Create derived portfolio
|
210
211
|
*DerivedTransactionPortfoliosApi* | [**delete_derived_portfolio_details**](docs/DerivedTransactionPortfoliosApi.md#delete_derived_portfolio_details) | **DELETE** /api/derivedtransactionportfolios/{scope}/{code}/details | [EARLY ACCESS] DeleteDerivedPortfolioDetails: Delete derived portfolio details
|
212
|
+
*EntitiesApi* | [**get_data_type_by_entity_unique_id**](docs/EntitiesApi.md#get_data_type_by_entity_unique_id) | **GET** /api/entities/datatypes/{entityUniqueId} | [EXPERIMENTAL] GetDataTypeByEntityUniqueId: Get DataType by EntityUniqueId
|
211
213
|
*EntitiesApi* | [**get_instrument_by_entity_unique_id**](docs/EntitiesApi.md#get_instrument_by_entity_unique_id) | **GET** /api/entities/instruments/{entityUniqueId} | [EXPERIMENTAL] GetInstrumentByEntityUniqueId: Get instrument by EntityUniqueId
|
212
214
|
*EntitiesApi* | [**get_portfolio_by_entity_unique_id**](docs/EntitiesApi.md#get_portfolio_by_entity_unique_id) | **GET** /api/entities/portfolios/{entityUniqueId} | [EXPERIMENTAL] GetPortfolioByEntityUniqueId: Get portfolio by EntityUniqueId
|
213
215
|
*EntitiesApi* | [**get_portfolio_changes**](docs/EntitiesApi.md#get_portfolio_changes) | **GET** /api/entities/changes/portfolios | GetPortfolioChanges: Get the next change to each portfolio in a scope.
|
@@ -239,6 +241,7 @@ Class | Method | HTTP request | Description
|
|
239
241
|
*FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints/$query | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
|
240
242
|
*FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
|
241
243
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
244
|
+
*FundsApi* | [**list_valuation_point_overview**](docs/FundsApi.md#list_valuation_point_overview) | **GET** /api/funds/{scope}/{code}/valuationPointOverview | [EXPERIMENTAL] ListValuationPointOverview: List Valuation Points Overview for a given Fund.
|
242
245
|
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
|
243
246
|
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
|
244
247
|
*FundsApi* | [**upsert_diary_entry_type_valuation_point**](docs/FundsApi.md#upsert_diary_entry_type_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] UpsertDiaryEntryTypeValuationPoint: Upsert Valuation Point.
|
@@ -316,6 +319,7 @@ Class | Method | HTTP request | Description
|
|
316
319
|
*OrderManagementApi* | [**move_orders**](docs/OrderManagementApi.md#move_orders) | **POST** /api/ordermanagement/moveorders | [EARLY ACCESS] MoveOrders: Move orders to new or existing block
|
317
320
|
*OrderManagementApi* | [**place_blocks**](docs/OrderManagementApi.md#place_blocks) | **POST** /api/ordermanagement/placeblocks | [EARLY ACCESS] PlaceBlocks: Places blocks for a given list of placement requests.
|
318
321
|
*OrderManagementApi* | [**run_allocation_service**](docs/OrderManagementApi.md#run_allocation_service) | **POST** /api/ordermanagement/allocate | [EXPERIMENTAL] RunAllocationService: Runs the Allocation Service
|
322
|
+
*OrderManagementApi* | [**update_orders**](docs/OrderManagementApi.md#update_orders) | **POST** /api/ordermanagement/updateorders | [EARLY ACCESS] UpdateOrders: Update existing orders
|
319
323
|
*OrderManagementApi* | [**update_placements**](docs/OrderManagementApi.md#update_placements) | **POST** /api/ordermanagement/$updateplacements | [EARLY ACCESS] UpdatePlacements: Update existing placements
|
320
324
|
*OrdersApi* | [**delete_order**](docs/OrdersApi.md#delete_order) | **DELETE** /api/orders/{scope}/{code} | [EARLY ACCESS] DeleteOrder: Delete order
|
321
325
|
*OrdersApi* | [**get_order**](docs/OrdersApi.md#get_order) | **GET** /api/orders/{scope}/{code} | [EARLY ACCESS] GetOrder: Get Order
|
@@ -569,6 +573,26 @@ Class | Method | HTTP request | Description
|
|
569
573
|
*TransactionPortfoliosApi* | [**upsert_transactions**](docs/TransactionPortfoliosApi.md#upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions | UpsertTransactions: Upsert transactions
|
570
574
|
*TranslationApi* | [**translate_instrument_definitions**](docs/TranslationApi.md#translate_instrument_definitions) | **POST** /api/translation/instrumentdefinitions | [EXPERIMENTAL] TranslateInstrumentDefinitions: Translate instruments
|
571
575
|
*TranslationApi* | [**translate_trade_tickets**](docs/TranslationApi.md#translate_trade_tickets) | **POST** /api/translation/tradetickets | [EXPERIMENTAL] TranslateTradeTickets: Translate trade ticket
|
576
|
+
*WorkspaceApi* | [**create_personal_item**](docs/WorkspaceApi.md#create_personal_item) | **POST** /api/workspaces/personal/{workspaceName}/items | [EARLY ACCESS] CreatePersonalItem: Create a new item in a personal workspace.
|
577
|
+
*WorkspaceApi* | [**create_personal_workspace**](docs/WorkspaceApi.md#create_personal_workspace) | **POST** /api/workspaces/personal | [EARLY ACCESS] CreatePersonalWorkspace: Create a new personal workspace.
|
578
|
+
*WorkspaceApi* | [**create_shared_item**](docs/WorkspaceApi.md#create_shared_item) | **POST** /api/workspaces/shared/{workspaceName}/items | [EARLY ACCESS] CreateSharedItem: Create a new item in a shared workspace.
|
579
|
+
*WorkspaceApi* | [**create_shared_workspace**](docs/WorkspaceApi.md#create_shared_workspace) | **POST** /api/workspaces/shared | [EARLY ACCESS] CreateSharedWorkspace: Create a new shared workspace.
|
580
|
+
*WorkspaceApi* | [**delete_personal_item**](docs/WorkspaceApi.md#delete_personal_item) | **DELETE** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EARLY ACCESS] DeletePersonalItem: Delete an item from a personal workspace.
|
581
|
+
*WorkspaceApi* | [**delete_personal_workspace**](docs/WorkspaceApi.md#delete_personal_workspace) | **DELETE** /api/workspaces/personal/{workspaceName} | [EARLY ACCESS] DeletePersonalWorkspace: Delete a personal workspace.
|
582
|
+
*WorkspaceApi* | [**delete_shared_item**](docs/WorkspaceApi.md#delete_shared_item) | **DELETE** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EARLY ACCESS] DeleteSharedItem: Delete an item from a shared workspace.
|
583
|
+
*WorkspaceApi* | [**delete_shared_workspace**](docs/WorkspaceApi.md#delete_shared_workspace) | **DELETE** /api/workspaces/shared/{workspaceName} | [EARLY ACCESS] DeleteSharedWorkspace: Delete a shared workspace.
|
584
|
+
*WorkspaceApi* | [**get_personal_item**](docs/WorkspaceApi.md#get_personal_item) | **GET** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EARLY ACCESS] GetPersonalItem: Get a single personal workspace item.
|
585
|
+
*WorkspaceApi* | [**get_personal_workspace**](docs/WorkspaceApi.md#get_personal_workspace) | **GET** /api/workspaces/personal/{workspaceName} | [EARLY ACCESS] GetPersonalWorkspace: Get a personal workspace.
|
586
|
+
*WorkspaceApi* | [**get_shared_item**](docs/WorkspaceApi.md#get_shared_item) | **GET** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EARLY ACCESS] GetSharedItem: Get a single shared workspace item.
|
587
|
+
*WorkspaceApi* | [**get_shared_workspace**](docs/WorkspaceApi.md#get_shared_workspace) | **GET** /api/workspaces/shared/{workspaceName} | [EARLY ACCESS] GetSharedWorkspace: Get a shared workspace.
|
588
|
+
*WorkspaceApi* | [**list_personal_items**](docs/WorkspaceApi.md#list_personal_items) | **GET** /api/workspaces/personal/{workspaceName}/items | [EARLY ACCESS] ListPersonalItems: List the items in a personal workspace.
|
589
|
+
*WorkspaceApi* | [**list_personal_workspaces**](docs/WorkspaceApi.md#list_personal_workspaces) | **GET** /api/workspaces/personal | [EARLY ACCESS] ListPersonalWorkspaces: List personal workspaces.
|
590
|
+
*WorkspaceApi* | [**list_shared_items**](docs/WorkspaceApi.md#list_shared_items) | **GET** /api/workspaces/shared/{workspaceName}/items | [EARLY ACCESS] ListSharedItems: List the items in a shared workspace.
|
591
|
+
*WorkspaceApi* | [**list_shared_workspaces**](docs/WorkspaceApi.md#list_shared_workspaces) | **GET** /api/workspaces/shared | [EARLY ACCESS] ListSharedWorkspaces: List shared workspaces.
|
592
|
+
*WorkspaceApi* | [**update_personal_item**](docs/WorkspaceApi.md#update_personal_item) | **PUT** /api/workspaces/personal/{workspaceName}/items/{itemName} | [EARLY ACCESS] UpdatePersonalItem: Update an item in a personal workspace.
|
593
|
+
*WorkspaceApi* | [**update_personal_workspace**](docs/WorkspaceApi.md#update_personal_workspace) | **PUT** /api/workspaces/personal/{workspaceName} | [EARLY ACCESS] UpdatePersonalWorkspace: Update a personal workspace.
|
594
|
+
*WorkspaceApi* | [**update_shared_item**](docs/WorkspaceApi.md#update_shared_item) | **PUT** /api/workspaces/shared/{workspaceName}/items/{itemName} | [EARLY ACCESS] UpdateSharedItem: Update an item in a shared workspace.
|
595
|
+
*WorkspaceApi* | [**update_shared_workspace**](docs/WorkspaceApi.md#update_shared_workspace) | **PUT** /api/workspaces/shared/{workspaceName} | [EARLY ACCESS] UpdateSharedWorkspace: Update a shared workspace.
|
572
596
|
|
573
597
|
|
574
598
|
<a id="documentation-for-models"></a>
|
@@ -814,6 +838,7 @@ Class | Method | HTTP request | Description
|
|
814
838
|
- [DataMapping](docs/DataMapping.md)
|
815
839
|
- [DataScope](docs/DataScope.md)
|
816
840
|
- [DataType](docs/DataType.md)
|
841
|
+
- [DataTypeEntity](docs/DataTypeEntity.md)
|
817
842
|
- [DataTypeSummary](docs/DataTypeSummary.md)
|
818
843
|
- [DataTypeValueRange](docs/DataTypeValueRange.md)
|
819
844
|
- [DateAttributes](docs/DateAttributes.md)
|
@@ -1111,6 +1136,7 @@ Class | Method | HTTP request | Description
|
|
1111
1136
|
- [OrderInstructionSetRequest](docs/OrderInstructionSetRequest.md)
|
1112
1137
|
- [OrderRequest](docs/OrderRequest.md)
|
1113
1138
|
- [OrderSetRequest](docs/OrderSetRequest.md)
|
1139
|
+
- [OrderUpdateRequest](docs/OrderUpdateRequest.md)
|
1114
1140
|
- [OtcConfirmation](docs/OtcConfirmation.md)
|
1115
1141
|
- [OutputTransaction](docs/OutputTransaction.md)
|
1116
1142
|
- [OutputTransition](docs/OutputTransition.md)
|
@@ -1175,7 +1201,10 @@ Class | Method | HTTP request | Description
|
|
1175
1201
|
- [PagedResourceListOfTransactionTemplate](docs/PagedResourceListOfTransactionTemplate.md)
|
1176
1202
|
- [PagedResourceListOfTransactionTemplateSpecification](docs/PagedResourceListOfTransactionTemplateSpecification.md)
|
1177
1203
|
- [PagedResourceListOfTranslationScriptId](docs/PagedResourceListOfTranslationScriptId.md)
|
1204
|
+
- [PagedResourceListOfValuationPointOverview](docs/PagedResourceListOfValuationPointOverview.md)
|
1178
1205
|
- [PagedResourceListOfVirtualRow](docs/PagedResourceListOfVirtualRow.md)
|
1206
|
+
- [PagedResourceListOfWorkspace](docs/PagedResourceListOfWorkspace.md)
|
1207
|
+
- [PagedResourceListOfWorkspaceItem](docs/PagedResourceListOfWorkspaceItem.md)
|
1179
1208
|
- [Participation](docs/Participation.md)
|
1180
1209
|
- [ParticipationRequest](docs/ParticipationRequest.md)
|
1181
1210
|
- [ParticipationSetRequest](docs/ParticipationSetRequest.md)
|
@@ -1411,6 +1440,7 @@ Class | Method | HTTP request | Description
|
|
1411
1440
|
- [ShareClassAmount](docs/ShareClassAmount.md)
|
1412
1441
|
- [ShareClassBreakdown](docs/ShareClassBreakdown.md)
|
1413
1442
|
- [ShareClassData](docs/ShareClassData.md)
|
1443
|
+
- [ShareClassDealingBreakdown](docs/ShareClassDealingBreakdown.md)
|
1414
1444
|
- [ShareClassDetails](docs/ShareClassDetails.md)
|
1415
1445
|
- [ShareClassPnlBreakdown](docs/ShareClassPnlBreakdown.md)
|
1416
1446
|
- [SideConfigurationData](docs/SideConfigurationData.md)
|
@@ -1519,6 +1549,7 @@ Class | Method | HTTP request | Description
|
|
1519
1549
|
- [UpdateDerivedPropertyDefinitionRequest](docs/UpdateDerivedPropertyDefinitionRequest.md)
|
1520
1550
|
- [UpdateFeeTypeRequest](docs/UpdateFeeTypeRequest.md)
|
1521
1551
|
- [UpdateInstrumentIdentifierRequest](docs/UpdateInstrumentIdentifierRequest.md)
|
1552
|
+
- [UpdateOrdersResponse](docs/UpdateOrdersResponse.md)
|
1522
1553
|
- [UpdatePlacementsResponse](docs/UpdatePlacementsResponse.md)
|
1523
1554
|
- [UpdatePortfolioGroupRequest](docs/UpdatePortfolioGroupRequest.md)
|
1524
1555
|
- [UpdatePortfolioRequest](docs/UpdatePortfolioRequest.md)
|
@@ -1575,6 +1606,7 @@ Class | Method | HTTP request | Description
|
|
1575
1606
|
- [ValuationPointDataQueryParameters](docs/ValuationPointDataQueryParameters.md)
|
1576
1607
|
- [ValuationPointDataRequest](docs/ValuationPointDataRequest.md)
|
1577
1608
|
- [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
|
1609
|
+
- [ValuationPointOverview](docs/ValuationPointOverview.md)
|
1578
1610
|
- [ValuationRequest](docs/ValuationRequest.md)
|
1579
1611
|
- [ValuationSchedule](docs/ValuationSchedule.md)
|
1580
1612
|
- [ValuationsReconciliationRequest](docs/ValuationsReconciliationRequest.md)
|
@@ -1601,6 +1633,12 @@ Class | Method | HTTP request | Description
|
|
1601
1633
|
- [WeightedInstrument](docs/WeightedInstrument.md)
|
1602
1634
|
- [WeightedInstrumentInLineLookupIdentifiers](docs/WeightedInstrumentInLineLookupIdentifiers.md)
|
1603
1635
|
- [WeightedInstruments](docs/WeightedInstruments.md)
|
1636
|
+
- [Workspace](docs/Workspace.md)
|
1637
|
+
- [WorkspaceCreationRequest](docs/WorkspaceCreationRequest.md)
|
1638
|
+
- [WorkspaceItem](docs/WorkspaceItem.md)
|
1639
|
+
- [WorkspaceItemCreationRequest](docs/WorkspaceItemCreationRequest.md)
|
1640
|
+
- [WorkspaceItemUpdateRequest](docs/WorkspaceItemUpdateRequest.md)
|
1641
|
+
- [WorkspaceUpdateRequest](docs/WorkspaceUpdateRequest.md)
|
1604
1642
|
- [YieldCurveData](docs/YieldCurveData.md)
|
1605
1643
|
|
1606
1644
|
|