{"version":3,"sources":["/home/mkabumattar/work/withrawi/rawi/dist/chunk-OEN3AME3.cjs","../src/cli/commands/chat/options/advanced.ts"],"names":["limitOption","fromDateOption","toDateOption","formatOption","statsOption","backupOption","restoreOption","batchDeleteOption","archiveOption"],"mappings":"AAAA;ACEO,IAAMA,CAAAA,CAA6B,CACxC,KAAA,CAAO,kBAAA,CACP,WAAA,CAAa,uCAAA,CACb,YAAA,CAAc,IAChB,CAAA,CAEaC,CAAAA,aAAgC,CAC3C,KAAA,CAAO,oBAAA,CACP,WAAA,CAAa,sDACf,CAAA,CAEaC,CAAAA,aAA8B,CACzC,KAAA,CAAO,kBAAA,CACP,WAAA,CAAa,uDACf,CAAA,CAEaC,CAAAA,aAA8B,CACzC,KAAA,CAAO,iBAAA,CACP,WAAA,CAAa,2DAAA,CACb,YAAA,CAAc,OAChB,CAAA,CAEaC,CAAAA,aAA6B,CACxC,KAAA,CAAO,SAAA,CACP,WAAA,CAAa,uCAAA,CACb,YAAA,CAAc,CAAA,CAChB,CAAA,CAEaC,CAAAA,aAA8B,CACzC,KAAA,CAAO,iBAAA,CACP,WAAA,CAAa,uCACf,CAAA,CAEaC,CAAAA,aAA+B,CAC1C,KAAA,CAAO,kBAAA,CACP,WAAA,CAAa,mCACf,CAAA,CAEaC,CAAAA,aAAmC,CAC9C,KAAA,CAAO,0BAAA,CACP,WAAA,CAAa,2CACf,CAAA,CAEaC,CAAAA,aAA+B,CAC1C,KAAA,CAAO,WAAA,CACP,WAAA,CAAa,+CAAA,CACb,YAAA,CAAc,CAAA,CAChB,CAAA,CAAA,sIAAA;AD/CA","file":"/home/mkabumattar/work/withrawi/rawi/dist/chunk-OEN3AME3.cjs","sourcesContent":[null,"import type {CommandOption} from '../types.js';\n\nexport const limitOption: CommandOption = {\n  flags: '--limit <number>',\n  description: 'Limit the number of sessions returned',\n  defaultValue: '10',\n};\n\nexport const fromDateOption: CommandOption = {\n  flags: '--from-date <date>',\n  description: 'Filter sessions created after this date (YYYY-MM-DD)',\n};\n\nexport const toDateOption: CommandOption = {\n  flags: '--to-date <date>',\n  description: 'Filter sessions created before this date (YYYY-MM-DD)',\n};\n\nexport const formatOption: CommandOption = {\n  flags: '--format <type>',\n  description: 'Output format for session operations (json|table|summary)',\n  defaultValue: 'table',\n};\n\nexport const statsOption: CommandOption = {\n  flags: '--stats',\n  description: 'Show session statistics and analytics',\n  defaultValue: false,\n};\n\nexport const backupOption: CommandOption = {\n  flags: '--backup <path>',\n  description: 'Backup all sessions to specified path',\n};\n\nexport const restoreOption: CommandOption = {\n  flags: '--restore <path>',\n  description: 'Restore sessions from backup file',\n};\n\nexport const batchDeleteOption: CommandOption = {\n  flags: '--batch-delete <pattern>',\n  description: 'Delete multiple sessions matching pattern',\n};\n\nexport const archiveOption: CommandOption = {\n  flags: '--archive',\n  description: 'Archive old sessions instead of deleting them',\n  defaultValue: false,\n};\n"]}