lusid-sdk 2.1.589__py3-none-any.whl → 2.1.591__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 CHANGED
@@ -1205,6 +1205,7 @@ from lusid.models.valuation_point_data_request import ValuationPointDataRequest
1205
1205
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
1206
1206
  from lusid.models.valuation_point_overview import ValuationPointOverview
1207
1207
  from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
1208
+ from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
1208
1209
  from lusid.models.valuation_request import ValuationRequest
1209
1210
  from lusid.models.valuation_schedule import ValuationSchedule
1210
1211
  from lusid.models.valuations_reconciliation_request import ValuationsReconciliationRequest
@@ -2431,6 +2432,7 @@ __all__ = [
2431
2432
  "ValuationPointDataResponse",
2432
2433
  "ValuationPointOverview",
2433
2434
  "ValuationPointResourceListOfJournalEntryLine",
2435
+ "ValuationPointResourceListOfTrialBalance",
2434
2436
  "ValuationRequest",
2435
2437
  "ValuationSchedule",
2436
2438
  "ValuationsReconciliationRequest",
lusid/api/abor_api.py CHANGED
@@ -1136,18 +1136,18 @@ class AborApi:
1136
1136
  _request_auth=_params.get('_request_auth'))
1137
1137
 
1138
1138
  @overload
1139
- async def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope is the unique identifier for the given Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, **kwargs) -> VersionedResourceListOfTrialBalance: # noqa: E501
1139
+ async def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, **kwargs) -> VersionedResourceListOfTrialBalance: # noqa: E501
1140
1140
  ...
1141
1141
 
1142
1142
  @overload
1143
- def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope is the unique identifier for the given Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfTrialBalance: # noqa: E501
1143
+ def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfTrialBalance: # noqa: E501
1144
1144
  ...
1145
1145
 
1146
1146
  @validate_arguments
1147
- def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope is the unique identifier for the given Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfTrialBalance, Awaitable[VersionedResourceListOfTrialBalance]]: # noqa: E501
1148
- """[EXPERIMENTAL] GetTrialBalance: Get the Trial balance for the given Abor. # noqa: E501
1147
+ def get_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfTrialBalance, Awaitable[VersionedResourceListOfTrialBalance]]: # noqa: E501
1148
+ """[EXPERIMENTAL] GetTrialBalance: Get the Trial Balance for the given Abor. # noqa: E501
1149
1149
 
1150
- Gets the Trial balance for the given Abor The Trial balance has been generated from transactions, translated via posting rules and aggregated based on a General Ledger Profile (where specified) # noqa: E501
1150
+ Gets the Trial Balance for the given Abor. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
1151
1151
  This method makes a synchronous HTTP request by default. To make an
1152
1152
  asynchronous HTTP request, please pass async_req=True
1153
1153
 
@@ -1156,17 +1156,17 @@ class AborApi:
1156
1156
 
1157
1157
  :param scope: The scope of the Abor. (required)
1158
1158
  :type scope: str
1159
- :param code: The code of the Abor. Together with the scope is the unique identifier for the given Abor. (required)
1159
+ :param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
1160
1160
  :type code: str
1161
1161
  :param trial_balance_query_parameters: The query parameters used in running the generation of the Trial Balance. (required)
1162
1162
  :type trial_balance_query_parameters: TrialBalanceQueryParameters
1163
- :param as_at: The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.
1163
+ :param as_at: The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.
1164
1164
  :type as_at: datetime
1165
- :param filter: \"Expression to filter the result set.\"
1165
+ :param filter: Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
1166
1166
  :type filter: str
1167
- :param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
1167
+ :param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
1168
1168
  :type limit: int
1169
- :param page: The pagination token to use to continue listing Trial balance from a previous call to Trial balance.
1169
+ :param page: The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
1170
1170
  :type page: str
1171
1171
  :param async_req: Whether to execute the request asynchronously.
1172
1172
  :type async_req: bool, optional
@@ -1187,10 +1187,10 @@ class AborApi:
1187
1187
  return self.get_trial_balance_with_http_info(scope, code, trial_balance_query_parameters, as_at, filter, limit, page, **kwargs) # noqa: E501
1188
1188
 
