not-node 6.5.55 → 6.5.56

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-node",
3
- "version": "6.5.55",
3
+ "version": "6.5.56",
4
4
  "description": "node complimentary part for client side notFramework.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -123,7 +123,9 @@ class notFieldsFilter {
123
123
  ...this.#USER_DEFINED_SETS,
124
124
  [SPECIAL_SET_ALL]: (schema) => {
125
125
  const moreFields =
126
- typeof schema === "object" ? Object.keys(schema) : [];
126
+ typeof schema === "object" && schema !== null
127
+ ? Object.keys(schema)
128
+ : [];
127
129
  return [
128
130
  `${SPECIAL_SET_PREFIX}${SPECIAL_SET_ID_UUID}`,
129
131
  `${SPECIAL_SET_PREFIX}${SPECIAL_SET_ID_NUMERIC}`,