@ampsec/platform-client 87.4.0 → 87.5.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.
- package/build/src/dto/contexts.dto.d.ts +10 -10
- package/build/src/dto/flows.dto.d.ts +173 -0
- package/build/src/dto/flows.dto.js +4 -0
- package/build/src/dto/flows.dto.js.map +1 -1
- package/build/src/dto/platform/platform.contexts.dto.d.ts +8 -8
- package/build/src/dto/platform/platform.flows.dto.d.ts +100 -0
- package/build/src/services/AmpApi.d.ts +4 -1
- package/build/src/services/AmpApi.js +4 -0
- package/build/src/services/AmpApi.js.map +1 -1
- package/build/src/services/AmpSdk.js +1 -1
- package/build/src/services/AmpSdk.js.map +1 -1
- package/build/src/services/tagSpecs.service.d.ts +17 -3
- package/build/src/services/tagSpecs.service.js +47 -1
- package/build/src/services/tagSpecs.service.js.map +1 -1
- package/package.json +1 -1
- package/src/dto/flows.dto.ts +4 -0
- package/src/services/AmpApi.ts +7 -0
- package/src/services/AmpSdk.ts +2 -2
- package/src/services/tagSpecs.service.ts +60 -4
|
@@ -352,12 +352,16 @@ export declare const _FlowStateDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
352
352
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
353
353
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
354
354
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
355
|
+
/** Temporal workflow id for the schedule-resolution manager workflow (reminder suppression). */
|
|
356
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
355
357
|
}, "strip", z.ZodTypeAny, {
|
|
356
358
|
overrideWorkingHours?: boolean | undefined;
|
|
357
359
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
360
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
358
361
|
}, {
|
|
359
362
|
overrideWorkingHours?: boolean | undefined;
|
|
360
363
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
364
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
361
365
|
}>>>;
|
|
362
366
|
}>, "strip", z.ZodTypeAny, {
|
|
363
367
|
status: "SUCCESS" | "RUNNING" | "ERROR" | "CANCELLED" | "EXPIRED";
|
|
@@ -396,6 +400,7 @@ export declare const _FlowStateDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
396
400
|
meta?: {
|
|
397
401
|
overrideWorkingHours?: boolean | undefined;
|
|
398
402
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
403
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
399
404
|
} | null | undefined;
|
|
400
405
|
fid?: string | undefined;
|
|
401
406
|
specId?: string | undefined;
|
|
@@ -438,6 +443,7 @@ export declare const _FlowStateDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
438
443
|
meta?: {
|
|
439
444
|
overrideWorkingHours?: boolean | undefined;
|
|
440
445
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
446
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
441
447
|
} | null | undefined;
|
|
442
448
|
fid?: string | undefined;
|
|
443
449
|
specId?: string | undefined;
|
|
@@ -582,12 +588,16 @@ export declare const _FlowStateUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
582
588
|
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
583
589
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
584
590
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
591
|
+
/** Temporal workflow id for the schedule-resolution manager workflow (reminder suppression). */
|
|
592
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
585
593
|
}, "strip", z.ZodTypeAny, {
|
|
586
594
|
overrideWorkingHours?: boolean | undefined;
|
|
587
595
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
596
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
588
597
|
}, {
|
|
589
598
|
overrideWorkingHours?: boolean | undefined;
|
|
590
599
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
600
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
591
601
|
}>>>;
|
|
592
602
|
}>, {
|
|
593
603
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -631,6 +641,7 @@ export declare const _FlowStateUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
631
641
|
meta?: {
|
|
632
642
|
overrideWorkingHours?: boolean | undefined;
|
|
633
643
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
644
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
634
645
|
} | null | undefined;
|
|
635
646
|
fid?: string | undefined;
|
|
636
647
|
specId?: string | undefined;
|
|
@@ -673,6 +684,7 @@ export declare const _FlowStateUpsertDto: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
673
684
|
meta?: {
|
|
674
685
|
overrideWorkingHours?: boolean | undefined;
|
|
675
686
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
687
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
676
688
|
} | null | undefined;
|
|
677
689
|
fid?: string | undefined;
|
|
678
690
|
specId?: string | undefined;
|
|
@@ -690,12 +702,16 @@ export declare const _FlowStateFilter: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
690
702
|
meta: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
691
703
|
overrideWorkingHours: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
692
704
|
engagementTriggerSource: z.ZodOptional<z.ZodNativeEnum<typeof ENGAGEMENT_TRIGGER_SOURCE>>;
|
|
705
|
+
/** Temporal workflow id for the schedule-resolution manager workflow (reminder suppression). */
|
|
706
|
+
scheduleResolutionWorkflowId: z.ZodOptional<z.ZodString>;
|
|
693
707
|
}, "strip", z.ZodTypeAny, {
|
|
694
708
|
overrideWorkingHours?: boolean | undefined;
|
|
695
709
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
710
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
696
711
|
}, {
|
|
697
712
|
overrideWorkingHours?: boolean | undefined;
|
|
698
713
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
714
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
699
715
|
}>>>>;
|
|
700
716
|
fid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
701
717
|
nodeName: z.ZodOptional<z.ZodString>;
|
|
@@ -723,6 +739,7 @@ export declare const _FlowStateFilter: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
723
739
|
meta?: {
|
|
724
740
|
overrideWorkingHours?: boolean | undefined;
|
|
725
741
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
742
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
726
743
|
} | null | undefined;
|
|
727
744
|
fid?: string | undefined;
|
|
728
745
|
nodeName?: string | undefined;
|
|
@@ -745,6 +762,7 @@ export declare const _FlowStateFilter: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
745
762
|
meta?: {
|
|
746
763
|
overrideWorkingHours?: boolean | undefined;
|
|
747
764
|
engagementTriggerSource?: ENGAGEMENT_TRIGGER_SOURCE | undefined;
|
|
765
|
+
scheduleResolutionWorkflowId?: string | undefined;
|
|
748
766
|
} | null | undefined;
|
|
749
767
|
fid?: string | undefined;
|
|
750
768
|
nodeName?: string | undefined;
|
|
@@ -987,14 +1005,17 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
987
1005
|
actionId: z.ZodNullable<z.ZodString>;
|
|
988
1006
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
989
1007
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1008
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
990
1009
|
}, "strip", z.ZodTypeAny, {
|
|
991
1010
|
actionId: string | null;
|
|
992
1011
|
findingStatus?: FindingStatus | null | undefined;
|
|
993
1012
|
responseMessage?: string | undefined;
|
|
1013
|
+
actionDescriptionContext?: string | undefined;
|
|
994
1014
|
}, {
|
|
995
1015
|
actionId: string | null;
|
|
996
1016
|
findingStatus?: FindingStatus | null | undefined;
|
|
997
1017
|
responseMessage?: string | undefined;
|
|
1018
|
+
actionDescriptionContext?: string | undefined;
|
|
998
1019
|
}>>;
|
|
999
1020
|
/**
|
|
1000
1021
|
* @deprecated Use triage instead
|
|
@@ -1012,40 +1033,49 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
1012
1033
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1013
1034
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1014
1035
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1036
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1015
1037
|
}, "strip", z.ZodTypeAny, {
|
|
1016
1038
|
actionId: string | null;
|
|
1017
1039
|
findingStatus?: FindingStatus | null | undefined;
|
|
1018
1040
|
responseMessage?: string | undefined;
|
|
1041
|
+
actionDescriptionContext?: string | undefined;
|
|
1019
1042
|
}, {
|
|
1020
1043
|
actionId: string | null;
|
|
1021
1044
|
findingStatus?: FindingStatus | null | undefined;
|
|
1022
1045
|
responseMessage?: string | undefined;
|
|
1046
|
+
actionDescriptionContext?: string | undefined;
|
|
1023
1047
|
}>>;
|
|
1024
1048
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
1025
1049
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1026
1050
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1027
1051
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1028
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1029
1054
|
actionId: string | null;
|
|
1030
1055
|
findingStatus?: FindingStatus | null | undefined;
|
|
1031
1056
|
responseMessage?: string | undefined;
|
|
1057
|
+
actionDescriptionContext?: string | undefined;
|
|
1032
1058
|
}, {
|
|
1033
1059
|
actionId: string | null;
|
|
1034
1060
|
findingStatus?: FindingStatus | null | undefined;
|
|
1035
1061
|
responseMessage?: string | undefined;
|
|
1062
|
+
actionDescriptionContext?: string | undefined;
|
|
1036
1063
|
}>>;
|
|
1037
1064
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
1038
1065
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1039
1066
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1040
1067
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1041
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1042
1070
|
actionId: string | null;
|
|
1043
1071
|
findingStatus?: FindingStatus | null | undefined;
|
|
1044
1072
|
responseMessage?: string | undefined;
|
|
1073
|
+
actionDescriptionContext?: string | undefined;
|
|
1045
1074
|
}, {
|
|
1046
1075
|
actionId: string | null;
|
|
1047
1076
|
findingStatus?: FindingStatus | null | undefined;
|
|
1048
1077
|
responseMessage?: string | undefined;
|
|
1078
|
+
actionDescriptionContext?: string | undefined;
|
|
1049
1079
|
}>>;
|
|
1050
1080
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
1051
1081
|
id: z.ZodString;
|
|
@@ -1109,6 +1139,7 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
1109
1139
|
actionId: string | null;
|
|
1110
1140
|
findingStatus?: FindingStatus | null | undefined;
|
|
1111
1141
|
responseMessage?: string | undefined;
|
|
1142
|
+
actionDescriptionContext?: string | undefined;
|
|
1112
1143
|
} | undefined;
|
|
1113
1144
|
simpleTriageYesActId?: string | undefined;
|
|
1114
1145
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1117,16 +1148,19 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
1117
1148
|
actionId: string | null;
|
|
1118
1149
|
findingStatus?: FindingStatus | null | undefined;
|
|
1119
1150
|
responseMessage?: string | undefined;
|
|
1151
|
+
actionDescriptionContext?: string | undefined;
|
|
1120
1152
|
} | undefined;
|
|
1121
1153
|
scheduleResolutionAction?: {
|
|
1122
1154
|
actionId: string | null;
|
|
1123
1155
|
findingStatus?: FindingStatus | null | undefined;
|
|
1124
1156
|
responseMessage?: string | undefined;
|
|
1157
|
+
actionDescriptionContext?: string | undefined;
|
|
1125
1158
|
} | undefined;
|
|
1126
1159
|
launchAction?: {
|
|
1127
1160
|
actionId: string | null;
|
|
1128
1161
|
findingStatus?: FindingStatus | null | undefined;
|
|
1129
1162
|
responseMessage?: string | undefined;
|
|
1163
|
+
actionDescriptionContext?: string | undefined;
|
|
1130
1164
|
} | undefined;
|
|
1131
1165
|
launchActionsV2?: {
|
|
1132
1166
|
id: string;
|
|
@@ -1156,6 +1190,7 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
1156
1190
|
actionId: string | null;
|
|
1157
1191
|
findingStatus?: FindingStatus | null | undefined;
|
|
1158
1192
|
responseMessage?: string | undefined;
|
|
1193
|
+
actionDescriptionContext?: string | undefined;
|
|
1159
1194
|
} | undefined;
|
|
1160
1195
|
simpleTriageYesActId?: string | undefined;
|
|
1161
1196
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1164,16 +1199,19 @@ export declare const _FlowActions: z.ZodObject<{
|
|
|
1164
1199
|
actionId: string | null;
|
|
1165
1200
|
findingStatus?: FindingStatus | null | undefined;
|
|
1166
1201
|
responseMessage?: string | undefined;
|
|
1202
|
+
actionDescriptionContext?: string | undefined;
|
|
1167
1203
|
} | undefined;
|
|
1168
1204
|
scheduleResolutionAction?: {
|
|
1169
1205
|
actionId: string | null;
|
|
1170
1206
|
findingStatus?: FindingStatus | null | undefined;
|
|
1171
1207
|
responseMessage?: string | undefined;
|
|
1208
|
+
actionDescriptionContext?: string | undefined;
|
|
1172
1209
|
} | undefined;
|
|
1173
1210
|
launchAction?: {
|
|
1174
1211
|
actionId: string | null;
|
|
1175
1212
|
findingStatus?: FindingStatus | null | undefined;
|
|
1176
1213
|
responseMessage?: string | undefined;
|
|
1214
|
+
actionDescriptionContext?: string | undefined;
|
|
1177
1215
|
} | undefined;
|
|
1178
1216
|
launchActionsV2?: {
|
|
1179
1217
|
id: string;
|
|
@@ -1497,27 +1535,33 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1497
1535
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1498
1536
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1499
1537
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1500
1539
|
}, "strip", z.ZodTypeAny, {
|
|
1501
1540
|
actionId: string | null;
|
|
1502
1541
|
findingStatus?: FindingStatus | null | undefined;
|
|
1503
1542
|
responseMessage?: string | undefined;
|
|
1543
|
+
actionDescriptionContext?: string | undefined;
|
|
1504
1544
|
}, {
|
|
1505
1545
|
actionId: string | null;
|
|
1506
1546
|
findingStatus?: FindingStatus | null | undefined;
|
|
1507
1547
|
responseMessage?: string | undefined;
|
|
1548
|
+
actionDescriptionContext?: string | undefined;
|
|
1508
1549
|
}>;
|
|
1509
1550
|
noAction: z.ZodObject<{
|
|
1510
1551
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1511
1552
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1512
1553
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1554
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1513
1555
|
}, "strip", z.ZodTypeAny, {
|
|
1514
1556
|
actionId: string | null;
|
|
1515
1557
|
findingStatus?: FindingStatus | null | undefined;
|
|
1516
1558
|
responseMessage?: string | undefined;
|
|
1559
|
+
actionDescriptionContext?: string | undefined;
|
|
1517
1560
|
}, {
|
|
1518
1561
|
actionId: string | null;
|
|
1519
1562
|
findingStatus?: FindingStatus | null | undefined;
|
|
1520
1563
|
responseMessage?: string | undefined;
|
|
1564
|
+
actionDescriptionContext?: string | undefined;
|
|
1521
1565
|
}>;
|
|
1522
1566
|
}, "strip", z.ZodTypeAny, {
|
|
1523
1567
|
message: string;
|
|
@@ -1525,11 +1569,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1525
1569
|
actionId: string | null;
|
|
1526
1570
|
findingStatus?: FindingStatus | null | undefined;
|
|
1527
1571
|
responseMessage?: string | undefined;
|
|
1572
|
+
actionDescriptionContext?: string | undefined;
|
|
1528
1573
|
};
|
|
1529
1574
|
noAction: {
|
|
1530
1575
|
actionId: string | null;
|
|
1531
1576
|
findingStatus?: FindingStatus | null | undefined;
|
|
1532
1577
|
responseMessage?: string | undefined;
|
|
1578
|
+
actionDescriptionContext?: string | undefined;
|
|
1533
1579
|
};
|
|
1534
1580
|
}, {
|
|
1535
1581
|
message: string;
|
|
@@ -1537,11 +1583,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1537
1583
|
actionId: string | null;
|
|
1538
1584
|
findingStatus?: FindingStatus | null | undefined;
|
|
1539
1585
|
responseMessage?: string | undefined;
|
|
1586
|
+
actionDescriptionContext?: string | undefined;
|
|
1540
1587
|
};
|
|
1541
1588
|
noAction: {
|
|
1542
1589
|
actionId: string | null;
|
|
1543
1590
|
findingStatus?: FindingStatus | null | undefined;
|
|
1544
1591
|
responseMessage?: string | undefined;
|
|
1592
|
+
actionDescriptionContext?: string | undefined;
|
|
1545
1593
|
};
|
|
1546
1594
|
}>>;
|
|
1547
1595
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -1582,14 +1630,17 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1582
1630
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1583
1631
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1584
1632
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1633
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1585
1634
|
}, "strip", z.ZodTypeAny, {
|
|
1586
1635
|
actionId: string | null;
|
|
1587
1636
|
findingStatus?: FindingStatus | null | undefined;
|
|
1588
1637
|
responseMessage?: string | undefined;
|
|
1638
|
+
actionDescriptionContext?: string | undefined;
|
|
1589
1639
|
}, {
|
|
1590
1640
|
actionId: string | null;
|
|
1591
1641
|
findingStatus?: FindingStatus | null | undefined;
|
|
1592
1642
|
responseMessage?: string | undefined;
|
|
1643
|
+
actionDescriptionContext?: string | undefined;
|
|
1593
1644
|
}>>;
|
|
1594
1645
|
/**
|
|
1595
1646
|
* @deprecated Use triage instead
|
|
@@ -1607,40 +1658,49 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1607
1658
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1608
1659
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1609
1660
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1661
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1610
1662
|
}, "strip", z.ZodTypeAny, {
|
|
1611
1663
|
actionId: string | null;
|
|
1612
1664
|
findingStatus?: FindingStatus | null | undefined;
|
|
1613
1665
|
responseMessage?: string | undefined;
|
|
1666
|
+
actionDescriptionContext?: string | undefined;
|
|
1614
1667
|
}, {
|
|
1615
1668
|
actionId: string | null;
|
|
1616
1669
|
findingStatus?: FindingStatus | null | undefined;
|
|
1617
1670
|
responseMessage?: string | undefined;
|
|
1671
|
+
actionDescriptionContext?: string | undefined;
|
|
1618
1672
|
}>>;
|
|
1619
1673
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
1620
1674
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1621
1675
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1622
1676
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1677
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1623
1678
|
}, "strip", z.ZodTypeAny, {
|
|
1624
1679
|
actionId: string | null;
|
|
1625
1680
|
findingStatus?: FindingStatus | null | undefined;
|
|
1626
1681
|
responseMessage?: string | undefined;
|
|
1682
|
+
actionDescriptionContext?: string | undefined;
|
|
1627
1683
|
}, {
|
|
1628
1684
|
actionId: string | null;
|
|
1629
1685
|
findingStatus?: FindingStatus | null | undefined;
|
|
1630
1686
|
responseMessage?: string | undefined;
|
|
1687
|
+
actionDescriptionContext?: string | undefined;
|
|
1631
1688
|
}>>;
|
|
1632
1689
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
1633
1690
|
actionId: z.ZodNullable<z.ZodString>;
|
|
1634
1691
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
1635
1692
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
1693
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
1636
1694
|
}, "strip", z.ZodTypeAny, {
|
|
1637
1695
|
actionId: string | null;
|
|
1638
1696
|
findingStatus?: FindingStatus | null | undefined;
|
|
1639
1697
|
responseMessage?: string | undefined;
|
|
1698
|
+
actionDescriptionContext?: string | undefined;
|
|
1640
1699
|
}, {
|
|
1641
1700
|
actionId: string | null;
|
|
1642
1701
|
findingStatus?: FindingStatus | null | undefined;
|
|
1643
1702
|
responseMessage?: string | undefined;
|
|
1703
|
+
actionDescriptionContext?: string | undefined;
|
|
1644
1704
|
}>>;
|
|
1645
1705
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
1646
1706
|
id: z.ZodString;
|
|
@@ -1704,6 +1764,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1704
1764
|
actionId: string | null;
|
|
1705
1765
|
findingStatus?: FindingStatus | null | undefined;
|
|
1706
1766
|
responseMessage?: string | undefined;
|
|
1767
|
+
actionDescriptionContext?: string | undefined;
|
|
1707
1768
|
} | undefined;
|
|
1708
1769
|
simpleTriageYesActId?: string | undefined;
|
|
1709
1770
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1712,16 +1773,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1712
1773
|
actionId: string | null;
|
|
1713
1774
|
findingStatus?: FindingStatus | null | undefined;
|
|
1714
1775
|
responseMessage?: string | undefined;
|
|
1776
|
+
actionDescriptionContext?: string | undefined;
|
|
1715
1777
|
} | undefined;
|
|
1716
1778
|
scheduleResolutionAction?: {
|
|
1717
1779
|
actionId: string | null;
|
|
1718
1780
|
findingStatus?: FindingStatus | null | undefined;
|
|
1719
1781
|
responseMessage?: string | undefined;
|
|
1782
|
+
actionDescriptionContext?: string | undefined;
|
|
1720
1783
|
} | undefined;
|
|
1721
1784
|
launchAction?: {
|
|
1722
1785
|
actionId: string | null;
|
|
1723
1786
|
findingStatus?: FindingStatus | null | undefined;
|
|
1724
1787
|
responseMessage?: string | undefined;
|
|
1788
|
+
actionDescriptionContext?: string | undefined;
|
|
1725
1789
|
} | undefined;
|
|
1726
1790
|
launchActionsV2?: {
|
|
1727
1791
|
id: string;
|
|
@@ -1751,6 +1815,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1751
1815
|
actionId: string | null;
|
|
1752
1816
|
findingStatus?: FindingStatus | null | undefined;
|
|
1753
1817
|
responseMessage?: string | undefined;
|
|
1818
|
+
actionDescriptionContext?: string | undefined;
|
|
1754
1819
|
} | undefined;
|
|
1755
1820
|
simpleTriageYesActId?: string | undefined;
|
|
1756
1821
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -1759,16 +1824,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1759
1824
|
actionId: string | null;
|
|
1760
1825
|
findingStatus?: FindingStatus | null | undefined;
|
|
1761
1826
|
responseMessage?: string | undefined;
|
|
1827
|
+
actionDescriptionContext?: string | undefined;
|
|
1762
1828
|
} | undefined;
|
|
1763
1829
|
scheduleResolutionAction?: {
|
|
1764
1830
|
actionId: string | null;
|
|
1765
1831
|
findingStatus?: FindingStatus | null | undefined;
|
|
1766
1832
|
responseMessage?: string | undefined;
|
|
1833
|
+
actionDescriptionContext?: string | undefined;
|
|
1767
1834
|
} | undefined;
|
|
1768
1835
|
launchAction?: {
|
|
1769
1836
|
actionId: string | null;
|
|
1770
1837
|
findingStatus?: FindingStatus | null | undefined;
|
|
1771
1838
|
responseMessage?: string | undefined;
|
|
1839
|
+
actionDescriptionContext?: string | undefined;
|
|
1772
1840
|
} | undefined;
|
|
1773
1841
|
launchActionsV2?: {
|
|
1774
1842
|
id: string;
|
|
@@ -2038,6 +2106,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2038
2106
|
template?: string | undefined;
|
|
2039
2107
|
append?: boolean | undefined;
|
|
2040
2108
|
}>>;
|
|
2109
|
+
messageTitle: z.ZodOptional<z.ZodString>;
|
|
2041
2110
|
additionalContext: z.ZodOptional<z.ZodObject<{
|
|
2042
2111
|
data: z.ZodOptional<z.ZodString>;
|
|
2043
2112
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2130,6 +2199,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2130
2199
|
actionId: string | null;
|
|
2131
2200
|
findingStatus?: FindingStatus | null | undefined;
|
|
2132
2201
|
responseMessage?: string | undefined;
|
|
2202
|
+
actionDescriptionContext?: string | undefined;
|
|
2133
2203
|
} | undefined;
|
|
2134
2204
|
simpleTriageYesActId?: string | undefined;
|
|
2135
2205
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2138,16 +2208,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2138
2208
|
actionId: string | null;
|
|
2139
2209
|
findingStatus?: FindingStatus | null | undefined;
|
|
2140
2210
|
responseMessage?: string | undefined;
|
|
2211
|
+
actionDescriptionContext?: string | undefined;
|
|
2141
2212
|
} | undefined;
|
|
2142
2213
|
scheduleResolutionAction?: {
|
|
2143
2214
|
actionId: string | null;
|
|
2144
2215
|
findingStatus?: FindingStatus | null | undefined;
|
|
2145
2216
|
responseMessage?: string | undefined;
|
|
2217
|
+
actionDescriptionContext?: string | undefined;
|
|
2146
2218
|
} | undefined;
|
|
2147
2219
|
launchAction?: {
|
|
2148
2220
|
actionId: string | null;
|
|
2149
2221
|
findingStatus?: FindingStatus | null | undefined;
|
|
2150
2222
|
responseMessage?: string | undefined;
|
|
2223
|
+
actionDescriptionContext?: string | undefined;
|
|
2151
2224
|
} | undefined;
|
|
2152
2225
|
launchActionsV2?: {
|
|
2153
2226
|
id: string;
|
|
@@ -2201,11 +2274,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2201
2274
|
actionId: string | null;
|
|
2202
2275
|
findingStatus?: FindingStatus | null | undefined;
|
|
2203
2276
|
responseMessage?: string | undefined;
|
|
2277
|
+
actionDescriptionContext?: string | undefined;
|
|
2204
2278
|
};
|
|
2205
2279
|
noAction: {
|
|
2206
2280
|
actionId: string | null;
|
|
2207
2281
|
findingStatus?: FindingStatus | null | undefined;
|
|
2208
2282
|
responseMessage?: string | undefined;
|
|
2283
|
+
actionDescriptionContext?: string | undefined;
|
|
2209
2284
|
};
|
|
2210
2285
|
} | undefined;
|
|
2211
2286
|
reminderInterval?: {
|
|
@@ -2266,6 +2341,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2266
2341
|
template?: string | undefined;
|
|
2267
2342
|
append?: boolean | undefined;
|
|
2268
2343
|
} | undefined;
|
|
2344
|
+
messageTitle?: string | undefined;
|
|
2269
2345
|
additionalContext?: {
|
|
2270
2346
|
data?: string | undefined;
|
|
2271
2347
|
} | undefined;
|
|
@@ -2326,6 +2402,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2326
2402
|
actionId: string | null;
|
|
2327
2403
|
findingStatus?: FindingStatus | null | undefined;
|
|
2328
2404
|
responseMessage?: string | undefined;
|
|
2405
|
+
actionDescriptionContext?: string | undefined;
|
|
2329
2406
|
} | undefined;
|
|
2330
2407
|
simpleTriageYesActId?: string | undefined;
|
|
2331
2408
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2334,16 +2411,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2334
2411
|
actionId: string | null;
|
|
2335
2412
|
findingStatus?: FindingStatus | null | undefined;
|
|
2336
2413
|
responseMessage?: string | undefined;
|
|
2414
|
+
actionDescriptionContext?: string | undefined;
|
|
2337
2415
|
} | undefined;
|
|
2338
2416
|
scheduleResolutionAction?: {
|
|
2339
2417
|
actionId: string | null;
|
|
2340
2418
|
findingStatus?: FindingStatus | null | undefined;
|
|
2341
2419
|
responseMessage?: string | undefined;
|
|
2420
|
+
actionDescriptionContext?: string | undefined;
|
|
2342
2421
|
} | undefined;
|
|
2343
2422
|
launchAction?: {
|
|
2344
2423
|
actionId: string | null;
|
|
2345
2424
|
findingStatus?: FindingStatus | null | undefined;
|
|
2346
2425
|
responseMessage?: string | undefined;
|
|
2426
|
+
actionDescriptionContext?: string | undefined;
|
|
2347
2427
|
} | undefined;
|
|
2348
2428
|
launchActionsV2?: {
|
|
2349
2429
|
id: string;
|
|
@@ -2398,11 +2478,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2398
2478
|
actionId: string | null;
|
|
2399
2479
|
findingStatus?: FindingStatus | null | undefined;
|
|
2400
2480
|
responseMessage?: string | undefined;
|
|
2481
|
+
actionDescriptionContext?: string | undefined;
|
|
2401
2482
|
};
|
|
2402
2483
|
noAction: {
|
|
2403
2484
|
actionId: string | null;
|
|
2404
2485
|
findingStatus?: FindingStatus | null | undefined;
|
|
2405
2486
|
responseMessage?: string | undefined;
|
|
2487
|
+
actionDescriptionContext?: string | undefined;
|
|
2406
2488
|
};
|
|
2407
2489
|
} | undefined;
|
|
2408
2490
|
reminderInterval?: {
|
|
@@ -2463,6 +2545,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2463
2545
|
template?: string | undefined;
|
|
2464
2546
|
append?: boolean | undefined;
|
|
2465
2547
|
} | undefined;
|
|
2548
|
+
messageTitle?: string | undefined;
|
|
2466
2549
|
additionalContext?: {
|
|
2467
2550
|
data?: string | undefined;
|
|
2468
2551
|
} | undefined;
|
|
@@ -2621,27 +2704,33 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2621
2704
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2622
2705
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2623
2706
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2707
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2624
2708
|
}, "strip", z.ZodTypeAny, {
|
|
2625
2709
|
actionId: string | null;
|
|
2626
2710
|
findingStatus?: FindingStatus | null | undefined;
|
|
2627
2711
|
responseMessage?: string | undefined;
|
|
2712
|
+
actionDescriptionContext?: string | undefined;
|
|
2628
2713
|
}, {
|
|
2629
2714
|
actionId: string | null;
|
|
2630
2715
|
findingStatus?: FindingStatus | null | undefined;
|
|
2631
2716
|
responseMessage?: string | undefined;
|
|
2717
|
+
actionDescriptionContext?: string | undefined;
|
|
2632
2718
|
}>;
|
|
2633
2719
|
noAction: z.ZodObject<{
|
|
2634
2720
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2635
2721
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2636
2722
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2723
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2637
2724
|
}, "strip", z.ZodTypeAny, {
|
|
2638
2725
|
actionId: string | null;
|
|
2639
2726
|
findingStatus?: FindingStatus | null | undefined;
|
|
2640
2727
|
responseMessage?: string | undefined;
|
|
2728
|
+
actionDescriptionContext?: string | undefined;
|
|
2641
2729
|
}, {
|
|
2642
2730
|
actionId: string | null;
|
|
2643
2731
|
findingStatus?: FindingStatus | null | undefined;
|
|
2644
2732
|
responseMessage?: string | undefined;
|
|
2733
|
+
actionDescriptionContext?: string | undefined;
|
|
2645
2734
|
}>;
|
|
2646
2735
|
}, "strip", z.ZodTypeAny, {
|
|
2647
2736
|
message: string;
|
|
@@ -2649,11 +2738,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2649
2738
|
actionId: string | null;
|
|
2650
2739
|
findingStatus?: FindingStatus | null | undefined;
|
|
2651
2740
|
responseMessage?: string | undefined;
|
|
2741
|
+
actionDescriptionContext?: string | undefined;
|
|
2652
2742
|
};
|
|
2653
2743
|
noAction: {
|
|
2654
2744
|
actionId: string | null;
|
|
2655
2745
|
findingStatus?: FindingStatus | null | undefined;
|
|
2656
2746
|
responseMessage?: string | undefined;
|
|
2747
|
+
actionDescriptionContext?: string | undefined;
|
|
2657
2748
|
};
|
|
2658
2749
|
}, {
|
|
2659
2750
|
message: string;
|
|
@@ -2661,11 +2752,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2661
2752
|
actionId: string | null;
|
|
2662
2753
|
findingStatus?: FindingStatus | null | undefined;
|
|
2663
2754
|
responseMessage?: string | undefined;
|
|
2755
|
+
actionDescriptionContext?: string | undefined;
|
|
2664
2756
|
};
|
|
2665
2757
|
noAction: {
|
|
2666
2758
|
actionId: string | null;
|
|
2667
2759
|
findingStatus?: FindingStatus | null | undefined;
|
|
2668
2760
|
responseMessage?: string | undefined;
|
|
2761
|
+
actionDescriptionContext?: string | undefined;
|
|
2669
2762
|
};
|
|
2670
2763
|
}>>;
|
|
2671
2764
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -2706,14 +2799,17 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2706
2799
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2707
2800
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2708
2801
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2802
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2709
2803
|
}, "strip", z.ZodTypeAny, {
|
|
2710
2804
|
actionId: string | null;
|
|
2711
2805
|
findingStatus?: FindingStatus | null | undefined;
|
|
2712
2806
|
responseMessage?: string | undefined;
|
|
2807
|
+
actionDescriptionContext?: string | undefined;
|
|
2713
2808
|
}, {
|
|
2714
2809
|
actionId: string | null;
|
|
2715
2810
|
findingStatus?: FindingStatus | null | undefined;
|
|
2716
2811
|
responseMessage?: string | undefined;
|
|
2812
|
+
actionDescriptionContext?: string | undefined;
|
|
2717
2813
|
}>>;
|
|
2718
2814
|
/**
|
|
2719
2815
|
* @deprecated Use triage instead
|
|
@@ -2731,40 +2827,49 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2731
2827
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2732
2828
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2733
2829
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2830
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2734
2831
|
}, "strip", z.ZodTypeAny, {
|
|
2735
2832
|
actionId: string | null;
|
|
2736
2833
|
findingStatus?: FindingStatus | null | undefined;
|
|
2737
2834
|
responseMessage?: string | undefined;
|
|
2835
|
+
actionDescriptionContext?: string | undefined;
|
|
2738
2836
|
}, {
|
|
2739
2837
|
actionId: string | null;
|
|
2740
2838
|
findingStatus?: FindingStatus | null | undefined;
|
|
2741
2839
|
responseMessage?: string | undefined;
|
|
2840
|
+
actionDescriptionContext?: string | undefined;
|
|
2742
2841
|
}>>;
|
|
2743
2842
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
2744
2843
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2745
2844
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2746
2845
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2846
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2747
2847
|
}, "strip", z.ZodTypeAny, {
|
|
2748
2848
|
actionId: string | null;
|
|
2749
2849
|
findingStatus?: FindingStatus | null | undefined;
|
|
2750
2850
|
responseMessage?: string | undefined;
|
|
2851
|
+
actionDescriptionContext?: string | undefined;
|
|
2751
2852
|
}, {
|
|
2752
2853
|
actionId: string | null;
|
|
2753
2854
|
findingStatus?: FindingStatus | null | undefined;
|
|
2754
2855
|
responseMessage?: string | undefined;
|
|
2856
|
+
actionDescriptionContext?: string | undefined;
|
|
2755
2857
|
}>>;
|
|
2756
2858
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
2757
2859
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2758
2860
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2759
2861
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2862
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2760
2863
|
}, "strip", z.ZodTypeAny, {
|
|
2761
2864
|
actionId: string | null;
|
|
2762
2865
|
findingStatus?: FindingStatus | null | undefined;
|
|
2763
2866
|
responseMessage?: string | undefined;
|
|
2867
|
+
actionDescriptionContext?: string | undefined;
|
|
2764
2868
|
}, {
|
|
2765
2869
|
actionId: string | null;
|
|
2766
2870
|
findingStatus?: FindingStatus | null | undefined;
|
|
2767
2871
|
responseMessage?: string | undefined;
|
|
2872
|
+
actionDescriptionContext?: string | undefined;
|
|
2768
2873
|
}>>;
|
|
2769
2874
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
2770
2875
|
id: z.ZodString;
|
|
@@ -2828,6 +2933,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2828
2933
|
actionId: string | null;
|
|
2829
2934
|
findingStatus?: FindingStatus | null | undefined;
|
|
2830
2935
|
responseMessage?: string | undefined;
|
|
2936
|
+
actionDescriptionContext?: string | undefined;
|
|
2831
2937
|
} | undefined;
|
|
2832
2938
|
simpleTriageYesActId?: string | undefined;
|
|
2833
2939
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2836,16 +2942,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2836
2942
|
actionId: string | null;
|
|
2837
2943
|
findingStatus?: FindingStatus | null | undefined;
|
|
2838
2944
|
responseMessage?: string | undefined;
|
|
2945
|
+
actionDescriptionContext?: string | undefined;
|
|
2839
2946
|
} | undefined;
|
|
2840
2947
|
scheduleResolutionAction?: {
|
|
2841
2948
|
actionId: string | null;
|
|
2842
2949
|
findingStatus?: FindingStatus | null | undefined;
|
|
2843
2950
|
responseMessage?: string | undefined;
|
|
2951
|
+
actionDescriptionContext?: string | undefined;
|
|
2844
2952
|
} | undefined;
|
|
2845
2953
|
launchAction?: {
|
|
2846
2954
|
actionId: string | null;
|
|
2847
2955
|
findingStatus?: FindingStatus | null | undefined;
|
|
2848
2956
|
responseMessage?: string | undefined;
|
|
2957
|
+
actionDescriptionContext?: string | undefined;
|
|
2849
2958
|
} | undefined;
|
|
2850
2959
|
launchActionsV2?: {
|
|
2851
2960
|
id: string;
|
|
@@ -2875,6 +2984,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2875
2984
|
actionId: string | null;
|
|
2876
2985
|
findingStatus?: FindingStatus | null | undefined;
|
|
2877
2986
|
responseMessage?: string | undefined;
|
|
2987
|
+
actionDescriptionContext?: string | undefined;
|
|
2878
2988
|
} | undefined;
|
|
2879
2989
|
simpleTriageYesActId?: string | undefined;
|
|
2880
2990
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2883,16 +2993,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2883
2993
|
actionId: string | null;
|
|
2884
2994
|
findingStatus?: FindingStatus | null | undefined;
|
|
2885
2995
|
responseMessage?: string | undefined;
|
|
2996
|
+
actionDescriptionContext?: string | undefined;
|
|
2886
2997
|
} | undefined;
|
|
2887
2998
|
scheduleResolutionAction?: {
|
|
2888
2999
|
actionId: string | null;
|
|
2889
3000
|
findingStatus?: FindingStatus | null | undefined;
|
|
2890
3001
|
responseMessage?: string | undefined;
|
|
3002
|
+
actionDescriptionContext?: string | undefined;
|
|
2891
3003
|
} | undefined;
|
|
2892
3004
|
launchAction?: {
|
|
2893
3005
|
actionId: string | null;
|
|
2894
3006
|
findingStatus?: FindingStatus | null | undefined;
|
|
2895
3007
|
responseMessage?: string | undefined;
|
|
3008
|
+
actionDescriptionContext?: string | undefined;
|
|
2896
3009
|
} | undefined;
|
|
2897
3010
|
launchActionsV2?: {
|
|
2898
3011
|
id: string;
|
|
@@ -3162,6 +3275,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3162
3275
|
template?: string | undefined;
|
|
3163
3276
|
append?: boolean | undefined;
|
|
3164
3277
|
}>>;
|
|
3278
|
+
messageTitle: z.ZodOptional<z.ZodString>;
|
|
3165
3279
|
additionalContext: z.ZodOptional<z.ZodObject<{
|
|
3166
3280
|
data: z.ZodOptional<z.ZodString>;
|
|
3167
3281
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3259,6 +3373,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3259
3373
|
actionId: string | null;
|
|
3260
3374
|
findingStatus?: FindingStatus | null | undefined;
|
|
3261
3375
|
responseMessage?: string | undefined;
|
|
3376
|
+
actionDescriptionContext?: string | undefined;
|
|
3262
3377
|
} | undefined;
|
|
3263
3378
|
simpleTriageYesActId?: string | undefined;
|
|
3264
3379
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3267,16 +3382,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3267
3382
|
actionId: string | null;
|
|
3268
3383
|
findingStatus?: FindingStatus | null | undefined;
|
|
3269
3384
|
responseMessage?: string | undefined;
|
|
3385
|
+
actionDescriptionContext?: string | undefined;
|
|
3270
3386
|
} | undefined;
|
|
3271
3387
|
scheduleResolutionAction?: {
|
|
3272
3388
|
actionId: string | null;
|
|
3273
3389
|
findingStatus?: FindingStatus | null | undefined;
|
|
3274
3390
|
responseMessage?: string | undefined;
|
|
3391
|
+
actionDescriptionContext?: string | undefined;
|
|
3275
3392
|
} | undefined;
|
|
3276
3393
|
launchAction?: {
|
|
3277
3394
|
actionId: string | null;
|
|
3278
3395
|
findingStatus?: FindingStatus | null | undefined;
|
|
3279
3396
|
responseMessage?: string | undefined;
|
|
3397
|
+
actionDescriptionContext?: string | undefined;
|
|
3280
3398
|
} | undefined;
|
|
3281
3399
|
launchActionsV2?: {
|
|
3282
3400
|
id: string;
|
|
@@ -3330,11 +3448,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3330
3448
|
actionId: string | null;
|
|
3331
3449
|
findingStatus?: FindingStatus | null | undefined;
|
|
3332
3450
|
responseMessage?: string | undefined;
|
|
3451
|
+
actionDescriptionContext?: string | undefined;
|
|
3333
3452
|
};
|
|
3334
3453
|
noAction: {
|
|
3335
3454
|
actionId: string | null;
|
|
3336
3455
|
findingStatus?: FindingStatus | null | undefined;
|
|
3337
3456
|
responseMessage?: string | undefined;
|
|
3457
|
+
actionDescriptionContext?: string | undefined;
|
|
3338
3458
|
};
|
|
3339
3459
|
} | undefined;
|
|
3340
3460
|
reminderInterval?: {
|
|
@@ -3395,6 +3515,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3395
3515
|
template?: string | undefined;
|
|
3396
3516
|
append?: boolean | undefined;
|
|
3397
3517
|
} | undefined;
|
|
3518
|
+
messageTitle?: string | undefined;
|
|
3398
3519
|
additionalContext?: {
|
|
3399
3520
|
data?: string | undefined;
|
|
3400
3521
|
} | undefined;
|
|
@@ -3447,6 +3568,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3447
3568
|
actionId: string | null;
|
|
3448
3569
|
findingStatus?: FindingStatus | null | undefined;
|
|
3449
3570
|
responseMessage?: string | undefined;
|
|
3571
|
+
actionDescriptionContext?: string | undefined;
|
|
3450
3572
|
} | undefined;
|
|
3451
3573
|
simpleTriageYesActId?: string | undefined;
|
|
3452
3574
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3455,16 +3577,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3455
3577
|
actionId: string | null;
|
|
3456
3578
|
findingStatus?: FindingStatus | null | undefined;
|
|
3457
3579
|
responseMessage?: string | undefined;
|
|
3580
|
+
actionDescriptionContext?: string | undefined;
|
|
3458
3581
|
} | undefined;
|
|
3459
3582
|
scheduleResolutionAction?: {
|
|
3460
3583
|
actionId: string | null;
|
|
3461
3584
|
findingStatus?: FindingStatus | null | undefined;
|
|
3462
3585
|
responseMessage?: string | undefined;
|
|
3586
|
+
actionDescriptionContext?: string | undefined;
|
|
3463
3587
|
} | undefined;
|
|
3464
3588
|
launchAction?: {
|
|
3465
3589
|
actionId: string | null;
|
|
3466
3590
|
findingStatus?: FindingStatus | null | undefined;
|
|
3467
3591
|
responseMessage?: string | undefined;
|
|
3592
|
+
actionDescriptionContext?: string | undefined;
|
|
3468
3593
|
} | undefined;
|
|
3469
3594
|
launchActionsV2?: {
|
|
3470
3595
|
id: string;
|
|
@@ -3519,11 +3644,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3519
3644
|
actionId: string | null;
|
|
3520
3645
|
findingStatus?: FindingStatus | null | undefined;
|
|
3521
3646
|
responseMessage?: string | undefined;
|
|
3647
|
+
actionDescriptionContext?: string | undefined;
|
|
3522
3648
|
};
|
|
3523
3649
|
noAction: {
|
|
3524
3650
|
actionId: string | null;
|
|
3525
3651
|
findingStatus?: FindingStatus | null | undefined;
|
|
3526
3652
|
responseMessage?: string | undefined;
|
|
3653
|
+
actionDescriptionContext?: string | undefined;
|
|
3527
3654
|
};
|
|
3528
3655
|
} | undefined;
|
|
3529
3656
|
reminderInterval?: {
|
|
@@ -3584,6 +3711,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3584
3711
|
template?: string | undefined;
|
|
3585
3712
|
append?: boolean | undefined;
|
|
3586
3713
|
} | undefined;
|
|
3714
|
+
messageTitle?: string | undefined;
|
|
3587
3715
|
additionalContext?: {
|
|
3588
3716
|
data?: string | undefined;
|
|
3589
3717
|
} | undefined;
|
|
@@ -3630,14 +3758,17 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3630
3758
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3631
3759
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3632
3760
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3761
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3633
3762
|
}, "strip", z.ZodTypeAny, {
|
|
3634
3763
|
actionId: string | null;
|
|
3635
3764
|
findingStatus?: FindingStatus | null | undefined;
|
|
3636
3765
|
responseMessage?: string | undefined;
|
|
3766
|
+
actionDescriptionContext?: string | undefined;
|
|
3637
3767
|
}, {
|
|
3638
3768
|
actionId: string | null;
|
|
3639
3769
|
findingStatus?: FindingStatus | null | undefined;
|
|
3640
3770
|
responseMessage?: string | undefined;
|
|
3771
|
+
actionDescriptionContext?: string | undefined;
|
|
3641
3772
|
}>>;
|
|
3642
3773
|
/**
|
|
3643
3774
|
* @deprecated Use triage instead
|
|
@@ -3655,40 +3786,49 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3655
3786
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3656
3787
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3657
3788
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3789
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3658
3790
|
}, "strip", z.ZodTypeAny, {
|
|
3659
3791
|
actionId: string | null;
|
|
3660
3792
|
findingStatus?: FindingStatus | null | undefined;
|
|
3661
3793
|
responseMessage?: string | undefined;
|
|
3794
|
+
actionDescriptionContext?: string | undefined;
|
|
3662
3795
|
}, {
|
|
3663
3796
|
actionId: string | null;
|
|
3664
3797
|
findingStatus?: FindingStatus | null | undefined;
|
|
3665
3798
|
responseMessage?: string | undefined;
|
|
3799
|
+
actionDescriptionContext?: string | undefined;
|
|
3666
3800
|
}>>;
|
|
3667
3801
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
3668
3802
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3669
3803
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3670
3804
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3805
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3671
3806
|
}, "strip", z.ZodTypeAny, {
|
|
3672
3807
|
actionId: string | null;
|
|
3673
3808
|
findingStatus?: FindingStatus | null | undefined;
|
|
3674
3809
|
responseMessage?: string | undefined;
|
|
3810
|
+
actionDescriptionContext?: string | undefined;
|
|
3675
3811
|
}, {
|
|
3676
3812
|
actionId: string | null;
|
|
3677
3813
|
findingStatus?: FindingStatus | null | undefined;
|
|
3678
3814
|
responseMessage?: string | undefined;
|
|
3815
|
+
actionDescriptionContext?: string | undefined;
|
|
3679
3816
|
}>>;
|
|
3680
3817
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
3681
3818
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3682
3819
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3683
3820
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3821
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3684
3822
|
}, "strip", z.ZodTypeAny, {
|
|
3685
3823
|
actionId: string | null;
|
|
3686
3824
|
findingStatus?: FindingStatus | null | undefined;
|
|
3687
3825
|
responseMessage?: string | undefined;
|
|
3826
|
+
actionDescriptionContext?: string | undefined;
|
|
3688
3827
|
}, {
|
|
3689
3828
|
actionId: string | null;
|
|
3690
3829
|
findingStatus?: FindingStatus | null | undefined;
|
|
3691
3830
|
responseMessage?: string | undefined;
|
|
3831
|
+
actionDescriptionContext?: string | undefined;
|
|
3692
3832
|
}>>;
|
|
3693
3833
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
3694
3834
|
id: z.ZodString;
|
|
@@ -3752,6 +3892,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3752
3892
|
actionId: string | null;
|
|
3753
3893
|
findingStatus?: FindingStatus | null | undefined;
|
|
3754
3894
|
responseMessage?: string | undefined;
|
|
3895
|
+
actionDescriptionContext?: string | undefined;
|
|
3755
3896
|
} | undefined;
|
|
3756
3897
|
simpleTriageYesActId?: string | undefined;
|
|
3757
3898
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3760,16 +3901,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3760
3901
|
actionId: string | null;
|
|
3761
3902
|
findingStatus?: FindingStatus | null | undefined;
|
|
3762
3903
|
responseMessage?: string | undefined;
|
|
3904
|
+
actionDescriptionContext?: string | undefined;
|
|
3763
3905
|
} | undefined;
|
|
3764
3906
|
scheduleResolutionAction?: {
|
|
3765
3907
|
actionId: string | null;
|
|
3766
3908
|
findingStatus?: FindingStatus | null | undefined;
|
|
3767
3909
|
responseMessage?: string | undefined;
|
|
3910
|
+
actionDescriptionContext?: string | undefined;
|
|
3768
3911
|
} | undefined;
|
|
3769
3912
|
launchAction?: {
|
|
3770
3913
|
actionId: string | null;
|
|
3771
3914
|
findingStatus?: FindingStatus | null | undefined;
|
|
3772
3915
|
responseMessage?: string | undefined;
|
|
3916
|
+
actionDescriptionContext?: string | undefined;
|
|
3773
3917
|
} | undefined;
|
|
3774
3918
|
launchActionsV2?: {
|
|
3775
3919
|
id: string;
|
|
@@ -3799,6 +3943,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3799
3943
|
actionId: string | null;
|
|
3800
3944
|
findingStatus?: FindingStatus | null | undefined;
|
|
3801
3945
|
responseMessage?: string | undefined;
|
|
3946
|
+
actionDescriptionContext?: string | undefined;
|
|
3802
3947
|
} | undefined;
|
|
3803
3948
|
simpleTriageYesActId?: string | undefined;
|
|
3804
3949
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3807,16 +3952,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3807
3952
|
actionId: string | null;
|
|
3808
3953
|
findingStatus?: FindingStatus | null | undefined;
|
|
3809
3954
|
responseMessage?: string | undefined;
|
|
3955
|
+
actionDescriptionContext?: string | undefined;
|
|
3810
3956
|
} | undefined;
|
|
3811
3957
|
scheduleResolutionAction?: {
|
|
3812
3958
|
actionId: string | null;
|
|
3813
3959
|
findingStatus?: FindingStatus | null | undefined;
|
|
3814
3960
|
responseMessage?: string | undefined;
|
|
3961
|
+
actionDescriptionContext?: string | undefined;
|
|
3815
3962
|
} | undefined;
|
|
3816
3963
|
launchAction?: {
|
|
3817
3964
|
actionId: string | null;
|
|
3818
3965
|
findingStatus?: FindingStatus | null | undefined;
|
|
3819
3966
|
responseMessage?: string | undefined;
|
|
3967
|
+
actionDescriptionContext?: string | undefined;
|
|
3820
3968
|
} | undefined;
|
|
3821
3969
|
launchActionsV2?: {
|
|
3822
3970
|
id: string;
|
|
@@ -3922,27 +4070,33 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3922
4070
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3923
4071
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3924
4072
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
4073
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3925
4074
|
}, "strip", z.ZodTypeAny, {
|
|
3926
4075
|
actionId: string | null;
|
|
3927
4076
|
findingStatus?: FindingStatus | null | undefined;
|
|
3928
4077
|
responseMessage?: string | undefined;
|
|
4078
|
+
actionDescriptionContext?: string | undefined;
|
|
3929
4079
|
}, {
|
|
3930
4080
|
actionId: string | null;
|
|
3931
4081
|
findingStatus?: FindingStatus | null | undefined;
|
|
3932
4082
|
responseMessage?: string | undefined;
|
|
4083
|
+
actionDescriptionContext?: string | undefined;
|
|
3933
4084
|
}>;
|
|
3934
4085
|
noAction: z.ZodObject<{
|
|
3935
4086
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3936
4087
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3937
4088
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
4089
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3938
4090
|
}, "strip", z.ZodTypeAny, {
|
|
3939
4091
|
actionId: string | null;
|
|
3940
4092
|
findingStatus?: FindingStatus | null | undefined;
|
|
3941
4093
|
responseMessage?: string | undefined;
|
|
4094
|
+
actionDescriptionContext?: string | undefined;
|
|
3942
4095
|
}, {
|
|
3943
4096
|
actionId: string | null;
|
|
3944
4097
|
findingStatus?: FindingStatus | null | undefined;
|
|
3945
4098
|
responseMessage?: string | undefined;
|
|
4099
|
+
actionDescriptionContext?: string | undefined;
|
|
3946
4100
|
}>;
|
|
3947
4101
|
}, "strip", z.ZodTypeAny, {
|
|
3948
4102
|
message: string;
|
|
@@ -3950,11 +4104,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3950
4104
|
actionId: string | null;
|
|
3951
4105
|
findingStatus?: FindingStatus | null | undefined;
|
|
3952
4106
|
responseMessage?: string | undefined;
|
|
4107
|
+
actionDescriptionContext?: string | undefined;
|
|
3953
4108
|
};
|
|
3954
4109
|
noAction: {
|
|
3955
4110
|
actionId: string | null;
|
|
3956
4111
|
findingStatus?: FindingStatus | null | undefined;
|
|
3957
4112
|
responseMessage?: string | undefined;
|
|
4113
|
+
actionDescriptionContext?: string | undefined;
|
|
3958
4114
|
};
|
|
3959
4115
|
}, {
|
|
3960
4116
|
message: string;
|
|
@@ -3962,11 +4118,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3962
4118
|
actionId: string | null;
|
|
3963
4119
|
findingStatus?: FindingStatus | null | undefined;
|
|
3964
4120
|
responseMessage?: string | undefined;
|
|
4121
|
+
actionDescriptionContext?: string | undefined;
|
|
3965
4122
|
};
|
|
3966
4123
|
noAction: {
|
|
3967
4124
|
actionId: string | null;
|
|
3968
4125
|
findingStatus?: FindingStatus | null | undefined;
|
|
3969
4126
|
responseMessage?: string | undefined;
|
|
4127
|
+
actionDescriptionContext?: string | undefined;
|
|
3970
4128
|
};
|
|
3971
4129
|
}>>>;
|
|
3972
4130
|
reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -4197,6 +4355,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4197
4355
|
template?: string | undefined;
|
|
4198
4356
|
append?: boolean | undefined;
|
|
4199
4357
|
}>>>;
|
|
4358
|
+
messageTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4200
4359
|
additionalContext: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4201
4360
|
data: z.ZodOptional<z.ZodString>;
|
|
4202
4361
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4273,6 +4432,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4273
4432
|
actionId: string | null;
|
|
4274
4433
|
findingStatus?: FindingStatus | null | undefined;
|
|
4275
4434
|
responseMessage?: string | undefined;
|
|
4435
|
+
actionDescriptionContext?: string | undefined;
|
|
4276
4436
|
} | undefined;
|
|
4277
4437
|
simpleTriageYesActId?: string | undefined;
|
|
4278
4438
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -4281,16 +4441,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4281
4441
|
actionId: string | null;
|
|
4282
4442
|
findingStatus?: FindingStatus | null | undefined;
|
|
4283
4443
|
responseMessage?: string | undefined;
|
|
4444
|
+
actionDescriptionContext?: string | undefined;
|
|
4284
4445
|
} | undefined;
|
|
4285
4446
|
scheduleResolutionAction?: {
|
|
4286
4447
|
actionId: string | null;
|
|
4287
4448
|
findingStatus?: FindingStatus | null | undefined;
|
|
4288
4449
|
responseMessage?: string | undefined;
|
|
4450
|
+
actionDescriptionContext?: string | undefined;
|
|
4289
4451
|
} | undefined;
|
|
4290
4452
|
launchAction?: {
|
|
4291
4453
|
actionId: string | null;
|
|
4292
4454
|
findingStatus?: FindingStatus | null | undefined;
|
|
4293
4455
|
responseMessage?: string | undefined;
|
|
4456
|
+
actionDescriptionContext?: string | undefined;
|
|
4294
4457
|
} | undefined;
|
|
4295
4458
|
launchActionsV2?: {
|
|
4296
4459
|
id: string;
|
|
@@ -4346,11 +4509,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4346
4509
|
actionId: string | null;
|
|
4347
4510
|
findingStatus?: FindingStatus | null | undefined;
|
|
4348
4511
|
responseMessage?: string | undefined;
|
|
4512
|
+
actionDescriptionContext?: string | undefined;
|
|
4349
4513
|
};
|
|
4350
4514
|
noAction: {
|
|
4351
4515
|
actionId: string | null;
|
|
4352
4516
|
findingStatus?: FindingStatus | null | undefined;
|
|
4353
4517
|
responseMessage?: string | undefined;
|
|
4518
|
+
actionDescriptionContext?: string | undefined;
|
|
4354
4519
|
};
|
|
4355
4520
|
} | undefined;
|
|
4356
4521
|
reminderInterval?: {
|
|
@@ -4411,6 +4576,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4411
4576
|
template?: string | undefined;
|
|
4412
4577
|
append?: boolean | undefined;
|
|
4413
4578
|
} | undefined;
|
|
4579
|
+
messageTitle?: string | undefined;
|
|
4414
4580
|
additionalContext?: {
|
|
4415
4581
|
data?: string | undefined;
|
|
4416
4582
|
} | undefined;
|
|
@@ -4454,6 +4620,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4454
4620
|
actionId: string | null;
|
|
4455
4621
|
findingStatus?: FindingStatus | null | undefined;
|
|
4456
4622
|
responseMessage?: string | undefined;
|
|
4623
|
+
actionDescriptionContext?: string | undefined;
|
|
4457
4624
|
} | undefined;
|
|
4458
4625
|
simpleTriageYesActId?: string | undefined;
|
|
4459
4626
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -4462,16 +4629,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4462
4629
|
actionId: string | null;
|
|
4463
4630
|
findingStatus?: FindingStatus | null | undefined;
|
|
4464
4631
|
responseMessage?: string | undefined;
|
|
4632
|
+
actionDescriptionContext?: string | undefined;
|
|
4465
4633
|
} | undefined;
|
|
4466
4634
|
scheduleResolutionAction?: {
|
|
4467
4635
|
actionId: string | null;
|
|
4468
4636
|
findingStatus?: FindingStatus | null | undefined;
|
|
4469
4637
|
responseMessage?: string | undefined;
|
|
4638
|
+
actionDescriptionContext?: string | undefined;
|
|
4470
4639
|
} | undefined;
|
|
4471
4640
|
launchAction?: {
|
|
4472
4641
|
actionId: string | null;
|
|
4473
4642
|
findingStatus?: FindingStatus | null | undefined;
|
|
4474
4643
|
responseMessage?: string | undefined;
|
|
4644
|
+
actionDescriptionContext?: string | undefined;
|
|
4475
4645
|
} | undefined;
|
|
4476
4646
|
launchActionsV2?: {
|
|
4477
4647
|
id: string;
|
|
@@ -4527,11 +4697,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4527
4697
|
actionId: string | null;
|
|
4528
4698
|
findingStatus?: FindingStatus | null | undefined;
|
|
4529
4699
|
responseMessage?: string | undefined;
|
|
4700
|
+
actionDescriptionContext?: string | undefined;
|
|
4530
4701
|
};
|
|
4531
4702
|
noAction: {
|
|
4532
4703
|
actionId: string | null;
|
|
4533
4704
|
findingStatus?: FindingStatus | null | undefined;
|
|
4534
4705
|
responseMessage?: string | undefined;
|
|
4706
|
+
actionDescriptionContext?: string | undefined;
|
|
4535
4707
|
};
|
|
4536
4708
|
} | undefined;
|
|
4537
4709
|
reminderInterval?: {
|
|
@@ -4592,6 +4764,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4592
4764
|
template?: string | undefined;
|
|
4593
4765
|
append?: boolean | undefined;
|
|
4594
4766
|
} | undefined;
|
|
4767
|
+
messageTitle?: string | undefined;
|
|
4595
4768
|
additionalContext?: {
|
|
4596
4769
|
data?: string | undefined;
|
|
4597
4770
|
} | undefined;
|