@zyacreatives/shared 2.1.93 → 2.1.94
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/schemas/activity.js
CHANGED
|
@@ -16,4 +16,6 @@ exports.ActivitySchema = zod_1.default.object({
|
|
|
16
16
|
actorId: zod_1.default.string(),
|
|
17
17
|
actorUsername: zod_1.default.string(),
|
|
18
18
|
actorImageUrl: zod_1.default.url().optional(),
|
|
19
|
+
followsYou: zod_1.default.boolean().optional(),
|
|
20
|
+
isFollowing: zod_1.default.boolean().optional(),
|
|
19
21
|
});
|
package/dist/schemas/post.d.ts
CHANGED
|
@@ -374,6 +374,8 @@ export declare const PostWithBookmarksEntitySchema: z.ZodObject<{
|
|
|
374
374
|
actorId: z.ZodString;
|
|
375
375
|
actorUsername: z.ZodString;
|
|
376
376
|
actorImageUrl: z.ZodOptional<z.ZodURL>;
|
|
377
|
+
followsYou: z.ZodOptional<z.ZodBoolean>;
|
|
378
|
+
isFollowing: z.ZodOptional<z.ZodBoolean>;
|
|
377
379
|
}, z.core.$strip>>;
|
|
378
380
|
}, z.core.$strip>;
|
|
379
381
|
export declare const GetPostWithBookmarksOutputSchema: z.ZodObject<{
|
|
@@ -393,6 +395,8 @@ export declare const GetPostWithBookmarksOutputSchema: z.ZodObject<{
|
|
|
393
395
|
actorId: z.ZodString;
|
|
394
396
|
actorUsername: z.ZodString;
|
|
395
397
|
actorImageUrl: z.ZodOptional<z.ZodURL>;
|
|
398
|
+
followsYou: z.ZodOptional<z.ZodBoolean>;
|
|
399
|
+
isFollowing: z.ZodOptional<z.ZodBoolean>;
|
|
396
400
|
}, z.core.$strip>>;
|
|
397
401
|
totalNo: z.ZodNumber;
|
|
398
402
|
}, z.core.$strip>;
|
package/package.json
CHANGED