UNPKG

z-deduper

Version:

This library will allow you to build a Custom Zapier deduper for your advanced polling triggers use cases in your Zapier app.

17 lines (16 loc) 297 B
export interface Records { [id: string]: string; } export interface Page { records: string[]; total?: number; } export interface DeduperChanges { created: any[]; updated: any[]; all: any[]; } export interface PollRecord { id: string | number; [key: string]: any; }