@kl1/contracts 1.3.32 → 1.3.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist/api-contracts/src/botpress/index.d.ts +3 -3
  2. package/dist/api-contracts/src/channel/index.d.ts +10 -10
  3. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  4. package/dist/api-contracts/src/contract.d.ts +1067 -501
  5. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  6. package/dist/api-contracts/src/presence-status/index.d.ts +542 -50
  7. package/dist/api-contracts/src/presence-status/index.d.ts.map +1 -1
  8. package/dist/api-contracts/src/presence-status/schema.d.ts +385 -10
  9. package/dist/api-contracts/src/presence-status/schema.d.ts.map +1 -1
  10. package/dist/api-contracts/src/presence-status/validation.d.ts +30 -12
  11. package/dist/api-contracts/src/presence-status/validation.d.ts.map +1 -1
  12. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +85 -34
  13. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  14. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +25 -10
  15. package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  16. package/dist/api-contracts/src/user-presence-status-log/index.d.ts +40 -16
  17. package/dist/api-contracts/src/user-presence-status-log/index.d.ts.map +1 -1
  18. package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +50 -20
  19. package/dist/api-contracts/src/user-presence-status-log/schema.d.ts.map +1 -1
  20. package/dist/index.js +77 -42
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.mjs +77 -42
  23. package/dist/index.mjs.map +1 -1
  24. package/package.json +1 -1
@@ -220,25 +220,34 @@ export declare const telephonyAgentPresenceStatusContract: {
220
220
  createdAt: z.ZodDate;
221
221
  updatedAt: z.ZodDate;
222
222
  deletedAt: z.ZodNullable<z.ZodDate>;
223
- status: z.ZodString;
224
- description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
223
+ systemName: z.ZodString;
224
+ displayName: z.ZodString;
225
+ description: z.ZodNullable<z.ZodString>;
225
226
  position: z.ZodNumber;
227
+ emoji: z.ZodNullable<z.ZodString>;
228
+ presenceStatusOption: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"receive_call">, z.ZodLiteral<"do_not_receive_call">, z.ZodLiteral<"receive_chat_message">, z.ZodLiteral<"do_not_receive_chat_message">]>, "many">;
226
229
  }, "strip", z.ZodTypeAny, {
230
+ emoji: string | null;
227
231
  id: string;
228
232
  position: number;
229
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
230
- status: string;
233
+ description: string | null;
231
234
  createdAt: Date;
232
235
  updatedAt: Date;
233
236
  deletedAt: Date | null;
237
+ systemName: string;
238
+ displayName: string;
239
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
234
240
  }, {
241
+ emoji: string | null;
235
242
  id: string;
236
243
  position: number;
237
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
238
- status: string;
244
+ description: string | null;
239
245
  createdAt: Date;
240
246
  updatedAt: Date;
241
247
  deletedAt: Date | null;
248
+ systemName: string;
249
+ displayName: string;
250
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
242
251
  }>;
