Skip to content

Commit

Permalink
Update missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rallu committed Oct 24, 2022
1 parent e49e988 commit 42d834b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
14 changes: 7 additions & 7 deletions packages/klevu-core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/klevu-core/package.json
Expand Up @@ -40,7 +40,7 @@
"license": "MIT",
"typedocMain": "src/index.ts",
"devDependencies": {
"axios": "^1.1.2",
"axios": "^1.1.3",
"eslint-plugin-import": "^2.26.0",
"typedoc": "^0.23.16",
"typedoc-plugin-markdown": "^3.13.6"
Expand Down
3 changes: 2 additions & 1 deletion packages/klevu-core/src/models/KlevuTypeOfRecord.ts
@@ -1,4 +1,5 @@
import type { LiteralUnion, ValueOf } from "type-fest"
import { LiteralUnion } from "../utils/literalUnion"
import { ValueOf } from "../utils/valuOf"

export enum KlevuTypeOfRecord {
Product = "KLEVU_PRODUCT",
Expand Down
2 changes: 1 addition & 1 deletion packages/klevu-core/src/modifiers/index.ts
@@ -1,7 +1,7 @@
import type { LiteralUnion } from "type-fest"
import { KlevuFetchFunctionReturnValue } from "../index.js"
import { KlevuAllRecordQueries } from "../models/KlevuAllRecordQueries.js"
import { KlevuFetchResponse } from "../models/KlevuFetchResponse.js"
import { LiteralUnion } from "../utils/literalUnion.js"

/**
* @ignore
Expand Down

0 comments on commit 42d834b

Please sign in to comment.