v1.3.0

Version 1.3.0

07/28/25

TypeLocationEventPrevious VersionUpdated VersionNotes
parameterplaybook.yamlN/A1.2.01.3.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 birthday = input.traits.birthday or input.context.traits.birthday<br>if (birthday) then return TO_SHA256_HASH(LOWER(TRIM(birthday))) endlocal birthday = input.traits.birthday<br>if (birthday) then return TO_SHA256_HASH(LOWER(TRIM(birthday))) endUpdated body parameter
parameterplaybook.yamlgloballocal street = input.traits.address.street or input.context.traits.address.street<br>if (street) then return TO_SHA256_HASH(LOWER(TRIM(street))) endlocal street = input.traits.address.street<br>if (street) then return TO_SHA256_HASH(LOWER(TRIM(street))) 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