omnata-plugin-runtime 0.11.0a298__tar.gz → 0.11.0a299__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.3
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.11.0a298
3
+ Version: 0.11.0a299
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.11.0-a298"
3
+ version = "0.11.0-a299"
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"
@@ -413,6 +413,13 @@ class FullyQualifiedTable(BaseModel):
413
413
  """
414
414
  return self.get_fully_qualified_name(table_override=f"{self.table_name}_STATE_REGISTER")
415
415
 
416
+ def get_fully_qualified_state_register_table_sequence_name(self) -> str:
417
+ """
418
+ Returns the fully qualified name of the state register table.
419
+ This is used to store state values for syncs, paired with query IDs to use with time travel.
420
+ """
421
+ return self.get_fully_qualified_name(table_override=f"{self.table_name}_STATE_REGISTER_SEQ")
422
+
416
423
  class SnowflakeViewPart(BaseModel):
417
424
  """
418
425
  Represents a stream within a normalized view.