lusid-sdk 2.1.70__py3-none-any.whl → 2.1.76__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 +1 -1
- lusid/models/create_relationship_definition_request.py +2 -2
- lusid/models/related_entity.py +1 -1
- {lusid_sdk-2.1.70.dist-info → lusid_sdk-2.1.76.dist-info}/METADATA +3 -3
- {lusid_sdk-2.1.70.dist-info → lusid_sdk-2.1.76.dist-info}/RECORD +6 -6
- {lusid_sdk-2.1.70.dist-info → lusid_sdk-2.1.76.dist-info}/WHEEL +0 -0
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.
|
|
376
|
+
"Version of the API: 0.11.6510\n"\
|
|
377
377
|
"SDK Package Version: {package_version}".\
|
|
378
378
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
|
379
379
|
|
|
@@ -27,8 +27,8 @@ class CreateRelationshipDefinitionRequest(BaseModel):
|
|
|
27
27
|
"""
|
|
28
28
|
scope: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The scope that the relationship definition exists in.")
|
|
29
29
|
code: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The code of the relationship definition. Together with the scope this uniquely defines the relationship definition.")
|
|
30
|
-
source_entity_type: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="sourceEntityType", description="The entity type of the source entity object. Allowed values are 'Portfolio', 'PortfolioGroup', 'Person', 'LegalEntity' or a custom entity type prefixed with '~'.")
|
|
31
|
-
target_entity_type: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="targetEntityType", description="The entity type of the target entity object. Allowed values are 'Portfolio', 'PortfolioGroup', 'Person', 'LegalEntity' or a custom entity type prefixed with '~'.")
|
|
30
|
+
source_entity_type: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="sourceEntityType", description="The entity type of the source entity object. Allowed values are 'Portfolio', 'PortfolioGroup', 'Person', 'LegalEntity', 'Instrument' or a custom entity type prefixed with '~'.")
|
|
31
|
+
target_entity_type: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="targetEntityType", description="The entity type of the target entity object. Allowed values are 'Portfolio', 'PortfolioGroup', 'Person', 'LegalEntity', 'Instrument' or a custom entity type prefixed with '~'.")
|
|
32
32
|
display_name: constr(strict=True, max_length=512, min_length=1) = Field(..., alias="displayName", description="The display name of the relationship definition.")
|
|
33
33
|
outward_description: constr(strict=True, max_length=512, min_length=1) = Field(..., alias="outwardDescription", description="The description to relate source entity object and target entity object.")
|
|
34
34
|
inward_description: constr(strict=True, max_length=512, min_length=1) = Field(..., alias="inwardDescription", description="The description to relate target entity object and source entity object.")
|
lusid/models/related_entity.py
CHANGED
|
@@ -29,7 +29,7 @@ class RelatedEntity(BaseModel):
|
|
|
29
29
|
Information about the other related entity in the relationship # noqa: E501
|
|
30
30
|
"""
|
|
31
31
|
entity_type: constr(strict=True, min_length=1) = Field(..., alias="entityType", description="The type of the entity.")
|
|
32
|
-
entity_id: Dict[str, StrictStr] = Field(..., alias="entityId", description="The identifier of the other related entity in the relationship. It contains 'scope' and 'code' as keys for identifiers of a Portfolio or Portfolio Group, or 'idTypeScope', 'idTypeCode', 'code' as keys for identifiers of a Person or Legal
|
|
32
|
+
entity_id: Dict[str, StrictStr] = Field(..., alias="entityId", description="The identifier of the other related entity in the relationship. It contains 'scope' and 'code' as keys for identifiers of a Portfolio or Portfolio Group, or 'idTypeScope', 'idTypeCode', 'code' as keys for identifiers of a Person or Legal entity, or 'scope', 'identifierType', 'identifierValue' as keys for identifiers of an Instrument")
|
|
33
33
|
display_name: constr(strict=True, min_length=1) = Field(..., alias="displayName", description="The display name of the entity.")
|
|
34
34
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="The properties of the entity. This field is empty until further notice.")
|
|
35
35
|
scope: Optional[StrictStr] = Field(None, description="The scope of the identifier")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.76
|
|
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.
|
|
33
|
-
- Package version: 2.1.
|
|
32
|
+
- API version: 0.11.6510
|
|
33
|
+
- Package version: 2.1.76
|
|
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
|
|
|
@@ -65,7 +65,7 @@ lusid/api/transaction_portfolios_api.py,sha256=q6AoYasxV3LQDossmM2BdJSo3arh526yU
|
|
|
65
65
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
66
66
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
67
67
|
lusid/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
|
68
|
-
lusid/configuration.py,sha256=
|
|
68
|
+
lusid/configuration.py,sha256=nbkfC--SdA3Wm9ABWr_lHE3kCdQqDE3Cv3QJYfy-u-w,14404
|
|
69
69
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
70
70
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
71
71
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -263,7 +263,7 @@ lusid/models/create_reconciliation_request.py,sha256=QDbK3rJRsKeobn7VnR5Dp0Gm49F
|
|
|
263
263
|
lusid/models/create_reference_portfolio_request.py,sha256=yFEKW__RlQH7FtOh4aX88VJPwESgwaQEDdvrr_heDtc,5018
|
|
264
264
|
lusid/models/create_relation_definition_request.py,sha256=CbhwygtZRbBwi6TPqZKwU00nDmck_1Jyy9mlIVZcOdk,4662
|
|
265
265
|
lusid/models/create_relation_request.py,sha256=_TPhFjqdlfhXsJlgJpIivNtU1MNcznL1bYrk554hzzA,2202
|
|
266
|
-
lusid/models/create_relationship_definition_request.py,sha256=
|
|
266
|
+
lusid/models/create_relationship_definition_request.py,sha256=8aE2H2pFnFV1cm-XirA-JCSXuAqFxcFoxy_czWo0KKM,6630
|
|
267
267
|
lusid/models/create_relationship_request.py,sha256=T5TLdyu2VVk9-ipbeDSCn2vTtKCUvlBoz4oBEmljfgo,4060
|
|
268
268
|
lusid/models/create_sequence_request.py,sha256=5nCcIM4RrExb2Gemet66DcQUPKn_qulgV9660cKWa4M,4885
|
|
269
269
|
lusid/models/create_staging_rule_set_request.py,sha256=jFVJWrm19GYg20ESIgoJoqrL1WuGfbSV-EiZKWI77aU,3350
|
|
@@ -735,7 +735,7 @@ lusid/models/reference_list_type.py,sha256=wykOJIDkHZjjLjmOyIwCKRGyOppI3-E8iVmG1
|
|
|
735
735
|
lusid/models/reference_portfolio_constituent.py,sha256=vELtFLVORa6BTSq5NtB0i-_uX07u_91-I99sWHsE3ig,4708
|
|
736
736
|
lusid/models/reference_portfolio_constituent_request.py,sha256=uL6c9CWtqWj0Kj5ofcZIHGoL0Dz99OTxzinTYt-eQrM,3548
|
|
737
737
|
lusid/models/reference_portfolio_weight_type.py,sha256=5rggGu_sCoc_lRpGyQRMA10l3KFix-rak7v2YdMOqWo,759
|
|
738
|
-
lusid/models/related_entity.py,sha256=
|
|
738
|
+
lusid/models/related_entity.py,sha256=vYytZksUM93P-wY5v2c3uvfAMgEuI0wLhtEzJSTMRYs,5522
|
|
739
739
|
lusid/models/relation.py,sha256=8dMUEpebYI2SrMNiUqr_qC-zirnLvZjNAF_rAuItDgo,3418
|
|
740
740
|
lusid/models/relation_definition.py,sha256=NoqBf1gN5c5PjPxnetWJqPPGkU4GPV4CCXTVTVwTL1A,6914
|
|
741
741
|
lusid/models/relationship.py,sha256=0-ns6HuERVBMgWwEmaiNCSIQ5ewT1XjPymr1t0t2a6s,4838
|
|
@@ -1019,6 +1019,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1019
1019
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1020
1020
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1021
1021
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1022
|
-
lusid_sdk-2.1.
|
|
1023
|
-
lusid_sdk-2.1.
|
|
1024
|
-
lusid_sdk-2.1.
|
|
1022
|
+
lusid_sdk-2.1.76.dist-info/METADATA,sha256=Hia5SL11tXwyl7T8NPriNyPuRfXhvM-Jy8w0-Lb1g-A,180159
|
|
1023
|
+
lusid_sdk-2.1.76.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1024
|
+
lusid_sdk-2.1.76.dist-info/RECORD,,
|
|
File without changes
|