UNPKG

@mbc-cqrs-serverless/core

Version:
11 lines (10 loc) 356 B
export interface SessionItem { /** pk: {userId}#{tenantCode} */ pk: string; /** sk: {moduleTableName}#{itemId} — module `tableName` from CommandModule */ sk: string; /** Version of the command — used to fetch exact command record */ version: number; /** Unix timestamp TTL — auto-expired by DynamoDB */ ttl: number; }