luminesce-sdk 2.3.16__py3-none-any.whl → 2.4.6__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.
- luminesce/__init__.py +6 -0
- luminesce/api/current_table_field_catalog_api.py +18 -10
- luminesce/api/sql_background_execution_api.py +252 -18
- luminesce/api/sql_execution_api.py +32 -16
- luminesce/configuration.py +1 -1
- luminesce/models/__init__.py +6 -0
- luminesce/models/background_multi_query_response.py +16 -1
- luminesce/models/background_query_progress_response.py +8 -2
- luminesce/models/background_query_response.py +6 -1
- luminesce/models/column.py +7 -1
- luminesce/models/date_parameters.py +8 -1
- luminesce/models/lineage.py +149 -0
- luminesce/models/luminesce_binary_type.py +1 -0
- luminesce/models/lusid_grid_data.py +30 -2
- luminesce/models/sql_execution_flags.py +40 -0
- luminesce/models/table_lineage.py +106 -0
- {luminesce_sdk-2.3.16.dist-info → luminesce_sdk-2.4.6.dist-info}/METADATA +9 -8
- {luminesce_sdk-2.3.16.dist-info → luminesce_sdk-2.4.6.dist-info}/RECORD +19 -16
- {luminesce_sdk-2.3.16.dist-info → luminesce_sdk-2.4.6.dist-info}/WHEEL +1 -1
|
@@ -36,7 +36,11 @@ class LusidGridData(BaseModel):
|
|
|
36
36
|
dashboard_type: Optional[DashboardType] = Field(default=None, alias="dashboardType")
|
|
37
37
|
use_settle_date: Optional[StrictBool] = Field(default=None, description="Whether to use the Settlement date or the Transaction date", alias="useSettleDate")
|
|
38
38
|
dates: Optional[DateParameters] = None
|
|
39
|
-
|
|
39
|
+
recipe: Optional[StrictStr] = Field(None,alias="recipe", description="The recipe to use for valuations")
|
|
40
|
+
currency: Optional[StrictStr] = Field(None,alias="currency", description="The currency to use for valuations")
|
|
41
|
+
tenor: Optional[StrictStr] = Field(None,alias="tenor", description="The tenor to use for valuations")
|
|
42
|
+
order_flow: Optional[StrictStr] = Field(None,alias="orderFlow", description="Type of order flow to include")
|
|
43
|
+
__properties = ["lusidGridDesign", "resourceId", "dashboardType", "useSettleDate", "dates", "recipe", "currency", "tenor", "orderFlow"]
|
|
40
44
|
|
|
41
45
|
class Config:
|
|
42
46
|
"""Pydantic configuration"""
|
|
@@ -84,6 +88,26 @@ class LusidGridData(BaseModel):
|
|
|
84
88
|
if self.use_settle_date is None and "use_settle_date" in self.__fields_set__:
|
|
85
89
|
_dict['useSettleDate'] = None
|
|
86
90
|
|
|
91
|
+
# set to None if recipe (nullable) is None
|
|
92
|
+
# and __fields_set__ contains the field
|
|
93
|
+
if self.recipe is None and "recipe" in self.__fields_set__:
|
|
94
|
+
_dict['recipe'] = None
|
|
95
|
+
|
|
96
|
+
# set to None if currency (nullable) is None
|
|
97
|
+
# and __fields_set__ contains the field
|
|
98
|
+
if self.currency is None and "currency" in self.__fields_set__:
|
|
99
|
+
_dict['currency'] = None
|
|
100
|
+
|
|
101
|
+
# set to None if tenor (nullable) is None
|
|
102
|
+
# and __fields_set__ contains the field
|
|
103
|
+
if self.tenor is None and "tenor" in self.__fields_set__:
|
|
104
|
+
_dict['tenor'] = None
|
|
105
|
+
|
|
106
|
+
# set to None if order_flow (nullable) is None
|
|
107
|
+
# and __fields_set__ contains the field
|
|
108
|
+
if self.order_flow is None and "order_flow" in self.__fields_set__:
|
|
109
|
+
_dict['orderFlow'] = None
|
|
110
|
+
|
|
87
111
|
return _dict
|
|
88
112
|
|
|
89
113
|
@classmethod
|
|
@@ -100,7 +124,11 @@ class LusidGridData(BaseModel):
|
|
|
100
124
|
"resource_id": ResourceId.from_dict(obj.get("resourceId")) if obj.get("resourceId") is not None else None,
|
|
101
125
|
"dashboard_type": obj.get("dashboardType"),
|
|
102
126
|
"use_settle_date": obj.get("useSettleDate"),
|
|
103
|
-
"dates": DateParameters.from_dict(obj.get("dates")) if obj.get("dates") is not None else None
|
|
127
|
+
"dates": DateParameters.from_dict(obj.get("dates")) if obj.get("dates") is not None else None,
|
|
128
|
+
"recipe": obj.get("recipe"),
|
|
129
|
+
"currency": obj.get("currency"),
|
|
130
|
+
"tenor": obj.get("tenor"),
|
|
131
|
+
"order_flow": obj.get("orderFlow")
|
|
104
132
|
})
|
|
105
133
|
return _obj
|
|
106
134
|
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
FINBOURNE Luminesce Web API
|
|
5
|
+
|
|
6
|
+
FINBOURNE Technology # noqa: E501
|
|
7
|
+
|
|
8
|
+
Contact: info@finbourne.com
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import json
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
from aenum import Enum, no_arg
|
|
19
|
+
|
|
20
|
+
from typing import List, Dict, Optional, Any, Union, TYPE_CHECKING
|
|
21
|
+
from typing_extensions import Annotated
|
|
22
|
+
from pydantic.v1 import BaseModel, StrictStr, StrictInt, StrictBool, StrictFloat, StrictBytes, Field, validator, ValidationError, conlist, constr
|
|
23
|
+
from datetime import datetime
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class SqlExecutionFlags(str, Enum):
|
|
27
|
+
"""
|
|
28
|
+
SqlExecutionFlags
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
"""
|
|
32
|
+
allowed enum values
|
|
33
|
+
"""
|
|
34
|
+
NONE = 'None'
|
|
35
|
+
PROVIDELINEAGE = 'ProvideLineage'
|
|
36
|
+
|
|
37
|
+
@classmethod
|
|
38
|
+
def from_json(cls, json_str: str) -> SqlExecutionFlags:
|
|
39
|
+
"""Create an instance of SqlExecutionFlags from a JSON string"""
|
|
40
|
+
return SqlExecutionFlags(json.loads(json_str))
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
FINBOURNE Luminesce Web API
|
|
5
|
+
|
|
6
|
+
FINBOURNE Technology # noqa: E501
|
|
7
|
+
|
|
8
|
+
Contact: info@finbourne.com
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from typing import List, Dict, Optional, Any, Union, TYPE_CHECKING
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from pydantic.v1 import BaseModel, StrictStr, StrictInt, StrictBool, StrictFloat, StrictBytes, Field, validator, ValidationError, conlist, constr
|
|
24
|
+
from datetime import datetime
|
|
25
|
+
from luminesce.models.lineage import Lineage
|
|
26
|
+
|
|
27
|
+
class TableLineage(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
TableLineage
|
|
30
|
+
"""
|
|
31
|
+
column_lineage: Optional[List[Lineage]] = Field(default=None, alias="columnLineage")
|
|
32
|
+
row_lineage: Optional[Lineage] = Field(default=None, alias="rowLineage")
|
|
33
|
+
failure_reason: Optional[StrictStr] = Field(None,alias="failureReason")
|
|
34
|
+
__properties = ["columnLineage", "rowLineage", "failureReason"]
|
|
35
|
+
|
|
36
|
+
class Config:
|
|
37
|
+
"""Pydantic configuration"""
|
|
38
|
+
allow_population_by_field_name = True
|
|
39
|
+
validate_assignment = True
|
|
40
|
+
|
|
41
|
+
def __str__(self):
|
|
42
|
+
"""For `print` and `pprint`"""
|
|
43
|
+
return pprint.pformat(self.dict(by_alias=False))
|
|
44
|
+
|
|
45
|
+
def __repr__(self):
|
|
46
|
+
"""For `print` and `pprint`"""
|
|
47
|
+
return self.to_str()
|
|
48
|
+
|
|
49
|
+
def to_str(self) -> str:
|
|
50
|
+
"""Returns the string representation of the model using alias"""
|
|
51
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
52
|
+
|
|
53
|
+
def to_json(self) -> str:
|
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
|
55
|
+
return json.dumps(self.to_dict())
|
|
56
|
+
|
|
57
|
+
@classmethod
|
|
58
|
+
def from_json(cls, json_str: str) -> TableLineage:
|
|
59
|
+
"""Create an instance of TableLineage from a JSON string"""
|
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
|
61
|
+
|
|
62
|
+
def to_dict(self):
|
|
63
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
64
|
+
_dict = self.dict(by_alias=True,
|
|
65
|
+
exclude={
|
|
66
|
+
},
|
|
67
|
+
exclude_none=True)
|
|
68
|
+
# override the default output from pydantic by calling `to_dict()` of each item in column_lineage (list)
|
|
69
|
+
_items = []
|
|
70
|
+
if self.column_lineage:
|
|
71
|
+
for _item in self.column_lineage:
|
|
72
|
+
if _item:
|
|
73
|
+
_items.append(_item.to_dict())
|
|
74
|
+
_dict['columnLineage'] = _items
|
|
75
|
+
# override the default output from pydantic by calling `to_dict()` of row_lineage
|
|
76
|
+
if self.row_lineage:
|
|
77
|
+
_dict['rowLineage'] = self.row_lineage.to_dict()
|
|
78
|
+
# set to None if column_lineage (nullable) is None
|
|
79
|
+
# and __fields_set__ contains the field
|
|
80
|
+
if self.column_lineage is None and "column_lineage" in self.__fields_set__:
|
|
81
|
+
_dict['columnLineage'] = None
|
|
82
|
+
|
|
83
|
+
# set to None if failure_reason (nullable) is None
|
|
84
|
+
# and __fields_set__ contains the field
|
|
85
|
+
if self.failure_reason is None and "failure_reason" in self.__fields_set__:
|
|
86
|
+
_dict['failureReason'] = None
|
|
87
|
+
|
|
88
|
+
return _dict
|
|
89
|
+
|
|
90
|
+
@classmethod
|
|
91
|
+
def from_dict(cls, obj: dict) -> TableLineage:
|
|
92
|
+
"""Create an instance of TableLineage from a dict"""
|
|
93
|
+
if obj is None:
|
|
94
|
+
return None
|
|
95
|
+
|
|
96
|
+
if not isinstance(obj, dict):
|
|
97
|
+
return TableLineage.parse_obj(obj)
|
|
98
|
+
|
|
99
|
+
_obj = TableLineage.parse_obj({
|
|
100
|
+
"column_lineage": [Lineage.from_dict(_item) for _item in obj.get("columnLineage")] if obj.get("columnLineage") is not None else None,
|
|
101
|
+
"row_lineage": Lineage.from_dict(obj.get("rowLineage")) if obj.get("rowLineage") is not None else None,
|
|
102
|
+
"failure_reason": obj.get("failureReason")
|
|
103
|
+
})
|
|
104
|
+
return _obj
|
|
105
|
+
|
|
106
|
+
TableLineage.update_forward_refs()
|
|
@@ -1,27 +1,24 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: luminesce-sdk
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.4.6
|
|
4
4
|
Summary: FINBOURNE Luminesce Web API
|
|
5
|
-
Home-page: https://github.com/finbourne/luminesce-sdk-python
|
|
6
5
|
License: MIT
|
|
7
6
|
Keywords: OpenAPI,OpenAPI-Generator,FINBOURNE Luminesce Web API,luminesce-sdk
|
|
8
7
|
Author: FINBOURNE Technology
|
|
9
8
|
Author-email: info@finbourne.com
|
|
10
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.11,<4.0
|
|
11
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
11
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
16
|
Requires-Dist: aenum (>=3.1.11,<4.0.0)
|
|
20
17
|
Requires-Dist: aiohttp (>=3.8.4,<4.0.0)
|
|
21
18
|
Requires-Dist: pydantic (>=2.6.3,<3.0.0)
|
|
22
19
|
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
|
23
20
|
Requires-Dist: requests (>=2,<3)
|
|
24
|
-
Requires-Dist: urllib3 (>=
|
|
21
|
+
Requires-Dist: urllib3 (>=2.6.0,<3.0.0)
|
|
25
22
|
Project-URL: Repository, https://github.com/finbourne/luminesce-sdk-python
|
|
26
23
|
Description-Content-Type: text/markdown
|
|
27
24
|
|
|
@@ -56,6 +53,7 @@ Class | Method | HTTP request | Description
|
|
|
56
53
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_histogram**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_histogram) | **GET** /api/SqlBackground/{executionId}/histogram | FetchQueryResultHistogram: Construct a histogram of the result of a query
|
|
57
54
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_json**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_json) | **GET** /api/SqlBackground/{executionId}/json | FetchQueryResultJson: Fetch the result of a query as a JSON string
|
|
58
55
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_json_proper**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_json_proper) | **GET** /api/SqlBackground/{executionId}/jsonProper | FetchQueryResultJsonProper: Fetch the result of a query as JSON
|
|
56
|
+
*SqlBackgroundExecutionApi* | [**fetch_query_result_json_proper_with_lineage**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_json_proper_with_lineage) | **GET** /api/SqlBackground/{executionId}/jsonProperWithLineage | FetchQueryResultJsonProperWithLineage: Fetch the result of a query as JSON, but including a Lineage Node (if available)
|
|
59
57
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_parquet**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_parquet) | **GET** /api/SqlBackground/{executionId}/parquet | FetchQueryResultParquet: Fetch the result of a query as Parquet
|
|
60
58
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_pipe**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_pipe) | **GET** /api/SqlBackground/{executionId}/pipe | FetchQueryResultPipe: Fetch the result of a query as pipe-delimited
|
|
61
59
|
*SqlBackgroundExecutionApi* | [**fetch_query_result_sqlite**](docs/SqlBackgroundExecutionApi.md#fetch_query_result_sqlite) | **GET** /api/SqlBackground/{executionId}/sqlite | FetchQueryResultSqlite: Fetch the result of a query as SqLite
|
|
@@ -153,6 +151,7 @@ Class | Method | HTTP request | Description
|
|
|
153
151
|
- [IntellisenseResponse](docs/IntellisenseResponse.md)
|
|
154
152
|
- [IntellisenseType](docs/IntellisenseType.md)
|
|
155
153
|
- [JoinedTableDesign](docs/JoinedTableDesign.md)
|
|
154
|
+
- [Lineage](docs/Lineage.md)
|
|
156
155
|
- [Link](docs/Link.md)
|
|
157
156
|
- [LuminesceBinaryType](docs/LuminesceBinaryType.md)
|
|
158
157
|
- [LusidGridData](docs/LusidGridData.md)
|
|
@@ -176,6 +175,8 @@ Class | Method | HTTP request | Description
|
|
|
176
175
|
- [ScalarParameter](docs/ScalarParameter.md)
|
|
177
176
|
- [Source](docs/Source.md)
|
|
178
177
|
- [SourceType](docs/SourceType.md)
|
|
178
|
+
- [SqlExecutionFlags](docs/SqlExecutionFlags.md)
|
|
179
|
+
- [TableLineage](docs/TableLineage.md)
|
|
179
180
|
- [TableMeta](docs/TableMeta.md)
|
|
180
181
|
- [TableView](docs/TableView.md)
|
|
181
182
|
- [TaskStatus](docs/TaskStatus.md)
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
luminesce/__init__.py,sha256=
|
|
1
|
+
luminesce/__init__.py,sha256=TmRIxagSeyFMEBSkGjwqeRosOeTMXiFnRPtrdLTRvtw,10139
|
|
2
2
|
luminesce/api/__init__.py,sha256=Gs6_mGj7uS5ri7lhDmRWkzlcWq7HXbPSMEq9Q1cIEfw,1114
|
|
3
3
|
luminesce/api/application_metadata_api.py,sha256=apc8lEV3WL9C5yl_S3n61RP7WnxrX0mXzVYH01zuLPA,8760
|
|
4
4
|
luminesce/api/binary_downloading_api.py,sha256=TM6op1vo0Ekp30R-tm38TTr6yFTYyypUv_X3jS_EzCY,20133
|
|
5
5
|
luminesce/api/certificate_management_api.py,sha256=s3DyFItVmkjqAPyZfUjOtOvqMVjkWiH70F-ZA62yvsE,31137
|
|
6
|
-
luminesce/api/current_table_field_catalog_api.py,sha256=
|
|
6
|
+
luminesce/api/current_table_field_catalog_api.py,sha256=IAr1iOvzHboKlLgAdacR7WRg9fvNVA4uSwQjx24eT00,27574
|
|
7
7
|
luminesce/api/health_checking_endpoint_api.py,sha256=QIou6LUfy-OaWjKCNOcJnaRmSnRl9luKcwHk2eZmsew,8630
|
|
8
8
|
luminesce/api/historically_executed_queries_api.py,sha256=np6PK04uihAGH20skZ-tBisIZCFDFwfBClakFJ86-mY,64144
|
|
9
9
|
luminesce/api/multi_query_execution_api.py,sha256=CHm8KXsDCvAMdRg-DeZCyE7TAnalH4srAEHvVWO2BJM,38519
|
|
10
|
-
luminesce/api/sql_background_execution_api.py,sha256=
|
|
10
|
+
luminesce/api/sql_background_execution_api.py,sha256=AaKke8NLK28-1Zgq-edvyawyJDfA3HVKXaWxAFD6Xtw,297676
|
|
11
11
|
luminesce/api/sql_design_api.py,sha256=z8H7KKgC37v0nTYPFuYsk6xT2HvDDMXbWnQfUp9h6is,166219
|
|
12
|
-
luminesce/api/sql_execution_api.py,sha256=
|
|
12
|
+
luminesce/api/sql_execution_api.py,sha256=eSdthsdsI8Zt52KuYy6tas3OXpvDX0EfEBm7RM5GQEk,183451
|
|
13
13
|
luminesce/api_client.py,sha256=HzMXLz0L6zNANG_St69Pkj90nZdX0_L7PWakPR-U0xs,31216
|
|
14
14
|
luminesce/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
15
|
-
luminesce/configuration.py,sha256
|
|
15
|
+
luminesce/configuration.py,sha256=-L7t76QndB_DuHxuFHW5JJfuD71yJ3ydE3WQYl1iMUM,18017
|
|
16
16
|
luminesce/exceptions.py,sha256=CM3oV1eLtc86rQdbOszHdFU7Hz5aQbmxNm2PffzwHM0,5891
|
|
17
17
|
luminesce/extensions/__init__.py,sha256=Ae4tuN73CThE9i7c8A5HktOX4-P8tC1JOt6RgM6oacg,642
|
|
18
18
|
luminesce/extensions/api_client.py,sha256=Tbumlshn9TpwGwPltqeA4NK1ZZmi3zncNQP1Ou3e-hg,31023
|
|
@@ -27,7 +27,7 @@ luminesce/extensions/rest.py,sha256=jgXCP43v7ucGd2dx6yMmAVEMCnAp-sk0DhDqNzujFUQ,
|
|
|
27
27
|
luminesce/extensions/retry.py,sha256=KhzmulHJQjMaEpsngm4BFjVKH3dNsgGKX_6Zd3HPa_g,14842
|
|
28
28
|
luminesce/extensions/socket_keep_alive.py,sha256=eX5ICvGfVzUCGIm80Q2RknfFZrBQAdnrcpY61M29V_k,1997
|
|
29
29
|
luminesce/extensions/tcp_keep_alive_connector.py,sha256=__phUg0tFDEBS-6p3R1W6MUYNtkySMoPkk4rUHmvdJI,3881
|
|
30
|
-
luminesce/models/__init__.py,sha256=
|
|
30
|
+
luminesce/models/__init__.py,sha256=vA-7BM4UKOqWAFKWuUPuZb4piDu4znVmyAXUfP4rMKA,7961
|
|
31
31
|
luminesce/models/access_controlled_action.py,sha256=M4SF7WzKn3SeROQncbSKnG8-R978XeSxvriM60LOcak,3869
|
|
32
32
|
luminesce/models/access_controlled_resource.py,sha256=qXT2TUf89RfUgKQSOmD6enhKsVUwhN4wje0W0wsrqfM,5194
|
|
33
33
|
luminesce/models/access_controlled_resource_identifier_part_schema_attribute.py,sha256=IecVEOUqUjZC5R6e2d2RakH3cKyv5V5GPJT8PS0-6HI,4483
|
|
@@ -38,10 +38,10 @@ luminesce/models/auto_detect_type.py,sha256=3UKIpku9HwEqB88ty_8nEvhUBfX4ZeQDc_hk
|
|
|
38
38
|
luminesce/models/available_field.py,sha256=8rhE6_ysZxVE7WqZGiyliHE3OP_8PGQ0rS2RdueJSRc,3634
|
|
39
39
|
luminesce/models/available_parameter.py,sha256=g3NKAyiSE4Hy748t7uQUrs43Qufi_6z9AOH3Hymhdr0,3329
|
|
40
40
|
luminesce/models/background_multi_query_progress_response.py,sha256=_1t89inzgvSS8097VGqmUKTRIx1IBrw0_RdgGtvs2zM,4708
|
|
41
|
-
luminesce/models/background_multi_query_response.py,sha256=
|
|
41
|
+
luminesce/models/background_multi_query_response.py,sha256=PMvtQE0yzaUdNDsGhz6A92k_kjxaoNda323Vejpv6Wo,12309
|
|
42
42
|
luminesce/models/background_query_cancel_response.py,sha256=14UaI_YP9BtqlMNnQMzfhVMUKV-Bp0kfBAv0uNY8fMM,3256
|
|
43
|
-
luminesce/models/background_query_progress_response.py,sha256=
|
|
44
|
-
luminesce/models/background_query_response.py,sha256=
|
|
43
|
+
luminesce/models/background_query_progress_response.py,sha256=rshoyi7ChJJXgt7NI1C7zgTdHuNlEyJ6_x0tfPpj5W4,6547
|
|
44
|
+
luminesce/models/background_query_response.py,sha256=ZXs-eSoAqyVrC1t5l-UbG6eCFXrDSCuSXjoZ-aS9b0M,7358
|
|
45
45
|
luminesce/models/background_query_state.py,sha256=UEBjGui0xzT0sLbPrgSOnk2znRsjFUHvur-yDswCqs0,1376
|
|
46
46
|
luminesce/models/case_statement_design.py,sha256=sF3y8et-b7wIFAUmF2Xl56ySjqFN3-s3VfWxU4-gTM4,3799
|
|
47
47
|
luminesce/models/case_statement_item.py,sha256=bQ1ltN-6A2eVObT1DXztIvfNeb_WITtkvO7UadrZAG8,3529
|
|
@@ -50,7 +50,7 @@ luminesce/models/certificate_file_type.py,sha256=AGMuGYByibowii38Rf2HuFJFR6bQfz_
|
|
|
50
50
|
luminesce/models/certificate_state.py,sha256=5kAH2YHZS72PNSGx50CHxfFI2R8hJf5y7LR5jmm0yH4,8135
|
|
51
51
|
luminesce/models/certificate_status.py,sha256=vCkngd2e4qeeyEbkBWSiK9SykcxyYu9dkzgXgesUijk,1696
|
|
52
52
|
luminesce/models/certificate_type.py,sha256=6oomeiAgGaF8IHi5dfAB9V_PxcPVGDFv0BUI79gagv8,997
|
|
53
|
-
luminesce/models/column.py,sha256=
|
|
53
|
+
luminesce/models/column.py,sha256=_diQLu_cWDZp3aMDSrr5l9g6lbU8zR9QjHkUe9lNonE,5575
|
|
54
54
|
luminesce/models/column_info.py,sha256=u_WOq9TFqQwH6K57wXi2ixIh4_tlVFKxwFpCNpJlSy0,3233
|
|
55
55
|
luminesce/models/column_state_type.py,sha256=fIKFGiPDWutipjX0bVPlpEFRhuT4E73fYjtO9pqZtCI,3336
|
|
56
56
|
luminesce/models/condition_attributes.py,sha256=OCFzp2y59Kqb7wsj10Ydp-KNljVJO9W0qFS0xU-_P8Q,1019
|
|
@@ -58,7 +58,7 @@ luminesce/models/convert_to_view_data.py,sha256=S7znLM-ygqWyCyPtmoxipm9E6iXMp2Gb
|
|
|
58
58
|
luminesce/models/cursor_position.py,sha256=saSRm9CxJ-0ImPjbtZ3OSZCMjVBgRVbOFgFmpalApi8,2498
|
|
59
59
|
luminesce/models/dashboard_type.py,sha256=NZRmFwkJgFqjzq1tgtgMIEC6RH_H7F9N5w1dBFXlDPo,966
|
|
60
60
|
luminesce/models/data_type.py,sha256=KltAFgYOs30h1GbvdkWDu7LalFVrzNbsIbuCu2pTKmo,1070
|
|
61
|
-
luminesce/models/date_parameters.py,sha256
|
|
61
|
+
luminesce/models/date_parameters.py,sha256=lwwJ4JB7j9z6oMH6U04fcwZE0HMDtKGpdCvsBLTbZ8I,4040
|
|
62
62
|
luminesce/models/design_join_type.py,sha256=yeH6YccHL1M7ukP3GAJYgtV7lWQu2vyKp5iYyIGne6w,1003
|
|
63
63
|
luminesce/models/error_highlight_item.py,sha256=goebDoE2YgsnwWAZSSR4e538CLVpUF4i5fzBFemOp5M,3755
|
|
64
64
|
luminesce/models/error_highlight_request.py,sha256=2ZZQO9VH996nLVCRh8V49inIFvdfLBV4CEx8XFbUe_o,2808
|
|
@@ -81,9 +81,10 @@ luminesce/models/intellisense_request.py,sha256=fS418J4vy0H2SG8q6OR4FhuMVYTi7XUd
|
|
|
81
81
|
luminesce/models/intellisense_response.py,sha256=l7dJcvdC8QbO4kg_WzAzHqRnKFmDOMJ8vlMs9UuaENA,4627
|
|
82
82
|
luminesce/models/intellisense_type.py,sha256=z-QNw_2I4rISvcyqmusEjKwF6zeZuHNulnK_kauDtak,1126
|
|
83
83
|
luminesce/models/joined_table_design.py,sha256=vfEV25rZ8j6xzo3S2kOpwYooLFGrtUz3D2jMg0IUUB8,4998
|
|
84
|
+
luminesce/models/lineage.py,sha256=Pb_44-imzDzCte-Hfyh80wkbLqu_ieXxvxZzjSyl_SE,5774
|
|
84
85
|
luminesce/models/link.py,sha256=YBPSc3aykJhSwmR_0YmK8D9KGCw8Zkk_YhX2XegliNo,2780
|
|
85
|
-
luminesce/models/luminesce_binary_type.py,sha256=
|
|
86
|
-
luminesce/models/lusid_grid_data.py,sha256=
|
|
86
|
+
luminesce/models/luminesce_binary_type.py,sha256=RSDXzhG7U7PIs6m-VW0l4XcGfeEV8E7L6LHW_YC-l2I,2116
|
|
87
|
+
luminesce/models/lusid_grid_data.py,sha256=CbwqS-BIKDrSddCo6xuWKeAXLlJf5IgIukVJRd1sP1M,5708
|
|
87
88
|
luminesce/models/lusid_problem_details.py,sha256=2I2QEifdHisXfBSRlHYu-A3uC4zDclJrgtTlNYFnJHY,4354
|
|
88
89
|
luminesce/models/mappable_field.py,sha256=v8fbe6-Eqibx-kbYlveqrvtTGJ7DyeTbAeNPLG4bWjc,5686
|
|
89
90
|
luminesce/models/mapping_flags.py,sha256=zOkyPdt-aSg6rwuCnGUs3zF9lXaXzrtm9t6jv_WN-js,992
|
|
@@ -104,6 +105,8 @@ luminesce/models/resource_list_of_access_controlled_resource.py,sha256=BlLJX0ffG
|
|
|
104
105
|
luminesce/models/scalar_parameter.py,sha256=WueVKDug09NTokmwf3SYTMjGzP2JTiWDC0Ka_tOrPJQ,3586
|
|
105
106
|
luminesce/models/source.py,sha256=KQCu37ZiJ5VrPw_rjtGdHXrqwa9GKEAmIpzKU3ufxdQ,2745
|
|
106
107
|
luminesce/models/source_type.py,sha256=AS-YBVMsIg9AOqfcbrQbKxNaqt5gNeOT5u1RM1xVMYw,1051
|
|
108
|
+
luminesce/models/sql_execution_flags.py,sha256=4_dqWlWIRLr9uyrbA0KD51vBumrVs8MXPlT39DQmy5o,981
|
|
109
|
+
luminesce/models/table_lineage.py,sha256=_Ki5TGkHEoUyZBLO0UwigATDwaudC_zMcinNPdLp6qM,3816
|
|
107
110
|
luminesce/models/table_meta.py,sha256=KQLf-R1eLRWopPSnBLNW2MHDdy2Et1y8cPv57-f1TyI,2354
|
|
108
111
|
luminesce/models/table_view.py,sha256=_61LLWiDGsGscZr0Fjp_7EJ_LmxNVmtLcBgxctaVCPY,4353
|
|
109
112
|
luminesce/models/task_status.py,sha256=QU8j-Ybehko6q7lZzfPd9tcub0yeMOEJR8BF06PqV-A,1178
|
|
@@ -112,6 +115,6 @@ luminesce/models/view_parameter.py,sha256=JlR1ZSbn847GT5lwHOTTnrXRgW2IbIw7buabG-
|
|
|
112
115
|
luminesce/models/writer_design.py,sha256=ZzToPDc2mke_TAQfRQXCwHFzTPHI5-5W2PDLmBknHAw,4923
|
|
113
116
|
luminesce/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
117
|
luminesce/rest.py,sha256=jPlPMTmdrPXCaisGiNGkjP2TJLT0dSH51tvzauPijNk,13453
|
|
115
|
-
luminesce_sdk-2.
|
|
116
|
-
luminesce_sdk-2.
|
|
117
|
-
luminesce_sdk-2.
|
|
118
|
+
luminesce_sdk-2.4.6.dist-info/METADATA,sha256=wwbJTZXMKkV8xuXj3DEJOz_PQkOMU6Ia6PmAYcaKqI0,18829
|
|
119
|
+
luminesce_sdk-2.4.6.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
120
|
+
luminesce_sdk-2.4.6.dist-info/RECORD,,
|