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.
- package/.eslintrc.json +4 -4
- package/.github/ISSUE_TEMPLATE/bug.yml +1 -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 +633 -286
- package/lib/Deployer.js +25 -25
- package/lib/MetadataTypeDefinitions.js +1 -1
- package/lib/MetadataTypeInfo.js +1 -1
- package/lib/Retriever.js +1 -1
- package/lib/cli.js +159 -9
- package/lib/index.js +395 -95
- package/lib/metadataTypes/Asset.js +10 -11
- package/lib/metadataTypes/AttributeGroup.js +76 -2
- package/lib/metadataTypes/AttributeSet.js +260 -0
- package/lib/metadataTypes/Automation.js +413 -96
- package/lib/metadataTypes/DataExtension.js +2 -2
- package/lib/metadataTypes/DataExtensionField.js +1 -1
- package/lib/metadataTypes/Event.js +2 -3
- package/lib/metadataTypes/Folder.js +1 -1
- package/lib/metadataTypes/Journey.js +5 -6
- package/lib/metadataTypes/MetadataType.js +149 -49
- package/lib/metadataTypes/MobileKeyword.js +8 -8
- package/lib/metadataTypes/MobileMessage.js +5 -5
- package/lib/metadataTypes/Query.js +26 -10
- package/lib/metadataTypes/Script.js +3 -3
- package/lib/metadataTypes/TransactionalSMS.js +5 -5
- package/lib/metadataTypes/TriggeredSend.js +25 -50
- package/lib/metadataTypes/User.js +7 -4
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +117 -106
- package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +54 -27
- package/lib/metadataTypes/definitions/Automation.definition.js +22 -15
- package/lib/metadataTypes/definitions/ImportFile.definition.js +36 -6
- package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -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 +11 -11
- package/test/mockRoot/.mcdevrc.json +1 -1
- 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 +5 -6
- 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/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -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/user/retrieve-expected.md +4 -2
- package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
- package/test/resources/9999999/attributeSet/retrieve-expected.json +748 -0
- package/test/resources/9999999/automation/build-expected.json +1 -2
- package/test/resources/9999999/automation/create-expected.json +7 -8
- package/test/resources/9999999/automation/create-testNew_automation-expected.md +4 -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 +1 -2
- package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +2 -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 +1 -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-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 +20 -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/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/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +98 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
- 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=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 +585 -0
- package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +19807 -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/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/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/type.attributeGroup.test.js +55 -0
- package/test/type.attributeSet.test.js +55 -0
- package/test/type.automation.test.js +638 -11
- package/test/type.dataExtension.test.js +0 -1
- package/test/type.dataExtract.test.js +187 -0
- package/test/type.fileTransfer.test.js +185 -0
- package/test/type.importFile.test.js +186 -0
- package/test/type.mobileKeyword.test.js +0 -1
- package/test/type.query.test.js +464 -13
- package/test/type.script.test.js +367 -0
- package/test/type.triggeredSend.test.js +152 -0
- package/test/type.user.test.js +22 -10
- package/test/utils.js +4 -1
- 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,203 @@
|
|
|
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:bda830a5-f8a8-4555-a0f0-9b3cdae02f9f</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:afa5fcc9-c276-4f3d-9796-6b31a2b55721</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-1332843c-2deb-4570-822f-502889ddd5c9">
|
|
15
|
+
<wsu:Created>2023-08-08T12:49:19Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2023-08-08T12:54:19Z</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>e25a4055-f1b6-4fcd-a771-76bcb1cff6a9</RequestID>
|
|
24
|
+
<Results xsi:type="Email">
|
|
25
|
+
<PartnerKey />
|
|
26
|
+
<CreatedDate>2020-08-13T10:16:59</CreatedDate>
|
|
27
|
+
<ModifiedDate>2020-11-09T13:33:30.15</ModifiedDate>
|
|
28
|
+
<ID>483943</ID>
|
|
29
|
+
<ObjectID xsi:nil="true" />
|
|
30
|
+
<CustomerKey>255f0e7c-cd37-452b-ba59-cd802359f199</CustomerKey>
|
|
31
|
+
<Name>Sporting Goods for September</Name>
|
|
32
|
+
<Folder>my emails</Folder>
|
|
33
|
+
<CategoryID>283575</CategoryID>
|
|
34
|
+
<HTMLBody><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
35
|
+
<html>
|
|
36
|
+
<head>
|
|
37
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
|
|
38
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
39
|
+
<style type="text/css">
|
|
40
|
+
ReadMsgBody{ width: 100%;}
|
|
41
|
+
.ExternalClass {width: 100%;}
|
|
42
|
+
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;}
|
|
43
|
+
body {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;margin:0 !important; padding:0 !important;}
|
|
44
|
+
p { margin: 1em 0;}
|
|
45
|
+
table td { border-collapse: collapse;}
|
|
46
|
+
img {outline:0;}
|
|
47
|
+
a img {border:none;}
|
|
48
|
+
p {margin: 1em 0;}
|
|
49
|
+
@-ms-viewport{ width: device-width;}
|
|
50
|
+
@media only screen and (max-width: 480px) {
|
|
51
|
+
body[yahoo] .container { width:100% !important; }
|
|
52
|
+
body[yahoo] .footer { width:auto !important; margin-left:0; }
|
|
53
|
+
body[yahoo] .content-padding{ padding:4px !important; }
|
|
54
|
+
body[yahoo] .mobile-hidden { display:none !important; }
|
|
55
|
+
body[yahoo] .logo { display:block !important; padding:0 !important; }
|
|
56
|
+
body[yahoo] img { width:auto !important; max-width:308px !important; height:auto !important; max-height:auto !important;}
|
|
57
|
+
body[yahoo] .header img { width:auto !important; max-width:316px !important; height:auto !important; max-height:auto !important;}
|
|
58
|
+
body[yahoo] .photo img { width:100% !important; max-width:100% !important; height:auto !important;}
|
|
59
|
+
body[yahoo] .drop { display:block !important; width: 100% !important; float:left; clear:both;}
|
|
60
|
+
body[yahoo] .footerlogo { display:block !important; width: 100% !important; padding-top:15px; float:left; clear:both;}
|
|
61
|
+
body[yahoo] .nav4, body[yahoo] .nav5, body[yahoo] .nav6 { display: none !important; }
|
|
62
|
+
}
|
|
63
|
+
@media only screen and (max-width: 640px) {
|
|
64
|
+
body[yahoo] .container { width:100% !important; }
|
|
65
|
+
body[yahoo] .mobile-hidden { display:none !important; }
|
|
66
|
+
body[yahoo] .logo { display:block !important; padding:0 !important; }
|
|
67
|
+
body[yahoo] .photo img { width:100% !important; height:auto !important;}
|
|
68
|
+
body[yahoo] .nav5, body[yahoo] .nav6 { display: none !important;}
|
|
69
|
+
}
|
|
70
|
+
</style>
|
|
71
|
+
</head>
|
|
72
|
+
<body bgcolor="#ffffff" text="#000000" style="background-color: #FFFFFF; color: #000000; margin: 0px; padding:0px; -webkit-text-size-adjust:none;" yahoo="fix">
|
|
73
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0" align="center">
|
|
74
|
+
<tr>
|
|
75
|
+
<td align="center" valign="top"><custom type="header" name="header"></td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr>
|
|
78
|
+
<td align="center">
|
|
79
|
+
<table cellspacing="0" cellpadding="0" border="0" width="600" class="container" align="center">
|
|
80
|
+
<tr>
|
|
81
|
+
<td>
|
|
82
|
+
<table cellspacing="0" cellpadding="0" border="1" bordercolor="#000000" bgcolor="#ffffff" width="100%">
|
|
83
|
+
<tr>
|
|
84
|
+
<td align="center" class="header" valign="top"></td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td align="center" valign="top"><table cellspacing="0" cellpadding="0" border="0" width="100%" align="left">
|
|
88
|
+
<tr>
|
|
89
|
+
<td class="content-padding" style="padding:10px;">
|
|
90
|
+
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
|
91
|
+
<tr>
|
|
92
|
+
<td class="drop" valign="top" width="33%" align="left">
|
|
93
|
+
<custom type="content" name="left">
|
|
94
|
+
</td>
|
|
95
|
+
<td class="drop" valign="top" width="2%" height="10"><img alt="" src="https://image.s7.sfmc-content.com/lib/ffcf14/m/1/spacer.gif" height="10" width="10" style="display: block;"/></td>
|
|
96
|
+
<td class="drop" valign="top" width="65%">
|
|
97
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
98
|
+
<tr>
|
|
99
|
+
<td align="left" valign="top">
|
|
100
|
+
<custom type="content" name="right1">
|
|
101
|
+
</td>
|
|
102
|
+
</tr>
|
|
103
|
+
<tr>
|
|
104
|
+
<td align="left" valign="top" style="padding-top: 10px;">
|
|
105
|
+
<custom type="content" name="right2">
|
|
106
|
+
</td>
|
|
107
|
+
</tr>
|
|
108
|
+
</table>
|
|
109
|
+
</td>
|
|
110
|
+
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<td align="left" colspan="3" valign="top" class="drop" style="padding-top:10px;">
|
|
113
|
+
<custom type="content" name="bottom">
|
|
114
|
+
</td>
|
|
115
|
+
</tr>
|
|
116
|
+
</table>
|
|
117
|
+
</td>
|
|
118
|
+
</tr>
|
|
119
|
+
</table></td>
|
|
120
|
+
</tr>
|
|
121
|
+
</table>
|
|
122
|
+
</td>
|
|
123
|
+
</tr>
|
|
124
|
+
</table>
|
|
125
|
+
</td>
|
|
126
|
+
</tr>
|
|
127
|
+
<tr>
|
|
128
|
+
<td valign="top"><custom type="footer" name="footer"></td>
|
|
129
|
+
</tr>
|
|
130
|
+
</table>
|
|
131
|
+
<custom name="opencounter" type="tracking">
|
|
132
|
+
</body>
|
|
133
|
+
</html></HTMLBody>
|
|
134
|
+
<TextBody />
|
|
135
|
+
<ContentAreas>
|
|
136
|
+
<PartnerKey xsi:nil="true" />
|
|
137
|
+
<ID>934961</ID>
|
|
138
|
+
<ObjectID>5E999EA7-97D8-4910-91B3-ED29B16567DA</ObjectID>
|
|
139
|
+
<CustomerKey>36D85559-5345-41CB-9E8E-A6B7675E4A6F</CustomerKey>
|
|
140
|
+
<Key>left</Key>
|
|
141
|
+
<Content><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial;font-size:13px;">%%First Name%%</td></tr></table></Content>
|
|
142
|
+
<IsBlank>false</IsBlank>
|
|
143
|
+
<CategoryID>0</CategoryID>
|
|
144
|
+
<Name />
|
|
145
|
+
<IsDynamicContent>false</IsDynamicContent>
|
|
146
|
+
<IsSurvey>false</IsSurvey>
|
|
147
|
+
<IsLocked>false</IsLocked>
|
|
148
|
+
</ContentAreas>
|
|
149
|
+
<ContentAreas>
|
|
150
|
+
<PartnerKey xsi:nil="true" />
|
|
151
|
+
<ID>934962</ID>
|
|
152
|
+
<ObjectID>9FA2FEE0-8439-4475-B990-BBC95CB30E31</ObjectID>
|
|
153
|
+
<CustomerKey>68DC9A04-6662-4A23-912A-4A349A1EF040</CustomerKey>
|
|
154
|
+
<Key>right1</Key>
|
|
155
|
+
<Content><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial;font-size:13px;">%%Last Name%%</td></tr></table></Content>
|
|
156
|
+
<IsBlank>false</IsBlank>
|
|
157
|
+
<CategoryID>0</CategoryID>
|
|
158
|
+
<Name />
|
|
159
|
+
<IsDynamicContent>false</IsDynamicContent>
|
|
160
|
+
<IsSurvey>false</IsSurvey>
|
|
161
|
+
<IsLocked>false</IsLocked>
|
|
162
|
+
</ContentAreas>
|
|
163
|
+
<ContentAreas>
|
|
164
|
+
<PartnerKey xsi:nil="true" />
|
|
165
|
+
<ID>934963</ID>
|
|
166
|
+
<ObjectID>5CE10FC0-CE06-40CC-8BE4-14583E2D02B3</ObjectID>
|
|
167
|
+
<CustomerKey>AB7920D1-AE37-4137-9BB9-77B746D4A66C</CustomerKey>
|
|
168
|
+
<Key>right2</Key>
|
|
169
|
+
<Content><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial;font-size:13px;">%%emailname_%%</td></tr></table></Content>
|
|
170
|
+
<IsBlank>false</IsBlank>
|
|
171
|
+
<CategoryID>0</CategoryID>
|
|
172
|
+
<Name />
|
|
173
|
+
<IsDynamicContent>false</IsDynamicContent>
|
|
174
|
+
<IsSurvey>false</IsSurvey>
|
|
175
|
+
<IsLocked>false</IsLocked>
|
|
176
|
+
</ContentAreas>
|
|
177
|
+
<ContentAreas>
|
|
178
|
+
<PartnerKey xsi:nil="true" />
|
|
179
|
+
<ID>934964</ID>
|
|
180
|
+
<ObjectID>AF6501E0-8367-4121-9142-ADAFD632FBE7</ObjectID>
|
|
181
|
+
<CustomerKey>84B63EB0-E248-42D4-B6A6-716C18D2718D</CustomerKey>
|
|
182
|
+
<Key>bottom</Key>
|
|
183
|
+
<Content><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial;font-size:13px;">%%emailaddr%%</td></tr></table></Content>
|
|
184
|
+
<IsBlank>false</IsBlank>
|
|
185
|
+
<CategoryID>0</CategoryID>
|
|
186
|
+
<Name />
|
|
187
|
+
<IsDynamicContent>false</IsDynamicContent>
|
|
188
|
+
<IsSurvey>false</IsSurvey>
|
|
189
|
+
<IsLocked>false</IsLocked>
|
|
190
|
+
</ContentAreas>
|
|
191
|
+
<Subject>Sporting Goods for September</Subject>
|
|
192
|
+
<IsActive>true</IsActive>
|
|
193
|
+
<IsHTMLPaste>false</IsHTMLPaste>
|
|
194
|
+
<Status>New</Status>
|
|
195
|
+
<EmailType>Normal</EmailType>
|
|
196
|
+
<CharacterSet>utf-8</CharacterSet>
|
|
197
|
+
<HasDynamicSubjectLine>false</HasDynamicSubjectLine>
|
|
198
|
+
<ContentCheckStatus>Not Checked</ContentCheckStatus>
|
|
199
|
+
<PreHeader />
|
|
200
|
+
</Results>
|
|
201
|
+
</RetrieveResponseMsg>
|
|
202
|
+
</soap:Body>
|
|
203
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"customerKey": "testTemplated_fileTransfer",
|
|
3
|
+
"description": "17.11.2022",
|
|
4
|
+
"fileSpec": "%%Year%%",
|
|
5
|
+
"isCompressed": false,
|
|
6
|
+
"isEncrypted": false,
|
|
7
|
+
"isFileSpecLocalized": false,
|
|
8
|
+
"isPgp": false,
|
|
9
|
+
"isUpload": true,
|
|
10
|
+
"maxFileAge": 0,
|
|
11
|
+
"maxFileAgeScheduleOffset": 0,
|
|
12
|
+
"maxImportFrequency": 0,
|
|
13
|
+
"name": "testTemplated_fileTransfer",
|
|
14
|
+
"r__fileLocation_name": "ExactTarget Enhanced FTP"
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
3
|
+
"customerKey": "testExisting_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"fileSpec": "%%Year%%",
|
|
6
|
+
"isCompressed": false,
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isFileSpecLocalized": false,
|
|
9
|
+
"isPgp": false,
|
|
10
|
+
"isUpload": true,
|
|
11
|
+
"maxFileAge": 0,
|
|
12
|
+
"maxFileAgeScheduleOffset": 0,
|
|
13
|
+
"maxImportFrequency": 0,
|
|
14
|
+
"modifiedDate": "2022-11-17T07:13:20.05",
|
|
15
|
+
"name": "testExisting_fileTransfer",
|
|
16
|
+
"r__fileLocation_name": "ExactTarget Enhanced FTP"
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
3
|
+
"customerKey": "testExisting_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"fileSpec": "%%Year%% updated via deploy",
|
|
6
|
+
"isCompressed": false,
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isFileSpecLocalized": false,
|
|
9
|
+
"isPgp": false,
|
|
10
|
+
"isUpload": true,
|
|
11
|
+
"maxFileAge": 0,
|
|
12
|
+
"maxFileAgeScheduleOffset": 0,
|
|
13
|
+
"maxImportFrequency": 0,
|
|
14
|
+
"modifiedDate": "2022-11-17T07:13:20.05",
|
|
15
|
+
"name": "testExisting_fileTransfer",
|
|
16
|
+
"r__fileLocation_name": "ExactTarget Enhanced FTP"
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
3
|
+
"customerKey": "testNew_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"fileSpec": "%%Year%% created on deploy",
|
|
6
|
+
"isCompressed": false,
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isFileSpecLocalized": false,
|
|
9
|
+
"isPgp": false,
|
|
10
|
+
"isUpload": true,
|
|
11
|
+
"maxFileAge": 0,
|
|
12
|
+
"maxFileAgeScheduleOffset": 0,
|
|
13
|
+
"maxImportFrequency": 0,
|
|
14
|
+
"modifiedDate": "2022-11-17T07:13:20.05",
|
|
15
|
+
"name": "testNew_fileTransfer",
|
|
16
|
+
"r__fileLocation_name": "ExactTarget Enhanced FTP"
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"customerKey": "{{{prefix}}}fileTransfer",
|
|
3
|
+
"description": "17.11.2022",
|
|
4
|
+
"fileSpec": "%%Year%%",
|
|
5
|
+
"isCompressed": false,
|
|
6
|
+
"isEncrypted": false,
|
|
7
|
+
"isFileSpecLocalized": false,
|
|
8
|
+
"isPgp": false,
|
|
9
|
+
"isUpload": true,
|
|
10
|
+
"maxFileAge": 0,
|
|
11
|
+
"maxFileAgeScheduleOffset": 0,
|
|
12
|
+
"maxImportFrequency": 0,
|
|
13
|
+
"name": "{{{prefix}}}fileTransfer",
|
|
14
|
+
"r__fileLocation_name": "ExactTarget Enhanced FTP"
|
|
15
|
+
}
|