lusid-sdk 2.1.284__py3-none-any.whl → 2.1.287__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.

Potentially problematic release.


This version of lusid-sdk might be problematic. Click here for more details.

lusid/configuration.py CHANGED
@@ -373,7 +373,7 @@ class Configuration:
373
373
  return "Python SDK Debug Report:\n"\
374
374
  "OS: {env}\n"\
375
375
  "Python Version: {pyversion}\n"\
376
- "Version of the API: 0.11.6717\n"\
376
+ "Version of the API: 0.11.6720\n"\
377
377
  "SDK Package Version: {package_version}".\
378
378
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
379
379
 
@@ -19,23 +19,15 @@ import json
19
19
 
20
20
 
21
21
  from typing import Any, Dict, List, Optional
22
- from pydantic.v1 import BaseModel, Field, conlist, constr, validator
22
+ from pydantic.v1 import BaseModel, conlist
23
23
  from lusid.models.component_filter import ComponentFilter
24
24
 
25
25
  class ComponentRule(BaseModel):
26
26
  """
27
27
  ComponentRule
28
28
  """
29
- match_criteria: constr(strict=True, max_length=16384, min_length=1) = Field(..., alias="matchCriteria")
30
29
  components: Optional[conlist(ComponentFilter)] = None
31
- __properties = ["matchCriteria", "components"]
32
-
33
- @validator('match_criteria')
34
- def match_criteria_validate_regular_expression(cls, value):
35
- """Validates the regular expression"""
36
- if not re.match(r"^[\s\S]*$", value):
37
- raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
38
- return value
30
+ __properties = ["components"]
39
31
 
40
32
  class Config:
41
33
  """Pydantic configuration"""
@@ -80,7 +72,6 @@ class ComponentRule(BaseModel):
80
72
  return ComponentRule.parse_obj(obj)
81
73
 
82
74
  _obj = ComponentRule.parse_obj({
83
- "match_criteria": obj.get("matchCriteria"),
84
75
  "components": [ComponentFilter.from_dict(_item) for _item in obj.get("components")] if obj.get("components") is not None else None
85
76
  })
86
77
  return _obj
@@ -34,11 +34,13 @@ class FundConfiguration(BaseModel):
34
34
  id: ResourceId = Field(...)
35
35
  display_name: Optional[StrictStr] = Field(None, alias="displayName", description="The name of the FundConfiguration.")
36
36
  description: Optional[StrictStr] = Field(None, description="A description for the FundConfiguration.")
37
- component_rules: Optional[conlist(ComponentRule)] = Field(None, alias="componentRules", description="The first matching rule decides the set of filters used.")
37
+ dealing_rule: Optional[ComponentRule] = Field(None, alias="dealingRule")
38
+ fund_pnl_exclusion_rule: Optional[ComponentRule] = Field(None, alias="fundPnlExclusionRule")
39
+ back_out_rule: Optional[ComponentRule] = Field(None, alias="backOutRule")
38
40
  properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund Configuration.")
39
41
  version: Optional[Version] = None
40
42
  links: Optional[conlist(Link)] = None
41
- __properties = ["href", "id", "displayName", "description", "componentRules", "properties", "version", "links"]
43
+ __properties = ["href", "id", "displayName", "description", "dealingRule", "fundPnlExclusionRule", "backOutRule", "properties", "version", "links"]
42
44
 
43
45
  class Config:
44
46
  """Pydantic configuration"""
@@ -67,13 +69,15 @@ class FundConfiguration(BaseModel):
67
69
  # override the default output from pydantic by calling `to_dict()` of id
68
70
  if self.id:
69
71
  _dict['id'] = self.id.to_dict()
