mcdev 8.2.1 → 8.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug.yml +1 -0
- package/.github/workflows/code-test.yml +1 -1
- package/.github/workflows/coverage-base-update.yml +1 -1
- package/.github/workflows/coverage-develop-branch.yml +1 -1
- package/.github/workflows/coverage-main-branch.yml +1 -1
- package/.github/workflows/coverage.yml +1 -1
- package/.github/workflows/npm-publish.yml +9 -5
- package/@types/lib/MetadataTypeDefinitions.d.ts +4 -0
- package/@types/lib/MetadataTypeDefinitions.d.ts.map +1 -1
- package/@types/lib/MetadataTypeInfo.d.ts +4 -0
- package/@types/lib/MetadataTypeInfo.d.ts.map +1 -1
- package/@types/lib/Retriever.d.ts.map +1 -1
- package/@types/lib/index.d.ts +20 -9
- package/@types/lib/index.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Asset.d.ts +3 -3
- package/@types/lib/metadataTypes/Asset.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Automation.d.ts +7 -7
- package/@types/lib/metadataTypes/Automation.d.ts.map +1 -1
- package/@types/lib/metadataTypes/DataExtension.d.ts +9 -9
- package/@types/lib/metadataTypes/DataExtension.d.ts.map +1 -1
- package/@types/lib/metadataTypes/DataExtensionField.d.ts +7 -0
- package/@types/lib/metadataTypes/DataExtensionField.d.ts.map +1 -1
- package/@types/lib/metadataTypes/DataFilter.d.ts +326 -0
- package/@types/lib/metadataTypes/DataFilter.d.ts.map +1 -0
- package/@types/lib/metadataTypes/DataFilterHidden.d.ts +164 -0
- package/@types/lib/metadataTypes/DataFilterHidden.d.ts.map +1 -0
- package/@types/lib/metadataTypes/Filter.d.ts +181 -6
- package/@types/lib/metadataTypes/Filter.d.ts.map +1 -1
- package/@types/lib/metadataTypes/FilterDefinition.d.ts +318 -0
- package/@types/lib/metadataTypes/FilterDefinition.d.ts.map +1 -0
- package/@types/lib/metadataTypes/FilterDefinitionHidden.d.ts +156 -0
- package/@types/lib/metadataTypes/FilterDefinitionHidden.d.ts.map +1 -0
- package/@types/lib/metadataTypes/ImportFile.d.ts.map +1 -1
- package/@types/lib/metadataTypes/Journey.d.ts +18 -0
- package/@types/lib/metadataTypes/Journey.d.ts.map +1 -1
- package/@types/lib/metadataTypes/MobileKeyword.d.ts +2 -2
- package/@types/lib/metadataTypes/MobileKeyword.d.ts.map +1 -1
- package/@types/lib/metadataTypes/User.d.ts +1 -1
- package/@types/lib/metadataTypes/User.d.ts.map +1 -1
- package/@types/lib/metadataTypes/definitions/DataFilter.definition.d.ts +230 -0
- package/@types/lib/metadataTypes/definitions/DataFilter.definition.d.ts.map +1 -0
- package/@types/lib/metadataTypes/definitions/DataFilterHidden.definition.d.ts +230 -0
- package/@types/lib/metadataTypes/definitions/DataFilterHidden.definition.d.ts.map +1 -0
- package/@types/lib/metadataTypes/definitions/Filter.definition.d.ts +203 -31
- package/@types/lib/metadataTypes/definitions/FilterDefinition.definition.d.ts +218 -0
- package/@types/lib/metadataTypes/definitions/FilterDefinition.definition.d.ts.map +1 -0
- package/@types/lib/metadataTypes/definitions/FilterDefinitionHidden.definition.d.ts +218 -0
- package/@types/lib/metadataTypes/definitions/FilterDefinitionHidden.definition.d.ts.map +1 -0
- package/@types/lib/metadataTypes/definitions/Journey.definition.d.ts +18 -0
- package/@types/lib/util/devops.d.ts +1 -0
- package/@types/lib/util/devops.d.ts.map +1 -1
- package/@types/lib/util/replaceContentBlockReference.d.ts +3 -3
- package/@types/lib/util/replaceContentBlockReference.d.ts.map +1 -1
- package/@types/lib/util/util.d.ts.map +1 -1
- package/@types/lib/util/validations.d.ts.map +1 -1
- package/@types/types/mcdev.d.d.ts +296 -0
- package/@types/types/mcdev.d.d.ts.map +1 -1
- package/lib/MetadataTypeDefinitions.js +4 -0
- package/lib/MetadataTypeInfo.js +4 -0
- package/lib/Retriever.js +3 -0
- package/lib/index.js +87 -3
- package/lib/metadataTypes/DataExtensionField.js +21 -0
- package/lib/metadataTypes/DataFilter.js +653 -0
- package/lib/metadataTypes/DataFilterHidden.js +18 -0
- package/lib/metadataTypes/Filter.js +315 -1
- package/lib/metadataTypes/ImportFile.js +11 -1
- package/lib/metadataTypes/Journey.js +111 -7
- package/lib/metadataTypes/definitions/Automation.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataFilter.definition.js +168 -0
- package/lib/metadataTypes/definitions/DataFilterHidden.definition.js +169 -0
- package/lib/metadataTypes/definitions/Filter.definition.js +136 -22
- package/lib/metadataTypes/definitions/Journey.definition.js +20 -1
- package/lib/util/devops.js +14 -4
- package/lib/util/util.js +7 -2
- package/lib/util/validations.js +7 -1
- package/package.json +10 -10
- package/test/general.test.js +17 -19
- package/test/mockRoot/.mcdevrc.json +4 -1
- package/test/mockRoot/deploy/testInstance/testBU/dataFilter/testExisting_dataFilter.dataFilter-meta.json +19 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataFilter/testNew_dataFilter.dataFilter-meta.json +19 -0
- package/test/mockRoot/deploy/testInstance/testBU/filter/testExisting_filter.filter-meta.json +10 -0
- package/test/mockRoot/deploy/testInstance/testBU/filter/testNew_filter.filter-meta.json +11 -0
- package/test/mockRoot/deploy/testInstance/testBU/journey/testExisting_journey_updatecontact.journey-meta.json +108 -0
- package/test/resources/9999999/automation/v1/filters/a0f1a1bc-4ea1-44b3-8fe1-ce40ef35c1c0/patch-response.json +18 -0
- package/test/resources/9999999/automation/v1/filters/f018f237-f7ef-40b0-afc8-39ea2e5dcca4/delete-response.txt +0 -0
- package/test/resources/9999999/automation/v1/filters/f018f237-f7ef-40b0-afc8-39ea2e5dcca4/get-response.json +15 -0
- package/test/resources/9999999/automation/v1/filters/f018f237-f7ef-40b0-afc8-39ea2e5dcca4/patch-response.json +15 -0
- package/test/resources/9999999/automation/v1/filters/get-response.json +22 -0
- package/test/resources/9999999/dataFilter/build-expected.json +19 -0
- package/test/resources/9999999/dataFilter/get-expected.json +23 -0
- package/test/resources/9999999/dataFilter/patch-expected.json +20 -0
- package/test/resources/9999999/dataFilter/post-expected.json +20 -0
- package/test/resources/9999999/dataFilter/template-expected.json +19 -0
- package/test/resources/9999999/dataFolder/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 +765 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentTypeINfilteractivity,hidden-response.xml +139 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentTypeINfilterdefinition,hidden-response.xml +116 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/10ef27dd-4be8-4bf6-970a-8acf8e281e55/delete-response.txt +1 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/10ef27dd-4be8-4bf6-970a-8acf8e281e55/get-response.json +19 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/10ef27dd-4be8-4bf6-970a-8acf8e281e55/patch-response.json +15 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/category/5318/get-response.json +27 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/category/8502/get-response.json +7 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/category/8503/get-response.json +7 -0
- package/test/resources/9999999/email/v1/filters/filterdefinition/post-response.json +15 -0
- package/test/resources/9999999/filter/build-expected.json +10 -0
- package/test/resources/9999999/filter/get-expected.json +11 -0
- package/test/resources/9999999/filter/patch-expected.json +11 -0
- package/test/resources/9999999/filter/post-expected.json +11 -0
- package/test/resources/9999999/filter/template-expected.json +10 -0
- package/test/resources/9999999/filterActivity/create-response.xml +46 -0
- package/test/resources/9999999/filterActivity/retrieve-CustomerKey=testExisting_filter-response.xml +30 -0
- package/test/resources/9999999/filterDefinition/retrieve-CustomerKey=testExisting_dataFilter-response.xml +30 -0
- package/test/resources/9999999/interaction/v1/interactions/get-response.json +45 -3
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_journey_updatecontact/get-response.json +119 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_journey_updatecontact/put-response.json +106 -0
- package/test/resources/9999999/journey/get-updatecontact-expected.json +108 -0
- package/test/resources/9999999/journey/put-updatecontact-expected.json +108 -0
- package/test/type.automation.test.js +14 -14
- package/test/type.dataFilter.test.js +174 -0
- package/test/type.filter.test.js +170 -0
- package/test/type.journey.test.js +59 -7
- package/test/type.query.test.js +2 -2
- package/test/utils.js +8 -0
- package/types/mcdev.d.js +101 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
let bodyIteratorField: string;
|
|
3
|
+
let dependencies: string[];
|
|
4
|
+
namespace dependencyGraph {
|
|
5
|
+
let dataExtension: string[];
|
|
6
|
+
}
|
|
7
|
+
let filter: {};
|
|
8
|
+
let hasExtended: boolean;
|
|
9
|
+
let idField: string;
|
|
10
|
+
let keyField: string;
|
|
11
|
+
let nameField: string;
|
|
12
|
+
let folderType: string;
|
|
13
|
+
let folderIdField: string;
|
|
14
|
+
let createdDateField: string;
|
|
15
|
+
let createdNameField: string;
|
|
16
|
+
let lastmodDateField: string;
|
|
17
|
+
let lastmodNameField: string;
|
|
18
|
+
let restPagination: boolean;
|
|
19
|
+
let restPageSize: number;
|
|
20
|
+
let type: string;
|
|
21
|
+
let soapType: string;
|
|
22
|
+
let typeDescription: string;
|
|
23
|
+
let typeRetrieveByDefault: boolean;
|
|
24
|
+
let typeName: string;
|
|
25
|
+
namespace fields {
|
|
26
|
+
namespace id {
|
|
27
|
+
let isCreateable: boolean;
|
|
28
|
+
let isUpdateable: boolean;
|
|
29
|
+
let retrieving: boolean;
|
|
30
|
+
let template: boolean;
|
|
31
|
+
}
|
|
32
|
+
namespace key {
|
|
33
|
+
let isCreateable_1: boolean;
|
|
34
|
+
export { isCreateable_1 as isCreateable };
|
|
35
|
+
let isUpdateable_1: boolean;
|
|
36
|
+
export { isUpdateable_1 as isUpdateable };
|
|
37
|
+
let retrieving_1: boolean;
|
|
38
|
+
export { retrieving_1 as retrieving };
|
|
39
|
+
let template_1: boolean;
|
|
40
|
+
export { template_1 as template };
|
|
41
|
+
}
|
|
42
|
+
namespace createdDate {
|
|
43
|
+
let isCreateable_2: boolean;
|
|
44
|
+
export { isCreateable_2 as isCreateable };
|
|
45
|
+
let isUpdateable_2: boolean;
|
|
46
|
+
export { isUpdateable_2 as isUpdateable };
|
|
47
|
+
let retrieving_2: boolean;
|
|
48
|
+
export { retrieving_2 as retrieving };
|
|
49
|
+
let template_2: boolean;
|
|
50
|
+
export { template_2 as template };
|
|
51
|
+
}
|
|
52
|
+
namespace createdBy {
|
|
53
|
+
let isCreateable_3: boolean;
|
|
54
|
+
export { isCreateable_3 as isCreateable };
|
|
55
|
+
let isUpdateable_3: boolean;
|
|
56
|
+
export { isUpdateable_3 as isUpdateable };
|
|
57
|
+
let retrieving_3: boolean;
|
|
58
|
+
export { retrieving_3 as retrieving };
|
|
59
|
+
let template_3: boolean;
|
|
60
|
+
export { template_3 as template };
|
|
61
|
+
}
|
|
62
|
+
namespace createdByName {
|
|
63
|
+
let isCreateable_4: boolean;
|
|
64
|
+
export { isCreateable_4 as isCreateable };
|
|
65
|
+
let isUpdateable_4: boolean;
|
|
66
|
+
export { isUpdateable_4 as isUpdateable };
|
|
67
|
+
let retrieving_4: boolean;
|
|
68
|
+
export { retrieving_4 as retrieving };
|
|
69
|
+
let template_4: boolean;
|
|
70
|
+
export { template_4 as template };
|
|
71
|
+
}
|
|
72
|
+
namespace lastUpdated {
|
|
73
|
+
let isCreateable_5: boolean;
|
|
74
|
+
export { isCreateable_5 as isCreateable };
|
|
75
|
+
let isUpdateable_5: boolean;
|
|
76
|
+
export { isUpdateable_5 as isUpdateable };
|
|
77
|
+
let retrieving_5: boolean;
|
|
78
|
+
export { retrieving_5 as retrieving };
|
|
79
|
+
let template_5: boolean;
|
|
80
|
+
export { template_5 as template };
|
|
81
|
+
}
|
|
82
|
+
namespace lastUpdatedBy {
|
|
83
|
+
let isCreateable_6: boolean;
|
|
84
|
+
export { isCreateable_6 as isCreateable };
|
|
85
|
+
let isUpdateable_6: boolean;
|
|
86
|
+
export { isUpdateable_6 as isUpdateable };
|
|
87
|
+
let retrieving_6: boolean;
|
|
88
|
+
export { retrieving_6 as retrieving };
|
|
89
|
+
let template_6: boolean;
|
|
90
|
+
export { template_6 as template };
|
|
91
|
+
}
|
|
92
|
+
namespace lastUpdatedByName {
|
|
93
|
+
let isCreateable_7: boolean;
|
|
94
|
+
export { isCreateable_7 as isCreateable };
|
|
95
|
+
let isUpdateable_7: boolean;
|
|
96
|
+
export { isUpdateable_7 as isUpdateable };
|
|
97
|
+
let retrieving_7: boolean;
|
|
98
|
+
export { retrieving_7 as retrieving };
|
|
99
|
+
let template_7: boolean;
|
|
100
|
+
export { template_7 as template };
|
|
101
|
+
}
|
|
102
|
+
namespace name {
|
|
103
|
+
let isCreateable_8: boolean;
|
|
104
|
+
export { isCreateable_8 as isCreateable };
|
|
105
|
+
let isUpdateable_8: boolean;
|
|
106
|
+
export { isUpdateable_8 as isUpdateable };
|
|
107
|
+
let retrieving_8: boolean;
|
|
108
|
+
export { retrieving_8 as retrieving };
|
|
109
|
+
let template_8: boolean;
|
|
110
|
+
export { template_8 as template };
|
|
111
|
+
}
|
|
112
|
+
namespace categoryId {
|
|
113
|
+
let isCreateable_9: boolean;
|
|
114
|
+
export { isCreateable_9 as isCreateable };
|
|
115
|
+
let isUpdateable_9: boolean;
|
|
116
|
+
export { isUpdateable_9 as isUpdateable };
|
|
117
|
+
let retrieving_9: boolean;
|
|
118
|
+
export { retrieving_9 as retrieving };
|
|
119
|
+
let template_9: boolean;
|
|
120
|
+
export { template_9 as template };
|
|
121
|
+
}
|
|
122
|
+
namespace description {
|
|
123
|
+
let isCreateable_10: boolean;
|
|
124
|
+
export { isCreateable_10 as isCreateable };
|
|
125
|
+
let isUpdateable_10: boolean;
|
|
126
|
+
export { isUpdateable_10 as isUpdateable };
|
|
127
|
+
let retrieving_10: boolean;
|
|
128
|
+
export { retrieving_10 as retrieving };
|
|
129
|
+
let template_10: boolean;
|
|
130
|
+
export { template_10 as template };
|
|
131
|
+
}
|
|
132
|
+
namespace filterDefinitionXml {
|
|
133
|
+
let isCreateable_11: boolean;
|
|
134
|
+
export { isCreateable_11 as isCreateable };
|
|
135
|
+
let isUpdateable_11: boolean;
|
|
136
|
+
export { isUpdateable_11 as isUpdateable };
|
|
137
|
+
let retrieving_11: boolean;
|
|
138
|
+
export { retrieving_11 as retrieving };
|
|
139
|
+
let template_11: boolean;
|
|
140
|
+
export { template_11 as template };
|
|
141
|
+
}
|
|
142
|
+
namespace derivedFromType {
|
|
143
|
+
let isCreateable_12: boolean;
|
|
144
|
+
export { isCreateable_12 as isCreateable };
|
|
145
|
+
let isUpdateable_12: boolean;
|
|
146
|
+
export { isUpdateable_12 as isUpdateable };
|
|
147
|
+
let retrieving_12: boolean;
|
|
148
|
+
export { retrieving_12 as retrieving };
|
|
149
|
+
let template_12: boolean;
|
|
150
|
+
export { template_12 as template };
|
|
151
|
+
}
|
|
152
|
+
namespace derivedFromObjectId {
|
|
153
|
+
let isCreateable_13: boolean;
|
|
154
|
+
export { isCreateable_13 as isCreateable };
|
|
155
|
+
let isUpdateable_13: boolean;
|
|
156
|
+
export { isUpdateable_13 as isUpdateable };
|
|
157
|
+
let retrieving_13: boolean;
|
|
158
|
+
export { retrieving_13 as retrieving };
|
|
159
|
+
let template_13: boolean;
|
|
160
|
+
export { template_13 as template };
|
|
161
|
+
}
|
|
162
|
+
namespace derivedFromObjectTypeName {
|
|
163
|
+
let isCreateable_14: boolean;
|
|
164
|
+
export { isCreateable_14 as isCreateable };
|
|
165
|
+
let isUpdateable_14: boolean;
|
|
166
|
+
export { isUpdateable_14 as isUpdateable };
|
|
167
|
+
let retrieving_14: boolean;
|
|
168
|
+
export { retrieving_14 as retrieving };
|
|
169
|
+
let template_14: boolean;
|
|
170
|
+
export { template_14 as template };
|
|
171
|
+
}
|
|
172
|
+
namespace derivedFromObjectName {
|
|
173
|
+
let isCreateable_15: boolean;
|
|
174
|
+
export { isCreateable_15 as isCreateable };
|
|
175
|
+
let isUpdateable_15: boolean;
|
|
176
|
+
export { isUpdateable_15 as isUpdateable };
|
|
177
|
+
let retrieving_15: boolean;
|
|
178
|
+
export { retrieving_15 as retrieving };
|
|
179
|
+
let template_15: boolean;
|
|
180
|
+
export { template_15 as template };
|
|
181
|
+
}
|
|
182
|
+
namespace isSendable {
|
|
183
|
+
let isCreateable_16: boolean;
|
|
184
|
+
export { isCreateable_16 as isCreateable };
|
|
185
|
+
let isUpdateable_16: boolean;
|
|
186
|
+
export { isUpdateable_16 as isUpdateable };
|
|
187
|
+
let retrieving_16: boolean;
|
|
188
|
+
export { retrieving_16 as retrieving };
|
|
189
|
+
let template_16: boolean;
|
|
190
|
+
export { template_16 as template };
|
|
191
|
+
}
|
|
192
|
+
namespace r__source_dataExtension_key {
|
|
193
|
+
let isCreateable_17: boolean;
|
|
194
|
+
export { isCreateable_17 as isCreateable };
|
|
195
|
+
let isUpdateable_17: boolean;
|
|
196
|
+
export { isUpdateable_17 as isUpdateable };
|
|
197
|
+
let retrieving_17: boolean;
|
|
198
|
+
export { retrieving_17 as retrieving };
|
|
199
|
+
let template_17: boolean;
|
|
200
|
+
export { template_17 as template };
|
|
201
|
+
}
|
|
202
|
+
namespace c__filterDefinition {
|
|
203
|
+
let skipValidation: boolean;
|
|
204
|
+
}
|
|
205
|
+
namespace r__folder_Path {
|
|
206
|
+
let isCreateable_18: boolean;
|
|
207
|
+
export { isCreateable_18 as isCreateable };
|
|
208
|
+
let isUpdateable_18: boolean;
|
|
209
|
+
export { isUpdateable_18 as isUpdateable };
|
|
210
|
+
let retrieving_18: boolean;
|
|
211
|
+
export { retrieving_18 as retrieving };
|
|
212
|
+
let template_18: boolean;
|
|
213
|
+
export { template_18 as template };
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
export default _default;
|
|
218
|
+
//# sourceMappingURL=FilterDefinition.definition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterDefinition.definition.d.ts","sourceRoot":"","sources":["../../../../lib/metadataTypes/definitions/FilterDefinition.definition.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
let bodyIteratorField: string;
|
|
3
|
+
let dependencies: string[];
|
|
4
|
+
namespace dependencyGraph {
|
|
5
|
+
let dataExtension: string[];
|
|
6
|
+
}
|
|
7
|
+
let filter: {};
|
|
8
|
+
let hasExtended: boolean;
|
|
9
|
+
let idField: string;
|
|
10
|
+
let keyField: string;
|
|
11
|
+
let nameField: string;
|
|
12
|
+
let folderType: string;
|
|
13
|
+
let folderIdField: string;
|
|
14
|
+
let createdDateField: string;
|
|
15
|
+
let createdNameField: string;
|
|
16
|
+
let lastmodDateField: string;
|
|
17
|
+
let lastmodNameField: string;
|
|
18
|
+
let restPagination: boolean;
|
|
19
|
+
let restPageSize: number;
|
|
20
|
+
let type: string;
|
|
21
|
+
let soapType: string;
|
|
22
|
+
let typeDescription: string;
|
|
23
|
+
let typeRetrieveByDefault: boolean;
|
|
24
|
+
let typeName: string;
|
|
25
|
+
namespace fields {
|
|
26
|
+
namespace id {
|
|
27
|
+
let isCreateable: boolean;
|
|
28
|
+
let isUpdateable: boolean;
|
|
29
|
+
let retrieving: boolean;
|
|
30
|
+
let template: boolean;
|
|
31
|
+
}
|
|
32
|
+
namespace key {
|
|
33
|
+
let isCreateable_1: boolean;
|
|
34
|
+
export { isCreateable_1 as isCreateable };
|
|
35
|
+
let isUpdateable_1: boolean;
|
|
36
|
+
export { isUpdateable_1 as isUpdateable };
|
|
37
|
+
let retrieving_1: boolean;
|
|
38
|
+
export { retrieving_1 as retrieving };
|
|
39
|
+
let template_1: boolean;
|
|
40
|
+
export { template_1 as template };
|
|
41
|
+
}
|
|
42
|
+
namespace createdDate {
|
|
43
|
+
let isCreateable_2: boolean;
|
|
44
|
+
export { isCreateable_2 as isCreateable };
|
|
45
|
+
let isUpdateable_2: boolean;
|
|
46
|
+
export { isUpdateable_2 as isUpdateable };
|
|
47
|
+
let retrieving_2: boolean;
|
|
48
|
+
export { retrieving_2 as retrieving };
|
|
49
|
+
let template_2: boolean;
|
|
50
|
+
export { template_2 as template };
|
|
51
|
+
}
|
|
52
|
+
namespace createdBy {
|
|
53
|
+
let isCreateable_3: boolean;
|
|
54
|
+
export { isCreateable_3 as isCreateable };
|
|
55
|
+
let isUpdateable_3: boolean;
|
|
56
|
+
export { isUpdateable_3 as isUpdateable };
|
|
57
|
+
let retrieving_3: boolean;
|
|
58
|
+
export { retrieving_3 as retrieving };
|
|
59
|
+
let template_3: boolean;
|
|
60
|
+
export { template_3 as template };
|
|
61
|
+
}
|
|
62
|
+
namespace createdByName {
|
|
63
|
+
let isCreateable_4: boolean;
|
|
64
|
+
export { isCreateable_4 as isCreateable };
|
|
65
|
+
let isUpdateable_4: boolean;
|
|
66
|
+
export { isUpdateable_4 as isUpdateable };
|
|
67
|
+
let retrieving_4: boolean;
|
|
68
|
+
export { retrieving_4 as retrieving };
|
|
69
|
+
let template_4: boolean;
|
|
70
|
+
export { template_4 as template };
|
|
71
|
+
}
|
|
72
|
+
namespace lastUpdated {
|
|
73
|
+
let isCreateable_5: boolean;
|
|
74
|
+
export { isCreateable_5 as isCreateable };
|
|
75
|
+
let isUpdateable_5: boolean;
|
|
76
|
+
export { isUpdateable_5 as isUpdateable };
|
|
77
|
+
let retrieving_5: boolean;
|
|
78
|
+
export { retrieving_5 as retrieving };
|
|
79
|
+
let template_5: boolean;
|
|
80
|
+
export { template_5 as template };
|
|
81
|
+
}
|
|
82
|
+
namespace lastUpdatedBy {
|
|
83
|
+
let isCreateable_6: boolean;
|
|
84
|
+
export { isCreateable_6 as isCreateable };
|
|
85
|
+
let isUpdateable_6: boolean;
|
|
86
|
+
export { isUpdateable_6 as isUpdateable };
|
|
87
|
+
let retrieving_6: boolean;
|
|
88
|
+
export { retrieving_6 as retrieving };
|
|
89
|
+
let template_6: boolean;
|
|
90
|
+
export { template_6 as template };
|
|
91
|
+
}
|
|
92
|
+
namespace lastUpdatedByName {
|
|
93
|
+
let isCreateable_7: boolean;
|
|
94
|
+
export { isCreateable_7 as isCreateable };
|
|
95
|
+
let isUpdateable_7: boolean;
|
|
96
|
+
export { isUpdateable_7 as isUpdateable };
|
|
97
|
+
let retrieving_7: boolean;
|
|
98
|
+
export { retrieving_7 as retrieving };
|
|
99
|
+
let template_7: boolean;
|
|
100
|
+
export { template_7 as template };
|
|
101
|
+
}
|
|
102
|
+
namespace name {
|
|
103
|
+
let isCreateable_8: boolean;
|
|
104
|
+
export { isCreateable_8 as isCreateable };
|
|
105
|
+
let isUpdateable_8: boolean;
|
|
106
|
+
export { isUpdateable_8 as isUpdateable };
|
|
107
|
+
let retrieving_8: boolean;
|
|
108
|
+
export { retrieving_8 as retrieving };
|
|
109
|
+
let template_8: boolean;
|
|
110
|
+
export { template_8 as template };
|
|
111
|
+
}
|
|
112
|
+
namespace categoryId {
|
|
113
|
+
let isCreateable_9: boolean;
|
|
114
|
+
export { isCreateable_9 as isCreateable };
|
|
115
|
+
let isUpdateable_9: boolean;
|
|
116
|
+
export { isUpdateable_9 as isUpdateable };
|
|
117
|
+
let retrieving_9: boolean;
|
|
118
|
+
export { retrieving_9 as retrieving };
|
|
119
|
+
let template_9: boolean;
|
|
120
|
+
export { template_9 as template };
|
|
121
|
+
}
|
|
122
|
+
namespace description {
|
|
123
|
+
let isCreateable_10: boolean;
|
|
124
|
+
export { isCreateable_10 as isCreateable };
|
|
125
|
+
let isUpdateable_10: boolean;
|
|
126
|
+
export { isUpdateable_10 as isUpdateable };
|
|
127
|
+
let retrieving_10: boolean;
|
|
128
|
+
export { retrieving_10 as retrieving };
|
|
129
|
+
let template_10: boolean;
|
|
130
|
+
export { template_10 as template };
|
|
131
|
+
}
|
|
132
|
+
namespace filterDefinitionXml {
|
|
133
|
+
let isCreateable_11: boolean;
|
|
134
|
+
export { isCreateable_11 as isCreateable };
|
|
135
|
+
let isUpdateable_11: boolean;
|
|
136
|
+
export { isUpdateable_11 as isUpdateable };
|
|
137
|
+
let retrieving_11: boolean;
|
|
138
|
+
export { retrieving_11 as retrieving };
|
|
139
|
+
let template_11: boolean;
|
|
140
|
+
export { template_11 as template };
|
|
141
|
+
}
|
|
142
|
+
namespace derivedFromType {
|
|
143
|
+
let isCreateable_12: boolean;
|
|
144
|
+
export { isCreateable_12 as isCreateable };
|
|
145
|
+
let isUpdateable_12: boolean;
|
|
146
|
+
export { isUpdateable_12 as isUpdateable };
|
|
147
|
+
let retrieving_12: boolean;
|
|
148
|
+
export { retrieving_12 as retrieving };
|
|
149
|
+
let template_12: boolean;
|
|
150
|
+
export { template_12 as template };
|
|
151
|
+
}
|
|
152
|
+
namespace derivedFromObjectId {
|
|
153
|
+
let isCreateable_13: boolean;
|
|
154
|
+
export { isCreateable_13 as isCreateable };
|
|
155
|
+
let isUpdateable_13: boolean;
|
|
156
|
+
export { isUpdateable_13 as isUpdateable };
|
|
157
|
+
let retrieving_13: boolean;
|
|
158
|
+
export { retrieving_13 as retrieving };
|
|
159
|
+
let template_13: boolean;
|
|
160
|
+
export { template_13 as template };
|
|
161
|
+
}
|
|
162
|
+
namespace derivedFromObjectTypeName {
|
|
163
|
+
let isCreateable_14: boolean;
|
|
164
|
+
export { isCreateable_14 as isCreateable };
|
|
165
|
+
let isUpdateable_14: boolean;
|
|
166
|
+
export { isUpdateable_14 as isUpdateable };
|
|
167
|
+
let retrieving_14: boolean;
|
|
168
|
+
export { retrieving_14 as retrieving };
|
|
169
|
+
let template_14: boolean;
|
|
170
|
+
export { template_14 as template };
|
|
171
|
+
}
|
|
172
|
+
namespace derivedFromObjectName {
|
|
173
|
+
let isCreateable_15: boolean;
|
|
174
|
+
export { isCreateable_15 as isCreateable };
|
|
175
|
+
let isUpdateable_15: boolean;
|
|
176
|
+
export { isUpdateable_15 as isUpdateable };
|
|
177
|
+
let retrieving_15: boolean;
|
|
178
|
+
export { retrieving_15 as retrieving };
|
|
179
|
+
let template_15: boolean;
|
|
180
|
+
export { template_15 as template };
|
|
181
|
+
}
|
|
182
|
+
namespace isSendable {
|
|
183
|
+
let isCreateable_16: boolean;
|
|
184
|
+
export { isCreateable_16 as isCreateable };
|
|
185
|
+
let isUpdateable_16: boolean;
|
|
186
|
+
export { isUpdateable_16 as isUpdateable };
|
|
187
|
+
let retrieving_16: boolean;
|
|
188
|
+
export { retrieving_16 as retrieving };
|
|
189
|
+
let template_16: boolean;
|
|
190
|
+
export { template_16 as template };
|
|
191
|
+
}
|
|
192
|
+
namespace r__source_dataExtension_key {
|
|
193
|
+
let isCreateable_17: boolean;
|
|
194
|
+
export { isCreateable_17 as isCreateable };
|
|
195
|
+
let isUpdateable_17: boolean;
|
|
196
|
+
export { isUpdateable_17 as isUpdateable };
|
|
197
|
+
let retrieving_17: boolean;
|
|
198
|
+
export { retrieving_17 as retrieving };
|
|
199
|
+
let template_17: boolean;
|
|
200
|
+
export { template_17 as template };
|
|
201
|
+
}
|
|
202
|
+
namespace c__filterDefinition {
|
|
203
|
+
let skipValidation: boolean;
|
|
204
|
+
}
|
|
205
|
+
namespace r__folder_Path {
|
|
206
|
+
let isCreateable_18: boolean;
|
|
207
|
+
export { isCreateable_18 as isCreateable };
|
|
208
|
+
let isUpdateable_18: boolean;
|
|
209
|
+
export { isUpdateable_18 as isUpdateable };
|
|
210
|
+
let retrieving_18: boolean;
|
|
211
|
+
export { retrieving_18 as retrieving };
|
|
212
|
+
let template_18: boolean;
|
|
213
|
+
export { template_18 as template };
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
export default _default;
|
|
218
|
+
//# sourceMappingURL=FilterDefinitionHidden.definition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterDefinitionHidden.definition.d.ts","sourceRoot":"","sources":["../../../../lib/metadataTypes/definitions/FilterDefinitionHidden.definition.js"],"names":[],"mappings":""}
|
|
@@ -677,6 +677,24 @@ declare namespace _default {
|
|
|
677
677
|
'activities[].schema': {
|
|
678
678
|
skipValidation: boolean;
|
|
679
679
|
};
|
|
680
|
+
'activities[].arguments.activityData.updateContactFields[].r__dataExtension_key': {
|
|
681
|
+
isCreateable: boolean;
|
|
682
|
+
isUpdateable: boolean;
|
|
683
|
+
retrieving: boolean;
|
|
684
|
+
template: boolean;
|
|
685
|
+
};
|
|
686
|
+
'activities[].arguments.activityData.updateContactFields[].r__dataExtensionField_name': {
|
|
687
|
+
isCreateable: boolean;
|
|
688
|
+
isUpdateable: boolean;
|
|
689
|
+
retrieving: boolean;
|
|
690
|
+
template: boolean;
|
|
691
|
+
};
|
|
692
|
+
'activities[].arguments.activityData.updateContactFields[].field': {
|
|
693
|
+
isCreateable: boolean;
|
|
694
|
+
isUpdateable: boolean;
|
|
695
|
+
retrieving: boolean;
|
|
696
|
+
template: boolean;
|
|
697
|
+
};
|
|
680
698
|
categoryId: {
|
|
681
699
|
isCreateable: boolean;
|
|
682
700
|
isUpdateable: boolean;
|
|
@@ -16,6 +16,7 @@ export type MultiMetadataTypeMap = import("../../types/mcdev.d.js").MultiMetadat
|
|
|
16
16
|
export type SoapRequestParams = import("../../types/mcdev.d.js").SoapRequestParams;
|
|
17
17
|
export type TemplateMap = import("../../types/mcdev.d.js").TemplateMap;
|
|
18
18
|
export type TypeKeyCombo = import("../../types/mcdev.d.js").TypeKeyCombo;
|
|
19
|
+
export type BuildFilter = import("../../types/mcdev.d.js").BuildFilter;
|
|
19
20
|
declare namespace DevOps {
|
|
20
21
|
/**
|
|
21
22
|
* Extracts the delta between a commit and the current state for deployment.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"devops.d.ts","sourceRoot":"","sources":["../../../lib/util/devops.js"],"names":[],"mappings":";yBAea,OAAO,wBAAwB,EAAE,UAAU;uBAC3C,OAAO,wBAAwB,EAAE,QAAQ;oBACzC,OAAO,wBAAwB,EAAE,KAAK;0BACtC,OAAO,wBAAwB,EAAE,WAAW;8BAC5C,OAAO,wBAAwB,EAAE,eAAe;2BAChD,OAAO,wBAAwB,EAAE,YAAY;sBAC7C,OAAO,wBAAwB,EAAE,OAAO;+BACxC,OAAO,wBAAwB,EAAE,gBAAgB;mCACjD,OAAO,wBAAwB,EAAE,oBAAoB;kCACrD,OAAO,wBAAwB,EAAE,mBAAmB;8BACpD,OAAO,wBAAwB,EAAE,eAAe;iCAChD,OAAO,wBAAwB,EAAE,kBAAkB;oCACnD,OAAO,wBAAwB,EAAE,qBAAqB;mCACtD,OAAO,wBAAwB,EAAE,oBAAoB;gCACrD,OAAO,wBAAwB,EAAE,iBAAiB;0BAClD,OAAO,wBAAwB,EAAE,WAAW;2BAC5C,OAAO,wBAAwB,EAAE,YAAY;;
|
|
1
|
+
{"version":3,"file":"devops.d.ts","sourceRoot":"","sources":["../../../lib/util/devops.js"],"names":[],"mappings":";yBAea,OAAO,wBAAwB,EAAE,UAAU;uBAC3C,OAAO,wBAAwB,EAAE,QAAQ;oBACzC,OAAO,wBAAwB,EAAE,KAAK;0BACtC,OAAO,wBAAwB,EAAE,WAAW;8BAC5C,OAAO,wBAAwB,EAAE,eAAe;2BAChD,OAAO,wBAAwB,EAAE,YAAY;sBAC7C,OAAO,wBAAwB,EAAE,OAAO;+BACxC,OAAO,wBAAwB,EAAE,gBAAgB;mCACjD,OAAO,wBAAwB,EAAE,oBAAoB;kCACrD,OAAO,wBAAwB,EAAE,mBAAmB;8BACpD,OAAO,wBAAwB,EAAE,eAAe;iCAChD,OAAO,wBAAwB,EAAE,kBAAkB;oCACnD,OAAO,wBAAwB,EAAE,qBAAqB;mCACtD,OAAO,wBAAwB,EAAE,oBAAoB;gCACrD,OAAO,wBAAwB,EAAE,iBAAiB;0BAClD,OAAO,wBAAwB,EAAE,WAAW;2BAC5C,OAAO,wBAAwB,EAAE,YAAY;0BAC7C,OAAO,wBAAwB,EAAE,WAAW;;IAOrD;;;;;;;;;;OAUG;IACH,kCAPW,OAAO,UACP,MAAM,oBACN,OAAO,mBACP,MAAM,kBACN,MAAM,GACJ,OAAO,CAAE,YAAY,EAAE,CAAC,CAsXpC;IAED;;;;;;;;OAQG;IACH,2CANW,OAAO,SACP,MAAM,YACN,YAAY,EAAE,kBACd,MAAM,GACJ,OAAO,CAAE,YAAY,EAAE,CAAC,CA+JpC;IAED;;;;;;;OAOG;IACH,6BALW,MAAM,kBACN,MAAM,cACN,MAAM,GACJ,IAAI,CAmChB;IAED;;;;;;;;;OASG;IACH,sCANW,OAAO,YACP,QAAQ,gBACR,MAAM,UACN,MAAM,EAAE,GACN,OAAO,CAAE,MAAM,EAAE,CAAC,CAM9B;IACD;;;;;;;OAOG;IACH,4CALW,YAAY,EAAE,gBACd,MAAM,cACN,OAAO,gBACP,MAAM,QAgGhB"}
|
|
@@ -38,7 +38,7 @@ export default class ReplaceContentBlockReference {
|
|
|
38
38
|
name: AssetItemSimpleMap;
|
|
39
39
|
};
|
|
40
40
|
/** @type {Object.<string, {id: RegExp[], key: RegExp[], name: RegExp[]}>} */
|
|
41
|
-
static "__#
|
|
41
|
+
static "__#private@#regexBy": {
|
|
42
42
|
[x: string]: {
|
|
43
43
|
id: RegExp[];
|
|
44
44
|
key: RegExp[];
|
|
@@ -67,7 +67,7 @@ export default class ReplaceContentBlockReference {
|
|
|
67
67
|
* @param {boolean} [handleOutside] don not print error message if asset not found
|
|
68
68
|
* @returns {AssetItemSimple} asset object
|
|
69
69
|
*/
|
|
70
|
-
static "__#
|
|
70
|
+
static "__#private@#getAssetBy"(from: ContentBlockConversionTypes, identifier: string | number, parentName: string, isSsjs?: boolean, handleOutside?: boolean): AssetItemSimple;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
73
|
* @param {AssetItemSimple} asset asset object
|
|
@@ -75,7 +75,7 @@ export default class ReplaceContentBlockReference {
|
|
|
75
75
|
* @param {boolean} [isSsjs] replaces backslashes with double backslashes in name if true
|
|
76
76
|
* @returns {string} replaced string
|
|
77
77
|
*/
|
|
78
|
-
static "__#
|
|
78
|
+
static "__#private@#replaceWith"(asset: AssetItemSimple, to: ContentBlockConversionTypes, isSsjs?: boolean): string;
|
|
79
79
|
/**
|
|
80
80
|
* ensures we cache the right things from disk and if required from server
|
|
81
81
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replaceContentBlockReference.d.ts","sourceRoot":"","sources":["../../../lib/util/replaceContentBlockReference.js"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH;;GAEG;AACH;IACI,4FAA4F;IAC5F,sBADW;QAAC,EAAE,EAAE,oBAAoB,CAAC;QAAC,GAAG,EAAE,kBAAkB,CAAC;QAAC,IAAI,EAAE,kBAAkB,CAAA;KAAC,CAKtF;IACF,6EAA6E;IAC7E;;gBADgC,MAAM,EAAE;iBAAO,MAAM,EAAE;kBAAQ,MAAM,EAAE;;MAkCrE;IAEF;;OAEG;IACH,6BAMC;IAED;;;;;;;OAOG;IACH,6BALW,MAAM,cACN,MAAM,kBACN,GAAG,CAAE,MAAM,CAAC,GACV,MAAM,CAgElB;IAED;;;;;;;;OAQG;IACH,
|
|
1
|
+
{"version":3,"file":"replaceContentBlockReference.d.ts","sourceRoot":"","sources":["../../../lib/util/replaceContentBlockReference.js"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AAEH;;GAEG;AACH;IACI,4FAA4F;IAC5F,sBADW;QAAC,EAAE,EAAE,oBAAoB,CAAC;QAAC,GAAG,EAAE,kBAAkB,CAAC;QAAC,IAAI,EAAE,kBAAkB,CAAA;KAAC,CAKtF;IACF,6EAA6E;IAC7E;;gBADgC,MAAM,EAAE;iBAAO,MAAM,EAAE;kBAAQ,MAAM,EAAE;;MAkCrE;IAEF;;OAEG;IACH,6BAMC;IAED;;;;;;;OAOG;IACH,6BALW,MAAM,cACN,MAAM,kBACN,GAAG,CAAE,MAAM,CAAC,GACV,MAAM,CAgElB;IAED;;;;;;;;OAQG;IACH,sCAPW,2BAA2B,cAC3B,MAAM,GAAC,MAAM,cACb,MAAM,WACN,OAAO,kBACP,OAAO,GACL,eAAe,CAyB3B;IAED;;;;;;OAMG;IACH,wCALW,eAAe,MACf,2BAA2B,WAC3B,OAAO,GACL,MAAM,CAclB;IAED;;;;;;;OAOG;IACH,+BALW,OAAO,YACP,QAAQ,uBACR,OAAO,GACL,OAAO,CAAE,IAAI,CAAC,CAW1B;IAED;;;;OAIG;IACH,sCAFW,QAAQ,QA0BlB;IAED;;;;;;;OAOG;IACH,gCALW,QAAQ,cACR,OAAO,uBACP,OAAO,GACL,OAAO,CAAE;QAAC,WAAW,EAAE,QAAQ,CAAC;QAAC,YAAY,EAAE,QAAQ,CAAA;KAAC,CAAC,CAoErE;CACJ;yBAlVY,OAAO,wBAAwB,EAAE,UAAU;uBAC3C,OAAO,wBAAwB,EAAE,QAAQ;oBACzC,OAAO,wBAAwB,EAAE,KAAK;0BACtC,OAAO,wBAAwB,EAAE,WAAW;8BAC5C,OAAO,wBAAwB,EAAE,eAAe;2BAChD,OAAO,wBAAwB,EAAE,YAAY;0BAC7C,OAAO,wBAAwB,EAAE,WAAW;qBAC5C,OAAO,wBAAwB,EAAE,MAAM;sBACvC,OAAO,wBAAwB,EAAE,OAAO;+BACxC,OAAO,wBAAwB,EAAE,gBAAgB;mCACjD,OAAO,wBAAwB,EAAE,oBAAoB;kCACrD,OAAO,wBAAwB,EAAE,mBAAmB;8BACpD,OAAO,wBAAwB,EAAE,eAAe;iCAChD,OAAO,wBAAwB,EAAE,kBAAkB;oCACnD,OAAO,wBAAwB,EAAE,qBAAqB;mCACtD,OAAO,wBAAwB,EAAE,oBAAoB;8BACrD,OAAO,wBAAwB,EAAE,eAAe;gCAChD,OAAO,wBAAwB,EAAE,iBAAiB;0BAClD,OAAO,wBAAwB,EAAE,WAAW;2BAC5C,OAAO,wBAAwB,EAAE,YAAY;uBAC7C,OAAO,wBAAwB,EAAE,QAAQ;uBAEzC,OAAO,wBAAwB,EAAE,QAAQ;8BACzC,OAAO,wBAAwB,EAAE,eAAe;iCAChD,OAAO,wBAAwB,EAAE,kBAAkB;mCACnD,OAAO,wBAAwB,EAAE,oBAAoB;0CACrD,OAAO,wBAAwB,EAAE,2BAA2B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../lib/util/util.js"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../lib/util/util.js"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validations.d.ts","sourceRoot":"","sources":["../../../lib/util/validations.js"],"names":[],"mappings":"AAqCA;;;;;;;GAOG;AACH,+CANW,GAAG,QACH,GAAG,aACH,MAAM,uBACN,WAAW,EAAE,GACX,OAAO,CAAE,kBAAkB,CAAC,
|
|
1
|
+
{"version":3,"file":"validations.d.ts","sourceRoot":"","sources":["../../../lib/util/validations.js"],"names":[],"mappings":"AAqCA;;;;;;;GAOG;AACH,+CANW,GAAG,QACH,GAAG,aACH,MAAM,uBACN,WAAW,EAAE,GACX,OAAO,CAAE,kBAAkB,CAAC,CAuHxC;iCA7JY,OAAO,wBAAwB,EAAE,kBAAkB;gCACnD,OAAO,wBAAwB,EAAE,iBAAiB;iCAClD,OAAO,wBAAwB,EAAE,kBAAkB;0BACnD,OAAO,wBAAwB,EAAE,WAAW"}
|