lusid-sdk 2.1.140__py3-none-any.whl → 2.1.141__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/api/funds_api.py +5 -5
- lusid/configuration.py +1 -1
- lusid/models/deleted_entity_response.py +15 -1
- {lusid_sdk-2.1.140.dist-info → lusid_sdk-2.1.141.dist-info}/METADATA +8 -8
- {lusid_sdk-2.1.140.dist-info → lusid_sdk-2.1.141.dist-info}/RECORD +6 -6
- {lusid_sdk-2.1.140.dist-info → lusid_sdk-2.1.141.dist-info}/WHEEL +0 -0
lusid/api/funds_api.py
CHANGED
|
@@ -403,7 +403,7 @@ class FundsApi:
|
|
|
403
403
|
}
|
|
404
404
|
|
|
405
405
|
return self.api_client.call_api(
|
|
406
|
-
'/api/funds/{scope}/{code}/
|
|
406
|
+
'/api/funds/{scope}/{code}/fees/{feeCode}', 'POST',
|
|
407
407
|
_path_params,
|
|
408
408
|
_query_params,
|
|
409
409
|
_header_params,
|
|
@@ -736,7 +736,7 @@ class FundsApi:
|
|
|
736
736
|
}
|
|
737
737
|
|
|
738
738
|
return self.api_client.call_api(
|
|
739
|
-
'/api/funds/{scope}/{code}/
|
|
739
|
+
'/api/funds/{scope}/{code}/fees/{feeCode}', 'DELETE',
|
|
740
740
|
_path_params,
|
|
741
741
|
_query_params,
|
|
742
742
|
_header_params,
|
|
@@ -1431,7 +1431,7 @@ class FundsApi:
|
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
return self.api_client.call_api(
|
|
1434
|
-
'/api/funds/{scope}/{code}/
|
|
1434
|
+
'/api/funds/{scope}/{code}/fees/{feeCode}', 'GET',
|
|
1435
1435
|
_path_params,
|
|
1436
1436
|
_query_params,
|
|
1437
1437
|
_header_params,
|
|
@@ -2023,7 +2023,7 @@ class FundsApi:
|
|
|
2023
2023
|
}
|
|
2024
2024
|
|
|
2025
2025
|
return self.api_client.call_api(
|
|
2026
|
-
'/api/funds/{scope}/{code}/
|
|
2026
|
+
'/api/funds/{scope}/{code}/fees', 'GET',
|
|
2027
2027
|
_path_params,
|
|
2028
2028
|
_query_params,
|
|
2029
2029
|
_header_params,
|
|
@@ -2409,7 +2409,7 @@ class FundsApi:
|
|
|
2409
2409
|
}
|
|
2410
2410
|
|
|
2411
2411
|
return self.api_client.call_api(
|
|
2412
|
-
'/api/funds/{scope}/{code}/
|
|
2412
|
+
'/api/funds/{scope}/{code}/fees/{feeCode}', 'PATCH',
|
|
2413
2413
|
_path_params,
|
|
2414
2414
|
_query_params,
|
|
2415
2415
|
_header_params,
|
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.6575\n"\
|
|
377
377
|
"SDK Package Version: {package_version}".\
|
|
378
378
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
|
379
379
|
|
|
@@ -29,8 +29,10 @@ class DeletedEntityResponse(BaseModel):
|
|
|
29
29
|
href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
|
|
30
30
|
effective_from: Optional[datetime] = Field(None, alias="effectiveFrom", description="The effective datetime at which the deletion became valid. May be null in the case where multiple date times are applicable.")
|
|
31
31
|
as_at: datetime = Field(..., alias="asAt", description="The asAt datetime at which the deletion was committed to LUSID.")
|
|
32
|
+
entity_type: Optional[StrictStr] = Field(None, alias="entityType", description="The type of the entity that the deleted response applies to.")
|
|
33
|
+
entity_unique_id: Optional[StrictStr] = Field(None, alias="entityUniqueId", description="The unique Id of the entity that the deleted response applies to.")
|
|
32
34
|
links: Optional[conlist(Link)] = None
|
|
33
|
-
__properties = ["href", "effectiveFrom", "asAt", "links"]
|
|
35
|
+
__properties = ["href", "effectiveFrom", "asAt", "entityType", "entityUniqueId", "links"]
|
|
34
36
|
|
|
35
37
|
class Config:
|
|
36
38
|
"""Pydantic configuration"""
|
|
@@ -73,6 +75,16 @@ class DeletedEntityResponse(BaseModel):
|
|
|
73
75
|
if self.effective_from is None and "effective_from" in self.__fields_set__:
|
|
74
76
|
_dict['effectiveFrom'] = None
|
|
75
77
|
|
|
78
|
+
# set to None if entity_type (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.entity_type is None and "entity_type" in self.__fields_set__:
|
|
81
|
+
_dict['entityType'] = None
|
|
82
|
+
|
|
83
|
+
# set to None if entity_unique_id (nullable) is None
|
|
84
|
+
# and __fields_set__ contains the field
|
|
85
|
+
if self.entity_unique_id is None and "entity_unique_id" in self.__fields_set__:
|
|
86
|
+
_dict['entityUniqueId'] = None
|
|
87
|
+
|
|
76
88
|
# set to None if links (nullable) is None
|
|
77
89
|
# and __fields_set__ contains the field
|
|
78
90
|
if self.links is None and "links" in self.__fields_set__:
|
|
@@ -93,6 +105,8 @@ class DeletedEntityResponse(BaseModel):
|
|
|
93
105
|
"href": obj.get("href"),
|
|
94
106
|
"effective_from": obj.get("effectiveFrom"),
|
|
95
107
|
"as_at": obj.get("asAt"),
|
|
108
|
+
"entity_type": obj.get("entityType"),
|
|
109
|
+
"entity_unique_id": obj.get("entityUniqueId"),
|
|
96
110
|
"links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
|
|
97
111
|
})
|
|
98
112
|
return _obj
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.141
|
|
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.6575
|
|
33
|
+
- Package version: 2.1.141
|
|
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
|
|
|
@@ -404,18 +404,18 @@ Class | Method | HTTP request | Description
|
|
|
404
404
|
*FeeTypesApi* | [**list_fee_types**](docs/FeeTypesApi.md#list_fee_types) | **GET** /api/feetypes | [EXPERIMENTAL] ListFeeTypes: List FeeTypes
|
|
405
405
|
*FeeTypesApi* | [**update_fee_type**](docs/FeeTypesApi.md#update_fee_type) | **PUT** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] UpdateFeeType: Update a FeeType.
|
|
406
406
|
*FundsApi* | [**accept_estimate_point**](docs/FundsApi.md#accept_estimate_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$acceptestimate | [EXPERIMENTAL] AcceptEstimatePoint: Accepts an Estimate Valuation Point.
|
|
407
|
-
*FundsApi* | [**create_fee**](docs/FundsApi.md#create_fee) | **POST** /api/funds/{scope}/{code}/
|
|
407
|
+
*FundsApi* | [**create_fee**](docs/FundsApi.md#create_fee) | **POST** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] CreateFee: Create a Fee.
|
|
408
408
|
*FundsApi* | [**create_fund**](docs/FundsApi.md#create_fund) | **POST** /api/funds/{scope} | [EXPERIMENTAL] CreateFund: Create a Fund.
|
|
409
|
-
*FundsApi* | [**delete_fee**](docs/FundsApi.md#delete_fee) | **DELETE** /api/funds/{scope}/{code}/
|
|
409
|
+
*FundsApi* | [**delete_fee**](docs/FundsApi.md#delete_fee) | **DELETE** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] DeleteFee: Delete a Fee.
|
|
410
410
|
*FundsApi* | [**delete_fund**](docs/FundsApi.md#delete_fund) | **DELETE** /api/funds/{scope}/{code} | [EXPERIMENTAL] DeleteFund: Delete a Fund.
|
|
411
411
|
*FundsApi* | [**delete_valuation_point**](docs/FundsApi.md#delete_valuation_point) | **DELETE** /api/funds/{scope}/{code}/valuationpoints/{diaryEntryCode} | [EXPERIMENTAL] DeleteValuationPoint: Delete a Valuation Point.
|
|
412
412
|
*FundsApi* | [**finalise_candidate_valuation**](docs/FundsApi.md#finalise_candidate_valuation) | **POST** /api/funds/{scope}/{code}/valuationpoints/$finalisecandidate | [EXPERIMENTAL] FinaliseCandidateValuation: Finalise Candidate.
|
|
413
|
-
*FundsApi* | [**get_fee**](docs/FundsApi.md#get_fee) | **GET** /api/funds/{scope}/{code}/
|
|
413
|
+
*FundsApi* | [**get_fee**](docs/FundsApi.md#get_fee) | **GET** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] GetFee: Get a Fee for a specified Fund.
|
|
414
414
|
*FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
|
|
415
415
|
*FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
|
|
416
|
-
*FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/
|
|
416
|
+
*FundsApi* | [**list_fees**](docs/FundsApi.md#list_fees) | **GET** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] ListFees: List Fees for a specified Fund.
|
|
417
417
|
*FundsApi* | [**list_funds**](docs/FundsApi.md#list_funds) | **GET** /api/funds | [EXPERIMENTAL] ListFunds: List Funds.
|
|
418
|
-
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/
|
|
418
|
+
*FundsApi* | [**patch_fee**](docs/FundsApi.md#patch_fee) | **PATCH** /api/funds/{scope}/{code}/fees/{feeCode} | [EXPERIMENTAL] PatchFee: Patch Fee.
|
|
419
419
|
*FundsApi* | [**set_share_class_instruments**](docs/FundsApi.md#set_share_class_instruments) | **PUT** /api/funds/{scope}/{code}/shareclasses | [EXPERIMENTAL] SetShareClassInstruments: Set the ShareClass Instruments on a fund.
|
|
420
420
|
*FundsApi* | [**upsert_fund_properties**](docs/FundsApi.md#upsert_fund_properties) | **POST** /api/funds/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundProperties: Upsert Fund properties.
|
|
421
421
|
*FundsApi* | [**upsert_valuation_point**](docs/FundsApi.md#upsert_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$upsert | [EXPERIMENTAL] UpsertValuationPoint: Upsert Valuation Point.
|
|
@@ -25,7 +25,7 @@ lusid/api/derived_transaction_portfolios_api.py,sha256=cKv5mKNmTiuHzWGwupwcSBibj
|
|
|
25
25
|
lusid/api/entities_api.py,sha256=I2uoCBwmvGj8TzyoWycuVU7wPbfIAD67lxtW0fYx010,21342
|
|
26
26
|
lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
|
|
27
27
|
lusid/api/fee_types_api.py,sha256=conpVPkoLCcUY9f817882MTqrZ_uFlMuoPFo1swqTp4,49609
|
|
28
|
-
lusid/api/funds_api.py,sha256=
|
|
28
|
+
lusid/api/funds_api.py,sha256=xF8Og2TfplCL-rXzSjiPujluXAbRwunlfDywXVll4LM,184140
|
|
29
29
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
|
30
30
|
lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
|
|
31
31
|
lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
|
|
@@ -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=
|
|
70
|
+
lusid/configuration.py,sha256=I3v2amOr-AxneWP0AtHKjOakQ_59l_oZ4oyhGzJ2A8E,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
|
|
@@ -332,7 +332,7 @@ lusid/models/delete_instruments_response.py,sha256=KtMFt71x-Sg6VulGwQFnrOVhNxdsP
|
|
|
332
332
|
lusid/models/delete_modes.py,sha256=AIBsUUhXwkC7yJcJGV5Ry8JpCKjfvCyNCBdg39_Ax7g,632
|
|
333
333
|
lusid/models/delete_relation_request.py,sha256=rHolE7EuW53sQtTF7DsC0N6seleIygpmZPPBxZlF2vo,2262
|
|
334
334
|
lusid/models/delete_relationship_request.py,sha256=Wlp4B1VkM5N405gUyqWGf-P3nfsfaA7080AHQwihfOw,4134
|
|
335
|
-
lusid/models/deleted_entity_response.py,sha256=
|
|
335
|
+
lusid/models/deleted_entity_response.py,sha256=7OW8sZrFkzwI95zgheQNrMki1sBKwmCDhfD5b237BQM,4555
|
|
336
336
|
lusid/models/dependency_source_filter.py,sha256=aZMRPMeMl8Fa8KXSgdk8JxAvsV33yZqj3n6X3uwbHdc,3928
|
|
337
337
|
lusid/models/described_address_key.py,sha256=ebkUh71f2tPeNIKn5V57C3yhrCpBuUObb0ZCV3jmrYk,2677
|
|
338
338
|
lusid/models/dialect.py,sha256=c6P0GecI_6hUUHuxDvbFA6ZGGZkpPbiP27r1-6QQ-1g,2995
|
|
@@ -1067,6 +1067,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1067
1067
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1068
1068
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1069
1069
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1070
|
-
lusid_sdk-2.1.
|
|
1071
|
-
lusid_sdk-2.1.
|
|
1072
|
-
lusid_sdk-2.1.
|
|
1070
|
+
lusid_sdk-2.1.141.dist-info/METADATA,sha256=DaGjz0arvTSs0a9l96XxqIV2Q-K5SxLc-QeaYBHSszk,187604
|
|
1071
|
+
lusid_sdk-2.1.141.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1072
|
+
lusid_sdk-2.1.141.dist-info/RECORD,,
|
|
File without changes
|