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.
- package/.eslintrc.json +4 -4
- package/.fork/custom-commands.json +12 -0
- package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
- package/.github/PULL_REQUEST_TEMPLATE/pr_template_release.md +19 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +2 -2
- package/.github/workflows/coverage-develop-branch.yml +0 -2
- package/.github/workflows/coverage-main-branch.yml +0 -2
- package/.github/workflows/coverage.yml +0 -2
- package/.husky/post-checkout +1 -0
- package/.husky/post-merge +1 -0
- package/.vscode/extensions.json +4 -0
- package/docs/dist/documentation.md +1034 -296
- package/lib/Deployer.js +25 -25
- package/lib/MetadataTypeDefinitions.js +2 -1
- package/lib/MetadataTypeInfo.js +2 -1
- package/lib/Retriever.js +1 -1
- package/lib/cli.js +165 -10
- package/lib/index.js +398 -95
- package/lib/metadataTypes/Asset.js +10 -11
- package/lib/metadataTypes/AttributeGroup.js +76 -2
- package/lib/metadataTypes/AttributeSet.js +367 -0
- package/lib/metadataTypes/Automation.js +483 -137
- package/lib/metadataTypes/DataExtension.js +465 -68
- package/lib/metadataTypes/DataExtensionField.js +31 -14
- package/lib/metadataTypes/Event.js +2 -3
- package/lib/metadataTypes/Folder.js +1 -1
- package/lib/metadataTypes/Journey.js +13 -7
- package/lib/metadataTypes/MetadataType.js +212 -54
- package/lib/metadataTypes/MobileKeyword.js +9 -9
- package/lib/metadataTypes/MobileMessage.js +5 -5
- package/lib/metadataTypes/Query.js +26 -10
- package/lib/metadataTypes/Script.js +3 -3
- package/lib/metadataTypes/TransactionalEmail.js +94 -17
- package/lib/metadataTypes/TransactionalMessage.js +3 -2
- package/lib/metadataTypes/TransactionalSMS.js +5 -5
- package/lib/metadataTypes/TriggeredSend.js +25 -50
- package/lib/metadataTypes/User.js +7 -4
- package/lib/metadataTypes/Verification.js +230 -0
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +119 -108
- package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +123 -43
- package/lib/metadataTypes/definitions/Automation.definition.js +23 -15
- package/lib/metadataTypes/definitions/ImportFile.definition.js +36 -6
- package/lib/metadataTypes/definitions/TransactionalEmail.definition.js +19 -1
- package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -0
- package/lib/metadataTypes/definitions/Verification.definition.js +88 -0
- package/lib/util/cache.js +9 -4
- package/lib/util/cli.js +40 -0
- package/lib/util/file.js +2 -2
- package/lib/util/init.js +84 -0
- package/lib/util/util.js +121 -13
- package/package.json +13 -13
- package/test/mockRoot/.mcdevrc.json +1 -1
- package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testExisting_dataExtensionShared.dataExtension-meta.json +59 -0
- package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testNew_dataExtensionShared.dataExtension-meta.json +23 -0
- package/test/mockRoot/deploy/testInstance/testBU/automation/testExisting_automation.automation-meta.json +1 -2
- package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +9 -6
- package/test/mockRoot/deploy/testInstance/testBU/dataExtension/testExisting_dataExtension.dataExtension-meta.json +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testExisting_dataExtract.dataExtract-meta.json +35 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testNew_dataExtract.dataExtract-meta.json +35 -0
- package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testExisting_fileTransfer.fileTransfer-meta.json +17 -0
- package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testNew_fileTransfer.fileTransfer-meta.json +17 -0
- package/test/mockRoot/deploy/testInstance/testBU/importFile/testExisting_importFile.importFile-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/importFile/testNew_importFile.importFile-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.json +11 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.sql +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.json +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.ssjs +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.json +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.ssjs +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testExisting_temail.transactionalEmail-meta.json +3 -4
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testNew_temail.transactionalEmail-meta.json +1 -6
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/verification/testExisting_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
- package/test/mockRoot/deploy/testInstance/testBU/verification/testNew_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
- package/test/resourceFactory.js +77 -12
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-response.xml +27 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDEmaillike@-response.xml +156 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +87 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmaillike@-response.xml +156 -0
- package/test/resources/1111111/accountUser/retrieve-CustomerKey=testExisting_userANDActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +27 -0
- package/test/resources/1111111/accountUserAccount/retrieve-AccountUser.AccountUserID=700301950-response.xml +60 -0
- package/test/resources/1111111/data/v1/customobjectdata/key/testExisting_dataExtensionShared/rowset/get-response.json +13 -0
- package/test/resources/1111111/dataExtension/create-expected.json +23 -0
- package/test/resources/1111111/dataExtension/create-response.xml +59 -0
- package/test/resources/1111111/dataExtension/retrieve-expected.json +55 -0
- package/test/resources/1111111/dataExtension/retrieve-expected.md +18 -0
- package/test/resources/1111111/dataExtension/retrieve-response.xml +27 -1
- package/test/resources/1111111/dataExtension/update-expected.json +55 -0
- package/test/resources/1111111/dataExtension/update-response.xml +57 -0
- package/test/resources/1111111/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtensionShared].[TriggerUpdate_randomNumber_]-response.xml +45 -0
- package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
- package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionSharedORDataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
- package/test/resources/1111111/dataExtensionField/retrieve-response.xml +98 -0
- package/test/resources/1111111/dataExtensionTemplate/retrieve-response.xml +303 -0
- package/test/resources/1111111/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +387 -0
- package/test/resources/1111111/dataFolder/retrieve-response.xml +353 -9
- package/test/resources/1111111/user/retrieve-expected.md +4 -2
- package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
- package/test/resources/9999999/attributeSet/retrieve-expected.json +143 -0
- package/test/resources/9999999/automation/build-expected.json +5 -2
- package/test/resources/9999999/automation/create-expected.json +11 -8
- package/test/resources/9999999/automation/create-testNew_automation-expected.md +5 -4
- package/test/resources/9999999/automation/patch_fixKeys-pause-expected.json +44 -0
- package/test/resources/9999999/automation/patch_fixKeys-schedule-expected.json +44 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml +42 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +42 -0
- package/test/resources/9999999/automation/perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
- package/test/resources/9999999/automation/retrieve-expected.json +5 -2
- package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +3 -2
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +38 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
- package/test/resources/9999999/automation/template-expected.json +5 -2
- package/test/resources/9999999/automation/update-expected.json +1 -2
- package/test/resources/9999999/automation/update-testExisting_automation-expected.md +2 -2
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +7 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +1 -1
- package/test/resources/9999999/automation/v1/automations/post-response.json +27 -19
- package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -0
- package/test/resources/9999999/automation/v1/dataextracts/post-response.json +38 -0
- package/test/resources/9999999/automation/v1/dataextracttypes/get-response.json +50 -0
- package/test/resources/9999999/automation/v1/dataverifications/post-response.json +12 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/delete-response.json +0 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/get-response.json +12 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/patch-response.json +12 -0
- package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -0
- package/test/resources/9999999/automation/v1/filetransfers/post-response.json +18 -0
- package/test/resources/9999999/automation/v1/ftplocations/get-response.json +18 -0
- package/test/resources/9999999/automation/v1/imports/9d16f42c-2260-ed11-b849-48df37d1de8b/patch-response.json +31 -0
- package/test/resources/9999999/automation/v1/imports/get-response.json +1 -1
- package/test/resources/9999999/automation/v1/imports/post-response.json +30 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dae/actions/start/post-response.txt +1 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/get-response.json +17 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/patch-response.json +18 -0
- package/test/resources/9999999/automation/v1/queries/get-response.json +18 -1
- package/test/resources/9999999/automation/v1/scripts/39f6a488-20eb-4ba0-b0b9-023725b574e4/patch-response.json +10 -0
- package/test/resources/9999999/automation/v1/scripts/get-response.json +12 -2
- package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -0
- package/test/resources/9999999/dataExtension/build-expected.json +16 -0
- package/test/resources/9999999/dataExtension/delete-response.xml +42 -0
- package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
- package/test/resources/9999999/dataExtension/retrieve-expected.json +16 -0
- package/test/resources/9999999/dataExtension/retrieve-expected.md +3 -1
- package/test/resources/9999999/dataExtension/template-expected.json +16 -0
- package/test/resources/9999999/dataExtension/update-expected.json +17 -1
- package/test/resources/9999999/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtension].[LastName]-response.xml +44 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +133 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
- package/test/resources/9999999/dataExtensionField/retrieve-response.xml +36 -1
- package/test/resources/9999999/dataExtract/build-expected.json +35 -0
- package/test/resources/9999999/dataExtract/get-expected.json +39 -0
- package/test/resources/9999999/dataExtract/patch-expected.json +37 -0
- package/test/resources/9999999/dataExtract/post-expected.json +37 -0
- package/test/resources/9999999/dataExtract/template-expected.json +35 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +117 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
- package/test/resources/9999999/dataFolder/retrieve-response.xml +23 -0
- package/test/resources/9999999/email/retrieve-response.xml +203 -0
- package/test/resources/9999999/fileTransfer/build-expected.json +15 -0
- package/test/resources/9999999/fileTransfer/get-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/patch-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/post-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/template-expected.json +15 -0
- package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +628 -0
- package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +20194 -0
- package/test/resources/9999999/importFile/build-expected.json +27 -0
- package/test/resources/9999999/importFile/get-expected.json +29 -0
- package/test/resources/9999999/importFile/patch-expected.json +29 -0
- package/test/resources/9999999/importFile/post-expected.json +29 -0
- package/test/resources/9999999/importFile/template-expected.json +27 -0
- package/test/resources/9999999/interaction/v1/interactions/233d4413-922c-4568-85a5-e5cc77efc3be/delete-response.json +1 -0
- package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/post-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/testExisting_temail/delete-response.json +6 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_pause-response.xml +30 -0
- package/test/resources/9999999/program/retrieve-response.xml +21 -3
- package/test/resources/9999999/query/patch_fixKeys-expected.json +11 -0
- package/test/resources/9999999/query/patch_fixKeys-expected.sql +6 -0
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/script/build-expected.json +6 -0
- package/test/resources/9999999/script/build-expected.ssjs +1 -0
- package/test/resources/9999999/script/get-expected.json +8 -0
- package/test/resources/9999999/script/get-expected.ssjs +1 -0
- package/test/resources/9999999/script/get_noScriptTag-expected.html +1 -0
- package/test/resources/9999999/script/get_noScriptTag-expected.json +8 -0
- package/test/resources/9999999/script/patch-expected.json +8 -0
- package/test/resources/9999999/script/patch-expected.ssjs +1 -0
- package/test/resources/9999999/script/post-expected.json +8 -0
- package/test/resources/9999999/script/post-expected.ssjs +1 -0
- package/test/resources/9999999/script/template-expected.json +6 -0
- package/test/resources/9999999/script/template-expected.ssjs +1 -0
- package/test/resources/9999999/transactionalEmail/build-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/get-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/patch-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/post-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/template-expected.json +3 -7
- package/test/resources/9999999/triggeredSend/build-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/get-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/patch-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/post-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/template-expected.json +29 -0
- package/test/resources/9999999/triggeredSendDefinition/create-response.xml +75 -0
- package/test/resources/9999999/triggeredSendDefinition/delete-response.xml +36 -0
- package/test/resources/9999999/triggeredSendDefinition/{retrieve-response.xml → retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml} +4 -4
- package/test/resources/9999999/triggeredSendDefinition/update-response.xml +74 -0
- package/test/resources/9999999/verification/build-expected.json +11 -0
- package/test/resources/9999999/verification/get-expected.json +11 -0
- package/test/resources/9999999/verification/patch-expected.json +11 -0
- package/test/resources/9999999/verification/post-expected.json +11 -0
- package/test/resources/9999999/verification/template-expected.json +11 -0
- package/test/type.attributeGroup.test.js +55 -0
- package/test/type.attributeSet.test.js +55 -0
- package/test/type.automation.test.js +650 -17
- package/test/type.dataExtension.test.js +205 -46
- package/test/type.dataExtract.test.js +194 -0
- package/test/type.fileTransfer.test.js +192 -0
- package/test/type.importFile.test.js +193 -0
- package/test/type.journey.test.js +38 -11
- package/test/type.mobileKeyword.test.js +6 -5
- package/test/type.mobileMessage.test.js +6 -4
- package/test/type.query.test.js +470 -17
- package/test/type.script.test.js +372 -0
- package/test/type.transactionalEmail.test.js +12 -11
- package/test/type.transactionalPush.test.js +2 -4
- package/test/type.transactionalSMS.test.js +2 -4
- package/test/type.triggeredSend.test.js +154 -0
- package/test/type.user.test.js +22 -10
- package/test/type.verification.test.js +173 -0
- package/test/utils.js +11 -2
- package/types/mcdev.d.js +14 -0
- package/lib/metadataTypes/SetDefinition.js +0 -37
- /package/test/resources/1111111/accountUser/{retrieve-response.xml → retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-response.xml} +0 -0
- /package/test/resources/1111111/accountUserAccount/{retrieve-response.xml → retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml} +0 -0
- /package/test/resources/1111111/businessUnit/{retrieve-response.xml → retrieve-ID=1111111-response.xml} +0 -0
- /package/test/resources/1111111/list/{retrieve-response.xml → retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml} +0 -0
- /package/test/resources/1111111/role/{retrieve-response.xml → retrieve-IsPrivate=false-response.xml} +0 -0
- /package/test/resources/9999999/emailSendDefinition/{retrieve-response.xml → retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml} +0 -0
- /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
|
@@ -0,0 +1,303 @@
|
|
|
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">
|
|
3
|
+
<soap:Header>
|
|
4
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
5
|
+
<wsa:MessageID>urn:uuid:110bbc72-d639-4e67-ab93-68e081bcf3a0</wsa:MessageID>
|
|
6
|
+
<wsa:RelatesTo>urn:uuid:753eed05-f925-4113-8a98-e81ca69c96fd</wsa:RelatesTo>
|
|
7
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
8
|
+
<wsse:Security>
|
|
9
|
+
<wsu:Timestamp wsu:Id="Timestamp-a81724ab-b6f6-4825-82e8-ec523642075e">
|
|
10
|
+
<wsu:Created>2022-04-21T19:21:49Z</wsu:Created>
|
|
11
|
+
<wsu:Expires>2022-04-21T19:26:49Z</wsu:Expires>
|
|
12
|
+
</wsu:Timestamp>
|
|
13
|
+
</wsse:Security>
|
|
14
|
+
</soap:Header>
|
|
15
|
+
<soap:Body>
|
|
16
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
17
|
+
<OverallStatus>OK</OverallStatus>
|
|
18
|
+
<RequestID>82fd5f74-ad8c-49ad-958f-867d4a4b53b0</RequestID>
|
|
19
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
20
|
+
<PartnerKey xsi:nil="true" />
|
|
21
|
+
<PartnerProperties>
|
|
22
|
+
<Name>IsSendable</Name>
|
|
23
|
+
<Value>False</Value>
|
|
24
|
+
</PartnerProperties>
|
|
25
|
+
<PartnerProperties>
|
|
26
|
+
<Name>IsTestable</Name>
|
|
27
|
+
<Value>False</Value>
|
|
28
|
+
</PartnerProperties>
|
|
29
|
+
<PartnerProperties>
|
|
30
|
+
<Name>SendableCustomObjectField</Name>
|
|
31
|
+
<Value />
|
|
32
|
+
</PartnerProperties>
|
|
33
|
+
<PartnerProperties>
|
|
34
|
+
<Name>SendableSubscriberField</Name>
|
|
35
|
+
<Value />
|
|
36
|
+
</PartnerProperties>
|
|
37
|
+
<PartnerProperties>
|
|
38
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
39
|
+
<Value />
|
|
40
|
+
</PartnerProperties>
|
|
41
|
+
<PartnerProperties>
|
|
42
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
43
|
+
<Value />
|
|
44
|
+
</PartnerProperties>
|
|
45
|
+
<PartnerProperties>
|
|
46
|
+
<Name>RowBasedRetention</Name>
|
|
47
|
+
<Value>False</Value>
|
|
48
|
+
</PartnerProperties>
|
|
49
|
+
<PartnerProperties>
|
|
50
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
51
|
+
<Value>False</Value>
|
|
52
|
+
</PartnerProperties>
|
|
53
|
+
<PartnerProperties>
|
|
54
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
55
|
+
<Value>False</Value>
|
|
56
|
+
</PartnerProperties>
|
|
57
|
+
<PartnerProperties>
|
|
58
|
+
<Name>RetainUntil</Name>
|
|
59
|
+
<Value />
|
|
60
|
+
</PartnerProperties>
|
|
61
|
+
<ObjectID>cfd6fc95-d594-ea11-a2e6-1402ec938a35</ObjectID>
|
|
62
|
+
<CustomerKey>086D14D3-5057-462B-AF33-01CA8D1FE87A</CustomerKey>
|
|
63
|
+
<Name>DomainExclusion</Name>
|
|
64
|
+
<Description>Domain Exclusion Data Extension Template</Description>
|
|
65
|
+
</Results>
|
|
66
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
67
|
+
<PartnerKey xsi:nil="true" />
|
|
68
|
+
<PartnerProperties>
|
|
69
|
+
<Name>IsSendable</Name>
|
|
70
|
+
<Value>True</Value>
|
|
71
|
+
</PartnerProperties>
|
|
72
|
+
<PartnerProperties>
|
|
73
|
+
<Name>IsTestable</Name>
|
|
74
|
+
<Value>False</Value>
|
|
75
|
+
</PartnerProperties>
|
|
76
|
+
<PartnerProperties>
|
|
77
|
+
<Name>SendableCustomObjectField</Name>
|
|
78
|
+
<Value>SubscriberKey</Value>
|
|
79
|
+
</PartnerProperties>
|
|
80
|
+
<PartnerProperties>
|
|
81
|
+
<Name>SendableSubscriberField</Name>
|
|
82
|
+
<Value>_SubscriberKey</Value>
|
|
83
|
+
</PartnerProperties>
|
|
84
|
+
<PartnerProperties>
|
|
85
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
86
|
+
<Value />
|
|
87
|
+
</PartnerProperties>
|
|
88
|
+
<PartnerProperties>
|
|
89
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
90
|
+
<Value />
|
|
91
|
+
</PartnerProperties>
|
|
92
|
+
<PartnerProperties>
|
|
93
|
+
<Name>RowBasedRetention</Name>
|
|
94
|
+
<Value>False</Value>
|
|
95
|
+
</PartnerProperties>
|
|
96
|
+
<PartnerProperties>
|
|
97
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
98
|
+
<Value>False</Value>
|
|
99
|
+
</PartnerProperties>
|
|
100
|
+
<PartnerProperties>
|
|
101
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
102
|
+
<Value>False</Value>
|
|
103
|
+
</PartnerProperties>
|
|
104
|
+
<PartnerProperties>
|
|
105
|
+
<Name>RetainUntil</Name>
|
|
106
|
+
<Value />
|
|
107
|
+
</PartnerProperties>
|
|
108
|
+
<ObjectID>1fd7fc95-d594-ea11-a2e6-1402ec938a35</ObjectID>
|
|
109
|
+
<CustomerKey>B6E8AE4C-3D93-49B1-B299-E0AE734213DD</CustomerKey>
|
|
110
|
+
<Name>TriggeredSendDataExtension</Name>
|
|
111
|
+
<Description>Triggered Send Source Data Extension Template</Description>
|
|
112
|
+
</Results>
|
|
113
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
114
|
+
<PartnerKey xsi:nil="true" />
|
|
115
|
+
<PartnerProperties>
|
|
116
|
+
<Name>IsSendable</Name>
|
|
117
|
+
<Value>True</Value>
|
|
118
|
+
</PartnerProperties>
|
|
119
|
+
<PartnerProperties>
|
|
120
|
+
<Name>IsTestable</Name>
|
|
121
|
+
<Value>False</Value>
|
|
122
|
+
</PartnerProperties>
|
|
123
|
+
<PartnerProperties>
|
|
124
|
+
<Name>SendableCustomObjectField</Name>
|
|
125
|
+
<Value>Email Address</Value>
|
|
126
|
+
</PartnerProperties>
|
|
127
|
+
<PartnerProperties>
|
|
128
|
+
<Name>SendableSubscriberField</Name>
|
|
129
|
+
<Value>_EmailAddress</Value>
|
|
130
|
+
</PartnerProperties>
|
|
131
|
+
<PartnerProperties>
|
|
132
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
133
|
+
<Value />
|
|
134
|
+
</PartnerProperties>
|
|
135
|
+
<PartnerProperties>
|
|
136
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
137
|
+
<Value />
|
|
138
|
+
</PartnerProperties>
|
|
139
|
+
<PartnerProperties>
|
|
140
|
+
<Name>RowBasedRetention</Name>
|
|
141
|
+
<Value>False</Value>
|
|
142
|
+
</PartnerProperties>
|
|
143
|
+
<PartnerProperties>
|
|
144
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
145
|
+
<Value>False</Value>
|
|
146
|
+
</PartnerProperties>
|
|
147
|
+
<PartnerProperties>
|
|
148
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
149
|
+
<Value>False</Value>
|
|
150
|
+
</PartnerProperties>
|
|
151
|
+
<PartnerProperties>
|
|
152
|
+
<Name>RetainUntil</Name>
|
|
153
|
+
<Value />
|
|
154
|
+
</PartnerProperties>
|
|
155
|
+
<ObjectID>bb1df59b-d594-ea11-a2e6-1402ec938a35</ObjectID>
|
|
156
|
+
<CustomerKey>23471ECA-8710-4512-9296-040CA86FBD9E</CustomerKey>
|
|
157
|
+
<Name>CONTEXTUAL_SUPPRESSION_LISTS</Name>
|
|
158
|
+
<Description>Used to create new auto-suppression lists</Description>
|
|
159
|
+
</Results>
|
|
160
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
161
|
+
<PartnerKey xsi:nil="true" />
|
|
162
|
+
<PartnerProperties>
|
|
163
|
+
<Name>IsSendable</Name>
|
|
164
|
+
<Value>True</Value>
|
|
165
|
+
</PartnerProperties>
|
|
166
|
+
<PartnerProperties>
|
|
167
|
+
<Name>IsTestable</Name>
|
|
168
|
+
<Value>False</Value>
|
|
169
|
+
</PartnerProperties>
|
|
170
|
+
<PartnerProperties>
|
|
171
|
+
<Name>SendableCustomObjectField</Name>
|
|
172
|
+
<Value>EmailAddress</Value>
|
|
173
|
+
</PartnerProperties>
|
|
174
|
+
<PartnerProperties>
|
|
175
|
+
<Name>SendableSubscriberField</Name>
|
|
176
|
+
<Value>_SubscriberKey</Value>
|
|
177
|
+
</PartnerProperties>
|
|
178
|
+
<PartnerProperties>
|
|
179
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
180
|
+
<Value />
|
|
181
|
+
</PartnerProperties>
|
|
182
|
+
<PartnerProperties>
|
|
183
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
184
|
+
<Value />
|
|
185
|
+
</PartnerProperties>
|
|
186
|
+
<PartnerProperties>
|
|
187
|
+
<Name>RowBasedRetention</Name>
|
|
188
|
+
<Value>False</Value>
|
|
189
|
+
</PartnerProperties>
|
|
190
|
+
<PartnerProperties>
|
|
191
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
192
|
+
<Value>False</Value>
|
|
193
|
+
</PartnerProperties>
|
|
194
|
+
<PartnerProperties>
|
|
195
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
196
|
+
<Value>False</Value>
|
|
197
|
+
</PartnerProperties>
|
|
198
|
+
<PartnerProperties>
|
|
199
|
+
<Name>RetainUntil</Name>
|
|
200
|
+
<Value />
|
|
201
|
+
</PartnerProperties>
|
|
202
|
+
<ObjectID>e61df59b-d594-ea11-a2e6-1402ec938a35</ObjectID>
|
|
203
|
+
<CustomerKey>00A4369E-0B57-4EF2-BFFA-E3F23B4D1098</CustomerKey>
|
|
204
|
+
<Name>SocialPages Default Template Extension</Name>
|
|
205
|
+
<Description>Required for contacts. Used by Smart Capture for Social Pages.</Description>
|
|
206
|
+
</Results>
|
|
207
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
208
|
+
<PartnerKey xsi:nil="true" />
|
|
209
|
+
<PartnerProperties>
|
|
210
|
+
<Name>IsSendable</Name>
|
|
211
|
+
<Value>True</Value>
|
|
212
|
+
</PartnerProperties>
|
|
213
|
+
<PartnerProperties>
|
|
214
|
+
<Name>IsTestable</Name>
|
|
215
|
+
<Value>False</Value>
|
|
216
|
+
</PartnerProperties>
|
|
217
|
+
<PartnerProperties>
|
|
218
|
+
<Name>SendableCustomObjectField</Name>
|
|
219
|
+
<Value>SubscriberKey</Value>
|
|
220
|
+
</PartnerProperties>
|
|
221
|
+
<PartnerProperties>
|
|
222
|
+
<Name>SendableSubscriberField</Name>
|
|
223
|
+
<Value>_SubscriberKey</Value>
|
|
224
|
+
</PartnerProperties>
|
|
225
|
+
<PartnerProperties>
|
|
226
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
227
|
+
<Value>6</Value>
|
|
228
|
+
</PartnerProperties>
|
|
229
|
+
<PartnerProperties>
|
|
230
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
231
|
+
<Value>5</Value>
|
|
232
|
+
</PartnerProperties>
|
|
233
|
+
<PartnerProperties>
|
|
234
|
+
<Name>RowBasedRetention</Name>
|
|
235
|
+
<Value>False</Value>
|
|
236
|
+
</PartnerProperties>
|
|
237
|
+
<PartnerProperties>
|
|
238
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
239
|
+
<Value>False</Value>
|
|
240
|
+
</PartnerProperties>
|
|
241
|
+
<PartnerProperties>
|
|
242
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
243
|
+
<Value>False</Value>
|
|
244
|
+
</PartnerProperties>
|
|
245
|
+
<PartnerProperties>
|
|
246
|
+
<Name>RetainUntil</Name>
|
|
247
|
+
<Value />
|
|
248
|
+
</PartnerProperties>
|
|
249
|
+
<ObjectID>37d8c7f2-ad19-4084-8d18-4dda1dc36772</ObjectID>
|
|
250
|
+
<CustomerKey>DAE95D91-762C-4124-B082-0433165ADD30</CustomerKey>
|
|
251
|
+
<Name>AudienceBuilderResult</Name>
|
|
252
|
+
<Description>Used for creating audience builder result destinations.</Description>
|
|
253
|
+
</Results>
|
|
254
|
+
<Results xsi:type="DataExtensionTemplate">
|
|
255
|
+
<PartnerKey xsi:nil="true" />
|
|
256
|
+
<PartnerProperties>
|
|
257
|
+
<Name>IsSendable</Name>
|
|
258
|
+
<Value>True</Value>
|
|
259
|
+
</PartnerProperties>
|
|
260
|
+
<PartnerProperties>
|
|
261
|
+
<Name>IsTestable</Name>
|
|
262
|
+
<Value>False</Value>
|
|
263
|
+
</PartnerProperties>
|
|
264
|
+
<PartnerProperties>
|
|
265
|
+
<Name>SendableCustomObjectField</Name>
|
|
266
|
+
<Value>ContactKey</Value>
|
|
267
|
+
</PartnerProperties>
|
|
268
|
+
<PartnerProperties>
|
|
269
|
+
<Name>SendableSubscriberField</Name>
|
|
270
|
+
<Value>_SubscriberKey</Value>
|
|
271
|
+
</PartnerProperties>
|
|
272
|
+
<PartnerProperties>
|
|
273
|
+
<Name>DataRetentionPeriodLength</Name>
|
|
274
|
+
<Value />
|
|
275
|
+
</PartnerProperties>
|
|
276
|
+
<PartnerProperties>
|
|
277
|
+
<Name>DataRetentionPeriodUnitOfMeasure</Name>
|
|
278
|
+
<Value>0</Value>
|
|
279
|
+
</PartnerProperties>
|
|
280
|
+
<PartnerProperties>
|
|
281
|
+
<Name>RowBasedRetention</Name>
|
|
282
|
+
<Value>False</Value>
|
|
283
|
+
</PartnerProperties>
|
|
284
|
+
<PartnerProperties>
|
|
285
|
+
<Name>ResetRetentionPeriodOnImport</Name>
|
|
286
|
+
<Value>False</Value>
|
|
287
|
+
</PartnerProperties>
|
|
288
|
+
<PartnerProperties>
|
|
289
|
+
<Name>DeleteAtEndOfRetentionPeriod</Name>
|
|
290
|
+
<Value>False</Value>
|
|
291
|
+
</PartnerProperties>
|
|
292
|
+
<PartnerProperties>
|
|
293
|
+
<Name>RetainUntil</Name>
|
|
294
|
+
<Value />
|
|
295
|
+
</PartnerProperties>
|
|
296
|
+
<ObjectID>941cf36b-f927-4674-8468-c9a3bed7cae4</ObjectID>
|
|
297
|
+
<CustomerKey>BE1B7591-BFA6-473F-A6CE-0E458204865B</CustomerKey>
|
|
298
|
+
<Name>Event DE Template</Name>
|
|
299
|
+
<Description>Event Data Extension Template</Description>
|
|
300
|
+
</Results>
|
|
301
|
+
</RetrieveResponseMsg>
|
|
302
|
+
</soap:Body>
|
|
303
|
+
</soap:Envelope>
|