mcdev 5.1.0 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. package/.eslintrc.json +4 -4
  2. package/.fork/custom-commands.json +12 -0
  3. package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
  4. package/.github/PULL_REQUEST_TEMPLATE/pr_template_release.md +19 -0
  5. package/.github/PULL_REQUEST_TEMPLATE.md +2 -2
  6. package/.github/workflows/coverage-develop-branch.yml +0 -2
  7. package/.github/workflows/coverage-main-branch.yml +0 -2
  8. package/.github/workflows/coverage.yml +0 -2
  9. package/.husky/post-checkout +1 -0
  10. package/.husky/post-merge +1 -0
  11. package/.vscode/extensions.json +4 -0
  12. package/docs/dist/documentation.md +1034 -296
  13. package/lib/Deployer.js +25 -25
  14. package/lib/MetadataTypeDefinitions.js +2 -1
  15. package/lib/MetadataTypeInfo.js +2 -1
  16. package/lib/Retriever.js +1 -1
  17. package/lib/cli.js +165 -10
  18. package/lib/index.js +398 -95
  19. package/lib/metadataTypes/Asset.js +10 -11
  20. package/lib/metadataTypes/AttributeGroup.js +76 -2
  21. package/lib/metadataTypes/AttributeSet.js +367 -0
  22. package/lib/metadataTypes/Automation.js +483 -137
  23. package/lib/metadataTypes/DataExtension.js +465 -68
  24. package/lib/metadataTypes/DataExtensionField.js +31 -14
  25. package/lib/metadataTypes/Event.js +2 -3
  26. package/lib/metadataTypes/Folder.js +1 -1
  27. package/lib/metadataTypes/Journey.js +13 -7
  28. package/lib/metadataTypes/MetadataType.js +212 -54
  29. package/lib/metadataTypes/MobileKeyword.js +9 -9
  30. package/lib/metadataTypes/MobileMessage.js +5 -5
  31. package/lib/metadataTypes/Query.js +26 -10
  32. package/lib/metadataTypes/Script.js +3 -3
  33. package/lib/metadataTypes/TransactionalEmail.js +94 -17
  34. package/lib/metadataTypes/TransactionalMessage.js +3 -2
  35. package/lib/metadataTypes/TransactionalSMS.js +5 -5
  36. package/lib/metadataTypes/TriggeredSend.js +25 -50
  37. package/lib/metadataTypes/User.js +7 -4
  38. package/lib/metadataTypes/Verification.js +230 -0
  39. package/lib/metadataTypes/definitions/AttributeGroup.definition.js +119 -108
  40. package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +123 -43
  41. package/lib/metadataTypes/definitions/Automation.definition.js +23 -15
  42. package/lib/metadataTypes/definitions/ImportFile.definition.js +36 -6
  43. package/lib/metadataTypes/definitions/TransactionalEmail.definition.js +19 -1
  44. package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -0
  45. package/lib/metadataTypes/definitions/Verification.definition.js +88 -0
  46. package/lib/util/cache.js +9 -4
  47. package/lib/util/cli.js +40 -0
  48. package/lib/util/file.js +2 -2
  49. package/lib/util/init.js +84 -0
  50. package/lib/util/util.js +121 -13
  51. package/package.json +13 -13
  52. package/test/mockRoot/.mcdevrc.json +1 -1
  53. package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testExisting_dataExtensionShared.dataExtension-meta.json +59 -0
  54. package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testNew_dataExtensionShared.dataExtension-meta.json +23 -0
  55. package/test/mockRoot/deploy/testInstance/testBU/automation/testExisting_automation.automation-meta.json +1 -2
  56. package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +9 -6
  57. package/test/mockRoot/deploy/testInstance/testBU/dataExtension/testExisting_dataExtension.dataExtension-meta.json +1 -0
  58. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testExisting_dataExtract.dataExtract-meta.json +35 -0
  59. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testNew_dataExtract.dataExtract-meta.json +35 -0
  60. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testExisting_fileTransfer.fileTransfer-meta.json +17 -0
  61. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testNew_fileTransfer.fileTransfer-meta.json +17 -0
  62. package/test/mockRoot/deploy/testInstance/testBU/importFile/testExisting_importFile.importFile-meta.json +29 -0
  63. package/test/mockRoot/deploy/testInstance/testBU/importFile/testNew_importFile.importFile-meta.json +29 -0
  64. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.json +11 -0
  65. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.sql +6 -0
  66. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.json +6 -0
  67. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.ssjs +1 -0
  68. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.json +6 -0
  69. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.ssjs +1 -0
  70. package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testExisting_temail.transactionalEmail-meta.json +3 -4
  71. package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testNew_temail.transactionalEmail-meta.json +1 -6
  72. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
  73. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
  74. package/test/mockRoot/deploy/testInstance/testBU/verification/testExisting_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
  75. package/test/mockRoot/deploy/testInstance/testBU/verification/testNew_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
  76. package/test/resourceFactory.js +77 -12
  77. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-response.xml +27 -0
  78. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDEmaillike@-response.xml +156 -0
  79. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +87 -0
  80. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmaillike@-response.xml +156 -0
  81. package/test/resources/1111111/accountUser/retrieve-CustomerKey=testExisting_userANDActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +27 -0
  82. package/test/resources/1111111/accountUserAccount/retrieve-AccountUser.AccountUserID=700301950-response.xml +60 -0
  83. package/test/resources/1111111/data/v1/customobjectdata/key/testExisting_dataExtensionShared/rowset/get-response.json +13 -0
  84. package/test/resources/1111111/dataExtension/create-expected.json +23 -0
  85. package/test/resources/1111111/dataExtension/create-response.xml +59 -0
  86. package/test/resources/1111111/dataExtension/retrieve-expected.json +55 -0
  87. package/test/resources/1111111/dataExtension/retrieve-expected.md +18 -0
  88. package/test/resources/1111111/dataExtension/retrieve-response.xml +27 -1
  89. package/test/resources/1111111/dataExtension/update-expected.json +55 -0
  90. package/test/resources/1111111/dataExtension/update-response.xml +57 -0
  91. package/test/resources/1111111/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtensionShared].[TriggerUpdate_randomNumber_]-response.xml +45 -0
  92. package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
  93. package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionSharedORDataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
  94. package/test/resources/1111111/dataExtensionField/retrieve-response.xml +98 -0
  95. package/test/resources/1111111/dataExtensionTemplate/retrieve-response.xml +303 -0
  96. package/test/resources/1111111/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +387 -0
  97. package/test/resources/1111111/dataFolder/retrieve-response.xml +353 -9
  98. package/test/resources/1111111/user/retrieve-expected.md +4 -2
  99. package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
  100. package/test/resources/9999999/attributeSet/retrieve-expected.json +143 -0
  101. package/test/resources/9999999/automation/build-expected.json +5 -2
  102. package/test/resources/9999999/automation/create-expected.json +11 -8
  103. package/test/resources/9999999/automation/create-testNew_automation-expected.md +5 -4
  104. package/test/resources/9999999/automation/patch_fixKeys-pause-expected.json +44 -0
  105. package/test/resources/9999999/automation/patch_fixKeys-schedule-expected.json +44 -0
  106. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  107. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml +42 -0
  108. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +42 -0
  109. package/test/resources/9999999/automation/perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  110. package/test/resources/9999999/automation/retrieve-expected.json +5 -2
  111. package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +3 -2
  112. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  113. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +38 -0
  114. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +52 -0
  115. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +52 -0
  116. package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  117. package/test/resources/9999999/automation/template-expected.json +5 -2
  118. package/test/resources/9999999/automation/update-expected.json +1 -2
  119. package/test/resources/9999999/automation/update-testExisting_automation-expected.md +2 -2
  120. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +7 -0
  121. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/get-response.json +85 -0
  122. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/patch-response.json +85 -0
  123. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/get-response.json +85 -0
  124. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +85 -0
  125. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/get-response.json +85 -0
  126. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +85 -0
  127. package/test/resources/9999999/automation/v1/automations/a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +1 -1
  128. package/test/resources/9999999/automation/v1/automations/post-response.json +27 -19
  129. package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -0
  130. package/test/resources/9999999/automation/v1/dataextracts/post-response.json +38 -0
  131. package/test/resources/9999999/automation/v1/dataextracttypes/get-response.json +50 -0
  132. package/test/resources/9999999/automation/v1/dataverifications/post-response.json +12 -0
  133. package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/delete-response.json +0 -0
  134. package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/get-response.json +12 -0
  135. package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/patch-response.json +12 -0
  136. package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -0
  137. package/test/resources/9999999/automation/v1/filetransfers/post-response.json +18 -0
  138. package/test/resources/9999999/automation/v1/ftplocations/get-response.json +18 -0
  139. package/test/resources/9999999/automation/v1/imports/9d16f42c-2260-ed11-b849-48df37d1de8b/patch-response.json +31 -0
  140. package/test/resources/9999999/automation/v1/imports/get-response.json +1 -1
  141. package/test/resources/9999999/automation/v1/imports/post-response.json +30 -0
  142. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dae/actions/start/post-response.txt +1 -0
  143. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/get-response.json +17 -0
  144. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/patch-response.json +18 -0
  145. package/test/resources/9999999/automation/v1/queries/get-response.json +18 -1
  146. package/test/resources/9999999/automation/v1/scripts/39f6a488-20eb-4ba0-b0b9-023725b574e4/patch-response.json +10 -0
  147. package/test/resources/9999999/automation/v1/scripts/get-response.json +12 -2
  148. package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -0
  149. package/test/resources/9999999/dataExtension/build-expected.json +16 -0
  150. package/test/resources/9999999/dataExtension/delete-response.xml +42 -0
  151. package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
  152. package/test/resources/9999999/dataExtension/retrieve-expected.json +16 -0
  153. package/test/resources/9999999/dataExtension/retrieve-expected.md +3 -1
  154. package/test/resources/9999999/dataExtension/template-expected.json +16 -0
  155. package/test/resources/9999999/dataExtension/update-expected.json +17 -1
  156. package/test/resources/9999999/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtension].[LastName]-response.xml +44 -0
  157. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +133 -0
  158. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
  159. package/test/resources/9999999/dataExtensionField/retrieve-response.xml +36 -1
  160. package/test/resources/9999999/dataExtract/build-expected.json +35 -0
  161. package/test/resources/9999999/dataExtract/get-expected.json +39 -0
  162. package/test/resources/9999999/dataExtract/patch-expected.json +37 -0
  163. package/test/resources/9999999/dataExtract/post-expected.json +37 -0
  164. package/test/resources/9999999/dataExtract/template-expected.json +35 -0
  165. package/test/resources/9999999/dataFolder/retrieve-ContentType=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
  166. package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
  167. package/test/resources/9999999/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +117 -0
  168. package/test/resources/9999999/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
  169. package/test/resources/9999999/dataFolder/retrieve-response.xml +23 -0
  170. package/test/resources/9999999/email/retrieve-response.xml +203 -0
  171. package/test/resources/9999999/fileTransfer/build-expected.json +15 -0
  172. package/test/resources/9999999/fileTransfer/get-expected.json +17 -0
  173. package/test/resources/9999999/fileTransfer/patch-expected.json +17 -0
  174. package/test/resources/9999999/fileTransfer/post-expected.json +17 -0
  175. package/test/resources/9999999/fileTransfer/template-expected.json +15 -0
  176. package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +628 -0
  177. package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +20194 -0
  178. package/test/resources/9999999/importFile/build-expected.json +27 -0
  179. package/test/resources/9999999/importFile/get-expected.json +29 -0
  180. package/test/resources/9999999/importFile/patch-expected.json +29 -0
  181. package/test/resources/9999999/importFile/post-expected.json +29 -0
  182. package/test/resources/9999999/importFile/template-expected.json +27 -0
  183. package/test/resources/9999999/interaction/v1/interactions/233d4413-922c-4568-85a5-e5cc77efc3be/delete-response.json +1 -0
  184. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +1 -1
  185. package/test/resources/9999999/messaging/v1/email/definitions/post-response.json +1 -1
  186. package/test/resources/9999999/messaging/v1/email/definitions/testExisting_temail/delete-response.json +6 -0
  187. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml +32 -0
  188. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml +32 -0
  189. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml +32 -0
  190. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml +32 -0
  191. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_pause-response.xml +30 -0
  192. package/test/resources/9999999/program/retrieve-response.xml +21 -3
  193. package/test/resources/9999999/query/patch_fixKeys-expected.json +11 -0
  194. package/test/resources/9999999/query/patch_fixKeys-expected.sql +6 -0
  195. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml +30 -0
  196. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml +30 -0
  197. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml +30 -0
  198. package/test/resources/9999999/script/build-expected.json +6 -0
  199. package/test/resources/9999999/script/build-expected.ssjs +1 -0
  200. package/test/resources/9999999/script/get-expected.json +8 -0
  201. package/test/resources/9999999/script/get-expected.ssjs +1 -0
  202. package/test/resources/9999999/script/get_noScriptTag-expected.html +1 -0
  203. package/test/resources/9999999/script/get_noScriptTag-expected.json +8 -0
  204. package/test/resources/9999999/script/patch-expected.json +8 -0
  205. package/test/resources/9999999/script/patch-expected.ssjs +1 -0
  206. package/test/resources/9999999/script/post-expected.json +8 -0
  207. package/test/resources/9999999/script/post-expected.ssjs +1 -0
  208. package/test/resources/9999999/script/template-expected.json +6 -0
  209. package/test/resources/9999999/script/template-expected.ssjs +1 -0
  210. package/test/resources/9999999/transactionalEmail/build-expected.json +3 -7
  211. package/test/resources/9999999/transactionalEmail/get-expected.json +3 -7
  212. package/test/resources/9999999/transactionalEmail/patch-expected.json +3 -7
  213. package/test/resources/9999999/transactionalEmail/post-expected.json +3 -7
  214. package/test/resources/9999999/transactionalEmail/template-expected.json +3 -7
  215. package/test/resources/9999999/triggeredSend/build-expected.json +29 -0
  216. package/test/resources/9999999/triggeredSend/get-expected.json +29 -0
  217. package/test/resources/9999999/triggeredSend/patch-expected.json +29 -0
  218. package/test/resources/9999999/triggeredSend/post-expected.json +29 -0
  219. package/test/resources/9999999/triggeredSend/template-expected.json +29 -0
  220. package/test/resources/9999999/triggeredSendDefinition/create-response.xml +75 -0
  221. package/test/resources/9999999/triggeredSendDefinition/delete-response.xml +36 -0
  222. package/test/resources/9999999/triggeredSendDefinition/{retrieve-response.xml → retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml} +4 -4
  223. package/test/resources/9999999/triggeredSendDefinition/update-response.xml +74 -0
  224. package/test/resources/9999999/verification/build-expected.json +11 -0
  225. package/test/resources/9999999/verification/get-expected.json +11 -0
  226. package/test/resources/9999999/verification/patch-expected.json +11 -0
  227. package/test/resources/9999999/verification/post-expected.json +11 -0
  228. package/test/resources/9999999/verification/template-expected.json +11 -0
  229. package/test/type.attributeGroup.test.js +55 -0
  230. package/test/type.attributeSet.test.js +55 -0
  231. package/test/type.automation.test.js +650 -17
  232. package/test/type.dataExtension.test.js +205 -46
  233. package/test/type.dataExtract.test.js +194 -0
  234. package/test/type.fileTransfer.test.js +192 -0
  235. package/test/type.importFile.test.js +193 -0
  236. package/test/type.journey.test.js +38 -11
  237. package/test/type.mobileKeyword.test.js +6 -5
  238. package/test/type.mobileMessage.test.js +6 -4
  239. package/test/type.query.test.js +470 -17
  240. package/test/type.script.test.js +372 -0
  241. package/test/type.transactionalEmail.test.js +12 -11
  242. package/test/type.transactionalPush.test.js +2 -4
  243. package/test/type.transactionalSMS.test.js +2 -4
  244. package/test/type.triggeredSend.test.js +154 -0
  245. package/test/type.user.test.js +22 -10
  246. package/test/type.verification.test.js +173 -0
  247. package/test/utils.js +11 -2
  248. package/types/mcdev.d.js +14 -0
  249. package/lib/metadataTypes/SetDefinition.js +0 -37
  250. /package/test/resources/1111111/accountUser/{retrieve-response.xml → retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-response.xml} +0 -0
  251. /package/test/resources/1111111/accountUserAccount/{retrieve-response.xml → retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml} +0 -0
  252. /package/test/resources/1111111/businessUnit/{retrieve-response.xml → retrieve-ID=1111111-response.xml} +0 -0
  253. /package/test/resources/1111111/list/{retrieve-response.xml → retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml} +0 -0
  254. /package/test/resources/1111111/role/{retrieve-response.xml → retrieve-IsPrivate=false-response.xml} +0 -0
  255. /package/test/resources/9999999/emailSendDefinition/{retrieve-response.xml → retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml} +0 -0
  256. /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
