lusid-sdk 2.1.100__py3-none-any.whl → 2.1.103__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/account.py +1 -1
- lusid/models/custodian_account.py +1 -1
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/fx_forward.py +1 -1
- {lusid_sdk-2.1.100.dist-info → lusid_sdk-2.1.103.dist-info}/METADATA +3 -3
- {lusid_sdk-2.1.100.dist-info → lusid_sdk-2.1.103.dist-info}/RECORD +8 -8
- {lusid_sdk-2.1.100.dist-info → lusid_sdk-2.1.103.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.6537\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/account.py
CHANGED
|
@@ -29,7 +29,7 @@ class Account(BaseModel):
|
|
|
29
29
|
code: constr(strict=True, max_length=64, min_length=1) = Field(..., description="The code given for the Account.")
|
|
30
30
|
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="A description for the Account.")
|
|
31
31
|
type: constr(strict=True, min_length=1) = Field(..., description="The Account type. Can have the values: Asset/Liabilities/Income/Expense/Capital/Revenue.")
|
|
32
|
-
status: StrictStr = Field(..., description="The Account status. Can be Active, Inactive or Deleted.
|
|
32
|
+
status: StrictStr = Field(..., description="The Account status. Can be Active, Inactive or Deleted. The available values are: Active, Inactive, Deleted")
|
|
33
33
|
control: Optional[StrictStr] = Field(None, description="This allows users to specify whether this a protected Account that prevents direct manual journal adjustment. Can have the values: System/ManualIt will default to “Manual”.")
|
|
34
34
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Account.")
|
|
35
35
|
__properties = ["code", "description", "type", "status", "control", "properties"]
|
|
@@ -29,7 +29,7 @@ class CustodianAccount(BaseModel):
|
|
|
29
29
|
CustodianAccount
|
|
30
30
|
"""
|
|
31
31
|
custodian_account_id: ResourceId = Field(..., alias="custodianAccountId")
|
|
32
|
-
status: constr(strict=True, min_length=1) = Field(..., description="The Account status. Can be Active, Inactive or Deleted.
|
|
32
|
+
status: constr(strict=True, min_length=1) = Field(..., description="The Account status. Can be Active, Inactive or Deleted.")
|
|
33
33
|
account_number: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="accountNumber", description="The Custodian Account Number")
|
|
34
34
|
account_name: constr(strict=True, min_length=1) = Field(..., alias="accountName", description="The identifiable name given to the Custodian Account")
|
|
35
35
|
accounting_method: constr(strict=True, min_length=1) = Field(..., alias="accountingMethod", description="The Accounting method to be used")
|
|
@@ -29,7 +29,7 @@ class CustodianAccountRequest(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
scope: Optional[constr(strict=True, max_length=64, min_length=1)] = Field(None, description="The Scope assigned to the Custodian Account, where left blank the parent Portfolio Scope will be used")
|
|
31
31
|
code: constr(strict=True, max_length=64, min_length=1) = Field(..., description="Unique Code representing the Custodian Account")
|
|
32
|
-
status: Optional[StrictStr] = Field(None, description="The Account status. Can be Active, Inactive or Deleted.
|
|
32
|
+
status: Optional[StrictStr] = Field(None, description="The Account status. Can be Active, Inactive or Deleted.")
|
|
33
33
|
account_number: constr(strict=True, max_length=64, min_length=1) = Field(..., alias="accountNumber", description="The Custodian Account Number")
|
|
34
34
|
account_name: constr(strict=True, max_length=512, min_length=1) = Field(..., alias="accountName", description="The identifiable name given to the Custodian Account")
|
|
35
35
|
accounting_method: constr(strict=True, min_length=1) = Field(..., alias="accountingMethod", description="The Accounting method to be used")
|
lusid/models/fx_forward.py
CHANGED
|
@@ -31,7 +31,7 @@ class FxForward(LusidInstrument):
|
|
|
31
31
|
dom_amount: Union[StrictFloat, StrictInt] = Field(..., alias="domAmount", description="The amount that is to be paid in the domestic currency on the maturity date.")
|
|
32
32
|
dom_ccy: StrictStr = Field(..., alias="domCcy", description="The domestic currency of the instrument.")
|
|
33
33
|
fgn_amount: Union[StrictFloat, StrictInt] = Field(..., alias="fgnAmount", description="The amount that is to be paid in the foreign currency on the maturity date.")
|
|
34
|
-
fgn_ccy: StrictStr = Field(..., alias="fgnCcy", description="The foreign (other) currency of the instrument. In the NDF case, only payments are made in the domestic currency. For the outright forward, currencies are exchanged.
|
|
34
|
+
fgn_ccy: StrictStr = Field(..., alias="fgnCcy", description="The foreign (other) currency of the instrument. In the NDF case, only payments are made in the domestic currency. For the outright forward, currencies are exchanged.")
|
|
35
35
|
ref_spot_rate: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="refSpotRate", description="The reference Fx Spot rate for currency pair Foreign-Domestic that was seen on the trade start date (time).")
|
|
36
36
|
is_ndf: Optional[StrictBool] = Field(None, alias="isNdf", description="Is the contract an Fx-Forward of \"Non-Deliverable\" type, meaning a single payment in the domestic currency based on the change in fx-rate vs a reference rate is used.")
|
|
37
37
|
fixing_date: Optional[datetime] = Field(None, alias="fixingDate", description="The fixing date.")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: lusid-sdk
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.103
|
|
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.6537
|
|
33
|
+
- Package version: 2.1.103
|
|
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
|
|
|
@@ -66,7 +66,7 @@ lusid/api/transaction_portfolios_api.py,sha256=q6AoYasxV3LQDossmM2BdJSo3arh526yU
|
|
|
66
66
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
67
67
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
68
68
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
69
|
-
lusid/configuration.py,sha256=
|
|
69
|
+
lusid/configuration.py,sha256=z-3jP7dL8CLejVIOPbZJIXTaI4ehcJ2RHErRyXvDg_8,14404
|
|
70
70
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
71
71
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
72
72
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -94,7 +94,7 @@ lusid/models/access_controlled_action.py,sha256=SQ5nARtg3Y8wwyaMa7vPaaIcLlghZdg5
|
|
|
94
94
|
lusid/models/access_controlled_resource.py,sha256=T2Uo6SQ_hDnooZokdJRlEfUJpko4FLjv6E-jzbBMEeo,4806
|
|
95
95
|
lusid/models/access_metadata_operation.py,sha256=FOEJ3ZuMb_Ixf2k6anRhSwo9y5utif4GkaezgD46UxA,3448
|
|
96
96
|
lusid/models/access_metadata_value.py,sha256=Ri9J9CjqeSFHytQfdts3yFs-R-8zdq7xCJ4XZy07VmY,2396
|
|
97
|
-
lusid/models/account.py,sha256=
|
|
97
|
+
lusid/models/account.py,sha256=6sKzuazRI0NIs6HOu3y7cy5omeagVVCVxlILA8EGDQE,5124
|
|
98
98
|
lusid/models/account_properties.py,sha256=fqKIfQ7tbAwodW8tZu86JTapAW5lVNNMonB6F2C1s5g,4272
|
|
99
99
|
lusid/models/accounting_method.py,sha256=iPWTzUtPG_HbVrtKuIFpP7Pn1ZKbSjQ9DkMQpBWb0dw,837
|
|
100
100
|
lusid/models/accounts_upsert_response.py,sha256=qHHsFTkMqhIufYG3RBvXB1YimBluJREx-iq7bd2DL50,4120
|
|
@@ -279,9 +279,9 @@ lusid/models/credit_support_annex.py,sha256=YFEtXS7mDojadeeJOfvfNVCBHjgkgBFbUMV0
|
|
|
279
279
|
lusid/models/criterion_type.py,sha256=Bd9KQZuS8O0ie_vYJZAvfnKMggoJOiCdcMFpik-m-q8,772
|
|
280
280
|
lusid/models/currency_and_amount.py,sha256=izd4FdwwuPPB79pNkbk4tuwB3-JiTUE4B-OhHyboJ9k,2277
|
|
281
281
|
lusid/models/curve_options.py,sha256=QrYx3ty0D8guh0t5mnxs6makVs3zGlJDO2-6ypIHN_c,5131
|
|
282
|
-
lusid/models/custodian_account.py,sha256=
|
|
282
|
+
lusid/models/custodian_account.py,sha256=u12g4jvcWG-ueWSpbBBBfpjmp09ehY3wEXcORQI-hx0,5020
|
|
283
283
|
lusid/models/custodian_account_properties.py,sha256=733uiIZZOx86tQVcX0zfb6-HqF6DXKy5w4hl-9T7uSU,4363
|
|
284
|
-
lusid/models/custodian_account_request.py,sha256=
|
|
284
|
+
lusid/models/custodian_account_request.py,sha256=wDKC0ANlxtwCPpiuCTD1BTDrogZ5J0DanGAe3-RIVkI,6691
|
|
285
285
|
lusid/models/custodian_accounts_upsert_response.py,sha256=QWLhQmLlgBACAeMyQjH8wy3TNJsYTvJIsHA8DFGErZc,4382
|
|
286
286
|
lusid/models/custom_entity_definition.py,sha256=_YZDm6pFP32L3wxeX70-alLQbsvNdw0cbZduVbwaOOA,4624
|
|
287
287
|
lusid/models/custom_entity_definition_request.py,sha256=sHJ-6k98L7uYmPkX-tsYzQVoj6VlEZIY1kc0VROus4o,3948
|
|
@@ -391,7 +391,7 @@ lusid/models/future.py,sha256=pnx4e44D0N_iLII4qDp3_E5BS4WmtsDE3S0dq9SODVs,9013
|
|
|
391
391
|
lusid/models/futures_contract_details.py,sha256=crSsBLSWPR8R7gQiUC0XFsYG2GSQtlZIuTUcaJog8HE,7336
|
|
392
392
|
lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
|
|
393
393
|
lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
|
|
394
|
-
lusid/models/fx_forward.py,sha256=
|
|
394
|
+
lusid/models/fx_forward.py,sha256=6_JQn_ppPN-gd2ZpuXR80u8VLvMv4jihGrvTWBqYHAA,8577
|
|
395
395
|
lusid/models/fx_forward_curve_by_quote_reference.py,sha256=KUwwMke3qyymP2UTTrfDuH3oVV2e3wJ2EHtsRfCT9cM,7865
|
|
396
396
|
lusid/models/fx_forward_curve_data.py,sha256=6xwJY_fAEVIbZyDVrbrgUR8YikalHiZ22ooDJHPH9tk,5758
|
|
397
397
|
lusid/models/fx_forward_model_options.py,sha256=jSnnHeRJ8oKL7To5qWHpVg-vu9k0zlAuZoJ4vHnZXPw,4864
|
|
@@ -1036,6 +1036,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1036
1036
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1037
1037
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1038
1038
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1039
|
-
lusid_sdk-2.1.
|
|
1040
|
-
lusid_sdk-2.1.
|
|
1041
|
-
lusid_sdk-2.1.
|
|
1039
|
+
lusid_sdk-2.1.103.dist-info/METADATA,sha256=Gi_ZHEVqdJP_BxGFpazxMDcyxkSbaNyfIjegZEnIcrE,183338
|
|
1040
|
+
lusid_sdk-2.1.103.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1041
|
+
lusid_sdk-2.1.103.dist-info/RECORD,,
|
|
File without changes
|