chromiumly 2.0.5 → 2.0.7

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
@@ -51,7 +51,7 @@ GOTENBERG_ENDPOINT=http://localhost:3000
51
51
  ```json
52
52
  {
53
53
  "gotenberg": {
54
- "enpdoint": "http://localhost:3000"
54
+ "endpoint": "http://localhost:3000"
55
55
  }
56
56
  }
57
57
  ```
@@ -1,14 +1,14 @@
1
- declare type PageSize = {
1
+ type PageSize = {
2
2
  width: number;
3
3
  height: number;
4
4
  };
5
- declare type PageMargins = {
5
+ type PageMargins = {
6
6
  top: number;
7
7
  bottom: number;
8
8
  left: number;
9
9
  right: number;
10
10
  };
11
- export declare type PageProperties = {
11
+ export type PageProperties = {
12
12
  size?: PageSize;
13
13
  margins?: PageMargins;
14
14
  preferCssPageSize?: boolean;
@@ -1,4 +1,4 @@
1
- export declare type PageProperties = {
1
+ export type PageProperties = {
2
2
  landscape?: boolean;
3
3
  nativePageRanges?: {
4
4
  from: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromiumly",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
@@ -36,22 +36,22 @@
36
36
  "@types/config": "3.3.0",
37
37
  "@types/dotenv": "8.2.0",
38
38
  "@types/form-data": "2.5.0",
39
- "@types/jest": "29.0.1",
40
- "@types/node": "17.0.22",
39
+ "@types/jest": "29.2.6",
40
+ "@types/node": "18.11.18",
41
41
  "@types/node-fetch": "2.6.2",
42
- "@typescript-eslint/eslint-plugin": "5.36.2",
43
- "@typescript-eslint/parser": "5.36.2",
44
- "eslint": "8.23.0",
45
- "jest": "29.0.3",
46
- "jest-junit": "14.0.1",
47
- "ts-jest": "29.0.0",
42
+ "@typescript-eslint/eslint-plugin": "5.49.0",
43
+ "@typescript-eslint/parser": "5.49.0",
44
+ "eslint": "8.33.0",
45
+ "jest": "29.3.1",
46
+ "jest-junit": "15.0.0",
47
+ "ts-jest": "29.0.5",
48
48
  "ts-node": "10.9.1",
49
- "typescript": "4.8.3"
49
+ "typescript": "4.9.5"
50
50
  },
51
51
  "dependencies": {
52
- "config": "^3.3.7",
53
- "dotenv": "^16.0.1",
54
- "form-data": "^4.0.0",
52
+ "config": "3.3.9",
53
+ "dotenv": "16.0.3",
54
+ "form-data": "4.0.0",
55
55
  "node-fetch": "2"
56
56
  }
57
57
  }