omnata-plugin-runtime 0.5.7a134__tar.gz → 0.5.7a135__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.5.7a134
3
+ Version: 0.5.7a135
4
4
  Summary: Classes and common runtime components for building and running Omnata Plugins
5
5
  Author: James Weakley
6
6
  Author-email: james.weakley@omnata.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.5.7-a134"
3
+ version = "0.5.7-a135"
4
4
  description = "Classes and common runtime components for building and running Omnata Plugins"
5
5
  authors = ["James Weakley <james.weakley@omnata.com>"]
6
6
  readme = "README.md"
@@ -2232,16 +2232,16 @@ def get_nested_value(nested_dict:Dict, keys:List[str]):
2232
2232
 
2233
2233
  @dataclass
2234
2234
  class SnowflakeFunctionParameter:
2235
- arg_name: str
2235
+ name: str
2236
2236
  description: str
2237
- arg_data_type: str
2237
+ data_type: str
2238
2238
  has_default_value: bool = False
2239
2239
  default_value_clause: Optional[str] = None
2240
2240
 
2241
2241
  @dataclass
2242
2242
  class SnowflakeUDTFResultColumn:
2243
- column_name: str
2244
- column_data_type: str
2243
+ name: str
2244
+ data_type: str
2245
2245
  description: str
2246
2246
 
2247
2247
  def consumer_udtf(