1189
1189
  @validate_arguments
1190
- def get_trial_balance_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope is the unique identifier for the given Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="\"Expression to filter the result set.\"")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial balance from a previous call to Trial balance.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1191
- """[EXPERIMENTAL] GetTrialBalance: Get the Trial balance for the given Abor. # noqa: E501
1190
+ def get_trial_balance_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Abor.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Abor. Together with the scope this uniquely identifies the Abor.")], trial_balance_query_parameters : Annotated[TrialBalanceQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[StrictInt], Field(description="When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1191
+ """[EXPERIMENTAL] GetTrialBalance: Get the Trial Balance for the given Abor. # noqa: E501
1192
1192
 
1193
- Gets the Trial balance for the given Abor The Trial balance has been generated from transactions, translated via posting rules and aggregated based on a General Ledger Profile (where specified) # noqa: E501
1193
+ Gets the Trial Balance for the given Abor. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
1194
1194
  This method makes a synchronous HTTP request by default. To make an
1195
1195
  asynchronous HTTP request, please pass async_req=True
1196
1196
 
@@ -1199,17 +1199,17 @@ class AborApi:
1199
1199
 
1200
1200
  :param scope: The scope of the Abor. (required)
1201
1201
  :type scope: str
1202
- :param code: The code of the Abor. Together with the scope is the unique identifier for the given Abor. (required)
1202
+ :param code: The code of the Abor. Together with the scope this uniquely identifies the Abor. (required)
1203
1203
  :type code: str
1204
1204
  :param trial_balance_query_parameters: The query parameters used in running the generation of the Trial Balance. (required)
1205
1205
  :type trial_balance_query_parameters: TrialBalanceQueryParameters
1206
- :param as_at: The asAt datetime at which to retrieve trial balance. Defaults to returning the latest version of each transaction if not specified.
1206
+ :param as_at: The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.
1207
1207
  :type as_at: datetime
1208
- :param filter: \"Expression to filter the result set.\"
1208
+ :param filter: Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
1209
1209
  :type filter: str
1210
- :param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
1210
+ :param limit: When paginating, limit the number of returned results to this many. Defaults to 100 if not specified.
1211
1211
  :type limit: int
1212
- :param page: The pagination token to use to continue listing Trial balance from a previous call to Trial balance.
1212
+ :param page: The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
1213
1213
  :type page: str
1214
1214
  :param async_req: Whether to execute the request asynchronously.
1215
1215
  :type async_req: bool, optional
lusid/api/funds_api.py CHANGED
@@ -46,6 +46,7 @@ from lusid.models.valuation_point_data_query_parameters import ValuationPointDat
46
46
  from lusid.models.valuation_point_data_request import ValuationPointDataRequest
47
47
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
48
48
  from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
49
+ from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
49
50
 
50
51
  from lusid.api_client import ApiClient
51
52
  from lusid.api_response import ApiResponse
@@ -2042,6 +2043,232 @@ class FundsApi:
2042
2043
  collection_formats=_collection_formats,
2043
2044
  _request_auth=_params.get('_request_auth'))
2044
2045
 
