Skip to content

Commit 23f90b5

Browse files
authored
fix: conflicting ts field type (#294)
1 parent d851476 commit 23f90b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

flagsmith-core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ const Flagsmith = class {
261261
analyticsInterval: NodeJS.Timer | null= null
262262
api: string|null= null
263263
cacheFlags= false
264-
ts: number|null= null
264+
ts?: number
265265
enableAnalytics= false
266266
enableLogs= false
267267
evaluationContext: EvaluationContext= {}

lib/flagsmith/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flagsmith",
3-
"version": "9.0.4",
3+
"version": "9.0.5",
44
"description": "Feature flagging to support continuous development",
55
"main": "./index.js",
66
"module": "./index.mjs",

lib/react-native-flagsmith/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-flagsmith",
3-
"version": "9.0.4",
3+
"version": "9.0.5",
44
"description": "Feature flagging to support continuous development",
55
"main": "./index.js",
66
"repository": {

0 commit comments

Comments
 (0)