@ampsec/platform-client 76.0.0 → 76.2.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.
@@ -849,12 +849,15 @@ export declare const _FlowActions: z.ZodObject<{
849
849
  expirationAction: z.ZodOptional<z.ZodObject<{
850
850
  actionId: z.ZodNullable<z.ZodString>;
851
851
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
852
+ responseMessage: z.ZodOptional<z.ZodString>;
852
853
  }, "strip", z.ZodTypeAny, {
853
854
  actionId: string | null;
854
855
  findingStatus?: FindingStatus | null | undefined;
856
+ responseMessage?: string | undefined;
855
857
  }, {
856
858
  actionId: string | null;
857
859
  findingStatus?: FindingStatus | null | undefined;
860
+ responseMessage?: string | undefined;
858
861
  }>>;
859
862
  /**
860
863
  * @deprecated Use triage instead
@@ -871,22 +874,28 @@ export declare const _FlowActions: z.ZodObject<{
871
874
  resolveNowAction: z.ZodOptional<z.ZodObject<{
872
875
  actionId: z.ZodNullable<z.ZodString>;
873
876
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
877
+ responseMessage: z.ZodOptional<z.ZodString>;
874
878
  }, "strip", z.ZodTypeAny, {
875
879
  actionId: string | null;
876
880
  findingStatus?: FindingStatus | null | undefined;
881
+ responseMessage?: string | undefined;
877
882
  }, {
878
883
  actionId: string | null;
879
884
  findingStatus?: FindingStatus | null | undefined;
885
+ responseMessage?: string | undefined;
880
886
  }>>;
881
887
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
882
888
  actionId: z.ZodNullable<z.ZodString>;
883
889
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
890
+ responseMessage: z.ZodOptional<z.ZodString>;
884
891
  }, "strip", z.ZodTypeAny, {
885
892
  actionId: string | null;
886
893
  findingStatus?: FindingStatus | null | undefined;
894
+ responseMessage?: string | undefined;
887
895
  }, {
888
896
  actionId: string | null;
889
897
  findingStatus?: FindingStatus | null | undefined;
898
+ responseMessage?: string | undefined;
890
899
  }>>;
891
900
  }, "strip", z.ZodTypeAny, {
892
901
  includeInstructions?: boolean | undefined;
@@ -895,6 +904,7 @@ export declare const _FlowActions: z.ZodObject<{
895
904
  expirationAction?: {
896
905
  actionId: string | null;
897
906
  findingStatus?: FindingStatus | null | undefined;
907
+ responseMessage?: string | undefined;
898
908
  } | undefined;
899
909
  simpleTriageYesActId?: string | undefined;
900
910
  simpleTriageNoActId?: string | undefined;
@@ -902,10 +912,12 @@ export declare const _FlowActions: z.ZodObject<{
902
912
  resolveNowAction?: {
903
913
  actionId: string | null;
904
914
  findingStatus?: FindingStatus | null | undefined;
915
+ responseMessage?: string | undefined;
905
916
  } | undefined;
906
917
  scheduleResolutionAction?: {
907
918
  actionId: string | null;
908
919
  findingStatus?: FindingStatus | null | undefined;
920
+ responseMessage?: string | undefined;
909
921
  } | undefined;
910
922
  }, {
911
923
  includeInstructions?: boolean | undefined;
@@ -914,6 +926,7 @@ export declare const _FlowActions: z.ZodObject<{
914
926
  expirationAction?: {
915
927
  actionId: string | null;
916
928
  findingStatus?: FindingStatus | null | undefined;
929
+ responseMessage?: string | undefined;
917
930
  } | undefined;
918
931
  simpleTriageYesActId?: string | undefined;
919
932
  simpleTriageNoActId?: string | undefined;
@@ -921,10 +934,12 @@ export declare const _FlowActions: z.ZodObject<{
921
934
  resolveNowAction?: {
922
935
  actionId: string | null;
923
936
  findingStatus?: FindingStatus | null | undefined;
937
+ responseMessage?: string | undefined;
924
938
  } | undefined;
925
939
  scheduleResolutionAction?: {
926
940
  actionId: string | null;
927
941
  findingStatus?: FindingStatus | null | undefined;
942
+ responseMessage?: string | undefined;
928
943
  } | undefined;
929
944
  }>;
930
945
  export type FlowActions = z.infer<typeof _FlowActions>;
@@ -1093,42 +1108,52 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1093
1108
  yesAction: z.ZodObject<{
1094
1109
  actionId: z.ZodNullable<z.ZodString>;
1095
1110
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1111
+ responseMessage: z.ZodOptional<z.ZodString>;
1096
1112
  }, "strip", z.ZodTypeAny, {
1097
1113
  actionId: string | null;
1098
1114
  findingStatus?: FindingStatus | null | undefined;
1115
+ responseMessage?: string | undefined;
1099
1116
  }, {
1100
1117
  actionId: string | null;
1101
1118
  findingStatus?: FindingStatus | null | undefined;
1119
+ responseMessage?: string | undefined;
1102
1120
  }>;
1103
1121
  noAction: z.ZodObject<{
1104
1122
  actionId: z.ZodNullable<z.ZodString>;
1105
1123
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1124
+ responseMessage: z.ZodOptional<z.ZodString>;
1106
1125
  }, "strip", z.ZodTypeAny, {
1107
1126
  actionId: string | null;
1108
1127
  findingStatus?: FindingStatus | null | undefined;
1128
+ responseMessage?: string | undefined;
1109
1129
  }, {
1110
1130
  actionId: string | null;
1111
1131
  findingStatus?: FindingStatus | null | undefined;
1132
+ responseMessage?: string | undefined;
1112
1133
  }>;
1113
1134
  }, "strip", z.ZodTypeAny, {
1114
1135
  message: string;
1115
1136
  yesAction: {
1116
1137
  actionId: string | null;
1117
1138
  findingStatus?: FindingStatus | null | undefined;
1139
+ responseMessage?: string | undefined;
1118
1140
  };
1119
1141
  noAction: {
1120
1142
  actionId: string | null;
1121
1143
  findingStatus?: FindingStatus | null | undefined;
1144
+ responseMessage?: string | undefined;
1122
1145
  };
1123
1146
  }, {
1124
1147
  message: string;
1125
1148
  yesAction: {
1126
1149
  actionId: string | null;
1127
1150
  findingStatus?: FindingStatus | null | undefined;
1151
+ responseMessage?: string | undefined;
1128
1152
  };
1129
1153
  noAction: {
1130
1154
  actionId: string | null;
1131
1155
  findingStatus?: FindingStatus | null | undefined;
1156
+ responseMessage?: string | undefined;
1132
1157
  };
1133
1158
  }>>;
1134
1159
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -1154,12 +1179,15 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1154
1179
  expirationAction: z.ZodOptional<z.ZodObject<{
1155
1180
  actionId: z.ZodNullable<z.ZodString>;
1156
1181
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1182
+ responseMessage: z.ZodOptional<z.ZodString>;
1157
1183
  }, "strip", z.ZodTypeAny, {
1158
1184
  actionId: string | null;
1159
1185
  findingStatus?: FindingStatus | null | undefined;
1186
+ responseMessage?: string | undefined;
1160
1187
  }, {
1161
1188
  actionId: string | null;
1162
1189
  findingStatus?: FindingStatus | null | undefined;
1190
+ responseMessage?: string | undefined;
1163
1191
  }>>;
1164
1192
  /**
1165
1193
  * @deprecated Use triage instead
@@ -1176,22 +1204,28 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1176
1204
  resolveNowAction: z.ZodOptional<z.ZodObject<{
1177
1205
  actionId: z.ZodNullable<z.ZodString>;
1178
1206
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1207
+ responseMessage: z.ZodOptional<z.ZodString>;
1179
1208
  }, "strip", z.ZodTypeAny, {
1180
1209
  actionId: string | null;
1181
1210
  findingStatus?: FindingStatus | null | undefined;
1211
+ responseMessage?: string | undefined;
1182
1212
  }, {
1183
1213
  actionId: string | null;
1184
1214
  findingStatus?: FindingStatus | null | undefined;
1215
+ responseMessage?: string | undefined;
1185
1216
  }>>;
1186
1217
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
1187
1218
  actionId: z.ZodNullable<z.ZodString>;
1188
1219
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1220
+ responseMessage: z.ZodOptional<z.ZodString>;
1189
1221
  }, "strip", z.ZodTypeAny, {
1190
1222
  actionId: string | null;
1191
1223
  findingStatus?: FindingStatus | null | undefined;
1224
+ responseMessage?: string | undefined;
1192
1225
  }, {
1193
1226
  actionId: string | null;
1194
1227
  findingStatus?: FindingStatus | null | undefined;
1228
+ responseMessage?: string | undefined;
1195
1229
  }>>;
1196
1230
  }, "strip", z.ZodTypeAny, {
1197
1231
  includeInstructions?: boolean | undefined;
@@ -1200,6 +1234,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1200
1234
  expirationAction?: {
1201
1235
  actionId: string | null;
1202
1236
  findingStatus?: FindingStatus | null | undefined;
1237
+ responseMessage?: string | undefined;
1203
1238
  } | undefined;
1204
1239
  simpleTriageYesActId?: string | undefined;
1205
1240
  simpleTriageNoActId?: string | undefined;
@@ -1207,10 +1242,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1207
1242
  resolveNowAction?: {
1208
1243
  actionId: string | null;
1209
1244
  findingStatus?: FindingStatus | null | undefined;
1245
+ responseMessage?: string | undefined;
1210
1246
  } | undefined;
1211
1247
  scheduleResolutionAction?: {
1212
1248
  actionId: string | null;
1213
1249
  findingStatus?: FindingStatus | null | undefined;
1250
+ responseMessage?: string | undefined;
1214
1251
  } | undefined;
1215
1252
  }, {
1216
1253
  includeInstructions?: boolean | undefined;
@@ -1219,6 +1256,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1219
1256
  expirationAction?: {
1220
1257
  actionId: string | null;
1221
1258
  findingStatus?: FindingStatus | null | undefined;
1259
+ responseMessage?: string | undefined;
1222
1260
  } | undefined;
1223
1261
  simpleTriageYesActId?: string | undefined;
1224
1262
  simpleTriageNoActId?: string | undefined;
@@ -1226,10 +1264,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1226
1264
  resolveNowAction?: {
1227
1265
  actionId: string | null;
1228
1266
  findingStatus?: FindingStatus | null | undefined;
1267
+ responseMessage?: string | undefined;
1229
1268
  } | undefined;
1230
1269
  scheduleResolutionAction?: {
1231
1270
  actionId: string | null;
1232
1271
  findingStatus?: FindingStatus | null | undefined;
1272
+ responseMessage?: string | undefined;
1233
1273
  } | undefined;
1234
1274
  }>>;
1235
1275
  escalation: z.ZodOptional<z.ZodObject<{
@@ -1373,10 +1413,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1373
1413
  yesAction: {
1374
1414
  actionId: string | null;
1375
1415
  findingStatus?: FindingStatus | null | undefined;
1416
+ responseMessage?: string | undefined;
1376
1417
  };
1377
1418
  noAction: {
1378
1419
  actionId: string | null;
1379
1420
  findingStatus?: FindingStatus | null | undefined;
1421
+ responseMessage?: string | undefined;
1380
1422
  };
1381
1423
  } | undefined;
1382
1424
  reminderInterval?: {
@@ -1391,6 +1433,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1391
1433
  expirationAction?: {
1392
1434
  actionId: string | null;
1393
1435
  findingStatus?: FindingStatus | null | undefined;
1436
+ responseMessage?: string | undefined;
1394
1437
  } | undefined;
1395
1438
  simpleTriageYesActId?: string | undefined;
1396
1439
  simpleTriageNoActId?: string | undefined;
@@ -1398,10 +1441,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1398
1441
  resolveNowAction?: {
1399
1442
  actionId: string | null;
1400
1443
  findingStatus?: FindingStatus | null | undefined;
1444
+ responseMessage?: string | undefined;
1401
1445
  } | undefined;
1402
1446
  scheduleResolutionAction?: {
1403
1447
  actionId: string | null;
1404
1448
  findingStatus?: FindingStatus | null | undefined;
1449
+ responseMessage?: string | undefined;
1405
1450
  } | undefined;
1406
1451
  } | undefined;
1407
1452
  escalation?: {
@@ -1480,10 +1525,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1480
1525
  yesAction: {
1481
1526
  actionId: string | null;
1482
1527
  findingStatus?: FindingStatus | null | undefined;
1528
+ responseMessage?: string | undefined;
1483
1529
  };
1484
1530
  noAction: {
1485
1531
  actionId: string | null;
1486
1532
  findingStatus?: FindingStatus | null | undefined;
1533
+ responseMessage?: string | undefined;
1487
1534
  };
1488
1535
  } | undefined;
1489
1536
  reminderInterval?: {
@@ -1498,6 +1545,7 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1498
1545
  expirationAction?: {
1499
1546
  actionId: string | null;
1500
1547
  findingStatus?: FindingStatus | null | undefined;
1548
+ responseMessage?: string | undefined;
1501
1549
  } | undefined;
1502
1550
  simpleTriageYesActId?: string | undefined;
1503
1551
  simpleTriageNoActId?: string | undefined;
@@ -1505,10 +1553,12 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1505
1553
  resolveNowAction?: {
1506
1554
  actionId: string | null;
1507
1555
  findingStatus?: FindingStatus | null | undefined;
1556
+ responseMessage?: string | undefined;
1508
1557
  } | undefined;
1509
1558
  scheduleResolutionAction?: {
1510
1559
  actionId: string | null;
1511
1560
  findingStatus?: FindingStatus | null | undefined;
1561
+ responseMessage?: string | undefined;
1512
1562
  } | undefined;
1513
1563
  } | undefined;
1514
1564
  escalation?: {
@@ -1660,42 +1710,52 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1660
1710
  yesAction: z.ZodObject<{
1661
1711
  actionId: z.ZodNullable<z.ZodString>;
1662
1712
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1713
+ responseMessage: z.ZodOptional<z.ZodString>;
1663
1714
  }, "strip", z.ZodTypeAny, {
1664
1715
  actionId: string | null;
1665
1716
  findingStatus?: FindingStatus | null | undefined;
1717
+ responseMessage?: string | undefined;
1666
1718
  }, {
1667
1719
  actionId: string | null;
1668
1720
  findingStatus?: FindingStatus | null | undefined;
1721
+ responseMessage?: string | undefined;
1669
1722
  }>;
1670
1723
  noAction: z.ZodObject<{
1671
1724
  actionId: z.ZodNullable<z.ZodString>;
1672
1725
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1726
+ responseMessage: z.ZodOptional<z.ZodString>;
1673
1727
  }, "strip", z.ZodTypeAny, {
1674
1728
  actionId: string | null;
1675
1729
  findingStatus?: FindingStatus | null | undefined;
1730
+ responseMessage?: string | undefined;
1676
1731
  }, {
1677
1732
  actionId: string | null;
1678
1733
  findingStatus?: FindingStatus | null | undefined;
1734
+ responseMessage?: string | undefined;
1679
1735
  }>;
1680
1736
  }, "strip", z.ZodTypeAny, {
1681
1737
  message: string;
1682
1738
  yesAction: {
1683
1739
  actionId: string | null;
1684
1740
  findingStatus?: FindingStatus | null | undefined;
1741
+ responseMessage?: string | undefined;
1685
1742
  };
1686
1743
  noAction: {
1687
1744
  actionId: string | null;
1688
1745
  findingStatus?: FindingStatus | null | undefined;
1746
+ responseMessage?: string | undefined;
1689
1747
  };
1690
1748
  }, {
1691
1749
  message: string;
1692
1750
  yesAction: {
1693
1751
  actionId: string | null;
1694
1752
  findingStatus?: FindingStatus | null | undefined;
1753
+ responseMessage?: string | undefined;
1695
1754
  };
1696
1755
  noAction: {
1697
1756
  actionId: string | null;
1698
1757
  findingStatus?: FindingStatus | null | undefined;
1758
+ responseMessage?: string | undefined;
1699
1759
  };
1700
1760
  }>>;
1701
1761
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -1721,12 +1781,15 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1721
1781
  expirationAction: z.ZodOptional<z.ZodObject<{
1722
1782
  actionId: z.ZodNullable<z.ZodString>;
1723
1783
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1784
+ responseMessage: z.ZodOptional<z.ZodString>;
1724
1785
  }, "strip", z.ZodTypeAny, {
1725
1786
  actionId: string | null;
1726
1787
  findingStatus?: FindingStatus | null | undefined;
1788
+ responseMessage?: string | undefined;
1727
1789
  }, {
1728
1790
  actionId: string | null;
1729
1791
  findingStatus?: FindingStatus | null | undefined;
1792
+ responseMessage?: string | undefined;
1730
1793
  }>>;
1731
1794
  /**
1732
1795
  * @deprecated Use triage instead
@@ -1743,22 +1806,28 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1743
1806
  resolveNowAction: z.ZodOptional<z.ZodObject<{
1744
1807
  actionId: z.ZodNullable<z.ZodString>;
1745
1808
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1809
+ responseMessage: z.ZodOptional<z.ZodString>;
1746
1810
  }, "strip", z.ZodTypeAny, {
1747
1811
  actionId: string | null;
1748
1812
  findingStatus?: FindingStatus | null | undefined;
1813
+ responseMessage?: string | undefined;
1749
1814
  }, {
1750
1815
  actionId: string | null;
1751
1816
  findingStatus?: FindingStatus | null | undefined;
1817
+ responseMessage?: string | undefined;
1752
1818
  }>>;
1753
1819
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
1754
1820
  actionId: z.ZodNullable<z.ZodString>;
1755
1821
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1822
+ responseMessage: z.ZodOptional<z.ZodString>;
1756
1823
  }, "strip", z.ZodTypeAny, {
1757
1824
  actionId: string | null;
1758
1825
  findingStatus?: FindingStatus | null | undefined;
1826
+ responseMessage?: string | undefined;
1759
1827
  }, {
1760
1828
  actionId: string | null;
1761
1829
  findingStatus?: FindingStatus | null | undefined;
1830
+ responseMessage?: string | undefined;
1762
1831
  }>>;
1763
1832
  }, "strip", z.ZodTypeAny, {
1764
1833
  includeInstructions?: boolean | undefined;
@@ -1767,6 +1836,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1767
1836
  expirationAction?: {
1768
1837
  actionId: string | null;
1769
1838
  findingStatus?: FindingStatus | null | undefined;
1839
+ responseMessage?: string | undefined;
1770
1840
  } | undefined;
1771
1841
  simpleTriageYesActId?: string | undefined;
1772
1842
  simpleTriageNoActId?: string | undefined;
@@ -1774,10 +1844,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1774
1844
  resolveNowAction?: {
1775
1845
  actionId: string | null;
1776
1846
  findingStatus?: FindingStatus | null | undefined;
1847
+ responseMessage?: string | undefined;
1777
1848
  } | undefined;
1778
1849
  scheduleResolutionAction?: {
1779
1850
  actionId: string | null;
1780
1851
  findingStatus?: FindingStatus | null | undefined;
1852
+ responseMessage?: string | undefined;
1781
1853
  } | undefined;
1782
1854
  }, {
1783
1855
  includeInstructions?: boolean | undefined;
@@ -1786,6 +1858,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1786
1858
  expirationAction?: {
1787
1859
  actionId: string | null;
1788
1860
  findingStatus?: FindingStatus | null | undefined;
1861
+ responseMessage?: string | undefined;
1789
1862
  } | undefined;
1790
1863
  simpleTriageYesActId?: string | undefined;
1791
1864
  simpleTriageNoActId?: string | undefined;
@@ -1793,10 +1866,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1793
1866
  resolveNowAction?: {
1794
1867
  actionId: string | null;
1795
1868
  findingStatus?: FindingStatus | null | undefined;
1869
+ responseMessage?: string | undefined;
1796
1870
  } | undefined;
1797
1871
  scheduleResolutionAction?: {
1798
1872
  actionId: string | null;
1799
1873
  findingStatus?: FindingStatus | null | undefined;
1874
+ responseMessage?: string | undefined;
1800
1875
  } | undefined;
1801
1876
  }>>;
1802
1877
  escalation: z.ZodOptional<z.ZodObject<{
@@ -1945,10 +2020,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1945
2020
  yesAction: {
1946
2021
  actionId: string | null;
1947
2022
  findingStatus?: FindingStatus | null | undefined;
2023
+ responseMessage?: string | undefined;
1948
2024
  };
1949
2025
  noAction: {
1950
2026
  actionId: string | null;
1951
2027
  findingStatus?: FindingStatus | null | undefined;
2028
+ responseMessage?: string | undefined;
1952
2029
  };
1953
2030
  } | undefined;
1954
2031
  reminderInterval?: {
@@ -1963,6 +2040,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1963
2040
  expirationAction?: {
1964
2041
  actionId: string | null;
1965
2042
  findingStatus?: FindingStatus | null | undefined;
2043
+ responseMessage?: string | undefined;
1966
2044
  } | undefined;
1967
2045
  simpleTriageYesActId?: string | undefined;
1968
2046
  simpleTriageNoActId?: string | undefined;
@@ -1970,10 +2048,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
1970
2048
  resolveNowAction?: {
1971
2049
  actionId: string | null;
1972
2050
  findingStatus?: FindingStatus | null | undefined;
2051
+ responseMessage?: string | undefined;
1973
2052
  } | undefined;
1974
2053
  scheduleResolutionAction?: {
1975
2054
  actionId: string | null;
1976
2055
  findingStatus?: FindingStatus | null | undefined;
2056
+ responseMessage?: string | undefined;
1977
2057
  } | undefined;
1978
2058
  } | undefined;
1979
2059
  escalation?: {
@@ -2044,10 +2124,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2044
2124
  yesAction: {
2045
2125
  actionId: string | null;
2046
2126
  findingStatus?: FindingStatus | null | undefined;
2127
+ responseMessage?: string | undefined;
2047
2128
  };
2048
2129
  noAction: {
2049
2130
  actionId: string | null;
2050
2131
  findingStatus?: FindingStatus | null | undefined;
2132
+ responseMessage?: string | undefined;
2051
2133
  };
2052
2134
  } | undefined;
2053
2135
  reminderInterval?: {
@@ -2062,6 +2144,7 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2062
2144
  expirationAction?: {
2063
2145
  actionId: string | null;
2064
2146
  findingStatus?: FindingStatus | null | undefined;
2147
+ responseMessage?: string | undefined;
2065
2148
  } | undefined;
2066
2149
  simpleTriageYesActId?: string | undefined;
2067
2150
  simpleTriageNoActId?: string | undefined;
@@ -2069,10 +2152,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2069
2152
  resolveNowAction?: {
2070
2153
  actionId: string | null;
2071
2154
  findingStatus?: FindingStatus | null | undefined;
2155
+ responseMessage?: string | undefined;
2072
2156
  } | undefined;
2073
2157
  scheduleResolutionAction?: {
2074
2158
  actionId: string | null;
2075
2159
  findingStatus?: FindingStatus | null | undefined;
2160
+ responseMessage?: string | undefined;
2076
2161
  } | undefined;
2077
2162
  } | undefined;
2078
2163
  escalation?: {
@@ -2138,42 +2223,52 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2138
2223
  yesAction: z.ZodObject<{
2139
2224
  actionId: z.ZodNullable<z.ZodString>;
2140
2225
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2226
+ responseMessage: z.ZodOptional<z.ZodString>;
2141
2227
  }, "strip", z.ZodTypeAny, {
2142
2228
  actionId: string | null;
2143
2229
  findingStatus?: FindingStatus | null | undefined;
2230
+ responseMessage?: string | undefined;
2144
2231
  }, {
2145
2232
  actionId: string | null;
2146
2233
  findingStatus?: FindingStatus | null | undefined;
2234
+ responseMessage?: string | undefined;
2147
2235
  }>;
2148
2236
  noAction: z.ZodObject<{
2149
2237
  actionId: z.ZodNullable<z.ZodString>;
2150
2238
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2239
+ responseMessage: z.ZodOptional<z.ZodString>;
2151
2240
  }, "strip", z.ZodTypeAny, {
2152
2241
  actionId: string | null;
2153
2242
  findingStatus?: FindingStatus | null | undefined;
2243
+ responseMessage?: string | undefined;
2154
2244
  }, {
2155
2245
  actionId: string | null;
2156
2246
  findingStatus?: FindingStatus | null | undefined;
2247
+ responseMessage?: string | undefined;
2157
2248
  }>;
2158
2249
  }, "strip", z.ZodTypeAny, {
2159
2250
  message: string;
2160
2251
  yesAction: {
2161
2252
  actionId: string | null;
2162
2253
  findingStatus?: FindingStatus | null | undefined;
2254
+ responseMessage?: string | undefined;
2163
2255
  };
2164
2256
  noAction: {
2165
2257
  actionId: string | null;
2166
2258
  findingStatus?: FindingStatus | null | undefined;
2259
+ responseMessage?: string | undefined;
2167
2260
  };
2168
2261
  }, {
2169
2262
  message: string;
2170
2263
  yesAction: {
2171
2264
  actionId: string | null;
2172
2265
  findingStatus?: FindingStatus | null | undefined;
2266
+ responseMessage?: string | undefined;
2173
2267
  };
2174
2268
  noAction: {
2175
2269
  actionId: string | null;
2176
2270
  findingStatus?: FindingStatus | null | undefined;
2271
+ responseMessage?: string | undefined;
2177
2272
  };
2178
2273
  }>>>;
2179
2274
  reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -2199,12 +2294,15 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2199
2294
  expirationAction: z.ZodOptional<z.ZodObject<{
2200
2295
  actionId: z.ZodNullable<z.ZodString>;
2201
2296
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2297
+ responseMessage: z.ZodOptional<z.ZodString>;
2202
2298
  }, "strip", z.ZodTypeAny, {
2203
2299
  actionId: string | null;
2204
2300
  findingStatus?: FindingStatus | null | undefined;
2301
+ responseMessage?: string | undefined;
2205
2302
  }, {
2206
2303
  actionId: string | null;
2207
2304
  findingStatus?: FindingStatus | null | undefined;
2305
+ responseMessage?: string | undefined;
2208
2306
  }>>;
2209
2307
  /**
2210
2308
  * @deprecated Use triage instead
@@ -2221,22 +2319,28 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2221
2319
  resolveNowAction: z.ZodOptional<z.ZodObject<{
2222
2320
  actionId: z.ZodNullable<z.ZodString>;
2223
2321
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2322
+ responseMessage: z.ZodOptional<z.ZodString>;
2224
2323
  }, "strip", z.ZodTypeAny, {
2225
2324
  actionId: string | null;
2226
2325
  findingStatus?: FindingStatus | null | undefined;
2326
+ responseMessage?: string | undefined;
2227
2327
  }, {
2228
2328
  actionId: string | null;
2229
2329
  findingStatus?: FindingStatus | null | undefined;
2330
+ responseMessage?: string | undefined;
2230
2331
  }>>;
2231
2332
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
2232
2333
  actionId: z.ZodNullable<z.ZodString>;
2233
2334
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2335
+ responseMessage: z.ZodOptional<z.ZodString>;
2234
2336
  }, "strip", z.ZodTypeAny, {
2235
2337
  actionId: string | null;
2236
2338
  findingStatus?: FindingStatus | null | undefined;
2339
+ responseMessage?: string | undefined;
2237
2340
  }, {
2238
2341
  actionId: string | null;
2239
2342
  findingStatus?: FindingStatus | null | undefined;
2343
+ responseMessage?: string | undefined;
2240
2344
  }>>;
2241
2345
  }, "strip", z.ZodTypeAny, {
2242
2346
  includeInstructions?: boolean | undefined;
@@ -2245,6 +2349,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2245
2349
  expirationAction?: {
2246
2350
  actionId: string | null;
2247
2351
  findingStatus?: FindingStatus | null | undefined;
2352
+ responseMessage?: string | undefined;
2248
2353
  } | undefined;
2249
2354
  simpleTriageYesActId?: string | undefined;
2250
2355
  simpleTriageNoActId?: string | undefined;
@@ -2252,10 +2357,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2252
2357
  resolveNowAction?: {
2253
2358
  actionId: string | null;
2254
2359
  findingStatus?: FindingStatus | null | undefined;
2360
+ responseMessage?: string | undefined;
2255
2361
  } | undefined;
2256
2362
  scheduleResolutionAction?: {
2257
2363
  actionId: string | null;
2258
2364
  findingStatus?: FindingStatus | null | undefined;
2365
+ responseMessage?: string | undefined;
2259
2366
  } | undefined;
2260
2367
  }, {
2261
2368
  includeInstructions?: boolean | undefined;
@@ -2264,6 +2371,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2264
2371
  expirationAction?: {
2265
2372
  actionId: string | null;
2266
2373
  findingStatus?: FindingStatus | null | undefined;
2374
+ responseMessage?: string | undefined;
2267
2375
  } | undefined;
2268
2376
  simpleTriageYesActId?: string | undefined;
2269
2377
  simpleTriageNoActId?: string | undefined;
@@ -2271,10 +2379,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2271
2379
  resolveNowAction?: {
2272
2380
  actionId: string | null;
2273
2381
  findingStatus?: FindingStatus | null | undefined;
2382
+ responseMessage?: string | undefined;
2274
2383
  } | undefined;
2275
2384
  scheduleResolutionAction?: {
2276
2385
  actionId: string | null;
2277
2386
  findingStatus?: FindingStatus | null | undefined;
2387
+ responseMessage?: string | undefined;
2278
2388
  } | undefined;
2279
2389
  }>>>;
2280
2390
  escalation: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -2404,10 +2514,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2404
2514
  yesAction: {
2405
2515
  actionId: string | null;
2406
2516
  findingStatus?: FindingStatus | null | undefined;
2517
+ responseMessage?: string | undefined;
2407
2518
  };
2408
2519
  noAction: {
2409
2520
  actionId: string | null;
2410
2521
  findingStatus?: FindingStatus | null | undefined;
2522
+ responseMessage?: string | undefined;
2411
2523
  };
2412
2524
  } | undefined;
2413
2525
  reminderInterval?: {
@@ -2422,6 +2534,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2422
2534
  expirationAction?: {
2423
2535
  actionId: string | null;
2424
2536
  findingStatus?: FindingStatus | null | undefined;
2537
+ responseMessage?: string | undefined;
2425
2538
  } | undefined;
2426
2539
  simpleTriageYesActId?: string | undefined;
2427
2540
  simpleTriageNoActId?: string | undefined;
@@ -2429,10 +2542,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2429
2542
  resolveNowAction?: {
2430
2543
  actionId: string | null;
2431
2544
  findingStatus?: FindingStatus | null | undefined;
2545
+ responseMessage?: string | undefined;
2432
2546
  } | undefined;
2433
2547
  scheduleResolutionAction?: {
2434
2548
  actionId: string | null;
2435
2549
  findingStatus?: FindingStatus | null | undefined;
2550
+ responseMessage?: string | undefined;
2436
2551
  } | undefined;
2437
2552
  } | undefined;
2438
2553
  escalation?: {
@@ -2495,10 +2610,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2495
2610
  yesAction: {
2496
2611
  actionId: string | null;
2497
2612
  findingStatus?: FindingStatus | null | undefined;
2613
+ responseMessage?: string | undefined;
2498
2614
  };
2499
2615
  noAction: {
2500
2616
  actionId: string | null;
2501
2617
  findingStatus?: FindingStatus | null | undefined;
2618
+ responseMessage?: string | undefined;
2502
2619
  };
2503
2620
  } | undefined;
2504
2621
  reminderInterval?: {
@@ -2513,6 +2630,7 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2513
2630
  expirationAction?: {
2514
2631
  actionId: string | null;
2515
2632
  findingStatus?: FindingStatus | null | undefined;
2633
+ responseMessage?: string | undefined;
2516
2634
  } | undefined;
2517
2635
  simpleTriageYesActId?: string | undefined;
2518
2636
  simpleTriageNoActId?: string | undefined;
@@ -2520,10 +2638,12 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2520
2638
  resolveNowAction?: {
2521
2639
  actionId: string | null;
2522
2640
  findingStatus?: FindingStatus | null | undefined;
2641
+ responseMessage?: string | undefined;
2523
2642
  } | undefined;
2524
2643
  scheduleResolutionAction?: {
2525
2644
  actionId: string | null;
2526
2645
  findingStatus?: FindingStatus | null | undefined;
2646
+ responseMessage?: string | undefined;
2527
2647
  } | undefined;
2528
2648
  } | undefined;
2529
2649
  escalation?: {