@mirantes-micro/foundation-design-system 1.2.291 → 1.2.293

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +10 -10
  2. package/dist/index.js +125 -125
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1107,9 +1107,9 @@ type Post$2 = {
1107
1107
  id: string;
1108
1108
  createdAt: string;
1109
1109
  scheduledAt?: string;
1110
- bio: string;
1110
+ bio?: string;
1111
1111
  content: string;
1112
- totalShares: number;
1112
+ totalShares?: number;
1113
1113
  totalReactions?: number;
1114
1114
  currentUserReaction?: string | undefined;
1115
1115
  totalComments?: number;
@@ -1119,7 +1119,7 @@ type Post$2 = {
1119
1119
  isArticle?: boolean;
1120
1120
  isDraft?: boolean;
1121
1121
  expiresAt?: string | null;
1122
- link: {
1122
+ link?: {
1123
1123
  title: string;
1124
1124
  description: string;
1125
1125
  imageUrl: string;
@@ -1127,9 +1127,9 @@ type Post$2 = {
1127
1127
  };
1128
1128
  images: PostAssetProps$2[];
1129
1129
  videos: PostAssetProps$2[];
1130
- reactions: PostReactionsProps$2[];
1131
- comments: CommentProps$2[];
1132
- sharedPostId: string;
1130
+ reactions?: PostReactionsProps$2[];
1131
+ comments?: CommentProps$2[];
1132
+ sharedPostId?: string;
1133
1133
  page?: {
1134
1134
  id?: string;
1135
1135
  name?: string;
@@ -1142,7 +1142,7 @@ type Post$2 = {
1142
1142
  media?: unknown;
1143
1143
  linkPreview?: unknown;
1144
1144
  visibility?: string;
1145
- sharedPost: Post$2;
1145
+ sharedPost?: Post$2;
1146
1146
  title?: string;
1147
1147
  stats?: {
1148
1148
  reactionCount?: number;
@@ -1157,7 +1157,7 @@ type Post$2 = {
1157
1157
  }[];
1158
1158
  community?: {
1159
1159
  id: string;
1160
- visibility: string;
1160
+ visibility?: string;
1161
1161
  slug: string;
1162
1162
  banner?: string;
1163
1163
  createdAt?: string;
@@ -1165,13 +1165,13 @@ type Post$2 = {
1165
1165
  image?: string;
1166
1166
  location?: string;
1167
1167
  name: string;
1168
- owner: {
1168
+ owner?: {
1169
1169
  id: string;
1170
1170
  name: string;
1171
1171
  slug: string;
1172
1172
  email?: string;
1173
1173
  };
1174
- ownerId: string;
1174
+ ownerId?: string;
1175
1175
  members?: {
1176
1176
  userId: string;
1177
1177
  user: {