@ampsec/platform-client 79.2.0 → 79.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.
@@ -910,6 +910,32 @@ export declare const _FlowActions: z.ZodObject<{
910
910
  findingStatus?: FindingStatus | null | undefined;
911
911
  responseMessage?: string | undefined;
912
912
  }>>;
913
+ actionButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
914
+ id: z.ZodString;
915
+ actions: z.ZodArray<z.ZodObject<{
916
+ actionId: z.ZodNullable<z.ZodString>;
917
+ }, "strip", z.ZodTypeAny, {
918
+ actionId: string | null;
919
+ }, {
920
+ actionId: string | null;
921
+ }>, "many">;
922
+ findingStatus: z.ZodNullable<z.ZodNativeEnum<typeof FindingStatus>>;
923
+ actionLabel: z.ZodString;
924
+ }, "strip", z.ZodTypeAny, {
925
+ id: string;
926
+ actions: {
927
+ actionId: string | null;
928
+ }[];
929
+ findingStatus: FindingStatus | null;
930
+ actionLabel: string;
931
+ }, {
932
+ id: string;
933
+ actions: {
934
+ actionId: string | null;
935
+ }[];
936
+ findingStatus: FindingStatus | null;
937
+ actionLabel: string;
938
+ }>, "many">>;
913
939
  }, "strip", z.ZodTypeAny, {
914
940
  includeInstructions?: boolean | undefined;
915
941
  includeMarkComplete?: boolean | undefined;
@@ -937,6 +963,14 @@ export declare const _FlowActions: z.ZodObject<{
937
963
  findingStatus?: FindingStatus | null | undefined;
938
964
  responseMessage?: string | undefined;
939
965
  } | undefined;
966
+ actionButtons?: {
967
+ id: string;
968
+ actions: {
969
+ actionId: string | null;
970
+ }[];
971
+ findingStatus: FindingStatus | null;
972
+ actionLabel: string;
973
+ }[] | undefined;
940
974
  }, {
941
975
  includeInstructions?: boolean | undefined;
942
976
  includeMarkComplete?: boolean | undefined;
@@ -964,6 +998,14 @@ export declare const _FlowActions: z.ZodObject<{
964
998
  findingStatus?: FindingStatus | null | undefined;
965
999
  responseMessage?: string | undefined;
966
1000
  } | undefined;
1001
+ actionButtons?: {
1002
+ id: string;
1003
+ actions: {
1004
+ actionId: string | null;
1005
+ }[];
1006
+ findingStatus: FindingStatus | null;
1007
+ actionLabel: string;
1008
+ }[] | undefined;
967
1009
  }>;
968
1010
  export type FlowActions = z.infer<typeof _FlowActions>;
969
1011
  export declare const _FlowRewardsConfig: z.ZodObject<{
@@ -1303,6 +1345,32 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1303
1345
  findingStatus?: FindingStatus | null | undefined;
1304
1346
  responseMessage?: string | undefined;
1305
1347
  }>>;
1348
+ actionButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
1349
+ id: z.ZodString;
1350
+ actions: z.ZodArray<z.ZodObject<{
1351
+ actionId: z.ZodNullable<z.ZodString>;
1352
+ }, "strip", z.ZodTypeAny, {
1353
+ actionId: string | null;
1354
+ }, {
1355
+ actionId: string | null;
1356
+ }>, "many">;
1357
+ findingStatus: z.ZodNullable<z.ZodNativeEnum<typeof FindingStatus>>;
1358
+ actionLabel: z.ZodString;
1359
+ }, "strip", z.ZodTypeAny, {
1360
+ id: string;
1361
+ actions: {
1362
+ actionId: string | null;
1363
+ }[];
1364
+ findingStatus: FindingStatus | null;
1365
+ actionLabel: string;
1366
+ }, {
1367
+ id: string;
1368
+ actions: {
1369
+ actionId: string | null;
1370
+ }[];
1371
+ findingStatus: FindingStatus | null;
1372
+ actionLabel: string;
1373
+ }>, "many">>;
1306
1374
  }, "strip", z.ZodTypeAny, {
1307
1375
  includeInstructions?: boolean | undefined;
1308
1376
  includeMarkComplete?: boolean | undefined;
@@ -1330,6 +1398,14 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1330
1398
  findingStatus?: FindingStatus | null | undefined;
1331
1399
  responseMessage?: string | undefined;
1332
1400
  } | undefined;
1401
+ actionButtons?: {
1402
+ id: string;
1403
+ actions: {
1404
+ actionId: string | null;
1405
+ }[];
1406
+ findingStatus: FindingStatus | null;
1407
+ actionLabel: string;
1408
+ }[] | undefined;
1333
1409
  }, {
1334
1410
  includeInstructions?: boolean | undefined;
1335
1411
  includeMarkComplete?: boolean | undefined;
@@ -1357,6 +1433,14 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1357
1433
  findingStatus?: FindingStatus | null | undefined;
1358
1434
  responseMessage?: string | undefined;
1359
1435
  } | undefined;
