2025-11-13 13:13:34 -07:00

231 lines
6.9 KiB
TypeScript

import { APIResource } from "../../resource.js";
import * as Core from "../../core.js";
import * as Shared from "../shared.js";
export declare class Messages extends APIResource {
/**
* Acknowledge + Retry messages from a Queue
*
* @example
* ```ts
* const response = await client.queues.messages.ack(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
ack(queueId: string, params: MessageAckParams, options?: Core.RequestOptions): Core.APIPromise<MessageAckResponse>;
/**
* Push a batch of message to a Queue
*
* @example
* ```ts
* const response = await client.queues.messages.bulkPush(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
bulkPush(queueId: string, params: MessageBulkPushParams, options?: Core.RequestOptions): Core.APIPromise<MessageBulkPushResponse>;
/**
* Pull a batch of messages from a Queue
*
* @example
* ```ts
* const response = await client.queues.messages.pull(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
pull(queueId: string, params: MessagePullParams, options?: Core.RequestOptions): Core.APIPromise<MessagePullResponse>;
/**
* Push a message to a Queue
*
* @example
* ```ts
* const response = await client.queues.messages.push(
* '023e105f4ecef8ad9ca31a8372d0c353',
* { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
* );
* ```
*/
push(queueId: string, params: MessagePushParams, options?: Core.RequestOptions): Core.APIPromise<MessagePushResponse>;
}
export interface MessageAckResponse {
/**
* The number of messages that were succesfully acknowledged.
*/
ackCount?: number;
/**
* The number of messages that were succesfully retried.
*/
retryCount?: number;
warnings?: Array<string>;
}
export interface MessageBulkPushResponse {
errors?: Array<Shared.ResponseInfo>;
messages?: Array<string>;
/**
* Indicates if the API call was successful or not.
*/
success?: true;
}
export interface MessagePullResponse {
/**
* The number of unacknowledged messages in the queue
*/
message_backlog_count?: number;
messages?: Array<MessagePullResponse.Message>;
}
export declare namespace MessagePullResponse {
interface Message {
id?: string;
attempts?: number;
body?: string;
/**
* An ID that represents an "in-flight" message that has been pulled from a Queue.
* You must hold on to this ID and use it to acknowledge this message.
*/
lease_id?: string;
metadata?: unknown;
timestamp_ms?: number;
}
}
export interface MessagePushResponse {
errors?: Array<Shared.ResponseInfo>;
messages?: Array<string>;
/**
* Indicates if the API call was successful or not.
*/
success?: true;
}
export interface MessageAckParams {
/**
* Path param: A Resource identifier.
*/
account_id: string;
/**
* Body param:
*/
acks?: Array<MessageAckParams.Ack>;
/**
* Body param:
*/
retries?: Array<MessageAckParams.Retry>;
}
export declare namespace MessageAckParams {
interface Ack {
/**
* An ID that represents an "in-flight" message that has been pulled from a Queue.
* You must hold on to this ID and use it to acknowledge this message.
*/
lease_id?: string;
}
interface Retry {
/**
* The number of seconds to delay before making the message available for another
* attempt.
*/
delay_seconds?: number;
/**
* An ID that represents an "in-flight" message that has been pulled from a Queue.
* You must hold on to this ID and use it to acknowledge this message.
*/
lease_id?: string;
}
}
export interface MessageBulkPushParams {
/**
* Path param: A Resource identifier.
*/
account_id: string;
/**
* Body param: The number of seconds to wait for attempting to deliver this batch
* to consumers
*/
delay_seconds?: number;
/**
* Body param:
*/
messages?: Array<MessageBulkPushParams.MqQueueMessageText | MessageBulkPushParams.MqQueueMessageJson>;
}
export declare namespace MessageBulkPushParams {
interface MqQueueMessageText {
body?: string;
content_type?: 'text';
/**
* The number of seconds to wait for attempting to deliver this message to
* consumers
*/
delay_seconds?: number;
}
interface MqQueueMessageJson {
body?: unknown;
content_type?: 'json';
/**
* The number of seconds to wait for attempting to deliver this message to
* consumers
*/
delay_seconds?: number;
}
}
export interface MessagePullParams {
/**
* Path param: A Resource identifier.
*/
account_id: string;
/**
* Body param: The maximum number of messages to include in a batch.
*/
batch_size?: number;
/**
* Body param: The number of milliseconds that a message is exclusively leased.
* After the timeout, the message becomes available for another attempt.
*/
visibility_timeout_ms?: number;
}
export type MessagePushParams = MessagePushParams.MqQueueMessageText | MessagePushParams.MqQueueMessageJson;
export declare namespace MessagePushParams {
interface MqQueueMessageText {
/**
* Path param: A Resource identifier.
*/
account_id: string;
/**
* Body param:
*/
body?: string;
/**
* Body param:
*/
content_type?: 'text';
/**
* Body param: The number of seconds to wait for attempting to deliver this message
* to consumers
*/
delay_seconds?: number;
}
interface MqQueueMessageJson {
/**
* Path param: A Resource identifier.
*/
account_id: string;
/**
* Body param:
*/
body?: unknown;
/**
* Body param:
*/
content_type?: 'json';
/**
* Body param: The number of seconds to wait for attempting to deliver this message
* to consumers
*/
delay_seconds?: number;
}
}
export declare namespace Messages {
export { type MessageAckResponse as MessageAckResponse, type MessageBulkPushResponse as MessageBulkPushResponse, type MessagePullResponse as MessagePullResponse, type MessagePushResponse as MessagePushResponse, type MessageAckParams as MessageAckParams, type MessageBulkPushParams as MessageBulkPushParams, type MessagePullParams as MessagePullParams, type MessagePushParams as MessagePushParams, };
}
//# sourceMappingURL=messages.d.ts.map