flow parameters (#526)

* Flow parameter tech spec

* Flow configurable parameters implemented
This commit is contained in:
cybermaggedon 2025-09-23 23:18:04 +01:00 committed by GitHub
parent 3b0b13d74d
commit dc2fa1f31e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 538 additions and 26 deletions

View file

@ -35,6 +35,9 @@ class FlowRequest(Record):
# get_flow, start_flow, stop_flow
flow_id = String()
# start_flow - optional parameters for flow customization
parameters = Map(String())
class FlowResponse(Record):
# list_classes
@ -52,6 +55,9 @@ class FlowResponse(Record):
# get_flow
description = String()
# get_flow - parameters used when flow was started
parameters = Map(String())
# Everything
error = Error()