@ampsec/platform-client 87.4.0 → 87.5.0
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 +164 -0
- package/build/src/dto/flows.dto.js +3 -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 +94 -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 +3 -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;
|
|
@@ -2130,6 +2198,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2130
2198
|
actionId: string | null;
|
|
2131
2199
|
findingStatus?: FindingStatus | null | undefined;
|
|
2132
2200
|
responseMessage?: string | undefined;
|
|
2201
|
+
actionDescriptionContext?: string | undefined;
|
|
2133
2202
|
} | undefined;
|
|
2134
2203
|
simpleTriageYesActId?: string | undefined;
|
|
2135
2204
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2138,16 +2207,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2138
2207
|
actionId: string | null;
|
|
2139
2208
|
findingStatus?: FindingStatus | null | undefined;
|
|
2140
2209
|
responseMessage?: string | undefined;
|
|
2210
|
+
actionDescriptionContext?: string | undefined;
|
|
2141
2211
|
} | undefined;
|
|
2142
2212
|
scheduleResolutionAction?: {
|
|
2143
2213
|
actionId: string | null;
|
|
2144
2214
|
findingStatus?: FindingStatus | null | undefined;
|
|
2145
2215
|
responseMessage?: string | undefined;
|
|
2216
|
+
actionDescriptionContext?: string | undefined;
|
|
2146
2217
|
} | undefined;
|
|
2147
2218
|
launchAction?: {
|
|
2148
2219
|
actionId: string | null;
|
|
2149
2220
|
findingStatus?: FindingStatus | null | undefined;
|
|
2150
2221
|
responseMessage?: string | undefined;
|
|
2222
|
+
actionDescriptionContext?: string | undefined;
|
|
2151
2223
|
} | undefined;
|
|
2152
2224
|
launchActionsV2?: {
|
|
2153
2225
|
id: string;
|
|
@@ -2201,11 +2273,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2201
2273
|
actionId: string | null;
|
|
2202
2274
|
findingStatus?: FindingStatus | null | undefined;
|
|
2203
2275
|
responseMessage?: string | undefined;
|
|
2276
|
+
actionDescriptionContext?: string | undefined;
|
|
2204
2277
|
};
|
|
2205
2278
|
noAction: {
|
|
2206
2279
|
actionId: string | null;
|
|
2207
2280
|
findingStatus?: FindingStatus | null | undefined;
|
|
2208
2281
|
responseMessage?: string | undefined;
|
|
2282
|
+
actionDescriptionContext?: string | undefined;
|
|
2209
2283
|
};
|
|
2210
2284
|
} | undefined;
|
|
2211
2285
|
reminderInterval?: {
|
|
@@ -2326,6 +2400,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2326
2400
|
actionId: string | null;
|
|
2327
2401
|
findingStatus?: FindingStatus | null | undefined;
|
|
2328
2402
|
responseMessage?: string | undefined;
|
|
2403
|
+
actionDescriptionContext?: string | undefined;
|
|
2329
2404
|
} | undefined;
|
|
2330
2405
|
simpleTriageYesActId?: string | undefined;
|
|
2331
2406
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2334,16 +2409,19 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2334
2409
|
actionId: string | null;
|
|
2335
2410
|
findingStatus?: FindingStatus | null | undefined;
|
|
2336
2411
|
responseMessage?: string | undefined;
|
|
2412
|
+
actionDescriptionContext?: string | undefined;
|
|
2337
2413
|
} | undefined;
|
|
2338
2414
|
scheduleResolutionAction?: {
|
|
2339
2415
|
actionId: string | null;
|
|
2340
2416
|
findingStatus?: FindingStatus | null | undefined;
|
|
2341
2417
|
responseMessage?: string | undefined;
|
|
2418
|
+
actionDescriptionContext?: string | undefined;
|
|
2342
2419
|
} | undefined;
|
|
2343
2420
|
launchAction?: {
|
|
2344
2421
|
actionId: string | null;
|
|
2345
2422
|
findingStatus?: FindingStatus | null | undefined;
|
|
2346
2423
|
responseMessage?: string | undefined;
|
|
2424
|
+
actionDescriptionContext?: string | undefined;
|
|
2347
2425
|
} | undefined;
|
|
2348
2426
|
launchActionsV2?: {
|
|
2349
2427
|
id: string;
|
|
@@ -2398,11 +2476,13 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2398
2476
|
actionId: string | null;
|
|
2399
2477
|
findingStatus?: FindingStatus | null | undefined;
|
|
2400
2478
|
responseMessage?: string | undefined;
|
|
2479
|
+
actionDescriptionContext?: string | undefined;
|
|
2401
2480
|
};
|
|
2402
2481
|
noAction: {
|
|
2403
2482
|
actionId: string | null;
|
|
2404
2483
|
findingStatus?: FindingStatus | null | undefined;
|
|
2405
2484
|
responseMessage?: string | undefined;
|
|
2485
|
+
actionDescriptionContext?: string | undefined;
|
|
2406
2486
|
};
|
|
2407
2487
|
} | undefined;
|
|
2408
2488
|
reminderInterval?: {
|
|
@@ -2621,27 +2701,33 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2621
2701
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2622
2702
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2623
2703
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2704
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2624
2705
|
}, "strip", z.ZodTypeAny, {
|
|
2625
2706
|
actionId: string | null;
|
|
2626
2707
|
findingStatus?: FindingStatus | null | undefined;
|
|
2627
2708
|
responseMessage?: string | undefined;
|
|
2709
|
+
actionDescriptionContext?: string | undefined;
|
|
2628
2710
|
}, {
|
|
2629
2711
|
actionId: string | null;
|
|
2630
2712
|
findingStatus?: FindingStatus | null | undefined;
|
|
2631
2713
|
responseMessage?: string | undefined;
|
|
2714
|
+
actionDescriptionContext?: string | undefined;
|
|
2632
2715
|
}>;
|
|
2633
2716
|
noAction: z.ZodObject<{
|
|
2634
2717
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2635
2718
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2636
2719
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2720
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2637
2721
|
}, "strip", z.ZodTypeAny, {
|
|
2638
2722
|
actionId: string | null;
|
|
2639
2723
|
findingStatus?: FindingStatus | null | undefined;
|
|
2640
2724
|
responseMessage?: string | undefined;
|
|
2725
|
+
actionDescriptionContext?: string | undefined;
|
|
2641
2726
|
}, {
|
|
2642
2727
|
actionId: string | null;
|
|
2643
2728
|
findingStatus?: FindingStatus | null | undefined;
|
|
2644
2729
|
responseMessage?: string | undefined;
|
|
2730
|
+
actionDescriptionContext?: string | undefined;
|
|
2645
2731
|
}>;
|
|
2646
2732
|
}, "strip", z.ZodTypeAny, {
|
|
2647
2733
|
message: string;
|
|
@@ -2649,11 +2735,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2649
2735
|
actionId: string | null;
|
|
2650
2736
|
findingStatus?: FindingStatus | null | undefined;
|
|
2651
2737
|
responseMessage?: string | undefined;
|
|
2738
|
+
actionDescriptionContext?: string | undefined;
|
|
2652
2739
|
};
|
|
2653
2740
|
noAction: {
|
|
2654
2741
|
actionId: string | null;
|
|
2655
2742
|
findingStatus?: FindingStatus | null | undefined;
|
|
2656
2743
|
responseMessage?: string | undefined;
|
|
2744
|
+
actionDescriptionContext?: string | undefined;
|
|
2657
2745
|
};
|
|
2658
2746
|
}, {
|
|
2659
2747
|
message: string;
|
|
@@ -2661,11 +2749,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2661
2749
|
actionId: string | null;
|
|
2662
2750
|
findingStatus?: FindingStatus | null | undefined;
|
|
2663
2751
|
responseMessage?: string | undefined;
|
|
2752
|
+
actionDescriptionContext?: string | undefined;
|
|
2664
2753
|
};
|
|
2665
2754
|
noAction: {
|
|
2666
2755
|
actionId: string | null;
|
|
2667
2756
|
findingStatus?: FindingStatus | null | undefined;
|
|
2668
2757
|
responseMessage?: string | undefined;
|
|
2758
|
+
actionDescriptionContext?: string | undefined;
|
|
2669
2759
|
};
|
|
2670
2760
|
}>>;
|
|
2671
2761
|
reminderInterval: z.ZodOptional<z.ZodObject<{
|
|
@@ -2706,14 +2796,17 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2706
2796
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2707
2797
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2708
2798
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2799
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2709
2800
|
}, "strip", z.ZodTypeAny, {
|
|
2710
2801
|
actionId: string | null;
|
|
2711
2802
|
findingStatus?: FindingStatus | null | undefined;
|
|
2712
2803
|
responseMessage?: string | undefined;
|
|
2804
|
+
actionDescriptionContext?: string | undefined;
|
|
2713
2805
|
}, {
|
|
2714
2806
|
actionId: string | null;
|
|
2715
2807
|
findingStatus?: FindingStatus | null | undefined;
|
|
2716
2808
|
responseMessage?: string | undefined;
|
|
2809
|
+
actionDescriptionContext?: string | undefined;
|
|
2717
2810
|
}>>;
|
|
2718
2811
|
/**
|
|
2719
2812
|
* @deprecated Use triage instead
|
|
@@ -2731,40 +2824,49 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2731
2824
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2732
2825
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2733
2826
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2827
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2734
2828
|
}, "strip", z.ZodTypeAny, {
|
|
2735
2829
|
actionId: string | null;
|
|
2736
2830
|
findingStatus?: FindingStatus | null | undefined;
|
|
2737
2831
|
responseMessage?: string | undefined;
|
|
2832
|
+
actionDescriptionContext?: string | undefined;
|
|
2738
2833
|
}, {
|
|
2739
2834
|
actionId: string | null;
|
|
2740
2835
|
findingStatus?: FindingStatus | null | undefined;
|
|
2741
2836
|
responseMessage?: string | undefined;
|
|
2837
|
+
actionDescriptionContext?: string | undefined;
|
|
2742
2838
|
}>>;
|
|
2743
2839
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
2744
2840
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2745
2841
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2746
2842
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2843
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2747
2844
|
}, "strip", z.ZodTypeAny, {
|
|
2748
2845
|
actionId: string | null;
|
|
2749
2846
|
findingStatus?: FindingStatus | null | undefined;
|
|
2750
2847
|
responseMessage?: string | undefined;
|
|
2848
|
+
actionDescriptionContext?: string | undefined;
|
|
2751
2849
|
}, {
|
|
2752
2850
|
actionId: string | null;
|
|
2753
2851
|
findingStatus?: FindingStatus | null | undefined;
|
|
2754
2852
|
responseMessage?: string | undefined;
|
|
2853
|
+
actionDescriptionContext?: string | undefined;
|
|
2755
2854
|
}>>;
|
|
2756
2855
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
2757
2856
|
actionId: z.ZodNullable<z.ZodString>;
|
|
2758
2857
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
2759
2858
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
2859
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
2760
2860
|
}, "strip", z.ZodTypeAny, {
|
|
2761
2861
|
actionId: string | null;
|
|
2762
2862
|
findingStatus?: FindingStatus | null | undefined;
|
|
2763
2863
|
responseMessage?: string | undefined;
|
|
2864
|
+
actionDescriptionContext?: string | undefined;
|
|
2764
2865
|
}, {
|
|
2765
2866
|
actionId: string | null;
|
|
2766
2867
|
findingStatus?: FindingStatus | null | undefined;
|
|
2767
2868
|
responseMessage?: string | undefined;
|
|
2869
|
+
actionDescriptionContext?: string | undefined;
|
|
2768
2870
|
}>>;
|
|
2769
2871
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
2770
2872
|
id: z.ZodString;
|
|
@@ -2828,6 +2930,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2828
2930
|
actionId: string | null;
|
|
2829
2931
|
findingStatus?: FindingStatus | null | undefined;
|
|
2830
2932
|
responseMessage?: string | undefined;
|
|
2933
|
+
actionDescriptionContext?: string | undefined;
|
|
2831
2934
|
} | undefined;
|
|
2832
2935
|
simpleTriageYesActId?: string | undefined;
|
|
2833
2936
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2836,16 +2939,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2836
2939
|
actionId: string | null;
|
|
2837
2940
|
findingStatus?: FindingStatus | null | undefined;
|
|
2838
2941
|
responseMessage?: string | undefined;
|
|
2942
|
+
actionDescriptionContext?: string | undefined;
|
|
2839
2943
|
} | undefined;
|
|
2840
2944
|
scheduleResolutionAction?: {
|
|
2841
2945
|
actionId: string | null;
|
|
2842
2946
|
findingStatus?: FindingStatus | null | undefined;
|
|
2843
2947
|
responseMessage?: string | undefined;
|
|
2948
|
+
actionDescriptionContext?: string | undefined;
|
|
2844
2949
|
} | undefined;
|
|
2845
2950
|
launchAction?: {
|
|
2846
2951
|
actionId: string | null;
|
|
2847
2952
|
findingStatus?: FindingStatus | null | undefined;
|
|
2848
2953
|
responseMessage?: string | undefined;
|
|
2954
|
+
actionDescriptionContext?: string | undefined;
|
|
2849
2955
|
} | undefined;
|
|
2850
2956
|
launchActionsV2?: {
|
|
2851
2957
|
id: string;
|
|
@@ -2875,6 +2981,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2875
2981
|
actionId: string | null;
|
|
2876
2982
|
findingStatus?: FindingStatus | null | undefined;
|
|
2877
2983
|
responseMessage?: string | undefined;
|
|
2984
|
+
actionDescriptionContext?: string | undefined;
|
|
2878
2985
|
} | undefined;
|
|
2879
2986
|
simpleTriageYesActId?: string | undefined;
|
|
2880
2987
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -2883,16 +2990,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
2883
2990
|
actionId: string | null;
|
|
2884
2991
|
findingStatus?: FindingStatus | null | undefined;
|
|
2885
2992
|
responseMessage?: string | undefined;
|
|
2993
|
+
actionDescriptionContext?: string | undefined;
|
|
2886
2994
|
} | undefined;
|
|
2887
2995
|
scheduleResolutionAction?: {
|
|
2888
2996
|
actionId: string | null;
|
|
2889
2997
|
findingStatus?: FindingStatus | null | undefined;
|
|
2890
2998
|
responseMessage?: string | undefined;
|
|
2999
|
+
actionDescriptionContext?: string | undefined;
|
|
2891
3000
|
} | undefined;
|
|
2892
3001
|
launchAction?: {
|
|
2893
3002
|
actionId: string | null;
|
|
2894
3003
|
findingStatus?: FindingStatus | null | undefined;
|
|
2895
3004
|
responseMessage?: string | undefined;
|
|
3005
|
+
actionDescriptionContext?: string | undefined;
|
|
2896
3006
|
} | undefined;
|
|
2897
3007
|
launchActionsV2?: {
|
|
2898
3008
|
id: string;
|
|
@@ -3259,6 +3369,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3259
3369
|
actionId: string | null;
|
|
3260
3370
|
findingStatus?: FindingStatus | null | undefined;
|
|
3261
3371
|
responseMessage?: string | undefined;
|
|
3372
|
+
actionDescriptionContext?: string | undefined;
|
|
3262
3373
|
} | undefined;
|
|
3263
3374
|
simpleTriageYesActId?: string | undefined;
|
|
3264
3375
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3267,16 +3378,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3267
3378
|
actionId: string | null;
|
|
3268
3379
|
findingStatus?: FindingStatus | null | undefined;
|
|
3269
3380
|
responseMessage?: string | undefined;
|
|
3381
|
+
actionDescriptionContext?: string | undefined;
|
|
3270
3382
|
} | undefined;
|
|
3271
3383
|
scheduleResolutionAction?: {
|
|
3272
3384
|
actionId: string | null;
|
|
3273
3385
|
findingStatus?: FindingStatus | null | undefined;
|
|
3274
3386
|
responseMessage?: string | undefined;
|
|
3387
|
+
actionDescriptionContext?: string | undefined;
|
|
3275
3388
|
} | undefined;
|
|
3276
3389
|
launchAction?: {
|
|
3277
3390
|
actionId: string | null;
|
|
3278
3391
|
findingStatus?: FindingStatus | null | undefined;
|
|
3279
3392
|
responseMessage?: string | undefined;
|
|
3393
|
+
actionDescriptionContext?: string | undefined;
|
|
3280
3394
|
} | undefined;
|
|
3281
3395
|
launchActionsV2?: {
|
|
3282
3396
|
id: string;
|
|
@@ -3330,11 +3444,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3330
3444
|
actionId: string | null;
|
|
3331
3445
|
findingStatus?: FindingStatus | null | undefined;
|
|
3332
3446
|
responseMessage?: string | undefined;
|
|
3447
|
+
actionDescriptionContext?: string | undefined;
|
|
3333
3448
|
};
|
|
3334
3449
|
noAction: {
|
|
3335
3450
|
actionId: string | null;
|
|
3336
3451
|
findingStatus?: FindingStatus | null | undefined;
|
|
3337
3452
|
responseMessage?: string | undefined;
|
|
3453
|
+
actionDescriptionContext?: string | undefined;
|
|
3338
3454
|
};
|
|
3339
3455
|
} | undefined;
|
|
3340
3456
|
reminderInterval?: {
|
|
@@ -3447,6 +3563,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3447
3563
|
actionId: string | null;
|
|
3448
3564
|
findingStatus?: FindingStatus | null | undefined;
|
|
3449
3565
|
responseMessage?: string | undefined;
|
|
3566
|
+
actionDescriptionContext?: string | undefined;
|
|
3450
3567
|
} | undefined;
|
|
3451
3568
|
simpleTriageYesActId?: string | undefined;
|
|
3452
3569
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3455,16 +3572,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3455
3572
|
actionId: string | null;
|
|
3456
3573
|
findingStatus?: FindingStatus | null | undefined;
|
|
3457
3574
|
responseMessage?: string | undefined;
|
|
3575
|
+
actionDescriptionContext?: string | undefined;
|
|
3458
3576
|
} | undefined;
|
|
3459
3577
|
scheduleResolutionAction?: {
|
|
3460
3578
|
actionId: string | null;
|
|
3461
3579
|
findingStatus?: FindingStatus | null | undefined;
|
|
3462
3580
|
responseMessage?: string | undefined;
|
|
3581
|
+
actionDescriptionContext?: string | undefined;
|
|
3463
3582
|
} | undefined;
|
|
3464
3583
|
launchAction?: {
|
|
3465
3584
|
actionId: string | null;
|
|
3466
3585
|
findingStatus?: FindingStatus | null | undefined;
|
|
3467
3586
|
responseMessage?: string | undefined;
|
|
3587
|
+
actionDescriptionContext?: string | undefined;
|
|
3468
3588
|
} | undefined;
|
|
3469
3589
|
launchActionsV2?: {
|
|
3470
3590
|
id: string;
|
|
@@ -3519,11 +3639,13 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
|
|
|
3519
3639
|
actionId: string | null;
|
|
3520
3640
|
findingStatus?: FindingStatus | null | undefined;
|
|
3521
3641
|
responseMessage?: string | undefined;
|
|
3642
|
+
actionDescriptionContext?: string | undefined;
|
|
3522
3643
|
};
|
|
3523
3644
|
noAction: {
|
|
3524
3645
|
actionId: string | null;
|
|
3525
3646
|
findingStatus?: FindingStatus | null | undefined;
|
|
3526
3647
|
responseMessage?: string | undefined;
|
|
3648
|
+
actionDescriptionContext?: string | undefined;
|
|
3527
3649
|
};
|
|
3528
3650
|
} | undefined;
|
|
3529
3651
|
reminderInterval?: {
|
|
@@ -3630,14 +3752,17 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3630
3752
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3631
3753
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3632
3754
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3755
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3633
3756
|
}, "strip", z.ZodTypeAny, {
|
|
3634
3757
|
actionId: string | null;
|
|
3635
3758
|
findingStatus?: FindingStatus | null | undefined;
|
|
3636
3759
|
responseMessage?: string | undefined;
|
|
3760
|
+
actionDescriptionContext?: string | undefined;
|
|
3637
3761
|
}, {
|
|
3638
3762
|
actionId: string | null;
|
|
3639
3763
|
findingStatus?: FindingStatus | null | undefined;
|
|
3640
3764
|
responseMessage?: string | undefined;
|
|
3765
|
+
actionDescriptionContext?: string | undefined;
|
|
3641
3766
|
}>>;
|
|
3642
3767
|
/**
|
|
3643
3768
|
* @deprecated Use triage instead
|
|
@@ -3655,40 +3780,49 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3655
3780
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3656
3781
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3657
3782
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3783
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3658
3784
|
}, "strip", z.ZodTypeAny, {
|
|
3659
3785
|
actionId: string | null;
|
|
3660
3786
|
findingStatus?: FindingStatus | null | undefined;
|
|
3661
3787
|
responseMessage?: string | undefined;
|
|
3788
|
+
actionDescriptionContext?: string | undefined;
|
|
3662
3789
|
}, {
|
|
3663
3790
|
actionId: string | null;
|
|
3664
3791
|
findingStatus?: FindingStatus | null | undefined;
|
|
3665
3792
|
responseMessage?: string | undefined;
|
|
3793
|
+
actionDescriptionContext?: string | undefined;
|
|
3666
3794
|
}>>;
|
|
3667
3795
|
scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
|
|
3668
3796
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3669
3797
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3670
3798
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3799
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3671
3800
|
}, "strip", z.ZodTypeAny, {
|
|
3672
3801
|
actionId: string | null;
|
|
3673
3802
|
findingStatus?: FindingStatus | null | undefined;
|
|
3674
3803
|
responseMessage?: string | undefined;
|
|
3804
|
+
actionDescriptionContext?: string | undefined;
|
|
3675
3805
|
}, {
|
|
3676
3806
|
actionId: string | null;
|
|
3677
3807
|
findingStatus?: FindingStatus | null | undefined;
|
|
3678
3808
|
responseMessage?: string | undefined;
|
|
3809
|
+
actionDescriptionContext?: string | undefined;
|
|
3679
3810
|
}>>;
|
|
3680
3811
|
launchAction: z.ZodOptional<z.ZodObject<{
|
|
3681
3812
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3682
3813
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3683
3814
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
3815
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3684
3816
|
}, "strip", z.ZodTypeAny, {
|
|
3685
3817
|
actionId: string | null;
|
|
3686
3818
|
findingStatus?: FindingStatus | null | undefined;
|
|
3687
3819
|
responseMessage?: string | undefined;
|
|
3820
|
+
actionDescriptionContext?: string | undefined;
|
|
3688
3821
|
}, {
|
|
3689
3822
|
actionId: string | null;
|
|
3690
3823
|
findingStatus?: FindingStatus | null | undefined;
|
|
3691
3824
|
responseMessage?: string | undefined;
|
|
3825
|
+
actionDescriptionContext?: string | undefined;
|
|
3692
3826
|
}>>;
|
|
3693
3827
|
launchActionsV2: z.ZodOptional<z.ZodObject<{
|
|
3694
3828
|
id: z.ZodString;
|
|
@@ -3752,6 +3886,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3752
3886
|
actionId: string | null;
|
|
3753
3887
|
findingStatus?: FindingStatus | null | undefined;
|
|
3754
3888
|
responseMessage?: string | undefined;
|
|
3889
|
+
actionDescriptionContext?: string | undefined;
|
|
3755
3890
|
} | undefined;
|
|
3756
3891
|
simpleTriageYesActId?: string | undefined;
|
|
3757
3892
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3760,16 +3895,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3760
3895
|
actionId: string | null;
|
|
3761
3896
|
findingStatus?: FindingStatus | null | undefined;
|
|
3762
3897
|
responseMessage?: string | undefined;
|
|
3898
|
+
actionDescriptionContext?: string | undefined;
|
|
3763
3899
|
} | undefined;
|
|
3764
3900
|
scheduleResolutionAction?: {
|
|
3765
3901
|
actionId: string | null;
|
|
3766
3902
|
findingStatus?: FindingStatus | null | undefined;
|
|
3767
3903
|
responseMessage?: string | undefined;
|
|
3904
|
+
actionDescriptionContext?: string | undefined;
|
|
3768
3905
|
} | undefined;
|
|
3769
3906
|
launchAction?: {
|
|
3770
3907
|
actionId: string | null;
|
|
3771
3908
|
findingStatus?: FindingStatus | null | undefined;
|
|
3772
3909
|
responseMessage?: string | undefined;
|
|
3910
|
+
actionDescriptionContext?: string | undefined;
|
|
3773
3911
|
} | undefined;
|
|
3774
3912
|
launchActionsV2?: {
|
|
3775
3913
|
id: string;
|
|
@@ -3799,6 +3937,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3799
3937
|
actionId: string | null;
|
|
3800
3938
|
findingStatus?: FindingStatus | null | undefined;
|
|
3801
3939
|
responseMessage?: string | undefined;
|
|
3940
|
+
actionDescriptionContext?: string | undefined;
|
|
3802
3941
|
} | undefined;
|
|
3803
3942
|
simpleTriageYesActId?: string | undefined;
|
|
3804
3943
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -3807,16 +3946,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3807
3946
|
actionId: string | null;
|
|
3808
3947
|
findingStatus?: FindingStatus | null | undefined;
|
|
3809
3948
|
responseMessage?: string | undefined;
|
|
3949
|
+
actionDescriptionContext?: string | undefined;
|
|
3810
3950
|
} | undefined;
|
|
3811
3951
|
scheduleResolutionAction?: {
|
|
3812
3952
|
actionId: string | null;
|
|
3813
3953
|
findingStatus?: FindingStatus | null | undefined;
|
|
3814
3954
|
responseMessage?: string | undefined;
|
|
3955
|
+
actionDescriptionContext?: string | undefined;
|
|
3815
3956
|
} | undefined;
|
|
3816
3957
|
launchAction?: {
|
|
3817
3958
|
actionId: string | null;
|
|
3818
3959
|
findingStatus?: FindingStatus | null | undefined;
|
|
3819
3960
|
responseMessage?: string | undefined;
|
|
3961
|
+
actionDescriptionContext?: string | undefined;
|
|
3820
3962
|
} | undefined;
|
|
3821
3963
|
launchActionsV2?: {
|
|
3822
3964
|
id: string;
|
|
@@ -3922,27 +4064,33 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3922
4064
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3923
4065
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3924
4066
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
4067
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3925
4068
|
}, "strip", z.ZodTypeAny, {
|
|
3926
4069
|
actionId: string | null;
|
|
3927
4070
|
findingStatus?: FindingStatus | null | undefined;
|
|
3928
4071
|
responseMessage?: string | undefined;
|
|
4072
|
+
actionDescriptionContext?: string | undefined;
|
|
3929
4073
|
}, {
|
|
3930
4074
|
actionId: string | null;
|
|
3931
4075
|
findingStatus?: FindingStatus | null | undefined;
|
|
3932
4076
|
responseMessage?: string | undefined;
|
|
4077
|
+
actionDescriptionContext?: string | undefined;
|
|
3933
4078
|
}>;
|
|
3934
4079
|
noAction: z.ZodObject<{
|
|
3935
4080
|
actionId: z.ZodNullable<z.ZodString>;
|
|
3936
4081
|
findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
|
|
3937
4082
|
responseMessage: z.ZodOptional<z.ZodString>;
|
|
4083
|
+
actionDescriptionContext: z.ZodOptional<z.ZodString>;
|
|
3938
4084
|
}, "strip", z.ZodTypeAny, {
|
|
3939
4085
|
actionId: string | null;
|
|
3940
4086
|
findingStatus?: FindingStatus | null | undefined;
|
|
3941
4087
|
responseMessage?: string | undefined;
|
|
4088
|
+
actionDescriptionContext?: string | undefined;
|
|
3942
4089
|
}, {
|
|
3943
4090
|
actionId: string | null;
|
|
3944
4091
|
findingStatus?: FindingStatus | null | undefined;
|
|
3945
4092
|
responseMessage?: string | undefined;
|
|
4093
|
+
actionDescriptionContext?: string | undefined;
|
|
3946
4094
|
}>;
|
|
3947
4095
|
}, "strip", z.ZodTypeAny, {
|
|
3948
4096
|
message: string;
|
|
@@ -3950,11 +4098,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3950
4098
|
actionId: string | null;
|
|
3951
4099
|
findingStatus?: FindingStatus | null | undefined;
|
|
3952
4100
|
responseMessage?: string | undefined;
|
|
4101
|
+
actionDescriptionContext?: string | undefined;
|
|
3953
4102
|
};
|
|
3954
4103
|
noAction: {
|
|
3955
4104
|
actionId: string | null;
|
|
3956
4105
|
findingStatus?: FindingStatus | null | undefined;
|
|
3957
4106
|
responseMessage?: string | undefined;
|
|
4107
|
+
actionDescriptionContext?: string | undefined;
|
|
3958
4108
|
};
|
|
3959
4109
|
}, {
|
|
3960
4110
|
message: string;
|
|
@@ -3962,11 +4112,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
3962
4112
|
actionId: string | null;
|
|
3963
4113
|
findingStatus?: FindingStatus | null | undefined;
|
|
3964
4114
|
responseMessage?: string | undefined;
|
|
4115
|
+
actionDescriptionContext?: string | undefined;
|
|
3965
4116
|
};
|
|
3966
4117
|
noAction: {
|
|
3967
4118
|
actionId: string | null;
|
|
3968
4119
|
findingStatus?: FindingStatus | null | undefined;
|
|
3969
4120
|
responseMessage?: string | undefined;
|
|
4121
|
+
actionDescriptionContext?: string | undefined;
|
|
3970
4122
|
};
|
|
3971
4123
|
}>>>;
|
|
3972
4124
|
reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -4273,6 +4425,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4273
4425
|
actionId: string | null;
|
|
4274
4426
|
findingStatus?: FindingStatus | null | undefined;
|
|
4275
4427
|
responseMessage?: string | undefined;
|
|
4428
|
+
actionDescriptionContext?: string | undefined;
|
|
4276
4429
|
} | undefined;
|
|
4277
4430
|
simpleTriageYesActId?: string | undefined;
|
|
4278
4431
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -4281,16 +4434,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4281
4434
|
actionId: string | null;
|
|
4282
4435
|
findingStatus?: FindingStatus | null | undefined;
|
|
4283
4436
|
responseMessage?: string | undefined;
|
|
4437
|
+
actionDescriptionContext?: string | undefined;
|
|
4284
4438
|
} | undefined;
|
|
4285
4439
|
scheduleResolutionAction?: {
|
|
4286
4440
|
actionId: string | null;
|
|
4287
4441
|
findingStatus?: FindingStatus | null | undefined;
|
|
4288
4442
|
responseMessage?: string | undefined;
|
|
4443
|
+
actionDescriptionContext?: string | undefined;
|
|
4289
4444
|
} | undefined;
|
|
4290
4445
|
launchAction?: {
|
|
4291
4446
|
actionId: string | null;
|
|
4292
4447
|
findingStatus?: FindingStatus | null | undefined;
|
|
4293
4448
|
responseMessage?: string | undefined;
|
|
4449
|
+
actionDescriptionContext?: string | undefined;
|
|
4294
4450
|
} | undefined;
|
|
4295
4451
|
launchActionsV2?: {
|
|
4296
4452
|
id: string;
|
|
@@ -4346,11 +4502,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4346
4502
|
actionId: string | null;
|
|
4347
4503
|
findingStatus?: FindingStatus | null | undefined;
|
|
4348
4504
|
responseMessage?: string | undefined;
|
|
4505
|
+
actionDescriptionContext?: string | undefined;
|
|
4349
4506
|
};
|
|
4350
4507
|
noAction: {
|
|
4351
4508
|
actionId: string | null;
|
|
4352
4509
|
findingStatus?: FindingStatus | null | undefined;
|
|
4353
4510
|
responseMessage?: string | undefined;
|
|
4511
|
+
actionDescriptionContext?: string | undefined;
|
|
4354
4512
|
};
|
|
4355
4513
|
} | undefined;
|
|
4356
4514
|
reminderInterval?: {
|
|
@@ -4454,6 +4612,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4454
4612
|
actionId: string | null;
|
|
4455
4613
|
findingStatus?: FindingStatus | null | undefined;
|
|
4456
4614
|
responseMessage?: string | undefined;
|
|
4615
|
+
actionDescriptionContext?: string | undefined;
|
|
4457
4616
|
} | undefined;
|
|
4458
4617
|
simpleTriageYesActId?: string | undefined;
|
|
4459
4618
|
simpleTriageNoActId?: string | undefined;
|
|
@@ -4462,16 +4621,19 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4462
4621
|
actionId: string | null;
|
|
4463
4622
|
findingStatus?: FindingStatus | null | undefined;
|
|
4464
4623
|
responseMessage?: string | undefined;
|
|
4624
|
+
actionDescriptionContext?: string | undefined;
|
|
4465
4625
|
} | undefined;
|
|
4466
4626
|
scheduleResolutionAction?: {
|
|
4467
4627
|
actionId: string | null;
|
|
4468
4628
|
findingStatus?: FindingStatus | null | undefined;
|
|
4469
4629
|
responseMessage?: string | undefined;
|
|
4630
|
+
actionDescriptionContext?: string | undefined;
|
|
4470
4631
|
} | undefined;
|
|
4471
4632
|
launchAction?: {
|
|
4472
4633
|
actionId: string | null;
|
|
4473
4634
|
findingStatus?: FindingStatus | null | undefined;
|
|
4474
4635
|
responseMessage?: string | undefined;
|
|
4636
|
+
actionDescriptionContext?: string | undefined;
|
|
4475
4637
|
} | undefined;
|
|
4476
4638
|
launchActionsV2?: {
|
|
4477
4639
|
id: string;
|
|
@@ -4527,11 +4689,13 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
4527
4689
|
actionId: string | null;
|
|
4528
4690
|
findingStatus?: FindingStatus | null | undefined;
|
|
4529
4691
|
responseMessage?: string | undefined;
|
|
4692
|
+
actionDescriptionContext?: string | undefined;
|
|
4530
4693
|
};
|
|
4531
4694
|
noAction: {
|
|
4532
4695
|
actionId: string | null;
|
|
4533
4696
|
findingStatus?: FindingStatus | null | undefined;
|
|
4534
4697
|
responseMessage?: string | undefined;
|
|
4698
|
+
actionDescriptionContext?: string | undefined;
|
|
4535
4699
|
};
|
|
4536
4700
|
} | undefined;
|
|
4537
4701
|
reminderInterval?: {
|