@lucern/graph-sync 1.0.17 → 1.0.18

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/CHANGELOG.md CHANGED
@@ -5,6 +5,9 @@ All notable changes to `@lucern/graph-sync` will be documented in this file.
5
5
  ## [Unreleased]
6
6
  - No unreleased changes yet.
7
7
 
8
+ ## [1.0.18] - 2026-06-02
9
+ - Release notes pending.
10
+
8
11
  ## [1.0.17] - 2026-06-01
9
12
  - Release notes pending.
10
13
 
package/dist/index.js CHANGED
@@ -1129,6 +1129,7 @@ var getNecessaryEvidence = action({
1129
1129
  var getFalsificationQuestions = action({
1130
1130
  args: {
1131
1131
  limit: v.optional(v.number()),
1132
+ beliefIds: v.optional(v.array(v.string())),
1132
1133
  apiBaseUrl: v.optional(v.string()),
1133
1134
  topicId: v.optional(v.string())
1134
1135
  },
@@ -1137,7 +1138,8 @@ var getFalsificationQuestions = action({
1137
1138
  const result = await callNeo4jQuery(
1138
1139
  "falsificationQuestions",
1139
1140
  withTopicScope(args, {
1140
- limit: toInt(args.limit, 50)
1141
+ limit: toInt(args.limit, 50),
1142
+ beliefIds: args.beliefIds
1141
1143
  }),
1142
1144
  args.apiBaseUrl
1143
1145
  );