mcdev 7.9.0 → 7.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
  2. package/@types/lib/index.d.ts +4 -4
  3. package/@types/lib/index.d.ts.map +1 -1
  4. package/@types/lib/metadataTypes/Asset.d.ts +8 -0
  5. package/@types/lib/metadataTypes/Asset.d.ts.map +1 -1
  6. package/@types/lib/metadataTypes/Automation.d.ts +62 -51
  7. package/@types/lib/metadataTypes/Automation.d.ts.map +1 -1
  8. package/@types/lib/metadataTypes/DataExtract.d.ts +13 -2
  9. package/@types/lib/metadataTypes/DataExtract.d.ts.map +1 -1
  10. package/@types/lib/metadataTypes/Event.d.ts +8 -0
  11. package/@types/lib/metadataTypes/Event.d.ts.map +1 -1
  12. package/@types/lib/metadataTypes/ImportFile.d.ts.map +1 -1
  13. package/@types/lib/metadataTypes/Journey.d.ts.map +1 -1
  14. package/@types/lib/metadataTypes/MetadataType.d.ts +27 -4
  15. package/@types/lib/metadataTypes/MetadataType.d.ts.map +1 -1
  16. package/@types/lib/metadataTypes/MobileKeyword.d.ts +8 -6
  17. package/@types/lib/metadataTypes/MobileKeyword.d.ts.map +1 -1
  18. package/@types/lib/metadataTypes/MobileMessage.d.ts +8 -0
  19. package/@types/lib/metadataTypes/MobileMessage.d.ts.map +1 -1
  20. package/@types/lib/metadataTypes/SenderProfile.d.ts +3 -1
  21. package/@types/lib/metadataTypes/SenderProfile.d.ts.map +1 -1
  22. package/@types/lib/metadataTypes/Verification.d.ts +12 -5
  23. package/@types/lib/metadataTypes/Verification.d.ts.map +1 -1
  24. package/@types/lib/metadataTypes/definitions/Automation.definition.d.ts +37 -1
  25. package/@types/lib/metadataTypes/definitions/DataExtract.definition.d.ts +21 -3
  26. package/@types/lib/metadataTypes/definitions/SenderProfile.definition.d.ts +3 -1
  27. package/@types/lib/metadataTypes/definitions/Verification.definition.d.ts +10 -0
  28. package/@types/lib/util/util.d.ts +1 -0
  29. package/@types/lib/util/util.d.ts.map +1 -1
  30. package/@types/lib/util/validations.d.ts.map +1 -1
  31. package/@types/types/mcdev.d.d.ts +36 -0
  32. package/@types/types/mcdev.d.d.ts.map +1 -1
  33. package/boilerplate/files/eslint.config.js +30 -27
  34. package/boilerplate/forcedUpdates.json +4 -0
  35. package/lib/index.js +14 -7
  36. package/lib/metadataTypes/Asset.js +4 -5
  37. package/lib/metadataTypes/Automation.js +202 -417
  38. package/lib/metadataTypes/DataExtension.js +1 -1
  39. package/lib/metadataTypes/DataExtract.js +41 -6
  40. package/lib/metadataTypes/DomainVerification.js +1 -1
  41. package/lib/metadataTypes/EmailSend.js +3 -3
  42. package/lib/metadataTypes/Event.js +39 -20
  43. package/lib/metadataTypes/FileTransfer.js +5 -5
  44. package/lib/metadataTypes/ImportFile.js +9 -7
  45. package/lib/metadataTypes/Journey.js +4 -9
  46. package/lib/metadataTypes/MetadataType.js +98 -62
  47. package/lib/metadataTypes/MobileKeyword.js +4 -54
  48. package/lib/metadataTypes/MobileMessage.js +4 -2
  49. package/lib/metadataTypes/Query.js +5 -5
  50. package/lib/metadataTypes/Script.js +5 -5
  51. package/lib/metadataTypes/SendClassification.js +3 -3
  52. package/lib/metadataTypes/SenderProfile.js +3 -3
  53. package/lib/metadataTypes/TransactionalEmail.js +1 -1
  54. package/lib/metadataTypes/TransactionalMessage.js +1 -1
  55. package/lib/metadataTypes/TriggeredSend.js +3 -3
  56. package/lib/metadataTypes/Verification.js +95 -59
  57. package/lib/metadataTypes/definitions/Automation.definition.js +43 -7
  58. package/lib/metadataTypes/definitions/DataExtract.definition.js +16 -3
  59. package/lib/metadataTypes/definitions/DomainVerification.definition.js +1 -1
  60. package/lib/metadataTypes/definitions/SenderProfile.definition.js +3 -1
  61. package/lib/metadataTypes/definitions/Verification.definition.js +8 -2
  62. package/lib/util/util.js +12 -0
  63. package/lib/util/validations.js +3 -1
  64. package/package.json +1 -1
  65. package/test/general.test.js +39 -34
  66. package/test/mockRoot/.mcdevrc.json +1 -1
  67. package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +1 -1
  68. package/test/mockRoot/deploy/testInstance/testBU/verification/{testExisting_39f6a488-20eb-4ba0-b0b9.verification-meta.json → testExisting_automation__s1.7.verification-meta.json} +1 -1
  69. package/test/mockRoot/deploy/testInstance/testBU/verification/{testNew_39f6a488-20eb-4ba0-b0b9.verification-meta.json → testNew_automation__s1.7.verification-meta.json} +1 -1
  70. package/test/resourceFactory.js +8 -5
  71. package/test/resources/9999999/automation/build-expected.json +1 -1
  72. package/test/resources/9999999/automation/clone-expected.json +1 -1
  73. package/test/resources/9999999/automation/create-callout-expected.json +1 -1
  74. package/test/resources/9999999/automation/create-expected.json +3 -2
  75. package/test/resources/9999999/automation/create-testNew_automation-expected.md +1 -1
  76. package/test/resources/9999999/automation/retrieve-expected.json +8 -2
  77. package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +1 -1
  78. package/test/resources/9999999/automation/retrieve-wait-expected.json +7 -1
  79. package/test/resources/9999999/automation/template-expected.json +1 -1
  80. package/test/resources/9999999/automation/update-expected.json +24 -2
  81. package/test/resources/9999999/automation/update-testExisting_automation-expected.md +5 -2
  82. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +1 -0
  83. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +1 -0
  84. package/test/resources/9999999/dataExtract/build-expected.json +2 -2
  85. package/test/resources/9999999/dataExtract/get-expected.json +2 -2
  86. package/test/resources/9999999/dataExtract/patch-expected.json +2 -2
  87. package/test/resources/9999999/dataExtract/post-expected.json +2 -2
  88. package/test/resources/9999999/dataExtract/template-expected.json +2 -2
  89. package/test/resources/9999999/legacy/v1/beta/automations/notifications/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow-PAUSED/get-response.json +3 -0
  90. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/NewRkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/get-response.json +29 -0
  91. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/get-response.json +50 -0
  92. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow-PAUSED/get-response.json +51 -0
  93. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/bHF6Q0Q3b1VXa21OdVQzZFQ0ckVSQToyNTow/get-response.json +7 -1
  94. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/cDhLQ2o2NExxVVc5N3VZeHF5WEExUToyNTow/get-response.json +79 -0
  95. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +61 -2
  96. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/post-response-pauseSchedule.json +1 -0
  97. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/post-response-schedule.json +1 -0
  98. package/test/resources/9999999/messaging/v1/domainverification/get-response.json +10 -1
  99. package/test/resources/9999999/senderProfile/build-expected.json +1 -1
  100. package/test/resources/9999999/senderProfile/get-expected.json +1 -1
  101. package/test/resources/9999999/senderProfile/patch-expected.json +1 -1
  102. package/test/resources/9999999/senderProfile/retrieve-response.xml +1 -1
  103. package/test/resources/9999999/senderProfile/template-expected.json +1 -1
  104. package/test/resources/9999999/verification/build-expected.json +1 -1
  105. package/test/resources/9999999/verification/get-expected.json +1 -1
  106. package/test/resources/9999999/verification/patch-expected.json +1 -1
  107. package/test/resources/9999999/verification/post-expected.json +1 -1
  108. package/test/resources/9999999/verification/template-expected.json +1 -1
  109. package/test/type.automation.test.js +21 -20
  110. package/test/type.dataExtract.test.js +4 -4
  111. package/test/type.domainVerification.test.js +3 -3
  112. package/test/type.journey.test.js +11 -4
  113. package/test/type.query.test.js +2 -2
  114. package/test/type.script.test.js +1 -1
  115. package/test/type.senderProfile.test.js +20 -3
  116. package/test/type.triggeredSend.test.js +13 -1
  117. package/test/type.verification.test.js +7 -13
  118. package/test/utils.js +3 -1
  119. package/types/mcdev.d.js +9 -0
  120. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +0 -52
  121. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +0 -38
  122. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +0 -52
  123. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +0 -52
  124. package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +0 -52
