@wise/dynamic-flow-types 4.3.0 → 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, ModalResponseBody, Step, Schema, Polling, LinkHandler, Toolbar, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ToolbarItem, ToolbarButton, ModalBehavior } from '../spec';
2
+ import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, SectionLayout, Layout, ItemCallToAction, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, SubflowResponseBody, ModalResponseBody, Step, Schema, Polling, LinkHandler, Toolbar, AllOfSchema, ArraySchema, BlobSchema, BooleanSchema, ConstSchema, IntegerSchema, NumberSchema, ObjectSchema, OneOfSchema, StringSchema, ArraySchemaList, PersistAsync, ArraySchemaTuple, PollingOnError, ToolbarItem, ToolbarButton, SubflowBehavior, ModalBehavior } from '../spec';
3
3
  export declare const imageSchema: z.ZodObject<{
4
4
  text: z.ZodOptional<z.ZodString>;
5
5
  url: z.ZodOptional<z.ZodString>;
@@ -54,6 +54,7 @@ export declare const iconTextSchema: z.ZodObject<{
54
54
  }>;
55
55
  export declare const sizeSchema: z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>;
56
56
  export declare const autocapitalizationTypeSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"characters">, z.ZodLiteral<"sentences">, z.ZodLiteral<"words">]>;
57
+ export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
57
58
  export declare const alignSchema: z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>;
