xml-disassembler 1.0.10 → 1.1.0-beta.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.
- package/CHANGELOG.md +7 -0
- package/CONTRIBUTING.md +48 -0
- package/README.md +40 -30
- package/disassemble.log +96 -86
- package/dist/index.cjs +70 -66
- package/dist/index.cjs.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.min.umd.js +1 -1
- package/dist/index.min.umd.js.map +1 -1
- package/dist/index.mjs +71 -67
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +70 -66
- package/dist/index.umd.js.map +1 -1
- package/dist/typings/service/buildDisassembledFiles.d.ts +1 -1
- package/dist/typings/service/disassembleXMLFileHandler.d.ts +4 -2
- package/dist/typings/service/reassembleXMLFileHandler.d.ts +3 -2
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.1.0-beta.1](https://github.com/mcarvin8/xml-disassembler/compare/v1.0.10...v1.1.0-beta.1) (2024-03-10)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- rename `purge` flag to `prePurge` and add `postPurge` flag to disassemble class ([ff9fdc3](https://github.com/mcarvin8/xml-disassembler/commit/ff9fdc326aa745bdb0fcd88fb000de64e2624427))
|
|
6
|
+
- use fast xml parser for reassembly ([bf045a9](https://github.com/mcarvin8/xml-disassembler/commit/bf045a942e7a3d918999df8ff770255db2a5e785))
|
|
7
|
+
|
|
1
8
|
## [1.0.10](https://github.com/mcarvin8/xml-disassembler/compare/v1.0.9...v1.0.10) (2024-03-07)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
Any contributions you would like to make to this repository are encouraged.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
"node": ">=18",
|
|
9
|
+
"pnpm": ">=8"
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Setup
|
|
13
|
+
|
|
14
|
+
1. Clone or fork the repository
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
git clone git@github.com:mcarvin8/xml-disassembler.git
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
2. Install dependencies
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
pnpm
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Branching
|
|
27
|
+
|
|
28
|
+
Please create a new feature branch before making changes.
|
|
29
|
+
|
|
30
|
+
When your changes are ready for review, please create a Pull Request into the `main` branch on this repository.
|
|
31
|
+
|
|
32
|
+
All feature branches will run the `Build` CI/CD workflow which will build and test (see `Testing` below) the code upon push.
|
|
33
|
+
|
|
34
|
+
## Testing
|
|
35
|
+
|
|
36
|
+
The test suite will disassemble and reassemble XMLs with different attributes and will test different class flags.
|
|
37
|
+
|
|
38
|
+
Use the following command from the root directory:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
pnpm test
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The test suite will copy all of the files found in `test/baselines` into a new `mock` directory before running the tests. After each disassemble test, the original file should be deleted to confirm it is reassembled correctly (whether it's via the `--postPurge` Boolean flag or manually deleting it to confirm coverage without the flag).
|
|
45
|
+
|
|
46
|
+
The final test in the suite should always be the comparison test. This test compares the `baseline` files against the `mock` files to confirm there are no changes. This will not compare files if they are only found in the `mock` directory (mostly disassembled files except for the error condition tests).
|
|
47
|
+
|
|
48
|
+
Ensure when you are adding new code & tests that all code reaches full code coverage.
|
package/README.md
CHANGED
|
@@ -29,31 +29,11 @@ npm install xml-disassembler
|
|
|
29
29
|
|
|
30
30
|
## Disassembling Files
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
```typescript
|
|
35
|
-
/*
|
|
36
|
-
FLAGS
|
|
37
|
-
- xmlPath: Directory containing the XML files to disassemble (must be directory). This will only disassemble files in the immediate directory.
|
|
38
|
-
- uniqueIdElements: (Optional) Comma-separated list of unique and required ID elements used to name disassembled files for nested elements.
|
|
39
|
-
Defaults to SHA-256 hash if unique ID elements are undefined or not found.
|
|
40
|
-
- purge: (Optional) Boolean value. If set to true, purge pre-existing disassembled directories prior to disassembling the file.
|
|
41
|
-
Defaults to false.
|
|
42
|
-
*/
|
|
43
|
-
import { DisassembleXMLFileHandler } from "xml-disassembler";
|
|
44
|
-
|
|
45
|
-
const handler = new DisassembleXMLFileHandler();
|
|
46
|
-
await handler.disassemble({
|
|
47
|
-
xmlPath: "test/baselines/general",
|
|
48
|
-
uniqueIdElements:
|
|
49
|
-
"application,apexClass,name,externalDataSource,flow,object,apexPage,recordType,tab,field",
|
|
50
|
-
purge: true,
|
|
51
|
-
});
|
|
52
|
-
```
|
|
32
|
+
Disassemble 1 or multiple XML files in the immediate directory (`xmlPath`), without recursion. Each XML file will be disassembled into their own sub-directories using their base name (everything before the first `.` in the file-name).
|
|
53
33
|
|
|
54
34
|
Example:
|
|
55
35
|
|
|
56
|
-
An XML with the following nested and leaf elements
|
|
36
|
+
An XML file (`HR_Admin.permissionset-meta.xml`) with the following nested and leaf elements
|
|
57
37
|
|
|
58
38
|
```xml
|
|
59
39
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
@@ -102,10 +82,10 @@ An XML with the following nested and leaf elements
|
|
|
102
82
|
</PermissionSet>
|
|
103
83
|
```
|
|
104
84
|
|
|
105
|
-
will be disassembled as such:
|
|
85
|
+
will be disassembled into a sub-directory named `HR_Admin` as such:
|
|
106
86
|
|
|
107
|
-
- Each nested element (`<recordTypeVisibilities>`, `<applicationVisibilities>`, `pageAccesses`, etc.) will be disassembled into sub-directories by the nested element name. If a unique & required ID element (`application` is the unique ID element for `<applicationVisibilities>`) is found, the disassembled file will be named using it. Otherwise, the disassembled files for nested elements will be named using the SHA-256 of the element contents.
|
|
108
|
-
- Each leaf element (`<description>`, `<label>`, `<userLicense>`) will be disassembled into the same file, which will have the same file-name as the original file.
|
|
87
|
+
- Each nested element (`<recordTypeVisibilities>`, `<applicationVisibilities>`, `pageAccesses`, etc.) will be disassembled into further sub-directories by the nested element name. If a unique & required ID element (`application` is the unique ID element for `<applicationVisibilities>`) is found, the disassembled file will be named using it. Otherwise, the disassembled files for nested elements will be named using the SHA-256 of the element contents.
|
|
88
|
+
- Each leaf element (`<description>`, `<label>`, `<userLicense>`) will be disassembled into the same file in the first sub-directory, which will have the same file-name as the original file.
|
|
109
89
|
|
|
110
90
|
<img src="https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled.png">
|
|
111
91
|
|
|
@@ -115,8 +95,37 @@ will be disassembled as such:
|
|
|
115
95
|
|
|
116
96
|
<br>
|
|
117
97
|
|
|
98
|
+
Import the `DisassembleXMLFileHandler` class from the package.
|
|
99
|
+
|
|
100
|
+
```typescript
|
|
101
|
+
/*
|
|
102
|
+
FLAGS
|
|
103
|
+
- xmlPath: Directory containing the XML files to disassemble (must be directory). This will only disassemble files in the immediate directory.
|
|
104
|
+
- uniqueIdElements: (Optional) Comma-separated list of unique and required ID elements used to name disassembled files for nested elements.
|
|
105
|
+
Defaults to SHA-256 hash if unique ID elements are undefined or not found.
|
|
106
|
+
- prePurge: (Optional) Boolean value. If set to true, purge pre-existing disassembled directories prior to disassembling the file.
|
|
107
|
+
Defaults to false.
|
|
108
|
+
- postPurge: (Optional) Boolean value. If set to true, purge the original XML file after disassembling it.
|
|
109
|
+
Defaults to false.
|
|
110
|
+
*/
|
|
111
|
+
import { DisassembleXMLFileHandler } from "xml-disassembler";
|
|
112
|
+
|
|
113
|
+
const handler = new DisassembleXMLFileHandler();
|
|
114
|
+
await handler.disassemble({
|
|
115
|
+
xmlPath: "test/baselines/general",
|
|
116
|
+
uniqueIdElements:
|
|
117
|
+
"application,apexClass,name,externalDataSource,flow,object,apexPage,recordType,tab,field",
|
|
118
|
+
prePurge: true,
|
|
119
|
+
postPurge: true,
|
|
120
|
+
});
|
|
121
|
+
```
|
|
122
|
+
|
|
118
123
|
## Reassembling Files
|
|
119
124
|
|
|
125
|
+
Reassemble 1 XML directory (`xmlPath`) containing disassembled files back into 1 XML file.
|
|
126
|
+
|
|
127
|
+
**NOTE**: You should be reassembling files created by this package's `DisassembleXMLFileHandler` class for intended results. This class will assume all disassembled files in `xmlPath` have the same XML Root Element. The reassembled XML file will be created in the parent directory of `xmlPath` and will overwrite the original file used to create the original disassembled directories, if it still exists and the `fileExtension` flag matches the original file extension.
|
|
128
|
+
|
|
120
129
|
Import the `ReassembleXMLFileHandler` class from the package.
|
|
121
130
|
|
|
122
131
|
```typescript
|
|
@@ -134,10 +143,6 @@ await handler.reassemble({
|
|
|
134
143
|
});
|
|
135
144
|
```
|
|
136
145
|
|
|
137
|
-
_NOTE_: You should be reassembling files created by this package's `DisassembleXMLFileHandler` class for intended results. This class will assume all disassembled files in `xmlPath` have the same XML Root Element.
|
|
138
|
-
|
|
139
|
-
The reassembled XML file will be created in the parent directory of `xmlPath` and will overwrite the original file used to create the original disassembled directories, if it still exists and the `fileExtension` flag matches the original file extension.
|
|
140
|
-
|
|
141
146
|
## Use Case
|
|
142
147
|
|
|
143
148
|
Refer to the Salesforce plugin, [SFDX Decomposer](https://github.com/mcarvin8/sfdx-decomposer-plugin), to see a use case of this package:
|
|
@@ -177,7 +182,8 @@ await disassembleHandler.disassemble({
|
|
|
177
182
|
xmlPath: "test/baselines/general",
|
|
178
183
|
uniqueIdElements:
|
|
179
184
|
"application,apexClass,name,externalDataSource,flow,object,apexPage,recordType,tab,field",
|
|
180
|
-
|
|
185
|
+
prePurge: true,
|
|
186
|
+
postPurge: true,
|
|
181
187
|
});
|
|
182
188
|
|
|
183
189
|
const reassembleHandler = new ReassembleXMLFileHandler();
|
|
@@ -192,3 +198,7 @@ await reassembleHandler.reassemble({
|
|
|
192
198
|
This project was created from a template provided by [Allan Oricil](https://github.com/AllanOricil). Thank you Allan!
|
|
193
199
|
|
|
194
200
|
His original [license](https://github.com/AllanOricil/js-template/blob/main/LICENSE) remains in this project.
|
|
201
|
+
|
|
202
|
+
## Contributing
|
|
203
|
+
|
|
204
|
+
Any contributions you would like to make are appreciated. Please see [CONTRIBUTING](https://github.com/mcarvin8/xml-disassembler/blob/main/CONTRIBUTING.md).
|
package/disassemble.log
CHANGED
|
@@ -1,86 +1,96 @@
|
|
|
1
|
-
[2024-03-
|
|
2
|
-
[2024-03-
|
|
3
|
-
[2024-03-
|
|
4
|
-
[2024-03-
|
|
5
|
-
[2024-03-
|
|
6
|
-
[2024-03-
|
|
7
|
-
[2024-03-
|
|
8
|
-
[2024-03-
|
|
9
|
-
[2024-03-
|
|
10
|
-
[2024-03-
|
|
11
|
-
[2024-03-
|
|
12
|
-
[2024-03-
|
|
13
|
-
[2024-03-
|
|
14
|
-
[2024-03-
|
|
15
|
-
[2024-03-
|
|
16
|
-
[2024-03-
|
|
17
|
-
[2024-03-
|
|
18
|
-
[2024-03-
|
|
19
|
-
[2024-03-
|
|
20
|
-
[2024-03-
|
|
21
|
-
[2024-03-
|
|
22
|
-
[2024-03-
|
|
23
|
-
[2024-03-
|
|
24
|
-
[2024-03-
|
|
25
|
-
[2024-03-
|
|
26
|
-
[2024-03-
|
|
27
|
-
[2024-03-
|
|
28
|
-
[2024-03-
|
|
29
|
-
[2024-03-
|
|
30
|
-
[2024-03-
|
|
31
|
-
[2024-03-
|
|
32
|
-
[2024-03-
|
|
33
|
-
[2024-03-
|
|
34
|
-
[2024-03-
|
|
35
|
-
[2024-03-
|
|
36
|
-
[2024-03-
|
|
37
|
-
[2024-03-
|
|
38
|
-
[2024-03-
|
|
39
|
-
[2024-03-
|
|
40
|
-
[2024-03-
|
|
41
|
-
[2024-03-
|
|
42
|
-
[2024-03-
|
|
43
|
-
[2024-03-
|
|
44
|
-
[2024-03-
|
|
45
|
-
[2024-03-
|
|
46
|
-
[2024-03-
|
|
47
|
-
[2024-03-
|
|
48
|
-
[2024-03-
|
|
49
|
-
[2024-03-
|
|
50
|
-
[2024-03-
|
|
51
|
-
[2024-03-
|
|
52
|
-
[2024-03-
|
|
53
|
-
[2024-03-
|
|
54
|
-
[2024-03-
|
|
55
|
-
[2024-03-
|
|
56
|
-
[2024-03-
|
|
57
|
-
[2024-03-
|
|
58
|
-
[2024-03-
|
|
59
|
-
[2024-03-
|
|
60
|
-
[2024-03-
|
|
61
|
-
[2024-03-
|
|
62
|
-
[2024-03-
|
|
63
|
-
[2024-03-
|
|
64
|
-
[2024-03-
|
|
65
|
-
[2024-03-
|
|
66
|
-
[2024-03-
|
|
67
|
-
[2024-03-
|
|
68
|
-
[2024-03-
|
|
69
|
-
[2024-03-
|
|
70
|
-
[2024-03-
|
|
71
|
-
[2024-03-
|
|
72
|
-
[2024-03-
|
|
73
|
-
[2024-03-
|
|
74
|
-
[2024-03-
|
|
75
|
-
[2024-03-
|
|
76
|
-
[2024-03-
|
|
77
|
-
[2024-03-
|
|
78
|
-
[2024-03-
|
|
79
|
-
[2024-03-
|
|
80
|
-
[2024-03-
|
|
81
|
-
[2024-03-
|
|
82
|
-
[2024-03-
|
|
83
|
-
[2024-03-
|
|
84
|
-
[2024-03-
|
|
85
|
-
[2024-03-
|
|
86
|
-
[2024-03-
|
|
1
|
+
[2024-03-10T19:21:11.812] [DEBUG] default - Parsing file to disassemble: mock/general/HR_Admin.permissionset-meta.xml
|
|
2
|
+
[2024-03-10T19:21:11.818] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/applicationVisibilities/JobApps__Recruiting.applicationVisibilities-meta.xml
|
|
3
|
+
[2024-03-10T19:21:11.818] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/classAccesses/Send_Email_Confirmation.classAccesses-meta.xml
|
|
4
|
+
[2024-03-10T19:21:11.819] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/fieldPermissions/Job_Request__c.Salary__c.fieldPermissions-meta.xml
|
|
5
|
+
[2024-03-10T19:21:11.819] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/objectPermissions/Job_Request__c.objectPermissions-meta.xml
|
|
6
|
+
[2024-03-10T19:21:11.819] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/pageAccesses/Job_Request_Web_Form.pageAccesses-meta.xml
|
|
7
|
+
[2024-03-10T19:21:11.819] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/recordTypeVisibilities/Recruiting.DevManager.recordTypeVisibilities-meta.xml
|
|
8
|
+
[2024-03-10T19:21:11.820] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/tabSettings/Job_Request__c.tabSettings-meta.xml
|
|
9
|
+
[2024-03-10T19:21:11.820] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/userPermissions/APIEnabled.userPermissions-meta.xml
|
|
10
|
+
[2024-03-10T19:21:11.820] [DEBUG] default - Created disassembled file: mock/general/HR_Admin/HR_Admin.permissionset-meta.xml
|
|
11
|
+
[2024-03-10T19:21:11.823] [DEBUG] default - Parsing directory to reassemble: mock/general/HR_Admin
|
|
12
|
+
[2024-03-10T19:21:11.837] [DEBUG] default - Created reassembled file: mock/general/HR_Admin.permissionset-meta.xml
|
|
13
|
+
[2024-03-10T19:21:11.838] [DEBUG] default - Parsing file to disassemble: mock/cdata/VidLand_US.marketingappextension-meta.xml
|
|
14
|
+
[2024-03-10T19:21:11.839] [DEBUG] default - Created disassembled file: mock/cdata/VidLand_US/marketingAppExtActions/register_user.marketingAppExtActions-meta.xml
|
|
15
|
+
[2024-03-10T19:21:11.839] [DEBUG] default - Created disassembled file: mock/cdata/VidLand_US/VidLand_US.marketingappextension-meta.xml
|
|
16
|
+
[2024-03-10T19:21:11.840] [DEBUG] default - Parsing directory to reassemble: mock/cdata/VidLand_US
|
|
17
|
+
[2024-03-10T19:21:11.842] [DEBUG] default - Created reassembled file: mock/cdata/VidLand_US.xml
|
|
18
|
+
[2024-03-10T19:21:11.843] [DEBUG] default - Parsing file to disassemble: mock/comments/Numbers-fr.globalValueSetTranslation-meta.xml
|
|
19
|
+
[2024-03-10T19:21:11.844] [DEBUG] default - Created disassembled file: mock/comments/Numbers-fr/valueTranslation/30e8b6d2.valueTranslation-meta.xml
|
|
20
|
+
[2024-03-10T19:21:11.844] [DEBUG] default - Created disassembled file: mock/comments/Numbers-fr/valueTranslation/d7dd1420.valueTranslation-meta.xml
|
|
21
|
+
[2024-03-10T19:21:11.844] [DEBUG] default - Created disassembled file: mock/comments/Numbers-fr/valueTranslation/d8852ede.valueTranslation-meta.xml
|
|
22
|
+
[2024-03-10T19:21:11.845] [DEBUG] default - Parsing directory to reassemble: mock/comments/Numbers-fr
|
|
23
|
+
[2024-03-10T19:21:11.847] [DEBUG] default - Created reassembled file: mock/comments/Numbers-fr.globalValueSetTranslation-meta.xml
|
|
24
|
+
[2024-03-10T19:21:11.847] [DEBUG] default - Parsing file to disassemble: mock/deeply-nested-unique-id-element/Get_Info.flow-meta.xml
|
|
25
|
+
[2024-03-10T19:21:11.850] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/actionCalls/Get_Info.actionCalls-meta.xml
|
|
26
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/actionCalls/Post_to_Contact_s_Feed.actionCalls-meta.xml
|
|
27
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/assignments/Set_Contact_ID.assignments-meta.xml
|
|
28
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/decisions/Update_If_Existing.decisions-meta.xml
|
|
29
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/decisions/Update_or_Create.decisions-meta.xml
|
|
30
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/dynamicChoiceSets/accounts.dynamicChoiceSets-meta.xml
|
|
31
|
+
[2024-03-10T19:21:11.851] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/formulas/created_or_updated.formulas-meta.xml
|
|
32
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/processMetadataValues/BuilderType.processMetadataValues-meta.xml
|
|
33
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/processMetadataValues/CanvasMode.processMetadataValues-meta.xml
|
|
34
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/processMetadataValues/OriginBuilderType.processMetadataValues-meta.xml
|
|
35
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/recordCreates/Create_Contact.recordCreates-meta.xml
|
|
36
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/recordLookups/Find_a_Match.recordLookups-meta.xml
|
|
37
|
+
[2024-03-10T19:21:11.852] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/recordUpdates/Update_Contact.recordUpdates-meta.xml
|
|
38
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/screens/Confirm.screens-meta.xml
|
|
39
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/screens/Contact_Info.screens-meta.xml
|
|
40
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/start/Contact_Info.start-meta.xml
|
|
41
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/textTemplates/chatterMessage.textTemplates-meta.xml
|
|
42
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/variables/ComplexObjectExample.variables-meta.xml
|
|
43
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/variables/contact.variables-meta.xml
|
|
44
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/variables/existingId.variables-meta.xml
|
|
45
|
+
[2024-03-10T19:21:11.853] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/variables/updateExisting.variables-meta.xml
|
|
46
|
+
[2024-03-10T19:21:11.854] [DEBUG] default - Created disassembled file: mock/deeply-nested-unique-id-element/Get_Info/Get_Info.flow-meta.xml
|
|
47
|
+
[2024-03-10T19:21:11.855] [DEBUG] default - Parsing directory to reassemble: mock/deeply-nested-unique-id-element/Get_Info
|
|
48
|
+
[2024-03-10T19:21:11.870] [DEBUG] default - Created reassembled file: mock/deeply-nested-unique-id-element/Get_Info.flow-meta.xml
|
|
49
|
+
[2024-03-10T19:21:11.871] [DEBUG] default - Parsing file to disassemble: mock/array-of-leafs/Dreamhouse.app-meta.xml
|
|
50
|
+
[2024-03-10T19:21:11.873] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/39049d21.actionOverrides-meta.xml
|
|
51
|
+
[2024-03-10T19:21:11.873] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/735c1659.actionOverrides-meta.xml
|
|
52
|
+
[2024-03-10T19:21:11.873] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/b04e9f9b.actionOverrides-meta.xml
|
|
53
|
+
[2024-03-10T19:21:11.873] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/c8cc7a99.actionOverrides-meta.xml
|
|
54
|
+
[2024-03-10T19:21:11.874] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/brand/c9db422b.brand-meta.xml
|
|
55
|
+
[2024-03-10T19:21:11.874] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/Dreamhouse.app-meta.xml
|
|
56
|
+
[2024-03-10T19:21:11.875] [DEBUG] default - Parsing directory to reassemble: mock/array-of-leafs/Dreamhouse
|
|
57
|
+
[2024-03-10T19:21:11.879] [DEBUG] default - Created reassembled file: mock/array-of-leafs/Dreamhouse.app-meta.xml
|
|
58
|
+
[2024-03-10T19:21:11.880] [DEBUG] default - Parsing file to disassemble: mock/array-of-leafs/Dreamhouse.app-meta.xml
|
|
59
|
+
[2024-03-10T19:21:11.883] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/39049d21.actionOverrides-meta.xml
|
|
60
|
+
[2024-03-10T19:21:11.883] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/735c1659.actionOverrides-meta.xml
|
|
61
|
+
[2024-03-10T19:21:11.883] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/b04e9f9b.actionOverrides-meta.xml
|
|
62
|
+
[2024-03-10T19:21:11.883] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/actionOverrides/c8cc7a99.actionOverrides-meta.xml
|
|
63
|
+
[2024-03-10T19:21:11.883] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/brand/c9db422b.brand-meta.xml
|
|
64
|
+
[2024-03-10T19:21:11.884] [DEBUG] default - Created disassembled file: mock/array-of-leafs/Dreamhouse/Dreamhouse.app-meta.xml
|
|
65
|
+
[2024-03-10T19:21:11.885] [DEBUG] default - Parsing directory to reassemble: mock/array-of-leafs/Dreamhouse
|
|
66
|
+
[2024-03-10T19:21:11.888] [DEBUG] default - Created reassembled file: mock/array-of-leafs/Dreamhouse.app-meta.xml
|
|
67
|
+
[2024-03-10T19:21:11.889] [DEBUG] default - Parsing file to disassemble: mock/no-namespace/HR_Admin.permissionset-meta.xml
|
|
68
|
+
[2024-03-10T19:21:11.890] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/applicationVisibilities/JobApps__Recruiting.applicationVisibilities-meta.xml
|
|
69
|
+
[2024-03-10T19:21:11.890] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/classAccesses/Send_Email_Confirmation.classAccesses-meta.xml
|
|
70
|
+
[2024-03-10T19:21:11.890] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/fieldPermissions/Job_Request__c.Salary__c.fieldPermissions-meta.xml
|
|
71
|
+
[2024-03-10T19:21:11.890] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/objectPermissions/Job_Request__c.objectPermissions-meta.xml
|
|
72
|
+
[2024-03-10T19:21:11.890] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/pageAccesses/Job_Request_Web_Form.pageAccesses-meta.xml
|
|
73
|
+
[2024-03-10T19:21:11.891] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/recordTypeVisibilities/Recruiting.DevManager.recordTypeVisibilities-meta.xml
|
|
74
|
+
[2024-03-10T19:21:11.891] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/tabSettings/Job_Request__c.tabSettings-meta.xml
|
|
75
|
+
[2024-03-10T19:21:11.891] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/userPermissions/APIEnabled.userPermissions-meta.xml
|
|
76
|
+
[2024-03-10T19:21:11.891] [DEBUG] default - Created disassembled file: mock/no-namespace/HR_Admin/HR_Admin.permissionset-meta.xml
|
|
77
|
+
[2024-03-10T19:21:11.892] [DEBUG] default - Parsing directory to reassemble: mock/no-namespace/HR_Admin
|
|
78
|
+
[2024-03-10T19:21:11.896] [DEBUG] default - Created reassembled file: mock/no-namespace/HR_Admin.permissionset-meta.xml
|
|
79
|
+
[2024-03-10T19:21:11.897] [ERROR] default - The provided xmlPath mock/no-namespace/HR_Admin.permissionset-meta.xml to disassemble is not a directory.
|
|
80
|
+
[2024-03-10T19:21:11.897] [ERROR] default - The provided xmlPath mock/no-namespace/HR_Admin/HR_Admin.permissionset-meta.xml to reassemble is not a directory.
|
|
81
|
+
[2024-03-10T19:21:11.898] [DEBUG] default - Parsing file to disassemble: mock/no-root-element/Assessment_Bot.bot-meta.xml
|
|
82
|
+
[2024-03-10T19:21:11.898] [ERROR] default - A Root Element Name was not found in Assessment_Bot.bot-meta.xml
|
|
83
|
+
[2024-03-10T19:21:11.899] [DEBUG] default - Parsing directory to reassemble: mock/no-root-element/Assessment_Bot
|
|
84
|
+
[2024-03-10T19:21:11.900] [ERROR] default - A Root Element Name was not found in any files under mock/no-root-element/Assessment_Bot
|
|
85
|
+
[2024-03-10T19:21:11.900] [DEBUG] default - Parsing file to disassemble: mock/no-nested-elements/HR_Admin.no-nested-elements.xml
|
|
86
|
+
[2024-03-10T19:21:11.901] [ERROR] default - The XML file HR_Admin.no-nested-elements.xml only has leaf elements. This file will not be disassembled.
|
|
87
|
+
[2024-03-10T19:21:11.901] [DEBUG] default - Parsing file to disassemble: mock/no-nested-elements/HR_Admin.permissionset-meta.xml
|
|
88
|
+
[2024-03-10T19:21:11.901] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/applicationVisibilities/5593cf61.applicationVisibilities-meta.xml
|
|
89
|
+
[2024-03-10T19:21:11.901] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/classAccesses/2e5749c9.classAccesses-meta.xml
|
|
90
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/fieldPermissions/16129a47.fieldPermissions-meta.xml
|
|
91
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/objectPermissions/81268af4.objectPermissions-meta.xml
|
|
92
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/pageAccesses/d6d8105a.pageAccesses-meta.xml
|
|
93
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/recordTypeVisibilities/077548e3.recordTypeVisibilities-meta.xml
|
|
94
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/tabSettings/181e6985.tabSettings-meta.xml
|
|
95
|
+
[2024-03-10T19:21:11.902] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/userPermissions/0288499e.userPermissions-meta.xml
|
|
96
|
+
[2024-03-10T19:21:11.903] [DEBUG] default - Created disassembled file: mock/no-nested-elements/HR_Admin/HR_Admin.permissionset-meta.xml
|