@clxmedia/types 1.0.185 → 1.0.186

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.
@@ -18,6 +18,10 @@ export interface EmailHubRecipient {
18
18
  Email: string;
19
19
  Name?: string;
20
20
  }
21
+ export interface EmailHubMessageMetadata {
22
+ tags: string[];
23
+ attributes: Record<string, string>;
24
+ }
21
25
  export interface EmailHubMessage {
22
26
  From: {
23
27
  Email: string;
@@ -33,6 +37,7 @@ export interface EmailHubMessage {
33
37
  CustomID?: string;
34
38
  Attachments?: EmailHubAttachment[];
35
39
  InlinedAttachments?: EmailHubInlineAttachment[];
40
+ Metadata?: EmailHubMessageMetadata;
36
41
  }
37
42
  export interface EmailHubSender {
38
43
  guid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.185",
3
+ "version": "1.0.186",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -106,4 +106,4 @@
106
106
  "url": "git+https://github.com/adsupnow/clxmedia-type-definitions.git"
107
107
  },
108
108
  "bugs": "https://github.com/adsupnow/clxmedia-type-definitions"
109
- }
109
+ }