lusid-sdk 2.1.960__py3-none-any.whl → 2.1.962__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 +2 -0
- lusid/api/data_types_api.py +128 -32
- lusid/api/funds_api.py +252 -236
- lusid/api/portfolio_groups_api.py +24 -8
- lusid/api/transaction_portfolios_api.py +184 -19
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/batch_upsert_transaction_settlement_instruction_response.py +137 -0
- lusid/models/settlement_configuration_category.py +7 -3
- lusid/models/settlement_instruction_query.py +9 -2
- {lusid_sdk-2.1.960.dist-info → lusid_sdk-2.1.962.dist-info}/METADATA +10 -8
- {lusid_sdk-2.1.960.dist-info → lusid_sdk-2.1.962.dist-info}/RECORD +13 -12
- {lusid_sdk-2.1.960.dist-info → lusid_sdk-2.1.962.dist-info}/WHEEL +0 -0
@@ -17,7 +17,7 @@ import pprint
|
|
17
17
|
import re # noqa: F401
|
18
18
|
import json
|
19
19
|
|
20
|
-
|
20
|
+
from datetime import datetime
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictInt, StrictStr, conlist, constr, validator
|
23
23
|
|
@@ -25,6 +25,7 @@ class SettlementInstructionQuery(BaseModel):
|
|
25
25
|
"""
|
26
26
|
SettlementInstructionQuery
|
27
27
|
"""
|
28
|
+
as_at: Optional[datetime] = Field(None, alias="asAt")
|
28
29
|
start_date: Optional[StrictStr] = Field(None,alias="startDate")
|
29
30
|
end_date: Optional[StrictStr] = Field(None,alias="endDate")
|
30
31
|
limit: Optional[StrictInt] = None
|
@@ -32,7 +33,7 @@ class SettlementInstructionQuery(BaseModel):
|
|
32
33
|
filter: Optional[StrictStr] = Field(None,alias="filter")
|
33
34
|
settlement_instruction_property_keys: Optional[conlist(StrictStr)] = Field(None, alias="settlementInstructionPropertyKeys")
|
34
35
|
transaction_property_keys: Optional[conlist(StrictStr)] = Field(None, alias="transactionPropertyKeys")
|
35
|
-
__properties = ["startDate", "endDate", "limit", "page", "filter", "settlementInstructionPropertyKeys", "transactionPropertyKeys"]
|
36
|
+
__properties = ["asAt", "startDate", "endDate", "limit", "page", "filter", "settlementInstructionPropertyKeys", "transactionPropertyKeys"]
|
36
37
|
|
37
38
|
class Config:
|
38
39
|
"""Pydantic configuration"""
|
@@ -66,6 +67,11 @@ class SettlementInstructionQuery(BaseModel):
|
|
66
67
|
exclude={
|
67
68
|
},
|
68
69
|
exclude_none=True)
|
70
|
+
# set to None if as_at (nullable) is None
|
71
|
+
# and __fields_set__ contains the field
|
72
|
+
if self.as_at is None and "as_at" in self.__fields_set__:
|
73
|
+
_dict['asAt'] = None
|
74
|
+
|
69
75
|
# set to None if start_date (nullable) is None
|
70
76
|
# and __fields_set__ contains the field
|
71
77
|
if self.start_date is None and "start_date" in self.__fields_set__:
|
@@ -113,6 +119,7 @@ class SettlementInstructionQuery(BaseModel):
|
|
113
119
|
return SettlementInstructionQuery.parse_obj(obj)
|
114
120
|
|
115
121
|
_obj = SettlementInstructionQuery.parse_obj({
|
122
|
+
"as_at": obj.get("asAt"),
|
116
123
|
"start_date": obj.get("startDate"),
|
117
124
|
"end_date": obj.get("endDate"),
|
118
125
|
"limit": obj.get("limit"),
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.962
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -270,15 +270,15 @@ Class | Method | HTTP request | Description
|
|
270
270
|
*FundsApi* | [**delete_fee**](docs/FundsApi.md#delete_fee) | **DELETE** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] DeleteFee: Delete a Fee.
|
271
271
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
272
272
|
*FundsApi* | [**delete_valuation_point**](docs/FundsApi.md#delete_valuation_point) | **DELETE** /api/funds/{scope}/{code}/valuationpoints/{diaryEntryCode} | [EXPERIMENTAL] DeleteValuationPoint: Delete a Valuation Point.
|
273
|
-
*FundsApi* | [**finalise_candidate_valuation_point**](docs/FundsApi.md#finalise_candidate_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuationPoint: Finalise Candidate.
|
273
|
+
*FundsApi* | [**finalise_candidate_valuation_point**](docs/FundsApi.md#finalise_candidate_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuationPoint: Finalise a Candidate Valuation Point.
|
274
274
|
*FundsApi* | [**get_fee**](docs/FundsApi.md#get_fee) | **GET** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] GetFee: Get a Fee for a specified Fund.
|
275
|
-
*FundsApi* | [**get_fee_properties**](docs/FundsApi.md#get_fee_properties) | **GET** /api/funds/{scope}/{code}/fees/{feeCode}/properties | [EXPERIMENTAL] GetFeeProperties: Get Fee properties
|
275
|
+
*FundsApi* | [**get_fee_properties**](docs/FundsApi.md#get_fee_properties) | **GET** /api/funds/{scope}/{code}/fees/{feeCode}/properties | [EXPERIMENTAL] GetFeeProperties: Get Fee properties.
|
276
276
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
277
|
-
*FundsApi* | [**get_fund_properties**](docs/FundsApi.md#get_fund_properties) | **GET** /api/funds/{scope}/{code}/properties | [EXPERIMENTAL] GetFundProperties: Get Fund properties
|
277
|
+
*FundsApi* | [**get_fund_properties**](docs/FundsApi.md#get_fund_properties) | **GET** /api/funds/{scope}/{code}/properties | [EXPERIMENTAL] GetFundProperties: Get Fund properties.
|
278
278
|
*FundsApi* | [**get_holdings_for_fund**](docs/FundsApi.md#get_holdings_for_fund) | **POST** /api/funds/{scope}/{code}/$holdings | [EXPERIMENTAL] GetHoldingsForFund: Get holdings for transaction portfolios in a Fund.
|
279
|
-
*FundsApi* | [**get_valuation_for_fund**](docs/FundsApi.md#get_valuation_for_fund) | **POST** /api/funds/{scope}/{code}/$valuation | [EXPERIMENTAL] GetValuationForFund: Perform valuation for a Fund
|
279
|
+
*FundsApi* | [**get_valuation_for_fund**](docs/FundsApi.md#get_valuation_for_fund) | **POST** /api/funds/{scope}/{code}/$valuation | [EXPERIMENTAL] GetValuationForFund: Perform valuation for a Fund.
|
280
280
|
*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.
|
281
|
-
*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
|
281
|
+
*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.
|
282
282
|
*FundsApi* | [**get_valuation_point_pnl_summary**](docs/FundsApi.md#get_valuation_point_pnl_summary) | **POST** /api/funds/{scope}/{code}/valuationpoints/pnlsummary/$query | [EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund.
|
283
283
|
*FundsApi* | [**get_valuation_point_transactions**](docs/FundsApi.md#get_valuation_point_transactions) | **POST** /api/funds/{scope}/{code}/valuationpoints/transactions/$query | [EXPERIMENTAL] GetValuationPointTransactions: Get the Transactions for the given Fund.
|
284
284
|
*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.
|
@@ -288,9 +288,9 @@ Class | Method | HTTP request | Description
|
|
288
288
|
*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.
|
289
289
|
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
|
290
290
|
*FundsApi* | [**patch_fund**](docs/FundsApi.md#patch_fund) | **PATCH** /api/funds/{scope}/{code} | [EXPERIMENTAL] PatchFund: Patch a Fund.
|
291
|
-
*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
|
291
|
+
*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.
|
292
292
|
*FundsApi* | [**upsert_bookmark**](docs/FundsApi.md#upsert_bookmark) | **POST** /api/funds/{scope}/{code}/bookmarks | [EXPERIMENTAL] UpsertBookmark: Upsert a bookmark.
|
293
|
-
*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.
|
293
|
+
*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 a Valuation Point.
|
294
294
|
*FundsApi* | [**upsert_fee_properties**](docs/FundsApi.md#upsert_fee_properties) | **POST** /api/funds/{scope}/{code}/fees/{feeCode}/properties/$upsert | [EXPERIMENTAL] UpsertFeeProperties: Upsert Fee properties.
|
295
295
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
|
296
296
|
*GroupReconciliationsApi* | [**batch_update_comparison_results**](docs/GroupReconciliationsApi.md#batch_update_comparison_results) | **POST** /api/reconciliations/groupreconciliationdefinitions/{scope}/{code}/comparisonresults/$batchReview | [EXPERIMENTAL] BatchUpdateComparisonResults: Add User Review entries for a range of comparison results related to a specific GroupReconciliationDefinition.
|
@@ -633,6 +633,7 @@ Class | Method | HTTP request | Description
|
|
633
633
|
*TransactionPortfoliosApi* | [**batch_adjust_holdings**](docs/TransactionPortfoliosApi.md#batch_adjust_holdings) | **POST** /api/transactionportfolios/{scope}/{code}/holdings/$batchAdjust | BatchAdjustHoldings: Batch adjust holdings
|
634
634
|
*TransactionPortfoliosApi* | [**batch_create_trade_tickets**](docs/TransactionPortfoliosApi.md#batch_create_trade_tickets) | **POST** /api/transactionportfolios/{scope}/{code}/$batchtradetickets | BatchCreateTradeTickets: Batch Create Trade Tickets
|
635
635
|
*TransactionPortfoliosApi* | [**batch_set_holdings**](docs/TransactionPortfoliosApi.md#batch_set_holdings) | **POST** /api/transactionportfolios/{scope}/{code}/holdings/$batchSet | BatchSetHoldings: Batch set holdings
|
636
|
+
*TransactionPortfoliosApi* | [**batch_upsert_settlement_instructions**](docs/TransactionPortfoliosApi.md#batch_upsert_settlement_instructions) | **POST** /api/transactionportfolios/{scope}/{code}/settlementinstructions/$batchUpsert | [EARLY ACCESS] BatchUpsertSettlementInstructions: Batch Upsert Settlement Instructions.
|
636
637
|
*TransactionPortfoliosApi* | [**batch_upsert_transactions**](docs/TransactionPortfoliosApi.md#batch_upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$batchUpsert | BatchUpsertTransactions: Batch upsert transactions
|
637
638
|
*TransactionPortfoliosApi* | [**build_settlement_instructions**](docs/TransactionPortfoliosApi.md#build_settlement_instructions) | **POST** /api/transactionportfolios/{scope}/{code}/settlementinstructions/$build | [EARLY ACCESS] BuildSettlementInstructions: Build Settlement Instructions
|
638
639
|
*TransactionPortfoliosApi* | [**build_transactions**](docs/TransactionPortfoliosApi.md#build_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/$build | BuildTransactions: Build transactions
|
@@ -780,6 +781,7 @@ Class | Method | HTTP request | Description
|
|
780
781
|
- [BatchUpsertPortfolioAccessMetadataResponseItem](docs/BatchUpsertPortfolioAccessMetadataResponseItem.md)
|
781
782
|
- [BatchUpsertPortfolioTransactionsResponse](docs/BatchUpsertPortfolioTransactionsResponse.md)
|
782
783
|
- [BatchUpsertPropertyDefinitionPropertiesResponse](docs/BatchUpsertPropertyDefinitionPropertiesResponse.md)
|
784
|
+
- [BatchUpsertTransactionSettlementInstructionResponse](docs/BatchUpsertTransactionSettlementInstructionResponse.md)
|
783
785
|
- [Block](docs/Block.md)
|
784
786
|
- [BlockAndOrderIdRequest](docs/BlockAndOrderIdRequest.md)
|
785
787
|
- [BlockAndOrders](docs/BlockAndOrders.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=wKp2SVKOuS8wnKEQCWa9qAzrjWqj0CwlFcJJlFKHfZI,147164
|
2
2
|
lusid/api/__init__.py,sha256=yCGwgeQBZ1RZovOUo7Jq24Txz4o6naRgnWAzQVGdHAk,6784
|
3
3
|
lusid/api/abor_api.py,sha256=EdyHrd5yRcz7MOffhFa1cgtcBaPuPJmbArHWIXv7tuQ,174322
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=xQ9HcXm02eDFhCdWUHjqFRWl1oQMxm2LNObJ9kcLauU,84216
|
@@ -23,13 +23,13 @@ lusid/api/custom_entities_api.py,sha256=Cr4KXS9-q_sFfYxoQrTnZhDheA7OW73kcZTEEv4f
|
|
23
23
|
lusid/api/custom_entity_definitions_api.py,sha256=Hcuv2Au9oMpg1E5aMyveiq3dxcwldvZrvRzVdI-T_mo,40202
|
24
24
|
lusid/api/custom_entity_types_api.py,sha256=Ldk2f5BDjzmnFUDR-Rw71tCpNoEnNeHZ5bptJUrV1EQ,40856
|
25
25
|
lusid/api/cut_label_definitions_api.py,sha256=aBnmIqapySIsW4JiWtbGrFVLC1mMZBZqSSCeccO3moQ,46261
|
26
|
-
lusid/api/data_types_api.py,sha256=
|
26
|
+
lusid/api/data_types_api.py,sha256=Jv-BAGc-Ue0tgFwVRLXsaOxFvSpsGmkaFF23Sn47IMA,111402
|
27
27
|
lusid/api/derived_transaction_portfolios_api.py,sha256=0Krc4vfLm73UqzKQ4nae7Zcto2e_q-CAAk949uVg4pE,19738
|
28
28
|
lusid/api/entities_api.py,sha256=uImduqQPNkudngZn85Zwk35oAG-JEFvGEpADfJeMf_E,83685
|
29
29
|
lusid/api/executions_api.py,sha256=ZL8xmOxGpjIJtdU7lCdwcapILElWx7FGBDr8cjskCZs,44076
|
30
30
|
lusid/api/fee_types_api.py,sha256=qRVfNS91XHBlD_CrewsPMsetIHB6M0mn3RWbD4LTuro,54620
|
31
31
|
lusid/api/fund_configuration_api.py,sha256=18oHsK1ncAobjd8_uDHAI7UbWz4Vm5bPVubFmBdoERo,72665
|
32
|
-
lusid/api/funds_api.py,sha256=
|
32
|
+
lusid/api/funds_api.py,sha256=hJdhXBYo-VXO8HSc8Ib1_axTmAfCTsHw-QECaBKGSN0,402265
|
33
33
|
lusid/api/group_reconciliations_api.py,sha256=aoGqJa8X-uS9rVr7xOJOdbeu8jYLqYM2DoHVH7UGTj0,162917
|
34
34
|
lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL9Dq4YH60MI,64305
|
35
35
|
lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
|
@@ -47,7 +47,7 @@ lusid/api/packages_api.py,sha256=Vis2ktcicNqTF8Bw66vWhmFUyu0jOfiR5FT6iLKGXSM,436
|
|
47
47
|
lusid/api/participations_api.py,sha256=UivNIoEmZ2eIxYwHvMnW94Tfy6loXDu5PO5loY0yDJk,44964
|
48
48
|
lusid/api/persons_api.py,sha256=SlNOfUj8ww6vBD-zQoisNNe45scWn1QNkDOZu8ostb4,250280
|
49
49
|
lusid/api/placements_api.py,sha256=LsjljDP59rUcpkkGG_hJX-HX06fFIeNnoVomsFpL-QY,45498
|
50
|
-
lusid/api/portfolio_groups_api.py,sha256=
|
50
|
+
lusid/api/portfolio_groups_api.py,sha256=dnbfzVTb7Ytn2PjHW4KcQD7w9PK2Swjz1zpgPPdPXXA,371285
|
51
51
|
lusid/api/portfolios_api.py,sha256=noShU8FEhBz1FEIWc9WQMuPnk9mlhSmZuZcoKax8SCY,417537
|
52
52
|
lusid/api/property_definitions_api.py,sha256=C_WNPwPBJ6BJAnQkVbgW0bvIFhSQc3tfpcv2BIDAn6k,136845
|
53
53
|
lusid/api/queryable_keys_api.py,sha256=oZWb9BugLDEKmYay_DhuYu4B7pwEramzz5dBHiqgGsc,10297
|
@@ -74,13 +74,13 @@ lusid/api/tax_rule_sets_api.py,sha256=ia8zjTdwlgLGC8KDWFBT21agOrfWgn1zC_ik75mNDJ
|
|
74
74
|
lusid/api/timelines_api.py,sha256=uxSMdLi9dI6y8LSaezsLXEVedy9I7A-k22RAKY0Rw4k,109878
|
75
75
|
lusid/api/transaction_configuration_api.py,sha256=VKzr-F1WWtMXK1MuyiiE7reWJZrBUQs655cIgX8CGC0,122096
|
76
76
|
lusid/api/transaction_fees_api.py,sha256=r8Gl44-WYZebyJ_Uw2stLsf3-hPi1bK6Ij64Kx0L6A8,62698
|
77
|
-
lusid/api/transaction_portfolios_api.py,sha256=
|
77
|
+
lusid/api/transaction_portfolios_api.py,sha256=HqTP3fDLJ8MOAShOyWdvW9tKJ1r507ENu0EsGKAhyso,694297
|
78
78
|
lusid/api/transfer_agency_api.py,sha256=m-o3srFi7ZcUcWlO_lpOJiYZJvDSt2JLy7QPcXQoPh4,9545
|
79
79
|
lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,20227
|
80
80
|
lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
|
81
81
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
82
82
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
83
|
-
lusid/configuration.py,sha256=
|
83
|
+
lusid/configuration.py,sha256=JI-RBDiQMTPnysffBBxiAC-oUaDLzVtTfs44lHzp7Ps,17980
|
84
84
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
85
85
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
86
86
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -95,7 +95,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
95
95
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
96
96
|
lusid/extensions/socket_keep_alive.py,sha256=eX5ICvGfVzUCGIm80Q2RknfFZrBQAdnrcpY61M29V_k,1997
|
97
97
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
98
|
-
lusid/models/__init__.py,sha256=
|
98
|
+
lusid/models/__init__.py,sha256=dXRFd1filWJ_P0iwAUJopfnwfit4z92ZpIBN5uQinFQ,139348
|
99
99
|
lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
|
100
100
|
lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
|
101
101
|
lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
|
@@ -183,6 +183,7 @@ lusid/models/batch_upsert_portfolio_access_metadata_response.py,sha256=DtCMT2jDx
|
|
183
183
|
lusid/models/batch_upsert_portfolio_access_metadata_response_item.py,sha256=tuH9DGT8nUrmfPqOTwbVbMVuwdIlAoD31-yhVqZUrWQ,3550
|
184
184
|
lusid/models/batch_upsert_portfolio_transactions_response.py,sha256=0IVDUtW7cwLo_DWrjiweBD_WRvUp2smI-unU0XJsnDI,6035
|
185
185
|
lusid/models/batch_upsert_property_definition_properties_response.py,sha256=xITK95pcgyoFz3m4U96pRUQpG88I_XOFrSjchjKU7Wo,4656
|
186
|
+
lusid/models/batch_upsert_transaction_settlement_instruction_response.py,sha256=Yg-pEbeODPmodD2loGvS-3MKnHiDPI5bWP7_fr3D7Tg,5455
|
186
187
|
lusid/models/block.py,sha256=b0VMrkJpD_uqrzLJU8jcMw516FB7jnV-HAmJxxI8-pA,8148
|
187
188
|
lusid/models/block_and_order_id_request.py,sha256=vkvCIdiZKrery_X3-qnyB3Y0EY5zB_COFuh3HsGJNqA,2864
|
188
189
|
lusid/models/block_and_orders.py,sha256=dC3tTwGLZ95CXYp_vVB3xvo6JTCnJuH32h3Ua6NVels,2805
|
@@ -1134,9 +1135,9 @@ lusid/models/set_person_properties_request.py,sha256=Pndq3BtayCATb-fmzUeFwSQtXaY
|
|
1134
1135
|
lusid/models/set_share_class_instruments_request.py,sha256=wIxDkYoiimlHGioINv-bA63_rEs2W7pgNzGi8lbkoQs,3302
|
1135
1136
|
lusid/models/set_transaction_configuration_alias.py,sha256=HXqUSsfc9BpUxDqQsWuCulekcHFFKlAZPT_sVxK5Mqc,2791
|
1136
1137
|
lusid/models/set_transaction_configuration_source_request.py,sha256=onioX-Oi4zG91Cs0weO0oqRpdiD-BQgHLzYRlEmmr0I,4458
|
1137
|
-
lusid/models/settlement_configuration_category.py,sha256=
|
1138
|
+
lusid/models/settlement_configuration_category.py,sha256=s0El9li3Eu9144-UPcMbSgWWVlfVBb82323mjDq4_r8,3850
|
1138
1139
|
lusid/models/settlement_cycle.py,sha256=0L4GedRTJ9kTTmIzwGo9EeMhQwbuPG8TfgMHpCVBAtk,2746
|
1139
|
-
lusid/models/settlement_instruction_query.py,sha256=
|
1140
|
+
lusid/models/settlement_instruction_query.py,sha256=GytEixNGDlOnrQQTSNEABN-9gFhKbaN_175zDxiaqcA,5094
|
1140
1141
|
lusid/models/settlement_instruction_request.py,sha256=wvNv1H6co_Bo2-lDexy5YHVjncwdQADZY9eZDhUQiMQ,6324
|
1141
1142
|
lusid/models/settlement_instruction_with_transaction.py,sha256=EW6nji9o1Qbgrhu01ixKn9-MypVgmm9tGqMuAmpT87U,3348
|
1142
1143
|
lusid/models/settlement_schedule.py,sha256=QXjKoZyNHBjL0wM69Nw8O0iLBYyD8_S2aSyxYaStiiU,3910
|
@@ -1391,6 +1392,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1391
1392
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1392
1393
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1393
1394
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1394
|
-
lusid_sdk-2.1.
|
1395
|
-
lusid_sdk-2.1.
|
1396
|
-
lusid_sdk-2.1.
|
1395
|
+
lusid_sdk-2.1.962.dist-info/METADATA,sha256=k1ZdI6ZEl6GL2qLmIClNCGcWPXeKRnC7Lp8yex4Qjx8,234072
|
1396
|
+
lusid_sdk-2.1.962.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1397
|
+
lusid_sdk-2.1.962.dist-info/RECORD,,
|
File without changes
|