@rainbow-o23/n7 1.0.45 → 1.0.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rainbow-o23/n7",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "o23 word print",
5
5
  "main": "index.cjs",
6
6
  "module": "index.js",
@@ -21,9 +21,9 @@
21
21
  "url": "https://github.com/InsureMO/rainbow-o23/issues"
22
22
  },
23
23
  "dependencies": {
24
- "@rainbow-o23/n3": "1.0.45",
25
- "@rainbow-o23/n4": "1.0.45",
26
- "docx-templates": "^4.11.4"
24
+ "@rainbow-o23/n3": "1.0.47",
25
+ "@rainbow-o23/n4": "1.0.47",
26
+ "docx-templates": "^4.13.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/core": "^7.23.9",
@@ -33,10 +33,10 @@
33
33
  "@rollup/plugin-eslint": "^9.0.3",
34
34
  "@types/events": "^3.0.1",
35
35
  "@types/node": "18.16.12",
36
- "@typescript-eslint/eslint-plugin": "^7.18.0",
37
- "@typescript-eslint/parser": "^7.18.0",
36
+ "@typescript-eslint/eslint-plugin": "^8.13.0",
37
+ "@typescript-eslint/parser": "^8.13.0",
38
38
  "eslint": "^9.8.0",
39
- "rollup": "^3.7.0",
39
+ "rollup": "^3.29.5",
40
40
  "rollup-plugin-tslint": "^0.2.2",
41
41
  "rollup-plugin-typescript2": "^0.34.1",
42
42
  "tslib": "^2.4.1",
@@ -67,7 +67,6 @@
67
67
  "testEnvironment": "node"
68
68
  },
69
69
  "volta": {
70
- "node": "20.17.0",
71
- "yarn": "1.22.21"
70
+ "extends": "../package.json"
72
71
  }
73
72
  }
@@ -20,7 +20,7 @@ export interface PrintWordPipelineStepInFragment {
20
20
  template: Buffer;
21
21
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
22
22
  data: any;
23
- // eslint-disable-next-line @typescript-eslint/ban-types
23
+ // eslint-disable-next-line @typescript-eslint/no-wrapper-object-types
24
24
  jsContext?: Object;
25
25
  }
26
26
 
@@ -64,7 +64,7 @@ export class PrintWordPipelineStep<In = PipelineStepPayload, Out = PipelineStepP
64
64
  };
65
65
  }
66
66
 
67
- // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
67
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-wrapper-object-types
68
68
  protected async printWord(templateWord: Buffer, data: any, jsContext?: Object): Promise<Buffer> {
69
69
  const buffer = await createReport({
70
70
  ...this.getCreateReportOptions(),