fix(flow): replace unsupported outputParameters with storeOutputAutomatically on SMS phone input field

InputField screen components do not support <outputParameters>. Replaced with
<storeOutputAutomatically>true</storeOutputAutomatically> and renamed the field
to match the target variable (recipientSmsPhone) so the value is stored directly.
This commit is contained in:
Paul Huliganga 2026-03-13 11:41:15 -04:00
parent faf53d0777
commit a9768ef553
1 changed files with 2 additions and 6 deletions

View File

@ -411,16 +411,12 @@
<fieldType>DisplayText</fieldType> <fieldType>DisplayText</fieldType>
</fields> </fields>
<fields> <fields>
<name>recipientSmsPhone_Input</name> <name>recipientSmsPhone</name>
<dataType>String</dataType> <dataType>String</dataType>
<fieldText>Recipient Mobile Phone Number</fieldText> <fieldText>Recipient Mobile Phone Number</fieldText>
<fieldType>InputField</fieldType> <fieldType>InputField</fieldType>
<isRequired>true</isRequired> <isRequired>true</isRequired>
<outputParameters> <storeOutputAutomatically>true</storeOutputAutomatically>
<assignToReference>recipientSmsPhone</assignToReference>
<name>value</name>
</outputParameters>
<scale>0</scale>
</fields> </fields>
<nextOrFinishButtonLabel>Next</nextOrFinishButtonLabel> <nextOrFinishButtonLabel>Next</nextOrFinishButtonLabel>
<showFooter>true</showFooter> <showFooter>true</showFooter>