Some checks failed
CI/CD Pipeline / Integration Tests (push) Blocked by required conditions
CI/CD Pipeline / Deployment Summary (push) Blocked by required conditions
CI/CD Pipeline / Backend - Build, Test & Push (push) Failing after 2m11s
CI/CD Pipeline / Frontend - Build, Test & Push (push) Has been cancelled
Root cause: The .gitignore had 'out/' which was ignoring ALL directories named 'out', including 'src/domain/ports/out/' which contains critical port interfaces for hexagonal architecture. Changes: - Modified .gitignore to only ignore Next.js output directories - Added all 17 missing files from src/domain/ports/out/ - audit-log.repository.ts - booking.repository.ts - cache.port.ts - carrier-connector.port.ts - carrier.repository.ts - csv-booking.repository.ts - csv-rate-loader.port.ts - email.port.ts - index.ts - notification.repository.ts - organization.repository.ts - pdf.port.ts - port.repository.ts - rate-quote.repository.ts - storage.port.ts - user.repository.ts - webhook.repository.ts This resolves all "Cannot find module '@domain/ports/out/*'" TypeScript errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
/**
|
|
* Webhook Repository Port
|
|
*
|
|
* Defines the interface for Webhook persistence operations.
|
|
* This is a secondary port (output port) in hexagonal architecture.
|
|
*/
|
|
|
|
import { Webhook, WebhookEvent } from '../../entities/webhook.entity';
|
|
|
|
export const WEBHOOK_REPOSITORY = 'WebhookRepository';
|
|
|
|
export interface WebhookFilters {
|
|
organizationId?: string;
|
|
status?: string[];
|
|
event?: WebhookEvent;
|
|
}
|
|
|
|
export interface WebhookRepository {
|
|
/**
|
|
* Save a webhook entity
|
|
*/
|
|
save(webhook: Webhook): Promise<void>;
|
|
|
|
/**
|
|
* Find webhook by ID
|
|
*/
|
|
findById(id: string): Promise<Webhook | null>;
|
|
|
|
/**
|
|
* Find all webhooks for an organization
|
|
*/
|
|
findByOrganization(organizationId: string): Promise<Webhook[]>;
|
|
|
|
/**
|
|
* Find active webhooks by event and organization
|
|
*/
|
|
findActiveByEvent(event: WebhookEvent, organizationId: string): Promise<Webhook[]>;
|
|
|
|
/**
|
|
* Find webhooks by filters
|
|
*/
|
|
findByFilters(filters: WebhookFilters): Promise<Webhook[]>;
|
|
|
|
/**
|
|
* Delete a webhook
|
|
*/
|
|
delete(id: string): Promise<void>;
|
|
|
|
/**
|
|
* Count webhooks for an organization
|
|
*/
|
|
countByOrganization(organizationId: string): Promise<number>;
|
|
}
|