@kl1/contracts 1.1.95-uat → 1.1.96-uat
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 +6 -3
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +6 -3
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contact/index.d.ts.map +1 -1
- 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 +1 -1
|
@@ -73843,8 +73843,9 @@ export declare const mainChatContract: {
|
|
|
73843
73843
|
};
|
|
73844
73844
|
initiateMessage: {
|
|
73845
73845
|
body: z.ZodObject<{
|
|
73846
|
-
platformContactId: z.ZodString
|
|
73846
|
+
platformContactId: z.ZodOptional<z.ZodString>;
|
|
73847
73847
|
channelId: z.ZodString;
|
|
73848
|
+
contactId: z.ZodOptional<z.ZodString>;
|
|
73848
73849
|
message: z.ZodObject<{
|
|
73849
73850
|
message: z.ZodOptional<z.ZodString>;
|
|
73850
73851
|
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
|
@@ -73861,14 +73862,16 @@ export declare const mainChatContract: {
|
|
|
73861
73862
|
message?: string | undefined;
|
|
73862
73863
|
};
|
|
73863
73864
|
channelId: string;
|
|
73864
|
-
platformContactId
|
|
73865
|
+
platformContactId?: string | undefined;
|
|
73866
|
+
contactId?: string | undefined;
|
|
73865
73867
|
}, {
|
|
73866
73868
|
message: {
|
|
73867
73869
|
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
|
73868
73870
|
message?: string | undefined;
|
|
73869
73871
|
};
|
|
73870
73872
|
channelId: string;
|
|
73871
|
-
platformContactId
|
|
73873
|
+
platformContactId?: string | undefined;
|
|
73874
|
+
contactId?: string | undefined;
|
|
73872
73875
|
}>;
|
|
73873
73876
|
method: "POST";
|
|
73874
73877
|
responses: {
|