1436
+ actionButtons?: {
1437
+ id: string;
1438
+ actions: {
1439
+ actionId: string | null;
1440
+ }[];
1441
+ findingStatus: FindingStatus | null;
1442
+ actionLabel: string;
1443
+ }[] | undefined;
1360
1444
  }>>;
1361
1445
  escalation: z.ZodOptional<z.ZodObject<{
1362
1446
  interval: z.ZodObject<{
@@ -1499,6 +1583,42 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1499
1583
  custom?: Record<string, unknown> | undefined;
1500
1584
  };
1501
1585
  engagementChannelCids: string[];
1586
+ actions?: {
1587
+ includeInstructions?: boolean | undefined;
1588
+ includeMarkComplete?: boolean | undefined;
1589
+ expirationActionId?: string | undefined;
1590
+ expirationAction?: {
1591
+ actionId: string | null;
1592
+ findingStatus?: FindingStatus | null | undefined;
1593
+ responseMessage?: string | undefined;
1594
+ } | undefined;
1595
+ simpleTriageYesActId?: string | undefined;
1596
+ simpleTriageNoActId?: string | undefined;
1597
+ resolveNowActionId?: string | undefined;
1598
+ resolveNowAction?: {
1599
+ actionId: string | null;
1600
+ findingStatus?: FindingStatus | null | undefined;
1601
+ responseMessage?: string | undefined;
1602
+ } | undefined;
1603
+ scheduleResolutionAction?: {
1604
+ actionId: string | null;
1605
+ findingStatus?: FindingStatus | null | undefined;
1606
+ responseMessage?: string | undefined;
1607
+ } | undefined;
1608
+ launchAction?: {
1609
+ actionId: string | null;
1610
+ findingStatus?: FindingStatus | null | undefined;
1611
+ responseMessage?: string | undefined;
1612
+ } | undefined;
1613
+ actionButtons?: {
1614
+ id: string;
1615
+ actions: {
1616
+ actionId: string | null;
1617
+ }[];
1618
+ findingStatus: FindingStatus | null;
1619
+ actionLabel: string;
1620
+ }[] | undefined;
1621
+ } | undefined;
1502
1622
  tone?: {
1503
1623
  kind?: string | undefined;
1504
1624
  } | undefined;
@@ -1534,34 +1654,6 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1534
1654
  value?: number | undefined;
1535
1655
  units?: string | undefined;
1536
1656
  } | undefined;
