@kl1/contracts 1.2.99 → 1.3.0
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/api-contracts/src/chat/index.d.ts +2 -2
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
|
@@ -246477,7 +246477,7 @@ export declare const feedPostContract: {
|
|
|
246477
246477
|
}, {
|
|
246478
246478
|
id: string;
|
|
246479
246479
|
}>;
|
|
246480
|
-
path: "/feed-post/:id";
|
|
246480
|
+
path: "ms/feed-post/:id";
|
|
246481
246481
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
246482
246482
|
'x-tenant': import("zod").ZodString;
|
|
246483
246483
|
'x-service-token': import("zod").ZodString;
|
|
@@ -249486,7 +249486,7 @@ export declare const feedPostContract: {
|
|
|
249486
249486
|
page?: number | undefined;
|
|
249487
249487
|
pageSize?: number | undefined;
|
|
249488
249488
|
}>;
|
|
249489
|
-
path: "/feed-post/message/:parentId/relevance";
|
|
249489
|
+
path: "ms/feed-post/message/:parentId/relevance";
|
|
249490
249490
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
249491
249491
|
'x-tenant': import("zod").ZodString;
|
|
249492
249492
|
'x-service-token': import("zod").ZodString;
|
package/dist/index.js
CHANGED
|
@@ -2925,7 +2925,8 @@ var mainFeedContract = (0, import_core8.initContract)().router(
|
|
|
2925
2925
|
}
|
|
2926
2926
|
},
|
|
2927
2927
|
{
|
|
2928
|
-
baseHeaders: DefaultHeaderSchema
|
|
2928
|
+
baseHeaders: DefaultHeaderSchema,
|
|
2929
|
+
pathPrefix: "ms"
|
|
2929
2930
|
}
|
|
2930
2931
|
);
|
|
2931
2932
|
var mainChatRoomContract = (0, import_core8.initContract)().router(
|