Skip to content

Commit c95562c

Browse files
committed
0.13.2 - Support numerical offset values via serde json conversion
1 parent d794b96 commit c95562c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
napi = { version = "2", features = ["async", "serde-json"] }
1313
napi-derive = "2"
14-
flashpoint-archive = { version = "0.13.1", features = ["napi"] }
14+
flashpoint-archive = { version = "0.13.2", features = ["napi"] }
1515

1616
[build-dependencies]
1717
napi-build = "2"

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface GameSearch {
1515
withTagFilter?: Array<string>
1616
}
1717
export interface GameSearchOffset {
18-
value: string
18+
value: any
1919
title: string
2020
gameId: string
2121
}
@@ -105,7 +105,7 @@ export interface SizeFilter {
105105
}
106106
export interface PageTuple {
107107
id: string
108-
orderVal: string
108+
orderVal: any
109109
title: string
110110
}
111111
export const enum ElementType {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fparchive/flashpoint-archive",
3-
"version": "0.13.1",
3+
"version": "0.13.2",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"license": "MIT",

0 commit comments

Comments
 (0)