@kl1/contracts 1.4.49 → 1.4.51

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.
Files changed (65) hide show
  1. package/dist/api-contracts/src/botpress/index.d.ts +9 -9
  2. package/dist/api-contracts/src/botpress/validation.d.ts +9 -9
  3. package/dist/api-contracts/src/channel/index.d.ts +64 -0
  4. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +64 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +127 -3
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +26 -1
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +19 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/company/index.d.ts +80 -0
  14. package/dist/api-contracts/src/company/index.d.ts.map +1 -1
  15. package/dist/api-contracts/src/company/validation.d.ts +40 -0
  16. package/dist/api-contracts/src/company/validation.d.ts.map +1 -1
  17. package/dist/api-contracts/src/contract.d.ts +431 -446
  18. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +16 -0
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/index.d.ts +1 -0
  22. package/dist/api-contracts/src/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/instagram/index.d.ts +16 -0
  24. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/line/index.d.ts +16 -0
  26. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/mail/account-contract.d.ts +169 -29
  28. package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
  29. package/dist/api-contracts/src/mail/index.d.ts +1 -0
  30. package/dist/api-contracts/src/mail/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/mail/mail-contract.d.ts +181 -41
  32. package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
  33. package/dist/api-contracts/src/mail/room-contract.d.ts +12 -12
  34. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +85 -24
  35. package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
  36. package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +3 -3
  37. package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +3 -3
  38. package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +3 -3
  39. package/dist/api-contracts/src/messenger/index.d.ts +16 -0
  40. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/subscription/index.d.ts +438 -0
  42. package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/telegram/index.d.ts +16 -0
  44. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
  46. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +0 -3
  48. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  49. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +0 -3
  50. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +16 -0
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +16 -0
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/whatsapp/index.d.ts +16 -0
  56. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  57. package/dist/api-contracts/src/workflow-rule/index.d.ts +86 -7
  58. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  59. package/dist/entities/src/enums/chat.d.ts +1 -0
  60. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  61. package/dist/index.js +1740 -1640
  62. package/dist/index.js.map +1 -1
  63. package/dist/index.mjs +1739 -1640
  64. package/dist/index.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -4923,12 +4923,76 @@ export declare const apiContract: {
4923
4923
  updateChannelCsatPreference: {
4924
4924
  body: import("zod").ZodObject<{
4925
4925
  isCSATEnabled: import("zod").ZodBoolean;
4926
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4927
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
4928
+ bucketName: import("zod").ZodString;
4929
+ fileName: import("zod").ZodString;
4930
+ fileSize: import("zod").ZodNumber;
4931
+ fileKey: import("zod").ZodString;
4932
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4933
+ }, "strip", import("zod").ZodTypeAny, {
4934
+ fileName: string;
4935
+ fileKey: string;
4936
+ bucketName: string;
4937
+ fileSize: number;
4938
+ originalUrl?: string | null | undefined;
4939
+ }, {
4940
+ fileName: string;
4941
+ fileKey: string;
4942
+ bucketName: string;
4943
+ fileSize: number;
4944
+ originalUrl?: string | null | undefined;
4945
+ }>>>;
4946
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
4947
+ value: import("zod").ZodString;
4948
+ label: import("zod").ZodString;
4949
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4950
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
4951
+ }, "strip", import("zod").ZodTypeAny, {
4952
+ value: string;
4953
+ label: string;
4954
+ color?: string | null | undefined;
4955
+ style?: string | null | undefined;
4956
+ }, {
4957
+ value: string;
4958
+ label: string;
4959
+ color?: string | null | undefined;
4960
+ style?: string | null | undefined;
4961
+ }>, "many">>>;
4926
4962
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
4927
4963
  }, "strip", import("zod").ZodTypeAny, {
4928
4964
  isCSATEnabled: boolean;
4965
+ headline?: string | null | undefined;
4966
+ image?: {
4967
+ fileName: string;
4968
+ fileKey: string;
4969
+ bucketName: string;
4970
+ fileSize: number;
4971
+ originalUrl?: string | null | undefined;
4972
+ } | null | undefined;
4973
+ scaleOptions?: {
4974
+ value: string;
4975
+ label: string;
4976
+ color?: string | null | undefined;
4977
+ style?: string | null | undefined;
4978
+ }[] | null | undefined;
4929
4979
  dispositions?: string[] | undefined;
4930
4980
  }, {
4931
4981
  isCSATEnabled: boolean;
4982
+ headline?: string | null | undefined;
4983
+ image?: {
4984
+ fileName: string;
4985
+ fileKey: string;
4986
+ bucketName: string;
4987
+ fileSize: number;
4988
+ originalUrl?: string | null | undefined;
4989
+ } | null | undefined;
4990
+ scaleOptions?: {
4991
+ value: string;
4992
+ label: string;
4993
+ color?: string | null | undefined;
4994
+ style?: string | null | undefined;
4995
+ }[] | null | undefined;
4932
4996
  dispositions?: string[] | undefined;
4933
4997
  }>;
4934
4998
  summary: "Enable or Disable CSAT for channel";
@@ -36531,425 +36595,6 @@ export declare const apiContract: {
36531
36595
  };
36532
36596
  };
