게임 상태 변경과 같은 트랜잭션에 내구성 outbox를 기록하고 Gateway가 계정 설정과 기기 구독으로 fan-out하도록 한다. 전역 기본값은 비활성으로 유지하며 migration과 회귀 테스트를 함께 추가한다.
14 lines
622 B
TypeScript
14 lines
622 B
TypeScript
export * from './postgres.js';
|
|
export { createGamePostgresConnector, GamePrisma } from './gamePrisma.js';
|
|
export type { GamePrismaClient } from './gamePrisma.js';
|
|
export { createGatewayPostgresConnector, GatewayPrisma } from './gatewayPrisma.js';
|
|
export type { GatewayPrismaClient } from './gatewayPrisma.js';
|
|
export * from './db.js';
|
|
export * from './redis.js';
|
|
export * from './turnEngineDb.js';
|
|
export * from './readModelChangeJournal.js';
|
|
export * from './readModelOutboxDispatcher.js';
|
|
export * from './readModelCoverageActivation.js';
|
|
export * from './gameSchemaAdvisoryLock.js';
|
|
export * from './webPushOutbox.js';
|