/** * Object describing Notification History * * @remarks * Object describing Notification History * * @property {string | null} id - Id of the Alert * @property {string | null} name - Friendly name (must be unique) * @property {string} filterType - Type of the filter * */ import { Types } from '@notifi-network/notifi-graphql'; export declare type NotificationHistory = Readonly<{ nodes: Array | undefined; pageInfo: { hasNextPage: boolean; endCursor?: string | undefined; }; }>; export declare type Target = { type: TargetType; name?: string; }; declare enum TargetType { EMAIL = "EMAIL", SMS = "SMS", TELEGRAM = "TELEGRAM", WEBHOOK = "WEBHOOK" } export declare type AccountBalanceChangedEventDetails = Extract; export declare type BroadcastMessageEventDetails = Extract; export declare type DAOProposalChangedEventDetails = Extract; export declare type DirectTenantMessageEventDetails = Extract; export declare type GenericEventDetails = Extract; export declare type HealthValueOverThresholdEventDetails = Extract; export declare type NftAuctionChangedEventDetails = Extract; export declare type NftCollectionsReportEventDetails = Extract; export declare type NftCollectionStats = Extract; export declare type WalletsActivityReportEventDetails = Extract; export declare type WalletsActivityReportWallet = Extract; export declare type EntryDetailType = AccountBalanceChangedEventDetails | BroadcastMessageEventDetails | DAOProposalChangedEventDetails | DirectTenantMessageEventDetails | GenericEventDetails | HealthValueOverThresholdEventDetails | NftAuctionChangedEventDetails | NftCollectionsReportEventDetails | WalletsActivityReportEventDetails; export declare type NotificationHistoryEntry = Extract; export {}; //# sourceMappingURL=NotificationHistory.d.ts.map