mcdev 5.1.0 → 5.2.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 (192) hide show
  1. package/.eslintrc.json +4 -4
  2. package/.github/ISSUE_TEMPLATE/bug.yml +1 -0
  3. package/.github/PULL_REQUEST_TEMPLATE.md +2 -2
  4. package/.github/workflows/coverage-develop-branch.yml +0 -2
  5. package/.github/workflows/coverage-main-branch.yml +0 -2
  6. package/.github/workflows/coverage.yml +0 -2
  7. package/.husky/post-checkout +1 -0
  8. package/.husky/post-merge +1 -0
  9. package/.vscode/extensions.json +4 -0
  10. package/docs/dist/documentation.md +633 -286
  11. package/lib/Deployer.js +25 -25
  12. package/lib/MetadataTypeDefinitions.js +1 -1
  13. package/lib/MetadataTypeInfo.js +1 -1
  14. package/lib/Retriever.js +1 -1
  15. package/lib/cli.js +159 -9
  16. package/lib/index.js +395 -95
  17. package/lib/metadataTypes/Asset.js +10 -11
  18. package/lib/metadataTypes/AttributeGroup.js +76 -2
  19. package/lib/metadataTypes/AttributeSet.js +260 -0
  20. package/lib/metadataTypes/Automation.js +413 -96
  21. package/lib/metadataTypes/DataExtension.js +2 -2
  22. package/lib/metadataTypes/DataExtensionField.js +1 -1
  23. package/lib/metadataTypes/Event.js +2 -3
  24. package/lib/metadataTypes/Folder.js +1 -1
  25. package/lib/metadataTypes/Journey.js +5 -6
  26. package/lib/metadataTypes/MetadataType.js +149 -49
  27. package/lib/metadataTypes/MobileKeyword.js +8 -8
  28. package/lib/metadataTypes/MobileMessage.js +5 -5
  29. package/lib/metadataTypes/Query.js +26 -10
  30. package/lib/metadataTypes/Script.js +3 -3
  31. package/lib/metadataTypes/TransactionalSMS.js +5 -5
  32. package/lib/metadataTypes/TriggeredSend.js +25 -50
  33. package/lib/metadataTypes/User.js +7 -4
  34. package/lib/metadataTypes/definitions/AttributeGroup.definition.js +117 -106
  35. package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +54 -27
  36. package/lib/metadataTypes/definitions/Automation.definition.js +22 -15
  37. package/lib/metadataTypes/definitions/ImportFile.definition.js +36 -6
  38. package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -0
  39. package/lib/util/cache.js +9 -4
  40. package/lib/util/cli.js +40 -0
  41. package/lib/util/file.js +2 -2
  42. package/lib/util/init.js +84 -0
  43. package/lib/util/util.js +121 -13
  44. package/package.json +11 -11
  45. package/test/mockRoot/.mcdevrc.json +1 -1
  46. package/test/mockRoot/deploy/testInstance/testBU/automation/testExisting_automation.automation-meta.json +1 -2
  47. package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +5 -6
  48. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testExisting_dataExtract.dataExtract-meta.json +35 -0
  49. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testNew_dataExtract.dataExtract-meta.json +35 -0
  50. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testExisting_fileTransfer.fileTransfer-meta.json +17 -0
  51. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testNew_fileTransfer.fileTransfer-meta.json +17 -0
  52. package/test/mockRoot/deploy/testInstance/testBU/importFile/testExisting_importFile.importFile-meta.json +29 -0
  53. package/test/mockRoot/deploy/testInstance/testBU/importFile/testNew_importFile.importFile-meta.json +29 -0
  54. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.json +11 -0
  55. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.sql +6 -0
  56. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.json +6 -0
  57. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.ssjs +1 -0
  58. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.json +6 -0
  59. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.ssjs +1 -0
  60. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
  61. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
  62. package/test/resourceFactory.js +77 -12
  63. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-response.xml +27 -0
  64. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDEmaillike@-response.xml +156 -0
  65. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +87 -0
  66. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmaillike@-response.xml +156 -0
  67. package/test/resources/1111111/accountUser/retrieve-CustomerKey=testExisting_userANDActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +27 -0
  68. package/test/resources/1111111/accountUserAccount/retrieve-AccountUser.AccountUserID=700301950-response.xml +60 -0
  69. package/test/resources/1111111/user/retrieve-expected.md +4 -2
  70. package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
  71. package/test/resources/9999999/attributeSet/retrieve-expected.json +748 -0
  72. package/test/resources/9999999/automation/build-expected.json +1 -2
  73. package/test/resources/9999999/automation/create-expected.json +7 -8
  74. package/test/resources/9999999/automation/create-testNew_automation-expected.md +4 -4
  75. package/test/resources/9999999/automation/patch_fixKeys-pause-expected.json +44 -0
  76. package/test/resources/9999999/automation/patch_fixKeys-schedule-expected.json +44 -0
  77. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  78. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml +42 -0
  79. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +42 -0
  80. package/test/resources/9999999/automation/perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  81. package/test/resources/9999999/automation/retrieve-expected.json +1 -2
  82. package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +2 -2
  83. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  84. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +38 -0
  85. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +52 -0
  86. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +52 -0
  87. package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  88. package/test/resources/9999999/automation/template-expected.json +1 -2
  89. package/test/resources/9999999/automation/update-expected.json +1 -2
  90. package/test/resources/9999999/automation/update-testExisting_automation-expected.md +2 -2
  91. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/get-response.json +85 -0
  92. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/patch-response.json +85 -0
  93. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/get-response.json +85 -0
  94. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +85 -0
  95. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/get-response.json +85 -0
  96. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +85 -0
  97. package/test/resources/9999999/automation/v1/automations/a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +1 -1
  98. package/test/resources/9999999/automation/v1/automations/post-response.json +20 -19
  99. package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -0
  100. package/test/resources/9999999/automation/v1/dataextracts/post-response.json +38 -0
  101. package/test/resources/9999999/automation/v1/dataextracttypes/get-response.json +50 -0
  102. package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -0
  103. package/test/resources/9999999/automation/v1/filetransfers/post-response.json +18 -0
  104. package/test/resources/9999999/automation/v1/ftplocations/get-response.json +18 -0
  105. package/test/resources/9999999/automation/v1/imports/9d16f42c-2260-ed11-b849-48df37d1de8b/patch-response.json +31 -0
  106. package/test/resources/9999999/automation/v1/imports/get-response.json +1 -1
  107. package/test/resources/9999999/automation/v1/imports/post-response.json +30 -0
  108. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dae/actions/start/post-response.txt +1 -0
  109. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/get-response.json +17 -0
  110. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/patch-response.json +18 -0
  111. package/test/resources/9999999/automation/v1/queries/get-response.json +18 -1
  112. package/test/resources/9999999/automation/v1/scripts/39f6a488-20eb-4ba0-b0b9-023725b574e4/patch-response.json +10 -0
  113. package/test/resources/9999999/automation/v1/scripts/get-response.json +12 -2
  114. package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -0
  115. package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
  116. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +98 -0
  117. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
  118. package/test/resources/9999999/dataExtract/build-expected.json +35 -0
  119. package/test/resources/9999999/dataExtract/get-expected.json +39 -0
  120. package/test/resources/9999999/dataExtract/patch-expected.json +37 -0
  121. package/test/resources/9999999/dataExtract/post-expected.json +37 -0
  122. package/test/resources/9999999/dataExtract/template-expected.json +35 -0
  123. package/test/resources/9999999/dataFolder/retrieve-ContentType=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
  124. package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
  125. package/test/resources/9999999/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
  126. package/test/resources/9999999/dataFolder/retrieve-response.xml +23 -0
  127. package/test/resources/9999999/email/retrieve-response.xml +203 -0
  128. package/test/resources/9999999/fileTransfer/build-expected.json +15 -0
  129. package/test/resources/9999999/fileTransfer/get-expected.json +17 -0
  130. package/test/resources/9999999/fileTransfer/patch-expected.json +17 -0
  131. package/test/resources/9999999/fileTransfer/post-expected.json +17 -0
  132. package/test/resources/9999999/fileTransfer/template-expected.json +15 -0
  133. package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +585 -0
  134. package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +19807 -0
  135. package/test/resources/9999999/importFile/build-expected.json +27 -0
  136. package/test/resources/9999999/importFile/get-expected.json +29 -0
  137. package/test/resources/9999999/importFile/patch-expected.json +29 -0
  138. package/test/resources/9999999/importFile/post-expected.json +29 -0
  139. package/test/resources/9999999/importFile/template-expected.json +27 -0
  140. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml +32 -0
  141. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml +32 -0
  142. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml +32 -0
  143. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml +32 -0
  144. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_pause-response.xml +30 -0
  145. package/test/resources/9999999/program/retrieve-response.xml +21 -3
  146. package/test/resources/9999999/query/patch_fixKeys-expected.json +11 -0
  147. package/test/resources/9999999/query/patch_fixKeys-expected.sql +6 -0
  148. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml +30 -0
  149. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml +30 -0
  150. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml +30 -0
  151. package/test/resources/9999999/script/build-expected.json +6 -0
  152. package/test/resources/9999999/script/build-expected.ssjs +1 -0
  153. package/test/resources/9999999/script/get-expected.json +8 -0
  154. package/test/resources/9999999/script/get-expected.ssjs +1 -0
  155. package/test/resources/9999999/script/get_noScriptTag-expected.html +1 -0
  156. package/test/resources/9999999/script/get_noScriptTag-expected.json +8 -0
  157. package/test/resources/9999999/script/patch-expected.json +8 -0
  158. package/test/resources/9999999/script/patch-expected.ssjs +1 -0
  159. package/test/resources/9999999/script/post-expected.json +8 -0
  160. package/test/resources/9999999/script/post-expected.ssjs +1 -0
  161. package/test/resources/9999999/script/template-expected.json +6 -0
  162. package/test/resources/9999999/script/template-expected.ssjs +1 -0
  163. package/test/resources/9999999/triggeredSend/build-expected.json +29 -0
  164. package/test/resources/9999999/triggeredSend/get-expected.json +29 -0
  165. package/test/resources/9999999/triggeredSend/patch-expected.json +29 -0
  166. package/test/resources/9999999/triggeredSend/post-expected.json +29 -0
  167. package/test/resources/9999999/triggeredSend/template-expected.json +29 -0
  168. package/test/resources/9999999/triggeredSendDefinition/create-response.xml +75 -0
  169. package/test/resources/9999999/triggeredSendDefinition/delete-response.xml +36 -0
  170. package/test/resources/9999999/triggeredSendDefinition/{retrieve-response.xml → retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml} +4 -4
  171. package/test/resources/9999999/triggeredSendDefinition/update-response.xml +74 -0
  172. package/test/type.attributeGroup.test.js +55 -0
  173. package/test/type.attributeSet.test.js +55 -0
  174. package/test/type.automation.test.js +638 -11
  175. package/test/type.dataExtension.test.js +0 -1
  176. package/test/type.dataExtract.test.js +187 -0
  177. package/test/type.fileTransfer.test.js +185 -0
  178. package/test/type.importFile.test.js +186 -0
  179. package/test/type.mobileKeyword.test.js +0 -1
  180. package/test/type.query.test.js +464 -13
  181. package/test/type.script.test.js +367 -0
  182. package/test/type.triggeredSend.test.js +152 -0
  183. package/test/type.user.test.js +22 -10
  184. package/test/utils.js +4 -1
  185. package/lib/metadataTypes/SetDefinition.js +0 -37
  186. /package/test/resources/1111111/accountUser/{retrieve-response.xml → retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-response.xml} +0 -0
  187. /package/test/resources/1111111/accountUserAccount/{retrieve-response.xml → retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml} +0 -0
  188. /package/test/resources/1111111/businessUnit/{retrieve-response.xml → retrieve-ID=1111111-response.xml} +0 -0
  189. /package/test/resources/1111111/list/{retrieve-response.xml → retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml} +0 -0
  190. /package/test/resources/1111111/role/{retrieve-response.xml → retrieve-IsPrivate=false-response.xml} +0 -0
  191. /package/test/resources/9999999/emailSendDefinition/{retrieve-response.xml → retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml} +0 -0
  192. /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
