piclist 1.9.3 → 1.9.5

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 CHANGED
@@ -1,3 +1,21 @@
1
+ ## :tada: 1.9.5 (2024-09-11)
2
+
3
+
4
+ ### :sparkles: Features
5
+
6
+ * **custom:** optimize second uploader ([58ae7ea](https://github.com/Kuingsmile/PicList-Core/commit/58ae7ea))
7
+
8
+
9
+
10
+ ## :tada: 1.9.4 (2024-09-03)
11
+
12
+
13
+ ### :bug: Bug Fixes
14
+
15
+ * **custom:** fix webdav url bug ([38bc174](https://github.com/Kuingsmile/PicList-Core/commit/38bc174))
16
+
17
+
18
+
1
19
  ## :tada: 1.9.3 (2024-08-20)
2
20
 
3
21
 
@@ -7,7 +7,7 @@ export declare class Lifecycle extends EventEmitter {
7
7
  constructor(ctx: IPicGo);
8
8
  private downloadTTF;
9
9
  private helpGetOption;
10
- start(input: any[]): Promise<IPicGo>;
10
+ start(input: any[], skipProcess?: boolean): Promise<IPicGo>;
11
11
  private preprocess;
12
12
  private buildInRename;
13
13
  private beforeTransform;
@@ -18,6 +18,7 @@ export declare class PicGo extends EventEmitter implements IPicGo {
18
18
  output: IImgInfo[];
19
19
  input: any[];
20
20
  rawInput: any[];
21
+ processedInput: any[];
21
22
  pluginHandler: PluginHandler;
22
23
  /**
23
24
  * @deprecated will be removed in v1.5.0+
@@ -47,4 +48,5 @@ export declare class PicGo extends EventEmitter implements IPicGo {
47
48
  unsetConfig(key: string, propName: string): void;
48
49
  get request(): IRequest['request'];
49
50
  upload(input?: any[]): Promise<IImgInfo[] | Error>;
51
+ uploadReturnCtx(input?: any[], skipProcess?: boolean): Promise<IPicGo>;
50
52
  }