243
252
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
244
253
  }, "strip", z.ZodTypeAny, {
@@ -291,13 +300,16 @@ export declare const telephonyAgentPresenceStatusContract: {
291
300
  updatedAt: Date;
292
301
  deletedAt: Date | null;
293
302
  presenceStatus: {
303
+ emoji: string | null;
294
304
  id: string;
295
305
  position: number;
296
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
297
- status: string;
306
+ description: string | null;
298
307
  createdAt: Date;
299
308
  updatedAt: Date;
300
309
  deletedAt: Date | null;
310
+ systemName: string;
311
+ displayName: string;
312
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
301
313
  };
302
314
  customPresenceStatus?: string | null | undefined;
303
315
  }, {
@@ -350,13 +362,16 @@ export declare const telephonyAgentPresenceStatusContract: {
350
362
  updatedAt: Date;
351
363
  deletedAt: Date | null;
352
364
  presenceStatus: {
365
+ emoji: string | null;
353
366
  id: string;
354
367
  position: number;
355
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
356
- status: string;
368
+ description: string | null;
357
369
  createdAt: Date;
358
370
  updatedAt: Date;
359
371
  deletedAt: Date | null;
372
+ systemName: string;
373
+ displayName: string;
374
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
360
375
  };
361
376
  customPresenceStatus?: string | null | undefined;
362
377
  }>, "many">;
@@ -631,25 +646,34 @@ export declare const telephonyAgentPresenceStatusContract: {
631
646
  createdAt: z.ZodDate;
632
647
  updatedAt: z.ZodDate;
633
648
  deletedAt: z.ZodNullable<z.ZodDate>;
634
- status: z.ZodString;
635
- description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
649
+ systemName: z.ZodString;
650
+ displayName: z.ZodString;
651
+ description: z.ZodNullable<z.ZodString>;
636
652
  position: z.ZodNumber;
653
+ emoji: z.ZodNullable<z.ZodString>;
654
+ presenceStatusOption: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"receive_call">, z.ZodLiteral<"do_not_receive_call">, z.ZodLiteral<"receive_chat_message">, z.ZodLiteral<"do_not_receive_chat_message">]>, "many">;
637
655
  }, "strip", z.ZodTypeAny, {
656
+ emoji: string | null;
638
657
  id: string;
639
658
  position: number;
640
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
641
- status: string;
659
+ description: string | null;
642
660
  createdAt: Date;
643
661
  updatedAt: Date;
644
662
  deletedAt: Date | null;
663
+ systemName: string;
664
+ displayName: string;
665
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
645
666
  }, {
667
+ emoji: string | null;
646
668
  id: string;
647
669
  position: number;
648
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
649
- status: string;
670
+ description: string | null;
650
671
  createdAt: Date;
651
672
  updatedAt: Date;
652
673
  deletedAt: Date | null;
674
+ systemName: string;
675
+ displayName: string;
676
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
653
677
  }>;
654
678
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
655
679
  }, "strip", z.ZodTypeAny, {
@@ -702,13 +726,16 @@ export declare const telephonyAgentPresenceStatusContract: {
702
726
  updatedAt: Date;
703
727
  deletedAt: Date | null;
704
728
  presenceStatus: {
729
+ emoji: string | null;
705
730
  id: string;
706
731
  position: number;
707
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
708
- status: string;
732
+ description: string | null;
709
733
  createdAt: Date;
710
734
  updatedAt: Date;
711
735
  deletedAt: Date | null;
736
+ systemName: string;
737
+ displayName: string;
738
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
712
739
  };
713
740
  customPresenceStatus?: string | null | undefined;
714
741
  }, {
@@ -761,13 +788,16 @@ export declare const telephonyAgentPresenceStatusContract: {
761
788
  updatedAt: Date;
762
789
  deletedAt: Date | null;
763
790
  presenceStatus: {
791
+ emoji: string | null;
764
792
  id: string;
765
793
  position: number;
766
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
767
- status: string;
794
+ description: string | null;
768
795
  createdAt: Date;
769
796
  updatedAt: Date;
770
797
  deletedAt: Date | null;
798
+ systemName: string;
799
+ displayName: string;
800
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
771
801
  };
772
802
  customPresenceStatus?: string | null | undefined;
773
803
  }>;
@@ -1053,25 +1083,34 @@ export declare const telephonyAgentPresenceStatusContract: {
1053
1083
  createdAt: z.ZodDate;
1054
1084
  updatedAt: z.ZodDate;
1055
1085
  deletedAt: z.ZodNullable<z.ZodDate>;
1056
- status: z.ZodString;
1057
- description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
1086
+ systemName: z.ZodString;
1087
+ displayName: z.ZodString;
1088
+ description: z.ZodNullable<z.ZodString>;
1058
1089
  position: z.ZodNumber;
1090
+ emoji: z.ZodNullable<z.ZodString>;
1091
+ presenceStatusOption: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"receive_call">, z.ZodLiteral<"do_not_receive_call">, z.ZodLiteral<"receive_chat_message">, z.ZodLiteral<"do_not_receive_chat_message">]>, "many">;
1059
1092
  }, "strip", z.ZodTypeAny, {
1093
+ emoji: string | null;
1060
1094
  id: string;
1061
1095
  position: number;
1062
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1063
- status: string;
1096
+ description: string | null;
1064
1097
  createdAt: Date;
1065
1098
  updatedAt: Date;
1066
1099
  deletedAt: Date | null;
1100
+ systemName: string;
1101
+ displayName: string;
1102
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1067
1103
  }, {
1104
+ emoji: string | null;
1068
1105
  id: string;
1069
1106
  position: number;
1070
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1071
- status: string;
1107
+ description: string | null;
1072
1108
  createdAt: Date;
1073
1109
  updatedAt: Date;
1074
1110
  deletedAt: Date | null;
1111
+ systemName: string;
1112
+ displayName: string;
1113
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1075
1114
  }>;
1076
1115
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1077
1116
  }, "strip", z.ZodTypeAny, {
@@ -1124,13 +1163,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1124
1163
  updatedAt: Date;
1125
1164
  deletedAt: Date | null;
1126
1165
  presenceStatus: {
1166
+ emoji: string | null;
1127
1167
  id: string;
1128
1168
  position: number;
1129
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1130
- status: string;
1169
+ description: string | null;
1131
1170
  createdAt: Date;
1132
1171
  updatedAt: Date;
1133
1172
  deletedAt: Date | null;
1173
+ systemName: string;
1174
+ displayName: string;
1175
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1134
1176
  };
1135
1177
  customPresenceStatus?: string | null | undefined;
1136
1178
  }, {
@@ -1183,13 +1225,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1183
1225
  updatedAt: Date;
1184
1226
  deletedAt: Date | null;
1185
1227
  presenceStatus: {
1228
+ emoji: string | null;
1186
1229
  id: string;
1187
1230
  position: number;
1188
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1189
- status: string;
1231
+ description: string | null;
1190
1232
  createdAt: Date;
1191
1233
  updatedAt: Date;
1192
1234
  deletedAt: Date | null;
1235
+ systemName: string;
1236
+ displayName: string;
1237
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1193
1238
  };
1194
1239
  customPresenceStatus?: string | null | undefined;
1195
1240
  }>;
