luminesce-sdk 2.2.12__py3-none-any.whl → 2.2.14__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.
@@ -445,7 +445,7 @@ class Configuration:
445
445
  return "Python SDK Debug Report:\n"\
446
446
  "OS: {env}\n"\
447
447
  "Python Version: {pyversion}\n"\
448
- "Version of the API: 1.18.673\n"\
448
+ "Version of the API: 1.18.729\n"\
449
449
  "SDK Package Version: {package_version}".\
450
450
  format(env=sys.platform, pyversion=sys.version, package_version=package_version)
451
451
 
@@ -25,7 +25,7 @@ from luminesce.models.field_type import FieldType
25
25
 
26
26
  class AvailableField(BaseModel):
27
27
  """
28
- Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
28
+ Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
29
29
  """
30
30
  name: StrictStr = Field(...,alias="name", description="Name of the Field")
31
31
  data_type: Optional[DataType] = Field(None, alias="dataType")
@@ -24,7 +24,7 @@ from luminesce.models.mappable_field import MappableField
24
24
 
25
25
  class AvailableParameter(BaseModel):
26
26
  """
27
- Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
27
+ Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
28
28
  """
29
29
  provider_name: StrictStr = Field(...,alias="providerName", description="Name of the Provider with a TableParameter")
30
30
  parameter_name: StrictStr = Field(...,alias="parameterName", description="Name of the TableParameter on the Provider")
@@ -23,12 +23,12 @@ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictBool, constr
23
23
 
24
24
  class CaseStatementItem(BaseModel):
25
25
  """
26
- Information about a case statement. A typical case statement would look like: CASE WHEN Field {Filter} Source THEN Target For example: CASE WHEN 'currency' = 'USD' THEN 'US' Here the Field is 'currency', the Source is 'USD', the Filter is '=', and the Target is 'US' # noqa: E501
26
+ Information about a case statement. A typical case statement would look like: CASE WHEN Field {Filter} Source THEN Target For example: CASE WHEN 'currency' = 'USD' THEN 'US' Here the Field is 'currency', the Source is 'USD', the Filter is '=', and the Target is 'US' # noqa: E501
27
27
  """
28
28
  filter: StrictStr = Field(...,alias="filter", description="The operator in the case statement SQL expression")
29
- source: StrictStr = Field(...,alias="source", description="The expression that is on the LHS of the operator A typical case statement would look like: CASE Field {Filter} Source THEN Target")
30
- target: StrictStr = Field(...,alias="target", description="The expression that is on the RHS of the operator A typical case statement would look like: CASE Field {Filter} Source THEN Target")
31
- is_target_non_literal: Optional[StrictBool] = Field(None, alias="isTargetNonLiteral", description="The Target can be a literal value or a non literal (field) and hence will be interpreted differently. This can be determined from the UI and passed down as a true / false")
29
+ source: StrictStr = Field(...,alias="source", description="The expression that is on the LHS of the operator A typical case statement would look like: CASE Field {Filter} Source THEN Target")
30
+ target: StrictStr = Field(...,alias="target", description="The expression that is on the RHS of the operator A typical case statement would look like: CASE Field {Filter} Source THEN Target")
31
+ is_target_non_literal: Optional[StrictBool] = Field(None, alias="isTargetNonLiteral", description="The Target can be a literal value or a non literal (field) and hence will be interpreted differently. This can be determined from the UI and passed down as a true / false")
32
32
  __properties = ["filter", "source", "target", "isTargetNonLiteral"]
33
33
 
34
34
  class Config:
@@ -26,9 +26,9 @@ from luminesce.models.link import Link
26
26
 
27
27
  class CertificateState(BaseModel):
28
28
  """
29
- Information held about the minting / revoking of a certificate. It does *not* contain the certificate itself # noqa: E501
29
+ Information held about the minting / revoking of a certificate. It does *not* contain the certificate itself # noqa: E501
30
30
  """
31
- key: Optional[StrictStr] = Field(None,alias="key", description="The \"key\" to which this belongs in the dictionary, basically the CN without any version information")
31
+ key: Optional[StrictStr] = Field(None,alias="key", description="The \"key\" to which this belongs in the dictionary, basically the CN without any version information")
32
32
  version: Optional[StrictInt] = Field(None, description="The version of this certificate")