package/types/mcdev.d.js CHANGED
@@ -237,6 +237,7 @@
237
237
 
238
238
  /**
239
239
  * @typedef {object} AutomationSchedule REST format
240
+ * @property {string} id legacy id of schedule
240
241
  * @property {number} typeId equals schedule.scheduleTypeId; upsert endpoint requires scheduleTypeId. retrieve endpoint returns typeId
241
242
  * @property {number} [scheduleTypeId] equals schedule.typeId; upsert endpoint requires scheduleTypeId. retrieve endpoint returns typeId
242
243
  * @property {string} startDate example: '2021-05-07T09:00:00'
@@ -292,6 +293,7 @@
292
293
  * @property {any} [notifications] notifications
293
294
  * @property {string} [description] -
294
295
  * @property {'scheduled'|'triggered'|'automationtriggered'} [type] Starting Source = Schedule / File Drop
296
+ * @property {'scheduled'|'triggered'|'automationtriggered'} [automationType] Starting Source = Schedule / File Drop; from legacy api
295
297
  * @property {'Scheduled'|'Running'|'Ready'|'Building'|'PausedSchedule'|'InactiveTrigger'} [status] automation status
296
298
  * @property {number} [statusId] automation status
297
299
  * @property {AutomationSchedule} [schedule] only existing if type=scheduled
@@ -314,6 +316,12 @@
314
316
  * @property {AutomationStep[]} [steps] -
315
317
  * @property {string} [r__folder_Path] folder path
316
318
  * @property {string} [categoryId] holds folder ID, replaced with r__folder_Path during retrieve
319
+ * @property {string} [createdName] user name of person who created this automation
320
+ * @property {string} [createdDate] iso format
321
+ * @property {string} [modifiedName] user name of person who last modified this automation
322
+ * @property {string} [modifiedDate] iso format
323
+ * @property {string} [pausedName] user name of person who paused this automation
324
+ * @property {string} [pausedDate] iso format
317
325
  */
