@malloydata/malloy 0.0.48 → 0.0.49-dev230626192330

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.
@@ -35,10 +35,11 @@ export interface InfoConnection {
35
35
  /**
36
36
  * Fetch schemas for multiple tables.
37
37
  *
38
- * @param tables The names of tables to fetch schemas for.
39
- * @return A mapping of table names to schemas.
38
+ * @param tables The names of tables to fetch schemas for, represented
39
+ * as a map of keys to table names.
40
+ * @return A mapping of table keys to schemas.
40
41
  */
41
- fetchSchemaForTables(tables: string[]): Promise<{
42
+ fetchSchemaForTables(tables: Record<string, string>): Promise<{
42
43
  schemas: Record<string, StructDef>;
43
44
  errors: Record<string, string>;
44
45
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.48",
3
+ "version": "0.0.49-dev230626192330",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",