Skip to content

Commit 667b861

Browse files
committed
Bump version to 1.3.0 and add tracking options for email opens and clicks in DTOs
1 parent ce2b34b commit 667b861

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "indiepitcher",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"main": "./dist/index.js",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",

src/dtos.ts

+6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ export interface SendEmail {
5555
subject: string
5656
body: string
5757
bodyFormat: 'html' | 'markdown'
58+
trackEmailOpens?: boolean
59+
trackEmailClicks?: boolean
5860
}
5961

6062
export interface SendEmailToContact {
@@ -66,6 +68,8 @@ export interface SendEmailToContact {
6668
list: string
6769
delaySeconds?: number
6870
delayUntilDate?: string
71+
trackEmailOpens?: boolean
72+
trackEmailClicks?: boolean
6973
}
7074

7175
export interface SendEmailToMailingList {
@@ -75,4 +79,6 @@ export interface SendEmailToMailingList {
7579
list: string
7680
delaySeconds?: number
7781
delayUntilDate?: string
82+
trackEmailOpens?: boolean
83+
trackEmailClicks?: boolean
7884
}

0 commit comments

Comments
 (0)