/ utils / memory / types.ts
types.ts
 1  import { feature } from 'bun:bundle'
 2  
 3  export const MEMORY_TYPE_VALUES = [
 4    'User',
 5    'Project',
 6    'Local',
 7    'Managed',
 8    'AutoMem',
 9    ...(feature('TEAMMEM') ? (['TeamMem'] as const) : []),
10  ] as const
11  
12  export type MemoryType = (typeof MEMORY_TYPE_VALUES)[number]