@kl1/contracts 1.0.79 → 1.0.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +240 -240
- package/dist/src/chat/schema.d.ts +96 -96
- package/dist/src/chat/validation.d.ts +120 -120
- package/dist/src/contract.d.ts +1900 -1548
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +106 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +82 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +120 -120
- package/dist/src/line/index.d.ts +120 -120
- package/dist/src/messenger/index.d.ts +120 -120
- package/dist/src/telephony-cdr/index.d.ts +246 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +58 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +120 -120
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -16694,6 +16694,40 @@ export declare const apiContract: {
|
|
16694
16694
|
agentRingTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
16695
16695
|
uploadId: import("zod").ZodNullable<import("zod").ZodString>;
|
16696
16696
|
serialNumber: import("zod").ZodNullable<import("zod").ZodString>;
|
16697
|
+
upload: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
16698
|
+
id: import("zod").ZodString;
|
16699
|
+
createdAt: import("zod").ZodDate;
|
16700
|
+
updatedAt: import("zod").ZodDate;
|
16701
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
16702
|
+
bucketName: import("zod").ZodString;
|
16703
|
+
fileName: import("zod").ZodString;
|
16704
|
+
fileSize: import("zod").ZodNumber;
|
16705
|
+
fileKey: import("zod").ZodString;
|
16706
|
+
fileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
16707
|
+
status: import("zod").ZodOptional<import("zod").ZodString>;
|
16708
|
+
}, "strip", import("zod").ZodTypeAny, {
|
16709
|
+
id: string;
|
16710
|
+
createdAt: Date;
|
16711
|
+
updatedAt: Date;
|
16712
|
+
deletedAt: Date | null;
|
16713
|
+
fileName: string;
|
16714
|
+
fileKey: string;
|
16715
|
+
bucketName: string;
|
16716
|
+
fileSize: number;
|
16717
|
+
fileUrl: string | null;
|
16718
|
+
status?: string | undefined;
|
16719
|
+
}, {
|
16720
|
+
id: string;
|
16721
|
+
createdAt: Date;
|
16722
|
+
updatedAt: Date;
|
16723
|
+
deletedAt: Date | null;
|
16724
|
+
fileName: string;
|
16725
|
+
fileKey: string;
|
16726
|
+
bucketName: string;
|
16727
|
+
fileSize: number;
|
16728
|
+
fileUrl: string | null;
|
16729
|
+
status?: string | undefined;
|
16730
|
+
}>>>;
|
16697
16731
|
callParticipants: import("zod").ZodNullable<import("zod").ZodObject<{
|
16698
16732
|
callTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
16699
16733
|
id: import("zod").ZodString;
|
@@ -17731,6 +17765,18 @@ export declare const apiContract: {
|
|
17731
17765
|
queueNumber: string;
|
17732
17766
|
maximumWaitingTime: number;
|
17733
17767
|
} | null | undefined;
|
17768
|
+
upload?: {
|
17769
|
+
id: string;
|
17770
|
+
createdAt: Date;
|
17771
|
+
updatedAt: Date;
|
17772
|
+
deletedAt: Date | null;
|
17773
|
+
fileName: string;
|
17774
|
+
fileKey: string;
|
17775
|
+
bucketName: string;
|
17776
|
+
fileSize: number;
|
17777
|
+
fileUrl: string | null;
|
17778
|
+
status?: string | undefined;
|
17779
|
+
} | null | undefined;
|
17734
17780
|
extension?: {
|
17735
17781
|
id: string;
|
17736
17782
|
createdAt: Date;
|
@@ -17974,6 +18020,18 @@ export declare const apiContract: {
|
|
17974
18020
|
queueNumber: string;
|
17975
18021
|
maximumWaitingTime: number;
|
17976
18022
|
} | null | undefined;
|
18023
|
+
upload?: {
|
18024
|
+
id: string;
|
18025
|
+
createdAt: Date;
|
18026
|
+
updatedAt: Date;
|
18027
|
+
deletedAt: Date | null;
|
18028
|
+
fileName: string;
|
18029
|
+
fileKey: string;
|
18030
|
+
bucketName: string;
|
18031
|
+
fileSize: number;
|
18032
|
+
fileUrl: string | null;
|
18033
|
+
status?: string | undefined;
|
18034
|
+
} | null | undefined;
|
17977
18035
|
extension?: {
|
17978
18036
|
id: string;
|
17979
18037
|
createdAt: Date;
|
@@ -19535,6 +19593,18 @@ export declare const apiContract: {
|
|
19535
19593
|
queueNumber: string;
|
19536
19594
|
maximumWaitingTime: number;
|
19537
19595
|
} | null | undefined;
|
19596
|
+
upload?: {
|
19597
|
+
id: string;
|
19598
|
+
createdAt: Date;
|
19599
|
+
updatedAt: Date;
|
19600
|
+
deletedAt: Date | null;
|
19601
|
+
fileName: string;
|
19602
|
+
fileKey: string;
|
19603
|
+
bucketName: string;
|
19604
|
+
fileSize: number;
|
19605
|
+
fileUrl: string | null;
|
19606
|
+
status?: string | undefined;
|
19607
|
+
} | null | undefined;
|
19538
19608
|
extension?: {
|
19539
19609
|
id: string;
|
19540
19610
|
createdAt: Date;
|
@@ -20245,6 +20315,18 @@ export declare const apiContract: {
|
|
20245
20315
|
queueNumber: string;
|
20246
20316
|
maximumWaitingTime: number;
|
20247
20317
|
} | null | undefined;
|
20318
|
+
upload?: {
|
20319
|
+
id: string;
|
20320
|
+
createdAt: Date;
|
20321
|
+
updatedAt: Date;
|
20322
|
+
deletedAt: Date | null;
|
20323
|
+
fileName: string;
|
20324
|
+
fileKey: string;
|
20325
|
+
bucketName: string;
|
20326
|
+
fileSize: number;
|
20327
|
+
fileUrl: string | null;
|
20328
|
+
status?: string | undefined;
|
20329
|
+
} | null | undefined;
|
20248
20330
|
extension?: {
|
20249
20331
|
id: string;
|
20250
20332
|
createdAt: Date;
|
@@ -20961,6 +21043,18 @@ export declare const apiContract: {
|
|
20961
21043
|
queueNumber: string;
|
20962
21044
|
maximumWaitingTime: number;
|
20963
21045
|
} | null | undefined;
|
21046
|
+
upload?: {
|
21047
|
+
id: string;
|
21048
|
+
createdAt: Date;
|
21049
|
+
updatedAt: Date;
|
21050
|
+
deletedAt: Date | null;
|
21051
|
+
fileName: string;
|
21052
|
+
fileKey: string;
|
21053
|
+
bucketName: string;
|
21054
|
+
fileSize: number;
|
21055
|
+
fileUrl: string | null;
|
21056
|
+
status?: string | undefined;
|
21057
|
+
} | null | undefined;
|
20964
21058
|
extension?: {
|
20965
21059
|
id: string;
|
20966
21060
|
createdAt: Date;
|
@@ -21677,6 +21771,18 @@ export declare const apiContract: {
|
|
21677
21771
|
queueNumber: string;
|
21678
21772
|
maximumWaitingTime: number;
|
21679
21773
|
} | null | undefined;
|
21774
|
+
upload?: {
|
21775
|
+
id: string;
|
21776
|
+
createdAt: Date;
|
21777
|
+
updatedAt: Date;
|
21778
|
+
deletedAt: Date | null;
|
21779
|
+
fileName: string;
|
21780
|
+
fileKey: string;
|
21781
|
+
bucketName: string;
|
21782
|
+
fileSize: number;
|
21783
|
+
fileUrl: string | null;
|
21784
|
+
status?: string | undefined;
|
21785
|
+
} | null | undefined;
|
21680
21786
|
extension?: {
|
21681
21787
|
id: string;
|
21682
21788
|
createdAt: Date;
|
@@ -85520,56 +85626,6 @@ export declare const platformContract: {
|
|
85520
85626
|
};
|
85521
85627
|
};
|
85522
85628
|
platformId: string;
|
85523
|
-
assignee: {
|
85524
|
-
id: string;
|
85525
|
-
address: string | null;
|
85526
|
-
name: string;
|
85527
|
-
email: string;
|
85528
|
-
createdAt: Date;
|
85529
|
-
updatedAt: Date;
|
85530
|
-
deletedAt: Date | null;
|
85531
|
-
emailVerifiedAt: Date | null;
|
85532
|
-
password: string;
|
85533
|
-
phone: string | null;
|
85534
|
-
notificationCount: number | null;
|
85535
|
-
roles: {
|
85536
|
-
id: string;
|
85537
|
-
description: string | null;
|
85538
|
-
createdAt: Date;
|
85539
|
-
updatedAt: Date;
|
85540
|
-
deletedAt: Date | null;
|
85541
|
-
systemName: string;
|
85542
|
-
displayName: string;
|
85543
|
-
permissions: {
|
85544
|
-
id: string;
|
85545
|
-
description: string | null;
|
85546
|
-
createdAt: Date;
|
85547
|
-
updatedAt: Date;
|
85548
|
-
deletedAt: Date | null;
|
85549
|
-
systemName: string;
|
85550
|
-
displayName: string;
|
85551
|
-
}[];
|
85552
|
-
}[];
|
85553
|
-
extension: {
|
85554
|
-
id: string;
|
85555
|
-
createdAt: Date;
|
85556
|
-
updatedAt: Date;
|
85557
|
-
deletedAt: Date | null;
|
85558
|
-
userId: string | null;
|
85559
|
-
sipServerUrl: string;
|
85560
|
-
sipUserName: string;
|
85561
|
-
webphoneLoginUser: string;
|
85562
|
-
extensionId: string | null;
|
85563
|
-
extensionName: string;
|
85564
|
-
telephonySignature: string | null;
|
85565
|
-
};
|
85566
|
-
};
|
85567
|
-
readAt: Date;
|
85568
|
-
platformMessageId: string;
|
85569
|
-
replyPlatformMessageId: string;
|
85570
|
-
locale: "" | "th" | "mm" | "en";
|
85571
|
-
previewUrl: string;
|
85572
|
-
imageSetId: string;
|
85573
85629
|
upload: {
|
85574
85630
|
id: string;
|
85575
85631
|
createdAt: Date;
|
@@ -85582,106 +85638,6 @@ export declare const platformContract: {
|
|
85582
85638
|
fileUrl: string | null;
|
85583
85639
|
status?: string | undefined;
|
85584
85640
|
};
|
85585
|
-
sender: {
|
85586
|
-
id: string;
|
85587
|
-
address: string | null;
|
85588
|
-
name: string;
|
85589
|
-
email: string;
|
85590
|
-
createdAt: Date;
|
85591
|
-
updatedAt: Date;
|
85592
|
-
deletedAt: Date | null;
|
85593
|
-
emailVerifiedAt: Date | null;
|
85594
|
-
password: string;
|
85595
|
-
phone: string | null;
|
85596
|
-
notificationCount: number | null;
|
85597
|
-
roles: {
|
85598
|
-
id: string;
|
85599
|
-
description: string | null;
|
85600
|
-
createdAt: Date;
|
85601
|
-
updatedAt: Date;
|
85602
|
-
deletedAt: Date | null;
|
85603
|
-
systemName: string;
|
85604
|
-
displayName: string;
|
85605
|
-
permissions: {
|
85606
|
-
id: string;
|
85607
|
-
description: string | null;
|
85608
|
-
createdAt: Date;
|
85609
|
-
updatedAt: Date;
|
85610
|
-
deletedAt: Date | null;
|
85611
|
-
systemName: string;
|
85612
|
-
displayName: string;
|
85613
|
-
}[];
|
85614
|
-
}[];
|
85615
|
-
extension: {
|
85616
|
-
id: string;
|
85617
|
-
createdAt: Date;
|
85618
|
-
updatedAt: Date;
|
85619
|
-
deletedAt: Date | null;
|
85620
|
-
userId: string | null;
|
85621
|
-
sipServerUrl: string;
|
85622
|
-
sipUserName: string;
|
85623
|
-
webphoneLoginUser: string;
|
85624
|
-
extensionId: string | null;
|
85625
|
-
extensionName: string;
|
85626
|
-
telephonySignature: string | null;
|
85627
|
-
};
|
85628
|
-
};
|
85629
|
-
metadata?: any;
|
85630
|
-
template?: any;
|
85631
|
-
}, {
|
85632
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
85633
|
-
message: string;
|
85634
|
-
id: string;
|
85635
|
-
url: string;
|
85636
|
-
direction: "incoming" | "outgoing" | "system";
|
85637
|
-
createdAt: Date;
|
85638
|
-
updatedAt: Date;
|
85639
|
-
deletedAt: Date | null;
|
85640
|
-
actor: {
|
85641
|
-
id: string;
|
85642
|
-
address: string | null;
|
85643
|
-
name: string;
|
85644
|
-
email: string;
|
85645
|
-
createdAt: Date;
|
85646
|
-
updatedAt: Date;
|
85647
|
-
deletedAt: Date | null;
|
85648
|
-
emailVerifiedAt: Date | null;
|
85649
|
-
password: string;
|
85650
|
-
phone: string | null;
|
85651
|
-
notificationCount: number | null;
|
85652
|
-
roles: {
|
85653
|
-
id: string;
|
85654
|
-
description: string | null;
|
85655
|
-
createdAt: Date;
|
85656
|
-
updatedAt: Date;
|
85657
|
-
deletedAt: Date | null;
|
85658
|
-
systemName: string;
|
85659
|
-
displayName: string;
|
85660
|
-
permissions: {
|
85661
|
-
id: string;
|
85662
|
-
description: string | null;
|
85663
|
-
createdAt: Date;
|
85664
|
-
updatedAt: Date;
|
85665
|
-
deletedAt: Date | null;
|
85666
|
-
systemName: string;
|
85667
|
-
displayName: string;
|
85668
|
-
}[];
|
85669
|
-
}[];
|
85670
|
-
extension: {
|
85671
|
-
id: string;
|
85672
|
-
createdAt: Date;
|
85673
|
-
updatedAt: Date;
|
85674
|
-
deletedAt: Date | null;
|
85675
|
-
userId: string | null;
|
85676
|
-
sipServerUrl: string;
|
85677
|
-
sipUserName: string;
|
85678
|
-
webphoneLoginUser: string;
|
85679
|
-
extensionId: string | null;
|
85680
|
-
extensionName: string;
|
85681
|
-
telephonySignature: string | null;
|
85682
|
-
};
|
85683
|
-
};
|
85684
|
-
platformId: string;
|
85685
85641
|
assignee: {
|
85686
85642
|
id: string;
|
85687
85643
|
address: string | null;
|
@@ -85732,18 +85688,168 @@ export declare const platformContract: {
|
|
85732
85688
|
locale: "" | "th" | "mm" | "en";
|
85733
85689
|
previewUrl: string;
|
85734
85690
|
imageSetId: string;
|
85735
|
-
|
85736
|
-
id: string;
|
85737
|
-
|
85738
|
-
|
85739
|
-
|
85740
|
-
|
85741
|
-
|
85742
|
-
|
85743
|
-
|
85744
|
-
|
85745
|
-
|
85746
|
-
|
85691
|
+
sender: {
|
85692
|
+
id: string;
|
85693
|
+
address: string | null;
|
85694
|
+
name: string;
|
85695
|
+
email: string;
|
85696
|
+
createdAt: Date;
|
85697
|
+
updatedAt: Date;
|
85698
|
+
deletedAt: Date | null;
|
85699
|
+
emailVerifiedAt: Date | null;
|
85700
|
+
password: string;
|
85701
|
+
phone: string | null;
|
85702
|
+
notificationCount: number | null;
|
85703
|
+
roles: {
|
85704
|
+
id: string;
|
85705
|
+
description: string | null;
|
85706
|
+
createdAt: Date;
|
85707
|
+
updatedAt: Date;
|
85708
|
+
deletedAt: Date | null;
|
85709
|
+
systemName: string;
|
85710
|
+
displayName: string;
|
85711
|
+
permissions: {
|
85712
|
+
id: string;
|
85713
|
+
description: string | null;
|
85714
|
+
createdAt: Date;
|
85715
|
+
updatedAt: Date;
|
85716
|
+
deletedAt: Date | null;
|
85717
|
+
systemName: string;
|
85718
|
+
displayName: string;
|
85719
|
+
}[];
|
85720
|
+
}[];
|
85721
|
+
extension: {
|
85722
|
+
id: string;
|
85723
|
+
createdAt: Date;
|
85724
|
+
updatedAt: Date;
|
85725
|
+
deletedAt: Date | null;
|
85726
|
+
userId: string | null;
|
85727
|
+
sipServerUrl: string;
|
85728
|
+
sipUserName: string;
|
85729
|
+
webphoneLoginUser: string;
|
85730
|
+
extensionId: string | null;
|
85731
|
+
extensionName: string;
|
85732
|
+
telephonySignature: string | null;
|
85733
|
+
};
|
85734
|
+
};
|
85735
|
+
metadata?: any;
|
85736
|
+
template?: any;
|
85737
|
+
}, {
|
85738
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
85739
|
+
message: string;
|
85740
|
+
id: string;
|
85741
|
+
url: string;
|
85742
|
+
direction: "incoming" | "outgoing" | "system";
|
85743
|
+
createdAt: Date;
|
85744
|
+
updatedAt: Date;
|
85745
|
+
deletedAt: Date | null;
|
85746
|
+
actor: {
|
85747
|
+
id: string;
|
85748
|
+
address: string | null;
|
85749
|
+
name: string;
|
85750
|
+
email: string;
|
85751
|
+
createdAt: Date;
|
85752
|
+
updatedAt: Date;
|
85753
|
+
deletedAt: Date | null;
|
85754
|
+
emailVerifiedAt: Date | null;
|
85755
|
+
password: string;
|
85756
|
+
phone: string | null;
|
85757
|
+
notificationCount: number | null;
|
85758
|
+
roles: {
|
85759
|
+
id: string;
|
85760
|
+
description: string | null;
|
85761
|
+
createdAt: Date;
|
85762
|
+
updatedAt: Date;
|
85763
|
+
deletedAt: Date | null;
|
85764
|
+
systemName: string;
|
85765
|
+
displayName: string;
|
85766
|
+
permissions: {
|
85767
|
+
id: string;
|
85768
|
+
description: string | null;
|
85769
|
+
createdAt: Date;
|
85770
|
+
updatedAt: Date;
|
85771
|
+
deletedAt: Date | null;
|
85772
|
+
systemName: string;
|
85773
|
+
displayName: string;
|
85774
|
+
}[];
|
85775
|
+
}[];
|
85776
|
+
extension: {
|
85777
|
+
id: string;
|
85778
|
+
createdAt: Date;
|
85779
|
+
updatedAt: Date;
|
85780
|
+
deletedAt: Date | null;
|
85781
|
+
userId: string | null;
|
85782
|
+
sipServerUrl: string;
|
85783
|
+
sipUserName: string;
|
85784
|
+
webphoneLoginUser: string;
|
85785
|
+
extensionId: string | null;
|
85786
|
+
extensionName: string;
|
85787
|
+
telephonySignature: string | null;
|
85788
|
+
};
|
85789
|
+
};
|
85790
|
+
platformId: string;
|
85791
|
+
upload: {
|
85792
|
+
id: string;
|
85793
|
+
createdAt: Date;
|
85794
|
+
updatedAt: Date;
|
85795
|
+
deletedAt: Date | null;
|
85796
|
+
fileName: string;
|
85797
|
+
fileKey: string;
|
85798
|
+
bucketName: string;
|
85799
|
+
fileSize: number;
|
85800
|
+
fileUrl: string | null;
|
85801
|
+
status?: string | undefined;
|
85802
|
+
};
|
85803
|
+
assignee: {
|
85804
|
+
id: string;
|
85805
|
+
address: string | null;
|
85806
|
+
name: string;
|
85807
|
+
email: string;
|
85808
|
+
createdAt: Date;
|
85809
|
+
updatedAt: Date;
|
85810
|
+
deletedAt: Date | null;
|
85811
|
+
emailVerifiedAt: Date | null;
|
85812
|
+
password: string;
|
85813
|
+
phone: string | null;
|
85814
|
+
notificationCount: number | null;
|
85815
|
+
roles: {
|
85816
|
+
id: string;
|
85817
|
+
description: string | null;
|
85818
|
+
createdAt: Date;
|
85819
|
+
updatedAt: Date;
|
85820
|
+
deletedAt: Date | null;
|
85821
|
+
systemName: string;
|
85822
|
+
displayName: string;
|
85823
|
+
permissions: {
|
85824
|
+
id: string;
|
85825
|
+
description: string | null;
|
85826
|
+
createdAt: Date;
|
85827
|
+
updatedAt: Date;
|
85828
|
+
deletedAt: Date | null;
|
85829
|
+
systemName: string;
|
85830
|
+
displayName: string;
|
85831
|
+
}[];
|
85832
|
+
}[];
|
85833
|
+
extension: {
|
85834
|
+
id: string;
|
85835
|
+
createdAt: Date;
|
85836
|
+
updatedAt: Date;
|
85837
|
+
deletedAt: Date | null;
|
85838
|
+
userId: string | null;
|
85839
|
+
sipServerUrl: string;
|
85840
|
+
sipUserName: string;
|
85841
|
+
webphoneLoginUser: string;
|
85842
|
+
extensionId: string | null;
|
85843
|
+
extensionName: string;
|
85844
|
+
telephonySignature: string | null;
|
85845
|
+
};
|
85846
|
+
};
|
85847
|
+
readAt: Date;
|
85848
|
+
platformMessageId: string;
|
85849
|
+
replyPlatformMessageId: string;
|
85850
|
+
locale: "" | "th" | "mm" | "en";
|
85851
|
+
previewUrl: string;
|
85852
|
+
imageSetId: string;
|
85747
85853
|
sender: {
|
85748
85854
|
id: string;
|
85749
85855
|
address: string | null;
|
@@ -86457,6 +86563,18 @@ export declare const platformContract: {
|
|
86457
86563
|
};
|
86458
86564
|
};
|
86459
86565
|
platformId: string;
|
86566
|
+
upload: {
|
86567
|
+
id: string;
|
86568
|
+
createdAt: Date;
|
86569
|
+
updatedAt: Date;
|
86570
|
+
deletedAt: Date | null;
|
86571
|
+
fileName: string;
|
86572
|
+
fileKey: string;
|
86573
|
+
bucketName: string;
|
86574
|
+
fileSize: number;
|
86575
|
+
fileUrl: string | null;
|
86576
|
+
status?: string | undefined;
|
86577
|
+
};
|
86460
86578
|
assignee: {
|
86461
86579
|
id: string;
|
86462
86580
|
address: string | null;
|
@@ -86820,18 +86938,6 @@ export declare const platformContract: {
|
|
86820
86938
|
locale: "" | "th" | "mm" | "en";
|
86821
86939
|
previewUrl: string;
|
86822
86940
|
imageSetId: string;
|
86823
|
-
upload: {
|
86824
|
-
id: string;
|
86825
|
-
createdAt: Date;
|
86826
|
-
updatedAt: Date;
|
86827
|
-
deletedAt: Date | null;
|
86828
|
-
fileName: string;
|
86829
|
-
fileKey: string;
|
86830
|
-
bucketName: string;
|
86831
|
-
fileSize: number;
|
86832
|
-
fileUrl: string | null;
|
86833
|
-
status?: string | undefined;
|
86834
|
-
};
|
86835
86941
|
repliedMessage: {
|
86836
86942
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
86837
86943
|
message: string;
|
@@ -86886,6 +86992,18 @@ export declare const platformContract: {
|
|
86886
86992
|
};
|
86887
86993
|
};
|
86888
86994
|
platformId: string;
|
86995
|
+
upload: {
|
86996
|
+
id: string;
|
86997
|
+
createdAt: Date;
|
86998
|
+
updatedAt: Date;
|
86999
|
+
deletedAt: Date | null;
|
87000
|
+
fileName: string;
|
87001
|
+
fileKey: string;
|
87002
|
+
bucketName: string;
|
87003
|
+
fileSize: number;
|
87004
|
+
fileUrl: string | null;
|
87005
|
+
status?: string | undefined;
|
87006
|
+
};
|
86889
87007
|
assignee: {
|
86890
87008
|
id: string;
|
86891
87009
|
address: string | null;
|
@@ -86936,18 +87054,6 @@ export declare const platformContract: {
|
|
86936
87054
|
locale: "" | "th" | "mm" | "en";
|
86937
87055
|
previewUrl: string;
|
86938
87056
|
imageSetId: string;
|
86939
|
-
upload: {
|
86940
|
-
id: string;
|
86941
|
-
createdAt: Date;
|
86942
|
-
updatedAt: Date;
|
86943
|
-
deletedAt: Date | null;
|
86944
|
-
fileName: string;
|
86945
|
-
fileKey: string;
|
86946
|
-
bucketName: string;
|
86947
|
-
fileSize: number;
|
86948
|
-
fileUrl: string | null;
|
86949
|
-
status?: string | undefined;
|
86950
|
-
};
|
86951
87057
|
sender: {
|
86952
87058
|
id: string;
|
86953
87059
|
address: string | null;
|
@@ -87095,6 +87201,18 @@ export declare const platformContract: {
|
|
87095
87201
|
};
|
87096
87202
|
};
|
87097
87203
|
platformId: string;
|
87204
|
+
upload: {
|
87205
|
+
id: string;
|
87206
|
+
createdAt: Date;
|
87207
|
+
updatedAt: Date;
|
87208
|
+
deletedAt: Date | null;
|
87209
|
+
fileName: string;
|
87210
|
+
fileKey: string;
|
87211
|
+
bucketName: string;
|
87212
|
+
fileSize: number;
|
87213
|
+
fileUrl: string | null;
|
87214
|
+
status?: string | undefined;
|
87215
|
+
};
|
87098
87216
|
assignee: {
|
87099
87217
|
id: string;
|
87100
87218
|
address: string | null;
|
@@ -87458,18 +87576,6 @@ export declare const platformContract: {
|
|
87458
87576
|
locale: "" | "th" | "mm" | "en";
|
87459
87577
|
previewUrl: string;
|
87460
87578
|
imageSetId: string;
|
87461
|
-
upload: {
|
87462
|
-
id: string;
|
87463
|
-
createdAt: Date;
|
87464
|
-
updatedAt: Date;
|
87465
|
-
deletedAt: Date | null;
|
87466
|
-
fileName: string;
|
87467
|
-
fileKey: string;
|
87468
|
-
bucketName: string;
|
87469
|
-
fileSize: number;
|
87470
|
-
fileUrl: string | null;
|
87471
|
-
status?: string | undefined;
|
87472
|
-
};
|
87473
87579
|
repliedMessage: {
|
87474
87580
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
87475
87581
|
message: string;
|
@@ -87524,6 +87630,18 @@ export declare const platformContract: {
|
|
87524
87630
|
};
|
87525
87631
|
};
|
87526
87632
|
platformId: string;
|
87633
|
+
upload: {
|
87634
|
+
id: string;
|
87635
|
+
createdAt: Date;
|
87636
|
+
updatedAt: Date;
|
87637
|
+
deletedAt: Date | null;
|
87638
|
+
fileName: string;
|
87639
|
+
fileKey: string;
|
87640
|
+
bucketName: string;
|
87641
|
+
fileSize: number;
|
87642
|
+
fileUrl: string | null;
|
87643
|
+
status?: string | undefined;
|
87644
|
+
};
|
87527
87645
|
assignee: {
|
87528
87646
|
id: string;
|
87529
87647
|
address: string | null;
|
@@ -87574,18 +87692,6 @@ export declare const platformContract: {
|
|
87574
87692
|
locale: "" | "th" | "mm" | "en";
|
87575
87693
|
previewUrl: string;
|
87576
87694
|
imageSetId: string;
|
87577
|
-
upload: {
|
87578
|
-
id: string;
|
87579
|
-
createdAt: Date;
|
87580
|
-
updatedAt: Date;
|
87581
|
-
deletedAt: Date | null;
|
87582
|
-
fileName: string;
|
87583
|
-
fileKey: string;
|
87584
|
-
bucketName: string;
|
87585
|
-
fileSize: number;
|
87586
|
-
fileUrl: string | null;
|
87587
|
-
status?: string | undefined;
|
87588
|
-
};
|
87589
87695
|
sender: {
|
87590
87696
|
id: string;
|
87591
87697
|
address: string | null;
|
@@ -87735,6 +87841,18 @@ export declare const platformContract: {
|
|
87735
87841
|
};
|
87736
87842
|
};
|
87737
87843
|
platformId: string;
|
87844
|
+
upload: {
|
87845
|
+
id: string;
|
87846
|
+
createdAt: Date;
|
87847
|
+
updatedAt: Date;
|
87848
|
+
deletedAt: Date | null;
|
87849
|
+
fileName: string;
|
87850
|
+
fileKey: string;
|
87851
|
+
bucketName: string;
|
87852
|
+
fileSize: number;
|
87853
|
+
fileUrl: string | null;
|
87854
|
+
status?: string | undefined;
|
87855
|
+
};
|
87738
87856
|
assignee: {
|
87739
87857
|
id: string;
|
87740
87858
|
address: string | null;
|
@@ -88098,18 +88216,6 @@ export declare const platformContract: {
|
|
88098
88216
|
locale: "" | "th" | "mm" | "en";
|
88099
88217
|
previewUrl: string;
|
88100
88218
|
imageSetId: string;
|
88101
|
-
upload: {
|
88102
|
-
id: string;
|
88103
|
-
createdAt: Date;
|
88104
|
-
updatedAt: Date;
|
88105
|
-
deletedAt: Date | null;
|
88106
|
-
fileName: string;
|
88107
|
-
fileKey: string;
|
88108
|
-
bucketName: string;
|
88109
|
-
fileSize: number;
|
88110
|
-
fileUrl: string | null;
|
88111
|
-
status?: string | undefined;
|
88112
|
-
};
|
88113
88219
|
repliedMessage: {
|
88114
88220
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
88115
88221
|
message: string;
|
@@ -88164,6 +88270,18 @@ export declare const platformContract: {
|
|
88164
88270
|
};
|
88165
88271
|
};
|
88166
88272
|
platformId: string;
|
88273
|
+
upload: {
|
88274
|
+
id: string;
|
88275
|
+
createdAt: Date;
|
88276
|
+
updatedAt: Date;
|
88277
|
+
deletedAt: Date | null;
|
88278
|
+
fileName: string;
|
88279
|
+
fileKey: string;
|
88280
|
+
bucketName: string;
|
88281
|
+
fileSize: number;
|
88282
|
+
fileUrl: string | null;
|
88283
|
+
status?: string | undefined;
|
88284
|
+
};
|
88167
88285
|
assignee: {
|
88168
88286
|
id: string;
|
88169
88287
|
address: string | null;
|
@@ -88214,18 +88332,6 @@ export declare const platformContract: {
|
|
88214
88332
|
locale: "" | "th" | "mm" | "en";
|
88215
88333
|
previewUrl: string;
|
88216
88334
|
imageSetId: string;
|
88217
|
-
upload: {
|
88218
|
-
id: string;
|
88219
|
-
createdAt: Date;
|
88220
|
-
updatedAt: Date;
|
88221
|
-
deletedAt: Date | null;
|
88222
|
-
fileName: string;
|
88223
|
-
fileKey: string;
|
88224
|
-
bucketName: string;
|
88225
|
-
fileSize: number;
|
88226
|
-
fileUrl: string | null;
|
88227
|
-
status?: string | undefined;
|
88228
|
-
};
|
88229
88335
|
sender: {
|
88230
88336
|
id: string;
|
88231
88337
|
address: string | null;
|
@@ -88376,6 +88482,18 @@ export declare const platformContract: {
|
|
88376
88482
|
};
|
88377
88483
|
};
|
88378
88484
|
platformId: string;
|
88485
|
+
upload: {
|
88486
|
+
id: string;
|
88487
|
+
createdAt: Date;
|
88488
|
+
updatedAt: Date;
|
88489
|
+
deletedAt: Date | null;
|
88490
|
+
fileName: string;
|
88491
|
+
fileKey: string;
|
88492
|
+
bucketName: string;
|
88493
|
+
fileSize: number;
|
88494
|
+
fileUrl: string | null;
|
88495
|
+
status?: string | undefined;
|
88496
|
+
};
|
88379
88497
|
assignee: {
|
88380
88498
|
id: string;
|
88381
88499
|
address: string | null;
|
@@ -88739,18 +88857,6 @@ export declare const platformContract: {
|
|
88739
88857
|
locale: "" | "th" | "mm" | "en";
|
88740
88858
|
previewUrl: string;
|
88741
88859
|
imageSetId: string;
|
88742
|
-
upload: {
|
88743
|
-
id: string;
|
88744
|
-
createdAt: Date;
|
88745
|
-
updatedAt: Date;
|
88746
|
-
deletedAt: Date | null;
|
88747
|
-
fileName: string;
|
88748
|
-
fileKey: string;
|
88749
|
-
bucketName: string;
|
88750
|
-
fileSize: number;
|
88751
|
-
fileUrl: string | null;
|
88752
|
-
status?: string | undefined;
|
88753
|
-
};
|
88754
88860
|
repliedMessage: {
|
88755
88861
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
88756
88862
|
message: string;
|
@@ -88805,6 +88911,18 @@ export declare const platformContract: {
|
|
88805
88911
|
};
|
88806
88912
|
};
|
88807
88913
|
platformId: string;
|
88914
|
+
upload: {
|
88915
|
+
id: string;
|
88916
|
+
createdAt: Date;
|
88917
|
+
updatedAt: Date;
|
88918
|
+
deletedAt: Date | null;
|
88919
|
+
fileName: string;
|
88920
|
+
fileKey: string;
|
88921
|
+
bucketName: string;
|
88922
|
+
fileSize: number;
|
88923
|
+
fileUrl: string | null;
|
88924
|
+
status?: string | undefined;
|
88925
|
+
};
|
88808
88926
|
assignee: {
|
88809
88927
|
id: string;
|
88810
88928
|
address: string | null;
|
@@ -88855,18 +88973,6 @@ export declare const platformContract: {
|
|
88855
88973
|
locale: "" | "th" | "mm" | "en";
|
88856
88974
|
previewUrl: string;
|
88857
88975
|
imageSetId: string;
|
88858
|
-
upload: {
|
88859
|
-
id: string;
|
88860
|
-
createdAt: Date;
|
88861
|
-
updatedAt: Date;
|
88862
|
-
deletedAt: Date | null;
|
88863
|
-
fileName: string;
|
88864
|
-
fileKey: string;
|
88865
|
-
bucketName: string;
|
88866
|
-
fileSize: number;
|
88867
|
-
fileUrl: string | null;
|
88868
|
-
status?: string | undefined;
|
88869
|
-
};
|
88870
88976
|
sender: {
|
88871
88977
|
id: string;
|
88872
88978
|
address: string | null;
|
@@ -92810,56 +92916,6 @@ export declare const platformContract: {
|
|
92810
92916
|
};
|
92811
92917
|
};
|
92812
92918
|
platformId: string;
|
92813
|
-
assignee: {
|
92814
|
-
id: string;
|
92815
|
-
address: string | null;
|
92816
|
-
name: string;
|
92817
|
-
email: string;
|
92818
|
-
createdAt: Date;
|
92819
|
-
updatedAt: Date;
|
92820
|
-
deletedAt: Date | null;
|
92821
|
-
emailVerifiedAt: Date | null;
|
92822
|
-
password: string;
|
92823
|
-
phone: string | null;
|
92824
|
-
notificationCount: number | null;
|
92825
|
-
roles: {
|
92826
|
-
id: string;
|
92827
|
-
description: string | null;
|
92828
|
-
createdAt: Date;
|
92829
|
-
updatedAt: Date;
|
92830
|
-
deletedAt: Date | null;
|
92831
|
-
systemName: string;
|
92832
|
-
displayName: string;
|
92833
|
-
permissions: {
|
92834
|
-
id: string;
|
92835
|
-
description: string | null;
|
92836
|
-
createdAt: Date;
|
92837
|
-
updatedAt: Date;
|
92838
|
-
deletedAt: Date | null;
|
92839
|
-
systemName: string;
|
92840
|
-
displayName: string;
|
92841
|
-
}[];
|
92842
|
-
}[];
|
92843
|
-
extension: {
|
92844
|
-
id: string;
|
92845
|
-
createdAt: Date;
|
92846
|
-
updatedAt: Date;
|
92847
|
-
deletedAt: Date | null;
|
92848
|
-
userId: string | null;
|
92849
|
-
sipServerUrl: string;
|
92850
|
-
sipUserName: string;
|
92851
|
-
webphoneLoginUser: string;
|
92852
|
-
extensionId: string | null;
|
92853
|
-
extensionName: string;
|
92854
|
-
telephonySignature: string | null;
|
92855
|
-
};
|
92856
|
-
};
|
92857
|
-
readAt: Date;
|
92858
|
-
platformMessageId: string;
|
92859
|
-
replyPlatformMessageId: string;
|
92860
|
-
locale: "" | "th" | "mm" | "en";
|
92861
|
-
previewUrl: string;
|
92862
|
-
imageSetId: string;
|
92863
92919
|
upload: {
|
92864
92920
|
id: string;
|
92865
92921
|
createdAt: Date;
|
@@ -92872,106 +92928,6 @@ export declare const platformContract: {
|
|
92872
92928
|
fileUrl: string | null;
|
92873
92929
|
status?: string | undefined;
|
92874
92930
|
};
|
92875
|
-
sender: {
|
92876
|
-
id: string;
|
92877
|
-
address: string | null;
|
92878
|
-
name: string;
|
92879
|
-
email: string;
|
92880
|
-
createdAt: Date;
|
92881
|
-
updatedAt: Date;
|
92882
|
-
deletedAt: Date | null;
|
92883
|
-
emailVerifiedAt: Date | null;
|
92884
|
-
password: string;
|
92885
|
-
phone: string | null;
|
92886
|
-
notificationCount: number | null;
|
92887
|
-
roles: {
|
92888
|
-
id: string;
|
92889
|
-
description: string | null;
|
92890
|
-
createdAt: Date;
|
92891
|
-
updatedAt: Date;
|
92892
|
-
deletedAt: Date | null;
|
92893
|
-
systemName: string;
|
92894
|
-
displayName: string;
|
92895
|
-
permissions: {
|
92896
|
-
id: string;
|
92897
|
-
description: string | null;
|
92898
|
-
createdAt: Date;
|
92899
|
-
updatedAt: Date;
|
92900
|
-
deletedAt: Date | null;
|
92901
|
-
systemName: string;
|
92902
|
-
displayName: string;
|
92903
|
-
}[];
|
92904
|
-
}[];
|
92905
|
-
extension: {
|
92906
|
-
id: string;
|
92907
|
-
createdAt: Date;
|
92908
|
-
updatedAt: Date;
|
92909
|
-
deletedAt: Date | null;
|
92910
|
-
userId: string | null;
|
92911
|
-
sipServerUrl: string;
|
92912
|
-
sipUserName: string;
|
92913
|
-
webphoneLoginUser: string;
|
92914
|
-
extensionId: string | null;
|
92915
|
-
extensionName: string;
|
92916
|
-
telephonySignature: string | null;
|
92917
|
-
};
|
92918
|
-
};
|
92919
|
-
metadata?: any;
|
92920
|
-
template?: any;
|
92921
|
-
}, {
|
92922
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
92923
|
-
message: string;
|
92924
|
-
id: string;
|
92925
|
-
url: string;
|
92926
|
-
direction: "incoming" | "outgoing" | "system";
|
92927
|
-
createdAt: Date;
|
92928
|
-
updatedAt: Date;
|
92929
|
-
deletedAt: Date | null;
|
92930
|
-
actor: {
|
92931
|
-
id: string;
|
92932
|
-
address: string | null;
|
92933
|
-
name: string;
|
92934
|
-
email: string;
|
92935
|
-
createdAt: Date;
|
92936
|
-
updatedAt: Date;
|
92937
|
-
deletedAt: Date | null;
|
92938
|
-
emailVerifiedAt: Date | null;
|
92939
|
-
password: string;
|
92940
|
-
phone: string | null;
|
92941
|
-
notificationCount: number | null;
|
92942
|
-
roles: {
|
92943
|
-
id: string;
|
92944
|
-
description: string | null;
|
92945
|
-
createdAt: Date;
|
92946
|
-
updatedAt: Date;
|
92947
|
-
deletedAt: Date | null;
|
92948
|
-
systemName: string;
|
92949
|
-
displayName: string;
|
92950
|
-
permissions: {
|
92951
|
-
id: string;
|
92952
|
-
description: string | null;
|
92953
|
-
createdAt: Date;
|
92954
|
-
updatedAt: Date;
|
92955
|
-
deletedAt: Date | null;
|
92956
|
-
systemName: string;
|
92957
|
-
displayName: string;
|
92958
|
-
}[];
|
92959
|
-
}[];
|
92960
|
-
extension: {
|
92961
|
-
id: string;
|
92962
|
-
createdAt: Date;
|
92963
|
-
updatedAt: Date;
|
92964
|
-
deletedAt: Date | null;
|
92965
|
-
userId: string | null;
|
92966
|
-
sipServerUrl: string;
|
92967
|
-
sipUserName: string;
|
92968
|
-
webphoneLoginUser: string;
|
92969
|
-
extensionId: string | null;
|
92970
|
-
extensionName: string;
|
92971
|
-
telephonySignature: string | null;
|
92972
|
-
};
|
92973
|
-
};
|
92974
|
-
platformId: string;
|
92975
92931
|
assignee: {
|
92976
92932
|
id: string;
|
92977
92933
|
address: string | null;
|
@@ -93022,18 +92978,168 @@ export declare const platformContract: {
|
|
93022
92978
|
locale: "" | "th" | "mm" | "en";
|
93023
92979
|
previewUrl: string;
|
93024
92980
|
imageSetId: string;
|
93025
|
-
|
93026
|
-
id: string;
|
93027
|
-
|
93028
|
-
|
93029
|
-
|
93030
|
-
|
93031
|
-
|
93032
|
-
|
93033
|
-
|
93034
|
-
|
93035
|
-
|
93036
|
-
|
92981
|
+
sender: {
|
92982
|
+
id: string;
|
92983
|
+
address: string | null;
|
92984
|
+
name: string;
|
92985
|
+
email: string;
|
92986
|
+
createdAt: Date;
|
92987
|
+
updatedAt: Date;
|
92988
|
+
deletedAt: Date | null;
|
92989
|
+
emailVerifiedAt: Date | null;
|
92990
|
+
password: string;
|
92991
|
+
phone: string | null;
|
92992
|
+
notificationCount: number | null;
|
92993
|
+
roles: {
|
92994
|
+
id: string;
|
92995
|
+
description: string | null;
|
92996
|
+
createdAt: Date;
|
92997
|
+
updatedAt: Date;
|
92998
|
+
deletedAt: Date | null;
|
92999
|
+
systemName: string;
|
93000
|
+
displayName: string;
|
93001
|
+
permissions: {
|
93002
|
+
id: string;
|
93003
|
+
description: string | null;
|
93004
|
+
createdAt: Date;
|
93005
|
+
updatedAt: Date;
|
93006
|
+
deletedAt: Date | null;
|
93007
|
+
systemName: string;
|
93008
|
+
displayName: string;
|
93009
|
+
}[];
|
93010
|
+
}[];
|
93011
|
+
extension: {
|
93012
|
+
id: string;
|
93013
|
+
createdAt: Date;
|
93014
|
+
updatedAt: Date;
|
93015
|
+
deletedAt: Date | null;
|
93016
|
+
userId: string | null;
|
93017
|
+
sipServerUrl: string;
|
93018
|
+
sipUserName: string;
|
93019
|
+
webphoneLoginUser: string;
|
93020
|
+
extensionId: string | null;
|
93021
|
+
extensionName: string;
|
93022
|
+
telephonySignature: string | null;
|
93023
|
+
};
|
93024
|
+
};
|
93025
|
+
metadata?: any;
|
93026
|
+
template?: any;
|
93027
|
+
}, {
|
93028
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
93029
|
+
message: string;
|
93030
|
+
id: string;
|
93031
|
+
url: string;
|
93032
|
+
direction: "incoming" | "outgoing" | "system";
|
93033
|
+
createdAt: Date;
|
93034
|
+
updatedAt: Date;
|
93035
|
+
deletedAt: Date | null;
|
93036
|
+
actor: {
|
93037
|
+
id: string;
|
93038
|
+
address: string | null;
|
93039
|
+
name: string;
|
93040
|
+
email: string;
|
93041
|
+
createdAt: Date;
|
93042
|
+
updatedAt: Date;
|
93043
|
+
deletedAt: Date | null;
|
93044
|
+
emailVerifiedAt: Date | null;
|
93045
|
+
password: string;
|
93046
|
+
phone: string | null;
|
93047
|
+
notificationCount: number | null;
|
93048
|
+
roles: {
|
93049
|
+
id: string;
|
93050
|
+
description: string | null;
|
93051
|
+
createdAt: Date;
|
93052
|
+
updatedAt: Date;
|
93053
|
+
deletedAt: Date | null;
|
93054
|
+
systemName: string;
|
93055
|
+
displayName: string;
|
93056
|
+
permissions: {
|
93057
|
+
id: string;
|
93058
|
+
description: string | null;
|
93059
|
+
createdAt: Date;
|
93060
|
+
updatedAt: Date;
|
93061
|
+
deletedAt: Date | null;
|
93062
|
+
systemName: string;
|
93063
|
+
displayName: string;
|
93064
|
+
}[];
|
93065
|
+
}[];
|
93066
|
+
extension: {
|
93067
|
+
id: string;
|
93068
|
+
createdAt: Date;
|
93069
|
+
updatedAt: Date;
|
93070
|
+
deletedAt: Date | null;
|
93071
|
+
userId: string | null;
|
93072
|
+
sipServerUrl: string;
|
93073
|
+
sipUserName: string;
|
93074
|
+
webphoneLoginUser: string;
|
93075
|
+
extensionId: string | null;
|
93076
|
+
extensionName: string;
|
93077
|
+
telephonySignature: string | null;
|
93078
|
+
};
|
93079
|
+
};
|
93080
|
+
platformId: string;
|
93081
|
+
upload: {
|
93082
|
+
id: string;
|
93083
|
+
createdAt: Date;
|
93084
|
+
updatedAt: Date;
|
93085
|
+
deletedAt: Date | null;
|
93086
|
+
fileName: string;
|
93087
|
+
fileKey: string;
|
93088
|
+
bucketName: string;
|
93089
|
+
fileSize: number;
|
93090
|
+
fileUrl: string | null;
|
93091
|
+
status?: string | undefined;
|
93092
|
+
};
|
93093
|
+
assignee: {
|
93094
|
+
id: string;
|
93095
|
+
address: string | null;
|
93096
|
+
name: string;
|
93097
|
+
email: string;
|
93098
|
+
createdAt: Date;
|
93099
|
+
updatedAt: Date;
|
93100
|
+
deletedAt: Date | null;
|
93101
|
+
emailVerifiedAt: Date | null;
|
93102
|
+
password: string;
|
93103
|
+
phone: string | null;
|
93104
|
+
notificationCount: number | null;
|
93105
|
+
roles: {
|
93106
|
+
id: string;
|
93107
|
+
description: string | null;
|
93108
|
+
createdAt: Date;
|
93109
|
+
updatedAt: Date;
|
93110
|
+
deletedAt: Date | null;
|
93111
|
+
systemName: string;
|
93112
|
+
displayName: string;
|
93113
|
+
permissions: {
|
93114
|
+
id: string;
|
93115
|
+
description: string | null;
|
93116
|
+
createdAt: Date;
|
93117
|
+
updatedAt: Date;
|
93118
|
+
deletedAt: Date | null;
|
93119
|
+
systemName: string;
|
93120
|
+
displayName: string;
|
93121
|
+
}[];
|
93122
|
+
}[];
|
93123
|
+
extension: {
|
93124
|
+
id: string;
|
93125
|
+
createdAt: Date;
|
93126
|
+
updatedAt: Date;
|
93127
|
+
deletedAt: Date | null;
|
93128
|
+
userId: string | null;
|
93129
|
+
sipServerUrl: string;
|
93130
|
+
sipUserName: string;
|
93131
|
+
webphoneLoginUser: string;
|
93132
|
+
extensionId: string | null;
|
93133
|
+
extensionName: string;
|
93134
|
+
telephonySignature: string | null;
|
93135
|
+
};
|
93136
|
+
};
|
93137
|
+
readAt: Date;
|
93138
|
+
platformMessageId: string;
|
93139
|
+
replyPlatformMessageId: string;
|
93140
|
+
locale: "" | "th" | "mm" | "en";
|
93141
|
+
previewUrl: string;
|
93142
|
+
imageSetId: string;
|
93037
93143
|
sender: {
|
93038
93144
|
id: string;
|
93039
93145
|
address: string | null;
|
@@ -93747,6 +93853,18 @@ export declare const platformContract: {
|
|
93747
93853
|
};
|
93748
93854
|
};
|
93749
93855
|
platformId: string;
|
93856
|
+
upload: {
|
93857
|
+
id: string;
|
93858
|
+
createdAt: Date;
|
93859
|
+
updatedAt: Date;
|
93860
|
+
deletedAt: Date | null;
|
93861
|
+
fileName: string;
|
93862
|
+
fileKey: string;
|
93863
|
+
bucketName: string;
|
93864
|
+
fileSize: number;
|
93865
|
+
fileUrl: string | null;
|
93866
|
+
status?: string | undefined;
|
93867
|
+
};
|
93750
93868
|
assignee: {
|
93751
93869
|
id: string;
|
93752
93870
|
address: string | null;
|
@@ -94110,18 +94228,6 @@ export declare const platformContract: {
|
|
94110
94228
|
locale: "" | "th" | "mm" | "en";
|
94111
94229
|
previewUrl: string;
|
94112
94230
|
imageSetId: string;
|
94113
|
-
upload: {
|
94114
|
-
id: string;
|
94115
|
-
createdAt: Date;
|
94116
|
-
updatedAt: Date;
|
94117
|
-
deletedAt: Date | null;
|
94118
|
-
fileName: string;
|
94119
|
-
fileKey: string;
|
94120
|
-
bucketName: string;
|
94121
|
-
fileSize: number;
|
94122
|
-
fileUrl: string | null;
|
94123
|
-
status?: string | undefined;
|
94124
|
-
};
|
94125
94231
|
repliedMessage: {
|
94126
94232
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
94127
94233
|
message: string;
|
@@ -94176,6 +94282,18 @@ export declare const platformContract: {
|
|
94176
94282
|
};
|
94177
94283
|
};
|
94178
94284
|
platformId: string;
|
94285
|
+
upload: {
|
94286
|
+
id: string;
|
94287
|
+
createdAt: Date;
|
94288
|
+
updatedAt: Date;
|
94289
|
+
deletedAt: Date | null;
|
94290
|
+
fileName: string;
|
94291
|
+
fileKey: string;
|
94292
|
+
bucketName: string;
|
94293
|
+
fileSize: number;
|
94294
|
+
fileUrl: string | null;
|
94295
|
+
status?: string | undefined;
|
94296
|
+
};
|
94179
94297
|
assignee: {
|
94180
94298
|
id: string;
|
94181
94299
|
address: string | null;
|
@@ -94226,18 +94344,6 @@ export declare const platformContract: {
|
|
94226
94344
|
locale: "" | "th" | "mm" | "en";
|
94227
94345
|
previewUrl: string;
|
94228
94346
|
imageSetId: string;
|
94229
|
-
upload: {
|
94230
|
-
id: string;
|
94231
|
-
createdAt: Date;
|
94232
|
-
updatedAt: Date;
|
94233
|
-
deletedAt: Date | null;
|
94234
|
-
fileName: string;
|
94235
|
-
fileKey: string;
|
94236
|
-
bucketName: string;
|
94237
|
-
fileSize: number;
|
94238
|
-
fileUrl: string | null;
|
94239
|
-
status?: string | undefined;
|
94240
|
-
};
|
94241
94347
|
sender: {
|
94242
94348
|
id: string;
|
94243
94349
|
address: string | null;
|
@@ -94385,6 +94491,18 @@ export declare const platformContract: {
|
|
94385
94491
|
};
|
94386
94492
|
};
|
94387
94493
|
platformId: string;
|
94494
|
+
upload: {
|
94495
|
+
id: string;
|
94496
|
+
createdAt: Date;
|
94497
|
+
updatedAt: Date;
|
94498
|
+
deletedAt: Date | null;
|
94499
|
+
fileName: string;
|
94500
|
+
fileKey: string;
|
94501
|
+
bucketName: string;
|
94502
|
+
fileSize: number;
|
94503
|
+
fileUrl: string | null;
|
94504
|
+
status?: string | undefined;
|
94505
|
+
};
|
94388
94506
|
assignee: {
|
94389
94507
|
id: string;
|
94390
94508
|
address: string | null;
|
@@ -94748,18 +94866,6 @@ export declare const platformContract: {
|
|
94748
94866
|
locale: "" | "th" | "mm" | "en";
|
94749
94867
|
previewUrl: string;
|
94750
94868
|
imageSetId: string;
|
94751
|
-
upload: {
|
94752
|
-
id: string;
|
94753
|
-
createdAt: Date;
|
94754
|
-
updatedAt: Date;
|
94755
|
-
deletedAt: Date | null;
|
94756
|
-
fileName: string;
|
94757
|
-
fileKey: string;
|
94758
|
-
bucketName: string;
|
94759
|
-
fileSize: number;
|
94760
|
-
fileUrl: string | null;
|
94761
|
-
status?: string | undefined;
|
94762
|
-
};
|
94763
94869
|
repliedMessage: {
|
94764
94870
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
94765
94871
|
message: string;
|
@@ -94814,6 +94920,18 @@ export declare const platformContract: {
|
|
94814
94920
|
};
|
94815
94921
|
};
|
94816
94922
|
platformId: string;
|
94923
|
+
upload: {
|
94924
|
+
id: string;
|
94925
|
+
createdAt: Date;
|
94926
|
+
updatedAt: Date;
|
94927
|
+
deletedAt: Date | null;
|
94928
|
+
fileName: string;
|
94929
|
+
fileKey: string;
|
94930
|
+
bucketName: string;
|
94931
|
+
fileSize: number;
|
94932
|
+
fileUrl: string | null;
|
94933
|
+
status?: string | undefined;
|
94934
|
+
};
|
94817
94935
|
assignee: {
|
94818
94936
|
id: string;
|
94819
94937
|
address: string | null;
|
@@ -94864,18 +94982,6 @@ export declare const platformContract: {
|
|
94864
94982
|
locale: "" | "th" | "mm" | "en";
|
94865
94983
|
previewUrl: string;
|
94866
94984
|
imageSetId: string;
|
94867
|
-
upload: {
|
94868
|
-
id: string;
|
94869
|
-
createdAt: Date;
|
94870
|
-
updatedAt: Date;
|
94871
|
-
deletedAt: Date | null;
|
94872
|
-
fileName: string;
|
94873
|
-
fileKey: string;
|
94874
|
-
bucketName: string;
|
94875
|
-
fileSize: number;
|
94876
|
-
fileUrl: string | null;
|
94877
|
-
status?: string | undefined;
|
94878
|
-
};
|
94879
94985
|
sender: {
|
94880
94986
|
id: string;
|
94881
94987
|
address: string | null;
|
@@ -95025,6 +95131,18 @@ export declare const platformContract: {
|
|
95025
95131
|
};
|
95026
95132
|
};
|
95027
95133
|
platformId: string;
|
95134
|
+
upload: {
|
95135
|
+
id: string;
|
95136
|
+
createdAt: Date;
|
95137
|
+
updatedAt: Date;
|
95138
|
+
deletedAt: Date | null;
|
95139
|
+
fileName: string;
|
95140
|
+
fileKey: string;
|
95141
|
+
bucketName: string;
|
95142
|
+
fileSize: number;
|
95143
|
+
fileUrl: string | null;
|
95144
|
+
status?: string | undefined;
|
95145
|
+
};
|
95028
95146
|
assignee: {
|
95029
95147
|
id: string;
|
95030
95148
|
address: string | null;
|
@@ -95388,18 +95506,6 @@ export declare const platformContract: {
|
|
95388
95506
|
locale: "" | "th" | "mm" | "en";
|
95389
95507
|
previewUrl: string;
|
95390
95508
|
imageSetId: string;
|
95391
|
-
upload: {
|
95392
|
-
id: string;
|
95393
|
-
createdAt: Date;
|
95394
|
-
updatedAt: Date;
|
95395
|
-
deletedAt: Date | null;
|
95396
|
-
fileName: string;
|
95397
|
-
fileKey: string;
|
95398
|
-
bucketName: string;
|
95399
|
-
fileSize: number;
|
95400
|
-
fileUrl: string | null;
|
95401
|
-
status?: string | undefined;
|
95402
|
-
};
|
95403
95509
|
repliedMessage: {
|
95404
95510
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
95405
95511
|
message: string;
|
@@ -95454,6 +95560,18 @@ export declare const platformContract: {
|
|
95454
95560
|
};
|
95455
95561
|
};
|
95456
95562
|
platformId: string;
|
95563
|
+
upload: {
|
95564
|
+
id: string;
|
95565
|
+
createdAt: Date;
|
95566
|
+
updatedAt: Date;
|
95567
|
+
deletedAt: Date | null;
|
95568
|
+
fileName: string;
|
95569
|
+
fileKey: string;
|
95570
|
+
bucketName: string;
|
95571
|
+
fileSize: number;
|
95572
|
+
fileUrl: string | null;
|
95573
|
+
status?: string | undefined;
|
95574
|
+
};
|
95457
95575
|
assignee: {
|
95458
95576
|
id: string;
|
95459
95577
|
address: string | null;
|
@@ -95504,18 +95622,6 @@ export declare const platformContract: {
|
|
95504
95622
|
locale: "" | "th" | "mm" | "en";
|
95505
95623
|
previewUrl: string;
|
95506
95624
|
imageSetId: string;
|
95507
|
-
upload: {
|
95508
|
-
id: string;
|
95509
|
-
createdAt: Date;
|
95510
|
-
updatedAt: Date;
|
95511
|
-
deletedAt: Date | null;
|
95512
|
-
fileName: string;
|
95513
|
-
fileKey: string;
|
95514
|
-
bucketName: string;
|
95515
|
-
fileSize: number;
|
95516
|
-
fileUrl: string | null;
|
95517
|
-
status?: string | undefined;
|
95518
|
-
};
|
95519
95625
|
sender: {
|
95520
95626
|
id: string;
|
95521
95627
|
address: string | null;
|
@@ -95666,6 +95772,18 @@ export declare const platformContract: {
|
|
95666
95772
|
};
|
95667
95773
|
};
|
95668
95774
|
platformId: string;
|
95775
|
+
upload: {
|
95776
|
+
id: string;
|
95777
|
+
createdAt: Date;
|
95778
|
+
updatedAt: Date;
|
95779
|
+
deletedAt: Date | null;
|
95780
|
+
fileName: string;
|
95781
|
+
fileKey: string;
|
95782
|
+
bucketName: string;
|
95783
|
+
fileSize: number;
|
95784
|
+
fileUrl: string | null;
|
95785
|
+
status?: string | undefined;
|
95786
|
+
};
|
95669
95787
|
assignee: {
|
95670
95788
|
id: string;
|
95671
95789
|
address: string | null;
|
@@ -96029,18 +96147,6 @@ export declare const platformContract: {
|
|
96029
96147
|
locale: "" | "th" | "mm" | "en";
|
96030
96148
|
previewUrl: string;
|
96031
96149
|
imageSetId: string;
|
96032
|
-
upload: {
|
96033
|
-
id: string;
|
96034
|
-
createdAt: Date;
|
96035
|
-
updatedAt: Date;
|
96036
|
-
deletedAt: Date | null;
|
96037
|
-
fileName: string;
|
96038
|
-
fileKey: string;
|
96039
|
-
bucketName: string;
|
96040
|
-
fileSize: number;
|
96041
|
-
fileUrl: string | null;
|
96042
|
-
status?: string | undefined;
|
96043
|
-
};
|
96044
96150
|
repliedMessage: {
|
96045
96151
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
96046
96152
|
message: string;
|
@@ -96095,6 +96201,18 @@ export declare const platformContract: {
|
|
96095
96201
|
};
|
96096
96202
|
};
|
96097
96203
|
platformId: string;
|
96204
|
+
upload: {
|
96205
|
+
id: string;
|
96206
|
+
createdAt: Date;
|
96207
|
+
updatedAt: Date;
|
96208
|
+
deletedAt: Date | null;
|
96209
|
+
fileName: string;
|
96210
|
+
fileKey: string;
|
96211
|
+
bucketName: string;
|
96212
|
+
fileSize: number;
|
96213
|
+
fileUrl: string | null;
|
96214
|
+
status?: string | undefined;
|
96215
|
+
};
|
96098
96216
|
assignee: {
|
96099
96217
|
id: string;
|
96100
96218
|
address: string | null;
|
@@ -96145,18 +96263,6 @@ export declare const platformContract: {
|
|
96145
96263
|
locale: "" | "th" | "mm" | "en";
|
96146
96264
|
previewUrl: string;
|
96147
96265
|
imageSetId: string;
|
96148
|
-
upload: {
|
96149
|
-
id: string;
|
96150
|
-
createdAt: Date;
|
96151
|
-
updatedAt: Date;
|
96152
|
-
deletedAt: Date | null;
|
96153
|
-
fileName: string;
|
96154
|
-
fileKey: string;
|
96155
|
-
bucketName: string;
|
96156
|
-
fileSize: number;
|
96157
|
-
fileUrl: string | null;
|
96158
|
-
status?: string | undefined;
|
96159
|
-
};
|
96160
96266
|
sender: {
|
96161
96267
|
id: string;
|
96162
96268
|
address: string | null;
|
@@ -101371,56 +101477,6 @@ export declare const platformContract: {
|
|
101371
101477
|
};
|
101372
101478
|
};
|
101373
101479
|
platformId: string;
|
101374
|
-
assignee: {
|
101375
|
-
id: string;
|
101376
|
-
address: string | null;
|
101377
|
-
name: string;
|
101378
|
-
email: string;
|
101379
|
-
createdAt: Date;
|
101380
|
-
updatedAt: Date;
|
101381
|
-
deletedAt: Date | null;
|
101382
|
-
emailVerifiedAt: Date | null;
|
101383
|
-
password: string;
|
101384
|
-
phone: string | null;
|
101385
|
-
notificationCount: number | null;
|
101386
|
-
roles: {
|
101387
|
-
id: string;
|
101388
|
-
description: string | null;
|
101389
|
-
createdAt: Date;
|
101390
|
-
updatedAt: Date;
|
101391
|
-
deletedAt: Date | null;
|
101392
|
-
systemName: string;
|
101393
|
-
displayName: string;
|
101394
|
-
permissions: {
|
101395
|
-
id: string;
|
101396
|
-
description: string | null;
|
101397
|
-
createdAt: Date;
|
101398
|
-
updatedAt: Date;
|
101399
|
-
deletedAt: Date | null;
|
101400
|
-
systemName: string;
|
101401
|
-
displayName: string;
|
101402
|
-
}[];
|
101403
|
-
}[];
|
101404
|
-
extension: {
|
101405
|
-
id: string;
|
101406
|
-
createdAt: Date;
|
101407
|
-
updatedAt: Date;
|
101408
|
-
deletedAt: Date | null;
|
101409
|
-
userId: string | null;
|
101410
|
-
sipServerUrl: string;
|
101411
|
-
sipUserName: string;
|
101412
|
-
webphoneLoginUser: string;
|
101413
|
-
extensionId: string | null;
|
101414
|
-
extensionName: string;
|
101415
|
-
telephonySignature: string | null;
|
101416
|
-
};
|
101417
|
-
};
|
101418
|
-
readAt: Date;
|
101419
|
-
platformMessageId: string;
|
101420
|
-
replyPlatformMessageId: string;
|
101421
|
-
locale: "" | "th" | "mm" | "en";
|
101422
|
-
previewUrl: string;
|
101423
|
-
imageSetId: string;
|
101424
101480
|
upload: {
|
101425
101481
|
id: string;
|
101426
101482
|
createdAt: Date;
|
@@ -101433,106 +101489,6 @@ export declare const platformContract: {
|
|
101433
101489
|
fileUrl: string | null;
|
101434
101490
|
status?: string | undefined;
|
101435
101491
|
};
|
101436
|
-
sender: {
|
101437
|
-
id: string;
|
101438
|
-
address: string | null;
|
101439
|
-
name: string;
|
101440
|
-
email: string;
|
101441
|
-
createdAt: Date;
|
101442
|
-
updatedAt: Date;
|
101443
|
-
deletedAt: Date | null;
|
101444
|
-
emailVerifiedAt: Date | null;
|
101445
|
-
password: string;
|
101446
|
-
phone: string | null;
|
101447
|
-
notificationCount: number | null;
|
101448
|
-
roles: {
|
101449
|
-
id: string;
|
101450
|
-
description: string | null;
|
101451
|
-
createdAt: Date;
|
101452
|
-
updatedAt: Date;
|
101453
|
-
deletedAt: Date | null;
|
101454
|
-
systemName: string;
|
101455
|
-
displayName: string;
|
101456
|
-
permissions: {
|
101457
|
-
id: string;
|
101458
|
-
description: string | null;
|
101459
|
-
createdAt: Date;
|
101460
|
-
updatedAt: Date;
|
101461
|
-
deletedAt: Date | null;
|
101462
|
-
systemName: string;
|
101463
|
-
displayName: string;
|
101464
|
-
}[];
|
101465
|
-
}[];
|
101466
|
-
extension: {
|
101467
|
-
id: string;
|
101468
|
-
createdAt: Date;
|
101469
|
-
updatedAt: Date;
|
101470
|
-
deletedAt: Date | null;
|
101471
|
-
userId: string | null;
|
101472
|
-
sipServerUrl: string;
|
101473
|
-
sipUserName: string;
|
101474
|
-
webphoneLoginUser: string;
|
101475
|
-
extensionId: string | null;
|
101476
|
-
extensionName: string;
|
101477
|
-
telephonySignature: string | null;
|
101478
|
-
};
|
101479
|
-
};
|
101480
|
-
metadata?: any;
|
101481
|
-
template?: any;
|
101482
|
-
}, {
|
101483
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
101484
|
-
message: string;
|
101485
|
-
id: string;
|
101486
|
-
url: string;
|
101487
|
-
direction: "incoming" | "outgoing" | "system";
|
101488
|
-
createdAt: Date;
|
101489
|
-
updatedAt: Date;
|
101490
|
-
deletedAt: Date | null;
|
101491
|
-
actor: {
|
101492
|
-
id: string;
|
101493
|
-
address: string | null;
|
101494
|
-
name: string;
|
101495
|
-
email: string;
|
101496
|
-
createdAt: Date;
|
101497
|
-
updatedAt: Date;
|
101498
|
-
deletedAt: Date | null;
|
101499
|
-
emailVerifiedAt: Date | null;
|
101500
|
-
password: string;
|
101501
|
-
phone: string | null;
|
101502
|
-
notificationCount: number | null;
|
101503
|
-
roles: {
|
101504
|
-
id: string;
|
101505
|
-
description: string | null;
|
101506
|
-
createdAt: Date;
|
101507
|
-
updatedAt: Date;
|
101508
|
-
deletedAt: Date | null;
|
101509
|
-
systemName: string;
|
101510
|
-
displayName: string;
|
101511
|
-
permissions: {
|
101512
|
-
id: string;
|
101513
|
-
description: string | null;
|
101514
|
-
createdAt: Date;
|
101515
|
-
updatedAt: Date;
|
101516
|
-
deletedAt: Date | null;
|
101517
|
-
systemName: string;
|
101518
|
-
displayName: string;
|
101519
|
-
}[];
|
101520
|
-
}[];
|
101521
|
-
extension: {
|
101522
|
-
id: string;
|
101523
|
-
createdAt: Date;
|
101524
|
-
updatedAt: Date;
|
101525
|
-
deletedAt: Date | null;
|
101526
|
-
userId: string | null;
|
101527
|
-
sipServerUrl: string;
|
101528
|
-
sipUserName: string;
|
101529
|
-
webphoneLoginUser: string;
|
101530
|
-
extensionId: string | null;
|
101531
|
-
extensionName: string;
|
101532
|
-
telephonySignature: string | null;
|
101533
|
-
};
|
101534
|
-
};
|
101535
|
-
platformId: string;
|
101536
101492
|
assignee: {
|
101537
101493
|
id: string;
|
101538
101494
|
address: string | null;
|
@@ -101583,18 +101539,168 @@ export declare const platformContract: {
|
|
101583
101539
|
locale: "" | "th" | "mm" | "en";
|
101584
101540
|
previewUrl: string;
|
101585
101541
|
imageSetId: string;
|
101586
|
-
|
101587
|
-
id: string;
|
101588
|
-
|
101589
|
-
|
101590
|
-
|
101591
|
-
|
101592
|
-
|
101593
|
-
|
101594
|
-
|
101595
|
-
|
101596
|
-
|
101597
|
-
|
101542
|
+
sender: {
|
101543
|
+
id: string;
|
101544
|
+
address: string | null;
|
101545
|
+
name: string;
|
101546
|
+
email: string;
|
101547
|
+
createdAt: Date;
|
101548
|
+
updatedAt: Date;
|
101549
|
+
deletedAt: Date | null;
|
101550
|
+
emailVerifiedAt: Date | null;
|
101551
|
+
password: string;
|
101552
|
+
phone: string | null;
|
101553
|
+
notificationCount: number | null;
|
101554
|
+
roles: {
|
101555
|
+
id: string;
|
101556
|
+
description: string | null;
|
101557
|
+
createdAt: Date;
|
101558
|
+
updatedAt: Date;
|
101559
|
+
deletedAt: Date | null;
|
101560
|
+
systemName: string;
|
101561
|
+
displayName: string;
|
101562
|
+
permissions: {
|
101563
|
+
id: string;
|
101564
|
+
description: string | null;
|
101565
|
+
createdAt: Date;
|
101566
|
+
updatedAt: Date;
|
101567
|
+
deletedAt: Date | null;
|
101568
|
+
systemName: string;
|
101569
|
+
displayName: string;
|
101570
|
+
}[];
|
101571
|
+
}[];
|
101572
|
+
extension: {
|
101573
|
+
id: string;
|
101574
|
+
createdAt: Date;
|
101575
|
+
updatedAt: Date;
|
101576
|
+
deletedAt: Date | null;
|
101577
|
+
userId: string | null;
|
101578
|
+
sipServerUrl: string;
|
101579
|
+
sipUserName: string;
|
101580
|
+
webphoneLoginUser: string;
|
101581
|
+
extensionId: string | null;
|
101582
|
+
extensionName: string;
|
101583
|
+
telephonySignature: string | null;
|
101584
|
+
};
|
101585
|
+
};
|
101586
|
+
metadata?: any;
|
101587
|
+
template?: any;
|
101588
|
+
}, {
|
101589
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
101590
|
+
message: string;
|
101591
|
+
id: string;
|
101592
|
+
url: string;
|
101593
|
+
direction: "incoming" | "outgoing" | "system";
|
101594
|
+
createdAt: Date;
|
101595
|
+
updatedAt: Date;
|
101596
|
+
deletedAt: Date | null;
|
101597
|
+
actor: {
|
101598
|
+
id: string;
|
101599
|
+
address: string | null;
|
101600
|
+
name: string;
|
101601
|
+
email: string;
|
101602
|
+
createdAt: Date;
|
101603
|
+
updatedAt: Date;
|
101604
|
+
deletedAt: Date | null;
|
101605
|
+
emailVerifiedAt: Date | null;
|
101606
|
+
password: string;
|
101607
|
+
phone: string | null;
|
101608
|
+
notificationCount: number | null;
|
101609
|
+
roles: {
|
101610
|
+
id: string;
|
101611
|
+
description: string | null;
|
101612
|
+
createdAt: Date;
|
101613
|
+
updatedAt: Date;
|
101614
|
+
deletedAt: Date | null;
|
101615
|
+
systemName: string;
|
101616
|
+
displayName: string;
|
101617
|
+
permissions: {
|
101618
|
+
id: string;
|
101619
|
+
description: string | null;
|
101620
|
+
createdAt: Date;
|
101621
|
+
updatedAt: Date;
|
101622
|
+
deletedAt: Date | null;
|
101623
|
+
systemName: string;
|
101624
|
+
displayName: string;
|
101625
|
+
}[];
|
101626
|
+
}[];
|
101627
|
+
extension: {
|
101628
|
+
id: string;
|
101629
|
+
createdAt: Date;
|
101630
|
+
updatedAt: Date;
|
101631
|
+
deletedAt: Date | null;
|
101632
|
+
userId: string | null;
|
101633
|
+
sipServerUrl: string;
|
101634
|
+
sipUserName: string;
|
101635
|
+
webphoneLoginUser: string;
|
101636
|
+
extensionId: string | null;
|
101637
|
+
extensionName: string;
|
101638
|
+
telephonySignature: string | null;
|
101639
|
+
};
|
101640
|
+
};
|
101641
|
+
platformId: string;
|
101642
|
+
upload: {
|
101643
|
+
id: string;
|
101644
|
+
createdAt: Date;
|
101645
|
+
updatedAt: Date;
|
101646
|
+
deletedAt: Date | null;
|
101647
|
+
fileName: string;
|
101648
|
+
fileKey: string;
|
101649
|
+
bucketName: string;
|
101650
|
+
fileSize: number;
|
101651
|
+
fileUrl: string | null;
|
101652
|
+
status?: string | undefined;
|
101653
|
+
};
|
101654
|
+
assignee: {
|
101655
|
+
id: string;
|
101656
|
+
address: string | null;
|
101657
|
+
name: string;
|
101658
|
+
email: string;
|
101659
|
+
createdAt: Date;
|
101660
|
+
updatedAt: Date;
|
101661
|
+
deletedAt: Date | null;
|
101662
|
+
emailVerifiedAt: Date | null;
|
101663
|
+
password: string;
|
101664
|
+
phone: string | null;
|
101665
|
+
notificationCount: number | null;
|
101666
|
+
roles: {
|
101667
|
+
id: string;
|
101668
|
+
description: string | null;
|
101669
|
+
createdAt: Date;
|
101670
|
+
updatedAt: Date;
|
101671
|
+
deletedAt: Date | null;
|
101672
|
+
systemName: string;
|
101673
|
+
displayName: string;
|
101674
|
+
permissions: {
|
101675
|
+
id: string;
|
101676
|
+
description: string | null;
|
101677
|
+
createdAt: Date;
|
101678
|
+
updatedAt: Date;
|
101679
|
+
deletedAt: Date | null;
|
101680
|
+
systemName: string;
|
101681
|
+
displayName: string;
|
101682
|
+
}[];
|
101683
|
+
}[];
|
101684
|
+
extension: {
|
101685
|
+
id: string;
|
101686
|
+
createdAt: Date;
|
101687
|
+
updatedAt: Date;
|
101688
|
+
deletedAt: Date | null;
|
101689
|
+
userId: string | null;
|
101690
|
+
sipServerUrl: string;
|
101691
|
+
sipUserName: string;
|
101692
|
+
webphoneLoginUser: string;
|
101693
|
+
extensionId: string | null;
|
101694
|
+
extensionName: string;
|
101695
|
+
telephonySignature: string | null;
|
101696
|
+
};
|
101697
|
+
};
|
101698
|
+
readAt: Date;
|
101699
|
+
platformMessageId: string;
|
101700
|
+
replyPlatformMessageId: string;
|
101701
|
+
locale: "" | "th" | "mm" | "en";
|
101702
|
+
previewUrl: string;
|
101703
|
+
imageSetId: string;
|
101598
101704
|
sender: {
|
101599
101705
|
id: string;
|
101600
101706
|
address: string | null;
|
@@ -102308,6 +102414,18 @@ export declare const platformContract: {
|
|
102308
102414
|
};
|
102309
102415
|
};
|
102310
102416
|
platformId: string;
|
102417
|
+
upload: {
|
102418
|
+
id: string;
|
102419
|
+
createdAt: Date;
|
102420
|
+
updatedAt: Date;
|
102421
|
+
deletedAt: Date | null;
|
102422
|
+
fileName: string;
|
102423
|
+
fileKey: string;
|
102424
|
+
bucketName: string;
|
102425
|
+
fileSize: number;
|
102426
|
+
fileUrl: string | null;
|
102427
|
+
status?: string | undefined;
|
102428
|
+
};
|
102311
102429
|
assignee: {
|
102312
102430
|
id: string;
|
102313
102431
|
address: string | null;
|
@@ -102671,18 +102789,6 @@ export declare const platformContract: {
|
|
102671
102789
|
locale: "" | "th" | "mm" | "en";
|
102672
102790
|
previewUrl: string;
|
102673
102791
|
imageSetId: string;
|
102674
|
-
upload: {
|
102675
|
-
id: string;
|
102676
|
-
createdAt: Date;
|
102677
|
-
updatedAt: Date;
|
102678
|
-
deletedAt: Date | null;
|
102679
|
-
fileName: string;
|
102680
|
-
fileKey: string;
|
102681
|
-
bucketName: string;
|
102682
|
-
fileSize: number;
|
102683
|
-
fileUrl: string | null;
|
102684
|
-
status?: string | undefined;
|
102685
|
-
};
|
102686
102792
|
repliedMessage: {
|
102687
102793
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
102688
102794
|
message: string;
|
@@ -102737,6 +102843,18 @@ export declare const platformContract: {
|
|
102737
102843
|
};
|
102738
102844
|
};
|
102739
102845
|
platformId: string;
|
102846
|
+
upload: {
|
102847
|
+
id: string;
|
102848
|
+
createdAt: Date;
|
102849
|
+
updatedAt: Date;
|
102850
|
+
deletedAt: Date | null;
|
102851
|
+
fileName: string;
|
102852
|
+
fileKey: string;
|
102853
|
+
bucketName: string;
|
102854
|
+
fileSize: number;
|
102855
|
+
fileUrl: string | null;
|
102856
|
+
status?: string | undefined;
|
102857
|
+
};
|
102740
102858
|
assignee: {
|
102741
102859
|
id: string;
|
102742
102860
|
address: string | null;
|
@@ -102787,18 +102905,6 @@ export declare const platformContract: {
|
|
102787
102905
|
locale: "" | "th" | "mm" | "en";
|
102788
102906
|
previewUrl: string;
|
102789
102907
|
imageSetId: string;
|
102790
|
-
upload: {
|
102791
|
-
id: string;
|
102792
|
-
createdAt: Date;
|
102793
|
-
updatedAt: Date;
|
102794
|
-
deletedAt: Date | null;
|
102795
|
-
fileName: string;
|
102796
|
-
fileKey: string;
|
102797
|
-
bucketName: string;
|
102798
|
-
fileSize: number;
|
102799
|
-
fileUrl: string | null;
|
102800
|
-
status?: string | undefined;
|
102801
|
-
};
|
102802
102908
|
sender: {
|
102803
102909
|
id: string;
|
102804
102910
|
address: string | null;
|
@@ -102946,6 +103052,18 @@ export declare const platformContract: {
|
|
102946
103052
|
};
|
102947
103053
|
};
|
102948
103054
|
platformId: string;
|
103055
|
+
upload: {
|
103056
|
+
id: string;
|
103057
|
+
createdAt: Date;
|
103058
|
+
updatedAt: Date;
|
103059
|
+
deletedAt: Date | null;
|
103060
|
+
fileName: string;
|
103061
|
+
fileKey: string;
|
103062
|
+
bucketName: string;
|
103063
|
+
fileSize: number;
|
103064
|
+
fileUrl: string | null;
|
103065
|
+
status?: string | undefined;
|
103066
|
+
};
|
102949
103067
|
assignee: {
|
102950
103068
|
id: string;
|
102951
103069
|
address: string | null;
|
@@ -103309,18 +103427,6 @@ export declare const platformContract: {
|
|
103309
103427
|
locale: "" | "th" | "mm" | "en";
|
103310
103428
|
previewUrl: string;
|
103311
103429
|
imageSetId: string;
|
103312
|
-
upload: {
|
103313
|
-
id: string;
|
103314
|
-
createdAt: Date;
|
103315
|
-
updatedAt: Date;
|
103316
|
-
deletedAt: Date | null;
|
103317
|
-
fileName: string;
|
103318
|
-
fileKey: string;
|
103319
|
-
bucketName: string;
|
103320
|
-
fileSize: number;
|
103321
|
-
fileUrl: string | null;
|
103322
|
-
status?: string | undefined;
|
103323
|
-
};
|
103324
103430
|
repliedMessage: {
|
103325
103431
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
103326
103432
|
message: string;
|
@@ -103375,6 +103481,18 @@ export declare const platformContract: {
|
|
103375
103481
|
};
|
103376
103482
|
};
|
103377
103483
|
platformId: string;
|
103484
|
+
upload: {
|
103485
|
+
id: string;
|
103486
|
+
createdAt: Date;
|
103487
|
+
updatedAt: Date;
|
103488
|
+
deletedAt: Date | null;
|
103489
|
+
fileName: string;
|
103490
|
+
fileKey: string;
|
103491
|
+
bucketName: string;
|
103492
|
+
fileSize: number;
|
103493
|
+
fileUrl: string | null;
|
103494
|
+
status?: string | undefined;
|
103495
|
+
};
|
103378
103496
|
assignee: {
|
103379
103497
|
id: string;
|
103380
103498
|
address: string | null;
|
@@ -103425,18 +103543,6 @@ export declare const platformContract: {
|
|
103425
103543
|
locale: "" | "th" | "mm" | "en";
|
103426
103544
|
previewUrl: string;
|
103427
103545
|
imageSetId: string;
|
103428
|
-
upload: {
|
103429
|
-
id: string;
|
103430
|
-
createdAt: Date;
|
103431
|
-
updatedAt: Date;
|
103432
|
-
deletedAt: Date | null;
|
103433
|
-
fileName: string;
|
103434
|
-
fileKey: string;
|
103435
|
-
bucketName: string;
|
103436
|
-
fileSize: number;
|
103437
|
-
fileUrl: string | null;
|
103438
|
-
status?: string | undefined;
|
103439
|
-
};
|
103440
103546
|
sender: {
|
103441
103547
|
id: string;
|
103442
103548
|
address: string | null;
|
@@ -103586,6 +103692,18 @@ export declare const platformContract: {
|
|
103586
103692
|
};
|
103587
103693
|
};
|
103588
103694
|
platformId: string;
|
103695
|
+
upload: {
|
103696
|
+
id: string;
|
103697
|
+
createdAt: Date;
|
103698
|
+
updatedAt: Date;
|
103699
|
+
deletedAt: Date | null;
|
103700
|
+
fileName: string;
|
103701
|
+
fileKey: string;
|
103702
|
+
bucketName: string;
|
103703
|
+
fileSize: number;
|
103704
|
+
fileUrl: string | null;
|
103705
|
+
status?: string | undefined;
|
103706
|
+
};
|
103589
103707
|
assignee: {
|
103590
103708
|
id: string;
|
103591
103709
|
address: string | null;
|
@@ -103949,18 +104067,6 @@ export declare const platformContract: {
|
|
103949
104067
|
locale: "" | "th" | "mm" | "en";
|
103950
104068
|
previewUrl: string;
|
103951
104069
|
imageSetId: string;
|
103952
|
-
upload: {
|
103953
|
-
id: string;
|
103954
|
-
createdAt: Date;
|
103955
|
-
updatedAt: Date;
|
103956
|
-
deletedAt: Date | null;
|
103957
|
-
fileName: string;
|
103958
|
-
fileKey: string;
|
103959
|
-
bucketName: string;
|
103960
|
-
fileSize: number;
|
103961
|
-
fileUrl: string | null;
|
103962
|
-
status?: string | undefined;
|
103963
|
-
};
|
103964
104070
|
repliedMessage: {
|
103965
104071
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
103966
104072
|
message: string;
|
@@ -104015,6 +104121,18 @@ export declare const platformContract: {
|
|
104015
104121
|
};
|
104016
104122
|
};
|
104017
104123
|
platformId: string;
|
104124
|
+
upload: {
|
104125
|
+
id: string;
|
104126
|
+
createdAt: Date;
|
104127
|
+
updatedAt: Date;
|
104128
|
+
deletedAt: Date | null;
|
104129
|
+
fileName: string;
|
104130
|
+
fileKey: string;
|
104131
|
+
bucketName: string;
|
104132
|
+
fileSize: number;
|
104133
|
+
fileUrl: string | null;
|
104134
|
+
status?: string | undefined;
|
104135
|
+
};
|
104018
104136
|
assignee: {
|
104019
104137
|
id: string;
|
104020
104138
|
address: string | null;
|
@@ -104065,18 +104183,6 @@ export declare const platformContract: {
|
|
104065
104183
|
locale: "" | "th" | "mm" | "en";
|
104066
104184
|
previewUrl: string;
|
104067
104185
|
imageSetId: string;
|
104068
|
-
upload: {
|
104069
|
-
id: string;
|
104070
|
-
createdAt: Date;
|
104071
|
-
updatedAt: Date;
|
104072
|
-
deletedAt: Date | null;
|
104073
|
-
fileName: string;
|
104074
|
-
fileKey: string;
|
104075
|
-
bucketName: string;
|
104076
|
-
fileSize: number;
|
104077
|
-
fileUrl: string | null;
|
104078
|
-
status?: string | undefined;
|
104079
|
-
};
|
104080
104186
|
sender: {
|
104081
104187
|
id: string;
|
104082
104188
|
address: string | null;
|
@@ -104227,6 +104333,18 @@ export declare const platformContract: {
|
|
104227
104333
|
};
|
104228
104334
|
};
|
104229
104335
|
platformId: string;
|
104336
|
+
upload: {
|
104337
|
+
id: string;
|
104338
|
+
createdAt: Date;
|
104339
|
+
updatedAt: Date;
|
104340
|
+
deletedAt: Date | null;
|
104341
|
+
fileName: string;
|
104342
|
+
fileKey: string;
|
104343
|
+
bucketName: string;
|
104344
|
+
fileSize: number;
|
104345
|
+
fileUrl: string | null;
|
104346
|
+
status?: string | undefined;
|
104347
|
+
};
|
104230
104348
|
assignee: {
|
104231
104349
|
id: string;
|
104232
104350
|
address: string | null;
|
@@ -104590,18 +104708,6 @@ export declare const platformContract: {
|
|
104590
104708
|
locale: "" | "th" | "mm" | "en";
|
104591
104709
|
previewUrl: string;
|
104592
104710
|
imageSetId: string;
|
104593
|
-
upload: {
|
104594
|
-
id: string;
|
104595
|
-
createdAt: Date;
|
104596
|
-
updatedAt: Date;
|
104597
|
-
deletedAt: Date | null;
|
104598
|
-
fileName: string;
|
104599
|
-
fileKey: string;
|
104600
|
-
bucketName: string;
|
104601
|
-
fileSize: number;
|
104602
|
-
fileUrl: string | null;
|
104603
|
-
status?: string | undefined;
|
104604
|
-
};
|
104605
104711
|
repliedMessage: {
|
104606
104712
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
104607
104713
|
message: string;
|
@@ -104656,6 +104762,18 @@ export declare const platformContract: {
|
|
104656
104762
|
};
|
104657
104763
|
};
|
104658
104764
|
platformId: string;
|
104765
|
+
upload: {
|
104766
|
+
id: string;
|
104767
|
+
createdAt: Date;
|
104768
|
+
updatedAt: Date;
|
104769
|
+
deletedAt: Date | null;
|
104770
|
+
fileName: string;
|
104771
|
+
fileKey: string;
|
104772
|
+
bucketName: string;
|
104773
|
+
fileSize: number;
|
104774
|
+
fileUrl: string | null;
|
104775
|
+
status?: string | undefined;
|
104776
|
+
};
|
104659
104777
|
assignee: {
|
104660
104778
|
id: string;
|
104661
104779
|
address: string | null;
|
@@ -104706,18 +104824,6 @@ export declare const platformContract: {
|
|
104706
104824
|
locale: "" | "th" | "mm" | "en";
|
104707
104825
|
previewUrl: string;
|
104708
104826
|
imageSetId: string;
|
104709
|
-
upload: {
|
104710
|
-
id: string;
|
104711
|
-
createdAt: Date;
|
104712
|
-
updatedAt: Date;
|
104713
|
-
deletedAt: Date | null;
|
104714
|
-
fileName: string;
|
104715
|
-
fileKey: string;
|
104716
|
-
bucketName: string;
|
104717
|
-
fileSize: number;
|
104718
|
-
fileUrl: string | null;
|
104719
|
-
status?: string | undefined;
|
104720
|
-
};
|
104721
104827
|
sender: {
|
104722
104828
|
id: string;
|
104723
104829
|
address: string | null;
|
@@ -110850,56 +110956,6 @@ export declare const platformContract: {
|
|
110850
110956
|
};
|
110851
110957
|
};
|
110852
110958
|
platformId: string;
|
110853
|
-
assignee: {
|
110854
|
-
id: string;
|
110855
|
-
address: string | null;
|
110856
|
-
name: string;
|
110857
|
-
email: string;
|
110858
|
-
createdAt: Date;
|
110859
|
-
updatedAt: Date;
|
110860
|
-
deletedAt: Date | null;
|
110861
|
-
emailVerifiedAt: Date | null;
|
110862
|
-
password: string;
|
110863
|
-
phone: string | null;
|
110864
|
-
notificationCount: number | null;
|
110865
|
-
roles: {
|
110866
|
-
id: string;
|
110867
|
-
description: string | null;
|
110868
|
-
createdAt: Date;
|
110869
|
-
updatedAt: Date;
|
110870
|
-
deletedAt: Date | null;
|
110871
|
-
systemName: string;
|
110872
|
-
displayName: string;
|
110873
|
-
permissions: {
|
110874
|
-
id: string;
|
110875
|
-
description: string | null;
|
110876
|
-
createdAt: Date;
|
110877
|
-
updatedAt: Date;
|
110878
|
-
deletedAt: Date | null;
|
110879
|
-
systemName: string;
|
110880
|
-
displayName: string;
|
110881
|
-
}[];
|
110882
|
-
}[];
|
110883
|
-
extension: {
|
110884
|
-
id: string;
|
110885
|
-
createdAt: Date;
|
110886
|
-
updatedAt: Date;
|
110887
|
-
deletedAt: Date | null;
|
110888
|
-
userId: string | null;
|
110889
|
-
sipServerUrl: string;
|
110890
|
-
sipUserName: string;
|
110891
|
-
webphoneLoginUser: string;
|
110892
|
-
extensionId: string | null;
|
110893
|
-
extensionName: string;
|
110894
|
-
telephonySignature: string | null;
|
110895
|
-
};
|
110896
|
-
};
|
110897
|
-
readAt: Date;
|
110898
|
-
platformMessageId: string;
|
110899
|
-
replyPlatformMessageId: string;
|
110900
|
-
locale: "" | "th" | "mm" | "en";
|
110901
|
-
previewUrl: string;
|
110902
|
-
imageSetId: string;
|
110903
110959
|
upload: {
|
110904
110960
|
id: string;
|
110905
110961
|
createdAt: Date;
|
@@ -110912,106 +110968,6 @@ export declare const platformContract: {
|
|
110912
110968
|
fileUrl: string | null;
|
110913
110969
|
status?: string | undefined;
|
110914
110970
|
};
|
110915
|
-
sender: {
|
110916
|
-
id: string;
|
110917
|
-
address: string | null;
|
110918
|
-
name: string;
|
110919
|
-
email: string;
|
110920
|
-
createdAt: Date;
|
110921
|
-
updatedAt: Date;
|
110922
|
-
deletedAt: Date | null;
|
110923
|
-
emailVerifiedAt: Date | null;
|
110924
|
-
password: string;
|
110925
|
-
phone: string | null;
|
110926
|
-
notificationCount: number | null;
|
110927
|
-
roles: {
|
110928
|
-
id: string;
|
110929
|
-
description: string | null;
|
110930
|
-
createdAt: Date;
|
110931
|
-
updatedAt: Date;
|
110932
|
-
deletedAt: Date | null;
|
110933
|
-
systemName: string;
|
110934
|
-
displayName: string;
|
110935
|
-
permissions: {
|
110936
|
-
id: string;
|
110937
|
-
description: string | null;
|
110938
|
-
createdAt: Date;
|
110939
|
-
updatedAt: Date;
|
110940
|
-
deletedAt: Date | null;
|
110941
|
-
systemName: string;
|
110942
|
-
displayName: string;
|
110943
|
-
}[];
|
110944
|
-
}[];
|
110945
|
-
extension: {
|
110946
|
-
id: string;
|
110947
|
-
createdAt: Date;
|
110948
|
-
updatedAt: Date;
|
110949
|
-
deletedAt: Date | null;
|
110950
|
-
userId: string | null;
|
110951
|
-
sipServerUrl: string;
|
110952
|
-
sipUserName: string;
|
110953
|
-
webphoneLoginUser: string;
|
110954
|
-
extensionId: string | null;
|
110955
|
-
extensionName: string;
|
110956
|
-
telephonySignature: string | null;
|
110957
|
-
};
|
110958
|
-
};
|
110959
|
-
metadata?: any;
|
110960
|
-
template?: any;
|
110961
|
-
}, {
|
110962
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
110963
|
-
message: string;
|
110964
|
-
id: string;
|
110965
|
-
url: string;
|
110966
|
-
direction: "incoming" | "outgoing" | "system";
|
110967
|
-
createdAt: Date;
|
110968
|
-
updatedAt: Date;
|
110969
|
-
deletedAt: Date | null;
|
110970
|
-
actor: {
|
110971
|
-
id: string;
|
110972
|
-
address: string | null;
|
110973
|
-
name: string;
|
110974
|
-
email: string;
|
110975
|
-
createdAt: Date;
|
110976
|
-
updatedAt: Date;
|
110977
|
-
deletedAt: Date | null;
|
110978
|
-
emailVerifiedAt: Date | null;
|
110979
|
-
password: string;
|
110980
|
-
phone: string | null;
|
110981
|
-
notificationCount: number | null;
|
110982
|
-
roles: {
|
110983
|
-
id: string;
|
110984
|
-
description: string | null;
|
110985
|
-
createdAt: Date;
|
110986
|
-
updatedAt: Date;
|
110987
|
-
deletedAt: Date | null;
|
110988
|
-
systemName: string;
|
110989
|
-
displayName: string;
|
110990
|
-
permissions: {
|
110991
|
-
id: string;
|
110992
|
-
description: string | null;
|
110993
|
-
createdAt: Date;
|
110994
|
-
updatedAt: Date;
|
110995
|
-
deletedAt: Date | null;
|
110996
|
-
systemName: string;
|
110997
|
-
displayName: string;
|
110998
|
-
}[];
|
110999
|
-
}[];
|
111000
|
-
extension: {
|
111001
|
-
id: string;
|
111002
|
-
createdAt: Date;
|
111003
|
-
updatedAt: Date;
|
111004
|
-
deletedAt: Date | null;
|
111005
|
-
userId: string | null;
|
111006
|
-
sipServerUrl: string;
|
111007
|
-
sipUserName: string;
|
111008
|
-
webphoneLoginUser: string;
|
111009
|
-
extensionId: string | null;
|
111010
|
-
extensionName: string;
|
111011
|
-
telephonySignature: string | null;
|
111012
|
-
};
|
111013
|
-
};
|
111014
|
-
platformId: string;
|
111015
110971
|
assignee: {
|
111016
110972
|
id: string;
|
111017
110973
|
address: string | null;
|
@@ -111062,18 +111018,168 @@ export declare const platformContract: {
|
|
111062
111018
|
locale: "" | "th" | "mm" | "en";
|
111063
111019
|
previewUrl: string;
|
111064
111020
|
imageSetId: string;
|
111065
|
-
|
111066
|
-
id: string;
|
111067
|
-
|
111068
|
-
|
111069
|
-
|
111070
|
-
|
111071
|
-
|
111072
|
-
|
111073
|
-
|
111074
|
-
|
111075
|
-
|
111076
|
-
|
111021
|
+
sender: {
|
111022
|
+
id: string;
|
111023
|
+
address: string | null;
|
111024
|
+
name: string;
|
111025
|
+
email: string;
|
111026
|
+
createdAt: Date;
|
111027
|
+
updatedAt: Date;
|
111028
|
+
deletedAt: Date | null;
|
111029
|
+
emailVerifiedAt: Date | null;
|
111030
|
+
password: string;
|
111031
|
+
phone: string | null;
|
111032
|
+
notificationCount: number | null;
|
111033
|
+
roles: {
|
111034
|
+
id: string;
|
111035
|
+
description: string | null;
|
111036
|
+
createdAt: Date;
|
111037
|
+
updatedAt: Date;
|
111038
|
+
deletedAt: Date | null;
|
111039
|
+
systemName: string;
|
111040
|
+
displayName: string;
|
111041
|
+
permissions: {
|
111042
|
+
id: string;
|
111043
|
+
description: string | null;
|
111044
|
+
createdAt: Date;
|
111045
|
+
updatedAt: Date;
|
111046
|
+
deletedAt: Date | null;
|
111047
|
+
systemName: string;
|
111048
|
+
displayName: string;
|
111049
|
+
}[];
|
111050
|
+
}[];
|
111051
|
+
extension: {
|
111052
|
+
id: string;
|
111053
|
+
createdAt: Date;
|
111054
|
+
updatedAt: Date;
|
111055
|
+
deletedAt: Date | null;
|
111056
|
+
userId: string | null;
|
111057
|
+
sipServerUrl: string;
|
111058
|
+
sipUserName: string;
|
111059
|
+
webphoneLoginUser: string;
|
111060
|
+
extensionId: string | null;
|
111061
|
+
extensionName: string;
|
111062
|
+
telephonySignature: string | null;
|
111063
|
+
};
|
111064
|
+
};
|
111065
|
+
metadata?: any;
|
111066
|
+
template?: any;
|
111067
|
+
}, {
|
111068
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
111069
|
+
message: string;
|
111070
|
+
id: string;
|
111071
|
+
url: string;
|
111072
|
+
direction: "incoming" | "outgoing" | "system";
|
111073
|
+
createdAt: Date;
|
111074
|
+
updatedAt: Date;
|
111075
|
+
deletedAt: Date | null;
|
111076
|
+
actor: {
|
111077
|
+
id: string;
|
111078
|
+
address: string | null;
|
111079
|
+
name: string;
|
111080
|
+
email: string;
|
111081
|
+
createdAt: Date;
|
111082
|
+
updatedAt: Date;
|
111083
|
+
deletedAt: Date | null;
|
111084
|
+
emailVerifiedAt: Date | null;
|
111085
|
+
password: string;
|
111086
|
+
phone: string | null;
|
111087
|
+
notificationCount: number | null;
|
111088
|
+
roles: {
|
111089
|
+
id: string;
|
111090
|
+
description: string | null;
|
111091
|
+
createdAt: Date;
|
111092
|
+
updatedAt: Date;
|
111093
|
+
deletedAt: Date | null;
|
111094
|
+
systemName: string;
|
111095
|
+
displayName: string;
|
111096
|
+
permissions: {
|
111097
|
+
id: string;
|
111098
|
+
description: string | null;
|
111099
|
+
createdAt: Date;
|
111100
|
+
updatedAt: Date;
|
111101
|
+
deletedAt: Date | null;
|
111102
|
+
systemName: string;
|
111103
|
+
displayName: string;
|
111104
|
+
}[];
|
111105
|
+
}[];
|
111106
|
+
extension: {
|
111107
|
+
id: string;
|
111108
|
+
createdAt: Date;
|
111109
|
+
updatedAt: Date;
|
111110
|
+
deletedAt: Date | null;
|
111111
|
+
userId: string | null;
|
111112
|
+
sipServerUrl: string;
|
111113
|
+
sipUserName: string;
|
111114
|
+
webphoneLoginUser: string;
|
111115
|
+
extensionId: string | null;
|
111116
|
+
extensionName: string;
|
111117
|
+
telephonySignature: string | null;
|
111118
|
+
};
|
111119
|
+
};
|
111120
|
+
platformId: string;
|
111121
|
+
upload: {
|
111122
|
+
id: string;
|
111123
|
+
createdAt: Date;
|
111124
|
+
updatedAt: Date;
|
111125
|
+
deletedAt: Date | null;
|
111126
|
+
fileName: string;
|
111127
|
+
fileKey: string;
|
111128
|
+
bucketName: string;
|
111129
|
+
fileSize: number;
|
111130
|
+
fileUrl: string | null;
|
111131
|
+
status?: string | undefined;
|
111132
|
+
};
|
111133
|
+
assignee: {
|
111134
|
+
id: string;
|
111135
|
+
address: string | null;
|
111136
|
+
name: string;
|
111137
|
+
email: string;
|
111138
|
+
createdAt: Date;
|
111139
|
+
updatedAt: Date;
|
111140
|
+
deletedAt: Date | null;
|
111141
|
+
emailVerifiedAt: Date | null;
|
111142
|
+
password: string;
|
111143
|
+
phone: string | null;
|
111144
|
+
notificationCount: number | null;
|
111145
|
+
roles: {
|
111146
|
+
id: string;
|
111147
|
+
description: string | null;
|
111148
|
+
createdAt: Date;
|
111149
|
+
updatedAt: Date;
|
111150
|
+
deletedAt: Date | null;
|
111151
|
+
systemName: string;
|
111152
|
+
displayName: string;
|
111153
|
+
permissions: {
|
111154
|
+
id: string;
|
111155
|
+
description: string | null;
|
111156
|
+
createdAt: Date;
|
111157
|
+
updatedAt: Date;
|
111158
|
+
deletedAt: Date | null;
|
111159
|
+
systemName: string;
|
111160
|
+
displayName: string;
|
111161
|
+
}[];
|
111162
|
+
}[];
|
111163
|
+
extension: {
|
111164
|
+
id: string;
|
111165
|
+
createdAt: Date;
|
111166
|
+
updatedAt: Date;
|
111167
|
+
deletedAt: Date | null;
|
111168
|
+
userId: string | null;
|
111169
|
+
sipServerUrl: string;
|
111170
|
+
sipUserName: string;
|
111171
|
+
webphoneLoginUser: string;
|
111172
|
+
extensionId: string | null;
|
111173
|
+
extensionName: string;
|
111174
|
+
telephonySignature: string | null;
|
111175
|
+
};
|
111176
|
+
};
|
111177
|
+
readAt: Date;
|
111178
|
+
platformMessageId: string;
|
111179
|
+
replyPlatformMessageId: string;
|
111180
|
+
locale: "" | "th" | "mm" | "en";
|
111181
|
+
previewUrl: string;
|
111182
|
+
imageSetId: string;
|
111077
111183
|
sender: {
|
111078
111184
|
id: string;
|
111079
111185
|
address: string | null;
|
@@ -111787,6 +111893,18 @@ export declare const platformContract: {
|
|
111787
111893
|
};
|
111788
111894
|
};
|
111789
111895
|
platformId: string;
|
111896
|
+
upload: {
|
111897
|
+
id: string;
|
111898
|
+
createdAt: Date;
|
111899
|
+
updatedAt: Date;
|
111900
|
+
deletedAt: Date | null;
|
111901
|
+
fileName: string;
|
111902
|
+
fileKey: string;
|
111903
|
+
bucketName: string;
|
111904
|
+
fileSize: number;
|
111905
|
+
fileUrl: string | null;
|
111906
|
+
status?: string | undefined;
|
111907
|
+
};
|
111790
111908
|
assignee: {
|
111791
111909
|
id: string;
|
111792
111910
|
address: string | null;
|
@@ -112150,18 +112268,6 @@ export declare const platformContract: {
|
|
112150
112268
|
locale: "" | "th" | "mm" | "en";
|
112151
112269
|
previewUrl: string;
|
112152
112270
|
imageSetId: string;
|
112153
|
-
upload: {
|
112154
|
-
id: string;
|
112155
|
-
createdAt: Date;
|
112156
|
-
updatedAt: Date;
|
112157
|
-
deletedAt: Date | null;
|
112158
|
-
fileName: string;
|
112159
|
-
fileKey: string;
|
112160
|
-
bucketName: string;
|
112161
|
-
fileSize: number;
|
112162
|
-
fileUrl: string | null;
|
112163
|
-
status?: string | undefined;
|
112164
|
-
};
|
112165
112271
|
repliedMessage: {
|
112166
112272
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
112167
112273
|
message: string;
|
@@ -112216,6 +112322,18 @@ export declare const platformContract: {
|
|
112216
112322
|
};
|
112217
112323
|
};
|
112218
112324
|
platformId: string;
|
112325
|
+
upload: {
|
112326
|
+
id: string;
|
112327
|
+
createdAt: Date;
|
112328
|
+
updatedAt: Date;
|
112329
|
+
deletedAt: Date | null;
|
112330
|
+
fileName: string;
|
112331
|
+
fileKey: string;
|
112332
|
+
bucketName: string;
|
112333
|
+
fileSize: number;
|
112334
|
+
fileUrl: string | null;
|
112335
|
+
status?: string | undefined;
|
112336
|
+
};
|
112219
112337
|
assignee: {
|
112220
112338
|
id: string;
|
112221
112339
|
address: string | null;
|
@@ -112266,18 +112384,6 @@ export declare const platformContract: {
|
|
112266
112384
|
locale: "" | "th" | "mm" | "en";
|
112267
112385
|
previewUrl: string;
|
112268
112386
|
imageSetId: string;
|
112269
|
-
upload: {
|
112270
|
-
id: string;
|
112271
|
-
createdAt: Date;
|
112272
|
-
updatedAt: Date;
|
112273
|
-
deletedAt: Date | null;
|
112274
|
-
fileName: string;
|
112275
|
-
fileKey: string;
|
112276
|
-
bucketName: string;
|
112277
|
-
fileSize: number;
|
112278
|
-
fileUrl: string | null;
|
112279
|
-
status?: string | undefined;
|
112280
|
-
};
|
112281
112387
|
sender: {
|
112282
112388
|
id: string;
|
112283
112389
|
address: string | null;
|
@@ -112425,6 +112531,18 @@ export declare const platformContract: {
|
|
112425
112531
|
};
|
112426
112532
|
};
|
112427
112533
|
platformId: string;
|
112534
|
+
upload: {
|
112535
|
+
id: string;
|
112536
|
+
createdAt: Date;
|
112537
|
+
updatedAt: Date;
|
112538
|
+
deletedAt: Date | null;
|
112539
|
+
fileName: string;
|
112540
|
+
fileKey: string;
|
112541
|
+
bucketName: string;
|
112542
|
+
fileSize: number;
|
112543
|
+
fileUrl: string | null;
|
112544
|
+
status?: string | undefined;
|
112545
|
+
};
|
112428
112546
|
assignee: {
|
112429
112547
|
id: string;
|
112430
112548
|
address: string | null;
|
@@ -112788,18 +112906,6 @@ export declare const platformContract: {
|
|
112788
112906
|
locale: "" | "th" | "mm" | "en";
|
112789
112907
|
previewUrl: string;
|
112790
112908
|
imageSetId: string;
|
112791
|
-
upload: {
|
112792
|
-
id: string;
|
112793
|
-
createdAt: Date;
|
112794
|
-
updatedAt: Date;
|
112795
|
-
deletedAt: Date | null;
|
112796
|
-
fileName: string;
|
112797
|
-
fileKey: string;
|
112798
|
-
bucketName: string;
|
112799
|
-
fileSize: number;
|
112800
|
-
fileUrl: string | null;
|
112801
|
-
status?: string | undefined;
|
112802
|
-
};
|
112803
112909
|
repliedMessage: {
|
112804
112910
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
112805
112911
|
message: string;
|
@@ -112854,6 +112960,18 @@ export declare const platformContract: {
|
|
112854
112960
|
};
|
112855
112961
|
};
|
112856
112962
|
platformId: string;
|
112963
|
+
upload: {
|
112964
|
+
id: string;
|
112965
|
+
createdAt: Date;
|
112966
|
+
updatedAt: Date;
|
112967
|
+
deletedAt: Date | null;
|
112968
|
+
fileName: string;
|
112969
|
+
fileKey: string;
|
112970
|
+
bucketName: string;
|
112971
|
+
fileSize: number;
|
112972
|
+
fileUrl: string | null;
|
112973
|
+
status?: string | undefined;
|
112974
|
+
};
|
112857
112975
|
assignee: {
|
112858
112976
|
id: string;
|
112859
112977
|
address: string | null;
|
@@ -112904,18 +113022,6 @@ export declare const platformContract: {
|
|
112904
113022
|
locale: "" | "th" | "mm" | "en";
|
112905
113023
|
previewUrl: string;
|
112906
113024
|
imageSetId: string;
|
112907
|
-
upload: {
|
112908
|
-
id: string;
|
112909
|
-
createdAt: Date;
|
112910
|
-
updatedAt: Date;
|
112911
|
-
deletedAt: Date | null;
|
112912
|
-
fileName: string;
|
112913
|
-
fileKey: string;
|
112914
|
-
bucketName: string;
|
112915
|
-
fileSize: number;
|
112916
|
-
fileUrl: string | null;
|
112917
|
-
status?: string | undefined;
|
112918
|
-
};
|
112919
113025
|
sender: {
|
112920
113026
|
id: string;
|
112921
113027
|
address: string | null;
|
@@ -113065,6 +113171,18 @@ export declare const platformContract: {
|
|
113065
113171
|
};
|
113066
113172
|
};
|
113067
113173
|
platformId: string;
|
113174
|
+
upload: {
|
113175
|
+
id: string;
|
113176
|
+
createdAt: Date;
|
113177
|
+
updatedAt: Date;
|
113178
|
+
deletedAt: Date | null;
|
113179
|
+
fileName: string;
|
113180
|
+
fileKey: string;
|
113181
|
+
bucketName: string;
|
113182
|
+
fileSize: number;
|
113183
|
+
fileUrl: string | null;
|
113184
|
+
status?: string | undefined;
|
113185
|
+
};
|
113068
113186
|
assignee: {
|
113069
113187
|
id: string;
|
113070
113188
|
address: string | null;
|
@@ -113428,18 +113546,6 @@ export declare const platformContract: {
|
|
113428
113546
|
locale: "" | "th" | "mm" | "en";
|
113429
113547
|
previewUrl: string;
|
113430
113548
|
imageSetId: string;
|
113431
|
-
upload: {
|
113432
|
-
id: string;
|
113433
|
-
createdAt: Date;
|
113434
|
-
updatedAt: Date;
|
113435
|
-
deletedAt: Date | null;
|
113436
|
-
fileName: string;
|
113437
|
-
fileKey: string;
|
113438
|
-
bucketName: string;
|
113439
|
-
fileSize: number;
|
113440
|
-
fileUrl: string | null;
|
113441
|
-
status?: string | undefined;
|
113442
|
-
};
|
113443
113549
|
repliedMessage: {
|
113444
113550
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
113445
113551
|
message: string;
|
@@ -113494,6 +113600,18 @@ export declare const platformContract: {
|
|
113494
113600
|
};
|
113495
113601
|
};
|
113496
113602
|
platformId: string;
|
113603
|
+
upload: {
|
113604
|
+
id: string;
|
113605
|
+
createdAt: Date;
|
113606
|
+
updatedAt: Date;
|
113607
|
+
deletedAt: Date | null;
|
113608
|
+
fileName: string;
|
113609
|
+
fileKey: string;
|
113610
|
+
bucketName: string;
|
113611
|
+
fileSize: number;
|
113612
|
+
fileUrl: string | null;
|
113613
|
+
status?: string | undefined;
|
113614
|
+
};
|
113497
113615
|
assignee: {
|
113498
113616
|
id: string;
|
113499
113617
|
address: string | null;
|
@@ -113544,18 +113662,6 @@ export declare const platformContract: {
|
|
113544
113662
|
locale: "" | "th" | "mm" | "en";
|
113545
113663
|
previewUrl: string;
|
113546
113664
|
imageSetId: string;
|
113547
|
-
upload: {
|
113548
|
-
id: string;
|
113549
|
-
createdAt: Date;
|
113550
|
-
updatedAt: Date;
|
113551
|
-
deletedAt: Date | null;
|
113552
|
-
fileName: string;
|
113553
|
-
fileKey: string;
|
113554
|
-
bucketName: string;
|
113555
|
-
fileSize: number;
|
113556
|
-
fileUrl: string | null;
|
113557
|
-
status?: string | undefined;
|
113558
|
-
};
|
113559
113665
|
sender: {
|
113560
113666
|
id: string;
|
113561
113667
|
address: string | null;
|
@@ -113706,6 +113812,18 @@ export declare const platformContract: {
|
|
113706
113812
|
};
|
113707
113813
|
};
|
113708
113814
|
platformId: string;
|
113815
|
+
upload: {
|
113816
|
+
id: string;
|
113817
|
+
createdAt: Date;
|
113818
|
+
updatedAt: Date;
|
113819
|
+
deletedAt: Date | null;
|
113820
|
+
fileName: string;
|
113821
|
+
fileKey: string;
|
113822
|
+
bucketName: string;
|
113823
|
+
fileSize: number;
|
113824
|
+
fileUrl: string | null;
|
113825
|
+
status?: string | undefined;
|
113826
|
+
};
|
113709
113827
|
assignee: {
|
113710
113828
|
id: string;
|
113711
113829
|
address: string | null;
|
@@ -114069,18 +114187,6 @@ export declare const platformContract: {
|
|
114069
114187
|
locale: "" | "th" | "mm" | "en";
|
114070
114188
|
previewUrl: string;
|
114071
114189
|
imageSetId: string;
|
114072
|
-
upload: {
|
114073
|
-
id: string;
|
114074
|
-
createdAt: Date;
|
114075
|
-
updatedAt: Date;
|
114076
|
-
deletedAt: Date | null;
|
114077
|
-
fileName: string;
|
114078
|
-
fileKey: string;
|
114079
|
-
bucketName: string;
|
114080
|
-
fileSize: number;
|
114081
|
-
fileUrl: string | null;
|
114082
|
-
status?: string | undefined;
|
114083
|
-
};
|
114084
114190
|
repliedMessage: {
|
114085
114191
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
114086
114192
|
message: string;
|
@@ -114135,6 +114241,18 @@ export declare const platformContract: {
|
|
114135
114241
|
};
|
114136
114242
|
};
|
114137
114243
|
platformId: string;
|
114244
|
+
upload: {
|
114245
|
+
id: string;
|
114246
|
+
createdAt: Date;
|
114247
|
+
updatedAt: Date;
|
114248
|
+
deletedAt: Date | null;
|
114249
|
+
fileName: string;
|
114250
|
+
fileKey: string;
|
114251
|
+
bucketName: string;
|
114252
|
+
fileSize: number;
|
114253
|
+
fileUrl: string | null;
|
114254
|
+
status?: string | undefined;
|
114255
|
+
};
|
114138
114256
|
assignee: {
|
114139
114257
|
id: string;
|
114140
114258
|
address: string | null;
|
@@ -114185,18 +114303,6 @@ export declare const platformContract: {
|
|
114185
114303
|
locale: "" | "th" | "mm" | "en";
|
114186
114304
|
previewUrl: string;
|
114187
114305
|
imageSetId: string;
|
114188
|
-
upload: {
|
114189
|
-
id: string;
|
114190
|
-
createdAt: Date;
|
114191
|
-
updatedAt: Date;
|
114192
|
-
deletedAt: Date | null;
|
114193
|
-
fileName: string;
|
114194
|
-
fileKey: string;
|
114195
|
-
bucketName: string;
|
114196
|
-
fileSize: number;
|
114197
|
-
fileUrl: string | null;
|
114198
|
-
status?: string | undefined;
|
114199
|
-
};
|
114200
114306
|
sender: {
|
114201
114307
|
id: string;
|
114202
114308
|
address: string | null;
|
@@ -126069,56 +126175,6 @@ export declare const chatContract: {
|
|
126069
126175
|
};
|
126070
126176
|
};
|
126071
126177
|
platformId: string;
|
126072
|
-
assignee: {
|
126073
|
-
id: string;
|
126074
|
-
address: string | null;
|
126075
|
-
name: string;
|
126076
|
-
email: string;
|
126077
|
-
createdAt: Date;
|
126078
|
-
updatedAt: Date;
|
126079
|
-
deletedAt: Date | null;
|
126080
|
-
emailVerifiedAt: Date | null;
|
126081
|
-
password: string;
|
126082
|
-
phone: string | null;
|
126083
|
-
notificationCount: number | null;
|
126084
|
-
roles: {
|
126085
|
-
id: string;
|
126086
|
-
description: string | null;
|
126087
|
-
createdAt: Date;
|
126088
|
-
updatedAt: Date;
|
126089
|
-
deletedAt: Date | null;
|
126090
|
-
systemName: string;
|
126091
|
-
displayName: string;
|
126092
|
-
permissions: {
|
126093
|
-
id: string;
|
126094
|
-
description: string | null;
|
126095
|
-
createdAt: Date;
|
126096
|
-
updatedAt: Date;
|
126097
|
-
deletedAt: Date | null;
|
126098
|
-
systemName: string;
|
126099
|
-
displayName: string;
|
126100
|
-
}[];
|
126101
|
-
}[];
|
126102
|
-
extension: {
|
126103
|
-
id: string;
|
126104
|
-
createdAt: Date;
|
126105
|
-
updatedAt: Date;
|
126106
|
-
deletedAt: Date | null;
|
126107
|
-
userId: string | null;
|
126108
|
-
sipServerUrl: string;
|
126109
|
-
sipUserName: string;
|
126110
|
-
webphoneLoginUser: string;
|
126111
|
-
extensionId: string | null;
|
126112
|
-
extensionName: string;
|
126113
|
-
telephonySignature: string | null;
|
126114
|
-
};
|
126115
|
-
};
|
126116
|
-
readAt: Date;
|
126117
|
-
platformMessageId: string;
|
126118
|
-
replyPlatformMessageId: string;
|
126119
|
-
locale: "" | "th" | "mm" | "en";
|
126120
|
-
previewUrl: string;
|
126121
|
-
imageSetId: string;
|
126122
126178
|
upload: {
|
126123
126179
|
id: string;
|
126124
126180
|
createdAt: Date;
|
@@ -126131,106 +126187,6 @@ export declare const chatContract: {
|
|
126131
126187
|
fileUrl: string | null;
|
126132
126188
|
status?: string | undefined;
|
126133
126189
|
};
|
126134
|
-
sender: {
|
126135
|
-
id: string;
|
126136
|
-
address: string | null;
|
126137
|
-
name: string;
|
126138
|
-
email: string;
|
126139
|
-
createdAt: Date;
|
126140
|
-
updatedAt: Date;
|
126141
|
-
deletedAt: Date | null;
|
126142
|
-
emailVerifiedAt: Date | null;
|
126143
|
-
password: string;
|
126144
|
-
phone: string | null;
|
126145
|
-
notificationCount: number | null;
|
126146
|
-
roles: {
|
126147
|
-
id: string;
|
126148
|
-
description: string | null;
|
126149
|
-
createdAt: Date;
|
126150
|
-
updatedAt: Date;
|
126151
|
-
deletedAt: Date | null;
|
126152
|
-
systemName: string;
|
126153
|
-
displayName: string;
|
126154
|
-
permissions: {
|
126155
|
-
id: string;
|
126156
|
-
description: string | null;
|
126157
|
-
createdAt: Date;
|
126158
|
-
updatedAt: Date;
|
126159
|
-
deletedAt: Date | null;
|
126160
|
-
systemName: string;
|
126161
|
-
displayName: string;
|
126162
|
-
}[];
|
126163
|
-
}[];
|
126164
|
-
extension: {
|
126165
|
-
id: string;
|
126166
|
-
createdAt: Date;
|
126167
|
-
updatedAt: Date;
|
126168
|
-
deletedAt: Date | null;
|
126169
|
-
userId: string | null;
|
126170
|
-
sipServerUrl: string;
|
126171
|
-
sipUserName: string;
|
126172
|
-
webphoneLoginUser: string;
|
126173
|
-
extensionId: string | null;
|
126174
|
-
extensionName: string;
|
126175
|
-
telephonySignature: string | null;
|
126176
|
-
};
|
126177
|
-
};
|
126178
|
-
metadata?: any;
|
126179
|
-
template?: any;
|
126180
|
-
}, {
|
126181
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
126182
|
-
message: string;
|
126183
|
-
id: string;
|
126184
|
-
url: string;
|
126185
|
-
direction: "incoming" | "outgoing" | "system";
|
126186
|
-
createdAt: Date;
|
126187
|
-
updatedAt: Date;
|
126188
|
-
deletedAt: Date | null;
|
126189
|
-
actor: {
|
126190
|
-
id: string;
|
126191
|
-
address: string | null;
|
126192
|
-
name: string;
|
126193
|
-
email: string;
|
126194
|
-
createdAt: Date;
|
126195
|
-
updatedAt: Date;
|
126196
|
-
deletedAt: Date | null;
|
126197
|
-
emailVerifiedAt: Date | null;
|
126198
|
-
password: string;
|
126199
|
-
phone: string | null;
|
126200
|
-
notificationCount: number | null;
|
126201
|
-
roles: {
|
126202
|
-
id: string;
|
126203
|
-
description: string | null;
|
126204
|
-
createdAt: Date;
|
126205
|
-
updatedAt: Date;
|
126206
|
-
deletedAt: Date | null;
|
126207
|
-
systemName: string;
|
126208
|
-
displayName: string;
|
126209
|
-
permissions: {
|
126210
|
-
id: string;
|
126211
|
-
description: string | null;
|
126212
|
-
createdAt: Date;
|
126213
|
-
updatedAt: Date;
|
126214
|
-
deletedAt: Date | null;
|
126215
|
-
systemName: string;
|
126216
|
-
displayName: string;
|
126217
|
-
}[];
|
126218
|
-
}[];
|
126219
|
-
extension: {
|
126220
|
-
id: string;
|
126221
|
-
createdAt: Date;
|
126222
|
-
updatedAt: Date;
|
126223
|
-
deletedAt: Date | null;
|
126224
|
-
userId: string | null;
|
126225
|
-
sipServerUrl: string;
|
126226
|
-
sipUserName: string;
|
126227
|
-
webphoneLoginUser: string;
|
126228
|
-
extensionId: string | null;
|
126229
|
-
extensionName: string;
|
126230
|
-
telephonySignature: string | null;
|
126231
|
-
};
|
126232
|
-
};
|
126233
|
-
platformId: string;
|
126234
126190
|
assignee: {
|
126235
126191
|
id: string;
|
126236
126192
|
address: string | null;
|
@@ -126281,18 +126237,168 @@ export declare const chatContract: {
|
|
126281
126237
|
locale: "" | "th" | "mm" | "en";
|
126282
126238
|
previewUrl: string;
|
126283
126239
|
imageSetId: string;
|
126284
|
-
|
126285
|
-
id: string;
|
126286
|
-
|
126287
|
-
|
126288
|
-
|
126289
|
-
|
126290
|
-
|
126291
|
-
|
126292
|
-
|
126293
|
-
|
126294
|
-
|
126295
|
-
|
126240
|
+
sender: {
|
126241
|
+
id: string;
|
126242
|
+
address: string | null;
|
126243
|
+
name: string;
|
126244
|
+
email: string;
|
126245
|
+
createdAt: Date;
|
126246
|
+
updatedAt: Date;
|
126247
|
+
deletedAt: Date | null;
|
126248
|
+
emailVerifiedAt: Date | null;
|
126249
|
+
password: string;
|
126250
|
+
phone: string | null;
|
126251
|
+
notificationCount: number | null;
|
126252
|
+
roles: {
|
126253
|
+
id: string;
|
126254
|
+
description: string | null;
|
126255
|
+
createdAt: Date;
|
126256
|
+
updatedAt: Date;
|
126257
|
+
deletedAt: Date | null;
|
126258
|
+
systemName: string;
|
126259
|
+
displayName: string;
|
126260
|
+
permissions: {
|
126261
|
+
id: string;
|
126262
|
+
description: string | null;
|
126263
|
+
createdAt: Date;
|
126264
|
+
updatedAt: Date;
|
126265
|
+
deletedAt: Date | null;
|
126266
|
+
systemName: string;
|
126267
|
+
displayName: string;
|
126268
|
+
}[];
|
126269
|
+
}[];
|
126270
|
+
extension: {
|
126271
|
+
id: string;
|
126272
|
+
createdAt: Date;
|
126273
|
+
updatedAt: Date;
|
126274
|
+
deletedAt: Date | null;
|
126275
|
+
userId: string | null;
|
126276
|
+
sipServerUrl: string;
|
126277
|
+
sipUserName: string;
|
126278
|
+
webphoneLoginUser: string;
|
126279
|
+
extensionId: string | null;
|
126280
|
+
extensionName: string;
|
126281
|
+
telephonySignature: string | null;
|
126282
|
+
};
|
126283
|
+
};
|
126284
|
+
metadata?: any;
|
126285
|
+
template?: any;
|
126286
|
+
}, {
|
126287
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
126288
|
+
message: string;
|
126289
|
+
id: string;
|
126290
|
+
url: string;
|
126291
|
+
direction: "incoming" | "outgoing" | "system";
|
126292
|
+
createdAt: Date;
|
126293
|
+
updatedAt: Date;
|
126294
|
+
deletedAt: Date | null;
|
126295
|
+
actor: {
|
126296
|
+
id: string;
|
126297
|
+
address: string | null;
|
126298
|
+
name: string;
|
126299
|
+
email: string;
|
126300
|
+
createdAt: Date;
|
126301
|
+
updatedAt: Date;
|
126302
|
+
deletedAt: Date | null;
|
126303
|
+
emailVerifiedAt: Date | null;
|
126304
|
+
password: string;
|
126305
|
+
phone: string | null;
|
126306
|
+
notificationCount: number | null;
|
126307
|
+
roles: {
|
126308
|
+
id: string;
|
126309
|
+
description: string | null;
|
126310
|
+
createdAt: Date;
|
126311
|
+
updatedAt: Date;
|
126312
|
+
deletedAt: Date | null;
|
126313
|
+
systemName: string;
|
126314
|
+
displayName: string;
|
126315
|
+
permissions: {
|
126316
|
+
id: string;
|
126317
|
+
description: string | null;
|
126318
|
+
createdAt: Date;
|
126319
|
+
updatedAt: Date;
|
126320
|
+
deletedAt: Date | null;
|
126321
|
+
systemName: string;
|
126322
|
+
displayName: string;
|
126323
|
+
}[];
|
126324
|
+
}[];
|
126325
|
+
extension: {
|
126326
|
+
id: string;
|
126327
|
+
createdAt: Date;
|
126328
|
+
updatedAt: Date;
|
126329
|
+
deletedAt: Date | null;
|
126330
|
+
userId: string | null;
|
126331
|
+
sipServerUrl: string;
|
126332
|
+
sipUserName: string;
|
126333
|
+
webphoneLoginUser: string;
|
126334
|
+
extensionId: string | null;
|
126335
|
+
extensionName: string;
|
126336
|
+
telephonySignature: string | null;
|
126337
|
+
};
|
126338
|
+
};
|
126339
|
+
platformId: string;
|
126340
|
+
upload: {
|
126341
|
+
id: string;
|
126342
|
+
createdAt: Date;
|
126343
|
+
updatedAt: Date;
|
126344
|
+
deletedAt: Date | null;
|
126345
|
+
fileName: string;
|
126346
|
+
fileKey: string;
|
126347
|
+
bucketName: string;
|
126348
|
+
fileSize: number;
|
126349
|
+
fileUrl: string | null;
|
126350
|
+
status?: string | undefined;
|
126351
|
+
};
|
126352
|
+
assignee: {
|
126353
|
+
id: string;
|
126354
|
+
address: string | null;
|
126355
|
+
name: string;
|
126356
|
+
email: string;
|
126357
|
+
createdAt: Date;
|
126358
|
+
updatedAt: Date;
|
126359
|
+
deletedAt: Date | null;
|
126360
|
+
emailVerifiedAt: Date | null;
|
126361
|
+
password: string;
|
126362
|
+
phone: string | null;
|
126363
|
+
notificationCount: number | null;
|
126364
|
+
roles: {
|
126365
|
+
id: string;
|
126366
|
+
description: string | null;
|
126367
|
+
createdAt: Date;
|
126368
|
+
updatedAt: Date;
|
126369
|
+
deletedAt: Date | null;
|
126370
|
+
systemName: string;
|
126371
|
+
displayName: string;
|
126372
|
+
permissions: {
|
126373
|
+
id: string;
|
126374
|
+
description: string | null;
|
126375
|
+
createdAt: Date;
|
126376
|
+
updatedAt: Date;
|
126377
|
+
deletedAt: Date | null;
|
126378
|
+
systemName: string;
|
126379
|
+
displayName: string;
|
126380
|
+
}[];
|
126381
|
+
}[];
|
126382
|
+
extension: {
|
126383
|
+
id: string;
|
126384
|
+
createdAt: Date;
|
126385
|
+
updatedAt: Date;
|
126386
|
+
deletedAt: Date | null;
|
126387
|
+
userId: string | null;
|
126388
|
+
sipServerUrl: string;
|
126389
|
+
sipUserName: string;
|
126390
|
+
webphoneLoginUser: string;
|
126391
|
+
extensionId: string | null;
|
126392
|
+
extensionName: string;
|
126393
|
+
telephonySignature: string | null;
|
126394
|
+
};
|
126395
|
+
};
|
126396
|
+
readAt: Date;
|
126397
|
+
platformMessageId: string;
|
126398
|
+
replyPlatformMessageId: string;
|
126399
|
+
locale: "" | "th" | "mm" | "en";
|
126400
|
+
previewUrl: string;
|
126401
|
+
imageSetId: string;
|
126296
126402
|
sender: {
|
126297
126403
|
id: string;
|
126298
126404
|
address: string | null;
|
@@ -127006,6 +127112,18 @@ export declare const chatContract: {
|
|
127006
127112
|
};
|
127007
127113
|
};
|
127008
127114
|
platformId: string;
|
127115
|
+
upload: {
|
127116
|
+
id: string;
|
127117
|
+
createdAt: Date;
|
127118
|
+
updatedAt: Date;
|
127119
|
+
deletedAt: Date | null;
|
127120
|
+
fileName: string;
|
127121
|
+
fileKey: string;
|
127122
|
+
bucketName: string;
|
127123
|
+
fileSize: number;
|
127124
|
+
fileUrl: string | null;
|
127125
|
+
status?: string | undefined;
|
127126
|
+
};
|
127009
127127
|
assignee: {
|
127010
127128
|
id: string;
|
127011
127129
|
address: string | null;
|
@@ -127369,18 +127487,6 @@ export declare const chatContract: {
|
|
127369
127487
|
locale: "" | "th" | "mm" | "en";
|
127370
127488
|
previewUrl: string;
|
127371
127489
|
imageSetId: string;
|
127372
|
-
upload: {
|
127373
|
-
id: string;
|
127374
|
-
createdAt: Date;
|
127375
|
-
updatedAt: Date;
|
127376
|
-
deletedAt: Date | null;
|
127377
|
-
fileName: string;
|
127378
|
-
fileKey: string;
|
127379
|
-
bucketName: string;
|
127380
|
-
fileSize: number;
|
127381
|
-
fileUrl: string | null;
|
127382
|
-
status?: string | undefined;
|
127383
|
-
};
|
127384
127490
|
repliedMessage: {
|
127385
127491
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
127386
127492
|
message: string;
|
@@ -127435,6 +127541,18 @@ export declare const chatContract: {
|
|
127435
127541
|
};
|
127436
127542
|
};
|
127437
127543
|
platformId: string;
|
127544
|
+
upload: {
|
127545
|
+
id: string;
|
127546
|
+
createdAt: Date;
|
127547
|
+
updatedAt: Date;
|
127548
|
+
deletedAt: Date | null;
|
127549
|
+
fileName: string;
|
127550
|
+
fileKey: string;
|
127551
|
+
bucketName: string;
|
127552
|
+
fileSize: number;
|
127553
|
+
fileUrl: string | null;
|
127554
|
+
status?: string | undefined;
|
127555
|
+
};
|
127438
127556
|
assignee: {
|
127439
127557
|
id: string;
|
127440
127558
|
address: string | null;
|
@@ -127485,18 +127603,6 @@ export declare const chatContract: {
|
|
127485
127603
|
locale: "" | "th" | "mm" | "en";
|
127486
127604
|
previewUrl: string;
|
127487
127605
|
imageSetId: string;
|
127488
|
-
upload: {
|
127489
|
-
id: string;
|
127490
|
-
createdAt: Date;
|
127491
|
-
updatedAt: Date;
|
127492
|
-
deletedAt: Date | null;
|
127493
|
-
fileName: string;
|
127494
|
-
fileKey: string;
|
127495
|
-
bucketName: string;
|
127496
|
-
fileSize: number;
|
127497
|
-
fileUrl: string | null;
|
127498
|
-
status?: string | undefined;
|
127499
|
-
};
|
127500
127606
|
sender: {
|
127501
127607
|
id: string;
|
127502
127608
|
address: string | null;
|
@@ -127644,6 +127750,18 @@ export declare const chatContract: {
|
|
127644
127750
|
};
|
127645
127751
|
};
|
127646
127752
|
platformId: string;
|
127753
|
+
upload: {
|
127754
|
+
id: string;
|
127755
|
+
createdAt: Date;
|
127756
|
+
updatedAt: Date;
|
127757
|
+
deletedAt: Date | null;
|
127758
|
+
fileName: string;
|
127759
|
+
fileKey: string;
|
127760
|
+
bucketName: string;
|
127761
|
+
fileSize: number;
|
127762
|
+
fileUrl: string | null;
|
127763
|
+
status?: string | undefined;
|
127764
|
+
};
|
127647
127765
|
assignee: {
|
127648
127766
|
id: string;
|
127649
127767
|
address: string | null;
|
@@ -128007,18 +128125,6 @@ export declare const chatContract: {
|
|
128007
128125
|
locale: "" | "th" | "mm" | "en";
|
128008
128126
|
previewUrl: string;
|
128009
128127
|
imageSetId: string;
|
128010
|
-
upload: {
|
128011
|
-
id: string;
|
128012
|
-
createdAt: Date;
|
128013
|
-
updatedAt: Date;
|
128014
|
-
deletedAt: Date | null;
|
128015
|
-
fileName: string;
|
128016
|
-
fileKey: string;
|
128017
|
-
bucketName: string;
|
128018
|
-
fileSize: number;
|
128019
|
-
fileUrl: string | null;
|
128020
|
-
status?: string | undefined;
|
128021
|
-
};
|
128022
128128
|
repliedMessage: {
|
128023
128129
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
128024
128130
|
message: string;
|
@@ -128073,6 +128179,18 @@ export declare const chatContract: {
|
|
128073
128179
|
};
|
128074
128180
|
};
|
128075
128181
|
platformId: string;
|
128182
|
+
upload: {
|
128183
|
+
id: string;
|
128184
|
+
createdAt: Date;
|
128185
|
+
updatedAt: Date;
|
128186
|
+
deletedAt: Date | null;
|
128187
|
+
fileName: string;
|
128188
|
+
fileKey: string;
|
128189
|
+
bucketName: string;
|
128190
|
+
fileSize: number;
|
128191
|
+
fileUrl: string | null;
|
128192
|
+
status?: string | undefined;
|
128193
|
+
};
|
128076
128194
|
assignee: {
|
128077
128195
|
id: string;
|
128078
128196
|
address: string | null;
|
@@ -128123,18 +128241,6 @@ export declare const chatContract: {
|
|
128123
128241
|
locale: "" | "th" | "mm" | "en";
|
128124
128242
|
previewUrl: string;
|
128125
128243
|
imageSetId: string;
|
128126
|
-
upload: {
|
128127
|
-
id: string;
|
128128
|
-
createdAt: Date;
|
128129
|
-
updatedAt: Date;
|
128130
|
-
deletedAt: Date | null;
|
128131
|
-
fileName: string;
|
128132
|
-
fileKey: string;
|
128133
|
-
bucketName: string;
|
128134
|
-
fileSize: number;
|
128135
|
-
fileUrl: string | null;
|
128136
|
-
status?: string | undefined;
|
128137
|
-
};
|
128138
128244
|
sender: {
|
128139
128245
|
id: string;
|
128140
128246
|
address: string | null;
|
@@ -128284,6 +128390,18 @@ export declare const chatContract: {
|
|
128284
128390
|
};
|
128285
128391
|
};
|
128286
128392
|
platformId: string;
|
128393
|
+
upload: {
|
128394
|
+
id: string;
|
128395
|
+
createdAt: Date;
|
128396
|
+
updatedAt: Date;
|
128397
|
+
deletedAt: Date | null;
|
128398
|
+
fileName: string;
|
128399
|
+
fileKey: string;
|
128400
|
+
bucketName: string;
|
128401
|
+
fileSize: number;
|
128402
|
+
fileUrl: string | null;
|
128403
|
+
status?: string | undefined;
|
128404
|
+
};
|
128287
128405
|
assignee: {
|
128288
128406
|
id: string;
|
128289
128407
|
address: string | null;
|
@@ -128647,18 +128765,6 @@ export declare const chatContract: {
|
|
128647
128765
|
locale: "" | "th" | "mm" | "en";
|
128648
128766
|
previewUrl: string;
|
128649
128767
|
imageSetId: string;
|
128650
|
-
upload: {
|
128651
|
-
id: string;
|
128652
|
-
createdAt: Date;
|
128653
|
-
updatedAt: Date;
|
128654
|
-
deletedAt: Date | null;
|
128655
|
-
fileName: string;
|
128656
|
-
fileKey: string;
|
128657
|
-
bucketName: string;
|
128658
|
-
fileSize: number;
|
128659
|
-
fileUrl: string | null;
|
128660
|
-
status?: string | undefined;
|
128661
|
-
};
|
128662
128768
|
repliedMessage: {
|
128663
128769
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
128664
128770
|
message: string;
|
@@ -128713,6 +128819,18 @@ export declare const chatContract: {
|
|
128713
128819
|
};
|
128714
128820
|
};
|
128715
128821
|
platformId: string;
|
128822
|
+
upload: {
|
128823
|
+
id: string;
|
128824
|
+
createdAt: Date;
|
128825
|
+
updatedAt: Date;
|
128826
|
+
deletedAt: Date | null;
|
128827
|
+
fileName: string;
|
128828
|
+
fileKey: string;
|
128829
|
+
bucketName: string;
|
128830
|
+
fileSize: number;
|
128831
|
+
fileUrl: string | null;
|
128832
|
+
status?: string | undefined;
|
128833
|
+
};
|
128716
128834
|
assignee: {
|
128717
128835
|
id: string;
|
128718
128836
|
address: string | null;
|
@@ -128763,18 +128881,6 @@ export declare const chatContract: {
|
|
128763
128881
|
locale: "" | "th" | "mm" | "en";
|
128764
128882
|
previewUrl: string;
|
128765
128883
|
imageSetId: string;
|
128766
|
-
upload: {
|
128767
|
-
id: string;
|
128768
|
-
createdAt: Date;
|
128769
|
-
updatedAt: Date;
|
128770
|
-
deletedAt: Date | null;
|
128771
|
-
fileName: string;
|
128772
|
-
fileKey: string;
|
128773
|
-
bucketName: string;
|
128774
|
-
fileSize: number;
|
128775
|
-
fileUrl: string | null;
|
128776
|
-
status?: string | undefined;
|
128777
|
-
};
|
128778
128884
|
sender: {
|
128779
128885
|
id: string;
|
128780
128886
|
address: string | null;
|
@@ -128925,6 +129031,18 @@ export declare const chatContract: {
|
|
128925
129031
|
};
|
128926
129032
|
};
|
128927
129033
|
platformId: string;
|
129034
|
+
upload: {
|
129035
|
+
id: string;
|
129036
|
+
createdAt: Date;
|
129037
|
+
updatedAt: Date;
|
129038
|
+
deletedAt: Date | null;
|
129039
|
+
fileName: string;
|
129040
|
+
fileKey: string;
|
129041
|
+
bucketName: string;
|
129042
|
+
fileSize: number;
|
129043
|
+
fileUrl: string | null;
|
129044
|
+
status?: string | undefined;
|
129045
|
+
};
|
128928
129046
|
assignee: {
|
128929
129047
|
id: string;
|
128930
129048
|
address: string | null;
|
@@ -129288,18 +129406,6 @@ export declare const chatContract: {
|
|
129288
129406
|
locale: "" | "th" | "mm" | "en";
|
129289
129407
|
previewUrl: string;
|
129290
129408
|
imageSetId: string;
|
129291
|
-
upload: {
|
129292
|
-
id: string;
|
129293
|
-
createdAt: Date;
|
129294
|
-
updatedAt: Date;
|
129295
|
-
deletedAt: Date | null;
|
129296
|
-
fileName: string;
|
129297
|
-
fileKey: string;
|
129298
|
-
bucketName: string;
|
129299
|
-
fileSize: number;
|
129300
|
-
fileUrl: string | null;
|
129301
|
-
status?: string | undefined;
|
129302
|
-
};
|
129303
129409
|
repliedMessage: {
|
129304
129410
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
129305
129411
|
message: string;
|
@@ -129354,6 +129460,18 @@ export declare const chatContract: {
|
|
129354
129460
|
};
|
129355
129461
|
};
|
129356
129462
|
platformId: string;
|
129463
|
+
upload: {
|
129464
|
+
id: string;
|
129465
|
+
createdAt: Date;
|
129466
|
+
updatedAt: Date;
|
129467
|
+
deletedAt: Date | null;
|
129468
|
+
fileName: string;
|
129469
|
+
fileKey: string;
|
129470
|
+
bucketName: string;
|
129471
|
+
fileSize: number;
|
129472
|
+
fileUrl: string | null;
|
129473
|
+
status?: string | undefined;
|
129474
|
+
};
|
129357
129475
|
assignee: {
|
129358
129476
|
id: string;
|
129359
129477
|
address: string | null;
|
@@ -129404,18 +129522,6 @@ export declare const chatContract: {
|
|
129404
129522
|
locale: "" | "th" | "mm" | "en";
|
129405
129523
|
previewUrl: string;
|
129406
129524
|
imageSetId: string;
|
129407
|
-
upload: {
|
129408
|
-
id: string;
|
129409
|
-
createdAt: Date;
|
129410
|
-
updatedAt: Date;
|
129411
|
-
deletedAt: Date | null;
|
129412
|
-
fileName: string;
|
129413
|
-
fileKey: string;
|
129414
|
-
bucketName: string;
|
129415
|
-
fileSize: number;
|
129416
|
-
fileUrl: string | null;
|
129417
|
-
status?: string | undefined;
|
129418
|
-
};
|
129419
129525
|
sender: {
|
129420
129526
|
id: string;
|
129421
129527
|
address: string | null;
|
@@ -132888,56 +132994,6 @@ export declare const chatContract: {
|
|
132888
132994
|
};
|
132889
132995
|
};
|
132890
132996
|
platformId: string;
|
132891
|
-
assignee: {
|
132892
|
-
id: string;
|
132893
|
-
address: string | null;
|
132894
|
-
name: string;
|
132895
|
-
email: string;
|
132896
|
-
createdAt: Date;
|
132897
|
-
updatedAt: Date;
|
132898
|
-
deletedAt: Date | null;
|
132899
|
-
emailVerifiedAt: Date | null;
|
132900
|
-
password: string;
|
132901
|
-
phone: string | null;
|
132902
|
-
notificationCount: number | null;
|
132903
|
-
roles: {
|
132904
|
-
id: string;
|
132905
|
-
description: string | null;
|
132906
|
-
createdAt: Date;
|
132907
|
-
updatedAt: Date;
|
132908
|
-
deletedAt: Date | null;
|
132909
|
-
systemName: string;
|
132910
|
-
displayName: string;
|
132911
|
-
permissions: {
|
132912
|
-
id: string;
|
132913
|
-
description: string | null;
|
132914
|
-
createdAt: Date;
|
132915
|
-
updatedAt: Date;
|
132916
|
-
deletedAt: Date | null;
|
132917
|
-
systemName: string;
|
132918
|
-
displayName: string;
|
132919
|
-
}[];
|
132920
|
-
}[];
|
132921
|
-
extension: {
|
132922
|
-
id: string;
|
132923
|
-
createdAt: Date;
|
132924
|
-
updatedAt: Date;
|
132925
|
-
deletedAt: Date | null;
|
132926
|
-
userId: string | null;
|
132927
|
-
sipServerUrl: string;
|
132928
|
-
sipUserName: string;
|
132929
|
-
webphoneLoginUser: string;
|
132930
|
-
extensionId: string | null;
|
132931
|
-
extensionName: string;
|
132932
|
-
telephonySignature: string | null;
|
132933
|
-
};
|
132934
|
-
};
|
132935
|
-
readAt: Date;
|
132936
|
-
platformMessageId: string;
|
132937
|
-
replyPlatformMessageId: string;
|
132938
|
-
locale: "" | "th" | "mm" | "en";
|
132939
|
-
previewUrl: string;
|
132940
|
-
imageSetId: string;
|
132941
132997
|
upload: {
|
132942
132998
|
id: string;
|
132943
132999
|
createdAt: Date;
|
@@ -132950,106 +133006,6 @@ export declare const chatContract: {
|
|
132950
133006
|
fileUrl: string | null;
|
132951
133007
|
status?: string | undefined;
|
132952
133008
|
};
|
132953
|
-
sender: {
|
132954
|
-
id: string;
|
132955
|
-
address: string | null;
|
132956
|
-
name: string;
|
132957
|
-
email: string;
|
132958
|
-
createdAt: Date;
|
132959
|
-
updatedAt: Date;
|
132960
|
-
deletedAt: Date | null;
|
132961
|
-
emailVerifiedAt: Date | null;
|
132962
|
-
password: string;
|
132963
|
-
phone: string | null;
|
132964
|
-
notificationCount: number | null;
|
132965
|
-
roles: {
|
132966
|
-
id: string;
|
132967
|
-
description: string | null;
|
132968
|
-
createdAt: Date;
|
132969
|
-
updatedAt: Date;
|
132970
|
-
deletedAt: Date | null;
|
132971
|
-
systemName: string;
|
132972
|
-
displayName: string;
|
132973
|
-
permissions: {
|
132974
|
-
id: string;
|
132975
|
-
description: string | null;
|
132976
|
-
createdAt: Date;
|
132977
|
-
updatedAt: Date;
|
132978
|
-
deletedAt: Date | null;
|
132979
|
-
systemName: string;
|
132980
|
-
displayName: string;
|
132981
|
-
}[];
|
132982
|
-
}[];
|
132983
|
-
extension: {
|
132984
|
-
id: string;
|
132985
|
-
createdAt: Date;
|
132986
|
-
updatedAt: Date;
|
132987
|
-
deletedAt: Date | null;
|
132988
|
-
userId: string | null;
|
132989
|
-
sipServerUrl: string;
|
132990
|
-
sipUserName: string;
|
132991
|
-
webphoneLoginUser: string;
|
132992
|
-
extensionId: string | null;
|
132993
|
-
extensionName: string;
|
132994
|
-
telephonySignature: string | null;
|
132995
|
-
};
|
132996
|
-
};
|
132997
|
-
metadata?: any;
|
132998
|
-
template?: any;
|
132999
|
-
}, {
|
133000
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
133001
|
-
message: string;
|
133002
|
-
id: string;
|
133003
|
-
url: string;
|
133004
|
-
direction: "incoming" | "outgoing" | "system";
|
133005
|
-
createdAt: Date;
|
133006
|
-
updatedAt: Date;
|
133007
|
-
deletedAt: Date | null;
|
133008
|
-
actor: {
|
133009
|
-
id: string;
|
133010
|
-
address: string | null;
|
133011
|
-
name: string;
|
133012
|
-
email: string;
|
133013
|
-
createdAt: Date;
|
133014
|
-
updatedAt: Date;
|
133015
|
-
deletedAt: Date | null;
|
133016
|
-
emailVerifiedAt: Date | null;
|
133017
|
-
password: string;
|
133018
|
-
phone: string | null;
|
133019
|
-
notificationCount: number | null;
|
133020
|
-
roles: {
|
133021
|
-
id: string;
|
133022
|
-
description: string | null;
|
133023
|
-
createdAt: Date;
|
133024
|
-
updatedAt: Date;
|
133025
|
-
deletedAt: Date | null;
|
133026
|
-
systemName: string;
|
133027
|
-
displayName: string;
|
133028
|
-
permissions: {
|
133029
|
-
id: string;
|
133030
|
-
description: string | null;
|
133031
|
-
createdAt: Date;
|
133032
|
-
updatedAt: Date;
|
133033
|
-
deletedAt: Date | null;
|
133034
|
-
systemName: string;
|
133035
|
-
displayName: string;
|
133036
|
-
}[];
|
133037
|
-
}[];
|
133038
|
-
extension: {
|
133039
|
-
id: string;
|
133040
|
-
createdAt: Date;
|
133041
|
-
updatedAt: Date;
|
133042
|
-
deletedAt: Date | null;
|
133043
|
-
userId: string | null;
|
133044
|
-
sipServerUrl: string;
|
133045
|
-
sipUserName: string;
|
133046
|
-
webphoneLoginUser: string;
|
133047
|
-
extensionId: string | null;
|
133048
|
-
extensionName: string;
|
133049
|
-
telephonySignature: string | null;
|
133050
|
-
};
|
133051
|
-
};
|
133052
|
-
platformId: string;
|
133053
133009
|
assignee: {
|
133054
133010
|
id: string;
|
133055
133011
|
address: string | null;
|
@@ -133100,18 +133056,168 @@ export declare const chatContract: {
|
|
133100
133056
|
locale: "" | "th" | "mm" | "en";
|
133101
133057
|
previewUrl: string;
|
133102
133058
|
imageSetId: string;
|
133103
|
-
|
133104
|
-
id: string;
|
133105
|
-
|
133106
|
-
|
133107
|
-
|
133108
|
-
|
133109
|
-
|
133110
|
-
|
133111
|
-
|
133112
|
-
|
133113
|
-
|
133114
|
-
|
133059
|
+
sender: {
|
133060
|
+
id: string;
|
133061
|
+
address: string | null;
|
133062
|
+
name: string;
|
133063
|
+
email: string;
|
133064
|
+
createdAt: Date;
|
133065
|
+
updatedAt: Date;
|
133066
|
+
deletedAt: Date | null;
|
133067
|
+
emailVerifiedAt: Date | null;
|
133068
|
+
password: string;
|
133069
|
+
phone: string | null;
|
133070
|
+
notificationCount: number | null;
|
133071
|
+
roles: {
|
133072
|
+
id: string;
|
133073
|
+
description: string | null;
|
133074
|
+
createdAt: Date;
|
133075
|
+
updatedAt: Date;
|
133076
|
+
deletedAt: Date | null;
|
133077
|
+
systemName: string;
|
133078
|
+
displayName: string;
|
133079
|
+
permissions: {
|
133080
|
+
id: string;
|
133081
|
+
description: string | null;
|
133082
|
+
createdAt: Date;
|
133083
|
+
updatedAt: Date;
|
133084
|
+
deletedAt: Date | null;
|
133085
|
+
systemName: string;
|
133086
|
+
displayName: string;
|
133087
|
+
}[];
|
133088
|
+
}[];
|
133089
|
+
extension: {
|
133090
|
+
id: string;
|
133091
|
+
createdAt: Date;
|
133092
|
+
updatedAt: Date;
|
133093
|
+
deletedAt: Date | null;
|
133094
|
+
userId: string | null;
|
133095
|
+
sipServerUrl: string;
|
133096
|
+
sipUserName: string;
|
133097
|
+
webphoneLoginUser: string;
|
133098
|
+
extensionId: string | null;
|
133099
|
+
extensionName: string;
|
133100
|
+
telephonySignature: string | null;
|
133101
|
+
};
|
133102
|
+
};
|
133103
|
+
metadata?: any;
|
133104
|
+
template?: any;
|
133105
|
+
}, {
|
133106
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
133107
|
+
message: string;
|
133108
|
+
id: string;
|
133109
|
+
url: string;
|
133110
|
+
direction: "incoming" | "outgoing" | "system";
|
133111
|
+
createdAt: Date;
|
133112
|
+
updatedAt: Date;
|
133113
|
+
deletedAt: Date | null;
|
133114
|
+
actor: {
|
133115
|
+
id: string;
|
133116
|
+
address: string | null;
|
133117
|
+
name: string;
|
133118
|
+
email: string;
|
133119
|
+
createdAt: Date;
|
133120
|
+
updatedAt: Date;
|
133121
|
+
deletedAt: Date | null;
|
133122
|
+
emailVerifiedAt: Date | null;
|
133123
|
+
password: string;
|
133124
|
+
phone: string | null;
|
133125
|
+
notificationCount: number | null;
|
133126
|
+
roles: {
|
133127
|
+
id: string;
|
133128
|
+
description: string | null;
|
133129
|
+
createdAt: Date;
|
133130
|
+
updatedAt: Date;
|
133131
|
+
deletedAt: Date | null;
|
133132
|
+
systemName: string;
|
133133
|
+
displayName: string;
|
133134
|
+
permissions: {
|
133135
|
+
id: string;
|
133136
|
+
description: string | null;
|
133137
|
+
createdAt: Date;
|
133138
|
+
updatedAt: Date;
|
133139
|
+
deletedAt: Date | null;
|
133140
|
+
systemName: string;
|
133141
|
+
displayName: string;
|
133142
|
+
}[];
|
133143
|
+
}[];
|
133144
|
+
extension: {
|
133145
|
+
id: string;
|
133146
|
+
createdAt: Date;
|
133147
|
+
updatedAt: Date;
|
133148
|
+
deletedAt: Date | null;
|
133149
|
+
userId: string | null;
|
133150
|
+
sipServerUrl: string;
|
133151
|
+
sipUserName: string;
|
133152
|
+
webphoneLoginUser: string;
|
133153
|
+
extensionId: string | null;
|
133154
|
+
extensionName: string;
|
133155
|
+
telephonySignature: string | null;
|
133156
|
+
};
|
133157
|
+
};
|
133158
|
+
platformId: string;
|
133159
|
+
upload: {
|
133160
|
+
id: string;
|
133161
|
+
createdAt: Date;
|
133162
|
+
updatedAt: Date;
|
133163
|
+
deletedAt: Date | null;
|
133164
|
+
fileName: string;
|
133165
|
+
fileKey: string;
|
133166
|
+
bucketName: string;
|
133167
|
+
fileSize: number;
|
133168
|
+
fileUrl: string | null;
|
133169
|
+
status?: string | undefined;
|
133170
|
+
};
|
133171
|
+
assignee: {
|
133172
|
+
id: string;
|
133173
|
+
address: string | null;
|
133174
|
+
name: string;
|
133175
|
+
email: string;
|
133176
|
+
createdAt: Date;
|
133177
|
+
updatedAt: Date;
|
133178
|
+
deletedAt: Date | null;
|
133179
|
+
emailVerifiedAt: Date | null;
|
133180
|
+
password: string;
|
133181
|
+
phone: string | null;
|
133182
|
+
notificationCount: number | null;
|
133183
|
+
roles: {
|
133184
|
+
id: string;
|
133185
|
+
description: string | null;
|
133186
|
+
createdAt: Date;
|
133187
|
+
updatedAt: Date;
|
133188
|
+
deletedAt: Date | null;
|
133189
|
+
systemName: string;
|
133190
|
+
displayName: string;
|
133191
|
+
permissions: {
|
133192
|
+
id: string;
|
133193
|
+
description: string | null;
|
133194
|
+
createdAt: Date;
|
133195
|
+
updatedAt: Date;
|
133196
|
+
deletedAt: Date | null;
|
133197
|
+
systemName: string;
|
133198
|
+
displayName: string;
|
133199
|
+
}[];
|
133200
|
+
}[];
|
133201
|
+
extension: {
|
133202
|
+
id: string;
|
133203
|
+
createdAt: Date;
|
133204
|
+
updatedAt: Date;
|
133205
|
+
deletedAt: Date | null;
|
133206
|
+
userId: string | null;
|
133207
|
+
sipServerUrl: string;
|
133208
|
+
sipUserName: string;
|
133209
|
+
webphoneLoginUser: string;
|
133210
|
+
extensionId: string | null;
|
133211
|
+
extensionName: string;
|
133212
|
+
telephonySignature: string | null;
|
133213
|
+
};
|
133214
|
+
};
|
133215
|
+
readAt: Date;
|
133216
|
+
platformMessageId: string;
|
133217
|
+
replyPlatformMessageId: string;
|
133218
|
+
locale: "" | "th" | "mm" | "en";
|
133219
|
+
previewUrl: string;
|
133220
|
+
imageSetId: string;
|
133115
133221
|
sender: {
|
133116
133222
|
id: string;
|
133117
133223
|
address: string | null;
|
@@ -133825,6 +133931,18 @@ export declare const chatContract: {
|
|
133825
133931
|
};
|
133826
133932
|
};
|
133827
133933
|
platformId: string;
|
133934
|
+
upload: {
|
133935
|
+
id: string;
|
133936
|
+
createdAt: Date;
|
133937
|
+
updatedAt: Date;
|
133938
|
+
deletedAt: Date | null;
|
133939
|
+
fileName: string;
|
133940
|
+
fileKey: string;
|
133941
|
+
bucketName: string;
|
133942
|
+
fileSize: number;
|
133943
|
+
fileUrl: string | null;
|
133944
|
+
status?: string | undefined;
|
133945
|
+
};
|
133828
133946
|
assignee: {
|
133829
133947
|
id: string;
|
133830
133948
|
address: string | null;
|
@@ -134188,18 +134306,6 @@ export declare const chatContract: {
|
|
134188
134306
|
locale: "" | "th" | "mm" | "en";
|
134189
134307
|
previewUrl: string;
|
134190
134308
|
imageSetId: string;
|
134191
|
-
upload: {
|
134192
|
-
id: string;
|
134193
|
-
createdAt: Date;
|
134194
|
-
updatedAt: Date;
|
134195
|
-
deletedAt: Date | null;
|
134196
|
-
fileName: string;
|
134197
|
-
fileKey: string;
|
134198
|
-
bucketName: string;
|
134199
|
-
fileSize: number;
|
134200
|
-
fileUrl: string | null;
|
134201
|
-
status?: string | undefined;
|
134202
|
-
};
|
134203
134309
|
repliedMessage: {
|
134204
134310
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
134205
134311
|
message: string;
|
@@ -134254,6 +134360,18 @@ export declare const chatContract: {
|
|
134254
134360
|
};
|
134255
134361
|
};
|
134256
134362
|
platformId: string;
|
134363
|
+
upload: {
|
134364
|
+
id: string;
|
134365
|
+
createdAt: Date;
|
134366
|
+
updatedAt: Date;
|
134367
|
+
deletedAt: Date | null;
|
134368
|
+
fileName: string;
|
134369
|
+
fileKey: string;
|
134370
|
+
bucketName: string;
|
134371
|
+
fileSize: number;
|
134372
|
+
fileUrl: string | null;
|
134373
|
+
status?: string | undefined;
|
134374
|
+
};
|
134257
134375
|
assignee: {
|
134258
134376
|
id: string;
|
134259
134377
|
address: string | null;
|
@@ -134304,18 +134422,6 @@ export declare const chatContract: {
|
|
134304
134422
|
locale: "" | "th" | "mm" | "en";
|
134305
134423
|
previewUrl: string;
|
134306
134424
|
imageSetId: string;
|
134307
|
-
upload: {
|
134308
|
-
id: string;
|
134309
|
-
createdAt: Date;
|
134310
|
-
updatedAt: Date;
|
134311
|
-
deletedAt: Date | null;
|
134312
|
-
fileName: string;
|
134313
|
-
fileKey: string;
|
134314
|
-
bucketName: string;
|
134315
|
-
fileSize: number;
|
134316
|
-
fileUrl: string | null;
|
134317
|
-
status?: string | undefined;
|
134318
|
-
};
|
134319
134425
|
sender: {
|
134320
134426
|
id: string;
|
134321
134427
|
address: string | null;
|
@@ -134463,6 +134569,18 @@ export declare const chatContract: {
|
|
134463
134569
|
};
|
134464
134570
|
};
|
134465
134571
|
platformId: string;
|
134572
|
+
upload: {
|
134573
|
+
id: string;
|
134574
|
+
createdAt: Date;
|
134575
|
+
updatedAt: Date;
|
134576
|
+
deletedAt: Date | null;
|
134577
|
+
fileName: string;
|
134578
|
+
fileKey: string;
|
134579
|
+
bucketName: string;
|
134580
|
+
fileSize: number;
|
134581
|
+
fileUrl: string | null;
|
134582
|
+
status?: string | undefined;
|
134583
|
+
};
|
134466
134584
|
assignee: {
|
134467
134585
|
id: string;
|
134468
134586
|
address: string | null;
|
@@ -134826,18 +134944,6 @@ export declare const chatContract: {
|
|
134826
134944
|
locale: "" | "th" | "mm" | "en";
|
134827
134945
|
previewUrl: string;
|
134828
134946
|
imageSetId: string;
|
134829
|
-
upload: {
|
134830
|
-
id: string;
|
134831
|
-
createdAt: Date;
|
134832
|
-
updatedAt: Date;
|
134833
|
-
deletedAt: Date | null;
|
134834
|
-
fileName: string;
|
134835
|
-
fileKey: string;
|
134836
|
-
bucketName: string;
|
134837
|
-
fileSize: number;
|
134838
|
-
fileUrl: string | null;
|
134839
|
-
status?: string | undefined;
|
134840
|
-
};
|
134841
134947
|
repliedMessage: {
|
134842
134948
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
134843
134949
|
message: string;
|
@@ -134892,6 +134998,18 @@ export declare const chatContract: {
|
|
134892
134998
|
};
|
134893
134999
|
};
|
134894
135000
|
platformId: string;
|
135001
|
+
upload: {
|
135002
|
+
id: string;
|
135003
|
+
createdAt: Date;
|
135004
|
+
updatedAt: Date;
|
135005
|
+
deletedAt: Date | null;
|
135006
|
+
fileName: string;
|
135007
|
+
fileKey: string;
|
135008
|
+
bucketName: string;
|
135009
|
+
fileSize: number;
|
135010
|
+
fileUrl: string | null;
|
135011
|
+
status?: string | undefined;
|
135012
|
+
};
|
134895
135013
|
assignee: {
|
134896
135014
|
id: string;
|
134897
135015
|
address: string | null;
|
@@ -134942,18 +135060,6 @@ export declare const chatContract: {
|
|
134942
135060
|
locale: "" | "th" | "mm" | "en";
|
134943
135061
|
previewUrl: string;
|
134944
135062
|
imageSetId: string;
|
134945
|
-
upload: {
|
134946
|
-
id: string;
|
134947
|
-
createdAt: Date;
|
134948
|
-
updatedAt: Date;
|
134949
|
-
deletedAt: Date | null;
|
134950
|
-
fileName: string;
|
134951
|
-
fileKey: string;
|
134952
|
-
bucketName: string;
|
134953
|
-
fileSize: number;
|
134954
|
-
fileUrl: string | null;
|
134955
|
-
status?: string | undefined;
|
134956
|
-
};
|
134957
135063
|
sender: {
|
134958
135064
|
id: string;
|
134959
135065
|
address: string | null;
|
@@ -135103,6 +135209,18 @@ export declare const chatContract: {
|
|
135103
135209
|
};
|
135104
135210
|
};
|
135105
135211
|
platformId: string;
|
135212
|
+
upload: {
|
135213
|
+
id: string;
|
135214
|
+
createdAt: Date;
|
135215
|
+
updatedAt: Date;
|
135216
|
+
deletedAt: Date | null;
|
135217
|
+
fileName: string;
|
135218
|
+
fileKey: string;
|
135219
|
+
bucketName: string;
|
135220
|
+
fileSize: number;
|
135221
|
+
fileUrl: string | null;
|
135222
|
+
status?: string | undefined;
|
135223
|
+
};
|
135106
135224
|
assignee: {
|
135107
135225
|
id: string;
|
135108
135226
|
address: string | null;
|
@@ -135466,18 +135584,6 @@ export declare const chatContract: {
|
|
135466
135584
|
locale: "" | "th" | "mm" | "en";
|
135467
135585
|
previewUrl: string;
|
135468
135586
|
imageSetId: string;
|
135469
|
-
upload: {
|
135470
|
-
id: string;
|
135471
|
-
createdAt: Date;
|
135472
|
-
updatedAt: Date;
|
135473
|
-
deletedAt: Date | null;
|
135474
|
-
fileName: string;
|
135475
|
-
fileKey: string;
|
135476
|
-
bucketName: string;
|
135477
|
-
fileSize: number;
|
135478
|
-
fileUrl: string | null;
|
135479
|
-
status?: string | undefined;
|
135480
|
-
};
|
135481
135587
|
repliedMessage: {
|
135482
135588
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
135483
135589
|
message: string;
|
@@ -135532,6 +135638,18 @@ export declare const chatContract: {
|
|
135532
135638
|
};
|
135533
135639
|
};
|
135534
135640
|
platformId: string;
|
135641
|
+
upload: {
|
135642
|
+
id: string;
|
135643
|
+
createdAt: Date;
|
135644
|
+
updatedAt: Date;
|
135645
|
+
deletedAt: Date | null;
|
135646
|
+
fileName: string;
|
135647
|
+
fileKey: string;
|
135648
|
+
bucketName: string;
|
135649
|
+
fileSize: number;
|
135650
|
+
fileUrl: string | null;
|
135651
|
+
status?: string | undefined;
|
135652
|
+
};
|
135535
135653
|
assignee: {
|
135536
135654
|
id: string;
|
135537
135655
|
address: string | null;
|
@@ -135582,18 +135700,6 @@ export declare const chatContract: {
|
|
135582
135700
|
locale: "" | "th" | "mm" | "en";
|
135583
135701
|
previewUrl: string;
|
135584
135702
|
imageSetId: string;
|
135585
|
-
upload: {
|
135586
|
-
id: string;
|
135587
|
-
createdAt: Date;
|
135588
|
-
updatedAt: Date;
|
135589
|
-
deletedAt: Date | null;
|
135590
|
-
fileName: string;
|
135591
|
-
fileKey: string;
|
135592
|
-
bucketName: string;
|
135593
|
-
fileSize: number;
|
135594
|
-
fileUrl: string | null;
|
135595
|
-
status?: string | undefined;
|
135596
|
-
};
|
135597
135703
|
sender: {
|
135598
135704
|
id: string;
|
135599
135705
|
address: string | null;
|
@@ -135747,6 +135853,18 @@ export declare const chatContract: {
|
|
135747
135853
|
};
|
135748
135854
|
};
|
135749
135855
|
platformId: string;
|
135856
|
+
upload: {
|
135857
|
+
id: string;
|
135858
|
+
createdAt: Date;
|
135859
|
+
updatedAt: Date;
|
135860
|
+
deletedAt: Date | null;
|
135861
|
+
fileName: string;
|
135862
|
+
fileKey: string;
|
135863
|
+
bucketName: string;
|
135864
|
+
fileSize: number;
|
135865
|
+
fileUrl: string | null;
|
135866
|
+
status?: string | undefined;
|
135867
|
+
};
|
135750
135868
|
assignee: {
|
135751
135869
|
id: string;
|
135752
135870
|
address: string | null;
|
@@ -136110,18 +136228,6 @@ export declare const chatContract: {
|
|
136110
136228
|
locale: "" | "th" | "mm" | "en";
|
136111
136229
|
previewUrl: string;
|
136112
136230
|
imageSetId: string;
|
136113
|
-
upload: {
|
136114
|
-
id: string;
|
136115
|
-
createdAt: Date;
|
136116
|
-
updatedAt: Date;
|
136117
|
-
deletedAt: Date | null;
|
136118
|
-
fileName: string;
|
136119
|
-
fileKey: string;
|
136120
|
-
bucketName: string;
|
136121
|
-
fileSize: number;
|
136122
|
-
fileUrl: string | null;
|
136123
|
-
status?: string | undefined;
|
136124
|
-
};
|
136125
136231
|
repliedMessage: {
|
136126
136232
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
136127
136233
|
message: string;
|
@@ -136176,6 +136282,18 @@ export declare const chatContract: {
|
|
136176
136282
|
};
|
136177
136283
|
};
|
136178
136284
|
platformId: string;
|
136285
|
+
upload: {
|
136286
|
+
id: string;
|
136287
|
+
createdAt: Date;
|
136288
|
+
updatedAt: Date;
|
136289
|
+
deletedAt: Date | null;
|
136290
|
+
fileName: string;
|
136291
|
+
fileKey: string;
|
136292
|
+
bucketName: string;
|
136293
|
+
fileSize: number;
|
136294
|
+
fileUrl: string | null;
|
136295
|
+
status?: string | undefined;
|
136296
|
+
};
|
136179
136297
|
assignee: {
|
136180
136298
|
id: string;
|
136181
136299
|
address: string | null;
|
@@ -136226,18 +136344,6 @@ export declare const chatContract: {
|
|
136226
136344
|
locale: "" | "th" | "mm" | "en";
|
136227
136345
|
previewUrl: string;
|
136228
136346
|
imageSetId: string;
|
136229
|
-
upload: {
|
136230
|
-
id: string;
|
136231
|
-
createdAt: Date;
|
136232
|
-
updatedAt: Date;
|
136233
|
-
deletedAt: Date | null;
|
136234
|
-
fileName: string;
|
136235
|
-
fileKey: string;
|
136236
|
-
bucketName: string;
|
136237
|
-
fileSize: number;
|
136238
|
-
fileUrl: string | null;
|
136239
|
-
status?: string | undefined;
|
136240
|
-
};
|
136241
136347
|
sender: {
|
136242
136348
|
id: string;
|
136243
136349
|
address: string | null;
|
@@ -157181,6 +157287,40 @@ export declare const telephonyContract: {
|
|
157181
157287
|
agentRingTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
157182
157288
|
uploadId: import("zod").ZodNullable<import("zod").ZodString>;
|
157183
157289
|
serialNumber: import("zod").ZodNullable<import("zod").ZodString>;
|
157290
|
+
upload: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
157291
|
+
id: import("zod").ZodString;
|
157292
|
+
createdAt: import("zod").ZodDate;
|
157293
|
+
updatedAt: import("zod").ZodDate;
|
157294
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
157295
|
+
bucketName: import("zod").ZodString;
|
157296
|
+
fileName: import("zod").ZodString;
|
157297
|
+
fileSize: import("zod").ZodNumber;
|
157298
|
+
fileKey: import("zod").ZodString;
|
157299
|
+
fileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
157300
|
+
status: import("zod").ZodOptional<import("zod").ZodString>;
|
157301
|
+
}, "strip", import("zod").ZodTypeAny, {
|
157302
|
+
id: string;
|
157303
|
+
createdAt: Date;
|
157304
|
+
updatedAt: Date;
|
157305
|
+
deletedAt: Date | null;
|
157306
|
+
fileName: string;
|
157307
|
+
fileKey: string;
|
157308
|
+
bucketName: string;
|
157309
|
+
fileSize: number;
|
157310
|
+
fileUrl: string | null;
|
157311
|
+
status?: string | undefined;
|
157312
|
+
}, {
|
157313
|
+
id: string;
|
157314
|
+
createdAt: Date;
|
157315
|
+
updatedAt: Date;
|
157316
|
+
deletedAt: Date | null;
|
157317
|
+
fileName: string;
|
157318
|
+
fileKey: string;
|
157319
|
+
bucketName: string;
|
157320
|
+
fileSize: number;
|
157321
|
+
fileUrl: string | null;
|
157322
|
+
status?: string | undefined;
|
157323
|
+
}>>>;
|
157184
157324
|
callParticipants: import("zod").ZodNullable<import("zod").ZodObject<{
|
157185
157325
|
callTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
157186
157326
|
id: import("zod").ZodString;
|
@@ -158218,6 +158358,18 @@ export declare const telephonyContract: {
|
|
158218
158358
|
queueNumber: string;
|
158219
158359
|
maximumWaitingTime: number;
|
158220
158360
|
} | null | undefined;
|
158361
|
+
upload?: {
|
158362
|
+
id: string;
|
158363
|
+
createdAt: Date;
|
158364
|
+
updatedAt: Date;
|
158365
|
+
deletedAt: Date | null;
|
158366
|
+
fileName: string;
|
158367
|
+
fileKey: string;
|
158368
|
+
bucketName: string;
|
158369
|
+
fileSize: number;
|
158370
|
+
fileUrl: string | null;
|
158371
|
+
status?: string | undefined;
|
158372
|
+
} | null | undefined;
|
158221
158373
|
extension?: {
|
158222
158374
|
id: string;
|
158223
158375
|
createdAt: Date;
|
@@ -158461,6 +158613,18 @@ export declare const telephonyContract: {
|
|
158461
158613
|
queueNumber: string;
|
158462
158614
|
maximumWaitingTime: number;
|
158463
158615
|
} | null | undefined;
|
158616
|
+
upload?: {
|
158617
|
+
id: string;
|
158618
|
+
createdAt: Date;
|
158619
|
+
updatedAt: Date;
|
158620
|
+
deletedAt: Date | null;
|
158621
|
+
fileName: string;
|
158622
|
+
fileKey: string;
|
158623
|
+
bucketName: string;
|
158624
|
+
fileSize: number;
|
158625
|
+
fileUrl: string | null;
|
158626
|
+
status?: string | undefined;
|
158627
|
+
} | null | undefined;
|
158464
158628
|
extension?: {
|
158465
158629
|
id: string;
|
158466
158630
|
createdAt: Date;
|
@@ -158710,6 +158874,18 @@ export declare const telephonyContract: {
|
|
158710
158874
|
queueNumber: string;
|
158711
158875
|
maximumWaitingTime: number;
|
158712
158876
|
} | null | undefined;
|
158877
|
+
upload?: {
|
158878
|
+
id: string;
|
158879
|
+
createdAt: Date;
|
158880
|
+
updatedAt: Date;
|
158881
|
+
deletedAt: Date | null;
|
158882
|
+
fileName: string;
|
158883
|
+
fileKey: string;
|
158884
|
+
bucketName: string;
|
158885
|
+
fileSize: number;
|
158886
|
+
fileUrl: string | null;
|
158887
|
+
status?: string | undefined;
|
158888
|
+
} | null | undefined;
|
158713
158889
|
extension?: {
|
158714
158890
|
id: string;
|
158715
158891
|
createdAt: Date;
|
@@ -158959,6 +159135,18 @@ export declare const telephonyContract: {
|
|
158959
159135
|
queueNumber: string;
|
158960
159136
|
maximumWaitingTime: number;
|
158961
159137
|
} | null | undefined;
|
159138
|
+
upload?: {
|
159139
|
+
id: string;
|
159140
|
+
createdAt: Date;
|
159141
|
+
updatedAt: Date;
|
159142
|
+
deletedAt: Date | null;
|
159143
|
+
fileName: string;
|
159144
|
+
fileKey: string;
|
159145
|
+
bucketName: string;
|
159146
|
+
fileSize: number;
|
159147
|
+
fileUrl: string | null;
|
159148
|
+
status?: string | undefined;
|
159149
|
+
} | null | undefined;
|
158962
159150
|
extension?: {
|
158963
159151
|
id: string;
|
158964
159152
|
createdAt: Date;
|
@@ -159820,6 +160008,40 @@ export declare const telephonyContract: {
|
|
159820
160008
|
agentRingTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
159821
160009
|
uploadId: import("zod").ZodNullable<import("zod").ZodString>;
|
159822
160010
|
serialNumber: import("zod").ZodNullable<import("zod").ZodString>;
|
160011
|
+
upload: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
160012
|
+
id: import("zod").ZodString;
|
160013
|
+
createdAt: import("zod").ZodDate;
|
160014
|
+
updatedAt: import("zod").ZodDate;
|
160015
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
160016
|
+
bucketName: import("zod").ZodString;
|
160017
|
+
fileName: import("zod").ZodString;
|
160018
|
+
fileSize: import("zod").ZodNumber;
|
160019
|
+
fileKey: import("zod").ZodString;
|
160020
|
+
fileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
160021
|
+
status: import("zod").ZodOptional<import("zod").ZodString>;
|
160022
|
+
}, "strip", import("zod").ZodTypeAny, {
|
160023
|
+
id: string;
|
160024
|
+
createdAt: Date;
|
160025
|
+
updatedAt: Date;
|
160026
|
+
deletedAt: Date | null;
|
160027
|
+
fileName: string;
|
160028
|
+
fileKey: string;
|
160029
|
+
bucketName: string;
|
160030
|
+
fileSize: number;
|
160031
|
+
fileUrl: string | null;
|
160032
|
+
status?: string | undefined;
|
160033
|
+
}, {
|
160034
|
+
id: string;
|
160035
|
+
createdAt: Date;
|
160036
|
+
updatedAt: Date;
|
160037
|
+
deletedAt: Date | null;
|
160038
|
+
fileName: string;
|
160039
|
+
fileKey: string;
|
160040
|
+
bucketName: string;
|
160041
|
+
fileSize: number;
|
160042
|
+
fileUrl: string | null;
|
160043
|
+
status?: string | undefined;
|
160044
|
+
}>>>;
|
159823
160045
|
callParticipants: import("zod").ZodNullable<import("zod").ZodObject<{
|
159824
160046
|
callTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
159825
160047
|
id: import("zod").ZodString;
|
@@ -160857,6 +161079,18 @@ export declare const telephonyContract: {
|
|
160857
161079
|
queueNumber: string;
|
160858
161080
|
maximumWaitingTime: number;
|
160859
161081
|
} | null | undefined;
|
161082
|
+
upload?: {
|
161083
|
+
id: string;
|
161084
|
+
createdAt: Date;
|
161085
|
+
updatedAt: Date;
|
161086
|
+
deletedAt: Date | null;
|
161087
|
+
fileName: string;
|
161088
|
+
fileKey: string;
|
161089
|
+
bucketName: string;
|
161090
|
+
fileSize: number;
|
161091
|
+
fileUrl: string | null;
|
161092
|
+
status?: string | undefined;
|
161093
|
+
} | null | undefined;
|
160860
161094
|
extension?: {
|
160861
161095
|
id: string;
|
160862
161096
|
createdAt: Date;
|
@@ -161100,6 +161334,18 @@ export declare const telephonyContract: {
|
|
161100
161334
|
queueNumber: string;
|
161101
161335
|
maximumWaitingTime: number;
|
161102
161336
|
} | null | undefined;
|
161337
|
+
upload?: {
|
161338
|
+
id: string;
|
161339
|
+
createdAt: Date;
|
161340
|
+
updatedAt: Date;
|
161341
|
+
deletedAt: Date | null;
|
161342
|
+
fileName: string;
|
161343
|
+
fileKey: string;
|
161344
|
+
bucketName: string;
|
161345
|
+
fileSize: number;
|
161346
|
+
fileUrl: string | null;
|
161347
|
+
status?: string | undefined;
|
161348
|
+
} | null | undefined;
|
161103
161349
|
extension?: {
|
161104
161350
|
id: string;
|
161105
161351
|
createdAt: Date;
|
@@ -161349,6 +161595,18 @@ export declare const telephonyContract: {
|
|
161349
161595
|
queueNumber: string;
|
161350
161596
|
maximumWaitingTime: number;
|
161351
161597
|
} | null | undefined;
|
161598
|
+
upload?: {
|
161599
|
+
id: string;
|
161600
|
+
createdAt: Date;
|
161601
|
+
updatedAt: Date;
|
161602
|
+
deletedAt: Date | null;
|
161603
|
+
fileName: string;
|
161604
|
+
fileKey: string;
|
161605
|
+
bucketName: string;
|
161606
|
+
fileSize: number;
|
161607
|
+
fileUrl: string | null;
|
161608
|
+
status?: string | undefined;
|
161609
|
+
} | null | undefined;
|
161352
161610
|
extension?: {
|
161353
161611
|
id: string;
|
161354
161612
|
createdAt: Date;
|
@@ -161598,6 +161856,18 @@ export declare const telephonyContract: {
|
|
161598
161856
|
queueNumber: string;
|
161599
161857
|
maximumWaitingTime: number;
|
161600
161858
|
} | null | undefined;
|
161859
|
+
upload?: {
|
161860
|
+
id: string;
|
161861
|
+
createdAt: Date;
|
161862
|
+
updatedAt: Date;
|
161863
|
+
deletedAt: Date | null;
|
161864
|
+
fileName: string;
|
161865
|
+
fileKey: string;
|
161866
|
+
bucketName: string;
|
161867
|
+
fileSize: number;
|
161868
|
+
fileUrl: string | null;
|
161869
|
+
status?: string | undefined;
|
161870
|
+
} | null | undefined;
|
161601
161871
|
extension?: {
|
161602
161872
|
id: string;
|
161603
161873
|
createdAt: Date;
|
@@ -162477,6 +162747,40 @@ export declare const telephonyContract: {
|
|
162477
162747
|
agentRingTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
162478
162748
|
uploadId: import("zod").ZodNullable<import("zod").ZodString>;
|
162479
162749
|
serialNumber: import("zod").ZodNullable<import("zod").ZodString>;
|
162750
|
+
upload: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
162751
|
+
id: import("zod").ZodString;
|
162752
|
+
createdAt: import("zod").ZodDate;
|
162753
|
+
updatedAt: import("zod").ZodDate;
|
162754
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
162755
|
+
bucketName: import("zod").ZodString;
|
162756
|
+
fileName: import("zod").ZodString;
|
162757
|
+
fileSize: import("zod").ZodNumber;
|
162758
|
+
fileKey: import("zod").ZodString;
|
162759
|
+
fileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
162760
|
+
status: import("zod").ZodOptional<import("zod").ZodString>;
|
162761
|
+
}, "strip", import("zod").ZodTypeAny, {
|
162762
|
+
id: string;
|
162763
|
+
createdAt: Date;
|
162764
|
+
updatedAt: Date;
|
162765
|
+
deletedAt: Date | null;
|
162766
|
+
fileName: string;
|
162767
|
+
fileKey: string;
|
162768
|
+
bucketName: string;
|
162769
|
+
fileSize: number;
|
162770
|
+
fileUrl: string | null;
|
162771
|
+
status?: string | undefined;
|
162772
|
+
}, {
|
162773
|
+
id: string;
|
162774
|
+
createdAt: Date;
|
162775
|
+
updatedAt: Date;
|
162776
|
+
deletedAt: Date | null;
|
162777
|
+
fileName: string;
|
162778
|
+
fileKey: string;
|
162779
|
+
bucketName: string;
|
162780
|
+
fileSize: number;
|
162781
|
+
fileUrl: string | null;
|
162782
|
+
status?: string | undefined;
|
162783
|
+
}>>>;
|
162480
162784
|
callParticipants: import("zod").ZodNullable<import("zod").ZodObject<{
|
162481
162785
|
callTo: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
162482
162786
|
id: import("zod").ZodString;
|
@@ -163514,6 +163818,18 @@ export declare const telephonyContract: {
|
|
163514
163818
|
queueNumber: string;
|
163515
163819
|
maximumWaitingTime: number;
|
163516
163820
|
} | null | undefined;
|
163821
|
+
upload?: {
|
163822
|
+
id: string;
|
163823
|
+
createdAt: Date;
|
163824
|
+
updatedAt: Date;
|
163825
|
+
deletedAt: Date | null;
|
163826
|
+
fileName: string;
|
163827
|
+
fileKey: string;
|
163828
|
+
bucketName: string;
|
163829
|
+
fileSize: number;
|
163830
|
+
fileUrl: string | null;
|
163831
|
+
status?: string | undefined;
|
163832
|
+
} | null | undefined;
|
163517
163833
|
extension?: {
|
163518
163834
|
id: string;
|
163519
163835
|
createdAt: Date;
|
@@ -163757,6 +164073,18 @@ export declare const telephonyContract: {
|
|
163757
164073
|
queueNumber: string;
|
163758
164074
|
maximumWaitingTime: number;
|
163759
164075
|
} | null | undefined;
|
164076
|
+
upload?: {
|
164077
|
+
id: string;
|
164078
|
+
createdAt: Date;
|
164079
|
+
updatedAt: Date;
|
164080
|
+
deletedAt: Date | null;
|
164081
|
+
fileName: string;
|
164082
|
+
fileKey: string;
|
164083
|
+
bucketName: string;
|
164084
|
+
fileSize: number;
|
164085
|
+
fileUrl: string | null;
|
164086
|
+
status?: string | undefined;
|
164087
|
+
} | null | undefined;
|
163760
164088
|
extension?: {
|
163761
164089
|
id: string;
|
163762
164090
|
createdAt: Date;
|
@@ -164006,6 +164334,18 @@ export declare const telephonyContract: {
|
|
164006
164334
|
queueNumber: string;
|
164007
164335
|
maximumWaitingTime: number;
|
164008
164336
|
} | null | undefined;
|
164337
|
+
upload?: {
|
164338
|
+
id: string;
|
164339
|
+
createdAt: Date;
|
164340
|
+
updatedAt: Date;
|
164341
|
+
deletedAt: Date | null;
|
164342
|
+
fileName: string;
|
164343
|
+
fileKey: string;
|
164344
|
+
bucketName: string;
|
164345
|
+
fileSize: number;
|
164346
|
+
fileUrl: string | null;
|
164347
|
+
status?: string | undefined;
|
164348
|
+
} | null | undefined;
|
164009
164349
|
extension?: {
|
164010
164350
|
id: string;
|
164011
164351
|
createdAt: Date;
|
@@ -164255,6 +164595,18 @@ export declare const telephonyContract: {
|
|
164255
164595
|
queueNumber: string;
|
164256
164596
|
maximumWaitingTime: number;
|
164257
164597
|
} | null | undefined;
|
164598
|
+
upload?: {
|
164599
|
+
id: string;
|
164600
|
+
createdAt: Date;
|
164601
|
+
updatedAt: Date;
|
164602
|
+
deletedAt: Date | null;
|
164603
|
+
fileName: string;
|
164604
|
+
fileKey: string;
|
164605
|
+
bucketName: string;
|
164606
|
+
fileSize: number;
|
164607
|
+
fileUrl: string | null;
|
164608
|
+
status?: string | undefined;
|
164609
|
+
} | null | undefined;
|
164258
164610
|
extension?: {
|
164259
164611
|
id: string;
|
164260
164612
|
createdAt: Date;
|