@spytecgps/nova-orm 0.0.159 → 0.0.161

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.
@@ -242,8 +242,9 @@ export interface UpsertBillingKlarnaCustomerParams {
242
242
  createdAt?: Date | null;
243
243
  }
244
244
  export interface UpsertBillingKlarnaOrderParams {
245
- id: string;
245
+ deviceId: string;
246
246
  klarnaCustomerId: string;
247
+ orderId: string;
247
248
  planId?: string | null;
248
249
  createdAt?: Date | null;
249
250
  subscriptionStart?: Date | null;
@@ -256,5 +257,4 @@ export interface UpsertBillingKlarnaOrderParams {
256
257
  addons?: object | null;
257
258
  nextBillingPeriodAmount?: number | null;
258
259
  paymentMethodToken?: string | null;
259
- deviceId?: string | null;
260
260
  }
@@ -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.161",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",