@kl1/contracts 1.3.77 → 1.3.78
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 +43 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +7 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -57515,6 +57515,49 @@ export declare const mainChatRoomContract: {
|
|
57515
57515
|
'x-client-timezone'?: string | undefined;
|
57516
57516
|
}>>>;
|
57517
57517
|
};
|
57518
|
+
getAllBotRoomCount: {
|
57519
|
+
summary: "Get all opened and closed bot rooms count";
|
57520
|
+
method: "GET";
|
57521
|
+
responses: {
|
57522
|
+
200: z.ZodObject<{
|
57523
|
+
requestId: z.ZodString;
|
57524
|
+
data: z.ZodObject<{
|
57525
|
+
allOpenedClosedBotRoomCount: z.ZodNumber;
|
57526
|
+
}, "strip", z.ZodTypeAny, {
|
57527
|
+
allOpenedClosedBotRoomCount: number;
|
57528
|
+
}, {
|
57529
|
+
allOpenedClosedBotRoomCount: number;
|
57530
|
+
}>;
|
57531
|
+
}, "strip", z.ZodTypeAny, {
|
57532
|
+
data: {
|
57533
|
+
allOpenedClosedBotRoomCount: number;
|
57534
|
+
};
|
57535
|
+
requestId: string;
|
57536
|
+
}, {
|
57537
|
+
data: {
|
57538
|
+
allOpenedClosedBotRoomCount: number;
|
57539
|
+
};
|
57540
|
+
requestId: string;
|
57541
|
+
}>;
|
57542
|
+
};
|
57543
|
+
path: "ms/chat/all-bot-rooms-count";
|
57544
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
57545
|
+
'x-tenant': z.ZodString;
|
57546
|
+
'x-service-token': z.ZodString;
|
57547
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
57548
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
57549
|
+
}, "strip", z.ZodTypeAny, {
|
57550
|
+
'x-tenant': string;
|
57551
|
+
'x-service-token': string;
|
57552
|
+
'x-client-timezone': string;
|
57553
|
+
'x-code'?: string | undefined;
|
57554
|
+
}, {
|
57555
|
+
'x-tenant': string;
|
57556
|
+
'x-service-token': string;
|
57557
|
+
'x-code'?: string | undefined;
|
57558
|
+
'x-client-timezone'?: string | undefined;
|
57559
|
+
}>>>;
|
57560
|
+
};
|
57518
57561
|
botRoomTakeOver: {
|
57519
57562
|
body: z.ZodObject<{
|
57520
57563
|
assigneeId: z.ZodOptional<z.ZodString>;
|