@camera.ui/cli 0.0.25 → 0.0.26

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camera.ui/cli",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "camera.ui cli",
5
5
  "type": "module",
6
6
  "bin": {
@@ -39,10 +39,10 @@ class SamplePlugin(BasePlugin):
39
39
  del self.cameras[id]
40
40
 
41
41
  def start(self) -> None:
42
- self.logger.log("Plugin Started")
42
+ self.logger.log("Finished launching plugin")
43
43
 
44
44
  def stop(self) -> None:
45
- self.logger.log("Plugin Stopped")
45
+ self.logger.log("Shutting down plugin")
46
46
 
47
47
  async def onFormSubmit(self, action_id: str, payload: Any) -> Union[FormSubmitResponse, None]:
48
48
  print("Form submitted", action_id, payload)