Releases: MaibornWolff/alt-core-js
Releases · MaibornWolff/alt-core-js
v1.18.9
v1.18.8
Add option to allow insecure SSL for mqtt publish action
v1.18.7
Add option to allow insecure SSL for mqtt action
v1.18.6
v1.18.5: Merge pull request #110 from MaibornWolff/fix_wrong_amqp_source_in_uml
fix github actions and fix amqp uml drawing
v1.18.4
v1.18.3
v1.18.2
v1.13.0
Changelog
Features
Added the possibility to hide specific fields in payloads and plaitext payloads in the drawn diagrams. This can be achieved on a per action level by setting the the field diagramConfiguration
of the corresponding action. diagramConfiguration
is an object which supports 2 fields:
hiddenFields
: A list of the names of the fields to hidehidePlaintext
:true
orfalse
All actions which have payloads are support this new feature
Example
type: REST
service: https://some.url
endpoint: /
diagramConfiguration:
hiddenFields:
- foo
- bar
- password
hidePlaintext: true
v1.12.0
Changelog
Feature
- Added the possibility to use a variable directly as payload for a
REST
action. This basically enables sending arbitrary data. This can be achieved by providing the name of the variable to be sent to the parametervariableAsPayload
in theREST
action definition. Only variables of type typestring
,Buffer
orReadStream
are supported. Providing a variable of another type will result in the action failing. Here is an example:type: REST service: https://some.url endpoint: / variableAsPayload: someVar # The contents of the variable someVar will be sent as payload