xml-disassembler 1.4.0 → 1.5.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/CONTRIBUTING.md +28 -40
  3. package/README.md +39 -16
  4. package/disassemble.log +158 -95
  5. package/dist/index.cjs +117 -40
  6. package/dist/index.cjs.map +1 -1
  7. package/dist/index.min.cjs +1 -1
  8. package/dist/index.min.cjs.map +1 -1
  9. package/dist/index.min.mjs +1 -1
  10. package/dist/index.min.mjs.map +1 -1
  11. package/dist/index.min.umd.js +1 -1
  12. package/dist/index.min.umd.js.map +1 -1
  13. package/dist/index.mjs +117 -40
  14. package/dist/index.mjs.map +1 -1
  15. package/dist/index.umd.js +119 -44
  16. package/dist/index.umd.js.map +1 -1
  17. package/dist/typings/{service → builders}/buildDisassembledFiles.d.ts +1 -1
  18. package/dist/typings/{service → builders}/buildLeafFile.d.ts +1 -1
  19. package/dist/typings/{service → builders}/buildNestedFiles.d.ts +2 -2
  20. package/dist/typings/{service → builders}/buildRootElementHeader.d.ts +1 -1
  21. package/dist/typings/{service → builders}/buildXMLString.d.ts +1 -1
  22. package/dist/typings/{service → builders}/buildXmlDeclaration.d.ts +1 -1
  23. package/dist/typings/{helpers/types.d.ts → constants/constants.d.ts} +2 -16
  24. package/dist/typings/{service → handlers}/disassembleXMLFileHandler.d.ts +3 -1
  25. package/dist/typings/{service → handlers}/reassembleXMLFileHandler.d.ts +1 -0
  26. package/dist/typings/index.d.ts +5 -5
  27. package/dist/typings/parsers/parseElement.d.ts +2 -0
  28. package/dist/typings/parsers/parseRootElement.d.ts +2 -0
  29. package/dist/typings/parsers/parseUniqueIdElements.d.ts +2 -0
  30. package/dist/typings/{service → parsers}/parseXML.d.ts +1 -1
  31. package/dist/typings/transformers/getTransformer.d.ts +1 -0
  32. package/dist/typings/transformers/transformers.d.ts +3 -0
  33. package/dist/typings/types/types.d.ts +17 -0
  34. package/package.json +5 -3
  35. package/samples/array-of-leafs/Dreamhouse.app-meta.xml +60 -0
  36. package/samples/attributes/notes.xml +15 -0
  37. package/samples/cdata/VidLand_US.marketingappextension-meta.xml +51 -0
  38. package/samples/comments/Numbers-fr.globalValueSetTranslation-meta.xml +17 -0
  39. package/samples/deeply-nested-unique-id-element/Get_Info.flow-meta.xml +343 -0
  40. package/samples/general/HR_Admin.permissionset-meta.xml +44 -0
  41. package/samples/ignore/HR_Admin.permissionset-meta.xml +44 -0
  42. package/samples/no-namespace/HR_Admin.permissionset-meta.xml +44 -0
  43. package/samples/no-nested-elements/HR_Admin.xml +6 -0
  44. package/samples/no-root-element/Assessment_Bot/Assessment_Bot.bot-meta.xml +6 -0
  45. package/samples/no-root-element/Assessment_Bot/botMlDomain/419e0199.botMlDomain-meta.xml +7 -0
  46. package/samples/no-root-element/Assessment_Bot.bot-meta.xml +10 -0
  47. package/dist/typings/helpers/constants.d.ts +0 -2
  48. package/dist/typings/service/findUniqueIdElement.d.ts +0 -2
  49. package/dist/typings/service/processElement.d.ts +0 -2
  50. package/dist/typings/service/processFilesForRootElement.d.ts +0 -2
  51. /package/dist/typings/{service → builders}/buildReassembledFiles.d.ts +0 -0
