@kl1/contracts 1.4.36 → 1.4.38

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.mjs CHANGED
@@ -2850,7 +2850,7 @@ var mainFeedContract = initContract8().router(
2850
2850
  },
2851
2851
  getMessagesByParent: {
2852
2852
  method: "GET",
2853
- path: "ms/feed-post/message/:parentId/relevance",
2853
+ path: "chs/api/v1/chat/message/:parentId/relevance",
2854
2854
  pathParams: z42.object({
2855
2855
  parentId: z42.string().uuid()
2856
2856
  }),
@@ -3358,7 +3358,9 @@ var commentContract = initContract9().router(
3358
3358
  headers: DefaultHeaderSchema,
3359
3359
  query: GetCommentQuerySchema,
3360
3360
  responses: {
3361
- 200: z46.array(CommentSchema),
3361
+ 200: z46.object({
3362
+ data: z46.array(CommentSchema)
3363
+ }),
3362
3364
  400: z46.object({
3363
3365
  message: z46.string()
3364
3366
  }),