@kl1/contracts 1.2.60-uat → 1.2.62-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/channel/index.d.ts +2629 -2687
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +189 -285
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +45 -70
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +72 -72
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +3632 -4224
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +1 -290
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +0 -71
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -59
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
- package/dist/api-contracts/src/instagram/index.d.ts +33 -49
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +40 -56
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +33 -49
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +33 -49
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +33 -49
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +33 -49
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +39 -96
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
- package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -29
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +0 -12
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +39 -137
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -137
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -567,7 +567,7 @@ export declare const whatsappContract: {
|
|
|
567
567
|
id: z.ZodOptional<z.ZodString>;
|
|
568
568
|
message: z.ZodOptional<z.ZodString>;
|
|
569
569
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
570
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
570
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
571
571
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
572
572
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
573
573
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -623,7 +623,7 @@ export declare const whatsappContract: {
|
|
|
623
623
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
624
624
|
label: z.ZodOptional<z.ZodString>;
|
|
625
625
|
}, "strip", z.ZodTypeAny, {
|
|
626
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
626
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
627
627
|
direction: "incoming" | "outgoing" | "system";
|
|
628
628
|
id?: string | undefined;
|
|
629
629
|
message?: string | undefined;
|
|
@@ -658,7 +658,7 @@ export declare const whatsappContract: {
|
|
|
658
658
|
editedAt?: string | Date | null | undefined;
|
|
659
659
|
label?: string | undefined;
|
|
660
660
|
}, {
|
|
661
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
661
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
662
662
|
direction: "incoming" | "outgoing" | "system";
|
|
663
663
|
id?: string | undefined;
|
|
664
664
|
message?: string | undefined;
|
|
@@ -695,7 +695,7 @@ export declare const whatsappContract: {
|
|
|
695
695
|
}>;
|
|
696
696
|
}, "strip", z.ZodTypeAny, {
|
|
697
697
|
message: {
|
|
698
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
698
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
699
699
|
direction: "incoming" | "outgoing" | "system";
|
|
700
700
|
id?: string | undefined;
|
|
701
701
|
message?: string | undefined;
|
|
@@ -825,7 +825,7 @@ export declare const whatsappContract: {
|
|
|
825
825
|
isBot: boolean | null;
|
|
826
826
|
}, {
|
|
827
827
|
message: {
|
|
828
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
828
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
829
829
|
direction: "incoming" | "outgoing" | "system";
|
|
830
830
|
id?: string | undefined;
|
|
831
831
|
message?: string | undefined;
|
|
@@ -959,7 +959,7 @@ export declare const whatsappContract: {
|
|
|
959
959
|
200: z.ZodObject<{
|
|
960
960
|
requestId: z.ZodString;
|
|
961
961
|
data: z.ZodObject<{
|
|
962
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
962
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
963
963
|
message: z.ZodString;
|
|
964
964
|
id: z.ZodString;
|
|
965
965
|
url: z.ZodString;
|
|
@@ -2476,7 +2476,6 @@ export declare const whatsappContract: {
|
|
|
2476
2476
|
channelId: string;
|
|
2477
2477
|
socialPlatformId: string;
|
|
2478
2478
|
}>;
|
|
2479
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
2480
2479
|
actor: z.ZodObject<{
|
|
2481
2480
|
id: z.ZodString;
|
|
2482
2481
|
createdAt: z.ZodDate;
|
|
@@ -4319,7 +4318,6 @@ export declare const whatsappContract: {
|
|
|
4319
4318
|
closedAt: Date;
|
|
4320
4319
|
lastMessageAt: Date | null;
|
|
4321
4320
|
isBotRoom: boolean;
|
|
4322
|
-
csatStatus: string | null;
|
|
4323
4321
|
cxlog: {
|
|
4324
4322
|
id: string;
|
|
4325
4323
|
channel: string | null;
|
|
@@ -4747,7 +4745,6 @@ export declare const whatsappContract: {
|
|
|
4747
4745
|
closedAt: Date;
|
|
4748
4746
|
lastMessageAt: Date | null;
|
|
4749
4747
|
isBotRoom: boolean;
|
|
4750
|
-
csatStatus: string | null;
|
|
4751
4748
|
cxlog: {
|
|
4752
4749
|
id: string;
|
|
4753
4750
|
channel: string | null;
|
|
@@ -4888,7 +4885,7 @@ export declare const whatsappContract: {
|
|
|
4888
4885
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
4889
4886
|
message: z.ZodString;
|
|
4890
4887
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
4891
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
4888
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
4892
4889
|
readAt: z.ZodDate;
|
|
4893
4890
|
metadata: z.ZodAny;
|
|
4894
4891
|
platformId: z.ZodString;
|
|
@@ -5546,7 +5543,7 @@ export declare const whatsappContract: {
|
|
|
5546
5543
|
};
|
|
5547
5544
|
}>;
|
|
5548
5545
|
}, "strip", z.ZodTypeAny, {
|
|
5549
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
5546
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5550
5547
|
message: string;
|
|
5551
5548
|
id: string;
|
|
5552
5549
|
url: string;
|
|
@@ -5708,7 +5705,7 @@ export declare const whatsappContract: {
|
|
|
5708
5705
|
metadata?: any;
|
|
5709
5706
|
template?: any;
|
|
5710
5707
|
}, {
|
|
5711
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
5708
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5712
5709
|
message: string;
|
|
5713
5710
|
id: string;
|
|
5714
5711
|
url: string;
|
|
@@ -6082,7 +6079,7 @@ export declare const whatsappContract: {
|
|
|
6082
6079
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6083
6080
|
message: z.ZodString;
|
|
6084
6081
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
6085
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
6082
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
6086
6083
|
readAt: z.ZodDate;
|
|
6087
6084
|
metadata: z.ZodAny;
|
|
6088
6085
|
platformId: z.ZodString;
|
|
@@ -7156,7 +7153,6 @@ export declare const whatsappContract: {
|
|
|
7156
7153
|
channelId: string;
|
|
7157
7154
|
socialPlatformId: string;
|
|
7158
7155
|
}>;
|
|
7159
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
7160
7156
|
actor: z.ZodObject<{
|
|
7161
7157
|
id: z.ZodString;
|
|
7162
7158
|
createdAt: z.ZodDate;
|
|
@@ -8999,7 +8995,6 @@ export declare const whatsappContract: {
|
|
|
8999
8995
|
closedAt: Date;
|
|
9000
8996
|
lastMessageAt: Date | null;
|
|
9001
8997
|
isBotRoom: boolean;
|
|
9002
|
-
csatStatus: string | null;
|
|
9003
8998
|
cxlog: {
|
|
9004
8999
|
id: string;
|
|
9005
9000
|
channel: string | null;
|
|
@@ -9427,7 +9422,6 @@ export declare const whatsappContract: {
|
|
|
9427
9422
|
closedAt: Date;
|
|
9428
9423
|
lastMessageAt: Date | null;
|
|
9429
9424
|
isBotRoom: boolean;
|
|
9430
|
-
csatStatus: string | null;
|
|
9431
9425
|
cxlog: {
|
|
9432
9426
|
id: string;
|
|
9433
9427
|
channel: string | null;
|
|
@@ -9571,7 +9565,7 @@ export declare const whatsappContract: {
|
|
|
9571
9565
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9572
9566
|
message: z.ZodString;
|
|
9573
9567
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
9574
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
9568
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
9575
9569
|
readAt: z.ZodDate;
|
|
9576
9570
|
metadata: z.ZodAny;
|
|
9577
9571
|
platformId: z.ZodString;
|
|
@@ -10229,7 +10223,7 @@ export declare const whatsappContract: {
|
|
|
10229
10223
|
};
|
|
10230
10224
|
}>;
|
|
10231
10225
|
}, "strip", z.ZodTypeAny, {
|
|
10232
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
10226
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10233
10227
|
message: string;
|
|
10234
10228
|
id: string;
|
|
10235
10229
|
url: string;
|
|
@@ -10391,7 +10385,7 @@ export declare const whatsappContract: {
|
|
|
10391
10385
|
metadata?: any;
|
|
10392
10386
|
template?: any;
|
|
10393
10387
|
}, {
|
|
10394
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
10388
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10395
10389
|
message: string;
|
|
10396
10390
|
id: string;
|
|
10397
10391
|
url: string;
|
|
@@ -11193,7 +11187,7 @@ export declare const whatsappContract: {
|
|
|
11193
11187
|
editedMessageid: z.ZodString;
|
|
11194
11188
|
label: z.ZodOptional<z.ZodString>;
|
|
11195
11189
|
}, "strip", z.ZodTypeAny, {
|
|
11196
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
11190
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11197
11191
|
message: string;
|
|
11198
11192
|
id: string;
|
|
11199
11193
|
url: string;
|
|
@@ -11628,7 +11622,6 @@ export declare const whatsappContract: {
|
|
|
11628
11622
|
closedAt: Date;
|
|
11629
11623
|
lastMessageAt: Date | null;
|
|
11630
11624
|
isBotRoom: boolean;
|
|
11631
|
-
csatStatus: string | null;
|
|
11632
11625
|
cxlog: {
|
|
11633
11626
|
id: string;
|
|
11634
11627
|
channel: string | null;
|
|
@@ -11747,7 +11740,7 @@ export declare const whatsappContract: {
|
|
|
11747
11740
|
previewUrl: string;
|
|
11748
11741
|
imageSetId: string;
|
|
11749
11742
|
repliedMessage: {
|
|
11750
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
11743
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11751
11744
|
message: string;
|
|
11752
11745
|
id: string;
|
|
11753
11746
|
url: string;
|
|
@@ -11958,7 +11951,7 @@ export declare const whatsappContract: {
|
|
|
11958
11951
|
template?: any;
|
|
11959
11952
|
label?: string | undefined;
|
|
11960
11953
|
}, {
|
|
11961
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
11954
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
11962
11955
|
message: string;
|
|
11963
11956
|
id: string;
|
|
11964
11957
|
url: string;
|
|
@@ -12393,7 +12386,6 @@ export declare const whatsappContract: {
|
|
|
12393
12386
|
closedAt: Date;
|
|
12394
12387
|
lastMessageAt: Date | null;
|
|
12395
12388
|
isBotRoom: boolean;
|
|
12396
|
-
csatStatus: string | null;
|
|
12397
12389
|
cxlog: {
|
|
12398
12390
|
id: string;
|
|
12399
12391
|
channel: string | null;
|
|
@@ -12512,7 +12504,7 @@ export declare const whatsappContract: {
|
|
|
12512
12504
|
previewUrl: string;
|
|
12513
12505
|
imageSetId: string;
|
|
12514
12506
|
repliedMessage: {
|
|
12515
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
12507
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12516
12508
|
message: string;
|
|
12517
12509
|
id: string;
|
|
12518
12510
|
url: string;
|
|
@@ -12724,7 +12716,7 @@ export declare const whatsappContract: {
|
|
|
12724
12716
|
label?: string | undefined;
|
|
12725
12717
|
}>>>;
|
|
12726
12718
|
}, "strip", z.ZodTypeAny, {
|
|
12727
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
12719
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
12728
12720
|
message: string;
|
|
12729
12721
|
id: string;
|
|
12730
12722
|
url: string;
|
|
@@ -13159,7 +13151,6 @@ export declare const whatsappContract: {
|
|
|
13159
13151
|
closedAt: Date;
|
|
13160
13152
|
lastMessageAt: Date | null;
|
|
13161
13153
|
isBotRoom: boolean;
|
|
13162
|
-
csatStatus: string | null;
|
|
13163
13154
|
cxlog: {
|
|
13164
13155
|
id: string;
|
|
13165
13156
|
channel: string | null;
|
|
@@ -13278,7 +13269,7 @@ export declare const whatsappContract: {
|
|
|
13278
13269
|
previewUrl: string;
|
|
13279
13270
|
imageSetId: string;
|
|
13280
13271
|
repliedMessage: {
|
|
13281
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
13272
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13282
13273
|
message: string;
|
|
13283
13274
|
id: string;
|
|
13284
13275
|
url: string;
|
|
@@ -13489,7 +13480,7 @@ export declare const whatsappContract: {
|
|
|
13489
13480
|
template?: any;
|
|
13490
13481
|
metadata?: any;
|
|
13491
13482
|
fromMessage?: {
|
|
13492
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
13483
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13493
13484
|
message: string;
|
|
13494
13485
|
id: string;
|
|
13495
13486
|
url: string;
|
|
@@ -13924,7 +13915,6 @@ export declare const whatsappContract: {
|
|
|
13924
13915
|
closedAt: Date;
|
|
13925
13916
|
lastMessageAt: Date | null;
|
|
13926
13917
|
isBotRoom: boolean;
|
|
13927
|
-
csatStatus: string | null;
|
|
13928
13918
|
cxlog: {
|
|
13929
13919
|
id: string;
|
|
13930
13920
|
channel: string | null;
|
|
@@ -14043,7 +14033,7 @@ export declare const whatsappContract: {
|
|
|
14043
14033
|
previewUrl: string;
|
|
14044
14034
|
imageSetId: string;
|
|
14045
14035
|
repliedMessage: {
|
|
14046
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
14036
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14047
14037
|
message: string;
|
|
14048
14038
|
id: string;
|
|
14049
14039
|
url: string;
|
|
@@ -14255,7 +14245,7 @@ export declare const whatsappContract: {
|
|
|
14255
14245
|
label?: string | undefined;
|
|
14256
14246
|
} | null | undefined;
|
|
14257
14247
|
}, {
|
|
14258
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
14248
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14259
14249
|
message: string;
|
|
14260
14250
|
id: string;
|
|
14261
14251
|
url: string;
|
|
@@ -14690,7 +14680,6 @@ export declare const whatsappContract: {
|
|
|
14690
14680
|
closedAt: Date;
|
|
14691
14681
|
lastMessageAt: Date | null;
|
|
14692
14682
|
isBotRoom: boolean;
|
|
14693
|
-
csatStatus: string | null;
|
|
14694
14683
|
cxlog: {
|
|
14695
14684
|
id: string;
|
|
14696
14685
|
channel: string | null;
|
|
@@ -14809,7 +14798,7 @@ export declare const whatsappContract: {
|
|
|
14809
14798
|
previewUrl: string;
|
|
14810
14799
|
imageSetId: string;
|
|
14811
14800
|
repliedMessage: {
|
|
14812
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
14801
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14813
14802
|
message: string;
|
|
14814
14803
|
id: string;
|
|
14815
14804
|
url: string;
|
|
@@ -15020,7 +15009,7 @@ export declare const whatsappContract: {
|
|
|
15020
15009
|
template?: any;
|
|
15021
15010
|
metadata?: any;
|
|
15022
15011
|
fromMessage?: {
|
|
15023
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
15012
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15024
15013
|
message: string;
|
|
15025
15014
|
id: string;
|
|
15026
15015
|
url: string;
|
|
@@ -15455,7 +15444,6 @@ export declare const whatsappContract: {
|
|
|
15455
15444
|
closedAt: Date;
|
|
15456
15445
|
lastMessageAt: Date | null;
|
|
15457
15446
|
isBotRoom: boolean;
|
|
15458
|
-
csatStatus: string | null;
|
|
15459
15447
|
cxlog: {
|
|
15460
15448
|
id: string;
|
|
15461
15449
|
channel: string | null;
|
|
@@ -15574,7 +15562,7 @@ export declare const whatsappContract: {
|
|
|
15574
15562
|
previewUrl: string;
|
|
15575
15563
|
imageSetId: string;
|
|
15576
15564
|
repliedMessage: {
|
|
15577
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
15565
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15578
15566
|
message: string;
|
|
15579
15567
|
id: string;
|
|
15580
15568
|
url: string;
|
|
@@ -15788,7 +15776,7 @@ export declare const whatsappContract: {
|
|
|
15788
15776
|
}>;
|
|
15789
15777
|
}, "strip", z.ZodTypeAny, {
|
|
15790
15778
|
data: {
|
|
15791
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
15779
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15792
15780
|
message: string;
|
|
15793
15781
|
id: string;
|
|
15794
15782
|
url: string;
|
|
@@ -16223,7 +16211,6 @@ export declare const whatsappContract: {
|
|
|
16223
16211
|
closedAt: Date;
|
|
16224
16212
|
lastMessageAt: Date | null;
|
|
16225
16213
|
isBotRoom: boolean;
|
|
16226
|
-
csatStatus: string | null;
|
|
16227
16214
|
cxlog: {
|
|
16228
16215
|
id: string;
|
|
16229
16216
|
channel: string | null;
|
|
@@ -16342,7 +16329,7 @@ export declare const whatsappContract: {
|
|
|
16342
16329
|
previewUrl: string;
|
|
16343
16330
|
imageSetId: string;
|
|
16344
16331
|
repliedMessage: {
|
|
16345
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
16332
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16346
16333
|
message: string;
|
|
16347
16334
|
id: string;
|
|
16348
16335
|
url: string;
|
|
@@ -16553,7 +16540,7 @@ export declare const whatsappContract: {
|
|
|
16553
16540
|
template?: any;
|
|
16554
16541
|
metadata?: any;
|
|
16555
16542
|
fromMessage?: {
|
|
16556
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
16543
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16557
16544
|
message: string;
|
|
16558
16545
|
id: string;
|
|
16559
16546
|
url: string;
|
|
@@ -16988,7 +16975,6 @@ export declare const whatsappContract: {
|
|
|
16988
16975
|
closedAt: Date;
|
|
16989
16976
|
lastMessageAt: Date | null;
|
|
16990
16977
|
isBotRoom: boolean;
|
|
16991
|
-
csatStatus: string | null;
|
|
16992
16978
|
cxlog: {
|
|
16993
16979
|
id: string;
|
|
16994
16980
|
channel: string | null;
|
|
@@ -17107,7 +17093,7 @@ export declare const whatsappContract: {
|
|
|
17107
17093
|
previewUrl: string;
|
|
17108
17094
|
imageSetId: string;
|
|
17109
17095
|
repliedMessage: {
|
|
17110
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17096
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17111
17097
|
message: string;
|
|
17112
17098
|
id: string;
|
|
17113
17099
|
url: string;
|
|
@@ -17322,7 +17308,7 @@ export declare const whatsappContract: {
|
|
|
17322
17308
|
requestId: string;
|
|
17323
17309
|
}, {
|
|
17324
17310
|
data: {
|
|
17325
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17311
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17326
17312
|
message: string;
|
|
17327
17313
|
id: string;
|
|
17328
17314
|
url: string;
|
|
@@ -17757,7 +17743,6 @@ export declare const whatsappContract: {
|
|
|
17757
17743
|
closedAt: Date;
|
|
17758
17744
|
lastMessageAt: Date | null;
|
|
17759
17745
|
isBotRoom: boolean;
|
|
17760
|
-
csatStatus: string | null;
|
|
17761
17746
|
cxlog: {
|
|
17762
17747
|
id: string;
|
|
17763
17748
|
channel: string | null;
|
|
@@ -17876,7 +17861,7 @@ export declare const whatsappContract: {
|
|
|
17876
17861
|
previewUrl: string;
|
|
17877
17862
|
imageSetId: string;
|
|
17878
17863
|
repliedMessage: {
|
|
17879
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17864
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17880
17865
|
message: string;
|
|
17881
17866
|
id: string;
|
|
17882
17867
|
url: string;
|
|
@@ -18087,7 +18072,7 @@ export declare const whatsappContract: {
|
|
|
18087
18072
|
template?: any;
|
|
18088
18073
|
metadata?: any;
|
|
18089
18074
|
fromMessage?: {
|
|
18090
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
18075
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18091
18076
|
message: string;
|
|
18092
18077
|
id: string;
|
|
18093
18078
|
url: string;
|
|
@@ -18522,7 +18507,6 @@ export declare const whatsappContract: {
|
|
|
18522
18507
|
closedAt: Date;
|
|
18523
18508
|
lastMessageAt: Date | null;
|
|
18524
18509
|
isBotRoom: boolean;
|
|
18525
|
-
csatStatus: string | null;
|
|
18526
18510
|
cxlog: {
|
|
18527
18511
|
id: string;
|
|
18528
18512
|
channel: string | null;
|
|
@@ -18641,7 +18625,7 @@ export declare const whatsappContract: {
|
|
|
18641
18625
|
previewUrl: string;
|
|
18642
18626
|
imageSetId: string;
|
|
18643
18627
|
repliedMessage: {
|
|
18644
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
18628
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18645
18629
|
message: string;
|
|
18646
18630
|
id: string;
|
|
18647
18631
|
url: string;
|
|
@@ -21009,16 +20993,16 @@ export declare const whatsappContract: {
|
|
|
21009
20993
|
error?: any;
|
|
21010
20994
|
}>;
|
|
21011
20995
|
};
|
|
21012
|
-
path: "/
|
|
20996
|
+
path: "/waapi";
|
|
21013
20997
|
};
|
|
21014
20998
|
getWaapiQr: {
|
|
21015
20999
|
method: "GET";
|
|
21016
21000
|
query: z.ZodObject<{
|
|
21017
|
-
|
|
21001
|
+
channelId: z.ZodString;
|
|
21018
21002
|
}, "strip", z.ZodTypeAny, {
|
|
21019
|
-
|
|
21003
|
+
channelId: string;
|
|
21020
21004
|
}, {
|
|
21021
|
-
|
|
21005
|
+
channelId: string;
|
|
21022
21006
|
}>;
|
|
21023
21007
|
responses: {
|
|
21024
21008
|
200: z.ZodObject<{
|
|
@@ -21067,48 +21051,7 @@ export declare const whatsappContract: {
|
|
|
21067
21051
|
error?: any;
|
|
21068
21052
|
}>;
|
|
21069
21053
|
};
|
|
21070
|
-
path: "/
|
|
21071
|
-
};
|
|
21072
|
-
deleteWaapi: {
|
|
21073
|
-
body: z.ZodOptional<z.ZodAny>;
|
|
21074
|
-
method: "DELETE";
|
|
21075
|
-
pathParams: z.ZodObject<{
|
|
21076
|
-
instanceId: z.ZodString;
|
|
21077
|
-
}, "strip", z.ZodTypeAny, {
|
|
21078
|
-
instanceId: string;
|
|
21079
|
-
}, {
|
|
21080
|
-
instanceId: string;
|
|
21081
|
-
}>;
|
|
21082
|
-
responses: {
|
|
21083
|
-
200: z.ZodObject<{
|
|
21084
|
-
requestId: z.ZodString;
|
|
21085
|
-
}, "strip", z.ZodTypeAny, {
|
|
21086
|
-
requestId: string;
|
|
21087
|
-
}, {
|
|
21088
|
-
requestId: string;
|
|
21089
|
-
}>;
|
|
21090
|
-
500: z.ZodObject<{
|
|
21091
|
-
message: z.ZodString;
|
|
21092
|
-
error: z.ZodAny;
|
|
21093
|
-
}, "strip", z.ZodTypeAny, {
|
|
21094
|
-
message: string;
|
|
21095
|
-
error?: any;
|
|
21096
|
-
}, {
|
|
21097
|
-
message: string;
|
|
21098
|
-
error?: any;
|
|
21099
|
-
}>;
|
|
21100
|
-
400: z.ZodObject<{
|
|
21101
|
-
message: z.ZodString;
|
|
21102
|
-
error: z.ZodAny;
|
|
21103
|
-
}, "strip", z.ZodTypeAny, {
|
|
21104
|
-
message: string;
|
|
21105
|
-
error?: any;
|
|
21106
|
-
}, {
|
|
21107
|
-
message: string;
|
|
21108
|
-
error?: any;
|
|
21109
|
-
}>;
|
|
21110
|
-
};
|
|
21111
|
-
path: "/mobile/:instanceId";
|
|
21054
|
+
path: "/waapi/qr";
|
|
21112
21055
|
};
|
|
21113
21056
|
sendSeenToWaapi: {
|
|
21114
21057
|
body: z.ZodObject<{
|
|
@@ -21164,7 +21107,7 @@ export declare const whatsappContract: {
|
|
|
21164
21107
|
error?: any;
|
|
21165
21108
|
}>;
|
|
21166
21109
|
};
|
|
21167
|
-
path: "/
|
|
21110
|
+
path: "/waapi/send-seen";
|
|
21168
21111
|
};
|
|
21169
21112
|
};
|
|
21170
21113
|
//# sourceMappingURL=index.d.ts.map
|