318
326
 
319
327
  /**
@@ -329,6 +337,7 @@
329
337
  * @property {number} createdBy user id of creator
330
338
  * @property {string} [targetObjectId] ObjectID of target data extension
331
339
  * @property {string} r__dataExtension_key key of target data extension
340
+ * @property {string} c__automation_step custom key for verifications based on automation, step and activity number
332
341
  */
333
342
 
334
343
  /**
@@ -1,52 +0,0 @@
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>ScheduleResponse</wsa:Action>
10
- <wsa:MessageID>urn:uuid:b58a82d9-a251-4be4-b50c-bd300d71601d</wsa:MessageID>
11
- <wsa:RelatesTo>urn:uuid:9d3dbeb3-68b7-4f0a-b0af-04855dc0fd1e</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-5ff54ff3-2408-496a-b4ea-6df5e9ebee03">
15
- <wsu:Created>2023-07-05T10:29:58Z</wsu:Created>
16
- <wsu:Expires>2023-07-05T10:34:58Z</wsu:Expires>
17
- </wsu:Timestamp>
18
- </wsse:Security>
19
- </soap:Header>
20
- <soap:Body>
21
- <ScheduleResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
- <Results>
23
- <Result>
24
- <StatusCode>OK</StatusCode>
25
- <StatusMessage>Program scheduled.</StatusMessage>
26
- <RequestID>3a677ca8-5423-4d59-a1bb-c5fbe1c87197</RequestID>
27
- <Object>
28
- <PartnerKey xsi:nil="true" />
29
- <ObjectID xsi:nil="true" />
30
- <Recurrence xsi:type="DailyRecurrence">
31
- <DailyRecurrencePatternType>Interval</DailyRecurrencePatternType>
32
- <DayInterval>1</DayInterval>
33
- </Recurrence>
34
- <RecurrenceType>Daily</RecurrenceType>
35
- <RecurrenceRangeType>EndAfter</RecurrenceRangeType>
36
- <StartDateTime>2023-07-05T16:00:57</StartDateTime>
37
- <Occurrences>1</Occurrences>
38
- <TimeZone>
39
- <PartnerKey xsi:nil="true" />
40
- <ID>5</ID>
41
- <ObjectID xsi:nil="true" />
42
- </TimeZone>
43
- </Object>
44
- <Task />
45
- </Result>
46
- </Results>
47
- <OverallStatus>OK</OverallStatus>
48
- <OverallStatusMessage />
49
- <RequestID>cfe97488-3c5e-49a9-b338-c0e9f6b6f684</RequestID>
50
- </ScheduleResponseMsg>
51
- </soap:Body>
52
- </soap:Envelope>
@@ -1,38 +0,0 @@
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>ScheduleResponse</wsa:Action>
10
- <wsa:MessageID>urn:uuid:b58a82d9-a251-4be4-b50c-bd300d71601d</wsa:MessageID>
11
- <wsa:RelatesTo>urn:uuid:9d3dbeb3-68b7-4f0a-b0af-04855dc0fd1e</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-5ff54ff3-2408-496a-b4ea-6df5e9ebee03">
15
- <wsu:Created>2023-07-05T10:29:58Z</wsu:Created>
16
- <wsu:Expires>2023-07-05T10:34:58Z</wsu:Expires>
17
- </wsu:Timestamp>
18
- </wsse:Security>
19
- </soap:Header>
20
- <soap:Body>
21
- <ScheduleResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
- <Results>
23
- <Result>
24
- <StatusCode>OK</StatusCode>
25
- <StatusMessage>Schedule Paused. To reactivate the schedule use proxy.Schedule with the action 'start'.</StatusMessage>
26
- <Object>
27
- <PartnerKey xsi:nil="true" />
28
- <ObjectID xsi:nil="true" />
29
- </Object>
30
- <Task />
31
- </Result>
32
- </Results>
33
- <OverallStatus>OK</OverallStatus>
34
- <OverallStatusMessage />
35
- <RequestID>cfe97488-3c5e-49a9-b338-c0e9f6b6f684</RequestID>
36
- </ScheduleResponseMsg>
37
- </soap:Body>
38
- </soap:Envelope>
@@ -1,52 +0,0 @@
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>ScheduleResponse</wsa:Action>
10
- <wsa:MessageID>urn:uuid:b58a82d9-a251-4be4-b50c-bd300d71601d</wsa:MessageID>
11
- <wsa:RelatesTo>urn:uuid:9d3dbeb3-68b7-4f0a-b0af-04855dc0fd1e</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-5ff54ff3-2408-496a-b4ea-6df5e9ebee03">
15
- <wsu:Created>2023-07-05T10:29:58Z</wsu:Created>
16
- <wsu:Expires>2023-07-05T10:34:58Z</wsu:Expires>
17
- </wsu:Timestamp>
18
- </wsse:Security>
19
- </soap:Header>
20
- <soap:Body>
21
- <ScheduleResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
- <Results>
23
- <Result>
24
- <StatusCode>OK</StatusCode>
25
- <StatusMessage>Program scheduled.</StatusMessage>
26
- <RequestID>3a677ca8-5423-4d59-a1bb-c5fbe1c87197</RequestID>
27
- <Object>
28
- <PartnerKey xsi:nil="true" />
29
- <ObjectID xsi:nil="true" />
30
- <Recurrence xsi:type="DailyRecurrence">
31
- <DailyRecurrencePatternType>Interval</DailyRecurrencePatternType>
32
- <DayInterval>1</DayInterval>
33
- </Recurrence>
34
- <RecurrenceType>Daily</RecurrenceType>
35
- <RecurrenceRangeType>EndAfter</RecurrenceRangeType>
36
- <StartDateTime>2023-07-05T16:00:57</StartDateTime>
37
- <Occurrences>1</Occurrences>
38
- <TimeZone>
39
- <PartnerKey xsi:nil="true" />
40
- <ID>5</ID>
41
- <ObjectID xsi:nil="true" />
42
- </TimeZone>
43
- </Object>
44
- <Task />
45
- </Result>
46
- </Results>
47
- <OverallStatus>OK</OverallStatus>
48
- <OverallStatusMessage />
49
- <RequestID>cfe97488-3c5e-49a9-b338-c0e9f6b6f684</RequestID>
50
- </ScheduleResponseMsg>
51
- </soap:Body>
52
- </soap:Envelope>
@@ -1,52 +0,0 @@
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>ScheduleResponse</wsa:Action>
10
- <wsa:MessageID>urn:uuid:b58a82d9-a251-4be4-b50c-bd300d71601d</wsa:MessageID>
11
- <wsa:RelatesTo>urn:uuid:9d3dbeb3-68b7-4f0a-b0af-04855dc0fd1e</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-5ff54ff3-2408-496a-b4ea-6df5e9ebee03">
15
- <wsu:Created>2023-07-05T10:29:58Z</wsu:Created>
16
- <wsu:Expires>2023-07-05T10:34:58Z</wsu:Expires>
17
- </wsu:Timestamp>
18
- </wsse:Security>
19
- </soap:Header>
20
- <soap:Body>
21
- <ScheduleResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
- <Results>
23
- <Result>
24
- <StatusCode>OK</StatusCode>
25
- <StatusMessage>Program scheduled.</StatusMessage>
26
- <RequestID>3a677ca8-5423-4d59-a1bb-c5fbe1c87197</RequestID>
27
- <Object>
28
- <PartnerKey xsi:nil="true" />
29
- <ObjectID xsi:nil="true" />
30
- <Recurrence xsi:type="DailyRecurrence">
31
- <DailyRecurrencePatternType>Interval</DailyRecurrencePatternType>
32
- <DayInterval>1</DayInterval>
33
- </Recurrence>
34
- <RecurrenceType>Daily</RecurrenceType>
35
- <RecurrenceRangeType>EndAfter</RecurrenceRangeType>
36
- <StartDateTime>2023-07-05T16:00:57</StartDateTime>
37
- <Occurrences>1</Occurrences>
38
- <TimeZone>
39
- <PartnerKey xsi:nil="true" />
40
- <ID>5</ID>
41
- <ObjectID xsi:nil="true" />
42
- </TimeZone>
43
- </Object>
44
- <Task />
45
- </Result>
46
- </Results>
47
- <OverallStatus>OK</OverallStatus>
48
- <OverallStatusMessage />
49
- <RequestID>cfe97488-3c5e-49a9-b338-c0e9f6b6f684</RequestID>
50
- </ScheduleResponseMsg>
51
- </soap:Body>
52
- </soap:Envelope>
@@ -1,52 +0,0 @@
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>ScheduleResponse</wsa:Action>
10
- <wsa:MessageID>urn:uuid:6c743640-b80f-456a-abed-b542247f2414</wsa:MessageID>
11
- <wsa:RelatesTo>urn:uuid:29fc6536-3c75-4e07-a05d-e63f7ee520d3</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-49e9b916-1ac1-4cb0-bacc-d0060fdca2ec">
15
- <wsu:Created>2023-07-04T13:13:15Z</wsu:Created>
16
- <wsu:Expires>2023-07-04T13:18:15Z</wsu:Expires>
17
- </wsu:Timestamp>
18
- </wsse:Security>
19
- </soap:Header>
20
- <soap:Body>
21
- <ScheduleResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
22
- <Results>
23
- <Result>
24
- <StatusCode>OK</StatusCode>
25
- <StatusMessage>Program scheduled.</StatusMessage>
26
- <RequestID>89cd977a-3927-49fa-b8e5-47c7e6093bef</RequestID>
27
- <Object>
28
- <PartnerKey xsi:nil="true" />
29
- <ObjectID xsi:nil="true" />
30
- <Recurrence xsi:type="MinutelyRecurrence">
31
- <MinutelyRecurrencePatternType>Interval</MinutelyRecurrencePatternType>
32
- <MinuteInterval>5</MinuteInterval>
33
- </Recurrence>
34
- <RecurrenceType>Minutely</RecurrenceType>
35
- <RecurrenceRangeType>EndOn</RecurrenceRangeType>
36
- <StartDateTime>2023-07-04T06:21:14.408</StartDateTime>
37
- <EndDateTime>2079-06-06T20:00:00</EndDateTime>
38
- <TimeZone>
39
- <PartnerKey xsi:nil="true" />
40
- <ID>5</ID>
41
- <ObjectID xsi:nil="true" />
42
- </TimeZone>
43
- </Object>
44
- <Task />
45
- </Result>
46
- </Results>
47
- <OverallStatus>OK</OverallStatus>
48
- <OverallStatusMessage />
49
- <RequestID>3b03417b-649e-4a1d-963d-05f42fc8f1b5</RequestID>
50
- </ScheduleResponseMsg>
51
- </soap:Body>
52
- </soap:Envelope>