@zuzjs/flare 0.2.27 → 0.2.28

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.
@@ -490,8 +490,8 @@ declare class FlareBase<TPresetMap extends QueryPresetMap = {}> {
490
490
  onError(callback: ErrorListener): () => void;
491
491
  collection<T = any>(name: string): CollectionQuery<T, TPresetMap>;
492
492
  /**
493
- * Generates a standard 20-character Flare document ID.
494
- * UUID v4 without dashes, first 20 chars — matches the Rust server-side format.
493
+ * Generates a 24-character hex document ID (Mongo ObjectId compatible format).
494
+ * UUID v4 without dashes, first 24 chars.
495
495
  *
496
496
  * ```ts
497
497
  * const id = db.generateFlareId();
@@ -490,8 +490,8 @@ declare class FlareBase<TPresetMap extends QueryPresetMap = {}> {
490
490
  onError(callback: ErrorListener): () => void;
491
491
  collection<T = any>(name: string): CollectionQuery<T, TPresetMap>;
492
492
  /**
493
- * Generates a standard 20-character Flare document ID.
494
- * UUID v4 without dashes, first 20 chars — matches the Rust server-side format.
493
+ * Generates a 24-character hex document ID (Mongo ObjectId compatible format).
494
+ * UUID v4 without dashes, first 24 chars.
495
495
  *
496
496
  * ```ts
497
497
  * const id = db.generateFlareId();