@mirantes-micro/foundation-design-system 1.2.377 → 1.2.378
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 +11 -0
- package/dist/index.js +142 -142
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1273,8 +1273,19 @@ type PostAttachmentProps$2 = {
|
|
|
1273
1273
|
url?: string;
|
|
1274
1274
|
type: string;
|
|
1275
1275
|
};
|
|
1276
|
+
type PostAuthor = {
|
|
1277
|
+
id?: string;
|
|
1278
|
+
name?: string;
|
|
1279
|
+
avatar?: string | null;
|
|
1280
|
+
slug?: string;
|
|
1281
|
+
headline?: string | null;
|
|
1282
|
+
rating?: number;
|
|
1283
|
+
isFollowing?: boolean;
|
|
1284
|
+
};
|
|
1276
1285
|
type Post$2 = {
|
|
1277
1286
|
user: User$2;
|
|
1287
|
+
/** Timeline / feed-with-go APIs expose publisher as `author` instead of `user`. */
|
|
1288
|
+
author?: PostAuthor;
|
|
1278
1289
|
clientId?: string;
|
|
1279
1290
|
postType: "NORMAL" | "REEL" | "ARTICLE";
|
|
1280
1291
|
id: string;
|