@@ -1,21 +1,48 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
- <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
6
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
7
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
3
8
  <soap:Header>
4
9
  <wsa:Action>RetrieveResponse</wsa:Action>
5
- <wsa:MessageID>urn:uuid:f36f3303-3b5a-4641-8109-b26447634d91</wsa:MessageID>
6
- <wsa:RelatesTo>urn:uuid:33983968-28c4-4379-bb5f-f80ae32eb988</wsa:RelatesTo>
10
+ <wsa:MessageID>urn:uuid:4d209b2f-d7ce-4e6e-916c-c8642d368866</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:a850f043-1422-4d16-8443-702dd2f9f13a</wsa:RelatesTo>
7
12
  <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
8
13
  <wsse:Security>
9
- <wsu:Timestamp wsu:Id="Timestamp-32ecc81b-6020-473c-9e99-4b5338921220">
10
- <wsu:Created>2022-04-19T20:03:41Z</wsu:Created>
11
- <wsu:Expires>2022-04-19T20:08:41Z</wsu:Expires>
14
+ <wsu:Timestamp wsu:Id="Timestamp-5da63531-caa7-4ead-9f10-a33d9bf66745">
15
+ <wsu:Created>2023-08-11T13:15:46Z</wsu:Created>
16
+ <wsu:Expires>2023-08-11T13:20:46Z</wsu:Expires>
12
17
  </wsu:Timestamp>
