@wise/dynamic-flow-types 4.13.0 → 4.14.0-experimental-76b77f2
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.
- package/build/renderers/CollectionRendererProps.d.ts +59 -0
- package/build/renderers/CollectionRendererProps.d.ts.map +1 -0
- package/build/renderers/RendererProps.d.ts +3 -2
- package/build/renderers/RendererProps.d.ts.map +1 -1
- package/build/renderers/index.d.ts +1 -0
- package/build/renderers/index.d.ts.map +1 -1
- package/build/spec/index.d.ts +1 -0
- package/build/spec/index.d.ts.map +1 -1
- package/build/spec/layout/CollectionLayout.d.ts +85 -0
- package/build/spec/layout/CollectionLayout.d.ts.map +1 -0
- package/build/spec/layout/Layout.d.ts +4 -3
- package/build/spec/layout/Layout.d.ts.map +1 -1
- package/build/spec/main.js +88 -5
- package/build/spec/main.mjs +88 -5
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/zod/schemas.d.ts +118 -58
- package/build/zod/schemas.d.ts.map +1 -1
- package/build/zod/schemas.ts +1053 -956
- package/package.json +2 -2
package/build/zod/schemas.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, UpsellLayoutCallToAction, UpsellLayout, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem,
|
|
2
|
+
import type { JsonElement, AdditionalInfo, Behavior, ReviewLayoutCallToAction, TabsLayout, TabsLayoutTab, AlertLayout, AlertLayoutCallToAction, ListLayout, ListLayoutCallToAction, ListLayoutItem, UpsellLayoutCallToAction, UpsellLayout, DecisionLayout, DecisionLayoutOption, SectionLayoutCallToAction, StatusListLayout, StatusListLayoutItem, CollectionLayout, CollectionState, CollectionSection, CollectionCallToAction, CollectionItem, CollectionResponse, Layout, SectionLayout, ItemCallToAction, SearchLayout, SearchInitialState, BoxLayout, ButtonLayout, ColumnsLayout, ModalLayout, ReviewLayout, ReviewLayoutField, ModalLayoutContent, SearchResponse, SearchLayoutResponseBody, SearchInitialLayoutConfig, 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>;
|
|
@@ -408,6 +408,60 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
408
408
|
align?: "left" | "right" | "center" | undefined;
|
|
409
409
|
}>;
|
|
410
410
|
export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
|
|
411
|
+
export declare const collectionSearchSchema: z.ZodObject<{
|
|
412
|
+
param: z.ZodString;
|
|
413
|
+
title: z.ZodOptional<z.ZodString>;
|
|
414
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
415
|
+
}, "strip", z.ZodTypeAny, {
|
|
416
|
+
param: string;
|
|
417
|
+
title?: string | undefined;
|
|
418
|
+
hint?: string | undefined;
|
|
419
|
+
}, {
|
|
420
|
+
param: string;
|
|
421
|
+
title?: string | undefined;
|
|
422
|
+
hint?: string | undefined;
|
|
423
|
+
}>;
|
|
424
|
+
export declare const collectionFilterSchema: z.ZodObject<{
|
|
425
|
+
type: z.ZodLiteral<"select">;
|
|
426
|
+
param: z.ZodString;
|
|
427
|
+
options: z.ZodArray<z.ZodObject<{
|
|
428
|
+
id: z.ZodString;
|
|
429
|
+
title: z.ZodString;
|
|
430
|
+
accessibilityDescription: z.ZodOptional<z.ZodString>;
|
|
431
|
+
selected: z.ZodOptional<z.ZodBoolean>;
|
|
432
|
+
}, "strip", z.ZodTypeAny, {
|
|
433
|
+
title: string;
|
|
434
|
+
id: string;
|
|
435
|
+
accessibilityDescription?: string | undefined;
|
|
436
|
+
selected?: boolean | undefined;
|
|
437
|
+
}, {
|
|
438
|
+
title: string;
|
|
439
|
+
id: string;
|
|
440
|
+
accessibilityDescription?: string | undefined;
|
|
441
|
+
selected?: boolean | undefined;
|
|
442
|
+
}>, "many">;
|
|
443
|
+
multiSelection: z.ZodOptional<z.ZodBoolean>;
|
|
444
|
+
}, "strip", z.ZodTypeAny, {
|
|
445
|
+
options: {
|
|
446
|
+
title: string;
|
|
447
|
+
id: string;
|
|
448
|
+
accessibilityDescription?: string | undefined;
|
|
449
|
+
selected?: boolean | undefined;
|
|
450
|
+
}[];
|
|
451
|
+
type: "select";
|
|
452
|
+
param: string;
|
|
453
|
+
multiSelection?: boolean | undefined;
|
|
454
|
+
}, {
|
|
455
|
+
options: {
|
|
456
|
+
title: string;
|
|
457
|
+
id: string;
|
|
458
|
+
accessibilityDescription?: string | undefined;
|
|
459
|
+
selected?: boolean | undefined;
|
|
460
|
+
}[];
|
|
461
|
+
type: "select";
|
|
462
|
+
param: string;
|
|
463
|
+
multiSelection?: boolean | undefined;
|
|
464
|
+
}>;
|
|
411
465
|
export declare const instructionsLayoutItemSchema: z.ZodObject<{
|
|
412
466
|
text: z.ZodString;
|
|
413
467
|
context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
|
|
@@ -1447,9 +1501,9 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
1447
1501
|
prefetch?: boolean | undefined;
|
|
1448
1502
|
$ref?: string | undefined;
|
|
1449
1503
|
title?: string | undefined;
|
|
1504
|
+
id?: string | undefined;
|
|
1450
1505
|
disabled?: boolean | undefined;
|
|
1451
1506
|
$id?: string | undefined;
|
|
1452
|
-
id?: string | undefined;
|
|
1453
1507
|
exit?: boolean | undefined;
|
|
1454
1508
|
result?: JsonElement | undefined;
|
|
1455
1509
|
data?: JsonElement | undefined;
|
|
@@ -1462,9 +1516,9 @@ export declare const actionSchema: z.ZodObject<{
|
|
|
1462
1516
|
prefetch?: boolean | undefined;
|
|
1463
1517
|
$ref?: string | undefined;
|
|
1464
1518
|
title?: string | undefined;
|
|
1519
|
+
id?: string | undefined;
|
|
1465
1520
|
disabled?: boolean | undefined;
|
|
1466
1521
|
$id?: string | undefined;
|
|
1467
|
-
id?: string | undefined;
|
|
1468
1522
|
exit?: boolean | undefined;
|
|
1469
1523
|
result?: JsonElement | undefined;
|
|
1470
1524
|
data?: JsonElement | undefined;
|
|
@@ -1719,9 +1773,9 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1719
1773
|
prefetch?: boolean | undefined;
|
|
1720
1774
|
$ref?: string | undefined;
|
|
1721
1775
|
title?: string | undefined;
|
|
1776
|
+
id?: string | undefined;
|
|
1722
1777
|
disabled?: boolean | undefined;
|
|
1723
1778
|
$id?: string | undefined;
|
|
1724
|
-
id?: string | undefined;
|
|
1725
1779
|
exit?: boolean | undefined;
|
|
1726
1780
|
result?: JsonElement | undefined;
|
|
1727
1781
|
data?: JsonElement | undefined;
|
|
@@ -1734,9 +1788,9 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1734
1788
|
prefetch?: boolean | undefined;
|
|
1735
1789
|
$ref?: string | undefined;
|
|
1736
1790
|
title?: string | undefined;
|
|
1791
|
+
id?: string | undefined;
|
|
1737
1792
|
disabled?: boolean | undefined;
|
|
1738
1793
|
$id?: string | undefined;
|
|
1739
|
-
id?: string | undefined;
|
|
1740
1794
|
exit?: boolean | undefined;
|
|
1741
1795
|
result?: JsonElement | undefined;
|
|
1742
1796
|
data?: JsonElement | undefined;
|
|
@@ -1751,9 +1805,9 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1751
1805
|
prefetch?: boolean | undefined;
|
|
1752
1806
|
$ref?: string | undefined;
|
|
1753
1807
|
title?: string | undefined;
|
|
1808
|
+
id?: string | undefined;
|
|
1754
1809
|
disabled?: boolean | undefined;
|
|
1755
1810
|
$id?: string | undefined;
|
|
1756
|
-
id?: string | undefined;
|
|
1757
1811
|
exit?: boolean | undefined;
|
|
1758
1812
|
result?: JsonElement | undefined;
|
|
1759
1813
|
data?: JsonElement | undefined;
|
|
@@ -1769,9 +1823,9 @@ export declare const navigationBackBehaviorSchema: z.ZodObject<{
|
|
|
1769
1823
|
prefetch?: boolean | undefined;
|
|
1770
1824
|
$ref?: string | undefined;
|
|
1771
1825
|
title?: string | undefined;
|
|
1826
|
+
id?: string | undefined;
|
|
1772
1827
|
disabled?: boolean | undefined;
|
|
1773
1828
|
$id?: string | undefined;
|
|
1774
|
-
id?: string | undefined;
|
|
1775
1829
|
exit?: boolean | undefined;
|
|
1776
1830
|
result?: JsonElement | undefined;
|
|
1777
1831
|
data?: JsonElement | undefined;
|
|
@@ -1811,9 +1865,9 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1811
1865
|
prefetch?: boolean | undefined;
|
|
1812
1866
|
$ref?: string | undefined;
|
|
1813
1867
|
title?: string | undefined;
|
|
1868
|
+
id?: string | undefined;
|
|
1814
1869
|
disabled?: boolean | undefined;
|
|
1815
1870
|
$id?: string | undefined;
|
|
1816
|
-
id?: string | undefined;
|
|
1817
1871
|
exit?: boolean | undefined;
|
|
1818
1872
|
result?: JsonElement | undefined;
|
|
1819
1873
|
data?: JsonElement | undefined;
|
|
@@ -1826,9 +1880,9 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1826
1880
|
prefetch?: boolean | undefined;
|
|
1827
1881
|
$ref?: string | undefined;
|
|
1828
1882
|
title?: string | undefined;
|
|
1883
|
+
id?: string | undefined;
|
|
1829
1884
|
disabled?: boolean | undefined;
|
|
1830
1885
|
$id?: string | undefined;
|
|
1831
|
-
id?: string | undefined;
|
|
1832
1886
|
exit?: boolean | undefined;
|
|
1833
1887
|
result?: JsonElement | undefined;
|
|
1834
1888
|
data?: JsonElement | undefined;
|
|
@@ -1843,9 +1897,9 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1843
1897
|
prefetch?: boolean | undefined;
|
|
1844
1898
|
$ref?: string | undefined;
|
|
1845
1899
|
title?: string | undefined;
|
|
1900
|
+
id?: string | undefined;
|
|
1846
1901
|
disabled?: boolean | undefined;
|
|
1847
1902
|
$id?: string | undefined;
|
|
1848
|
-
id?: string | undefined;
|
|
1849
1903
|
exit?: boolean | undefined;
|
|
1850
1904
|
result?: JsonElement | undefined;
|
|
1851
1905
|
data?: JsonElement | undefined;
|
|
@@ -1861,9 +1915,9 @@ export declare const actionBehaviorSchema: z.ZodObject<{
|
|
|
1861
1915
|
prefetch?: boolean | undefined;
|
|
1862
1916
|
$ref?: string | undefined;
|
|
1863
1917
|
title?: string | undefined;
|
|
1918
|
+
id?: string | undefined;
|
|
1864
1919
|
disabled?: boolean | undefined;
|
|
1865
1920
|
$id?: string | undefined;
|
|
1866
|
-
id?: string | undefined;
|
|
1867
1921
|
exit?: boolean | undefined;
|
|
1868
1922
|
result?: JsonElement | undefined;
|
|
1869
1923
|
data?: JsonElement | undefined;
|
|
@@ -1895,9 +1949,9 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1895
1949
|
prefetch?: boolean | undefined;
|
|
1896
1950
|
$ref?: string | undefined;
|
|
1897
1951
|
title?: string | undefined;
|
|
1952
|
+
id?: string | undefined;
|
|
1898
1953
|
disabled?: boolean | undefined;
|
|
1899
1954
|
$id?: string | undefined;
|
|
1900
|
-
id?: string | undefined;
|
|
1901
1955
|
exit?: boolean | undefined;
|
|
1902
1956
|
result?: JsonElement | undefined;
|
|
1903
1957
|
data?: JsonElement | undefined;
|
|
@@ -1910,9 +1964,9 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1910
1964
|
prefetch?: boolean | undefined;
|
|
1911
1965
|
$ref?: string | undefined;
|
|
1912
1966
|
title?: string | undefined;
|
|
1967
|
+
id?: string | undefined;
|
|
1913
1968
|
disabled?: boolean | undefined;
|
|
1914
1969
|
$id?: string | undefined;
|
|
1915
|
-
id?: string | undefined;
|
|
1916
1970
|
exit?: boolean | undefined;
|
|
1917
1971
|
result?: JsonElement | undefined;
|
|
1918
1972
|
data?: JsonElement | undefined;
|
|
@@ -1937,9 +1991,9 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1937
1991
|
prefetch?: boolean | undefined;
|
|
1938
1992
|
$ref?: string | undefined;
|
|
1939
1993
|
title?: string | undefined;
|
|
1994
|
+
id?: string | undefined;
|
|
1940
1995
|
disabled?: boolean | undefined;
|
|
1941
1996
|
$id?: string | undefined;
|
|
1942
|
-
id?: string | undefined;
|
|
1943
1997
|
exit?: boolean | undefined;
|
|
1944
1998
|
result?: JsonElement | undefined;
|
|
1945
1999
|
data?: JsonElement | undefined;
|
|
@@ -1957,9 +2011,9 @@ export declare const containerBehaviorSchema: z.ZodObject<{
|
|
|
1957
2011
|
prefetch?: boolean | undefined;
|
|
1958
2012
|
$ref?: string | undefined;
|
|
1959
2013
|
title?: string | undefined;
|
|
2014
|
+
id?: string | undefined;
|
|
1960
2015
|
disabled?: boolean | undefined;
|
|
1961
2016
|
$id?: string | undefined;
|
|
1962
|
-
id?: string | undefined;
|
|
1963
2017
|
exit?: boolean | undefined;
|
|
1964
2018
|
result?: JsonElement | undefined;
|
|
1965
2019
|
data?: JsonElement | undefined;
|
|
@@ -2265,9 +2319,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2265
2319
|
prefetch?: boolean | undefined;
|
|
2266
2320
|
$ref?: string | undefined;
|
|
2267
2321
|
title?: string | undefined;
|
|
2322
|
+
id?: string | undefined;
|
|
2268
2323
|
disabled?: boolean | undefined;
|
|
2269
2324
|
$id?: string | undefined;
|
|
2270
|
-
id?: string | undefined;
|
|
2271
2325
|
exit?: boolean | undefined;
|
|
2272
2326
|
result?: JsonElement | undefined;
|
|
2273
2327
|
data?: JsonElement | undefined;
|
|
@@ -2280,9 +2334,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2280
2334
|
prefetch?: boolean | undefined;
|
|
2281
2335
|
$ref?: string | undefined;
|
|
2282
2336
|
title?: string | undefined;
|
|
2337
|
+
id?: string | undefined;
|
|
2283
2338
|
disabled?: boolean | undefined;
|
|
2284
2339
|
$id?: string | undefined;
|
|
2285
|
-
id?: string | undefined;
|
|
2286
2340
|
exit?: boolean | undefined;
|
|
2287
2341
|
result?: JsonElement | undefined;
|
|
2288
2342
|
data?: JsonElement | undefined;
|
|
@@ -2362,9 +2416,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2362
2416
|
prefetch?: boolean | undefined;
|
|
2363
2417
|
$ref?: string | undefined;
|
|
2364
2418
|
title?: string | undefined;
|
|
2419
|
+
id?: string | undefined;
|
|
2365
2420
|
disabled?: boolean | undefined;
|
|
2366
2421
|
$id?: string | undefined;
|
|
2367
|
-
id?: string | undefined;
|
|
2368
2422
|
exit?: boolean | undefined;
|
|
2369
2423
|
result?: JsonElement | undefined;
|
|
2370
2424
|
data?: JsonElement | undefined;
|
|
@@ -2410,9 +2464,9 @@ export declare const searchResultActionSchema: z.ZodObject<{
|
|
|
2410
2464
|
prefetch?: boolean | undefined;
|
|
2411
2465
|
$ref?: string | undefined;
|
|
2412
2466
|
title?: string | undefined;
|
|
2467
|
+
id?: string | undefined;
|
|
2413
2468
|
disabled?: boolean | undefined;
|
|
2414
2469
|
$id?: string | undefined;
|
|
2415
|
-
id?: string | undefined;
|
|
2416
2470
|
exit?: boolean | undefined;
|
|
2417
2471
|
result?: JsonElement | undefined;
|
|
2418
2472
|
data?: JsonElement | undefined;
|
|
@@ -2506,9 +2560,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2506
2560
|
prefetch?: boolean | undefined;
|
|
2507
2561
|
$ref?: string | undefined;
|
|
2508
2562
|
title?: string | undefined;
|
|
2563
|
+
id?: string | undefined;
|
|
2509
2564
|
disabled?: boolean | undefined;
|
|
2510
2565
|
$id?: string | undefined;
|
|
2511
|
-
id?: string | undefined;
|
|
2512
2566
|
exit?: boolean | undefined;
|
|
2513
2567
|
result?: JsonElement | undefined;
|
|
2514
2568
|
data?: JsonElement | undefined;
|
|
@@ -2521,9 +2575,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2521
2575
|
prefetch?: boolean | undefined;
|
|
2522
2576
|
$ref?: string | undefined;
|
|
2523
2577
|
title?: string | undefined;
|
|
2578
|
+
id?: string | undefined;
|
|
2524
2579
|
disabled?: boolean | undefined;
|
|
2525
2580
|
$id?: string | undefined;
|
|
2526
|
-
id?: string | undefined;
|
|
2527
2581
|
exit?: boolean | undefined;
|
|
2528
2582
|
result?: JsonElement | undefined;
|
|
2529
2583
|
data?: JsonElement | undefined;
|
|
@@ -2603,9 +2657,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2603
2657
|
prefetch?: boolean | undefined;
|
|
2604
2658
|
$ref?: string | undefined;
|
|
2605
2659
|
title?: string | undefined;
|
|
2660
|
+
id?: string | undefined;
|
|
2606
2661
|
disabled?: boolean | undefined;
|
|
2607
2662
|
$id?: string | undefined;
|
|
2608
|
-
id?: string | undefined;
|
|
2609
2663
|
exit?: boolean | undefined;
|
|
2610
2664
|
result?: JsonElement | undefined;
|
|
2611
2665
|
data?: JsonElement | undefined;
|
|
@@ -2651,9 +2705,9 @@ export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2651
2705
|
prefetch?: boolean | undefined;
|
|
2652
2706
|
$ref?: string | undefined;
|
|
2653
2707
|
title?: string | undefined;
|
|
2708
|
+
id?: string | undefined;
|
|
2654
2709
|
disabled?: boolean | undefined;
|
|
2655
2710
|
$id?: string | undefined;
|
|
2656
|
-
id?: string | undefined;
|
|
2657
2711
|
exit?: boolean | undefined;
|
|
2658
2712
|
result?: JsonElement | undefined;
|
|
2659
2713
|
data?: JsonElement | undefined;
|
|
@@ -2905,9 +2959,9 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2905
2959
|
prefetch?: boolean | undefined;
|
|
2906
2960
|
$ref?: string | undefined;
|
|
2907
2961
|
title?: string | undefined;
|
|
2962
|
+
id?: string | undefined;
|
|
2908
2963
|
disabled?: boolean | undefined;
|
|
2909
2964
|
$id?: string | undefined;
|
|
2910
|
-
id?: string | undefined;
|
|
2911
2965
|
exit?: boolean | undefined;
|
|
2912
2966
|
result?: JsonElement | undefined;
|
|
2913
2967
|
data?: JsonElement | undefined;
|
|
@@ -2920,9 +2974,9 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2920
2974
|
prefetch?: boolean | undefined;
|
|
2921
2975
|
$ref?: string | undefined;
|
|
2922
2976
|
title?: string | undefined;
|
|
2977
|
+
id?: string | undefined;
|
|
2923
2978
|
disabled?: boolean | undefined;
|
|
2924
2979
|
$id?: string | undefined;
|
|
2925
|
-
id?: string | undefined;
|
|
2926
2980
|
exit?: boolean | undefined;
|
|
2927
2981
|
result?: JsonElement | undefined;
|
|
2928
2982
|
data?: JsonElement | undefined;
|
|
@@ -2937,9 +2991,9 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2937
2991
|
prefetch?: boolean | undefined;
|
|
2938
2992
|
$ref?: string | undefined;
|
|
2939
2993
|
title?: string | undefined;
|
|
2994
|
+
id?: string | undefined;
|
|
2940
2995
|
disabled?: boolean | undefined;
|
|
2941
2996
|
$id?: string | undefined;
|
|
2942
|
-
id?: string | undefined;
|
|
2943
2997
|
exit?: boolean | undefined;
|
|
2944
2998
|
result?: JsonElement | undefined;
|
|
2945
2999
|
data?: JsonElement | undefined;
|
|
@@ -2954,9 +3008,9 @@ export declare const actionResponseBodySchema: z.ZodObject<{
|
|
|
2954
3008
|
prefetch?: boolean | undefined;
|
|
2955
3009
|
$ref?: string | undefined;
|
|
2956
3010
|
title?: string | undefined;
|
|
3011
|
+
id?: string | undefined;
|
|
2957
3012
|
disabled?: boolean | undefined;
|
|
2958
3013
|
$id?: string | undefined;
|
|
2959
|
-
id?: string | undefined;
|
|
2960
3014
|
exit?: boolean | undefined;
|
|
2961
3015
|
result?: JsonElement | undefined;
|
|
2962
3016
|
data?: JsonElement | undefined;
|
|
@@ -2989,9 +3043,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
2989
3043
|
prefetch?: boolean | undefined;
|
|
2990
3044
|
$ref?: string | undefined;
|
|
2991
3045
|
title?: string | undefined;
|
|
3046
|
+
id?: string | undefined;
|
|
2992
3047
|
disabled?: boolean | undefined;
|
|
2993
3048
|
$id?: string | undefined;
|
|
2994
|
-
id?: string | undefined;
|
|
2995
3049
|
exit?: boolean | undefined;
|
|
2996
3050
|
result?: JsonElement | undefined;
|
|
2997
3051
|
data?: JsonElement | undefined;
|
|
@@ -3004,9 +3058,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3004
3058
|
prefetch?: boolean | undefined;
|
|
3005
3059
|
$ref?: string | undefined;
|
|
3006
3060
|
title?: string | undefined;
|
|
3061
|
+
id?: string | undefined;
|
|
3007
3062
|
disabled?: boolean | undefined;
|
|
3008
3063
|
$id?: string | undefined;
|
|
3009
|
-
id?: string | undefined;
|
|
3010
3064
|
exit?: boolean | undefined;
|
|
3011
3065
|
result?: JsonElement | undefined;
|
|
3012
3066
|
data?: JsonElement | undefined;
|
|
@@ -3021,9 +3075,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3021
3075
|
prefetch?: boolean | undefined;
|
|
3022
3076
|
$ref?: string | undefined;
|
|
3023
3077
|
title?: string | undefined;
|
|
3078
|
+
id?: string | undefined;
|
|
3024
3079
|
disabled?: boolean | undefined;
|
|
3025
3080
|
$id?: string | undefined;
|
|
3026
|
-
id?: string | undefined;
|
|
3027
3081
|
exit?: boolean | undefined;
|
|
3028
3082
|
result?: JsonElement | undefined;
|
|
3029
3083
|
data?: JsonElement | undefined;
|
|
@@ -3039,9 +3093,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3039
3093
|
prefetch?: boolean | undefined;
|
|
3040
3094
|
$ref?: string | undefined;
|
|
3041
3095
|
title?: string | undefined;
|
|
3096
|
+
id?: string | undefined;
|
|
3042
3097
|
disabled?: boolean | undefined;
|
|
3043
3098
|
$id?: string | undefined;
|
|
3044
|
-
id?: string | undefined;
|
|
3045
3099
|
exit?: boolean | undefined;
|
|
3046
3100
|
result?: JsonElement | undefined;
|
|
3047
3101
|
data?: JsonElement | undefined;
|
|
@@ -3074,9 +3128,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3074
3128
|
prefetch?: boolean | undefined;
|
|
3075
3129
|
$ref?: string | undefined;
|
|
3076
3130
|
title?: string | undefined;
|
|
3131
|
+
id?: string | undefined;
|
|
3077
3132
|
disabled?: boolean | undefined;
|
|
3078
3133
|
$id?: string | undefined;
|
|
3079
|
-
id?: string | undefined;
|
|
3080
3134
|
exit?: boolean | undefined;
|
|
3081
3135
|
result?: JsonElement | undefined;
|
|
3082
3136
|
data?: JsonElement | undefined;
|
|
@@ -3089,9 +3143,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3089
3143
|
prefetch?: boolean | undefined;
|
|
3090
3144
|
$ref?: string | undefined;
|
|
3091
3145
|
title?: string | undefined;
|
|
3146
|
+
id?: string | undefined;
|
|
3092
3147
|
disabled?: boolean | undefined;
|
|
3093
3148
|
$id?: string | undefined;
|
|
3094
|
-
id?: string | undefined;
|
|
3095
3149
|
exit?: boolean | undefined;
|
|
3096
3150
|
result?: JsonElement | undefined;
|
|
3097
3151
|
data?: JsonElement | undefined;
|
|
@@ -3106,9 +3160,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3106
3160
|
prefetch?: boolean | undefined;
|
|
3107
3161
|
$ref?: string | undefined;
|
|
3108
3162
|
title?: string | undefined;
|
|
3163
|
+
id?: string | undefined;
|
|
3109
3164
|
disabled?: boolean | undefined;
|
|
3110
3165
|
$id?: string | undefined;
|
|
3111
|
-
id?: string | undefined;
|
|
3112
3166
|
exit?: boolean | undefined;
|
|
3113
3167
|
result?: JsonElement | undefined;
|
|
3114
3168
|
data?: JsonElement | undefined;
|
|
@@ -3124,9 +3178,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3124
3178
|
prefetch?: boolean | undefined;
|
|
3125
3179
|
$ref?: string | undefined;
|
|
3126
3180
|
title?: string | undefined;
|
|
3181
|
+
id?: string | undefined;
|
|
3127
3182
|
disabled?: boolean | undefined;
|
|
3128
3183
|
$id?: string | undefined;
|
|
3129
|
-
id?: string | undefined;
|
|
3130
3184
|
exit?: boolean | undefined;
|
|
3131
3185
|
result?: JsonElement | undefined;
|
|
3132
3186
|
data?: JsonElement | undefined;
|
|
@@ -3145,9 +3199,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3145
3199
|
prefetch?: boolean | undefined;
|
|
3146
3200
|
$ref?: string | undefined;
|
|
3147
3201
|
title?: string | undefined;
|
|
3202
|
+
id?: string | undefined;
|
|
3148
3203
|
disabled?: boolean | undefined;
|
|
3149
3204
|
$id?: string | undefined;
|
|
3150
|
-
id?: string | undefined;
|
|
3151
3205
|
exit?: boolean | undefined;
|
|
3152
3206
|
result?: JsonElement | undefined;
|
|
3153
3207
|
data?: JsonElement | undefined;
|
|
@@ -3164,9 +3218,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3164
3218
|
prefetch?: boolean | undefined;
|
|
3165
3219
|
$ref?: string | undefined;
|
|
3166
3220
|
title?: string | undefined;
|
|
3221
|
+
id?: string | undefined;
|
|
3167
3222
|
disabled?: boolean | undefined;
|
|
3168
3223
|
$id?: string | undefined;
|
|
3169
|
-
id?: string | undefined;
|
|
3170
3224
|
exit?: boolean | undefined;
|
|
3171
3225
|
result?: JsonElement | undefined;
|
|
3172
3226
|
data?: JsonElement | undefined;
|
|
@@ -3185,9 +3239,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3185
3239
|
prefetch?: boolean | undefined;
|
|
3186
3240
|
$ref?: string | undefined;
|
|
3187
3241
|
title?: string | undefined;
|
|
3242
|
+
id?: string | undefined;
|
|
3188
3243
|
disabled?: boolean | undefined;
|
|
3189
3244
|
$id?: string | undefined;
|
|
3190
|
-
id?: string | undefined;
|
|
3191
3245
|
exit?: boolean | undefined;
|
|
3192
3246
|
result?: JsonElement | undefined;
|
|
3193
3247
|
data?: JsonElement | undefined;
|
|
@@ -3204,9 +3258,9 @@ export declare const navigationSchema: z.ZodObject<{
|
|
|
3204
3258
|
prefetch?: boolean | undefined;
|
|
3205
3259
|
$ref?: string | undefined;
|
|
3206
3260
|
title?: string | undefined;
|
|
3261
|
+
id?: string | undefined;
|
|
3207
3262
|
disabled?: boolean | undefined;
|
|
3208
3263
|
$id?: string | undefined;
|
|
3209
|
-
id?: string | undefined;
|
|
3210
3264
|
exit?: boolean | undefined;
|
|
3211
3265
|
result?: JsonElement | undefined;
|
|
3212
3266
|
data?: JsonElement | undefined;
|
|
@@ -3403,9 +3457,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3403
3457
|
prefetch?: boolean | undefined;
|
|
3404
3458
|
$ref?: string | undefined;
|
|
3405
3459
|
title?: string | undefined;
|
|
3460
|
+
id?: string | undefined;
|
|
3406
3461
|
disabled?: boolean | undefined;
|
|
3407
3462
|
$id?: string | undefined;
|
|
3408
|
-
id?: string | undefined;
|
|
3409
3463
|
exit?: boolean | undefined;
|
|
3410
3464
|
result?: JsonElement | undefined;
|
|
3411
3465
|
data?: JsonElement | undefined;
|
|
@@ -3418,9 +3472,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3418
3472
|
prefetch?: boolean | undefined;
|
|
3419
3473
|
$ref?: string | undefined;
|
|
3420
3474
|
title?: string | undefined;
|
|
3475
|
+
id?: string | undefined;
|
|
3421
3476
|
disabled?: boolean | undefined;
|
|
3422
3477
|
$id?: string | undefined;
|
|
3423
|
-
id?: string | undefined;
|
|
3424
3478
|
exit?: boolean | undefined;
|
|
3425
3479
|
result?: JsonElement | undefined;
|
|
3426
3480
|
data?: JsonElement | undefined;
|
|
@@ -3500,9 +3554,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3500
3554
|
prefetch?: boolean | undefined;
|
|
3501
3555
|
$ref?: string | undefined;
|
|
3502
3556
|
title?: string | undefined;
|
|
3557
|
+
id?: string | undefined;
|
|
3503
3558
|
disabled?: boolean | undefined;
|
|
3504
3559
|
$id?: string | undefined;
|
|
3505
|
-
id?: string | undefined;
|
|
3506
3560
|
exit?: boolean | undefined;
|
|
3507
3561
|
result?: JsonElement | undefined;
|
|
3508
3562
|
data?: JsonElement | undefined;
|
|
@@ -3548,9 +3602,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3548
3602
|
prefetch?: boolean | undefined;
|
|
3549
3603
|
$ref?: string | undefined;
|
|
3550
3604
|
title?: string | undefined;
|
|
3605
|
+
id?: string | undefined;
|
|
3551
3606
|
disabled?: boolean | undefined;
|
|
3552
3607
|
$id?: string | undefined;
|
|
3553
|
-
id?: string | undefined;
|
|
3554
3608
|
exit?: boolean | undefined;
|
|
3555
3609
|
result?: JsonElement | undefined;
|
|
3556
3610
|
data?: JsonElement | undefined;
|
|
@@ -3826,9 +3880,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3826
3880
|
prefetch?: boolean | undefined;
|
|
3827
3881
|
$ref?: string | undefined;
|
|
3828
3882
|
title?: string | undefined;
|
|
3883
|
+
id?: string | undefined;
|
|
3829
3884
|
disabled?: boolean | undefined;
|
|
3830
3885
|
$id?: string | undefined;
|
|
3831
|
-
id?: string | undefined;
|
|
3832
3886
|
exit?: boolean | undefined;
|
|
3833
3887
|
result?: JsonElement | undefined;
|
|
3834
3888
|
data?: JsonElement | undefined;
|
|
@@ -3915,9 +3969,9 @@ export declare const searchResponseBodySchema: z.ZodObject<{
|
|
|
3915
3969
|
prefetch?: boolean | undefined;
|
|
3916
3970
|
$ref?: string | undefined;
|
|
3917
3971
|
title?: string | undefined;
|
|
3972
|
+
id?: string | undefined;
|
|
3918
3973
|
disabled?: boolean | undefined;
|
|
3919
3974
|
$id?: string | undefined;
|
|
3920
|
-
id?: string | undefined;
|
|
3921
3975
|
exit?: boolean | undefined;
|
|
3922
3976
|
result?: JsonElement | undefined;
|
|
3923
3977
|
data?: JsonElement | undefined;
|
|
@@ -4015,9 +4069,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4015
4069
|
prefetch?: boolean | undefined;
|
|
4016
4070
|
$ref?: string | undefined;
|
|
4017
4071
|
title?: string | undefined;
|
|
4072
|
+
id?: string | undefined;
|
|
4018
4073
|
disabled?: boolean | undefined;
|
|
4019
4074
|
$id?: string | undefined;
|
|
4020
|
-
id?: string | undefined;
|
|
4021
4075
|
exit?: boolean | undefined;
|
|
4022
4076
|
result?: JsonElement | undefined;
|
|
4023
4077
|
data?: JsonElement | undefined;
|
|
@@ -4030,9 +4084,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4030
4084
|
prefetch?: boolean | undefined;
|
|
4031
4085
|
$ref?: string | undefined;
|
|
4032
4086
|
title?: string | undefined;
|
|
4087
|
+
id?: string | undefined;
|
|
4033
4088
|
disabled?: boolean | undefined;
|
|
4034
4089
|
$id?: string | undefined;
|
|
4035
|
-
id?: string | undefined;
|
|
4036
4090
|
exit?: boolean | undefined;
|
|
4037
4091
|
result?: JsonElement | undefined;
|
|
4038
4092
|
data?: JsonElement | undefined;
|
|
@@ -4112,9 +4166,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4112
4166
|
prefetch?: boolean | undefined;
|
|
4113
4167
|
$ref?: string | undefined;
|
|
4114
4168
|
title?: string | undefined;
|
|
4169
|
+
id?: string | undefined;
|
|
4115
4170
|
disabled?: boolean | undefined;
|
|
4116
4171
|
$id?: string | undefined;
|
|
4117
|
-
id?: string | undefined;
|
|
4118
4172
|
exit?: boolean | undefined;
|
|
4119
4173
|
result?: JsonElement | undefined;
|
|
4120
4174
|
data?: JsonElement | undefined;
|
|
@@ -4160,9 +4214,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4160
4214
|
prefetch?: boolean | undefined;
|
|
4161
4215
|
$ref?: string | undefined;
|
|
4162
4216
|
title?: string | undefined;
|
|
4217
|
+
id?: string | undefined;
|
|
4163
4218
|
disabled?: boolean | undefined;
|
|
4164
4219
|
$id?: string | undefined;
|
|
4165
|
-
id?: string | undefined;
|
|
4166
4220
|
exit?: boolean | undefined;
|
|
4167
4221
|
result?: JsonElement | undefined;
|
|
4168
4222
|
data?: JsonElement | undefined;
|
|
@@ -4438,9 +4492,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4438
4492
|
prefetch?: boolean | undefined;
|
|
4439
4493
|
$ref?: string | undefined;
|
|
4440
4494
|
title?: string | undefined;
|
|
4495
|
+
id?: string | undefined;
|
|
4441
4496
|
disabled?: boolean | undefined;
|
|
4442
4497
|
$id?: string | undefined;
|
|
4443
|
-
id?: string | undefined;
|
|
4444
4498
|
exit?: boolean | undefined;
|
|
4445
4499
|
result?: JsonElement | undefined;
|
|
4446
4500
|
data?: JsonElement | undefined;
|
|
@@ -4527,9 +4581,9 @@ export declare const searchResultsResponseBodySchema: z.ZodObject<{
|
|
|
4527
4581
|
prefetch?: boolean | undefined;
|
|
4528
4582
|
$ref?: string | undefined;
|
|
4529
4583
|
title?: string | undefined;
|
|
4584
|
+
id?: string | undefined;
|
|
4530
4585
|
disabled?: boolean | undefined;
|
|
4531
4586
|
$id?: string | undefined;
|
|
4532
|
-
id?: string | undefined;
|
|
4533
4587
|
exit?: boolean | undefined;
|
|
4534
4588
|
result?: JsonElement | undefined;
|
|
4535
4589
|
data?: JsonElement | undefined;
|
|
@@ -4627,9 +4681,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
4627
4681
|
prefetch?: boolean | undefined;
|
|
4628
4682
|
$ref?: string | undefined;
|
|
4629
4683
|
title?: string | undefined;
|
|
4684
|
+
id?: string | undefined;
|
|
4630
4685
|
disabled?: boolean | undefined;
|
|
4631
4686
|
$id?: string | undefined;
|
|
4632
|
-
id?: string | undefined;
|
|
4633
4687
|
exit?: boolean | undefined;
|
|
4634
4688
|
result?: JsonElement | undefined;
|
|
4635
4689
|
data?: JsonElement | undefined;
|
|
@@ -4642,9 +4696,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
4642
4696
|
prefetch?: boolean | undefined;
|
|
4643
4697
|
$ref?: string | undefined;
|
|
4644
4698
|
title?: string | undefined;
|
|
4699
|
+
id?: string | undefined;
|
|
4645
4700
|
disabled?: boolean | undefined;
|
|
4646
4701
|
$id?: string | undefined;
|
|
4647
|
-
id?: string | undefined;
|
|
4648
4702
|
exit?: boolean | undefined;
|
|
4649
4703
|
result?: JsonElement | undefined;
|
|
4650
4704
|
data?: JsonElement | undefined;
|
|
@@ -4724,9 +4778,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
4724
4778
|
prefetch?: boolean | undefined;
|
|
4725
4779
|
$ref?: string | undefined;
|
|
4726
4780
|
title?: string | undefined;
|
|
4781
|
+
id?: string | undefined;
|
|
4727
4782
|
disabled?: boolean | undefined;
|
|
4728
4783
|
$id?: string | undefined;
|
|
4729
|
-
id?: string | undefined;
|
|
4730
4784
|
exit?: boolean | undefined;
|
|
4731
4785
|
result?: JsonElement | undefined;
|
|
4732
4786
|
data?: JsonElement | undefined;
|
|
@@ -4772,9 +4826,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
4772
4826
|
prefetch?: boolean | undefined;
|
|
4773
4827
|
$ref?: string | undefined;
|
|
4774
4828
|
title?: string | undefined;
|
|
4829
|
+
id?: string | undefined;
|
|
4775
4830
|
disabled?: boolean | undefined;
|
|
4776
4831
|
$id?: string | undefined;
|
|
4777
|
-
id?: string | undefined;
|
|
4778
4832
|
exit?: boolean | undefined;
|
|
4779
4833
|
result?: JsonElement | undefined;
|
|
4780
4834
|
data?: JsonElement | undefined;
|
|
@@ -5050,9 +5104,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
5050
5104
|
prefetch?: boolean | undefined;
|
|
5051
5105
|
$ref?: string | undefined;
|
|
5052
5106
|
title?: string | undefined;
|
|
5107
|
+
id?: string | undefined;
|
|
5053
5108
|
disabled?: boolean | undefined;
|
|
5054
5109
|
$id?: string | undefined;
|
|
5055
|
-
id?: string | undefined;
|
|
5056
5110
|
exit?: boolean | undefined;
|
|
5057
5111
|
result?: JsonElement | undefined;
|
|
5058
5112
|
data?: JsonElement | undefined;
|
|
@@ -5139,9 +5193,9 @@ export declare const searchInitialResultsConfigSchema: z.ZodObject<{
|
|
|
5139
5193
|
prefetch?: boolean | undefined;
|
|
5140
5194
|
$ref?: string | undefined;
|
|
5141
5195
|
title?: string | undefined;
|
|
5196
|
+
id?: string | undefined;
|
|
5142
5197
|
disabled?: boolean | undefined;
|
|
5143
5198
|
$id?: string | undefined;
|
|
5144
|
-
id?: string | undefined;
|
|
5145
5199
|
exit?: boolean | undefined;
|
|
5146
5200
|
result?: JsonElement | undefined;
|
|
5147
5201
|
data?: JsonElement | undefined;
|
|
@@ -5199,8 +5253,14 @@ export declare const decisionLayoutOptionSchema: z.ZodSchema<DecisionLayoutOptio
|
|
|
5199
5253
|
export declare const sectionLayoutCallToActionSchema: z.ZodSchema<SectionLayoutCallToAction>;
|
|
5200
5254
|
export declare const statusListLayoutSchema: z.ZodSchema<StatusListLayout>;
|
|
5201
5255
|
export declare const statusListLayoutItemSchema: z.ZodSchema<StatusListLayoutItem>;
|
|
5202
|
-
export declare const
|
|
5256
|
+
export declare const collectionLayoutSchema: z.ZodSchema<CollectionLayout>;
|
|
5257
|
+
export declare const collectionStateSchema: z.ZodSchema<CollectionState>;
|
|
5258
|
+
export declare const collectionSectionSchema: z.ZodSchema<CollectionSection>;
|
|
5259
|
+
export declare const collectionCallToActionSchema: z.ZodSchema<CollectionCallToAction>;
|
|
5260
|
+
export declare const collectionItemSchema: z.ZodSchema<CollectionItem>;
|
|
5261
|
+
export declare const collectionResponseSchema: z.ZodSchema<CollectionResponse>;
|
|
5203
5262
|
export declare const layoutSchema: z.ZodSchema<Layout>;
|
|
5263
|
+
export declare const sectionLayoutSchema: z.ZodSchema<SectionLayout>;
|
|
5204
5264
|
export declare const itemCallToActionSchema: z.ZodSchema<ItemCallToAction>;
|
|
5205
5265
|
export declare const searchLayoutSchema: z.ZodSchema<SearchLayout>;
|
|
5206
5266
|
export declare const searchInitialStateSchema: z.ZodSchema<SearchInitialState>;
|