@ampsec/platform-client 76.0.0 → 76.1.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?: {
@@ -121,6 +121,7 @@ exports._FlowInterval = zod_1.z.object({
121
121
  const _FlowActionDetails = zod_1.z.object({
122
122
  actionId: zod_1.z.string().nullable(),
123
123
  findingStatus: zod_1.z.nativeEnum(enums_1.FindingStatus).optional().nullable(),
124
+ responseMessage: zod_1.z.string().optional(),
124
125
  });
125
126
  exports._FlowActions = zod_1.z.object({
126
127
  includeInstructions: zod_1.z.boolean().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"flows.dto.js","sourceRoot":"","sources":["../../../src/dto/flows.dto.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"flows.dto.js","sourceRoot":"","sources":["../../../src/dto/flows.dto.ts"],"names":[],"mappings":"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"}
@@ -113,42 +113,52 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
113
113
  yesAction: z.ZodObject<{
114
114
  actionId: z.ZodNullable<z.ZodString>;
115
115
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
116
+ responseMessage: z.ZodOptional<z.ZodString>;
116
117
  }, "strip", z.ZodTypeAny, {
117
118
  actionId: string | null;
118
119
  findingStatus?: import("..").FindingStatus | null | undefined;
120
+ responseMessage?: string | undefined;
119
121
  }, {
120
122
  actionId: string | null;
121
123
  findingStatus?: import("..").FindingStatus | null | undefined;
124
+ responseMessage?: string | undefined;
122
125
  }>;
123
126
  noAction: z.ZodObject<{
124
127
  actionId: z.ZodNullable<z.ZodString>;
125
128
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
129
+ responseMessage: z.ZodOptional<z.ZodString>;
126
130
  }, "strip", z.ZodTypeAny, {
127
131
  actionId: string | null;
128
132
  findingStatus?: import("..").FindingStatus | null | undefined;
133
+ responseMessage?: string | undefined;
129
134
  }, {
130
135
  actionId: string | null;
131
136
  findingStatus?: import("..").FindingStatus | null | undefined;
137
+ responseMessage?: string | undefined;
132
138
  }>;
133
139
  }, "strip", z.ZodTypeAny, {
134
140
  message: string;
135
141
  yesAction: {
136
142
  actionId: string | null;
137
143
  findingStatus?: import("..").FindingStatus | null | undefined;
144
+ responseMessage?: string | undefined;
138
145
  };
139
146
  noAction: {
140
147
  actionId: string | null;
141
148
  findingStatus?: import("..").FindingStatus | null | undefined;
149
+ responseMessage?: string | undefined;
142
150
  };
143
151
  }, {
144
152
  message: string;
145
153
  yesAction: {
146
154
  actionId: string | null;
147
155
  findingStatus?: import("..").FindingStatus | null | undefined;
156
+ responseMessage?: string | undefined;
148
157
  };
149
158
  noAction: {
150
159
  actionId: string | null;
151
160
  findingStatus?: import("..").FindingStatus | null | undefined;
161
+ responseMessage?: string | undefined;
152
162
  };
153
163
  }>>;
154
164
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -171,12 +181,15 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
171
181
  expirationAction: z.ZodOptional<z.ZodObject<{
172
182
  actionId: z.ZodNullable<z.ZodString>;
173
183
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
184
+ responseMessage: z.ZodOptional<z.ZodString>;
174
185
  }, "strip", z.ZodTypeAny, {
175
186
  actionId: string | null;
176
187
  findingStatus?: import("..").FindingStatus | null | undefined;
188
+ responseMessage?: string | undefined;
177
189
  }, {
178
190
  actionId: string | null;
179
191
  findingStatus?: import("..").FindingStatus | null | undefined;
192
+ responseMessage?: string | undefined;
180
193
  }>>;
181
194
  simpleTriageYesActId: z.ZodOptional<z.ZodString>;
182
195
  simpleTriageNoActId: z.ZodOptional<z.ZodString>;
@@ -184,22 +197,28 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
184
197
  resolveNowAction: z.ZodOptional<z.ZodObject<{
185
198
  actionId: z.ZodNullable<z.ZodString>;
186
199
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
200
+ responseMessage: z.ZodOptional<z.ZodString>;
187
201
  }, "strip", z.ZodTypeAny, {
188
202
  actionId: string | null;
189
203
  findingStatus?: import("..").FindingStatus | null | undefined;
204
+ responseMessage?: string | undefined;
190
205
  }, {
191
206
  actionId: string | null;
192
207
  findingStatus?: import("..").FindingStatus | null | undefined;
208
+ responseMessage?: string | undefined;
193
209
  }>>;
194
210
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
195
211
  actionId: z.ZodNullable<z.ZodString>;
196
212
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
213
+ responseMessage: z.ZodOptional<z.ZodString>;
197
214
  }, "strip", z.ZodTypeAny, {
198
215
  actionId: string | null;
199
216
  findingStatus?: import("..").FindingStatus | null | undefined;
217
+ responseMessage?: string | undefined;
200
218
  }, {
201
219
  actionId: string | null;
202
220
  findingStatus?: import("..").FindingStatus | null | undefined;
221
+ responseMessage?: string | undefined;
203
222
  }>>;
204
223
  }, "strip", z.ZodTypeAny, {
205
224
  includeInstructions?: boolean | undefined;
@@ -208,6 +227,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
208
227
  expirationAction?: {
209
228
  actionId: string | null;
210
229
  findingStatus?: import("..").FindingStatus | null | undefined;
230
+ responseMessage?: string | undefined;
211
231
  } | undefined;
212
232
  simpleTriageYesActId?: string | undefined;
213
233
  simpleTriageNoActId?: string | undefined;
@@ -215,10 +235,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
215
235
  resolveNowAction?: {
216
236
  actionId: string | null;
217
237
  findingStatus?: import("..").FindingStatus | null | undefined;
238
+ responseMessage?: string | undefined;
218
239
  } | undefined;
219
240
  scheduleResolutionAction?: {
220
241
  actionId: string | null;
221
242
  findingStatus?: import("..").FindingStatus | null | undefined;
243
+ responseMessage?: string | undefined;
222
244
  } | undefined;
223
245
  }, {
224
246
  includeInstructions?: boolean | undefined;
@@ -227,6 +249,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
227
249
  expirationAction?: {
228
250
  actionId: string | null;
229
251
  findingStatus?: import("..").FindingStatus | null | undefined;
252
+ responseMessage?: string | undefined;
230
253
  } | undefined;
231
254
  simpleTriageYesActId?: string | undefined;
232
255
  simpleTriageNoActId?: string | undefined;
@@ -234,10 +257,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
234
257
  resolveNowAction?: {
235
258
  actionId: string | null;
236
259
  findingStatus?: import("..").FindingStatus | null | undefined;
260
+ responseMessage?: string | undefined;
237
261
  } | undefined;
238
262
  scheduleResolutionAction?: {
239
263
  actionId: string | null;
240
264
  findingStatus?: import("..").FindingStatus | null | undefined;
265
+ responseMessage?: string | undefined;
241
266
  } | undefined;
242
267
  }>>;
243
268
  escalation: z.ZodOptional<z.ZodObject<{
@@ -383,10 +408,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
383
408
  yesAction: {
384
409
  actionId: string | null;
385
410
  findingStatus?: import("..").FindingStatus | null | undefined;
411
+ responseMessage?: string | undefined;
386
412
  };
387
413
  noAction: {
388
414
  actionId: string | null;
389
415
  findingStatus?: import("..").FindingStatus | null | undefined;
416
+ responseMessage?: string | undefined;
390
417
  };
391
418
  } | undefined;
392
419
  reminderInterval?: {
@@ -401,6 +428,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
401
428
  expirationAction?: {
402
429
  actionId: string | null;
403
430
  findingStatus?: import("..").FindingStatus | null | undefined;
431
+ responseMessage?: string | undefined;
404
432
  } | undefined;
405
433
  simpleTriageYesActId?: string | undefined;
406
434
  simpleTriageNoActId?: string | undefined;
@@ -408,10 +436,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
408
436
  resolveNowAction?: {
409
437
  actionId: string | null;
410
438
  findingStatus?: import("..").FindingStatus | null | undefined;
439
+ responseMessage?: string | undefined;
411
440
  } | undefined;
412
441
  scheduleResolutionAction?: {
413
442
  actionId: string | null;
414
443
  findingStatus?: import("..").FindingStatus | null | undefined;
444
+ responseMessage?: string | undefined;
415
445
  } | undefined;
416
446
  } | undefined;
417
447
  escalation?: {
@@ -482,10 +512,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
482
512
  yesAction: {
483
513
  actionId: string | null;
484
514
  findingStatus?: import("..").FindingStatus | null | undefined;
515
+ responseMessage?: string | undefined;
485
516
  };
486
517
  noAction: {
487
518
  actionId: string | null;
488
519
  findingStatus?: import("..").FindingStatus | null | undefined;
520
+ responseMessage?: string | undefined;
489
521
  };
490
522
  } | undefined;
491
523
  reminderInterval?: {
@@ -500,6 +532,7 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
500
532
  expirationAction?: {
501
533
  actionId: string | null;
502
534
  findingStatus?: import("..").FindingStatus | null | undefined;
535
+ responseMessage?: string | undefined;
503
536
  } | undefined;
504
537
  simpleTriageYesActId?: string | undefined;
505
538
  simpleTriageNoActId?: string | undefined;
@@ -507,10 +540,12 @@ export declare const _PlatformFlowSpecUpsertDto: z.ZodObject<z.objectUtil.extend
507
540
  resolveNowAction?: {
508
541
  actionId: string | null;
509
542
  findingStatus?: import("..").FindingStatus | null | undefined;
543
+ responseMessage?: string | undefined;
510
544
  } | undefined;
511
545
  scheduleResolutionAction?: {
512
546
  actionId: string | null;
513
547
  findingStatus?: import("..").FindingStatus | null | undefined;
548
+ responseMessage?: string | undefined;
514
549
  } | undefined;
515
550
  } | undefined;
516
551
  escalation?: {
@@ -653,42 +688,52 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
653
688
  yesAction: z.ZodObject<{
654
689
  actionId: z.ZodNullable<z.ZodString>;
655
690
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
691
+ responseMessage: z.ZodOptional<z.ZodString>;
656
692
  }, "strip", z.ZodTypeAny, {
657
693
  actionId: string | null;
658
694
  findingStatus?: import("..").FindingStatus | null | undefined;
695
+ responseMessage?: string | undefined;
659
696
  }, {
660
697
  actionId: string | null;
661
698
  findingStatus?: import("..").FindingStatus | null | undefined;
699
+ responseMessage?: string | undefined;
662
700
  }>;
663
701
  noAction: z.ZodObject<{
664
702
  actionId: z.ZodNullable<z.ZodString>;
665
703
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
704
+ responseMessage: z.ZodOptional<z.ZodString>;
666
705
  }, "strip", z.ZodTypeAny, {
667
706
  actionId: string | null;
668
707
  findingStatus?: import("..").FindingStatus | null | undefined;
708
+ responseMessage?: string | undefined;
669
709
  }, {
670
710
  actionId: string | null;
671
711
  findingStatus?: import("..").FindingStatus | null | undefined;
712
+ responseMessage?: string | undefined;
672
713
  }>;
673
714
  }, "strip", z.ZodTypeAny, {
674
715
  message: string;
675
716
  yesAction: {
676
717
  actionId: string | null;
677
718
  findingStatus?: import("..").FindingStatus | null | undefined;
719
+ responseMessage?: string | undefined;
678
720
  };
679
721
  noAction: {
680
722
  actionId: string | null;
681
723
  findingStatus?: import("..").FindingStatus | null | undefined;
724
+ responseMessage?: string | undefined;
682
725
  };
683
726
  }, {
684
727
  message: string;
685
728
  yesAction: {
686
729
  actionId: string | null;
687
730
  findingStatus?: import("..").FindingStatus | null | undefined;
731
+ responseMessage?: string | undefined;
688
732
  };
689
733
  noAction: {
690
734
  actionId: string | null;
691
735
  findingStatus?: import("..").FindingStatus | null | undefined;
736
+ responseMessage?: string | undefined;
692
737
  };
693
738
  }>>;
694
739
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -711,12 +756,15 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
711
756
  expirationAction: z.ZodOptional<z.ZodObject<{
712
757
  actionId: z.ZodNullable<z.ZodString>;
713
758
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
759
+ responseMessage: z.ZodOptional<z.ZodString>;
714
760
  }, "strip", z.ZodTypeAny, {
715
761
  actionId: string | null;
716
762
  findingStatus?: import("..").FindingStatus | null | undefined;
763
+ responseMessage?: string | undefined;
717
764
  }, {
718
765
  actionId: string | null;
719
766
  findingStatus?: import("..").FindingStatus | null | undefined;
767
+ responseMessage?: string | undefined;
720
768
  }>>;
721
769
  simpleTriageYesActId: z.ZodOptional<z.ZodString>;
722
770
  simpleTriageNoActId: z.ZodOptional<z.ZodString>;
@@ -724,22 +772,28 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
724
772
  resolveNowAction: z.ZodOptional<z.ZodObject<{
725
773
  actionId: z.ZodNullable<z.ZodString>;
726
774
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
775
+ responseMessage: z.ZodOptional<z.ZodString>;
727
776
  }, "strip", z.ZodTypeAny, {
728
777
  actionId: string | null;
729
778
  findingStatus?: import("..").FindingStatus | null | undefined;
779
+ responseMessage?: string | undefined;
730
780
  }, {
731
781
  actionId: string | null;
732
782
  findingStatus?: import("..").FindingStatus | null | undefined;
783
+ responseMessage?: string | undefined;
733
784
  }>>;
734
785
  scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
735
786
  actionId: z.ZodNullable<z.ZodString>;
736
787
  findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof import("..").FindingStatus>>>;
788
+ responseMessage: z.ZodOptional<z.ZodString>;
737
789
  }, "strip", z.ZodTypeAny, {
738
790
  actionId: string | null;
739
791
  findingStatus?: import("..").FindingStatus | null | undefined;
792
+ responseMessage?: string | undefined;
740
793
  }, {
741
794
  actionId: string | null;
742
795
  findingStatus?: import("..").FindingStatus | null | undefined;
796
+ responseMessage?: string | undefined;
743
797
  }>>;
744
798
  }, "strip", z.ZodTypeAny, {
745
799
  includeInstructions?: boolean | undefined;
@@ -748,6 +802,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
748
802
  expirationAction?: {
749
803
  actionId: string | null;
750
804
  findingStatus?: import("..").FindingStatus | null | undefined;
805
+ responseMessage?: string | undefined;
751
806
  } | undefined;
752
807
  simpleTriageYesActId?: string | undefined;
753
808
  simpleTriageNoActId?: string | undefined;
@@ -755,10 +810,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
755
810
  resolveNowAction?: {
756
811
  actionId: string | null;
757
812
  findingStatus?: import("..").FindingStatus | null | undefined;
813
+ responseMessage?: string | undefined;
758
814
  } | undefined;
759
815
  scheduleResolutionAction?: {
760
816
  actionId: string | null;
761
817
  findingStatus?: import("..").FindingStatus | null | undefined;
818
+ responseMessage?: string | undefined;
762
819
  } | undefined;
763
820
  }, {
764
821
  includeInstructions?: boolean | undefined;
@@ -767,6 +824,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
767
824
  expirationAction?: {
768
825
  actionId: string | null;
769
826
  findingStatus?: import("..").FindingStatus | null | undefined;
827
+ responseMessage?: string | undefined;
770
828
  } | undefined;
771
829
  simpleTriageYesActId?: string | undefined;
772
830
  simpleTriageNoActId?: string | undefined;
@@ -774,10 +832,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
774
832
  resolveNowAction?: {
775
833
  actionId: string | null;
776
834
  findingStatus?: import("..").FindingStatus | null | undefined;
835
+ responseMessage?: string | undefined;
777
836
  } | undefined;
778
837
  scheduleResolutionAction?: {
779
838
  actionId: string | null;
780
839
  findingStatus?: import("..").FindingStatus | null | undefined;
840
+ responseMessage?: string | undefined;
781
841
  } | undefined;
782
842
  }>>;
783
843
  escalation: z.ZodOptional<z.ZodObject<{
@@ -918,10 +978,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
918
978
  yesAction: {
919
979
  actionId: string | null;
920
980
  findingStatus?: import("..").FindingStatus | null | undefined;
981
+ responseMessage?: string | undefined;
921
982
  };
922
983
  noAction: {
923
984
  actionId: string | null;
924
985
  findingStatus?: import("..").FindingStatus | null | undefined;
986
+ responseMessage?: string | undefined;
925
987
  };
926
988
  } | undefined;
927
989
  reminderInterval?: {
@@ -936,6 +998,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
936
998
  expirationAction?: {
937
999
  actionId: string | null;
938
1000
  findingStatus?: import("..").FindingStatus | null | undefined;
1001
+ responseMessage?: string | undefined;
939
1002
  } | undefined;
940
1003
  simpleTriageYesActId?: string | undefined;
941
1004
  simpleTriageNoActId?: string | undefined;
@@ -943,10 +1006,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
943
1006
  resolveNowAction?: {
944
1007
  actionId: string | null;
945
1008
  findingStatus?: import("..").FindingStatus | null | undefined;
1009
+ responseMessage?: string | undefined;
946
1010
  } | undefined;
947
1011
  scheduleResolutionAction?: {
948
1012
  actionId: string | null;
949
1013
  findingStatus?: import("..").FindingStatus | null | undefined;
1014
+ responseMessage?: string | undefined;
950
1015
  } | undefined;
951
1016
  } | undefined;
952
1017
  escalation?: {
@@ -1025,10 +1090,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
1025
1090
  yesAction: {
1026
1091
  actionId: string | null;
1027
1092
  findingStatus?: import("..").FindingStatus | null | undefined;
1093
+ responseMessage?: string | undefined;
1028
1094
  };
1029
1095
  noAction: {
1030
1096
  actionId: string | null;
1031
1097
  findingStatus?: import("..").FindingStatus | null | undefined;
1098
+ responseMessage?: string | undefined;
1032
1099
  };
1033
1100
  } | undefined;
1034
1101
  reminderInterval?: {
@@ -1043,6 +1110,7 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
1043
1110
  expirationAction?: {
1044
1111
  actionId: string | null;
1045
1112
  findingStatus?: import("..").FindingStatus | null | undefined;
1113
+ responseMessage?: string | undefined;
1046
1114
  } | undefined;
1047
1115
  simpleTriageYesActId?: string | undefined;
1048
1116
  simpleTriageNoActId?: string | undefined;
@@ -1050,10 +1118,12 @@ export declare const _PlatformFlowSpecDto: z.ZodObject<z.objectUtil.extendShape<
1050
1118
  resolveNowAction?: {
1051
1119
  actionId: string | null;
1052
1120
  findingStatus?: import("..").FindingStatus | null | undefined;
1121
+ responseMessage?: string | undefined;
1053
1122
  } | undefined;
1054
1123
  scheduleResolutionAction?: {
1055
1124
  actionId: string | null;
1056
1125
  findingStatus?: import("..").FindingStatus | null | undefined;
1126
+ responseMessage?: string | undefined;
1057
1127
  } | undefined;
1058
1128
  } | undefined;
1059
1129
  escalation?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "76.0.0",
3
+ "version": "76.1.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -146,6 +146,7 @@ export type FlowInterval = z.infer<typeof _FlowInterval>;
146
146
  const _FlowActionDetails = z.object({
147
147
  actionId: z.string().nullable(),
148
148
  findingStatus: z.nativeEnum(FindingStatus).optional().nullable(),
149
+ responseMessage: z.string().optional(),
149
150
  });
150
151
 
151
152
  export const _FlowActions = z.object({