58
59
  export declare const iconSchema: z.ZodUnion<[z.ZodObject<{
59
60
  name: z.ZodString;
@@ -884,7 +885,25 @@ export declare const searchResultSearchSchema: z.ZodObject<{
884
885
  accessibilityDescription?: string | undefined;
885
886
  } | undefined;
886
887
  }>;
887
- export declare const jsonElementSchema: z.ZodSchema<JsonElement>;
888
+ export declare const errorResponseBodySchema: z.ZodObject<{
889
+ refreshFormUrl: z.ZodOptional<z.ZodString>;
890
+ analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
891
+ error: z.ZodOptional<z.ZodString>;
892
+ validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
893
+ refreshUrl: z.ZodOptional<z.ZodString>;
894
+ }, "strip", z.ZodTypeAny, {
895
+ validation?: JsonElement | undefined;
896
+ refreshFormUrl?: string | undefined;
897
+ analytics?: Record<string, string> | undefined;
898
+ error?: string | undefined;
899
+ refreshUrl?: string | undefined;
900
+ }, {
901
+ validation?: JsonElement | undefined;
902
+ refreshFormUrl?: string | undefined;
903
+ analytics?: Record<string, string> | undefined;
904
+ error?: string | undefined;
905
+ refreshUrl?: string | undefined;
906
+ }>;
888
907
  export declare const externalSchema: z.ZodObject<{
889
908
  url: z.ZodString;
890
909
  }, "strip", z.ZodTypeAny, {
@@ -1299,6 +1318,22 @@ export declare const copyBehaviorSchema: z.ZodObject<{
1299
1318
  }>;
1300
1319
  export declare const navigationStackBehaviorSchema: z.ZodUnion<[z.ZodLiteral<"default">, z.ZodLiteral<"remove-previous">, z.ZodLiteral<"remove-all">, z.ZodLiteral<"replace-current">]>;
1301
1320
  export declare const actionTypeSchema: z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>;
1321
+ export declare const requestSchema: z.ZodObject<{
1322
+ url: z.ZodString;
1323
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
1324
+ body: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
1325
+ prefetch: z.ZodOptional<z.ZodBoolean>;
1326
+ }, "strip", z.ZodTypeAny, {
1327
+ url: string;
1328
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
1329
+ body?: JsonElement | undefined;
1330
+ prefetch?: boolean | undefined;
1331
+ }, {
1332
+ url: string;
1333
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
1334
+ body?: JsonElement | undefined;
1335
+ prefetch?: boolean | undefined;
1336
+ }>;
1302
1337
  export declare const actionSchema: z.ZodObject<{
1303
1338
  title: z.ZodOptional<z.ZodString>;
1304
1339
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
@@ -1320,6 +1355,7 @@ export declare const actionSchema: z.ZodObject<{
1320
1355
  $ref?: string | undefined;
1321
1356
  title?: string | undefined;
1322
1357
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1358
+ prefetch?: boolean | undefined;
1323
1359
  disabled?: boolean | undefined;
1324
1360
  $id?: string | undefined;
1325
1361
  id?: string | undefined;
@@ -1328,13 +1364,13 @@ export declare const actionSchema: z.ZodObject<{
1328
1364
  data?: JsonElement | undefined;
1329
1365
  timeout?: number | undefined;
1330
1366
  skipValidation?: boolean | undefined;
1331
- prefetch?: boolean | undefined;
1332
1367
  }, {
1333
1368
  url?: string | undefined;
1334
1369
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
1335
1370
  $ref?: string | undefined;
1336
1371
  title?: string | undefined;
1337
1372
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1373
+ prefetch?: boolean | undefined;
1338
1374
  disabled?: boolean | undefined;
1339
1375
  $id?: string | undefined;
1340
1376
  id?: string | undefined;
@@ -1343,7 +1379,13 @@ export declare const actionSchema: z.ZodObject<{
1343
1379
  data?: JsonElement | undefined;
1344
1380
  timeout?: number | undefined;
1345
1381
  skipValidation?: boolean | undefined;
1346
- prefetch?: boolean | undefined;
1382
+ }>;
1383
+ export declare const modalPresentationSchema: z.ZodObject<{
1384
+ type: z.ZodLiteral<"modal">;
1385
+ }, "strip", z.ZodTypeAny, {
1386
+ type: "modal";
1387
+ }, {
1388
+ type: "modal";
1347
1389
  }>;
1348
1390
  export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
1349
1391
  providesTitle: z.ZodOptional<z.ZodBoolean>;
@@ -1538,6 +1580,13 @@ export declare const summarySchema: z.ZodUnion<[z.ZodObject<{
1538
1580
  } | undefined;
1539
1581
  providesMedia?: boolean | undefined;
1540
1582
  }>]>;
1583
+ export declare const pushPresentationSchema: z.ZodObject<{
1584
+ type: z.ZodLiteral<"push">;
1585
+ }, "strip", z.ZodTypeAny, {
1586
+ type: "push";
1587
+ }, {
1588
+ type: "push";
1589
+ }>;
1541
1590
  export declare const linkBehaviorSchema: z.ZodObject<{
1542
1591
  type: z.ZodLiteral<"link">;
1543
1592
  url: z.ZodString;
@@ -1578,6 +1627,7 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1578
1627
  $ref?: string | undefined;
1579
1628
  title?: string | undefined;
1580
1629
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1630
+ prefetch?: boolean | undefined;
1581
1631
  disabled?: boolean | undefined;
1582
1632
  $id?: string | undefined;
1583
1633
  id?: string | undefined;
@@ -1586,13 +1636,13 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1586
1636
  data?: JsonElement | undefined;
1587
1637
  timeout?: number | undefined;
1588
1638
  skipValidation?: boolean | undefined;
1589
- prefetch?: boolean | undefined;
1590
1639
  }, {
1591
1640
  url?: string | undefined;
1592
1641
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
1593
1642
  $ref?: string | undefined;
1594
1643
  title?: string | undefined;
1595
1644
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1645
+ prefetch?: boolean | undefined;
1596
1646
  disabled?: boolean | undefined;
1597
1647
  $id?: string | undefined;
1598
1648
  id?: string | undefined;
@@ -1601,7 +1651,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1601
1651
  data?: JsonElement | undefined;
1602
1652
  timeout?: number | undefined;
1603
1653
  skipValidation?: boolean | undefined;
1604
- prefetch?: boolean | undefined;
1605
1654
  }>;
1606
1655
  }, "strip", z.ZodTypeAny, {
1607
1656
  action: {
@@ -1610,6 +1659,7 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1610
1659
  $ref?: string | undefined;
1611
1660
  title?: string | undefined;
1612
1661
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1662
+ prefetch?: boolean | undefined;
1613
1663
  disabled?: boolean | undefined;
1614
1664
  $id?: string | undefined;
1615
1665
  id?: string | undefined;
@@ -1618,7 +1668,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1618
1668
  data?: JsonElement | undefined;
1619
1669
  timeout?: number | undefined;
1620
1670
  skipValidation?: boolean | undefined;
1621
- prefetch?: boolean | undefined;
1622
1671
  };
1623
1672
  title?: string | undefined;
1624
1673
  }, {
@@ -1628,6 +1677,7 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1628
1677
  $ref?: string | undefined;
1629
1678
  title?: string | undefined;
1630
1679
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1680
+ prefetch?: boolean | undefined;
1631
1681
  disabled?: boolean | undefined;
1632
1682
  $id?: string | undefined;
1633
1683
  id?: string | undefined;
@@ -1636,7 +1686,6 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
1636
1686
  data?: JsonElement | undefined;
1637
1687
  timeout?: number | undefined;
1638
1688
  skipValidation?: boolean | undefined;
1639
- prefetch?: boolean | undefined;
1640
1689
  };
1641
1690
  title?: string | undefined;
1642
1691
  }>;
@@ -1670,6 +1719,7 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1670
1719
  $ref?: string | undefined;
1671
1720
  title?: string | undefined;
1672
1721
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1722
+ prefetch?: boolean | undefined;
1673
1723
  disabled?: boolean | undefined;
1674
1724
  $id?: string | undefined;
1675
1725
  id?: string | undefined;
@@ -1678,13 +1728,13 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1678
1728
  data?: JsonElement | undefined;
1679
1729
  timeout?: number | undefined;
1680
1730
  skipValidation?: boolean | undefined;
1681
- prefetch?: boolean | undefined;
1682
1731
  }, {
1683
1732
  url?: string | undefined;
1684
1733
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
1685
1734
  $ref?: string | undefined;
1686
1735
  title?: string | undefined;
1687
1736
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1737
+ prefetch?: boolean | undefined;
1688
1738
  disabled?: boolean | undefined;
1689
1739
  $id?: string | undefined;
1690
1740
  id?: string | undefined;
@@ -1693,7 +1743,6 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1693
1743
  data?: JsonElement | undefined;
1694
1744
  timeout?: number | undefined;
1695
1745
  skipValidation?: boolean | undefined;
1696
- prefetch?: boolean | undefined;
1697
1746
  }>;
1698
1747
  }, "strip", z.ZodTypeAny, {
1699
1748
  action: {
@@ -1702,6 +1751,7 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1702
1751
  $ref?: string | undefined;
1703
1752
  title?: string | undefined;
1704
1753
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1754
+ prefetch?: boolean | undefined;
1705
1755
  disabled?: boolean | undefined;
1706
1756
  $id?: string | undefined;
1707
1757
  id?: string | undefined;
@@ -1710,7 +1760,6 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1710
1760
  data?: JsonElement | undefined;
1711
1761
  timeout?: number | undefined;
1712
1762
  skipValidation?: boolean | undefined;
1713
- prefetch?: boolean | undefined;
1714
1763
  };
1715
1764
  type: "action";
1716
1765
  }, {
@@ -1720,6 +1769,7 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1720
1769
  $ref?: string | undefined;
1721
1770
  title?: string | undefined;
1722
1771
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1772
+ prefetch?: boolean | undefined;
1723
1773
  disabled?: boolean | undefined;
1724
1774
  $id?: string | undefined;
1725
1775
  id?: string | undefined;
@@ -1728,7 +1778,6 @@ export declare const actionBehaviorSchema: z.ZodObject<{
1728
1778
  data?: JsonElement | undefined;
1729
1779
  timeout?: number | undefined;
1730
1780
  skipValidation?: boolean | undefined;
1731
- prefetch?: boolean | undefined;
1732
1781
  };
1733
1782
  type: "action";
1734
1783
  }>;
