lusid-sdk 2.1.680__py3-none-any.whl → 2.1.682__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/configuration.py +1 -1
- lusid/models/cash_and_security_offer_election.py +1 -1
- lusid/models/cash_offer_election.py +1 -1
- lusid/models/fund_request.py +1 -1
- lusid/models/security_offer_election.py +1 -1
- {lusid_sdk-2.1.680.dist-info → lusid_sdk-2.1.682.dist-info}/METADATA +1 -1
- {lusid_sdk-2.1.680.dist-info → lusid_sdk-2.1.682.dist-info}/RECORD +8 -8
- {lusid_sdk-2.1.680.dist-info → lusid_sdk-2.1.682.dist-info}/WHEEL +0 -0
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.
|
448
|
+
"Version of the API: 0.11.7299\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -24,7 +24,7 @@ from lusid.models.units_ratio import UnitsRatio
|
|
24
24
|
|
25
25
|
class CashAndSecurityOfferElection(BaseModel):
|
26
26
|
"""
|
27
|
-
|
27
|
+
Election for events that result in both cash and equity via a merger or acquisition # noqa: E501
|
28
28
|
"""
|
29
29
|
cash_offer_currency: StrictStr = Field(..., alias="cashOfferCurrency", description="Currency of the cash offer")
|
30
30
|
cash_offer_price: Union[StrictFloat, StrictInt] = Field(..., alias="cashOfferPrice", description="Price per share of the cash offer")
|
@@ -23,7 +23,7 @@ from pydantic.v1 import BaseModel, Field, StrictBool, StrictFloat, StrictInt, St
|
|
23
23
|
|
24
24
|
class CashOfferElection(BaseModel):
|
25
25
|
"""
|
26
|
-
|
26
|
+
Election for events that result in cash via a merger or acquisition # noqa: E501
|
27
27
|
"""
|
28
28
|
cash_offer_currency: StrictStr = Field(..., alias="cashOfferCurrency", description="Currency of the cash offer")
|
29
29
|
cash_offer_price: Union[StrictFloat, StrictInt] = Field(..., alias="cashOfferPrice", description="Price per share of the cash offer")
|
lusid/models/fund_request.py
CHANGED
@@ -32,7 +32,7 @@ class FundRequest(BaseModel):
|
|
32
32
|
code: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The code given for the Fund.")
|
33
33
|
display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="The name of the Fund.")
|
34
34
|
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the Fund.")
|
35
|
-
fund_configuration_id:
|
35
|
+
fund_configuration_id: ResourceId = Field(..., alias="fundConfigurationId")
|
36
36
|
abor_id: ResourceId = Field(..., alias="aborId")
|
37
37
|
share_class_instrument_scopes: Optional[conlist(StrictStr, max_items=1)] = Field(None, alias="shareClassInstrumentScopes", description="The scopes in which the instruments lie, currently limited to one.")
|
38
38
|
share_class_instruments: Optional[conlist(InstrumentResolutionDetail)] = Field(None, alias="shareClassInstruments", description="Details the user-provided instrument identifiers and the instrument resolved from them.")
|
@@ -24,7 +24,7 @@ from lusid.models.units_ratio import UnitsRatio
|
|
24
24
|
|
25
25
|
class SecurityOfferElection(BaseModel):
|
26
26
|
"""
|
27
|
-
|
27
|
+
Election for events that result in cash via a merger or acquisition # noqa: E501
|
28
28
|
"""
|
29
29
|
election_key: constr(strict=True, min_length=1) = Field(..., alias="electionKey", description="Unique key associated to this election.")
|
30
30
|
is_chosen: Optional[StrictBool] = Field(None, alias="isChosen", description="Is this the election that has been explicitly chosen from multiple options.")
|
@@ -71,7 +71,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
71
71
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
72
72
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
73
73
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
74
|
-
lusid/configuration.py,sha256=
|
74
|
+
lusid/configuration.py,sha256=CHMZoENGJBJJ7qGMpc3K85c1ZawPKJV9mvj8oGfEp1w,17972
|
75
75
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
76
76
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
77
77
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -203,7 +203,7 @@ lusid/models/cancelled_placement_result.py,sha256=8MUqmJ9zXIkLE9BFXP9k7YPAxv94He
|
|
203
203
|
lusid/models/cap_floor.py,sha256=8p920dtIb9McH7QCLctog6yByeL9LeAZjVAIjTSjoqo,8075
|
204
204
|
lusid/models/capital_distribution_event.py,sha256=y16Z7xKvgPs4yZakqoCaGeZNn28GaqNOHlk7PGUHeqs,8822
|
205
205
|
lusid/models/cash.py,sha256=ehMFinooLmkO3xEAJonFT2fRJIMLc70dMYxMAzXtN1o,5312
|
206
|
-
lusid/models/cash_and_security_offer_election.py,sha256=
|
206
|
+
lusid/models/cash_and_security_offer_election.py,sha256=K1VEfFh5Fw5ZayVjVfXhzIEhjy4nJ_SNGW0RcpKC4TA,4229
|
207
207
|
lusid/models/cash_dependency.py,sha256=8ARBxSf64qbQyrBFz4VrqWhSkcdQHwL3kuC6o73kxL0,4395
|
208
208
|
lusid/models/cash_dividend_event.py,sha256=Q6f6IlYnQDYVGmWr89ugztCONrFTf7-tUADUHyKd1uA,8773
|
209
209
|
lusid/models/cash_election.py,sha256=Od1rd9OKrvz9Y-Sk8yet5REm1f3I3gbQcfGyXE77tHc,4095
|
@@ -212,7 +212,7 @@ lusid/models/cash_flow_lineage.py,sha256=86XaROMcEF-SZ-o65HwQvM66gR79Q6d8nN159xO
|
|
212
212
|
lusid/models/cash_flow_value.py,sha256=WWwW8vAQvckQs_bVZvej5e0Qyuslm1dBd0CGahcntgw,5312
|
213
213
|
lusid/models/cash_flow_value_set.py,sha256=Y6HG5BtAEmSvx4zrvRoTwu6AawoqAvtWdFbI9aQP1XY,4637
|
214
214
|
lusid/models/cash_ladder_record.py,sha256=6x8iQ3s8SYhUGJeiSBdfQB1itfHXyzArgEguSnCvwQ0,2498
|
215
|
-
lusid/models/cash_offer_election.py,sha256=
|
215
|
+
lusid/models/cash_offer_election.py,sha256=1yE3oUZBgX4vEEui2sryo9M9UGIfDV-hNh2K67DgPVY,3227
|
216
216
|
lusid/models/cash_perpetual.py,sha256=kU3Q8vft2tdk2GfR0FM4ca-IX5KKZs8kG7ZaAY0EIYA,5632
|
217
217
|
lusid/models/cds_credit_event.py,sha256=7dXulTEmj97nk0yZrt87Xc0qDS2ZvddQ_rnzQQLRD5E,7989
|
218
218
|
lusid/models/cds_flow_conventions.py,sha256=Id438OngM9SNKRSR1xRYph7c41PpH-DYD5jHrdQlM7k,8374
|
@@ -466,7 +466,7 @@ lusid/models/fund_id_list.py,sha256=EKhvNkq72-TPUgos1k2jZ1AsUEEEEL3fMEBWOXd2CpE,
|
|
466
466
|
lusid/models/fund_pnl_breakdown.py,sha256=OOrN13tJkrirnv3-mlCn0UiS5QPmvTO2zamJLJvbGqo,4634
|
467
467
|
lusid/models/fund_previous_nav.py,sha256=pti9A9nJi1lsYPkc7eLpQznUXTY8s7mQqh-yjPCP6lQ,2143
|
468
468
|
lusid/models/fund_properties.py,sha256=MM7AlwoHcFBqXw2_tZHIGE4g3bzu151mDx_mQ315ses,4455
|
469
|
-
lusid/models/fund_request.py,sha256=
|
469
|
+
lusid/models/fund_request.py,sha256=xKpG3E3PCfgFJ4H81iUudIySRyOh5MEzkM5O7RB18-Y,8547
|
470
470
|
lusid/models/fund_share_class.py,sha256=SnuokGuhb11BAfx3kUTODOeQZcXNN87k0Nde0NUIEd0,8108
|
471
471
|
lusid/models/fund_valuation_point_data.py,sha256=52yB7Ctf5JN3SiZKTCafufa314dsyIszrf0V_H1buaM,7023
|
472
472
|
lusid/models/funding_leg.py,sha256=59p4wE-gU2GRP192CpDLFKy9wssct4xnm1SyfKP6Wjo,7833
|
@@ -1014,7 +1014,7 @@ lusid/models/scope_definition.py,sha256=amGUrR9loReaIZSmfKGf5LH5yEaXkDyNPPR7qFBE
|
|
1014
1014
|
lusid/models/scrip_dividend_event.py,sha256=VRGcClQGS0ERS38CseRzXZQ09D_vcMNRDa14Cec4jmU,9744
|
1015
1015
|
lusid/models/script_map_reference.py,sha256=Wgi2_AqwEmyrBIKtXQCeAG2Ex3swQ0DN546XPZorbh0,3570
|
1016
1016
|
lusid/models/security_election.py,sha256=zqwTn6VsifxqvwBlZaF1KH0ZWcRkWsGbh1jlBkIAXm0,3642
|
1017
|
-
lusid/models/security_offer_election.py,sha256=
|
1017
|
+
lusid/models/security_offer_election.py,sha256=u564s3axpz5ISkx-DYJnNkmOr1cWsX43_Kv1wODtEpw,3217
|
1018
1018
|
lusid/models/sequence_definition.py,sha256=9iVpGQUPRw2wrezMruT7u3uRsR-d0QcqC4a4EA1OH2E,4652
|
1019
1019
|
lusid/models/set_amortisation_rules_request.py,sha256=NuZO9en7Rq_AqQrSvsmzwnXGkN8AJrw7xhwxi2cDudY,2498
|
1020
1020
|
lusid/models/set_legal_entity_identifiers_request.py,sha256=J-LB8ItW1tbXmvBG8XS_5A13SVOkHtXDvpwr_Ygwum8,3158
|
@@ -1254,6 +1254,6 @@ lusid/models/workspace_update_request.py,sha256=5N7j21uF9XV75Sl3oJbsSOKT5PrQEx3y
|
|
1254
1254
|
lusid/models/yield_curve_data.py,sha256=vtOzY4t2lgHJUWcna9dEKnuZ_tinolyb8IAFPB23DZ0,6543
|
1255
1255
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1256
1256
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1257
|
-
lusid_sdk-2.1.
|
1258
|
-
lusid_sdk-2.1.
|
1259
|
-
lusid_sdk-2.1.
|
1257
|
+
lusid_sdk-2.1.682.dist-info/METADATA,sha256=jnDKdRSaUsmbiFX_AXi-htVsgWj7yWk92RrXiBCODvo,213719
|
1258
|
+
lusid_sdk-2.1.682.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1259
|
+
lusid_sdk-2.1.682.dist-info/RECORD,,
|
File without changes
|