Skip to content

Commit

Permalink
resolve invalid import
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beemer <[email protected]>
  • Loading branch information
beeme1mr committed Jan 22, 2024
1 parent 139cdc2 commit 8cbbc9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/utils/src/lib/parse-valid-boolean.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TypeMismatchError } from '@openfeature/nestjs-sdk';
import { TypeMismatchError } from '@openfeature/core';

export const parseValidBoolean = (stringValue: string | undefined) => {
const asUnknown = stringValue as unknown;
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/lib/parse-valid-json-object.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { JsonValue, ParseError, TypeMismatchError } from '@openfeature/nestjs-sdk';
import { JsonValue, ParseError, TypeMismatchError } from '@openfeature/core';

export const parseValidJsonObject = <T extends JsonValue>(stringValue: string): T => {
if (stringValue === undefined) {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/lib/parse-valid-number.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ParseError, TypeMismatchError } from '@openfeature/nestjs-sdk';
import { ParseError, TypeMismatchError } from '@openfeature/core';

export const parseValidNumber = (stringValue: string | undefined) => {
if (stringValue === undefined) {
Expand Down

0 comments on commit 8cbbc9f

Please sign in to comment.