@liveblocks/core 1.1.2-beta1 → 1.1.3

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.d.ts CHANGED
@@ -686,11 +686,11 @@ declare function asArrayWithLegacyMethods<T>(arr: readonly T[]): ReadonlyArrayWi
686
686
  */
687
687
  declare type User<TPresence extends JsonObject, TUserMeta extends BaseUserMeta> = {
688
688
  /**
689
- * The connection id of the user. It is unique and increment at every new connection.
689
+ * The connection ID of the User. It is unique and increment at every new connection.
690
690
  */
691
691
  readonly connectionId: number;
692
692
  /**
693
- * The id of the user that has been set in the authentication endpoint.
693
+ * The ID of the User that has been set in the authentication endpoint.
694
694
  * Useful to get additional information about the connected user.
695
695
  */
696
696
  readonly id: TUserMeta["id"];
@@ -699,7 +699,7 @@ declare type User<TPresence extends JsonObject, TUserMeta extends BaseUserMeta>
699
699
  */
700
700
  readonly info: TUserMeta["info"];
701
701
  /**
702
- * The user presence.
702
+ * The user’s presence data.
703
703
  */
704
704
  readonly presence: TPresence;
705
705
  /**