@m1212e/rumble 0.12.21 → 0.12.22
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/out/index.cjs +1 -1
- package/out/index.cjs.map +1 -1
- package/out/index.mjs +1 -1
- package/out/index.mjs.map +1 -1
- package/package.json +1 -1
package/out/index.cjs
CHANGED
|
@@ -707,7 +707,7 @@ const dateLikeSQLTypeStrings = ["date"];
|
|
|
707
707
|
function isDateLikeSQLTypeString(sqlType) {
|
|
708
708
|
return dateLikeSQLTypeStrings.includes(sqlType);
|
|
709
709
|
}
|
|
710
|
-
const jsonLikeSQLTypeStrings = ["json"];
|
|
710
|
+
const jsonLikeSQLTypeStrings = ["json", "jsonb"];
|
|
711
711
|
function isJSONLikeSQLTypeString(sqlType) {
|
|
712
712
|
return jsonLikeSQLTypeStrings.includes(sqlType);
|
|
713
713
|
}
|