33
33
  common_name: Optional[StrictStr] = Field(None,alias="commonName", description="The common Name of the Certificate")
34
34
  type: Optional[CertificateType] = None
@@ -31,7 +31,7 @@ class ConvertToViewData(BaseModel):
31
31
  description: Optional[StrictStr] = Field(None,alias="description", description="Description of view")
32
32
  documentation_link: Optional[StrictStr] = Field(None,alias="documentationLink", description="Documentation link")
33
33
  view_parameters: Optional[conlist(ViewParameter)] = Field(None, alias="viewParameters", description="View parameters")
34
- other_parameters: Optional[Dict[str, StrictStr]] = Field(None, alias="otherParameters", description="Other parameters not explicitly handled by the ConvertToView generation. These will be populated by the \"From SQL\" and should simply be returned by the web GUI should the user edit / update / regenerate")
34
+ other_parameters: Optional[Dict[str, StrictStr]] = Field(None, alias="otherParameters", description="Other parameters not explicitly handled by the ConvertToView generation. These will be populated by the \"From SQL\" and should simply be returned by the web GUI should the user edit / update / regenerate")
35
35
  starting_variable_name: Optional[StrictStr] = Field(None,alias="startingVariableName", description="Which variable the this start with, null if not started from a full Create View Sql Statement.")
36
36
  __properties = ["query", "name", "description", "documentationLink", "viewParameters", "otherParameters", "startingVariableName"]
37
37
 
@@ -26,7 +26,7 @@ class ErrorHighlightRequest(BaseModel):
26
26
  Request for Error highlighting # noqa: E501
27
27
  """
28
28
  lines: conlist(StrictStr) = Field(..., description="The lines of text the user currently has in the editor")
29
- ensure_some_text_is_selected: Optional[StrictBool] = Field(None, alias="ensureSomeTextIsSelected", description="If an editor requires some selection of non-whitespace this can be set to true to force at least one visible character to be selected.")
29
+ ensure_some_text_is_selected: Optional[StrictBool] = Field(None, alias="ensureSomeTextIsSelected", description="If an editor requires some selection of non-whitespace this can be set to true to force at least one visible character to be selected.")
30
30
  __properties = ["lines", "ensureSomeTextIsSelected"]
31
31
 
32
32
  class Config:
@@ -32,7 +32,7 @@ class FieldDesign(BaseModel):
32
32
  table_alias: Optional[StrictStr] = Field(None,alias="tableAlias", description="Alias of the Table the field belongs to")
33
33
  alias: Optional[StrictStr] = Field(None,alias="alias", description="Alias if any (if none the Name is used)")
34
34
  data_type: Optional[DataType] = Field(None, alias="dataType")
35
- should_select: Optional[StrictBool] = Field(None, alias="shouldSelect", description="Should this be selected? False would imply it is only being filtered on. Ignored when Aggregations are present")
35
+ should_select: Optional[StrictBool] = Field(None, alias="shouldSelect", description="Should this be selected? False would imply it is only being filtered on. Ignored when Aggregations are present")
36
36
  filters: Optional[conlist(FilterTermDesign)] = Field(None, description="Filter clauses to apply to this field (And'ed together)")
37
37
  aggregations: Optional[conlist(Aggregation)] = Field(None, description="Aggregations to apply (as opposed to simply selecting)")
38
38
  is_expression: Optional[StrictBool] = Field(None, alias="isExpression", description="Is this field an expression")
@@ -25,7 +25,7 @@ from luminesce.models.expression_with_alias import ExpressionWithAlias
25
25
 
26
26
  class MappableField(BaseModel):
27
27
  """