36533
36597
  agentPresenceStatus: {
36534
- getAllAgentStatus: {
36535
- summary: "Get all user presence status list.";
36536
- method: "GET";
36537
- responses: {
36538
- 200: import("zod").ZodArray<import("zod").ZodObject<{
36539
- id: import("zod").ZodString;
36540
- createdAt: import("zod").ZodDate;
36541
- updatedAt: import("zod").ZodDate;
36542
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36543
- user: import("zod").ZodObject<{
36544
- name: import("zod").ZodString;
36545
- id: import("zod").ZodString;
36546
- address: import("zod").ZodNullable<import("zod").ZodString>;
36547
- email: import("zod").ZodString;
36548
- createdAt: import("zod").ZodDate;
36549
- updatedAt: import("zod").ZodDate;
36550
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36551
- emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36552
- password: import("zod").ZodString;
36553
- phone: import("zod").ZodNullable<import("zod").ZodString>;
36554
- notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
36555
- roles: import("zod").ZodArray<import("zod").ZodObject<{
36556
- id: import("zod").ZodString;
36557
- createdAt: import("zod").ZodDate;
36558
- updatedAt: import("zod").ZodDate;
36559
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36560
- systemName: import("zod").ZodString;
36561
- displayName: import("zod").ZodString;
36562
- description: import("zod").ZodNullable<import("zod").ZodString>;
36563
- permissions: import("zod").ZodArray<import("zod").ZodObject<{
36564
- id: import("zod").ZodString;
36565
- createdAt: import("zod").ZodDate;
36566
- updatedAt: import("zod").ZodDate;
36567
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36568
- systemName: import("zod").ZodString;
36569
- displayName: import("zod").ZodString;
36570
- description: import("zod").ZodNullable<import("zod").ZodString>;
36571
- }, "strip", import("zod").ZodTypeAny, {
36572
- id: string;
36573
- description: string | null;
36574
- createdAt: Date;
36575
- updatedAt: Date;
36576
- deletedAt: Date | null;
36577
- systemName: string;
36578
- displayName: string;
36579
- }, {
36580
- id: string;
36581
- description: string | null;
36582
- createdAt: Date;
36583
- updatedAt: Date;
36584
- deletedAt: Date | null;
36585
- systemName: string;
36586
- displayName: string;
36587
- }>, "many">;
36588
- }, "strip", import("zod").ZodTypeAny, {
36589
- id: string;
36590
- description: string | null;
36591
- createdAt: Date;
36592
- updatedAt: Date;
36593
- deletedAt: Date | null;
36594
- systemName: string;
36595
- displayName: string;
36596
- permissions: {
36597
- id: string;
36598
- description: string | null;
36599
- createdAt: Date;
36600
- updatedAt: Date;
36601
- deletedAt: Date | null;
36602
- systemName: string;
36603
- displayName: string;
36604
- }[];
36605
- }, {
36606
- id: string;
36607
- description: string | null;
36608
- createdAt: Date;
36609
- updatedAt: Date;
36610
- deletedAt: Date | null;
36611
- systemName: string;
36612
- displayName: string;
36613
- permissions: {
36614
- id: string;
36615
- description: string | null;
36616
- createdAt: Date;
36617
- updatedAt: Date;
36618
- deletedAt: Date | null;
36619
- systemName: string;
36620
- displayName: string;
36621
- }[];
36622
- }>, "many">;
36623
- extension: import("zod").ZodObject<{
36624
- id: import("zod").ZodString;
36625
- createdAt: import("zod").ZodDate;
36626
- updatedAt: import("zod").ZodDate;
36627
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36628
- userId: import("zod").ZodNullable<import("zod").ZodString>;
36629
- sipServerUrl: import("zod").ZodString;
36630
- sipUserName: import("zod").ZodString;
36631
- webphoneLoginUser: import("zod").ZodString;
36632
- extensionId: import("zod").ZodNullable<import("zod").ZodString>;
36633
- extensionName: import("zod").ZodString;
36634
- telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
36635
- }, "strip", import("zod").ZodTypeAny, {
36636
- id: string;
36637
- createdAt: Date;
36638
- updatedAt: Date;
36639
- deletedAt: Date | null;
36640
- userId: string | null;
36641
- sipServerUrl: string;
36642
- sipUserName: string;
36643
- webphoneLoginUser: string;
36644
- extensionId: string | null;
36645
- extensionName: string;
36646
- telephonySignature: string | null;
36647
- }, {
36648
- id: string;
36649
- createdAt: Date;
36650
- updatedAt: Date;
36651
- deletedAt: Date | null;
36652
- userId: string | null;
36653
- sipServerUrl: string;
36654
- sipUserName: string;
36655
- webphoneLoginUser: string;
36656
- extensionId: string | null;
36657
- extensionName: string;
36658
- telephonySignature: string | null;
36659
- }>;
36660
- }, "strip", import("zod").ZodTypeAny, {
36661
- name: string;
36662
- id: string;
36663
- address: string | null;
36664
- email: string;
36665
- createdAt: Date;
36666
- updatedAt: Date;
36667
- deletedAt: Date | null;
36668
- emailVerifiedAt: Date | null;
36669
- password: string;
36670
- phone: string | null;
36671
- notificationCount: number | null;
36672
- roles: {
36673
- id: string;
36674
- description: string | null;
36675
- createdAt: Date;
36676
- updatedAt: Date;
36677
- deletedAt: Date | null;
36678
- systemName: string;
36679
- displayName: string;
36680
- permissions: {
36681
- id: string;
36682
- description: string | null;
36683
- createdAt: Date;
36684
- updatedAt: Date;
36685
- deletedAt: Date | null;
36686
- systemName: string;
36687
- displayName: string;
36688
- }[];
36689
- }[];
36690
- extension: {
36691
- id: string;
36692
- createdAt: Date;
36693
- updatedAt: Date;
36694
- deletedAt: Date | null;
36695
- userId: string | null;
36696
- sipServerUrl: string;
36697
- sipUserName: string;
36698
- webphoneLoginUser: string;
36699
- extensionId: string | null;
36700
- extensionName: string;
36701
- telephonySignature: string | null;
36702
- };
36703
- }, {
36704
- name: string;
36705
- id: string;
36706
- address: string | null;
36707
- email: string;
36708
- createdAt: Date;
36709
- updatedAt: Date;
36710
- deletedAt: Date | null;
36711
- emailVerifiedAt: Date | null;
36712
- password: string;
36713
- phone: string | null;
36714
- notificationCount: number | null;
36715
- roles: {
36716
- id: string;
36717
- description: string | null;
36718
- createdAt: Date;
36719
- updatedAt: Date;
36720
- deletedAt: Date | null;
36721
- systemName: string;
36722
- displayName: string;
36723
- permissions: {
36724
- id: string;
36725
- description: string | null;
36726
- createdAt: Date;
36727
- updatedAt: Date;
36728
- deletedAt: Date | null;
36729
- systemName: string;
36730
- displayName: string;
36731
- }[];
36732
- }[];
36733
- extension: {
36734
- id: string;
36735
- createdAt: Date;
36736
- updatedAt: Date;
36737
- deletedAt: Date | null;
36738
- userId: string | null;
36739
- sipServerUrl: string;
36740
- sipUserName: string;
36741
- webphoneLoginUser: string;
36742
- extensionId: string | null;
36743
- extensionName: string;
36744
- telephonySignature: string | null;
36745
- };
36746
- }>;
36747
- presenceStatus: import("zod").ZodObject<{
36748
- id: import("zod").ZodString;
36749
- createdAt: import("zod").ZodDate;
36750
- updatedAt: import("zod").ZodDate;
36751
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36752
- systemName: import("zod").ZodString;
36753
- displayName: import("zod").ZodString;
36754
- description: import("zod").ZodNullable<import("zod").ZodString>;
36755
- position: import("zod").ZodNumber;
36756
- emoji: import("zod").ZodNullable<import("zod").ZodString>;
36757
- presenceStatusOption: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"receive_call">, import("zod").ZodLiteral<"do_not_receive_call">, import("zod").ZodLiteral<"receive_chat_message">, import("zod").ZodLiteral<"do_not_receive_chat_message">]>, "many">;
36758
- }, "strip", import("zod").ZodTypeAny, {
36759
- emoji: string | null;
36760
- id: string;
36761
- position: number;
36762
- description: string | null;
36763
- createdAt: Date;
36764
- updatedAt: Date;
36765
- deletedAt: Date | null;
36766
- systemName: string;
36767
- displayName: string;
36768
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36769
- }, {
36770
- emoji: string | null;
36771
- id: string;
36772
- position: number;
36773
- description: string | null;
36774
- createdAt: Date;
36775
- updatedAt: Date;
36776
- deletedAt: Date | null;
36777
- systemName: string;
36778
- displayName: string;
36779
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36780
- }>;
36781
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
36782
- }, "strip", import("zod").ZodTypeAny, {
36783
- id: string;
36784
- user: {
36785
- name: string;
36786
- id: string;
36787
- address: string | null;
36788
- email: string;
36789
- createdAt: Date;
36790
- updatedAt: Date;
36791
- deletedAt: Date | null;
36792
- emailVerifiedAt: Date | null;
36793
- password: string;
36794
- phone: string | null;
36795
- notificationCount: number | null;
36796
- roles: {
36797
- id: string;
36798
- description: string | null;
36799
- createdAt: Date;
36800
- updatedAt: Date;
36801
- deletedAt: Date | null;
36802
- systemName: string;
36803
- displayName: string;
36804
- permissions: {
36805
- id: string;
36806
- description: string | null;
36807
- createdAt: Date;
36808
- updatedAt: Date;
36809
- deletedAt: Date | null;
36810
- systemName: string;
36811
- displayName: string;
36812
- }[];
36813
- }[];
36814
- extension: {
36815
- id: string;
36816
- createdAt: Date;
36817
- updatedAt: Date;
36818
- deletedAt: Date | null;
36819
- userId: string | null;
36820
- sipServerUrl: string;
36821
- sipUserName: string;
36822
- webphoneLoginUser: string;
36823
- extensionId: string | null;
36824
- extensionName: string;
36825
- telephonySignature: string | null;
36826
- };
36827
- };
36828
- createdAt: Date;
36829
- updatedAt: Date;
36830
- deletedAt: Date | null;
36831
- presenceStatus: {
36832
- emoji: string | null;
36833
- id: string;
36834
- position: number;
36835
- description: string | null;
36836
- createdAt: Date;
36837
- updatedAt: Date;
36838
- deletedAt: Date | null;
36839
- systemName: string;
36840
- displayName: string;
36841
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36842
- };
36843
- customPresenceStatus?: string | null | undefined;
36844
- }, {
36845
- id: string;
36846
- user: {
36847
- name: string;
36848
- id: string;
36849
- address: string | null;
36850
- email: string;
36851
- createdAt: Date;
36852
- updatedAt: Date;
36853
- deletedAt: Date | null;
36854
- emailVerifiedAt: Date | null;
36855
- password: string;
36856
- phone: string | null;
36857
- notificationCount: number | null;
36858
- roles: {
36859
- id: string;
36860
- description: string | null;
36861
- createdAt: Date;
36862
- updatedAt: Date;
36863
- deletedAt: Date | null;
36864
- systemName: string;
36865
- displayName: string;
36866
- permissions: {
36867
- id: string;
36868
- description: string | null;
36869
- createdAt: Date;
36870
- updatedAt: Date;
36871
- deletedAt: Date | null;
36872
- systemName: string;
36873
- displayName: string;
36874
- }[];
36875
- }[];
36876
- extension: {
36877
- id: string;
36878
- createdAt: Date;
36879
- updatedAt: Date;
36880
- deletedAt: Date | null;
36881
- userId: string | null;
36882
- sipServerUrl: string;
36883
- sipUserName: string;
36884
- webphoneLoginUser: string;
36885
- extensionId: string | null;
36886
- extensionName: string;
36887
- telephonySignature: string | null;
36888
- };
36889
- };
36890
- createdAt: Date;
36891
- updatedAt: Date;
36892
- deletedAt: Date | null;
36893
- presenceStatus: {
36894
- emoji: string | null;
36895
- id: string;
36896
- position: number;
36897
- description: string | null;
36898
- createdAt: Date;
36899
- updatedAt: Date;
36900
- deletedAt: Date | null;
36901
- systemName: string;
36902
- displayName: string;
36903
- presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
36904
- };
36905
- customPresenceStatus?: string | null | undefined;
36906
- }>, "many">;
36907
- 400: import("zod").ZodObject<{
36908
- message: import("zod").ZodString;
36909
- }, "strip", import("zod").ZodTypeAny, {
36910
- message: string;
36911
- }, {
36912
- message: string;
36913
- }>;
36914
- 401: import("zod").ZodObject<{
36915
- message: import("zod").ZodString;
36916
- error: import("zod").ZodAny;
36917
- }, "strip", import("zod").ZodTypeAny, {
36918
- message: string;
36919
- error?: any;
36920
- }, {
36921
- message: string;
36922
- error?: any;
36923
- }>;
36924
- 500: import("zod").ZodObject<{
36925
- message: import("zod").ZodString;
36926
- error: import("zod").ZodAny;
36927
- }, "strip", import("zod").ZodTypeAny, {
36928
- message: string;
36929
- error?: any;
36930
- }, {
36931
- message: string;
36932
- error?: any;
36933
- }>;
36934
- };
36935
- path: "ms/telephony/agents/presence_status";
36936
- headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
36937
- 'x-tenant': import("zod").ZodString;
36938
- 'x-service-token': import("zod").ZodString;
36939
- 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
36940
- 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
36941
- }, "strip", import("zod").ZodTypeAny, {
36942
- 'x-tenant': string;
36943
- 'x-service-token': string;
36944
- 'x-client-timezone': string;
36945
- 'x-code'?: string | undefined;
36946
- }, {
36947
- 'x-tenant': string;
36948
- 'x-service-token': string;
36949
- 'x-code'?: string | undefined;
36950
- 'x-client-timezone'?: string | undefined;
36951
- }>>>;
36952
- };
36953
36598
  getAgentStatus: {
36954
36599
  summary: "Check and update user agent status before getting from telephony server.";
36955
36600
  method: "GET";
@@ -37204,7 +36849,6 @@ export declare const apiContract: {
37204
36849
  displayName: string;
37205
36850
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37206
36851
  }>;
37207
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37208
36852
  }, "strip", import("zod").ZodTypeAny, {
37209
36853
  id: string;
37210
36854
  user: {
@@ -37266,7 +36910,6 @@ export declare const apiContract: {
37266
36910
  displayName: string;
37267
36911
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37268
36912
  };
37269
- customPresenceStatus?: string | null | undefined;
37270
36913
  }, {
37271
36914
  id: string;
37272
36915
  user: {
@@ -37328,7 +36971,6 @@ export declare const apiContract: {
37328
36971
  displayName: string;
37329
36972
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37330
36973
  };
37331
- customPresenceStatus?: string | null | undefined;
37332
36974
  }>;
37333
36975
  400: import("zod").ZodObject<{
37334
36976
  message: import("zod").ZodString;
@@ -37380,18 +37022,15 @@ export declare const apiContract: {
37380
37022
  body: import("zod").ZodObject<{
37381
37023
  userId: import("zod").ZodString;
37382
37024
  presenceStatusId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37383
- customPreseneStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37384
37025
  reason: import("zod").ZodString;
37385
37026
  }, "strip", import("zod").ZodTypeAny, {
37386
37027
  reason: string;
37387
37028
  userId: string;
37388
37029
  presenceStatusId?: string | null | undefined;
37389
- customPreseneStatus?: string | null | undefined;
37390
37030
  }, {
37391
37031
  reason: string;
37392
37032
  userId: string;
37393
37033
  presenceStatusId?: string | null | undefined;
37394
- customPreseneStatus?: string | null | undefined;
37395
37034
  }>;
37396
37035
  summary: "Update presence status";
37397
37036
  method: "POST";
@@ -37641,7 +37280,6 @@ export declare const apiContract: {
37641
37280
  displayName: string;
37642
37281
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37643
37282
  }>;
37644
- customPresenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
37645
37283
  }, "strip", import("zod").ZodTypeAny, {
37646
37284
  id: string;
37647
37285
  user: {
@@ -37703,7 +37341,6 @@ export declare const apiContract: {
37703
37341
  displayName: string;
37704
37342
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37705
37343
  };
37706
- customPresenceStatus?: string | null | undefined;
37707
37344
  }, {
37708
37345
  id: string;
37709
37346
  user: {
@@ -37765,7 +37402,6 @@ export declare const apiContract: {
37765
37402
  displayName: string;
37766
37403
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37767
37404
  };
37768
- customPresenceStatus?: string | null | undefined;
37769
37405
  }>;
37770
37406
  }, "strip", import("zod").ZodTypeAny, {
37771
37407
  requestId: string;
@@ -37830,7 +37466,6 @@ export declare const apiContract: {
37830
37466
  displayName: string;
37831
37467
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37832
37468
  };
37833
- customPresenceStatus?: string | null | undefined;
37834
37469
  };
37835
37470
  }, {
37836
37471
  requestId: string;
@@ -37895,7 +37530,6 @@ export declare const apiContract: {
37895
37530
  displayName: string;
37896
37531
  presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
37897
37532
  };
37898
- customPresenceStatus?: string | null | undefined;
37899
37533
  };
37900
37534
  }>;
37901
37535
  400: import("zod").ZodObject<{
@@ -38390,31 +38024,55 @@ export declare const apiContract: {
38390
38024
  body: import("zod").ZodObject<{
38391
38025
  name: import("zod").ZodObject<{
38392
38026
  value: import("zod").ZodString;
38027
+ isRequired: import("zod").ZodBoolean;
38028
+ attributeId: import("zod").ZodString;
38393
38029
  }, "strip", import("zod").ZodTypeAny, {
38394
38030
  value: string;
38031
+ isRequired: boolean;
38032
+ attributeId: string;
38395
38033
  }, {
38396
38034
  value: string;
38035
+ isRequired: boolean;
38036
+ attributeId: string;
38397
38037
  }>;
38398
38038
  phone: import("zod").ZodObject<{
38399
38039
  value: import("zod").ZodString;
38040
+ isRequired: import("zod").ZodBoolean;
38041
+ attributeId: import("zod").ZodString;
38400
38042
  }, "strip", import("zod").ZodTypeAny, {
38401
38043
  value: string;
38044
+ isRequired: boolean;
38045
+ attributeId: string;
38402
38046
  }, {
38403
38047
  value: string;
38048
+ isRequired: boolean;
38049
+ attributeId: string;
38404
38050
  }>;
38405
38051
  address: import("zod").ZodObject<{
38406
38052
  value: import("zod").ZodString;
38053
+ isRequired: import("zod").ZodBoolean;
38054
+ attributeId: import("zod").ZodString;
38407
38055
  }, "strip", import("zod").ZodTypeAny, {
38408
38056
  value: string;
38057
+ isRequired: boolean;
38058
+ attributeId: string;
38409
38059
  }, {
38410
38060
  value: string;
38061
+ isRequired: boolean;
38062
+ attributeId: string;
38411
38063
  }>;
38412
38064
  industry: import("zod").ZodObject<{
38413
38065
  value: import("zod").ZodString;
38066
+ isRequired: import("zod").ZodBoolean;
38067
+ attributeId: import("zod").ZodString;
38414
38068
  }, "strip", import("zod").ZodTypeAny, {
38415
38069
  value: string;
38070
+ isRequired: boolean;
38071
+ attributeId: string;
38416
38072
  }, {
38417
38073
  value: string;
38074
+ isRequired: boolean;
38075
+ attributeId: string;
38418
38076
  }>;
38419
38077
  customFields: import("zod").ZodArray<import("zod").ZodObject<{
38420
38078
  isRequired: import("zod").ZodBoolean;
@@ -38438,15 +38096,23 @@ export declare const apiContract: {
38438
38096
  }, "strip", import("zod").ZodTypeAny, {
38439
38097
  name: {
38440
38098
  value: string;
38099
+ isRequired: boolean;
38100
+ attributeId: string;
38441
38101
  };
38442
38102
  address: {
38443
38103
  value: string;
38104
+ isRequired: boolean;
38105
+ attributeId: string;
38444
38106
  };
38445
38107
  phone: {
38446
38108
  value: string;
38109
+ isRequired: boolean;
38110
+ attributeId: string;
38447
38111
  };
38448
38112
  industry: {
38449
38113
  value: string;
38114
+ isRequired: boolean;
38115
+ attributeId: string;
38450
38116
  };
38451
38117
  customFields: {
38452
38118
  type: string;
@@ -38458,15 +38124,23 @@ export declare const apiContract: {
38458
38124
  }, {
38459
38125
  name: {
38460
38126
  value: string;
38127
+ isRequired: boolean;
38128
+ attributeId: string;
38461
38129
  };
38462
38130
  address: {
38463
38131
  value: string;
38132
+ isRequired: boolean;
38133
+ attributeId: string;
38464
38134
  };
38465
38135
  phone: {
38466
38136
  value: string;
38137
+ isRequired: boolean;
38138
+ attributeId: string;
38467
38139
  };
38468
38140
  industry: {
38469
38141
  value: string;
38142
+ isRequired: boolean;
38143
+ attributeId: string;
38470
38144
  };
38471
38145
  customFields: {
38472
38146
  type: string;
@@ -38825,31 +38499,55 @@ export declare const apiContract: {
38825
38499
  body: import("zod").ZodObject<{
38826
38500
  name: import("zod").ZodOptional<import("zod").ZodObject<{
38827
38501
  value: import("zod").ZodString;
38502
+ isRequired: import("zod").ZodBoolean;
38503
+ attributeId: import("zod").ZodString;
38828
38504
  }, "strip", import("zod").ZodTypeAny, {
38829
38505
  value: string;
38506
+ isRequired: boolean;
38507
+ attributeId: string;
38830
38508
  }, {
38831
38509
  value: string;
38510
+ isRequired: boolean;
38511
+ attributeId: string;
38832
38512
  }>>;
38833
38513
  phone: import("zod").ZodOptional<import("zod").ZodObject<{
38834
38514
  value: import("zod").ZodString;
38515
+ isRequired: import("zod").ZodBoolean;
38516
+ attributeId: import("zod").ZodString;
38835
38517
  }, "strip", import("zod").ZodTypeAny, {
38836
38518
  value: string;
38519
+ isRequired: boolean;
38520
+ attributeId: string;
38837
38521
  }, {
38838
38522
  value: string;
38523
+ isRequired: boolean;
38524
+ attributeId: string;
38839
38525
  }>>;
38840
38526
  address: import("zod").ZodOptional<import("zod").ZodObject<{
38841
38527
  value: import("zod").ZodString;
38528
+ isRequired: import("zod").ZodBoolean;
38529
+ attributeId: import("zod").ZodString;
38842
38530
  }, "strip", import("zod").ZodTypeAny, {
38843
38531
  value: string;
38532
+ isRequired: boolean;
38533
+ attributeId: string;
38844
38534
  }, {
38845
38535
  value: string;
38536
+ isRequired: boolean;
38537
+ attributeId: string;
38846
38538
  }>>;
38847
38539
  industry: import("zod").ZodOptional<import("zod").ZodObject<{
38848
38540
  value: import("zod").ZodString;
38541
+ isRequired: import("zod").ZodBoolean;
38542
+ attributeId: import("zod").ZodString;
38849
38543
  }, "strip", import("zod").ZodTypeAny, {
38850
38544
  value: string;
38545
+ isRequired: boolean;
38546
+ attributeId: string;
38851
38547
  }, {
38852
38548
  value: string;
38549
+ isRequired: boolean;
38550
+ attributeId: string;
38853
38551
  }>>;
38854
38552
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
38855
38553
  isRequired: import("zod").ZodBoolean;
@@ -38873,15 +38571,23 @@ export declare const apiContract: {
38873
38571
  }, "strip", import("zod").ZodTypeAny, {
38874
38572
  name?: {
38875
38573
  value: string;
38574
+ isRequired: boolean;
38575
+ attributeId: string;
38876
38576
  } | undefined;
38877
38577
  phone?: {
38878
38578
  value: string;
38579
+ isRequired: boolean;
38580
+ attributeId: string;
38879
38581
  } | undefined;
38880
38582
  address?: {
38881
38583
  value: string;
38584
+ isRequired: boolean;
38585
+ attributeId: string;
38882
38586
  } | undefined;
38883
38587
  industry?: {
38884
38588
  value: string;
38589
+ isRequired: boolean;
38590
+ attributeId: string;
38885
38591
  } | undefined;
38886
38592
  customFields?: {
38887
38593
  type: string;
@@ -38893,15 +38599,23 @@ export declare const apiContract: {
38893
38599
  }, {
38894
38600
  name?: {
38895
38601
  value: string;
38602
+ isRequired: boolean;
38603
+ attributeId: string;
38896
38604
  } | undefined;
38897
38605
  phone?: {
38898
38606
  value: string;
38607
+ isRequired: boolean;
38608
+ attributeId: string;
38899
38609
  } | undefined;
38900
38610
  address?: {
38901
38611
  value: string;
38612
+ isRequired: boolean;
38613
+ attributeId: string;
38902
38614
  } | undefined;
38903
38615
  industry?: {
38904
38616
  value: string;
38617
+ isRequired: boolean;
38618
+ attributeId: string;
38905
38619
  } | undefined;
38906
38620
  customFields?: {
38907
38621
  type: string;
@@ -91691,6 +91405,7 @@ export declare const platformContract: {
91691
91405
  firstResponseTime: import("zod").ZodNumber;
91692
91406
  isLatest: import("zod").ZodBoolean;
91693
91407
  isBotRoom: import("zod").ZodBoolean;
91408
+ isAiAgentRoom: import("zod").ZodBoolean;
91694
91409
  metadata: import("zod").ZodAny;
91695
91410
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
91696
91411
  platformContact: import("zod").ZodObject<{
@@ -94626,6 +94341,7 @@ export declare const platformContract: {
94626
94341
  };
94627
94342
  lastMessageAt: Date | null;
94628
94343
  isBotRoom: boolean;
94344
+ isAiAgentRoom: boolean;
94629
94345
  csatStatus: string | null;
94630
94346
  cxlog: {
94631
94347
  id: string;
@@ -95063,6 +94779,7 @@ export declare const platformContract: {
95063
94779
  };
95064
94780
  lastMessageAt: Date | null;
95065
94781
  isBotRoom: boolean;
94782
+ isAiAgentRoom: boolean;
95066
94783
  csatStatus: string | null;
95067
94784
  cxlog: {
95068
94785
  id: string;
@@ -96428,6 +96145,7 @@ export declare const platformContract: {
96428
96145
  firstResponseTime: import("zod").ZodNumber;
96429
96146
  isLatest: import("zod").ZodBoolean;
96430
96147
  isBotRoom: import("zod").ZodBoolean;
96148
+ isAiAgentRoom: import("zod").ZodBoolean;
96431
96149
  metadata: import("zod").ZodAny;
96432
96150
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
96433
96151
  platformContact: import("zod").ZodObject<{
@@ -99363,6 +99081,7 @@ export declare const platformContract: {
99363
99081
  };
99364
99082
  lastMessageAt: Date | null;
99365
99083
  isBotRoom: boolean;
99084
+ isAiAgentRoom: boolean;
99366
99085
  csatStatus: string | null;
99367
99086
  cxlog: {
99368
99087
  id: string;
@@ -99800,6 +99519,7 @@ export declare const platformContract: {
99800
99519
  };
99801
99520
  lastMessageAt: Date | null;
99802
99521
  isBotRoom: boolean;
99522
+ isAiAgentRoom: boolean;
99803
99523
  csatStatus: string | null;
99804
99524
  cxlog: {
99805
99525
  id: string;
@@ -102010,6 +101730,7 @@ export declare const platformContract: {
102010
101730
  };
102011
101731
  lastMessageAt: Date | null;
102012
101732
  isBotRoom: boolean;
101733
+ isAiAgentRoom: boolean;
102013
101734
  csatStatus: string | null;
102014
101735
  cxlog: {
102015
101736
  id: string;
@@ -102784,6 +102505,7 @@ export declare const platformContract: {
102784
102505
  };
102785
102506
  lastMessageAt: Date | null;
102786
102507
  isBotRoom: boolean;
102508
+ isAiAgentRoom: boolean;
102787
102509
  csatStatus: string | null;
102788
102510
  cxlog: {
102789
102511
  id: string;
@@ -103559,6 +103281,7 @@ export declare const platformContract: {
103559
103281
  };
103560
103282
  lastMessageAt: Date | null;
103561
103283
  isBotRoom: boolean;
103284
+ isAiAgentRoom: boolean;
103562
103285
  csatStatus: string | null;
103563
103286
  cxlog: {
103564
103287
  id: string;
@@ -104333,6 +104056,7 @@ export declare const platformContract: {
104333
104056
  };
104334
104057
  lastMessageAt: Date | null;
104335
104058
  isBotRoom: boolean;
104059
+ isAiAgentRoom: boolean;
104336
104060
  csatStatus: string | null;
104337
104061
  cxlog: {
104338
104062
  id: string;
@@ -105108,6 +104832,7 @@ export declare const platformContract: {
105108
104832
  };
105109
104833
  lastMessageAt: Date | null;
105110
104834
  isBotRoom: boolean;
104835
+ isAiAgentRoom: boolean;
105111
104836
  csatStatus: string | null;
105112
104837
  cxlog: {
105113
104838
  id: string;
@@ -105882,6 +105607,7 @@ export declare const platformContract: {
105882
105607
  };
105883
105608
  lastMessageAt: Date | null;
105884
105609
  isBotRoom: boolean;
105610
+ isAiAgentRoom: boolean;
105885
105611
  csatStatus: string | null;
105886
105612
  cxlog: {
105887
105613
  id: string;
@@ -106659,6 +106385,7 @@ export declare const platformContract: {
106659
106385
  };
106660
106386
  lastMessageAt: Date | null;
106661
106387
  isBotRoom: boolean;
106388
+ isAiAgentRoom: boolean;
106662
106389
  csatStatus: string | null;
106663
106390
  cxlog: {
106664
106391
  id: string;
@@ -107433,6 +107160,7 @@ export declare const platformContract: {
107433
107160
  };
107434
107161
  lastMessageAt: Date | null;
107435
107162
  isBotRoom: boolean;
107163
+ isAiAgentRoom: boolean;
107436
107164
  csatStatus: string | null;
107437
107165
  cxlog: {
107438
107166
  id: string;
@@ -108211,6 +107939,7 @@ export declare const platformContract: {
108211
107939
  };
108212
107940
  lastMessageAt: Date | null;
108213
107941
  isBotRoom: boolean;
107942
+ isAiAgentRoom: boolean;
108214
107943
  csatStatus: string | null;
108215
107944
  cxlog: {
108216
107945
  id: string;
@@ -108985,6 +108714,7 @@ export declare const platformContract: {
108985
108714
  };
108986
108715
  lastMessageAt: Date | null;
108987
108716
  isBotRoom: boolean;
108717
+ isAiAgentRoom: boolean;
108988
108718
  csatStatus: string | null;
108989
108719
  cxlog: {
108990
108720
  id: string;
@@ -113446,6 +113176,7 @@ export declare const platformLineContract: {
113446
113176
  firstResponseTime: import("zod").ZodNumber;
113447
113177
  isLatest: import("zod").ZodBoolean;
113448
113178
  isBotRoom: import("zod").ZodBoolean;
113179
+ isAiAgentRoom: import("zod").ZodBoolean;
113449
113180
  metadata: import("zod").ZodAny;
113450
113181
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
113451
113182
  platformContact: import("zod").ZodObject<{
@@ -116381,6 +116112,7 @@ export declare const platformLineContract: {
116381
116112
  };
116382
116113
  lastMessageAt: Date | null;
116383
116114
  isBotRoom: boolean;
116115
+ isAiAgentRoom: boolean;
116384
116116
  csatStatus: string | null;
116385
116117
  cxlog: {
116386
116118
  id: string;
@@ -116818,6 +116550,7 @@ export declare const platformLineContract: {
116818
116550
  };
116819
116551
  lastMessageAt: Date | null;
116820
116552
  isBotRoom: boolean;
116553
+ isAiAgentRoom: boolean;
116821
116554
  csatStatus: string | null;
116822
116555
  cxlog: {
116823
116556
  id: string;
@@ -118183,6 +117916,7 @@ export declare const platformLineContract: {
118183
117916
  firstResponseTime: import("zod").ZodNumber;
118184
117917
  isLatest: import("zod").ZodBoolean;
118185
117918
  isBotRoom: import("zod").ZodBoolean;
117919
+ isAiAgentRoom: import("zod").ZodBoolean;
118186
117920
  metadata: import("zod").ZodAny;
118187
117921
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
118188
117922
  platformContact: import("zod").ZodObject<{
@@ -121118,6 +120852,7 @@ export declare const platformLineContract: {
121118
120852
  };
121119
120853
  lastMessageAt: Date | null;
121120
120854
  isBotRoom: boolean;
120855
+ isAiAgentRoom: boolean;
121121
120856
  csatStatus: string | null;
121122
120857
  cxlog: {
121123
120858
  id: string;
@@ -121555,6 +121290,7 @@ export declare const platformLineContract: {
121555
121290
  };
121556
121291
  lastMessageAt: Date | null;
121557
121292
  isBotRoom: boolean;
121293
+ isAiAgentRoom: boolean;
121558
121294
  csatStatus: string | null;
121559
121295
  cxlog: {
121560
121296
  id: string;
@@ -123765,6 +123501,7 @@ export declare const platformLineContract: {
123765
123501
  };
123766
123502
  lastMessageAt: Date | null;
123767
123503
  isBotRoom: boolean;
123504
+ isAiAgentRoom: boolean;
123768
123505
  csatStatus: string | null;
123769
123506
  cxlog: {
123770
123507
  id: string;
@@ -124539,6 +124276,7 @@ export declare const platformLineContract: {
124539
124276
  };
124540
124277
  lastMessageAt: Date | null;
124541
124278
  isBotRoom: boolean;
124279
+ isAiAgentRoom: boolean;
124542
124280
  csatStatus: string | null;
124543
124281
  cxlog: {
124544
124282
  id: string;
@@ -125314,6 +125052,7 @@ export declare const platformLineContract: {
125314
125052
  };
125315
125053
  lastMessageAt: Date | null;
125316
125054
  isBotRoom: boolean;
125055
+ isAiAgentRoom: boolean;
125317
125056
  csatStatus: string | null;
125318
125057
  cxlog: {
125319
125058
  id: string;
@@ -126088,6 +125827,7 @@ export declare const platformLineContract: {
126088
125827
  };
126089
125828
  lastMessageAt: Date | null;
126090
125829
  isBotRoom: boolean;
125830
+ isAiAgentRoom: boolean;
126091
125831
  csatStatus: string | null;
126092
125832
  cxlog: {
126093
125833
  id: string;
@@ -126863,6 +126603,7 @@ export declare const platformLineContract: {
126863
126603
  };
126864
126604
  lastMessageAt: Date | null;
126865
126605
  isBotRoom: boolean;
126606
+ isAiAgentRoom: boolean;
126866
126607
  csatStatus: string | null;
126867
126608
  cxlog: {
126868
126609
  id: string;
@@ -127637,6 +127378,7 @@ export declare const platformLineContract: {
127637
127378
  };
127638
127379
  lastMessageAt: Date | null;
127639
127380
  isBotRoom: boolean;
127381
+ isAiAgentRoom: boolean;
127640
127382
  csatStatus: string | null;
127641
127383
  cxlog: {
127642
127384
  id: string;
@@ -128414,6 +128156,7 @@ export declare const platformLineContract: {
128414
128156
  };
128415
128157
  lastMessageAt: Date | null;
128416
128158
  isBotRoom: boolean;
128159
+ isAiAgentRoom: boolean;
128417
128160
  csatStatus: string | null;
128418
128161
  cxlog: {
128419
128162
  id: string;
@@ -129188,6 +128931,7 @@ export declare const platformLineContract: {
129188
128931
  };
129189
128932
  lastMessageAt: Date | null;
129190
128933
  isBotRoom: boolean;
128934
+ isAiAgentRoom: boolean;
129191
128935
  csatStatus: string | null;
129192
128936
  cxlog: {
129193
128937
  id: string;
@@ -129966,6 +129710,7 @@ export declare const platformLineContract: {
129966
129710
  };
129967
129711
  lastMessageAt: Date | null;
129968
129712
  isBotRoom: boolean;
129713
+ isAiAgentRoom: boolean;
129969
129714
  csatStatus: string | null;
129970
129715
  cxlog: {
129971
129716
  id: string;
@@ -130740,6 +130485,7 @@ export declare const platformLineContract: {
130740
130485
  };
130741
130486
  lastMessageAt: Date | null;
130742
130487
  isBotRoom: boolean;
130488
+ isAiAgentRoom: boolean;
130743
130489
  csatStatus: string | null;
130744
130490
  cxlog: {
130745
130491
  id: string;
@@ -135434,6 +135180,7 @@ export declare const platformTelegramContract: {
135434
135180
  firstResponseTime: import("zod").ZodNumber;
135435
135181
  isLatest: import("zod").ZodBoolean;
135436
135182
  isBotRoom: import("zod").ZodBoolean;
135183
+ isAiAgentRoom: import("zod").ZodBoolean;
135437
135184
  metadata: import("zod").ZodAny;
135438
135185
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
135439
135186
  platformContact: import("zod").ZodObject<{
@@ -138369,6 +138116,7 @@ export declare const platformTelegramContract: {
138369
138116
  };
138370
138117
  lastMessageAt: Date | null;
138371
138118
  isBotRoom: boolean;
138119
+ isAiAgentRoom: boolean;
138372
138120
  csatStatus: string | null;
138373
138121
  cxlog: {
138374
138122
  id: string;
@@ -138806,6 +138554,7 @@ export declare const platformTelegramContract: {
138806
138554
  };
138807
138555
  lastMessageAt: Date | null;
138808
138556
  isBotRoom: boolean;
138557
+ isAiAgentRoom: boolean;
138809
138558
  csatStatus: string | null;
138810
138559
  cxlog: {
138811
138560
  id: string;
@@ -140171,6 +139920,7 @@ export declare const platformTelegramContract: {
140171
139920
  firstResponseTime: import("zod").ZodNumber;
140172
139921
  isLatest: import("zod").ZodBoolean;
140173
139922
  isBotRoom: import("zod").ZodBoolean;
139923
+ isAiAgentRoom: import("zod").ZodBoolean;
140174
139924
  metadata: import("zod").ZodAny;
140175
139925
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
140176
139926
  platformContact: import("zod").ZodObject<{
@@ -143106,6 +142856,7 @@ export declare const platformTelegramContract: {
143106
142856
  };
143107
142857
  lastMessageAt: Date | null;
143108
142858
  isBotRoom: boolean;
142859
+ isAiAgentRoom: boolean;
143109
142860
  csatStatus: string | null;
143110
142861
  cxlog: {
143111
142862
  id: string;
@@ -143543,6 +143294,7 @@ export declare const platformTelegramContract: {
143543
143294
  };
143544
143295
  lastMessageAt: Date | null;
143545
143296
  isBotRoom: boolean;
143297
+ isAiAgentRoom: boolean;
143546
143298
  csatStatus: string | null;
143547
143299
  cxlog: {
143548
143300
  id: string;
@@ -145753,6 +145505,7 @@ export declare const platformTelegramContract: {
145753
145505
  };
145754
145506
  lastMessageAt: Date | null;
145755
145507
  isBotRoom: boolean;
145508
+ isAiAgentRoom: boolean;
145756
145509
  csatStatus: string | null;
145757
145510
  cxlog: {
145758
145511
  id: string;
@@ -146527,6 +146280,7 @@ export declare const platformTelegramContract: {
146527
146280
  };
146528
146281
  lastMessageAt: Date | null;
146529
146282
  isBotRoom: boolean;
146283
+ isAiAgentRoom: boolean;
146530
146284
  csatStatus: string | null;
146531
146285
  cxlog: {
146532
146286
  id: string;
@@ -147302,6 +147056,7 @@ export declare const platformTelegramContract: {
147302
147056
  };
147303
147057
  lastMessageAt: Date | null;
147304
147058
  isBotRoom: boolean;
147059
+ isAiAgentRoom: boolean;
147305
147060
  csatStatus: string | null;
147306
147061
  cxlog: {
147307
147062
  id: string;
@@ -148076,6 +147831,7 @@ export declare const platformTelegramContract: {
148076
147831
  };
148077
147832
  lastMessageAt: Date | null;
148078
147833
  isBotRoom: boolean;
147834
+ isAiAgentRoom: boolean;
148079
147835
  csatStatus: string | null;
148080
147836
  cxlog: {
148081
147837
  id: string;
@@ -148851,6 +148607,7 @@ export declare const platformTelegramContract: {
148851
148607
  };
148852
148608
  lastMessageAt: Date | null;
148853
148609
  isBotRoom: boolean;
148610
+ isAiAgentRoom: boolean;
148854
148611
  csatStatus: string | null;
148855
148612
  cxlog: {
148856
148613
  id: string;
@@ -149625,6 +149382,7 @@ export declare const platformTelegramContract: {
149625
149382
  };
149626
149383
  lastMessageAt: Date | null;
149627
149384
  isBotRoom: boolean;
149385
+ isAiAgentRoom: boolean;
149628
149386
  csatStatus: string | null;
149629
149387
  cxlog: {
149630
149388
  id: string;
@@ -150402,6 +150160,7 @@ export declare const platformTelegramContract: {
150402
150160
  };
150403
150161
  lastMessageAt: Date | null;
150404
150162
  isBotRoom: boolean;
150163
+ isAiAgentRoom: boolean;
150405
150164
  csatStatus: string | null;
150406
150165
  cxlog: {
150407
150166
  id: string;
@@ -151176,6 +150935,7 @@ export declare const platformTelegramContract: {
151176
150935
  };
151177
150936
  lastMessageAt: Date | null;
151178
150937
  isBotRoom: boolean;
150938
+ isAiAgentRoom: boolean;
151179
150939
  csatStatus: string | null;
151180
150940
  cxlog: {
151181
150941
  id: string;
@@ -151954,6 +151714,7 @@ export declare const platformTelegramContract: {
151954
151714
  };
151955
151715
  lastMessageAt: Date | null;
151956
151716
  isBotRoom: boolean;
151717
+ isAiAgentRoom: boolean;
151957
151718
  csatStatus: string | null;
151958
151719
  cxlog: {
151959
151720
  id: string;
@@ -152728,6 +152489,7 @@ export declare const platformTelegramContract: {
152728
152489
  };
152729
152490
  lastMessageAt: Date | null;
152730
152491
  isBotRoom: boolean;
152492
+ isAiAgentRoom: boolean;
152731
152493
  csatStatus: string | null;
152732
152494
  cxlog: {
152733
152495
  id: string;
@@ -155419,6 +155181,7 @@ export declare const platformMessengerContract: {
155419
155181
  firstResponseTime: import("zod").ZodNumber;
155420
155182
  isLatest: import("zod").ZodBoolean;
155421
155183
  isBotRoom: import("zod").ZodBoolean;
155184
+ isAiAgentRoom: import("zod").ZodBoolean;
155422
155185
  metadata: import("zod").ZodAny;
155423
155186
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
155424
155187
  platformContact: import("zod").ZodObject<{
@@ -158354,6 +158117,7 @@ export declare const platformMessengerContract: {
158354
158117
  };
158355
158118
  lastMessageAt: Date | null;
158356
158119
  isBotRoom: boolean;
158120
+ isAiAgentRoom: boolean;
158357
158121
  csatStatus: string | null;
158358
158122
  cxlog: {
158359
158123
  id: string;
@@ -158791,6 +158555,7 @@ export declare const platformMessengerContract: {
158791
158555
  };
158792
158556
  lastMessageAt: Date | null;
158793
158557
  isBotRoom: boolean;
158558
+ isAiAgentRoom: boolean;
158794
158559
  csatStatus: string | null;
158795
158560
  cxlog: {
158796
158561
  id: string;
@@ -160156,6 +159921,7 @@ export declare const platformMessengerContract: {
160156
159921
  firstResponseTime: import("zod").ZodNumber;
160157
159922
  isLatest: import("zod").ZodBoolean;
160158
159923
  isBotRoom: import("zod").ZodBoolean;
159924
+ isAiAgentRoom: import("zod").ZodBoolean;
160159
159925
  metadata: import("zod").ZodAny;
160160
159926
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
160161
159927
  platformContact: import("zod").ZodObject<{
@@ -163091,6 +162857,7 @@ export declare const platformMessengerContract: {
163091
162857
  };
163092
162858
  lastMessageAt: Date | null;
163093
162859
  isBotRoom: boolean;
162860
+ isAiAgentRoom: boolean;
163094
162861
  csatStatus: string | null;
163095
162862
  cxlog: {
163096
162863
  id: string;
@@ -163528,6 +163295,7 @@ export declare const platformMessengerContract: {
163528
163295
  };
163529
163296
  lastMessageAt: Date | null;
163530
163297
  isBotRoom: boolean;
163298
+ isAiAgentRoom: boolean;
163531
163299
  csatStatus: string | null;
163532
163300
  cxlog: {
163533
163301
  id: string;
@@ -165738,6 +165506,7 @@ export declare const platformMessengerContract: {
165738
165506
  };
165739
165507
  lastMessageAt: Date | null;
165740
165508
  isBotRoom: boolean;
165509
+ isAiAgentRoom: boolean;
165741
165510
  csatStatus: string | null;
165742
165511
  cxlog: {
165743
165512
  id: string;
@@ -166512,6 +166281,7 @@ export declare const platformMessengerContract: {
166512
166281
  };
166513
166282
  lastMessageAt: Date | null;
166514
166283
  isBotRoom: boolean;
166284
+ isAiAgentRoom: boolean;
166515
166285
  csatStatus: string | null;
166516
166286
  cxlog: {
166517
166287
  id: string;
@@ -167287,6 +167057,7 @@ export declare const platformMessengerContract: {
167287
167057
  };
167288
167058
  lastMessageAt: Date | null;
167289
167059
  isBotRoom: boolean;
167060
+ isAiAgentRoom: boolean;
167290
167061
  csatStatus: string | null;
167291
167062
  cxlog: {
167292
167063
  id: string;
@@ -168061,6 +167832,7 @@ export declare const platformMessengerContract: {
168061
167832
  };
168062
167833
  lastMessageAt: Date | null;
168063
167834
  isBotRoom: boolean;
167835
+ isAiAgentRoom: boolean;
168064
167836
  csatStatus: string | null;
168065
167837
  cxlog: {
168066
167838
  id: string;
@@ -168836,6 +168608,7 @@ export declare const platformMessengerContract: {
168836
168608
  };
168837
168609
  lastMessageAt: Date | null;
168838
168610
  isBotRoom: boolean;
168611
+ isAiAgentRoom: boolean;
168839
168612
  csatStatus: string | null;
168840
168613
  cxlog: {
168841
168614
  id: string;
@@ -169610,6 +169383,7 @@ export declare const platformMessengerContract: {
169610
169383
  };
169611
169384
  lastMessageAt: Date | null;
169612
169385
  isBotRoom: boolean;
169386
+ isAiAgentRoom: boolean;
169613
169387
  csatStatus: string | null;
169614
169388
  cxlog: {
169615
169389
  id: string;
@@ -170387,6 +170161,7 @@ export declare const platformMessengerContract: {
170387
170161
  };
170388
170162
  lastMessageAt: Date | null;
170389
170163
  isBotRoom: boolean;
170164
+ isAiAgentRoom: boolean;
170390
170165
  csatStatus: string | null;
170391
170166
  cxlog: {
170392
170167
  id: string;
@@ -171161,6 +170936,7 @@ export declare const platformMessengerContract: {
171161
170936
  };
171162
170937
  lastMessageAt: Date | null;
171163
170938
  isBotRoom: boolean;
170939
+ isAiAgentRoom: boolean;
171164
170940
  csatStatus: string | null;
171165
170941
  cxlog: {
171166
170942
  id: string;
@@ -171939,6 +171715,7 @@ export declare const platformMessengerContract: {
171939
171715
  };
171940
171716
  lastMessageAt: Date | null;
171941
171717
  isBotRoom: boolean;
171718
+ isAiAgentRoom: boolean;
171942
171719
  csatStatus: string | null;
171943
171720
  cxlog: {
171944
171721
  id: string;
@@ -172713,6 +172490,7 @@ export declare const platformMessengerContract: {
172713
172490
  };
172714
172491
  lastMessageAt: Date | null;
172715
172492
  isBotRoom: boolean;
172493
+ isAiAgentRoom: boolean;
172716
172494
  csatStatus: string | null;
172717
172495
  cxlog: {
172718
172496
  id: string;
@@ -177762,6 +177540,7 @@ export declare const platformInstagramContract: {
177762
177540
  firstResponseTime: import("zod").ZodNumber;
177763
177541
  isLatest: import("zod").ZodBoolean;
177764
177542
  isBotRoom: import("zod").ZodBoolean;
177543
+ isAiAgentRoom: import("zod").ZodBoolean;
177765
177544
  metadata: import("zod").ZodAny;
177766
177545
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
177767
177546
  platformContact: import("zod").ZodObject<{
@@ -180697,6 +180476,7 @@ export declare const platformInstagramContract: {
180697
180476
  };
180698
180477
  lastMessageAt: Date | null;
180699
180478
  isBotRoom: boolean;
180479
+ isAiAgentRoom: boolean;
180700
180480
  csatStatus: string | null;
180701
180481
  cxlog: {
180702
180482
  id: string;
@@ -181134,6 +180914,7 @@ export declare const platformInstagramContract: {
181134
180914
  };
181135
180915
  lastMessageAt: Date | null;
181136
180916
  isBotRoom: boolean;
180917
+ isAiAgentRoom: boolean;
181137
180918
  csatStatus: string | null;
181138
180919
  cxlog: {
181139
180920
  id: string;
@@ -182499,6 +182280,7 @@ export declare const platformInstagramContract: {
182499
182280
  firstResponseTime: import("zod").ZodNumber;
182500
182281
  isLatest: import("zod").ZodBoolean;
182501
182282
  isBotRoom: import("zod").ZodBoolean;
182283
+ isAiAgentRoom: import("zod").ZodBoolean;
182502
182284
  metadata: import("zod").ZodAny;
182503
182285
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
182504
182286
  platformContact: import("zod").ZodObject<{
@@ -185434,6 +185216,7 @@ export declare const platformInstagramContract: {
185434
185216
  };
185435
185217
  lastMessageAt: Date | null;
185436
185218
  isBotRoom: boolean;
185219
+ isAiAgentRoom: boolean;
185437
185220
  csatStatus: string | null;
185438
185221
  cxlog: {
185439
185222
  id: string;
@@ -185871,6 +185654,7 @@ export declare const platformInstagramContract: {
185871
185654
  };
185872
185655
  lastMessageAt: Date | null;
185873
185656
  isBotRoom: boolean;
185657
+ isAiAgentRoom: boolean;
185874
185658
  csatStatus: string | null;
185875
185659
  cxlog: {
185876
185660
  id: string;
@@ -188081,6 +187865,7 @@ export declare const platformInstagramContract: {
188081
187865
  };
188082
187866
  lastMessageAt: Date | null;
188083
187867
  isBotRoom: boolean;
187868
+ isAiAgentRoom: boolean;
188084
187869
  csatStatus: string | null;
188085
187870
  cxlog: {
188086
187871
  id: string;
@@ -188855,6 +188640,7 @@ export declare const platformInstagramContract: {
188855
188640
  };
188856
188641
  lastMessageAt: Date | null;
188857
188642
  isBotRoom: boolean;
188643
+ isAiAgentRoom: boolean;
188858
188644
  csatStatus: string | null;
188859
188645
  cxlog: {
188860
188646
  id: string;
@@ -189630,6 +189416,7 @@ export declare const platformInstagramContract: {
189630
189416
  };
189631
189417
  lastMessageAt: Date | null;
189632
189418
  isBotRoom: boolean;
189419
+ isAiAgentRoom: boolean;
189633
189420
  csatStatus: string | null;
189634
189421
  cxlog: {
189635
189422
  id: string;
@@ -190404,6 +190191,7 @@ export declare const platformInstagramContract: {
190404
190191
  };
190405
190192
  lastMessageAt: Date | null;
190406
190193
  isBotRoom: boolean;
190194
+ isAiAgentRoom: boolean;
190407
190195
  csatStatus: string | null;
190408
190196
  cxlog: {
190409
190197
  id: string;
@@ -191179,6 +190967,7 @@ export declare const platformInstagramContract: {
191179
190967
  };
191180
190968
  lastMessageAt: Date | null;
191181
190969
  isBotRoom: boolean;
190970
+ isAiAgentRoom: boolean;
191182
190971
  csatStatus: string | null;
191183
190972
  cxlog: {
191184
190973
  id: string;
@@ -191953,6 +191742,7 @@ export declare const platformInstagramContract: {
191953
191742
  };
191954
191743
  lastMessageAt: Date | null;
191955
191744
  isBotRoom: boolean;
191745
+ isAiAgentRoom: boolean;
191956
191746
  csatStatus: string | null;
191957
191747
  cxlog: {
191958
191748
  id: string;
@@ -192730,6 +192520,7 @@ export declare const platformInstagramContract: {
192730
192520
  };
192731
192521
  lastMessageAt: Date | null;
192732
192522
  isBotRoom: boolean;
192523
+ isAiAgentRoom: boolean;
192733
192524
  csatStatus: string | null;
192734
192525
  cxlog: {
192735
192526
  id: string;
@@ -193504,6 +193295,7 @@ export declare const platformInstagramContract: {
193504
193295
  };
193505
193296
  lastMessageAt: Date | null;
193506
193297
  isBotRoom: boolean;
193298
+ isAiAgentRoom: boolean;
193507
193299
  csatStatus: string | null;
193508
193300
  cxlog: {
193509
193301
  id: string;
@@ -194282,6 +194074,7 @@ export declare const platformInstagramContract: {
194282
194074
  };
194283
194075
  lastMessageAt: Date | null;
194284
194076
  isBotRoom: boolean;
194077
+ isAiAgentRoom: boolean;
194285
194078
  csatStatus: string | null;
194286
194079
  cxlog: {
194287
194080
  id: string;
@@ -195056,6 +194849,7 @@ export declare const platformInstagramContract: {
195056
194849
  };
195057
194850
  lastMessageAt: Date | null;
195058
194851
  isBotRoom: boolean;
194852
+ isAiAgentRoom: boolean;
195059
194853
  csatStatus: string | null;
195060
194854
  cxlog: {
195061
194855
  id: string;
@@ -198697,24 +198491,24 @@ export declare const platformBotpressContract: {
198697
198491
  botpressBotId: import("zod").ZodString;
198698
198492
  type: import("zod").ZodString;
198699
198493
  metadata: import("zod").ZodObject<{
198700
- accessToken: import("zod").ZodString;
198494
+ accessToken: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
198701
198495
  }, "strip", import("zod").ZodTypeAny, {
198702
- accessToken: string;
198496
+ accessToken?: string | null | undefined;
198703
198497
  }, {
198704
- accessToken: string;
198498
+ accessToken?: string | null | undefined;
198705
198499
  }>;
198706
198500
  }, "strip", import("zod").ZodTypeAny, {
198707
198501
  type: string;
198708
198502
  id: string;
198709
198503
  metadata: {
198710
- accessToken: string;
198504
+ accessToken?: string | null | undefined;
198711
198505
  };
198712
198506
  botpressBotId: string;
198713
198507
  }, {
198714
198508
  type: string;
198715
198509
  id: string;
198716
198510
  metadata: {
198717
- accessToken: string;
198511
+ accessToken?: string | null | undefined;
198718
198512
  };
198719
198513
  botpressBotId: string;
198720
198514
  }>;
@@ -198770,7 +198564,7 @@ export declare const platformBotpressContract: {
198770
198564
  type: string;
198771
198565
  id: string;
198772
198566
  metadata: {
198773
- accessToken: string;
198567
+ accessToken?: string | null | undefined;
198774
198568
  };
198775
198569
  botpressBotId: string;
198776
198570
  };
@@ -198795,7 +198589,7 @@ export declare const platformBotpressContract: {
198795
198589
  type: string;
198796
198590
  id: string;
198797
198591
  metadata: {
198798
- accessToken: string;
198592
+ accessToken?: string | null | undefined;
198799
198593
  };
198800
198594
  botpressBotId: string;
198801
198595
  };
@@ -198823,7 +198617,7 @@ export declare const platformBotpressContract: {
198823
198617
  type: string;
198824
198618
  id: string;
198825
198619
  metadata: {
198826
- accessToken: string;
198620
+ accessToken?: string | null | undefined;
198827
198621
  };
198828
198622
  botpressBotId: string;
198829
198623
  };
@@ -198852,7 +198646,7 @@ export declare const platformBotpressContract: {
198852
198646
  type: string;
198853
198647
  id: string;
198854
198648
  metadata: {
198855
- accessToken: string;
198649
+ accessToken?: string | null | undefined;
198856
198650
  };
198857
198651
  botpressBotId: string;
198858
198652
  };
@@ -204796,6 +204590,7 @@ export declare const platformWhatsappContract: {
204796
204590
  firstResponseTime: import("zod").ZodNumber;
204797
204591
  isLatest: import("zod").ZodBoolean;
204798
204592
  isBotRoom: import("zod").ZodBoolean;
204593
+ isAiAgentRoom: import("zod").ZodBoolean;
204799
204594
  metadata: import("zod").ZodAny;
204800
204595
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
204801
204596
  platformContact: import("zod").ZodObject<{
@@ -207731,6 +207526,7 @@ export declare const platformWhatsappContract: {
207731
207526
  };
207732
207527
  lastMessageAt: Date | null;
207733
207528
  isBotRoom: boolean;
207529
+ isAiAgentRoom: boolean;
207734
207530
  csatStatus: string | null;
207735
207531
  cxlog: {
207736
207532
  id: string;
@@ -208168,6 +207964,7 @@ export declare const platformWhatsappContract: {
208168
207964
  };
208169
207965
  lastMessageAt: Date | null;
208170
207966
  isBotRoom: boolean;
207967
+ isAiAgentRoom: boolean;
208171
207968
  csatStatus: string | null;
208172
207969
  cxlog: {
208173
207970
  id: string;
@@ -209533,6 +209330,7 @@ export declare const platformWhatsappContract: {
209533
209330
  firstResponseTime: import("zod").ZodNumber;
209534
209331
  isLatest: import("zod").ZodBoolean;
209535
209332
  isBotRoom: import("zod").ZodBoolean;
209333
+ isAiAgentRoom: import("zod").ZodBoolean;
209536
209334
  metadata: import("zod").ZodAny;
209537
209335
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
209538
209336
  platformContact: import("zod").ZodObject<{
@@ -212468,6 +212266,7 @@ export declare const platformWhatsappContract: {
212468
212266
  };
212469
212267
  lastMessageAt: Date | null;
212470
212268
  isBotRoom: boolean;
212269
+ isAiAgentRoom: boolean;
212471
212270
  csatStatus: string | null;
212472
212271
  cxlog: {
212473
212272
  id: string;
@@ -212905,6 +212704,7 @@ export declare const platformWhatsappContract: {
212905
212704
  };
212906
212705
  lastMessageAt: Date | null;
212907
212706
  isBotRoom: boolean;
212707
+ isAiAgentRoom: boolean;
212908
212708
  csatStatus: string | null;
212909
212709
  cxlog: {
212910
212710
  id: string;
@@ -215115,6 +214915,7 @@ export declare const platformWhatsappContract: {
215115
214915
  };
215116
214916
  lastMessageAt: Date | null;
215117
214917
  isBotRoom: boolean;
214918
+ isAiAgentRoom: boolean;
215118
214919
  csatStatus: string | null;
215119
214920
  cxlog: {
215120
214921
  id: string;
@@ -215889,6 +215690,7 @@ export declare const platformWhatsappContract: {
215889
215690
  };
215890
215691
  lastMessageAt: Date | null;
215891
215692
  isBotRoom: boolean;
215693
+ isAiAgentRoom: boolean;
215892
215694
  csatStatus: string | null;
215893
215695
  cxlog: {
215894
215696
  id: string;
@@ -216664,6 +216466,7 @@ export declare const platformWhatsappContract: {
216664
216466
  };
216665
216467
  lastMessageAt: Date | null;
216666
216468
  isBotRoom: boolean;
216469
+ isAiAgentRoom: boolean;
216667
216470
  csatStatus: string | null;
216668
216471
  cxlog: {
216669
216472
  id: string;
@@ -217438,6 +217241,7 @@ export declare const platformWhatsappContract: {
217438
217241
  };
217439
217242
  lastMessageAt: Date | null;
217440
217243
  isBotRoom: boolean;
217244
+ isAiAgentRoom: boolean;
217441
217245
  csatStatus: string | null;
217442
217246
  cxlog: {
217443
217247
  id: string;
@@ -218213,6 +218017,7 @@ export declare const platformWhatsappContract: {
218213
218017
  };
218214
218018
  lastMessageAt: Date | null;
218215
218019
  isBotRoom: boolean;
218020
+ isAiAgentRoom: boolean;
218216
218021
  csatStatus: string | null;
218217
218022
  cxlog: {
218218
218023
  id: string;
@@ -218987,6 +218792,7 @@ export declare const platformWhatsappContract: {
218987
218792
  };
218988
218793
  lastMessageAt: Date | null;
218989
218794
  isBotRoom: boolean;
218795
+ isAiAgentRoom: boolean;
218990
218796
  csatStatus: string | null;
218991
218797
  cxlog: {
218992
218798
  id: string;
@@ -219764,6 +219570,7 @@ export declare const platformWhatsappContract: {
219764
219570
  };
219765
219571
  lastMessageAt: Date | null;
219766
219572
  isBotRoom: boolean;
219573
+ isAiAgentRoom: boolean;
219767
219574
  csatStatus: string | null;
219768
219575
  cxlog: {
219769
219576
  id: string;
@@ -220538,6 +220345,7 @@ export declare const platformWhatsappContract: {
220538
220345
  };
220539
220346
  lastMessageAt: Date | null;
220540
220347
  isBotRoom: boolean;
220348
+ isAiAgentRoom: boolean;
220541
220349
  csatStatus: string | null;
220542
220350
  cxlog: {
220543
220351
  id: string;
@@ -221316,6 +221124,7 @@ export declare const platformWhatsappContract: {
221316
221124
  };
221317
221125
  lastMessageAt: Date | null;
221318
221126
  isBotRoom: boolean;
221127
+ isAiAgentRoom: boolean;
221319
221128
  csatStatus: string | null;
221320
221129
  cxlog: {
221321
221130
  id: string;
@@ -222090,6 +221899,7 @@ export declare const platformWhatsappContract: {
222090
221899
  };
222091
221900
  lastMessageAt: Date | null;
222092
221901
  isBotRoom: boolean;
221902
+ isAiAgentRoom: boolean;
222093
221903
  csatStatus: string | null;
222094
221904
  cxlog: {
222095
221905
  id: string;
@@ -231416,6 +231226,7 @@ export declare const facebookFeedContract: {
231416
231226
  firstResponseTime: import("zod").ZodNumber;
231417
231227
  isLatest: import("zod").ZodBoolean;
231418
231228
  isBotRoom: import("zod").ZodBoolean;
231229
+ isAiAgentRoom: import("zod").ZodBoolean;
231419
231230
  metadata: import("zod").ZodAny;
231420
231231
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
231421
231232
  platformContact: import("zod").ZodObject<{
@@ -234351,6 +234162,7 @@ export declare const facebookFeedContract: {
234351
234162
  };
234352
234163
  lastMessageAt: Date | null;
234353
234164
  isBotRoom: boolean;
234165
+ isAiAgentRoom: boolean;
234354
234166
  csatStatus: string | null;
234355
234167
  cxlog: {
234356
234168
  id: string;
@@ -234788,6 +234600,7 @@ export declare const facebookFeedContract: {
234788
234600
  };
234789
234601
  lastMessageAt: Date | null;
234790
234602
  isBotRoom: boolean;
234603
+ isAiAgentRoom: boolean;
234791
234604
  csatStatus: string | null;
234792
234605
  cxlog: {
234793
234606
  id: string;
@@ -236153,6 +235966,7 @@ export declare const facebookFeedContract: {
236153
235966
  firstResponseTime: import("zod").ZodNumber;
236154
235967
  isLatest: import("zod").ZodBoolean;
236155
235968
  isBotRoom: import("zod").ZodBoolean;
235969
+ isAiAgentRoom: import("zod").ZodBoolean;
236156
235970
  metadata: import("zod").ZodAny;
236157
235971
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
236158
235972
  platformContact: import("zod").ZodObject<{
@@ -239088,6 +238902,7 @@ export declare const facebookFeedContract: {
239088
238902
  };
239089
238903
  lastMessageAt: Date | null;
239090
238904
  isBotRoom: boolean;
238905
+ isAiAgentRoom: boolean;
239091
238906
  csatStatus: string | null;
239092
238907
  cxlog: {
239093
238908
  id: string;
@@ -239525,6 +239340,7 @@ export declare const facebookFeedContract: {
239525
239340
  };
239526
239341
  lastMessageAt: Date | null;
239527
239342
  isBotRoom: boolean;
239343
+ isAiAgentRoom: boolean;
239528
239344
  csatStatus: string | null;
239529
239345
  cxlog: {
239530
239346
  id: string;
@@ -241735,6 +241551,7 @@ export declare const facebookFeedContract: {
241735
241551
  };
241736
241552
  lastMessageAt: Date | null;
241737
241553
  isBotRoom: boolean;
241554
+ isAiAgentRoom: boolean;
241738
241555
  csatStatus: string | null;
241739
241556
  cxlog: {
241740
241557
  id: string;
@@ -242509,6 +242326,7 @@ export declare const facebookFeedContract: {
242509
242326
  };
242510
242327
  lastMessageAt: Date | null;
242511
242328
  isBotRoom: boolean;
242329
+ isAiAgentRoom: boolean;
242512
242330
  csatStatus: string | null;
242513
242331
  cxlog: {
242514
242332
  id: string;
@@ -243284,6 +243102,7 @@ export declare const facebookFeedContract: {
243284
243102
  };
243285
243103
  lastMessageAt: Date | null;
243286
243104
  isBotRoom: boolean;
243105
+ isAiAgentRoom: boolean;
243287
243106
  csatStatus: string | null;
243288
243107
  cxlog: {
243289
243108
  id: string;
@@ -244058,6 +243877,7 @@ export declare const facebookFeedContract: {
244058
243877
  };
244059
243878
  lastMessageAt: Date | null;
244060
243879
  isBotRoom: boolean;
243880
+ isAiAgentRoom: boolean;
244061
243881
  csatStatus: string | null;
244062
243882
  cxlog: {
244063
243883
  id: string;
@@ -244833,6 +244653,7 @@ export declare const facebookFeedContract: {
244833
244653
  };
244834
244654
  lastMessageAt: Date | null;
244835
244655
  isBotRoom: boolean;
244656
+ isAiAgentRoom: boolean;
244836
244657
  csatStatus: string | null;
244837
244658
  cxlog: {
244838
244659
  id: string;
@@ -245607,6 +245428,7 @@ export declare const facebookFeedContract: {
245607
245428
  };
245608
245429
  lastMessageAt: Date | null;
245609
245430
  isBotRoom: boolean;
245431
+ isAiAgentRoom: boolean;
245610
245432
  csatStatus: string | null;
245611
245433
  cxlog: {
245612
245434
  id: string;
@@ -246384,6 +246206,7 @@ export declare const facebookFeedContract: {
246384
246206
  };
246385
246207
  lastMessageAt: Date | null;
246386
246208
  isBotRoom: boolean;
246209
+ isAiAgentRoom: boolean;
246387
246210
  csatStatus: string | null;
246388
246211
  cxlog: {
246389
246212
  id: string;
@@ -247158,6 +246981,7 @@ export declare const facebookFeedContract: {
247158
246981
  };
247159
246982
  lastMessageAt: Date | null;
247160
246983
  isBotRoom: boolean;
246984
+ isAiAgentRoom: boolean;
247161
246985
  csatStatus: string | null;
247162
246986
  cxlog: {
247163
246987
  id: string;
@@ -247936,6 +247760,7 @@ export declare const facebookFeedContract: {
247936
247760
  };
247937
247761
  lastMessageAt: Date | null;
247938
247762
  isBotRoom: boolean;
247763
+ isAiAgentRoom: boolean;
247939
247764
  csatStatus: string | null;
247940
247765
  cxlog: {
247941
247766
  id: string;
@@ -248710,6 +248535,7 @@ export declare const facebookFeedContract: {
248710
248535
  };
248711
248536
  lastMessageAt: Date | null;
248712
248537
  isBotRoom: boolean;
248538
+ isAiAgentRoom: boolean;
248713
248539
  csatStatus: string | null;
248714
248540
  cxlog: {
248715
248541
  id: string;
@@ -254010,6 +253836,7 @@ export declare const feedPostContract: {
254010
253836
  firstResponseTime: import("zod").ZodNumber;
254011
253837
  isLatest: import("zod").ZodBoolean;
254012
253838
  isBotRoom: import("zod").ZodBoolean;
253839
+ isAiAgentRoom: import("zod").ZodBoolean;
254013
253840
  metadata: import("zod").ZodAny;
254014
253841
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
254015
253842
  platformContact: import("zod").ZodObject<{
@@ -256945,6 +256772,7 @@ export declare const feedPostContract: {
256945
256772
  };
256946
256773
  lastMessageAt: Date | null;
256947
256774
  isBotRoom: boolean;
256775
+ isAiAgentRoom: boolean;
256948
256776
  csatStatus: string | null;
256949
256777
  cxlog: {
256950
256778
  id: string;
@@ -257382,6 +257210,7 @@ export declare const feedPostContract: {
257382
257210
  };
257383
257211
  lastMessageAt: Date | null;
257384
257212
  isBotRoom: boolean;
257213
+ isAiAgentRoom: boolean;
257385
257214
  csatStatus: string | null;
257386
257215
  cxlog: {
257387
257216
  id: string;
@@ -259794,6 +259623,7 @@ export declare const feedPostContract: {
259794
259623
  firstResponseTime: import("zod").ZodNumber;
259795
259624
  isLatest: import("zod").ZodBoolean;
259796
259625
  isBotRoom: import("zod").ZodBoolean;
259626
+ isAiAgentRoom: import("zod").ZodBoolean;
259797
259627
  metadata: import("zod").ZodAny;
259798
259628
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
259799
259629
  platformContact: import("zod").ZodObject<{
@@ -262729,6 +262559,7 @@ export declare const feedPostContract: {
262729
262559
  };
262730
262560
  lastMessageAt: Date | null;
262731
262561
  isBotRoom: boolean;
262562
+ isAiAgentRoom: boolean;
262732
262563
  csatStatus: string | null;
262733
262564
  cxlog: {
262734
262565
  id: string;
@@ -263166,6 +262997,7 @@ export declare const feedPostContract: {
263166
262997
  };
263167
262998
  lastMessageAt: Date | null;
263168
262999
  isBotRoom: boolean;
263000
+ isAiAgentRoom: boolean;
263169
263001
  csatStatus: string | null;
263170
263002
  cxlog: {
263171
263003
  id: string;
@@ -265376,6 +265208,7 @@ export declare const feedPostContract: {
265376
265208
  };
265377
265209
  lastMessageAt: Date | null;
265378
265210
  isBotRoom: boolean;
265211
+ isAiAgentRoom: boolean;
265379
265212
  csatStatus: string | null;
265380
265213
  cxlog: {
265381
265214
  id: string;
@@ -266150,6 +265983,7 @@ export declare const feedPostContract: {
266150
265983
  };
266151
265984
  lastMessageAt: Date | null;
266152
265985
  isBotRoom: boolean;
265986
+ isAiAgentRoom: boolean;
266153
265987
  csatStatus: string | null;
266154
265988
  cxlog: {
266155
265989
  id: string;
@@ -266931,6 +266765,7 @@ export declare const feedPostContract: {
266931
266765
  };
266932
266766
  lastMessageAt: Date | null;
266933
266767
  isBotRoom: boolean;
266768
+ isAiAgentRoom: boolean;
266934
266769
  csatStatus: string | null;
266935
266770
  cxlog: {
266936
266771
  id: string;
@@ -267700,6 +267535,7 @@ export declare const feedPostContract: {
267700
267535
  };
267701
267536
  lastMessageAt: Date | null;
267702
267537
  isBotRoom: boolean;
267538
+ isAiAgentRoom: boolean;
267703
267539
  csatStatus: string | null;
267704
267540
  cxlog: {
267705
267541
  id: string;
@@ -268607,6 +268443,7 @@ export declare const feedPostContract: {
268607
268443
  };
268608
268444
  lastMessageAt: Date | null;
268609
268445
  isBotRoom: boolean;
268446
+ isAiAgentRoom: boolean;
268610
268447
  csatStatus: string | null;
268611
268448
  cxlog: {
268612
268449
  id: string;
@@ -269376,6 +269213,7 @@ export declare const feedPostContract: {
269376
269213
  };
269377
269214
  lastMessageAt: Date | null;
269378
269215
  isBotRoom: boolean;
269216
+ isAiAgentRoom: boolean;
269379
269217
  csatStatus: string | null;
269380
269218
  cxlog: {
269381
269219
  id: string;
@@ -270285,6 +270123,7 @@ export declare const feedPostContract: {
270285
270123
  };
270286
270124
  lastMessageAt: Date | null;
270287
270125
  isBotRoom: boolean;
270126
+ isAiAgentRoom: boolean;
270288
270127
  csatStatus: string | null;
270289
270128
  cxlog: {
270290
270129
  id: string;
@@ -271054,6 +270893,7 @@ export declare const feedPostContract: {
271054
270893
  };
271055
270894
  lastMessageAt: Date | null;
271056
270895
  isBotRoom: boolean;
270896
+ isAiAgentRoom: boolean;
271057
270897
  csatStatus: string | null;
271058
270898
  cxlog: {
271059
270899
  id: string;
@@ -271967,6 +271807,7 @@ export declare const feedPostContract: {
271967
271807
  };
271968
271808
  lastMessageAt: Date | null;
271969
271809
  isBotRoom: boolean;
271810
+ isAiAgentRoom: boolean;
271970
271811
  csatStatus: string | null;
271971
271812
  cxlog: {
271972
271813
  id: string;
@@ -272736,6 +272577,7 @@ export declare const feedPostContract: {
272736
272577
  };
272737
272578
  lastMessageAt: Date | null;
272738
272579
  isBotRoom: boolean;
272580
+ isAiAgentRoom: boolean;
272739
272581
  csatStatus: string | null;
272740
272582
  cxlog: {
272741
272583
  id: string;
@@ -287309,6 +287151,7 @@ export declare const workflowContract: {
287309
287151
  firstResponseTime: import("zod").ZodNumber;
287310
287152
  isLatest: import("zod").ZodBoolean;
287311
287153
  isBotRoom: import("zod").ZodBoolean;
287154
+ isAiAgentRoom: import("zod").ZodBoolean;
287312
287155
  metadata: import("zod").ZodAny;
287313
287156
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
287314
287157
  platformContact: import("zod").ZodObject<{
@@ -290244,6 +290087,7 @@ export declare const workflowContract: {
290244
290087
  };
290245
290088
  lastMessageAt: Date | null;
290246
290089
  isBotRoom: boolean;
290090
+ isAiAgentRoom: boolean;
290247
290091
  csatStatus: string | null;
290248
290092
  cxlog: {
290249
290093
  id: string;
@@ -290681,6 +290525,7 @@ export declare const workflowContract: {
290681
290525
  };
290682
290526
  lastMessageAt: Date | null;
290683
290527
  isBotRoom: boolean;
290528
+ isAiAgentRoom: boolean;
290684
290529
  csatStatus: string | null;
290685
290530
  cxlog: {
290686
290531
  id: string;
@@ -291120,6 +290965,7 @@ export declare const workflowContract: {
291120
290965
  };
291121
290966
  lastMessageAt: Date | null;
291122
290967
  isBotRoom: boolean;
290968
+ isAiAgentRoom: boolean;
291123
290969
  csatStatus: string | null;
291124
290970
  cxlog: {
291125
290971
  id: string;
@@ -291560,6 +291406,7 @@ export declare const workflowContract: {
291560
291406
  };
291561
291407
  lastMessageAt: Date | null;
291562
291408
  isBotRoom: boolean;
291409
+ isAiAgentRoom: boolean;
291563
291410
  csatStatus: string | null;
291564
291411
  cxlog: {
291565
291412
  id: string;
@@ -291693,18 +291540,26 @@ export declare const workflowContract: {
291693
291540
  }>;
291694
291541
  };
291695
291542
  autoReply: {
291696
- body: import("zod").ZodObject<{
291543
+ body: import("zod").ZodEffects<import("zod").ZodObject<{
291697
291544
  roomId: import("zod").ZodString;
291698
- message: import("zod").ZodString;
291699
- messageType: import("zod").ZodDefault<import("zod").ZodEnum<["text", "image"]>>;
291545
+ message: import("zod").ZodOptional<import("zod").ZodString>;
291546
+ messageType: import("zod").ZodDefault<import("zod").ZodEnum<["text", "image", "typing_on"]>>;
291700
291547
  }, "strip", import("zod").ZodTypeAny, {
291701
- message: string;
291702
- messageType: "image" | "text";
291548
+ messageType: "image" | "text" | "typing_on";
291703
291549
  roomId: string;
291550
+ message?: string | undefined;
291704
291551
  }, {
291705
- message: string;
291706
291552
  roomId: string;
291707
- messageType?: "image" | "text" | undefined;
291553
+ message?: string | undefined;
291554
+ messageType?: "image" | "text" | "typing_on" | undefined;
291555
+ }>, {
291556
+ messageType: "image" | "text" | "typing_on";
291557
+ roomId: string;
291558
+ message?: string | undefined;
291559
+ }, {
291560
+ roomId: string;
291561
+ message?: string | undefined;
291562
+ messageType?: "image" | "text" | "typing_on" | undefined;
291708
291563
  }>;
291709
291564
  summary: "send auto reply message";
291710
291565
  method: "POST";
@@ -291744,6 +291599,7 @@ export declare const workflowContract: {
291744
291599
  firstResponseTime: import("zod").ZodNumber;
291745
291600
  isLatest: import("zod").ZodBoolean;
291746
291601
  isBotRoom: import("zod").ZodBoolean;
291602
+ isAiAgentRoom: import("zod").ZodBoolean;
291747
291603
  metadata: import("zod").ZodAny;
291748
291604
  direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
291749
291605
  platformContact: import("zod").ZodObject<{
@@ -294679,6 +294535,7 @@ export declare const workflowContract: {
294679
294535
  };
294680
294536
  lastMessageAt: Date | null;
294681
294537
  isBotRoom: boolean;
294538
+ isAiAgentRoom: boolean;
294682
294539
  csatStatus: string | null;
294683
294540
  cxlog: {
294684
294541
  id: string;
@@ -295116,6 +294973,7 @@ export declare const workflowContract: {
295116
294973
  };
295117
294974
  lastMessageAt: Date | null;
295118
294975
  isBotRoom: boolean;
294976
+ isAiAgentRoom: boolean;
295119
294977
  csatStatus: string | null;
295120
294978
  cxlog: {
295121
294979
  id: string;
@@ -297326,6 +297184,7 @@ export declare const workflowContract: {
297326
297184
  };
297327
297185
  lastMessageAt: Date | null;
297328
297186
  isBotRoom: boolean;
297187
+ isAiAgentRoom: boolean;
297329
297188
  csatStatus: string | null;
297330
297189
  cxlog: {
297331
297190
  id: string;
@@ -298100,6 +297959,7 @@ export declare const workflowContract: {
298100
297959
  };
298101
297960
  lastMessageAt: Date | null;
298102
297961
  isBotRoom: boolean;
297962
+ isAiAgentRoom: boolean;
298103
297963
  csatStatus: string | null;
298104
297964
  cxlog: {
298105
297965
  id: string;
@@ -298876,6 +298736,7 @@ export declare const workflowContract: {
298876
298736
  };
298877
298737
  lastMessageAt: Date | null;
298878
298738
  isBotRoom: boolean;
298739
+ isAiAgentRoom: boolean;
298879
298740
  csatStatus: string | null;
298880
298741
  cxlog: {
298881
298742
  id: string;
@@ -299653,6 +299514,7 @@ export declare const workflowContract: {
299653
299514
  };
299654
299515
  lastMessageAt: Date | null;
299655
299516
  isBotRoom: boolean;
299517
+ isAiAgentRoom: boolean;
299656
299518
  csatStatus: string | null;
299657
299519
  cxlog: {
299658
299520
  id: string;
@@ -302081,6 +301943,7 @@ export declare const workflowContract: {
302081
301943
  }>;
302082
301944
  lastMessageAt: import("zod").ZodNullable<import("zod").ZodDate>;
302083
301945
  isBotRoom: import("zod").ZodBoolean;
301946
+ isAiAgentRoom: import("zod").ZodBoolean;
302084
301947
  csatStatus: import("zod").ZodNullable<import("zod").ZodString>;
302085
301948
  cxlog: import("zod").ZodObject<{
302086
301949
  id: import("zod").ZodString;
@@ -302982,6 +302845,7 @@ export declare const workflowContract: {
302982
302845
  };
302983
302846
  lastMessageAt: Date | null;
302984
302847
  isBotRoom: boolean;
302848
+ isAiAgentRoom: boolean;
302985
302849
  csatStatus: string | null;
302986
302850
  cxlog: {
302987
302851
  id: string;
@@ -303420,6 +303284,7 @@ export declare const workflowContract: {
303420
303284
  };
303421
303285
  lastMessageAt: Date | null;
303422
303286
  isBotRoom: boolean;
303287
+ isAiAgentRoom: boolean;
303423
303288
  csatStatus: string | null;
303424
303289
  cxlog: {
303425
303290
  id: string;
@@ -303860,6 +303725,7 @@ export declare const workflowContract: {
303860
303725
  };
303861
303726
  lastMessageAt: Date | null;
303862
303727
  isBotRoom: boolean;
303728
+ isAiAgentRoom: boolean;
303863
303729
  csatStatus: string | null;
303864
303730
  cxlog: {
303865
303731
  id: string;
@@ -304301,6 +304167,7 @@ export declare const workflowContract: {
304301
304167
  };
304302
304168
  lastMessageAt: Date | null;
304303
304169
  isBotRoom: boolean;
304170
+ isAiAgentRoom: boolean;
304304
304171
  csatStatus: string | null;
304305
304172
  cxlog: {
304306
304173
  id: string;
@@ -304488,6 +304355,60 @@ export declare const workflowContract: {
304488
304355
  'x-code'?: string | undefined;
304489
304356
  }>;
304490
304357
  };
304358
+ tagContact: {
304359
+ body: import("zod").ZodObject<{
304360
+ contactId: import("zod").ZodString;
304361
+ tagId: import("zod").ZodString;
304362
+ }, "strip", import("zod").ZodTypeAny, {
304363
+ contactId: string;
304364
+ tagId: string;
304365
+ }, {
304366
+ contactId: string;
304367
+ tagId: string;
304368
+ }>;
304369
+ summary: "Attach Tag to Contact";
304370
+ method: "POST";
304371
+ responses: {
304372
+ 200: import("zod").ZodObject<{
304373
+ requestId: import("zod").ZodString;
304374
+ }, "strip", import("zod").ZodTypeAny, {
304375
+ requestId: string;
304376
+ }, {
304377
+ requestId: string;
304378
+ }>;
304379
+ 403: import("zod").ZodObject<{
304380
+ message: import("zod").ZodString;
304381
+ error: import("zod").ZodAny;
304382
+ }, "strip", import("zod").ZodTypeAny, {
304383
+ message: string;
304384
+ error?: any;
304385
+ }, {
304386
+ message: string;
304387
+ error?: any;
304388
+ }>;
304389
+ 404: import("zod").ZodObject<{
304390
+ message: import("zod").ZodString;
304391
+ error: import("zod").ZodAny;
304392
+ }, "strip", import("zod").ZodTypeAny, {
304393
+ message: string;
304394
+ error?: any;
304395
+ }, {
304396
+ message: string;
304397
+ error?: any;
304398
+ }>;
304399
+ };
304400
+ path: "ms/workflow/chat/contact/tag";
304401
+ headers: import("zod").ZodObject<{
304402
+ 'x-tenant': import("zod").ZodString;
304403
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
304404
+ }, "strip", import("zod").ZodTypeAny, {
304405
+ 'x-tenant': string;
304406
+ 'x-code'?: string | undefined;
304407
+ }, {
304408
+ 'x-tenant': string;
304409
+ 'x-code'?: string | undefined;
304410
+ }>;
304411
+ };
304491
304412
  };
304492
304413
  };
304493
304414
  export declare const ticketSettingContract: {
@@ -316643,12 +316564,76 @@ export declare const channelSettingContract: {
316643
316564
  updateChannelCsatPreference: {
316644
316565
  body: import("zod").ZodObject<{
316645
316566
  isCSATEnabled: import("zod").ZodBoolean;
316567
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
316568
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
316569
+ bucketName: import("zod").ZodString;
316570
+ fileName: import("zod").ZodString;
316571
+ fileSize: import("zod").ZodNumber;
316572
+ fileKey: import("zod").ZodString;
316573
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
316574
+ }, "strip", import("zod").ZodTypeAny, {
316575
+ fileName: string;
316576
+ fileKey: string;
316577
+ bucketName: string;
316578
+ fileSize: number;
316579
+ originalUrl?: string | null | undefined;
316580
+ }, {
316581
+ fileName: string;
316582
+ fileKey: string;
316583
+ bucketName: string;
316584
+ fileSize: number;
316585
+ originalUrl?: string | null | undefined;
316586
+ }>>>;
316587
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
316588
+ value: import("zod").ZodString;
316589
+ label: import("zod").ZodString;
316590
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
316591
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
316592
+ }, "strip", import("zod").ZodTypeAny, {
316593
+ value: string;
316594
+ label: string;
316595
+ color?: string | null | undefined;
316596
+ style?: string | null | undefined;
316597
+ }, {
316598
+ value: string;
316599
+ label: string;
316600
+ color?: string | null | undefined;
316601
+ style?: string | null | undefined;
316602
+ }>, "many">>>;
316646
316603
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
316647
316604
  }, "strip", import("zod").ZodTypeAny, {
316648
316605
  isCSATEnabled: boolean;
316606
+ headline?: string | null | undefined;
316607
+ image?: {
316608
+ fileName: string;
316609
+ fileKey: string;
316610
+ bucketName: string;
316611
+ fileSize: number;
316612
+ originalUrl?: string | null | undefined;
316613
+ } | null | undefined;
316614
+ scaleOptions?: {
316615
+ value: string;
316616
+ label: string;
316617
+ color?: string | null | undefined;
316618
+ style?: string | null | undefined;
316619
+ }[] | null | undefined;
316649
316620
  dispositions?: string[] | undefined;
316650
316621
  }, {
316651
316622
  isCSATEnabled: boolean;
316623
+ headline?: string | null | undefined;
316624
+ image?: {
316625
+ fileName: string;
316626
+ fileKey: string;
316627
+ bucketName: string;
316628
+ fileSize: number;
316629
+ originalUrl?: string | null | undefined;
316630
+ } | null | undefined;
316631
+ scaleOptions?: {
316632
+ value: string;
316633
+ label: string;
316634
+ color?: string | null | undefined;
316635
+ style?: string | null | undefined;
316636
+ }[] | null | undefined;
316652
316637
  dispositions?: string[] | undefined;
316653
316638
  }>;
316654
316639
  summary: "Enable or Disable CSAT for channel";