gitextract_bi7k1rji/ ├── .beautyamp.json ├── .bitbucket/ │ └── PULL_REQUEST_TEMPLATE.md ├── .coverage-comment-template.svelte ├── .editorconfig ├── .fork/ │ ├── .prettierrc │ └── custom-commands.json ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── feature_request.md │ │ └── task.md │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── pr_template_release.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── pr-labeler.yml │ └── workflows/ │ ├── close_issues_on_merge.yml │ ├── code-test.yml │ ├── coverage-base-update.yml │ ├── coverage-develop-branch.yml │ ├── coverage-main-branch.yml │ ├── coverage.yml │ ├── npm-publish.yml │ ├── pr-labeler.yml │ └── sync-milestone.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ ├── commit-msg │ ├── post-checkout │ ├── post-merge │ └── pre-commit ├── .issuetracker ├── .markdownlint.json ├── .markdownlint.md ├── .mcdev-validations.js ├── .npmrc ├── .nycrc.json ├── .prettierignore ├── .prettierrc ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── .vsls.json ├── @types/ │ ├── lib/ │ │ ├── Builder.d.ts │ │ ├── Deployer.d.ts │ │ ├── MetadataTypeDefinitions.d.ts │ │ ├── MetadataTypeInfo.d.ts │ │ ├── Retriever.d.ts │ │ ├── cli.d.ts │ │ ├── index.d.ts │ │ ├── metadataTypes/ │ │ │ ├── Asset.d.ts │ │ │ ├── AttributeGroup.d.ts │ │ │ ├── AttributeSet.d.ts │ │ │ ├── Automation.d.ts │ │ │ ├── Campaign.d.ts │ │ │ ├── ContentArea.d.ts │ │ │ ├── DataExtension.d.ts │ │ │ ├── DataExtensionField.d.ts │ │ │ ├── DataExtensionTemplate.d.ts │ │ │ ├── DataExtract.d.ts │ │ │ ├── DataExtractType.d.ts │ │ │ ├── DataFilter.d.ts │ │ │ ├── DataFilterHidden.d.ts │ │ │ ├── DeliveryProfile.d.ts │ │ │ ├── Discovery.d.ts │ │ │ ├── DomainVerification.d.ts │ │ │ ├── Email.d.ts │ │ │ ├── EmailSend.d.ts │ │ │ ├── Event.d.ts │ │ │ ├── FileLocation.d.ts │ │ │ ├── FileTransfer.d.ts │ │ │ ├── Filter.d.ts │ │ │ ├── FilterDefinition.d.ts │ │ │ ├── FilterDefinitionHidden.d.ts │ │ │ ├── Folder.d.ts │ │ │ ├── ImportFile.d.ts │ │ │ ├── Journey.d.ts │ │ │ ├── List.d.ts │ │ │ ├── MetadataType.d.ts │ │ │ ├── MobileCode.d.ts │ │ │ ├── MobileKeyword.d.ts │ │ │ ├── MobileMessage.d.ts │ │ │ ├── Query.d.ts │ │ │ ├── Role.d.ts │ │ │ ├── Script.d.ts │ │ │ ├── SendClassification.d.ts │ │ │ ├── SenderProfile.d.ts │ │ │ ├── TransactionalEmail.d.ts │ │ │ ├── TransactionalMessage.d.ts │ │ │ ├── TransactionalPush.d.ts │ │ │ ├── TransactionalSMS.d.ts │ │ │ ├── TriggeredSend.d.ts │ │ │ ├── TriggeredSendSummary.d.ts │ │ │ ├── User.d.ts │ │ │ ├── Verification.d.ts │ │ │ └── definitions/ │ │ │ ├── Asset.definition.d.ts │ │ │ ├── AttributeGroup.definition.d.ts │ │ │ ├── AttributeSet.definition.d.ts │ │ │ ├── Automation.definition.d.ts │ │ │ ├── Campaign.definition.d.ts │ │ │ ├── ContentArea.definition.d.ts │ │ │ ├── DataExtension.definition.d.ts │ │ │ ├── DataExtensionField.definition.d.ts │ │ │ ├── DataExtensionTemplate.definition.d.ts │ │ │ ├── DataExtract.definition.d.ts │ │ │ ├── DataExtractType.definition.d.ts │ │ │ ├── DataFilter.definition.d.ts │ │ │ ├── DataFilterHidden.definition.d.ts │ │ │ ├── DeliveryProfile.definition.d.ts │ │ │ ├── Discovery.definition.d.ts │ │ │ ├── DomainVerification.definition.d.ts │ │ │ ├── Email.definition.d.ts │ │ │ ├── EmailSend.definition.d.ts │ │ │ ├── Event.definition.d.ts │ │ │ ├── FileLocation.definition.d.ts │ │ │ ├── FileTransfer.definition.d.ts │ │ │ ├── Filter.definition.d.ts │ │ │ ├── FilterDefinition.definition.d.ts │ │ │ ├── FilterDefinitionHidden.definition.d.ts │ │ │ ├── Folder.definition.d.ts │ │ │ ├── ImportFile.definition.d.ts │ │ │ ├── Journey.definition.d.ts │ │ │ ├── List.definition.d.ts │ │ │ ├── MobileCode.definition.d.ts │ │ │ ├── MobileKeyword.definition.d.ts │ │ │ ├── MobileMessage.definition.d.ts │ │ │ ├── Query.definition.d.ts │ │ │ ├── Role.definition.d.ts │ │ │ ├── Script.definition.d.ts │ │ │ ├── SendClassification.definition.d.ts │ │ │ ├── SenderProfile.definition.d.ts │ │ │ ├── TransactionalEmail.definition.d.ts │ │ │ ├── TransactionalMessage.definition.d.ts │ │ │ ├── TransactionalPush.definition.d.ts │ │ │ ├── TransactionalSMS.definition.d.ts │ │ │ ├── TriggeredSend.definition.d.ts │ │ │ ├── TriggeredSendSummary.definition.d.ts │ │ │ ├── User.definition.d.ts │ │ │ └── Verification.definition.d.ts │ │ ├── retrieveChangelog.d.ts │ │ └── util/ │ │ ├── auth.d.ts │ │ ├── businessUnit.d.ts │ │ ├── cache.d.ts │ │ ├── cli.d.ts │ │ ├── config.d.ts │ │ ├── devops.d.ts │ │ ├── file.d.ts │ │ ├── init.config.d.ts │ │ ├── init.d.ts │ │ ├── init.git.d.ts │ │ ├── init.npm.d.ts │ │ ├── replaceContentBlockReference.d.ts │ │ ├── util.d.ts │ │ └── validations.d.ts │ └── types/ │ └── mcdev.d.d.ts ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── boilerplate/ │ ├── config.json │ ├── files/ │ │ ├── .beautyamp.json │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .npmrc │ │ ├── .prettierrc │ │ ├── .vscode/ │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── README.md │ │ └── eslint.config.js │ ├── forcedUpdates.json │ ├── gitignore-template │ └── npm-dependencies.json ├── docs/ │ └── dist/ │ └── considerations.md ├── eslint.config.js ├── lib/ │ ├── Builder.js │ ├── Deployer.js │ ├── MetadataTypeDefinitions.js │ ├── MetadataTypeInfo.js │ ├── Retriever.js │ ├── cli.js │ ├── index.js │ ├── metadataTypes/ │ │ ├── Asset.js │ │ ├── AttributeGroup.js │ │ ├── AttributeSet.js │ │ ├── Automation.js │ │ ├── Campaign.js │ │ ├── ContentArea.js │ │ ├── DataExtension.js │ │ ├── DataExtensionField.js │ │ ├── DataExtensionTemplate.js │ │ ├── DataExtract.js │ │ ├── DataExtractType.js │ │ ├── DataFilter.js │ │ ├── DataFilterHidden.js │ │ ├── DeliveryProfile.js │ │ ├── Discovery.js │ │ ├── DomainVerification.js │ │ ├── Email.js │ │ ├── EmailSend.js │ │ ├── Event.js │ │ ├── FileLocation.js │ │ ├── FileTransfer.js │ │ ├── Filter.js │ │ ├── Folder.js │ │ ├── ImportFile.js │ │ ├── Journey.js │ │ ├── List.js │ │ ├── MetadataType.js │ │ ├── MobileCode.js │ │ ├── MobileKeyword.js │ │ ├── MobileMessage.js │ │ ├── Query.js │ │ ├── Role.js │ │ ├── Script.js │ │ ├── SendClassification.js │ │ ├── SenderProfile.js │ │ ├── TransactionalEmail.js │ │ ├── TransactionalMessage.js │ │ ├── TransactionalPush.js │ │ ├── TransactionalSMS.js │ │ ├── TriggeredSend.js │ │ ├── TriggeredSendSummary.js │ │ ├── User.js │ │ ├── Verification.js │ │ └── definitions/ │ │ ├── Asset.definition.js │ │ ├── AttributeGroup.definition.js │ │ ├── AttributeSet.definition.js │ │ ├── Automation.definition.js │ │ ├── Campaign.definition.js │ │ ├── ContentArea.definition.js │ │ ├── DataExtension.definition.js │ │ ├── DataExtensionField.definition.js │ │ ├── DataExtensionTemplate.definition.js │ │ ├── DataExtract.definition.js │ │ ├── DataExtractType.definition.js │ │ ├── DataFilter.definition.js │ │ ├── DataFilterHidden.definition.js │ │ ├── DeliveryProfile.definition.js │ │ ├── Discovery.definition.js │ │ ├── DomainVerification.definition.js │ │ ├── Email.definition.js │ │ ├── EmailSend.definition.js │ │ ├── Event.definition.js │ │ ├── FileLocation.definition.js │ │ ├── FileTransfer.definition.js │ │ ├── Filter.definition.js │ │ ├── Folder.definition.js │ │ ├── ImportFile.definition.js │ │ ├── Journey.definition.js │ │ ├── List.definition.js │ │ ├── MobileCode.definition.js │ │ ├── MobileKeyword.definition.js │ │ ├── MobileMessage.definition.js │ │ ├── Query.definition.js │ │ ├── Role.definition.js │ │ ├── Script.definition.js │ │ ├── SendClassification.definition.js │ │ ├── SenderProfile.definition.js │ │ ├── TransactionalEmail.definition.js │ │ ├── TransactionalMessage.definition.js │ │ ├── TransactionalPush.definition.js │ │ ├── TransactionalSMS.definition.js │ │ ├── TriggeredSend.definition.js │ │ ├── TriggeredSendSummary.definition.js │ │ ├── User.definition.js │ │ └── Verification.definition.js │ ├── retrieveChangelog.js │ └── util/ │ ├── auth.js │ ├── businessUnit.js │ ├── cache.js │ ├── cli.js │ ├── config.js │ ├── devops.js │ ├── file.js │ ├── init.config.js │ ├── init.git.js │ ├── init.js │ ├── init.npm.js │ ├── replaceContentBlockReference.js │ ├── util.js │ └── validations.js ├── package.json ├── prepare-release.js ├── test/ │ ├── general.test.js │ ├── mockRoot/ │ │ ├── .mcdev-auth.json │ │ ├── .mcdev-validations.js │ │ ├── .mcdevrc.json │ │ └── deploy/ │ │ └── testInstance/ │ │ ├── _ParentBU_/ │ │ │ ├── dataExtension/ │ │ │ │ ├── testExisting_dataExtensionShared.dataExtension-meta.json │ │ │ │ └── testNew_dataExtensionShared.dataExtension-meta.json │ │ │ ├── query/ │ │ │ │ ├── testNew_query.query-meta.json │ │ │ │ └── testNew_query.query-meta.sql │ │ │ └── user/ │ │ │ ├── testBlocked_user.user-meta.json │ │ │ ├── testExisting_user.user-meta.json │ │ │ └── testNew_user.user-meta.json │ │ └── testBU/ │ │ ├── asset/ │ │ │ ├── block/ │ │ │ │ ├── testExisting_asset_html-matchNamFail.asset-block-meta.html │ │ │ │ ├── testExisting_asset_html-matchNamFail.asset-block-meta.json │ │ │ │ ├── testExisting_asset_html-matchName.asset-block-meta.html │ │ │ │ ├── testExisting_asset_html-matchName.asset-block-meta.json │ │ │ │ ├── testExisting_asset_html-matchNameAdd.asset-block-meta.html │ │ │ │ ├── testExisting_asset_html-matchNameAdd.asset-block-meta.json │ │ │ │ ├── testNew_asset.asset-block-meta.html │ │ │ │ ├── testNew_asset.asset-block-meta.json │ │ │ │ ├── testNew_asset_htmlblock.asset-block-meta.html │ │ │ │ ├── testNew_asset_htmlblock.asset-block-meta.json │ │ │ │ ├── testNew_asset_withCBBK_notexisting.asset-block-meta.html │ │ │ │ ├── testNew_asset_withCBBK_notexisting.asset-block-meta.json │ │ │ │ ├── testNew_asset_withCBBK_preexisting.asset-block-meta.html │ │ │ │ ├── testNew_asset_withCBBK_preexisting.asset-block-meta.json │ │ │ │ ├── test_slash.asset-block-meta.html │ │ │ │ └── test_slash.asset-block-meta.json │ │ │ ├── message/ │ │ │ │ ├── testNew_assetMessage/ │ │ │ │ │ ├── testNew_assetMessage.asset-message-meta.json │ │ │ │ │ └── views.html.content.asset-message-meta.html │ │ │ │ └── testNew_asset_templatebasedemail/ │ │ │ │ ├── testNew_asset_templatebasedemail.asset-message-meta.json │ │ │ │ └── views.html.content.asset-message-meta.html │ │ │ └── template/ │ │ │ └── testNew_asset_template/ │ │ │ ├── content.asset-template-meta.html │ │ │ └── testNew_asset_template.asset-template-meta.json │ │ ├── automation/ │ │ │ ├── testExisting_automation.automation-meta.json │ │ │ └── testNew_automation.automation-meta.json │ │ ├── dataExtension/ │ │ │ ├── testExisting_dataExtension.dataExtension-meta.json │ │ │ └── testNew_dataExtension.dataExtension-meta.json │ │ ├── dataExtract/ │ │ │ ├── testExisting_dataExtract.dataExtract-meta.json │ │ │ └── testNew_dataExtract.dataExtract-meta.json │ │ ├── dataFilter/ │ │ │ ├── testExisting_dataFilter.dataFilter-meta.json │ │ │ └── testNew_dataFilter.dataFilter-meta.json │ │ ├── domainVerification/ │ │ │ ├── joern.berkefeld.New@accenture.com.domainVerification-meta.json │ │ │ ├── joern.berkefeld@accenture.com.domainVerification-meta.json │ │ │ └── mcdev.accenture.com.domainVerification-meta.json │ │ ├── emailSend/ │ │ │ ├── testExisting_emailSend.emailSend-meta.json │ │ │ └── testNew_emailSend.emailSend-meta.json │ │ ├── event/ │ │ │ ├── testExisting_event.event-meta.json │ │ │ ├── testNew_event_withExistingDE.event-meta.json │ │ │ └── testNew_event_withSchema.event-meta.json │ │ ├── fileLocation/ │ │ │ ├── ExactTarget Enhanced FTP.fileLocation-meta.json │ │ │ ├── testExisting_fileLocation_aws.fileLocation-meta.json │ │ │ └── testExisting_fileLocation_exsftp.fileLocation-meta.json │ │ ├── fileTransfer/ │ │ │ ├── testExisting_fileTransfer.fileTransfer-meta.json │ │ │ └── testNew_fileTransfer.fileTransfer-meta.json │ │ ├── filter/ │ │ │ ├── testExisting_filter.filter-meta.json │ │ │ └── testNew_filter.filter-meta.json │ │ ├── importFile/ │ │ │ ├── testExisting_importFile.importFile-meta.json │ │ │ └── testNew_importFile.importFile-meta.json │ │ ├── journey/ │ │ │ ├── testExisting_journey_Multistep.journey-meta.json │ │ │ ├── testExisting_journey_Quicksend.journey-meta.json │ │ │ ├── testExisting_journey_updatecontact.journey-meta.json │ │ │ ├── testExisting_journey_updatecontact_sharedDE.journey-meta.json │ │ │ ├── testExisting_temail.journey-meta.json │ │ │ ├── testExisting_temail_notPublished.journey-meta.json │ │ │ └── testNew_temail_notPublished.journey-meta.json │ │ ├── mobileKeyword/ │ │ │ ├── 4912312345678.TESTNEW_KEYWORD.mobileKeyword-meta.amp │ │ │ ├── 4912312345678.TESTNEW_KEYWORD.mobileKeyword-meta.json │ │ │ ├── 4912312345678.TESTNEW_KEYWORD_BLOCKED.mobileKeyword-meta.amp │ │ │ └── 4912312345678.TESTNEW_KEYWORD_BLOCKED.mobileKeyword-meta.json │ │ ├── mobileMessage/ │ │ │ ├── NTIzOjc4OjA.mobileMessage-meta.amp │ │ │ ├── NTIzOjc4OjA.mobileMessage-meta.json │ │ │ ├── new.mobileMessage-meta.amp │ │ │ └── new.mobileMessage-meta.json │ │ ├── query/ │ │ │ ├── testExisting_query.query-meta.json │ │ │ ├── testExisting_query.query-meta.sql │ │ │ ├── testExisting_query_fixKeys.query-meta.json │ │ │ ├── testExisting_query_fixKeys.query-meta.sql │ │ │ ├── testNew_query.query-meta.json │ │ │ └── testNew_query.query-meta.sql │ │ ├── script/ │ │ │ ├── testExisting_script.script-meta.json │ │ │ ├── testExisting_script.script-meta.ssjs │ │ │ ├── testNew_script.script-meta.json │ │ │ └── testNew_script.script-meta.ssjs │ │ ├── sendClassification/ │ │ │ ├── testExisting_sendClassification.sendClassification-meta.json │ │ │ └── testNew_sendClassification.sendClassification-meta.json │ │ ├── senderProfile/ │ │ │ ├── testExisting_senderProfile.senderProfile-meta.json │ │ │ └── testNew_senderProfile.senderProfile-meta.json │ │ ├── transactionalEmail/ │ │ │ ├── testExisting_temail.transactionalEmail-meta.json │ │ │ └── testNew_temail.transactionalEmail-meta.json │ │ ├── transactionalPush/ │ │ │ ├── testExisting_tpush.transactionalPush-meta.json │ │ │ └── testNew_tpush.transactionalPush-meta.json │ │ ├── transactionalSMS/ │ │ │ ├── testExisting_tsms.transactionalSMS-meta.amp │ │ │ ├── testExisting_tsms.transactionalSMS-meta.json │ │ │ ├── testNew_tsms.transactionalSMS-meta.amp │ │ │ └── testNew_tsms.transactionalSMS-meta.json │ │ ├── triggeredSend/ │ │ │ ├── testExisting_triggeredSend.triggeredSend-meta.json │ │ │ └── testNew_triggeredSend.triggeredSend-meta.json │ │ └── verification/ │ │ ├── testExisting_automation__s1.7.verification-meta.json │ │ └── testNew_automation__s1.7.verification-meta.json │ ├── resourceFactory.js │ ├── resources/ │ │ ├── 1111111/ │ │ │ ├── accountUser/ │ │ │ │ ├── configure-response.xml │ │ │ │ ├── create-response.xml │ │ │ │ ├── retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-QAA-response.xml │ │ │ │ ├── retrieve-ActiveFlag=falseANDEmaillike@-QAA-response.xml │ │ │ │ ├── retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-QAA-response.xml │ │ │ │ ├── retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-QAA-response.xml │ │ │ │ ├── retrieve-ActiveFlag=trueANDEmaillike@-QAA-response.xml │ │ │ │ └── update-response.xml │ │ │ ├── accountUserAccount/ │ │ │ │ ├── retrieve-AccountUser.AccountUserID=700301950-response.xml │ │ │ │ └── retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml │ │ │ ├── automation/ │ │ │ │ └── v1/ │ │ │ │ └── queries/ │ │ │ │ ├── get-response.json │ │ │ │ └── post-response.json │ │ │ ├── businessUnit/ │ │ │ │ └── retrieve-ID=1111111-QAA-response.xml │ │ │ ├── data/ │ │ │ │ └── v1/ │ │ │ │ └── customobjectdata/ │ │ │ │ └── key/ │ │ │ │ └── testExisting_dataExtensionShared/ │ │ │ │ └── rowset/ │ │ │ │ └── get-response.json │ │ │ ├── dataExtension/ │ │ │ │ ├── create-expected.json │ │ │ │ ├── create-response.xml │ │ │ │ ├── retrieve-expected.json │ │ │ │ ├── retrieve-expected.md │ │ │ │ ├── retrieve-response.xml │ │ │ │ ├── template_sharedDE-expected.json │ │ │ │ ├── update-expected.json │ │ │ │ └── update-response.xml │ │ │ ├── dataExtensionField/ │ │ │ │ ├── retrieve-CustomerKey=[testExisting_dataExtensionShared].[TriggerUpdate_randomNumber_]-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKey=testNew_dataExtensionSharedORDataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml │ │ │ │ └── retrieve-response.xml │ │ │ ├── dataExtensionTemplate/ │ │ │ │ └── retrieve-response.xml │ │ │ ├── dataFolder/ │ │ │ │ ├── retrieve-ContentType=queryactivity-response.xml │ │ │ │ ├── retrieve-ContentTypeINdataextension,hidden,queryactivity,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINdataextension,hidden,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINshared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ └── retrieve-response-.xml │ │ │ ├── list/ │ │ │ │ └── retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml │ │ │ ├── platform/ │ │ │ │ └── v1/ │ │ │ │ └── setup/ │ │ │ │ └── quickflow/ │ │ │ │ └── data/ │ │ │ │ └── get-response.json │ │ │ ├── query/ │ │ │ │ ├── patch_keySuffix-expected.json │ │ │ │ └── patch_keySuffix-expected.sql │ │ │ ├── role/ │ │ │ │ └── retrieve-IsPrivate=false-response.xml │ │ │ └── user/ │ │ │ ├── build-expected.json │ │ │ ├── create-expected.json │ │ │ ├── retrieve-expected.json │ │ │ ├── retrieve-expected.md │ │ │ ├── template-expected.json │ │ │ └── update-expected.json │ │ ├── 9999999/ │ │ │ ├── accountUser/ │ │ │ │ └── retrieve-response.xml │ │ │ ├── asset/ │ │ │ │ ├── build-asset_htmlblock-expected.html │ │ │ │ ├── build-asset_htmlblock-expected.json │ │ │ │ ├── build-templatebasedemail-expected.json │ │ │ │ ├── build-templatebasedemail-html-expected.html │ │ │ │ ├── build-templatebasedemail-preheader-expected.amp │ │ │ │ ├── create-expected.json │ │ │ │ ├── resolveId-1234-notFound-expected.json │ │ │ │ ├── resolveId-1295064-noPath-expected.json │ │ │ │ ├── resolveId-1295064-withPath-expected.json │ │ │ │ ├── retrieve-templatebasedemail-expected.json │ │ │ │ ├── retrieve-templatebasedemail-html-expected.html │ │ │ │ ├── retrieve-templatebasedemail-preheader-expected.amp │ │ │ │ ├── template-emailTemplate-expected.json │ │ │ │ ├── template-templatebasedemail-expected.json │ │ │ │ ├── template-templatebasedemail-html-expected.html │ │ │ │ ├── template-templatebasedemail-preheader-expected.amp │ │ │ │ ├── template-testExisting_asset_htmlblock-expected.json │ │ │ │ ├── testExisting_asset_htmlblock-retrieve-expected.html │ │ │ │ ├── testExisting_asset_htmlblock-retrieve-expected.json │ │ │ │ ├── testExisting_asset_message-html-rcb-id-expected.html │ │ │ │ ├── testExisting_asset_message-html-rcb-key-expected.html │ │ │ │ ├── testExisting_asset_message-html-rcb-name-expected.html │ │ │ │ ├── testExisting_asset_message-preheader-rcb-id-expected.amp │ │ │ │ ├── testExisting_asset_message-preheader-rcb-key-expected.amp │ │ │ │ ├── testExisting_asset_message-preheader-rcb-name-expected.amp │ │ │ │ ├── testExisting_asset_message-text-rcb-id-expected.amp │ │ │ │ ├── testExisting_asset_message-text-rcb-key-expected.amp │ │ │ │ ├── testExisting_asset_message-text-rcb-name-expected.amp │ │ │ │ ├── test_coderesource_js-retrieve-expected.js │ │ │ │ ├── test_coderesource_js-retrieve-expected.json │ │ │ │ ├── test_coderesource_json-retrieve-expected.json │ │ │ │ ├── test_coderesource_json-retrieve-expected.jsonc │ │ │ │ ├── test_coderesource_xml-retrieve-expected.json │ │ │ │ ├── test_coderesource_xml-retrieve-expected.xml │ │ │ │ ├── test_interactivecontent-retrieve-expected.json │ │ │ │ ├── test_landingpage-retrieve-expected.json │ │ │ │ ├── test_microsite-retrieve-expected.json │ │ │ │ └── v1/ │ │ │ │ └── content/ │ │ │ │ ├── assets/ │ │ │ │ │ ├── 1209971/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 1295064/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 1295065/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 1295066/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 1295067/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 16992/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 5286/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 5289/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 808714/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9451/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9456/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9458/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9460/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9463/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9465/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 950143/ │ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── get-response-customerKey=testExisting_asset.json │ │ │ │ │ ├── post-response-key=testNew_assetMessage.json │ │ │ │ │ ├── post-response-key=testNew_asset_htmlblock.json │ │ │ │ │ ├── post-response-key=testNew_asset_template.json │ │ │ │ │ ├── post-response-key=testNew_asset_templatebasedemail.json │ │ │ │ │ ├── post-response-key=testNew_asset_withCBBK_notexisting.json │ │ │ │ │ ├── post-response-key=testNew_asset_withCBBK_preexisting.json │ │ │ │ │ ├── post-response-key=test_slash.json │ │ │ │ │ ├── post-response.json │ │ │ │ │ └── query/ │ │ │ │ │ ├── +post-response-assetType.idIN3,195,196,197,198,199,200,201,202,203,210,211,212,213-slashfolder.json │ │ │ │ │ ├── post-response-assetType.idIN1,205,206,230,232.json │ │ │ │ │ ├── post-response-assetType.idIN1,3,14,15,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,210,211,212,213,215,216,217,218,219,220,221,222,223,224.json │ │ │ │ │ ├── post-response-assetType.idIN1,3,4,14,15,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,210,211,212,213,214,215,216,217,218,219,220,221,222.json │ │ │ │ │ ├── post-response-assetType.idIN1,3,4,5,14,15,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218.json │ │ │ │ │ ├── post-response-assetType.idIN1,5,205,206,207,208,209,230,232.json │ │ │ │ │ ├── post-response-assetType.idIN14,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192.json │ │ │ │ │ ├── post-response-assetType.idIN15,193,194.json │ │ │ │ │ ├── post-response-assetType.idIN215,216,217,218,219,220,221,222,223,224,225,226,227,228.json │ │ │ │ │ ├── post-response-assetType.idIN219,220,221,222,223,224,225,226,227,228,230,232,240,241,242,243,244,245.json │ │ │ │ │ ├── post-response-assetType.idIN223,224,225,226,227,228,230,232.json │ │ │ │ │ ├── post-response-assetType.idIN225,226,227,228,230,232.json │ │ │ │ │ ├── post-response-assetType.idIN240,241,242,243,244,245.json │ │ │ │ │ ├── post-response-assetType.idIN246,247,248,249.json │ │ │ │ │ ├── post-response-assetType.idIN3,195,196,197,198,199,200,201,202,203,210,211,212,213.json │ │ │ │ │ ├── post-response-assetType.idIN4,214.json │ │ │ │ │ ├── post-response-assetType.idIN5,207,208,209.json │ │ │ │ │ └── post-response-customerKey=testExisting_asset_htmlblock.json │ │ │ │ └── categories/ │ │ │ │ └── post-response.json │ │ │ ├── asset-deploy/ │ │ │ │ └── block/ │ │ │ │ ├── testNew_asset_badExtension.bad-type-extension.json │ │ │ │ └── testNew_asset_badName_bad.asset-block-meta.json │ │ │ ├── asset-deploy2/ │ │ │ │ └── block/ │ │ │ │ ├── testBlacklist_asset_htmlblock.asset-block-meta.html │ │ │ │ └── testBlacklist_asset_htmlblock.asset-block-meta.json │ │ │ ├── asset-slashfolder-deploy/ │ │ │ │ └── block/ │ │ │ │ ├── test_slash.asset-block-meta.html │ │ │ │ └── test_slash.asset-block-meta.json │ │ │ ├── attributeGroup/ │ │ │ │ └── retrieve-expected.json │ │ │ ├── attributeSet/ │ │ │ │ └── retrieve-expected.json │ │ │ ├── automation/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── clone-expected.json │ │ │ │ ├── create-callout-expected.json │ │ │ │ ├── create-expected.json │ │ │ │ ├── create-testNew_automation-expected.md │ │ │ │ ├── delete-response.xml │ │ │ │ ├── patch_fixKeys-pause-expected.json │ │ │ │ ├── patch_fixKeys-schedule-expected.json │ │ │ │ ├── perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml │ │ │ │ ├── perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml │ │ │ │ ├── perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml │ │ │ │ ├── perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml │ │ │ │ ├── retrieve-expected.json │ │ │ │ ├── retrieve-testExisting_automation-expected.md │ │ │ │ ├── retrieve-wait-expected.json │ │ │ │ ├── retrieve-wait-expected.md │ │ │ │ ├── template-expected.json │ │ │ │ ├── update-callout-expected.json │ │ │ │ ├── update-expected.json │ │ │ │ ├── update-testExisting_automation-expected.md │ │ │ │ └── v1/ │ │ │ │ ├── automations/ │ │ │ │ │ ├── 08afb0e2-b00a-4c88-ad2e-1f7f8788c560/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 08afb0e2-b00a-4c88-ad2e-pause/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 08afb0e2-b00a-4c88-fixKey_pause/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 08afb0e2-b00a-4c88-fixKey_schedule/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 0fc2ac96-14ba-495a-8db9-3ddd4f8ac444-wait/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 8f82c2a7-0bae-45a9-bdee-e631ab25c0d5/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ └── post-response.json │ │ │ │ ├── dataextracts/ │ │ │ │ │ ├── 56c5370a-f988-4f36-b0ee-0f876573f6d7/ │ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── post-response.json │ │ │ │ ├── dataextracttypes/ │ │ │ │ │ └── get-response.json │ │ │ │ ├── dataverifications/ │ │ │ │ │ ├── post-response.json │ │ │ │ │ └── testExisting_39f6a488-20eb-4ba0-b0b9/ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── patch-response.json │ │ │ │ ├── filetransfers/ │ │ │ │ │ ├── 72c328ac-f5b0-4e37-91d3-a775666f15a6/ │ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── post-response.json │ │ │ │ ├── filters/ │ │ │ │ │ ├── a0f1a1bc-4ea1-44b3-8fe1-ce40ef35c1c0/ │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── f018f237-f7ef-40b0-afc8-39ea2e5dcca4/ │ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ └── get-response.json │ │ │ │ ├── ftplocations/ │ │ │ │ │ └── get-response.json │ │ │ │ ├── imports/ │ │ │ │ │ ├── 1ebf557b-372e-eb11-b81b-48df37d1dbd7/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 9d16f42c-2260-ed11-b849-48df37d1de8b/ │ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── d2474efb-a449-ef11-b876-f40343c95928/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── post-response.json │ │ │ │ ├── queries/ │ │ │ │ │ ├── 549f0568-607c-4940-afef-437965094dae/ │ │ │ │ │ │ └── actions/ │ │ │ │ │ │ └── start/ │ │ │ │ │ │ └── post-response.txt │ │ │ │ │ ├── 549f0568-607c-4940-afef-437965094dat/ │ │ │ │ │ │ ├── actions/ │ │ │ │ │ │ │ └── start/ │ │ │ │ │ │ │ └── post-response.txt │ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 549f0568-607c-4940-afef-437965094dat_fixKeys/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── 549f0568-607c-4940-afef-437965094dat_fixKeysSuffix/ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── abcde-607c-4940-afef-437965094dat/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── get-response-Name=testExisting_query.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── post-response.json │ │ │ │ └── scripts/ │ │ │ │ ├── 39f6a488-20eb-4ba0-b0b9-023725b574e4/ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── patch-response.json │ │ │ │ ├── get-response-name=testExisting_script.json │ │ │ │ ├── get-response.json │ │ │ │ └── post-response.json │ │ │ ├── data/ │ │ │ │ └── v1/ │ │ │ │ ├── customobjectdata/ │ │ │ │ │ └── key/ │ │ │ │ │ └── testExisting_dataExtension/ │ │ │ │ │ └── rowset/ │ │ │ │ │ └── get-response.json │ │ │ │ ├── filetransferlocation/ │ │ │ │ │ ├── Salesforce%20Objects%20%26%20Reports/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── testExisting_fileLocation_aws/ │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── testExisting_fileLocation_azure/ │ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ │ └── get-response.json │ │ │ │ │ └── testExisting_fileLocation_exsftp/ │ │ │ │ │ └── patch-response.json │ │ │ │ └── filetransferlocations/ │ │ │ │ └── get-response.json │ │ │ ├── dataExtension/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── create-expected.json │ │ │ │ ├── create-response.xml │ │ │ │ ├── delete-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_dataExtension-response.xml │ │ │ │ ├── retrieve-CustomerKey=testNew_event_withSchema-response.xml │ │ │ │ ├── retrieve-Name=testExisting_dataExtension-response.xml │ │ │ │ ├── retrieve-createdViaEvent-response.xml │ │ │ │ ├── retrieve-expected.json │ │ │ │ ├── retrieve-expected.md │ │ │ │ ├── retrieve-response.xml │ │ │ │ ├── retrieve_event_withSchema-expected.json │ │ │ │ ├── template-expected.json │ │ │ │ ├── update-afterCreatedViaEvent-response.xml │ │ │ │ ├── update-callout-afterCreatedViaEvent-expected.xml │ │ │ │ ├── update-expected.json │ │ │ │ └── update-response.xml │ │ │ ├── dataExtension-deploy/ │ │ │ │ └── testBlacklist_dataExtension.dataExtension-meta.json │ │ │ ├── dataExtensionField/ │ │ │ │ ├── retrieve-CustomerKey=[testExisting_dataExtension].[LastName]-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKey=testNew_event_withSchema-response.xml │ │ │ │ ├── retrieve-DataExtension.CustomerKeyINtestExisting_dataExtension,testNew_dataExtension-response.xml │ │ │ │ ├── retrieve-Name=FirstName-response.xml │ │ │ │ ├── retrieve-Name=LastName-response.xml │ │ │ │ └── retrieve-response.xml │ │ │ ├── dataExtensionTemplate/ │ │ │ │ └── retrieve-response.xml │ │ │ ├── dataExtract/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── dataFilter/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── dataFolder/ │ │ │ │ ├── +retrieve-ContentTypeINasset,asset-shared,cloudpages-slashfolder-response.xml │ │ │ │ ├── create-ContentType=asset,Name=testFolder_samePath,ParentFolderID=89397-response.xml │ │ │ │ ├── create-ContentType=dataextension,Name=my,ParentFolderID=2-response.xml │ │ │ │ ├── create-ContentType=dataextension,Name=path,ParentFolderID=862002-response.xml │ │ │ │ ├── create-ContentType=dataextension,Name=sub,ParentFolderID=862001-response.xml │ │ │ │ ├── create-ContentType=dataextension,Name=subpath,ParentFolderID=862003-response.xml │ │ │ │ ├── create-response.xml │ │ │ │ ├── retrieve-ContentType=asset-shared-QAA-response.xml │ │ │ │ ├── retrieve-ContentType=asset-shared-response.xml │ │ │ │ ├── retrieve-ContentType=automations-response.xml │ │ │ │ ├── retrieve-ContentType=journey-response.xml │ │ │ │ ├── retrieve-ContentType=queryactivity-response.xml │ │ │ │ ├── retrieve-ContentType=ssjsactivity-response.xml │ │ │ │ ├── retrieve-ContentType=userinitiatedsends-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-sha,automatio,cloudpage,dataexten,filteract,filterdef,hidden,journey,list,mysubs,publicati,queryacti,salesforc,shared_da,shared_da,shared_sa,ssjsactiv,synchroni,useriniti-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-sha,automatio,cloudpage,dataexten,hidden,journey,list,mysubs,publicati,queryacti,salesforc,shared_da,shared_da,shared_sa,ssjsactiv,synchroni,triggered,triggered,useriniti-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-sha,automatio,cloudpage,dataexten,hidden,journey,list,mysubs,publicati,queryacti,salesforc,shared_da,shared_da,shared_sa,ssjsactiv,synchroni,useriniti-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-sha,dataexten,salesforc,shared_da,shared_da,shared_sa,synchroni,automatio,useriniti,journey,mysubs,list,publicati,queryacti,ssjsactiv,triggered,triggered-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared,cloudpages,dataextension,hidden,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared,cloudpages,journey-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared,cloudpages,ssjsactivity-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared,cloudpages-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-QAA-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared-QAA-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset,asset-shared-response.xml │ │ │ │ ├── retrieve-ContentTypeINasset-shared,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-QAA-response.xml │ │ │ │ ├── retrieve-ContentTypeINautomations,queryactivity-response.xml │ │ │ │ ├── retrieve-ContentTypeINcontextual_suppression_list,hidden,list,mysubs,publication,suppression_list,triggered_send,triggered_send_journeybuilder-response.xml │ │ │ │ ├── retrieve-ContentTypeINcontextual_suppression_list,list,mysubs,publication,suppression_list-response.xml │ │ │ │ ├── retrieve-ContentTypeINdataextension,hidden,queryactivity,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINdataextension,hidden,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINdataextension,salesforcedataextension,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-QAA-response.xml │ │ │ │ ├── retrieve-ContentTypeINfilteractivity,hidden-response.xml │ │ │ │ ├── retrieve-ContentTypeINfilterdefinition,hidden-response.xml │ │ │ │ ├── retrieve-ContentTypeINhidden,shared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-response.xml │ │ │ │ ├── retrieve-ContentTypeINhidden,triggered_send,triggered_send_journeybuilder-response.xml │ │ │ │ ├── retrieve-ContentTypeINshared_data,shared_dataextension,shared_salesforcedataextension,synchronizeddataextension-QAA-response.xml │ │ │ │ ├── retrieve-QAA-response.xml │ │ │ │ ├── retrieve-response.xml │ │ │ │ ├── retrieve-samePathOtherBU-response.xml │ │ │ │ └── update-response.xml │ │ │ ├── deliveryProfile/ │ │ │ │ └── get-expected.json │ │ │ ├── domainVerification/ │ │ │ │ ├── create-expected.json │ │ │ │ ├── get-sap-expected.json │ │ │ │ └── update-expected.json │ │ │ ├── email/ │ │ │ │ ├── retrieve-response.xml │ │ │ │ └── v1/ │ │ │ │ ├── category/ │ │ │ │ │ ├── post-response-parentCatId=290937,name=my,catType=automations.json │ │ │ │ │ ├── post-response-parentCatId=862100,name=sub,catType=automations.json │ │ │ │ │ ├── post-response-parentCatId=862101,name=path,catType=automations.json │ │ │ │ │ └── post-response-parentCatId=862102,name=subpath,catType=automations.json │ │ │ │ └── filters/ │ │ │ │ └── filterdefinition/ │ │ │ │ ├── 10ef27dd-4be8-4bf6-970a-8acf8e281e55/ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── patch-response.json │ │ │ │ ├── category/ │ │ │ │ │ ├── 5318/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── 8502/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ └── 8503/ │ │ │ │ │ └── get-response.json │ │ │ │ └── post-response.json │ │ │ ├── emailSend/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── emailSendDefinition/ │ │ │ │ ├── create-response.xml │ │ │ │ ├── delete-response.xml │ │ │ │ ├── retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml │ │ │ │ └── update-response.xml │ │ │ ├── event/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-automation-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-published-expected.json │ │ │ │ ├── post_withExistingDE-callout-expected.json │ │ │ │ ├── post_withExistingDE-expected.json │ │ │ │ ├── post_withSchema-callout-expected.json │ │ │ │ ├── post_withSchema-expected.json │ │ │ │ ├── put-callout-expected.json │ │ │ │ ├── put-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── event-deploy/ │ │ │ │ ├── testNew_event_badExtension.bad-type-extension.json │ │ │ │ └── testNew_event_badName_bad.event-meta.json │ │ │ ├── eventDefinition/ │ │ │ │ └── get-expected.json │ │ │ ├── fileLocation/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-aws-expected.json │ │ │ │ ├── get-azure-expected.json │ │ │ │ ├── get-eftp-expected.json │ │ │ │ ├── get-exsftp-expected.json │ │ │ │ ├── get-gcp-expected.json │ │ │ │ ├── get-sor-expected.json │ │ │ │ ├── patch-aws-expected.json │ │ │ │ ├── patch-exsftp-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── fileTransfer/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── filter/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── filterActivity/ │ │ │ │ ├── create-response.xml │ │ │ │ └── retrieve-CustomerKey=testExisting_filter-response.xml │ │ │ ├── filterDefinition/ │ │ │ │ └── retrieve-CustomerKey=testExisting_dataFilter-response.xml │ │ │ ├── folder-deploy/ │ │ │ │ ├── Data Extensions/ │ │ │ │ │ ├── my/ │ │ │ │ │ │ ├── sub/ │ │ │ │ │ │ │ ├── path/ │ │ │ │ │ │ │ │ └── subpath.folder-meta.json │ │ │ │ │ │ │ └── path.folder-meta.json │ │ │ │ │ │ └── sub.folder-meta.json │ │ │ │ │ ├── my.folder-meta.json │ │ │ │ │ └── testExisting_folder.folder-meta.json │ │ │ │ └── my automations/ │ │ │ │ ├── my/ │ │ │ │ │ ├── sub/ │ │ │ │ │ │ ├── path/ │ │ │ │ │ │ │ └── subpath.folder-meta.json │ │ │ │ │ │ └── path.folder-meta.json │ │ │ │ │ └── sub.folder-meta.json │ │ │ │ └── my.folder-meta.json │ │ │ ├── folder-deploy-samepath/ │ │ │ │ └── Content Builder/ │ │ │ │ └── testFolder_samePath.folder-meta.json │ │ │ ├── folder-deploy-slash/ │ │ │ │ └── Content Builder/ │ │ │ │ └── Headers%2FFolders.folder-meta.json │ │ │ ├── hub/ │ │ │ │ └── v1/ │ │ │ │ └── contacts/ │ │ │ │ └── schema/ │ │ │ │ ├── attributeGroups/ │ │ │ │ │ └── get-response.json │ │ │ │ └── setDefinitions/ │ │ │ │ └── get-response.json │ │ │ ├── importDefinition/ │ │ │ │ ├── retrieve-CustomerKey=testExisting_importFile-response.xml │ │ │ │ └── retrieve-Name=testExisting_importFile-response.xml │ │ │ ├── importFile/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-dataImport-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-sms-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── interaction/ │ │ │ │ └── v1/ │ │ │ │ ├── eventDefinitions/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ ├── key_DEAudience-2e3c73b6-48cc-2ec0-5522-48636e1a236e/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── key_testExisting_event/ │ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ │ └── put-response.json │ │ │ │ │ ├── key_testExisting_event_automation/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── post_withExistingDE-response.json │ │ │ │ │ └── post_withSchema-response.json │ │ │ │ └── interactions/ │ │ │ │ ├── 0175b971-71a3-4d8e-98ac-48121f3fbf4f/ │ │ │ │ │ ├── audit/ │ │ │ │ │ │ └── all/ │ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ │ ├── get-response-versionNumber=2.json │ │ │ │ │ │ └── get-response-versionNumber=3.json │ │ │ │ │ ├── delete-response-versionNumber=1.txt │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ ├── get-response-versionNumber=3.json │ │ │ │ │ └── get-response.json │ │ │ │ ├── 3c3f4112-9b43-43ca-8a89-aa0375b2c1a2/ │ │ │ │ │ ├── delete-response.txt │ │ │ │ │ └── get-response.json │ │ │ │ ├── dsfdsafdsa-922c-4568-85a5-e5cc77efc3be/ │ │ │ │ │ ├── audit/ │ │ │ │ │ │ └── all/ │ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ │ └── get-response-versionNumber=2.json │ │ │ │ │ └── delete-response.txt │ │ │ │ ├── get-response-status=Published.json │ │ │ │ ├── get-response.json │ │ │ │ ├── key_testExisting_journey_Multistep/ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── put-response.json │ │ │ │ ├── key_testExisting_journey_Quicksend/ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ └── get-response.json │ │ │ │ ├── key_testExisting_journey_updatecontact/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── put-response.json │ │ │ │ ├── key_testExisting_journey_updatecontact_sharedDE/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── put-response.json │ │ │ │ ├── key_testExisting_temail/ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ ├── put-response-paused.json │ │ │ │ │ └── put-response.json │ │ │ │ ├── key_testExisting_temail_notPublished/ │ │ │ │ │ ├── get-response-versionNumber=1.json │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── put-response.json │ │ │ │ ├── key_testNew_temail_notPublished/ │ │ │ │ │ └── get-response.json │ │ │ │ ├── post-response.json │ │ │ │ ├── publishAsync/ │ │ │ │ │ └── 0175b971-71a3-4d8e-98ac-48121f3fbf4f/ │ │ │ │ │ ├── post-response-versionNumber=1.json │ │ │ │ │ └── post-response-versionNumber=3.json │ │ │ │ ├── publishStatus/ │ │ │ │ │ └── 45f06c0a-3ed2-48b2-a6a8-b5119253f01c/ │ │ │ │ │ ├── get-response-failed.json │ │ │ │ │ ├── get-response-success.json │ │ │ │ │ └── get-response-successWarnings.json │ │ │ │ ├── transactional/ │ │ │ │ │ ├── create/ │ │ │ │ │ │ └── post-response.json │ │ │ │ │ ├── pause/ │ │ │ │ │ │ └── post-response.json │ │ │ │ │ └── resume/ │ │ │ │ │ └── post-response.json │ │ │ │ ├── validateAsync/ │ │ │ │ │ └── 0175b971-71a3-4d8e-98ac-48121f3fbf4f/ │ │ │ │ │ └── post-response.json │ │ │ │ └── validateStatus/ │ │ │ │ └── 45f06c0a-3ed2-48b2-a6a8-b5119253f01c/ │ │ │ │ ├── get-response-failed.json │ │ │ │ ├── get-response-success.json │ │ │ │ ├── get-response-successWarnings.json │ │ │ │ └── get-response.json │ │ │ ├── journey/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── create-transactionaEmail-publish-expected.json │ │ │ │ ├── get-multistep-expected.json │ │ │ │ ├── get-published-expected.json │ │ │ │ ├── get-quicksend-expected.json │ │ │ │ ├── get-quicksend-rcb-id-expected.json │ │ │ │ ├── get-quicksend-rcb-key-expected.json │ │ │ │ ├── get-quicksend-rcb-name-expected.json │ │ │ │ ├── get-transactionalEmail-expected.json │ │ │ │ ├── get-updatecontact-expected.json │ │ │ │ ├── get-updatecontact-sharedDE-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ ├── publish-callout-expected.json │ │ │ │ ├── put-expected.json │ │ │ │ ├── put-updatecontact-expected.json │ │ │ │ ├── put-updatecontact-sharedDE-expected.json │ │ │ │ ├── template-expected.json │ │ │ │ └── validate-callout-expected.json │ │ │ ├── legacy/ │ │ │ │ └── v1/ │ │ │ │ ├── beta/ │ │ │ │ │ ├── automations/ │ │ │ │ │ │ └── notifications/ │ │ │ │ │ │ ├── RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/ │ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ │ └── post-response.json │ │ │ │ │ │ ├── RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow-PAUSED/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── bHF6Q0Q3b1VXa21OdVQzZFQ0ckVSQToyNTow/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ └── cDhLQ2o2NExxVVc5N3VZeHF5WEExUToyNTow/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── bulk/ │ │ │ │ │ │ └── automations/ │ │ │ │ │ │ └── automation/ │ │ │ │ │ │ └── definition/ │ │ │ │ │ │ ├── NewRkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow-PAUSED/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── bHF6Q0Q3b1VXa21OdVQzZFQ0ckVSQToyNTow/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── cDhLQ2o2NExxVVc5N3VZeHF5WEExUToyNTow/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ ├── post-response-pauseSchedule.json │ │ │ │ │ │ └── post-response-schedule.json │ │ │ │ │ ├── messaging/ │ │ │ │ │ │ └── deliverypolicy/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ ├── mobile/ │ │ │ │ │ │ ├── code/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── imports/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── keyword/ │ │ │ │ │ │ │ ├── NXV4ZFMwTEFwRVczd3RaLUF5X3p5dzo4Njow/ │ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ │ ├── cTVJaG5oSDJPVUNHcUh6Z3pQT2tVdzo4Njow/ │ │ │ │ │ │ │ │ └── delete-response.json │ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ │ └── post-response.json │ │ │ │ │ │ └── message/ │ │ │ │ │ │ ├── NTIzOjc4OjA/ │ │ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ │ └── post-response.json │ │ │ │ │ │ ├── NTQ3Ojc4OjA/ │ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── post-response.json │ │ │ │ │ └── object/ │ │ │ │ │ └── NWQwdnhEU3dFZWVBekJRQzdISWl0QTo0NTow/ │ │ │ │ │ └── get-response.json │ │ │ │ └── beta2/ │ │ │ │ └── data/ │ │ │ │ └── campaign/ │ │ │ │ └── get-response.json │ │ │ ├── list/ │ │ │ │ └── retrieve-response.xml │ │ │ ├── messaging/ │ │ │ │ └── v1/ │ │ │ │ ├── domainverification/ │ │ │ │ │ ├── delete/ │ │ │ │ │ │ └── post-response.txt │ │ │ │ │ ├── get-response.json │ │ │ │ │ ├── post-response.txt │ │ │ │ │ └── update/ │ │ │ │ │ └── post-response.txt │ │ │ │ ├── email/ │ │ │ │ │ └── definitions/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ ├── post-response.json │ │ │ │ │ ├── testExisting_temail/ │ │ │ │ │ │ ├── delete-response.json │ │ │ │ │ │ ├── get-response.json │ │ │ │ │ │ └── patch-response.json │ │ │ │ │ ├── testExisting_temail_notPublished/ │ │ │ │ │ │ └── get-response.json │ │ │ │ │ └── testNew_temail_notPublished/ │ │ │ │ │ └── get-response.json │ │ │ │ ├── push/ │ │ │ │ │ └── definitions/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ ├── post-response.json │ │ │ │ │ └── testExisting_tpush/ │ │ │ │ │ ├── get-response.json │ │ │ │ │ └── patch-response.json │ │ │ │ └── sms/ │ │ │ │ └── definitions/ │ │ │ │ ├── get-response.json │ │ │ │ ├── post-response.json │ │ │ │ └── testExisting_tsms/ │ │ │ │ ├── get-response.json │ │ │ │ └── patch-response.json │ │ │ ├── mobileKeyword/ │ │ │ │ ├── build-expected.amp │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.amp │ │ │ │ ├── get-expected.json │ │ │ │ ├── post-create-expected.amp │ │ │ │ ├── post-create-expected.json │ │ │ │ ├── template-expected.amp │ │ │ │ └── template-expected.json │ │ │ ├── mobileMessage/ │ │ │ │ ├── build-expected.amp │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.amp │ │ │ │ ├── get-expected.json │ │ │ │ ├── post-create-expected.amp │ │ │ │ ├── post-create-expected.json │ │ │ │ ├── post-update-expected.amp │ │ │ │ ├── post-update-expected.json │ │ │ │ ├── template-expected.amp │ │ │ │ └── template-expected.json │ │ │ ├── program/ │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_automation_pause-response.xml │ │ │ │ ├── retrieve-CustomerKey=testNew_automation-response.xml │ │ │ │ ├── retrieve-Name=testExisting_automation-response.xml │ │ │ │ └── retrieve-response.xml │ │ │ ├── query/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── build-expected.sql │ │ │ │ ├── clone-expected.json │ │ │ │ ├── clone-expected.sql │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-expected.sql │ │ │ │ ├── get2-expected.json │ │ │ │ ├── get_sharedDE-expected.json │ │ │ │ ├── get_sharedDE-expected.sql │ │ │ │ ├── patch-expected.json │ │ │ │ ├── patch-expected.sql │ │ │ │ ├── patch_fixKeys-expected.json │ │ │ │ ├── patch_fixKeys-expected.sql │ │ │ │ ├── patch_fixKeysSuffix-expected.json │ │ │ │ ├── patch_fixKeysSuffix-expected.sql │ │ │ │ ├── post-expected.json │ │ │ │ ├── post-expected.sql │ │ │ │ ├── template-expected.json │ │ │ │ ├── template-expected.sql │ │ │ │ ├── template_sharedDE-expected.json │ │ │ │ └── template_sharedDE-expected.sql │ │ │ ├── queryDefinition/ │ │ │ │ ├── retrieve-CustomerKey=badANDStatus=Active-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_query2ANDStatus=Active-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_query_fixKeysSuffixANDStatus=Active-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml │ │ │ │ └── retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml │ │ │ ├── script/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── build-expected.ssjs │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-expected.ssjs │ │ │ │ ├── get_ampincluded-expected.html │ │ │ │ ├── get_ampincluded-expected.json │ │ │ │ ├── get_ampincluded-rcb-id-expected.html │ │ │ │ ├── get_ampincluded-rcb-key-expected.html │ │ │ │ ├── get_ampincluded-rcb-name-expected.html │ │ │ │ ├── get_ampscript-expected.html │ │ │ │ ├── get_ampscript-expected.json │ │ │ │ ├── get_ampscript-rcb-id-expected.html │ │ │ │ ├── get_ampscript-rcb-key-expected.html │ │ │ │ ├── get_ampscript-rcb-name-expected.html │ │ │ │ ├── get_mixed-expected.html │ │ │ │ ├── get_mixed-expected.json │ │ │ │ ├── get_mixed-rcb-id-expected.html │ │ │ │ ├── get_mixed-rcb-key-expected.html │ │ │ │ ├── get_mixed-rcb-name-expected.html │ │ │ │ ├── get_noScriptTag-expected.html │ │ │ │ ├── get_noScriptTag-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── patch-expected.ssjs │ │ │ │ ├── post-expected.json │ │ │ │ ├── post-expected.ssjs │ │ │ │ ├── template-expected.json │ │ │ │ └── template-expected.ssjs │ │ │ ├── sendClassification/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── create-response.xml │ │ │ │ ├── delete-response.xml │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ ├── retrieve-response.xml │ │ │ │ ├── template-expected.json │ │ │ │ └── update-response.xml │ │ │ ├── senderProfile/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── create-response.xml │ │ │ │ ├── delete-response.xml │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-rcb-id-expected.json │ │ │ │ ├── get-rcb-key-expected.json │ │ │ │ ├── get-rcb-name-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ ├── retrieve-CustomerKey=Default-response.xml │ │ │ │ ├── retrieve-CustomerKey=wrong-key-response.xml │ │ │ │ ├── retrieve-response.xml │ │ │ │ ├── template-expected.json │ │ │ │ └── update-response.xml │ │ │ ├── transactionalEmail/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── create-publish-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-published-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── transactionalPush/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── transactionalSMS/ │ │ │ │ ├── build-expected.amp │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.amp │ │ │ │ ├── get-expected.json │ │ │ │ ├── patch-expected.amp │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.amp │ │ │ │ ├── post-expected.json │ │ │ │ ├── template-expected.amp │ │ │ │ └── template-expected.json │ │ │ ├── triggeredSend/ │ │ │ │ ├── build-expected.json │ │ │ │ ├── get-expected.json │ │ │ │ ├── get-rcb-id-expected.json │ │ │ │ ├── get-rcb-key-expected.json │ │ │ │ ├── get-rcb-name-expected.json │ │ │ │ ├── patch-expected.json │ │ │ │ ├── post-expected.json │ │ │ │ └── template-expected.json │ │ │ ├── triggeredSendDefinition/ │ │ │ │ ├── create-response.xml │ │ │ │ ├── delete-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_triggeredSend-response.xml │ │ │ │ ├── retrieve-CustomerKey=testExisting_triggeredSend_rcb-response.xml │ │ │ │ ├── retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml │ │ │ │ ├── retrieve-TriggeredSendStatusINdummy,Active-response.xml │ │ │ │ └── update-response.xml │ │ │ ├── triggeredSendSummary/ │ │ │ │ ├── get-expected.json │ │ │ │ └── retrieve-response.xml │ │ │ └── verification/ │ │ │ ├── build-expected.json │ │ │ ├── get-expected.json │ │ │ ├── patch-expected.json │ │ │ ├── post-expected.json │ │ │ └── template-expected.json │ │ ├── auth.json │ │ ├── rest404-response.json │ │ └── retrieve-response.xml │ ├── type.asset.test.js │ ├── type.attributeGroup.test.js │ ├── type.attributeSet.test.js │ ├── type.automation.test.js │ ├── type.dataExtension.test.js │ ├── type.dataExtensionField.test.js │ ├── type.dataExtract.test.js │ ├── type.dataFilter.test.js │ ├── type.deliveryProfile.test.js │ ├── type.domainVerification.test.js │ ├── type.emailSend.test.js │ ├── type.event.test.js │ ├── type.fileLocation.test.js │ ├── type.fileTransfer.test.js │ ├── type.filter.test.js │ ├── type.folder.test.js │ ├── type.importFile.test.js │ ├── type.journey.test.js │ ├── type.mobileKeyword.test.js │ ├── type.mobileMessage.test.js │ ├── type.query.test.js │ ├── type.script.test.js │ ├── type.sendClassification.test.js │ ├── type.senderProfile.test.js │ ├── type.transactionalEmail.test.js │ ├── type.transactionalPush.test.js │ ├── type.transactionalSMS.test.js │ ├── type.triggeredSend.test.js │ ├── type.triggeredSendSummary.test.js │ ├── type.user.test.js │ ├── type.verification.test.js │ └── utils.js ├── tsconfig.json ├── tsconfig.npmScripts.json ├── tsconfig.precommit.json └── types/ └── mcdev.d.js