1537
- actions?: {
1538
- includeInstructions?: boolean | undefined;
1539
- includeMarkComplete?: boolean | undefined;
1540
- expirationActionId?: string | undefined;
1541
- expirationAction?: {
1542
- actionId: string | null;
1543
- findingStatus?: FindingStatus | null | undefined;
1544
- responseMessage?: string | undefined;
1545
- } | undefined;
1546
- simpleTriageYesActId?: string | undefined;
1547
- simpleTriageNoActId?: string | undefined;
1548
- resolveNowActionId?: string | undefined;
1549
- resolveNowAction?: {
1550
- actionId: string | null;
1551
- findingStatus?: FindingStatus | null | undefined;
1552
- responseMessage?: string | undefined;
1553
- } | undefined;
1554
- scheduleResolutionAction?: {
1555
- actionId: string | null;
1556
- findingStatus?: FindingStatus | null | undefined;
1557
- responseMessage?: string | undefined;
1558
- } | undefined;
1559
- launchAction?: {
1560
- actionId: string | null;
1561
- findingStatus?: FindingStatus | null | undefined;
1562
- responseMessage?: string | undefined;
1563
- } | undefined;
1564
- } | undefined;
1565
1657
  escalation?: {
1566
1658
  interval: {
1567
1659
  minutes: number;
@@ -1629,6 +1721,42 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1629
1721
  custom?: Record<string, unknown> | undefined;
1630
1722
  };
1631
1723
  engagementChannelCids: string[];
1724
+ actions?: {
1725
+ includeInstructions?: boolean | undefined;
1726
+ includeMarkComplete?: boolean | undefined;
1727
+ expirationActionId?: string | undefined;
1728
+ expirationAction?: {
1729
+ actionId: string | null;
1730
+ findingStatus?: FindingStatus | null | undefined;
1731
+ responseMessage?: string | undefined;
1732
+ } | undefined;
1733
+ simpleTriageYesActId?: string | undefined;
1734
+ simpleTriageNoActId?: string | undefined;
1735
+ resolveNowActionId?: string | undefined;
1736
+ resolveNowAction?: {
1737
+ actionId: string | null;
1738
+ findingStatus?: FindingStatus | null | undefined;
1739
+ responseMessage?: string | undefined;
1740
+ } | undefined;
1741
+ scheduleResolutionAction?: {
1742
+ actionId: string | null;
1743
+ findingStatus?: FindingStatus | null | undefined;
1744
+ responseMessage?: string | undefined;
1745
+ } | undefined;
1746
+ launchAction?: {
1747
+ actionId: string | null;
1748
+ findingStatus?: FindingStatus | null | undefined;
1749
+ responseMessage?: string | undefined;
1750
+ } | undefined;
1751
+ actionButtons?: {
1752
+ id: string;
1753
+ actions: {
1754
+ actionId: string | null;
1755
+ }[];
1756
+ findingStatus: FindingStatus | null;
1757
+ actionLabel: string;
1758
+ }[] | undefined;
1759
+ } | undefined;
1632
1760
  fslStrategy?: "STANDARD" | undefined;
1633
1761
  tone?: {
1634
1762
  kind?: string | undefined;
@@ -1665,34 +1793,6 @@ export declare const _FlowSpecDto: z.ZodObject<z.objectUtil.extendShape<{
1665
1793
  value?: number | undefined;
1666
1794
  units?: string | undefined;
1667
1795
  } | undefined;
1668
- actions?: {
1669
- includeInstructions?: boolean | undefined;
1670
- includeMarkComplete?: boolean | undefined;
1671
- expirationActionId?: string | undefined;
1672
- expirationAction?: {
1673
- actionId: string | null;
1674
- findingStatus?: FindingStatus | null | undefined;
1675
- responseMessage?: string | undefined;
1676
- } | undefined;
1677
- simpleTriageYesActId?: string | undefined;
1678
- simpleTriageNoActId?: string | undefined;
1679
- resolveNowActionId?: string | undefined;
1680
- resolveNowAction?: {
1681
- actionId: string | null;
1682
- findingStatus?: FindingStatus | null | undefined;
1683
- responseMessage?: string | undefined;
1684
- } | undefined;
1685
- scheduleResolutionAction?: {
1686
- actionId: string | null;
1687
- findingStatus?: FindingStatus | null | undefined;
1688
- responseMessage?: string | undefined;
1689
- } | undefined;
1690
- launchAction?: {
1691
- actionId: string | null;
1692
- findingStatus?: FindingStatus | null | undefined;
1693
- responseMessage?: string | undefined;
1694
- } | undefined;
1695
- } | undefined;
1696
1796
  escalation?: {
1697
1797
  interval: {
1698
1798
  minutes: number;
@@ -2002,6 +2102,32 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2002
2102
  findingStatus?: FindingStatus | null | undefined;
2003
2103
  responseMessage?: string | undefined;
2004
2104
  }>>;
2105
+ actionButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
2106
+ id: z.ZodString;
2107
+ actions: z.ZodArray<z.ZodObject<{
2108
+ actionId: z.ZodNullable<z.ZodString>;
2109
+ }, "strip", z.ZodTypeAny, {
2110
+ actionId: string | null;
2111
+ }, {
2112
+ actionId: string | null;
2113
+ }>, "many">;
2114
+ findingStatus: z.ZodNullable<z.ZodNativeEnum<typeof FindingStatus>>;
2115
+ actionLabel: z.ZodString;
2116
+ }, "strip", z.ZodTypeAny, {
2117
+ id: string;
2118
+ actions: {
2119
+ actionId: string | null;
2120
+ }[];
2121
+ findingStatus: FindingStatus | null;
2122
+ actionLabel: string;
2123
+ }, {
2124
+ id: string;
2125
+ actions: {
2126
+ actionId: string | null;
2127
+ }[];
2128
+ findingStatus: FindingStatus | null;
2129
+ actionLabel: string;
2130
+ }>, "many">>;
2005
2131
  }, "strip", z.ZodTypeAny, {
2006
2132
  includeInstructions?: boolean | undefined;
2007
2133
  includeMarkComplete?: boolean | undefined;
@@ -2029,6 +2155,14 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2029
2155
  findingStatus?: FindingStatus | null | undefined;
2030
2156
  responseMessage?: string | undefined;
2031
2157
  } | undefined;
2158
+ actionButtons?: {
2159
+ id: string;
2160
+ actions: {
2161
+ actionId: string | null;
2162
+ }[];
2163
+ findingStatus: FindingStatus | null;
2164
+ actionLabel: string;
2165
+ }[] | undefined;
2032
2166
  }, {
2033
2167
  includeInstructions?: boolean | undefined;
2034
2168
  includeMarkComplete?: boolean | undefined;
@@ -2056,6 +2190,14 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2056
2190
  findingStatus?: FindingStatus | null | undefined;
2057
2191
  responseMessage?: string | undefined;
2058
2192
  } | undefined;
2193
+ actionButtons?: {
2194
+ id: string;
2195
+ actions: {
2196
+ actionId: string | null;
2197
+ }[];
2198
+ findingStatus: FindingStatus | null;
2199
+ actionLabel: string;
2200
+ }[] | undefined;
2059
2201
  }>>;
