@retor/react-native 0.4.1 → 0.4.2

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.mts CHANGED
@@ -19,6 +19,8 @@ interface RetorTag {
19
19
  objectId?: string;
20
20
  /** 0..1 position along the parent line. Set on notes; computed from index for control tags. */
21
21
  progress?: number;
22
+ /** Profile image URL. For notes rendered with `icon` tag type, replaces the icon with a circular avatar. */
23
+ avatarUrl?: string;
22
24
  }
23
25
  interface RetorLine {
24
26
  _id: string;
package/dist/index.d.ts CHANGED
@@ -19,6 +19,8 @@ interface RetorTag {
19
19
  objectId?: string;
20
20
  /** 0..1 position along the parent line. Set on notes; computed from index for control tags. */
21
21
  progress?: number;
22
+ /** Profile image URL. For notes rendered with `icon` tag type, replaces the icon with a circular avatar. */
23
+ avatarUrl?: string;
22
24
  }
23
25
  interface RetorLine {
24
26
  _id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retor/react-native",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "React Native SDK for embedding Retor 3D experiences",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",