@hamelin.sh/compiler 0.6.1 → 0.6.3

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.
package/dist/main.d.ts CHANGED
@@ -113,7 +113,7 @@ type CatalogResourceInput = Omit<CatalogResource, "isUnion"> & {
113
113
  };
114
114
  declare const buildCatalog: (startingCatalog: Catalog, resources: Array<CatalogResourceInput>) => Promise<BuildCatalogOutput>;
115
115
 
116
- declare const checkIncrementalEligibility: (catalog: Catalog, query: string) => Promise<IncrementalEligibilityResult>;
116
+ declare const checkIncrementalEligibility: (catalog: Catalog, query: string, allowLookups: boolean) => Promise<IncrementalEligibilityResult>;
117
117
 
118
118
  declare const compileHamelinQuery: (catalog: Catalog, hamelinInput: string) => Promise<CompileHamelinQueryResult>;
119
119