70
- # override the default output from pydantic by calling `to_dict()` of each item in component_rules (list)
71
- _items = []
72
- if self.component_rules:
73
- for _item in self.component_rules:
74
- if _item:
75
- _items.append(_item.to_dict())
76
- _dict['componentRules'] = _items
72
+ # override the default output from pydantic by calling `to_dict()` of dealing_rule
73
+ if self.dealing_rule:
74
+ _dict['dealingRule'] = self.dealing_rule.to_dict()
75
+ # override the default output from pydantic by calling `to_dict()` of fund_pnl_exclusion_rule
76
+ if self.fund_pnl_exclusion_rule:
77
+ _dict['fundPnlExclusionRule'] = self.fund_pnl_exclusion_rule.to_dict()
78
+ # override the default output from pydantic by calling `to_dict()` of back_out_rule
79
+ if self.back_out_rule:
80
+ _dict['backOutRule'] = self.back_out_rule.to_dict()
77
81
  # override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
78
82
  _field_dict = {}
79
83
  if self.properties:
@@ -106,11 +110,6 @@ class FundConfiguration(BaseModel):
106
110
  if self.description is None and "description" in self.__fields_set__:
107
111
  _dict['description'] = None
108
112
 
109
- # set to None if component_rules (nullable) is None
110
- # and __fields_set__ contains the field
111
- if self.component_rules is None and "component_rules" in self.__fields_set__:
112
- _dict['componentRules'] = None
113
-
114
113
  # set to None if properties (nullable) is None
115
114
  # and __fields_set__ contains the field
116
115
  if self.properties is None and "properties" in self.__fields_set__:
@@ -137,7 +136,9 @@ class FundConfiguration(BaseModel):
137
136
  "id": ResourceId.from_dict(obj.get("id")) if obj.get("id") is not None else None,
138
137
  "display_name": obj.get("displayName"),
139
138
  "description": obj.get("description"),
140
- "component_rules": [ComponentRule.from_dict(_item) for _item in obj.get("componentRules")] if obj.get("componentRules") is not None else None,
139
+ "dealing_rule": ComponentRule.from_dict(obj.get("dealingRule")) if obj.get("dealingRule") is not None else None,
140
+ "fund_pnl_exclusion_rule": ComponentRule.from_dict(obj.get("fundPnlExclusionRule")) if obj.get("fundPnlExclusionRule") is not None else None,
141
+ "back_out_rule": ComponentRule.from_dict(obj.get("backOutRule")) if obj.get("backOutRule") is not None else None,
141
142
  "properties": dict(
142
143
  (_k, ModelProperty.from_dict(_v))
143
144
  for _k, _v in obj.get("properties").items()
@@ -18,8 +18,8 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
 
21
- from typing import Any, Dict, List, Optional
22
- from pydantic.v1 import BaseModel, Field, conlist, constr, validator
21
+ from typing import Any, Dict, Optional
22
+ from pydantic.v1 import BaseModel, Field, constr, validator
23
23
  from lusid.models.component_rule import ComponentRule
24
24
  from lusid.models.model_property import ModelProperty
25
25
 
@@ -30,9 +30,11 @@ class FundConfigurationRequest(BaseModel):
30
30
  code: constr(strict=True, max_length=64, min_length=1) = Field(...)
31
31
  display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the Fund.")
32
32
  description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the Fund.")
33
- component_rules: conlist(ComponentRule) = Field(..., alias="componentRules")
33
+ dealing_rule: ComponentRule = Field(..., alias="dealingRule")
34
+ fund_pnl_exclusion_rule: Optional[ComponentRule] = Field(None, alias="fundPnlExclusionRule")
35
+ back_out_rule: ComponentRule = Field(..., alias="backOutRule")
34
36
  properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund Configuration.")
35
- __properties = ["code", "displayName", "description", "componentRules", "properties"]
37
+ __properties = ["code", "displayName", "description", "dealingRule", "fundPnlExclusionRule", "backOutRule", "properties"]
36
38
 
37
39
  @validator('code')
38
40
  def code_validate_regular_expression(cls, value):
@@ -75,13 +77,15 @@ class FundConfigurationRequest(BaseModel):
75
77
  exclude={
76
78
  },
77
79
  exclude_none=True)
