UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

21 lines (18 loc) 832 B
/** * Databricks - VectorSearch Resource * Re-exports all operation types for this resource. */ import type { DatabricksV1VectorSearchCreateIndexNode } from './operation_create_index'; import type { DatabricksV1VectorSearchGetIndexNode } from './operation_get_index'; import type { DatabricksV1VectorSearchListIndexesNode } from './operation_list_indexes'; import type { DatabricksV1VectorSearchQueryIndexNode } from './operation_query_index'; export * from './operation_create_index'; export * from './operation_get_index'; export * from './operation_list_indexes'; export * from './operation_query_index'; export type DatabricksV1VectorSearchNode = | DatabricksV1VectorSearchCreateIndexNode | DatabricksV1VectorSearchGetIndexNode | DatabricksV1VectorSearchListIndexesNode | DatabricksV1VectorSearchQueryIndexNode ;