@@ -1754,6 +1803,7 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1754
1803
  $ref?: string | undefined;
1755
1804
  title?: string | undefined;
1756
1805
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1806
+ prefetch?: boolean | undefined;
1757
1807
  disabled?: boolean | undefined;
1758
1808
  $id?: string | undefined;
1759
1809
  id?: string | undefined;
@@ -1762,13 +1812,13 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1762
1812
  data?: JsonElement | undefined;
1763
1813
  timeout?: number | undefined;
1764
1814
  skipValidation?: boolean | undefined;
1765
- prefetch?: boolean | undefined;
1766
1815
  }, {
1767
1816
  url?: string | undefined;
1768
1817
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
1769
1818
  $ref?: string | undefined;
1770
1819
  title?: string | undefined;
1771
1820
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1821
+ prefetch?: boolean | undefined;
1772
1822
  disabled?: boolean | undefined;
1773
1823
  $id?: string | undefined;
1774
1824
  id?: string | undefined;
@@ -1777,7 +1827,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1777
1827
  data?: JsonElement | undefined;
1778
1828
  timeout?: number | undefined;
1779
1829
  skipValidation?: boolean | undefined;
1780
- prefetch?: boolean | undefined;
1781
1830
  }>>;
1782
1831
  link: z.ZodOptional<z.ZodObject<{
1783
1832
  url: z.ZodString;
@@ -1796,6 +1845,7 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1796
1845
  $ref?: string | undefined;
1797
1846
  title?: string | undefined;
1798
1847
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1848
+ prefetch?: boolean | undefined;
1799
1849
  disabled?: boolean | undefined;
1800
1850
  $id?: string | undefined;
1801
1851
  id?: string | undefined;
@@ -1804,7 +1854,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1804
1854
  data?: JsonElement | undefined;
1805
1855
  timeout?: number | undefined;
1806
1856
  skipValidation?: boolean | undefined;
1807
- prefetch?: boolean | undefined;
1808
1857
  } | undefined;
