@kl1/contracts 1.1.20 → 1.1.21
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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3 -3
- package/dist/src/chat/validation.d.ts +3 -3
- package/dist/src/contract.d.ts +3 -3
- package/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -43661,9 +43661,9 @@ export declare const mainChatContract: {
|
|
43661
43661
|
page: z.ZodDefault<z.ZodNumber>;
|
43662
43662
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
43663
43663
|
query: z.ZodString;
|
43664
|
-
type: z.ZodDefault<z.ZodEnum<["contact", "message"]>>;
|
43664
|
+
type: z.ZodDefault<z.ZodEnum<["contact", "message", "caseId"]>>;
|
43665
43665
|
}, "strip", z.ZodTypeAny, {
|
43666
|
-
type: "message" | "contact";
|
43666
|
+
type: "message" | "contact" | "caseId";
|
43667
43667
|
page: number;
|
43668
43668
|
pageSize: number;
|
43669
43669
|
query: string;
|
@@ -43671,7 +43671,7 @@ export declare const mainChatContract: {
|
|
43671
43671
|
query: string;
|
43672
43672
|
page?: number | undefined;
|
43673
43673
|
pageSize?: number | undefined;
|
43674
|
-
type?: "message" | "contact" | undefined;
|
43674
|
+
type?: "message" | "contact" | "caseId" | undefined;
|
43675
43675
|
}>;
|
43676
43676
|
responses: {
|
43677
43677
|
200: z.ZodObject<{
|
@@ -641,9 +641,9 @@ export declare const SearchRoomsSchema: z.ZodObject<{
|
|
641
641
|
page: z.ZodDefault<z.ZodNumber>;
|
642
642
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
643
643
|
query: z.ZodString;
|
644
|
-
type: z.ZodDefault<z.ZodEnum<["contact", "message"]>>;
|
644
|
+
type: z.ZodDefault<z.ZodEnum<["contact", "message", "caseId"]>>;
|
645
645
|
}, "strip", z.ZodTypeAny, {
|
646
|
-
type: "message" | "contact";
|
646
|
+
type: "message" | "contact" | "caseId";
|
647
647
|
page: number;
|
648
648
|
pageSize: number;
|
649
649
|
query: string;
|
@@ -651,7 +651,7 @@ export declare const SearchRoomsSchema: z.ZodObject<{
|
|
651
651
|
query: string;
|
652
652
|
page?: number | undefined;
|
653
653
|
pageSize?: number | undefined;
|
654
|
-
type?: "message" | "contact" | undefined;
|
654
|
+
type?: "message" | "contact" | "caseId" | undefined;
|
655
655
|
}>;
|
656
656
|
export declare const ChannelSchema: z.ZodObject<{
|
657
657
|
id: z.ZodString;
|
package/dist/src/contract.d.ts
CHANGED
@@ -157299,9 +157299,9 @@ export declare const chatContract: {
|
|
157299
157299
|
page: import("zod").ZodDefault<import("zod").ZodNumber>;
|
157300
157300
|
pageSize: import("zod").ZodDefault<import("zod").ZodNumber>;
|
157301
157301
|
query: import("zod").ZodString;
|
157302
|
-
type: import("zod").ZodDefault<import("zod").ZodEnum<["contact", "message"]>>;
|
157302
|
+
type: import("zod").ZodDefault<import("zod").ZodEnum<["contact", "message", "caseId"]>>;
|
157303
157303
|
}, "strip", import("zod").ZodTypeAny, {
|
157304
|
-
type: "message" | "contact";
|
157304
|
+
type: "message" | "contact" | "caseId";
|
157305
157305
|
page: number;
|
157306
157306
|
pageSize: number;
|
157307
157307
|
query: string;
|
@@ -157309,7 +157309,7 @@ export declare const chatContract: {
|
|
157309
157309
|
query: string;
|
157310
157310
|
page?: number | undefined;
|
157311
157311
|
pageSize?: number | undefined;
|
157312
|
-
type?: "message" | "contact" | undefined;
|
157312
|
+
type?: "message" | "contact" | "caseId" | undefined;
|
157313
157313
|
}>;
|
157314
157314
|
responses: {
|
157315
157315
|
200: import("zod").ZodObject<{
|