lusid-sdk 2.1.149__py3-none-any.whl → 2.1.157__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/__init__.py CHANGED
@@ -166,6 +166,8 @@ from lusid.models.block_request import BlockRequest
166
166
  from lusid.models.block_set_request import BlockSetRequest
167
167
  from lusid.models.blocked_order_request import BlockedOrderRequest
168
168
  from lusid.models.bond import Bond
169
+ from lusid.models.bond_conversion_entry import BondConversionEntry
170
+ from lusid.models.bond_conversion_schedule import BondConversionSchedule
169
171
  from lusid.models.bond_coupon_event import BondCouponEvent
170
172
  from lusid.models.bond_default_event import BondDefaultEvent
171
173
  from lusid.models.bond_principal_event import BondPrincipalEvent
@@ -1231,6 +1233,8 @@ __all__ = [
1231
1233
  "BlockSetRequest",
1232
1234
  "BlockedOrderRequest",
1233
1235
  "Bond",
1236
+ "BondConversionEntry",
1237
+ "BondConversionSchedule",
1234
1238
  "BondCouponEvent",
1235
1239
  "BondDefaultEvent",
1236
1240
  "BondPrincipalEvent",
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.6583\n"\
376
+ "Version of the API: 0.11.6591\n"\
377
377
  "SDK Package Version: {package_version}".\
378
378
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
379
379
 
lusid/models/__init__.py CHANGED
@@ -88,6 +88,8 @@ from lusid.models.block_request import BlockRequest
88
88
  from lusid.models.block_set_request import BlockSetRequest
89
89
  from lusid.models.blocked_order_request import BlockedOrderRequest
90
90
  from lusid.models.bond import Bond
91
+ from lusid.models.bond_conversion_entry import BondConversionEntry
92
+ from lusid.models.bond_conversion_schedule import BondConversionSchedule
91
93
  from lusid.models.bond_coupon_event import BondCouponEvent
92
94
  from lusid.models.bond_default_event import BondDefaultEvent
93
95
  from lusid.models.bond_principal_event import BondPrincipalEvent
@@ -1076,6 +1078,8 @@ __all__ = [
1076
1078
  "BlockSetRequest",
1077
1079
  "BlockedOrderRequest",
1078
1080
  "Bond",
1081
+ "BondConversionEntry",
1082
+ "BondConversionSchedule",
1079
1083
  "BondCouponEvent",
1080
1084
  "BondDefaultEvent",
1081
1085
  "BondPrincipalEvent",
@@ -0,0 +1,75 @@
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
+ from datetime import datetime
21
+ from typing import Any, Dict, Optional, Union
22
+ from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt
23
+
24
+ class BondConversionEntry(BaseModel):
25
+ """
26
+ Information required to specify a conversion event for a convertible bond. # noqa: E501
27
+ """
28
+ var_date: Optional[datetime] = Field(None, alias="date", description="The date at which the bond can be converted")
29
+ denomination: Optional[Union[StrictFloat, StrictInt]] = Field(None, description="The number of shares to be issued on conversion will be equal to the denomination of the bond divided by the conversion price. Two (and only two) entries out of (Price, Ratio, Denomination) must be provided. So, to allow one entry out of the three to not be provided, we make all the three nullable defaulting to zero and during validation we check if there is exactly one of the three equal to zero.")
30
+ price: Optional[Union[StrictFloat, StrictInt]] = Field(None, description="The conversion price Two (and only two) entries out of (Price, Ratio, Denomination) must be provided. So, to allow one entry out of the three to not be provided, we make all the three nullable defaulting to zero and during validation we check if there is exactly one of the three equal to zero.")
31
+ ratio: Optional[Union[StrictFloat, StrictInt]] = Field(None, description="The number of common shares received at the time of conversion for each convertible bond Two (and only two) entries out of (Price, Ratio, Denomination) must be provided. So, to allow one entry out of the three to not be provided, we make all the three nullable defaulting to zero and during validation we check if there is exactly one of the three equal to zero.")
32
+ __properties = ["date", "denomination", "price", "ratio"]
33
+
34
+ class Config:
35
+ """Pydantic configuration"""
36
+ allow_population_by_field_name = True
37
+ validate_assignment = True
38
+
39
+ def to_str(self) -> str:
40
+ """Returns the string representation of the model using alias"""
41
+ return pprint.pformat(self.dict(by_alias=True))
42
+
43
+ def to_json(self) -> str:
44
+ """Returns the JSON representation of the model using alias"""
45
+ return json.dumps(self.to_dict())
46
+
47
+ @classmethod
48
+ def from_json(cls, json_str: str) -> BondConversionEntry:
49
+ """Create an instance of BondConversionEntry from a JSON string"""
50
+ return cls.from_dict(json.loads(json_str))
51
+
52
+ def to_dict(self):
53
+ """Returns the dictionary representation of the model using alias"""
54
+ _dict = self.dict(by_alias=True,
55
+ exclude={
56
+ },
57
+ exclude_none=True)
58
+ return _dict
59
+
60
+ @classmethod
61
+ def from_dict(cls, obj: dict) -> BondConversionEntry:
62
+ """Create an instance of BondConversionEntry from a dict"""
63
+ if obj is None:
64
+ return None
65
+
66
+ if not isinstance(obj, dict):
67
+ return BondConversionEntry.parse_obj(obj)
68
+
69
+ _obj = BondConversionEntry.parse_obj({
70
+ "var_date": obj.get("date"),
71
+ "denomination": obj.get("denomination"),
72
+ "price": obj.get("price"),
73
+ "ratio": obj.get("ratio")
74
+ })
75
+ return _obj
@@ -0,0 +1,130 @@
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
+ from datetime import datetime
21
+ from typing import Any, Dict, List, Optional
22
+ from pydantic.v1 import Field, StrictBool, StrictStr, conlist, constr, validator
23
+ from lusid.models.bond_conversion_entry import BondConversionEntry
24
+ from lusid.models.schedule import Schedule
25
+
26
+ class BondConversionSchedule(Schedule):
27
+ """
28
+ A BondConversionSchedule object represents a class containing the information required for the creation of convertible features in a ComplexBond # noqa: E501
29
+ """
30
+ identifiers: Optional[Dict[str, StrictStr]] = Field(None, description="The market identifier(s) of the share that the bond converts to. The instrument will not fail validation if no identifier is supplied.")
31
+ bond_conversion_entries: Optional[conlist(BondConversionEntry)] = Field(None, alias="bondConversionEntries", description="The dates at which the bond may be converted and associated information required about the conversion.")
32
+ conversion_trigger: constr(strict=True, max_length=50, min_length=0) = Field(..., alias="conversionTrigger", description="Corporate event that triggers a conversion Supported string (enumeration) values are: [NextEquityFinancing, IpoConversion, KnownDates, SoftCall].")
33
+ delivery_type: Optional[constr(strict=True, max_length=50, min_length=0)] = Field(None, alias="deliveryType", description="Is a conversion made into cash or into shares? Supported string (enumeration) values are: [Cash, Physical].")
34
+ exercise_type: constr(strict=True, max_length=50, min_length=0) = Field(..., alias="exerciseType", description="The exercise type of the conversion schedule (American or European). For American type, the bond is convertible from a given exercise date until the next date in the schedule, or until it matures. For European type, the bond is only convertible on the given exercise date. Supported string (enumeration) values are: [European, Bermudan, American].")
35
+ includes_accrued: Optional[StrictBool] = Field(None, alias="includesAccrued", description="Set this to true if a accrued interest is included in the conversion. Defaults to true.")
36
+ mandatory_conversion: Optional[StrictBool] = Field(None, alias="mandatoryConversion", description="Set this to true if a conversion is mandatory if the trigger occurs. Defaults to false.")
37
+ notification_period_end: Optional[datetime] = Field(None, alias="notificationPeriodEnd", description="The last day in the notification period for the conversion of the bond")
38
+ notification_period_start: Optional[datetime] = Field(None, alias="notificationPeriodStart", description="The first day in the notification period for the conversion of the bond")
39
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
40
+ additional_properties: Dict[str, Any] = {}
41
+ __properties = ["scheduleType", "identifiers", "bondConversionEntries", "conversionTrigger", "deliveryType", "exerciseType", "includesAccrued", "mandatoryConversion", "notificationPeriodEnd", "notificationPeriodStart"]
42
+
43
+ @validator('schedule_type')
44
+ def schedule_type_validate_enum(cls, value):
45
+ """Validates the enum"""
46
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
47
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
48
+ return value
49
+
50
+ class Config:
51
+ """Pydantic configuration"""
52
+ allow_population_by_field_name = True
53
+ validate_assignment = True
54
+
55
+ def to_str(self) -> str:
56
+ """Returns the string representation of the model using alias"""
57
+ return pprint.pformat(self.dict(by_alias=True))
58
+
59
+ def to_json(self) -> str:
60
+ """Returns the JSON representation of the model using alias"""
61
+ return json.dumps(self.to_dict())
62
+
63
+ @classmethod
64
+ def from_json(cls, json_str: str) -> BondConversionSchedule:
65
+ """Create an instance of BondConversionSchedule from a JSON string"""
66
+ return cls.from_dict(json.loads(json_str))
67
+
68
+ def to_dict(self):
69
+ """Returns the dictionary representation of the model using alias"""
70
+ _dict = self.dict(by_alias=True,
71
+ exclude={
72
+ "additional_properties"
73
+ },
74
+ exclude_none=True)
75
+ # override the default output from pydantic by calling `to_dict()` of each item in bond_conversion_entries (list)
76
+ _items = []
77
+ if self.bond_conversion_entries:
78
+ for _item in self.bond_conversion_entries:
79
+ if _item:
80
+ _items.append(_item.to_dict())
81
+ _dict['bondConversionEntries'] = _items
82
+ # puts key-value pairs in additional_properties in the top level
83
+ if self.additional_properties is not None:
84
+ for _key, _value in self.additional_properties.items():
85
+ _dict[_key] = _value
86
+
87
+ # set to None if identifiers (nullable) is None
88
+ # and __fields_set__ contains the field
89
+ if self.identifiers is None and "identifiers" in self.__fields_set__:
90
+ _dict['identifiers'] = None
91
+
92
+ # set to None if bond_conversion_entries (nullable) is None
93
+ # and __fields_set__ contains the field
94
+ if self.bond_conversion_entries is None and "bond_conversion_entries" in self.__fields_set__:
95
+ _dict['bondConversionEntries'] = None
96
+
97
+ # set to None if delivery_type (nullable) is None
98
+ # and __fields_set__ contains the field
99
+ if self.delivery_type is None and "delivery_type" in self.__fields_set__:
100
+ _dict['deliveryType'] = None
101
+
102
+ return _dict
103
+
104
+ @classmethod
105
+ def from_dict(cls, obj: dict) -> BondConversionSchedule:
106
+ """Create an instance of BondConversionSchedule from a dict"""
107
+ if obj is None:
108
+ return None
109
+
110
+ if not isinstance(obj, dict):
111
+ return BondConversionSchedule.parse_obj(obj)
112
+
113
+ _obj = BondConversionSchedule.parse_obj({
114
+ "schedule_type": obj.get("scheduleType"),
115
+ "identifiers": obj.get("identifiers"),
116
+ "bond_conversion_entries": [BondConversionEntry.from_dict(_item) for _item in obj.get("bondConversionEntries")] if obj.get("bondConversionEntries") is not None else None,
117
+ "conversion_trigger": obj.get("conversionTrigger"),
118
+ "delivery_type": obj.get("deliveryType"),
119
+ "exercise_type": obj.get("exerciseType"),
120
+ "includes_accrued": obj.get("includesAccrued"),
121
+ "mandatory_conversion": obj.get("mandatoryConversion"),
122
+ "notification_period_end": obj.get("notificationPeriodEnd"),
123
+ "notification_period_start": obj.get("notificationPeriodStart")
124
+ })
125
+ # store additional fields in additional_properties
126
+ for _key in obj.keys():
127
+ if _key not in cls.__properties:
128
+ _obj.additional_properties[_key] = obj.get(_key)
129
+
130
+ return _obj
@@ -39,15 +39,15 @@ class FixedSchedule(Schedule):
39
39
  payment_currency: StrictStr = Field(..., alias="paymentCurrency", description="Payment currency. This does not have to be the same as the nominal bond or observation/reset currency.")
40
40
  stub_type: Optional[StrictStr] = Field(None, alias="stubType", description="StubType required of the schedule Supported string (enumeration) values are: [ShortFront, ShortBack, LongBack, LongFront, Both].")
41
41
  ex_dividend_configuration: Optional[ExDividendConfiguration] = Field(None, alias="exDividendConfiguration")
42
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
42
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
43
43
  additional_properties: Dict[str, Any] = {}
44
44
  __properties = ["scheduleType", "startDate", "maturityDate", "flowConventions", "couponRate", "conventionName", "exDividendDays", "notional", "paymentCurrency", "stubType", "exDividendConfiguration"]
45
45
 
46
46
  @validator('schedule_type')
47
47
  def schedule_type_validate_enum(cls, value):
48
48
  """Validates the enum"""
49
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
50
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
49
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
50
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
51
51
  return value
52
52
 
53
53
  class Config:
@@ -45,15 +45,15 @@ class FloatSchedule(Schedule):
45
45
  ex_dividend_configuration: Optional[ExDividendConfiguration] = Field(None, alias="exDividendConfiguration")
46
46
  compounding: Optional[Compounding] = None
47
47
  reset_convention: Optional[constr(strict=True, max_length=16, min_length=0)] = Field(None, alias="resetConvention", description="Control how resets are generated relative to payment convention(s). Supported string (enumeration) values are: [InAdvance, InArrears].")
48
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
48
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
49
49
  additional_properties: Dict[str, Any] = {}
50
50
  __properties = ["scheduleType", "startDate", "maturityDate", "flowConventions", "conventionName", "exDividendDays", "indexConventionName", "indexConventions", "notional", "paymentCurrency", "spread", "stubType", "exDividendConfiguration", "compounding", "resetConvention"]
51
51
 
52
52
  @validator('schedule_type')
53
53
  def schedule_type_validate_enum(cls, value):
54
54
  """Validates the enum"""
55
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
56
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
55
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
56
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
57
57
  return value
58
58
 
59
59
  class Config:
@@ -32,15 +32,15 @@ class FxLinkedNotionalSchedule(Schedule):
32
32
  varying_notional_currency: StrictStr = Field(..., alias="varyingNotionalCurrency", description="The currency of the varying notional amount.")
33
33
  varying_notional_fixing_dates: RelativeDateOffset = Field(..., alias="varyingNotionalFixingDates")
34
34
  varying_notional_interim_exchange_payment_dates: Optional[RelativeDateOffset] = Field(None, alias="varyingNotionalInterimExchangePaymentDates")
35
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
35
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
36
36
  additional_properties: Dict[str, Any] = {}
37
37
  __properties = ["scheduleType", "fxConventions", "varyingNotionalCurrency", "varyingNotionalFixingDates", "varyingNotionalInterimExchangePaymentDates"]
38
38
 
39
39
  @validator('schedule_type')
40
40
  def schedule_type_validate_enum(cls, value):
41
41
  """Validates the enum"""
42
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
43
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
42
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
43
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
44
44
  return value
45
45
 
46
46
  class Config:
@@ -31,15 +31,15 @@ class FxRateSchedule(Schedule):
31
31
  fx_conversion_types: Optional[conlist(StrictStr)] = Field(None, alias="fxConversionTypes", description="List of flags to indicate if coupon payments, principal payments or both are converted")
32
32
  rate: Optional[Union[StrictFloat, StrictInt]] = Field(None, description="FxRate used to convert payments. Assumed to be in units of the ToCurrency so conversion is paymentAmount x fxRate")
33
33
  to_currency: Optional[StrictStr] = Field(None, alias="toCurrency", description="Currency that payments are converted to")
34
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
34
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
35
35
  additional_properties: Dict[str, Any] = {}
36
36
  __properties = ["scheduleType", "flowConventions", "fxConversionTypes", "rate", "toCurrency"]
37
37
 
38
38
  @validator('schedule_type')
39
39
  def schedule_type_validate_enum(cls, value):
40
40
  """Validates the enum"""
41
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
42
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
41
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
42
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
43
43
  return value
44
44
 
45
45
  class Config:
@@ -30,15 +30,15 @@ class OptionalitySchedule(Schedule):
30
30
  exercise_type: Optional[StrictStr] = Field(None, alias="exerciseType", description="The exercise type of the optionality schedule (American or European). For American type, the bond is perpetually callable from a given exercise date until it matures, or the next date in the schedule. For European type, the bond is only callable on a given exercise date. Supported string (enumeration) values are: [European, American].")
31
31
  option_entries: Optional[conlist(OptionEntry)] = Field(None, alias="optionEntries", description="The dates at which the bond call/put may be actioned, and associated strikes.")
32
32
  option_type: Optional[StrictStr] = Field(None, alias="optionType", description="Type of optionality for the schedule. Supported string (enumeration) values are: [Call, Put].")
33
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
33
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
34
34
  additional_properties: Dict[str, Any] = {}
35
35
  __properties = ["scheduleType", "exerciseType", "optionEntries", "optionType"]
36
36
 
37
37
  @validator('schedule_type')
38
38
  def schedule_type_validate_enum(cls, value):
39
39
  """Validates the enum"""
40
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
41
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
40
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
41
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
42
42
  return value
43
43
 
44
44
  class Config:
lusid/models/schedule.py CHANGED
@@ -26,14 +26,14 @@ class Schedule(BaseModel):
26
26
  """
27
27
  Base class for representing schedules in LUSID. This base class should not be directly instantiated; each supported ScheduleType has a corresponding inherited class. # noqa: E501
28
28
  """
29
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
29
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
30
30
  __properties = ["scheduleType"]
31
31
 
32
32
  @validator('schedule_type')
33
33
  def schedule_type_validate_enum(cls, value):
34
34
  """Validates the enum"""
35
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
36
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
35
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
36
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
37
37
  return value
38
38
 
39
39
  class Config:
@@ -46,6 +46,7 @@ class Schedule(BaseModel):
46
46
 
47
47
  # discriminator mappings
48
48
  __discriminator_value_class_map = {
49
+ 'BondConversionSchedule': 'BondConversionSchedule',
49
50
  'FixedSchedule': 'FixedSchedule',
50
51
  'FloatSchedule': 'FloatSchedule',
51
52
  'FxLinkedNotionalSchedule': 'FxLinkedNotionalSchedule',
@@ -72,7 +73,7 @@ class Schedule(BaseModel):
72
73
  return json.dumps(self.to_dict())
73
74
 
74
75
  @classmethod
75
- def from_json(cls, json_str: str) -> Union(FixedSchedule, FloatSchedule, FxLinkedNotionalSchedule, FxRateSchedule, OptionalitySchedule, StepSchedule):
76
+ def from_json(cls, json_str: str) -> Union(BondConversionSchedule, FixedSchedule, FloatSchedule, FxLinkedNotionalSchedule, FxRateSchedule, OptionalitySchedule, StepSchedule):
76
77
  """Create an instance of Schedule from a JSON string"""
77
78
  return cls.from_dict(json.loads(json_str))
78
79
 
@@ -85,7 +86,7 @@ class Schedule(BaseModel):
85
86
  return _dict
86
87
 
87
88
  @classmethod
88
- def from_dict(cls, obj: dict) -> Union(FixedSchedule, FloatSchedule, FxLinkedNotionalSchedule, FxRateSchedule, OptionalitySchedule, StepSchedule):
89
+ def from_dict(cls, obj: dict) -> Union(BondConversionSchedule, FixedSchedule, FloatSchedule, FxLinkedNotionalSchedule, FxRateSchedule, OptionalitySchedule, StepSchedule):
89
90
  """Create an instance of Schedule from a dict"""
90
91
  # look up the object type based on discriminator mapping
91
92
  object_type = cls.get_discriminator_value(obj)
@@ -36,6 +36,7 @@ class ScheduleType(str, Enum):
36
36
  EXERCISE = 'Exercise'
37
37
  FXRATESCHEDULE = 'FxRateSchedule'
38
38
  FXLINKEDNOTIONALSCHEDULE = 'FxLinkedNotionalSchedule'
39
+ BONDCONVERSIONSCHEDULE = 'BondConversionSchedule'
39
40
  INVALID = 'Invalid'
40
41
 
41
42
  @classmethod
@@ -30,15 +30,15 @@ class StepSchedule(Schedule):
30
30
  level_type: constr(strict=True, min_length=1) = Field(..., alias="levelType", description="The type of shift or adjustment that the quantity represents. Supported string (enumeration) values are: [Absolute, AbsoluteShift, Percentage, AbsolutePercentage].")
31
31
  step_schedule_type: constr(strict=True, min_length=1) = Field(..., alias="stepScheduleType", description="The type of step that this schedule is for. Supported string (enumeration) values are: [Coupon, Notional, Spread].")
32
32
  steps: conlist(LevelStep) = Field(..., description="The level steps which are applied.")
33
- schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, Invalid")
33
+ schedule_type: StrictStr = Field(..., alias="scheduleType", description="The available values are: FixedSchedule, FloatSchedule, OptionalitySchedule, StepSchedule, Exercise, FxRateSchedule, FxLinkedNotionalSchedule, BondConversionSchedule, Invalid")
34
34
  additional_properties: Dict[str, Any] = {}
35
35
  __properties = ["scheduleType", "levelType", "stepScheduleType", "steps"]
36
36
 
37
37
  @validator('schedule_type')
38
38
  def schedule_type_validate_enum(cls, value):
39
39
  """Validates the enum"""
40
- if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid'):
41
- raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'Invalid')")
40
+ if value not in ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid'):
41
+ raise ValueError("must be one of enum values ('FixedSchedule', 'FloatSchedule', 'OptionalitySchedule', 'StepSchedule', 'Exercise', 'FxRateSchedule', 'FxLinkedNotionalSchedule', 'BondConversionSchedule', 'Invalid')")
42
42
  return value
43
43
 
44
44
  class Config:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.149
3
+ Version: 2.1.157
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.6583
33
- - Package version: 2.1.149
32
+ - API version: 0.11.6591
33
+ - Package version: 2.1.157
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
 
@@ -818,6 +818,8 @@ Class | Method | HTTP request | Description
818
818
  - [BlockSetRequest](docs/BlockSetRequest.md)
819
819
  - [BlockedOrderRequest](docs/BlockedOrderRequest.md)
820
820
  - [Bond](docs/Bond.md)
821
+ - [BondConversionEntry](docs/BondConversionEntry.md)
822
+ - [BondConversionSchedule](docs/BondConversionSchedule.md)
821
823
  - [BondCouponEvent](docs/BondCouponEvent.md)
822
824
  - [BondDefaultEvent](docs/BondDefaultEvent.md)
823
825
  - [BondPrincipalEvent](docs/BondPrincipalEvent.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=91W_dgAwSilELVYA5PulvTRVIaEOtJ68MsxJvP9XtDM,109701
1
+ lusid/__init__.py,sha256=ofvK1WGq1Kn4FR1YuETjMikgAENOxKQNjLE3oIJzvGw,109898
2
2
  lusid/api/__init__.py,sha256=PFpT-ADthWd08-JqKOqQTbVW6cz9wdP_us6bg3aBFfs,5555
3
3
  lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
4
4
  lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
@@ -67,7 +67,7 @@ lusid/api/transaction_portfolios_api.py,sha256=7G5m6iTQXTKCc6ASdxnlVJjvFascHxEgD
67
67
  lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
68
68
  lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
69
69
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
70
- lusid/configuration.py,sha256=jaHSqTuHb3XadaK-8v3unyCGOAYvhgcaJtegp5GmlxE,14404
70
+ lusid/configuration.py,sha256=vxELEI5WHiPmGWopiiJS5VIVh4axdbJlmXALNnSscfc,14404
71
71
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
72
72
  lusid/extensions/__init__.py,sha256=L7EF4zKjcq1g2GodEumg1-C9xKs7YrQ0QHGPi8XbpO4,629
73
73
  lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
@@ -81,7 +81,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
81
81
  lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
82
82
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
83
83
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
84
- lusid/models/__init__.py,sha256=pNw66Pm9H9yBbmateMudSFJdjpaT1kM_2Sr7rLBujlM,103114
84
+ lusid/models/__init__.py,sha256=cDBsWUZgZIEOmeYLRzRTT_shkNWF0lGHibVnJKqrq-w,103311
85
85
  lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
86
86
  lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
87
87
  lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
@@ -156,6 +156,8 @@ lusid/models/block_request.py,sha256=oSYaZNOUZF4WGV-NhlyEkBu9eKQpnni5ATa_sjGMw5A
156
156
  lusid/models/block_set_request.py,sha256=rf_hhzmOX2F57W1yino-nh4YZ8NGSWiaJxeCLwOL9UI,2620
157
157
  lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x_ckzs-wI,5839
158
158
  lusid/models/bond.py,sha256=uJZue_Xf8zoEgklJfnRxJRM8c-NzLTEEI19oClJct3I,12280
159
+ lusid/models/bond_conversion_entry.py,sha256=DFS635pxCi5hsrfOfOxH6gWlAzUDD9D7u75NPCLZF6Q,3549
160
+ lusid/models/bond_conversion_schedule.py,sha256=ETxUYhDRyycn_LyLd2P8dT0bHS-Z1XrCYIQdc-vWm8k,7658
159
161
  lusid/models/bond_coupon_event.py,sha256=97q-bjCGfyKZG__qmaBNkXwIfS60zT47hFa5mhgjMfs,5249
160
162
  lusid/models/bond_default_event.py,sha256=by5lnvQh_RlQR0x7rhEriW_Q95glta5YATvBbUwUBPI,4727
161
163
  lusid/models/bond_principal_event.py,sha256=ygwCneWG8YmnNQEZZGnA8wxoY3cNduV31kXVq2XUvXc,5284
@@ -391,9 +393,9 @@ lusid/models/filter_step.py,sha256=59GcsBp_Y7D3MXN-_kZKRXcBYw9ZRDXMlH1Qm_TOj4g,3
391
393
  lusid/models/filter_step_request.py,sha256=uhDwkG1IrJdb5fUZIoJ6H95U-TVlpYXo7XRyspvk2Js,3360
392
394
  lusid/models/fixed_leg.py,sha256=HkKftiIQHb0f3pGE8ItI6Ep3EQTVnZ-WRAYGLmCjBfw,6618
393
395
  lusid/models/fixed_leg_all_of_overrides.py,sha256=JR8DwX7y3sO5i6vBEJHdBmaaJKQqLSAQd7AoMzp21Q0,2879
394
- lusid/models/fixed_schedule.py,sha256=GWEPNZF2aN7RNmGeOc-MDPcnynvo16RzQMPtgw0VCAg,7174
396
+ lusid/models/fixed_schedule.py,sha256=pTpKwncvp16eSrscuuTHli1W9L3hsuY1MHShcIqAh_k,7250
395
397
  lusid/models/flexible_loan.py,sha256=08jrLqECPsSfowr987Y5zy6zF0d7aTqIP-bCGnfB6WM,6252
396
- lusid/models/float_schedule.py,sha256=yvLpNB5bMFAbtgWEwOdHDaqbEFc97kMmdiur9ygV164,9196
398
+ lusid/models/float_schedule.py,sha256=inv9F0Y0owOfCv93NKs40-h5c7jdifauwh0ZQPxZ6xA,9272
397
399
  lusid/models/floating_leg.py,sha256=Q2W2Xk_j0Bh4jVDVigHK9i8DpudCtpkdW_AS8WiAAbI,7558
398
400
  lusid/models/flow_convention_name.py,sha256=HFTshKIRBvjLdmcd8FzM-6Jb6-dlq-yTOwjCw0p2ZME,2813
399
401
  lusid/models/flow_conventions.py,sha256=OJBFQ28_-Wp5VCQ_CXwLksvz--6kysJh3zUF8xM8ORE,10512
@@ -418,9 +420,9 @@ lusid/models/fx_forward_settlement_event.py,sha256=m0cmCjC6PQvIGpPJ2IlSdUAEzGXXJ
418
420
  lusid/models/fx_forward_tenor_curve_data.py,sha256=S1kHnkg2Fpds9xDXzjLxBoUXGb70uDsEBg0zkNxfs1Q,7547
419
421
  lusid/models/fx_forward_tenor_pips_curve_data.py,sha256=S8fQm_x1CiHXAQAMs4Pp7bczo7DWfUpRTzbhbs-r-zw,7645
420
422
  lusid/models/fx_forwards_dependency.py,sha256=0ziw4k_SX5hMqWJdZ0pYxRVL2xWD7d0hLgFOHQqosR0,5238
421
- lusid/models/fx_linked_notional_schedule.py,sha256=n7LIEIfIiCu3hxvsQ7O6JVIlAKJK2jD72My2k4poukI,5408
423
+ lusid/models/fx_linked_notional_schedule.py,sha256=R5uAwhjQ3FGSeV4UIsP49FEV0SwWjPXs9HEAlX9eLCc,5484
422
424
  lusid/models/fx_option.py,sha256=grXe2UQptStegP3kfhv0RVHsPVtMOgk7E6cKAJCc8NQ,11849
423
- lusid/models/fx_rate_schedule.py,sha256=CzwGlFM_cHg5pvmEFFVkfOoVmWhZO02mcuzapjZTfco,5183
425
+ lusid/models/fx_rate_schedule.py,sha256=uFIPAVyiyRSzF9MG2pbusqd6XXn7QrO29KyyyEUhY5Y,5259
424
426
  lusid/models/fx_swap.py,sha256=qMrqswj-rnljtRJvpEnyfbFFRTfouZOHBDYFtfrx6ow,6948
425
427
  lusid/models/fx_tenor_convention.py,sha256=KF4ZmP8U8FtVpAjUa6zI57qldYiFCs-5SMiimU70ddY,2456
426
428
  lusid/models/fx_vol_dependency.py,sha256=mCRJuSff0O7tKRB6pfL60xbeRS7f9lzWx6CHVd2xnco,4948
@@ -565,7 +567,7 @@ lusid/models/operation.py,sha256=LtqUFww2hQy0sa9kdCpHPz3XSvtHxqsWtRKjRDku2TA,251
565
567
  lusid/models/operation_type.py,sha256=kUOhDAUWv4sYAaZwRlXwaowlr_jBw9uUmsW1ffRsMv8,644
566
568
  lusid/models/operator.py,sha256=pET4TePqHQQxhblcnIQjtda3Y7a5H864MUFMJBE4loE,797
567
569
  lusid/models/option_entry.py,sha256=KJfFze7xIJxeIJ7hXxJhkUydFhg9KJU4rIAfLdBaT8k,2136
568
- lusid/models/optionality_schedule.py,sha256=8K9u_8rPLkkAr9HwGi62hsiVwH-4VeZQijfAnjxAMZg,5425
570
+ lusid/models/optionality_schedule.py,sha256=lZh9nWhUmmkcfzAjsM8qvTAtXf4Fm97vhIbqD-EIboU,5501
569
571
  lusid/models/order.py,sha256=-47dm6-P-pNB--pBRn6UxGCv7Az7ECBAgoykBdR3agM,9659
570
572
  lusid/models/order_by_spec.py,sha256=9RyLPdTBImMEcjhN2mq-BtMykndyNLZSpJ3xO_biaZk,2319
571
573
  lusid/models/order_flow_configuration.py,sha256=2Hkp1PwSVqdfawZq07A_nIoPqH-41yEhC_6aIvk3e98,1979
@@ -865,8 +867,8 @@ lusid/models/rounding_configuration_component.py,sha256=bLKRyNkrImXApHRSxODZ0Kp6
865
867
  lusid/models/rounding_convention.py,sha256=wHP76MnZGN_2m25x7fRsNA6mkcCLmkHx-YSGSRRnrzk,3968
866
868
  lusid/models/rules_interval.py,sha256=1lObUnebloPZiC_7G3vEhvjmBElwhnyp_QrIH5hVRTA,2786
867
869
  lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-DxMlg0,699
868
- lusid/models/schedule.py,sha256=MVaZMITw7n7WrJYHlZ0UDSi89ypQ-MDpxcuPnpzapYo,4032
869
- lusid/models/schedule_type.py,sha256=uhuSEg1BNpgNkbKtUEK8FLs_Tf0TeotY6fStjQNxMto,901
870
+ lusid/models/schedule.py,sha256=IQeymxyyU0fHANXmPICy6vUQ2sDC9KoyUk9U_X23wTU,4216
871
+ lusid/models/schedule_type.py,sha256=hdAqhI4A6L1z-Ipwd2xaecMiTCFqRN1Bz1Lc2BWXZTg,955
870
872
  lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
871
873
  lusid/models/scrip_dividend_event.py,sha256=UeHCkzvWUY8vsfWkAaiE6xLsaomfdmMuTHvk5sFp8gI,6273
872
874
  lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
@@ -902,7 +904,7 @@ lusid/models/staging_rule.py,sha256=RxvQoGTR8tShrGw4MLFhaR5L4kxdjeXK8hCGp0kagsk,
902
904
  lusid/models/staging_rule_approval_criteria.py,sha256=qmAPg2CfdCQvgSiSLte1n9PAz0fYipc8oDVb2QaMIxk,2687
903
905
  lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAktEN5cITthxm9F-w,3561
904
906
  lusid/models/staging_rule_set.py,sha256=05h5vV_9s3V2MYoH7o1K8pmjlUq15jJSsmyJ5ObRyKs,4896
905
- lusid/models/step_schedule.py,sha256=uNakrJcB9X3e31PekjEBbu_MLbKr77P-57Qf1Ot3uPg,4504
907
+ lusid/models/step_schedule.py,sha256=1xCC_C_GzTIOY8GPUIaF75YoieJ6fwV4qQFQHTsJypg,4580
906
908
  lusid/models/stock_dividend_event.py,sha256=3yp3JNGjMtnd4g9t3Ilig_K75Weh9U5ZZVDC8jPZ5ic,6311
907
909
  lusid/models/stock_split_event.py,sha256=-KLO1YPa4wfT-dafdoRjHGP7yqBioxsu5SVev1kW6qQ,6255
908
910
  lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
@@ -1069,6 +1071,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
1069
1071
  lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
1070
1072
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1071
1073
  lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
1072
- lusid_sdk-2.1.149.dist-info/METADATA,sha256=wPY55Y_ZGDtM_OjuVLAMj8cQnipqs0jfG7m1oihleso,187686
1073
- lusid_sdk-2.1.149.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1074
- lusid_sdk-2.1.149.dist-info/RECORD,,
1074
+ lusid_sdk-2.1.157.dist-info/METADATA,sha256=LiHhXDcgkbr9qUuBHYDGalli54rRrYvVA08TKdgouYA,187800
1075
+ lusid_sdk-2.1.157.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1076
+ lusid_sdk-2.1.157.dist-info/RECORD,,