@spytecgps/nova-orm 0.0.159 → 0.0.160

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.
@@ -14,6 +14,7 @@ export interface CreateNotificationRecipientParams {
14
14
  unsubscribed: boolean;
15
15
  userId: string;
16
16
  dataSourceTypeId?: number;
17
+ unsubscribedInfo?: string;
17
18
  }
18
19
  export interface UpdateNotificationRecipientParams {
19
20
  filters: {
@@ -25,6 +26,7 @@ export interface UpdateNotificationRecipientParams {
25
26
  isEnabled?: boolean;
26
27
  isUserProfile?: boolean;
27
28
  unsubscribed?: boolean;
29
+ unsubscribedInfo?: string;
28
30
  };
29
31
  }
30
32
  export interface UpdateUsersNotificationsUnsuscribedStatusParams {
@@ -34,6 +36,7 @@ export interface UpdateUsersNotificationsUnsuscribedStatusParams {
34
36
  };
35
37
  values: {
36
38
  unsubscribed?: boolean;
39
+ unsubscribedInfo?: string;
37
40
  };
38
41
  }
39
42
  export interface DeleteNotificationRecipientsParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "0.0.159",
3
+ "version": "0.0.160",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",