@caupulican/pi-adaptative 0.80.67 → 0.80.68
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 +6 -0
- package/dist/core/catalog-manager.d.ts +50 -0
- package/dist/core/catalog-manager.d.ts.map +1 -0
- package/dist/core/catalog-manager.js +0 -0
- package/dist/core/catalog-manager.js.map +1 -0
- package/dist/core/settings-manager.d.ts +5 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +14 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
|
@@ -1217,6 +1217,20 @@ export class SettingsManager {
|
|
|
1217
1217
|
this.markModified("theme");
|
|
1218
1218
|
this.save();
|
|
1219
1219
|
}
|
|
1220
|
+
/** The configured resource catalog directory, if any (round resource management). */
|
|
1221
|
+
getCatalogDir() {
|
|
1222
|
+
return this.settings.catalogDir;
|
|
1223
|
+
}
|
|
1224
|
+
setCatalogDir(dir) {
|
|
1225
|
+
if (dir) {
|
|
1226
|
+
this.globalSettings.catalogDir = dir;
|
|
1227
|
+
}
|
|
1228
|
+
else {
|
|
1229
|
+
delete this.globalSettings.catalogDir;
|
|
1230
|
+
}
|
|
1231
|
+
this.markModified("catalogDir");
|
|
1232
|
+
this.save();
|
|
1233
|
+
}
|
|
1220
1234
|
getDefaultThinkingLevel() {
|
|
1221
1235
|
return this.settings.defaultThinkingLevel;
|
|
1222
1236
|
}
|