@kl1/contracts 1.3.3 → 1.3.4

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
@@ -2780,7 +2780,7 @@ var mainFeedContract = initContract8().router(
2780
2780
  {
2781
2781
  getFeedPostById: {
2782
2782
  method: "GET",
2783
- path: "/feed-post/:id",
2783
+ path: "/:id",
2784
2784
  pathParams: z42.object({
2785
2785
  id: z42.string().uuid()
2786
2786
  }),
@@ -2793,7 +2793,7 @@ var mainFeedContract = initContract8().router(
2793
2793
  },
2794
2794
  getMessagesByParent: {
2795
2795
  method: "GET",
2796
- path: "/feed-post/message/:parentId/relevance",
2796
+ path: "/message/:parentId/relevance",
2797
2797
  pathParams: z42.object({
2798
2798
  parentId: z42.string().uuid()
2799
2799
  }),
@@ -2811,7 +2811,7 @@ var mainFeedContract = initContract8().router(
2811
2811
  },
2812
2812
  {
2813
2813
  baseHeaders: DefaultHeaderSchema,
2814
- pathPrefix: "ms"
2814
+ pathPrefix: "ms/feed-post"
2815
2815
  }
2816
2816
  );
2817
2817
  var mainChatRoomContract = initContract8().router(