- DELETE /api/companies/{slug}: wipes the ledger (deck records, scorecard,
report md), sweeps per-job report and processed-deck copies; optional
restore_decks moves the graded originals from /data/processed back into
the inbox for a fresh Grade Decks run; 409 while a job is running;
config-registered companies reappear as empty rows (aliases + pinned
targets kept)
- Dashboard: "delete company…" danger button on the company card with a
two-step confirm (delete, then restore-decks choice)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
548 B
TypeScript
16 lines
548 B
TypeScript
import { VersionGraph } from '@start9labs/start-sdk'
|
|
import { v_0_1_0 } from './v_0_1_0'
|
|
import { v_0_1_1 } from './v_0_1_1'
|
|
import { v_0_1_2 } from './v_0_1_2'
|
|
import { v_0_1_3 } from './v_0_1_3'
|
|
import { v_0_1_4 } from './v_0_1_4'
|
|
import { v_0_1_5 } from './v_0_1_5'
|
|
import { v_0_1_6 } from './v_0_1_6'
|
|
import { v_0_1_7 } from './v_0_1_7'
|
|
|
|
/** The current version MUST be the first argument (`current`). */
|
|
export const versions = VersionGraph.of({
|
|
current: v_0_1_7,
|
|
other: [v_0_1_6, v_0_1_5, v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0],
|
|
})
|