2060
2202
  escalation: z.ZodOptional<z.ZodObject<{
2061
2203
  interval: z.ZodObject<{
@@ -2203,6 +2345,42 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2203
2345
  createdAt?: string | undefined;
2204
2346
  updatedAt?: string | undefined;
2205
2347
  deletedAt?: string | null | undefined;
2348
+ actions?: {
2349
+ includeInstructions?: boolean | undefined;
2350
+ includeMarkComplete?: boolean | undefined;
2351
+ expirationActionId?: string | undefined;
2352
+ expirationAction?: {
2353
+ actionId: string | null;
2354
+ findingStatus?: FindingStatus | null | undefined;
2355
+ responseMessage?: string | undefined;
2356
+ } | undefined;
2357
+ simpleTriageYesActId?: string | undefined;
2358
+ simpleTriageNoActId?: string | undefined;
2359
+ resolveNowActionId?: string | undefined;
2360
+ resolveNowAction?: {
2361
+ actionId: string | null;
2362
+ findingStatus?: FindingStatus | null | undefined;
2363
+ responseMessage?: string | undefined;
2364
+ } | undefined;
2365
+ scheduleResolutionAction?: {
2366
+ actionId: string | null;
2367
+ findingStatus?: FindingStatus | null | undefined;
2368
+ responseMessage?: string | undefined;
2369
+ } | undefined;
2370
+ launchAction?: {
2371
+ actionId: string | null;
2372
+ findingStatus?: FindingStatus | null | undefined;
2373
+ responseMessage?: string | undefined;
2374
+ } | undefined;
2375
+ actionButtons?: {
2376
+ id: string;
2377
+ actions: {
2378
+ actionId: string | null;
2379
+ }[];
2380
+ findingStatus: FindingStatus | null;
2381
+ actionLabel: string;
2382
+ }[] | undefined;
2383
+ } | undefined;
2206
2384
  tone?: {
2207
2385
  kind?: string | undefined;
2208
2386
  } | undefined;
@@ -2238,34 +2416,6 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2238
2416
  value?: number | undefined;
2239
2417
  units?: string | undefined;
2240
2418
  } | undefined;
2241
- actions?: {
2242
- includeInstructions?: boolean | undefined;
2243
- includeMarkComplete?: boolean | undefined;
2244
- expirationActionId?: string | undefined;
2245
- expirationAction?: {
2246
- actionId: string | null;
2247
- findingStatus?: FindingStatus | null | undefined;
2248
- responseMessage?: string | undefined;
2249
- } | undefined;
2250
- simpleTriageYesActId?: string | undefined;
2251
- simpleTriageNoActId?: string | undefined;
2252
- resolveNowActionId?: string | undefined;
2253
- resolveNowAction?: {
2254
- actionId: string | null;
2255
- findingStatus?: FindingStatus | null | undefined;
2256
- responseMessage?: string | undefined;
2257
- } | undefined;
2258
- scheduleResolutionAction?: {
2259
- actionId: string | null;
2260
- findingStatus?: FindingStatus | null | undefined;
2261
- responseMessage?: string | undefined;
2262
- } | undefined;
2263
- launchAction?: {
2264
- actionId: string | null;
2265
- findingStatus?: FindingStatus | null | undefined;
2266
- responseMessage?: string | undefined;
2267
- } | undefined;
2268
- } | undefined;
2269
2419
  escalation?: {
2270
2420
  interval: {
2271
2421
  minutes: number;
@@ -2325,6 +2475,42 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2325
2475
  createdAt?: string | undefined;
2326
2476
  updatedAt?: string | undefined;
2327
2477
  deletedAt?: string | null | undefined;
2478
+ actions?: {
2479
+ includeInstructions?: boolean | undefined;
2480
+ includeMarkComplete?: boolean | undefined;
2481
+ expirationActionId?: string | undefined;
2482
+ expirationAction?: {
2483
+ actionId: string | null;
2484
+ findingStatus?: FindingStatus | null | undefined;
2485
+ responseMessage?: string | undefined;
2486
+ } | undefined;
2487
+ simpleTriageYesActId?: string | undefined;
2488
+ simpleTriageNoActId?: string | undefined;
2489
+ resolveNowActionId?: string | undefined;
2490
+ resolveNowAction?: {
2491
+ actionId: string | null;
2492
+ findingStatus?: FindingStatus | null | undefined;
2493
+ responseMessage?: string | undefined;
2494
+ } | undefined;
2495
+ scheduleResolutionAction?: {
2496
+ actionId: string | null;
2497
+ findingStatus?: FindingStatus | null | undefined;
2498
+ responseMessage?: string | undefined;
2499
+ } | undefined;
2500
+ launchAction?: {
2501
+ actionId: string | null;
2502
+ findingStatus?: FindingStatus | null | undefined;
2503
+ responseMessage?: string | undefined;
2504
+ } | undefined;
2505
+ actionButtons?: {
2506
+ id: string;
2507
+ actions: {
2508
+ actionId: string | null;
2509
+ }[];
2510
+ findingStatus: FindingStatus | null;
2511
+ actionLabel: string;
2512
+ }[] | undefined;
2513
+ } | undefined;
2328
2514
  fslStrategy?: "STANDARD" | undefined;
2329
2515
  tone?: {
2330
2516
  kind?: string | undefined;
@@ -2361,34 +2547,6 @@ export declare const _FlowSpecUpsertDto: z.ZodObject<z.objectUtil.extendShape<Om
2361
2547
  value?: number | undefined;
2362
2548
  units?: string | undefined;
2363
2549
  } | undefined;
2364
- actions?: {
2365
- includeInstructions?: boolean | undefined;
2366
- includeMarkComplete?: boolean | undefined;
2367
- expirationActionId?: string | undefined;
2368
- expirationAction?: {
2369
- actionId: string | null;
2370
- findingStatus?: FindingStatus | null | undefined;
2371
- responseMessage?: string | undefined;
2372
- } | undefined;
2373
- simpleTriageYesActId?: string | undefined;
2374
- simpleTriageNoActId?: string | undefined;
2375
- resolveNowActionId?: string | undefined;
2376
- resolveNowAction?: {
2377
- actionId: string | null;
2378
- findingStatus?: FindingStatus | null | undefined;
2379
- responseMessage?: string | undefined;
2380
- } | undefined;
2381
- scheduleResolutionAction?: {
2382
- actionId: string | null;
2383
- findingStatus?: FindingStatus | null | undefined;
2384
- responseMessage?: string | undefined;
2385
- } | undefined;
2386
- launchAction?: {
2387
- actionId: string | null;
2388
- findingStatus?: FindingStatus | null | undefined;
2389
- responseMessage?: string | undefined;
2390
- } | undefined;
2391
- } | undefined;
2392
2550
  escalation?: {
2393
2551
  interval: {
2394
2552
  minutes: number;
@@ -2430,117 +2588,6 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2430
2588
  createdAt: z.ZodOptional<z.ZodString>;
2431
2589
  updatedAt: z.ZodOptional<z.ZodString>;
2432
2590
  deletedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2433
- fslStrategy: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["STANDARD"]>>>>;
2434
- engagementChannelCids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2435
- tone: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2436
- kind: z.ZodOptional<z.ZodString>;
2437
- }, "strip", z.ZodTypeAny, {
2438
- kind?: string | undefined;
2439
- }, {
2440
- kind?: string | undefined;
2441
- }>>>;
2442
- targetResolution: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2443
- minutes: z.ZodNumber;
2444
- value: z.ZodOptional<z.ZodNumber>;
2445
- units: z.ZodOptional<z.ZodString>;
2446
- }, "strip", z.ZodTypeAny, {
2447
- minutes: number;
2448
- value?: number | undefined;
2449
- units?: string | undefined;
2450
- }, {
2451
- minutes: number;
2452
- value?: number | undefined;
2453
- units?: string | undefined;
2454
- }>>>;
2455
- delayEngagement: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2456
- minutes: z.ZodNumber;
2457
- value: z.ZodOptional<z.ZodNumber>;
2458
- units: z.ZodOptional<z.ZodString>;
2459
- }, "strip", z.ZodTypeAny, {
2460
- minutes: number;
2461
- value?: number | undefined;
2462
- units?: string | undefined;
2463
- }, {
2464
- minutes: number;
2465
- value?: number | undefined;
2466
- units?: string | undefined;
2467
- }>>>;
2468
- training: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2469
- subject: z.ZodOptional<z.ZodString>;
2470
- context: z.ZodOptional<z.ZodString>;
2471
- }, "strip", z.ZodTypeAny, {
2472
- context?: string | undefined;
2473
- subject?: string | undefined;
2474
- }, {
2475
- context?: string | undefined;
2476
- subject?: string | undefined;
2477
- }>>>;
2478
- triage: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2479
- message: z.ZodString;
2480
- yesAction: z.ZodObject<{
2481
- actionId: z.ZodNullable<z.ZodString>;
2482
- findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2483
- responseMessage: z.ZodOptional<z.ZodString>;
2484
- }, "strip", z.ZodTypeAny, {
2485
- actionId: string | null;
2486
- findingStatus?: FindingStatus | null | undefined;
2487
- responseMessage?: string | undefined;
2488
- }, {
2489
- actionId: string | null;
2490
- findingStatus?: FindingStatus | null | undefined;
2491
- responseMessage?: string | undefined;
2492
- }>;
2493
- noAction: z.ZodObject<{
2494
- actionId: z.ZodNullable<z.ZodString>;
2495
- findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2496
- responseMessage: z.ZodOptional<z.ZodString>;
2497
- }, "strip", z.ZodTypeAny, {
2498
- actionId: string | null;
2499
- findingStatus?: FindingStatus | null | undefined;
2500
- responseMessage?: string | undefined;
2501
- }, {
2502
- actionId: string | null;
2503
- findingStatus?: FindingStatus | null | undefined;
2504
- responseMessage?: string | undefined;
2505
- }>;
2506
- }, "strip", z.ZodTypeAny, {
2507
- message: string;
2508
- yesAction: {
2509
- actionId: string | null;
2510
- findingStatus?: FindingStatus | null | undefined;
2511
- responseMessage?: string | undefined;
2512
- };
2513
- noAction: {
2514
- actionId: string | null;
2515
- findingStatus?: FindingStatus | null | undefined;
2516
- responseMessage?: string | undefined;
2517
- };
2518
- }, {
2519
- message: string;
2520
- yesAction: {
2521
- actionId: string | null;
2522
- findingStatus?: FindingStatus | null | undefined;
2523
- responseMessage?: string | undefined;
2524
- };
2525
- noAction: {
2526
- actionId: string | null;
2527
- findingStatus?: FindingStatus | null | undefined;
2528
- responseMessage?: string | undefined;
2529
- };
2530
- }>>>;
2531
- reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2532
- minutes: z.ZodNumber;
2533
- value: z.ZodOptional<z.ZodNumber>;
2534
- units: z.ZodOptional<z.ZodString>;
2535
- }, "strip", z.ZodTypeAny, {
2536
- minutes: number;
2537
- value?: number | undefined;
2538
- units?: string | undefined;
2539
- }, {
2540
- minutes: number;
2541
- value?: number | undefined;
2542
- units?: string | undefined;
2543
- }>>>;
2544
2591
  actions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2545