@@ -1245,13 +1290,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1245
1290
  updatedAt: Date;
1246
1291
  deletedAt: Date | null;
1247
1292
  presenceStatus: {
1293
+ emoji: string | null;
1248
1294
  id: string;
1249
1295
  position: number;
1250
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1251
- status: string;
1296
+ description: string | null;
1252
1297
  createdAt: Date;
1253
1298
  updatedAt: Date;
1254
1299
  deletedAt: Date | null;
1300
+ systemName: string;
1301
+ displayName: string;
1302
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1255
1303
  };
1256
1304
  customPresenceStatus?: string | null | undefined;
1257
1305
  };
@@ -1307,13 +1355,16 @@ export declare const telephonyAgentPresenceStatusContract: {
1307
1355
  updatedAt: Date;
1308
1356
  deletedAt: Date | null;
1309
1357
  presenceStatus: {
1358
+ emoji: string | null;
1310
1359
  id: string;
1311
1360
  position: number;
1312
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
1313
- status: string;
1361
+ description: string | null;
1314
1362
  createdAt: Date;
1315
1363
  updatedAt: Date;
1316
1364
  deletedAt: Date | null;
1365
+ systemName: string;
1366
+ displayName: string;
1367
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
1317
1368
  };
1318
1369
  customPresenceStatus?: string | null | undefined;
1319
1370
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/telephony-agent-presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDhD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/telephony-agent-presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDhD,CAAC"}
@@ -213,25 +213,34 @@ export declare const UserPresenceStatusSchema: z.ZodObject<{
213
213
  createdAt: z.ZodDate;
214
214
  updatedAt: z.ZodDate;
215
215
  deletedAt: z.ZodNullable<z.ZodDate>;
216
- status: z.ZodString;
217
- description: z.ZodEnum<["Can do everything.", "Mute all notifications.", "You won't receive call, but can still do other."]>;
216
+ systemName: z.ZodString;
217
+ displayName: z.ZodString;
218
+ description: z.ZodNullable<z.ZodString>;
218
219
  position: z.ZodNumber;
220
+ emoji: z.ZodNullable<z.ZodString>;
221
+ presenceStatusOption: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"receive_call">, z.ZodLiteral<"do_not_receive_call">, z.ZodLiteral<"receive_chat_message">, z.ZodLiteral<"do_not_receive_chat_message">]>, "many">;
219
222
  }, "strip", z.ZodTypeAny, {
223
+ emoji: string | null;
220
224
  id: string;
221
225
  position: number;
222
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
223
- status: string;
226
+ description: string | null;
224
227
  createdAt: Date;
225
228
  updatedAt: Date;
226
229
  deletedAt: Date | null;
230
+ systemName: string;
231
+ displayName: string;
232
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
227
233
  }, {
234
+ emoji: string | null;
228
235
  id: string;
229
236
  position: number;
230
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
231
- status: string;
237
+ description: string | null;
232
238
  createdAt: Date;
233
239
  updatedAt: Date;
234
240
  deletedAt: Date | null;
241
+ systemName: string;
242
+ displayName: string;
243
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
235
244
  }>;
