/** * WebhooksService * AUTO-GENERATED — public merchant surface from filtered OpenAPI */ export declare class WebhooksService { /** * OpenAPI operationId: `WebhooksController_create`. * Créer un webhook */ static create(): Promise; /** * OpenAPI operationId: `WebhooksController_remove`. * Supprimer un webhook */ static delete(id: string): Promise; /** * OpenAPI operationId: `WebhooksController_findOne`. * Obtenir un webhook par ID */ static get(id: string): Promise; /** * OpenAPI operationId: `WebhooksController_findAll`. * Lister les webhooks */ static list(): Promise; /** * OpenAPI operationId: `WebhooksController_retryDelivery`. * Relancer une livraison webhook */ static retryDelivery(webhookId: string, logId: string): Promise; /** * OpenAPI operationId: `WebhooksController_test`. * Envoyer un événement test au webhook */ static test(id: string): Promise; /** * OpenAPI operationId: `WebhooksController_update`. * Mettre à jour un webhook */ static update(id: string, body?: unknown): Promise; } //# sourceMappingURL=WebhooksService.d.ts.map