piclist 2.1.0 → 2.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 +12 -0
- package/dist/core/Lifecycle.d.ts +4 -1
- package/dist/index.js +2 -2
- package/dist/types/index.d.ts +12 -0
- package/dist/utils/common.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## (2026-01-10)
|
|
2
|
+
|
|
3
|
+
* :package: Chore(custom): downgrade sharp ace6ee0
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## (2026-01-10)
|
|
8
|
+
|
|
9
|
+
* :sparkles: Feature(custom): support picbed specific compress/watermark/rename/autorename/manualrenam 74e8a6f
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## (2026-01-09)
|
|
2
14
|
|
|
3
15
|
* :arrow_up: Upgrade(custom): upgrade to piclist/store 3.0.1 c4aecc8
|
package/dist/core/Lifecycle.d.ts
CHANGED
|
@@ -7,7 +7,10 @@ export declare class Lifecycle extends EventEmitter {
|
|
|
7
7
|
private initializeDirs;
|
|
8
8
|
private downloadTTF;
|
|
9
9
|
private getProcessingOptions;
|
|
10
|
-
|
|
10
|
+
getUploaderType(ctx: IPicGo): {
|
|
11
|
+
picBed: string;
|
|
12
|
+
id: string;
|
|
13
|
+
};
|
|
11
14
|
private getSkipExtensions;
|
|
12
15
|
start(input: any[], skipProcess?: boolean): Promise<IPicGo>;
|
|
13
16
|
private initializeContext;
|