@certd/pipeline 1.20.8 → 1.20.10

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.
@@ -8,9 +8,11 @@ export type RegistryItem<T> = {
8
8
  target: T;
9
9
  };
10
10
  export declare class Registry<T> {
11
+ type: string;
11
12
  storage: {
12
13
  [key: string]: RegistryItem<T>;
13
14
  };
15
+ constructor(type: string);
14
16
  register(key: string, value: RegistryItem<T>): void;
15
17
  get(name: string): RegistryItem<T>;
16
18
  getStorage(): {
@@ -1,5 +1,6 @@
1
1
  import sleep from "./util.sleep";
2
2
  export * from "./util.log";
3
+ export * from "./util.file";
3
4
  export declare const utils: {
4
5
  sleep: typeof sleep;
5
6
  http: import("axios").AxiosInstance;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/pipeline",
3
3
  "private": false,
4
- "version": "1.20.8",
4
+ "version": "1.20.10",
5
5
  "main": "./dist/bundle.js",
6
6
  "module": "./dist/bundle.mjs",
7
7
  "types": "./dist/d/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "qs": "^6.11.2"
19
19
  },
20
20
  "devDependencies": {
21
- "@certd/acme-client": "^1.20.8",
21
+ "@certd/acme-client": "^1.20.10",
22
22
  "@rollup/plugin-commonjs": "^23.0.4",
23
23
  "@rollup/plugin-json": "^6.0.0",
24
24
  "@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": "80f96b5b26b092c25b0fb3dc463d35b8d6228b1e"
55
+ "gitHead": "a31f1c7f5e71fa946de9bf0283e11d6ce049b3e9"
56
56
  }