@zyacreatives/shared 2.1.92 → 2.1.93

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.
@@ -115,6 +115,7 @@ export declare const CreateMessageInputSchema: z.ZodObject<{
115
115
  }, z.core.$strip>>>;
116
116
  chatId: z.ZodString;
117
117
  senderId: z.ZodString;
118
+ replyToMessageId: z.ZodOptional<z.ZodCUID2>;
118
119
  linkMeta: z.ZodOptional<z.ZodObject<{
119
120
  url: z.ZodURL;
120
121
  title: z.ZodOptional<z.ZodString>;
@@ -84,6 +84,7 @@ exports.CreateMessageInputSchema = zod_openapi_1.z.object({
84
84
  .optional(),
85
85
  chatId: zod_openapi_1.z.string(),
86
86
  senderId: zod_openapi_1.z.string(),
87
+ replyToMessageId: zod_openapi_1.z.cuid2().optional(),
87
88
  linkMeta: zod_openapi_1.z
88
89
  .object({
89
90
  url: zod_openapi_1.z.url(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.92",
3
+ "version": "2.1.93",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -89,6 +89,7 @@ export const CreateMessageInputSchema = z.object({
89
89
  .optional(),
90
90
  chatId: z.string(),
91
91
  senderId: z.string(),
92
+ replyToMessageId: z.cuid2().optional(),
92
93
  linkMeta: z
93
94
  .object({
94
95
  url: z.url(),