@kl1/contracts 1.4.75 → 1.4.76
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 +9 -4
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +6 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +13 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/company/index.d.ts +80 -0
- package/dist/api-contracts/src/company/index.d.ts.map +1 -1
- package/dist/api-contracts/src/company/validation.d.ts +40 -0
- package/dist/api-contracts/src/company/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +63 -8
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +5 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/klink-chat/index.d.ts +5 -0
- package/dist/api-contracts/src/klink-chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +5 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +4 -4
- package/dist/api-contracts/src/mail/message-contract.d.ts +4 -4
- package/dist/api-contracts/src/mail/schemas/message-validation.schema.d.ts +4 -4
- package/dist/api-contracts/src/messenger/index.d.ts +5 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +5 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +5 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +5 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +5 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +14 -4
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/validation.d.ts +12 -4
- package/dist/api-contracts/src/whatsapp/validation.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +1 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +26 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
@@ -49189,6 +49189,7 @@ export declare const platformContract: {
|
|
49189
49189
|
connectedUserId?: string | null | undefined;
|
49190
49190
|
}>;
|
49191
49191
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
49192
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
49192
49193
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
49193
49194
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
49194
49195
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -49289,6 +49290,7 @@ export declare const platformContract: {
|
|
49289
49290
|
email: string;
|
49290
49291
|
} | null | undefined;
|
49291
49292
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
49293
|
+
whatsappTemplateName?: string | undefined;
|
49292
49294
|
telegramBusinessConnectionId?: string | null | undefined;
|
49293
49295
|
}, {
|
49294
49296
|
id: string;
|
@@ -49388,6 +49390,7 @@ export declare const platformContract: {
|
|
49388
49390
|
} | null | undefined;
|
49389
49391
|
isBotRoom?: boolean | null | undefined;
|
49390
49392
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
49393
|
+
whatsappTemplateName?: string | undefined;
|
49391
49394
|
telegramBusinessConnectionId?: string | null | undefined;
|
49392
49395
|
}>;
|
49393
49396
|
message: import("zod").ZodObject<{
|
@@ -49655,6 +49658,7 @@ export declare const platformContract: {
|
|
49655
49658
|
email: string;
|
49656
49659
|
} | null | undefined;
|
49657
49660
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
49661
|
+
whatsappTemplateName?: string | undefined;
|
49658
49662
|
telegramBusinessConnectionId?: string | null | undefined;
|
49659
49663
|
};
|
49660
49664
|
isBot: boolean | null;
|
@@ -49793,6 +49797,7 @@ export declare const platformContract: {
|
|
49793
49797
|
} | null | undefined;
|
49794
49798
|
isBotRoom?: boolean | null | undefined;
|
49795
49799
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
49800
|
+
whatsappTemplateName?: string | undefined;
|
49796
49801
|
telegramBusinessConnectionId?: string | null | undefined;
|
49797
49802
|
};
|
49798
49803
|
isBot?: boolean | null | undefined;
|
@@ -71094,6 +71099,7 @@ export declare const platformLineContract: {
|
|
71094
71099
|
connectedUserId?: string | null | undefined;
|
71095
71100
|
}>;
|
71096
71101
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
71102
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
71097
71103
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
71098
71104
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
71099
71105
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -71194,6 +71200,7 @@ export declare const platformLineContract: {
|
|
71194
71200
|
email: string;
|
71195
71201
|
} | null | undefined;
|
71196
71202
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
71203
|
+
whatsappTemplateName?: string | undefined;
|
71197
71204
|
telegramBusinessConnectionId?: string | null | undefined;
|
71198
71205
|
}, {
|
71199
71206
|
id: string;
|
@@ -71293,6 +71300,7 @@ export declare const platformLineContract: {
|
|
71293
71300
|
} | null | undefined;
|
71294
71301
|
isBotRoom?: boolean | null | undefined;
|
71295
71302
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
71303
|
+
whatsappTemplateName?: string | undefined;
|
71296
71304
|
telegramBusinessConnectionId?: string | null | undefined;
|
71297
71305
|
}>;
|
71298
71306
|
message: import("zod").ZodObject<{
|
@@ -71560,6 +71568,7 @@ export declare const platformLineContract: {
|
|
71560
71568
|
email: string;
|
71561
71569
|
} | null | undefined;
|
71562
71570
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
71571
|
+
whatsappTemplateName?: string | undefined;
|
71563
71572
|
telegramBusinessConnectionId?: string | null | undefined;
|
71564
71573
|
};
|
71565
71574
|
isBot: boolean | null;
|
@@ -71698,6 +71707,7 @@ export declare const platformLineContract: {
|
|
71698
71707
|
} | null | undefined;
|
71699
71708
|
isBotRoom?: boolean | null | undefined;
|
71700
71709
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
71710
|
+
whatsappTemplateName?: string | undefined;
|
71701
71711
|
telegramBusinessConnectionId?: string | null | undefined;
|
71702
71712
|
};
|
71703
71713
|
isBot?: boolean | null | undefined;
|
@@ -93242,6 +93252,7 @@ export declare const platformTelegramContract: {
|
|
93242
93252
|
connectedUserId?: string | null | undefined;
|
93243
93253
|
}>;
|
93244
93254
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
93255
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
93245
93256
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
93246
93257
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
93247
93258
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -93342,6 +93353,7 @@ export declare const platformTelegramContract: {
|
|
93342
93353
|
email: string;
|
93343
93354
|
} | null | undefined;
|
93344
93355
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
93356
|
+
whatsappTemplateName?: string | undefined;
|
93345
93357
|
telegramBusinessConnectionId?: string | null | undefined;
|
93346
93358
|
}, {
|
93347
93359
|
id: string;
|
@@ -93441,6 +93453,7 @@ export declare const platformTelegramContract: {
|
|
93441
93453
|
} | null | undefined;
|
93442
93454
|
isBotRoom?: boolean | null | undefined;
|
93443
93455
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
93456
|
+
whatsappTemplateName?: string | undefined;
|
93444
93457
|
telegramBusinessConnectionId?: string | null | undefined;
|
93445
93458
|
}>;
|
93446
93459
|
message: import("zod").ZodObject<{
|
@@ -93708,6 +93721,7 @@ export declare const platformTelegramContract: {
|
|
93708
93721
|
email: string;
|
93709
93722
|
} | null | undefined;
|
93710
93723
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
93724
|
+
whatsappTemplateName?: string | undefined;
|
93711
93725
|
telegramBusinessConnectionId?: string | null | undefined;
|
93712
93726
|
};
|
93713
93727
|
isBot: boolean | null;
|
@@ -93846,6 +93860,7 @@ export declare const platformTelegramContract: {
|
|
93846
93860
|
} | null | undefined;
|
93847
93861
|
isBotRoom?: boolean | null | undefined;
|
93848
93862
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
93863
|
+
whatsappTemplateName?: string | undefined;
|
93849
93864
|
telegramBusinessConnectionId?: string | null | undefined;
|
93850
93865
|
};
|
93851
93866
|
isBot?: boolean | null | undefined;
|
@@ -113358,6 +113373,7 @@ export declare const platformMessengerContract: {
|
|
113358
113373
|
connectedUserId?: string | null | undefined;
|
113359
113374
|
}>;
|
113360
113375
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
113376
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
113361
113377
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
113362
113378
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
113363
113379
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -113458,6 +113474,7 @@ export declare const platformMessengerContract: {
|
|
113458
113474
|
email: string;
|
113459
113475
|
} | null | undefined;
|
113460
113476
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
113477
|
+
whatsappTemplateName?: string | undefined;
|
113461
113478
|
telegramBusinessConnectionId?: string | null | undefined;
|
113462
113479
|
}, {
|
113463
113480
|
id: string;
|
@@ -113557,6 +113574,7 @@ export declare const platformMessengerContract: {
|
|
113557
113574
|
} | null | undefined;
|
113558
113575
|
isBotRoom?: boolean | null | undefined;
|
113559
113576
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
113577
|
+
whatsappTemplateName?: string | undefined;
|
113560
113578
|
telegramBusinessConnectionId?: string | null | undefined;
|
113561
113579
|
}>;
|
113562
113580
|
message: import("zod").ZodObject<{
|
@@ -113824,6 +113842,7 @@ export declare const platformMessengerContract: {
|
|
113824
113842
|
email: string;
|
113825
113843
|
} | null | undefined;
|
113826
113844
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
113845
|
+
whatsappTemplateName?: string | undefined;
|
113827
113846
|
telegramBusinessConnectionId?: string | null | undefined;
|
113828
113847
|
};
|
113829
113848
|
isBot: boolean | null;
|
@@ -113962,6 +113981,7 @@ export declare const platformMessengerContract: {
|
|
113962
113981
|
} | null | undefined;
|
113963
113982
|
isBotRoom?: boolean | null | undefined;
|
113964
113983
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
113984
|
+
whatsappTemplateName?: string | undefined;
|
113965
113985
|
telegramBusinessConnectionId?: string | null | undefined;
|
113966
113986
|
};
|
113967
113987
|
isBot?: boolean | null | undefined;
|
@@ -135873,6 +135893,7 @@ export declare const platformInstagramContract: {
|
|
135873
135893
|
connectedUserId?: string | null | undefined;
|
135874
135894
|
}>;
|
135875
135895
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
135896
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
135876
135897
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
135877
135898
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
135878
135899
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -135973,6 +135994,7 @@ export declare const platformInstagramContract: {
|
|
135973
135994
|
email: string;
|
135974
135995
|
} | null | undefined;
|
135975
135996
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
135997
|
+
whatsappTemplateName?: string | undefined;
|
135976
135998
|
telegramBusinessConnectionId?: string | null | undefined;
|
135977
135999
|
}, {
|
135978
136000
|
id: string;
|
@@ -136072,6 +136094,7 @@ export declare const platformInstagramContract: {
|
|
136072
136094
|
} | null | undefined;
|
136073
136095
|
isBotRoom?: boolean | null | undefined;
|
136074
136096
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
136097
|
+
whatsappTemplateName?: string | undefined;
|
136075
136098
|
telegramBusinessConnectionId?: string | null | undefined;
|
136076
136099
|
}>;
|
136077
136100
|
message: import("zod").ZodObject<{
|
@@ -136339,6 +136362,7 @@ export declare const platformInstagramContract: {
|
|
136339
136362
|
email: string;
|
136340
136363
|
} | null | undefined;
|
136341
136364
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
136365
|
+
whatsappTemplateName?: string | undefined;
|
136342
136366
|
telegramBusinessConnectionId?: string | null | undefined;
|
136343
136367
|
};
|
136344
136368
|
isBot: boolean | null;
|
@@ -136477,6 +136501,7 @@ export declare const platformInstagramContract: {
|
|
136477
136501
|
} | null | undefined;
|
136478
136502
|
isBotRoom?: boolean | null | undefined;
|
136479
136503
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
136504
|
+
whatsappTemplateName?: string | undefined;
|
136480
136505
|
telegramBusinessConnectionId?: string | null | undefined;
|
136481
136506
|
};
|
136482
136507
|
isBot?: boolean | null | undefined;
|
@@ -162066,6 +162091,7 @@ export declare const platformSMSContract: {
|
|
162066
162091
|
connectedUserId?: string | null | undefined;
|
162067
162092
|
}>;
|
162068
162093
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
162094
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
162069
162095
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
162070
162096
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
162071
162097
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -162166,6 +162192,7 @@ export declare const platformSMSContract: {
|
|
162166
162192
|
email: string;
|
162167
162193
|
} | null | undefined;
|
162168
162194
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
162195
|
+
whatsappTemplateName?: string | undefined;
|
162169
162196
|
telegramBusinessConnectionId?: string | null | undefined;
|
162170
162197
|
}, {
|
162171
162198
|
id: string;
|
@@ -162265,6 +162292,7 @@ export declare const platformSMSContract: {
|
|
162265
162292
|
} | null | undefined;
|
162266
162293
|
isBotRoom?: boolean | null | undefined;
|
162267
162294
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
162295
|
+
whatsappTemplateName?: string | undefined;
|
162268
162296
|
telegramBusinessConnectionId?: string | null | undefined;
|
162269
162297
|
}>;
|
162270
162298
|
message: import("zod").ZodObject<{
|
@@ -162532,6 +162560,7 @@ export declare const platformSMSContract: {
|
|
162532
162560
|
email: string;
|
162533
162561
|
} | null | undefined;
|
162534
162562
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
162563
|
+
whatsappTemplateName?: string | undefined;
|
162535
162564
|
telegramBusinessConnectionId?: string | null | undefined;
|
162536
162565
|
};
|
162537
162566
|
isBot: boolean | null;
|
@@ -162670,6 +162699,7 @@ export declare const platformSMSContract: {
|
|
162670
162699
|
} | null | undefined;
|
162671
162700
|
isBotRoom?: boolean | null | undefined;
|
162672
162701
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
162702
|
+
whatsappTemplateName?: string | undefined;
|
162673
162703
|
telegramBusinessConnectionId?: string | null | undefined;
|
162674
162704
|
};
|
162675
162705
|
isBot?: boolean | null | undefined;
|
@@ -163124,6 +163154,7 @@ export declare const platformWhatsappContract: {
|
|
163124
163154
|
connectedUserId?: string | null | undefined;
|
163125
163155
|
}>;
|
163126
163156
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
163157
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
163127
163158
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
163128
163159
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
163129
163160
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -163224,6 +163255,7 @@ export declare const platformWhatsappContract: {
|
|
163224
163255
|
email: string;
|
163225
163256
|
} | null | undefined;
|
163226
163257
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
163258
|
+
whatsappTemplateName?: string | undefined;
|
163227
163259
|
telegramBusinessConnectionId?: string | null | undefined;
|
163228
163260
|
}, {
|
163229
163261
|
id: string;
|
@@ -163323,6 +163355,7 @@ export declare const platformWhatsappContract: {
|
|
163323
163355
|
} | null | undefined;
|
163324
163356
|
isBotRoom?: boolean | null | undefined;
|
163325
163357
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
163358
|
+
whatsappTemplateName?: string | undefined;
|
163326
163359
|
telegramBusinessConnectionId?: string | null | undefined;
|
163327
163360
|
}>;
|
163328
163361
|
message: import("zod").ZodObject<{
|
@@ -163590,6 +163623,7 @@ export declare const platformWhatsappContract: {
|
|
163590
163623
|
email: string;
|
163591
163624
|
} | null | undefined;
|
163592
163625
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
163626
|
+
whatsappTemplateName?: string | undefined;
|
163593
163627
|
telegramBusinessConnectionId?: string | null | undefined;
|
163594
163628
|
};
|
163595
163629
|
isBot: boolean | null;
|
@@ -163728,6 +163762,7 @@ export declare const platformWhatsappContract: {
|
|
163728
163762
|
} | null | undefined;
|
163729
163763
|
isBotRoom?: boolean | null | undefined;
|
163730
163764
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
163765
|
+
whatsappTemplateName?: string | undefined;
|
163731
163766
|
telegramBusinessConnectionId?: string | null | undefined;
|
163732
163767
|
};
|
163733
163768
|
isBot?: boolean | null | undefined;
|
@@ -184262,7 +184297,8 @@ export declare const platformWhatsappContract: {
|
|
184262
184297
|
200: import("zod").ZodObject<{
|
184263
184298
|
requestId: import("zod").ZodString;
|
184264
184299
|
} & {
|
184265
|
-
data: import("zod").ZodObject<{
|
184300
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
184301
|
+
id: import("zod").ZodString;
|
184266
184302
|
category: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"UTILITY">, import("zod").ZodLiteral<"MARKETING">, import("zod").ZodLiteral<"AUTHENTICATION">]>>;
|
184267
184303
|
components: import("zod").ZodArray<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>, "many">;
|
184268
184304
|
language: import("zod").ZodString;
|
@@ -184271,6 +184307,7 @@ export declare const platformWhatsappContract: {
|
|
184271
184307
|
status: import("zod").ZodString;
|
184272
184308
|
}, "strip", import("zod").ZodTypeAny, {
|
184273
184309
|
name: string;
|
184310
|
+
id: string;
|
184274
184311
|
status: string;
|
184275
184312
|
language: string;
|
184276
184313
|
components: {}[];
|
@@ -184278,31 +184315,34 @@ export declare const platformWhatsappContract: {
|
|
184278
184315
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
184279
184316
|
}, {
|
184280
184317
|
name: string;
|
184318
|
+
id: string;
|
184281
184319
|
status: string;
|
184282
184320
|
language: string;
|
184283
184321
|
components: {}[];
|
184284
184322
|
namespace: string;
|
184285
184323
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
184286
|
-
}>;
|
184324
|
+
}>, "many">;
|
184287
184325
|
}, "strip", import("zod").ZodTypeAny, {
|
184288
184326
|
data: {
|
184289
184327
|
name: string;
|
184328
|
+
id: string;
|
184290
184329
|
status: string;
|
184291
184330
|
language: string;
|
184292
184331
|
components: {}[];
|
184293
184332
|
namespace: string;
|
184294
184333
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
184295
|
-
};
|
184334
|
+
}[];
|
184296
184335
|
requestId: string;
|
184297
184336
|
}, {
|
184298
184337
|
data: {
|
184299
184338
|
name: string;
|
184339
|
+
id: string;
|
184300
184340
|
status: string;
|
184301
184341
|
language: string;
|
184302
184342
|
components: {}[];
|
184303
184343
|
namespace: string;
|
184304
184344
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
184305
|
-
};
|
184345
|
+
}[];
|
184306
184346
|
requestId: string;
|
184307
184347
|
}>;
|
184308
184348
|
500: import("zod").ZodObject<{
|
@@ -189960,6 +190000,7 @@ export declare const facebookFeedContract: {
|
|
189960
190000
|
connectedUserId?: string | null | undefined;
|
189961
190001
|
}>;
|
189962
190002
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
190003
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
189963
190004
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
189964
190005
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
189965
190006
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -190060,6 +190101,7 @@ export declare const facebookFeedContract: {
|
|
190060
190101
|
email: string;
|
190061
190102
|
} | null | undefined;
|
190062
190103
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
190104
|
+
whatsappTemplateName?: string | undefined;
|
190063
190105
|
telegramBusinessConnectionId?: string | null | undefined;
|
190064
190106
|
}, {
|
190065
190107
|
id: string;
|
@@ -190159,6 +190201,7 @@ export declare const facebookFeedContract: {
|
|
190159
190201
|
} | null | undefined;
|
190160
190202
|
isBotRoom?: boolean | null | undefined;
|
190161
190203
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
190204
|
+
whatsappTemplateName?: string | undefined;
|
190162
190205
|
telegramBusinessConnectionId?: string | null | undefined;
|
190163
190206
|
}>;
|
190164
190207
|
message: import("zod").ZodObject<{
|
@@ -190437,6 +190480,7 @@ export declare const facebookFeedContract: {
|
|
190437
190480
|
email: string;
|
190438
190481
|
} | null | undefined;
|
190439
190482
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
190483
|
+
whatsappTemplateName?: string | undefined;
|
190440
190484
|
telegramBusinessConnectionId?: string | null | undefined;
|
190441
190485
|
};
|
190442
190486
|
isBot: boolean | null;
|
@@ -190579,6 +190623,7 @@ export declare const facebookFeedContract: {
|
|
190579
190623
|
} | null | undefined;
|
190580
190624
|
isBotRoom?: boolean | null | undefined;
|
190581
190625
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
190626
|
+
whatsappTemplateName?: string | undefined;
|
190582
190627
|
telegramBusinessConnectionId?: string | null | undefined;
|
190583
190628
|
};
|
190584
190629
|
params?: {
|
@@ -289265,7 +289310,8 @@ export declare const channelSettingContract: {
|
|
289265
289310
|
200: import("zod").ZodObject<{
|
289266
289311
|
requestId: import("zod").ZodString;
|
289267
289312
|
} & {
|
289268
|
-
data: import("zod").ZodObject<{
|
289313
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
289314
|
+
id: import("zod").ZodString;
|
289269
289315
|
category: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"UTILITY">, import("zod").ZodLiteral<"MARKETING">, import("zod").ZodLiteral<"AUTHENTICATION">]>>;
|
289270
289316
|
components: import("zod").ZodArray<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>, "many">;
|
289271
289317
|
language: import("zod").ZodString;
|
@@ -289274,6 +289320,7 @@ export declare const channelSettingContract: {
|
|
289274
289320
|
status: import("zod").ZodString;
|
289275
289321
|
}, "strip", import("zod").ZodTypeAny, {
|
289276
289322
|
name: string;
|
289323
|
+
id: string;
|
289277
289324
|
status: string;
|
289278
289325
|
language: string;
|
289279
289326
|
components: {}[];
|
@@ -289281,31 +289328,34 @@ export declare const channelSettingContract: {
|
|
289281
289328
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
289282
289329
|
}, {
|
289283
289330
|
name: string;
|
289331
|
+
id: string;
|
289284
289332
|
status: string;
|
289285
289333
|
language: string;
|
289286
289334
|
components: {}[];
|
289287
289335
|
namespace: string;
|
289288
289336
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
289289
|
-
}>;
|
289337
|
+
}>, "many">;
|
289290
289338
|
}, "strip", import("zod").ZodTypeAny, {
|
289291
289339
|
data: {
|
289292
289340
|
name: string;
|
289341
|
+
id: string;
|
289293
289342
|
status: string;
|
289294
289343
|
language: string;
|
289295
289344
|
components: {}[];
|
289296
289345
|
namespace: string;
|
289297
289346
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
289298
|
-
};
|
289347
|
+
}[];
|
289299
289348
|
requestId: string;
|
289300
289349
|
}, {
|
289301
289350
|
data: {
|
289302
289351
|
name: string;
|
289352
|
+
id: string;
|
289303
289353
|
status: string;
|
289304
289354
|
language: string;
|
289305
289355
|
components: {}[];
|
289306
289356
|
namespace: string;
|
289307
289357
|
category?: "UTILITY" | "MARKETING" | "AUTHENTICATION" | undefined;
|
289308
|
-
};
|
289358
|
+
}[];
|
289309
289359
|
requestId: string;
|
289310
289360
|
}>;
|
289311
289361
|
500: import("zod").ZodObject<{
|
@@ -301501,6 +301551,7 @@ export declare const platformKlinkChatContract: {
|
|
301501
301551
|
connectedUserId?: string | null | undefined;
|
301502
301552
|
}>;
|
301503
301553
|
messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
|
301554
|
+
whatsappTemplateName: import("zod").ZodOptional<import("zod").ZodString>;
|
301504
301555
|
telegramBusinessConnectionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
301505
301556
|
isBotRoom: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
301506
301557
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -301601,6 +301652,7 @@ export declare const platformKlinkChatContract: {
|
|
301601
301652
|
email: string;
|
301602
301653
|
} | null | undefined;
|
301603
301654
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
301655
|
+
whatsappTemplateName?: string | undefined;
|
301604
301656
|
telegramBusinessConnectionId?: string | null | undefined;
|
301605
301657
|
}, {
|
301606
301658
|
id: string;
|
@@ -301700,6 +301752,7 @@ export declare const platformKlinkChatContract: {
|
|
301700
301752
|
} | null | undefined;
|
301701
301753
|
isBotRoom?: boolean | null | undefined;
|
301702
301754
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
301755
|
+
whatsappTemplateName?: string | undefined;
|
301703
301756
|
telegramBusinessConnectionId?: string | null | undefined;
|
301704
301757
|
}>;
|
301705
301758
|
message: import("zod").ZodObject<{
|
@@ -301967,6 +302020,7 @@ export declare const platformKlinkChatContract: {
|
|
301967
302020
|
email: string;
|
301968
302021
|
} | null | undefined;
|
301969
302022
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
302023
|
+
whatsappTemplateName?: string | undefined;
|
301970
302024
|
telegramBusinessConnectionId?: string | null | undefined;
|
301971
302025
|
};
|
301972
302026
|
isBot: boolean | null;
|
@@ -302105,6 +302159,7 @@ export declare const platformKlinkChatContract: {
|
|
302105
302159
|
} | null | undefined;
|
302106
302160
|
isBotRoom?: boolean | null | undefined;
|
302107
302161
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
302162
|
+
whatsappTemplateName?: string | undefined;
|
302108
302163
|
telegramBusinessConnectionId?: string | null | undefined;
|
302109
302164
|
};
|
302110
302165
|
isBot?: boolean | null | undefined;
|