13
18
  </wsse:Security>
14
19
  </soap:Header>
15
20
  <soap:Body>
16
21
  <RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
17
22
  <OverallStatus>OK</OverallStatus>
18
- <RequestID>02cd5ccb-8f84-4651-826f-71169eeecf05</RequestID>
23
+ <RequestID>ba1b0c59-78c4-4608-8423-35dda2248d4d</RequestID>
24
+ <Results xsi:type="DataFolder">
25
+ <Client>
26
+ <ID>1111111</ID>
27
+ </Client>
28
+ <PartnerKey xsi:nil="true" />
29
+ <CreatedDate>2016-07-22T11:52:18.73</CreatedDate>
30
+ <ModifiedDate>2016-07-22T11:52:19.603</ModifiedDate>
31
+ <ID>89344</ID>
32
+ <ObjectID xsi:nil="true" />
33
+ <CustomerKey>shared_data_default</CustomerKey>
34
+ <ParentFolder>
35
+ <PartnerKey xsi:nil="true" />
36
+ <ID>0</ID>
37
+ <ObjectID xsi:nil="true" />
38
+ </ParentFolder>
39
+ <Name>Shared Items</Name>
40
+ <Description />
41
+ <ContentType>shared_data</ContentType>
42
+ <IsActive>true</IsActive>
43
+ <IsEditable>false</IsEditable>
44
+ <AllowChildren>false</AllowChildren>
45
+ </Results>
19
46
  <Results xsi:type="DataFolder">
