lusid-sdk 2.0.430__py3-none-any.whl → 2.0.437__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/__init__.py CHANGED
@@ -62,3 +62,66 @@ from lusid.api.transaction_fees_api import TransactionFeesApi
62
62
  from lusid.api.transaction_portfolios_api import TransactionPortfoliosApi
63
63
  from lusid.api.translation_api import TranslationApi
64
64
 
65
+
66
+ __all__ = [
67
+ "AborApi",
68
+ "AborConfigurationApi",
69
+ "AddressKeyDefinitionApi",
70
+ "AggregationApi",
71
+ "AllocationsApi",
72
+ "ApplicationMetadataApi",
73
+ "BlocksApi",
74
+ "CalendarsApi",
75
+ "ChartOfAccountsApi",
76
+ "ComplexMarketDataApi",
77
+ "ComplianceApi",
78
+ "ConfigurationRecipeApi",
79
+ "ConventionsApi",
80
+ "CorporateActionSourcesApi",
81
+ "CounterpartiesApi",
82
+ "CustomEntitiesApi",
83
+ "CustomEntityDefinitionsApi",
84
+ "CustomEntityTypesApi",
85
+ "CutLabelDefinitionsApi",
86
+ "DataTypesApi",
87
+ "DerivedTransactionPortfoliosApi",
88
+ "EntitiesApi",
89
+ "ExecutionsApi",
90
+ "FundsApi",
91
+ "InstrumentEventTypesApi",
92
+ "InstrumentEventsApi",
93
+ "InstrumentsApi",
94
+ "LegacyComplianceApi",
95
+ "LegalEntitiesApi",
96
+ "OrderGraphApi",
97
+ "OrderInstructionsApi",
98
+ "OrderManagementApi",
99
+ "OrdersApi",
100
+ "PackagesApi",
101
+ "ParticipationsApi",
102
+ "PersonsApi",
103
+ "PlacementsApi",
104
+ "PortfolioGroupsApi",
105
+ "PortfoliosApi",
106
+ "PropertyDefinitionsApi",
107
+ "QuotesApi",
108
+ "ReconciliationsApi",
109
+ "ReferenceListsApi",
110
+ "ReferencePortfolioApi",
111
+ "RelationDefinitionsApi",
112
+ "RelationsApi",
113
+ "RelationshipDefinitionsApi",
114
+ "RelationshipsApi",
115
+ "SchemasApi",
116
+ "ScopesApi",
117
+ "ScriptedTranslationApi",
118
+ "SearchApi",
119
+ "SequencesApi",
120
+ "StructuredResultDataApi",
121
+ "SystemConfigurationApi",
122
+ "TaxRuleSetsApi",
123
+ "TransactionConfigurationApi",
124
+ "TransactionFeesApi",
125
+ "TransactionPortfoliosApi",
126
+ "TranslationApi"
127
+ ]
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.6377\n"\
376
+ "Version of the API: 0.11.6384\n"\
377
377
  "SDK Package Version: {package_version}".\
378
378
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
379
379
 
@@ -4,4 +4,15 @@ from lusid.extensions.configuration_loaders import (
4
4
  SecretsFileConfigurationLoader,
5
5
  EnvironmentVariablesConfigurationLoader,
6
6
  ArgsConfigurationLoader,
7
- )
7
+ )
8
+ from lusid.extensions.api_client import SyncApiClient
9
+
10
+ __all__ = [
11
+ "SyncApiClientFactory",
12
+ "ApiClientFactory",
13
+ "ConfigurationLoader",
14
+ "SecretsFileConfigurationLoader",
15
+ "EnvironmentVariablesConfigurationLoader",
16
+ "ArgsConfigurationLoader",
17
+ "SyncApiClient"
18
+ ]