28
- Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
28
+ Information about a field that can be designed on (regardless if it currently is) Kind of a \"mini-available catalog entry\" # noqa: E501
29
29
  """
30
30
  name: Optional[StrictStr] = Field(None,alias="name", description="Name of the field in need of mapping (The field name from within the Table Parameter itself)")
31
31
  type: Optional[DataType] = None
@@ -36,7 +36,7 @@ class OptionsCsv(BaseModel):
36
36
  values_to_make_null: Optional[StrictStr] = Field(None,alias="valuesToMakeNull", description="Regex of values to map to 'null' in the returned data.")
37
37
  skip_pre_header: Optional[StrictInt] = Field(None, alias="skipPreHeader", description="Number of rows to ignore before the header row")
38
38
  skip_post_header: Optional[StrictInt] = Field(None, alias="skipPostHeader", description="Number of rows to ignore after the header row")
39
- skip_invalid_rows: Optional[StrictBool] = Field(None, alias="skipInvalidRows", description="Skip invalid data rows (totally invalid ones), This also allows for potentially wrong data if it can be handled somewhat e.g. embedded quotes misused (and still returns such rows). In either case a warning will show in the progress feedback.")
39
+ skip_invalid_rows: Optional[StrictBool] = Field(None, alias="skipInvalidRows", description="Skip invalid data rows (totally invalid ones), This also allows for potentially wrong data if it can be handled somewhat e.g. embedded quotes misused (and still returns such rows). In either case a warning will show in the progress feedback.")
40
40
  __properties = ["columnNames", "columnNamesWanted", "columnTypes", "inferTypeRowCount", "noHeader", "delimiter", "escape", "quote", "valuesToMakeNull", "skipPreHeader", "skipPostHeader", "skipInvalidRows"]
41
41
 
42
42
  class Config:
@@ -23,7 +23,7 @@ from aenum import Enum, no_arg
23
23
 
24
24
  class QueryDesignerVersion(str, Enum):
25
25
  """
26
- Versions of the Query Designer as evolving over time. Generally only the two largest values will be supported at any one time.
26
+ Versions of the Query Designer as evolving over time. Generally only the two largest values will be supported at any one time.
27
27
  """
28
28
 
29
29
  """
@@ -29,7 +29,7 @@ class ViewParameter(BaseModel):
29
29
  name: StrictStr = Field(...,alias="name", description="Name of the provider")
30
30
  data_type: DataType = Field(..., alias="dataType")
31
31
  value: StrictStr = Field(...,alias="value", description="Value of the provider")
32
- is_table_data_mandatory: Optional[StrictBool] = Field(None, alias="isTableDataMandatory", description="Should this be selected? False would imply it is only being filtered on. Ignored when Aggregations are present")
32
+ is_table_data_mandatory: Optional[StrictBool] = Field(None, alias="isTableDataMandatory", description="Should this be selected? False would imply it is only being filtered on. Ignored when Aggregations are present")
33
33
  description: Optional[StrictStr] = Field(None,alias="description", description="Description of the parameter")
34
34
  __properties = ["name", "dataType", "value", "isTableDataMandatory", "description"]
35
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: luminesce-sdk
3
- Version: 2.2.12
3
+ Version: 2.2.14
4
4
  Summary: FINBOURNE Luminesce Web API
5
5
  Home-page: https://github.com/finbourne/luminesce-sdk-python
6
6
  License: MIT
@@ -5,14 +5,14 @@ luminesce/api/binary_downloading_api.py,sha256=1T6sEyGQYei_oyKNzsybP01UsfOw8V6ZN
5
5
  luminesce/api/certificate_management_api.py,sha256=O_q368dPyDhdtInk2JGB67mJ3O1RP2ZBqg3PtXmsdr8,31116
6
6
  luminesce/api/current_table_field_catalog_api.py,sha256=Lcan-kAeGBz1mdTtc37L2Hr9YSVTTo6YAfsyyX5TzG4,25943
7
7
  luminesce/api/health_checking_endpoint_api.py,sha256=zAAUThGotYgeZXH6dDFqhk5gNFryfVYzlzjKmXDQjgw,8632
