omnata-plugin-runtime 0.5.3__tar.gz → 0.5.4a121__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.3
3
+ Version: 0.5.4a121
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.3"
3
+ version = "0.5.4-a121"
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"
@@ -209,7 +209,7 @@ class FormSliderField(SubscriptableBaseModel):
209
209
 
210
210
  name: str
211
211
  label: str
212
- default_value: Optional[str] = Field(default=None)
212
+ default_value: Optional[Union[str,int]] = Field(default=None)
213
213
  secret: bool = Field(default=False)
214
214
  required: bool = Field(default=False)
215
215
  depends_on: Optional[str] = Field(default=None)