auto: 2026-09-20 02:30 (ESD_LAPTOP)
This commit is contained in:
@@ -69,8 +69,8 @@ def get_files(group: str) -> dict:
|
||||
|
||||
|
||||
@router.get("/rows")
|
||||
def get_rows(file: str, page: int = 1, size: int = 50, q: str = "") -> dict:
|
||||
return _call(store.rows, file, page, size, q)
|
||||
def get_rows(file: str, page: int = 1, size: int = 50, q: str = "", unlinked: bool = False) -> dict:
|
||||
return _call(store.rows, file, page, size, q, unlinked)
|
||||
|
||||
|
||||
@router.get("/tables")
|
||||
@@ -98,6 +98,11 @@ def get_elements(group: str, q: str = "", limit: int = 50) -> dict:
|
||||
return _call(store.elements, group, q, limit)
|
||||
|
||||
|
||||
@router.get("/pick")
|
||||
def get_pick(kind: str, q: str = "", limit: int = 50) -> dict:
|
||||
return _call(store.pick, kind, q, limit)
|
||||
|
||||
|
||||
@router.post("/calc")
|
||||
def post_calc(body: CalcBody) -> dict:
|
||||
return _call(store.calc, body.book, body.key, body.inputs, body.row, body.file)
|
||||
|
||||
Reference in New Issue
Block a user