/** * Reschedule Email Bulk via Infobip Service * Changes the scheduled send time for a bulk * * @see https://www.infobip.com/docs/api/channels/email/email-message-scheduling */ import type { ServiceOptions } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; import type { InfobipRescheduleEmailsParams, InfobipRescheduleEmailsRequest } from '@plyaz/types/api'; /** * Reschedule email bulk in Infobip * Uses endpoint: PUT /email/1/bulks * * @param params - Query parameters (bulkId) * @param payload - New sendAt time * @param options - Optional service options * @returns Promise * * @example * ```typescript * const result = await rescheduleInfobipEmails( * { bulkId: 'bulk-123' }, * { sendAt: '2025-10-24T10:00:00.000Z' } * ); * ``` */ export declare function rescheduleInfobipEmails(params: InfobipRescheduleEmailsParams, payload: InfobipRescheduleEmailsRequest, options?: ServiceOptions): Promise; //# sourceMappingURL=rescheduleEmails.d.ts.map