@kl1/contracts 1.3.80 → 1.3.82

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 (46) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +64 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/validation.d.ts +64 -0
  4. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/index.d.ts +43 -0
  6. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  8. package/dist/api-contracts/src/chat/validation.d.ts +25 -0
  9. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  10. package/dist/api-contracts/src/contract.d.ts +254 -430
  11. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  12. package/dist/api-contracts/src/facebook-feed/index.d.ts +9 -0
  13. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  14. package/dist/api-contracts/src/index.d.ts +1 -0
  15. package/dist/api-contracts/src/index.d.ts.map +1 -1
  16. package/dist/api-contracts/src/instagram/index.d.ts +9 -0
  17. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  18. package/dist/api-contracts/src/line/index.d.ts +9 -0
  19. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  20. package/dist/api-contracts/src/messenger/index.d.ts +9 -0
  21. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  22. package/dist/api-contracts/src/sms/index.d.ts +9 -0
  23. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/subscription/index.d.ts +438 -0
  25. package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
  26. package/dist/api-contracts/src/telegram/index.d.ts +9 -0
  27. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  28. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
  29. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  30. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +0 -3
  31. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  32. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +0 -3
  33. package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
  34. package/dist/api-contracts/src/viber/index.d.ts +9 -0
  35. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  36. package/dist/api-contracts/src/webchat/index.d.ts +9 -0
  37. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  38. package/dist/api-contracts/src/whatsapp/index.d.ts +9 -0
  39. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  40. package/dist/api-contracts/src/workflow-rule/index.d.ts +54 -0
  41. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  42. package/dist/index.js +1605 -1567
  43. package/dist/index.js.map +1 -1
  44. package/dist/index.mjs +1604 -1567
  45. package/dist/index.mjs.map +1 -1
  46. 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<{
@@ -90246,10 +89880,12 @@ export declare const platformContract: {
90246
89880
  notes: import("zod").ZodNullable<import("zod").ZodString>;
90247
89881
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
90248
89882
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
89883
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
90249
89884
  }, "strip", import("zod").ZodTypeAny, {
90250
89885
  name: string;
90251
89886
  channel: string | null;
90252
89887
  address: string | null;
89888
+ deletedAt: Date | null;
90253
89889
  notes: string | null;
90254
89890
  contactProfile: string | null;
90255
89891
  socialProfileUrl: string | null;
@@ -90257,6 +89893,7 @@ export declare const platformContract: {
90257
89893
  name: string;
90258
89894
  channel: string | null;
90259
89895
  address: string | null;
89896
+ deletedAt: Date | null;
90260
89897
  notes: string | null;
90261
89898
  contactProfile: string | null;
90262
89899
  socialProfileUrl: string | null;
@@ -90274,6 +89911,7 @@ export declare const platformContract: {
90274
89911
  name: string;
90275
89912
  channel: string | null;
90276
89913
  address: string | null;
89914
+ deletedAt: Date | null;
90277
89915
  notes: string | null;
90278
89916
  contactProfile: string | null;
90279
89917
  socialProfileUrl: string | null;
@@ -90293,6 +89931,7 @@ export declare const platformContract: {
90293
89931
  name: string;
90294
89932
  channel: string | null;
90295
89933
  address: string | null;
89934
+ deletedAt: Date | null;
90296
89935
  notes: string | null;
90297
89936
  contactProfile: string | null;
90298
89937
  socialProfileUrl: string | null;
@@ -90691,6 +90330,7 @@ export declare const platformContract: {
90691
90330
  name: string;
90692
90331
  channel: string | null;
90693
90332
  address: string | null;
90333
+ deletedAt: Date | null;
90694
90334
  notes: string | null;
90695
90335
  contactProfile: string | null;
90696
90336
  socialProfileUrl: string | null;
@@ -90788,6 +90428,7 @@ export declare const platformContract: {
90788
90428
  name: string;
90789
90429
  channel: string | null;
90790
90430
  address: string | null;
90431
+ deletedAt: Date | null;
90791
90432
  notes: string | null;
90792
90433
  contactProfile: string | null;
90793
90434
  socialProfileUrl: string | null;
@@ -91053,6 +90694,7 @@ export declare const platformContract: {
91053
90694
  name: string;
91054
90695
  channel: string | null;
91055
90696
  address: string | null;
90697
+ deletedAt: Date | null;
91056
90698
  notes: string | null;
91057
90699
  contactProfile: string | null;
91058
90700
  socialProfileUrl: string | null;
@@ -91189,6 +90831,7 @@ export declare const platformContract: {
91189
90831
  name: string;
91190
90832
  channel: string | null;
91191
90833
  address: string | null;
90834
+ deletedAt: Date | null;
91192
90835
  notes: string | null;
91193
90836
  contactProfile: string | null;
91194
90837
  socialProfileUrl: string | null;
@@ -111992,10 +111635,12 @@ export declare const platformLineContract: {
111992
111635
  notes: import("zod").ZodNullable<import("zod").ZodString>;
111993
111636
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
111994
111637
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
111638
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
111995
111639
  }, "strip", import("zod").ZodTypeAny, {
111996
111640
  name: string;
111997
111641
  channel: string | null;
111998
111642
  address: string | null;
111643
+ deletedAt: Date | null;
111999
111644
  notes: string | null;
112000
111645
  contactProfile: string | null;
112001
111646
  socialProfileUrl: string | null;
@@ -112003,6 +111648,7 @@ export declare const platformLineContract: {
112003
111648
  name: string;
112004
111649
  channel: string | null;
112005
111650
  address: string | null;
111651
+ deletedAt: Date | null;
112006
111652
  notes: string | null;
112007
111653
  contactProfile: string | null;
112008
111654
  socialProfileUrl: string | null;
@@ -112020,6 +111666,7 @@ export declare const platformLineContract: {
112020
111666
  name: string;
112021
111667
  channel: string | null;
112022
111668
  address: string | null;
111669
+ deletedAt: Date | null;
112023
111670
  notes: string | null;
112024
111671
  contactProfile: string | null;
112025
111672
  socialProfileUrl: string | null;
@@ -112039,6 +111686,7 @@ export declare const platformLineContract: {
112039
111686
  name: string;
112040
111687
  channel: string | null;
112041
111688
  address: string | null;
111689
+ deletedAt: Date | null;
112042
111690
  notes: string | null;
112043
111691
  contactProfile: string | null;
112044
111692
  socialProfileUrl: string | null;
@@ -112437,6 +112085,7 @@ export declare const platformLineContract: {
112437
112085
  name: string;
112438
112086
  channel: string | null;
112439
112087
  address: string | null;
112088
+ deletedAt: Date | null;
112440
112089
  notes: string | null;
112441
112090
  contactProfile: string | null;
112442
112091
  socialProfileUrl: string | null;
@@ -112534,6 +112183,7 @@ export declare const platformLineContract: {
112534
112183
  name: string;
112535
112184
  channel: string | null;
112536
112185
  address: string | null;
112186
+ deletedAt: Date | null;
112537
112187
  notes: string | null;
112538
112188
  contactProfile: string | null;
112539
112189
  socialProfileUrl: string | null;
@@ -112799,6 +112449,7 @@ export declare const platformLineContract: {
112799
112449
  name: string;
112800
112450
  channel: string | null;
112801
112451
  address: string | null;
112452
+ deletedAt: Date | null;
112802
112453
  notes: string | null;
112803
112454
  contactProfile: string | null;
112804
112455
  socialProfileUrl: string | null;
@@ -112935,6 +112586,7 @@ export declare const platformLineContract: {
112935
112586
  name: string;
112936
112587
  channel: string | null;
112937
112588
  address: string | null;
112589
+ deletedAt: Date | null;
112938
112590
  notes: string | null;
112939
112591
  contactProfile: string | null;
112940
112592
  socialProfileUrl: string | null;
@@ -133971,10 +133623,12 @@ export declare const platformTelegramContract: {
133971
133623
  notes: import("zod").ZodNullable<import("zod").ZodString>;
133972
133624
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
133973
133625
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
133626
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
133974
133627
  }, "strip", import("zod").ZodTypeAny, {
133975
133628
  name: string;
133976
133629
  channel: string | null;
133977
133630
  address: string | null;
133631
+ deletedAt: Date | null;
133978
133632
  notes: string | null;
133979
133633
  contactProfile: string | null;
133980
133634
  socialProfileUrl: string | null;
@@ -133982,6 +133636,7 @@ export declare const platformTelegramContract: {
133982
133636
  name: string;
133983
133637
  channel: string | null;
133984
133638
  address: string | null;
133639
+ deletedAt: Date | null;
133985
133640
  notes: string | null;
133986
133641
  contactProfile: string | null;
133987
133642
  socialProfileUrl: string | null;
@@ -133999,6 +133654,7 @@ export declare const platformTelegramContract: {
133999
133654
  name: string;
134000
133655
  channel: string | null;
134001
133656
  address: string | null;
133657
+ deletedAt: Date | null;
134002
133658
  notes: string | null;
134003
133659
  contactProfile: string | null;
134004
133660
  socialProfileUrl: string | null;
@@ -134018,6 +133674,7 @@ export declare const platformTelegramContract: {
134018
133674
  name: string;
134019
133675
  channel: string | null;
134020
133676
  address: string | null;
133677
+ deletedAt: Date | null;
134021
133678
  notes: string | null;
134022
133679
  contactProfile: string | null;
134023
133680
  socialProfileUrl: string | null;
@@ -134416,6 +134073,7 @@ export declare const platformTelegramContract: {
134416
134073
  name: string;
134417
134074
  channel: string | null;
134418
134075
  address: string | null;
134076
+ deletedAt: Date | null;
134419
134077
  notes: string | null;
134420
134078
  contactProfile: string | null;
134421
134079
  socialProfileUrl: string | null;
@@ -134513,6 +134171,7 @@ export declare const platformTelegramContract: {
134513
134171
  name: string;
134514
134172
  channel: string | null;
134515
134173
  address: string | null;
134174
+ deletedAt: Date | null;
134516
134175
  notes: string | null;
134517
134176
  contactProfile: string | null;
134518
134177
  socialProfileUrl: string | null;
@@ -134778,6 +134437,7 @@ export declare const platformTelegramContract: {
134778
134437
  name: string;
134779
134438
  channel: string | null;
134780
134439
  address: string | null;
134440
+ deletedAt: Date | null;
134781
134441
  notes: string | null;
134782
134442
  contactProfile: string | null;
134783
134443
  socialProfileUrl: string | null;
@@ -134914,6 +134574,7 @@ export declare const platformTelegramContract: {
134914
134574
  name: string;
134915
134575
  channel: string | null;
134916
134576
  address: string | null;
134577
+ deletedAt: Date | null;
134917
134578
  notes: string | null;
134918
134579
  contactProfile: string | null;
134919
134580
  socialProfileUrl: string | null;
@@ -153947,10 +153608,12 @@ export declare const platformMessengerContract: {
153947
153608
  notes: import("zod").ZodNullable<import("zod").ZodString>;
153948
153609
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
153949
153610
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
153611
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
153950
153612
  }, "strip", import("zod").ZodTypeAny, {
153951
153613
  name: string;
153952
153614
  channel: string | null;
153953
153615
  address: string | null;
153616
+ deletedAt: Date | null;
153954
153617
  notes: string | null;
153955
153618
  contactProfile: string | null;
153956
153619
  socialProfileUrl: string | null;
@@ -153958,6 +153621,7 @@ export declare const platformMessengerContract: {
153958
153621
  name: string;
153959
153622
  channel: string | null;
153960
153623
  address: string | null;
153624
+ deletedAt: Date | null;
153961
153625
  notes: string | null;
153962
153626
  contactProfile: string | null;
153963
153627
  socialProfileUrl: string | null;
@@ -153975,6 +153639,7 @@ export declare const platformMessengerContract: {
153975
153639
  name: string;
153976
153640
  channel: string | null;
153977
153641
  address: string | null;
153642
+ deletedAt: Date | null;
153978
153643
  notes: string | null;
153979
153644
  contactProfile: string | null;
153980
153645
  socialProfileUrl: string | null;
@@ -153994,6 +153659,7 @@ export declare const platformMessengerContract: {
153994
153659
  name: string;
153995
153660
  channel: string | null;
153996
153661
  address: string | null;
153662
+ deletedAt: Date | null;
153997
153663
  notes: string | null;
153998
153664
  contactProfile: string | null;
153999
153665
  socialProfileUrl: string | null;
@@ -154392,6 +154058,7 @@ export declare const platformMessengerContract: {
154392
154058
  name: string;
154393
154059
  channel: string | null;
154394
154060
  address: string | null;
154061
+ deletedAt: Date | null;
154395
154062
  notes: string | null;
154396
154063
  contactProfile: string | null;
154397
154064
  socialProfileUrl: string | null;
@@ -154489,6 +154156,7 @@ export declare const platformMessengerContract: {
154489
154156
  name: string;
154490
154157
  channel: string | null;
154491
154158
  address: string | null;
154159
+ deletedAt: Date | null;
154492
154160
  notes: string | null;
154493
154161
  contactProfile: string | null;
154494
154162
  socialProfileUrl: string | null;
@@ -154754,6 +154422,7 @@ export declare const platformMessengerContract: {
154754
154422
  name: string;
154755
154423
  channel: string | null;
154756
154424
  address: string | null;
154425
+ deletedAt: Date | null;
154757
154426
  notes: string | null;
154758
154427
  contactProfile: string | null;
154759
154428
  socialProfileUrl: string | null;
@@ -154890,6 +154559,7 @@ export declare const platformMessengerContract: {
154890
154559
  name: string;
154891
154560
  channel: string | null;
154892
154561
  address: string | null;
154562
+ deletedAt: Date | null;
154893
154563
  notes: string | null;
154894
154564
  contactProfile: string | null;
154895
154565
  socialProfileUrl: string | null;
@@ -176281,10 +175951,12 @@ export declare const platformInstagramContract: {
176281
175951
  notes: import("zod").ZodNullable<import("zod").ZodString>;
176282
175952
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
176283
175953
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
175954
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
176284
175955
  }, "strip", import("zod").ZodTypeAny, {
176285
175956
  name: string;
176286
175957
  channel: string | null;
176287
175958
  address: string | null;
175959
+ deletedAt: Date | null;
176288
175960
  notes: string | null;
176289
175961
  contactProfile: string | null;
176290
175962
  socialProfileUrl: string | null;
@@ -176292,6 +175964,7 @@ export declare const platformInstagramContract: {
176292
175964
  name: string;
176293
175965
  channel: string | null;
176294
175966
  address: string | null;
175967
+ deletedAt: Date | null;
176295
175968
  notes: string | null;
176296
175969
  contactProfile: string | null;
176297
175970
  socialProfileUrl: string | null;
@@ -176309,6 +175982,7 @@ export declare const platformInstagramContract: {
176309
175982
  name: string;
176310
175983
  channel: string | null;
176311
175984
  address: string | null;
175985
+ deletedAt: Date | null;
176312
175986
  notes: string | null;
176313
175987
  contactProfile: string | null;
176314
175988
  socialProfileUrl: string | null;
@@ -176328,6 +176002,7 @@ export declare const platformInstagramContract: {
176328
176002
  name: string;
176329
176003
  channel: string | null;
176330
176004
  address: string | null;
176005
+ deletedAt: Date | null;
176331
176006
  notes: string | null;
176332
176007
  contactProfile: string | null;
176333
176008
  socialProfileUrl: string | null;
@@ -176726,6 +176401,7 @@ export declare const platformInstagramContract: {
176726
176401
  name: string;
176727
176402
  channel: string | null;
176728
176403
  address: string | null;
176404
+ deletedAt: Date | null;
176729
176405
  notes: string | null;
176730
176406
  contactProfile: string | null;
176731
176407
  socialProfileUrl: string | null;
@@ -176823,6 +176499,7 @@ export declare const platformInstagramContract: {
176823
176499
  name: string;
176824
176500
  channel: string | null;
176825
176501
  address: string | null;
176502
+ deletedAt: Date | null;
176826
176503
  notes: string | null;
176827
176504
  contactProfile: string | null;
176828
176505
  socialProfileUrl: string | null;
@@ -177088,6 +176765,7 @@ export declare const platformInstagramContract: {
177088
176765
  name: string;
177089
176766
  channel: string | null;
177090
176767
  address: string | null;
176768
+ deletedAt: Date | null;
177091
176769
  notes: string | null;
177092
176770
  contactProfile: string | null;
177093
176771
  socialProfileUrl: string | null;
@@ -177224,6 +176902,7 @@ export declare const platformInstagramContract: {
177224
176902
  name: string;
177225
176903
  channel: string | null;
177226
176904
  address: string | null;
176905
+ deletedAt: Date | null;
177227
176906
  notes: string | null;
177228
176907
  contactProfile: string | null;
177229
176908
  socialProfileUrl: string | null;
@@ -202257,10 +201936,12 @@ export declare const platformSMSContract: {
202257
201936
  notes: import("zod").ZodNullable<import("zod").ZodString>;
202258
201937
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
202259
201938
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
201939
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
202260
201940
  }, "strip", import("zod").ZodTypeAny, {
202261
201941
  name: string;
202262
201942
  channel: string | null;
202263
201943
  address: string | null;
201944
+ deletedAt: Date | null;
202264
201945
  notes: string | null;
202265
201946
  contactProfile: string | null;
202266
201947
  socialProfileUrl: string | null;
@@ -202268,6 +201949,7 @@ export declare const platformSMSContract: {
202268
201949
  name: string;
202269
201950
  channel: string | null;
202270
201951
  address: string | null;
201952
+ deletedAt: Date | null;
202271
201953
  notes: string | null;
202272
201954
  contactProfile: string | null;
202273
201955
  socialProfileUrl: string | null;
@@ -202285,6 +201967,7 @@ export declare const platformSMSContract: {
202285
201967
  name: string;
202286
201968
  channel: string | null;
202287
201969
  address: string | null;
201970
+ deletedAt: Date | null;
202288
201971
  notes: string | null;
202289
201972
  contactProfile: string | null;
202290
201973
  socialProfileUrl: string | null;
@@ -202304,6 +201987,7 @@ export declare const platformSMSContract: {
202304
201987
  name: string;
202305
201988
  channel: string | null;
202306
201989
  address: string | null;
201990
+ deletedAt: Date | null;
202307
201991
  notes: string | null;
202308
201992
  contactProfile: string | null;
202309
201993
  socialProfileUrl: string | null;
@@ -202702,6 +202386,7 @@ export declare const platformSMSContract: {
202702
202386
  name: string;
202703
202387
  channel: string | null;
202704
202388
  address: string | null;
202389
+ deletedAt: Date | null;
202705
202390
  notes: string | null;
202706
202391
  contactProfile: string | null;
202707
202392
  socialProfileUrl: string | null;
@@ -202799,6 +202484,7 @@ export declare const platformSMSContract: {
202799
202484
  name: string;
202800
202485
  channel: string | null;
202801
202486
  address: string | null;
202487
+ deletedAt: Date | null;
202802
202488
  notes: string | null;
202803
202489
  contactProfile: string | null;
202804
202490
  socialProfileUrl: string | null;
@@ -203064,6 +202750,7 @@ export declare const platformSMSContract: {
203064
202750
  name: string;
203065
202751
  channel: string | null;
203066
202752
  address: string | null;
202753
+ deletedAt: Date | null;
203067
202754
  notes: string | null;
203068
202755
  contactProfile: string | null;
203069
202756
  socialProfileUrl: string | null;
@@ -203200,6 +202887,7 @@ export declare const platformSMSContract: {
203200
202887
  name: string;
203201
202888
  channel: string | null;
203202
202889
  address: string | null;
202890
+ deletedAt: Date | null;
203203
202891
  notes: string | null;
203204
202892
  contactProfile: string | null;
203205
202893
  socialProfileUrl: string | null;
@@ -203297,10 +202985,12 @@ export declare const platformWhatsappContract: {
203297
202985
  notes: import("zod").ZodNullable<import("zod").ZodString>;
203298
202986
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
203299
202987
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
202988
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
203300
202989
  }, "strip", import("zod").ZodTypeAny, {
203301
202990
  name: string;
203302
202991
  channel: string | null;
203303
202992
  address: string | null;
202993
+ deletedAt: Date | null;
203304
202994
  notes: string | null;
203305
202995
  contactProfile: string | null;
203306
202996
  socialProfileUrl: string | null;
@@ -203308,6 +202998,7 @@ export declare const platformWhatsappContract: {
203308
202998
  name: string;
203309
202999
  channel: string | null;
203310
203000
  address: string | null;
203001
+ deletedAt: Date | null;
203311
203002
  notes: string | null;
203312
203003
  contactProfile: string | null;
203313
203004
  socialProfileUrl: string | null;
@@ -203325,6 +203016,7 @@ export declare const platformWhatsappContract: {
203325
203016
  name: string;
203326
203017
  channel: string | null;
203327
203018
  address: string | null;
203019
+ deletedAt: Date | null;
203328
203020
  notes: string | null;
203329
203021
  contactProfile: string | null;
203330
203022
  socialProfileUrl: string | null;
@@ -203344,6 +203036,7 @@ export declare const platformWhatsappContract: {
203344
203036
  name: string;
203345
203037
  channel: string | null;
203346
203038
  address: string | null;
203039
+ deletedAt: Date | null;
203347
203040
  notes: string | null;
203348
203041
  contactProfile: string | null;
203349
203042
  socialProfileUrl: string | null;
@@ -203742,6 +203435,7 @@ export declare const platformWhatsappContract: {
203742
203435
  name: string;
203743
203436
  channel: string | null;
203744
203437
  address: string | null;
203438
+ deletedAt: Date | null;
203745
203439
  notes: string | null;
203746
203440
  contactProfile: string | null;
203747
203441
  socialProfileUrl: string | null;
@@ -203839,6 +203533,7 @@ export declare const platformWhatsappContract: {
203839
203533
  name: string;
203840
203534
  channel: string | null;
203841
203535
  address: string | null;
203536
+ deletedAt: Date | null;
203842
203537
  notes: string | null;
203843
203538
  contactProfile: string | null;
203844
203539
  socialProfileUrl: string | null;
@@ -204104,6 +203799,7 @@ export declare const platformWhatsappContract: {
204104
203799
  name: string;
204105
203800
  channel: string | null;
204106
203801
  address: string | null;
203802
+ deletedAt: Date | null;
204107
203803
  notes: string | null;
204108
203804
  contactProfile: string | null;
204109
203805
  socialProfileUrl: string | null;
@@ -204240,6 +203936,7 @@ export declare const platformWhatsappContract: {
204240
203936
  name: string;
204241
203937
  channel: string | null;
204242
203938
  address: string | null;
203939
+ deletedAt: Date | null;
204243
203940
  notes: string | null;
204244
203941
  contactProfile: string | null;
204245
203942
  socialProfileUrl: string | null;
@@ -230019,10 +229716,12 @@ export declare const facebookFeedContract: {
230019
229716
  notes: import("zod").ZodNullable<import("zod").ZodString>;
230020
229717
  contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
230021
229718
  socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
229719
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
230022
229720
  }, "strip", import("zod").ZodTypeAny, {
230023
229721
  name: string;
230024
229722
  channel: string | null;
230025
229723
  address: string | null;
229724
+ deletedAt: Date | null;
230026
229725
  notes: string | null;
230027
229726
  contactProfile: string | null;
230028
229727
  socialProfileUrl: string | null;
@@ -230030,6 +229729,7 @@ export declare const facebookFeedContract: {
230030
229729
  name: string;
230031
229730
  channel: string | null;
230032
229731
  address: string | null;
229732
+ deletedAt: Date | null;
230033
229733
  notes: string | null;
230034
229734
  contactProfile: string | null;
230035
229735
  socialProfileUrl: string | null;
@@ -230047,6 +229747,7 @@ export declare const facebookFeedContract: {
230047
229747
  name: string;
230048
229748
  channel: string | null;
230049
229749
  address: string | null;
229750
+ deletedAt: Date | null;
230050
229751
  notes: string | null;
230051
229752
  contactProfile: string | null;
230052
229753
  socialProfileUrl: string | null;
@@ -230066,6 +229767,7 @@ export declare const facebookFeedContract: {
230066
229767
  name: string;
230067
229768
  channel: string | null;
230068
229769
  address: string | null;
229770
+ deletedAt: Date | null;
230069
229771
  notes: string | null;
230070
229772
  contactProfile: string | null;
230071
229773
  socialProfileUrl: string | null;
@@ -230464,6 +230166,7 @@ export declare const facebookFeedContract: {
230464
230166
  name: string;
230465
230167
  channel: string | null;
230466
230168
  address: string | null;
230169
+ deletedAt: Date | null;
230467
230170
  notes: string | null;
230468
230171
  contactProfile: string | null;
230469
230172
  socialProfileUrl: string | null;
@@ -230561,6 +230264,7 @@ export declare const facebookFeedContract: {
230561
230264
  name: string;
230562
230265
  channel: string | null;
230563
230266
  address: string | null;
230267
+ deletedAt: Date | null;
230564
230268
  notes: string | null;
230565
230269
  contactProfile: string | null;
230566
230270
  socialProfileUrl: string | null;
@@ -230707,6 +230411,7 @@ export declare const facebookFeedContract: {
230707
230411
  name: string;
230708
230412
  channel: string | null;
230709
230413
  address: string | null;
230414
+ deletedAt: Date | null;
230710
230415
  notes: string | null;
230711
230416
  contactProfile: string | null;
230712
230417
  socialProfileUrl: string | null;
@@ -230847,6 +230552,7 @@ export declare const facebookFeedContract: {
230847
230552
  name: string;
230848
230553
  channel: string | null;
230849
230554
  address: string | null;
230555
+ deletedAt: Date | null;
230850
230556
  notes: string | null;
230851
230557
  contactProfile: string | null;
230852
230558
  socialProfileUrl: string | null;
@@ -309007,6 +308713,60 @@ export declare const workflowContract: {
309007
308713
  'x-code'?: string | undefined;
309008
308714
  }>;
309009
308715
  };
308716
+ tagContact: {
308717
+ body: import("zod").ZodObject<{
308718
+ contactId: import("zod").ZodString;
308719
+ tagId: import("zod").ZodString;
308720
+ }, "strip", import("zod").ZodTypeAny, {
308721
+ contactId: string;
308722
+ tagId: string;
308723
+ }, {
308724
+ contactId: string;
308725
+ tagId: string;
308726
+ }>;
308727
+ summary: "Attach Tag to Contact";
308728
+ method: "POST";
308729
+ responses: {
308730
+ 200: import("zod").ZodObject<{
308731
+ requestId: import("zod").ZodString;
308732
+ }, "strip", import("zod").ZodTypeAny, {
308733
+ requestId: string;
308734
+ }, {
308735
+ requestId: string;
308736
+ }>;
308737
+ 403: import("zod").ZodObject<{
308738
+ message: import("zod").ZodString;
308739
+ error: import("zod").ZodAny;
308740
+ }, "strip", import("zod").ZodTypeAny, {
308741
+ message: string;
308742
+ error?: any;
308743
+ }, {
308744
+ message: string;
308745
+ error?: any;
308746
+ }>;
308747
+ 404: import("zod").ZodObject<{
308748
+ message: import("zod").ZodString;
308749
+ error: import("zod").ZodAny;
308750
+ }, "strip", import("zod").ZodTypeAny, {
308751
+ message: string;
308752
+ error?: any;
308753
+ }, {
308754
+ message: string;
308755
+ error?: any;
308756
+ }>;
308757
+ };
308758
+ path: "ms/workflow/chat/contact/tag";
308759
+ headers: import("zod").ZodObject<{
308760
+ 'x-tenant': import("zod").ZodString;
308761
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
308762
+ }, "strip", import("zod").ZodTypeAny, {
308763
+ 'x-tenant': string;
308764
+ 'x-code'?: string | undefined;
308765
+ }, {
308766
+ 'x-tenant': string;
308767
+ 'x-code'?: string | undefined;
308768
+ }>;
308769
+ };
309010
308770
  };
309011
308771
  };
309012
308772
  export declare const ticketSettingContract: {
@@ -321162,12 +320922,76 @@ export declare const channelSettingContract: {
321162
320922
  updateChannelCsatPreference: {
321163
320923
  body: import("zod").ZodObject<{
321164
320924
  isCSATEnabled: import("zod").ZodBoolean;
320925
+ headline: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320926
+ image: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
320927
+ bucketName: import("zod").ZodString;
320928
+ fileName: import("zod").ZodString;
320929
+ fileSize: import("zod").ZodNumber;
320930
+ fileKey: import("zod").ZodString;
320931
+ originalUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320932
+ }, "strip", import("zod").ZodTypeAny, {
320933
+ fileName: string;
320934
+ fileKey: string;
320935
+ bucketName: string;
320936
+ fileSize: number;
320937
+ originalUrl?: string | null | undefined;
320938
+ }, {
320939
+ fileName: string;
320940
+ fileKey: string;
320941
+ bucketName: string;
320942
+ fileSize: number;
320943
+ originalUrl?: string | null | undefined;
320944
+ }>>>;
320945
+ scaleOptions: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
320946
+ value: import("zod").ZodString;
320947
+ label: import("zod").ZodString;
320948
+ color: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320949
+ style: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
320950
+ }, "strip", import("zod").ZodTypeAny, {
320951
+ value: string;
320952
+ label: string;
320953
+ color?: string | null | undefined;
320954
+ style?: string | null | undefined;
320955
+ }, {
320956
+ value: string;
320957
+ label: string;
320958
+ color?: string | null | undefined;
320959
+ style?: string | null | undefined;
320960
+ }>, "many">>>;
321165
320961
  dispositions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
321166
320962
  }, "strip", import("zod").ZodTypeAny, {
321167
320963
  isCSATEnabled: boolean;
320964
+ headline?: string | null | undefined;
320965
+ image?: {
320966
+ fileName: string;
320967
+ fileKey: string;
320968
+ bucketName: string;
320969
+ fileSize: number;
320970
+ originalUrl?: string | null | undefined;
320971
+ } | null | undefined;
320972
+ scaleOptions?: {
320973
+ value: string;
320974
+ label: string;
320975
+ color?: string | null | undefined;
320976
+ style?: string | null | undefined;
320977
+ }[] | null | undefined;
321168
320978
  dispositions?: string[] | undefined;
321169
320979
  }, {
321170
320980
  isCSATEnabled: boolean;
320981
+ headline?: string | null | undefined;
320982
+ image?: {
320983
+ fileName: string;
320984
+ fileKey: string;
320985
+ bucketName: string;
320986
+ fileSize: number;
320987
+ originalUrl?: string | null | undefined;
320988
+ } | null | undefined;
320989
+ scaleOptions?: {
320990
+ value: string;
320991
+ label: string;
320992
+ color?: string | null | undefined;
320993
+ style?: string | null | undefined;
320994
+ }[] | null | undefined;
321171
320995
  dispositions?: string[] | undefined;
321172
320996
  }>;
321173
320997
  summary: "Enable or Disable CSAT for channel";