20
47
  <Client>
21
48
  <ID>1111111</ID>
@@ -23,7 +50,7 @@
23
50
  <PartnerKey xsi:nil="true" />
24
51
  <CreatedDate>2016-07-22T11:52:19.6</CreatedDate>
25
52
  <ModifiedDate>2016-07-22T11:52:19.6</ModifiedDate>
26
- <ID>1</ID>
53
+ <ID>89355</ID>
27
54
  <ObjectID xsi:nil="true" />
28
55
  <CustomerKey>dataextension_default</CustomerKey>
29
56
  <ParentFolder>
@@ -38,6 +65,323 @@
38
65
  <IsEditable>false</IsEditable>
39
66
  <AllowChildren>true</AllowChildren>
40
67
  </Results>
68
+ <Results xsi:type="DataFolder">
69
+ <Client>
70
+ <ID>1111111</ID>
71
+ </Client>
72
+ <PartnerKey xsi:nil="true" />
73
+ <CreatedDate>2016-07-22T11:52:19.603</CreatedDate>
74
+ <ModifiedDate>2016-07-22T11:52:19.603</ModifiedDate>
75
+ <ID>89356</ID>
76
+ <ObjectID xsi:nil="true" />
77
+ <CustomerKey>shared_dataextension_default</CustomerKey>
78
+ <ParentFolder>
79
+ <PartnerKey xsi:nil="true" />
80
+ <ID>89344</ID>
81
+ <ObjectID xsi:nil="true" />
82
+ <CustomerKey>shared_data_default</CustomerKey>
83
+ </ParentFolder>
84
+ <Name>Shared Data Extensions</Name>
85
+ <Description />
86
+ <ContentType>shared_dataextension</ContentType>
87
+ <IsActive>true</IsActive>
88
+ <IsEditable>false</IsEditable>
89
+ <AllowChildren>true</AllowChildren>
90
+ </Results>
91
+ <Results xsi:type="DataFolder">
92
+ <Client>
93
+ <ID>1111111</ID>
94
+ </Client>
95
+ <PartnerKey xsi:nil="true" />
96
+ <CreatedDate>2016-07-29T12:13:27.28</CreatedDate>
97
+ <ModifiedDate>2016-07-29T12:13:27.28</ModifiedDate>
98
+ <ID>90889</ID>
99
+ <ObjectID xsi:nil="true" />
100
+ <CustomerKey>HiddenCategory_default</CustomerKey>
101
+ <ParentFolder>
102
+ <PartnerKey xsi:nil="true" />
103
+ <ID>0</ID>
104
+ <ObjectID xsi:nil="true" />
105
+ </ParentFolder>
106
+ <Name>HiddenCategory</Name>
107
+ <Description>Hidden folder to store Hidden items</Description>
108
+ <ContentType>Hidden</ContentType>
109
+ <IsActive>true</IsActive>
110
+ <IsEditable>false</IsEditable>
111
+ <AllowChildren>true</AllowChildren>
112
+ </Results>
113
+ <Results xsi:type="DataFolder">
114
+ <Client>
115
+ <ID>1111111</ID>
116
+ </Client>
117
+ <PartnerKey xsi:nil="true" />
118
+ <CreatedDate>2016-08-23T09:22:27.54</CreatedDate>
119
+ <ModifiedDate>2016-08-23T09:22:27.54</ModifiedDate>
120
+ <ID>93698</ID>
121
+ <ObjectID xsi:nil="true" />
122
+ <CustomerKey>salesforcedataextension_default</CustomerKey>
123
+ <ParentFolder>
124
+ <PartnerKey xsi:nil="true" />
125
+ <ID>0</ID>
126
+ <ObjectID xsi:nil="true" />
127
+ </ParentFolder>
128
+ <Name>Salesforce Data Extensions</Name>
129
+ <Description />
130
+ <ContentType>salesforcedataextension</ContentType>
131
+ <IsActive>true</IsActive>
132
+ <IsEditable>false</IsEditable>
133
+ <AllowChildren>true</AllowChildren>
134
+ </Results>
135
+ <Results xsi:type="DataFolder">
136
+ <Client>
137
+ <ID>1111111</ID>
138
+ </Client>
139
+ <PartnerKey xsi:nil="true" />
140
+ <CreatedDate>2016-08-23T09:22:27.55</CreatedDate>
141
+ <ModifiedDate>2016-08-23T09:22:27.55</ModifiedDate>
142
+ <ID>93699</ID>
143
+ <ObjectID xsi:nil="true" />
144
+ <CustomerKey>shared_salesforcedataextension_defau</CustomerKey>
145
+ <ParentFolder>
146
+ <PartnerKey xsi:nil="true" />
147
+ <ID>89344</ID>
148
+ <ObjectID xsi:nil="true" />
149
+ <CustomerKey>shared_data_default</CustomerKey>
150
+ </ParentFolder>
151
+ <Name>Shared Salesforce Data Extensions</Name>
152
+ <Description />
153
+ <ContentType>shared_salesforcedataextension</ContentType>
154
+ <IsActive>true</IsActive>
155
+ <IsEditable>false</IsEditable>
156
+ <AllowChildren>true</AllowChildren>
157
+ </Results>
158
+ <Results xsi:type="DataFolder">
159
+ <Client>
160
+ <ID>1111111</ID>
161
+ </Client>
162
+ <PartnerKey xsi:nil="true" />
163
+ <CreatedDate>2020-01-27T10:50:46.573</CreatedDate>
164
+ <ModifiedDate>2020-01-27T10:50:46.573</ModifiedDate>
165
+ <ID>309082</ID>
166
+ <ObjectID xsi:nil="true" />
167
+ <CustomerKey />
168
+ <ParentFolder>
169
+ <PartnerKey xsi:nil="true" />
170
+ <ID>89355</ID>
171
+ <ObjectID xsi:nil="true" />
172
+ <CustomerKey>dataextension_default</CustomerKey>
173
+ </ParentFolder>
174
+ <Name>QueryStudioResults</Name>
175
+ <Description />
176
+ <ContentType>dataextension</ContentType>
177
+ <IsActive>true</IsActive>
178
+ <IsEditable>true</IsEditable>
179
+ <AllowChildren>true</AllowChildren>
180
+ </Results>
181
+ <Results xsi:type="DataFolder">
182
+ <Client>
183
+ <ID>1111111</ID>
184
+ </Client>
185
+ <PartnerKey xsi:nil="true" />
186
+ <CreatedDate>2020-04-17T08:14:19.763</CreatedDate>
187
+ <ModifiedDate>2020-04-17T08:14:19.763</ModifiedDate>
188
+ <ID>587750</ID>
189
+ <ObjectID xsi:nil="true" />
190
+ <CustomerKey />
191
+ <ParentFolder>
192
+ <PartnerKey xsi:nil="true" />
193
+ <ID>89356</ID>
194
+ <ObjectID xsi:nil="true" />
195
+ <CustomerKey>shared_dataextension_default</CustomerKey>
196
+ </ParentFolder>
197
+ <Name>catalyst target 1</Name>
198
+ <Description />
199
+ <ContentType>shared_dataextension</ContentType>
200
+ <IsActive>true</IsActive>
201
+ <IsEditable>true</IsEditable>
202
+ <AllowChildren>true</AllowChildren>
203
+ </Results>
204
+ <Results xsi:type="DataFolder">
205
+ <Client>
206
+ <ID>1111111</ID>
207
+ </Client>
208
+ <PartnerKey xsi:nil="true" />
209
+ <CreatedDate>2020-07-09T02:30:12.38</CreatedDate>
210
+ <ModifiedDate>2021-12-16T03:43:30.753</ModifiedDate>
211
+ <ID>605618</ID>
212
+ <ObjectID xsi:nil="true" />
213
+ <CustomerKey>dataextension_default</CustomerKey>
214
+ <ParentFolder>
215
+ <PartnerKey xsi:nil="true" />
216
+ <ID>89355</ID>
217
+ <ObjectID xsi:nil="true" />
218
+ <CustomerKey>dataextension_default</CustomerKey>
219
+ </ParentFolder>
220
+ <Name>Audiences</Name>
221
+ <Description />
222
+ <ContentType>dataextension</ContentType>
223
+ <IsActive>true</IsActive>
224
+ <IsEditable>true</IsEditable>
225
+ <AllowChildren>true</AllowChildren>
226
+ </Results>
227
+ <Results xsi:type="DataFolder">
228
+ <Client>
229
+ <ID>1111111</ID>
230
+ </Client>
231
+ <PartnerKey xsi:nil="true" />
232
+ <CreatedDate>2020-12-25T06:11:40.107</CreatedDate>
233
+ <ModifiedDate>2021-12-23T10:51:24.393</ModifiedDate>
234
+ <ID>633441</ID>
235
+ <ObjectID xsi:nil="true" />
236
+ <CustomerKey />
237
+ <ParentFolder>
238
+ <PartnerKey xsi:nil="true" />
239
+ <ID>89355</ID>
240
+ <ObjectID xsi:nil="true" />
241
+ <CustomerKey>dataextension_default</CustomerKey>
242
+ </ParentFolder>
243
+ <Name>System DEs</Name>
244
+ <Description />
245
+ <ContentType>dataextension</ContentType>
246
+ <IsActive>true</IsActive>
247
+ <IsEditable>true</IsEditable>
248
+ <AllowChildren>true</AllowChildren>
249
+ </Results>
250
+ <Results xsi:type="DataFolder">
251
+ <Client>
252
+ <ID>1111111</ID>
253
+ </Client>
254
+ <PartnerKey xsi:nil="true" />
255
+ <CreatedDate>2021-01-30T11:54:36.11</CreatedDate>
256
+ <ModifiedDate>2021-01-30T11:54:36.11</ModifiedDate>
257
+ <ID>638814</ID>
258
+ <ObjectID xsi:nil="true" />
259
+ <CustomerKey>0b72bf27-0678-484d-ac0b-a8762b9bec33</CustomerKey>
260
+ <ParentFolder>
261
+ <PartnerKey xsi:nil="true" />
262
+ <ID>89356</ID>
263
+ <ObjectID xsi:nil="true" />
264
+ <CustomerKey>shared_dataextension_default</CustomerKey>
265
+ </ParentFolder>
266
+ <Name>Customer 360 Segments</Name>
267
+ <Description>All Customer 360 segments will be grouped here. Each sub-folder relates to an activation profile name.</Description>
268
+ <ContentType>shared_dataextension</ContentType>
269
+ <IsActive>true</IsActive>
270
+ <IsEditable>false</IsEditable>
271
+ <AllowChildren>true</AllowChildren>
272
+ </Results>
273
+ <Results xsi:type="DataFolder">
274
+ <Client>
275
+ <ID>1111111</ID>
276
+ </Client>
277
+ <PartnerKey xsi:nil="true" />
278
+ <CreatedDate>2021-01-30T11:56:38.77</CreatedDate>
279
+ <ModifiedDate>2021-01-30T11:56:38.77</ModifiedDate>
280
+ <ID>638815</ID>
281
+ <ObjectID xsi:nil="true" />
282
+ <CustomerKey>cedd206d-178e-41cb-8965-ce255975b046</CustomerKey>
283
+ <ParentFolder>
284
+ <PartnerKey xsi:nil="true" />
285
+ <ID>638814</ID>
286
+ <ObjectID xsi:nil="true" />
287
+ <CustomerKey>0b72bf27-0678-484d-ac0b-a8762b9bec33</CustomerKey>
288
+ </ParentFolder>
289
+ <Name>FirstAudience360 Segment</Name>
290
+ <Description />
291
+ <ContentType>shared_dataextension</ContentType>
292
+ <IsActive>true</IsActive>
293
+ <IsEditable>false</IsEditable>
294
+ <AllowChildren>false</AllowChildren>
295
+ </Results>
296
+ <Results xsi:type="DataFolder">
297
+ <Client>
298
+ <ID>1111111</ID>
299
+ </Client>
300
+ <PartnerKey xsi:nil="true" />
301
+ <CreatedDate>2021-02-07T10:44:01.413</CreatedDate>
302
+ <ModifiedDate>2021-12-16T03:43:33.38</ModifiedDate>
303
+ <ID>639967</ID>
304
+ <ObjectID xsi:nil="true" />
305
+ <CustomerKey />
306
+ <ParentFolder>
307
+ <PartnerKey xsi:nil="true" />
308
+ <ID>89355</ID>
309
+ <ObjectID xsi:nil="true" />
310
+ <CustomerKey>dataextension_default</CustomerKey>
311
+ </ParentFolder>
312
+ <Name>TestAudiences</Name>
313
+ <Description />
314
+ <ContentType>dataextension</ContentType>
315
+ <IsActive>true</IsActive>
316
+ <IsEditable>true</IsEditable>
317
+ <AllowChildren>true</AllowChildren>
318
+ </Results>
319
+ <Results xsi:type="DataFolder">
320
+ <Client>
321
+ <ID>1111111</ID>
322
+ </Client>
323
+ <PartnerKey xsi:nil="true" />
324
+ <CreatedDate>2021-08-04T15:17:18.533</CreatedDate>
325
+ <ModifiedDate>2021-08-04T15:17:18.567</ModifiedDate>
326
+ <ID>675203</ID>
327
+ <ObjectID xsi:nil="true" />
328
+ <CustomerKey>A19F7E38-7369-497E-826F-D551F17FB0B4</CustomerKey>
329
+ <ParentFolder>
330
+ <PartnerKey xsi:nil="true" />
331
+ <ID>0</ID>
332
+ <ObjectID xsi:nil="true" />
333
+ </ParentFolder>
334
+ <Name>Synchronized Data Extensions</Name>
335
+ <Description />
336
+ <ContentType>synchronizeddataextension</ContentType>
337
+ <IsActive>true</IsActive>
338
+ <IsEditable>false</IsEditable>
339
+ <AllowChildren>true</AllowChildren>
340
+ </Results>
341
+ <Results xsi:type="DataFolder">
342
+ <Client>
343
+ <ID>1111111</ID>
344
+ </Client>
345
+ <PartnerKey xsi:nil="true" />
346
+ <CreatedDate>2021-10-03T05:01:37.23</CreatedDate>
347
+ <ModifiedDate>2021-10-03T05:01:37.37</ModifiedDate>
348
+ <ID>688352</ID>
349
+ <ObjectID xsi:nil="true" />
350
+ <CustomerKey>B80AE306-55BC-4C2E-A79F-8CCA486F0BA0</CustomerKey>
351
+ <ParentFolder>
352
+ <PartnerKey xsi:nil="true" />
353
+ <ID>0</ID>
354
+ <ObjectID xsi:nil="true" />
355
+ </ParentFolder>
356
+ <Name>Synchronized Data Extensions</Name>
357
+ <Description />
358
+ <ContentType>synchronizeddataextension</ContentType>
359
+ <IsActive>true</IsActive>
360
+ <IsEditable>false</IsEditable>
361
+ <AllowChildren>true</AllowChildren>
362
+ </Results>
363
+ <Results xsi:type="DataFolder">
364
+ <Client>
365
+ <ID>1111111</ID>
366
+ </Client>
367
+ <PartnerKey xsi:nil="true" />
368
+ <CreatedDate>2022-10-26T09:48:38.293</CreatedDate>
369
+ <ModifiedDate>2022-10-26T09:48:38.31</ModifiedDate>
370
+ <ID>757145</ID>
371
+ <ObjectID xsi:nil="true" />
372
+ <CustomerKey>0ACB800B-AA8B-4F0F-9642-4907592C919C</CustomerKey>
373
+ <ParentFolder>
374
+ <PartnerKey xsi:nil="true" />
375
+ <ID>0</ID>
376
+ <ObjectID xsi:nil="true" />
377
+ </ParentFolder>
378
+ <Name>Synchronized Data Extensions</Name>
379
+ <Description />
380
+ <ContentType>synchronizeddataextension</ContentType>
381
+ <IsActive>true</IsActive>
382
+ <IsEditable>false</IsEditable>
383
+ <AllowChildren>true</AllowChildren>
384
+ </Results>
41
385
  </RetrieveResponseMsg>
