@avallon-labs/sdk 26.9.0 → 26.10.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.
package/dist/index.d.ts CHANGED
@@ -4397,6 +4397,9 @@ type ReplyToEmailBodyAttachmentsItem = {
4397
4397
  type ReplyToEmailBody = {
4398
4398
  /** @minLength 1 */
4399
4399
  body_text: string;
4400
+ to?: string[];
4401
+ cc?: string[];
4402
+ bcc?: string[];
4400
4403
  /** @maxItems 10 */
4401
4404
  attachments?: ReplyToEmailBodyAttachmentsItem[];
4402
4405
  };
@@ -6986,7 +6989,9 @@ declare const useListEmailThreads: <TError = ErrorType<ErrorResponse>>(params?:
6986
6989
  swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => swr.Arguments);
6987
6990
  };
6988
6991
  /**
6989
- * Reply to an existing email thread via Nylas. The reply is sent to the original sender.
6992
+ * Reply to an existing email thread via Nylas. The reply is sent to the original sender by default.
6993
+
6994
+ Optionally include additional recipients via `to` (merged with the original sender), `cc`, and `bcc` arrays.
6990
6995
 
6991
6996
  Attach up to 10 files per request via the `attachments` array, each as a base64-encoded string. The total request body is limited to 6 MB, which leaves roughly 4 MB of decoded attachment data after base64 inflation. Larger requests are rejected with a 413 error.
6992
6997
  * @summary Reply to email