@avallon-labs/sdk 32.2.0-staging.828 → 32.3.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2165,7 +2165,7 @@ interface Email {
2165
2165
  subject: string | null;
2166
2166
  preview: string | null;
2167
2167
  /** Why the email was stored without processing. Null for emails that were processed normally. */
2168
- ignored_reason: "sender_domain_not_allowed" | null;
2168
+ ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | null;
2169
2169
  sent_at: string;
2170
2170
  /** @deprecated */
2171
2171
  received_at: string;
@@ -2241,7 +2241,7 @@ interface EmailDetail {
2241
2241
  body_text: string | null;
2242
2242
  body_html: string | null;
2243
2243
  /** Why the email was stored without processing. Null for emails that were processed normally. */
2244
- ignored_reason: "sender_domain_not_allowed" | null;
2244
+ ignored_reason: "sender_domain_not_allowed" | "received_via_cc_or_bcc" | null;
2245
2245
  sent_at: string;
2246
2246
  /** @deprecated */
2247
2247
  received_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avallon-labs/sdk",
3
- "version": "32.2.0-staging.828",
3
+ "version": "32.3.0",
4
4
  "description": "Avallon API SDK - generated from OpenAPI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",