2592
  includeInstructions: z.ZodOptional<z.ZodBoolean>;
2546
2593
  includeMarkComplete: z.ZodOptional<z.ZodBoolean>;
@@ -2612,6 +2659,32 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2612
2659
  findingStatus?: FindingStatus | null | undefined;
2613
2660
  responseMessage?: string | undefined;
2614
2661
  }>>;
2662
+ actionButtons: z.ZodOptional<z.ZodArray<z.ZodObject<{
2663
+ id: z.ZodString;
2664
+ actions: z.ZodArray<z.ZodObject<{
2665
+ actionId: z.ZodNullable<z.ZodString>;
2666
+ }, "strip", z.ZodTypeAny, {
2667
+ actionId: string | null;
2668
+ }, {
2669
+ actionId: string | null;
2670
+ }>, "many">;
2671
+ findingStatus: z.ZodNullable<z.ZodNativeEnum<typeof FindingStatus>>;
2672
+ actionLabel: z.ZodString;
2673
+ }, "strip", z.ZodTypeAny, {
2674
+ id: string;
2675
+ actions: {
2676
+ actionId: string | null;
2677
+ }[];
2678
+ findingStatus: FindingStatus | null;
2679
+ actionLabel: string;
2680
+ }, {
2681
+ id: string;
2682
+ actions: {
2683
+ actionId: string | null;
2684
+ }[];
2685
+ findingStatus: FindingStatus | null;
2686
+ actionLabel: string;
2687
+ }>, "many">>;
2615
2688
  }, "strip", z.ZodTypeAny, {
2616
2689
  includeInstructions?: boolean | undefined;
2617
2690
  includeMarkComplete?: boolean | undefined;
@@ -2639,6 +2712,14 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2639
2712
  findingStatus?: FindingStatus | null | undefined;
2640
2713
  responseMessage?: string | undefined;
2641
2714
  } | undefined;
