{"version":3,"sources":["../../../src/utils/id-generator.ts"],"names":["customAlphabet"],"mappings":";;;;;AAGA,IAAM,QAAW,GAAA,sCAAA;AACjB,IAAM,SAAY,GAAA,CAAA;AAGL,IAAA,UAAA,GAAaA,qBAAe,CAAA,QAAA,EAAU,SAAS","file":"id-generator.cjs","sourcesContent":["import { customAlphabet } from 'nanoid';\n\n// Only use lowercase alphanumeric characters for IDs\nconst ALPHABET = '0123456789abcdefghijklmnopqrstuvwxyz';\nconst ID_LENGTH = 4;\n\n// Create a nanoid generator with our custom alphabet\nexport const generateId = customAlphabet(ALPHABET, ID_LENGTH); "]}