42
386
  </soap:Body>
43
- </soap:Envelope>
387
+ </soap:Envelope>
@@ -7,13 +7,15 @@
7
7
  | user test | 96 days | ✓ | - | - | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr>,<br> <nobr>testBU (9999999)</nobr> | <nobr>Administrator,</nobr><br> <nobr>Content Creator,</nobr><br> <nobr>Marketing Cloud Administrator</nobr> | user_test@accenture.asgr | 700301950 | testExisting_user | user_test@accenture.com | user_test@accenture.com | GMT+01:00 | en-GB | 2022-06-21 01:43:02.64 | 123456 | 2019-09-06 01:59:07.097 |
8
8
 
9
9
 
10
- ## Inactivated Users (0)
10
+ ## Inactivated Users (1)
11
11
 
12
12
  | Name | Last successful Login | Active | Access Locked out | API User | Must change PW | Default BU | BU Access | Roles | Login | ID | Key | E-Mail | Notification E-Mail | Timezone | SFMC Locale | Modified Date | Modified By | Created Date |
13
13
  | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
14
+ | user test-inactive | 96 days | - | - | - | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>Administrator,</nobr><br> <nobr>Content Creator,</nobr><br> <nobr>Marketing Cloud Administrator</nobr> | user_test-inactive@accenture.asgr | 700301951 | testExisting_user_inactive | user_test-inactive@accenture.com | user_test-inactive@accenture.com | GMT+01:00 | en-GB | 2022-06-21 01:43:02.64 | 123456 | 2019-09-06 01:59:07.097 |
14
15
 
