mailpit-api 1.6.0 → 1.7.0
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/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +8 -7
package/dist/index.d.mts
CHANGED
|
@@ -35,6 +35,15 @@ interface MailpitAttachmentResponse {
|
|
|
35
35
|
PartID: string;
|
|
36
36
|
/** Size in bytes */
|
|
37
37
|
Size: number;
|
|
38
|
+
/** Checksums for the attachment */
|
|
39
|
+
Checksums: {
|
|
40
|
+
/** MD5 checksum */
|
|
41
|
+
MD5: string;
|
|
42
|
+
/** SHA1 checksum */
|
|
43
|
+
SHA1: string;
|
|
44
|
+
/** SHA256 checksum */
|
|
45
|
+
SHA256: string;
|
|
46
|
+
};
|
|
38
47
|
}
|
|
39
48
|
/** Represents information about a Chaos trigger */
|
|
40
49
|
interface MailpitChaosTrigger {
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,15 @@ interface MailpitAttachmentResponse {
|
|
|
35
35
|
PartID: string;
|
|
36
36
|
/** Size in bytes */
|
|
37
37
|
Size: number;
|
|
38
|
+
/** Checksums for the attachment */
|
|
39
|
+
Checksums: {
|
|
40
|
+
/** MD5 checksum */
|
|
41
|
+
MD5: string;
|
|
42
|
+
/** SHA1 checksum */
|
|
43
|
+
SHA1: string;
|
|
44
|
+
/** SHA256 checksum */
|
|
45
|
+
SHA256: string;
|
|
46
|
+
};
|
|
38
47
|
}
|
|
39
48
|
/** Represents information about a Chaos trigger */
|
|
40
49
|
interface MailpitChaosTrigger {
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mailpit-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "A TypeScript client for interacting with Mailpit's REST API.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/mpspahr/mailpit-api.git"
|
|
7
|
+
"url": "git+https://github.com/mpspahr/mailpit-api.git"
|
|
8
8
|
},
|
|
9
9
|
"homepage": "https://mpspahr.github.io/mailpit-api/",
|
|
10
10
|
"bugs": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"registry": "https://registry.npmjs.org/",
|
|
15
|
-
"provenance": true
|
|
15
|
+
"provenance": true,
|
|
16
|
+
"access": "public"
|
|
16
17
|
},
|
|
17
18
|
"engines": {
|
|
18
19
|
"node": ">=18.0.0"
|
|
@@ -66,19 +67,19 @@
|
|
|
66
67
|
"devDependencies": {
|
|
67
68
|
"@eslint/js": "^9.39.2",
|
|
68
69
|
"@jest/globals": "^30.2.0",
|
|
69
|
-
"@types/node": "^
|
|
70
|
+
"@types/node": "^24.10.9",
|
|
70
71
|
"@types/ws": "^8.18.1",
|
|
71
72
|
"dotenv": "^17.2.3",
|
|
72
73
|
"eslint": "^9.39.2",
|
|
73
74
|
"eslint-plugin-jest": "^29.12.1",
|
|
74
75
|
"jest": "^30.2.0",
|
|
75
|
-
"prettier": "^3.
|
|
76
|
+
"prettier": "^3.8.1",
|
|
76
77
|
"ts-jest": "^29.4.6",
|
|
77
78
|
"tsup": "^8.5.1",
|
|
78
79
|
"tsx": "^4.21.0",
|
|
79
|
-
"typedoc": "^0.28.
|
|
80
|
+
"typedoc": "^0.28.16",
|
|
80
81
|
"typedoc-github-theme": "^0.3.1",
|
|
81
82
|
"typescript": "^5.9.3",
|
|
82
|
-
"typescript-eslint": "^8.
|
|
83
|
+
"typescript-eslint": "^8.54.0"
|
|
83
84
|
}
|
|
84
85
|
}
|