@geekbeer/minion 3.60.4 → 3.60.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/api-reference.md +19 -0
- package/package.json +1 -1
package/docs/api-reference.md
CHANGED
|
@@ -2206,3 +2206,22 @@ POST レスポンス例:
|
|
|
2206
2206
|
| 409 | `version_conflict` (他者の編集と衝突)、`name_conflict`、`order_key_collision` (同時挿入の競合、再送可) |
|
|
2207
2207
|
| 410 | `deck_in_trash` (デッキがゴミ箱にある) |
|
|
2208
2208
|
|
|
2209
|
+
### Accounting Receipts 🧪 (HQ, experimental)
|
|
2210
|
+
|
|
2211
|
+
`workspaces.feature_flags.experimental_accounting = true` のワークスペース向け。
|
|
2212
|
+
レシート (画像/PDF) の一覧取得・ダウンロード・取引紐付けをBearer認証で行える。
|
|
2213
|
+
**典型用途**: 人間が `/accounting/receipts` から大量アップロードした未仕訳レシートを
|
|
2214
|
+
ミニオン側で OCR → 仕訳作成 → 紐付け、という記帳ワークフロー。
|
|
2215
|
+
|
|
2216
|
+
| Method | Endpoint | 説明 |
|
|
2217
|
+
|--------|----------|-------------|
|
|
2218
|
+
| GET | `/api/minion/workspaces/:id/accounting/receipts` | レシート一覧。Query: `?attached=true\|false\|all` (default `false`), `?limit=100` (max 500) |
|
|
2219
|
+
| GET | `/api/minion/workspaces/:id/accounting/receipts/:receiptId` | メタデータ |
|
|
2220
|
+
| GET | `/api/minion/workspaces/:id/accounting/receipts/:receiptId/download` | 60秒有効な signed URL を返す (`{ url, mime_type, file_name, expires_in_seconds }`) |
|
|
2221
|
+
| PATCH | `/api/minion/workspaces/:id/accounting/receipts/:receiptId` | 取引と紐付け / 解除。Body: `{ entry_id: string \| null }`。entry_id 指定時は同じ book に属する取引でないと 400 |
|
|
2222
|
+
|
|
2223
|
+
レシートのMIME種別は `image/png`, `image/jpeg`, `image/webp`, `image/gif`, `image/heic`, `image/heif`, `application/pdf` のいずれか。
|
|
2224
|
+
|
|
2225
|
+
**未実装**: ミニオン向け仕訳作成 API (`POST /api/minion/workspaces/:id/accounting/entries`) は現状未実装。
|
|
2226
|
+
OCR後の仕訳作成は、当面ユーザー操作で `/accounting/new` から行うか、HQ管理者向けの Supabase session 経由のみ。
|
|
2227
|
+
|