@librechat/data-schemas 0.0.42 → 0.0.43

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.
@@ -67,5 +67,7 @@ export declare function configCapability(section: ConfigSection): `manage:config
67
67
  * @example readConfigCapability('endpoints') → 'read:configs:endpoints'
68
68
  */
69
69
  export declare function readConfigCapability(section: ConfigSection): `read:configs:${ConfigSection}`;
70
+ /** Reserved principalId for the DB base config (overrides YAML defaults). */
71
+ export declare const BASE_CONFIG_PRINCIPAL_ID = "__base__";
70
72
  /** Pre-defined UI categories for grouping capabilities in the admin panel. */
71
73
  export declare const CAPABILITY_CATEGORIES: CapabilityCategory[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@librechat/data-schemas",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "Mongoose schemas and models for LibreChat",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",