@thi.ng/imago 1.2.0 → 1.2.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 -1
- package/api.d.ts +1 -1
- package/package.json +2 -2
- package/proc.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-07-14T10:
|
|
3
|
+
- **Last updated**: 2025-07-14T10:38:44Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
11
11
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
12
|
and/or version bumps of transitive dependencies.
|
|
13
13
|
|
|
14
|
+
### [1.2.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/imago@1.2.1) (2025-07-14)
|
|
15
|
+
|
|
16
|
+
#### 🩹 Bug fixes
|
|
17
|
+
|
|
18
|
+
- update `outputMeta` value type ([294afc8](https://github.com/thi-ng/umbrella/commit/294afc8))
|
|
19
|
+
|
|
14
20
|
## [1.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/imago@1.2.0) (2025-07-14)
|
|
15
21
|
|
|
16
22
|
#### 🚀 Features
|
package/api.d.ts
CHANGED
|
@@ -469,7 +469,7 @@ export interface ImgProcCtx {
|
|
|
469
469
|
* Recorded metadata of outputs which requested it, keyed by IDs given via
|
|
470
470
|
* {@link OutputSpec} / {@link output} (current `raw` format only).
|
|
471
471
|
*/
|
|
472
|
-
outputMeta: Record<string,
|
|
472
|
+
outputMeta: Record<string, Record<string, any>>;
|
|
473
473
|
/**
|
|
474
474
|
* See {@link ImgProcOpts.env} for details/comments.
|
|
475
475
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/imago",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "JSON & API-based declarative and extensible image processing trees/pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -189,5 +189,5 @@
|
|
|
189
189
|
"status": "alpha",
|
|
190
190
|
"year": 2024
|
|
191
191
|
},
|
|
192
|
-
"gitHead": "
|
|
192
|
+
"gitHead": "89a9dc2519be2461de39381de3c13e2771178c39\n"
|
|
193
193
|
}
|
package/proc.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export declare const processImage: (src: string | BufferLike | ArrayBuffer | Int
|
|
|
23
23
|
meta: sharp.Metadata;
|
|
24
24
|
env: import("@thi.ng/api").IObjectOf<any>;
|
|
25
25
|
outputs: Record<string, string | Buffer<ArrayBufferLike>>;
|
|
26
|
-
outputMeta: Record<string,
|
|
26
|
+
outputMeta: Record<string, Record<string, any>>;
|
|
27
27
|
}>;
|
|
28
28
|
/**
|
|
29
29
|
* Extensible polymorphic function performing a single image processing step.
|