236
245
  customPresenceStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
237
246
  }, "strip", z.ZodTypeAny, {
@@ -284,13 +293,16 @@ export declare const UserPresenceStatusSchema: z.ZodObject<{
284
293
  updatedAt: Date;
285
294
  deletedAt: Date | null;
286
295
  presenceStatus: {
296
+ emoji: string | null;
287
297
  id: string;
288
298
  position: number;
289
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
290
- status: string;
299
+ description: string | null;
291
300
  createdAt: Date;
292
301
  updatedAt: Date;
293
302
  deletedAt: Date | null;
303
+ systemName: string;
304
+ displayName: string;
305
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
294
306
  };
295
307
  customPresenceStatus?: string | null | undefined;
296
308
  }, {
@@ -343,13 +355,16 @@ export declare const UserPresenceStatusSchema: z.ZodObject<{
343
355
  updatedAt: Date;
344
356
  deletedAt: Date | null;
345
357
  presenceStatus: {
358
+ emoji: string | null;
346
359
  id: string;
347
360
  position: number;
348
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
349
- status: string;
361
+ description: string | null;
350
362
  createdAt: Date;
351
363
  updatedAt: Date;
352
364
  deletedAt: Date | null;
365
+ systemName: string;
366
+ displayName: string;
367
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
353
368
  };
354
369
  customPresenceStatus?: string | null | undefined;
355
370
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/telephony-agent-presence-status/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/telephony-agent-presence-status/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInC,CAAC"}
@@ -78,22 +78,28 @@ export declare const userPresenceStatusLogContract: {
78
78
  updatedAt: Date;
79
79
  deletedAt: Date | null;
80
80
  previousPresenceStatus: {
81
+ emoji: string | null;
81
82
  id: string;
82
83
  position: number;
83
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
84
- status: string;
84
+ description: string | null;
85
85
  createdAt: Date;
86
86
  updatedAt: Date;
87
87
  deletedAt: Date | null;
88
+ systemName: string;
89
+ displayName: string;
90
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
88
91
  };
89
92
  newPresenceStatus: {
93
+ emoji: string | null;
90
94
  id: string;
91
95
  position: number;
92
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
93
- status: string;
96
+ description: string | null;
94
97
  createdAt: Date;
95
98
  updatedAt: Date;
96
99
  deletedAt: Date | null;
100
+ systemName: string;
101
+ displayName: string;
102
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
97
103
  };
98
104
  }, z.ZodTypeDef, {
99
105
  reason: string;
@@ -146,22 +152,28 @@ export declare const userPresenceStatusLogContract: {
146
152
  updatedAt: Date;
147
153
  deletedAt: Date | null;
148
154
  previousPresenceStatus: {
155
+ emoji: string | null;
149
156
  id: string;
150
157
  position: number;
151
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
152
- status: string;
158
+ description: string | null;
153
159
  createdAt: Date;
154
160
  updatedAt: Date;
155
161
  deletedAt: Date | null;
162
+ systemName: string;
163
+ displayName: string;
164
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
156
165
  };
157
166
  newPresenceStatus: {
167
+ emoji: string | null;
158
168
  id: string;
159
169
  position: number;
160
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
161
- status: string;
170
+ description: string | null;
162
171
  createdAt: Date;
163
172
  updatedAt: Date;
164
173
  deletedAt: Date | null;
174
+ systemName: string;
175
+ displayName: string;
176
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
165
177
  };
166
178
  }>, "many">;
167
179
  }, "strip", z.ZodTypeAny, {
@@ -216,22 +228,28 @@ export declare const userPresenceStatusLogContract: {
216
228
  updatedAt: Date;
217
229
  deletedAt: Date | null;
218
230
  previousPresenceStatus: {
231
+ emoji: string | null;
219
232
  id: string;
220
233
  position: number;
221
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
222
- status: string;
234
+ description: string | null;
223
235
  createdAt: Date;
224
236
  updatedAt: Date;
225
237
  deletedAt: Date | null;
238
+ systemName: string;
239
+ displayName: string;
240
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
226
241
  };
227
242
  newPresenceStatus: {
243
+ emoji: string | null;
228
244
  id: string;
229
245
  position: number;
230
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
231
- status: string;
246
+ description: string | null;
232
247
  createdAt: Date;
233
248
  updatedAt: Date;
234
249
  deletedAt: Date | null;
250
+ systemName: string;
251
+ displayName: string;
252
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
235
253
  };
236
254
  }[];
237
255
  total: number;
@@ -290,22 +308,28 @@ export declare const userPresenceStatusLogContract: {
290
308
  updatedAt: Date;
291
309
  deletedAt: Date | null;
292
310
  previousPresenceStatus: {
311
+ emoji: string | null;
293
312
  id: string;
294
313
  position: number;
295
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
296
- status: string;
314
+ description: string | null;
297
315
  createdAt: Date;
298
316
  updatedAt: Date;
299
317
  deletedAt: Date | null;
318
+ systemName: string;
319
+ displayName: string;
320
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
300
321
  };
301
322
  newPresenceStatus: {
323
+ emoji: string | null;
302
324
  id: string;
303
325
  position: number;
304
- description: "Can do everything." | "Mute all notifications." | "You won't receive call, but can still do other.";
305
- status: string;
326
+ description: string | null;
306
327
  createdAt: Date;
307
328
  updatedAt: Date;
308
329
  deletedAt: Date | null;
330
+ systemName: string;
331
+ displayName: string;
332
+ presenceStatusOption: ("receive_call" | "do_not_receive_call" | "receive_chat_message" | "do_not_receive_chat_message")[];
309
333
  };
310
334
  }[];
311
335
  total: number;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/user-presence-status-log/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AACvD,OAAO,EACL,uCAAuC,EACvC,iCAAiC,EAClC,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,iCAAiC,CACzC,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,uCAAuC,CAC/C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCzC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/user-presence-status-log/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AACvD,OAAO,EACL,uCAAuC,EACvC,iCAAiC,EAClC,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,iCAAiC,CACzC,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,uCAAuC,CAC/C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCzC,CAAC"}