@nangohq/types 0.53.1 → 0.53.2

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.
@@ -131,7 +131,7 @@ export type OperationRow = Merge<Required<OperationRowInsert>, {
131
131
  /**
132
132
  * What is required to insert a Message
133
133
  */
134
- export type MessageRowInsert = Pick<MessageRow, 'type' | 'message'> & Partial<Omit<MessageRow, 'type' | 'message'>> & {
134
+ export type MessageRowInsert = Pick<MessageRow, 'type' | 'message' | 'createdAt'> & Partial<Omit<MessageRow, 'type' | 'message'>> & {
135
135
  id?: never;
136
136
  };
137
137
  export type MessageOrOperationRow = MessageRow | OperationRow;
@@ -28,6 +28,7 @@ export interface NangoProps {
28
28
  provider: string;
29
29
  lastSyncDate?: Date;
30
30
  syncId?: string | undefined;
31
+ syncVariant?: string | undefined;
31
32
  nangoConnectionId?: number;
32
33
  syncJobId?: number | undefined;
33
34
  track_deletes?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/types",
3
- "version": "0.53.1",
3
+ "version": "0.53.2",
4
4
  "description": "Types used in Nango applications",
5
5
  "type": "module",
6
6
  "typings": "dist/index.d.ts",