@types/nodemailer 7.0.2 → 7.0.4

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.
nodemailer/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for nodemailer (https://github.com/nodema
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 29 Sep 2025 19:02:13 GMT
11
+ * Last updated: Tue, 18 Nov 2025 02:14:41 GMT
12
12
  * Dependencies: [@aws-sdk/client-sesv2](https://npmjs.com/package/@aws-sdk/client-sesv2), [@types/node](https://npmjs.com/package/@types/node)
13
13
 
14
14
  # Credits
@@ -6,7 +6,7 @@ declare namespace addressparser {
6
6
 
7
7
  interface Group {
8
8
  name: string;
9
- group: AddressOrGroup[];
9
+ group: Address[];
10
10
  }
11
11
 
12
12
  type AddressOrGroup = Address | Group;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import SMTPConnection = require("../smtp-connection");
4
4
 
5
- import * as stream from "stream";
5
+ import stream = require("stream");
6
6
 
7
7
  export type LoggerLevel = "trace" | "debug" | "info" | "warn" | "error" | "fatal";
8
8
 
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
 
3
3
  import { EventEmitter } from "events";
4
- import * as stream from "stream";
4
+ import stream = require("stream");
5
5
 
6
6
  import { Transport, TransportOptions } from "../..";
7
7
  import * as shared from "../shared";
nodemailer/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/nodemailer",
3
- "version": "7.0.2",
3
+ "version": "7.0.4",
4
4
  "description": "TypeScript definitions for nodemailer",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
6
6
  "license": "MIT",
@@ -34,6 +34,6 @@
34
34
  "@types/node": "*"
35
35
  },
36
36
  "peerDependencies": {},
37
- "typesPublisherContentHash": "f16b96ef828252b3ffc0396dad6d731eff543651ed32b17e4383a056a8429601",
37
+ "typesPublisherContentHash": "1815a02f9f7b603566ee86fc019e666089dbec745130a4554896fc5c1e87ea03",
38
38
  "typeScriptVersion": "5.2"
39
39
  }