Skip to content

Commit

Permalink
Merge pull request #1819 from Accenture/task/1818-no-longer-include-t…
Browse files Browse the repository at this point in the history
…riggeredsend-keys-in-templated-journeys-to-ensure-journey-metadata-is-clean

Task/1818 no longer include triggeredsend keys in templated journeys to ensure journey metadata is clean
  • Loading branch information
JoernBerkefeld authored Nov 2, 2024
2 parents 6916f4c + aae7658 commit c53a992
Showing 1 changed file with 41 additions and 4 deletions.
45 changes: 41 additions & 4 deletions lib/metadataTypes/definitions/Journey.definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,52 @@ export default {
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSendKey': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSendId': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend': {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSend.id': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend.key': {
// if used during create then we are stuck with old data
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
},
'activities[].configurationArguments.triggeredSend.campaigns': {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSend.suppressionLists': {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: true,
},
'activities[].configurationArguments.triggeredSend.autoAddSubscribers': {
isCreateable: true,
isUpdateable: true,
Expand Down Expand Up @@ -778,10 +818,7 @@ export default {
template: true,
},
'triggers[].configurationArguments.eventDataConfig': {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: true,
skipValidation: true,
},
'triggers[].configurationArguments.primaryObjectFilterCriteria': {
skipValidation: true,
Expand Down

0 comments on commit c53a992

Please sign in to comment.