@signetai/signet-memory-openclaw 0.127.0 → 0.129.0
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/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10150,6 +10150,7 @@ function buildRecallRequestBody(query, options = {}) {
|
|
|
10150
10150
|
sessionKey: options.sessionKey,
|
|
10151
10151
|
includeRecalled: options.includeRecalled === true ? true : undefined,
|
|
10152
10152
|
scope: options.scope,
|
|
10153
|
+
sourceOnly: options.sourceOnly === true ? true : undefined,
|
|
10153
10154
|
aggregate: options.aggregate === true ? true : undefined,
|
|
10154
10155
|
aggregateBudget: options.aggregateBudget ?? options.aggregate_budget,
|
|
10155
10156
|
saveAggregate: options.saveAggregate === false || options.save_aggregate === false ? false : options.saveAggregate === true || options.save_aggregate === true ? true : undefined
|
|
@@ -10220,6 +10221,8 @@ var SIGNET_GIT_PROTECTED_PATHS = [
|
|
|
10220
10221
|
`${SIGNET_SOURCE_CHECKOUT_DIRNAME}/`
|
|
10221
10222
|
];
|
|
10222
10223
|
var DEFAULT_DISCORD_DESKTOP_CACHE_PATH = defaultDiscordDesktopCachePath();
|
|
10224
|
+
var DEFAULT_GITHUB_RESOURCE_TYPES = ["issues", "pulls", "discussions", "docs"];
|
|
10225
|
+
var VALID_GITHUB_RESOURCE_TYPES = new Set(DEFAULT_GITHUB_RESOURCE_TYPES);
|
|
10223
10226
|
function defaultDiscordDesktopCachePath() {
|
|
10224
10227
|
switch (platform2()) {
|
|
10225
10228
|
case "darwin":
|