@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.
@@ -12,4 +12,6 @@ export declare const ActivitySchema: z.ZodObject<{
12
12
  actorId: z.ZodString;
13
13
  actorUsername: z.ZodString;
14
14
  actorImageUrl: z.ZodOptional<z.ZodURL>;
15
+ followsYou: z.ZodOptional<z.ZodBoolean>;
16
+ isFollowing: z.ZodOptional<z.ZodBoolean>;
15
17
  }, z.core.$strip>;
@@ -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
  });
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.93",
3
+ "version": "2.1.94",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,4 +11,7 @@ export const ActivitySchema = z.object({
11
11
  actorId: z.string(),
12
12
  actorUsername: z.string(),
13
13
  actorImageUrl: z.url().optional(),
14
+ followsYou: z.boolean().optional(),
15
+ isFollowing: z.boolean().optional(),
14
16
  });
17
+