inibase 1.1.20 → 1.1.21

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.
Files changed (2) hide show
  1. package/dist/utils.js +2 -0
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -256,6 +256,8 @@ export const detectFieldType = (input, availableTypes) => {
256
256
  return "number";
257
257
  if (availableTypes.includes("string") && String(input).at(0) === "0")
258
258
  return "string";
259
+ if (availableTypes.includes("id"))
260
+ return "id";
259
261
  }
260
262
  else if (typeof input === "string") {
261
263
  if (availableTypes.includes("table") && isValidID(input))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inibase",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "type": "module",
5
5
  "author": {
6
6
  "name": "Karim Amahtil",