78
- # override the default output from pydantic by calling `to_dict()` of each item in component_rules (list)
79
- _items = []
80
- if self.component_rules:
81
- for _item in self.component_rules:
82
- if _item:
83
- _items.append(_item.to_dict())
84
- _dict['componentRules'] = _items
80
+ # override the default output from pydantic by calling `to_dict()` of dealing_rule
81
+ if self.dealing_rule:
82
+ _dict['dealingRule'] = self.dealing_rule.to_dict()
83
+ # override the default output from pydantic by calling `to_dict()` of fund_pnl_exclusion_rule
84
+ if self.fund_pnl_exclusion_rule:
85
+ _dict['fundPnlExclusionRule'] = self.fund_pnl_exclusion_rule.to_dict()
86
+ # override the default output from pydantic by calling `to_dict()` of back_out_rule
87
+ if self.back_out_rule:
88
+ _dict['backOutRule'] = self.back_out_rule.to_dict()
85
89
  # override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
86
90
  _field_dict = {}
87
91
  if self.properties:
@@ -119,7 +123,9 @@ class FundConfigurationRequest(BaseModel):
119
123
  "code": obj.get("code"),
120
124
  "display_name": obj.get("displayName"),
121
125
  "description": obj.get("description"),
122
- "component_rules": [ComponentRule.from_dict(_item) for _item in obj.get("componentRules")] if obj.get("componentRules") is not None else None,
126
+ "dealing_rule": ComponentRule.from_dict(obj.get("dealingRule")) if obj.get("dealingRule") is not None else None,
127
+ "fund_pnl_exclusion_rule": ComponentRule.from_dict(obj.get("fundPnlExclusionRule")) if obj.get("fundPnlExclusionRule") is not None else None,
128
+ "back_out_rule": ComponentRule.from_dict(obj.get("backOutRule")) if obj.get("backOutRule") is not None else None,
123
129
  "properties": dict(
124
130
  (_k, ModelProperty.from_dict(_v))
125
131
  for _k, _v in obj.get("properties").items()
@@ -27,13 +27,13 @@ class TransactionConfigurationMovementData(BaseModel):
27
27
  """
28
28
  TransactionConfigurationMovementData
29
29
  """
30
- movement_types: StrictStr = Field(..., alias="movementTypes", description=". The available values are: Settlement, Traded, StockMovement, FutureCash, Commitment, Receivable, CashSettlement, CashForward, CashCommitment, CashReceivable, Accrual, CashAccrual, ForwardFx, CashFxForward, UnsettledCashTypes, Carry, CarryAsPnl, VariationMargin, Capital, Fee")
30
+ movement_types: StrictStr = Field(..., alias="movementTypes", description="Movement types determine the impact of the movement on the holdings. The available values are: Settlement, Traded, StockMovement, FutureCash, Commitment, Receivable, CashSettlement, CashForward, CashCommitment, CashReceivable, Accrual, CashAccrual, ForwardFx, CashFxForward, UnsettledCashTypes, Carry, CarryAsPnl, VariationMargin, Capital, Fee. The available values are: Settlement, Traded, StockMovement, FutureCash, Commitment, Receivable, CashSettlement, CashForward, CashCommitment, CashReceivable, Accrual, CashAccrual, ForwardFx, CashFxForward, UnsettledCashTypes, Carry, CarryAsPnl, VariationMargin, Capital, Fee")
31
31
  side: constr(strict=True, min_length=1) = Field(..., description="The Side determines which of the fields from our transaction are used to generate the Movement. Side1 means the 'security' side of the transaction, ie the Instrument and Units; Side2 means the 'cash' side, ie the Total Consideration")
32
32
  direction: StrictInt = Field(..., description=" A multiplier to apply to Transaction amounts; the values are -1 to indicate to reverse the signs and 1 to indicate to use the signed values from the Transaction directly. For a typical Transaction with unsigned values, 1 means increase, -1 means decrease")
33
33
  properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="The properties associated with the underlying Movement")
34
34
  mappings: Optional[conlist(TransactionPropertyMapping)] = Field(None, description="This allows you to map a transaction property to a property on the underlying holding")
35
35
  name: Optional[StrictStr] = Field(None, description="The movement name (optional)")
36
- movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment' and 'IncludesTradedInterest'. A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
36
+ movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment', 'IncludesTradedInterest' and 'Virtual' (works only with the movement type 'StockMovement'). A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
37
37
  __properties = ["movementTypes", "side", "direction", "properties", "mappings", "name", "movementOptions"]
