@managemint-solutions/sdk 0.24.0 → 0.24.1

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.
@@ -17,17 +17,10 @@ export type CreateNotificationInput = {
17
17
  recipient_id?: string;
18
18
  recipient_email?: string;
19
19
  recipient_phone?: string;
20
- /**
21
- * Where a reply to this mail should go. Support sets it to the ticket's own
22
- * `support+<email_token>@…` address, which is what makes replying by email land back on the
23
- * thread; everything else leaves it unset and replies go to the sending address.
24
- */
25
- reply_to?: string;
26
20
  };
27
21
  export type CreatedNotification = NotificationEntity & {
28
22
  organization_id: string | null;
29
23
  provider_message_id: string | null;
30
- reply_to: string | null;
31
24
  };
32
25
  /** The columns the queue worker needs to decide whether and how to send. */
33
26
  export type QueuedNotification = {
@@ -38,7 +31,6 @@ export type QueuedNotification = {
38
31
  template_id: string | null;
39
32
  template_variables: Record<string, string>;
40
33
  recipient_email: string | null;
41
- reply_to: string | null;
42
34
  attempts: number;
43
35
  sent_at: string | null;
44
36
  deleted: boolean;
@@ -69,8 +69,7 @@ const NOTIFICATION_CREATED_SELECT = `
69
69
  failure_reason,
70
70
  provider,
71
71
  provider_message_id,
72
- delivered_at,
73
- reply_to
72
+ delivered_at
74
73
  `;
75
74
  /** The columns the queue worker loads before it decides whether and how to send. */
76
75
  const NOTIFICATION_DELIVERY_SELECT = `
@@ -81,7 +80,6 @@ const NOTIFICATION_DELIVERY_SELECT = `
81
80
  template_id,
82
81
  template_variables,
83
82
  recipient_email,
84
- reply_to,
85
83
  attempts,
86
84
  sent_at,
87
85
  deleted
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managemint-solutions/sdk",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "description": "Typed Supabase data-access SDK for ManageMint Solutions",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Scott Bebington <scottbebington@gmail.com>",