@ampsec/platform-client 66.2.0 → 66.3.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.
@@ -769,14 +769,14 @@ export declare const _FlowActions: z.ZodObject<{
769
769
  */
770
770
  expirationActionId: z.ZodOptional<z.ZodString>;
771
771
  expirationAction: z.ZodOptional<z.ZodObject<{
772
- actionId: z.ZodString;
773
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
772
+ actionId: z.ZodNullable<z.ZodString>;
773
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
774
774
  }, "strip", z.ZodTypeAny, {
775
- actionId: string;
776
- findingStatus?: FindingStatus | undefined;
775
+ actionId: string | null;
776
+ findingStatus?: FindingStatus | null | undefined;
777
777
  }, {
778
- actionId: string;
779
- findingStatus?: FindingStatus | undefined;
778
+ actionId: string | null;
779
+ findingStatus?: FindingStatus | null | undefined;
780
780
  }>>;
781
781
  /**
782
782
  * @deprecated Use triage instead
@@ -791,42 +791,60 @@ export declare const _FlowActions: z.ZodObject<{
791
791
  */
792
792
  resolveNowActionId: z.ZodOptional<z.ZodString>;
793
793
  resolveNowAction: z.ZodOptional<z.ZodObject<{
794
- actionId: z.ZodString;
795
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
794
+ actionId: z.ZodNullable<z.ZodString>;
795
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
796
796
  }, "strip", z.ZodTypeAny, {
797
- actionId: string;
798
- findingStatus?: FindingStatus | undefined;
797
+ actionId: string | null;
798
+ findingStatus?: FindingStatus | null | undefined;
799
799
  }, {
800
- actionId: string;
801
- findingStatus?: FindingStatus | undefined;
800
+ actionId: string | null;
801
+ findingStatus?: FindingStatus | null | undefined;
802
+ }>>;
803
+ scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
804
+ actionId: z.ZodNullable<z.ZodString>;
805
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
806
+ }, "strip", z.ZodTypeAny, {
807
+ actionId: string | null;
808
+ findingStatus?: FindingStatus | null | undefined;
809
+ }, {
810
+ actionId: string | null;
811
+ findingStatus?: FindingStatus | null | undefined;
802
812
  }>>;
803
813
  }, "strip", z.ZodTypeAny, {
804
814
  includeInstructions?: boolean | undefined;
805
815
  expirationActionId?: string | undefined;
806
816
  expirationAction?: {
807
- actionId: string;
808
- findingStatus?: FindingStatus | undefined;
817
+ actionId: string | null;
818
+ findingStatus?: FindingStatus | null | undefined;
809
819
  } | undefined;
810
820
  simpleTriageYesActId?: string | undefined;
811
821
  simpleTriageNoActId?: string | undefined;
812
822
  resolveNowActionId?: string | undefined;
813
823
  resolveNowAction?: {
814
- actionId: string;
815
- findingStatus?: FindingStatus | undefined;
824
+ actionId: string | null;
825
+ findingStatus?: FindingStatus | null | undefined;
826
+ } | undefined;
827
+ scheduleResolutionAction?: {
828
+ actionId: string | null;
829
+ findingStatus?: FindingStatus | null | undefined;
816
830
  } | undefined;
817
831
  }, {
818
832
  includeInstructions?: boolean | undefined;
819
833
  expirationActionId?: string | undefined;
820
834
  expirationAction?: {
821
- actionId: string;
822
- findingStatus?: FindingStatus | undefined;
835
+ actionId: string | null;
836
+ findingStatus?: FindingStatus | null | undefined;
823
837
  } | undefined;
824
838
  simpleTriageYesActId?: string | undefined;
825
839
  simpleTriageNoActId?: string | undefined;
826
840
  resolveNowActionId?: string | undefined;
827
841
  resolveNowAction?: {
828
- actionId: string;
829
- findingStatus?: FindingStatus | undefined;
842
+ actionId: string | null;
843
+ findingStatus?: FindingStatus | null | undefined;
844
+ } | undefined;
845
+ scheduleResolutionAction?: {
846
+ actionId: string | null;
847
+ findingStatus?: FindingStatus | null | undefined;
830
848
  } | undefined;
831
849
  }>;
832
850
  export type FlowActions = z.infer<typeof _FlowActions>;
