@mediar-ai/terminator 0.23.28 → 0.23.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/src/types.rs +1 -0
package/package.json
CHANGED
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@mediar-ai/terminator-darwin-arm64": "0.23.
|
|
44
|
-
"@mediar-ai/terminator-darwin-x64": "0.23.
|
|
45
|
-
"@mediar-ai/terminator-linux-x64-gnu": "0.23.
|
|
46
|
-
"@mediar-ai/terminator-win32-arm64-msvc": "0.23.
|
|
47
|
-
"@mediar-ai/terminator-win32-x64-msvc": "0.23.
|
|
43
|
+
"@mediar-ai/terminator-darwin-arm64": "0.23.29",
|
|
44
|
+
"@mediar-ai/terminator-darwin-x64": "0.23.29",
|
|
45
|
+
"@mediar-ai/terminator-linux-x64-gnu": "0.23.29",
|
|
46
|
+
"@mediar-ai/terminator-win32-arm64-msvc": "0.23.29",
|
|
47
|
+
"@mediar-ai/terminator-win32-x64-msvc": "0.23.29"
|
|
48
48
|
},
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"test-hook": "powershell.exe -ExecutionPolicy Bypass -File \"../../.git/hooks/pre-push.ps1\""
|
|
63
63
|
},
|
|
64
64
|
"types": "wrapper.d.ts",
|
|
65
|
-
"version": "0.23.
|
|
65
|
+
"version": "0.23.29"
|
|
66
66
|
}
|
package/src/types.rs
CHANGED
|
@@ -272,6 +272,7 @@ impl From<TreeBuildConfig> for terminator::platforms::TreeBuildConfig {
|
|
|
272
272
|
yield_every_n_elements: config.yield_every_n_elements.map(|x| x as usize),
|
|
273
273
|
batch_size: config.batch_size.map(|x| x as usize),
|
|
274
274
|
max_depth: None, // Not exposed in nodejs bindings yet
|
|
275
|
+
include_all_bounds: false,
|
|
275
276
|
}
|
|
276
277
|
}
|
|
277
278
|
}
|