2046
+ @overload
2047
+ async def get_valuation_point_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.")] = None, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
2048
+ ...
2049
+
2050
+ @overload
2051
+ def get_valuation_point_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.")] = None, async_req: Optional[bool]=True, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
2052
+ ...
2053
+
2054
+ @validate_arguments
2055
+ def get_valuation_point_trial_balance(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ValuationPointResourceListOfTrialBalance, Awaitable[ValuationPointResourceListOfTrialBalance]]: # noqa: E501
2056
+ """[EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund. # noqa: E501
2057
+
2058
+ Gets the Trial Balance for the given Valuation Point for a Fund. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
2059
+ This method makes a synchronous HTTP request by default. To make an
2060
+ asynchronous HTTP request, please pass async_req=True
2061
+
2062
+ >>> thread = api.get_valuation_point_trial_balance(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, async_req=True)
2063
+ >>> result = thread.get()
2064
+
2065
+ :param scope: The scope of the Fund. (required)
2066
+ :type scope: str
2067
+ :param code: The code of the Fund. Together with the scope this uniquely identifies the Fund. (required)
2068
+ :type code: str
2069
+ :param valuation_point_data_query_parameters: The query parameters used in running the generation of the Trial Balance. (required)
2070
+ :type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
2071
+ :param general_ledger_profile_code: The optional code of a general ledger profile used to decorate journal entry lines with levels.
2072
+ :type general_ledger_profile_code: str
2073
+ :param as_at: The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.
2074
+ :type as_at: datetime
2075
+ :param filter: Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
2076
+ :type filter: str
2077
+ :param limit: When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.
2078
+ :type limit: int
2079
+ :param page: The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
2080
+ :type page: str
2081
+ :param property_keys: A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.
2082
+ :type property_keys: List[str]
2083
+ :param async_req: Whether to execute the request asynchronously.
2084
+ :type async_req: bool, optional
2085
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2086
+ :param opts: Configuration options for this request
2087
+ :type opts: ConfigurationOptions, optional
2088
+ :return: Returns the result object.
2089
+ If the method is called asynchronously,
2090
+ returns the request thread.
2091
+ :rtype: ValuationPointResourceListOfTrialBalance
2092
+ """
2093
+ kwargs['_return_http_data_only'] = True
2094
+ if '_preload_content' in kwargs:
2095
+ message = "Error! Please call the get_valuation_point_trial_balance_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
2096
+ raise ValueError(message)
2097
+ if async_req is not None:
2098
+ kwargs['async_req'] = async_req
2099
+ return self.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, **kwargs) # noqa: E501
2100
+
2101
+ @validate_arguments
2102
+ def get_valuation_point_trial_balance_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The query parameters used in running the generation of the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[constr(strict=True, max_length=64, min_length=1)], Field(description="The optional code of a general ledger profile used to decorate journal entry lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.")] = None, **kwargs) -> ApiResponse: # noqa: E501
2103
+ """[EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund. # noqa: E501
2104
+
2105
+ Gets the Trial Balance for the given Valuation Point for a Fund. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
2106
+ This method makes a synchronous HTTP request by default. To make an
2107
+ asynchronous HTTP request, please pass async_req=True
2108
+
2109
+ >>> thread = api.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, async_req=True)
2110
+ >>> result = thread.get()
2111
+
2112
+ :param scope: The scope of the Fund. (required)
2113
+ :type scope: str
2114
+ :param code: The code of the Fund. Together with the scope this uniquely identifies the Fund. (required)
2115
+ :type code: str
2116
+ :param valuation_point_data_query_parameters: The query parameters used in running the generation of the Trial Balance. (required)
2117
+ :type valuation_point_data_query_parameters: ValuationPointDataQueryParameters
2118
+ :param general_ledger_profile_code: The optional code of a general ledger profile used to decorate journal entry lines with levels.
2119
+ :type general_ledger_profile_code: str
2120
+ :param as_at: The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.
2121
+ :type as_at: datetime
2122
+ :param filter: Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.
2123
+ :type filter: str
2124
+ :param limit: When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.
2125
+ :type limit: int
2126
+ :param page: The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.
2127
+ :type page: str
2128
+ :param property_keys: A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the journal entry lines.
2129
+ :type property_keys: List[str]
2130
+ :param async_req: Whether to execute the request asynchronously.
2131
+ :type async_req: bool, optional
2132
+ :param _preload_content: if False, the ApiResponse.data will
2133
+ be set to none and raw_data will store the
2134
+ HTTP response body without reading/decoding.
2135
+ Default is True.
2136
+ :type _preload_content: bool, optional
2137
+ :param _return_http_data_only: response data instead of ApiResponse
2138
+ object with status code, headers, etc
2139
+ :type _return_http_data_only: bool, optional
2140
+ :param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
2141
+ :param opts: Configuration options for this request
2142
+ :type opts: ConfigurationOptions, optional
2143
+ :param _request_auth: set to override the auth_settings for an a single
2144
+ request; this effectively ignores the authentication
2145
+ in the spec for a single request.
2146
+ :type _request_auth: dict, optional
2147
+ :type _content_type: string, optional: force content-type for the request
2148
+ :return: Returns the result object.
2149
+ If the method is called asynchronously,
2150
+ returns the request thread.
2151
+ :rtype: tuple(ValuationPointResourceListOfTrialBalance, status_code(int), headers(HTTPHeaderDict))
2152
+ """
2153
+
2154
+ _params = locals()
2155
+
2156
+ _all_params = [
2157
+ 'scope',
2158
+ 'code',
2159
+ 'valuation_point_data_query_parameters',
2160
+ 'general_ledger_profile_code',
2161
+ 'as_at',
2162
+ 'filter',
2163
+ 'limit',
2164
+ 'page',
2165
+ 'property_keys'
2166
+ ]
2167
+ _all_params.extend(
2168
+ [
2169
+ 'async_req',
2170
+ '_return_http_data_only',
2171
+ '_preload_content',
2172
+ '_request_timeout',
2173
+ '_request_auth',
2174
+ '_content_type',
2175
+ '_headers',
2176
+ 'opts'
2177
+ ]
2178
+ )
2179
+
2180
+ # validate the arguments
2181
+ for _key, _val in _params['kwargs'].items():
2182
+ if _key not in _all_params:
2183
+ raise ApiTypeError(
2184
+ "Got an unexpected keyword argument '%s'"
2185
+ " to method get_valuation_point_trial_balance" % _key
2186
+ )
2187
+ _params[_key] = _val
2188
+ del _params['kwargs']
2189
+
2190
+ _collection_formats = {}
2191
+
2192
+ # process the path parameters
2193
+ _path_params = {}
2194
+ if _params['scope']:
2195
+ _path_params['scope'] = _params['scope']
2196
+
2197
+ if _params['code']:
2198
+ _path_params['code'] = _params['code']
2199
+
2200
+
2201
+ # process the query parameters
2202
+ _query_params = []
2203
+ if _params.get('general_ledger_profile_code') is not None: # noqa: E501
2204
+ _query_params.append(('generalLedgerProfileCode', _params['general_ledger_profile_code']))
2205
+
2206
+ if _params.get('as_at') is not None: # noqa: E501
2207
+ if isinstance(_params['as_at'], datetime):
2208
+ _query_params.append(('asAt', _params['as_at'].strftime(self.api_client.configuration.datetime_format)))
2209
+ else:
2210
+ _query_params.append(('asAt', _params['as_at']))
2211
+
2212
+ if _params.get('filter') is not None: # noqa: E501
2213
+ _query_params.append(('filter', _params['filter']))
2214
+
2215
+ if _params.get('limit') is not None: # noqa: E501
2216
+ _query_params.append(('limit', _params['limit']))
2217
+
2218
+ if _params.get('page') is not None: # noqa: E501
2219
+ _query_params.append(('page', _params['page']))
2220
+
2221
+ if _params.get('property_keys') is not None: # noqa: E501
2222
+ _query_params.append(('propertyKeys', _params['property_keys']))
2223
+ _collection_formats['propertyKeys'] = 'multi'
2224
+
2225
+ # process the header parameters
2226
+ _header_params = dict(_params.get('_headers', {}))
2227
+ # process the form parameters
2228
+ _form_params = []
2229
+ _files = {}
2230
+ # process the body parameter
2231
+ _body_params = None
2232
+ if _params['valuation_point_data_query_parameters'] is not None:
2233
+ _body_params = _params['valuation_point_data_query_parameters']
2234
+
2235
+ # set the HTTP header `Accept`
2236
+ _header_params['Accept'] = self.api_client.select_header_accept(
2237
+ ['text/plain', 'application/json', 'text/json']) # noqa: E501
2238
+
2239
+ # set the HTTP header `Content-Type`
2240
+ _content_types_list = _params.get('_content_type',
2241
+ self.api_client.select_header_content_type(
2242
+ ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']))
2243
+ if _content_types_list:
2244
+ _header_params['Content-Type'] = _content_types_list
2245
+
2246
+ # authentication setting
2247
+ _auth_settings = ['oauth2'] # noqa: E501
2248
+
2249
+ _response_types_map = {
2250
+ '200': "ValuationPointResourceListOfTrialBalance",
2251
+ '400': "LusidValidationProblemDetails",
2252
+ }
2253
+
2254
+ return self.api_client.call_api(
2255
+ '/api/funds/{scope}/{code}/valuationpoints/trialbalance/$query', 'POST',
2256
+ _path_params,
2257
+ _query_params,
2258
+ _header_params,
2259
+ body=_body_params,
2260
+ post_params=_form_params,
2261
+ files=_files,
2262
+ response_types_map=_response_types_map,
2263
+ auth_settings=_auth_settings,
2264
+ async_req=_params.get('async_req'),
2265
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
2266
+ _preload_content=_params.get('_preload_content', True),
2267
+ _request_timeout=_params.get('_request_timeout'),
2268
+ opts=_params.get('opts'),
2269
+ collection_formats=_collection_formats,
2270
+ _request_auth=_params.get('_request_auth'))
2271
+
2045
2272
  @overload
2046
2273
  async def list_fees(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the Fund.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the Fund.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to list the TimeVariant properties for the Fees. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to list the Fees. Defaults to returning the latest version of each Fee if not specified.")] = None, page : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing fees; this value is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number. Defaults to 100 if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the results. For example, to filter on the treatment, specify \"treatment eq 'Monthly'\". For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\"")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Fee' domain to decorate onto each Fee. These must take the format {domain}/{scope}/{code}, for example 'Fee/Account/Id'.")] = None, **kwargs) -> PagedResourceListOfFee: # noqa: E501
2047
2274
  ...
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.7072\n"\
448
+ "Version of the API: 0.11.7075\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
@@ -1124,6 +1124,7 @@ from lusid.models.valuation_point_data_request import ValuationPointDataRequest
1124
1124
  from lusid.models.valuation_point_data_response import ValuationPointDataResponse
1125
1125
  from lusid.models.valuation_point_overview import ValuationPointOverview
1126
1126
  from lusid.models.valuation_point_resource_list_of_journal_entry_line import ValuationPointResourceListOfJournalEntryLine
1127
+ from lusid.models.valuation_point_resource_list_of_trial_balance import ValuationPointResourceListOfTrialBalance
1127
1128
  from lusid.models.valuation_request import ValuationRequest
1128
1129
  from lusid.models.valuation_schedule import ValuationSchedule
1129
1130
  from lusid.models.valuations_reconciliation_request import ValuationsReconciliationRequest
@@ -2270,6 +2271,7 @@ __all__ = [
2270
2271
  "ValuationPointDataResponse",
2271
2272
  "ValuationPointOverview",
2272
2273
  "ValuationPointResourceListOfJournalEntryLine",
2274
+ "ValuationPointResourceListOfTrialBalance",
2273
2275
  "ValuationRequest",
2274
2276
  "ValuationSchedule",
2275
2277
  "ValuationsReconciliationRequest",
@@ -0,0 +1,125 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ LUSID API
5
+
6
+ FINBOURNE Technology # noqa: E501
7
+
8
+ Contact: info@finbourne.com
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, Dict, List, Optional
22
+ from pydantic.v1 import BaseModel, Field, StrictStr, conlist
23
+ from lusid.models.diary_entry import DiaryEntry
24
+ from lusid.models.link import Link
25
+ from lusid.models.trial_balance import TrialBalance
26
+ from lusid.models.version import Version
27
+
28
+ class ValuationPointResourceListOfTrialBalance(BaseModel):
29
+ """
30
+ ResourceList with extra header fields used by the various ValuationPoint endpoints for returning additional context related to the list of results. # noqa: E501
31
+ """
32
+ start_valuation_point: Optional[DiaryEntry] = Field(None, alias="startValuationPoint")
33
+ version: Version = Field(...)
34
+ values: conlist(TrialBalance) = Field(...)
35
+ href: Optional[StrictStr] = None
36
+ next_page: Optional[StrictStr] = Field(None, alias="nextPage")
37
+ previous_page: Optional[StrictStr] = Field(None, alias="previousPage")
38
+ links: Optional[conlist(Link)] = None
39
+ __properties = ["startValuationPoint", "version", "values", "href", "nextPage", "previousPage", "links"]
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) -> ValuationPointResourceListOfTrialBalance:
56
+ """Create an instance of ValuationPointResourceListOfTrialBalance 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 start_valuation_point
66
+ if self.start_valuation_point:
67
+ _dict['startValuationPoint'] = self.start_valuation_point.to_dict()
68
+ # override the default output from pydantic by calling `to_dict()` of version
69
+ if self.version:
70
+ _dict['version'] = self.version.to_dict()
71
+ # override the default output from pydantic by calling `to_dict()` of each item in values (list)
72
+ _items = []
73
+ if self.values:
74
+ for _item in self.values:
75
+ if _item:
76
+ _items.append(_item.to_dict())
77
+ _dict['values'] = _items
78
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
79
+ _items = []
80
+ if self.links:
81
+ for _item in self.links:
82
+ if _item:
83
+ _items.append(_item.to_dict())
84
+ _dict['links'] = _items
85
+ # set to None if href (nullable) is None
86
+ # and __fields_set__ contains the field
87
+ if self.href is None and "href" in self.__fields_set__:
88
+ _dict['href'] = None
89
+
90
+ # set to None if next_page (nullable) is None
91
+ # and __fields_set__ contains the field
92
+ if self.next_page is None and "next_page" in self.__fields_set__:
93
+ _dict['nextPage'] = None
94
+
95
+ # set to None if previous_page (nullable) is None
96
+ # and __fields_set__ contains the field
97
+ if self.previous_page is None and "previous_page" in self.__fields_set__:
98
+ _dict['previousPage'] = None
99
+
100
+ # set to None if links (nullable) is None
101
+ # and __fields_set__ contains the field
102
+ if self.links is None and "links" in self.__fields_set__:
103
+ _dict['links'] = None
104
+
105
+ return _dict
106
+
107
+ @classmethod
108
+ def from_dict(cls, obj: dict) -> ValuationPointResourceListOfTrialBalance:
109
+ """Create an instance of ValuationPointResourceListOfTrialBalance from a dict"""
110
+ if obj is None:
111
+ return None
112
+
113
+ if not isinstance(obj, dict):
114
+ return ValuationPointResourceListOfTrialBalance.parse_obj(obj)
115
+
116
+ _obj = ValuationPointResourceListOfTrialBalance.parse_obj({
117
+ "start_valuation_point": DiaryEntry.from_dict(obj.get("startValuationPoint")) if obj.get("startValuationPoint") is not None else None,
118
+ "version": Version.from_dict(obj.get("version")) if obj.get("version") is not None else None,
119
+ "values": [TrialBalance.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
120
+ "href": obj.get("href"),
121
+ "next_page": obj.get("nextPage"),
122
+ "previous_page": obj.get("previousPage"),
123
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
124
+ })
125
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.589
3
+ Version: 2.1.591
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -37,7 +37,7 @@ Class | Method | HTTP request | Description
37
37
  *AborApi* | [**delete_abor**](docs/AborApi.md#delete_abor) | **DELETE** /api/abor/{scope}/{code} | [EXPERIMENTAL] DeleteAbor: Delete an Abor.
38
38
  *AborApi* | [**get_abor**](docs/AborApi.md#get_abor) | **GET** /api/abor/{scope}/{code} | [EXPERIMENTAL] GetAbor: Get Abor.
39
39
  *AborApi* | [**get_journal_entry_lines**](docs/AborApi.md#get_journal_entry_lines) | **POST** /api/abor/{scope}/{code}/journalentrylines/$query | [EXPERIMENTAL] GetJournalEntryLines: Get the Journal Entry lines for the given Abor.
40
- *AborApi* | [**get_trial_balance**](docs/AborApi.md#get_trial_balance) | **POST** /api/abor/{scope}/{code}/trialbalance/$query | [EXPERIMENTAL] GetTrialBalance: Get the Trial balance for the given Abor.
40
+ *AborApi* | [**get_trial_balance**](docs/AborApi.md#get_trial_balance) | **POST** /api/abor/{scope}/{code}/trialbalance/$query | [EXPERIMENTAL] GetTrialBalance: Get the Trial Balance for the given Abor.
41
41
  *AborApi* | [**list_abors**](docs/AborApi.md#list_abors) | **GET** /api/abor | [EXPERIMENTAL] ListAbors: List Abors.
42
42
  *AborApi* | [**list_diary_entries**](docs/AborApi.md#list_diary_entries) | **GET** /api/abor/{scope}/{code}/accountingdiary | [EXPERIMENTAL] ListDiaryEntries: List diary entries.
43
43
  *AborApi* | [**lock_period**](docs/AborApi.md#lock_period) | **POST** /api/abor/{scope}/{code}/accountingdiary/$lockperiod | [EXPERIMENTAL] LockPeriod: Locks the last Closed or given Closed Period.
@@ -247,6 +247,7 @@ Class | Method | HTTP request | Description
247
247
  *FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
248
248
  *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.
249
249
  *FundsApi* | [**get_valuation_point_journal_entry_lines**](docs/FundsApi.md#get_valuation_point_journal_entry_lines) | **POST** /api/funds/{scope}/{code}/valuationpoints/journalentrylines/$query | [EXPERIMENTAL] GetValuationPointJournalEntryLines: Get the Journal Entry lines for the given Fund.
250
+ *FundsApi* | [**get_valuation_point_trial_balance**](docs/FundsApi.md#get_valuation_point_trial_balance) | **POST** /api/funds/{scope}/{code}/valuationpoints/trialbalance/$query | [EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund.
250
251
  *FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
251
252
  *FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
252
253
  *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.
@@ -1739,6 +1740,7 @@ Class | Method | HTTP request | Description
1739
1740
  - [ValuationPointDataResponse](docs/ValuationPointDataResponse.md)
1740
1741
  - [ValuationPointOverview](docs/ValuationPointOverview.md)
1741
1742
  - [ValuationPointResourceListOfJournalEntryLine](docs/ValuationPointResourceListOfJournalEntryLine.md)
1743
+ - [ValuationPointResourceListOfTrialBalance](docs/ValuationPointResourceListOfTrialBalance.md)
1742
1744
  - [ValuationRequest](docs/ValuationRequest.md)
1743
1745
  - [ValuationSchedule](docs/ValuationSchedule.md)
1744
1746
  - [ValuationsReconciliationRequest](docs/ValuationsReconciliationRequest.md)
@@ -1,6 +1,6 @@
1
- lusid/__init__.py,sha256=_PYv19atovzEHwvGWiYI4KKqUMD30nzfeT79tnWDIa0,128795
1
+ lusid/__init__.py,sha256=ev5x_wDopjDiME5QMzjOVCyw0poixQjcEmu5xsBu85M,128956
2
2
  lusid/api/__init__.py,sha256=6h2et93uMZgjdpV3C3_ITp_VbSBlwYu5BtqZ2puZPoI,5821
3
- lusid/api/abor_api.py,sha256=CC0f6Aqqiqkgmpguvoqe8teU0bRRuc771AdUSyI4rJw,158222
3
+ lusid/api/abor_api.py,sha256=eC0xjrZEL_e7JZdwjpmjVG4GMQWAGJEv4w-2UngvYUk,159896
4
4
  lusid/api/abor_configuration_api.py,sha256=TmssMn5ni0mZV1q7LyPXYhBqqUGJqLYZapo8By8DFuI,63875
5
5
  lusid/api/address_key_definition_api.py,sha256=jlvpmsmvVedaMNr1sRMNj2Kj4qArNtZxXKXD0DvRUwM,31574
6
6
  lusid/api/aggregation_api.py,sha256=Hbupc46i7zS4nLAhiWZMU7gQAowBlP__iSotN2zu_Xo,38361
@@ -26,7 +26,7 @@ lusid/api/entities_api.py,sha256=ZE6QsxisPowNg6m9a-J_HjvV9vJSgFTYoNri6jJfaqg,855
26
26
  lusid/api/executions_api.py,sha256=QW6_mT0rsZTiW1R5tG-_fa-UT6khiMYfHsnapbzlVmo,44263
27
27
  lusid/api/fee_types_api.py,sha256=vcDM_7QOAX0LjNz5Wr7lTV_LVYtrmhZ8-59-ZRjL2Sg,55933
28
28
  lusid/api/fund_configuration_api.py,sha256=sItl8nbm7PsJYVZYMLWKtGQG80y_y6LP7D_r6NjxbOc,74272
29
- lusid/api/funds_api.py,sha256=LKr27hzq_GdvUH1I9llDEoL2YtJbVOZUQjCUDiqe5nA,244089
29
+ lusid/api/funds_api.py,sha256=_8nJmHLcQQWY1KbyJN_RsxIpgg8NSMk0eE7x0c_sOwo,265134
30
30
  lusid/api/group_reconciliations_api.py,sha256=0zuSvNM9c61ZhzdxSCVen_y3-y9gPeykflxgNzv9-8U,167598
31
31
  lusid/api/instrument_event_types_api.py,sha256=G4gpfM6eWl77dtF3DC7b0lUOby_EREyLmXTxSyo9-ew,81296
32
32
  lusid/api/instrument_events_api.py,sha256=sdKGJQAcoqEPJPuYSkP3axM1o63nB8qcdyIEHZ8cRkk,58350
@@ -70,7 +70,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
70
70
  lusid/api/workspace_api.py,sha256=mYQPqFUVf1VKYeWQUV5VkcdSqwejSmPDGd66Az86-_E,191319
71
71
  lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
72
72
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
73
- lusid/configuration.py,sha256=54B-tcDcyvCqAnPRyRII_UXn0Pys5gXSQqXMlgsWTgw,17972
73
+ lusid/configuration.py,sha256=KBsdJfkFGIetbNdQkx6LyiEJcAef0WJ_d6MRVlx-y7Q,17972
74
74
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
75
75
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
76
76
  lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
@@ -85,7 +85,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
85
85
  lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
86
86
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
87
87
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
88
- lusid/models/__init__.py,sha256=REy2SNsZZhV8wJAQIi-5M5qVpABlnL3UtgxAbQpLByo,121942
88
+ lusid/models/__init__.py,sha256=c4_LgGd1wGl2lADbqOiyaCmADZCrhqGpRw72KndrUVw,122103
89
89
  lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
90
90
  lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
91
91
  lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
@@ -1196,6 +1196,7 @@ lusid/models/valuation_point_data_request.py,sha256=KNfLFJEFGgXlVj22bH97HhCknNEt
1196
1196
  lusid/models/valuation_point_data_response.py,sha256=wHtYY5VFIz3suA1pX0Kk9wnOO8a34E77BmU9PYhNMDU,8738
1197
1197
  lusid/models/valuation_point_overview.py,sha256=Z4GZTneHZBbQkdHj7JaEhILqhKkMbJDaJD6UwEFNWSs,5720
1198
1198
  lusid/models/valuation_point_resource_list_of_journal_entry_line.py,sha256=AV1Y2lAYrTv02dgDqKzF0KhqmvFKLq-MYuaPJcBZdpg,5242
1199
+ lusid/models/valuation_point_resource_list_of_trial_balance.py,sha256=nQdZMUa7lOhbIL-ICT83R3-B-alNXFqB0qsGWmryYgk,5197
1199
1200
  lusid/models/valuation_request.py,sha256=-kQqj8U23-9gEqFJsGFKYkZJEg2t_P3t4T33xks8j-I,10575
1200
1201
  lusid/models/valuation_schedule.py,sha256=Mriql3fNiga3RbmDk2fYQeyOcJWVHbUt_TSuyA0zBHY,6154
1201
1202
  lusid/models/valuations_reconciliation_request.py,sha256=X7NF_7du1RdtPW4i3ayn5OGC7GAfKsCdOT1QIB8DAfQ,5001
@@ -1231,6 +1232,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
1231
1232
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1232
1233
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1233
1234
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1234
- lusid_sdk-2.1.589.dist-info/METADATA,sha256=5dS-dX6PUsGdmeTrE-ib_6vRkIivg0AqmYs52yr1khk,209750
1235
- lusid_sdk-2.1.589.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1236
- lusid_sdk-2.1.589.dist-info/RECORD,,
1235
+ lusid_sdk-2.1.591.dist-info/METADATA,sha256=NUnSXEeCfMrlhkhJgskaBS5vkkjU_KU6tii79A_BYt4,210110
1236
+ lusid_sdk-2.1.591.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1237
+ lusid_sdk-2.1.591.dist-info/RECORD,,