@@ -959,44 +977,44 @@ export declare const _FlowSpecDto: z.ZodObject<{
959
977
  triage: z.ZodOptional<z.ZodObject<{
960
978
  message: z.ZodString;
961
979
  yesAction: z.ZodObject<{
962
- actionId: z.ZodString;
963
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
980
+ actionId: z.ZodNullable<z.ZodString>;
981
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
964
982
  }, "strip", z.ZodTypeAny, {
965
- actionId: string;
966
- findingStatus?: FindingStatus | undefined;
983
+ actionId: string | null;
984
+ findingStatus?: FindingStatus | null | undefined;
967
985
  }, {
968
- actionId: string;
969
- findingStatus?: FindingStatus | undefined;
986
+ actionId: string | null;
987
+ findingStatus?: FindingStatus | null | undefined;
970
988
  }>;
971
989
  noAction: z.ZodObject<{
972
- actionId: z.ZodString;
973
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
990
+ actionId: z.ZodNullable<z.ZodString>;
991
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
974
992
  }, "strip", z.ZodTypeAny, {
975
- actionId: string;
976
- findingStatus?: FindingStatus | undefined;
993
+ actionId: string | null;
994
+ findingStatus?: FindingStatus | null | undefined;
977
995
  }, {
978
- actionId: string;
979
- findingStatus?: FindingStatus | undefined;
996
+ actionId: string | null;
997
+ findingStatus?: FindingStatus | null | undefined;
980
998
  }>;
981
999
  }, "strip", z.ZodTypeAny, {
982
1000
  message: string;
983
1001
  yesAction: {
984
- actionId: string;
985
- findingStatus?: FindingStatus | undefined;
1002
+ actionId: string | null;
1003
+ findingStatus?: FindingStatus | null | undefined;
986
1004
  };
987
1005
  noAction: {
988
- actionId: string;
989
- findingStatus?: FindingStatus | undefined;
1006
+ actionId: string | null;
1007
+ findingStatus?: FindingStatus | null | undefined;
990
1008
  };
991
1009
  }, {
992
1010
  message: string;
993
1011
  yesAction: {
994
- actionId: string;
995
- findingStatus?: FindingStatus | undefined;
1012
+ actionId: string | null;
1013
+ findingStatus?: FindingStatus | null | undefined;
996
1014
  };
997
1015
  noAction: {
998
- actionId: string;
999
- findingStatus?: FindingStatus | undefined;
1016
+ actionId: string | null;
1017
+ findingStatus?: FindingStatus | null | undefined;
1000
1018
  };
1001
1019
  }>>;
1002
1020
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -1019,14 +1037,14 @@ export declare const _FlowSpecDto: z.ZodObject<{
1019
1037
  */
1020
1038
  expirationActionId: z.ZodOptional<z.ZodString>;
1021
1039
  expirationAction: z.ZodOptional<z.ZodObject<{
1022
- actionId: z.ZodString;
1023
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1040
+ actionId: z.ZodNullable<z.ZodString>;
1041
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1024
1042
  }, "strip", z.ZodTypeAny, {
1025
- actionId: string;
1026
- findingStatus?: FindingStatus | undefined;
1043
+ actionId: string | null;
1044
+ findingStatus?: FindingStatus | null | undefined;
1027
1045
  }, {
1028
- actionId: string;
1029
- findingStatus?: FindingStatus | undefined;
1046
+ actionId: string | null;
1047
+ findingStatus?: FindingStatus | null | undefined;
1030
1048
  }>>;
1031
1049
  /**
1032
1050
  * @deprecated Use triage instead
@@ -1041,42 +1059,60 @@ export declare const _FlowSpecDto: z.ZodObject<{
1041
1059
  */
1042
1060
  resolveNowActionId: z.ZodOptional<z.ZodString>;
1043
1061
  resolveNowAction: z.ZodOptional<z.ZodObject<{
1044
- actionId: z.ZodString;
1045
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1062
+ actionId: z.ZodNullable<z.ZodString>;
1063
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1046
1064
  }, "strip", z.ZodTypeAny, {
1047
- actionId: string;
1048
- findingStatus?: FindingStatus | undefined;
1065
+ actionId: string | null;
1066
+ findingStatus?: FindingStatus | null | undefined;
1049
1067
  }, {
1050
- actionId: string;
1051
- findingStatus?: FindingStatus | undefined;
1068
+ actionId: string | null;
1069
+ findingStatus?: FindingStatus | null | undefined;
1070
+ }>>;
1071
+ scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
1072
+ actionId: z.ZodNullable<z.ZodString>;
1073
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1074
+ }, "strip", z.ZodTypeAny, {
1075
+ actionId: string | null;
1076
+ findingStatus?: FindingStatus | null | undefined;
1077
+ }, {
1078
+ actionId: string | null;
1079
+ findingStatus?: FindingStatus | null | undefined;
1052
1080
  }>>;
1053
1081
  }, "strip", z.ZodTypeAny, {
1054
1082
  includeInstructions?: boolean | undefined;
1055
1083
  expirationActionId?: string | undefined;
1056
1084
  expirationAction?: {
1057
- actionId: string;
1058
- findingStatus?: FindingStatus | undefined;
1085
+ actionId: string | null;
1086
+ findingStatus?: FindingStatus | null | undefined;
1059
1087
  } | undefined;
1060
1088
  simpleTriageYesActId?: string | undefined;
1061
1089
  simpleTriageNoActId?: string | undefined;
1062
1090
  resolveNowActionId?: string | undefined;
1063
1091
  resolveNowAction?: {
1064
- actionId: string;
1065
- findingStatus?: FindingStatus | undefined;
1092
+ actionId: string | null;
1093
+ findingStatus?: FindingStatus | null | undefined;
1094
+ } | undefined;
1095
+ scheduleResolutionAction?: {
1096
+ actionId: string | null;
1097
+ findingStatus?: FindingStatus | null | undefined;
1066
1098
  } | undefined;
1067
1099
  }, {
1068
1100
  includeInstructions?: boolean | undefined;
1069
1101
  expirationActionId?: string | undefined;
1070
1102
  expirationAction?: {
1071
- actionId: string;
1072
- findingStatus?: FindingStatus | undefined;
1103
+ actionId: string | null;
1104
+ findingStatus?: FindingStatus | null | undefined;
1073
1105
  } | undefined;
1074
1106
  simpleTriageYesActId?: string | undefined;
1075
1107
  simpleTriageNoActId?: string | undefined;
1076
1108
  resolveNowActionId?: string | undefined;
1077
1109
  resolveNowAction?: {
1078
- actionId: string;
1079
- findingStatus?: FindingStatus | undefined;
1110
+ actionId: string | null;
1111
+ findingStatus?: FindingStatus | null | undefined;
1112
+ } | undefined;
1113
+ scheduleResolutionAction?: {
1114
+ actionId: string | null;
1115
+ findingStatus?: FindingStatus | null | undefined;
1080
1116
  } | undefined;
1081
1117
  }>>;