1809
1858
  }, {
1810
1859
  link?: {
@@ -1816,6 +1865,7 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1816
1865
  $ref?: string | undefined;
1817
1866
  title?: string | undefined;
1818
1867
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
1868
+ prefetch?: boolean | undefined;
1819
1869
  disabled?: boolean | undefined;
1820
1870
  $id?: string | undefined;
1821
1871
  id?: string | undefined;
@@ -1824,7 +1874,6 @@ export declare const containerBehaviorSchema: z.ZodObject<{
1824
1874
  data?: JsonElement | undefined;
1825
1875
  timeout?: number | undefined;
1826
1876
  skipValidation?: boolean | undefined;
1827
- prefetch?: boolean | undefined;
1828
1877
  } | undefined;
1829
1878
  }>;
1830
1879
  export declare const suggestionsSchema: z.ZodObject<{
@@ -2124,6 +2173,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
2124
2173
  $ref?: string | undefined;
2125
2174
  title?: string | undefined;
2126
2175
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2176
+ prefetch?: boolean | undefined;
2127
2177
  disabled?: boolean | undefined;
2128
2178
  $id?: string | undefined;
2129
2179
  id?: string | undefined;
@@ -2132,13 +2182,13 @@ export declare const searchResultActionSchema: z.ZodObject<{
2132
2182
  data?: JsonElement | undefined;
2133
2183
  timeout?: number | undefined;
2134
2184
  skipValidation?: boolean | undefined;
2135
- prefetch?: boolean | undefined;
2136
2185
  }, {
2137
2186
  url?: string | undefined;
2138
2187
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
2139
2188
  $ref?: string | undefined;
2140
2189
  title?: string | undefined;
2141
2190
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2191
+ prefetch?: boolean | undefined;
2142
2192
  disabled?: boolean | undefined;
2143
2193
  $id?: string | undefined;
2144
2194
  id?: string | undefined;
@@ -2147,7 +2197,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
2147
2197
  data?: JsonElement | undefined;
2148
2198
  timeout?: number | undefined;
2149
2199
  skipValidation?: boolean | undefined;
2150
- prefetch?: boolean | undefined;
2151
2200
  }>;
2152
2201
  media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2153
2202
  type: z.ZodLiteral<"avatar">;
@@ -2221,6 +2270,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
2221
2270
  $ref?: string | undefined;
2222
2271
  title?: string | undefined;
2223
2272
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2273
+ prefetch?: boolean | undefined;
2224
2274
  disabled?: boolean | undefined;
2225
2275
  $id?: string | undefined;
2226
2276
  id?: string | undefined;
@@ -2229,7 +2279,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
2229
2279
  data?: JsonElement | undefined;
2230
2280
  timeout?: number | undefined;
2231
2281
  skipValidation?: boolean | undefined;
2232
- prefetch?: boolean | undefined;
2233
2282
  };
2234
2283
  type: "action";
2235
2284
  title: string;
@@ -2269,6 +2318,7 @@ export declare const searchResultActionSchema: z.ZodObject<{
2269
2318
  $ref?: string | undefined;
2270
2319
  title?: string | undefined;
2271
2320
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2321
+ prefetch?: boolean | undefined;
2272
2322
  disabled?: boolean | undefined;
2273
2323
  $id?: string | undefined;
2274
2324
  id?: string | undefined;
@@ -2277,7 +2327,6 @@ export declare const searchResultActionSchema: z.ZodObject<{
2277
2327
  data?: JsonElement | undefined;
2278
2328
  timeout?: number | undefined;
2279
2329
  skipValidation?: boolean | undefined;
2280
- prefetch?: boolean | undefined;
2281
2330
  };
2282
2331
  type: "action";
2283
2332
  title: string;
@@ -2333,6 +2382,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2333
2382
  $ref?: string | undefined;
2334
2383
  title?: string | undefined;
2335
2384
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2385
+ prefetch?: boolean | undefined;
2336
2386
  disabled?: boolean | undefined;
2337
2387
  $id?: string | undefined;
2338
2388
  id?: string | undefined;
@@ -2341,13 +2391,13 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2341
2391
  data?: JsonElement | undefined;
2342
2392
  timeout?: number | undefined;
2343
2393
  skipValidation?: boolean | undefined;
2344
- prefetch?: boolean | undefined;
2345
2394
  }, {
2346
2395
  url?: string | undefined;
2347
2396
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
2348
2397
  $ref?: string | undefined;
2349
2398
  title?: string | undefined;
2350
2399
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2400
+ prefetch?: boolean | undefined;
2351
2401
  disabled?: boolean | undefined;
2352
2402
  $id?: string | undefined;
2353
2403
  id?: string | undefined;
@@ -2356,7 +2406,6 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2356
2406
  data?: JsonElement | undefined;
2357
2407
  timeout?: number | undefined;
2358
2408
  skipValidation?: boolean | undefined;
2359
- prefetch?: boolean | undefined;
2360
2409
  }>;
2361
2410
  }, "strip", z.ZodTypeAny, {
2362
2411
  action: {
@@ -2365,6 +2414,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2365
2414
  $ref?: string | undefined;
2366
2415
  title?: string | undefined;
2367
2416
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2417
+ prefetch?: boolean | undefined;
2368
2418
  disabled?: boolean | undefined;
2369
2419
  $id?: string | undefined;
2370
2420
  id?: string | undefined;
@@ -2373,7 +2423,6 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2373
2423
  data?: JsonElement | undefined;
2374
2424
  timeout?: number | undefined;
2375
2425
  skipValidation?: boolean | undefined;
2376
- prefetch?: boolean | undefined;
2377
2426
  };
2378
2427
  }, {
2379
2428
  action: {
@@ -2382,6 +2431,7 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2382
2431
  $ref?: string | undefined;
2383
2432
  title?: string | undefined;
2384
2433
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2434
+ prefetch?: boolean | undefined;
2385
2435
  disabled?: boolean | undefined;
2386
2436
  $id?: string | undefined;
2387
2437
  id?: string | undefined;
@@ -2390,28 +2440,8 @@ export declare const actionResponseBodySchema: z.ZodObject<{
2390
2440
  data?: JsonElement | undefined;
2391
2441
  timeout?: number | undefined;
2392
2442
  skipValidation?: boolean | undefined;
2393
- prefetch?: boolean | undefined;
2394
2443
  };
2395
2444
  }>;
2396
- export declare const errorResponseBodySchema: z.ZodObject<{
2397
- refreshFormUrl: z.ZodOptional<z.ZodString>;
2398
- analytics: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2399
- error: z.ZodOptional<z.ZodString>;
2400
- validation: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2401
- refreshUrl: z.ZodOptional<z.ZodString>;
2402
- }, "strip", z.ZodTypeAny, {
2403
- validation?: JsonElement | undefined;
2404
- error?: string | undefined;
2405
- refreshFormUrl?: string | undefined;
2406
- analytics?: Record<string, string> | undefined;
2407
- refreshUrl?: string | undefined;
2408
- }, {
2409
- validation?: JsonElement | undefined;
2410
- error?: string | undefined;
2411
- refreshFormUrl?: string | undefined;
2412
- analytics?: Record<string, string> | undefined;
2413
- refreshUrl?: string | undefined;
2414
- }>;
2415
2445
  export declare const navigationSchema: z.ZodObject<{
2416
2446
  backButton: z.ZodOptional<z.ZodObject<{
2417
2447
  title: z.ZodOptional<z.ZodString>;
@@ -2436,6 +2466,7 @@ export declare const navigationSchema: z.ZodObject<{
2436
2466
  $ref?: string | undefined;
2437
2467
  title?: string | undefined;
2438
2468
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2469
+ prefetch?: boolean | undefined;
2439
2470
  disabled?: boolean | undefined;
2440
2471
  $id?: string | undefined;
2441
2472
  id?: string | undefined;
@@ -2444,13 +2475,13 @@ export declare const navigationSchema: z.ZodObject<{
2444
2475
  data?: JsonElement | undefined;
2445
2476
  timeout?: number | undefined;
2446
2477
  skipValidation?: boolean | undefined;
2447
- prefetch?: boolean | undefined;
2448
2478
  }, {
2449
2479
  url?: string | undefined;
2450
2480
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
2451
2481
  $ref?: string | undefined;
2452
2482
  title?: string | undefined;
2453
2483
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2484
+ prefetch?: boolean | undefined;
2454
2485
  disabled?: boolean | undefined;
2455
2486
  $id?: string | undefined;
2456
2487
  id?: string | undefined;
@@ -2459,7 +2490,6 @@ export declare const navigationSchema: z.ZodObject<{
2459
2490
  data?: JsonElement | undefined;
2460
2491
  timeout?: number | undefined;
2461
2492
  skipValidation?: boolean | undefined;
2462
- prefetch?: boolean | undefined;
2463
2493
  }>;
2464
2494
  }, "strip", z.ZodTypeAny, {
2465
2495
  action: {
@@ -2468,6 +2498,7 @@ export declare const navigationSchema: z.ZodObject<{
2468
2498
  $ref?: string | undefined;
2469
2499
  title?: string | undefined;
2470
2500
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2501
+ prefetch?: boolean | undefined;
2471
2502
  disabled?: boolean | undefined;
2472
2503
  $id?: string | undefined;
2473
2504
  id?: string | undefined;
@@ -2476,7 +2507,6 @@ export declare const navigationSchema: z.ZodObject<{
2476
2507
  data?: JsonElement | undefined;
2477
2508
  timeout?: number | undefined;
2478
2509
  skipValidation?: boolean | undefined;
2479
- prefetch?: boolean | undefined;
2480
2510
  };
2481
2511
  title?: string | undefined;
2482
2512
  }, {
@@ -2486,6 +2516,7 @@ export declare const navigationSchema: z.ZodObject<{
2486
2516
  $ref?: string | undefined;
2487
2517
  title?: string | undefined;
2488
2518
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2519
+ prefetch?: boolean | undefined;
2489
2520
  disabled?: boolean | undefined;
2490
2521
  $id?: string | undefined;
2491
2522
  id?: string | undefined;
@@ -2494,7 +2525,6 @@ export declare const navigationSchema: z.ZodObject<{
2494
2525
  data?: JsonElement | undefined;
2495
2526
  timeout?: number | undefined;
2496
2527
  skipValidation?: boolean | undefined;
2497
- prefetch?: boolean | undefined;
2498
2528
  };
2499
2529
  title?: string | undefined;
2500
2530
  }>>;
@@ -2521,6 +2551,7 @@ export declare const navigationSchema: z.ZodObject<{
2521
2551
  $ref?: string | undefined;
2522
2552
  title?: string | undefined;
2523
2553
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2554
+ prefetch?: boolean | undefined;
2524
2555
  disabled?: boolean | undefined;
2525
2556
  $id?: string | undefined;
2526
2557
  id?: string | undefined;
@@ -2529,13 +2560,13 @@ export declare const navigationSchema: z.ZodObject<{
2529
2560
  data?: JsonElement | undefined;
2530
2561
  timeout?: number | undefined;
2531
2562
  skipValidation?: boolean | undefined;
2532
- prefetch?: boolean | undefined;
2533
2563
  }, {
2534
2564
  url?: string | undefined;
2535
2565
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
2536
2566
  $ref?: string | undefined;
2537
2567
  title?: string | undefined;
2538
2568
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2569
+ prefetch?: boolean | undefined;
2539
2570
  disabled?: boolean | undefined;
2540
2571
  $id?: string | undefined;
2541
2572
  id?: string | undefined;
@@ -2544,7 +2575,6 @@ export declare const navigationSchema: z.ZodObject<{
2544
2575
  data?: JsonElement | undefined;
2545
2576
  timeout?: number | undefined;
2546
2577
  skipValidation?: boolean | undefined;
2547
- prefetch?: boolean | undefined;
2548
2578
  }>;
2549
2579
  }, "strip", z.ZodTypeAny, {
2550
2580
  action: {
@@ -2553,6 +2583,7 @@ export declare const navigationSchema: z.ZodObject<{
2553
2583
  $ref?: string | undefined;
2554
2584
  title?: string | undefined;
2555
2585
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2586
+ prefetch?: boolean | undefined;
2556
2587
  disabled?: boolean | undefined;
2557
2588
  $id?: string | undefined;
2558
2589
  id?: string | undefined;
@@ -2561,7 +2592,6 @@ export declare const navigationSchema: z.ZodObject<{
2561
2592
  data?: JsonElement | undefined;
2562
2593
  timeout?: number | undefined;
2563
2594
  skipValidation?: boolean | undefined;
2564
- prefetch?: boolean | undefined;
2565
2595
  };
2566
2596
  title?: string | undefined;
2567
2597
  }, {
@@ -2571,6 +2601,7 @@ export declare const navigationSchema: z.ZodObject<{
2571
2601
  $ref?: string | undefined;
2572
2602
  title?: string | undefined;
2573
2603
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2604
+ prefetch?: boolean | undefined;
2574
2605
  disabled?: boolean | undefined;
2575
2606
  $id?: string | undefined;
2576
2607
  id?: string | undefined;
@@ -2579,7 +2610,6 @@ export declare const navigationSchema: z.ZodObject<{
2579
2610
  data?: JsonElement | undefined;
2580
2611
  timeout?: number | undefined;
2581
2612
  skipValidation?: boolean | undefined;
2582
- prefetch?: boolean | undefined;
2583
2613
  };
2584
2614
  title?: string | undefined;
2585
2615
  }>>;
@@ -2592,6 +2622,7 @@ export declare const navigationSchema: z.ZodObject<{
2592
2622
  $ref?: string | undefined;
2593
2623
  title?: string | undefined;
2594
2624
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2625
+ prefetch?: boolean | undefined;
2595
2626
  disabled?: boolean | undefined;
2596
2627
  $id?: string | undefined;
2597
2628
  id?: string | undefined;
@@ -2600,7 +2631,6 @@ export declare const navigationSchema: z.ZodObject<{
2600
2631
  data?: JsonElement | undefined;
2601
2632
  timeout?: number | undefined;
2602
2633
  skipValidation?: boolean | undefined;
2603
- prefetch?: boolean | undefined;
2604
2634
  };
2605
2635
  title?: string | undefined;
2606
2636
  } | undefined;
@@ -2611,6 +2641,7 @@ export declare const navigationSchema: z.ZodObject<{
2611
2641
  $ref?: string | undefined;
2612
2642
  title?: string | undefined;
2613
2643
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2644
+ prefetch?: boolean | undefined;
2614
2645
  disabled?: boolean | undefined;
2615
2646
  $id?: string | undefined;
2616
2647
  id?: string | undefined;
@@ -2619,7 +2650,6 @@ export declare const navigationSchema: z.ZodObject<{
2619
2650
  data?: JsonElement | undefined;
2620
2651
  timeout?: number | undefined;
2621
2652
  skipValidation?: boolean | undefined;
2622
- prefetch?: boolean | undefined;
2623
2653
  };
2624
2654
  title?: string | undefined;
2625
2655
  } | undefined;
@@ -2632,6 +2662,7 @@ export declare const navigationSchema: z.ZodObject<{
2632
2662
  $ref?: string | undefined;
2633
2663
  title?: string | undefined;
2634
2664
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2665
+ prefetch?: boolean | undefined;
2635
2666
  disabled?: boolean | undefined;
2636
2667
  $id?: string | undefined;
2637
2668
  id?: string | undefined;
@@ -2640,7 +2671,6 @@ export declare const navigationSchema: z.ZodObject<{
2640
2671
  data?: JsonElement | undefined;
2641
2672
  timeout?: number | undefined;
2642
2673
  skipValidation?: boolean | undefined;
2643
- prefetch?: boolean | undefined;
2644
2674
  };
2645
2675
  title?: string | undefined;
2646
2676
  } | undefined;
@@ -2651,6 +2681,7 @@ export declare const navigationSchema: z.ZodObject<{
2651
2681
  $ref?: string | undefined;
2652
2682
  title?: string | undefined;
2653
2683
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2684
+ prefetch?: boolean | undefined;
2654
2685
  disabled?: boolean | undefined;
2655
2686
  $id?: string | undefined;
2656
2687
  id?: string | undefined;
@@ -2659,12 +2690,82 @@ export declare const navigationSchema: z.ZodObject<{
2659
2690
  data?: JsonElement | undefined;
2660
2691
  timeout?: number | undefined;
2661
2692
  skipValidation?: boolean | undefined;
2662
- prefetch?: boolean | undefined;
2663
2693
  };
2664
2694
  title?: string | undefined;
2665
2695
  } | undefined;
2666
2696
  stackBehavior?: "default" | "remove-previous" | "remove-all" | "replace-current" | undefined;
2667
2697
  }>;
2698
+ export declare const presentationSchema: z.ZodUnion<[z.ZodObject<{
2699
+ type: z.ZodLiteral<"modal">;
2700
+ }, "strip", z.ZodTypeAny, {
2701
+ type: "modal";
2702
+ }, {
2703
+ type: "modal";
2704
+ }>, z.ZodObject<{
2705
+ type: z.ZodLiteral<"push">;
2706
+ }, "strip", z.ZodTypeAny, {
2707
+ type: "push";
2708
+ }, {
2709
+ type: "push";
2710
+ }>]>;
2711
+ export declare const dynamicLaunchConfigSchema: z.ZodObject<{
2712
+ type: z.ZodLiteral<"dynamic">;
2713
+ request: z.ZodObject<{
2714
+ url: z.ZodString;
2715
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
2716
+ body: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2717
+ prefetch: z.ZodOptional<z.ZodBoolean>;
2718
+ }, "strip", z.ZodTypeAny, {
2719
+ url: string;
2720
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
2721
+ body?: JsonElement | undefined;
2722
+ prefetch?: boolean | undefined;
2723
+ }, {
2724
+ url: string;
2725
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
2726
+ body?: JsonElement | undefined;
2727
+ prefetch?: boolean | undefined;
2728
+ }>;
2729
+ presentation: z.ZodUnion<[z.ZodObject<{
2730
+ type: z.ZodLiteral<"modal">;
2731
+ }, "strip", z.ZodTypeAny, {
2732
+ type: "modal";
2733
+ }, {
2734
+ type: "modal";
2735
+ }>, z.ZodObject<{
2736
+ type: z.ZodLiteral<"push">;
2737
+ }, "strip", z.ZodTypeAny, {
2738
+ type: "push";
2739
+ }, {
2740
+ type: "push";
2741
+ }>]>;
2742
+ }, "strip", z.ZodTypeAny, {
2743
+ type: "dynamic";
2744
+ request: {
2745
+ url: string;
2746
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
2747
+ body?: JsonElement | undefined;
2748
+ prefetch?: boolean | undefined;
2749
+ };
2750
+ presentation: {
2751
+ type: "modal";
2752
+ } | {
2753
+ type: "push";
2754
+ };
2755
+ }, {
2756
+ type: "dynamic";
2757
+ request: {
2758
+ url: string;
2759
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
2760
+ body?: JsonElement | undefined;
2761
+ prefetch?: boolean | undefined;
2762
+ };
2763
+ presentation: {
2764
+ type: "modal";
2765
+ } | {
2766
+ type: "push";
2767
+ };
2768
+ }>;
2668
2769
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2669
2770
  type: z.ZodLiteral<"action">;
2670
2771
  title: z.ZodString;
@@ -2719,6 +2820,7 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2719
2820
  $ref?: string | undefined;
2720
2821
  title?: string | undefined;
2721
2822
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2823
+ prefetch?: boolean | undefined;
2722
2824
  disabled?: boolean | undefined;
2723
2825
  $id?: string | undefined;
2724
2826
  id?: string | undefined;
@@ -2727,13 +2829,13 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2727
2829
  data?: JsonElement | undefined;
2728
2830
  timeout?: number | undefined;
2729
2831
  skipValidation?: boolean | undefined;
2730
- prefetch?: boolean | undefined;
2731
2832
  }, {
2732
2833
  url?: string | undefined;
2733
2834
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
2734
2835
  $ref?: string | undefined;
2735
2836
  title?: string | undefined;
2736
2837
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2838
+ prefetch?: boolean | undefined;
2737
2839
  disabled?: boolean | undefined;
2738
2840
  $id?: string | undefined;
2739
2841
  id?: string | undefined;
@@ -2742,7 +2844,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2742
2844
  data?: JsonElement | undefined;
2743
2845
  timeout?: number | undefined;
2744
2846
  skipValidation?: boolean | undefined;
2745
- prefetch?: boolean | undefined;
2746
2847
  }>;
2747
2848
  media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2748
2849
  type: z.ZodLiteral<"avatar">;
@@ -2816,6 +2917,7 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2816
2917
  $ref?: string | undefined;
2817
2918
  title?: string | undefined;
2818
2919
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2920
+ prefetch?: boolean | undefined;
2819
2921
  disabled?: boolean | undefined;
2820
2922
  $id?: string | undefined;
2821
2923
  id?: string | undefined;
@@ -2824,7 +2926,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2824
2926
  data?: JsonElement | undefined;
2825
2927
  timeout?: number | undefined;
2826
2928
  skipValidation?: boolean | undefined;
2827
- prefetch?: boolean | undefined;
2828
2929
  };
2829
2930
  type: "action";
2830
2931
  title: string;
@@ -2864,6 +2965,7 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2864
2965
  $ref?: string | undefined;
2865
2966
  title?: string | undefined;
2866
2967
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
2968
+ prefetch?: boolean | undefined;
2867
2969
  disabled?: boolean | undefined;
2868
2970
  $id?: string | undefined;
2869
2971
  id?: string | undefined;
@@ -2872,7 +2974,6 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2872
2974
  data?: JsonElement | undefined;
2873
2975
  timeout?: number | undefined;
2874
2976
  skipValidation?: boolean | undefined;
2875
- prefetch?: boolean | undefined;
2876
2977
  };
2877
2978
  type: "action";
2878
2979
  title: string;
@@ -3096,6 +3197,64 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
3096
3197
  accessibilityDescription?: string | undefined;
3097
3198
  } | undefined;
3098
3199
  }>]>;
3200
+ export declare const launchConfigSchema: z.ZodObject<{
3201
+ type: z.ZodLiteral<"dynamic">;
3202
+ request: z.ZodObject<{
3203
+ url: z.ZodString;
3204
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
3205
+ body: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3206
+ prefetch: z.ZodOptional<z.ZodBoolean>;
3207
+ }, "strip", z.ZodTypeAny, {
3208
+ url: string;
3209
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
3210
+ body?: JsonElement | undefined;
3211
+ prefetch?: boolean | undefined;
3212
+ }, {
3213
+ url: string;
3214
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
3215
+ body?: JsonElement | undefined;
3216
+ prefetch?: boolean | undefined;
3217
+ }>;
3218
+ presentation: z.ZodUnion<[z.ZodObject<{
3219
+ type: z.ZodLiteral<"modal">;
3220
+ }, "strip", z.ZodTypeAny, {
3221
+ type: "modal";
3222
+ }, {
3223
+ type: "modal";
3224
+ }>, z.ZodObject<{
3225
+ type: z.ZodLiteral<"push">;
3226
+ }, "strip", z.ZodTypeAny, {
3227
+ type: "push";
3228
+ }, {
3229
+ type: "push";
3230
+ }>]>;
3231
+ }, "strip", z.ZodTypeAny, {
3232
+ type: "dynamic";
3233
+ request: {
3234
+ url: string;
3235
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
3236
+ body?: JsonElement | undefined;
3237
+ prefetch?: boolean | undefined;
3238
+ };
3239
+ presentation: {
3240
+ type: "modal";
3241
+ } | {
3242
+ type: "push";
3243
+ };
3244
+ }, {
3245
+ type: "dynamic";
3246
+ request: {
3247
+ url: string;
3248
+ method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
3249
+ body?: JsonElement | undefined;
3250
+ prefetch?: boolean | undefined;
3251
+ };
3252
+ presentation: {
3253
+ type: "modal";
3254
+ } | {
3255
+ type: "push";
3256
+ };
3257
+ }>;
3099
3258
  export declare const searchResponseBodySchema: z.ZodObject<{
3100
3259
  results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
3101
3260
  type: z.ZodLiteral<"action">;
@@ -3151,6 +3310,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3151
3310
  $ref?: string | undefined;
3152
3311
  title?: string | undefined;
3153
3312
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3313
+ prefetch?: boolean | undefined;
3154
3314
  disabled?: boolean | undefined;
3155
3315
  $id?: string | undefined;
3156
3316
  id?: string | undefined;
@@ -3159,13 +3319,13 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3159
3319
  data?: JsonElement | undefined;
3160
3320
  timeout?: number | undefined;
3161
3321
  skipValidation?: boolean | undefined;
3162
- prefetch?: boolean | undefined;
3163
3322
  }, {
3164
3323
  url?: string | undefined;
3165
3324
  type?: "primary" | "secondary" | "link" | "positive" | "negative" | undefined;
3166
3325
  $ref?: string | undefined;
3167
3326
  title?: string | undefined;
3168
3327
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3328
+ prefetch?: boolean | undefined;
3169
3329
  disabled?: boolean | undefined;
3170
3330
  $id?: string | undefined;
3171
3331
  id?: string | undefined;
@@ -3174,7 +3334,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3174
3334
  data?: JsonElement | undefined;
3175
3335
  timeout?: number | undefined;
3176
3336
  skipValidation?: boolean | undefined;
3177
- prefetch?: boolean | undefined;
3178
3337
  }>;
3179
3338
  media: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3180
3339
  type: z.ZodLiteral<"avatar">;
@@ -3248,6 +3407,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3248
3407
  $ref?: string | undefined;
3249
3408
  title?: string | undefined;
3250
3409
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3410
+ prefetch?: boolean | undefined;
3251
3411
  disabled?: boolean | undefined;
3252
3412
  $id?: string | undefined;
3253
3413
  id?: string | undefined;
@@ -3256,7 +3416,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3256
3416
  data?: JsonElement | undefined;
3257
3417
  timeout?: number | undefined;
3258
3418
  skipValidation?: boolean | undefined;
3259
- prefetch?: boolean | undefined;
3260
3419
  };
3261
3420
  type: "action";
3262
3421
  title: string;
@@ -3296,6 +3455,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3296
3455
  $ref?: string | undefined;
3297
3456
  title?: string | undefined;
3298
3457
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3458
+ prefetch?: boolean | undefined;
3299
3459
  disabled?: boolean | undefined;
3300
3460
  $id?: string | undefined;
3301
3461
  id?: string | undefined;
@@ -3304,7 +3464,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3304
3464
  data?: JsonElement | undefined;
3305
3465
  timeout?: number | undefined;
3306
3466
  skipValidation?: boolean | undefined;
3307
- prefetch?: boolean | undefined;
3308
3467
  };
3309
3468
  type: "action";
3310
3469
  title: string;
@@ -3574,6 +3733,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3574
3733
  $ref?: string | undefined;
3575
3734
  title?: string | undefined;
3576
3735
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3736
+ prefetch?: boolean | undefined;
3577
3737
  disabled?: boolean | undefined;
3578
3738
  $id?: string | undefined;
3579
3739
  id?: string | undefined;
@@ -3582,7 +3742,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3582
3742
  data?: JsonElement | undefined;
3583
3743
  timeout?: number | undefined;
3584
3744
  skipValidation?: boolean | undefined;
3585
- prefetch?: boolean | undefined;
3586
3745
  };
3587
3746
  type: "action";
3588
3747
  title: string;
@@ -3662,6 +3821,7 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3662
3821
  $ref?: string | undefined;
3663
3822
  title?: string | undefined;
3664
3823
  method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | undefined;
3824
+ prefetch?: boolean | undefined;
3665
3825
  disabled?: boolean | undefined;
3666
3826
  $id?: string | undefined;
3667
3827
  id?: string | undefined;
@@ -3670,7 +3830,6 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3670
3830
  data?: JsonElement | undefined;
3671
3831
  timeout?: number | undefined;
3672
3832
  skipValidation?: boolean | undefined;
3673
- prefetch?: boolean | undefined;
3674
3833
  };