@@ -0,0 +1,37 @@
1
+ {
2
+ "createdBy": 700304523,
3
+ "dataFields": [
4
+ {
5
+ "name": "ColumnDelimiter",
6
+ "type": "string",
7
+ "value": ","
8
+ },
9
+ {
10
+ "name": "DECustomerKey",
11
+ "type": "string",
12
+ "value": "testExisting_dataExtension"
13
+ },
14
+ {
15
+ "name": "HasColumnHeaders",
16
+ "type": "bool",
17
+ "value": "False"
18
+ },
19
+ {
20
+ "name": "TextQualified",
21
+ "type": "bool",
22
+ "value": "False"
23
+ },
24
+ {
25
+ "name": "UsesLineFeed",
26
+ "type": "bool",
27
+ "value": "False"
28
+ }
29
+ ],
30
+ "description": "created via deploy",
31
+ "fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
32
+ "intervalType": 0,
33
+ "key": "testExisting_dataExtract",
34
+ "modifiedBy": 700304523,
35
+ "name": "testExisting_dataExtract",
36
+ "r__dataExtractType_name": "Data Extension Extract"
37
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "createdBy": 700304523,
3
+ "dataFields": [
4
+ {
5
+ "name": "ColumnDelimiter",
6
+ "type": "string",
7
+ "value": ","
8
+ },
9
+ {
10
+ "name": "DECustomerKey",
11
+ "type": "string",
12
+ "value": "testExisting_dataExtension"
13
+ },
14
+ {
15
+ "name": "HasColumnHeaders",
16
+ "type": "bool",
17
+ "value": "False"
18
+ },
19
+ {
20
+ "name": "TextQualified",
21
+ "type": "bool",
22
+ "value": "False"
23
+ },
24
+ {
25
+ "name": "UsesLineFeed",
26
+ "type": "bool",
27
+ "value": "False"
28
+ }
29
+ ],
30
+ "description": "blabla",
31
+ "fileSpec": "testNew-%%Year%%-%%Month%%-%%Day%%",
32
+ "intervalType": 0,
33
+ "key": "testNew_dataExtract",
34
+ "modifiedBy": 700304523,
35
+ "name": "testNew_dataExtract",
36
+ "r__dataExtractType_name": "Data Extension Extract"
37
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "dataFields": [
3
+ {
4
+ "name": "ColumnDelimiter",
5
+ "type": "string",
6
+ "value": ","
7
+ },
8
+ {
9
+ "name": "DECustomerKey",
10
+ "type": "string",
11
+ "value": "{{{prefix}}}dataExtension"
12
+ },
13
+ {
14
+ "name": "HasColumnHeaders",
15
+ "type": "bool",
16
+ "value": "False"
17
+ },
18
+ {
19
+ "name": "TextQualified",
20
+ "type": "bool",
21
+ "value": "False"
22
+ },
23
+ {
24
+ "name": "UsesLineFeed",
25
+ "type": "bool",
26
+ "value": "False"
27
+ }
28
+ ],
29
+ "description": "blabla",
30
+ "fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
31
+ "intervalType": 0,
32
+ "key": "{{{prefix}}}dataExtract",
33
+ "name": "{{{prefix}}}dataExtract",
34
+ "r__dataExtractType_name": "Data Extension Extract"
35
+ }
@@ -0,0 +1,136 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
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">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:016c1c21-3227-4e9c-9497-33b0c15d971b</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:f559d162-26ae-4a2c-8bfe-0abaa0be36aa</wsa:RelatesTo>
12
+ <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
13
+ <wsse:Security>
14
+ <wsu:Timestamp wsu:Id="Timestamp-9215e989-d752-4c92-914c-5d254c377f41">
15
+ <wsu:Created>2023-08-08T12:49:25Z</wsu:Created>
16
+ <wsu:Expires>2023-08-08T12:54:25Z</wsu:Expires>
17
+ </wsu:Timestamp>
18
+ </wsse:Security>
19
+ </soap:Header>
20
+ <soap:Body>
21
+ <RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
+ <OverallStatus>OK</OverallStatus>
23
+ <RequestID>01c5259b-174e-4c70-9fa7-f5cd984b28c6</RequestID>
24
+ <Results xsi:type="DataFolder">
25
+ <Client>
26
+ <ID>9999999</ID>
27
+ </Client>
28
+ <PartnerKey xsi:nil="true" />
29
+ <CreatedDate>2017-02-16T01:59:27.177</CreatedDate>
30
+ <ModifiedDate>2017-02-16T01:59:27.177</ModifiedDate>
31
+ <ID>404</ID>
32
+ <ObjectID xsi:nil="true" />
33
+ <CustomerKey>list_default</CustomerKey>
34
+ <ParentFolder>
35
+ <PartnerKey xsi:nil="true" />
36
+ <ID>0</ID>
37
+ <ObjectID xsi:nil="true" />
38
+ </ParentFolder>
39
+ <Name>my lists</Name>
40
+ <Description />
41
+ <ContentType>list</ContentType>
42
+ <IsActive>true</IsActive>
43
+ <IsEditable>false</IsEditable>
44
+ <AllowChildren>true</AllowChildren>
45
+ </Results>
46
+ <Results xsi:type="DataFolder">
47
+ <Client>
48
+ <ID>9999999</ID>
49
+ </Client>
50
+ <PartnerKey xsi:nil="true" />
51
+ <CreatedDate>2016-07-22T11:52:17.55</CreatedDate>
52
+ <ModifiedDate>2016-07-22T11:52:17.55</ModifiedDate>
53
+ <ID>89332</ID>
54
+ <ObjectID xsi:nil="true" />
55
+ <CustomerKey>mysubs_default</CustomerKey>
56
+ <ParentFolder>
57
+ <PartnerKey xsi:nil="true" />
58
+ <ID>0</ID>
59
+ <ObjectID xsi:nil="true" />
60
+ </ParentFolder>
61
+ <Name>my subscribers</Name>
62
+ <Description />
63
+ <ContentType>mysubs</ContentType>
64
+ <IsActive>true</IsActive>
65
+ <IsEditable>false</IsEditable>
66
+ <AllowChildren>true</AllowChildren>
67
+ </Results>
68
+ <Results xsi:type="DataFolder">
69
+ <Client>
70
+ <ID>9999999</ID>
71
+ </Client>
72
+ <PartnerKey xsi:nil="true" />
73
+ <CreatedDate>2017-02-16T01:59:32.323</CreatedDate>
74
+ <ModifiedDate>2017-02-16T01:59:32.323</ModifiedDate>
75
+ <ID>419</ID>
76
+ <ObjectID xsi:nil="true" />
77
+ <CustomerKey>suppression_list_default</CustomerKey>
78
+ <ParentFolder>
79
+ <PartnerKey xsi:nil="true" />
80
+ <ID>0</ID>
81
+ <ObjectID xsi:nil="true" />
82
+ </ParentFolder>
83
+ <Name>Suppression Lists</Name>
84
+ <Description />
85
+ <ContentType>suppression_list</ContentType>
86
+ <IsActive>true</IsActive>
87
+ <IsEditable>false</IsEditable>
88
+ <AllowChildren>true</AllowChildren>
89
+ </Results>
90
+ <Results xsi:type="DataFolder">
91
+ <Client>
92
+ <ID>9999999</ID>
93
+ </Client>
94
+ <PartnerKey xsi:nil="true" />
95
+ <CreatedDate>2017-02-16T01:59:34.023</CreatedDate>
96
+ <ModifiedDate>2017-02-16T01:59:34.023</ModifiedDate>
97
+ <ID>424</ID>
98
+ <ObjectID xsi:nil="true" />
99
+ <CustomerKey>publication_default</CustomerKey>
100
+ <ParentFolder>
101
+ <PartnerKey xsi:nil="true" />
102
+ <ID>0</ID>
103
+ <ObjectID xsi:nil="true" />
104
+ </ParentFolder>
105
+ <Name>Publication Lists</Name>
106
+ <Description />
107
+ <ContentType>publication</ContentType>
108
+ <IsActive>true</IsActive>
109
+ <IsEditable>false</IsEditable>
110
+ <AllowChildren>true</AllowChildren>
111
+ </Results>
112
+ <Results xsi:type="DataFolder">
113
+ <Client>
114
+ <ID>9999999</ID>
115
+ </Client>
116
+ <PartnerKey xsi:nil="true" />
117
+ <CreatedDate>2016-07-22T11:52:24.417</CreatedDate>
118
+ <ModifiedDate>2016-07-22T11:52:24.417</ModifiedDate>
119
+ <ID>89373</ID>
120
+ <ObjectID xsi:nil="true" />
121
+ <CustomerKey>contextual_suppression_list_default</CustomerKey>
122
+ <ParentFolder>
123
+ <PartnerKey xsi:nil="true" />
124
+ <ID>0</ID>
125
+ <ObjectID xsi:nil="true" />
126
+ </ParentFolder>
127
+ <Name>Auto-Suppression Configuration</Name>
128
+ <Description />
129
+ <ContentType>contextual_suppression_list</ContentType>
130
+ <IsActive>true</IsActive>
131
+ <IsEditable>false</IsEditable>
132
+ <AllowChildren>true</AllowChildren>
133
+ </Results>
134
+ </RetrieveResponseMsg>
135
+ </soap:Body>
136
+ </soap:Envelope>
@@ -0,0 +1,48 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
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">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:f36f3303-3b5a-4641-8109-b26447634d91</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:33983968-28c4-4379-bb5f-f80ae32eb988</wsa:RelatesTo>
12
+ <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
13
+ <wsse:Security>
14
+ <wsu:Timestamp wsu:Id="Timestamp-32ecc81b-6020-473c-9e99-4b5338921220">
15
+ <wsu:Created>2022-04-19T20:03:41Z</wsu:Created>
16
+ <wsu:Expires>2022-04-19T20:08:41Z</wsu:Expires>
17
+ </wsu:Timestamp>
18
+ </wsse:Security>
19
+ </soap:Header>
20
+ <soap:Body>
21
+ <RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
+ <OverallStatus>OK</OverallStatus>
23
+ <RequestID>02cd5ccb-8f84-4651-826f-71169eeecf05</RequestID>
24
+ <Results xsi:type="DataFolder">
25
+ <Client>
26
+ <ID>9999999</ID>
27
+ </Client>
28
+ <PartnerKey xsi:nil="true" />
29
+ <CreatedDate>2017-01-24T06:32:42.353</CreatedDate>
30
+ <ModifiedDate>2017-01-24T06:32:42.353</ModifiedDate>
31
+ <ID>304</ID>
32
+ <ObjectID xsi:nil="true" />
33
+ <CustomerKey>SSJSActivity_default</CustomerKey>
34
+ <ParentFolder>
35
+ <PartnerKey xsi:nil="true" />
36
+ <ID>0</ID>
37
+ <ObjectID xsi:nil="true" />
38
+ </ParentFolder>
39
+ <Name>Scripts</Name>
40
+ <Description />
41
+ <ContentType>SSJSActivity</ContentType>
42
+ <IsActive>true</IsActive>
43
+ <IsEditable>false</IsEditable>
44
+ <AllowChildren>true</AllowChildren>
45
+ </Results>
46
+ </RetrieveResponseMsg>
47
+ </soap:Body>
48
+ </soap:Envelope>
@@ -0,0 +1,276 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
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">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:d626d883-8ca4-4cd1-b4ea-cb399015e275</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:b1d23385-97c0-4bc8-b0fe-b54e3310ae6b</wsa:RelatesTo>
12
+ <wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
13
+ <wsse:Security>
14
+ <wsu:Timestamp wsu:Id="Timestamp-a9582e47-b23f-4956-85b1-fe0b7fa73cf2">
15
+ <wsu:Created>2023-08-08T12:49:16Z</wsu:Created>
16
+ <wsu:Expires>2023-08-08T12:54:16Z</wsu:Expires>
17
+ </wsu:Timestamp>
18
+ </wsse:Security>
19
+ </soap:Header>
20
+ <soap:Body>
21
+ <RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
+ <OverallStatus>OK</OverallStatus>
23
+ <RequestID>6e8873dd-03e2-47b6-823a-fb8681d93d78</RequestID>
24
+ <Results xsi:type="DataFolder">
25
+ <Client>
26
+ <ID>9999999</ID>
27
+ </Client>
28
+ <PartnerKey xsi:nil="true" />
29
+ <CreatedDate>2016-07-22T11:52:19.28</CreatedDate>
30
+ <ModifiedDate>2016-07-22T11:52:19.28</ModifiedDate>
31
+ <ID>89348</ID>
32
+ <ObjectID xsi:nil="true" />
33
+ <CustomerKey>triggered_send_default</CustomerKey>
34
+ <ParentFolder>
35
+ <PartnerKey xsi:nil="true" />
36
+ <ID>0</ID>
37
+ <ObjectID xsi:nil="true" />
38
+ </ParentFolder>
39
+ <Name>Triggered Sends</Name>
40
+ <Description />
41
+ <ContentType>triggered_send</ContentType>
42
+ <IsActive>true</IsActive>
43
+ <IsEditable>false</IsEditable>
44
+ <AllowChildren>true</AllowChildren>
45
+ </Results>
46
+ <Results xsi:type="DataFolder">
47
+ <Client>
48
+ <ID>9999999</ID>
49
+ </Client>
50
+ <PartnerKey xsi:nil="true" />
51
+ <CreatedDate>2016-07-22T11:52:34.983</CreatedDate>
52
+ <ModifiedDate>2016-07-22T11:52:34.983</ModifiedDate>
53
+ <ID>89396</ID>
54
+ <ObjectID xsi:nil="true" />
55
+ <CustomerKey>triggered_send_journeybuilder</CustomerKey>
56
+ <ParentFolder>
57
+ <PartnerKey xsi:nil="true" />
58
+ <ID>0</ID>
59
+ <ObjectID xsi:nil="true" />
60
+ </ParentFolder>
61
+ <Name>Journey Builder Sends</Name>
62
+ <Description />
63
+ <ContentType>triggered_send_journeybuilder</ContentType>
64
+ <IsActive>true</IsActive>
65
+ <IsEditable>false</IsEditable>
66
+ <AllowChildren>true</AllowChildren>
67
+ </Results>
68
+ <Results xsi:type="DataFolder">
69
+ <Client>
70
+ <ID>9999999</ID>
71
+ </Client>
72
+ <PartnerKey xsi:nil="true" />
73
+ <CreatedDate>2016-07-29T12:13:27.28</CreatedDate>
74
+ <ModifiedDate>2016-07-29T12:13:27.28</ModifiedDate>
75
+ <ID>90889</ID>
76
+ <ObjectID xsi:nil="true" />
77
+ <CustomerKey>HiddenCategory_default</CustomerKey>
78
+ <ParentFolder>
79
+ <PartnerKey xsi:nil="true" />
80
+ <ID>0</ID>
81
+ <ObjectID xsi:nil="true" />
82
+ </ParentFolder>
83
+ <Name>HiddenCategory</Name>
84
+ <Description>Hidden folder to store Hidden items</Description>
85
+ <ContentType>Hidden</ContentType>
86
+ <IsActive>true</IsActive>
87
+ <IsEditable>false</IsEditable>
88
+ <AllowChildren>true</AllowChildren>
89
+ </Results>
90
+ <Results xsi:type="DataFolder">
91
+ <Client>
92
+ <ID>9999999</ID>
93
+ </Client>
94
+ <PartnerKey xsi:nil="true" />
95
+ <CreatedDate>2016-08-25T10:04:09.12</CreatedDate>
96
+ <ModifiedDate>2016-08-25T10:04:09.12</ModifiedDate>
97
+ <ID>94030</ID>
98
+ <ObjectID xsi:nil="true" />
99
+ <CustomerKey />
100
+ <ParentFolder>
101
+ <PartnerKey xsi:nil="true" />
102
+ <ID>89396</ID>
103
+ <ObjectID xsi:nil="true" />
104
+ <CustomerKey>triggered_send_journeybuilder</CustomerKey>
105
+ </ParentFolder>
106
+ <Name>Satisfaction Score Survey</Name>
107
+ <Description />
108
+ <ContentType>triggered_send_journeybuilder</ContentType>
109
+ <IsActive>true</IsActive>
110
+ <IsEditable>true</IsEditable>
111
+ <AllowChildren>true</AllowChildren>
112
+ </Results>
113
+ <Results xsi:type="DataFolder">
114
+ <Client>
115
+ <ID>9999999</ID>
116
+ </Client>
117
+ <PartnerKey xsi:nil="true" />
118
+ <CreatedDate>2016-08-25T10:04:09.133</CreatedDate>
119
+ <ModifiedDate>2016-08-25T10:04:09.133</ModifiedDate>
120
+ <ID>94031</ID>
121
+ <ObjectID xsi:nil="true" />
122
+ <CustomerKey />
123
+ <ParentFolder>
124
+ <PartnerKey xsi:nil="true" />
125
+ <ID>94030</ID>
126
+ <ObjectID xsi:nil="true" />
127
+ </ParentFolder>
128
+ <Name>Version 1</Name>
129
+ <Description />
130
+ <ContentType>triggered_send_journeybuilder</ContentType>
131
+ <IsActive>true</IsActive>
132
+ <IsEditable>true</IsEditable>
133
+ <AllowChildren>true</AllowChildren>
134
+ </Results>
135
+ <Results xsi:type="DataFolder">
136
+ <Client>
137
+ <ID>9999999</ID>
138
+ </Client>
139
+ <PartnerKey xsi:nil="true" />
140
+ <CreatedDate>2021-06-09T10:17:06.27</CreatedDate>
141
+ <ModifiedDate>2021-06-09T10:17:06.27</ModifiedDate>
142
+ <ID>664654</ID>
143
+ <ObjectID xsi:nil="true" />
144
+ <CustomerKey>6aa28490-6577-4cb2-8eac-fd5e4f983cae</CustomerKey>
145
+ <ParentFolder>
146
+ <PartnerKey xsi:nil="true" />
147
+ <ID>317169</ID>
148
+ <ObjectID xsi:nil="true" />
149
+ <CustomerKey>HiddenJourneyBuilderTriggeredSends_d</CustomerKey>
150
+ </ParentFolder>
151
+ <Name>6aa28490-6577-4cb2-8eac-fd5e4f983cae_V9</Name>
152
+ <Description>triggered_send folder to store triggered_send items</Description>
153
+ <ContentType>triggered_send</ContentType>
154
+ <IsActive>true</IsActive>
155
+ <IsEditable>true</IsEditable>
156
+ <AllowChildren>true</AllowChildren>
157
+ </Results>
158
+ <Results xsi:type="DataFolder">
159
+ <Client>
160
+ <ID>9999999</ID>
161
+ </Client>
162
+ <PartnerKey xsi:nil="true" />
163
+ <CreatedDate>2022-07-31T19:55:31.657</CreatedDate>
164
+ <ModifiedDate>2022-07-31T19:55:31.657</ModifiedDate>
165
+ <ID>742869</ID>
166
+ <ObjectID xsi:nil="true" />
167
+ <CustomerKey>77211381-9967-4472-bd12-f58d4d5952a1</CustomerKey>
168
+ <ParentFolder>
169
+ <PartnerKey xsi:nil="true" />
170
+ <ID>317169</ID>
171
+ <ObjectID xsi:nil="true" />
172
+ <CustomerKey>HiddenJourneyBuilderTriggeredSends_d</CustomerKey>
173
+ </ParentFolder>
174
+ <Name>77211381-9967-4472-bd12-f58d4d5952a1_V1</Name>
175
+ <Description>triggered_send folder to store triggered_send items</Description>
176
+ <ContentType>triggered_send</ContentType>
177
+ <IsActive>true</IsActive>
178
+ <IsEditable>true</IsEditable>
179
+ <AllowChildren>true</AllowChildren>
180
+ </Results>
181
+ <Results xsi:type="DataFolder">
182
+ <Client>
183
+ <ID>9999999</ID>
184
+ </Client>
185
+ <PartnerKey xsi:nil="true" />
186
+ <CreatedDate>2022-07-31T19:56:51.297</CreatedDate>
187
+ <ModifiedDate>2022-07-31T19:56:51.297</ModifiedDate>
188
+ <ID>742871</ID>
189
+ <ObjectID xsi:nil="true" />
190
+ <CustomerKey>HiddenJourneyBuilderSimulationTrigge</CustomerKey>
191
+ <ParentFolder>
192
+ <PartnerKey xsi:nil="true" />
193
+ <ID>90889</ID>
194
+ <ObjectID xsi:nil="true" />
195
+ <CustomerKey>HiddenCategory_default</CustomerKey>
196
+ </ParentFolder>
197
+ <Name>HiddenJourneyBuilderSimulationTriggeredSends</Name>
198
+ <Description>triggered_send_journeybuilder folder to store triggered_send_journeybuilder items</Description>
199
+ <ContentType>triggered_send_journeybuilder</ContentType>
200
+ <IsActive>true</IsActive>
201
+ <IsEditable>true</IsEditable>
202
+ <AllowChildren>true</AllowChildren>
203
+ </Results>
204
+ <Results xsi:type="DataFolder">
205
+ <Client>
206
+ <ID>9999999</ID>
207
+ </Client>
208
+ <PartnerKey xsi:nil="true" />
209
+ <CreatedDate>2023-03-08T10:26:55.787</CreatedDate>
210
+ <ModifiedDate>2023-03-08T10:26:55.787</ModifiedDate>
211
+ <ID>771879</ID>
212
+ <ObjectID xsi:nil="true" />
213
+ <CustomerKey>8c24f428-4da8-4df6-97a7-beba5166c3c7</CustomerKey>
214
+ <ParentFolder>
215
+ <PartnerKey xsi:nil="true" />
216
+ <ID>317169</ID>
217
+ <ObjectID xsi:nil="true" />
218
+ <CustomerKey>HiddenJourneyBuilderTriggeredSends_d</CustomerKey>
219
+ </ParentFolder>
220
+ <Name>8c24f428-4da8-4df6-97a7-beba5166c3c7_V1</Name>
221
+ <Description>triggered_send folder to store triggered_send items</Description>
222
+ <ContentType>triggered_send</ContentType>
223
+ <IsActive>true</IsActive>
224
+ <IsEditable>true</IsEditable>
225
+ <AllowChildren>true</AllowChildren>
226
+ </Results>
227
+ <Results xsi:type="DataFolder">
228
+ <Client>
229
+ <ID>9999999</ID>
230
+ </Client>
231
+ <PartnerKey xsi:nil="true" />
232
+ <CreatedDate>2023-04-10T15:46:09.947</CreatedDate>
233
+ <ModifiedDate>2023-04-10T15:46:09.947</ModifiedDate>
234
+ <ID>776623</ID>
235
+ <ObjectID xsi:nil="true" />
236
+ <CustomerKey>0a85b483-4208-4377-87fb-25794f5df244</CustomerKey>
237
+ <ParentFolder>
238
+ <PartnerKey xsi:nil="true" />
239
+ <ID>317169</ID>
240
+ <ObjectID xsi:nil="true" />
241
+ <CustomerKey>HiddenJourneyBuilderTriggeredSends_d</CustomerKey>
242
+ </ParentFolder>
243
+ <Name>0a85b483-4208-4377-87fb-25794f5df244_V1</Name>
244
+ <Description>triggered_send folder to store triggered_send items</Description>
245
+ <ContentType>triggered_send</ContentType>
246
+ <IsActive>true</IsActive>
247
+ <IsEditable>true</IsEditable>
248
+ <AllowChildren>true</AllowChildren>
249
+ </Results>
250
+ <Results xsi:type="DataFolder">
251
+ <Client>
252
+ <ID>9999999</ID>
253
+ </Client>
254
+ <PartnerKey xsi:nil="true" />
255
+ <CreatedDate>2020-03-06T07:57:37.633</CreatedDate>
256
+ <ModifiedDate>2020-03-06T07:57:37.633</ModifiedDate>
257
+ <ID>317169</ID>
258
+ <ObjectID xsi:nil="true" />
259
+ <CustomerKey>HiddenJourneyBuilderTriggeredSends_d</CustomerKey>
260
+ <ParentFolder>
261
+ <PartnerKey xsi:nil="true" />
262
+ <ID>90889</ID>
263
+ <ObjectID xsi:nil="true" />
264
+ <CustomerKey>HiddenCategory_default</CustomerKey>
265
+ </ParentFolder>
266
+ <Name>HiddenJourneyBuilderTriggeredSends</Name>
267
+ <Description>triggered_send folder to store triggered_send items</Description>
268
+ <ContentType>triggered_send</ContentType>
269
+ <IsActive>true</IsActive>
270
+ <IsEditable>true</IsEditable>
271
+ <AllowChildren>true</AllowChildren>
272
+ </Results>
273
+
274
+ </RetrieveResponseMsg>
275
+ </soap:Body>
276
+ </soap:Envelope>
@@ -197,6 +197,29 @@
197
197
  <IsEditable>true</IsEditable>
198
198
  <AllowChildren>true</AllowChildren>
199
199
  </Results>
200
+ <Results xsi:type="DataFolder">
201
+ <Client>
202
+ <ID>9999999</ID>
203
+ </Client>
204
+ <PartnerKey xsi:nil="true" />
205
+ <CreatedDate>2017-02-08T10:19:37.123</CreatedDate>
206
+ <ModifiedDate>2017-02-08T10:19:37.123</ModifiedDate>
207
+ <ID>386</ID>
208
+ <ObjectID xsi:nil="true" />
209
+ <CustomerKey />
210
+ <ParentFolder>
211
+ <PartnerKey xsi:nil="true" />
212
+ <ID>2</ID>
213
+ <ObjectID xsi:nil="true" />
214
+ <CustomerKey>dataextension_default</CustomerKey>
215
+ </ParentFolder>
216
+ <Name>Einstein</Name>
217
+ <Description />
218
+ <ContentType>dataextension</ContentType>
219
+ <IsActive>true</IsActive>
220
+ <IsEditable>true</IsEditable>
221
+ <AllowChildren>true</AllowChildren>
222
+ </Results>
200
223
  </RetrieveResponseMsg>
201
224
  </soap:Body>
202
225
  </soap:Envelope>