@m1212e/rumble 0.14.2 → 0.15.1

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 CHANGED
@@ -1492,7 +1492,7 @@ const createObjectImplementer = ({ db, search, schemaBuilder, makePubSubInstance
1492
1492
  let filterSpecifier = "many";
1493
1493
  if (value instanceof drizzle_orm.One) {
1494
1494
  isMany = false;
1495
- nullable = value.optional;
1495
+ nullable = !value.sourceColumns.every((column) => column.notNull);
1496
1496
  filterSpecifier = "single";
1497
1497
  }
1498
1498
  const subscribe = (subscriptions, _element) => {