38
38
 
39
39
  @validator('movement_types')
@@ -33,7 +33,7 @@ class TransactionConfigurationMovementDataRequest(BaseModel):
33
33
  properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="The properties associated with the underlying Movement.")
34
34
  mappings: Optional[conlist(TransactionPropertyMappingRequest)] = Field(None, description="This allows you to map a transaction property to a property on the underlying holding.")
35
35
  name: Optional[StrictStr] = Field(None, description="The movement name (optional)")
36
- movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment' and 'IncludesTradedInterest'. A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
36
+ movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment', 'IncludesTradedInterest' and 'Virtual' (works only with the movement type 'StockMovement'). A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
37
37
  __properties = ["movementTypes", "side", "direction", "properties", "mappings", "name", "movementOptions"]
38
38
 
39
39
  @validator('movement_types')
@@ -27,13 +27,13 @@ class TransactionTypeMovement(BaseModel):
27
27
  """
28
28
  TransactionTypeMovement
29
29
  """
30
- movement_types: constr(strict=True, min_length=1) = Field(..., alias="movementTypes", description="Movement types determine the impact of the movement on the holdings")
30
+ movement_types: constr(strict=True, min_length=1) = Field(..., alias="movementTypes", description="Movement types determine the impact of the movement on the holdings. The available values are: Settlement, Traded, StockMovement, FutureCash, Commitment, Receivable, CashSettlement, CashForward, CashCommitment, CashReceivable, Accrual, CashAccrual, ForwardFx, CashFxForward, UnsettledCashTypes, Carry, CarryAsPnl, VariationMargin, Capital, Fee.")
31
31
  side: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The Side determines which of the fields from our transaction are used to generate the Movement. Side1 means the 'security' side of the transaction, ie the Instrument and Units; Side2 means the 'cash' side, ie the Total Consideration")
32
32
  direction: StrictInt = Field(..., description=" A multiplier to apply to Transaction amounts; the values are -1 to indicate to reverse the signs and 1 to indicate to use the signed values from the Transaction directly. For a typical Transaction with unsigned values, 1 means increase, -1 means decrease")
33
33
  properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="The properties associated with the underlying Movement")
34
34
  mappings: Optional[conlist(TransactionTypePropertyMapping, max_items=5000)] = Field(None, description="This allows you to map a transaction property to a property on the underlying holding")
35
35
  name: Optional[constr(strict=True, max_length=512, min_length=1)] = Field(None, description="The movement name (optional)")
36
- movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment' and 'IncludesTradedInterest'. A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
36
+ movement_options: Optional[conlist(StrictStr)] = Field(None, alias="movementOptions", description="Allows extra specifications for the movement. The options currently available are 'DirectAdjustment', 'IncludesTradedInterest' and 'Virtual' (works only with the movement type 'StockMovement'). A movement type of 'StockMovement' with an option of 'DirectAdjusment' will allow you to adjust the units of a holding without affecting its cost base. You will, therefore, be able to reflect the impact of a stock split by loading a Transaction.")
37
37
  settlement_date_override: Optional[StrictStr] = Field(None, alias="settlementDateOverride", description="Optional property key that must be in the Transaction domain when specified. When the movement is processed and the transaction has this property set to a valid date, then the property value will override the SettlementDate of the transaction.")
38
38
  condition: Optional[constr(strict=True, max_length=16384, min_length=0)] = Field(None, description="The condition that the transaction must satisfy to generate the movement, such as: Portfolio.BaseCurrency eq 'GBP'. The condition can contain fields and properties from transactions and portfolios. If no condition is provided, the movement will apply for all transactions of this type.")
