@ampsec/platform-client 84.30.0 → 84.30.1

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 (34) hide show
  1. package/build/src/dto/contexts.dto.d.ts +10 -10
  2. package/build/src/dto/conversations.dto.d.ts +5 -5
  3. package/build/src/dto/engagementContexts.dto.d.ts +6 -6
  4. package/build/src/dto/engagementConversations.dto.d.ts +7 -7
  5. package/build/src/dto/engagementLogs.dto.d.ts +54 -0
  6. package/build/src/dto/engagementLogs.dto.js +23 -0
  7. package/build/src/dto/engagementLogs.dto.js.map +1 -0
  8. package/build/src/dto/flows.dto.js.map +1 -1
  9. package/build/src/dto/index.d.ts +1 -0
  10. package/build/src/dto/index.js +1 -0
  11. package/build/src/dto/index.js.map +1 -1
  12. package/build/src/dto/notification.dto.d.ts +70 -66
  13. package/build/src/dto/notification.dto.js.map +1 -1
  14. package/build/src/dto/platform/platform.contexts.dto.d.ts +10 -10
  15. package/build/src/dto/platform/platform.dialogues.dto.d.ts +5 -5
  16. package/build/src/dto/platform/platform.engagementContexts.dto.d.ts +6 -6
  17. package/build/src/dto/platform/platform.engagementConversations.dto.d.ts +2 -2
  18. package/build/src/services/AmpApi.d.ts +2 -0
  19. package/build/src/services/AmpApi.js +2 -0
  20. package/build/src/services/AmpApi.js.map +1 -1
  21. package/build/src/services/constants.d.ts +1 -0
  22. package/build/src/services/constants.js +1 -0
  23. package/build/src/services/constants.js.map +1 -1
  24. package/build/src/services/engagementLogs.service.d.ts +9 -0
  25. package/build/src/services/engagementLogs.service.js +27 -0
  26. package/build/src/services/engagementLogs.service.js.map +1 -0
  27. package/package.json +1 -1
  28. package/src/dto/engagementLogs.dto.ts +50 -0
  29. package/src/dto/flows.dto.ts +2 -1
  30. package/src/dto/index.ts +1 -0
  31. package/src/dto/notification.dto.ts +5 -0
  32. package/src/services/AmpApi.ts +3 -0
  33. package/src/services/constants.ts +1 -0
  34. package/src/services/engagementLogs.service.ts +29 -0
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { BaseDto } from './base.dto';
3
+ import { ConversationContextDto } from './conversations.dto';
3
4
  export declare enum NotificationStatus {
4
5
  ERROR = "ERROR",
5
6
  INVALID = "INVALID",
@@ -122,13 +123,13 @@ export declare const _CustomContentStrategy: z.ZodObject<{
122
123
  }, "strip", z.ZodTypeAny, {
123
124
  kind: ContentStrategyKind.CUSTOM_CONTENT;
124
125
  content: string;
125
- fid?: string | undefined;
126
126
  flowContext?: Record<string, any> | undefined;
127
+ fid?: string | undefined;
127
128
  }, {
128
129
  kind: ContentStrategyKind.CUSTOM_CONTENT;
129
130
  content: string;
130
- fid?: string | undefined;
131
131
  flowContext?: Record<string, any> | undefined;
132
+ fid?: string | undefined;
132
133
  }>;
133
134
  export type CustomContentStrategy = z.infer<typeof _CustomContentStrategy>;
134
135
  export declare const _MicrotrainingContentStrategy: z.ZodObject<{
@@ -308,13 +309,13 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<z.objectUtil.extend
308
309
  }, "strip", z.ZodTypeAny, {
309
310
  kind: ContentStrategyKind.CUSTOM_CONTENT;
310
311
  content: string;
311
- fid?: string | undefined;
312
312
  flowContext?: Record<string, any> | undefined;
313
+ fid?: string | undefined;
313
314
  }, {
314
315
  kind: ContentStrategyKind.CUSTOM_CONTENT;
315
316
  content: string;
316
- fid?: string | undefined;
317
317
  flowContext?: Record<string, any> | undefined;
318
+ fid?: string | undefined;
318
319
  }>, z.ZodObject<{
319
320
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
320
321
  content: z.ZodString;
@@ -359,8 +360,8 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<z.objectUtil.extend
359
360
  } | {
360
361
  kind: ContentStrategyKind.CUSTOM_CONTENT;
361
362
  content: string;
362
- fid?: string | undefined;
363
363
  flowContext?: Record<string, any> | undefined;
364
+ fid?: string | undefined;
364
365
  } | {
365
366
  kind: ContentStrategyKind.MICROTRAINING;
366
367
  content: string;
@@ -375,9 +376,9 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<z.objectUtil.extend
375
376
  context?: NotificationContextKind | undefined;
376
377
  flowStateId?: string | undefined;
377
378
  fid?: string | undefined;
378
- actions?: NotificationActionKind[] | undefined;
379
379
  agentId?: string | undefined;
380
380
  deliveryMode?: DeliveryModeKind | undefined;
381
+ actions?: NotificationActionKind[] | undefined;
381
382
  }, {
382
383
  status: NotificationStatus;
383
384
  contentStrategy: {
@@ -399,8 +400,8 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<z.objectUtil.extend
399
400
  } | {
400
401
  kind: ContentStrategyKind.CUSTOM_CONTENT;
401
402
  content: string;
402
- fid?: string | undefined;
403
403
  flowContext?: Record<string, any> | undefined;
404
+ fid?: string | undefined;
404
405
  } | {
405
406
  kind: ContentStrategyKind.MICROTRAINING;
406
407
  content: string;
@@ -415,9 +416,9 @@ export declare const _BaseNotificationUpsertDto: z.ZodObject<z.objectUtil.extend
415
416
  context?: NotificationContextKind | undefined;
416
417
  flowStateId?: string | undefined;
417
418
  fid?: string | undefined;
418
- actions?: NotificationActionKind[] | undefined;
419
419
  agentId?: string | undefined;
420
420
  deliveryMode?: DeliveryModeKind | undefined;
421
+ actions?: NotificationActionKind[] | undefined;
421
422
  }>;
422
423
  export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
423
424
  id: z.ZodOptional<z.ZodString>;
@@ -482,13 +483,13 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
482
483
  }, "strip", z.ZodTypeAny, {
483
484
  kind: ContentStrategyKind.CUSTOM_CONTENT;
484
485
  content: string;
485
- fid?: string | undefined;
486
486
  flowContext?: Record<string, any> | undefined;
487
+ fid?: string | undefined;
487
488
  }, {
488
489
  kind: ContentStrategyKind.CUSTOM_CONTENT;
489
490
  content: string;
490
- fid?: string | undefined;
491
491
  flowContext?: Record<string, any> | undefined;
492
+ fid?: string | undefined;
492
493
  }>, z.ZodObject<{
493
494
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
494
495
  content: z.ZodString;
@@ -574,8 +575,8 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
574
575
  } | {
575
576
  kind: ContentStrategyKind.CUSTOM_CONTENT;
576
577
  content: string;
577
- fid?: string | undefined;
578
578
  flowContext?: Record<string, any> | undefined;
579
+ fid?: string | undefined;
579
580
  } | {
580
581
  kind: ContentStrategyKind.MICROTRAINING;
581
582
  content: string;
@@ -601,9 +602,9 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
601
602
  context?: NotificationContextKind | undefined;
602
603
  flowStateId?: string | undefined;
603
604
  fid?: string | undefined;
604
- actions?: NotificationActionKind[] | undefined;
605
605
  agentId?: string | undefined;
606
606
  deliveryMode?: DeliveryModeKind | undefined;
607
+ actions?: NotificationActionKind[] | undefined;
607
608
  }, {
608
609
  status: NotificationStatus;
609
610
  contentStrategy: {
@@ -625,8 +626,8 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
625
626
  } | {
626
627
  kind: ContentStrategyKind.CUSTOM_CONTENT;
627
628
  content: string;
628
- fid?: string | undefined;
629
629
  flowContext?: Record<string, any> | undefined;
630
+ fid?: string | undefined;
630
631
  } | {
631
632
  kind: ContentStrategyKind.MICROTRAINING;
632
633
  content: string;
@@ -652,9 +653,9 @@ export declare const _SlackNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
652
653
  context?: NotificationContextKind | undefined;
653
654
  flowStateId?: string | undefined;
654
655
  fid?: string | undefined;
655
- actions?: NotificationActionKind[] | undefined;
656
656
  agentId?: string | undefined;
657
657
  deliveryMode?: DeliveryModeKind | undefined;
658
+ actions?: NotificationActionKind[] | undefined;
658
659
  }>;
659
660
  export type SlackNotificationUpsertDto = z.infer<typeof _SlackNotificationUpsertDto>;
660
661
  export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -720,13 +721,13 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
720
721
  }, "strip", z.ZodTypeAny, {
721
722
  kind: ContentStrategyKind.CUSTOM_CONTENT;
722
723
  content: string;
723
- fid?: string | undefined;
724
724
  flowContext?: Record<string, any> | undefined;
725
+ fid?: string | undefined;
725
726
  }, {
726
727
  kind: ContentStrategyKind.CUSTOM_CONTENT;
727
728
  content: string;
728
- fid?: string | undefined;
729
729
  flowContext?: Record<string, any> | undefined;
730
+ fid?: string | undefined;
730
731
  }>, z.ZodObject<{
731
732
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
732
733
  content: z.ZodString;
@@ -797,8 +798,8 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
797
798
  } | {
798
799
  kind: ContentStrategyKind.CUSTOM_CONTENT;
799
800
  content: string;
800
- fid?: string | undefined;
801
801
  flowContext?: Record<string, any> | undefined;
802
+ fid?: string | undefined;
802
803
  } | {
803
804
  kind: ContentStrategyKind.MICROTRAINING;
804
805
  content: string;
@@ -821,9 +822,9 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
821
822
  context?: NotificationContextKind | undefined;
822
823
  flowStateId?: string | undefined;
823
824
  fid?: string | undefined;
824
- actions?: NotificationActionKind[] | undefined;
825
825
  agentId?: string | undefined;
826
826
  deliveryMode?: DeliveryModeKind | undefined;
827
+ actions?: NotificationActionKind[] | undefined;
827
828
  }, {
828
829
  status: NotificationStatus;
829
830
  contentStrategy: {
@@ -845,8 +846,8 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
845
846
  } | {
846
847
  kind: ContentStrategyKind.CUSTOM_CONTENT;
847
848
  content: string;
848
- fid?: string | undefined;
849
849
  flowContext?: Record<string, any> | undefined;
850
+ fid?: string | undefined;
850
851
  } | {
851
852
  kind: ContentStrategyKind.MICROTRAINING;
852
853
  content: string;
@@ -869,9 +870,9 @@ export declare const _EmailNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
869
870
  context?: NotificationContextKind | undefined;
870
871
  flowStateId?: string | undefined;
871
872
  fid?: string | undefined;
872
- actions?: NotificationActionKind[] | undefined;
873
873
  agentId?: string | undefined;
874
874
  deliveryMode?: DeliveryModeKind | undefined;
875
+ actions?: NotificationActionKind[] | undefined;
875
876
  }>;
876
877
  export type EmailNotificationUpsertDto = z.infer<typeof _EmailNotificationUpsertDto>;
877
878
  export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -937,13 +938,13 @@ export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
937
938
  }, "strip", z.ZodTypeAny, {
938
939
  kind: ContentStrategyKind.CUSTOM_CONTENT;
939
940
  content: string;
940
- fid?: string | undefined;
941
941
  flowContext?: Record<string, any> | undefined;
942
+ fid?: string | undefined;
942
943
  }, {
943
944
  kind: ContentStrategyKind.CUSTOM_CONTENT;
944
945
  content: string;
945
- fid?: string | undefined;
946
946
  flowContext?: Record<string, any> | undefined;
947
+ fid?: string | undefined;
947
948
  }>, z.ZodObject<{
948
949
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
949
950
  content: z.ZodString;
@@ -1021,8 +1022,8 @@ export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
1021
1022
  } | {
1022
1023
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1023
1024
  content: string;
1024
- fid?: string | undefined;
1025
1025
  flowContext?: Record<string, any> | undefined;
1026
+ fid?: string | undefined;
1026
1027
  } | {
1027
1028
  kind: ContentStrategyKind.MICROTRAINING;
1028
1029
  content: string;
@@ -1046,9 +1047,9 @@ export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
1046
1047
  context?: NotificationContextKind | undefined;
1047
1048
  flowStateId?: string | undefined;
1048
1049
  fid?: string | undefined;
1049
- actions?: NotificationActionKind[] | undefined;
1050
1050
  agentId?: string | undefined;
1051
1051
  deliveryMode?: DeliveryModeKind | undefined;
1052
+ actions?: NotificationActionKind[] | undefined;
1052
1053
  }, {
1053
1054
  status: NotificationStatus;
1054
1055
  contentStrategy: {
@@ -1070,8 +1071,8 @@ export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
1070
1071
  } | {
1071
1072
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1072
1073
  content: string;
1073
- fid?: string | undefined;
1074
1074
  flowContext?: Record<string, any> | undefined;
1075
+ fid?: string | undefined;
1075
1076
  } | {
1076
1077
  kind: ContentStrategyKind.MICROTRAINING;
1077
1078
  content: string;
@@ -1095,9 +1096,9 @@ export declare const _TeamsNotificationUpsertDto: z.ZodObject<z.objectUtil.exten
1095
1096
  context?: NotificationContextKind | undefined;
1096
1097
  flowStateId?: string | undefined;
1097
1098
  fid?: string | undefined;
1098
- actions?: NotificationActionKind[] | undefined;
1099
1099
  agentId?: string | undefined;
1100
1100
  deliveryMode?: DeliveryModeKind | undefined;
1101
+ actions?: NotificationActionKind[] | undefined;
1101
1102
  }>;
1102
1103
  export type TeamsNotificationUpsertDto = z.infer<typeof _TeamsNotificationUpsertDto>;
1103
1104
  export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryChannel", [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -1163,13 +1164,13 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1163
1164
  }, "strip", z.ZodTypeAny, {
1164
1165
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1165
1166
  content: string;
1166
- fid?: string | undefined;
1167
1167
  flowContext?: Record<string, any> | undefined;
1168
+ fid?: string | undefined;
1168
1169
  }, {
1169
1170
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1170
1171
  content: string;
1171
- fid?: string | undefined;
1172
1172
  flowContext?: Record<string, any> | undefined;
1173
+ fid?: string | undefined;
1173
1174
  }>, z.ZodObject<{
1174
1175
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
1175
1176
  content: z.ZodString;
@@ -1255,8 +1256,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1255
1256
  } | {
1256
1257
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1257
1258
  content: string;
1258
- fid?: string | undefined;
1259
1259
  flowContext?: Record<string, any> | undefined;
1260
+ fid?: string | undefined;
1260
1261
  } | {
1261
1262
  kind: ContentStrategyKind.MICROTRAINING;
1262
1263
  content: string;
@@ -1282,9 +1283,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1282
1283
  context?: NotificationContextKind | undefined;
1283
1284
  flowStateId?: string | undefined;
1284
1285
  fid?: string | undefined;
1285
- actions?: NotificationActionKind[] | undefined;
1286
1286
  agentId?: string | undefined;
1287
1287
  deliveryMode?: DeliveryModeKind | undefined;
1288
+ actions?: NotificationActionKind[] | undefined;
1288
1289
  }, {
1289
1290
  status: NotificationStatus;
1290
1291
  contentStrategy: {
@@ -1306,8 +1307,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1306
1307
  } | {
1307
1308
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1308
1309
  content: string;
1309
- fid?: string | undefined;
1310
1310
  flowContext?: Record<string, any> | undefined;
1311
+ fid?: string | undefined;
1311
1312
  } | {
1312
1313
  kind: ContentStrategyKind.MICROTRAINING;
1313
1314
  content: string;
@@ -1333,9 +1334,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1333
1334
  context?: NotificationContextKind | undefined;
1334
1335
  flowStateId?: string | undefined;
1335
1336
  fid?: string | undefined;
1336
- actions?: NotificationActionKind[] | undefined;
1337
1337
  agentId?: string | undefined;
1338
1338
  deliveryMode?: DeliveryModeKind | undefined;
1339
+ actions?: NotificationActionKind[] | undefined;
1339
1340
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1340
1341
  id: z.ZodOptional<z.ZodString>;
1341
1342
  createdAt: z.ZodOptional<z.ZodString>;
@@ -1399,13 +1400,13 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1399
1400
  }, "strip", z.ZodTypeAny, {
1400
1401
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1401
1402
  content: string;
1402
- fid?: string | undefined;
1403
1403
  flowContext?: Record<string, any> | undefined;
1404
+ fid?: string | undefined;
1404
1405
  }, {
1405
1406
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1406
1407
  content: string;
1407
- fid?: string | undefined;
1408
1408
  flowContext?: Record<string, any> | undefined;
1409
+ fid?: string | undefined;
1409
1410
  }>, z.ZodObject<{
1410
1411
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
1411
1412
  content: z.ZodString;
@@ -1476,8 +1477,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1476
1477
  } | {
1477
1478
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1478
1479
  content: string;
1479
- fid?: string | undefined;
1480
1480
  flowContext?: Record<string, any> | undefined;
1481
+ fid?: string | undefined;
1481
1482
  } | {
1482
1483
  kind: ContentStrategyKind.MICROTRAINING;
1483
1484
  content: string;
@@ -1500,9 +1501,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1500
1501
  context?: NotificationContextKind | undefined;
1501
1502
  flowStateId?: string | undefined;
1502
1503
  fid?: string | undefined;
1503
- actions?: NotificationActionKind[] | undefined;
1504
1504
  agentId?: string | undefined;
1505
1505
  deliveryMode?: DeliveryModeKind | undefined;
1506
+ actions?: NotificationActionKind[] | undefined;
1506
1507
  }, {
1507
1508
  status: NotificationStatus;
1508
1509
  contentStrategy: {
@@ -1524,8 +1525,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1524
1525
  } | {
1525
1526
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1526
1527
  content: string;
1527
- fid?: string | undefined;
1528
1528
  flowContext?: Record<string, any> | undefined;
1529
+ fid?: string | undefined;
1529
1530
  } | {
1530
1531
  kind: ContentStrategyKind.MICROTRAINING;
1531
1532
  content: string;
@@ -1548,9 +1549,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1548
1549
  context?: NotificationContextKind | undefined;
1549
1550
  flowStateId?: string | undefined;
1550
1551
  fid?: string | undefined;
1551
- actions?: NotificationActionKind[] | undefined;
1552
1552
  agentId?: string | undefined;
1553
1553
  deliveryMode?: DeliveryModeKind | undefined;
1554
+ actions?: NotificationActionKind[] | undefined;
1554
1555
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1555
1556
  id: z.ZodOptional<z.ZodString>;
1556
1557
  createdAt: z.ZodOptional<z.ZodString>;
@@ -1614,13 +1615,13 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1614
1615
  }, "strip", z.ZodTypeAny, {
1615
1616
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1616
1617
  content: string;
1617
- fid?: string | undefined;
1618
1618
  flowContext?: Record<string, any> | undefined;
1619
+ fid?: string | undefined;
1619
1620
  }, {
1620
1621
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1621
1622
  content: string;
1622
- fid?: string | undefined;
1623
1623
  flowContext?: Record<string, any> | undefined;
1624
+ fid?: string | undefined;
1624
1625
  }>, z.ZodObject<{
1625
1626
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
1626
1627
  content: z.ZodString;
@@ -1698,8 +1699,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1698
1699
  } | {
1699
1700
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1700
1701
  content: string;
1701
- fid?: string | undefined;
1702
1702
  flowContext?: Record<string, any> | undefined;
1703
+ fid?: string | undefined;
1703
1704
  } | {
1704
1705
  kind: ContentStrategyKind.MICROTRAINING;
1705
1706
  content: string;
@@ -1723,9 +1724,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1723
1724
  context?: NotificationContextKind | undefined;
1724
1725
  flowStateId?: string | undefined;
1725
1726
  fid?: string | undefined;
1726
- actions?: NotificationActionKind[] | undefined;
1727
1727
  agentId?: string | undefined;
1728
1728
  deliveryMode?: DeliveryModeKind | undefined;
1729
+ actions?: NotificationActionKind[] | undefined;
1729
1730
  }, {
1730
1731
  status: NotificationStatus;
1731
1732
  contentStrategy: {
@@ -1747,8 +1748,8 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1747
1748
  } | {
1748
1749
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1749
1750
  content: string;
1750
- fid?: string | undefined;
1751
1751
  flowContext?: Record<string, any> | undefined;
1752
+ fid?: string | undefined;
1752
1753
  } | {
1753
1754
  kind: ContentStrategyKind.MICROTRAINING;
1754
1755
  content: string;
@@ -1772,9 +1773,9 @@ export declare const _NotificationUpsertDto: z.ZodDiscriminatedUnion<"deliveryCh
1772
1773
  context?: NotificationContextKind | undefined;
1773
1774
  flowStateId?: string | undefined;
1774
1775
  fid?: string | undefined;
1775
- actions?: NotificationActionKind[] | undefined;
1776
1776
  agentId?: string | undefined;
1777
1777
  deliveryMode?: DeliveryModeKind | undefined;
1778
+ actions?: NotificationActionKind[] | undefined;
1778
1779
  }>]>;
1779
1780
  export type NotificationUpsertDto = z.infer<typeof _NotificationUpsertDto>;
1780
1781
  export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion<"deliveryChannel", [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -1840,13 +1841,13 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
1840
1841
  }, "strip", z.ZodTypeAny, {
1841
1842
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1842
1843
  content: string;
1843
- fid?: string | undefined;
1844
1844
  flowContext?: Record<string, any> | undefined;
1845
+ fid?: string | undefined;
1845
1846
  }, {
1846
1847
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1847
1848
  content: string;
1848
- fid?: string | undefined;
1849
1849
  flowContext?: Record<string, any> | undefined;
1850
+ fid?: string | undefined;
1850
1851
  }>, z.ZodObject<{
1851
1852
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
1852
1853
  content: z.ZodString;
@@ -1932,8 +1933,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
1932
1933
  } | {
1933
1934
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1934
1935
  content: string;
1935
- fid?: string | undefined;
1936
1936
  flowContext?: Record<string, any> | undefined;
1937
+ fid?: string | undefined;
1937
1938
  } | {
1938
1939
  kind: ContentStrategyKind.MICROTRAINING;
1939
1940
  content: string;
@@ -1959,9 +1960,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
1959
1960
  context?: NotificationContextKind | undefined;
1960
1961
  flowStateId?: string | undefined;
1961
1962
  fid?: string | undefined;
1962
- actions?: NotificationActionKind[] | undefined;
1963
1963
  agentId?: string | undefined;
1964
1964
  deliveryMode?: DeliveryModeKind | undefined;
1965
+ actions?: NotificationActionKind[] | undefined;
1965
1966
  }, {
1966
1967
  status: NotificationStatus;
1967
1968
  contentStrategy: {
@@ -1983,8 +1984,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
1983
1984
  } | {
1984
1985
  kind: ContentStrategyKind.CUSTOM_CONTENT;
1985
1986
  content: string;
1986
- fid?: string | undefined;
1987
1987
  flowContext?: Record<string, any> | undefined;
1988
+ fid?: string | undefined;
1988
1989
  } | {
1989
1990
  kind: ContentStrategyKind.MICROTRAINING;
1990
1991
  content: string;
@@ -2010,9 +2011,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2010
2011
  context?: NotificationContextKind | undefined;
2011
2012
  flowStateId?: string | undefined;
2012
2013
  fid?: string | undefined;
2013
- actions?: NotificationActionKind[] | undefined;
2014
2014
  agentId?: string | undefined;
2015
2015
  deliveryMode?: DeliveryModeKind | undefined;
2016
+ actions?: NotificationActionKind[] | undefined;
2016
2017
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2017
2018
  id: z.ZodOptional<z.ZodString>;
2018
2019
  createdAt: z.ZodOptional<z.ZodString>;
@@ -2076,13 +2077,13 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2076
2077
  }, "strip", z.ZodTypeAny, {
2077
2078
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2078
2079
  content: string;
2079
- fid?: string | undefined;
2080
2080
  flowContext?: Record<string, any> | undefined;
2081
+ fid?: string | undefined;
2081
2082
  }, {
2082
2083
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2083
2084
  content: string;
2084
- fid?: string | undefined;
2085
2085
  flowContext?: Record<string, any> | undefined;
2086
+ fid?: string | undefined;
2086
2087
  }>, z.ZodObject<{
2087
2088
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
2088
2089
  content: z.ZodString;
@@ -2153,8 +2154,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2153
2154
  } | {
2154
2155
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2155
2156
  content: string;
2156
- fid?: string | undefined;
2157
2157
  flowContext?: Record<string, any> | undefined;
2158
+ fid?: string | undefined;
2158
2159
  } | {
2159
2160
  kind: ContentStrategyKind.MICROTRAINING;
2160
2161
  content: string;
@@ -2177,9 +2178,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2177
2178
  context?: NotificationContextKind | undefined;
2178
2179
  flowStateId?: string | undefined;
2179
2180
  fid?: string | undefined;
2180
- actions?: NotificationActionKind[] | undefined;
2181
2181
  agentId?: string | undefined;
2182
2182
  deliveryMode?: DeliveryModeKind | undefined;
2183
+ actions?: NotificationActionKind[] | undefined;
2183
2184
  }, {
2184
2185
  status: NotificationStatus;
2185
2186
  contentStrategy: {
@@ -2201,8 +2202,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2201
2202
  } | {
2202
2203
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2203
2204
  content: string;
2204
- fid?: string | undefined;
2205
2205
  flowContext?: Record<string, any> | undefined;
2206
+ fid?: string | undefined;
2206
2207
  } | {
2207
2208
  kind: ContentStrategyKind.MICROTRAINING;
2208
2209
  content: string;
@@ -2225,9 +2226,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2225
2226
  context?: NotificationContextKind | undefined;
2226
2227
  flowStateId?: string | undefined;
2227
2228
  fid?: string | undefined;
2228
- actions?: NotificationActionKind[] | undefined;
2229
2229
  agentId?: string | undefined;
2230
2230
  deliveryMode?: DeliveryModeKind | undefined;
2231
+ actions?: NotificationActionKind[] | undefined;
2231
2232
  }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2232
2233
  id: z.ZodOptional<z.ZodString>;
2233
2234
  createdAt: z.ZodOptional<z.ZodString>;
@@ -2291,13 +2292,13 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2291
2292
  }, "strip", z.ZodTypeAny, {
2292
2293
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2293
2294
  content: string;
2294
- fid?: string | undefined;
2295
2295
  flowContext?: Record<string, any> | undefined;
2296
+ fid?: string | undefined;
2296
2297
  }, {
2297
2298
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2298
2299
  content: string;
2299
- fid?: string | undefined;
2300
2300
  flowContext?: Record<string, any> | undefined;
2301
+ fid?: string | undefined;
2301
2302
  }>, z.ZodObject<{
2302
2303
  kind: z.ZodLiteral<ContentStrategyKind.MICROTRAINING>;
2303
2304
  content: z.ZodString;
@@ -2375,8 +2376,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2375
2376
  } | {
2376
2377
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2377
2378
  content: string;
2378
- fid?: string | undefined;
2379
2379
  flowContext?: Record<string, any> | undefined;
2380
+ fid?: string | undefined;
2380
2381
  } | {
2381
2382
  kind: ContentStrategyKind.MICROTRAINING;
2382
2383
  content: string;
@@ -2400,9 +2401,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2400
2401
  context?: NotificationContextKind | undefined;
2401
2402
  flowStateId?: string | undefined;
2402
2403
  fid?: string | undefined;
2403
- actions?: NotificationActionKind[] | undefined;
2404
2404
  agentId?: string | undefined;
2405
2405
  deliveryMode?: DeliveryModeKind | undefined;
2406
+ actions?: NotificationActionKind[] | undefined;
2406
2407
  }, {
2407
2408
  status: NotificationStatus;
2408
2409
  contentStrategy: {
@@ -2424,8 +2425,8 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2424
2425
  } | {
2425
2426
  kind: ContentStrategyKind.CUSTOM_CONTENT;
2426
2427
  content: string;
2427
- fid?: string | undefined;
2428
2428
  flowContext?: Record<string, any> | undefined;
2429
+ fid?: string | undefined;
2429
2430
  } | {
2430
2431
  kind: ContentStrategyKind.MICROTRAINING;
2431
2432
  content: string;
@@ -2449,9 +2450,9 @@ export declare const _NotificationDto: z.ZodIntersection<z.ZodDiscriminatedUnion
2449
2450
  context?: NotificationContextKind | undefined;
2450
2451
  flowStateId?: string | undefined;
2451
2452
  fid?: string | undefined;
2452
- actions?: NotificationActionKind[] | undefined;
2453
2453
  agentId?: string | undefined;
2454
2454
  deliveryMode?: DeliveryModeKind | undefined;
2455
+ actions?: NotificationActionKind[] | undefined;
2455
2456
  }>]>, z.ZodObject<{
2456
2457
  id: z.ZodString;
2457
2458
  createdAt: z.ZodString;
@@ -2517,7 +2518,6 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2517
2518
  options: {
2518
2519
  copySecOpsTeam?: boolean | undefined;
2519
2520
  };
2520
- channel: DeliveryStrategyKind;
2521
2521
  content: {
2522
2522
  kind: ContentStrategyKind.RAW;
2523
2523
  content: string;
@@ -2525,6 +2525,7 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2525
2525
  subject?: string | undefined;
2526
2526
  flowContext?: Record<string, any> | undefined;
2527
2527
  };
2528
+ channel: DeliveryStrategyKind;
2528
2529
  id?: string | undefined;
2529
2530
  uid?: string | undefined;
2530
2531
  createdAt?: string | undefined;
@@ -2533,9 +2534,9 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2533
2534
  context?: NotificationContextKind | undefined;
2534
2535
  flowStateId?: string | undefined;
2535
2536
  fid?: string | undefined;
2536
- actions?: NotificationActionKind[] | undefined;
2537
2537
  agentId?: string | undefined;
2538
2538
  deliveryMode?: DeliveryModeKind | undefined;
2539
+ actions?: NotificationActionKind[] | undefined;
2539
2540
  test?: boolean | undefined;
2540
2541
  faid?: string | undefined;
2541
2542
  includeFinding?: boolean | undefined;
@@ -2543,7 +2544,6 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2543
2544
  options: {
2544
2545
  copySecOpsTeam?: boolean | undefined;
2545
2546
  };
2546
- channel: DeliveryStrategyKind;
2547
2547
  content: {
2548
2548
  kind: ContentStrategyKind.RAW;
2549
2549
  content: string;
@@ -2551,6 +2551,7 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2551
2551
  subject?: string | undefined;
2552
2552
  flowContext?: Record<string, any> | undefined;
2553
2553
  };
2554
+ channel: DeliveryStrategyKind;
2554
2555
  id?: string | undefined;
2555
2556
  uid?: string | undefined;
2556
2557
  createdAt?: string | undefined;
@@ -2559,11 +2560,14 @@ export declare const _CreateNotificationDto: z.ZodObject<z.objectUtil.extendShap
2559
2560
  context?: NotificationContextKind | undefined;
2560
2561
  flowStateId?: string | undefined;
2561
2562
  fid?: string | undefined;
2562
- actions?: NotificationActionKind[] | undefined;
2563
2563
  agentId?: string | undefined;
2564
2564
  deliveryMode?: DeliveryModeKind | undefined;
2565
+ actions?: NotificationActionKind[] | undefined;
2565
2566
  test?: boolean | undefined;
2566
2567
  faid?: string | undefined;
2567
2568
  includeFinding?: boolean | undefined;
2568
2569
  }>;
2569
2570
  export type CreateNotificationDto = z.infer<typeof _CreateNotificationDto>;
2571
+ export type NotificationWithConversationContextDto = NotificationDto & {
2572
+ conversationContext?: ConversationContextDto;
2573
+ };
@@ -1 +1 @@
1
- {"version":3,"file":"notification.dto.js","sourceRoot":"","sources":["../../../src/dto/notification.dto.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"notification.dto.js","sourceRoot":"","sources":["../../../src/dto/notification.dto.ts"],"names":[],"mappings":"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"}