2715
+ actionButtons?: {
2716
+ id: string;
2717
+ actions: {
2718
+ actionId: string | null;
2719
+ }[];
2720
+ findingStatus: FindingStatus | null;
2721
+ actionLabel: string;
2722
+ }[] | undefined;
2642
2723
  }, {
2643
2724
  includeInstructions?: boolean | undefined;
2644
2725
  includeMarkComplete?: boolean | undefined;
@@ -2666,6 +2747,125 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2666
2747
  findingStatus?: FindingStatus | null | undefined;
2667
2748
  responseMessage?: string | undefined;
2668
2749
  } | undefined;
2750
+ actionButtons?: {
2751
+ id: string;
2752
+ actions: {
2753
+ actionId: string | null;
2754
+ }[];
2755
+ findingStatus: FindingStatus | null;
2756
+ actionLabel: string;
2757
+ }[] | undefined;
2758
+ }>>>;
2759
+ fslStrategy: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["STANDARD"]>>>>;
2760
+ engagementChannelCids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2761
+ tone: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2762
+ kind: z.ZodOptional<z.ZodString>;
2763
+ }, "strip", z.ZodTypeAny, {
2764
+ kind?: string | undefined;
2765
+ }, {
2766
+ kind?: string | undefined;
2767
+ }>>>;
2768
+ targetResolution: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2769
+ minutes: z.ZodNumber;
2770
+ value: z.ZodOptional<z.ZodNumber>;
2771
+ units: z.ZodOptional<z.ZodString>;
2772
+ }, "strip", z.ZodTypeAny, {
2773
+ minutes: number;
2774
+ value?: number | undefined;
2775
+ units?: string | undefined;
2776
+ }, {
2777
+ minutes: number;
2778
+ value?: number | undefined;
2779
+ units?: string | undefined;
2780
+ }>>>;
2781
+ delayEngagement: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2782
+ minutes: z.ZodNumber;
2783
+ value: z.ZodOptional<z.ZodNumber>;
2784
+ units: z.ZodOptional<z.ZodString>;
2785
+ }, "strip", z.ZodTypeAny, {
2786
+ minutes: number;
2787
+ value?: number | undefined;
2788
+ units?: string | undefined;
2789
+ }, {
2790
+ minutes: number;
2791
+ value?: number | undefined;
2792
+ units?: string | undefined;
2793
+ }>>>;
2794
+ training: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2795
+ subject: z.ZodOptional<z.ZodString>;
2796
+ context: z.ZodOptional<z.ZodString>;
2797
+ }, "strip", z.ZodTypeAny, {
2798
+ context?: string | undefined;
2799
+ subject?: string | undefined;
2800
+ }, {
2801
+ context?: string | undefined;
2802
+ subject?: string | undefined;
2803
+ }>>>;
2804
+ triage: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2805
+ message: z.ZodString;
2806
+ yesAction: z.ZodObject<{
2807
+ actionId: z.ZodNullable<z.ZodString>;
2808
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2809
+ responseMessage: z.ZodOptional<z.ZodString>;
2810
+ }, "strip", z.ZodTypeAny, {
2811
+ actionId: string | null;
2812
+ findingStatus?: FindingStatus | null | undefined;
2813
+ responseMessage?: string | undefined;
2814
+ }, {
2815
+ actionId: string | null;
2816
+ findingStatus?: FindingStatus | null | undefined;
2817
+ responseMessage?: string | undefined;
2818
+ }>;
2819
+ noAction: z.ZodObject<{
2820
+ actionId: z.ZodNullable<z.ZodString>;
2821
+ findingStatus: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof FindingStatus>>>;
2822
+ responseMessage: z.ZodOptional<z.ZodString>;
2823
+ }, "strip", z.ZodTypeAny, {
2824
+ actionId: string | null;
2825
+ findingStatus?: FindingStatus | null | undefined;
2826
+ responseMessage?: string | undefined;
2827
+ }, {
2828
+ actionId: string | null;
2829
+ findingStatus?: FindingStatus | null | undefined;
2830
+ responseMessage?: string | undefined;
2831
+ }>;
2832
+ }, "strip", z.ZodTypeAny, {
2833
+ message: string;
2834
+ yesAction: {
2835
+ actionId: string | null;
2836
+ findingStatus?: FindingStatus | null | undefined;
2837
+ responseMessage?: string | undefined;
2838
+ };
2839
+ noAction: {
2840
+ actionId: string | null;
2841
+ findingStatus?: FindingStatus | null | undefined;
2842
+ responseMessage?: string | undefined;
2843
+ };
2844
+ }, {
2845
+ message: string;
2846
+ yesAction: {
2847
+ actionId: string | null;
2848
+ findingStatus?: FindingStatus | null | undefined;
2849
+ responseMessage?: string | undefined;
2850
+ };
2851
+ noAction: {
2852
+ actionId: string | null;
2853
+ findingStatus?: FindingStatus | null | undefined;
2854
+ responseMessage?: string | undefined;
2855
+ };
2856
+ }>>>;
2857
+ reminderInterval: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2858
+ minutes: z.ZodNumber;
2859
+ value: z.ZodOptional<z.ZodNumber>;
2860
+ units: z.ZodOptional<z.ZodString>;
2861
+ }, "strip", z.ZodTypeAny, {
2862
+ minutes: number;
2863
+ value?: number | undefined;
2864
+ units?: string | undefined;
2865
+ }, {
2866
+ minutes: number;
2867
+ value?: number | undefined;
2868
+ units?: string | undefined;
2669
2869
  }>>>;
