omnata-plugin-runtime 0.5.7a153__tar.gz → 0.5.7a154__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.5.7a153
3
+ Version: 0.5.7a154
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-a153"
3
+ version = "0.5.7-a154"
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"
@@ -127,6 +127,8 @@ class PluginInfo(BaseModel):
127
127
  Setting this to 'partner' means that the plugin was developed and distributed by a partner.
128
128
  All other values only carry meaning for Omnata plugins, to indicate which iconography to apply within the application.
129
129
  :param str package_source: Whether the plugin is packaged as a function or a stage
130
+ :param List[UDFDefinition] consumer_udfs: A list of UDFs that the plugin exposes to consumers
131
+ :param List[UDTFDefinition] consumer_udtfs: A list of UDTFs that the plugin exposes to consumers
130
132
  """
131
133
 
132
134
  manifest: PluginManifest
@@ -139,6 +141,8 @@ class PluginInfo(BaseModel):
139
141
  plugin_devkit_version: str = 'unknown'
140
142
  tier: str
141
143
  package_source: Literal["function", "stage"]
144
+ consumer_udfs: List[UDFDefinition] = Field(default_factory=list)
145
+ consumer_udtfs: List[UDTFDefinition] = Field(default_factory=list)
142
146
 
143
147
 
144
148
  def jinja_filter(func):