@certd/pipeline 1.1.0 → 1.1.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.
@@ -12,4 +12,5 @@ export declare class FileStore {
12
12
  readFile(filePath: string): Buffer | null;
13
13
  writeFile(filename: string, file: Buffer): string;
14
14
  private buildFilePath;
15
+ deleteByParent(scope: string, parent: string): void;
15
16
  }
@@ -2,3 +2,4 @@ export * from "./executor";
2
2
  export * from "./run-history";
3
3
  export * from "./context";
4
4
  export * from "./storage";
5
+ export * from "./file-store";
@@ -61,6 +61,7 @@ export declare abstract class AbstractTaskPlugin implements ITaskPlugin {
61
61
  clearLastStatus(): void;
62
62
  getFiles(): FileItem[] | undefined;
63
63
  setCtx(ctx: TaskInstanceContext): void;
64
+ linkFile(file: FileItem): void;
64
65
  saveFile(filename: string, file: Buffer): void;
65
66
  get pipeline(): Pipeline;
66
67
  get step(): Step;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/pipeline",
3
3
  "private": false,
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "main": "./dist/bundle.js",
6
6
  "module": "./dist/bundle.mjs",
7
7
  "types": "./dist/d/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "uuid": "^8.3.2"
20
20
  },
21
21
  "devDependencies": {
22
- "@certd/acme-client": "^1.1.0",
22
+ "@certd/acme-client": "^1.1.1",
23
23
  "@rollup/plugin-commonjs": "^23.0.4",
24
24
  "@rollup/plugin-json": "^6.0.0",
25
25
  "@rollup/plugin-node-resolve": "^15.0.1",
@@ -52,5 +52,5 @@
52
52
  "vite": "^4.3.8",
53
53
  "vue-tsc": "^1.6.5"
54
54
  },
55
- "gitHead": "cd4b9527c3ea53b48468f0b02e86dec901c5a2b0"
55
+ "gitHead": "68eb4198f153b6976441d46c608025b8bc5fa284"
56
56
  }