8
- luminesce/api/historically_executed_queries_api.py,sha256=CyLTTm2ZJ6-zzzviOr1ehxcq-Wb-JAepCLJDXr73fQ8,65954
9
- luminesce/api/multi_query_execution_api.py,sha256=bq29TwJdDmAxCjKu7WQmFxZppZoWjQS0vRVNQLI9q5A,38534
10
- luminesce/api/sql_background_execution_api.py,sha256=hgtbF5xuWn2y-8GhCFd9HfgRW7WyGM3R9JIT6xuju-M,256090
11
- luminesce/api/sql_design_api.py,sha256=WrmxKbHxX25-qbfDSnN3YQyQLDgM6OFqtlyZoHPc3mw,166374
12
- luminesce/api/sql_execution_api.py,sha256=zaecuqSB1JLyYhZ-zB-YR5t0f9B3LzmlxAKKrMUyM1A,180318
8
+ luminesce/api/historically_executed_queries_api.py,sha256=niTF6lH7llXJjUflE_tAi6LRpYhRn0f7g6iQDjJlRNc,65828
9
+ luminesce/api/multi_query_execution_api.py,sha256=p8smzO35V-E43B6DzFAfMc4mtIiBet8mKynbLMnwR7I,38522
10
+ luminesce/api/sql_background_execution_api.py,sha256=LeOn5OEqYWy9LQ86aSVrcDwSeY-1btdIokIfNBN1zTs,255138
11
+ luminesce/api/sql_design_api.py,sha256=ZtcXCLCcNEzvVXOI2naWdoZEe4AYHulhhkzQiqOSOSE,166368
12
+ luminesce/api/sql_execution_api.py,sha256=6N-mNakHUKo6cpLPEFuVRFdTJ6e_FpJfp550A3AHwKg,180934
13
13
  luminesce/api_client.py,sha256=pcIeqqelBzsto2bQY3A3ALLuW6NphI9TDYWIjVSUrKY,31186
14
14
  luminesce/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
15
- luminesce/configuration.py,sha256=UCMQpjStOTjOHvoo9SfS4SLNfzpJH5X0TEEsBkPB3uM,18017
15
+ luminesce/configuration.py,sha256=0gUQ6au0NzVBxxz7VaHJBjSCsijWVJ-3kYJhj7U7-I8,18017
16
16
  luminesce/exceptions.py,sha256=z3FkOn69IUrE44CaeNt1dCX7aI-gNkPZ4FI9ShmTQC8,5344
17
17
  luminesce/extensions/__init__.py,sha256=Ae4tuN73CThE9i7c8A5HktOX4-P8tC1JOt6RgM6oacg,642
18
18
  luminesce/extensions/api_client.py,sha256=J175WcVs4r-XfQFgmHFfnVFWPNw4graIDvVwWXENX7M,30993
@@ -35,8 +35,8 @@ luminesce/models/action_id.py,sha256=Gqj865t5njIB6AqFEQw-B_DZFXFZgnqgFKhfqJMzDmU
35
35
  luminesce/models/aggregate_function.py,sha256=jNZh3J8H2sTHhu8Un6A94-zbzrUSYGdsQnXd5qxhJT0,828
36
36
  luminesce/models/aggregation.py,sha256=EjmUvcsP62HIis7tEIelOFNp1UubpWVzvVKFO9KwQtU,2526
37
37
  luminesce/models/auto_detect_type.py,sha256=RPCklFopuUvKg_h4fc2dL812sPXsvJrMMYdk2ypqedI,802
38
- luminesce/models/available_field.py,sha256=Tqj4qjeX1PEIemM1wRqtDXwfK8PQcpxe0UsMLqZxbTk,3414
39
- luminesce/models/available_parameter.py,sha256=RalnByny8iIUMXSYKP2UpQ3rWcugdCyBjIGg0l2N8zg,3125
38
+ luminesce/models/available_field.py,sha256=3I2eZtRA11uBVJ1JFVFatzI331hrwLBVJwr0jrB3iHU,3413
39
+ luminesce/models/available_parameter.py,sha256=ZJvDIRTlCVOL0EGgIelJnFI73ZhmFSzb0pocoBY8AMs,3124
40
40
  luminesce/models/background_multi_query_progress_response.py,sha256=VSp1LnngO0rQzElBJOPVAPVsOGKv6Lr03ZyT-j2_rbs,4488
41
41
  luminesce/models/background_multi_query_response.py,sha256=EtRoHijHu3Lklp7YZ4PnpCjxnkeN8n1nWr2A6q50Gzc,10886
