Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add onQueryAttributeChange command #11

Merged
merged 1 commit into from
Oct 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions iwf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,10 @@ components:
type: array
items:
$ref: '#/components/schemas/SignalCommand'
onQueryAttributeChangeCommands:
type: array
items:
$ref: '#/components/schemas/OnQueryAttributeChangeCommands'
CommandResults:
type: object
properties:
Expand All @@ -634,6 +638,10 @@ components:
type: array
items:
$ref: '#/components/schemas/TimerResult'
onQueryAttributeChangeResults:
type: array
items:
$ref: '#/components/schemas/OnQueryAttributeChangeResult'
ActivityCommand:
required:
- commandId
Expand Down Expand Up @@ -669,6 +677,16 @@ components:
type: string
signalChannelName:
type: string
OnQueryAttributeChangeCommand:
type: object
required:
- commandId
- attributeKey
properties:
commandId:
type: string
attributeKey:
type: string
ActivityOptions:
type: object
properties:
Expand Down Expand Up @@ -714,6 +732,19 @@ components:
enum:
- SCHEDULED
- FIRED
OnQueryAttributeChangeResult:
type: object
required:
- commandId
- status
properties:
commandId:
type: string
status:
type: string
enum:
- WAITING
- COMPLETED
SignalResult:
type: object
required:
Expand Down