Skip to content

Commit

Permalink
Move genTaskCacheKey to helpers and export client-core
Browse files Browse the repository at this point in the history
  • Loading branch information
twelch committed May 17, 2024
1 parent deeeb7a commit 2b0cc82
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/geoprocessing/client-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ export * from "./src/helpers/units.js";
export * from "./src/helpers/ts.js";
export * from "./src/helpers/valueFormatter.js";
export * from "./src/helpers/service.js";
export * from "./src/helpers/genTaskCacheKey.js";
export * from "./src/datasources/helpers.js";

export * from "./src/metrics/helpers.js";
export * from "./src/iucn/helpers.js";

export * from "./src/iucn/iucnProtectionLevel.js";
export * from "./src/rbcs/index.js";
export * from "./src/project/index.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/geoprocessing/src/hooks/useFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
GeoprocessingRequestParams,
} from "../types/index.js";
import { runTask, finishTask } from "../clients/tasks.js";
import { genTaskCacheKey } from "../util/genTaskCacheKey.js";
import { genTaskCacheKey } from "../helpers/genTaskCacheKey.js";
import cloneDeep from "lodash/cloneDeep.js";

interface PendingRequest {
Expand Down
1 change: 0 additions & 1 deletion packages/geoprocessing/src/util/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from "./genRandomPolygons.js";
export * from "./genTaskCacheKey.js";

0 comments on commit 2b0cc82

Please sign in to comment.