@fgv/ts-utils 4.3.0 → 4.5.0-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/CHANGELOG.json +6 -0
- package/CHANGELOG.md +6 -1
- package/dist/ts-utils.d.ts +4248 -3531
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/index.d.ts +3 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +7 -3
- package/lib/index.js.map +1 -1
- package/lib/packlets/base/utils.d.ts.map +1 -1
- package/lib/packlets/base/utils.js +0 -1
- package/lib/packlets/base/utils.js.map +1 -1
- package/lib/packlets/collections/collectible.d.ts +82 -8
- package/lib/packlets/collections/collectible.d.ts.map +1 -1
- package/lib/packlets/collections/collectible.js +36 -11
- package/lib/packlets/collections/collectible.js.map +1 -1
- package/lib/packlets/collections/collector.d.ts +78 -79
- package/lib/packlets/collections/collector.d.ts.map +1 -1
- package/lib/packlets/collections/collector.js +83 -52
- package/lib/packlets/collections/collector.js.map +1 -1
- package/lib/packlets/collections/collectorValidator.d.ts +89 -0
- package/lib/packlets/collections/collectorValidator.d.ts.map +1 -0
- package/lib/packlets/collections/collectorValidator.js +98 -0
- package/lib/packlets/collections/collectorValidator.js.map +1 -0
- package/lib/packlets/collections/convertingCollector.d.ts +77 -36
- package/lib/packlets/collections/convertingCollector.d.ts.map +1 -1
- package/lib/packlets/collections/convertingCollector.js +71 -26
- package/lib/packlets/collections/convertingCollector.js.map +1 -1
- package/lib/packlets/collections/convertingCollectorValidator.d.ts +69 -0
- package/lib/packlets/collections/convertingCollectorValidator.d.ts.map +1 -0
- package/lib/packlets/collections/{collectorConverter.js → convertingCollectorValidator.js} +28 -15
- package/lib/packlets/collections/convertingCollectorValidator.js.map +1 -0
- package/lib/packlets/collections/index.d.ts +7 -5
- package/lib/packlets/collections/index.d.ts.map +1 -1
- package/lib/packlets/collections/index.js +7 -5
- package/lib/packlets/collections/index.js.map +1 -1
- package/lib/packlets/collections/keyValueConverters.d.ts +1 -17
- package/lib/packlets/collections/keyValueConverters.d.ts.map +1 -1
- package/lib/packlets/collections/keyValueConverters.js +1 -8
- package/lib/packlets/collections/keyValueConverters.js.map +1 -1
- package/lib/packlets/collections/readonlyResultMap.d.ts +0 -4
- package/lib/packlets/collections/readonlyResultMap.d.ts.map +1 -1
- package/lib/packlets/collections/readonlyResultMap.js.map +1 -1
- package/lib/packlets/collections/resultMap.d.ts +0 -4
- package/lib/packlets/collections/resultMap.d.ts.map +1 -1
- package/lib/packlets/collections/resultMap.js +0 -6
- package/lib/packlets/collections/resultMap.js.map +1 -1
- package/lib/packlets/collections/{resultMapConverter.d.ts → resultMapValidator.d.ts} +11 -11
- package/lib/packlets/collections/{resultMapConverter.d.ts.map → resultMapValidator.d.ts.map} +1 -1
- package/lib/packlets/collections/{resultMapConverter.js → resultMapValidator.js} +6 -6
- package/lib/packlets/collections/{resultMapConverter.js.map → resultMapValidator.js.map} +1 -1
- package/lib/packlets/collections/validatingCollector.d.ts +69 -0
- package/lib/packlets/collections/validatingCollector.d.ts.map +1 -0
- package/lib/packlets/collections/validatingCollector.js +67 -0
- package/lib/packlets/collections/validatingCollector.js.map +1 -0
- package/lib/packlets/collections/validatingConvertingCollector.d.ts +59 -0
- package/lib/packlets/collections/validatingConvertingCollector.d.ts.map +1 -0
- package/lib/packlets/collections/validatingConvertingCollector.js +68 -0
- package/lib/packlets/collections/validatingConvertingCollector.js.map +1 -0
- package/lib/packlets/collections/validatingResultMap.d.ts +53 -0
- package/lib/packlets/collections/validatingResultMap.d.ts.map +1 -0
- package/lib/packlets/collections/validatingResultMap.js +61 -0
- package/lib/packlets/collections/validatingResultMap.js.map +1 -0
- package/lib/packlets/file-tree/directoryItem.d.ts +47 -0
- package/lib/packlets/file-tree/directoryItem.d.ts.map +1 -0
- package/lib/packlets/file-tree/directoryItem.js +71 -0
- package/lib/packlets/file-tree/directoryItem.js.map +1 -0
- package/lib/packlets/file-tree/fileItem.d.ts +64 -0
- package/lib/packlets/file-tree/fileItem.d.ts.map +1 -0
- package/lib/packlets/file-tree/fileItem.js +93 -0
- package/lib/packlets/file-tree/fileItem.js.map +1 -0
- package/lib/packlets/file-tree/fileTree.d.ts +84 -0
- package/lib/packlets/file-tree/fileTree.d.ts.map +1 -0
- package/lib/packlets/file-tree/fileTree.js +135 -0
- package/lib/packlets/file-tree/fileTree.js.map +1 -0
- package/lib/packlets/file-tree/fileTreeAccessors.d.ts +134 -0
- package/lib/packlets/file-tree/fileTreeAccessors.d.ts.map +1 -0
- package/lib/packlets/file-tree/fileTreeAccessors.js +24 -0
- package/lib/packlets/file-tree/fileTreeAccessors.js.map +1 -0
- package/lib/packlets/file-tree/fsTree.d.ts +45 -0
- package/lib/packlets/file-tree/fsTree.d.ts.map +1 -0
- package/lib/packlets/file-tree/fsTree.js +116 -0
- package/lib/packlets/file-tree/fsTree.js.map +1 -0
- package/lib/packlets/file-tree/in-memory/inMemoryTree.d.ts +67 -0
- package/lib/packlets/file-tree/in-memory/inMemoryTree.d.ts.map +1 -0
- package/lib/packlets/file-tree/in-memory/inMemoryTree.js +150 -0
- package/lib/packlets/file-tree/in-memory/inMemoryTree.js.map +1 -0
- package/lib/packlets/file-tree/in-memory/index.d.ts +2 -0
- package/lib/packlets/file-tree/in-memory/index.d.ts.map +1 -0
- package/lib/packlets/file-tree/in-memory/index.js +39 -0
- package/lib/packlets/file-tree/in-memory/index.js.map +1 -0
- package/lib/packlets/file-tree/in-memory/treeBuilder.d.ts +106 -0
- package/lib/packlets/file-tree/in-memory/treeBuilder.d.ts.map +1 -0
- package/lib/packlets/file-tree/in-memory/treeBuilder.js +170 -0
- package/lib/packlets/file-tree/in-memory/treeBuilder.js.map +1 -0
- package/lib/packlets/file-tree/index.d.ts +8 -0
- package/lib/packlets/file-tree/index.d.ts.map +1 -0
- package/lib/packlets/file-tree/index.js +46 -0
- package/lib/packlets/file-tree/index.js.map +1 -0
- package/lib/packlets/hash/crcNormalizer.js +1 -1
- package/lib/packlets/hash/crcNormalizer.js.map +1 -1
- package/package.json +15 -15
- package/lib/packlets/collections/collectorConverter.d.ts +0 -59
- package/lib/packlets/collections/collectorConverter.d.ts.map +0 -1
- package/lib/packlets/collections/collectorConverter.js.map +0 -1
- package/lib/packlets/collections/collectors.d.ts +0 -32
- package/lib/packlets/collections/collectors.d.ts.map +0 -1
- package/lib/packlets/collections/collectors.js +0 -57
- package/lib/packlets/collections/collectors.js.map +0 -1
- package/lib/packlets/collections/convertingResultMap.d.ts +0 -73
- package/lib/packlets/collections/convertingResultMap.d.ts.map +0 -1
- package/lib/packlets/collections/convertingResultMap.js +0 -102
- package/lib/packlets/collections/convertingResultMap.js.map +0 -1
package/CHANGELOG.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Change Log - @fgv/ts-utils
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 01 Feb 2025 17:13:10 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.4.0
|
|
6
|
+
Sat, 01 Feb 2025 17:13:10 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 4.3.0
|
|
6
11
|
Thu, 30 Jan 2025 00:35:17 GMT
|