42
42
  luminesce/models/background_query_cancel_response.py,sha256=dsyMCUB_RizHNj8inWYqTY92S3tFf7hx5OxVCbTaLeo,3018
@@ -44,29 +44,29 @@ luminesce/models/background_query_progress_response.py,sha256=983rFUXtFQ27qZc2S_
44
44
  luminesce/models/background_query_response.py,sha256=uhZPtUz8tV3f0cTo-eP3mfCjc6LaMRzUP-ZBb4RRl0c,6518
45
45
  luminesce/models/background_query_state.py,sha256=t1pForE9phkCFP5p2wKf_ixAB8gDoG8tKR-fZUoxbD4,1095
46
46
  luminesce/models/case_statement_design.py,sha256=Q7EB7I-iPZA3QnPvhR-sGNkIa_vMjx6Q2RZ9L37vL-A,3593
47
- luminesce/models/case_statement_item.py,sha256=ZmCev75ZeSsmToV7-eSIuXPK2Ma-O6sXCLx4Sc5jOQc,3326
47
+ luminesce/models/case_statement_item.py,sha256=RARal_m5XC3e51wgzo-LKnnOQjNxxPiXO1IOOlvb_hI,3316
48
48
  luminesce/models/certificate_action.py,sha256=CC9wECmjXzvpuz1aN9hAxSQOX6I0pdeETHtSvbHjwOY,808
49
49
  luminesce/models/certificate_file_type.py,sha256=_FkMfJr9G0_yFbh3Wu0fyS33ri6boEZHdFdpWkBKcsU,778
50
- luminesce/models/certificate_state.py,sha256=53G-xyu2M0vXSU9wm7t2FjxmPJ2YyFsWA_t-KrH_BQg,7910
50
+ luminesce/models/certificate_state.py,sha256=kAvu0EWdgoJmi-VKsHN0AgrojieFzpJ2xrJSdzCmIH0,7908
51
51
  luminesce/models/certificate_status.py,sha256=4b-U2HKrwOkCVtBWBxJmxotrj5kZpLZ3t1KUyRVYYHE,1415
52
52
  luminesce/models/certificate_type.py,sha256=jJRz_nZsMyKOEDT9pna0cz8rl9-hDeUn99_TcxnRyDo,716
53
53
  luminesce/models/column.py,sha256=LHxSZyOA6M7KDforVQBDH0wyPZDErJd5p1_lra3S1-w,4987
54
54
  luminesce/models/column_info.py,sha256=Bftn4ykaytb_cHj99qnPm5xdwB-YeC5JMK8AbHqoZUo,3027
55
55
  luminesce/models/column_state_type.py,sha256=zizvXodoz20TLgWceaZPi6Kssq7IRCs7jfG8gw8Aq0k,3152
56
56
  luminesce/models/condition_attributes.py,sha256=sd0PD1hVONSjmZfNaWrqpfjH-GO5l-oZ4q9k_YALseQ,738
57
- luminesce/models/convert_to_view_data.py,sha256=7auLc9bSOMPY1Cx9Wv13AGCz-zQDmMy1ywh5bDapcSE,5336
57
+ luminesce/models/convert_to_view_data.py,sha256=npcCii-wyttb5-TLV_w6v_2JL0IXb4EdDcasJY7sM7k,5334
58
58
  luminesce/models/cursor_position.py,sha256=XlMhTvL6bfXBqilX_LM5bNlrjQa_56YZXlnlgCssXug,2287
59
59
  luminesce/models/dashboard_type.py,sha256=-rP-dG9HSlEkDO2rEIX_ysqWlWSiPJxj_brRjOagpH8,685
60
60
  luminesce/models/data_type.py,sha256=DZ7Si5i4U23P5obwSSU6zRwpavVxYsin70Rqptm2LJg,789
61
61
  luminesce/models/date_parameters.py,sha256=L6mJAq8UMqenNUuWjppBrGauXerRiye9NAJKcAfkLk0,3391
62
62
  luminesce/models/design_join_type.py,sha256=wS7pJmioDDbzwWQhdBkrUjXFJZqvteEtAoZxxMofHmA,722
