lusid-sdk 2.1.569__py3-none-any.whl → 2.1.580__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
@@ -1102,6 +1102,7 @@ from lusid.models.transaction_template_specification import TransactionTemplateS
1102
1102
  from lusid.models.transaction_type import TransactionType
1103
1103
  from lusid.models.transaction_type_alias import TransactionTypeAlias
1104
1104
  from lusid.models.transaction_type_calculation import TransactionTypeCalculation
1105
+ from lusid.models.transaction_type_details import TransactionTypeDetails
1105
1106
  from lusid.models.transaction_type_movement import TransactionTypeMovement
1106
1107
  from lusid.models.transaction_type_property_mapping import TransactionTypePropertyMapping
1107
1108
  from lusid.models.transaction_type_request import TransactionTypeRequest
@@ -2323,6 +2324,7 @@ __all__ = [
2323
2324
  "TransactionType",
2324
2325
  "TransactionTypeAlias",
2325
2326
  "TransactionTypeCalculation",
2327
+ "TransactionTypeDetails",
2326
2328
  "TransactionTypeMovement",
2327
2329
  "TransactionTypePropertyMapping",
2328
2330
  "TransactionTypeRequest",
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.7025\n"\
448
+ "Version of the API: 0.11.7042\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
@@ -1021,6 +1021,7 @@ from lusid.models.transaction_template_specification import TransactionTemplateS
1021
1021
  from lusid.models.transaction_type import TransactionType
1022
1022
  from lusid.models.transaction_type_alias import TransactionTypeAlias
1023
1023
  from lusid.models.transaction_type_calculation import TransactionTypeCalculation
1024
+ from lusid.models.transaction_type_details import TransactionTypeDetails
1024
1025
  from lusid.models.transaction_type_movement import TransactionTypeMovement
1025
1026
  from lusid.models.transaction_type_property_mapping import TransactionTypePropertyMapping
1026
1027
  from lusid.models.transaction_type_request import TransactionTypeRequest
@@ -2162,6 +2163,7 @@ __all__ = [
2162
2163
  "TransactionType",
2163
2164
  "TransactionTypeAlias",
2164
2165
  "TransactionTypeCalculation",
2166
+ "TransactionTypeDetails",
2165
2167
  "TransactionTypeMovement",
2166
2168
  "TransactionTypePropertyMapping",
2167
2169
  "TransactionTypeRequest",
@@ -26,15 +26,15 @@ class AggregateSpec(BaseModel):
26
26
  AggregateSpec
27
27
  """
28
28
  key: StrictStr = Field(..., description="The key that uniquely identifies a queryable address in Lusid.")
29
- op: StrictStr = Field(..., description="The available values are: Sum, Proportion, Average, Count, Min, Max, Value, SumOfPositiveValues, SumOfNegativeValues, SumOfAbsoluteValues, ProportionOfAbsoluteValues, SumCumulativeInAdvance, SumCumulativeInArrears")
29
+ op: StrictStr = Field(..., description="The available values are: Sum, DefaultSum, Proportion, Average, Count, Min, Max, Value, SumOfPositiveValues, SumOfNegativeValues, SumOfAbsoluteValues, ProportionOfAbsoluteValues, SumCumulativeInAdvance, SumCumulativeInArrears")
30
30
  options: Optional[Dict[str, Dict[str, Any]]] = Field(None, description="Additional options to apply when performing computations. Options that do not apply to the Key will be ignored. Option values can be boolean, numeric, string or date-time.")
31
31
  __properties = ["key", "op", "options"]
32
32
 
33
33
  @validator('op')
34
34
  def op_validate_enum(cls, value):
35
35
  """Validates the enum"""
36
- if value not in ('Sum', 'Proportion', 'Average', 'Count', 'Min', 'Max', 'Value', 'SumOfPositiveValues', 'SumOfNegativeValues', 'SumOfAbsoluteValues', 'ProportionOfAbsoluteValues', 'SumCumulativeInAdvance', 'SumCumulativeInArrears'):
37
- raise ValueError("must be one of enum values ('Sum', 'Proportion', 'Average', 'Count', 'Min', 'Max', 'Value', 'SumOfPositiveValues', 'SumOfNegativeValues', 'SumOfAbsoluteValues', 'ProportionOfAbsoluteValues', 'SumCumulativeInAdvance', 'SumCumulativeInArrears')")
36
+ if value not in ('Sum', 'DefaultSum', 'Proportion', 'Average', 'Count', 'Min', 'Max', 'Value', 'SumOfPositiveValues', 'SumOfNegativeValues', 'SumOfAbsoluteValues', 'ProportionOfAbsoluteValues', 'SumCumulativeInAdvance', 'SumCumulativeInArrears'):
37
+ raise ValueError("must be one of enum values ('Sum', 'DefaultSum', 'Proportion', 'Average', 'Count', 'Min', 'Max', 'Value', 'SumOfPositiveValues', 'SumOfNegativeValues', 'SumOfAbsoluteValues', 'ProportionOfAbsoluteValues', 'SumCumulativeInAdvance', 'SumCumulativeInArrears')")
38
38
  return value
39
39
 
40
40
  class Config:
@@ -30,6 +30,7 @@ class AggregationOp(str, Enum):
30
30
  allowed enum values
31
31
  """
32
32
  SUM = 'Sum'
33
+ DEFAULTSUM = 'DefaultSum'
33
34
  PROPORTION = 'Proportion'
34
35
  AVERAGE = 'Average'
35
36
  COUNT = 'Count'
@@ -18,14 +18,16 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from datetime import datetime
21
- from typing import Any, Dict, Optional, Union
22
- from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, constr, validator
21
+ from typing import Any, Dict, List, Optional, Union
22
+ from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr, validator
23
23
  from lusid.models.currency_and_amount import CurrencyAndAmount
24
24
  from lusid.models.custodian_account import CustodianAccount
25
25
  from lusid.models.otc_confirmation import OtcConfirmation
26
26
  from lusid.models.perpetual_property import PerpetualProperty
27
27
  from lusid.models.resource_id import ResourceId
28
+ from lusid.models.strategy import Strategy
28
29
  from lusid.models.transaction_price import TransactionPrice
30
+ from lusid.models.transaction_type_details import TransactionTypeDetails
29
31
 
30
32
  class Transaction(BaseModel):
31
33
  """
@@ -54,7 +56,9 @@ class Transaction(BaseModel):
54
56
  allocation_id: Optional[ResourceId] = Field(None, alias="allocationId")
55
57
  custodian_account: Optional[CustodianAccount] = Field(None, alias="custodianAccount")
56
58
  transaction_group_id: Optional[StrictStr] = Field(None, alias="transactionGroupId", description="The identifier for grouping economic events across multiple transactions")
57
- __properties = ["transactionId", "type", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionPrice", "totalConsideration", "exchangeRate", "transactionCurrency", "properties", "counterpartyId", "source", "entryDateTime", "otcConfirmation", "transactionStatus", "cancelDateTime", "orderId", "allocationId", "custodianAccount", "transactionGroupId"]
59
+ strategy_tag: Optional[conlist(Strategy)] = Field(None, alias="strategyTag", description="A list of strategies representing the allocation of units across multiple sub-holding keys")
60
+ resolved_transaction_type_details: Optional[TransactionTypeDetails] = Field(None, alias="resolvedTransactionTypeDetails")
61
+ __properties = ["transactionId", "type", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionPrice", "totalConsideration", "exchangeRate", "transactionCurrency", "properties", "counterpartyId", "source", "entryDateTime", "otcConfirmation", "transactionStatus", "cancelDateTime", "orderId", "allocationId", "custodianAccount", "transactionGroupId", "strategyTag", "resolvedTransactionTypeDetails"]
58
62
 
59
63
  @validator('transaction_status')
60
64
  def transaction_status_validate_enum(cls, value):
@@ -115,6 +119,16 @@ class Transaction(BaseModel):
115
119
  # override the default output from pydantic by calling `to_dict()` of custodian_account
116
120
  if self.custodian_account:
117
121
  _dict['custodianAccount'] = self.custodian_account.to_dict()
122
+ # override the default output from pydantic by calling `to_dict()` of each item in strategy_tag (list)
123
+ _items = []
124
+ if self.strategy_tag:
125
+ for _item in self.strategy_tag:
126
+ if _item:
127
+ _items.append(_item.to_dict())
128
+ _dict['strategyTag'] = _items
129
+ # override the default output from pydantic by calling `to_dict()` of resolved_transaction_type_details
130
+ if self.resolved_transaction_type_details:
131
+ _dict['resolvedTransactionTypeDetails'] = self.resolved_transaction_type_details.to_dict()
118
132
  # set to None if instrument_identifiers (nullable) is None
119
133
  # and __fields_set__ contains the field
120
134
  if self.instrument_identifiers is None and "instrument_identifiers" in self.__fields_set__:
@@ -160,6 +174,11 @@ class Transaction(BaseModel):
160
174
  if self.transaction_group_id is None and "transaction_group_id" in self.__fields_set__:
161
175
  _dict['transactionGroupId'] = None
162
176
 
177
+ # set to None if strategy_tag (nullable) is None
178
+ # and __fields_set__ contains the field
179
+ if self.strategy_tag is None and "strategy_tag" in self.__fields_set__:
180
+ _dict['strategyTag'] = None
181
+
163
182
  return _dict
164
183
 
165
184
  @classmethod
@@ -199,6 +218,8 @@ class Transaction(BaseModel):
199
218
  "order_id": ResourceId.from_dict(obj.get("orderId")) if obj.get("orderId") is not None else None,
200
219
  "allocation_id": ResourceId.from_dict(obj.get("allocationId")) if obj.get("allocationId") is not None else None,
201
220
  "custodian_account": CustodianAccount.from_dict(obj.get("custodianAccount")) if obj.get("custodianAccount") is not None else None,
202
- "transaction_group_id": obj.get("transactionGroupId")
221
+ "transaction_group_id": obj.get("transactionGroupId"),
222
+ "strategy_tag": [Strategy.from_dict(_item) for _item in obj.get("strategyTag")] if obj.get("strategyTag") is not None else None,
223
+ "resolved_transaction_type_details": TransactionTypeDetails.from_dict(obj.get("resolvedTransactionTypeDetails")) if obj.get("resolvedTransactionTypeDetails") is not None else None
203
224
  })
204
225
  return _obj
@@ -49,7 +49,7 @@ class TransactionRequest(BaseModel):
49
49
  allocation_id: Optional[ResourceId] = Field(None, alias="allocationId")
50
50
  custodian_account_id: Optional[ResourceId] = Field(None, alias="custodianAccountId")
51
51
  transaction_group_id: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, alias="transactionGroupId", description="The identifier for grouping economic events across multiple transactions")
52
- strategy_tag: Optional[conlist(Strategy)] = Field(None, alias="strategyTag", description="A Json representing the allocation of units accross multiple sub-holding keys")
52
+ strategy_tag: Optional[conlist(Strategy)] = Field(None, alias="strategyTag", description="A list of strategies representing the allocation of units across multiple sub-holding keys")
53
53
  __properties = ["transactionId", "type", "instrumentIdentifiers", "transactionDate", "settlementDate", "units", "transactionPrice", "totalConsideration", "exchangeRate", "transactionCurrency", "properties", "counterpartyId", "source", "otcConfirmation", "orderId", "allocationId", "custodianAccountId", "transactionGroupId", "strategyTag"]
54
54
 
55
55
  class Config:
@@ -0,0 +1,88 @@
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, Optional
22
+ from pydantic.v1 import BaseModel, Field, StrictStr
23
+
24
+ class TransactionTypeDetails(BaseModel):
25
+ """
26
+ TransactionTypeDetails
27
+ """
28
+ scope: Optional[StrictStr] = Field(None, description="The scope in which the TransactionType was resolved. If the portfolio has a TransactionTypeScope, this will have been used. Otherwise the default scope will have been used.")
29
+ source: Optional[StrictStr] = Field(None, description="The source in which the TransactionType was resolved.")
30
+ type: Optional[StrictStr] = Field(None, description="The resolved TransactionType. More information on TransactionType resolution can be found at https://support.lusid.com/docs/how-does-lusid-resolve-transactions-to-transaction-types")
31
+ __properties = ["scope", "source", "type"]
32
+
33
+ class Config:
34
+ """Pydantic configuration"""
35
+ allow_population_by_field_name = True
36
+ validate_assignment = True
37
+
38
+ def to_str(self) -> str:
39
+ """Returns the string representation of the model using alias"""
40
+ return pprint.pformat(self.dict(by_alias=True))
41
+
42
+ def to_json(self) -> str:
43
+ """Returns the JSON representation of the model using alias"""
44
+ return json.dumps(self.to_dict())
45
+
46
+ @classmethod
47
+ def from_json(cls, json_str: str) -> TransactionTypeDetails:
48
+ """Create an instance of TransactionTypeDetails from a JSON string"""
49
+ return cls.from_dict(json.loads(json_str))
50
+
51
+ def to_dict(self):
52
+ """Returns the dictionary representation of the model using alias"""
53
+ _dict = self.dict(by_alias=True,
54
+ exclude={
55
+ },
56
+ exclude_none=True)
57
+ # set to None if scope (nullable) is None
58
+ # and __fields_set__ contains the field
59
+ if self.scope is None and "scope" in self.__fields_set__:
60
+ _dict['scope'] = None
61
+
62
+ # set to None if source (nullable) is None
63
+ # and __fields_set__ contains the field
64
+ if self.source is None and "source" in self.__fields_set__:
65
+ _dict['source'] = None
66
+
67
+ # set to None if type (nullable) is None
68
+ # and __fields_set__ contains the field
69
+ if self.type is None and "type" in self.__fields_set__:
70
+ _dict['type'] = None
71
+
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: dict) -> TransactionTypeDetails:
76
+ """Create an instance of TransactionTypeDetails from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return TransactionTypeDetails.parse_obj(obj)
82
+
83
+ _obj = TransactionTypeDetails.parse_obj({
84
+ "scope": obj.get("scope"),
85
+ "source": obj.get("source"),
86
+ "type": obj.get("type")
87
+ })
88
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.569
3
+ Version: 2.1.580
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -1635,6 +1635,7 @@ Class | Method | HTTP request | Description
1635
1635
  - [TransactionType](docs/TransactionType.md)
1636
1636
  - [TransactionTypeAlias](docs/TransactionTypeAlias.md)
1637
1637
  - [TransactionTypeCalculation](docs/TransactionTypeCalculation.md)
1638
+ - [TransactionTypeDetails](docs/TransactionTypeDetails.md)
1638
1639
  - [TransactionTypeMovement](docs/TransactionTypeMovement.md)
1639
1640
  - [TransactionTypePropertyMapping](docs/TransactionTypePropertyMapping.md)
1640
1641
  - [TransactionTypeRequest](docs/TransactionTypeRequest.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=8ygon1YnAaEg8-1lZQ9Kw2m-ydURNqgR-0BSUhuK1pY,128173
1
+ lusid/__init__.py,sha256=JE2nxkgI5nZZNRt1wdc9VwV5ZY0yYfaIUBc64wGPrjU,128276
2
2
  lusid/api/__init__.py,sha256=6h2et93uMZgjdpV3C3_ITp_VbSBlwYu5BtqZ2puZPoI,5821
3
3
  lusid/api/abor_api.py,sha256=CC0f6Aqqiqkgmpguvoqe8teU0bRRuc771AdUSyI4rJw,158222
4
4
  lusid/api/abor_configuration_api.py,sha256=TmssMn5ni0mZV1q7LyPXYhBqqUGJqLYZapo8By8DFuI,63875
@@ -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=uQfpVoQDan7N9oMEAop8BIVNNZdfdLQBM963Fk01B2A,17972
73
+ lusid/configuration.py,sha256=WG3lT-ppYt4GKDVq8OnX3uVDxs5jCk7Xe_gVo_pU1TE,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=13vESVXa-spgKv7bkBEZkI5iHNwsz9ZW7Hn9txX8O_E,121320
88
+ lusid/models/__init__.py,sha256=DLRBrdWMt_4Kz83YFo_BM6FVwz82wuEccGyTkmdFzoA,121423
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
@@ -120,7 +120,7 @@ lusid/models/address_key_option_definition.py,sha256=T2Zj9-KQJhDubLPIIK2pnaM5UDZ
120
120
  lusid/models/adjust_holding.py,sha256=K0FDmwFy3NTJ8HicVCJGA1Mqrbri77d1IGA_hk0ejLY,4387
121
121
  lusid/models/adjust_holding_for_date_request.py,sha256=AXXiwgzNLTbOnieETMglVFHzBKYvIcsT9NK5PpIVdfI,5986
122
122
  lusid/models/adjust_holding_request.py,sha256=_dhEk23kdt2PtaepgoxuBNAB7wyrcJxHzaLhy-lVQQQ,5697
123
- lusid/models/aggregate_spec.py,sha256=8J5m3E2q2VYvmDRe93Y82ppx8ptXyIBPRFK1_Vmz8sg,3334
123
+ lusid/models/aggregate_spec.py,sha256=jevCtRTdbi_pydAt_Dc33oRysTgksAJ3Fn8Sk5m9xtE,3374
124
124
  lusid/models/aggregated_return.py,sha256=idRVdbx--3wj4dfECDZREH_xCNXW8IBoFg_HvrJy9ac,5953
125
125
  lusid/models/aggregated_returns_dispersion_request.py,sha256=7xKtIUa_P-jS3oOpbbgwXL0gzHK0pErqtBzxyTjnqW0,5496
126
126
  lusid/models/aggregated_returns_request.py,sha256=URBqwgZK3tkyqOe5Qo-2VP7xwSupy64b0kIeXNaN0Hk,7601
@@ -128,7 +128,7 @@ lusid/models/aggregated_returns_response.py,sha256=E-0Y3t7Jud_j_S0X0w2tU6ET7ozUC
128
128
  lusid/models/aggregated_transactions_request.py,sha256=PlWTr52XndGTErcD4FfM-Ouu-o3mFvk7jXQz805reLo,5341
129
129
  lusid/models/aggregation_context.py,sha256=IdA9lRVE26VSSQC0qw6Klakz2sS1tQqghyBUq9cunzk,2583
130
130
  lusid/models/aggregation_measure_failure_detail.py,sha256=CM6vzqNogMIVltcphUTx_-rG-I3OlC702SI0ks6G61w,3190
131
- lusid/models/aggregation_op.py,sha256=kwN8kAYhRpFAbSZo3sHrKZm4_abRfsxDKs5CrZboIPU,1062
131
+ lusid/models/aggregation_op.py,sha256=F2n9Nqc-qwyf5W7Fg58FIHf2JJmGuAIfpYsEL2BxqgU,1092
132
132
  lusid/models/aggregation_options.py,sha256=rEn-7En3urOehoVMVnMrS9cxN4ZvihTHFT98YjOrjH0,3128
133
133
  lusid/models/aggregation_query.py,sha256=epqhWBB8ksJhUbsjT6PkSY_xRlkX9gHSRcIQaG5PKRY,8326
134
134
  lusid/models/aggregation_type.py,sha256=XjHrk2_0OhQyn5RK2-LUzDIjvT_blRVYdvyFdkyxQuw,892
@@ -1062,7 +1062,7 @@ lusid/models/total_return_swap.py,sha256=x3RBIefY7oiI9MfIK3A2okvuAdeVEk025jp6F5g
1062
1062
  lusid/models/touch.py,sha256=OECUpEFcCT1kPT5SJIsoNHtR8k2AhEAbDd6P86NcF4s,2726
1063
1063
  lusid/models/trade_ticket.py,sha256=ONpDAdaWs3yfUqMxI7Mq0cYpX0aJkN8XH_9n9rIs5IA,2320
1064
1064
  lusid/models/trade_ticket_type.py,sha256=j7f2bfiA_cxaFtjZpT3Natl4BoaGAaEXF6E0ltEzTWE,706
1065
- lusid/models/transaction.py,sha256=_Ss6xjcpciz4hXfTI1Uf-tqGSOvOLoJBcFEYvQkk20o,12099
1065
+ lusid/models/transaction.py,sha256=ItU_ujzGcj7RR0br8zxrNCMXk2zO5bh5ZcriGoRdhB4,13742
1066
1066
  lusid/models/transaction_configuration_data.py,sha256=BSHXnMn6TWaubn2zTxPvbRUOsRtGYb0N4sDNUcf1SaY,4318
1067
1067
  lusid/models/transaction_configuration_data_request.py,sha256=mypVKRfltmkG5NEUGqDDyBYdIir3S1nkYzGL8BwHWgo,4398
1068
1068
  lusid/models/transaction_configuration_movement_data.py,sha256=ofaJZQOHloSpT4Y09Sgw-JtQq3RWNwkBl-JLMGg_yYo,7418
@@ -1082,7 +1082,7 @@ lusid/models/transaction_query_mode.py,sha256=q3QNcFSP-LwfdQF_yRUOZMd6ElemQm03yO
1082
1082
  lusid/models/transaction_query_parameters.py,sha256=sYKAouptXvwNtAzz2SdOi7F-9M5q2xOwqT1kjz8vSNE,3365
1083
1083
  lusid/models/transaction_reconciliation_request.py,sha256=pys1JU22geF_MiZwGBlzhiXQ_daHZ0Cffpce8Wvq7ec,4294
1084
1084
  lusid/models/transaction_reconciliation_request_v2.py,sha256=YjOKUfgsoXVlXLbAP2qDc8wsRV-Te-sxtsvKGJe1cjg,5946
1085
- lusid/models/transaction_request.py,sha256=DzbZiQbPT8k40M8Ey1CEqXWMNUIo21mBmKXNVwHsIlc,10834
1085
+ lusid/models/transaction_request.py,sha256=W0qAUjOVWrS7fVK2qP4VtETic5AAGmM1DPXu-6Rcfl8,10847
1086
1086
  lusid/models/transaction_roles.py,sha256=1r-BzcchffLl6p4lSUhRAUmsVdrl7Bvce2cCiwxJanE,839
1087
1087
  lusid/models/transaction_set_configuration_data.py,sha256=CmMrtyOxpcJd5LXW2egsTf4yPCkoJ7yGUA-WFL07zI4,4411
1088
1088
  lusid/models/transaction_set_configuration_data_request.py,sha256=YWx3s0gvxI-6Zh9HmrbcUw9SO2t7OoEq5rXYJyNOFYU,3947
@@ -1093,6 +1093,7 @@ lusid/models/transaction_template_specification.py,sha256=dggD7J8ZSUTznJddC_Sn65
1093
1093
  lusid/models/transaction_type.py,sha256=zcWUQPVY5JKEOzNWQls7TjTiKOB7QVY8iFh1zgJXYUc,5765
1094
1094
  lusid/models/transaction_type_alias.py,sha256=xL9k8kjgAcEPe5sfK8asHscvz7gLcAa6pC_eGgVvXlY,3532
1095
1095
  lusid/models/transaction_type_calculation.py,sha256=Re4rt0IuLxo1hgjDz-VyIgQhVat6w7Fh-DwUF19nYYs,2846
1096
+ lusid/models/transaction_type_details.py,sha256=GC-lanMnyYR_hKlUvU4yU0-exqE6CdMw1081wPUmIj0,3131
1096
1097
  lusid/models/transaction_type_movement.py,sha256=eG4MQrMi0P_ihxOcfsqPAnkYuOmwbho9xQDoAJWH2ro,8695
1097
1098
  lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
1098
1099
  lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
@@ -1226,6 +1227,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
1226
1227
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1227
1228
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1228
1229
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1229
- lusid_sdk-2.1.569.dist-info/METADATA,sha256=hMGhNBcHH7WkaetQGQphEE-SRhIfgsis09Y6F4cpYPE,209088
1230
- lusid_sdk-2.1.569.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1231
- lusid_sdk-2.1.569.dist-info/RECORD,,
1230
+ lusid_sdk-2.1.580.dist-info/METADATA,sha256=LZEQTBrdcLTUVpXFIrH2HY_H0H8HFrlgMhDn0ko8jUI,209148
1231
+ lusid_sdk-2.1.580.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1232
+ lusid_sdk-2.1.580.dist-info/RECORD,,