mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-11 17:12:46 +00:00
Merge pull request #25858 from vvu/sparkpost-domain-status
Added new SparkPost Sending Domain Status/Verify Attributes
This commit is contained in:
commit
92ec1bacb2
10
types/sparkpost/index.d.ts
vendored
10
types/sparkpost/index.d.ts
vendored
@ -1,6 +1,6 @@
|
||||
// Type definitions for sparkpost 2.1
|
||||
// Project: https://github.com/SparkPost/node-sparkpost
|
||||
// Definitions by: Joshua DeVinney <https://github.com/geoffreak>, Bond <https://github.com/bondz>
|
||||
// Definitions by: Joshua DeVinney <https://github.com/geoffreak>, Bond <https://github.com/bondz>, Victor <https://github.com/vvu>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
@ -1139,6 +1139,10 @@ declare namespace SparkPost {
|
||||
abuse_at_status: "valid" | "invalid" | "unverified" | "pending";
|
||||
/** Verification status of postmaster@ mailbox */
|
||||
postmaster_at_status: "valid" | "invalid" | "unverified" | "pending";
|
||||
/** Verification status of CNAME configuration */
|
||||
cname_status: "valid" | "invalid" | "unverified" | "pending";
|
||||
/** Verification status of MX configuration */
|
||||
mx_status: "valid" | "invalid" | "unverified" | "pending";
|
||||
}
|
||||
|
||||
interface VerifyOptions {
|
||||
@ -1173,6 +1177,10 @@ declare namespace SparkPost {
|
||||
*
|
||||
*/
|
||||
abuse_at_token?: string;
|
||||
/**
|
||||
* Request verification of CNAME record
|
||||
*/
|
||||
cname_verify?: boolean;
|
||||
}
|
||||
|
||||
interface VerifyResults extends Status {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user