Skip to content

Commit

Permalink
fix: RecordMetadata date field to string
Browse files Browse the repository at this point in the history
  • Loading branch information
TBonnin committed Mar 7, 2024
1 parent 9ed9d90 commit 214409f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/node-client/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ export interface NangoSyncWebhookBody {
export type LastAction = 'ADDED' | 'UPDATED' | 'DELETED';

export interface RecordMetadata {
first_seen_at: Date;
last_seen_at: Date;
first_seen_at: string;
last_seen_at: string;
last_action: LastAction;
deleted_at: Date | null;
deleted_at: string | null;
cursor: string;
}

Expand Down

0 comments on commit 214409f

Please sign in to comment.