@avallon-labs/sdk 36.5.0 → 36.6.0-staging.913
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.
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2195,7 +2195,7 @@ interface Email {
|
|
|
2195
2195
|
subject: string | null;
|
|
2196
2196
|
preview: string | null;
|
|
2197
2197
|
/** Why the email was stored without processing. Null for emails that were processed normally. */
|
|
2198
|
-
ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | null;
|
|
2198
|
+
ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | "sent_from_own_inbox" | null;
|
|
2199
2199
|
sent_at: string;
|
|
2200
2200
|
/** @deprecated */
|
|
2201
2201
|
received_at: string;
|
|
@@ -2271,7 +2271,7 @@ interface EmailDetail {
|
|
|
2271
2271
|
body_text: string | null;
|
|
2272
2272
|
body_html: string | null;
|
|
2273
2273
|
/** Why the email was stored without processing. Null for emails that were processed normally. */
|
|
2274
|
-
ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | null;
|
|
2274
|
+
ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | "sent_from_own_inbox" | null;
|
|
2275
2275
|
sent_at: string;
|
|
2276
2276
|
/** @deprecated */
|
|
2277
2277
|
received_at: string;
|