Type alias SyncQuery

SyncQuery: {
    initial?: true;
    limit?: number;
    nextPageToken?: string;
    nextSyncToken?: string;
} & ({
    content_type: string;
    type: "Entry";
} | {
    type?: "Asset" | "Entry" | "Deletion" | "DeletedAsset" | "DeletedEntry";
})

Type declaration

  • Optional initial?: true
  • Optional limit?: number
  • Optional nextPageToken?: string
  • Optional nextSyncToken?: string