@m1212e/rumble 0.18.2 → 0.18.3
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 +2 -2
- package/out/index.cjs.map +1 -1
- package/out/index.mjs +2 -2
- package/out/index.mjs.map +1 -1
- package/package.json +1 -1
package/out/index.cjs
CHANGED
|
@@ -208,7 +208,7 @@ function mapNullFieldsToUndefined(obj) {
|
|
|
208
208
|
}
|
|
209
209
|
//#endregion
|
|
210
210
|
//#region package.json
|
|
211
|
-
var version = "0.18.
|
|
211
|
+
var version = "0.18.3";
|
|
212
212
|
//#endregion
|
|
213
213
|
//#region lib/helpers/mergeFilters.ts
|
|
214
214
|
function mergeFilters(filterA, filterB) {
|
|
@@ -1205,7 +1205,7 @@ const createObjectImplementer = ({ db, search, schemaBuilder, makePubSubInstance
|
|
|
1205
1205
|
let filterSpecifier = "many";
|
|
1206
1206
|
if (value instanceof drizzle_orm.One) {
|
|
1207
1207
|
isMany = false;
|
|
1208
|
-
nullable = !value.sourceColumns.every((column) => column.notNull);
|
|
1208
|
+
nullable = value.optional || !value.sourceColumns.every((column) => column.notNull);
|
|
1209
1209
|
filterSpecifier = "single";
|
|
1210
1210
|
}
|
|
1211
1211
|
const subscribe = (subscriptions, _element) => {
|