39
39
  __properties = ["movementTypes", "side", "direction", "properties", "mappings", "name", "movementOptions", "settlementDateOverride", "condition"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.284
3
+ Version: 2.1.287
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -29,8 +29,8 @@ FINBOURNE Technology
29
29
 
30
30
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
31
31
 
32
- - API version: 0.11.6717
33
- - Package version: 2.1.284
32
+ - API version: 0.11.6720
33
+ - Package version: 2.1.287
34
34
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
35
35
  For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
36
36
 
@@ -68,7 +68,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
68
68
  lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
69
69
  lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
70
70
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
71
- lusid/configuration.py,sha256=ViktjwAzh-m1jHPmK_mzkGNYPYw1ePRD-9yQnNyiI1s,14404
71
+ lusid/configuration.py,sha256=erN7nRtr5_JhlOJKSTOXyr4UpDvtRqEf7zOwoAFu6m4,14404
72
72
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
73
73
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
74
74
  lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
@@ -245,7 +245,7 @@ lusid/models/compliance_template_variation.py,sha256=mnbKZ78bbQyq7L3LtcXPT2DrymD
245
245
  lusid/models/compliance_template_variation_dto.py,sha256=fWH4WbJjLPjpyb0p4_SVeRaVYyb22KOsthPo-sftggE,4300
246
246
  lusid/models/compliance_template_variation_request.py,sha256=UFy6md9GFHvKgH2GT0-Cwfg48pSvo2UtKcCYLFZG2js,4361
247
247
  lusid/models/component_filter.py,sha256=lIRWmBzhjHiA3KOraTZ1jFbUBWR2bz5JUet9Kzx2N3I,2590
248
- lusid/models/component_rule.py,sha256=k2yzTl1UTboGjkXa3aHIO0OOIcoaRKMo8OGXPGMgfBg,2819
248
+ lusid/models/component_rule.py,sha256=Q9dzMqQiG290IicuNEZR0uJArD5V9UO_TZOjqya4Tlw,2318
249
249
  lusid/models/component_transaction.py,sha256=9q-Xj49CIIMWk7QZflkaunWUJAkHiKxaHqdc-owL_8Q,3645
250
250
  lusid/models/composite_breakdown.py,sha256=WfT-c2bvOmT9LP1zFI8V2cIWOLJ4LRsaLZH98IImZ8U,3350
251
251
  lusid/models/composite_breakdown_request.py,sha256=fjhlpBroC8ys0jwfglD-_HJlsDdp3mDIDmvdyD6llj8,5315
@@ -413,9 +413,9 @@ lusid/models/forward_rate_agreement.py,sha256=PrTWedcDD8Zr3c7_Z6UrDMKwVtwAFtq5yW
413
413
  lusid/models/from_recipe.py,sha256=paSou6poZf5CHkswKhZXc8jXmVcxj7s7kJXRw4ucbfQ,2261
414
414
  lusid/models/fund.py,sha256=4FENDtVBRDI59lTQ_LdffuIYIPGj7C-LUkL0Wtzn0cc,8958
415
415
  lusid/models/fund_amount.py,sha256=F298PikXvooYgorqtdWwwOmSclzxqNfu6Q1BUK5Yt_E,1879
416
- lusid/models/fund_configuration.py,sha256=c_IB3yaaStJWgwCfuqGgYoDqSW1phajM3RYFPVpN8Gs,6357
416
+ lusid/models/fund_configuration.py,sha256=rZYEyTyXhq4kOXiAFLGO3shzvfZKN8CXdBpwsE_x8Bs,6754
417
417
  lusid/models/fund_configuration_properties.py,sha256=hqKaBSMkSYC5UcWxkgDos41GYnm__6-Q23Z6SDsBgM4,4373
418
- lusid/models/fund_configuration_request.py,sha256=HP-B75VqsIKbnjfEnFVKHQHjxspQWcNOeC8YPz5hOYQ,5106
418
+ lusid/models/fund_configuration_request.py,sha256=L7grtgaC97bf5rQ7IaJ4u-PRB6FrFW0kZVyXOh8smnM,5787
419
419
  lusid/models/fund_previous_nav.py,sha256=Vd6qd-nvikHAMjutM1QSYA4xYGWz45NGyLyg2v8pAsE,1930
420
420
  lusid/models/fund_properties.py,sha256=f2PxknZIPrfAXR1MHSJxO1sdj_wNJfmulzYYEqdCByA,4242
421
421
  lusid/models/fund_request.py,sha256=fBU3prGytCvKWfAzP0gHj4VUANarueKwB7r9evPoIEI,8345
@@ -961,8 +961,8 @@ lusid/models/trade_ticket_type.py,sha256=j7f2bfiA_cxaFtjZpT3Natl4BoaGAaEXF6E0ltE
961
961
  lusid/models/transaction.py,sha256=s_t93axEEHXHIFkmTCqeWWbJ0b2IuaP465yBvQGtK2w,11577
962
962
  lusid/models/transaction_configuration_data.py,sha256=BSHXnMn6TWaubn2zTxPvbRUOsRtGYb0N4sDNUcf1SaY,4318
963
963
  lusid/models/transaction_configuration_data_request.py,sha256=mypVKRfltmkG5NEUGqDDyBYdIir3S1nkYzGL8BwHWgo,4398
964
- lusid/models/transaction_configuration_movement_data.py,sha256=_reiT_ZkjGFvAzyuftXxFfJNJ3YIe0lLws9wFBPGmd8,7011
965
- lusid/models/transaction_configuration_movement_data_request.py,sha256=3o7WmlP4XNSjLfWWmlfcCsZSeRUFCRBdZERr-TnHYRk,6650
964
+ lusid/models/transaction_configuration_movement_data.py,sha256=ofaJZQOHloSpT4Y09Sgw-JtQq3RWNwkBl-JLMGg_yYo,7418
965
+ lusid/models/transaction_configuration_movement_data_request.py,sha256=Dw52ClN9G_Tln13YQuzW7DOP7mfpuFQ3h2E8F-HCVQ8,6713
966
966
  lusid/models/transaction_configuration_type_alias.py,sha256=YXhlJeoClTMcY0KmAfqGGV6mkYQFP2YF6B4PXOLjQt0,4750
967
967
  lusid/models/transaction_currency_and_amount.py,sha256=us7dfLcpX_55r_K3EjDeTha0k2NTDl0FkkWg9LhX6Lo,2524
968
968
  lusid/models/transaction_field_map.py,sha256=hhb6KeyDpqY-8AFeI7sFIVk0PLqOR5qrQPyriX1njJ8,4591
@@ -987,7 +987,7 @@ lusid/models/transaction_template_specification.py,sha256=dggD7J8ZSUTznJddC_Sn65
987
987
  lusid/models/transaction_type.py,sha256=zcWUQPVY5JKEOzNWQls7TjTiKOB7QVY8iFh1zgJXYUc,5765
988
988
  lusid/models/transaction_type_alias.py,sha256=xL9k8kjgAcEPe5sfK8asHscvz7gLcAa6pC_eGgVvXlY,3532
989
989
  lusid/models/transaction_type_calculation.py,sha256=Re4rt0IuLxo1hgjDz-VyIgQhVat6w7Fh-DwUF19nYYs,2846
990
- lusid/models/transaction_type_movement.py,sha256=WYGZJzPCozznev3IBG8wQQlExufRDEU1wj240-REY5w,8354
990
+ lusid/models/transaction_type_movement.py,sha256=eG4MQrMi0P_ihxOcfsqPAnkYuOmwbho9xQDoAJWH2ro,8695
991
991
  lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
992
992
  lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
993
993
  lusid/models/transactions_reconciliations_response.py,sha256=ogcMW8W4vgIDqEdggwJDA0tH-SInrqIFCLved7SZ-VM,3083
@@ -1107,6 +1107,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1107
1107
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1108
1108
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1109
1109
  lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
1110
- lusid_sdk-2.1.284.dist-info/METADATA,sha256=P1SVh59DSgUUTiFKlAXoVgNE7wSRYdNRBiD_E9In714,193130
1111
- lusid_sdk-2.1.284.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1112
- lusid_sdk-2.1.284.dist-info/RECORD,,
1110
+ lusid_sdk-2.1.287.dist-info/METADATA,sha256=miaaBw6UPSZfFjQsQhj_2g1f8F0iY9LNeRy3Ip6TlPk,193130
1111
+ lusid_sdk-2.1.287.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1112
+ lusid_sdk-2.1.287.dist-info/RECORD,,