trm-core 9.8.1 → 9.8.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/changelog.txt +8 -0
- package/dist/client/RESTClient.js +2 -4
- package/package.json +1 -1
package/changelog.txt
CHANGED
|
@@ -8,6 +8,14 @@ Legend
|
|
|
8
8
|
+ : added
|
|
9
9
|
- : removed
|
|
10
10
|
|
|
11
|
+
2026-07-05 v9.8.2
|
|
12
|
+
-------------------
|
|
13
|
+
* rest client response parsing
|
|
14
|
+
|
|
15
|
+
2026-07-05 v9.8.1
|
|
16
|
+
-------------------
|
|
17
|
+
- uuid dependency
|
|
18
|
+
|
|
11
19
|
2026-06-15 v9.8.0
|
|
12
20
|
-------------------
|
|
13
21
|
! guard table read result fields order
|
|
@@ -211,8 +211,7 @@ class RESTClient {
|
|
|
211
211
|
fields: fields
|
|
212
212
|
}
|
|
213
213
|
});
|
|
214
|
-
|
|
215
|
-
data.forEach(tab512 => {
|
|
214
|
+
result.data.data.forEach(tab512 => {
|
|
216
215
|
var sqlLine = {};
|
|
217
216
|
const waSplit = tab512.wa.split(delimiter);
|
|
218
217
|
result.data.fields.forEach((field, index) => {
|
|
@@ -626,8 +625,7 @@ class RESTClient {
|
|
|
626
625
|
} : undefined)).data;
|
|
627
626
|
return result.packages.map(o => {
|
|
628
627
|
return Object.assign(Object.assign({}, o), {
|
|
629
|
-
manifest: Buffer.from(o.manifest, 'base64').toString('utf8')
|
|
630
|
-
dirty: o.dirty === 'X'
|
|
628
|
+
manifest: Buffer.from(o.manifest, 'base64').toString('utf8')
|
|
631
629
|
});
|
|
632
630
|
});
|
|
633
631
|
});
|