mcdev 7.6.1 → 7.6.3
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/.github/ISSUE_TEMPLATE/bug.yml +2 -0
- package/.github/workflows/close_issues_on_merge.yml +1 -1
- package/.github/workflows/coverage-base-update.yml +2 -2
- package/.github/workflows/coverage.yml +1 -1
- package/.vscode/extensions.json +1 -0
- package/.vscode/settings.json +21 -1
- package/@types/lib/index.d.ts +15 -15
- package/@types/lib/index.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Asset.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Automation.d.ts +6 -0
- package/@types/lib/metadataTypes/Automation.d.ts.map +1 -1
- package/@types/lib/metadataTypes/DataExtract.d.ts +7 -0
- package/@types/lib/metadataTypes/DataExtract.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Event.d.ts.map +1 -1
- package/@types/lib/metadataTypes/FileLocation.d.ts +39 -5
- package/@types/lib/metadataTypes/FileLocation.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Journey.d.ts +13 -3
- package/@types/lib/metadataTypes/Journey.d.ts.map +1 -1
- package/@types/lib/metadataTypes/MetadataType.d.ts.map +1 -1
- package/@types/lib/metadataTypes/SendClassification.d.ts +7 -0
- package/@types/lib/metadataTypes/SendClassification.d.ts.map +1 -1
- package/@types/lib/metadataTypes/SenderProfile.d.ts +7 -0
- package/@types/lib/metadataTypes/SenderProfile.d.ts.map +1 -1
- package/@types/lib/metadataTypes/definitions/Automation.definition.d.ts +6 -0
- package/@types/lib/metadataTypes/definitions/FileLocation.definition.d.ts +24 -0
- package/@types/lib/util/cache.d.ts +1 -1
- package/@types/lib/util/cache.d.ts.map +1 -1
- package/@types/lib/util/config.d.ts.map +1 -1
- package/@types/lib/util/file.d.ts.map +1 -1
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/boilerplate/config.json +1 -0
- package/boilerplate/files/.vscode/extensions.json +1 -0
- package/boilerplate/forcedUpdates.json +4 -0
- package/lib/index.js +34 -17
- package/lib/metadataTypes/Asset.js +31 -8
- package/lib/metadataTypes/Automation.js +45 -25
- package/lib/metadataTypes/DataExtension.js +1 -1
- package/lib/metadataTypes/DataExtract.js +20 -0
- package/lib/metadataTypes/Event.js +20 -5
- package/lib/metadataTypes/FileLocation.js +43 -5
- package/lib/metadataTypes/Journey.js +176 -77
- package/lib/metadataTypes/MetadataType.js +22 -9
- package/lib/metadataTypes/SendClassification.js +20 -0
- package/lib/metadataTypes/SenderProfile.js +20 -0
- package/lib/metadataTypes/definitions/Automation.definition.js +6 -0
- package/lib/metadataTypes/definitions/FileLocation.definition.js +22 -2
- package/lib/util/cache.js +8 -3
- package/lib/util/config.js +6 -0
- package/lib/util/file.js +17 -14
- package/package.json +17 -18
- package/prepare-release.js +37 -0
- package/test/general.test.js +69 -6
- package/test/mockRoot/.mcdevrc.json +2 -1
- package/test/mockRoot/deploy/testInstance/testBU/journey/testExisting_journey_Multistep.journey-meta.json +418 -0
- package/test/mockRoot/deploy/testInstance/testBU/journey/testExisting_temail.journey-meta.json +212 -0
- package/test/mockRoot/deploy/testInstance/testBU/journey/testExisting_temail_notPublished.journey-meta.json +217 -0
- package/test/resourceFactory.js +12 -10
- package/test/resources/9999999/asset/build-templatebasedemail-expected.json +0 -1
- package/test/resources/9999999/asset/retrieve-templatebasedemail-expected.json +0 -1
- package/test/resources/9999999/asset/template-templatebasedemail-expected.json +0 -1
- package/test/resources/9999999/asset-deploy/block/testNew_asset_badExtension.bad-type-extension.json +39 -0
- package/test/resources/9999999/asset-deploy/block/testNew_asset_badName_bad.asset-block-meta.json +39 -0
- package/test/resources/9999999/dataExtract/patch-expected.json +3 -1
- package/test/resources/9999999/event/get-published-expected.json +30 -0
- package/test/resources/9999999/event/post_withExistingDE-callout-expected.json +211 -0
- package/test/resources/9999999/event/put-expected.json +12 -11
- package/test/resources/9999999/event-deploy/testNew_event_badExtension.bad-type-extension.json +200 -0
- package/test/resources/9999999/event-deploy/testNew_event_badName_bad.event-meta.json +200 -0
- package/test/resources/9999999/interaction/v1/eventDefinitions/key_DEAudience-2e3c73b6-48cc-2ec0-5522-48636e1a236e/get-response.json +39 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_journey_Multistep/put-response.json +461 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_temail/put-response.json +219 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_temail_notPublished/put-response.json +226 -0
- package/test/resources/9999999/journey/get-published-expected.json +217 -0
- package/test/resources/9999999/sendClassification/patch-expected.json +3 -1
- package/test/resources/9999999/senderProfile/patch-expected.json +12 -8
- package/test/resources/9999999/transactionalEmail/get-published-expected.json +20 -0
- package/test/type.dataExtract.test.js +1 -1
- package/test/type.event.test.js +3 -3
- package/test/type.journey.test.js +222 -13
- package/test/type.sendClassification.test.js +1 -1
- package/test/type.senderProfile.test.js +1 -1
- package/test/utils.js +5 -1
package/test/resources/9999999/interaction/v1/interactions/key_testExisting_temail/put-response.json
ADDED
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "dsfdsafdsa-922c-4568-85a5-e5cc77efc3be",
|
|
3
|
+
"key": "testExisting_temail",
|
|
4
|
+
"name": "testExisting_temail",
|
|
5
|
+
"lastPublishedDate": "0001-01-01T00:00:00",
|
|
6
|
+
"description": "",
|
|
7
|
+
"version": 1,
|
|
8
|
+
"workflowApiVersion": 1,
|
|
9
|
+
"createdDate": "2022-03-24T02:20:32.74",
|
|
10
|
+
"modifiedDate": "2022-03-24T02:20:40.45",
|
|
11
|
+
"activities": [
|
|
12
|
+
{
|
|
13
|
+
"id": "9606bcb0-9246-4610-9800-963bc77fc20a",
|
|
14
|
+
"key": "EMAILV2-4",
|
|
15
|
+
"name": "testExisting_temail",
|
|
16
|
+
"description": "",
|
|
17
|
+
"type": "EMAILV2",
|
|
18
|
+
"outcomes": [
|
|
19
|
+
{
|
|
20
|
+
"key": "1f44021a-74ac-49be-a07c-67862228214d",
|
|
21
|
+
"arguments": {},
|
|
22
|
+
"metaData": {
|
|
23
|
+
"invalid": false
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"arguments": {},
|
|
28
|
+
"configurationArguments": {
|
|
29
|
+
"applicationExtensionKey": "jb-email-activity",
|
|
30
|
+
"isModified": true,
|
|
31
|
+
"triggeredSend": {
|
|
32
|
+
"autoAddSubscribers": true,
|
|
33
|
+
"autoUpdateSubscribers": true,
|
|
34
|
+
"bccEmail": "",
|
|
35
|
+
"ccEmail": "",
|
|
36
|
+
"created": {},
|
|
37
|
+
"domainExclusions": [],
|
|
38
|
+
"dynamicEmailSubject": "test email",
|
|
39
|
+
"emailId": 531213,
|
|
40
|
+
"emailSubject": "test email",
|
|
41
|
+
"exclusionFilter": "",
|
|
42
|
+
"isSalesforceTracking": true,
|
|
43
|
+
"isMultipart": true,
|
|
44
|
+
"isSendLogging": false,
|
|
45
|
+
"isStoppedOnJobError": false,
|
|
46
|
+
"modified": {},
|
|
47
|
+
"preHeader": "",
|
|
48
|
+
"priority": 4,
|
|
49
|
+
"sendClassificationId": "95da425b-a06f-e611-96fe-38eaa7142c61",
|
|
50
|
+
"throttleOpens": "1/1/0001 12:00:00 AM",
|
|
51
|
+
"throttleCloses": "1/1/0001 12:00:00 AM",
|
|
52
|
+
"deliveryProfileId": "163f8417-13f7-e911-a2d8-1402ec938a35",
|
|
53
|
+
"senderProfileId": "a75d452b-7ef4-eb11-b82d-48df37d1da95",
|
|
54
|
+
"isTrackingClicks": true,
|
|
55
|
+
"publicationListId": 15
|
|
56
|
+
},
|
|
57
|
+
"triggeredSendId": "0a650d90-755e-ed11-b852-48df37d1df5b",
|
|
58
|
+
"triggeredSendKey": "testExisting_temail"
|
|
59
|
+
},
|
|
60
|
+
"metaData": {
|
|
61
|
+
"highThroughput": {
|
|
62
|
+
"definitionKey": "testExisting_temail",
|
|
63
|
+
"dataExtensionId": "21711373-72c1-ec11-b83b-48df37d1deb7"
|
|
64
|
+
},
|
|
65
|
+
"sections": {},
|
|
66
|
+
"isConfigured": true
|
|
67
|
+
},
|
|
68
|
+
"schema": {
|
|
69
|
+
"arguments": {
|
|
70
|
+
"requestID": {
|
|
71
|
+
"dataType": "Text",
|
|
72
|
+
"isNullable": true,
|
|
73
|
+
"direction": "Out",
|
|
74
|
+
"readOnly": false,
|
|
75
|
+
"access": "Hidden"
|
|
76
|
+
},
|
|
77
|
+
"messageKey": {
|
|
78
|
+
"dataType": "Text",
|
|
79
|
+
"isNullable": true,
|
|
80
|
+
"direction": "Out",
|
|
81
|
+
"readOnly": false,
|
|
82
|
+
"access": "Hidden"
|
|
83
|
+
},
|
|
84
|
+
"activityId": {
|
|
85
|
+
"dataType": "Text",
|
|
86
|
+
"isNullable": true,
|
|
87
|
+
"direction": "In",
|
|
88
|
+
"readOnly": false,
|
|
89
|
+
"access": "Hidden"
|
|
90
|
+
},
|
|
91
|
+
"definitionId": {
|
|
92
|
+
"dataType": "Text",
|
|
93
|
+
"isNullable": true,
|
|
94
|
+
"direction": "In",
|
|
95
|
+
"readOnly": true,
|
|
96
|
+
"access": "Hidden"
|
|
97
|
+
},
|
|
98
|
+
"emailSubjectDataBound": {
|
|
99
|
+
"dataType": "Text",
|
|
100
|
+
"isNullable": true,
|
|
101
|
+
"direction": "In",
|
|
102
|
+
"readOnly": true,
|
|
103
|
+
"access": "Hidden"
|
|
104
|
+
},
|
|
105
|
+
"contactId": {
|
|
106
|
+
"dataType": "Number",
|
|
107
|
+
"isNullable": true,
|
|
108
|
+
"direction": "In",
|
|
109
|
+
"readOnly": false,
|
|
110
|
+
"access": "Hidden"
|
|
111
|
+
},
|
|
112
|
+
"contactKey": {
|
|
113
|
+
"dataType": "Text",
|
|
114
|
+
"isNullable": false,
|
|
115
|
+
"direction": "In",
|
|
116
|
+
"readOnly": false,
|
|
117
|
+
"access": "Hidden"
|
|
118
|
+
},
|
|
119
|
+
"emailAddress": {
|
|
120
|
+
"dataType": "Text",
|
|
121
|
+
"isNullable": false,
|
|
122
|
+
"direction": "In",
|
|
123
|
+
"readOnly": false,
|
|
124
|
+
"access": "Hidden"
|
|
125
|
+
},
|
|
126
|
+
"sourceCustomObjectId": {
|
|
127
|
+
"dataType": "Text",
|
|
128
|
+
"isNullable": true,
|
|
129
|
+
"direction": "In",
|
|
130
|
+
"readOnly": false,
|
|
131
|
+
"access": "Hidden"
|
|
132
|
+
},
|
|
133
|
+
"sourceCustomObjectKey": {
|
|
134
|
+
"dataType": "LongNumber",
|
|
135
|
+
"isNullable": true,
|
|
136
|
+
"direction": "In",
|
|
137
|
+
"readOnly": false,
|
|
138
|
+
"access": "Hidden"
|
|
139
|
+
},
|
|
140
|
+
"fieldType": {
|
|
141
|
+
"dataType": "Text",
|
|
142
|
+
"isNullable": true,
|
|
143
|
+
"direction": "In",
|
|
144
|
+
"readOnly": false,
|
|
145
|
+
"access": "Hidden"
|
|
146
|
+
},
|
|
147
|
+
"eventData": {
|
|
148
|
+
"dataType": "Text",
|
|
149
|
+
"isNullable": true,
|
|
150
|
+
"direction": "In",
|
|
151
|
+
"readOnly": false,
|
|
152
|
+
"access": "Hidden"
|
|
153
|
+
},
|
|
154
|
+
"obfuscationProperties": {
|
|
155
|
+
"dataType": "Text",
|
|
156
|
+
"isNullable": true,
|
|
157
|
+
"direction": "In",
|
|
158
|
+
"readOnly": false,
|
|
159
|
+
"access": "Hidden"
|
|
160
|
+
},
|
|
161
|
+
"customObjectKey": {
|
|
162
|
+
"dataType": "LongNumber",
|
|
163
|
+
"isNullable": true,
|
|
164
|
+
"direction": "In",
|
|
165
|
+
"readOnly": true,
|
|
166
|
+
"access": "Hidden"
|
|
167
|
+
},
|
|
168
|
+
"definitionInstanceId": {
|
|
169
|
+
"dataType": "Text",
|
|
170
|
+
"isNullable": false,
|
|
171
|
+
"direction": "In",
|
|
172
|
+
"readOnly": false,
|
|
173
|
+
"access": "Hidden"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"triggers": [
|
|
180
|
+
{
|
|
181
|
+
"key": "TRIGGER",
|
|
182
|
+
"name": "TRIGGER",
|
|
183
|
+
"description": "",
|
|
184
|
+
"type": "transactional-api",
|
|
185
|
+
"outcomes": [],
|
|
186
|
+
"arguments": {},
|
|
187
|
+
"configurationArguments": {},
|
|
188
|
+
"metaData": {
|
|
189
|
+
"chainType": "none",
|
|
190
|
+
"configurationRequired": false,
|
|
191
|
+
"iconUrl": "/images/icon_journeyBuilder-event-transactional-blue.svg",
|
|
192
|
+
"title": "Transactional API Event",
|
|
193
|
+
"category": "Transactional",
|
|
194
|
+
"entrySourceGroupConfigUrl": "null"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"goals": [],
|
|
199
|
+
"exits": [],
|
|
200
|
+
"notifiers": [],
|
|
201
|
+
"entryMode": "MultipleEntries",
|
|
202
|
+
"definitionType": "Transactional",
|
|
203
|
+
"channel": "email",
|
|
204
|
+
"defaults": {
|
|
205
|
+
"properties": {
|
|
206
|
+
"analyticsTracking": {
|
|
207
|
+
"enabled": false,
|
|
208
|
+
"analyticsType": "google",
|
|
209
|
+
"urlDomainsToTrack": []
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"metaData": {},
|
|
214
|
+
"executionMode": "Production",
|
|
215
|
+
"categoryId": 6298,
|
|
216
|
+
"status": "Published",
|
|
217
|
+
"scheduledStatus": "Draft",
|
|
218
|
+
"definitionId": "dsfdsafdsa-922c-4568-85a5-e5cc77efc3be"
|
|
219
|
+
}
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "d4a900fe-3a8f-4cc5-9a49-81286e3e2cd2",
|
|
3
|
+
"key": "testExisting_temail_notPublished",
|
|
4
|
+
"name": "testExisting_temail_notPublished",
|
|
5
|
+
"lastPublishedDate": "0001-01-01T00:00:00",
|
|
6
|
+
"description": "",
|
|
7
|
+
"version": 1,
|
|
8
|
+
"workflowApiVersion": 1,
|
|
9
|
+
"createdDate": "2024-08-23T01:29:33.233",
|
|
10
|
+
"modifiedDate": "2024-08-23T02:00:44.57",
|
|
11
|
+
"activities": [
|
|
12
|
+
{
|
|
13
|
+
"id": "4ae63473-ea1e-4963-a257-6fea45a9038a",
|
|
14
|
+
"key": "EMAILV2-3",
|
|
15
|
+
"name": "my email activity",
|
|
16
|
+
"description": "",
|
|
17
|
+
"type": "EMAILV2",
|
|
18
|
+
"outcomes": [
|
|
19
|
+
{
|
|
20
|
+
"key": "067f20ba-af36-4401-99d8-934100e1935d",
|
|
21
|
+
"arguments": {},
|
|
22
|
+
"metaData": {
|
|
23
|
+
"invalid": false
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"arguments": {},
|
|
28
|
+
"configurationArguments": {
|
|
29
|
+
"applicationExtensionKey": "jb-email-activity",
|
|
30
|
+
"isModified": true,
|
|
31
|
+
"triggeredSend": {
|
|
32
|
+
"autoAddSubscribers": true,
|
|
33
|
+
"autoUpdateSubscribers": true,
|
|
34
|
+
"bccEmail": "",
|
|
35
|
+
"ccEmail": "",
|
|
36
|
+
"created": {},
|
|
37
|
+
"domainExclusions": [],
|
|
38
|
+
"dynamicEmailSubject": "%%=treatascontent(@subject)=%%",
|
|
39
|
+
"emailId": 531213,
|
|
40
|
+
"emailSubject": "%%=treatascontent(@subject)=%%",
|
|
41
|
+
"exclusionFilter": "",
|
|
42
|
+
"isSalesforceTracking": true,
|
|
43
|
+
"isMultipart": true,
|
|
44
|
+
"isSendLogging": false,
|
|
45
|
+
"isStoppedOnJobError": false,
|
|
46
|
+
"modified": {},
|
|
47
|
+
"preHeader": "%%=treatascontent(@preheader)=%%\n",
|
|
48
|
+
"priority": 4,
|
|
49
|
+
"sendClassificationId": "95da425b-a06f-e611-96fe-38eaa7142c61",
|
|
50
|
+
"throttleOpens": "1/1/0001 12:00:00 AM",
|
|
51
|
+
"throttleCloses": "1/1/0001 12:00:00 AM",
|
|
52
|
+
"deliveryProfileId": "163f8417-13f7-e911-a2d8-1402ec938a35",
|
|
53
|
+
"senderProfileId": "a75d452b-7ef4-eb11-b82d-48df37d1da95",
|
|
54
|
+
"isTrackingClicks": true,
|
|
55
|
+
"publicationListId": 15
|
|
56
|
+
},
|
|
57
|
+
"triggeredSendId": "6a2f70c5-2561-ef11-b876-f40343c95928",
|
|
58
|
+
"triggeredSendKey": "testExisting_temail_notPublished"
|
|
59
|
+
},
|
|
60
|
+
"metaData": {
|
|
61
|
+
"highThroughput": {
|
|
62
|
+
"definitionKey": "testExisting_temail_notPublished",
|
|
63
|
+
"dataExtensionId": "3c3a54a5-d55f-ef11-b876-f40343c95928"
|
|
64
|
+
},
|
|
65
|
+
"isConfigured": true,
|
|
66
|
+
"sections": {}
|
|
67
|
+
},
|
|
68
|
+
"schema": {
|
|
69
|
+
"arguments": {
|
|
70
|
+
"requestID": {
|
|
71
|
+
"dataType": "Text",
|
|
72
|
+
"isNullable": true,
|
|
73
|
+
"direction": "Out",
|
|
74
|
+
"readOnly": false,
|
|
75
|
+
"access": "Hidden"
|
|
76
|
+
},
|
|
77
|
+
"messageKey": {
|
|
78
|
+
"dataType": "Text",
|
|
79
|
+
"isNullable": true,
|
|
80
|
+
"direction": "Out",
|
|
81
|
+
"readOnly": false,
|
|
82
|
+
"access": "Hidden"
|
|
83
|
+
},
|
|
84
|
+
"activityId": {
|
|
85
|
+
"dataType": "Text",
|
|
86
|
+
"isNullable": true,
|
|
87
|
+
"direction": "In",
|
|
88
|
+
"readOnly": false,
|
|
89
|
+
"access": "Hidden"
|
|
90
|
+
},
|
|
91
|
+
"definitionId": {
|
|
92
|
+
"dataType": "Text",
|
|
93
|
+
"isNullable": true,
|
|
94
|
+
"direction": "In",
|
|
95
|
+
"readOnly": true,
|
|
96
|
+
"access": "Hidden"
|
|
97
|
+
},
|
|
98
|
+
"emailSubjectDataBound": {
|
|
99
|
+
"dataType": "Text",
|
|
100
|
+
"isNullable": true,
|
|
101
|
+
"direction": "In",
|
|
102
|
+
"readOnly": true,
|
|
103
|
+
"access": "Hidden"
|
|
104
|
+
},
|
|
105
|
+
"contactId": {
|
|
106
|
+
"dataType": "Number",
|
|
107
|
+
"isNullable": true,
|
|
108
|
+
"direction": "In",
|
|
109
|
+
"readOnly": false,
|
|
110
|
+
"access": "Hidden"
|
|
111
|
+
},
|
|
112
|
+
"contactKey": {
|
|
113
|
+
"dataType": "Text",
|
|
114
|
+
"isNullable": false,
|
|
115
|
+
"direction": "In",
|
|
116
|
+
"readOnly": false,
|
|
117
|
+
"access": "Hidden"
|
|
118
|
+
},
|
|
119
|
+
"emailAddress": {
|
|
120
|
+
"dataType": "Text",
|
|
121
|
+
"isNullable": false,
|
|
122
|
+
"direction": "In",
|
|
123
|
+
"readOnly": false,
|
|
124
|
+
"access": "Hidden"
|
|
125
|
+
},
|
|
126
|
+
"sourceCustomObjectId": {
|
|
127
|
+
"dataType": "Text",
|
|
128
|
+
"isNullable": true,
|
|
129
|
+
"direction": "In",
|
|
130
|
+
"readOnly": false,
|
|
131
|
+
"access": "Hidden"
|
|
132
|
+
},
|
|
133
|
+
"sourceCustomObjectKey": {
|
|
134
|
+
"dataType": "LongNumber",
|
|
135
|
+
"isNullable": true,
|
|
136
|
+
"direction": "In",
|
|
137
|
+
"readOnly": false,
|
|
138
|
+
"access": "Hidden"
|
|
139
|
+
},
|
|
140
|
+
"fieldType": {
|
|
141
|
+
"dataType": "Text",
|
|
142
|
+
"isNullable": true,
|
|
143
|
+
"direction": "In",
|
|
144
|
+
"readOnly": false,
|
|
145
|
+
"access": "Hidden"
|
|
146
|
+
},
|
|
147
|
+
"eventData": {
|
|
148
|
+
"dataType": "Text",
|
|
149
|
+
"isNullable": true,
|
|
150
|
+
"direction": "In",
|
|
151
|
+
"readOnly": false,
|
|
152
|
+
"access": "Hidden"
|
|
153
|
+
},
|
|
154
|
+
"obfuscationProperties": {
|
|
155
|
+
"dataType": "Text",
|
|
156
|
+
"isNullable": true,
|
|
157
|
+
"direction": "In",
|
|
158
|
+
"readOnly": false,
|
|
159
|
+
"access": "Hidden"
|
|
160
|
+
},
|
|
161
|
+
"customObjectKey": {
|
|
162
|
+
"dataType": "LongNumber",
|
|
163
|
+
"isNullable": true,
|
|
164
|
+
"direction": "In",
|
|
165
|
+
"readOnly": true,
|
|
166
|
+
"access": "Hidden"
|
|
167
|
+
},
|
|
168
|
+
"definitionInstanceId": {
|
|
169
|
+
"dataType": "Text",
|
|
170
|
+
"isNullable": false,
|
|
171
|
+
"direction": "In",
|
|
172
|
+
"readOnly": false,
|
|
173
|
+
"access": "Hidden"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"triggers": [
|
|
180
|
+
{
|
|
181
|
+
"id": "64a93832-fd23-487e-b585-8f3af3b5b6eb",
|
|
182
|
+
"key": "TRIGGER",
|
|
183
|
+
"name": "TRIGGER",
|
|
184
|
+
"description": "",
|
|
185
|
+
"type": "transactional-api",
|
|
186
|
+
"outcomes": [],
|
|
187
|
+
"arguments": {},
|
|
188
|
+
"configurationArguments": {},
|
|
189
|
+
"metaData": {
|
|
190
|
+
"chainType": "none",
|
|
191
|
+
"configurationRequired": false,
|
|
192
|
+
"iconUrl": "/images/icon_journeyBuilder-event-transactional-blue.svg",
|
|
193
|
+
"title": "Transactional API Event",
|
|
194
|
+
"category": "Transactional",
|
|
195
|
+
"entrySourceGroupConfigUrl": "null"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"goals": [],
|
|
200
|
+
"exits": [],
|
|
201
|
+
"notifiers": [],
|
|
202
|
+
"stats": {
|
|
203
|
+
"currentPopulation": 0,
|
|
204
|
+
"cumulativePopulation": 0,
|
|
205
|
+
"metGoal": 0,
|
|
206
|
+
"metExitCriteria": 0,
|
|
207
|
+
"goalPerformance": 0
|
|
208
|
+
},
|
|
209
|
+
"entryMode": "MultipleEntries",
|
|
210
|
+
"definitionType": "Transactional",
|
|
211
|
+
"channel": "email",
|
|
212
|
+
"defaults": {
|
|
213
|
+
"properties": {}
|
|
214
|
+
},
|
|
215
|
+
"metaData": {
|
|
216
|
+
"dataSource": "ContactsModel",
|
|
217
|
+
"highThroughputSending": {
|
|
218
|
+
"email": false
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"executionMode": "Production",
|
|
222
|
+
"categoryId": 6298,
|
|
223
|
+
"status": "Draft",
|
|
224
|
+
"definitionId": "d4a900fe-3a8f-4cc5-9a49-81286e3e2cd2",
|
|
225
|
+
"scheduledStatus": "Draft"
|
|
226
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activities": [
|
|
3
|
+
{
|
|
4
|
+
"arguments": {},
|
|
5
|
+
"configurationArguments": {
|
|
6
|
+
"applicationExtensionKey": "jb-email-activity",
|
|
7
|
+
"isModified": true,
|
|
8
|
+
"r__transactionalEmail_key": "testExisting_temail_notPublished",
|
|
9
|
+
"triggeredSend": {
|
|
10
|
+
"autoAddSubscribers": true,
|
|
11
|
+
"autoUpdateSubscribers": true,
|
|
12
|
+
"bccEmail": [],
|
|
13
|
+
"c__priority": "Medium",
|
|
14
|
+
"ccEmail": [],
|
|
15
|
+
"created": {},
|
|
16
|
+
"domainExclusions": [],
|
|
17
|
+
"dynamicEmailSubject": "%%=treatascontent(@subject)=%%",
|
|
18
|
+
"emailSubject": "%%=treatascontent(@subject)=%%",
|
|
19
|
+
"exclusionFilter": "",
|
|
20
|
+
"isMultipart": true,
|
|
21
|
+
"isSalesforceTracking": true,
|
|
22
|
+
"isSendLogging": false,
|
|
23
|
+
"isStoppedOnJobError": false,
|
|
24
|
+
"isTrackingClicks": true,
|
|
25
|
+
"modified": {},
|
|
26
|
+
"preHeader": "%%=treatascontent(@preheader)=%%\n",
|
|
27
|
+
"r__asset_key": "testExisting_asset_message",
|
|
28
|
+
"r__asset_name_readOnly": "testExisting_asset_message",
|
|
29
|
+
"r__deliveryProfile_key": "Default",
|
|
30
|
+
"r__list_PathName": {
|
|
31
|
+
"publicationList": "my subscribers/All Subscribers"
|
|
32
|
+
},
|
|
33
|
+
"r__sendClassification_key": "Default Transactional",
|
|
34
|
+
"r__senderProfile_key": "Default",
|
|
35
|
+
"throttleCloses": "1/1/0001 12:00:00 AM",
|
|
36
|
+
"throttleOpens": "1/1/0001 12:00:00 AM"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"description": "",
|
|
40
|
+
"id": "4ae63473-ea1e-4963-a257-6fea45a9038a",
|
|
41
|
+
"key": "EMAILV2-3",
|
|
42
|
+
"metaData": {
|
|
43
|
+
"highThroughput": {
|
|
44
|
+
"r__dataExtension_key": "testExisting_temail_notPublished"
|
|
45
|
+
},
|
|
46
|
+
"isConfigured": true,
|
|
47
|
+
"sections": {}
|
|
48
|
+
},
|
|
49
|
+
"name": "my email activity",
|
|
50
|
+
"outcomes": [
|
|
51
|
+
{
|
|
52
|
+
"arguments": {},
|
|
53
|
+
"key": "067f20ba-af36-4401-99d8-934100e1935d",
|
|
54
|
+
"metaData": {
|
|
55
|
+
"invalid": false
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"schema": {
|
|
60
|
+
"arguments": {
|
|
61
|
+
"activityId": {
|
|
62
|
+
"access": "Hidden",
|
|
63
|
+
"dataType": "Text",
|
|
64
|
+
"direction": "In",
|
|
65
|
+
"isNullable": true,
|
|
66
|
+
"readOnly": false
|
|
67
|
+
},
|
|
68
|
+
"contactId": {
|
|
69
|
+
"access": "Hidden",
|
|
70
|
+
"dataType": "Number",
|
|
71
|
+
"direction": "In",
|
|
72
|
+
"isNullable": true,
|
|
73
|
+
"readOnly": false
|
|
74
|
+
},
|
|
75
|
+
"contactKey": {
|
|
76
|
+
"access": "Hidden",
|
|
77
|
+
"dataType": "Text",
|
|
78
|
+
"direction": "In",
|
|
79
|
+
"isNullable": false,
|
|
80
|
+
"readOnly": false
|
|
81
|
+
},
|
|
82
|
+
"customObjectKey": {
|
|
83
|
+
"access": "Hidden",
|
|
84
|
+
"dataType": "LongNumber",
|
|
85
|
+
"direction": "In",
|
|
86
|
+
"isNullable": true,
|
|
87
|
+
"readOnly": true
|
|
88
|
+
},
|
|
89
|
+
"definitionId": {
|
|
90
|
+
"access": "Hidden",
|
|
91
|
+
"dataType": "Text",
|
|
92
|
+
"direction": "In",
|
|
93
|
+
"isNullable": true,
|
|
94
|
+
"readOnly": true
|
|
95
|
+
},
|
|
96
|
+
"definitionInstanceId": {
|
|
97
|
+
"access": "Hidden",
|
|
98
|
+
"dataType": "Text",
|
|
99
|
+
"direction": "In",
|
|
100
|
+
"isNullable": false,
|
|
101
|
+
"readOnly": false
|
|
102
|
+
},
|
|
103
|
+
"emailAddress": {
|
|
104
|
+
"access": "Hidden",
|
|
105
|
+
"dataType": "Text",
|
|
106
|
+
"direction": "In",
|
|
107
|
+
"isNullable": false,
|
|
108
|
+
"readOnly": false
|
|
109
|
+
},
|
|
110
|
+
"emailSubjectDataBound": {
|
|
111
|
+
"access": "Hidden",
|
|
112
|
+
"dataType": "Text",
|
|
113
|
+
"direction": "In",
|
|
114
|
+
"isNullable": true,
|
|
115
|
+
"readOnly": true
|
|
116
|
+
},
|
|
117
|
+
"eventData": {
|
|
118
|
+
"access": "Hidden",
|
|
119
|
+
"dataType": "Text",
|
|
120
|
+
"direction": "In",
|
|
121
|
+
"isNullable": true,
|
|
122
|
+
"readOnly": false
|
|
123
|
+
},
|
|
124
|
+
"fieldType": {
|
|
125
|
+
"access": "Hidden",
|
|
126
|
+
"dataType": "Text",
|
|
127
|
+
"direction": "In",
|
|
128
|
+
"isNullable": true,
|
|
129
|
+
"readOnly": false
|
|
130
|
+
},
|
|
131
|
+
"messageKey": {
|
|
132
|
+
"access": "Hidden",
|
|
133
|
+
"dataType": "Text",
|
|
134
|
+
"direction": "Out",
|
|
135
|
+
"isNullable": true,
|
|
136
|
+
"readOnly": false
|
|
137
|
+
},
|
|
138
|
+
"obfuscationProperties": {
|
|
139
|
+
"access": "Hidden",
|
|
140
|
+
"dataType": "Text",
|
|
141
|
+
"direction": "In",
|
|
142
|
+
"isNullable": true,
|
|
143
|
+
"readOnly": false
|
|
144
|
+
},
|
|
145
|
+
"requestID": {
|
|
146
|
+
"access": "Hidden",
|
|
147
|
+
"dataType": "Text",
|
|
148
|
+
"direction": "Out",
|
|
149
|
+
"isNullable": true,
|
|
150
|
+
"readOnly": false
|
|
151
|
+
},
|
|
152
|
+
"sourceCustomObjectId": {
|
|
153
|
+
"access": "Hidden",
|
|
154
|
+
"dataType": "Text",
|
|
155
|
+
"direction": "In",
|
|
156
|
+
"isNullable": true,
|
|
157
|
+
"readOnly": false
|
|
158
|
+
},
|
|
159
|
+
"sourceCustomObjectKey": {
|
|
160
|
+
"access": "Hidden",
|
|
161
|
+
"dataType": "LongNumber",
|
|
162
|
+
"direction": "In",
|
|
163
|
+
"isNullable": true,
|
|
164
|
+
"readOnly": false
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"type": "EMAILV2"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"channel": "email",
|
|
172
|
+
"createdDate": "2024-08-23T01:29:33.233",
|
|
173
|
+
"defaults": {
|
|
174
|
+
"properties": {}
|
|
175
|
+
},
|
|
176
|
+
"definitionType": "Transactional",
|
|
177
|
+
"description": "",
|
|
178
|
+
"entryMode": "MultipleEntries",
|
|
179
|
+
"executionMode": "Production",
|
|
180
|
+
"exits": [],
|
|
181
|
+
"goals": [],
|
|
182
|
+
"key": "testExisting_temail_notPublished",
|
|
183
|
+
"lastPublishedDate": "0001-01-01T00:00:00",
|
|
184
|
+
"metaData": {
|
|
185
|
+
"dataSource": "ContactsModel",
|
|
186
|
+
"highThroughputSending": {
|
|
187
|
+
"email": false
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"modifiedDate": "2024-08-23T02:00:44.57",
|
|
191
|
+
"name": "testExisting_temail_notPublished",
|
|
192
|
+
"notifiers": [],
|
|
193
|
+
"r__folder_Path": "my journeys",
|
|
194
|
+
"scheduledStatus": "Draft",
|
|
195
|
+
"status": "Published",
|
|
196
|
+
"triggers": [
|
|
197
|
+
{
|
|
198
|
+
"arguments": {},
|
|
199
|
+
"configurationArguments": {},
|
|
200
|
+
"description": "",
|
|
201
|
+
"key": "TRIGGER",
|
|
202
|
+
"metaData": {
|
|
203
|
+
"category": "Transactional",
|
|
204
|
+
"chainType": "none",
|
|
205
|
+
"configurationRequired": false,
|
|
206
|
+
"entrySourceGroupConfigUrl": "null",
|
|
207
|
+
"iconUrl": "/images/icon_journeyBuilder-event-transactional-blue.svg",
|
|
208
|
+
"title": "Transactional API Event"
|
|
209
|
+
},
|
|
210
|
+
"name": "TRIGGER",
|
|
211
|
+
"outcomes": [],
|
|
212
|
+
"type": "transactional-api"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"version": 1,
|
|
216
|
+
"workflowApiVersion": 1
|
|
217
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
+
"CreatedDate": "2016-08-31T11:29:00",
|
|
3
|
+
"ModifiedDate": "2024-04-15T15:33:00",
|
|
2
4
|
"CustomerKey": "testExisting_sendClassification",
|
|
3
5
|
"Name": "testExisting_sendClassification",
|
|
4
|
-
"Description": "
|
|
6
|
+
"Description": "",
|
|
5
7
|
"c__classification": "Commercial",
|
|
6
8
|
"r__senderProfile_key": "testExisting_senderProfile",
|
|
7
9
|
"r__deliveryProfile_key": "Default"
|