@kl1/contracts 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2888,7 +2888,7 @@ var mainFeedContract = (0, import_core8.initContract)().router(
|
|
2888
2888
|
{
|
2889
2889
|
getFeedPostById: {
|
2890
2890
|
method: "GET",
|
2891
|
-
path: "
|
2891
|
+
path: "/:id",
|
2892
2892
|
pathParams: import_zod42.default.object({
|
2893
2893
|
id: import_zod42.default.string().uuid()
|
2894
2894
|
}),
|
@@ -2901,7 +2901,7 @@ var mainFeedContract = (0, import_core8.initContract)().router(
|
|
2901
2901
|
},
|
2902
2902
|
getMessagesByParent: {
|
2903
2903
|
method: "GET",
|
2904
|
-
path: "/
|
2904
|
+
path: "/message/:parentId/relevance",
|
2905
2905
|
pathParams: import_zod42.default.object({
|
2906
2906
|
parentId: import_zod42.default.string().uuid()
|
2907
2907
|
}),
|
@@ -2919,7 +2919,7 @@ var mainFeedContract = (0, import_core8.initContract)().router(
|
|
2919
2919
|
},
|
2920
2920
|
{
|
2921
2921
|
baseHeaders: DefaultHeaderSchema,
|
2922
|
-
pathPrefix: "ms"
|
2922
|
+
pathPrefix: "ms/feed-post"
|
2923
2923
|
}
|
2924
2924
|
);
|
2925
2925
|
var mainChatRoomContract = (0, import_core8.initContract)().router(
|