1082
1118
  rewards: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1176,12 +1212,12 @@ export declare const _FlowSpecDto: z.ZodObject<{
1176
1212
  triage?: {
1177
1213
  message: string;
1178
1214
  yesAction: {
1179
- actionId: string;
1180
- findingStatus?: FindingStatus | undefined;
1215
+ actionId: string | null;
1216
+ findingStatus?: FindingStatus | null | undefined;
1181
1217
  };
1182
1218
  noAction: {
1183
- actionId: string;
1184
- findingStatus?: FindingStatus | undefined;
1219
+ actionId: string | null;
1220
+ findingStatus?: FindingStatus | null | undefined;
1185
1221
  };
1186
1222
  } | undefined;
1187
1223
  reminderInterval?: {
@@ -1193,15 +1229,19 @@ export declare const _FlowSpecDto: z.ZodObject<{
1193
1229
  includeInstructions?: boolean | undefined;
1194
1230
  expirationActionId?: string | undefined;
1195
1231
  expirationAction?: {
1196
- actionId: string;
1197
- findingStatus?: FindingStatus | undefined;
1232
+ actionId: string | null;
1233
+ findingStatus?: FindingStatus | null | undefined;
1198
1234
  } | undefined;
1199
1235
  simpleTriageYesActId?: string | undefined;
1200
1236
  simpleTriageNoActId?: string | undefined;
1201
1237
  resolveNowActionId?: string | undefined;
1202
1238
  resolveNowAction?: {
1203
- actionId: string;
1204
- findingStatus?: FindingStatus | undefined;
1239
+ actionId: string | null;
1240
+ findingStatus?: FindingStatus | null | undefined;
1241
+ } | undefined;
1242
+ scheduleResolutionAction?: {
1243
+ actionId: string | null;
1244
+ findingStatus?: FindingStatus | null | undefined;
1205
1245
  } | undefined;
1206
1246
  } | undefined;
1207
1247
  rewards?: {
@@ -1267,12 +1307,12 @@ export declare const _FlowSpecDto: z.ZodObject<{
1267
1307
  triage?: {
1268
1308
  message: string;
1269
1309
  yesAction: {
1270
- actionId: string;
1271
- findingStatus?: FindingStatus | undefined;
1310
+ actionId: string | null;
1311
+ findingStatus?: FindingStatus | null | undefined;
1272
1312
  };
1273
1313
  noAction: {
1274
- actionId: string;
1275
- findingStatus?: FindingStatus | undefined;
1314
+ actionId: string | null;
1315
+ findingStatus?: FindingStatus | null | undefined;
1276
1316
  };
1277
1317
  } | undefined;
1278
1318
  reminderInterval?: {
@@ -1284,15 +1324,19 @@ export declare const _FlowSpecDto: z.ZodObject<{
1284
1324
  includeInstructions?: boolean | undefined;
1285
1325
  expirationActionId?: string | undefined;
1286
1326
  expirationAction?: {
1287
- actionId: string;
1288
- findingStatus?: FindingStatus | undefined;
1327
+ actionId: string | null;
1328
+ findingStatus?: FindingStatus | null | undefined;
1289
1329
  } | undefined;
1290
1330
  simpleTriageYesActId?: string | undefined;
1291
1331
  simpleTriageNoActId?: string | undefined;
1292
1332
  resolveNowActionId?: string | undefined;
1293
1333
  resolveNowAction?: {
1294
- actionId: string;
1295
- findingStatus?: FindingStatus | undefined;
1334
+ actionId: string | null;
1335
+ findingStatus?: FindingStatus | null | undefined;
1336
+ } | undefined;
1337
+ scheduleResolutionAction?: {
1338
+ actionId: string | null;
1339
+ findingStatus?: FindingStatus | null | undefined;
1296
1340
  } | undefined;
1297
1341
  } | undefined;
1298
1342
  rewards?: {
@@ -1424,44 +1468,44 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1424
1468
  triage: z.ZodOptional<z.ZodObject<{
1425
1469
  message: z.ZodString;
1426
1470
  yesAction: z.ZodObject<{
1427
- actionId: z.ZodString;
1428
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1471
+ actionId: z.ZodNullable<z.ZodString>;
1472
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1429
1473
  }, "strip", z.ZodTypeAny, {
1430
- actionId: string;
1431
- findingStatus?: FindingStatus | undefined;
1474
+ actionId: string | null;
1475
+ findingStatus?: FindingStatus | null | undefined;
1432
1476
  }, {
1433
- actionId: string;
1434
- findingStatus?: FindingStatus | undefined;
1477
+ actionId: string | null;
1478
+ findingStatus?: FindingStatus | null | undefined;
1435
1479
  }>;
1436
1480
  noAction: z.ZodObject<{
1437
- actionId: z.ZodString;
1438
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1481
+ actionId: z.ZodNullable<z.ZodString>;
1482
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1439
1483
  }, "strip", z.ZodTypeAny, {
1440
- actionId: string;
1441
- findingStatus?: FindingStatus | undefined;
1484
+ actionId: string | null;
1485
+ findingStatus?: FindingStatus | null | undefined;
1442
1486
  }, {
1443
- actionId: string;
1444
- findingStatus?: FindingStatus | undefined;
1487
+ actionId: string | null;
1488
+ findingStatus?: FindingStatus | null | undefined;
1445
1489
  }>;
1446
1490
  }, "strip", z.ZodTypeAny, {
1447
1491
  message: string;
1448
1492
  yesAction: {
1449
- actionId: string;
1450
- findingStatus?: FindingStatus | undefined;
1493
+ actionId: string | null;
1494
+ findingStatus?: FindingStatus | null | undefined;
1451
1495
  };
1452
1496
  noAction: {
1453
- actionId: string;
1454
- findingStatus?: FindingStatus | undefined;
1497
+ actionId: string | null;
1498
+ findingStatus?: FindingStatus | null | undefined;
1455
1499
  };
1456
1500
  }, {
1457
1501
  message: string;
1458
1502
  yesAction: {
1459
- actionId: string;
1460
- findingStatus?: FindingStatus | undefined;
1503
+ actionId: string | null;
1504
+ findingStatus?: FindingStatus | null | undefined;
1461
1505
  };
1462
1506
  noAction: {
1463
- actionId: string;
1464
- findingStatus?: FindingStatus | undefined;
1507
+ actionId: string | null;
1508
+ findingStatus?: FindingStatus | null | undefined;
1465
1509
  };
1466
1510
  }>>;
1467
1511
  reminderInterval: z.ZodOptional<z.ZodObject<{
@@ -1484,14 +1528,14 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1484
1528
  */
1485
1529
  expirationActionId: z.ZodOptional<z.ZodString>;
1486
1530
  expirationAction: z.ZodOptional<z.ZodObject<{
1487
- actionId: z.ZodString;
1488
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1531
+ actionId: z.ZodNullable<z.ZodString>;
1532
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1489
1533
  }, "strip", z.ZodTypeAny, {
1490
- actionId: string;
1491
- findingStatus?: FindingStatus | undefined;
1534
+ actionId: string | null;
1535
+ findingStatus?: FindingStatus | null | undefined;
1492
1536
  }, {
1493
- actionId: string;
1494
- findingStatus?: FindingStatus | undefined;
1537
+ actionId: string | null;
1538
+ findingStatus?: FindingStatus | null | undefined;
1495
1539
  }>>;
1496
1540
  /**
1497
1541
  * @deprecated Use triage instead
@@ -1506,42 +1550,60 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1506
1550
  */
1507
1551
  resolveNowActionId: z.ZodOptional<z.ZodString>;
1508
1552
  resolveNowAction: z.ZodOptional<z.ZodObject<{
1509
- actionId: z.ZodString;
1510
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1553
+ actionId: z.ZodNullable<z.ZodString>;
1554
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1555
+ }, "strip", z.ZodTypeAny, {
1556
+ actionId: string | null;
1557
+ findingStatus?: FindingStatus | null | undefined;
1558
+ }, {
1559
+ actionId: string | null;
1560
+ findingStatus?: FindingStatus | null | undefined;
1561
+ }>>;
1562
+ scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
1563
+ actionId: z.ZodNullable<z.ZodString>;
1564
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1511
1565
  }, "strip", z.ZodTypeAny, {
1512
- actionId: string;
1513
- findingStatus?: FindingStatus | undefined;
1566
+ actionId: string | null;
1567
+ findingStatus?: FindingStatus | null | undefined;
1514
1568
  }, {
1515
- actionId: string;
1516
- findingStatus?: FindingStatus | undefined;
1569
+ actionId: string | null;
1570
+ findingStatus?: FindingStatus | null | undefined;
1517
1571
  }>>;
1518
1572
  }, "strip", z.ZodTypeAny, {
1519
1573
  includeInstructions?: boolean | undefined;
1520
1574
  expirationActionId?: string | undefined;
1521
1575
  expirationAction?: {
1522
- actionId: string;
1523
- findingStatus?: FindingStatus | undefined;
1576
+ actionId: string | null;
1577
+ findingStatus?: FindingStatus | null | undefined;
1524
1578
  } | undefined;
1525
1579
  simpleTriageYesActId?: string | undefined;
1526
1580
  simpleTriageNoActId?: string | undefined;
1527
1581
  resolveNowActionId?: string | undefined;
1528
1582
  resolveNowAction?: {
1529
- actionId: string;
1530
- findingStatus?: FindingStatus | undefined;
1583
+ actionId: string | null;
1584
+ findingStatus?: FindingStatus | null | undefined;
1585
+ } | undefined;
1586
+ scheduleResolutionAction?: {
1587
+ actionId: string | null;
1588
+ findingStatus?: FindingStatus | null | undefined;
1531
1589
  } | undefined;
1532
1590
  }, {
1533
1591
  includeInstructions?: boolean | undefined;
1534
1592
  expirationActionId?: string | undefined;
1535
1593
  expirationAction?: {
1536
- actionId: string;
1537
- findingStatus?: FindingStatus | undefined;
1594
+ actionId: string | null;
1595
+ findingStatus?: FindingStatus | null | undefined;
1538
1596
  } | undefined;
1539
1597
  simpleTriageYesActId?: string | undefined;
1540
1598
  simpleTriageNoActId?: string | undefined;
1541
1599
  resolveNowActionId?: string | undefined;
1542
1600
  resolveNowAction?: {
1543
- actionId: string;
1544
- findingStatus?: FindingStatus | undefined;
1601
+ actionId: string | null;
1602
+ findingStatus?: FindingStatus | null | undefined;
1603
+ } | undefined;
1604
+ scheduleResolutionAction?: {
1605
+ actionId: string | null;
1606
+ findingStatus?: FindingStatus | null | undefined;
1545
1607
  } | undefined;
1546
1608
  }>>;
1547
1609
  rewards: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1628,12 +1690,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1628
1690
  triage?: {
1629
1691
  message: string;
1630
1692
  yesAction: {
1631
- actionId: string;
1632
- findingStatus?: FindingStatus | undefined;
1693
+ actionId: string | null;
1694
+ findingStatus?: FindingStatus | null | undefined;
1633
1695
  };
1634
1696
  noAction: {
1635
- actionId: string;
1636
- findingStatus?: FindingStatus | undefined;
1697
+ actionId: string | null;
1698
+ findingStatus?: FindingStatus | null | undefined;
1637
1699
  };
1638
1700
  } | undefined;
1639
1701
  reminderInterval?: {
@@ -1645,15 +1707,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1645
1707
  includeInstructions?: boolean | undefined;
1646
1708
  expirationActionId?: string | undefined;
1647
1709
  expirationAction?: {
1648
- actionId: string;
1649
- findingStatus?: FindingStatus | undefined;
1710
+ actionId: string | null;
1711
+ findingStatus?: FindingStatus | null | undefined;
1650
1712
  } | undefined;
1651
1713
  simpleTriageYesActId?: string | undefined;
1652
1714
  simpleTriageNoActId?: string | undefined;
1653
1715
  resolveNowActionId?: string | undefined;
1654
1716
  resolveNowAction?: {
1655
- actionId: string;
1656
- findingStatus?: FindingStatus | undefined;
1717
+ actionId: string | null;
1718
+ findingStatus?: FindingStatus | null | undefined;
1719
+ } | undefined;
1720
+ scheduleResolutionAction?: {
1721
+ actionId: string | null;
1722
+ findingStatus?: FindingStatus | null | undefined;
1657
1723
  } | undefined;
1658
1724
  } | undefined;
1659
1725
  rewards?: {
@@ -1714,12 +1780,12 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1714
1780
  triage?: {
1715
1781
  message: string;
1716
1782
  yesAction: {
1717
- actionId: string;
1718
- findingStatus?: FindingStatus | undefined;
1783
+ actionId: string | null;
1784
+ findingStatus?: FindingStatus | null | undefined;
1719
1785
  };
1720
1786
  noAction: {
1721
- actionId: string;
1722
- findingStatus?: FindingStatus | undefined;
1787
+ actionId: string | null;
1788
+ findingStatus?: FindingStatus | null | undefined;
1723
1789
  };
1724
1790
  } | undefined;
1725
1791
  reminderInterval?: {
@@ -1731,15 +1797,19 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<{
1731
1797
  includeInstructions?: boolean | undefined;
1732
1798
  expirationActionId?: string | undefined;
1733
1799
  expirationAction?: {
1734
- actionId: string;
1735
- findingStatus?: FindingStatus | undefined;
1800
+ actionId: string | null;
1801
+ findingStatus?: FindingStatus | null | undefined;
1736
1802
  } | undefined;
1737
1803
  simpleTriageYesActId?: string | undefined;
1738
1804
  simpleTriageNoActId?: string | undefined;
1739
1805
  resolveNowActionId?: string | undefined;
1740
1806
  resolveNowAction?: {
1741
- actionId: string;
1742
- findingStatus?: FindingStatus | undefined;
1807
+ actionId: string | null;
1808
+ findingStatus?: FindingStatus | null | undefined;
1809
+ } | undefined;
1810
+ scheduleResolutionAction?: {
1811
+ actionId: string | null;
1812
+ findingStatus?: FindingStatus | null | undefined;
1743
1813
  } | undefined;
1744
1814
  } | undefined;
1745
1815
  rewards?: {
@@ -1801,44 +1871,44 @@ export declare const _FlowSpecFilter: z.ZodObject<{
1801
1871
  triage: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1802
1872
  message: z.ZodString;
1803
1873
  yesAction: z.ZodObject<{
1804
- actionId: z.ZodString;
1805
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1874
+ actionId: z.ZodNullable<z.ZodString>;
1875
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1806
1876
  }, "strip", z.ZodTypeAny, {
1807
- actionId: string;
1808
- findingStatus?: FindingStatus | undefined;
1877
+ actionId: string | null;
1878
+ findingStatus?: FindingStatus | null | undefined;
1809
1879
  }, {
1810
- actionId: string;
1811
- findingStatus?: FindingStatus | undefined;
1880
+ actionId: string | null;
1881
+ findingStatus?: FindingStatus | null | undefined;
1812
1882
  }>;
1813
1883
  noAction: z.ZodObject<{
1814
- actionId: z.ZodString;
1815
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1884
+ actionId: z.ZodNullable<z.ZodString>;
1885
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1816
1886
  }, "strip", z.ZodTypeAny, {
1817
- actionId: string;
1818
- findingStatus?: FindingStatus | undefined;
1887
+ actionId: string | null;
1888
+ findingStatus?: FindingStatus | null | undefined;
1819
1889
  }, {
1820
- actionId: string;
1821
- findingStatus?: FindingStatus | undefined;
1890
+ actionId: string | null;
1891
+ findingStatus?: FindingStatus | null | undefined;
1822
1892
  }>;
1823
1893
  }, "strip", z.ZodTypeAny, {
1824
1894
  message: string;
1825
1895
  yesAction: {
1826
- actionId: string;
1827
- findingStatus?: FindingStatus | undefined;
1896
+ actionId: string | null;
1897
+ findingStatus?: FindingStatus | null | undefined;
1828
1898
  };
1829
1899
  noAction: {
1830
- actionId: string;
1831
- findingStatus?: FindingStatus | undefined;
1900
+ actionId: string | null;
1901
+ findingStatus?: FindingStatus | null | undefined;
1832
1902
  };
1833
1903
  }, {
1834
1904
  message: string;
1835
1905
  yesAction: {
1836
- actionId: string;
1837
- findingStatus?: FindingStatus | undefined;
1906
+ actionId: string | null;
1907
+ findingStatus?: FindingStatus | null | undefined;
1838
1908
  };
1839
1909
  noAction: {
1840
- actionId: string;
1841
- findingStatus?: FindingStatus | undefined;
1910
+ actionId: string | null;
1911
+ findingStatus?: FindingStatus | null | undefined;
1842
1912
  };
1843
1913
  }>>>;
1844
1914
  reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
@@ -1861,14 +1931,14 @@ export declare const _FlowSpecFilter: z.ZodObject<{
1861
1931
  */
1862
1932
  expirationActionId: z.ZodOptional<z.ZodString>;
1863
1933
  expirationAction: z.ZodOptional<z.ZodObject<{
1864
- actionId: z.ZodString;
1865
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1934
+ actionId: z.ZodNullable<z.ZodString>;
1935
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1866
1936
  }, "strip", z.ZodTypeAny, {
1867
- actionId: string;
1868
- findingStatus?: FindingStatus | undefined;
1937
+ actionId: string | null;
1938
+ findingStatus?: FindingStatus | null | undefined;
1869
1939
  }, {
1870
- actionId: string;
1871
- findingStatus?: FindingStatus | undefined;
1940
+ actionId: string | null;
1941
+ findingStatus?: FindingStatus | null | undefined;
1872
1942
  }>>;
1873
1943
  /**
1874
1944
  * @deprecated Use triage instead
@@ -1883,42 +1953,60 @@ export declare const _FlowSpecFilter: z.ZodObject<{
1883
1953
  */
1884
1954
  resolveNowActionId: z.ZodOptional<z.ZodString>;
1885
1955
  resolveNowAction: z.ZodOptional<z.ZodObject<{
1886
- actionId: z.ZodString;
1887
- findingStatus: z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>;
1956
+ actionId: z.ZodNullable<z.ZodString>;
1957
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1888
1958
  }, "strip", z.ZodTypeAny, {
1889
- actionId: string;
1890
- findingStatus?: FindingStatus | undefined;
1959
+ actionId: string | null;
1960
+ findingStatus?: FindingStatus | null | undefined;
1891
1961
  }, {
1892
- actionId: string;
1893
- findingStatus?: FindingStatus | undefined;
1962
+ actionId: string | null;
1963
+ findingStatus?: FindingStatus | null | undefined;
1964
+ }>>;
1965
+ scheduleResolutionAction: z.ZodOptional<z.ZodObject<{
1966
+ actionId: z.ZodNullable<z.ZodString>;
1967
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
1968
+ }, "strip", z.ZodTypeAny, {
1969
+ actionId: string | null;
1970
+ findingStatus?: FindingStatus | null | undefined;
1971
+ }, {
1972
+ actionId: string | null;
1973
+ findingStatus?: FindingStatus | null | undefined;
1894
1974
  }>>;
1895
1975
  }, "strip", z.ZodTypeAny, {
1896
1976
  includeInstructions?: boolean | undefined;
1897
1977
  expirationActionId?: string | undefined;
1898
1978
  expirationAction?: {
1899
- actionId: string;
1900
- findingStatus?: FindingStatus | undefined;
1979
+ actionId: string | null;
1980
+ findingStatus?: FindingStatus | null | undefined;
1901
1981
  } | undefined;
1902
1982
  simpleTriageYesActId?: string | undefined;
1903
1983
  simpleTriageNoActId?: string | undefined;
1904
1984
  resolveNowActionId?: string | undefined;
1905
1985
  resolveNowAction?: {
1906
- actionId: string;
1907
- findingStatus?: FindingStatus | undefined;
1986
+ actionId: string | null;
1987
+ findingStatus?: FindingStatus | null | undefined;
1988
+ } | undefined;
1989
+ scheduleResolutionAction?: {
1990
+ actionId: string | null;
1991
+ findingStatus?: FindingStatus | null | undefined;
1908
1992
  } | undefined;
1909
1993
  }, {
1910
1994
  includeInstructions?: boolean | undefined;
1911
1995
  expirationActionId?: string | undefined;
1912
1996
  expirationAction?: {
1913
- actionId: string;
1914
- findingStatus?: FindingStatus | undefined;
1997
+ actionId: string | null;
1998
+ findingStatus?: FindingStatus | null | undefined;
1915
1999
  } | undefined;
1916
2000
  simpleTriageYesActId?: string | undefined;
1917
2001
  simpleTriageNoActId?: string | undefined;
1918
2002
  resolveNowActionId?: string | undefined;
1919
2003
  resolveNowAction?: {
1920
- actionId: string;
1921
- findingStatus?: FindingStatus | undefined;
2004
+ actionId: string | null;
2005
+ findingStatus?: FindingStatus | null | undefined;
2006
+ } | undefined;
2007
+ scheduleResolutionAction?: {
2008
+ actionId: string | null;
2009
+ findingStatus?: FindingStatus | null | undefined;
1922
2010
  } | undefined;
1923
2011
  }>>>;
1924
2012
  rewards: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2002,12 +2090,12 @@ export declare const _FlowSpecFilter: z.ZodObject<{
2002
2090
  triage?: {
2003
2091
  message: string;
2004
2092
  yesAction: {
2005
- actionId: string;
2006
- findingStatus?: FindingStatus | undefined;
2093
+ actionId: string | null;
2094
+ findingStatus?: FindingStatus | null | undefined;
2007
2095
  };
2008
2096
  noAction: {
2009
- actionId: string;
2010
- findingStatus?: FindingStatus | undefined;
2097
+ actionId: string | null;
2098
+ findingStatus?: FindingStatus | null | undefined;
2011
2099
  };
2012
2100
  } | undefined;
2013
2101
  reminderInterval?: {
@@ -2019,15 +2107,19 @@ export declare const _FlowSpecFilter: z.ZodObject<{
2019
2107
  includeInstructions?: boolean | undefined;
2020
2108
  expirationActionId?: string | undefined;
2021
2109
  expirationAction?: {
2022
- actionId: string;
2023
- findingStatus?: FindingStatus | undefined;
2110
+ actionId: string | null;
2111
+ findingStatus?: FindingStatus | null | undefined;
2024
2112
  } | undefined;
2025
2113
  simpleTriageYesActId?: string | undefined;
2026
2114
  simpleTriageNoActId?: string | undefined;
2027
2115
  resolveNowActionId?: string | undefined;
2028
2116
  resolveNowAction?: {
2029
- actionId: string;
2030
- findingStatus?: FindingStatus | undefined;
2117
+ actionId: string | null;
2118
+ findingStatus?: FindingStatus | null | undefined;
2119
+ } | undefined;
2120
+ scheduleResolutionAction?: {
2121
+ actionId: string | null;
2122
+ findingStatus?: FindingStatus | null | undefined;
2031
2123
  } | undefined;
2032
2124
  } | undefined;
2033
2125
  rewards?: {
@@ -2077,12 +2169,12 @@ export declare const _FlowSpecFilter: z.ZodObject<{
2077
2169
  triage?: {
2078
2170
  message: string;
2079
2171
  yesAction: {
2080
- actionId: string;
2081
- findingStatus?: FindingStatus | undefined;
2172
+ actionId: string | null;
2173
+ findingStatus?: FindingStatus | null | undefined;
2082
2174
  };
2083
2175
  noAction: {
2084
- actionId: string;
2085
- findingStatus?: FindingStatus | undefined;
2176
+ actionId: string | null;
2177
+ findingStatus?: FindingStatus | null | undefined;
2086
2178
  };
2087
2179
  } | undefined;
2088
2180
  reminderInterval?: {
@@ -2094,15 +2186,19 @@ export declare const _FlowSpecFilter: z.ZodObject<{
2094
2186
  includeInstructions?: boolean | undefined;
2095
2187
  expirationActionId?: string | undefined;
2096
2188
  expirationAction?: {
2097
- actionId: string;
2098
- findingStatus?: FindingStatus | undefined;
2189
+ actionId: string | null;
2190
+ findingStatus?: FindingStatus | null | undefined;
2099
2191
  } | undefined;
2100
2192
  simpleTriageYesActId?: string | undefined;
2101
2193
  simpleTriageNoActId?: string | undefined;
2102
2194
  resolveNowActionId?: string | undefined;
2103
2195
  resolveNowAction?: {
2104
- actionId: string;
2105
- findingStatus?: FindingStatus | undefined;
2196
+ actionId: string | null;
2197
+ findingStatus?: FindingStatus | null | undefined;
2198
+ } | undefined;
2199
+ scheduleResolutionAction?: {
2200
+ actionId: string | null;
2201
+ findingStatus?: FindingStatus | null | undefined;
2106
2202
  } | undefined;
2107
2203
  } | undefined;
2108
2204
  rewards?: {