15
16
 
16
- ## Installed Packages (0)
17
+ ## Installed Packages (1)
17
18
 
18
19
  | Name | Last successful Login | Active | Access Locked out | API User | Must change PW | Default BU | BU Access | Roles | Login | ID | Key | E-Mail | Notification E-Mail | Timezone | SFMC Locale | Modified Date | Modified By | Created Date |
19
20
  | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
21
+ | igopredictiveemail app user | never | ✓ | - | ✓ | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr> | <nobr></nobr> | 20f2d94a-9a7d-4580-9fb6-c36a1ce32fb9 | 7471228 | 45372cbb-06e0-438e-88d8-008981f7a18b | | | GMT+01:00 | en-GB | 2023-05-27 07:05:55.113 | n/a | 2016-07-22 11:52:37.42 |
@@ -0,0 +1,25 @@
1
+ {
2
+ "applicationKey": "com.exacttarget.mobileconnect",
3
+ "attributeCount": 37,
4
+ "attributeGroupIconKey": "Mobile",
5
+ "attributeGroupType": "Standard",
6
+ "attributeSetIdentifiers": ["MobileDemographics", "MobileSubscriptions"],
7
+ "canAddProperties": false,
8
+ "canAddRelationships": true,
9
+ "canChangeProperties": false,
10
+ "canModify": false,
11
+ "canRemove": false,
12
+ "definitionKey": "ETMobileConnect",
13
+ "definitionName": {
14
+ "value": "MobileConnect Data"
15
+ },
16
+ "description": "",
17
+ "displayOrder": 4,
18
+ "isHidden": false,
19
+ "isOwner": true,
20
+ "isSystemDefined": true,
21
+ "requiredRelationships": [
22
+ "4651de3f-31e2-e611-80cc-1402ec7222b4",
23
+ "4352de3f-31e2-e611-80cc-1402ec7222b4"
24
+ ]
25
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "attributeCount": 0,
3
+ "canAddValues": true,
4
+ "canChangeValues": true,
5
+ "canModify": true,
6
+ "canRemove": true,
7
+ "createDate": "2023-08-11T08:22:00",
8
+ "createdBy": 700301950,
9
+ "dataRetentionProperties": {
10
+ "isDeleteAtEndOfRetentionPeriod": false,
11
+ "isResetRetentionPeriodOnImport": false,
12
+ "isRowBasedRetention": true,
13
+ "periodLength": 6,
14
+ "periodUnitOfMeasure": 5
15
+ },
16
+ "definitionKey": "testExisting_dataExtensionShared",
17
+ "isCustomObjectBacked": true,
18
+ "isEvent": false,
19
+ "isHidden": false,
20
+ "isReadOnly": false,
21
+ "isRoot": false,
22
+ "isSendable": true,
23
+ "isShared": true,
24
+ "isSystemDefined": false,
25
+ "isTestaable": true,
26
+ "localizedDescription": {
27
+ "value": "Container for my test emails"
28
+ },
29
+ "name": "testExisting_dataExtensionShared",
30
+ "parentID": "00000000-0000-0000-0000-000000000000",
31
+ "r__dataExtension_CustomerKey": "testExisting_dataExtensionShared",
32
+ "r__folder_Path": "Shared Items/Shared Data Extensions",
33
+ "relationshipCount": 1,
34
+ "relationships": [
35
+ {
36
+ "canModify": true,
37
+ "canRemove": true,
38
+ "isGroupToSetRelationship": true,
39
+ "isHidden": false,
40
+ "isSystemDefined": false,
41
+ "leftItem": {
42
+ "cardinality": "One",
43
+ "r__attributeGroup_definitionKey": "testExisting_attributeGroup",
44
+ "relationshipType": "AttributeGroup"
45
+ },
46
+ "leftRelationshipIDs": [
47
+ {
48
+ "type": "int16",
49
+ "value": "3"
50
+ }
51
+ ],
52
+ "leftRelationshipReferenceType": "CustomerData",
53
+ "relationshipAttributes": [
54
+ {
55
+ "c__leftFullyQualifiedName": "Contact.Contact Key",
56
+ "c__rightFullyQualifiedName": "testExisting_dataExtensionShared.ContactKey"
57
+ }
58
+ ],
59
+ "relationshipID": "598b787a-5238-ee11-b85a-48df37d1de8a",
60
+ "rightItem": {
61
+ "cardinality": "One",
62
+ "r__attributeSet_definitionKey": "testExisting_dataExtensionShared",
63
+ "relationshipType": "AttributeSet"
64
+ }
65
+ }
66
+ ],
67
+ "sendAttributeStorageName": "ContactKey",
68
+ "sendContactKeyStorageName": "_SubscriberKey",
69
+ "setDefinitionKey": "testExisting_dataExtensionShared",
70
+ "storageLogicalType": "DataExtension",
71
+ "storageObjectIDs": ["5b8b787a-5238-ee11-b85a-48df37d1de8a"],
72
+ "valueDefinitions": [
73
+ {
74
+ "dataType": "LongNumber",
75
+ "definitionKey": "CustomObjectKey",
76
+ "description": "",
77
+ "isHidden": true,
78
+ "isIdentityValue": true,
79
+ "isNullable": false,
80
+ "isPrimaryKey": false,
81
+ "isReadOnly": true,
82
+ "isSystemDefined": true,
83
+ "isUpdateable": true,
84
+ "name": "Custom Object Key"
85
+ },
86
+ {
87
+ "dataType": "Text",
88
+ "definitionKey": "FirstName",
89
+ "description": "",
90
+ "isHidden": false,
91
+ "isIdentityValue": false,
92
+ "isNullable": true,
93
+ "isPrimaryKey": false,
94
+ "isReadOnly": false,
95
+ "isSystemDefined": false,
96
+ "isUpdateable": true,
97
+ "length": 50,
98
+ "name": "FirstName"
99
+ },
100
+ {
101
+ "dataType": "Text",
102
+ "definitionKey": "LastName",
103
+ "description": "",
104
+ "isHidden": false,
105
+ "isIdentityValue": false,
106
+ "isNullable": true,
107
+ "isPrimaryKey": false,
108
+ "isReadOnly": false,
109
+ "isSystemDefined": false,
110
+ "isUpdateable": true,
111
+ "length": 55,
112
+ "name": "LastName"
113
+ },
114
+ {
115
+ "dataType": "EmailAddress",
116
+ "definitionKey": "EmailAddress",
117
+ "description": "",
118
+ "isHidden": false,
119
+ "isIdentityValue": false,
120
+ "isNullable": false,
121
+ "isPrimaryKey": false,
122
+ "isReadOnly": false,
123
+ "isSystemDefined": false,
124
+ "isUpdateable": true,
125
+ "length": 254,
126
+ "name": "EmailAddress"
127
+ },
128
+ {
129
+ "dataType": "Text",
130
+ "definitionKey": "ContactKey",
131
+ "description": "",
132
+ "isHidden": false,
133
+ "isIdentityValue": false,
134
+ "isNullable": false,
135
+ "isPrimaryKey": true,
136
+ "isReadOnly": false,
137
+ "isSystemDefined": false,
138
+ "isUpdateable": true,
139
+ "length": 50,
140
+ "name": "ContactKey"
141
+ }
142
+ ]
143
+ }
@@ -7,8 +7,7 @@
7
7
  "endDate": "2022-07-30T00:00:00",
