@devrev/meerkat-node 0.0.118 → 0.0.119

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.
@@ -1,13 +1,7 @@
1
- import { ContextParams, Query, QueryOptions, TableSchema } from '@devrev/meerkat-core';
1
+ import { ContextParams, Query, TableSchema } from '@devrev/meerkat-core';
2
2
  export interface CubeQueryToSQLParams {
3
3
  query: Query;
4
4
  tableSchemas: TableSchema[];
5
5
  contextParams?: ContextParams;
6
- /**
7
- * Options for controlling output format.
8
- * When useDotNotation is true, aliases use dot notation (e.g., "orders.customer_id")
9
- * When useDotNotation is false, aliases use underscore notation (e.g., orders__customer_id)
10
- */
11
- options: QueryOptions;
12
6
  }
13
- export declare const cubeQueryToSQL: ({ query, tableSchemas, contextParams, options, }: CubeQueryToSQLParams) => Promise<string>;
7
+ export declare const cubeQueryToSQL: ({ query, tableSchemas, contextParams, }: CubeQueryToSQLParams) => Promise<string>;