| 1 | import { defineOperationApi } from "@directus/extensions-sdk"; |
| 2 | |
| 3 | interface Options { |
| 4 | item_id: string; |
| 5 | collection: string; |
| 6 | translation_table: string; |
| 7 | language_table: string; |
| 8 | replexica_api_key: string; |
| 9 | source_language?: string; |
| 10 | target_languages: string[]; |
| 11 | } |
| 12 | |
| 13 | interface Context { |
| 14 | services: { |
nothing calls this directly
no outgoing calls
no test coverage detected