8
8
  "icalRecur": "FREQ=DAILY;COUNT=1;INTERVAL=1",
9
9
  "startDate": "2022-07-30T00:00:00",
10
- "timezoneName": "W. Europe Standard Time",
11
- "typeId": 3
10
+ "timezoneName": "W. Europe Standard Time"
12
11
  },
13
12
  "status": "PausedSchedule",
14
13
  "steps": [
@@ -37,6 +36,10 @@
37
36
  {
38
37
  "name": "testTemplated_script",
39
38
  "r__type": "script"
39
+ },
40
+ {
41
+ "name": "testTemplated_39f6a488-20eb-4ba0-b0b9",
42
+ "r__type": "verification"
40
43
  }
41
44
  ],
42
45
  "name": ""
@@ -3,14 +3,14 @@
3
3
  "key": "testNew_automation",
4
4
  "name": "testNew_automation",
5
5
  "r__folder_Path": "my automations",
6
+ "type": "scheduled",
7
+ "status": "PausedSchedule",
6
8
  "schedule": {
7
- "endDate": "2022-07-30T00:00:00",
8
- "icalRecur": "FREQ=DAILY;COUNT=1;INTERVAL=1",
9
- "startDate": "2022-07-30T00:00:00",
10
- "timezoneName": "W. Europe Standard Time",
11
- "typeId": 3
9
+ "endDate": "2079-06-06T21:00:00-06:00",
10
+ "icalRecur": "FREQ=MINUTELY;UNTIL=20790607T050000;INTERVAL=5",
11
+ "startDate": "2020-05-13T18:30:32.11-06:00",
12
+ "timezoneName": "W. Europe Standard Time"
12
13
  },