63
63
  luminesce/models/error_highlight_item.py,sha256=ticZMJ2-rMWIhJRkuF417xXjMURTYwaA0fYJHYk2QZM,3571
64
- luminesce/models/error_highlight_request.py,sha256=L1Rgx2kZFBRYWieTGJ0hIRU3OK8AATFG2mc5dxx7Ch8,2618
64
+ luminesce/models/error_highlight_request.py,sha256=J_3ds_VaySz-UqpxnDMFtsVisO3FP-IOnP07TYpLuH8,2617
65
65
  luminesce/models/error_highlight_response.py,sha256=rQ9LonChUD0E87IPtR28Ck9K79ADwr71sfcvt8Gx2Wk,2911
66
66
  luminesce/models/expression_with_alias.py,sha256=NvM6GUxrosFZeabf6Kp7WruyPZ4yrzNzIEJYft4nsms,2834
67
67
  luminesce/models/feedback_event_args.py,sha256=G6g39-MIrOXb9oQP9IsYtBqFG8SHGuszv8tyFdU-yOY,4379
68
68
  luminesce/models/feedback_level.py,sha256=-oIH-JFdUFo8GN63ZaI-yb1i15R69ZZRJF9f-ysMyx0,994
69
- luminesce/models/field_design.py,sha256=fxaLlUHL2yKN516lyezqYBLZcW4JIImIXRexvY4kkl4,5383
69
+ luminesce/models/field_design.py,sha256=wJ5bRtu5KUhlHdtCr6y9NU7XZuVCInPUq-uSyX3ykKA,5382
70
70
  luminesce/models/field_type.py,sha256=4ZMF0m0C2p4zapHv6e7hsGzX6M1hFV0DRM84TX3_ecc,654
71
71
  luminesce/models/file_reader_builder_def.py,sha256=oW0AYjSFNRIRBMhIyLH4_yD9k4uJ1kGSTXf9biARZNY,8431
72
72
  luminesce/models/file_reader_builder_response.py,sha256=arX6iAE79VuBBlaUnF00YWLopcJNQ5NmbxYXoJUDQbE,3995
@@ -85,11 +85,11 @@ luminesce/models/link.py,sha256=wpCkW77qH07IzfIKByeUkrJaEFVSeyHgfjVM5vJauDU,2579
85
85
  luminesce/models/luminesce_binary_type.py,sha256=CH0Pah77E37BukXZfiXcEd9RpVvV66QQ0WkrtKbl5jA,1799
86
86
  luminesce/models/lusid_grid_data.py,sha256=RgGDTcnUD3uxyu-l9AA4ew6Df2wr8xrSIMs8QcfyXkU,3994
87
87
  luminesce/models/lusid_problem_details.py,sha256=NxhqMpafpQo1EG98vwSc744KHZv21lyHk8s-PKMD6iY,4180
88
- luminesce/models/mappable_field.py,sha256=jqdW9QjSLcgxn2TZiS4SUfdFhmFBJyr2RNVPC3ovM94,5477
88
+ luminesce/models/mappable_field.py,sha256=9CC2CnLmzOMhVm84OuNvEl63NN4ce4gvOFPVxLjmvsM,5476
89
89
  luminesce/models/mapping_flags.py,sha256=c6vJ8FgMS9mEVjmCBwePFwHCM1g9qiOffh0DanNB7BY,711
90
90
  luminesce/models/multi_query_definition_type.py,sha256=aUaZYifXL2F8B91VJuXYxW3b93N-bBvw5If2grxZ_6U,1309
91
91
  luminesce/models/on_clause_term_design.py,sha256=X-jC0R-OE8MUWna3Q2h6PB1BNTqDW3kzpUnHBkMtkb4,4024
92
- luminesce/models/options_csv.py,sha256=V_1x77pzyOWZSHOEPZPpuM2yN1gEjAGU5rJWKxsfDek,6611
92
+ luminesce/models/options_csv.py,sha256=-3Eqg5E_fZgYbBdBa8Y-bVS_w6CW_-1cYlInOYMHhQE,6609
93
93
  luminesce/models/options_excel.py,sha256=-VnuIJqvNXJkhE9kXyV-LOKI8Pz5Zwdqwqf-pHg4sfc,5657