@@ -0,0 +1,343 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Flow xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <actionCalls>
4
+ <name>Get_Info</name>
5
+ <label>Get Info</label>
6
+ <locationX>380</locationX>
7
+ <locationY>242</locationY>
8
+ <actionName>GetFirstFromCollection</actionName>
9
+ <actionType>apex</actionType>
10
+ <connector>
11
+ <targetReference>Update_If_Existing</targetReference>
12
+ </connector>
13
+ <dataTypeMappings>
14
+ <typeName>T__inputCollection</typeName>
15
+ <typeValue>Account</typeValue>
16
+ </dataTypeMappings>
17
+ <dataTypeMappings>
18
+ <typeName>U__outputMember</typeName>
19
+ <typeValue>Account</typeValue>
20
+ </dataTypeMappings>
21
+ <flowTransactionModel>CurrentTransaction</flowTransactionModel>
22
+ <inputParameters>
23
+ <name>inputCollection</name>
24
+ <value>
25
+ <elementReference>accts.accounts</elementReference>
26
+ </value>
27
+ </inputParameters>
28
+ <nameSegment>GetFirstFromCollection</nameSegment>
29
+ <storeOutputAutomatically>true</storeOutputAutomatically>
30
+ <versionSegment>1</versionSegment>
31
+ </actionCalls>
32
+ <actionCalls>
33
+ <name>Post_to_Contact_s_Feed</name>
34
+ <label>Post to Contact&apos;s Feed</label>
35
+ <locationX>50</locationX>
36
+ <locationY>890</locationY>
37
+ <actionName>chatterPost</actionName>
38
+ <actionType>chatterPost</actionType>
39
+ <connector>
40
+ <targetReference>Confirm</targetReference>
41
+ </connector>
42
+ <flowTransactionModel>CurrentTransaction</flowTransactionModel>
43
+ <inputParameters>
44
+ <name>text</name>
45
+ <value>
46
+ <elementReference>chatterMessage</elementReference>
47
+ </value>
48
+ </inputParameters>
49
+ <inputParameters>
50
+ <name>subjectNameOrId</name>
51
+ <value>
52
+ <elementReference>contact.Id</elementReference>
53
+ </value>
54
+ </inputParameters>
55
+ <nameSegment>chatterPost</nameSegment>
56
+ <storeOutputAutomatically>true</storeOutputAutomatically>
57
+ <versionSegment>1</versionSegment>
58
+ </actionCalls>
59
+ <assignments>
60
+ <name>Set_Contact_ID</name>
61
+ <label>Set Contact ID</label>
62
+ <locationX>50</locationX>
63
+ <locationY>674</locationY>
64
+ <assignmentItems>
65
+ <assignToReference>contact.Id</assignToReference>
66
+ <operator>Assign</operator>
67
+ <value>
68
+ <elementReference>existingId</elementReference>
69
+ </value>
70
+ </assignmentItems>
71
+ <connector>
72
+ <targetReference>Update_Contact</targetReference>
73
+ </connector>
74
+ </assignments>
75
+ <decisions>
76
+ <name>Update_If_Existing</name>
77
+ <label>Update If Existing?</label>
78
+ <locationX>380</locationX>
79
+ <locationY>350</locationY>
80
+ <defaultConnector>
81
+ <isGoTo>true</isGoTo>
82
+ <targetReference>Create_Contact</targetReference>
83
+ </defaultConnector>
84
+ <defaultConnectorLabel>No</defaultConnectorLabel>
85
+ <rules>
86
+ <name>Update_Yes</name>
87
+ <conditionLogic>and</conditionLogic>
88
+ <conditions>
89
+ <leftValueReference>updateExisting</leftValueReference>
90
+ <operator>EqualTo</operator>
91
+ <rightValue>
92
+ <booleanValue>true</booleanValue>
93
+ </rightValue>
94
+ </conditions>
95
+ <connector>
96
+ <targetReference>Find_a_Match</targetReference>
97
+ </connector>
98
+ <label>Yes</label>
99
+ </rules>
100
+ </decisions>
101
+ <decisions>
102
+ <name>Update_or_Create</name>
103
+ <label>Update or Create?</label>
104
+ <locationX>182</locationX>
105
+ <locationY>566</locationY>
106
+ <defaultConnector>
107
+ <targetReference>Create_Contact</targetReference>
108
+ </defaultConnector>
109
+ <defaultConnectorLabel>Create New</defaultConnectorLabel>
110
+ <rules>
111
+ <name>Update_Existing</name>
112
+ <conditionLogic>and</conditionLogic>
113
+ <conditions>
114
+ <leftValueReference>existingId</leftValueReference>
115
+ <operator>IsNull</operator>
116
+ <rightValue>
117
+ <booleanValue>false</booleanValue>
118
+ </rightValue>
119
+ </conditions>
120
+ <connector>
121
+ <targetReference>Set_Contact_ID</targetReference>
122
+ </connector>
123
+ <label>Update Existing</label>
124
+ </rules>
125
+ </decisions>
126
+ <dynamicChoiceSets>
127
+ <name>accounts</name>
128
+ <dataType>String</dataType>
129
+ <displayField>Name</displayField>
130
+ <object>Account</object>
131
+ <outputAssignments>
132
+ <assignToReference>contact.AccountId</assignToReference>
133
+ <field>Id</field>
134
+ </outputAssignments>
135
+ <valueField>Id</valueField>
136
+ </dynamicChoiceSets>
137
+ <formulas>
138
+ <name>created_or_updated</name>
139
+ <dataType>String</dataType>
140
+ <expression>IF({!Create_Contact}, &quot;created&quot;, &quot;updated&quot;)</expression>
141
+ </formulas>
142
+ <apiVersion>49.0</apiVersion>
143
+ <environments>Default</environments>
144
+ <interviewLabel>New Contact {!$Flow.CurrentDateTime}</interviewLabel>
145
+ <isAdditionalPermissionRequiredToRun>true</isAdditionalPermissionRequiredToRun>
146
+ <isTemplate>true</isTemplate>
147
+ <label>New Contact</label>
148
+ <processType>Flow</processType>
149
+ <status>Draft</status>
150
+ <processMetadataValues>
151
+ <name>BuilderType</name>
152
+ <value>
153
+ <stringValue>LightningFlowBuilder</stringValue>
154
+ </value>
155
+ </processMetadataValues>
156
+ <processMetadataValues>
157
+ <name>CanvasMode</name>
158
+ <value>
159
+ <stringValue>AUTO_LAYOUT_CANVAS</stringValue>
160
+ </value>
161
+ </processMetadataValues>
162
+ <processMetadataValues>
163
+ <name>OriginBuilderType</name>
164
+ <value>
165
+ <stringValue>LightningFlowBuilder</stringValue>
166
+ </value>
167
+ </processMetadataValues>
168
+ <recordCreates>
169
+ <name>Create_Contact</name>
170
+ <label>Create Contact</label>
171
+ <locationX>314</locationX>
172
+ <locationY>674</locationY>
173
+ <connector>
174
+ <isGoTo>true</isGoTo>
175
+ <targetReference>Post_to_Contact_s_Feed</targetReference>
176
+ </connector>
177
+ <inputReference>contact</inputReference>
178
+ </recordCreates>
179
+ <recordLookups>
180
+ <name>Find_a_Match</name>
181
+ <label>Find a Match</label>
182
+ <locationX>182</locationX>
183
+ <locationY>458</locationY>
184
+ <assignNullValuesIfNoRecordsFound>true</assignNullValuesIfNoRecordsFound>
185
+ <connector>
186
+ <targetReference>Update_or_Create</targetReference>
187
+ </connector>
188
+ <filterLogic>and</filterLogic>
189
+ <filters>
190
+ <field>FirstName</field>
191
+ <operator>EqualTo</operator>
192
+ <value>
193
+ <elementReference>contact.FirstName</elementReference>
194
+ </value>
195
+ </filters>
196
+ <filters>
197
+ <field>LastName</field>
198
+ <operator>EqualTo</operator>
199
+ <value>
200
+ <elementReference>contact.LastName</elementReference>
201
+ </value>
202
+ </filters>
203
+ <object>Contact</object>
204
+ <outputAssignments>
205
+ <assignToReference>existingId</assignToReference>
206
+ <field>Id</field>
207
+ </outputAssignments>
208
+ </recordLookups>
209
+ <recordUpdates>
210
+ <name>Update_Contact</name>
211
+ <label>Update Contact</label>
212
+ <locationX>50</locationX>
213
+ <locationY>782</locationY>
214
+ <connector>
215
+ <targetReference>Post_to_Contact_s_Feed</targetReference>
216
+ </connector>
217
+ <inputReference>contact</inputReference>
218
+ </recordUpdates>
219
+ <screens>
220
+ <name>Confirm</name>
221
+ <label>Confirm</label>
222
+ <locationX>50</locationX>
223
+ <locationY>998</locationY>
224
+ <allowBack>false</allowBack>
225
+ <allowFinish>true</allowFinish>
226
+ <allowPause>true</allowPause>
227
+ <fields>
228
+ <name>confirmation_message</name>
229
+ <fieldText>Thanks! &lt;a href=&quot;/{!contact.Id}&quot;&gt;The contact&lt;/a&gt; was {!created_or_updated}.</fieldText>
230
+ <fieldType>DisplayText</fieldType>
231
+ </fields>
232
+ <showFooter>true</showFooter>
233
+ <showHeader>true</showHeader>
234
+ </screens>
235
+ <screens>
236
+ <name>Contact_Info</name>
237
+ <label>Contact Info</label>
238
+ <locationX>380</locationX>
239
+ <locationY>134</locationY>
240
+ <allowBack>true</allowBack>
241
+ <allowFinish>true</allowFinish>
242
+ <allowPause>true</allowPause>
243
+ <connector>
244
+ <targetReference>Get_Info</targetReference>
245
+ </connector>
246
+ <fields>
247
+ <name>contactName</name>
248
+ <extensionName>flowruntime:name</extensionName>
249
+ <fieldType>ComponentInstance</fieldType>
250
+ <inputsOnNextNavToAssocScrn>UseStoredValues</inputsOnNextNavToAssocScrn>
251
+ <isRequired>true</isRequired>
252
+ <outputParameters>
253
+ <assignToReference>contact.FirstName</assignToReference>
254
+ <name>firstName</name>
255
+ </outputParameters>
256
+ <outputParameters>
257
+ <assignToReference>contact.LastName</assignToReference>
258
+ <name>lastName</name>
259
+ </outputParameters>
260
+ </fields>
261
+ <fields>
262
+ <name>Account</name>
263
+ <choiceReferences>accounts</choiceReferences>
264
+ <dataType>String</dataType>
265
+ <fieldText>Account</fieldText>
266
+ <fieldType>DropdownBox</fieldType>
267
+ <isRequired>true</isRequired>
268
+ </fields>
269
+ <fields>
270
+ <name>update_toggle</name>
271
+ <extensionName>flowruntime:toggle</extensionName>
272
+ <fieldType>ComponentInstance</fieldType>
273
+ <inputParameters>
274
+ <name>label</name>
275
+ <value>
276
+ <stringValue>If this contact already exists, update the existing record.</stringValue>
277
+ </value>
278
+ </inputParameters>
279
+ <inputParameters>
280
+ <name>messageToggleActive</name>
281
+ <value>
282
+ <stringValue>Update existing</stringValue>
283
+ </value>
284
+ </inputParameters>
285
+ <inputParameters>
286
+ <name>messageToggleInactive</name>
287
+ <value>
288
+ <stringValue>Create other contact</stringValue>
289
+ </value>
290
+ </inputParameters>
291
+ <inputsOnNextNavToAssocScrn>UseStoredValues</inputsOnNextNavToAssocScrn>
292
+ <isRequired>true</isRequired>
293
+ <outputParameters>
294
+ <assignToReference>updateExisting</assignToReference>
295
+ <name>value</name>
296
+ </outputParameters>
297
+ </fields>
298
+ <showFooter>true</showFooter>
299
+ <showHeader>true</showHeader>
300
+ </screens>
301
+ <start>
302
+ <locationX>254</locationX>
303
+ <locationY>0</locationY>
304
+ <connector>
305
+ <targetReference>Contact_Info</targetReference>
306
+ </connector>
307
+ </start>
308
+ <textTemplates>
309
+ <name>chatterMessage</name>
310
+ <isViewedAsPlainText>false</isViewedAsPlainText>
311
+ <text>The contact was {!created_or_updated}.</text>
312
+ </textTemplates>
313
+ <variables>
314
+ <name>accts</name>
315
+ <apexClass>ComplexObjectExample</apexClass>
316
+ <dataType>Apex</dataType>
317
+ <isCollection>false</isCollection>
318
+ <isInput>false</isInput>
319
+ <isOutput>false</isOutput>
320
+ </variables>
321
+ <variables>
322
+ <name>contact</name>
323
+ <dataType>SObject</dataType>
324
+ <isCollection>false</isCollection>
325
+ <isInput>false</isInput>
326
+ <isOutput>false</isOutput>
327
+ <objectType>Contact</objectType>
328
+ </variables>
329
+ <variables>
330
+ <name>existingId</name>
331
+ <dataType>String</dataType>
332
+ <isCollection>false</isCollection>
333
+ <isInput>false</isInput>
334
+ <isOutput>false</isOutput>
335
+ </variables>
336
+ <variables>
337
+ <name>updateExisting</name>
338
+ <dataType>Boolean</dataType>
339
+ <isCollection>false</isCollection>
340
+ <isInput>false</isInput>
341
+ <isOutput>false</isOutput>
342
+ </variables>
343
+ </Flow>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <applicationVisibilities>
4
+ <application>JobApps__Recruiting</application>
5
+ <visible>true</visible>
6
+ </applicationVisibilities>
7
+ <classAccesses>
8
+ <apexClass>Send_Email_Confirmation</apexClass>
9
+ <enabled>true</enabled>
10
+ </classAccesses>
11
+ <fieldPermissions>
12
+ <editable>true</editable>
13
+ <field>Job_Request__c.Salary__c</field>
14
+ <readable>true</readable>
15
+ </fieldPermissions>
16
+ <description>Grants all rights needed for an HR administrator to manage employees.</description>
17
+ <label>HR Administration</label>
18
+ <userLicense>Salesforce</userLicense>
19
+ <objectPermissions>
20
+ <allowCreate>true</allowCreate>
21
+ <allowDelete>true</allowDelete>
22
+ <allowEdit>true</allowEdit>
23
+ <allowRead>true</allowRead>
24
+ <viewAllRecords>true</viewAllRecords>
25
+ <modifyAllRecords>true</modifyAllRecords>
26
+ <object>Job_Request__c</object>
27
+ </objectPermissions>
28
+ <pageAccesses>
29
+ <apexPage>Job_Request_Web_Form</apexPage>
30
+ <enabled>true</enabled>
31
+ </pageAccesses>
32
+ <recordTypeVisibilities>
33
+ <recordType>Recruiting.DevManager</recordType>
34
+ <visible>true</visible>
35
+ </recordTypeVisibilities>
36
+ <tabSettings>
37
+ <tab>Job_Request__c</tab>
38
+ <visibility>Available</visibility>
39
+ </tabSettings>
40
+ <userPermissions>
41
+ <enabled>true</enabled>
42
+ <name>APIEnabled</name>
43
+ </userPermissions>
44
+ </PermissionSet>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <applicationVisibilities>
4
+ <application>JobApps__Recruiting</application>
5
+ <visible>true</visible>
6
+ </applicationVisibilities>
7
+ <classAccesses>
8
+ <apexClass>Send_Email_Confirmation</apexClass>
9
+ <enabled>true</enabled>
10
+ </classAccesses>
11
+ <fieldPermissions>
12
+ <editable>true</editable>
13
+ <field>Job_Request__c.Salary__c</field>
14
+ <readable>true</readable>
15
+ </fieldPermissions>
16
+ <description>Grants all rights needed for an HR administrator to manage employees.</description>
17
+ <label>HR Administration</label>
18
+ <userLicense>Salesforce</userLicense>
19
+ <objectPermissions>
20
+ <allowCreate>true</allowCreate>
21
+ <allowDelete>true</allowDelete>
22
+ <allowEdit>true</allowEdit>
23
+ <allowRead>true</allowRead>
24
+ <viewAllRecords>true</viewAllRecords>
25
+ <modifyAllRecords>true</modifyAllRecords>
26
+ <object>Job_Request__c</object>
27
+ </objectPermissions>
28
+ <pageAccesses>
29
+ <apexPage>Job_Request_Web_Form</apexPage>
30
+ <enabled>true</enabled>
31
+ </pageAccesses>
32
+ <recordTypeVisibilities>
33
+ <recordType>Recruiting.DevManager</recordType>
34
+ <visible>true</visible>
35
+ </recordTypeVisibilities>
36
+ <tabSettings>
37
+ <tab>Job_Request__c</tab>
38
+ <visibility>Available</visibility>
39
+ </tabSettings>
40
+ <userPermissions>
41
+ <enabled>true</enabled>
42
+ <name>APIEnabled</name>
43
+ </userPermissions>
44
+ </PermissionSet>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <PermissionSet>
3
+ <applicationVisibilities>
4
+ <application>JobApps__Recruiting</application>
5
+ <visible>true</visible>
6
+ </applicationVisibilities>
7
+ <classAccesses>
8
+ <apexClass>Send_Email_Confirmation</apexClass>
9
+ <enabled>true</enabled>
10
+ </classAccesses>
11
+ <fieldPermissions>
12
+ <editable>true</editable>
13
+ <field>Job_Request__c.Salary__c</field>
14
+ <readable>true</readable>
15
+ </fieldPermissions>
16
+ <description>Grants all rights needed for an HR administrator to manage employees.</description>
17
+ <label>HR Administration</label>
18
+ <userLicense>Salesforce</userLicense>
19
+ <objectPermissions>
20
+ <allowCreate>true</allowCreate>
21
+ <allowDelete>true</allowDelete>
22
+ <allowEdit>true</allowEdit>
23
+ <allowRead>true</allowRead>
24
+ <viewAllRecords>true</viewAllRecords>
25
+ <modifyAllRecords>true</modifyAllRecords>
26
+ <object>Job_Request__c</object>
27
+ </objectPermissions>
28
+ <pageAccesses>
29
+ <apexPage>Job_Request_Web_Form</apexPage>
30
+ <enabled>true</enabled>
31
+ </pageAccesses>
32
+ <recordTypeVisibilities>
33
+ <recordType>Recruiting.DevManager</recordType>
34
+ <visible>true</visible>
35
+ </recordTypeVisibilities>
36
+ <tabSettings>
37
+ <tab>Job_Request__c</tab>
38
+ <visibility>Available</visibility>
39
+ </tabSettings>
40
+ <userPermissions>
41
+ <enabled>true</enabled>
42
+ <name>APIEnabled</name>
43
+ </userPermissions>
44
+ </PermissionSet>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <PermissionSet xmlns="http://soap.sforce.com/2006/04/metadata">
3
+ <description>Grants all rights needed for an HR administrator to manage employees.</description>
4
+ <label>HR Administration</label>
5
+ <userLicense>Salesforce</userLicense>
6
+ </PermissionSet>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <>
3
+ <description>Bot that does an assessment based on the configured assessment metadata</description>
4
+ <label>Assessment Bot</label>
5
+ <logPrivateConversationData>true</logPrivateConversationData>
6
+ </>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <>
3
+ <botMlDomain>
4
+ <label>Assessment Bot</label>
5
+ <name>Assessment_Bot</name>
6
+ </botMlDomain>
7
+ </>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <>
3
+ <description>Bot that does an assessment based on the configured assessment metadata</description>
4
+ <label>Assessment Bot</label>
5
+ <logPrivateConversationData>true</logPrivateConversationData>
6
+ <botMlDomain>
7
+ <label>Assessment Bot</label>
8
+ <name>Assessment_Bot</name>
9
+ </botMlDomain>
10
+ </>
@@ -1,2 +0,0 @@
1
- export declare const XML_DEFAULT_DECLARATION = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
2
- export declare const INDENT = " ";
@@ -1,2 +0,0 @@
1
- import { XmlElement } from "@src/helpers/types";
2
- export declare function findUniqueIdElement(element: XmlElement, uniqueIdElements?: string | undefined): string;
@@ -1,2 +0,0 @@
1
- import { ProcessElementParams } from "@src/helpers/types";
2
- export declare function processElement(params: ProcessElementParams): Promise<[string, number, boolean]>;
@@ -1,2 +0,0 @@
1
- import { XmlElement } from "@src/helpers/types";
2
- export declare function processFilesForRootElement(xmlParsed: Record<string, XmlElement>): Promise<[string, string | undefined, string]>;