13
- "status": "PausedSchedule",
14
14
  "steps": [
15
15
  {
16
16
  "activities": [
@@ -37,10 +37,13 @@
37
37
  {
38
38
  "name": "testExisting_script",
39
39
  "r__type": "script"
40
+ },
41
+ {
42
+ "name": "testNew_RANDOM_NEW_GUID",
43
+ "r__type": "verification"
40
44
  }
41
45
  ],
42
46
  "name": ""
43
47
  }
44
- ],
45
- "type": "scheduled"
48
+ ]
46
49
  }
@@ -10,10 +10,10 @@
10
10
 
11
11
  **Schedule:**
12
12
 
13
- * Start: 2022-07-30 00:00:00 +01:00
14
- * End: 2022-07-30 00:00:00 +01:00
15
- * Timezone: W. Europe Standard Time
16
- * Recurrance: every day for 1 times
13
+ * Start: 2020-05-13 18:30:32.11-06:00 +01:00
14
+ * End: 2079-06-06 21:00:00-06:00 +01:00
15
+ * Timezone: W. Europe Standard Time
16
+ * Recurrance: every 5 minutes until end date
17
17
 
18
18
  **Notifications:** _none_
19
19
 
@@ -26,3 +26,4 @@
26
26
  | _1.4: importFile_<br>testExisting_importFile |
27
27
  | _1.5: query_<br>testExisting_query |
28
28
  | _1.6: script_<br>testExisting_script |
29
+ | _1.7: verification_<br>testNew_RANDOM_NEW_GUID |