shelving 1.129.0 → 1.129.1

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
@@ -11,7 +11,7 @@
11
11
  "state-management",
12
12
  "query-builder"
13
13
  ],
14
- "version": "1.129.0",
14
+ "version": "1.129.1",
15
15
  "repository": "https://github.com/dhoulb/shelving",
16
16
  "author": "Dave Houlbrooke <dave@shax.com>",
17
17
  "license": "0BSD",
@@ -8,7 +8,7 @@ import { StringSchema, type StringSchemaOptions } from "./StringSchema.js";
8
8
  export declare class KeySchema extends StringSchema {
9
9
  constructor({ min, max, ...options }: StringSchemaOptions);
10
10
  }
11
- /** Valid color hex string, e.g. `#00CCFF` (required because empty string is invalid). */
11
+ /** Valid database key. */
12
12
  export declare const KEY: KeySchema;
13
- /** Valid color hex string, e.g. `#00CCFF`, or `null` */
13
+ /** Valid optional database key. */
14
14
  export declare const OPTIONAL_KEY: import("./OptionalSchema.js").OptionalSchema<string>;
@@ -11,7 +11,7 @@ export class KeySchema extends StringSchema {
11
11
  super({ min, max, ...options });
12
12
  }
13
13
  }
14
- /** Valid color hex string, e.g. `#00CCFF` (required because empty string is invalid). */
14
+ /** Valid database key. */
15
15
  export const KEY = new KeySchema({});
16
- /** Valid color hex string, e.g. `#00CCFF`, or `null` */
16
+ /** Valid optional database key. */
17
17
  export const OPTIONAL_KEY = OPTIONAL(KEY);