diff --git a/types/sparkpost/index.d.ts b/types/sparkpost/index.d.ts index b6914240b2..661d8b74c5 100644 --- a/types/sparkpost/index.d.ts +++ b/types/sparkpost/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for sparkpost 2.1 // Project: https://github.com/SparkPost/node-sparkpost -// Definitions by: Joshua DeVinney , Bond +// Definitions by: Joshua DeVinney , Bond , Victor // 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 {