3675
3834
  type: "action";
3676
3835
  title: string;
@@ -3730,6 +3889,7 @@ export declare const modalLayoutSchema: z.ZodSchema<ModalLayout>;
3730
3889
  export declare const reviewLayoutSchema: z.ZodSchema<ReviewLayout>;
3731
3890
  export declare const reviewLayoutFieldSchema: z.ZodSchema<ReviewLayoutField>;
3732
3891
  export declare const modalLayoutContentSchema: z.ZodSchema<ModalLayoutContent>;
3892
+ export declare const subflowResponseBodySchema: z.ZodSchema<SubflowResponseBody>;
3733
3893
  export declare const modalResponseBodySchema: z.ZodSchema<ModalResponseBody>;
3734
3894
  export declare const stepSchema: z.ZodSchema<Step>;
3735
3895
  export declare const schemaSchema: z.ZodSchema<Schema>;
@@ -3752,4 +3912,5 @@ export declare const arraySchemaTupleSchema: z.ZodSchema<ArraySchemaTuple>;
3752
3912
  export declare const pollingOnErrorSchema: z.ZodSchema<PollingOnError>;
3753
3913
  export declare const toolbarItemSchema: z.ZodSchema<ToolbarItem>;
3754
3914
  export declare const toolbarButtonSchema: z.ZodSchema<ToolbarButton>;
3915
+ export declare const subflowBehaviorSchema: z.ZodSchema<SubflowBehavior>;
3755
3916
  export declare const modalBehaviorSchema: z.ZodSchema<ModalBehavior>;