@kl1/contracts 1.0.81 → 1.0.83

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.
@@ -13594,6 +13594,7 @@ export declare const apiContract: {
13594
13594
  startedDate: import("zod").ZodNullable<import("zod").ZodString>;
13595
13595
  handledTime: import("zod").ZodNullable<import("zod").ZodString>;
13596
13596
  firstResponseTime: import("zod").ZodNullable<import("zod").ZodString>;
13597
+ resolutionTime: import("zod").ZodNullable<import("zod").ZodString>;
13597
13598
  slaMeet: import("zod").ZodNullable<import("zod").ZodString>;
13598
13599
  evaluateForm: import("zod").ZodNullable<import("zod").ZodObject<{
13599
13600
  id: import("zod").ZodString;
@@ -19118,6 +19119,7 @@ export declare const apiContract: {
19118
19119
  } | null;
19119
19120
  customerPhone: string | null;
19120
19121
  channelType: string | null;
19122
+ resolutionTime: string | null;
19121
19123
  slaMeet: string | null;
19122
19124
  evaluateForm: {
19123
19125
  id: string;
@@ -19840,6 +19842,7 @@ export declare const apiContract: {
19840
19842
  } | null;
19841
19843
  customerPhone: string | null;
19842
19844
  channelType: string | null;
19845
+ resolutionTime: string | null;
19843
19846
  slaMeet: string | null;
19844
19847
  evaluateForm: {
19845
19848
  id: string;
@@ -20568,6 +20571,7 @@ export declare const apiContract: {
20568
20571
  } | null;
20569
20572
  customerPhone: string | null;
20570
20573
  channelType: string | null;
20574
+ resolutionTime: string | null;
20571
20575
  slaMeet: string | null;
20572
20576
  evaluateForm: {
20573
20577
  id: string;
@@ -21296,6 +21300,7 @@ export declare const apiContract: {
21296
21300
  } | null;
21297
21301
  customerPhone: string | null;
21298
21302
  channelType: string | null;
21303
+ resolutionTime: string | null;
21299
21304
  slaMeet: string | null;
21300
21305
  evaluateForm: {
21301
21306
  id: string;
@@ -81674,18 +81679,576 @@ export declare const platformContract: {
81674
81679
  line: {
81675
81680
  sendSticker: {
81676
81681
  body: import("zod").ZodObject<{
81677
- userId: import("zod").ZodString;
81678
81682
  packageId: import("zod").ZodString;
81679
81683
  stickerId: import("zod").ZodString;
81680
- accessToken: import("zod").ZodString;
81684
+ room: import("zod").ZodObject<{
81685
+ id: import("zod").ZodString;
81686
+ lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
81687
+ handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
81688
+ isLatest: import("zod").ZodBoolean;
81689
+ direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
81690
+ platformContact: import("zod").ZodObject<{
81691
+ channelId: import("zod").ZodString;
81692
+ socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
81693
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
81694
+ metadata: import("zod").ZodObject<{
81695
+ id: import("zod").ZodString;
81696
+ name: import("zod").ZodString;
81697
+ picture: import("zod").ZodOptional<import("zod").ZodString>;
81698
+ additionalCredentials: import("zod").ZodAny;
81699
+ }, "strip", import("zod").ZodTypeAny, {
81700
+ id: string;
81701
+ name: string;
81702
+ picture?: string | undefined;
81703
+ additionalCredentials?: any;
81704
+ }, {
81705
+ id: string;
81706
+ name: string;
81707
+ picture?: string | undefined;
81708
+ additionalCredentials?: any;
81709
+ }>;
81710
+ contact: import("zod").ZodObject<{
81711
+ name: import("zod").ZodString;
81712
+ address: import("zod").ZodNullable<import("zod").ZodString>;
81713
+ channel: import("zod").ZodNullable<import("zod").ZodString>;
81714
+ notes: import("zod").ZodNullable<import("zod").ZodString>;
81715
+ contactProfile: import("zod").ZodNullable<import("zod").ZodString>;
81716
+ socialProfileUrl: import("zod").ZodNullable<import("zod").ZodString>;
81717
+ }, "strip", import("zod").ZodTypeAny, {
81718
+ channel: string | null;
81719
+ address: string | null;
81720
+ name: string;
81721
+ notes: string | null;
81722
+ contactProfile: string | null;
81723
+ socialProfileUrl: string | null;
81724
+ }, {
81725
+ channel: string | null;
81726
+ address: string | null;
81727
+ name: string;
81728
+ notes: string | null;
81729
+ contactProfile: string | null;
81730
+ socialProfileUrl: string | null;
81731
+ }>;
81732
+ }, "strip", import("zod").ZodTypeAny, {
81733
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81734
+ metadata: {
81735
+ id: string;
81736
+ name: string;
81737
+ picture?: string | undefined;
81738
+ additionalCredentials?: any;
81739
+ };
81740
+ contact: {
81741
+ channel: string | null;
81742
+ address: string | null;
81743
+ name: string;
81744
+ notes: string | null;
81745
+ contactProfile: string | null;
81746
+ socialProfileUrl: string | null;
81747
+ };
81748
+ channelId: string;
81749
+ socialPlatformId: string | null;
81750
+ }, {
81751
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81752
+ metadata: {
81753
+ id: string;
81754
+ name: string;
81755
+ picture?: string | undefined;
81756
+ additionalCredentials?: any;
81757
+ };
81758
+ contact: {
81759
+ channel: string | null;
81760
+ address: string | null;
81761
+ name: string;
81762
+ notes: string | null;
81763
+ contactProfile: string | null;
81764
+ socialProfileUrl: string | null;
81765
+ };
81766
+ channelId: string;
81767
+ socialPlatformId: string | null;
81768
+ }>;
81769
+ actor: import("zod").ZodNullable<import("zod").ZodObject<{
81770
+ name: import("zod").ZodString;
81771
+ email: import("zod").ZodString;
81772
+ address: import("zod").ZodNullable<import("zod").ZodString>;
81773
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
81774
+ }, "strip", import("zod").ZodTypeAny, {
81775
+ address: string | null;
81776
+ name: string;
81777
+ email: string;
81778
+ phone: string | null;
81779
+ }, {
81780
+ address: string | null;
81781
+ name: string;
81782
+ email: string;
81783
+ phone: string | null;
81784
+ }>>;
81785
+ channel: import("zod").ZodObject<{
81786
+ name: import("zod").ZodString;
81787
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
81788
+ metadata: import("zod").ZodObject<{
81789
+ id: import("zod").ZodString;
81790
+ name: import("zod").ZodString;
81791
+ accessToken: import("zod").ZodString;
81792
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
81793
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
81794
+ }, "strip", import("zod").ZodTypeAny, {
81795
+ id: string;
81796
+ name: string;
81797
+ accessToken: string;
81798
+ channelSecret?: string | undefined;
81799
+ additionalCredentials?: any;
81800
+ }, {
81801
+ id: string;
81802
+ name: string;
81803
+ accessToken: string;
81804
+ channelSecret?: string | undefined;
81805
+ additionalCredentials?: any;
81806
+ }>;
81807
+ platformId: import("zod").ZodString;
81808
+ brandName: import("zod").ZodString;
81809
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
81810
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
81811
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
81812
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
81813
+ id: import("zod").ZodString;
81814
+ name: import("zod").ZodString;
81815
+ email: import("zod").ZodString;
81816
+ address: import("zod").ZodNullable<import("zod").ZodString>;
81817
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
81818
+ }, "strip", import("zod").ZodTypeAny, {
81819
+ id: string;
81820
+ address: string | null;
81821
+ name: string;
81822
+ email: string;
81823
+ phone: string | null;
81824
+ }, {
81825
+ id: string;
81826
+ address: string | null;
81827
+ name: string;
81828
+ email: string;
81829
+ phone: string | null;
81830
+ }>>;
81831
+ }, "strip", import("zod").ZodTypeAny, {
81832
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81833
+ name: string;
81834
+ metadata: {
81835
+ id: string;
81836
+ name: string;
81837
+ accessToken: string;
81838
+ channelSecret?: string | undefined;
81839
+ additionalCredentials?: any;
81840
+ };
81841
+ status: boolean;
81842
+ brandName: string;
81843
+ platformId: string;
81844
+ connectedUserName?: string | null | undefined;
81845
+ connectedUserId?: string | null | undefined;
81846
+ actor?: {
81847
+ id: string;
81848
+ address: string | null;
81849
+ name: string;
81850
+ email: string;
81851
+ phone: string | null;
81852
+ } | undefined;
81853
+ }, {
81854
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81855
+ name: string;
81856
+ metadata: {
81857
+ id: string;
81858
+ name: string;
81859
+ accessToken: string;
81860
+ channelSecret?: string | undefined;
81861
+ additionalCredentials?: any;
81862
+ };
81863
+ status: boolean;
81864
+ brandName: string;
81865
+ platformId: string;
81866
+ connectedUserName?: string | null | undefined;
81867
+ connectedUserId?: string | null | undefined;
81868
+ actor?: {
81869
+ id: string;
81870
+ address: string | null;
81871
+ name: string;
81872
+ email: string;
81873
+ phone: string | null;
81874
+ } | undefined;
81875
+ }>;
81876
+ }, "strip", import("zod").ZodTypeAny, {
81877
+ id: string;
81878
+ channel: {
81879
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81880
+ name: string;
81881
+ metadata: {
81882
+ id: string;
81883
+ name: string;
81884
+ accessToken: string;
81885
+ channelSecret?: string | undefined;
81886
+ additionalCredentials?: any;
81887
+ };
81888
+ status: boolean;
81889
+ brandName: string;
81890
+ platformId: string;
81891
+ connectedUserName?: string | null | undefined;
81892
+ connectedUserId?: string | null | undefined;
81893
+ actor?: {
81894
+ id: string;
81895
+ address: string | null;
81896
+ name: string;
81897
+ email: string;
81898
+ phone: string | null;
81899
+ } | undefined;
81900
+ };
81901
+ direction: "incoming" | "outgoing" | "system";
81902
+ actor: {
81903
+ address: string | null;
81904
+ name: string;
81905
+ email: string;
81906
+ phone: string | null;
81907
+ } | null;
81908
+ isLatest: boolean;
81909
+ platformContact: {
81910
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81911
+ metadata: {
81912
+ id: string;
81913
+ name: string;
81914
+ picture?: string | undefined;
81915
+ additionalCredentials?: any;
81916
+ };
81917
+ contact: {
81918
+ channel: string | null;
81919
+ address: string | null;
81920
+ name: string;
81921
+ notes: string | null;
81922
+ contactProfile: string | null;
81923
+ socialProfileUrl: string | null;
81924
+ };
81925
+ channelId: string;
81926
+ socialPlatformId: string | null;
81927
+ };
81928
+ lastMessage?: string | undefined;
81929
+ handleTime?: number | undefined;
81930
+ }, {
81931
+ id: string;
81932
+ channel: {
81933
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81934
+ name: string;
81935
+ metadata: {
81936
+ id: string;
81937
+ name: string;
81938
+ accessToken: string;
81939
+ channelSecret?: string | undefined;
81940
+ additionalCredentials?: any;
81941
+ };
81942
+ status: boolean;
81943
+ brandName: string;
81944
+ platformId: string;
81945
+ connectedUserName?: string | null | undefined;
81946
+ connectedUserId?: string | null | undefined;
81947
+ actor?: {
81948
+ id: string;
81949
+ address: string | null;
81950
+ name: string;
81951
+ email: string;
81952
+ phone: string | null;
81953
+ } | undefined;
81954
+ };
81955
+ direction: "incoming" | "outgoing" | "system";
81956
+ actor: {
81957
+ address: string | null;
81958
+ name: string;
81959
+ email: string;
81960
+ phone: string | null;
81961
+ } | null;
81962
+ isLatest: boolean;
81963
+ platformContact: {
81964
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
81965
+ metadata: {
81966
+ id: string;
81967
+ name: string;
81968
+ picture?: string | undefined;
81969
+ additionalCredentials?: any;
81970
+ };
81971
+ contact: {
81972
+ channel: string | null;
81973
+ address: string | null;
81974
+ name: string;
81975
+ notes: string | null;
81976
+ contactProfile: string | null;
81977
+ socialProfileUrl: string | null;
81978
+ };
81979
+ channelId: string;
81980
+ socialPlatformId: string | null;
81981
+ };
81982
+ lastMessage?: string | undefined;
81983
+ handleTime?: number | undefined;
81984
+ }>;
81985
+ message: import("zod").ZodObject<{
81986
+ message: import("zod").ZodOptional<import("zod").ZodString>;
81987
+ direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
81988
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
81989
+ readAt: import("zod").ZodOptional<import("zod").ZodDate>;
81990
+ metadata: import("zod").ZodOptional<import("zod").ZodAny>;
81991
+ platformId: import("zod").ZodOptional<import("zod").ZodString>;
81992
+ platformMessageId: import("zod").ZodOptional<import("zod").ZodString>;
81993
+ replyPlatformMessageId: import("zod").ZodOptional<import("zod").ZodString>;
81994
+ template: import("zod").ZodOptional<import("zod").ZodAny>;
81995
+ locale: import("zod").ZodOptional<import("zod").ZodEnum<["mm", "en", "th", ""]>>;
81996
+ url: import("zod").ZodOptional<import("zod").ZodString>;
81997
+ previewUrl: import("zod").ZodOptional<import("zod").ZodString>;
81998
+ imageSetId: import("zod").ZodOptional<import("zod").ZodString>;
81999
+ upload: import("zod").ZodOptional<import("zod").ZodObject<{
82000
+ bucketName: import("zod").ZodString;
82001
+ fileName: import("zod").ZodString;
82002
+ fileSize: import("zod").ZodNumber;
82003
+ fileKey: import("zod").ZodString;
82004
+ }, "strip", import("zod").ZodTypeAny, {
82005
+ fileName: string;
82006
+ fileKey: string;
82007
+ bucketName: string;
82008
+ fileSize: number;
82009
+ }, {
82010
+ fileName: string;
82011
+ fileKey: string;
82012
+ bucketName: string;
82013
+ fileSize: number;
82014
+ }>>;
82015
+ sender: import("zod").ZodObject<{
82016
+ name: import("zod").ZodString;
82017
+ email: import("zod").ZodString;
82018
+ address: import("zod").ZodNullable<import("zod").ZodString>;
82019
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
82020
+ }, "strip", import("zod").ZodTypeAny, {
82021
+ address: string | null;
82022
+ name: string;
82023
+ email: string;
82024
+ phone: string | null;
82025
+ }, {
82026
+ address: string | null;
82027
+ name: string;
82028
+ email: string;
82029
+ phone: string | null;
82030
+ }>;
82031
+ }, "strip", import("zod").ZodTypeAny, {
82032
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82033
+ direction: "incoming" | "outgoing" | "system";
82034
+ sender: {
82035
+ address: string | null;
82036
+ name: string;
82037
+ email: string;
82038
+ phone: string | null;
82039
+ };
82040
+ message?: string | undefined;
82041
+ readAt?: Date | undefined;
82042
+ metadata?: any;
82043
+ platformId?: string | undefined;
82044
+ platformMessageId?: string | undefined;
82045
+ replyPlatformMessageId?: string | undefined;
82046
+ template?: any;
82047
+ locale?: "" | "th" | "mm" | "en" | undefined;
82048
+ url?: string | undefined;
82049
+ previewUrl?: string | undefined;
82050
+ imageSetId?: string | undefined;
82051
+ upload?: {
82052
+ fileName: string;
82053
+ fileKey: string;
82054
+ bucketName: string;
82055
+ fileSize: number;
82056
+ } | undefined;
82057
+ }, {
82058
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82059
+ direction: "incoming" | "outgoing" | "system";
82060
+ sender: {
82061
+ address: string | null;
82062
+ name: string;
82063
+ email: string;
82064
+ phone: string | null;
82065
+ };
82066
+ message?: string | undefined;
82067
+ readAt?: Date | undefined;
82068
+ metadata?: any;
82069
+ platformId?: string | undefined;
82070
+ platformMessageId?: string | undefined;
82071
+ replyPlatformMessageId?: string | undefined;
82072
+ template?: any;
82073
+ locale?: "" | "th" | "mm" | "en" | undefined;
82074
+ url?: string | undefined;
82075
+ previewUrl?: string | undefined;
82076
+ imageSetId?: string | undefined;
82077
+ upload?: {
82078
+ fileName: string;
82079
+ fileKey: string;
82080
+ bucketName: string;
82081
+ fileSize: number;
82082
+ } | undefined;
82083
+ }>;
81681
82084
  }, "strip", import("zod").ZodTypeAny, {
81682
- userId: string;
81683
- accessToken: string;
82085
+ message: {
82086
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82087
+ direction: "incoming" | "outgoing" | "system";
82088
+ sender: {
82089
+ address: string | null;
82090
+ name: string;
82091
+ email: string;
82092
+ phone: string | null;
82093
+ };
82094
+ message?: string | undefined;
82095
+ readAt?: Date | undefined;
82096
+ metadata?: any;
82097
+ platformId?: string | undefined;
82098
+ platformMessageId?: string | undefined;
82099
+ replyPlatformMessageId?: string | undefined;
82100
+ template?: any;
82101
+ locale?: "" | "th" | "mm" | "en" | undefined;
82102
+ url?: string | undefined;
82103
+ previewUrl?: string | undefined;
82104
+ imageSetId?: string | undefined;
82105
+ upload?: {
82106
+ fileName: string;
82107
+ fileKey: string;
82108
+ bucketName: string;
82109
+ fileSize: number;
82110
+ } | undefined;
82111
+ };
82112
+ room: {
82113
+ id: string;
82114
+ channel: {
82115
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82116
+ name: string;
82117
+ metadata: {
82118
+ id: string;
82119
+ name: string;
82120
+ accessToken: string;
82121
+ channelSecret?: string | undefined;
82122
+ additionalCredentials?: any;
82123
+ };
82124
+ status: boolean;
82125
+ brandName: string;
82126
+ platformId: string;
82127
+ connectedUserName?: string | null | undefined;
82128
+ connectedUserId?: string | null | undefined;
82129
+ actor?: {
82130
+ id: string;
82131
+ address: string | null;
82132
+ name: string;
82133
+ email: string;
82134
+ phone: string | null;
82135
+ } | undefined;
82136
+ };
82137
+ direction: "incoming" | "outgoing" | "system";
82138
+ actor: {
82139
+ address: string | null;
82140
+ name: string;
82141
+ email: string;
82142
+ phone: string | null;
82143
+ } | null;
82144
+ isLatest: boolean;
82145
+ platformContact: {
82146
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82147
+ metadata: {
82148
+ id: string;
82149
+ name: string;
82150
+ picture?: string | undefined;
82151
+ additionalCredentials?: any;
82152
+ };
82153
+ contact: {
82154
+ channel: string | null;
82155
+ address: string | null;
82156
+ name: string;
82157
+ notes: string | null;
82158
+ contactProfile: string | null;
82159
+ socialProfileUrl: string | null;
82160
+ };
82161
+ channelId: string;
82162
+ socialPlatformId: string | null;
82163
+ };
82164
+ lastMessage?: string | undefined;
82165
+ handleTime?: number | undefined;
82166
+ };
81684
82167
  packageId: string;
81685
82168
  stickerId: string;
81686
82169
  }, {
81687
- userId: string;
81688
- accessToken: string;
82170
+ message: {
82171
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82172
+ direction: "incoming" | "outgoing" | "system";
82173
+ sender: {
82174
+ address: string | null;
82175
+ name: string;
82176
+ email: string;
82177
+ phone: string | null;
82178
+ };
82179
+ message?: string | undefined;
82180
+ readAt?: Date | undefined;
82181
+ metadata?: any;
82182
+ platformId?: string | undefined;
82183
+ platformMessageId?: string | undefined;
82184
+ replyPlatformMessageId?: string | undefined;
82185
+ template?: any;
82186
+ locale?: "" | "th" | "mm" | "en" | undefined;
82187
+ url?: string | undefined;
82188
+ previewUrl?: string | undefined;
82189
+ imageSetId?: string | undefined;
82190
+ upload?: {
82191
+ fileName: string;
82192
+ fileKey: string;
82193
+ bucketName: string;
82194
+ fileSize: number;
82195
+ } | undefined;
82196
+ };
82197
+ room: {
82198
+ id: string;
82199
+ channel: {
82200
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82201
+ name: string;
82202
+ metadata: {
82203
+ id: string;
82204
+ name: string;
82205
+ accessToken: string;
82206
+ channelSecret?: string | undefined;
82207
+ additionalCredentials?: any;
82208
+ };
82209
+ status: boolean;
82210
+ brandName: string;
82211
+ platformId: string;
82212
+ connectedUserName?: string | null | undefined;
82213
+ connectedUserId?: string | null | undefined;
82214
+ actor?: {
82215
+ id: string;
82216
+ address: string | null;
82217
+ name: string;
82218
+ email: string;
82219
+ phone: string | null;
82220
+ } | undefined;
82221
+ };
82222
+ direction: "incoming" | "outgoing" | "system";
82223
+ actor: {
82224
+ address: string | null;
82225
+ name: string;
82226
+ email: string;
82227
+ phone: string | null;
82228
+ } | null;
82229
+ isLatest: boolean;
82230
+ platformContact: {
82231
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
82232
+ metadata: {
82233
+ id: string;
82234
+ name: string;
82235
+ picture?: string | undefined;
82236
+ additionalCredentials?: any;
82237
+ };
82238
+ contact: {
82239
+ channel: string | null;
82240
+ address: string | null;
82241
+ name: string;
82242
+ notes: string | null;
82243
+ contactProfile: string | null;
82244
+ socialProfileUrl: string | null;
82245
+ };
82246
+ channelId: string;
82247
+ socialPlatformId: string | null;
82248
+ };
82249
+ lastMessage?: string | undefined;
82250
+ handleTime?: number | undefined;
82251
+ };
81689
82252
  packageId: string;
81690
82253
  stickerId: string;
81691
82254
  }>;
@@ -89082,6 +89645,623 @@ export declare const platformContract: {
89082
89645
  };
89083
89646
  path: "/message";
89084
89647
  };
89648
+ disconnect: {
89649
+ body: import("zod").ZodObject<{
89650
+ name: import("zod").ZodOptional<import("zod").ZodString>;
89651
+ type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
89652
+ metadata: import("zod").ZodOptional<import("zod").ZodObject<{
89653
+ id: import("zod").ZodString;
89654
+ name: import("zod").ZodString;
89655
+ accessToken: import("zod").ZodString;
89656
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
89657
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
89658
+ }, "strip", import("zod").ZodTypeAny, {
89659
+ id: string;
89660
+ name: string;
89661
+ accessToken: string;
89662
+ channelSecret?: string | undefined;
89663
+ additionalCredentials?: any;
89664
+ }, {
89665
+ id: string;
89666
+ name: string;
89667
+ accessToken: string;
89668
+ channelSecret?: string | undefined;
89669
+ additionalCredentials?: any;
89670
+ }>>;
89671
+ platformId: import("zod").ZodOptional<import("zod").ZodString>;
89672
+ brandName: import("zod").ZodOptional<import("zod").ZodString>;
89673
+ status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
89674
+ connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
89675
+ connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
89676
+ actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
89677
+ id: import("zod").ZodString;
89678
+ name: import("zod").ZodString;
89679
+ email: import("zod").ZodString;
89680
+ address: import("zod").ZodNullable<import("zod").ZodString>;
89681
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
89682
+ }, "strip", import("zod").ZodTypeAny, {
89683
+ id: string;
89684
+ address: string | null;
89685
+ name: string;
89686
+ email: string;
89687
+ phone: string | null;
89688
+ }, {
89689
+ id: string;
89690
+ address: string | null;
89691
+ name: string;
89692
+ email: string;
89693
+ phone: string | null;
89694
+ }>>>;
89695
+ }, "strip", import("zod").ZodTypeAny, {
89696
+ name?: string | undefined;
89697
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
89698
+ metadata?: {
89699
+ id: string;
89700
+ name: string;
89701
+ accessToken: string;
89702
+ channelSecret?: string | undefined;
89703
+ additionalCredentials?: any;
89704
+ } | undefined;
89705
+ platformId?: string | undefined;
89706
+ brandName?: string | undefined;
89707
+ status?: boolean | undefined;
89708
+ connectedUserName?: string | null | undefined;
89709
+ connectedUserId?: string | null | undefined;
89710
+ actor?: {
89711
+ id: string;
89712
+ address: string | null;
89713
+ name: string;
89714
+ email: string;
89715
+ phone: string | null;
89716
+ } | undefined;
89717
+ }, {
89718
+ name?: string | undefined;
89719
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
89720
+ metadata?: {
89721
+ id: string;
89722
+ name: string;
89723
+ accessToken: string;
89724
+ channelSecret?: string | undefined;
89725
+ additionalCredentials?: any;
89726
+ } | undefined;
89727
+ platformId?: string | undefined;
89728
+ brandName?: string | undefined;
89729
+ status?: boolean | undefined;
89730
+ connectedUserName?: string | null | undefined;
89731
+ connectedUserId?: string | null | undefined;
89732
+ actor?: {
89733
+ id: string;
89734
+ address: string | null;
89735
+ name: string;
89736
+ email: string;
89737
+ phone: string | null;
89738
+ } | undefined;
89739
+ }>;
89740
+ method: "POST";
89741
+ responses: {
89742
+ 200: import("zod").ZodObject<{
89743
+ requestId: import("zod").ZodString;
89744
+ data: import("zod").ZodObject<{
89745
+ name: import("zod").ZodString;
89746
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
89747
+ metadata: import("zod").ZodObject<{
89748
+ id: import("zod").ZodString;
89749
+ name: import("zod").ZodString;
89750
+ accessToken: import("zod").ZodString;
89751
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
89752
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
89753
+ }, "strip", import("zod").ZodTypeAny, {
89754
+ id: string;
89755
+ name: string;
89756
+ accessToken: string;
89757
+ channelSecret?: string | undefined;
89758
+ additionalCredentials?: any;
89759
+ }, {
89760
+ id: string;
89761
+ name: string;
89762
+ accessToken: string;
89763
+ channelSecret?: string | undefined;
89764
+ additionalCredentials?: any;
89765
+ }>;
89766
+ platformId: import("zod").ZodString;
89767
+ brandName: import("zod").ZodString;
89768
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
89769
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
89770
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
89771
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
89772
+ id: import("zod").ZodString;
89773
+ name: import("zod").ZodString;
89774
+ email: import("zod").ZodString;
89775
+ address: import("zod").ZodNullable<import("zod").ZodString>;
89776
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
89777
+ }, "strip", import("zod").ZodTypeAny, {
89778
+ id: string;
89779
+ address: string | null;
89780
+ name: string;
89781
+ email: string;
89782
+ phone: string | null;
89783
+ }, {
89784
+ id: string;
89785
+ address: string | null;
89786
+ name: string;
89787
+ email: string;
89788
+ phone: string | null;
89789
+ }>>;
89790
+ }, "strip", import("zod").ZodTypeAny, {
89791
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89792
+ name: string;
89793
+ metadata: {
89794
+ id: string;
89795
+ name: string;
89796
+ accessToken: string;
89797
+ channelSecret?: string | undefined;
89798
+ additionalCredentials?: any;
89799
+ };
89800
+ status: boolean;
89801
+ brandName: string;
89802
+ platformId: string;
89803
+ connectedUserName?: string | null | undefined;
89804
+ connectedUserId?: string | null | undefined;
89805
+ actor?: {
89806
+ id: string;
89807
+ address: string | null;
89808
+ name: string;
89809
+ email: string;
89810
+ phone: string | null;
89811
+ } | undefined;
89812
+ }, {
89813
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89814
+ name: string;
89815
+ metadata: {
89816
+ id: string;
89817
+ name: string;
89818
+ accessToken: string;
89819
+ channelSecret?: string | undefined;
89820
+ additionalCredentials?: any;
89821
+ };
89822
+ status: boolean;
89823
+ brandName: string;
89824
+ platformId: string;
89825
+ connectedUserName?: string | null | undefined;
89826
+ connectedUserId?: string | null | undefined;
89827
+ actor?: {
89828
+ id: string;
89829
+ address: string | null;
89830
+ name: string;
89831
+ email: string;
89832
+ phone: string | null;
89833
+ } | undefined;
89834
+ }>;
89835
+ }, "strip", import("zod").ZodTypeAny, {
89836
+ data: {
89837
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89838
+ name: string;
89839
+ metadata: {
89840
+ id: string;
89841
+ name: string;
89842
+ accessToken: string;
89843
+ channelSecret?: string | undefined;
89844
+ additionalCredentials?: any;
89845
+ };
89846
+ status: boolean;
89847
+ brandName: string;
89848
+ platformId: string;
89849
+ connectedUserName?: string | null | undefined;
89850
+ connectedUserId?: string | null | undefined;
89851
+ actor?: {
89852
+ id: string;
89853
+ address: string | null;
89854
+ name: string;
89855
+ email: string;
89856
+ phone: string | null;
89857
+ } | undefined;
89858
+ };
89859
+ requestId: string;
89860
+ }, {
89861
+ data: {
89862
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89863
+ name: string;
89864
+ metadata: {
89865
+ id: string;
89866
+ name: string;
89867
+ accessToken: string;
89868
+ channelSecret?: string | undefined;
89869
+ additionalCredentials?: any;
89870
+ };
89871
+ status: boolean;
89872
+ brandName: string;
89873
+ platformId: string;
89874
+ connectedUserName?: string | null | undefined;
89875
+ connectedUserId?: string | null | undefined;
89876
+ actor?: {
89877
+ id: string;
89878
+ address: string | null;
89879
+ name: string;
89880
+ email: string;
89881
+ phone: string | null;
89882
+ } | undefined;
89883
+ };
89884
+ requestId: string;
89885
+ }>;
89886
+ 500: import("zod").ZodObject<{
89887
+ message: import("zod").ZodString;
89888
+ error: import("zod").ZodAny;
89889
+ }, "strip", import("zod").ZodTypeAny, {
89890
+ message: string;
89891
+ error?: any;
89892
+ }, {
89893
+ message: string;
89894
+ error?: any;
89895
+ }>;
89896
+ 400: import("zod").ZodObject<{
89897
+ message: import("zod").ZodString;
89898
+ error: import("zod").ZodAny;
89899
+ }, "strip", import("zod").ZodTypeAny, {
89900
+ message: string;
89901
+ error?: any;
89902
+ }, {
89903
+ message: string;
89904
+ error?: any;
89905
+ }>;
89906
+ };
89907
+ path: "/disconnect";
89908
+ };
89909
+ reconnect: {
89910
+ body: null;
89911
+ method: "POST";
89912
+ pathParams: import("zod").ZodObject<{
89913
+ channelId: import("zod").ZodString;
89914
+ }, "strip", import("zod").ZodTypeAny, {
89915
+ channelId: string;
89916
+ }, {
89917
+ channelId: string;
89918
+ }>;
89919
+ responses: {
89920
+ 200: import("zod").ZodObject<{
89921
+ requestId: import("zod").ZodString;
89922
+ data: import("zod").ZodObject<{
89923
+ name: import("zod").ZodString;
89924
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
89925
+ metadata: import("zod").ZodObject<{
89926
+ id: import("zod").ZodString;
89927
+ name: import("zod").ZodString;
89928
+ accessToken: import("zod").ZodString;
89929
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
89930
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
89931
+ }, "strip", import("zod").ZodTypeAny, {
89932
+ id: string;
89933
+ name: string;
89934
+ accessToken: string;
89935
+ channelSecret?: string | undefined;
89936
+ additionalCredentials?: any;
89937
+ }, {
89938
+ id: string;
89939
+ name: string;
89940
+ accessToken: string;
89941
+ channelSecret?: string | undefined;
89942
+ additionalCredentials?: any;
89943
+ }>;
89944
+ platformId: import("zod").ZodString;
89945
+ brandName: import("zod").ZodString;
89946
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
89947
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
89948
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
89949
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
89950
+ id: import("zod").ZodString;
89951
+ name: import("zod").ZodString;
89952
+ email: import("zod").ZodString;
89953
+ address: import("zod").ZodNullable<import("zod").ZodString>;
89954
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
89955
+ }, "strip", import("zod").ZodTypeAny, {
89956
+ id: string;
89957
+ address: string | null;
89958
+ name: string;
89959
+ email: string;
89960
+ phone: string | null;
89961
+ }, {
89962
+ id: string;
89963
+ address: string | null;
89964
+ name: string;
89965
+ email: string;
89966
+ phone: string | null;
89967
+ }>>;
89968
+ }, "strip", import("zod").ZodTypeAny, {
89969
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89970
+ name: string;
89971
+ metadata: {
89972
+ id: string;
89973
+ name: string;
89974
+ accessToken: string;
89975
+ channelSecret?: string | undefined;
89976
+ additionalCredentials?: any;
89977
+ };
89978
+ status: boolean;
89979
+ brandName: string;
89980
+ platformId: string;
89981
+ connectedUserName?: string | null | undefined;
89982
+ connectedUserId?: string | null | undefined;
89983
+ actor?: {
89984
+ id: string;
89985
+ address: string | null;
89986
+ name: string;
89987
+ email: string;
89988
+ phone: string | null;
89989
+ } | undefined;
89990
+ }, {
89991
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
89992
+ name: string;
89993
+ metadata: {
89994
+ id: string;
89995
+ name: string;
89996
+ accessToken: string;
89997
+ channelSecret?: string | undefined;
89998
+ additionalCredentials?: any;
89999
+ };
90000
+ status: boolean;
90001
+ brandName: string;
90002
+ platformId: string;
90003
+ connectedUserName?: string | null | undefined;
90004
+ connectedUserId?: string | null | undefined;
90005
+ actor?: {
90006
+ id: string;
90007
+ address: string | null;
90008
+ name: string;
90009
+ email: string;
90010
+ phone: string | null;
90011
+ } | undefined;
90012
+ }>;
90013
+ }, "strip", import("zod").ZodTypeAny, {
90014
+ data: {
90015
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90016
+ name: string;
90017
+ metadata: {
90018
+ id: string;
90019
+ name: string;
90020
+ accessToken: string;
90021
+ channelSecret?: string | undefined;
90022
+ additionalCredentials?: any;
90023
+ };
90024
+ status: boolean;
90025
+ brandName: string;
90026
+ platformId: string;
90027
+ connectedUserName?: string | null | undefined;
90028
+ connectedUserId?: string | null | undefined;
90029
+ actor?: {
90030
+ id: string;
90031
+ address: string | null;
90032
+ name: string;
90033
+ email: string;
90034
+ phone: string | null;
90035
+ } | undefined;
90036
+ };
90037
+ requestId: string;
90038
+ }, {
90039
+ data: {
90040
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90041
+ name: string;
90042
+ metadata: {
90043
+ id: string;
90044
+ name: string;
90045
+ accessToken: string;
90046
+ channelSecret?: string | undefined;
90047
+ additionalCredentials?: any;
90048
+ };
90049
+ status: boolean;
90050
+ brandName: string;
90051
+ platformId: string;
90052
+ connectedUserName?: string | null | undefined;
90053
+ connectedUserId?: string | null | undefined;
90054
+ actor?: {
90055
+ id: string;
90056
+ address: string | null;
90057
+ name: string;
90058
+ email: string;
90059
+ phone: string | null;
90060
+ } | undefined;
90061
+ };
90062
+ requestId: string;
90063
+ }>;
90064
+ 500: import("zod").ZodObject<{
90065
+ message: import("zod").ZodString;
90066
+ error: import("zod").ZodAny;
90067
+ }, "strip", import("zod").ZodTypeAny, {
90068
+ message: string;
90069
+ error?: any;
90070
+ }, {
90071
+ message: string;
90072
+ error?: any;
90073
+ }>;
90074
+ 400: import("zod").ZodObject<{
90075
+ message: import("zod").ZodString;
90076
+ error: import("zod").ZodAny;
90077
+ }, "strip", import("zod").ZodTypeAny, {
90078
+ message: string;
90079
+ error?: any;
90080
+ }, {
90081
+ message: string;
90082
+ error?: any;
90083
+ }>;
90084
+ };
90085
+ path: "/reconnect/:channelId";
90086
+ };
90087
+ delete: {
90088
+ body: null;
90089
+ method: "DELETE";
90090
+ pathParams: import("zod").ZodObject<{
90091
+ channelId: import("zod").ZodString;
90092
+ }, "strip", import("zod").ZodTypeAny, {
90093
+ channelId: string;
90094
+ }, {
90095
+ channelId: string;
90096
+ }>;
90097
+ responses: {
90098
+ 200: import("zod").ZodObject<{
90099
+ requestId: import("zod").ZodString;
90100
+ data: import("zod").ZodObject<{
90101
+ name: import("zod").ZodString;
90102
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
90103
+ metadata: import("zod").ZodObject<{
90104
+ id: import("zod").ZodString;
90105
+ name: import("zod").ZodString;
90106
+ accessToken: import("zod").ZodString;
90107
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
90108
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
90109
+ }, "strip", import("zod").ZodTypeAny, {
90110
+ id: string;
90111
+ name: string;
90112
+ accessToken: string;
90113
+ channelSecret?: string | undefined;
90114
+ additionalCredentials?: any;
90115
+ }, {
90116
+ id: string;
90117
+ name: string;
90118
+ accessToken: string;
90119
+ channelSecret?: string | undefined;
90120
+ additionalCredentials?: any;
90121
+ }>;
90122
+ platformId: import("zod").ZodString;
90123
+ brandName: import("zod").ZodString;
90124
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
90125
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
90126
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
90127
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
90128
+ id: import("zod").ZodString;
90129
+ name: import("zod").ZodString;
90130
+ email: import("zod").ZodString;
90131
+ address: import("zod").ZodNullable<import("zod").ZodString>;
90132
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
90133
+ }, "strip", import("zod").ZodTypeAny, {
90134
+ id: string;
90135
+ address: string | null;
90136
+ name: string;
90137
+ email: string;
90138
+ phone: string | null;
90139
+ }, {
90140
+ id: string;
90141
+ address: string | null;
90142
+ name: string;
90143
+ email: string;
90144
+ phone: string | null;
90145
+ }>>;
90146
+ }, "strip", import("zod").ZodTypeAny, {
90147
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90148
+ name: string;
90149
+ metadata: {
90150
+ id: string;
90151
+ name: string;
90152
+ accessToken: string;
90153
+ channelSecret?: string | undefined;
90154
+ additionalCredentials?: any;
90155
+ };
90156
+ status: boolean;
90157
+ brandName: string;
90158
+ platformId: string;
90159
+ connectedUserName?: string | null | undefined;
90160
+ connectedUserId?: string | null | undefined;
90161
+ actor?: {
90162
+ id: string;
90163
+ address: string | null;
90164
+ name: string;
90165
+ email: string;
90166
+ phone: string | null;
90167
+ } | undefined;
90168
+ }, {
90169
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90170
+ name: string;
90171
+ metadata: {
90172
+ id: string;
90173
+ name: string;
90174
+ accessToken: string;
90175
+ channelSecret?: string | undefined;
90176
+ additionalCredentials?: any;
90177
+ };
90178
+ status: boolean;
90179
+ brandName: string;
90180
+ platformId: string;
90181
+ connectedUserName?: string | null | undefined;
90182
+ connectedUserId?: string | null | undefined;
90183
+ actor?: {
90184
+ id: string;
90185
+ address: string | null;
90186
+ name: string;
90187
+ email: string;
90188
+ phone: string | null;
90189
+ } | undefined;
90190
+ }>;
90191
+ }, "strip", import("zod").ZodTypeAny, {
90192
+ data: {
90193
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90194
+ name: string;
90195
+ metadata: {
90196
+ id: string;
90197
+ name: string;
90198
+ accessToken: string;
90199
+ channelSecret?: string | undefined;
90200
+ additionalCredentials?: any;
90201
+ };
90202
+ status: boolean;
90203
+ brandName: string;
90204
+ platformId: string;
90205
+ connectedUserName?: string | null | undefined;
90206
+ connectedUserId?: string | null | undefined;
90207
+ actor?: {
90208
+ id: string;
90209
+ address: string | null;
90210
+ name: string;
90211
+ email: string;
90212
+ phone: string | null;
90213
+ } | undefined;
90214
+ };
90215
+ requestId: string;
90216
+ }, {
90217
+ data: {
90218
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
90219
+ name: string;
90220
+ metadata: {
90221
+ id: string;
90222
+ name: string;
90223
+ accessToken: string;
90224
+ channelSecret?: string | undefined;
90225
+ additionalCredentials?: any;
90226
+ };
90227
+ status: boolean;
90228
+ brandName: string;
90229
+ platformId: string;
90230
+ connectedUserName?: string | null | undefined;
90231
+ connectedUserId?: string | null | undefined;
90232
+ actor?: {
90233
+ id: string;
90234
+ address: string | null;
90235
+ name: string;
90236
+ email: string;
90237
+ phone: string | null;
90238
+ } | undefined;
90239
+ };
90240
+ requestId: string;
90241
+ }>;
90242
+ 500: import("zod").ZodObject<{
90243
+ message: import("zod").ZodString;
90244
+ error: import("zod").ZodAny;
90245
+ }, "strip", import("zod").ZodTypeAny, {
90246
+ message: string;
90247
+ error?: any;
90248
+ }, {
90249
+ message: string;
90250
+ error?: any;
90251
+ }>;
90252
+ 400: import("zod").ZodObject<{
90253
+ message: import("zod").ZodString;
90254
+ error: import("zod").ZodAny;
90255
+ }, "strip", import("zod").ZodTypeAny, {
90256
+ message: string;
90257
+ error?: any;
90258
+ }, {
90259
+ message: string;
90260
+ error?: any;
90261
+ }>;
90262
+ };
90263
+ path: "/delete/:channelId";
90264
+ };
89085
90265
  };
89086
90266
  messenger: {
89087
90267
  sendMessage: {
@@ -105455,99 +106635,16 @@ export declare const platformContract: {
105455
106635
  };
105456
106636
  path: "/disconnect";
105457
106637
  };
105458
- relogin: {
105459
- body: import("zod").ZodObject<{
105460
- name: import("zod").ZodOptional<import("zod").ZodString>;
105461
- type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
105462
- metadata: import("zod").ZodOptional<import("zod").ZodObject<{
105463
- id: import("zod").ZodString;
105464
- name: import("zod").ZodString;
105465
- accessToken: import("zod").ZodString;
105466
- channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
105467
- additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
105468
- }, "strip", import("zod").ZodTypeAny, {
105469
- id: string;
105470
- name: string;
105471
- accessToken: string;
105472
- channelSecret?: string | undefined;
105473
- additionalCredentials?: any;
105474
- }, {
105475
- id: string;
105476
- name: string;
105477
- accessToken: string;
105478
- channelSecret?: string | undefined;
105479
- additionalCredentials?: any;
105480
- }>>;
105481
- platformId: import("zod").ZodOptional<import("zod").ZodString>;
105482
- brandName: import("zod").ZodOptional<import("zod").ZodString>;
105483
- status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
105484
- connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
105485
- connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
105486
- actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
105487
- id: import("zod").ZodString;
105488
- name: import("zod").ZodString;
105489
- email: import("zod").ZodString;
105490
- address: import("zod").ZodNullable<import("zod").ZodString>;
105491
- phone: import("zod").ZodNullable<import("zod").ZodString>;
105492
- }, "strip", import("zod").ZodTypeAny, {
105493
- id: string;
105494
- address: string | null;
105495
- name: string;
105496
- email: string;
105497
- phone: string | null;
105498
- }, {
105499
- id: string;
105500
- address: string | null;
105501
- name: string;
105502
- email: string;
105503
- phone: string | null;
105504
- }>>>;
106638
+ reconnect: {
106639
+ body: null;
106640
+ method: "POST";
106641
+ pathParams: import("zod").ZodObject<{
106642
+ channelId: import("zod").ZodString;
105505
106643
  }, "strip", import("zod").ZodTypeAny, {
105506
- name?: string | undefined;
105507
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
105508
- metadata?: {
105509
- id: string;
105510
- name: string;
105511
- accessToken: string;
105512
- channelSecret?: string | undefined;
105513
- additionalCredentials?: any;
105514
- } | undefined;
105515
- platformId?: string | undefined;
105516
- brandName?: string | undefined;
105517
- status?: boolean | undefined;
105518
- connectedUserName?: string | null | undefined;
105519
- connectedUserId?: string | null | undefined;
105520
- actor?: {
105521
- id: string;
105522
- address: string | null;
105523
- name: string;
105524
- email: string;
105525
- phone: string | null;
105526
- } | undefined;
106644
+ channelId: string;
105527
106645
  }, {
105528
- name?: string | undefined;
105529
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
105530
- metadata?: {
105531
- id: string;
105532
- name: string;
105533
- accessToken: string;
105534
- channelSecret?: string | undefined;
105535
- additionalCredentials?: any;
105536
- } | undefined;
105537
- platformId?: string | undefined;
105538
- brandName?: string | undefined;
105539
- status?: boolean | undefined;
105540
- connectedUserName?: string | null | undefined;
105541
- connectedUserId?: string | null | undefined;
105542
- actor?: {
105543
- id: string;
105544
- address: string | null;
105545
- name: string;
105546
- email: string;
105547
- phone: string | null;
105548
- } | undefined;
106646
+ channelId: string;
105549
106647
  }>;
105550
- method: "POST";
105551
106648
  responses: {
105552
106649
  200: import("zod").ZodObject<{
105553
106650
  requestId: import("zod").ZodString;
@@ -105714,7 +106811,7 @@ export declare const platformContract: {
105714
106811
  error?: any;
105715
106812
  }>;
105716
106813
  };
105717
- path: "/relogin";
106814
+ path: "/reconnect/:channelId";
105718
106815
  };
105719
106816
  delete: {
105720
106817
  body: null;
@@ -105894,6 +106991,267 @@ export declare const platformContract: {
105894
106991
  };
105895
106992
  path: "/delete/:channelId";
105896
106993
  };
106994
+ relogin: {
106995
+ body: import("zod").ZodObject<{
106996
+ name: import("zod").ZodOptional<import("zod").ZodString>;
106997
+ type: import("zod").ZodOptional<import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>>;
106998
+ metadata: import("zod").ZodOptional<import("zod").ZodObject<{
106999
+ id: import("zod").ZodString;
107000
+ name: import("zod").ZodString;
107001
+ accessToken: import("zod").ZodString;
107002
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
107003
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
107004
+ }, "strip", import("zod").ZodTypeAny, {
107005
+ id: string;
107006
+ name: string;
107007
+ accessToken: string;
107008
+ channelSecret?: string | undefined;
107009
+ additionalCredentials?: any;
107010
+ }, {
107011
+ id: string;
107012
+ name: string;
107013
+ accessToken: string;
107014
+ channelSecret?: string | undefined;
107015
+ additionalCredentials?: any;
107016
+ }>>;
107017
+ platformId: import("zod").ZodOptional<import("zod").ZodString>;
107018
+ brandName: import("zod").ZodOptional<import("zod").ZodString>;
107019
+ status: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>>;
107020
+ connectedUserName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
107021
+ connectedUserId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
107022
+ actor: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodObject<{
107023
+ id: import("zod").ZodString;
107024
+ name: import("zod").ZodString;
107025
+ email: import("zod").ZodString;
107026
+ address: import("zod").ZodNullable<import("zod").ZodString>;
107027
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
107028
+ }, "strip", import("zod").ZodTypeAny, {
107029
+ id: string;
107030
+ address: string | null;
107031
+ name: string;
107032
+ email: string;
107033
+ phone: string | null;
107034
+ }, {
107035
+ id: string;
107036
+ address: string | null;
107037
+ name: string;
107038
+ email: string;
107039
+ phone: string | null;
107040
+ }>>>;
107041
+ }, "strip", import("zod").ZodTypeAny, {
107042
+ name?: string | undefined;
107043
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
107044
+ metadata?: {
107045
+ id: string;
107046
+ name: string;
107047
+ accessToken: string;
107048
+ channelSecret?: string | undefined;
107049
+ additionalCredentials?: any;
107050
+ } | undefined;
107051
+ platformId?: string | undefined;
107052
+ brandName?: string | undefined;
107053
+ status?: boolean | undefined;
107054
+ connectedUserName?: string | null | undefined;
107055
+ connectedUserId?: string | null | undefined;
107056
+ actor?: {
107057
+ id: string;
107058
+ address: string | null;
107059
+ name: string;
107060
+ email: string;
107061
+ phone: string | null;
107062
+ } | undefined;
107063
+ }, {
107064
+ name?: string | undefined;
107065
+ type?: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | undefined;
107066
+ metadata?: {
107067
+ id: string;
107068
+ name: string;
107069
+ accessToken: string;
107070
+ channelSecret?: string | undefined;
107071
+ additionalCredentials?: any;
107072
+ } | undefined;
107073
+ platformId?: string | undefined;
107074
+ brandName?: string | undefined;
107075
+ status?: boolean | undefined;
107076
+ connectedUserName?: string | null | undefined;
107077
+ connectedUserId?: string | null | undefined;
107078
+ actor?: {
107079
+ id: string;
107080
+ address: string | null;
107081
+ name: string;
107082
+ email: string;
107083
+ phone: string | null;
107084
+ } | undefined;
107085
+ }>;
107086
+ method: "POST";
107087
+ responses: {
107088
+ 200: import("zod").ZodObject<{
107089
+ requestId: import("zod").ZodString;
107090
+ data: import("zod").ZodObject<{
107091
+ name: import("zod").ZodString;
107092
+ type: import("zod").ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
107093
+ metadata: import("zod").ZodObject<{
107094
+ id: import("zod").ZodString;
107095
+ name: import("zod").ZodString;
107096
+ accessToken: import("zod").ZodString;
107097
+ channelSecret: import("zod").ZodOptional<import("zod").ZodString>;
107098
+ additionalCredentials: import("zod").ZodOptional<import("zod").ZodAny>;
107099
+ }, "strip", import("zod").ZodTypeAny, {
107100
+ id: string;
107101
+ name: string;
107102
+ accessToken: string;
107103
+ channelSecret?: string | undefined;
107104
+ additionalCredentials?: any;
107105
+ }, {
107106
+ id: string;
107107
+ name: string;
107108
+ accessToken: string;
107109
+ channelSecret?: string | undefined;
107110
+ additionalCredentials?: any;
107111
+ }>;
107112
+ platformId: import("zod").ZodString;
107113
+ brandName: import("zod").ZodString;
107114
+ status: import("zod").ZodUnion<[import("zod").ZodLiteral<true>, import("zod").ZodLiteral<false>]>;
107115
+ connectedUserName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
107116
+ connectedUserId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
107117
+ actor: import("zod").ZodOptional<import("zod").ZodObject<{
107118
+ id: import("zod").ZodString;
107119
+ name: import("zod").ZodString;
107120
+ email: import("zod").ZodString;
107121
+ address: import("zod").ZodNullable<import("zod").ZodString>;
107122
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
107123
+ }, "strip", import("zod").ZodTypeAny, {
107124
+ id: string;
107125
+ address: string | null;
107126
+ name: string;
107127
+ email: string;
107128
+ phone: string | null;
107129
+ }, {
107130
+ id: string;
107131
+ address: string | null;
107132
+ name: string;
107133
+ email: string;
107134
+ phone: string | null;
107135
+ }>>;
107136
+ }, "strip", import("zod").ZodTypeAny, {
107137
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107138
+ name: string;
107139
+ metadata: {
107140
+ id: string;
107141
+ name: string;
107142
+ accessToken: string;
107143
+ channelSecret?: string | undefined;
107144
+ additionalCredentials?: any;
107145
+ };
107146
+ status: boolean;
107147
+ brandName: string;
107148
+ platformId: string;
107149
+ connectedUserName?: string | null | undefined;
107150
+ connectedUserId?: string | null | undefined;
107151
+ actor?: {
107152
+ id: string;
107153
+ address: string | null;
107154
+ name: string;
107155
+ email: string;
107156
+ phone: string | null;
107157
+ } | undefined;
107158
+ }, {
107159
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107160
+ name: string;
107161
+ metadata: {
107162
+ id: string;
107163
+ name: string;
107164
+ accessToken: string;
107165
+ channelSecret?: string | undefined;
107166
+ additionalCredentials?: any;
107167
+ };
107168
+ status: boolean;
107169
+ brandName: string;
107170
+ platformId: string;
107171
+ connectedUserName?: string | null | undefined;
107172
+ connectedUserId?: string | null | undefined;
107173
+ actor?: {
107174
+ id: string;
107175
+ address: string | null;
107176
+ name: string;
107177
+ email: string;
107178
+ phone: string | null;
107179
+ } | undefined;
107180
+ }>;
107181
+ }, "strip", import("zod").ZodTypeAny, {
107182
+ data: {
107183
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107184
+ name: string;
107185
+ metadata: {
107186
+ id: string;
107187
+ name: string;
107188
+ accessToken: string;
107189
+ channelSecret?: string | undefined;
107190
+ additionalCredentials?: any;
107191
+ };
107192
+ status: boolean;
107193
+ brandName: string;
107194
+ platformId: string;
107195
+ connectedUserName?: string | null | undefined;
107196
+ connectedUserId?: string | null | undefined;
107197
+ actor?: {
107198
+ id: string;
107199
+ address: string | null;
107200
+ name: string;
107201
+ email: string;
107202
+ phone: string | null;
107203
+ } | undefined;
107204
+ };
107205
+ requestId: string;
107206
+ }, {
107207
+ data: {
107208
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
107209
+ name: string;
107210
+ metadata: {
107211
+ id: string;
107212
+ name: string;
107213
+ accessToken: string;
107214
+ channelSecret?: string | undefined;
107215
+ additionalCredentials?: any;
107216
+ };
107217
+ status: boolean;
107218
+ brandName: string;
107219
+ platformId: string;
107220
+ connectedUserName?: string | null | undefined;
107221
+ connectedUserId?: string | null | undefined;
107222
+ actor?: {
107223
+ id: string;
107224
+ address: string | null;
107225
+ name: string;
107226
+ email: string;
107227
+ phone: string | null;
107228
+ } | undefined;
107229
+ };
107230
+ requestId: string;
107231
+ }>;
107232
+ 500: import("zod").ZodObject<{
107233
+ message: import("zod").ZodString;
107234
+ error: import("zod").ZodAny;
107235
+ }, "strip", import("zod").ZodTypeAny, {
107236
+ message: string;
107237
+ error?: any;
107238
+ }, {
107239
+ message: string;
107240
+ error?: any;
107241
+ }>;
107242
+ 400: import("zod").ZodObject<{
107243
+ message: import("zod").ZodString;
107244
+ error: import("zod").ZodAny;
107245
+ }, "strip", import("zod").ZodTypeAny, {
107246
+ message: string;
107247
+ error?: any;
107248
+ }, {
107249
+ message: string;
107250
+ error?: any;
107251
+ }>;
107252
+ };
107253
+ path: "/relogin";
107254
+ };
105897
107255
  getInstagramPages: {
105898
107256
  method: "GET";
105899
107257
  query: import("zod").ZodObject<{
@@ -129657,6 +131015,68 @@ export declare const chatContract: {
129657
131015
  'x-client-timezone'?: string | undefined;
129658
131016
  }>>>;
129659
131017
  };
131018
+ sendLineSticker: {
131019
+ body: import("zod").ZodObject<{
131020
+ roomId: import("zod").ZodString;
131021
+ packageId: import("zod").ZodString;
131022
+ stickerId: import("zod").ZodString;
131023
+ }, "strip", import("zod").ZodTypeAny, {
131024
+ roomId: string;
131025
+ packageId: string;
131026
+ stickerId: string;
131027
+ }, {
131028
+ roomId: string;
131029
+ packageId: string;
131030
+ stickerId: string;
131031
+ }>;
131032
+ method: "POST";
131033
+ responses: {
131034
+ 200: import("zod").ZodOptional<import("zod").ZodObject<{
131035
+ message: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
131036
+ }, "strip", import("zod").ZodTypeAny, {
131037
+ message?: string | null | undefined;
131038
+ }, {
131039
+ message?: string | null | undefined;
131040
+ }>>;
131041
+ 422: import("zod").ZodObject<{
131042
+ message: import("zod").ZodString;
131043
+ error: import("zod").ZodAny;
131044
+ }, "strip", import("zod").ZodTypeAny, {
131045
+ message: string;
131046
+ error?: any;
131047
+ }, {
131048
+ message: string;
131049
+ error?: any;
131050
+ }>;
131051
+ 500: import("zod").ZodObject<{
131052
+ message: import("zod").ZodString;
131053
+ error: import("zod").ZodAny;
131054
+ }, "strip", import("zod").ZodTypeAny, {
131055
+ message: string;
131056
+ error?: any;
131057
+ }, {
131058
+ message: string;
131059
+ error?: any;
131060
+ }>;
131061
+ };
131062
+ path: "chat/line/sticker";
131063
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
131064
+ 'x-tenant': import("zod").ZodString;
131065
+ authorization: import("zod").ZodString;
131066
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
131067
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
131068
+ }, "strip", import("zod").ZodTypeAny, {
131069
+ 'x-tenant': string;
131070
+ authorization: string;
131071
+ 'x-client-timezone': string;
131072
+ 'x-code'?: string | undefined;
131073
+ }, {
131074
+ 'x-tenant': string;
131075
+ authorization: string;
131076
+ 'x-code'?: string | undefined;
131077
+ 'x-client-timezone'?: string | undefined;
131078
+ }>>>;
131079
+ };
129660
131080
  getRoomsByPlatformContactId: {
129661
131081
  method: "GET";
129662
131082
  pathParams: import("zod").ZodObject<{
@@ -166221,43 +167641,50 @@ export declare const notificationContract: {
166221
167641
  pageSize?: number | undefined;
166222
167642
  }>;
166223
167643
  responses: {
166224
- 201: import("zod").ZodObject<{
167644
+ 200: import("zod").ZodObject<{
166225
167645
  requestId: import("zod").ZodString;
166226
167646
  data: import("zod").ZodObject<{
166227
167647
  notificationCount: import("zod").ZodNumber;
166228
- notifications: import("zod").ZodObject<{
166229
- data: import("zod").ZodArray<import("zod").ZodObject<{
167648
+ notifications: import("zod").ZodArray<import("zod").ZodObject<{
167649
+ id: import("zod").ZodString;
167650
+ createdAt: import("zod").ZodDate;
167651
+ updatedAt: import("zod").ZodDate;
167652
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
167653
+ notificationObjectId: import("zod").ZodString;
167654
+ notifierId: import("zod").ZodString;
167655
+ notificationObject: import("zod").ZodObject<{
166230
167656
  id: import("zod").ZodString;
166231
167657
  createdAt: import("zod").ZodDate;
166232
167658
  updatedAt: import("zod").ZodDate;
166233
167659
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166234
- notificationObjectId: import("zod").ZodString;
166235
- notifierId: import("zod").ZodString;
166236
- notificationObject: import("zod").ZodObject<{
167660
+ data: import("zod").ZodString;
167661
+ notificationChange: import("zod").ZodObject<{
166237
167662
  id: import("zod").ZodString;
166238
167663
  createdAt: import("zod").ZodDate;
166239
167664
  updatedAt: import("zod").ZodDate;
166240
167665
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166241
- data: import("zod").ZodString;
166242
- notificationChange: import("zod").ZodObject<{
167666
+ actorId: import("zod").ZodString;
167667
+ actor: import("zod").ZodObject<{
166243
167668
  id: import("zod").ZodString;
166244
167669
  createdAt: import("zod").ZodDate;
166245
167670
  updatedAt: import("zod").ZodDate;
166246
167671
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166247
- actorId: import("zod").ZodString;
166248
- actor: import("zod").ZodObject<{
167672
+ name: import("zod").ZodString;
167673
+ email: import("zod").ZodString;
167674
+ emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
167675
+ password: import("zod").ZodString;
167676
+ address: import("zod").ZodNullable<import("zod").ZodString>;
167677
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
167678
+ notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
167679
+ roles: import("zod").ZodArray<import("zod").ZodObject<{
166249
167680
  id: import("zod").ZodString;
166250
167681
  createdAt: import("zod").ZodDate;
166251
167682
  updatedAt: import("zod").ZodDate;
166252
167683
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166253
- name: import("zod").ZodString;
166254
- email: import("zod").ZodString;
166255
- emailVerifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166256
- password: import("zod").ZodString;
166257
- address: import("zod").ZodNullable<import("zod").ZodString>;
166258
- phone: import("zod").ZodNullable<import("zod").ZodString>;
166259
- notificationCount: import("zod").ZodNullable<import("zod").ZodNumber>;
166260
- roles: import("zod").ZodArray<import("zod").ZodObject<{
167684
+ systemName: import("zod").ZodString;
167685
+ displayName: import("zod").ZodString;
167686
+ description: import("zod").ZodNullable<import("zod").ZodString>;
167687
+ permissions: import("zod").ZodArray<import("zod").ZodObject<{
166261
167688
  id: import("zod").ZodString;
166262
167689
  createdAt: import("zod").ZodDate;
166263
167690
  updatedAt: import("zod").ZodDate;
@@ -166265,31 +167692,6 @@ export declare const notificationContract: {
166265
167692
  systemName: import("zod").ZodString;
166266
167693
  displayName: import("zod").ZodString;
166267
167694
  description: import("zod").ZodNullable<import("zod").ZodString>;
166268
- permissions: import("zod").ZodArray<import("zod").ZodObject<{
166269
- id: import("zod").ZodString;
166270
- createdAt: import("zod").ZodDate;
166271
- updatedAt: import("zod").ZodDate;
166272
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166273
- systemName: import("zod").ZodString;
166274
- displayName: import("zod").ZodString;
166275
- description: import("zod").ZodNullable<import("zod").ZodString>;
166276
- }, "strip", import("zod").ZodTypeAny, {
166277
- id: string;
166278
- description: string | null;
166279
- createdAt: Date;
166280
- updatedAt: Date;
166281
- deletedAt: Date | null;
166282
- systemName: string;
166283
- displayName: string;
166284
- }, {
166285
- id: string;
166286
- description: string | null;
166287
- createdAt: Date;
166288
- updatedAt: Date;
166289
- deletedAt: Date | null;
166290
- systemName: string;
166291
- displayName: string;
166292
- }>, "many">;
166293
167695
  }, "strip", import("zod").ZodTypeAny, {
166294
167696
  id: string;
166295
167697
  description: string | null;
@@ -166298,15 +167700,6 @@ export declare const notificationContract: {
166298
167700
  deletedAt: Date | null;
166299
167701
  systemName: string;
166300
167702
  displayName: string;
166301
- permissions: {
166302
- id: string;
166303
- description: string | null;
166304
- createdAt: Date;
166305
- updatedAt: Date;
166306
- deletedAt: Date | null;
166307
- systemName: string;
166308
- displayName: string;
166309
- }[];
166310
167703
  }, {
166311
167704
  id: string;
166312
167705
  description: string | null;
@@ -166315,66 +167708,16 @@ export declare const notificationContract: {
166315
167708
  deletedAt: Date | null;
166316
167709
  systemName: string;
166317
167710
  displayName: string;
166318
- permissions: {
166319
- id: string;
166320
- description: string | null;
166321
- createdAt: Date;
166322
- updatedAt: Date;
166323
- deletedAt: Date | null;
166324
- systemName: string;
166325
- displayName: string;
166326
- }[];
166327
167711
  }>, "many">;
166328
- extension: import("zod").ZodObject<{
166329
- id: import("zod").ZodString;
166330
- createdAt: import("zod").ZodDate;
166331
- updatedAt: import("zod").ZodDate;
166332
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
166333
- userId: import("zod").ZodNullable<import("zod").ZodString>;
166334
- sipServerUrl: import("zod").ZodString;
166335
- sipUserName: import("zod").ZodString;
166336
- webphoneLoginUser: import("zod").ZodString;
166337
- extensionId: import("zod").ZodNullable<import("zod").ZodString>;
166338
- extensionName: import("zod").ZodString;
166339
- telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
166340
- }, "strip", import("zod").ZodTypeAny, {
166341
- id: string;
166342
- createdAt: Date;
166343
- updatedAt: Date;
166344
- deletedAt: Date | null;
166345
- userId: string | null;
166346
- sipServerUrl: string;
166347
- sipUserName: string;
166348
- webphoneLoginUser: string;
166349
- extensionId: string | null;
166350
- extensionName: string;
166351
- telephonySignature: string | null;
166352
- }, {
166353
- id: string;
166354
- createdAt: Date;
166355
- updatedAt: Date;
166356
- deletedAt: Date | null;
166357
- userId: string | null;
166358
- sipServerUrl: string;
166359
- sipUserName: string;
166360
- webphoneLoginUser: string;
166361
- extensionId: string | null;
166362
- extensionName: string;
166363
- telephonySignature: string | null;
166364
- }>;
166365
167712
  }, "strip", import("zod").ZodTypeAny, {
166366
167713
  id: string;
166367
- address: string | null;
166368
- name: string;
166369
- email: string;
167714
+ description: string | null;
166370
167715
  createdAt: Date;
166371
167716
  updatedAt: Date;
166372
167717
  deletedAt: Date | null;
166373
- emailVerifiedAt: Date | null;
166374
- password: string;
166375
- phone: string | null;
166376
- notificationCount: number | null;
166377
- roles: {
167718
+ systemName: string;
167719
+ displayName: string;
167720
+ permissions: {
166378
167721
  id: string;
166379
167722
  description: string | null;
166380
167723
  createdAt: Date;
@@ -166382,42 +167725,16 @@ export declare const notificationContract: {
166382
167725
  deletedAt: Date | null;
166383
167726
  systemName: string;
166384
167727
  displayName: string;
166385
- permissions: {
166386
- id: string;
166387
- description: string | null;
166388
- createdAt: Date;
166389
- updatedAt: Date;
166390
- deletedAt: Date | null;
166391
- systemName: string;
166392
- displayName: string;
166393
- }[];
166394
167728
  }[];
166395
- extension: {
166396
- id: string;
166397
- createdAt: Date;
166398
- updatedAt: Date;
166399
- deletedAt: Date | null;
166400
- userId: string | null;
166401
- sipServerUrl: string;
166402
- sipUserName: string;
166403
- webphoneLoginUser: string;
166404
- extensionId: string | null;
166405
- extensionName: string;
166406
- telephonySignature: string | null;
166407
- };
166408
167729
  }, {
166409
167730
  id: string;
166410
- address: string | null;
166411
- name: string;
166412
- email: string;
167731
+ description: string | null;
166413
167732
  createdAt: Date;
166414
167733
  updatedAt: Date;
166415
167734
  deletedAt: Date | null;
166416
- emailVerifiedAt: Date | null;
166417
- password: string;
166418
- phone: string | null;
166419
- notificationCount: number | null;
166420
- roles: {
167735
+ systemName: string;
167736
+ displayName: string;
167737
+ permissions: {
166421
167738
  id: string;
166422
167739
  description: string | null;
166423
167740
  createdAt: Date;
@@ -166425,50 +167742,66 @@ export declare const notificationContract: {
166425
167742
  deletedAt: Date | null;
166426
167743
  systemName: string;
166427
167744
  displayName: string;
166428
- permissions: {
166429
- id: string;
166430
- description: string | null;
166431
- createdAt: Date;
166432
- updatedAt: Date;
166433
- deletedAt: Date | null;
166434
- systemName: string;
166435
- displayName: string;
166436
- }[];
166437
167745
  }[];
166438
- extension: {
166439
- id: string;
166440
- createdAt: Date;
166441
- updatedAt: Date;
166442
- deletedAt: Date | null;
166443
- userId: string | null;
166444
- sipServerUrl: string;
166445
- sipUserName: string;
166446
- webphoneLoginUser: string;
166447
- extensionId: string | null;
166448
- extensionName: string;
166449
- telephonySignature: string | null;
166450
- };
167746
+ }>, "many">;
167747
+ extension: import("zod").ZodObject<{
167748
+ id: import("zod").ZodString;
167749
+ createdAt: import("zod").ZodDate;
167750
+ updatedAt: import("zod").ZodDate;
167751
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
167752
+ userId: import("zod").ZodNullable<import("zod").ZodString>;
167753
+ sipServerUrl: import("zod").ZodString;
167754
+ sipUserName: import("zod").ZodString;
167755
+ webphoneLoginUser: import("zod").ZodString;
167756
+ extensionId: import("zod").ZodNullable<import("zod").ZodString>;
167757
+ extensionName: import("zod").ZodString;
167758
+ telephonySignature: import("zod").ZodNullable<import("zod").ZodString>;
167759
+ }, "strip", import("zod").ZodTypeAny, {
167760
+ id: string;
167761
+ createdAt: Date;
167762
+ updatedAt: Date;
167763
+ deletedAt: Date | null;
167764
+ userId: string | null;
167765
+ sipServerUrl: string;
167766
+ sipUserName: string;
167767
+ webphoneLoginUser: string;
167768
+ extensionId: string | null;
167769
+ extensionName: string;
167770
+ telephonySignature: string | null;
167771
+ }, {
167772
+ id: string;
167773
+ createdAt: Date;
167774
+ updatedAt: Date;
167775
+ deletedAt: Date | null;
167776
+ userId: string | null;
167777
+ sipServerUrl: string;
167778
+ sipUserName: string;
167779
+ webphoneLoginUser: string;
167780
+ extensionId: string | null;
167781
+ extensionName: string;
167782
+ telephonySignature: string | null;
166451
167783
  }>;
166452
- notificationObjectId: import("zod").ZodString;
166453
- readAt: import("zod").ZodDate;
166454
167784
  }, "strip", import("zod").ZodTypeAny, {
166455
167785
  id: string;
167786
+ address: string | null;
167787
+ name: string;
167788
+ email: string;
166456
167789
  createdAt: Date;
166457
167790
  updatedAt: Date;
166458
167791
  deletedAt: Date | null;
166459
- actor: {
167792
+ emailVerifiedAt: Date | null;
167793
+ password: string;
167794
+ phone: string | null;
167795
+ notificationCount: number | null;
167796
+ roles: {
166460
167797
  id: string;
166461
- address: string | null;
166462
- name: string;
166463
- email: string;
167798
+ description: string | null;
166464
167799
  createdAt: Date;
166465
167800
  updatedAt: Date;
166466
167801
  deletedAt: Date | null;
166467
- emailVerifiedAt: Date | null;
166468
- password: string;
166469
- phone: string | null;
166470
- notificationCount: number | null;
166471
- roles: {
167802
+ systemName: string;
167803
+ displayName: string;
167804
+ permissions: {
166472
167805
  id: string;
166473
167806
  description: string | null;
166474
167807
  createdAt: Date;
@@ -166476,51 +167809,42 @@ export declare const notificationContract: {
166476
167809
  deletedAt: Date | null;
166477
167810
  systemName: string;
166478
167811
  displayName: string;
166479
- permissions: {
166480
- id: string;
166481
- description: string | null;
166482
- createdAt: Date;
166483
- updatedAt: Date;
166484
- deletedAt: Date | null;
166485
- systemName: string;
166486
- displayName: string;
166487
- }[];
166488
167812
  }[];
166489
- extension: {
166490
- id: string;
166491
- createdAt: Date;
166492
- updatedAt: Date;
166493
- deletedAt: Date | null;
166494
- userId: string | null;
166495
- sipServerUrl: string;
166496
- sipUserName: string;
166497
- webphoneLoginUser: string;
166498
- extensionId: string | null;
166499
- extensionName: string;
166500
- telephonySignature: string | null;
166501
- };
167813
+ }[];
167814
+ extension: {
167815
+ id: string;
167816
+ createdAt: Date;
167817
+ updatedAt: Date;
167818
+ deletedAt: Date | null;
167819
+ userId: string | null;
167820
+ sipServerUrl: string;
167821
+ sipUserName: string;
167822
+ webphoneLoginUser: string;
167823
+ extensionId: string | null;
167824
+ extensionName: string;
167825
+ telephonySignature: string | null;
166502
167826
  };
166503
- readAt: Date;
166504
- actorId: string;
166505
- notificationObjectId: string;
166506
167827
  }, {
166507
167828
  id: string;
167829
+ address: string | null;
167830
+ name: string;
167831
+ email: string;
166508
167832
  createdAt: Date;
166509
167833
  updatedAt: Date;
166510
167834
  deletedAt: Date | null;
166511
- actor: {
167835
+ emailVerifiedAt: Date | null;
167836
+ password: string;
167837
+ phone: string | null;
167838
+ notificationCount: number | null;
167839
+ roles: {
166512
167840
  id: string;
166513
- address: string | null;
166514
- name: string;
166515
- email: string;
167841
+ description: string | null;
166516
167842
  createdAt: Date;
166517
167843
  updatedAt: Date;
166518
167844
  deletedAt: Date | null;
166519
- emailVerifiedAt: Date | null;
166520
- password: string;
166521
- phone: string | null;
166522
- notificationCount: number | null;
166523
- roles: {
167845
+ systemName: string;
167846
+ displayName: string;
167847
+ permissions: {
166524
167848
  id: string;
166525
167849
  description: string | null;
166526
167850
  createdAt: Date;
@@ -166528,58 +167852,50 @@ export declare const notificationContract: {
166528
167852
  deletedAt: Date | null;
166529
167853
  systemName: string;
166530
167854
  displayName: string;
166531
- permissions: {
166532
- id: string;
166533
- description: string | null;
166534
- createdAt: Date;
166535
- updatedAt: Date;
166536
- deletedAt: Date | null;
166537
- systemName: string;
166538
- displayName: string;
166539
- }[];
166540
167855
  }[];
166541
- extension: {
166542
- id: string;
166543
- createdAt: Date;
166544
- updatedAt: Date;
166545
- deletedAt: Date | null;
166546
- userId: string | null;
166547
- sipServerUrl: string;
166548
- sipUserName: string;
166549
- webphoneLoginUser: string;
166550
- extensionId: string | null;
166551
- extensionName: string;
166552
- telephonySignature: string | null;
166553
- };
167856
+ }[];
167857
+ extension: {
167858
+ id: string;
167859
+ createdAt: Date;
167860
+ updatedAt: Date;
167861
+ deletedAt: Date | null;
167862
+ userId: string | null;
167863
+ sipServerUrl: string;
167864
+ sipUserName: string;
167865
+ webphoneLoginUser: string;
167866
+ extensionId: string | null;
167867
+ extensionName: string;
167868
+ telephonySignature: string | null;
166554
167869
  };
166555
- readAt: Date;
166556
- actorId: string;
166557
- notificationObjectId: string;
166558
167870
  }>;
167871
+ notificationObjectId: import("zod").ZodString;
167872
+ readAt: import("zod").ZodDate;
166559
167873
  }, "strip", import("zod").ZodTypeAny, {
166560
- data: string;
166561
167874
  id: string;
166562
167875
  createdAt: Date;
166563
167876
  updatedAt: Date;
166564
167877
  deletedAt: Date | null;
166565
- notificationChange: {
167878
+ actor: {
166566
167879
  id: string;
167880
+ address: string | null;
167881
+ name: string;
167882
+ email: string;
166567
167883
  createdAt: Date;
166568
167884
  updatedAt: Date;
166569
167885
  deletedAt: Date | null;
166570
- actor: {
167886
+ emailVerifiedAt: Date | null;
167887
+ password: string;
167888
+ phone: string | null;
167889
+ notificationCount: number | null;
167890
+ roles: {
166571
167891
  id: string;
166572
- address: string | null;
166573
- name: string;
166574
- email: string;
167892
+ description: string | null;
166575
167893
  createdAt: Date;
166576
167894
  updatedAt: Date;
166577
167895
  deletedAt: Date | null;
166578
- emailVerifiedAt: Date | null;
166579
- password: string;
166580
- phone: string | null;
166581
- notificationCount: number | null;
166582
- roles: {
167896
+ systemName: string;
167897
+ displayName: string;
167898
+ permissions: {
166583
167899
  id: string;
166584
167900
  description: string | null;
166585
167901
  createdAt: Date;
@@ -166587,58 +167903,51 @@ export declare const notificationContract: {
166587
167903
  deletedAt: Date | null;
166588
167904
  systemName: string;
166589
167905
  displayName: string;
166590
- permissions: {
166591
- id: string;
166592
- description: string | null;
166593
- createdAt: Date;
166594
- updatedAt: Date;
166595
- deletedAt: Date | null;
166596
- systemName: string;
166597
- displayName: string;
166598
- }[];
166599
167906
  }[];
166600
- extension: {
166601
- id: string;
166602
- createdAt: Date;
166603
- updatedAt: Date;
166604
- deletedAt: Date | null;
166605
- userId: string | null;
166606
- sipServerUrl: string;
166607
- sipUserName: string;
166608
- webphoneLoginUser: string;
166609
- extensionId: string | null;
166610
- extensionName: string;
166611
- telephonySignature: string | null;
166612
- };
167907
+ }[];
167908
+ extension: {
167909
+ id: string;
167910
+ createdAt: Date;
167911
+ updatedAt: Date;
167912
+ deletedAt: Date | null;
167913
+ userId: string | null;
167914
+ sipServerUrl: string;
167915
+ sipUserName: string;
167916
+ webphoneLoginUser: string;
167917
+ extensionId: string | null;
167918
+ extensionName: string;
167919
+ telephonySignature: string | null;
166613
167920
  };
166614
- readAt: Date;
166615
- actorId: string;
166616
- notificationObjectId: string;
166617
167921
  };
167922
+ readAt: Date;
167923
+ actorId: string;
167924
+ notificationObjectId: string;
166618
167925
  }, {
166619
- data: string;
166620
167926
  id: string;
166621
167927
  createdAt: Date;
166622
167928
  updatedAt: Date;
166623
167929
  deletedAt: Date | null;
166624
- notificationChange: {
167930
+ actor: {
166625
167931
  id: string;
167932
+ address: string | null;
167933
+ name: string;
167934
+ email: string;
166626
167935
  createdAt: Date;
166627
167936
  updatedAt: Date;
166628
167937
  deletedAt: Date | null;
166629
- actor: {
167938
+ emailVerifiedAt: Date | null;
167939
+ password: string;
167940
+ phone: string | null;
167941
+ notificationCount: number | null;
167942
+ roles: {
166630
167943
  id: string;
166631
- address: string | null;
166632
- name: string;
166633
- email: string;
167944
+ description: string | null;
166634
167945
  createdAt: Date;
166635
167946
  updatedAt: Date;
166636
167947
  deletedAt: Date | null;
166637
- emailVerifiedAt: Date | null;
166638
- password: string;
166639
- phone: string | null;
166640
- notificationCount: number | null;
166641
- roles: {
167948
+ systemName: string;
167949
+ displayName: string;
167950
+ permissions: {
166642
167951
  id: string;
166643
167952
  description: string | null;
166644
167953
  createdAt: Date;
@@ -166646,68 +167955,58 @@ export declare const notificationContract: {
166646
167955
  deletedAt: Date | null;
166647
167956
  systemName: string;
166648
167957
  displayName: string;
166649
- permissions: {
166650
- id: string;
166651
- description: string | null;
166652
- createdAt: Date;
166653
- updatedAt: Date;
166654
- deletedAt: Date | null;
166655
- systemName: string;
166656
- displayName: string;
166657
- }[];
166658
167958
  }[];
166659
- extension: {
166660
- id: string;
166661
- createdAt: Date;
166662
- updatedAt: Date;
166663
- deletedAt: Date | null;
166664
- userId: string | null;
166665
- sipServerUrl: string;
166666
- sipUserName: string;
166667
- webphoneLoginUser: string;
166668
- extensionId: string | null;
166669
- extensionName: string;
166670
- telephonySignature: string | null;
166671
- };
167959
+ }[];
167960
+ extension: {
167961
+ id: string;
167962
+ createdAt: Date;
167963
+ updatedAt: Date;
167964
+ deletedAt: Date | null;
167965
+ userId: string | null;
167966
+ sipServerUrl: string;
167967
+ sipUserName: string;
167968
+ webphoneLoginUser: string;
167969
+ extensionId: string | null;
167970
+ extensionName: string;
167971
+ telephonySignature: string | null;
166672
167972
  };
166673
- readAt: Date;
166674
- actorId: string;
166675
- notificationObjectId: string;
166676
167973
  };
167974
+ readAt: Date;
167975
+ actorId: string;
167976
+ notificationObjectId: string;
166677
167977
  }>;
166678
- readAt: import("zod").ZodDate;
166679
167978
  }, "strip", import("zod").ZodTypeAny, {
167979
+ data: string;
166680
167980
  id: string;
166681
167981
  createdAt: Date;
166682
167982
  updatedAt: Date;
166683
167983
  deletedAt: Date | null;
166684
- readAt: Date;
166685
- notificationObjectId: string;
166686
- notifierId: string;
166687
- notificationObject: {
166688
- data: string;
167984
+ notificationChange: {
166689
167985
  id: string;
166690
167986
  createdAt: Date;
166691
167987
  updatedAt: Date;
166692
167988
  deletedAt: Date | null;
166693
- notificationChange: {
167989
+ actor: {
166694
167990
  id: string;
167991
+ address: string | null;
167992
+ name: string;
167993
+ email: string;
166695
167994
  createdAt: Date;
166696
167995
  updatedAt: Date;
166697
167996
  deletedAt: Date | null;
166698
- actor: {
167997
+ emailVerifiedAt: Date | null;
167998
+ password: string;
167999
+ phone: string | null;
168000
+ notificationCount: number | null;
168001
+ roles: {
166699
168002
  id: string;
166700
- address: string | null;
166701
- name: string;
166702
- email: string;
168003
+ description: string | null;
166703
168004
  createdAt: Date;
166704
168005
  updatedAt: Date;
166705
168006
  deletedAt: Date | null;
166706
- emailVerifiedAt: Date | null;
166707
- password: string;
166708
- phone: string | null;
166709
- notificationCount: number | null;
166710
- roles: {
168007
+ systemName: string;
168008
+ displayName: string;
168009
+ permissions: {
166711
168010
  id: string;
166712
168011
  description: string | null;
166713
168012
  createdAt: Date;
@@ -166715,67 +168014,58 @@ export declare const notificationContract: {
166715
168014
  deletedAt: Date | null;
166716
168015
  systemName: string;
166717
168016
  displayName: string;
166718
- permissions: {
166719
- id: string;
166720
- description: string | null;
166721
- createdAt: Date;
166722
- updatedAt: Date;
166723
- deletedAt: Date | null;
166724
- systemName: string;
166725
- displayName: string;
166726
- }[];
166727
168017
  }[];
166728
- extension: {
166729
- id: string;
166730
- createdAt: Date;
166731
- updatedAt: Date;
166732
- deletedAt: Date | null;
166733
- userId: string | null;
166734
- sipServerUrl: string;
166735
- sipUserName: string;
166736
- webphoneLoginUser: string;
166737
- extensionId: string | null;
166738
- extensionName: string;
166739
- telephonySignature: string | null;
166740
- };
168018
+ }[];
168019
+ extension: {
168020
+ id: string;
168021
+ createdAt: Date;
168022
+ updatedAt: Date;
168023
+ deletedAt: Date | null;
168024
+ userId: string | null;
168025
+ sipServerUrl: string;
168026
+ sipUserName: string;
168027
+ webphoneLoginUser: string;
168028
+ extensionId: string | null;
168029
+ extensionName: string;
168030
+ telephonySignature: string | null;
166741
168031
  };
166742
- readAt: Date;
166743
- actorId: string;
166744
- notificationObjectId: string;
166745
168032
  };
168033
+ readAt: Date;
168034
+ actorId: string;
168035
+ notificationObjectId: string;
166746
168036
  };
166747
168037
  }, {
168038
+ data: string;
166748
168039
  id: string;
166749
168040
  createdAt: Date;
166750
168041
  updatedAt: Date;
166751
168042
  deletedAt: Date | null;
166752
- readAt: Date;
166753
- notificationObjectId: string;
166754
- notifierId: string;
166755
- notificationObject: {
166756
- data: string;
168043
+ notificationChange: {
166757
168044
  id: string;
166758
168045
  createdAt: Date;
166759
168046
  updatedAt: Date;
166760
168047
  deletedAt: Date | null;
166761
- notificationChange: {
168048
+ actor: {
166762
168049
  id: string;
168050
+ address: string | null;
168051
+ name: string;
168052
+ email: string;
166763
168053
  createdAt: Date;
166764
168054
  updatedAt: Date;
166765
168055
  deletedAt: Date | null;
166766
- actor: {
168056
+ emailVerifiedAt: Date | null;
168057
+ password: string;
168058
+ phone: string | null;
168059
+ notificationCount: number | null;
168060
+ roles: {
166767
168061
  id: string;
166768
- address: string | null;
166769
- name: string;
166770
- email: string;
168062
+ description: string | null;
166771
168063
  createdAt: Date;
166772
168064
  updatedAt: Date;
166773
168065
  deletedAt: Date | null;
166774
- emailVerifiedAt: Date | null;
166775
- password: string;
166776
- phone: string | null;
166777
- notificationCount: number | null;
166778
- roles: {
168066
+ systemName: string;
168067
+ displayName: string;
168068
+ permissions: {
166779
168069
  id: string;
166780
168070
  description: string | null;
166781
168071
  createdAt: Date;
@@ -166783,85 +168073,68 @@ export declare const notificationContract: {
166783
168073
  deletedAt: Date | null;
166784
168074
  systemName: string;
166785
168075
  displayName: string;
166786
- permissions: {
166787
- id: string;
166788
- description: string | null;
166789
- createdAt: Date;
166790
- updatedAt: Date;
166791
- deletedAt: Date | null;
166792
- systemName: string;
166793
- displayName: string;
166794
- }[];
166795
168076
  }[];
166796
- extension: {
166797
- id: string;
166798
- createdAt: Date;
166799
- updatedAt: Date;
166800
- deletedAt: Date | null;
166801
- userId: string | null;
166802
- sipServerUrl: string;
166803
- sipUserName: string;
166804
- webphoneLoginUser: string;
166805
- extensionId: string | null;
166806
- extensionName: string;
166807
- telephonySignature: string | null;
166808
- };
168077
+ }[];
168078
+ extension: {
168079
+ id: string;
168080
+ createdAt: Date;
168081
+ updatedAt: Date;
168082
+ deletedAt: Date | null;
168083
+ userId: string | null;
168084
+ sipServerUrl: string;
168085
+ sipUserName: string;
168086
+ webphoneLoginUser: string;
168087
+ extensionId: string | null;
168088
+ extensionName: string;
168089
+ telephonySignature: string | null;
166809
168090
  };
166810
- readAt: Date;
166811
- actorId: string;
166812
- notificationObjectId: string;
166813
168091
  };
168092
+ readAt: Date;
168093
+ actorId: string;
168094
+ notificationObjectId: string;
166814
168095
  };
166815
- }>, "many">;
166816
- total: import("zod").ZodNumber;
166817
- page: import("zod").ZodNumber;
166818
- pageSize: import("zod").ZodNumber;
166819
- lastPage: import("zod").ZodNumber;
166820
- totalUnreadCount: import("zod").ZodOptional<import("zod").ZodNumber>;
166821
- unreadRoomCount: import("zod").ZodOptional<import("zod").ZodNumber>;
166822
- unreadCountsByAssigneeList: import("zod").ZodArray<import("zod").ZodObject<{
166823
- assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
166824
- totalUnreadCount: import("zod").ZodOptional<import("zod").ZodString>;
166825
- }, "strip", import("zod").ZodTypeAny, {
166826
- assigneeId?: string | undefined;
166827
- totalUnreadCount?: string | undefined;
166828
- }, {
166829
- assigneeId?: string | undefined;
166830
- totalUnreadCount?: string | undefined;
166831
- }>, "many">;
168096
+ }>;
168097
+ readAt: import("zod").ZodDate;
166832
168098
  }, "strip", import("zod").ZodTypeAny, {
166833
- data: {
168099
+ id: string;
168100
+ createdAt: Date;
168101
+ updatedAt: Date;
168102
+ deletedAt: Date | null;
168103
+ readAt: Date;
168104
+ notificationObjectId: string;
168105
+ notifierId: string;
168106
+ notificationObject: {
168107
+ data: string;
166834
168108
  id: string;
166835
168109
  createdAt: Date;
166836
168110
  updatedAt: Date;
166837
168111
  deletedAt: Date | null;
166838
- readAt: Date;
166839
- notificationObjectId: string;
166840
- notifierId: string;
166841
- notificationObject: {
166842
- data: string;
168112
+ notificationChange: {
166843
168113
  id: string;
166844
168114
  createdAt: Date;
166845
168115
  updatedAt: Date;
166846
168116
  deletedAt: Date | null;
166847
- notificationChange: {
168117
+ actor: {
166848
168118
  id: string;
168119
+ address: string | null;
168120
+ name: string;
168121
+ email: string;
166849
168122
  createdAt: Date;
166850
168123
  updatedAt: Date;
166851
168124
  deletedAt: Date | null;
166852
- actor: {
168125
+ emailVerifiedAt: Date | null;
168126
+ password: string;
168127
+ phone: string | null;
168128
+ notificationCount: number | null;
168129
+ roles: {
166853
168130
  id: string;
166854
- address: string | null;
166855
- name: string;
166856
- email: string;
168131
+ description: string | null;
166857
168132
  createdAt: Date;
166858
168133
  updatedAt: Date;
166859
168134
  deletedAt: Date | null;
166860
- emailVerifiedAt: Date | null;
166861
- password: string;
166862
- phone: string | null;
166863
- notificationCount: number | null;
166864
- roles: {
168135
+ systemName: string;
168136
+ displayName: string;
168137
+ permissions: {
166865
168138
  id: string;
166866
168139
  description: string | null;
166867
168140
  createdAt: Date;
@@ -166869,79 +168142,67 @@ export declare const notificationContract: {
166869
168142
  deletedAt: Date | null;
166870
168143
  systemName: string;
166871
168144
  displayName: string;
166872
- permissions: {
166873
- id: string;
166874
- description: string | null;
166875
- createdAt: Date;
166876
- updatedAt: Date;
166877
- deletedAt: Date | null;
166878
- systemName: string;
166879
- displayName: string;
166880
- }[];
166881
168145
  }[];
166882
- extension: {
166883
- id: string;
166884
- createdAt: Date;
166885
- updatedAt: Date;
166886
- deletedAt: Date | null;
166887
- userId: string | null;
166888
- sipServerUrl: string;
166889
- sipUserName: string;
166890
- webphoneLoginUser: string;
166891
- extensionId: string | null;
166892
- extensionName: string;
166893
- telephonySignature: string | null;
166894
- };
168146
+ }[];
168147
+ extension: {
168148
+ id: string;
168149
+ createdAt: Date;
168150
+ updatedAt: Date;
168151
+ deletedAt: Date | null;
168152
+ userId: string | null;
168153
+ sipServerUrl: string;
168154
+ sipUserName: string;
168155
+ webphoneLoginUser: string;
168156
+ extensionId: string | null;
168157
+ extensionName: string;
168158
+ telephonySignature: string | null;
166895
168159
  };
166896
- readAt: Date;
166897
- actorId: string;
166898
- notificationObjectId: string;
166899
168160
  };
168161
+ readAt: Date;
168162
+ actorId: string;
168163
+ notificationObjectId: string;
166900
168164
  };
166901
- }[];
166902
- total: number;
166903
- page: number;
166904
- pageSize: number;
166905
- lastPage: number;
166906
- unreadCountsByAssigneeList: {
166907
- assigneeId?: string | undefined;
166908
- totalUnreadCount?: string | undefined;
166909
- }[];
166910
- totalUnreadCount?: number | undefined;
166911
- unreadRoomCount?: number | undefined;
168165
+ };
166912
168166
  }, {
166913
- data: {
168167
+ id: string;
168168
+ createdAt: Date;
168169
+ updatedAt: Date;
168170
+ deletedAt: Date | null;
168171
+ readAt: Date;
168172
+ notificationObjectId: string;
168173
+ notifierId: string;
168174
+ notificationObject: {
168175
+ data: string;
166914
168176
  id: string;
166915
168177
  createdAt: Date;
166916
168178
  updatedAt: Date;
166917
168179
  deletedAt: Date | null;
166918
- readAt: Date;
166919
- notificationObjectId: string;
166920
- notifierId: string;
166921
- notificationObject: {
166922
- data: string;
168180
+ notificationChange: {
166923
168181
  id: string;
166924
168182
  createdAt: Date;
166925
168183
  updatedAt: Date;
166926
168184
  deletedAt: Date | null;
166927
- notificationChange: {
168185
+ actor: {
166928
168186
  id: string;
168187
+ address: string | null;
168188
+ name: string;
168189
+ email: string;
166929
168190
  createdAt: Date;
166930
168191
  updatedAt: Date;
166931
168192
  deletedAt: Date | null;
166932
- actor: {
168193
+ emailVerifiedAt: Date | null;
168194
+ password: string;
168195
+ phone: string | null;
168196
+ notificationCount: number | null;
168197
+ roles: {
166933
168198
  id: string;
166934
- address: string | null;
166935
- name: string;
166936
- email: string;
168199
+ description: string | null;
166937
168200
  createdAt: Date;
166938
168201
  updatedAt: Date;
166939
168202
  deletedAt: Date | null;
166940
- emailVerifiedAt: Date | null;
166941
- password: string;
166942
- phone: string | null;
166943
- notificationCount: number | null;
166944
- roles: {
168203
+ systemName: string;
168204
+ displayName: string;
168205
+ permissions: {
166945
168206
  id: string;
166946
168207
  description: string | null;
166947
168208
  createdAt: Date;
@@ -166949,81 +168210,75 @@ export declare const notificationContract: {
166949
168210
  deletedAt: Date | null;
166950
168211
  systemName: string;
166951
168212
  displayName: string;
166952
- permissions: {
166953
- id: string;
166954
- description: string | null;
166955
- createdAt: Date;
166956
- updatedAt: Date;
166957
- deletedAt: Date | null;
166958
- systemName: string;
166959
- displayName: string;
166960
- }[];
166961
168213
  }[];
166962
- extension: {
166963
- id: string;
166964
- createdAt: Date;
166965
- updatedAt: Date;
166966
- deletedAt: Date | null;
166967
- userId: string | null;
166968
- sipServerUrl: string;
166969
- sipUserName: string;
166970
- webphoneLoginUser: string;
166971
- extensionId: string | null;
166972
- extensionName: string;
166973
- telephonySignature: string | null;
166974
- };
168214
+ }[];
168215
+ extension: {
168216
+ id: string;
168217
+ createdAt: Date;
168218
+ updatedAt: Date;
168219
+ deletedAt: Date | null;
168220
+ userId: string | null;
168221
+ sipServerUrl: string;
168222
+ sipUserName: string;
168223
+ webphoneLoginUser: string;
168224
+ extensionId: string | null;
168225
+ extensionName: string;
168226
+ telephonySignature: string | null;
166975
168227
  };
166976
- readAt: Date;
166977
- actorId: string;
166978
- notificationObjectId: string;
166979
168228
  };
168229
+ readAt: Date;
168230
+ actorId: string;
168231
+ notificationObjectId: string;
166980
168232
  };
166981
- }[];
166982
- total: number;
166983
- page: number;
166984
- pageSize: number;
166985
- lastPage: number;
166986
- unreadCountsByAssigneeList: {
166987
- assigneeId?: string | undefined;
166988
- totalUnreadCount?: string | undefined;
166989
- }[];
166990
- totalUnreadCount?: number | undefined;
166991
- unreadRoomCount?: number | undefined;
166992
- }>;
168233
+ };
168234
+ }>, "many">;
168235
+ total: import("zod").ZodNumber;
168236
+ page: import("zod").ZodNumber;
168237
+ pageSize: import("zod").ZodNumber;
168238
+ lastPage: import("zod").ZodNumber;
168239
+ totalUnreadCount: import("zod").ZodOptional<import("zod").ZodNumber>;
166993
168240
  }, "strip", import("zod").ZodTypeAny, {
168241
+ total: number;
166994
168242
  notifications: {
166995
- data: {
168243
+ id: string;
168244
+ createdAt: Date;
168245
+ updatedAt: Date;
168246
+ deletedAt: Date | null;
168247
+ readAt: Date;
168248
+ notificationObjectId: string;
168249
+ notifierId: string;
168250
+ notificationObject: {
168251
+ data: string;
166996
168252
  id: string;
166997
168253
  createdAt: Date;
166998
168254
  updatedAt: Date;
166999
168255
  deletedAt: Date | null;
167000
- readAt: Date;
167001
- notificationObjectId: string;
167002
- notifierId: string;
167003
- notificationObject: {
167004
- data: string;
168256
+ notificationChange: {
167005
168257
  id: string;
167006
168258
  createdAt: Date;
167007
168259
  updatedAt: Date;
167008
168260
  deletedAt: Date | null;
167009
- notificationChange: {
168261
+ actor: {
167010
168262
  id: string;
168263
+ address: string | null;
168264
+ name: string;
168265
+ email: string;
167011
168266
  createdAt: Date;
167012
168267
  updatedAt: Date;
167013
168268
  deletedAt: Date | null;
167014
- actor: {
168269
+ emailVerifiedAt: Date | null;
168270
+ password: string;
168271
+ phone: string | null;
168272
+ notificationCount: number | null;
168273
+ roles: {
167015
168274
  id: string;
167016
- address: string | null;
167017
- name: string;
167018
- email: string;
168275
+ description: string | null;
167019
168276
  createdAt: Date;
167020
168277
  updatedAt: Date;
167021
168278
  deletedAt: Date | null;
167022
- emailVerifiedAt: Date | null;
167023
- password: string;
167024
- phone: string | null;
167025
- notificationCount: number | null;
167026
- roles: {
168279
+ systemName: string;
168280
+ displayName: string;
168281
+ permissions: {
167027
168282
  id: string;
167028
168283
  description: string | null;
167029
168284
  createdAt: Date;
@@ -167031,82 +168286,75 @@ export declare const notificationContract: {
167031
168286
  deletedAt: Date | null;
167032
168287
  systemName: string;
167033
168288
  displayName: string;
167034
- permissions: {
167035
- id: string;
167036
- description: string | null;
167037
- createdAt: Date;
167038
- updatedAt: Date;
167039
- deletedAt: Date | null;
167040
- systemName: string;
167041
- displayName: string;
167042
- }[];
167043
168289
  }[];
167044
- extension: {
167045
- id: string;
167046
- createdAt: Date;
167047
- updatedAt: Date;
167048
- deletedAt: Date | null;
167049
- userId: string | null;
167050
- sipServerUrl: string;
167051
- sipUserName: string;
167052
- webphoneLoginUser: string;
167053
- extensionId: string | null;
167054
- extensionName: string;
167055
- telephonySignature: string | null;
167056
- };
168290
+ }[];
168291
+ extension: {
168292
+ id: string;
168293
+ createdAt: Date;
168294
+ updatedAt: Date;
168295
+ deletedAt: Date | null;
168296
+ userId: string | null;
168297
+ sipServerUrl: string;
168298
+ sipUserName: string;
168299
+ webphoneLoginUser: string;
168300
+ extensionId: string | null;
168301
+ extensionName: string;
168302
+ telephonySignature: string | null;
167057
168303
  };
167058
- readAt: Date;
167059
- actorId: string;
167060
- notificationObjectId: string;
167061
168304
  };
168305
+ readAt: Date;
168306
+ actorId: string;
168307
+ notificationObjectId: string;
167062
168308
  };
167063
- }[];
167064
- total: number;
167065
- page: number;
167066
- pageSize: number;
167067
- lastPage: number;
167068
- unreadCountsByAssigneeList: {
167069
- assigneeId?: string | undefined;
167070
- totalUnreadCount?: string | undefined;
167071
- }[];
167072
- totalUnreadCount?: number | undefined;
167073
- unreadRoomCount?: number | undefined;
167074
- };
168309
+ };
168310
+ }[];
168311
+ page: number;
168312
+ pageSize: number;
168313
+ lastPage: number;
167075
168314
  notificationCount: number;
168315
+ totalUnreadCount?: number | undefined;
167076
168316
  }, {
168317
+ total: number;
167077
168318
  notifications: {
167078
- data: {
168319
+ id: string;
168320
+ createdAt: Date;
168321
+ updatedAt: Date;
168322
+ deletedAt: Date | null;
168323
+ readAt: Date;
168324
+ notificationObjectId: string;
168325
+ notifierId: string;
168326
+ notificationObject: {
168327
+ data: string;
167079
168328
  id: string;
167080
168329
  createdAt: Date;
167081
168330
  updatedAt: Date;
167082
168331
  deletedAt: Date | null;
167083
- readAt: Date;
167084
- notificationObjectId: string;
167085
- notifierId: string;
167086
- notificationObject: {
167087
- data: string;
168332
+ notificationChange: {
167088
168333
  id: string;
167089
168334
  createdAt: Date;
167090
168335
  updatedAt: Date;
167091
168336
  deletedAt: Date | null;
167092
- notificationChange: {
168337
+ actor: {
167093
168338
  id: string;
168339
+ address: string | null;
168340
+ name: string;
168341
+ email: string;
167094
168342
  createdAt: Date;
167095
168343
  updatedAt: Date;
167096
168344
  deletedAt: Date | null;
167097
- actor: {
168345
+ emailVerifiedAt: Date | null;
168346
+ password: string;
168347
+ phone: string | null;
168348
+ notificationCount: number | null;
168349
+ roles: {
167098
168350
  id: string;
167099
- address: string | null;
167100
- name: string;
167101
- email: string;
168351
+ description: string | null;
167102
168352
  createdAt: Date;
167103
168353
  updatedAt: Date;
167104
168354
  deletedAt: Date | null;
167105
- emailVerifiedAt: Date | null;
167106
- password: string;
167107
- phone: string | null;
167108
- notificationCount: number | null;
167109
- roles: {
168355
+ systemName: string;
168356
+ displayName: string;
168357
+ permissions: {
167110
168358
  id: string;
167111
168359
  description: string | null;
167112
168360
  createdAt: Date;
@@ -167114,84 +168362,77 @@ export declare const notificationContract: {
167114
168362
  deletedAt: Date | null;
167115
168363
  systemName: string;
167116
168364
  displayName: string;
167117
- permissions: {
167118
- id: string;
167119
- description: string | null;
167120
- createdAt: Date;
167121
- updatedAt: Date;
167122
- deletedAt: Date | null;
167123
- systemName: string;
167124
- displayName: string;
167125
- }[];
167126
168365
  }[];
167127
- extension: {
167128
- id: string;
167129
- createdAt: Date;
167130
- updatedAt: Date;
167131
- deletedAt: Date | null;
167132
- userId: string | null;
167133
- sipServerUrl: string;
167134
- sipUserName: string;
167135
- webphoneLoginUser: string;
167136
- extensionId: string | null;
167137
- extensionName: string;
167138
- telephonySignature: string | null;
167139
- };
168366
+ }[];
168367
+ extension: {
168368
+ id: string;
168369
+ createdAt: Date;
168370
+ updatedAt: Date;
168371
+ deletedAt: Date | null;
168372
+ userId: string | null;
168373
+ sipServerUrl: string;
168374
+ sipUserName: string;
168375
+ webphoneLoginUser: string;
168376
+ extensionId: string | null;
168377
+ extensionName: string;
168378
+ telephonySignature: string | null;
167140
168379
  };
167141
- readAt: Date;
167142
- actorId: string;
167143
- notificationObjectId: string;
167144
168380
  };
168381
+ readAt: Date;
168382
+ actorId: string;
168383
+ notificationObjectId: string;
167145
168384
  };
167146
- }[];
167147
- total: number;
167148
- page: number;
167149
- pageSize: number;
167150
- lastPage: number;
167151
- unreadCountsByAssigneeList: {
167152
- assigneeId?: string | undefined;
167153
- totalUnreadCount?: string | undefined;
167154
- }[];
167155
- totalUnreadCount?: number | undefined;
167156
- unreadRoomCount?: number | undefined;
167157
- };
168385
+ };
168386
+ }[];
168387
+ page: number;
168388
+ pageSize: number;
168389
+ lastPage: number;
167158
168390
  notificationCount: number;
168391
+ totalUnreadCount?: number | undefined;
167159
168392
  }>;
167160
168393
  }, "strip", import("zod").ZodTypeAny, {
167161
168394
  data: {
168395
+ total: number;
167162
168396
  notifications: {
167163
- data: {
168397
+ id: string;
168398
+ createdAt: Date;
168399
+ updatedAt: Date;
168400
+ deletedAt: Date | null;
168401
+ readAt: Date;
168402
+ notificationObjectId: string;
168403
+ notifierId: string;
168404
+ notificationObject: {
168405
+ data: string;
167164
168406
  id: string;
167165
168407
  createdAt: Date;
167166
168408
  updatedAt: Date;
167167
168409
  deletedAt: Date | null;
167168
- readAt: Date;
167169
- notificationObjectId: string;
167170
- notifierId: string;
167171
- notificationObject: {
167172
- data: string;
168410
+ notificationChange: {
167173
168411
  id: string;
167174
168412
  createdAt: Date;
167175
168413
  updatedAt: Date;
167176
168414
  deletedAt: Date | null;
167177
- notificationChange: {
168415
+ actor: {
167178
168416
  id: string;
168417
+ address: string | null;
168418
+ name: string;
168419
+ email: string;
167179
168420
  createdAt: Date;
167180
168421
  updatedAt: Date;
167181
168422
  deletedAt: Date | null;
167182
- actor: {
168423
+ emailVerifiedAt: Date | null;
168424
+ password: string;
168425
+ phone: string | null;
168426
+ notificationCount: number | null;
168427
+ roles: {
167183
168428
  id: string;
167184
- address: string | null;
167185
- name: string;
167186
- email: string;
168429
+ description: string | null;
167187
168430
  createdAt: Date;
167188
168431
  updatedAt: Date;
167189
168432
  deletedAt: Date | null;
167190
- emailVerifiedAt: Date | null;
167191
- password: string;
167192
- phone: string | null;
167193
- notificationCount: number | null;
167194
- roles: {
168433
+ systemName: string;
168434
+ displayName: string;
168435
+ permissions: {
167195
168436
  id: string;
167196
168437
  description: string | null;
167197
168438
  createdAt: Date;
@@ -167199,85 +168440,78 @@ export declare const notificationContract: {
167199
168440
  deletedAt: Date | null;
167200
168441
  systemName: string;
167201
168442
  displayName: string;
167202
- permissions: {
167203
- id: string;
167204
- description: string | null;
167205
- createdAt: Date;
167206
- updatedAt: Date;
167207
- deletedAt: Date | null;
167208
- systemName: string;
167209
- displayName: string;
167210
- }[];
167211
168443
  }[];
167212
- extension: {
167213
- id: string;
167214
- createdAt: Date;
167215
- updatedAt: Date;
167216
- deletedAt: Date | null;
167217
- userId: string | null;
167218
- sipServerUrl: string;
167219
- sipUserName: string;
167220
- webphoneLoginUser: string;
167221
- extensionId: string | null;
167222
- extensionName: string;
167223
- telephonySignature: string | null;
167224
- };
168444
+ }[];
168445
+ extension: {
168446
+ id: string;
168447
+ createdAt: Date;
168448
+ updatedAt: Date;
168449
+ deletedAt: Date | null;
168450
+ userId: string | null;
168451
+ sipServerUrl: string;
168452
+ sipUserName: string;
168453
+ webphoneLoginUser: string;
168454
+ extensionId: string | null;
168455
+ extensionName: string;
168456
+ telephonySignature: string | null;
167225
168457
  };
167226
- readAt: Date;
167227
- actorId: string;
167228
- notificationObjectId: string;
167229
168458
  };
168459
+ readAt: Date;
168460
+ actorId: string;
168461
+ notificationObjectId: string;
167230
168462
  };
167231
- }[];
167232
- total: number;
167233
- page: number;
167234
- pageSize: number;
167235
- lastPage: number;
167236
- unreadCountsByAssigneeList: {
167237
- assigneeId?: string | undefined;
167238
- totalUnreadCount?: string | undefined;
167239
- }[];
167240
- totalUnreadCount?: number | undefined;
167241
- unreadRoomCount?: number | undefined;
167242
- };
168463
+ };
168464
+ }[];
168465
+ page: number;
168466
+ pageSize: number;
168467
+ lastPage: number;
167243
168468
  notificationCount: number;
168469
+ totalUnreadCount?: number | undefined;
167244
168470
  };
167245
168471
  requestId: string;
167246
168472
  }, {
167247
168473
  data: {
168474
+ total: number;
167248
168475
  notifications: {
167249
- data: {
168476
+ id: string;
168477
+ createdAt: Date;
168478
+ updatedAt: Date;
168479
+ deletedAt: Date | null;
168480
+ readAt: Date;
168481
+ notificationObjectId: string;
168482
+ notifierId: string;
168483
+ notificationObject: {
168484
+ data: string;
167250
168485
  id: string;
167251
168486
  createdAt: Date;
167252
168487
  updatedAt: Date;
167253
168488
  deletedAt: Date | null;
167254
- readAt: Date;
167255
- notificationObjectId: string;
167256
- notifierId: string;
167257
- notificationObject: {
167258
- data: string;
168489
+ notificationChange: {
167259
168490
  id: string;
167260
168491
  createdAt: Date;
167261
168492
  updatedAt: Date;
167262
168493
  deletedAt: Date | null;
167263
- notificationChange: {
168494
+ actor: {
167264
168495
  id: string;
168496
+ address: string | null;
168497
+ name: string;
168498
+ email: string;
167265
168499
  createdAt: Date;
167266
168500
  updatedAt: Date;
167267
168501
  deletedAt: Date | null;
167268
- actor: {
168502
+ emailVerifiedAt: Date | null;
168503
+ password: string;
168504
+ phone: string | null;
168505
+ notificationCount: number | null;
168506
+ roles: {
167269
168507
  id: string;
167270
- address: string | null;
167271
- name: string;
167272
- email: string;
168508
+ description: string | null;
167273
168509
  createdAt: Date;
167274
168510
  updatedAt: Date;
167275
168511
  deletedAt: Date | null;
167276
- emailVerifiedAt: Date | null;
167277
- password: string;
167278
- phone: string | null;
167279
- notificationCount: number | null;
167280
- roles: {
168512
+ systemName: string;
168513
+ displayName: string;
168514
+ permissions: {
167281
168515
  id: string;
167282
168516
  description: string | null;
167283
168517
  createdAt: Date;
@@ -167285,48 +168519,33 @@ export declare const notificationContract: {
167285
168519
  deletedAt: Date | null;
167286
168520
  systemName: string;
167287
168521
  displayName: string;
167288
- permissions: {
167289
- id: string;
167290
- description: string | null;
167291
- createdAt: Date;
167292
- updatedAt: Date;
167293
- deletedAt: Date | null;
167294
- systemName: string;
167295
- displayName: string;
167296
- }[];
167297
168522
  }[];
167298
- extension: {
167299
- id: string;
167300
- createdAt: Date;
167301
- updatedAt: Date;
167302
- deletedAt: Date | null;
167303
- userId: string | null;
167304
- sipServerUrl: string;
167305
- sipUserName: string;
167306
- webphoneLoginUser: string;
167307
- extensionId: string | null;
167308
- extensionName: string;
167309
- telephonySignature: string | null;
167310
- };
168523
+ }[];
168524
+ extension: {
168525
+ id: string;
168526
+ createdAt: Date;
168527
+ updatedAt: Date;
168528
+ deletedAt: Date | null;
168529
+ userId: string | null;
168530
+ sipServerUrl: string;
168531
+ sipUserName: string;
168532
+ webphoneLoginUser: string;
168533
+ extensionId: string | null;
168534
+ extensionName: string;
168535
+ telephonySignature: string | null;
167311
168536
  };
167312
- readAt: Date;
167313
- actorId: string;
167314
- notificationObjectId: string;
167315
168537
  };
168538
+ readAt: Date;
168539
+ actorId: string;
168540
+ notificationObjectId: string;
167316
168541
  };
167317
- }[];
167318
- total: number;
167319
- page: number;
167320
- pageSize: number;
167321
- lastPage: number;
167322
- unreadCountsByAssigneeList: {
167323
- assigneeId?: string | undefined;
167324
- totalUnreadCount?: string | undefined;
167325
- }[];
167326
- totalUnreadCount?: number | undefined;
167327
- unreadRoomCount?: number | undefined;
167328
- };
168542
+ };
168543
+ }[];
168544
+ page: number;
168545
+ pageSize: number;
168546
+ lastPage: number;
167329
168547
  notificationCount: number;
168548
+ totalUnreadCount?: number | undefined;
167330
168549
  };
167331
168550
  requestId: string;
167332
168551
  }>;