@kl1/contracts 1.2.29-uat → 1.2.30-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/chat/index.d.ts +1979 -1780
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +350 -350
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +417 -218
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2062 -2062
- package/dist/api-contracts/src/cx-log/schema.d.ts +97 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +218 -218
- package/dist/api-contracts/src/hold-label/index.d.ts +108 -0
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +38 -0
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +0 -1
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +218 -218
- package/dist/api-contracts/src/line/index.d.ts +218 -218
- package/dist/api-contracts/src/mail/mail-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/room-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/room-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +165 -0
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +131 -0
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +218 -218
- package/dist/api-contracts/src/telegram/index.d.ts +218 -218
- package/dist/api-contracts/src/viber/index.d.ts +218 -218
- package/dist/api-contracts/src/webchat/index.d.ts +218 -218
- package/dist/api-contracts/src/whatsapp/index.d.ts +218 -218
- package/dist/api-contracts/src/workflow-rule/index.d.ts +144 -144
- package/dist/index.js +326 -352
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +326 -351
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5559,6 +5559,69 @@ export declare const roomContract: {
|
|
|
5559
5559
|
dateValue: Date | null;
|
|
5560
5560
|
}[] | null | undefined;
|
|
5561
5561
|
}>>;
|
|
5562
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5563
|
+
id: z.ZodString;
|
|
5564
|
+
createdAt: z.ZodDate;
|
|
5565
|
+
updatedAt: z.ZodDate;
|
|
5566
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5567
|
+
startedAt: z.ZodString;
|
|
5568
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
5569
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
5570
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5571
|
+
id: z.ZodString;
|
|
5572
|
+
createdAt: z.ZodDate;
|
|
5573
|
+
updatedAt: z.ZodDate;
|
|
5574
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5575
|
+
name: z.ZodString;
|
|
5576
|
+
position: z.ZodNumber;
|
|
5577
|
+
}, "strip", z.ZodTypeAny, {
|
|
5578
|
+
id: string;
|
|
5579
|
+
name: string;
|
|
5580
|
+
position: number;
|
|
5581
|
+
createdAt: Date;
|
|
5582
|
+
updatedAt: Date;
|
|
5583
|
+
deletedAt: Date | null;
|
|
5584
|
+
}, {
|
|
5585
|
+
id: string;
|
|
5586
|
+
name: string;
|
|
5587
|
+
position: number;
|
|
5588
|
+
createdAt: Date;
|
|
5589
|
+
updatedAt: Date;
|
|
5590
|
+
deletedAt: Date | null;
|
|
5591
|
+
}>>>;
|
|
5592
|
+
}, "strip", z.ZodTypeAny, {
|
|
5593
|
+
id: string;
|
|
5594
|
+
createdAt: Date;
|
|
5595
|
+
updatedAt: Date;
|
|
5596
|
+
deletedAt: Date | null;
|
|
5597
|
+
startedAt: string;
|
|
5598
|
+
endedAt: string | null;
|
|
5599
|
+
duration: number | null;
|
|
5600
|
+
holdLabel?: {
|
|
5601
|
+
id: string;
|
|
5602
|
+
name: string;
|
|
5603
|
+
position: number;
|
|
5604
|
+
createdAt: Date;
|
|
5605
|
+
updatedAt: Date;
|
|
5606
|
+
deletedAt: Date | null;
|
|
5607
|
+
} | null | undefined;
|
|
5608
|
+
}, {
|
|
5609
|
+
id: string;
|
|
5610
|
+
createdAt: Date;
|
|
5611
|
+
updatedAt: Date;
|
|
5612
|
+
deletedAt: Date | null;
|
|
5613
|
+
startedAt: string;
|
|
5614
|
+
endedAt: string | null;
|
|
5615
|
+
duration: number | null;
|
|
5616
|
+
holdLabel?: {
|
|
5617
|
+
id: string;
|
|
5618
|
+
name: string;
|
|
5619
|
+
position: number;
|
|
5620
|
+
createdAt: Date;
|
|
5621
|
+
updatedAt: Date;
|
|
5622
|
+
deletedAt: Date | null;
|
|
5623
|
+
} | null | undefined;
|
|
5624
|
+
}>, "many">>>;
|
|
5562
5625
|
}, "strip", z.ZodTypeAny, {
|
|
5563
5626
|
id: string;
|
|
5564
5627
|
channel: string | null;
|
|
@@ -5627,6 +5690,23 @@ export declare const roomContract: {
|
|
|
5627
5690
|
dateValue: Date | null;
|
|
5628
5691
|
}[] | null | undefined;
|
|
5629
5692
|
} | null;
|
|
5693
|
+
holdLogs?: {
|
|
5694
|
+
id: string;
|
|
5695
|
+
createdAt: Date;
|
|
5696
|
+
updatedAt: Date;
|
|
5697
|
+
deletedAt: Date | null;
|
|
5698
|
+
startedAt: string;
|
|
5699
|
+
endedAt: string | null;
|
|
5700
|
+
duration: number | null;
|
|
5701
|
+
holdLabel?: {
|
|
5702
|
+
id: string;
|
|
5703
|
+
name: string;
|
|
5704
|
+
position: number;
|
|
5705
|
+
createdAt: Date;
|
|
5706
|
+
updatedAt: Date;
|
|
5707
|
+
deletedAt: Date | null;
|
|
5708
|
+
} | null | undefined;
|
|
5709
|
+
}[] | null | undefined;
|
|
5630
5710
|
}, {
|
|
5631
5711
|
id: string;
|
|
5632
5712
|
channel: string | null;
|
|
@@ -5695,6 +5775,23 @@ export declare const roomContract: {
|
|
|
5695
5775
|
dateValue: Date | null;
|
|
5696
5776
|
}[] | null | undefined;
|
|
5697
5777
|
} | null;
|
|
5778
|
+
holdLogs?: {
|
|
5779
|
+
id: string;
|
|
5780
|
+
createdAt: Date;
|
|
5781
|
+
updatedAt: Date;
|
|
5782
|
+
deletedAt: Date | null;
|
|
5783
|
+
startedAt: string;
|
|
5784
|
+
endedAt: string | null;
|
|
5785
|
+
duration: number | null;
|
|
5786
|
+
holdLabel?: {
|
|
5787
|
+
id: string;
|
|
5788
|
+
name: string;
|
|
5789
|
+
position: number;
|
|
5790
|
+
createdAt: Date;
|
|
5791
|
+
updatedAt: Date;
|
|
5792
|
+
deletedAt: Date | null;
|
|
5793
|
+
} | null | undefined;
|
|
5794
|
+
}[] | null | undefined;
|
|
5698
5795
|
}>;
|
|
5699
5796
|
}, "strip", z.ZodTypeAny, {
|
|
5700
5797
|
id: string;
|
|
@@ -5960,6 +6057,23 @@ export declare const roomContract: {
|
|
|
5960
6057
|
dateValue: Date | null;
|
|
5961
6058
|
}[] | null | undefined;
|
|
5962
6059
|
} | null;
|
|
6060
|
+
holdLogs?: {
|
|
6061
|
+
id: string;
|
|
6062
|
+
createdAt: Date;
|
|
6063
|
+
updatedAt: Date;
|
|
6064
|
+
deletedAt: Date | null;
|
|
6065
|
+
startedAt: string;
|
|
6066
|
+
endedAt: string | null;
|
|
6067
|
+
duration: number | null;
|
|
6068
|
+
holdLabel?: {
|
|
6069
|
+
id: string;
|
|
6070
|
+
name: string;
|
|
6071
|
+
position: number;
|
|
6072
|
+
createdAt: Date;
|
|
6073
|
+
updatedAt: Date;
|
|
6074
|
+
deletedAt: Date | null;
|
|
6075
|
+
} | null | undefined;
|
|
6076
|
+
}[] | null | undefined;
|
|
5963
6077
|
};
|
|
5964
6078
|
assigneeId: string | null;
|
|
5965
6079
|
from: {
|
|
@@ -6907,6 +7021,23 @@ export declare const roomContract: {
|
|
|
6907
7021
|
dateValue: Date | null;
|
|
6908
7022
|
}[] | null | undefined;
|
|
6909
7023
|
} | null;
|
|
7024
|
+
holdLogs?: {
|
|
7025
|
+
id: string;
|
|
7026
|
+
createdAt: Date;
|
|
7027
|
+
updatedAt: Date;
|
|
7028
|
+
deletedAt: Date | null;
|
|
7029
|
+
startedAt: string;
|
|
7030
|
+
endedAt: string | null;
|
|
7031
|
+
duration: number | null;
|
|
7032
|
+
holdLabel?: {
|
|
7033
|
+
id: string;
|
|
7034
|
+
name: string;
|
|
7035
|
+
position: number;
|
|
7036
|
+
createdAt: Date;
|
|
7037
|
+
updatedAt: Date;
|
|
7038
|
+
deletedAt: Date | null;
|
|
7039
|
+
} | null | undefined;
|
|
7040
|
+
}[] | null | undefined;
|
|
6910
7041
|
};
|
|
6911
7042
|
assigneeId: string | null;
|
|
6912
7043
|
from: {
|
|
@@ -7859,6 +7990,23 @@ export declare const roomContract: {
|
|
|
7859
7990
|
dateValue: Date | null;
|
|
7860
7991
|
}[] | null | undefined;
|
|
7861
7992
|
} | null;
|
|
7993
|
+
holdLogs?: {
|
|
7994
|
+
id: string;
|
|
7995
|
+
createdAt: Date;
|
|
7996
|
+
updatedAt: Date;
|
|
7997
|
+
deletedAt: Date | null;
|
|
7998
|
+
startedAt: string;
|
|
7999
|
+
endedAt: string | null;
|
|
8000
|
+
duration: number | null;
|
|
8001
|
+
holdLabel?: {
|
|
8002
|
+
id: string;
|
|
8003
|
+
name: string;
|
|
8004
|
+
position: number;
|
|
8005
|
+
createdAt: Date;
|
|
8006
|
+
updatedAt: Date;
|
|
8007
|
+
deletedAt: Date | null;
|
|
8008
|
+
} | null | undefined;
|
|
8009
|
+
}[] | null | undefined;
|
|
7862
8010
|
};
|
|
7863
8011
|
assigneeId: string | null;
|
|
7864
8012
|
from: {
|
|
@@ -8812,6 +8960,23 @@ export declare const roomContract: {
|
|
|
8812
8960
|
dateValue: Date | null;
|
|
8813
8961
|
}[] | null | undefined;
|
|
8814
8962
|
} | null;
|
|
8963
|
+
holdLogs?: {
|
|
8964
|
+
id: string;
|
|
8965
|
+
createdAt: Date;
|
|
8966
|
+
updatedAt: Date;
|
|
8967
|
+
deletedAt: Date | null;
|
|
8968
|
+
startedAt: string;
|
|
8969
|
+
endedAt: string | null;
|
|
8970
|
+
duration: number | null;
|
|
8971
|
+
holdLabel?: {
|
|
8972
|
+
id: string;
|
|
8973
|
+
name: string;
|
|
8974
|
+
position: number;
|
|
8975
|
+
createdAt: Date;
|
|
8976
|
+
updatedAt: Date;
|
|
8977
|
+
deletedAt: Date | null;
|
|
8978
|
+
} | null | undefined;
|
|
8979
|
+
}[] | null | undefined;
|
|
8815
8980
|
};
|
|
8816
8981
|
assigneeId: string | null;
|
|
8817
8982
|
from: {
|
|
@@ -15938,6 +16103,69 @@ export declare const roomContract: {
|
|
|
15938
16103
|
dateValue: Date | null;
|
|
15939
16104
|
}[] | null | undefined;
|
|
15940
16105
|
}>>;
|
|
16106
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
16107
|
+
id: z.ZodString;
|
|
16108
|
+
createdAt: z.ZodDate;
|
|
16109
|
+
updatedAt: z.ZodDate;
|
|
16110
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
16111
|
+
startedAt: z.ZodString;
|
|
16112
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
16113
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
16114
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16115
|
+
id: z.ZodString;
|
|
16116
|
+
createdAt: z.ZodDate;
|
|
16117
|
+
updatedAt: z.ZodDate;
|
|
16118
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
16119
|
+
name: z.ZodString;
|
|
16120
|
+
position: z.ZodNumber;
|
|
16121
|
+
}, "strip", z.ZodTypeAny, {
|
|
16122
|
+
id: string;
|
|
16123
|
+
name: string;
|
|
16124
|
+
position: number;
|
|
16125
|
+
createdAt: Date;
|
|
16126
|
+
updatedAt: Date;
|
|
16127
|
+
deletedAt: Date | null;
|
|
16128
|
+
}, {
|
|
16129
|
+
id: string;
|
|
16130
|
+
name: string;
|
|
16131
|
+
position: number;
|
|
16132
|
+
createdAt: Date;
|
|
16133
|
+
updatedAt: Date;
|
|
16134
|
+
deletedAt: Date | null;
|
|
16135
|
+
}>>>;
|
|
16136
|
+
}, "strip", z.ZodTypeAny, {
|
|
16137
|
+
id: string;
|
|
16138
|
+
createdAt: Date;
|
|
16139
|
+
updatedAt: Date;
|
|
16140
|
+
deletedAt: Date | null;
|
|
16141
|
+
startedAt: string;
|
|
16142
|
+
endedAt: string | null;
|
|
16143
|
+
duration: number | null;
|
|
16144
|
+
holdLabel?: {
|
|
16145
|
+
id: string;
|
|
16146
|
+
name: string;
|
|
16147
|
+
position: number;
|
|
16148
|
+
createdAt: Date;
|
|
16149
|
+
updatedAt: Date;
|
|
16150
|
+
deletedAt: Date | null;
|
|
16151
|
+
} | null | undefined;
|
|
16152
|
+
}, {
|
|
16153
|
+
id: string;
|
|
16154
|
+
createdAt: Date;
|
|
16155
|
+
updatedAt: Date;
|
|
16156
|
+
deletedAt: Date | null;
|
|
16157
|
+
startedAt: string;
|
|
16158
|
+
endedAt: string | null;
|
|
16159
|
+
duration: number | null;
|
|
16160
|
+
holdLabel?: {
|
|
16161
|
+
id: string;
|
|
16162
|
+
name: string;
|
|
16163
|
+
position: number;
|
|
16164
|
+
createdAt: Date;
|
|
16165
|
+
updatedAt: Date;
|
|
16166
|
+
deletedAt: Date | null;
|
|
16167
|
+
} | null | undefined;
|
|
16168
|
+
}>, "many">>>;
|
|
15941
16169
|
}, "strip", z.ZodTypeAny, {
|
|
15942
16170
|
id: string;
|
|
15943
16171
|
channel: string | null;
|
|
@@ -16006,6 +16234,23 @@ export declare const roomContract: {
|
|
|
16006
16234
|
dateValue: Date | null;
|
|
16007
16235
|
}[] | null | undefined;
|
|
16008
16236
|
} | null;
|
|
16237
|
+
holdLogs?: {
|
|
16238
|
+
id: string;
|
|
16239
|
+
createdAt: Date;
|
|
16240
|
+
updatedAt: Date;
|
|
16241
|
+
deletedAt: Date | null;
|
|
16242
|
+
startedAt: string;
|
|
16243
|
+
endedAt: string | null;
|
|
16244
|
+
duration: number | null;
|
|
16245
|
+
holdLabel?: {
|
|
16246
|
+
id: string;
|
|
16247
|
+
name: string;
|
|
16248
|
+
position: number;
|
|
16249
|
+
createdAt: Date;
|
|
16250
|
+
updatedAt: Date;
|
|
16251
|
+
deletedAt: Date | null;
|
|
16252
|
+
} | null | undefined;
|
|
16253
|
+
}[] | null | undefined;
|
|
16009
16254
|
}, {
|
|
16010
16255
|
id: string;
|
|
16011
16256
|
channel: string | null;
|
|
@@ -16074,6 +16319,23 @@ export declare const roomContract: {
|
|
|
16074
16319
|
dateValue: Date | null;
|
|
16075
16320
|
}[] | null | undefined;
|
|
16076
16321
|
} | null;
|
|
16322
|
+
holdLogs?: {
|
|
16323
|
+
id: string;
|
|
16324
|
+
createdAt: Date;
|
|
16325
|
+
updatedAt: Date;
|
|
16326
|
+
deletedAt: Date | null;
|
|
16327
|
+
startedAt: string;
|
|
16328
|
+
endedAt: string | null;
|
|
16329
|
+
duration: number | null;
|
|
16330
|
+
holdLabel?: {
|
|
16331
|
+
id: string;
|
|
16332
|
+
name: string;
|
|
16333
|
+
position: number;
|
|
16334
|
+
createdAt: Date;
|
|
16335
|
+
updatedAt: Date;
|
|
16336
|
+
deletedAt: Date | null;
|
|
16337
|
+
} | null | undefined;
|
|
16338
|
+
}[] | null | undefined;
|
|
16077
16339
|
}>;
|
|
16078
16340
|
}, "strip", z.ZodTypeAny, {
|
|
16079
16341
|
id: string;
|
|
@@ -16339,6 +16601,23 @@ export declare const roomContract: {
|
|
|
16339
16601
|
dateValue: Date | null;
|
|
16340
16602
|
}[] | null | undefined;
|
|
16341
16603
|
} | null;
|
|
16604
|
+
holdLogs?: {
|
|
16605
|
+
id: string;
|
|
16606
|
+
createdAt: Date;
|
|
16607
|
+
updatedAt: Date;
|
|
16608
|
+
deletedAt: Date | null;
|
|
16609
|
+
startedAt: string;
|
|
16610
|
+
endedAt: string | null;
|
|
16611
|
+
duration: number | null;
|
|
16612
|
+
holdLabel?: {
|
|
16613
|
+
id: string;
|
|
16614
|
+
name: string;
|
|
16615
|
+
position: number;
|
|
16616
|
+
createdAt: Date;
|
|
16617
|
+
updatedAt: Date;
|
|
16618
|
+
deletedAt: Date | null;
|
|
16619
|
+
} | null | undefined;
|
|
16620
|
+
}[] | null | undefined;
|
|
16342
16621
|
};
|
|
16343
16622
|
assigneeId: string | null;
|
|
16344
16623
|
from: {
|
|
@@ -17286,6 +17565,23 @@ export declare const roomContract: {
|
|
|
17286
17565
|
dateValue: Date | null;
|
|
17287
17566
|
}[] | null | undefined;
|
|
17288
17567
|
} | null;
|
|
17568
|
+
holdLogs?: {
|
|
17569
|
+
id: string;
|
|
17570
|
+
createdAt: Date;
|
|
17571
|
+
updatedAt: Date;
|
|
17572
|
+
deletedAt: Date | null;
|
|
17573
|
+
startedAt: string;
|
|
17574
|
+
endedAt: string | null;
|
|
17575
|
+
duration: number | null;
|
|
17576
|
+
holdLabel?: {
|
|
17577
|
+
id: string;
|
|
17578
|
+
name: string;
|
|
17579
|
+
position: number;
|
|
17580
|
+
createdAt: Date;
|
|
17581
|
+
updatedAt: Date;
|
|
17582
|
+
deletedAt: Date | null;
|
|
17583
|
+
} | null | undefined;
|
|
17584
|
+
}[] | null | undefined;
|
|
17289
17585
|
};
|
|
17290
17586
|
assigneeId: string | null;
|
|
17291
17587
|
from: {
|
|
@@ -18235,6 +18531,23 @@ export declare const roomContract: {
|
|
|
18235
18531
|
dateValue: Date | null;
|
|
18236
18532
|
}[] | null | undefined;
|
|
18237
18533
|
} | null;
|
|
18534
|
+
holdLogs?: {
|
|
18535
|
+
id: string;
|
|
18536
|
+
createdAt: Date;
|
|
18537
|
+
updatedAt: Date;
|
|
18538
|
+
deletedAt: Date | null;
|
|
18539
|
+
startedAt: string;
|
|
18540
|
+
endedAt: string | null;
|
|
18541
|
+
duration: number | null;
|
|
18542
|
+
holdLabel?: {
|
|
18543
|
+
id: string;
|
|
18544
|
+
name: string;
|
|
18545
|
+
position: number;
|
|
18546
|
+
createdAt: Date;
|
|
18547
|
+
updatedAt: Date;
|
|
18548
|
+
deletedAt: Date | null;
|
|
18549
|
+
} | null | undefined;
|
|
18550
|
+
}[] | null | undefined;
|
|
18238
18551
|
};
|
|
18239
18552
|
assigneeId: string | null;
|
|
18240
18553
|
from: {
|
|
@@ -19185,6 +19498,23 @@ export declare const roomContract: {
|
|
|
19185
19498
|
dateValue: Date | null;
|
|
19186
19499
|
}[] | null | undefined;
|
|
19187
19500
|
} | null;
|
|
19501
|
+
holdLogs?: {
|
|
19502
|
+
id: string;
|
|
19503
|
+
createdAt: Date;
|
|
19504
|
+
updatedAt: Date;
|
|
19505
|
+
deletedAt: Date | null;
|
|
19506
|
+
startedAt: string;
|
|
19507
|
+
endedAt: string | null;
|
|
19508
|
+
duration: number | null;
|
|
19509
|
+
holdLabel?: {
|
|
19510
|
+
id: string;
|
|
19511
|
+
name: string;
|
|
19512
|
+
position: number;
|
|
19513
|
+
createdAt: Date;
|
|
19514
|
+
updatedAt: Date;
|
|
19515
|
+
deletedAt: Date | null;
|
|
19516
|
+
} | null | undefined;
|
|
19517
|
+
}[] | null | undefined;
|
|
19188
19518
|
};
|
|
19189
19519
|
assigneeId: string | null;
|
|
19190
19520
|
from: {
|
|
@@ -25397,6 +25727,69 @@ export declare const roomContract: {
|
|
|
25397
25727
|
dateValue: Date | null;
|
|
25398
25728
|
}[] | null | undefined;
|
|
25399
25729
|
}>>;
|
|
25730
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
25731
|
+
id: z.ZodString;
|
|
25732
|
+
createdAt: z.ZodDate;
|
|
25733
|
+
updatedAt: z.ZodDate;
|
|
25734
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
25735
|
+
startedAt: z.ZodString;
|
|
25736
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
|
25737
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
|
25738
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25739
|
+
id: z.ZodString;
|
|
25740
|
+
createdAt: z.ZodDate;
|
|
25741
|
+
updatedAt: z.ZodDate;
|
|
25742
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
25743
|
+
name: z.ZodString;
|
|
25744
|
+
position: z.ZodNumber;
|
|
25745
|
+
}, "strip", z.ZodTypeAny, {
|
|
25746
|
+
id: string;
|
|
25747
|
+
name: string;
|
|
25748
|
+
position: number;
|
|
25749
|
+
createdAt: Date;
|
|
25750
|
+
updatedAt: Date;
|
|
25751
|
+
deletedAt: Date | null;
|
|
25752
|
+
}, {
|
|
25753
|
+
id: string;
|
|
25754
|
+
name: string;
|
|
25755
|
+
position: number;
|
|
25756
|
+
createdAt: Date;
|
|
25757
|
+
updatedAt: Date;
|
|
25758
|
+
deletedAt: Date | null;
|
|
25759
|
+
}>>>;
|
|
25760
|
+
}, "strip", z.ZodTypeAny, {
|
|
25761
|
+
id: string;
|
|
25762
|
+
createdAt: Date;
|
|
25763
|
+
updatedAt: Date;
|
|
25764
|
+
deletedAt: Date | null;
|
|
25765
|
+
startedAt: string;
|
|
25766
|
+
endedAt: string | null;
|
|
25767
|
+
duration: number | null;
|
|
25768
|
+
holdLabel?: {
|
|
25769
|
+
id: string;
|
|
25770
|
+
name: string;
|
|
25771
|
+
position: number;
|
|
25772
|
+
createdAt: Date;
|
|
25773
|
+
updatedAt: Date;
|
|
25774
|
+
deletedAt: Date | null;
|
|
25775
|
+
} | null | undefined;
|
|
25776
|
+
}, {
|
|
25777
|
+
id: string;
|
|
25778
|
+
createdAt: Date;
|
|
25779
|
+
updatedAt: Date;
|
|
25780
|
+
deletedAt: Date | null;
|
|
25781
|
+
startedAt: string;
|
|
25782
|
+
endedAt: string | null;
|
|
25783
|
+
duration: number | null;
|
|
25784
|
+
holdLabel?: {
|
|
25785
|
+
id: string;
|
|
25786
|
+
name: string;
|
|
25787
|
+
position: number;
|
|
25788
|
+
createdAt: Date;
|
|
25789
|
+
updatedAt: Date;
|
|
25790
|
+
deletedAt: Date | null;
|
|
25791
|
+
} | null | undefined;
|
|
25792
|
+
}>, "many">>>;
|
|
25400
25793
|
}, "strip", z.ZodTypeAny, {
|
|
25401
25794
|
id: string;
|
|
25402
25795
|
channel: string | null;
|
|
@@ -25465,6 +25858,23 @@ export declare const roomContract: {
|
|
|
25465
25858
|
dateValue: Date | null;
|
|
25466
25859
|
}[] | null | undefined;
|
|
25467
25860
|
} | null;
|
|
25861
|
+
holdLogs?: {
|
|
25862
|
+
id: string;
|
|
25863
|
+
createdAt: Date;
|
|
25864
|
+
updatedAt: Date;
|
|
25865
|
+
deletedAt: Date | null;
|
|
25866
|
+
startedAt: string;
|
|
25867
|
+
endedAt: string | null;
|
|
25868
|
+
duration: number | null;
|
|
25869
|
+
holdLabel?: {
|
|
25870
|
+
id: string;
|
|
25871
|
+
name: string;
|
|
25872
|
+
position: number;
|
|
25873
|
+
createdAt: Date;
|
|
25874
|
+
updatedAt: Date;
|
|
25875
|
+
deletedAt: Date | null;
|
|
25876
|
+
} | null | undefined;
|
|
25877
|
+
}[] | null | undefined;
|
|
25468
25878
|
}, {
|
|
25469
25879
|
id: string;
|
|
25470
25880
|
channel: string | null;
|
|
@@ -25533,6 +25943,23 @@ export declare const roomContract: {
|
|
|
25533
25943
|
dateValue: Date | null;
|
|
25534
25944
|
}[] | null | undefined;
|
|
25535
25945
|
} | null;
|
|
25946
|
+
holdLogs?: {
|
|
25947
|
+
id: string;
|
|
25948
|
+
createdAt: Date;
|
|
25949
|
+
updatedAt: Date;
|
|
25950
|
+
deletedAt: Date | null;
|
|
25951
|
+
startedAt: string;
|
|
25952
|
+
endedAt: string | null;
|
|
25953
|
+
duration: number | null;
|
|
25954
|
+
holdLabel?: {
|
|
25955
|
+
id: string;
|
|
25956
|
+
name: string;
|
|
25957
|
+
position: number;
|
|
25958
|
+
createdAt: Date;
|
|
25959
|
+
updatedAt: Date;
|
|
25960
|
+
deletedAt: Date | null;
|
|
25961
|
+
} | null | undefined;
|
|
25962
|
+
}[] | null | undefined;
|
|
25536
25963
|
}>;
|
|
25537
25964
|
}, "strip", z.ZodTypeAny, {
|
|
25538
25965
|
id: string;
|
|
@@ -25798,6 +26225,23 @@ export declare const roomContract: {
|
|
|
25798
26225
|
dateValue: Date | null;
|
|
25799
26226
|
}[] | null | undefined;
|
|
25800
26227
|
} | null;
|
|
26228
|
+
holdLogs?: {
|
|
26229
|
+
id: string;
|
|
26230
|
+
createdAt: Date;
|
|
26231
|
+
updatedAt: Date;
|
|
26232
|
+
deletedAt: Date | null;
|
|
26233
|
+
startedAt: string;
|
|
26234
|
+
endedAt: string | null;
|
|
26235
|
+
duration: number | null;
|
|
26236
|
+
holdLabel?: {
|
|
26237
|
+
id: string;
|
|
26238
|
+
name: string;
|
|
26239
|
+
position: number;
|
|
26240
|
+
createdAt: Date;
|
|
26241
|
+
updatedAt: Date;
|
|
26242
|
+
deletedAt: Date | null;
|
|
26243
|
+
} | null | undefined;
|
|
26244
|
+
}[] | null | undefined;
|
|
25801
26245
|
};
|
|
25802
26246
|
assigneeId: string | null;
|
|
25803
26247
|
from: {
|
|
@@ -26745,6 +27189,23 @@ export declare const roomContract: {
|
|
|
26745
27189
|
dateValue: Date | null;
|
|
26746
27190
|
}[] | null | undefined;
|
|
26747
27191
|
} | null;
|
|
27192
|
+
holdLogs?: {
|
|
27193
|
+
id: string;
|
|
27194
|
+
createdAt: Date;
|
|
27195
|
+
updatedAt: Date;
|
|
27196
|
+
deletedAt: Date | null;
|
|
27197
|
+
startedAt: string;
|
|
27198
|
+
endedAt: string | null;
|
|
27199
|
+
duration: number | null;
|
|
27200
|
+
holdLabel?: {
|
|
27201
|
+
id: string;
|
|
27202
|
+
name: string;
|
|
27203
|
+
position: number;
|
|
27204
|
+
createdAt: Date;
|
|
27205
|
+
updatedAt: Date;
|
|
27206
|
+
deletedAt: Date | null;
|
|
27207
|
+
} | null | undefined;
|
|
27208
|
+
}[] | null | undefined;
|
|
26748
27209
|
};
|
|
26749
27210
|
assigneeId: string | null;
|
|
26750
27211
|
from: {
|
|
@@ -27694,6 +28155,23 @@ export declare const roomContract: {
|
|
|
27694
28155
|
dateValue: Date | null;
|
|
27695
28156
|
}[] | null | undefined;
|
|
27696
28157
|
} | null;
|
|
28158
|
+
holdLogs?: {
|
|
28159
|
+
id: string;
|
|
28160
|
+
createdAt: Date;
|
|
28161
|
+
updatedAt: Date;
|
|
28162
|
+
deletedAt: Date | null;
|
|
28163
|
+
startedAt: string;
|
|
28164
|
+
endedAt: string | null;
|
|
28165
|
+
duration: number | null;
|
|
28166
|
+
holdLabel?: {
|
|
28167
|
+
id: string;
|
|
28168
|
+
name: string;
|
|
28169
|
+
position: number;
|
|
28170
|
+
createdAt: Date;
|
|
28171
|
+
updatedAt: Date;
|
|
28172
|
+
deletedAt: Date | null;
|
|
28173
|
+
} | null | undefined;
|
|
28174
|
+
}[] | null | undefined;
|
|
27697
28175
|
};
|
|
27698
28176
|
assigneeId: string | null;
|
|
27699
28177
|
from: {
|
|
@@ -28644,6 +29122,23 @@ export declare const roomContract: {
|
|
|
28644
29122
|
dateValue: Date | null;
|
|
28645
29123
|
}[] | null | undefined;
|
|
28646
29124
|
} | null;
|
|
29125
|
+
holdLogs?: {
|
|
29126
|
+
id: string;
|
|
29127
|
+
createdAt: Date;
|
|
29128
|
+
updatedAt: Date;
|
|
29129
|
+
deletedAt: Date | null;
|
|
29130
|
+
startedAt: string;
|
|
29131
|
+
endedAt: string | null;
|
|
29132
|
+
duration: number | null;
|
|
29133
|
+
holdLabel?: {
|
|
29134
|
+
id: string;
|
|
29135
|
+
name: string;
|
|
29136
|
+
position: number;
|
|
29137
|
+
createdAt: Date;
|
|
29138
|
+
updatedAt: Date;
|
|
29139
|
+
deletedAt: Date | null;
|
|
29140
|
+
} | null | undefined;
|
|
29141
|
+
}[] | null | undefined;
|
|
28647
29142
|
};
|
|
28648
29143
|
assigneeId: string | null;
|
|
28649
29144
|
from: {
|