/** * Superblocks OCR client implementation. * * Uses the proto-generated REST API Integration Plugin type from @superblocksteam/types. * Superblocks OCR integrations use the REST API Integration plugin under the hood. */ import { RestApiIntegrationClient } from "../base/index.js"; import type { SuperblocksOCRClient } from "./types.js"; /** * Internal implementation of SuperblocksOCRClient. * * Extends RestApiIntegrationClient to inherit the generic apiRequest() method. */ export class SuperblocksOCRClientImpl extends RestApiIntegrationClient implements SuperblocksOCRClient { // Inherits: name, pluginId, config, executeQuery, apiRequest() }