@kl1/contracts 1.1.96-uat → 1.1.97-uat
Sign up to get free protection for your applications and to get access to all the features.
@@ -73843,7 +73843,7 @@ export declare const mainChatContract: {
|
|
73843
73843
|
};
|
73844
73844
|
initiateMessage: {
|
73845
73845
|
body: z.ZodObject<{
|
73846
|
-
platformContactId: z.ZodOptional<z.ZodString
|
73846
|
+
platformContactId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
73847
73847
|
channelId: z.ZodString;
|
73848
73848
|
contactId: z.ZodOptional<z.ZodString>;
|
73849
73849
|
message: z.ZodObject<{
|
@@ -73862,7 +73862,7 @@ export declare const mainChatContract: {
|
|
73862
73862
|
message?: string | undefined;
|
73863
73863
|
};
|
73864
73864
|
channelId: string;
|
73865
|
-
platformContactId?: string | undefined;
|
73865
|
+
platformContactId?: string | null | undefined;
|
73866
73866
|
contactId?: string | undefined;
|
73867
73867
|
}, {
|
73868
73868
|
message: {
|
@@ -73870,7 +73870,7 @@ export declare const mainChatContract: {
|
|
73870
73870
|
message?: string | undefined;
|
73871
73871
|
};
|
73872
73872
|
channelId: string;
|
73873
|
-
platformContactId?: string | undefined;
|
73873
|
+
platformContactId?: string | null | undefined;
|
73874
73874
|
contactId?: string | undefined;
|
73875
73875
|
}>;
|
73876
73876
|
method: "POST";
|
@@ -793,7 +793,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
793
793
|
} | undefined;
|
794
794
|
}>;
|
795
795
|
export declare const InitiateMessageSchema: z.ZodObject<{
|
796
|
-
platformContactId: z.ZodOptional<z.ZodString
|
796
|
+
platformContactId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
797
797
|
channelId: z.ZodString;
|
798
798
|
contactId: z.ZodOptional<z.ZodString>;
|
799
799
|
message: z.ZodObject<{
|
@@ -812,7 +812,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
812
812
|
message?: string | undefined;
|
813
813
|
};
|
814
814
|
channelId: string;
|
815
|
-
platformContactId?: string | undefined;
|
815
|
+
platformContactId?: string | null | undefined;
|
816
816
|
contactId?: string | undefined;
|
817
817
|
}, {
|
818
818
|
message: {
|
@@ -820,7 +820,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
820
820
|
message?: string | undefined;
|
821
821
|
};
|
822
822
|
channelId: string;
|
823
|
-
platformContactId?: string | undefined;
|
823
|
+
platformContactId?: string | null | undefined;
|
824
824
|
contactId?: string | undefined;
|
825
825
|
}>;
|
826
826
|
export declare const SolveRoomSchema: z.ZodObject<{
|
package/dist/index.js
CHANGED
@@ -1742,7 +1742,7 @@ var SendMessageSchema = import_zod33.default.object({
|
|
1742
1742
|
}).optional()
|
1743
1743
|
});
|
1744
1744
|
var InitiateMessageSchema = import_zod33.default.object({
|
1745
|
-
platformContactId: import_zod33.default.string().uuid().optional(),
|
1745
|
+
platformContactId: import_zod33.default.string().uuid().optional().nullable(),
|
1746
1746
|
channelId: import_zod33.default.string().uuid(),
|
1747
1747
|
contactId: import_zod33.default.string().uuid().optional(),
|
1748
1748
|
message: import_zod33.default.object({
|