sy-api-pro 1.0.0 → 1.0.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/README.md CHANGED
@@ -35,6 +35,7 @@ const config: ConfigModels = {
35
35
  deleteParentDTO: [], // (string | RegExp)[];
36
36
  },
37
37
  ],
38
+ apiHeaderTemplate: [], // api文件头部模版
38
39
  };
39
40
 
40
41
  module.exports = config;
package/bin/model.d.ts CHANGED
@@ -9,5 +9,6 @@ export interface ConfigModels {
9
9
  apiBaseName?: string;
10
10
  ignoreParamsDTO?: string[];
11
11
  deleteParentDTO?: (string | RegExp)[];
12
- }[]
12
+ }[];
13
+ apiHeaderTemplate: string[];
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sy-api-pro",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "./bin/index.ts",
5
5
  "types": "./bin/model.d.ts",
6
6
  "bin": {