94
94
  luminesce/models/options_parquet.py,sha256=27MYCJSVlUHnwCPQZ7JMCn6p4sk7JTmGVge2RiOdc3A,2546
95
95
  luminesce/models/options_sq_lite.py,sha256=I-YxyatSjuOaTR2YBd0MCGDNrcCbU-cI9mtHgUpRJ_0,2467
@@ -98,7 +98,7 @@ luminesce/models/order_by_direction.py,sha256=TKCNGigd1Zq8pAi59kaEp8L2KIlpRhaGfX
98
98
  luminesce/models/order_by_term_design.py,sha256=IxoOhKJDtj0Pgajggh8CSPnrZn0JxnSxmWi-bz7u-CU,2767
99
99
  luminesce/models/query_design.py,sha256=dvnIaXNE3qnv_10ivsrYZYV4nN3KBT5mvV5BotE2uKA,7155
100
100
  luminesce/models/query_designer_binary_operator.py,sha256=puQC9XYGKs44Hp_mPN6sEmDsap4jjh2wjgxW9c_oXjQ,923
101
- luminesce/models/query_designer_version.py,sha256=z3AOYeB_nISxetLqXUkuzXxPqzNtIN6qXETCMm7IW7U,830
101
+ luminesce/models/query_designer_version.py,sha256=v0kyx5ETarVYUX57to7EsQMp-3FKnJM_x_IdOxBzi_0,829
102
102
  luminesce/models/resource_id.py,sha256=SaKPKsQFzMwqg4N6ZxsIiVVTuJuFmpwwGiFgKTEWrhY,2502
103
103
  luminesce/models/resource_list_of_access_controlled_resource.py,sha256=OIAVBu0alXsOlHhipcs3saF0QgdePzq0Axn8_Cv2l4k,4506
104
104
  luminesce/models/scalar_parameter.py,sha256=gJPwxlB5pAaFn_i4P_DwOceGRyX6n59Bmwjt6WjGsQw,3390
@@ -108,10 +108,10 @@ luminesce/models/table_meta.py,sha256=qLvaefs3qeK1FApfg-v9Hwk0syo3BItgdUZp98IfQU
108
108
  luminesce/models/table_view.py,sha256=KZcuMxYXHMdbNkEwGIYZRntXenqqkDAp7AyEgDhSr94,4170
109
109
  luminesce/models/task_status.py,sha256=YFJTlVk3svXOiBKRFJMwq_MtkoA-FK8W949r1EwBa5k,897
110
110
  luminesce/models/type.py,sha256=CRLj2GqLhwfO-WrEYW2SFAIaZ97gEF8pVGkQk43A0R0,965
111
- luminesce/models/view_parameter.py,sha256=EveKWFtpojrzvX9KhT7ag7lJA54w_OcFS0JxlHKyiJE,3156
111
+ luminesce/models/view_parameter.py,sha256=bEOBag3Y1T_KnQGQW7O1yL4jFEvQHg5XF-baIYfdwKk,3155
112
112
  luminesce/models/writer_design.py,sha256=JI1EO5YhbIeuOZnEfOL6ONJhk_XmaJuSlR3SwR86VHU,4716
113
113
  luminesce/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  luminesce/rest.py,sha256=jPlPMTmdrPXCaisGiNGkjP2TJLT0dSH51tvzauPijNk,13453
115
- luminesce_sdk-2.2.12.dist-info/METADATA,sha256=xJvZXDM8R4xQiQlHzbA0R3uE2r_07Ux4N86HJePr9dI,18267
116
- luminesce_sdk-2.2.12.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
117
- luminesce_sdk-2.2.12.dist-info/RECORD,,
115
+ luminesce_sdk-2.2.14.dist-info/METADATA,sha256=pmxM3X_2t961UsDPWNteQC51D6CkM4QoweG3_IrcRC8,18267
116
+ luminesce_sdk-2.2.14.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
117
+ luminesce_sdk-2.2.14.dist-info/RECORD,,