v1.4.0

Version 1.4.0

07/28/25

TypeLocationEventPrevious VersionUpdated VersionNotes
parameterplaybook.yamlN/A1.3.01.4.0Updated version parameter
parameterplaybook.yamlgloballocal email = input.traits.email or input.context.traits.email<br>if (email) then return TO_SHA256_HASH(LOWER(TRIM(email))) endlocal email = input.traits.email<br>if (email) then return TO_SHA256_HASH(LOWER(TRIM(email))) endUpdated body parameter
parameterplaybook.yamlgloballocal phone = input.traits.phone or input.context.traits.phone<br>if (phone) then return TO_SHA256_HASH(TRIM(phone)) endlocal phone = input.traits.phone<br>if (phone) then return TO_SHA256_HASH(TRIM(phone)) endUpdated body parameter
parameterplaybook.yamlgloballocal firstName = input.traits.firstName or input.context.traits.firstName<br>if (firstName) then return TO_SHA256_HASH(LOWER(TRIM(firstName))) endlocal firstName = input.traits.firstName<br>if (firstName) then return TO_SHA256_HASH(LOWER(TRIM(firstName))) endUpdated body parameter
parameterplaybook.yamlgloballocal lastName = input.traits.lastName or input.context.traits.lastName<br>if (lastName) then return TO_SHA256_HASH(LOWER(TRIM(lastName))) endlocal lastName = input.traits.lastName<br>if (lastName) then return TO_SHA256_HASH(LOWER(TRIM(lastName))) endUpdated body parameter
parameterplaybook.yamlgloballocal gender = input.traits.gender or input.context.traits.gender<br>if (gender) then return TO_SHA256_HASH(LOWER(TRIM(gender))) endlocal gender = input.traits.gender<br>if (gender) then return TO_SHA256_HASH(LOWER(TRIM(gender))) endUpdated body parameter
parameterplaybook.yamlgloballocal city = input.traits.address.city or input.context.traits.address.city<br>if (city) then return TO_SHA256_HASH(LOWER(city:gsub('%s+',''))) endlocal city = input.traits.address.city<br>if (city) then return TO_SHA256_HASH(LOWER(city:gsub('%s+',''))) endUpdated body parameter
parameterplaybook.yamlgloballocal state = input.traits.address.state or input.context.traits.address.state<br>if (state) then return TO_SHA256_HASH(LOWER(TRIM(state))) endlocal state = input.traits.address.state<br>if (state) then return TO_SHA256_HASH(LOWER(TRIM(state))) endUpdated body parameter
parameterplaybook.yamlgloballocal postalCode = input.traits.address.postalCode or input.context.traits.address.postalCode<br>if (postalCode) then return TO_SHA256_HASH(TRIM(postalCode)) endlocal postalCode = input.traits.address.postalCode<br>if (postalCode) then return TO_SHA256_HASH(TRIM(postalCode)) endUpdated body parameter
parameterplaybook.yamlgloballocal country = input.traits.address.country or input.context.traits.address.country<br>if (country) then return TO_SHA256_HASH(TRIM(country)) endlocal country = input.traits.address.country<br>if (country) then return TO_SHA256_HASH(TRIM(country)) endUpdated body parameter