2670
2870
  escalation: z.ZodOptional<z.ZodOptional<z.ZodObject<{
2671
2871
  interval: z.ZodObject<{
@@ -2792,6 +2992,42 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2792
2992
  createdAt?: string | undefined;
2793
2993
  updatedAt?: string | undefined;
2794
2994
  deletedAt?: string | null | undefined;
2995
+ actions?: {
2996
+ includeInstructions?: boolean | undefined;
2997
+ includeMarkComplete?: boolean | undefined;
2998
+ expirationActionId?: string | undefined;
2999
+ expirationAction?: {
3000
+ actionId: string | null;
3001
+ findingStatus?: FindingStatus | null | undefined;
3002
+ responseMessage?: string | undefined;
3003
+ } | undefined;
3004
+ simpleTriageYesActId?: string | undefined;
3005
+ simpleTriageNoActId?: string | undefined;
3006
+ resolveNowActionId?: string | undefined;
3007
+ resolveNowAction?: {
3008
+ actionId: string | null;
3009
+ findingStatus?: FindingStatus | null | undefined;
3010
+ responseMessage?: string | undefined;
3011
+ } | undefined;
3012
+ scheduleResolutionAction?: {
3013
+ actionId: string | null;
3014
+ findingStatus?: FindingStatus | null | undefined;
3015
+ responseMessage?: string | undefined;
3016
+ } | undefined;
3017
+ launchAction?: {
3018
+ actionId: string | null;
3019
+ findingStatus?: FindingStatus | null | undefined;
3020
+ responseMessage?: string | undefined;
3021
+ } | undefined;
3022
+ actionButtons?: {
3023
+ id: string;
3024
+ actions: {
3025
+ actionId: string | null;
3026
+ }[];
3027
+ findingStatus: FindingStatus | null;
3028
+ actionLabel: string;
3029
+ }[] | undefined;
3030
+ } | undefined;
2795
3031
  fslStrategy?: "STANDARD" | undefined;
2796
3032
  engagementChannelCids?: string[] | undefined;
2797
3033
  tone?: {
@@ -2829,34 +3065,6 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2829
3065
  value?: number | undefined;
2830
3066
  units?: string | undefined;
2831
3067
  } | undefined;
2832
- actions?: {
2833
- includeInstructions?: boolean | undefined;
2834
- includeMarkComplete?: boolean | undefined;
2835
- expirationActionId?: string | undefined;
2836
- expirationAction?: {
2837
- actionId: string | null;
2838
- findingStatus?: FindingStatus | null | undefined;
2839
- responseMessage?: string | undefined;
2840
- } | undefined;
2841
- simpleTriageYesActId?: string | undefined;
2842
- simpleTriageNoActId?: string | undefined;
2843
- resolveNowActionId?: string | undefined;
2844
- resolveNowAction?: {
2845
- actionId: string | null;
2846
- findingStatus?: FindingStatus | null | undefined;
2847
- responseMessage?: string | undefined;
2848
- } | undefined;
2849
- scheduleResolutionAction?: {
2850
- actionId: string | null;
2851
- findingStatus?: FindingStatus | null | undefined;
2852
- responseMessage?: string | undefined;
2853
- } | undefined;
2854
- launchAction?: {
2855
- actionId: string | null;
2856
- findingStatus?: FindingStatus | null | undefined;
2857
- responseMessage?: string | undefined;
2858
- } | undefined;
2859
- } | undefined;
2860
3068
  escalation?: {
2861
3069
  interval: {
2862
3070
  minutes: number;
@@ -2907,6 +3115,42 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2907
3115
  createdAt?: string | undefined;
2908
3116
  updatedAt?: string | undefined;
2909
3117
  deletedAt?: string | null | undefined;
3118
+ actions?: {
3119
+ includeInstructions?: boolean | undefined;
3120
+ includeMarkComplete?: boolean | undefined;
3121
+ expirationActionId?: string | undefined;
3122
+ expirationAction?: {
3123
+ actionId: string | null;
3124
+ findingStatus?: FindingStatus | null | undefined;
3125
+ responseMessage?: string | undefined;
3126
+ } | undefined;
3127
+ simpleTriageYesActId?: string | undefined;
3128
+ simpleTriageNoActId?: string | undefined;
3129
+ resolveNowActionId?: string | undefined;
3130
+ resolveNowAction?: {
3131
+ actionId: string | null;
3132
+ findingStatus?: FindingStatus | null | undefined;
3133
+ responseMessage?: string | undefined;
3134
+ } | undefined;
3135
+ scheduleResolutionAction?: {
3136
+ actionId: string | null;
3137
+ findingStatus?: FindingStatus | null | undefined;
3138
+ responseMessage?: string | undefined;
3139
+ } | undefined;
3140
+ launchAction?: {
3141
+ actionId: string | null;
3142
+ findingStatus?: FindingStatus | null | undefined;
3143
+ responseMessage?: string | undefined;
3144
+ } | undefined;
3145
+ actionButtons?: {
3146
+ id: string;
3147
+ actions: {
3148
+ actionId: string | null;
3149
+ }[];
3150
+ findingStatus: FindingStatus | null;
3151
+ actionLabel: string;
3152
+ }[] | undefined;
3153
+ } | undefined;
2910
3154
  fslStrategy?: "STANDARD" | undefined;
2911
3155
  engagementChannelCids?: string[] | undefined;
2912
3156
  tone?: {
@@ -2944,34 +3188,6 @@ export declare const _FlowSpecFilter: z.ZodObject<z.objectUtil.extendShape<z.obj
2944
3188
  value?: number | undefined;
2945
3189
  units?: string | undefined;
2946
3190
  } | undefined;
2947
- actions?: {
2948
- includeInstructions?: boolean | undefined;
2949
- includeMarkComplete?: boolean | undefined;
2950
- expirationActionId?: string | undefined;
2951
- expirationAction?: {
2952
- actionId: string | null;
2953
- findingStatus?: FindingStatus | null | undefined;
2954
- responseMessage?: string | undefined;
2955
- } | undefined;
2956
- simpleTriageYesActId?: string | undefined;
2957
- simpleTriageNoActId?: string | undefined;
2958
- resolveNowActionId?: string | undefined;
2959
- resolveNowAction?: {
2960
- actionId: string | null;
2961
- findingStatus?: FindingStatus | null | undefined;
2962
- responseMessage?: string | undefined;
2963
- } | undefined;
2964
- scheduleResolutionAction?: {
2965
- actionId: string | null;
2966
- findingStatus?: FindingStatus | null | undefined;
2967
- responseMessage?: string | undefined;
2968
- } | undefined;
2969
- launchAction?: {
2970
- actionId: string | null;
2971
- findingStatus?: FindingStatus | null | undefined;
2972
- responseMessage?: string | undefined;
2973
- } | undefined;
2974
- } | undefined;
2975
3191
  escalation?: {
2976
3192
  interval: {
2977
3193
  minutes: number;