@m1212e/rumble 0.18.1 → 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/client.cjs +25 -18
- package/out/client.cjs.map +1 -1
- package/out/client.d.cts.map +1 -1
- package/out/client.d.mts.map +1 -1
- package/out/client.mjs +25 -18
- package/out/client.mjs.map +1 -1
- 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.mjs
CHANGED
|
@@ -180,7 +180,7 @@ function mapNullFieldsToUndefined(obj) {
|
|
|
180
180
|
}
|
|
181
181
|
//#endregion
|
|
182
182
|
//#region package.json
|
|
183
|
-
var version = "0.18.
|
|
183
|
+
var version = "0.18.3";
|
|
184
184
|
//#endregion
|
|
185
185
|
//#region lib/helpers/mergeFilters.ts
|
|
186
186
|
function mergeFilters(filterA, filterB) {
|
|
@@ -1177,7 +1177,7 @@ const createObjectImplementer = ({ db, search, schemaBuilder, makePubSubInstance
|
|
|
1177
1177
|
let filterSpecifier = "many";
|
|
1178
1178
|
if (value instanceof One) {
|
|
1179
1179
|
isMany = false;
|
|
1180
|
-
nullable = !value.sourceColumns.every((column) => column.notNull);
|
|
1180
|
+
nullable = value.optional || !value.sourceColumns.every((column) => column.notNull);
|
|
1181
1181
|
filterSpecifier = "single";
|
|
1182
1182
|
}
|
|
1183
1183
|
const subscribe = (subscriptions, _element) => {
|