@wise/dynamic-flow-types 2.31.0 → 2.32.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.
@@ -579,9 +579,9 @@ export declare const actionSchema: z.ZodObject<{
579
579
  skipValidation?: boolean | undefined;
580
580
  }>;
581
581
  export declare const listLayoutItemSchema: z.ZodObject<{
582
- title: z.ZodString;
583
582
  description: z.ZodOptional<z.ZodString>;
584
- icon: z.ZodUnion<[z.ZodObject<{
583
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
584
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
585
585
  name: z.ZodString;
586
586
  }, "strip", z.ZodTypeAny, {
587
587
  name: string;
@@ -593,26 +593,58 @@ export declare const listLayoutItemSchema: z.ZodObject<{
593
593
  text: string;
594
594
  }, {
595
595
  text: string;
596
- }>]>;
597
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
596
+ }>]>>;
597
+ image: z.ZodOptional<z.ZodObject<{
598
+ text: z.ZodOptional<z.ZodString>;
599
+ url: z.ZodString;
600
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
601
+ }, "strip", z.ZodTypeAny, {
602
+ url: string;
603
+ text?: string | undefined;
604
+ accessibilityDescription?: string | undefined;
605
+ }, {
606
+ url: string;
607
+ text?: string | undefined;
608
+ accessibilityDescription?: string | undefined;
609
+ }>>;
610
+ title: z.ZodString;
611
+ subtitle: z.ZodOptional<z.ZodString>;
612
+ value: z.ZodOptional<z.ZodString>;
613
+ subvalue: z.ZodOptional<z.ZodString>;
598
614
  }, "strip", z.ZodTypeAny, {
599
- icon: {
615
+ title: string;
616
+ image?: {
617
+ url: string;
618
+ text?: string | undefined;
619
+ accessibilityDescription?: string | undefined;
620
+ } | undefined;
621
+ description?: string | undefined;
622
+ icon?: {
600
623
  name: string;
601
624
  } | {
602
625
  text: string;
603
- };
604
- title: string;
605
- description?: string | undefined;
626
+ } | undefined;
627
+ value?: string | undefined;
606
628
  status?: "neutral" | "warning" | "positive" | undefined;
629
+ subtitle?: string | undefined;
630
+ subvalue?: string | undefined;
607
631
  }, {
608
- icon: {
632
+ title: string;
633
+ image?: {
634
+ url: string;
635
+ text?: string | undefined;
636
+ accessibilityDescription?: string | undefined;
637
+ } | undefined;
638
+ description?: string | undefined;
639
+ icon?: {
609
640
  name: string;
610
641
  } | {
611
642
  text: string;
612
- };
613
- title: string;
614
- description?: string | undefined;
643
+ } | undefined;
644
+ value?: string | undefined;
615
645
  status?: "neutral" | "warning" | "positive" | undefined;
646
+ subtitle?: string | undefined;
647
+ subvalue?: string | undefined;
616
648
  }>;
617
649
  export declare const decisionLayoutOptionSchema: z.ZodObject<{
618
650
  action: z.ZodObject<{
@@ -890,6 +922,146 @@ export declare const behaviorSchema: z.ZodObject<{
890
922
  url: string;
891
923
  } | undefined;
892
924
  }>;
925
+ export declare const itemCallToActionSchema: z.ZodObject<{
926
+ title: z.ZodString;
927
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
928
+ behavior: z.ZodObject<{
929
+ action: z.ZodOptional<z.ZodObject<{
930
+ title: z.ZodOptional<z.ZodString>;
931
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
932
+ disabled: z.ZodOptional<z.ZodBoolean>;
933
+ $id: z.ZodOptional<z.ZodString>;
934
+ $ref: z.ZodOptional<z.ZodString>;
935
+ id: z.ZodOptional<z.ZodString>;
936
+ url: z.ZodOptional<z.ZodString>;
937
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
938
+ exit: z.ZodOptional<z.ZodBoolean>;
939
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
940
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
941
+ timeout: z.ZodOptional<z.ZodNumber>;
942
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
943
+ }, "strip", z.ZodTypeAny, {
944
+ url?: string | undefined;
945
+ $id?: string | undefined;
946
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
947
+ disabled?: boolean | undefined;
948
+ title?: string | undefined;
949
+ timeout?: number | undefined;
950
+ id?: string | undefined;
951
+ $ref?: string | undefined;
952
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
953
+ exit?: boolean | undefined;
954
+ result?: JsonElement | undefined;
955
+ data?: JsonElement | undefined;
956
+ skipValidation?: boolean | undefined;
957
+ }, {
958
+ url?: string | undefined;
959
+ $id?: string | undefined;
960
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
961
+ disabled?: boolean | undefined;
962
+ title?: string | undefined;
963
+ timeout?: number | undefined;
964
+ id?: string | undefined;
965
+ $ref?: string | undefined;
966
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
967
+ exit?: boolean | undefined;
968
+ result?: JsonElement | undefined;
969
+ data?: JsonElement | undefined;
970
+ skipValidation?: boolean | undefined;
971
+ }>>;
972
+ link: z.ZodOptional<z.ZodObject<{
973
+ url: z.ZodString;
974
+ }, "strip", z.ZodTypeAny, {
975
+ url: string;
976
+ }, {
977
+ url: string;
978
+ }>>;
979
+ }, "strip", z.ZodTypeAny, {
980
+ action?: {
981
+ url?: string | undefined;
982
+ $id?: string | undefined;
983
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
984
+ disabled?: boolean | undefined;
985
+ title?: string | undefined;
986
+ timeout?: number | undefined;
987
+ id?: string | undefined;
988
+ $ref?: string | undefined;
989
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
990
+ exit?: boolean | undefined;
991
+ result?: JsonElement | undefined;
992
+ data?: JsonElement | undefined;
993
+ skipValidation?: boolean | undefined;
994
+ } | undefined;
995
+ link?: {
996
+ url: string;
997
+ } | undefined;
998
+ }, {
999
+ action?: {
1000
+ url?: string | undefined;
1001
+ $id?: string | undefined;
1002
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1003
+ disabled?: boolean | undefined;
1004
+ title?: string | undefined;
1005
+ timeout?: number | undefined;
1006
+ id?: string | undefined;
1007
+ $ref?: string | undefined;
1008
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1009
+ exit?: boolean | undefined;
1010
+ result?: JsonElement | undefined;
1011
+ data?: JsonElement | undefined;
1012
+ skipValidation?: boolean | undefined;
1013
+ } | undefined;
1014
+ link?: {
1015
+ url: string;
1016
+ } | undefined;
1017
+ }>;
1018
+ }, "strip", z.ZodTypeAny, {
1019
+ title: string;
1020
+ behavior: {
1021
+ action?: {
1022
+ url?: string | undefined;
1023
+ $id?: string | undefined;
1024
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1025
+ disabled?: boolean | undefined;
1026
+ title?: string | undefined;
1027
+ timeout?: number | undefined;
1028
+ id?: string | undefined;
1029
+ $ref?: string | undefined;
1030
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1031
+ exit?: boolean | undefined;
1032
+ result?: JsonElement | undefined;
1033
+ data?: JsonElement | undefined;
1034
+ skipValidation?: boolean | undefined;
1035
+ } | undefined;
1036
+ link?: {
1037
+ url: string;
1038
+ } | undefined;
1039
+ };
1040
+ accessibilityDescription?: string | undefined;
1041
+ }, {
1042
+ title: string;
1043
+ behavior: {
1044
+ action?: {
1045
+ url?: string | undefined;
1046
+ $id?: string | undefined;
1047
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
1048
+ disabled?: boolean | undefined;
1049
+ title?: string | undefined;
1050
+ timeout?: number | undefined;
1051
+ id?: string | undefined;
1052
+ $ref?: string | undefined;
1053
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
1054
+ exit?: boolean | undefined;
1055
+ result?: JsonElement | undefined;
1056
+ data?: JsonElement | undefined;
1057
+ skipValidation?: boolean | undefined;
1058
+ } | undefined;
1059
+ link?: {
1060
+ url: string;
1061
+ } | undefined;
1062
+ };
1063
+ accessibilityDescription?: string | undefined;
1064
+ }>;
893
1065
  export declare const buttonLayoutSchema: z.ZodObject<{
894
1066
  type: z.ZodLiteral<"button">;
895
1067
  size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
@@ -1829,77 +2001,145 @@ export declare const alertLayoutCallToActionSchema: z.ZodObject<{
1829
2001
  };
1830
2002
  accessibilityDescription?: string | undefined;
1831
2003
  }>;
1832
- export declare const listLayoutSchema: z.ZodObject<{
1833
- type: z.ZodLiteral<"list">;
1834
- items: z.ZodArray<z.ZodObject<{
1835
- title: z.ZodString;
1836
- description: z.ZodOptional<z.ZodString>;
1837
- icon: z.ZodUnion<[z.ZodObject<{
1838
- name: z.ZodString;
2004
+ export declare const listLayoutCallToActionSchema: z.ZodObject<{
2005
+ title: z.ZodString;
2006
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
2007
+ behavior: z.ZodObject<{
2008
+ action: z.ZodOptional<z.ZodObject<{
2009
+ title: z.ZodOptional<z.ZodString>;
2010
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2011
+ disabled: z.ZodOptional<z.ZodBoolean>;
2012
+ $id: z.ZodOptional<z.ZodString>;
2013
+ $ref: z.ZodOptional<z.ZodString>;
2014
+ id: z.ZodOptional<z.ZodString>;
2015
+ url: z.ZodOptional<z.ZodString>;
2016
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2017
+ exit: z.ZodOptional<z.ZodBoolean>;
2018
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2019
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2020
+ timeout: z.ZodOptional<z.ZodNumber>;
2021
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
1839
2022
  }, "strip", z.ZodTypeAny, {
1840
- name: string;
2023
+ url?: string | undefined;
2024
+ $id?: string | undefined;
2025
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2026
+ disabled?: boolean | undefined;
2027
+ title?: string | undefined;
2028
+ timeout?: number | undefined;
2029
+ id?: string | undefined;
2030
+ $ref?: string | undefined;
2031
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2032
+ exit?: boolean | undefined;
2033
+ result?: JsonElement | undefined;
2034
+ data?: JsonElement | undefined;
2035
+ skipValidation?: boolean | undefined;
1841
2036
  }, {
1842
- name: string;
1843
- }>, z.ZodObject<{
1844
- text: z.ZodString;
2037
+ url?: string | undefined;
2038
+ $id?: string | undefined;
2039
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2040
+ disabled?: boolean | undefined;
2041
+ title?: string | undefined;
2042
+ timeout?: number | undefined;
2043
+ id?: string | undefined;
2044
+ $ref?: string | undefined;
2045
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2046
+ exit?: boolean | undefined;
2047
+ result?: JsonElement | undefined;
2048
+ data?: JsonElement | undefined;
2049
+ skipValidation?: boolean | undefined;
2050
+ }>>;
2051
+ link: z.ZodOptional<z.ZodObject<{
2052
+ url: z.ZodString;
1845
2053
  }, "strip", z.ZodTypeAny, {
1846
- text: string;
2054
+ url: string;
1847
2055
  }, {
1848
- text: string;
1849
- }>]>;
1850
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
2056
+ url: string;
2057
+ }>>;
1851
2058
  }, "strip", z.ZodTypeAny, {
1852
- icon: {
1853
- name: string;
1854
- } | {
1855
- text: string;
1856
- };
1857
- title: string;
1858
- description?: string | undefined;
1859
- status?: "neutral" | "warning" | "positive" | undefined;
2059
+ action?: {
2060
+ url?: string | undefined;
2061
+ $id?: string | undefined;
2062
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2063
+ disabled?: boolean | undefined;
2064
+ title?: string | undefined;
2065
+ timeout?: number | undefined;
2066
+ id?: string | undefined;
2067
+ $ref?: string | undefined;
2068
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2069
+ exit?: boolean | undefined;
2070
+ result?: JsonElement | undefined;
2071
+ data?: JsonElement | undefined;
2072
+ skipValidation?: boolean | undefined;
2073
+ } | undefined;
2074
+ link?: {
2075
+ url: string;
2076
+ } | undefined;
1860
2077
  }, {
1861
- icon: {
1862
- name: string;
1863
- } | {
1864
- text: string;
1865
- };
1866
- title: string;
1867
- description?: string | undefined;
1868
- status?: "neutral" | "warning" | "positive" | undefined;
1869
- }>, "many">;
1870
- title: z.ZodOptional<z.ZodString>;
1871
- control: z.ZodOptional<z.ZodString>;
1872
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
2078
+ action?: {
2079
+ url?: string | undefined;
2080
+ $id?: string | undefined;
2081
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2082
+ disabled?: boolean | undefined;
2083
+ title?: string | undefined;
2084
+ timeout?: number | undefined;
2085
+ id?: string | undefined;
2086
+ $ref?: string | undefined;
2087
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2088
+ exit?: boolean | undefined;
2089
+ result?: JsonElement | undefined;
2090
+ data?: JsonElement | undefined;
2091
+ skipValidation?: boolean | undefined;
2092
+ } | undefined;
2093
+ link?: {
2094
+ url: string;
2095
+ } | undefined;
2096
+ }>;
1873
2097
  }, "strip", z.ZodTypeAny, {
1874
- type: "list";
1875
- items: {
1876
- icon: {
1877
- name: string;
1878
- } | {
1879
- text: string;
1880
- };
1881
- title: string;
1882
- description?: string | undefined;
1883
- status?: "neutral" | "warning" | "positive" | undefined;
1884
- }[];
1885
- title?: string | undefined;
1886
- control?: string | undefined;
1887
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2098
+ title: string;
2099
+ behavior: {
2100
+ action?: {
2101
+ url?: string | undefined;
2102
+ $id?: string | undefined;
2103
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2104
+ disabled?: boolean | undefined;
2105
+ title?: string | undefined;
2106
+ timeout?: number | undefined;
2107
+ id?: string | undefined;
2108
+ $ref?: string | undefined;
2109
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2110
+ exit?: boolean | undefined;
2111
+ result?: JsonElement | undefined;
2112
+ data?: JsonElement | undefined;
2113
+ skipValidation?: boolean | undefined;
2114
+ } | undefined;
2115
+ link?: {
2116
+ url: string;
2117
+ } | undefined;
2118
+ };
2119
+ accessibilityDescription?: string | undefined;
1888
2120
  }, {
1889
- type: "list";
1890
- items: {
1891
- icon: {
1892
- name: string;
1893
- } | {
1894
- text: string;
1895
- };
1896
- title: string;
1897
- description?: string | undefined;
1898
- status?: "neutral" | "warning" | "positive" | undefined;
1899
- }[];
1900
- title?: string | undefined;
1901
- control?: string | undefined;
1902
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2121
+ title: string;
2122
+ behavior: {
2123
+ action?: {
2124
+ url?: string | undefined;
2125
+ $id?: string | undefined;
2126
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2127
+ disabled?: boolean | undefined;
2128
+ title?: string | undefined;
2129
+ timeout?: number | undefined;
2130
+ id?: string | undefined;
2131
+ $ref?: string | undefined;
2132
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2133
+ exit?: boolean | undefined;
2134
+ result?: JsonElement | undefined;
2135
+ data?: JsonElement | undefined;
2136
+ skipValidation?: boolean | undefined;
2137
+ } | undefined;
2138
+ link?: {
2139
+ url: string;
2140
+ } | undefined;
2141
+ };
2142
+ accessibilityDescription?: string | undefined;
1903
2143
  }>;
1904
2144
  export declare const decisionLayoutSchema: z.ZodObject<{
1905
2145
  type: z.ZodLiteral<"decision">;
@@ -2137,145 +2377,229 @@ export declare const decisionLayoutSchema: z.ZodObject<{
2137
2377
  control?: string | undefined;
2138
2378
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2139
2379
  }>;
2140
- export declare const itemCallToActionSchema: z.ZodObject<{
2380
+ export declare const statusListLayoutItemSchema: z.ZodObject<{
2141
2381
  title: z.ZodString;
2142
- accessibilityDescription: z.ZodOptional<z.ZodString>;
2143
- behavior: z.ZodObject<{
2144
- action: z.ZodOptional<z.ZodObject<{
2145
- title: z.ZodOptional<z.ZodString>;
2146
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2147
- disabled: z.ZodOptional<z.ZodBoolean>;
2148
- $id: z.ZodOptional<z.ZodString>;
2149
- $ref: z.ZodOptional<z.ZodString>;
2150
- id: z.ZodOptional<z.ZodString>;
2151
- url: z.ZodOptional<z.ZodString>;
2152
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2153
- exit: z.ZodOptional<z.ZodBoolean>;
2154
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2155
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2156
- timeout: z.ZodOptional<z.ZodNumber>;
2157
- skipValidation: z.ZodOptional<z.ZodBoolean>;
2158
- }, "strip", z.ZodTypeAny, {
2159
- url?: string | undefined;
2160
- $id?: string | undefined;
2161
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2162
- disabled?: boolean | undefined;
2163
- title?: string | undefined;
2164
- timeout?: number | undefined;
2165
- id?: string | undefined;
2166
- $ref?: string | undefined;
2167
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2168
- exit?: boolean | undefined;
2169
- result?: JsonElement | undefined;
2170
- data?: JsonElement | undefined;
2171
- skipValidation?: boolean | undefined;
2172
- }, {
2173
- url?: string | undefined;
2174
- $id?: string | undefined;
2175
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2176
- disabled?: boolean | undefined;
2177
- title?: string | undefined;
2178
- timeout?: number | undefined;
2179
- id?: string | undefined;
2180
- $ref?: string | undefined;
2181
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2182
- exit?: boolean | undefined;
2183
- result?: JsonElement | undefined;
2184
- data?: JsonElement | undefined;
2185
- skipValidation?: boolean | undefined;
2186
- }>>;
2187
- link: z.ZodOptional<z.ZodObject<{
2188
- url: z.ZodString;
2189
- }, "strip", z.ZodTypeAny, {
2190
- url: string;
2191
- }, {
2192
- url: string;
2193
- }>>;
2382
+ description: z.ZodOptional<z.ZodString>;
2383
+ icon: z.ZodUnion<[z.ZodObject<{
2384
+ name: z.ZodString;
2194
2385
  }, "strip", z.ZodTypeAny, {
2195
- action?: {
2196
- url?: string | undefined;
2197
- $id?: string | undefined;
2198
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2199
- disabled?: boolean | undefined;
2200
- title?: string | undefined;
2201
- timeout?: number | undefined;
2202
- id?: string | undefined;
2203
- $ref?: string | undefined;
2204
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2205
- exit?: boolean | undefined;
2206
- result?: JsonElement | undefined;
2207
- data?: JsonElement | undefined;
2208
- skipValidation?: boolean | undefined;
2209
- } | undefined;
2210
- link?: {
2211
- url: string;
2212
- } | undefined;
2386
+ name: string;
2213
2387
  }, {
2214
- action?: {
2215
- url?: string | undefined;
2216
- $id?: string | undefined;
2217
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2218
- disabled?: boolean | undefined;
2219
- title?: string | undefined;
2220
- timeout?: number | undefined;
2221
- id?: string | undefined;
2222
- $ref?: string | undefined;
2223
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2224
- exit?: boolean | undefined;
2225
- result?: JsonElement | undefined;
2226
- data?: JsonElement | undefined;
2227
- skipValidation?: boolean | undefined;
2228
- } | undefined;
2229
- link?: {
2230
- url: string;
2231
- } | undefined;
2232
- }>;
2233
- }, "strip", z.ZodTypeAny, {
2234
- title: string;
2235
- behavior: {
2236
- action?: {
2237
- url?: string | undefined;
2238
- $id?: string | undefined;
2239
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2240
- disabled?: boolean | undefined;
2241
- title?: string | undefined;
2242
- timeout?: number | undefined;
2243
- id?: string | undefined;
2244
- $ref?: string | undefined;
2245
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2246
- exit?: boolean | undefined;
2247
- result?: JsonElement | undefined;
2248
- data?: JsonElement | undefined;
2249
- skipValidation?: boolean | undefined;
2250
- } | undefined;
2251
- link?: {
2252
- url: string;
2253
- } | undefined;
2254
- };
2255
- accessibilityDescription?: string | undefined;
2256
- }, {
2257
- title: string;
2258
- behavior: {
2259
- action?: {
2260
- url?: string | undefined;
2261
- $id?: string | undefined;
2262
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2263
- disabled?: boolean | undefined;
2264
- title?: string | undefined;
2265
- timeout?: number | undefined;
2266
- id?: string | undefined;
2267
- $ref?: string | undefined;
2268
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2269
- exit?: boolean | undefined;
2270
- result?: JsonElement | undefined;
2271
- data?: JsonElement | undefined;
2272
- skipValidation?: boolean | undefined;
2273
- } | undefined;
2274
- link?: {
2275
- url: string;
2276
- } | undefined;
2388
+ name: string;
2389
+ }>, z.ZodObject<{
2390
+ text: z.ZodString;
2391
+ }, "strip", z.ZodTypeAny, {
2392
+ text: string;
2393
+ }, {
2394
+ text: string;
2395
+ }>]>;
2396
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
2397
+ callToAction: z.ZodOptional<z.ZodObject<{
2398
+ title: z.ZodString;
2399
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
2400
+ behavior: z.ZodObject<{
2401
+ action: z.ZodOptional<z.ZodObject<{
2402
+ title: z.ZodOptional<z.ZodString>;
2403
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
2404
+ disabled: z.ZodOptional<z.ZodBoolean>;
2405
+ $id: z.ZodOptional<z.ZodString>;
2406
+ $ref: z.ZodOptional<z.ZodString>;
2407
+ id: z.ZodOptional<z.ZodString>;
2408
+ url: z.ZodOptional<z.ZodString>;
2409
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
2410
+ exit: z.ZodOptional<z.ZodBoolean>;
2411
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2412
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
2413
+ timeout: z.ZodOptional<z.ZodNumber>;
2414
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
2415
+ }, "strip", z.ZodTypeAny, {
2416
+ url?: string | undefined;
2417
+ $id?: string | undefined;
2418
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2419
+ disabled?: boolean | undefined;
2420
+ title?: string | undefined;
2421
+ timeout?: number | undefined;
2422
+ id?: string | undefined;
2423
+ $ref?: string | undefined;
2424
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2425
+ exit?: boolean | undefined;
2426
+ result?: JsonElement | undefined;
2427
+ data?: JsonElement | undefined;
2428
+ skipValidation?: boolean | undefined;
2429
+ }, {
2430
+ url?: string | undefined;
2431
+ $id?: string | undefined;
2432
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2433
+ disabled?: boolean | undefined;
2434
+ title?: string | undefined;
2435
+ timeout?: number | undefined;
2436
+ id?: string | undefined;
2437
+ $ref?: string | undefined;
2438
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2439
+ exit?: boolean | undefined;
2440
+ result?: JsonElement | undefined;
2441
+ data?: JsonElement | undefined;
2442
+ skipValidation?: boolean | undefined;
2443
+ }>>;
2444
+ link: z.ZodOptional<z.ZodObject<{
2445
+ url: z.ZodString;
2446
+ }, "strip", z.ZodTypeAny, {
2447
+ url: string;
2448
+ }, {
2449
+ url: string;
2450
+ }>>;
2451
+ }, "strip", z.ZodTypeAny, {
2452
+ action?: {
2453
+ url?: string | undefined;
2454
+ $id?: string | undefined;
2455
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2456
+ disabled?: boolean | undefined;
2457
+ title?: string | undefined;
2458
+ timeout?: number | undefined;
2459
+ id?: string | undefined;
2460
+ $ref?: string | undefined;
2461
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2462
+ exit?: boolean | undefined;
2463
+ result?: JsonElement | undefined;
2464
+ data?: JsonElement | undefined;
2465
+ skipValidation?: boolean | undefined;
2466
+ } | undefined;
2467
+ link?: {
2468
+ url: string;
2469
+ } | undefined;
2470
+ }, {
2471
+ action?: {
2472
+ url?: string | undefined;
2473
+ $id?: string | undefined;
2474
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2475
+ disabled?: boolean | undefined;
2476
+ title?: string | undefined;
2477
+ timeout?: number | undefined;
2478
+ id?: string | undefined;
2479
+ $ref?: string | undefined;
2480
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2481
+ exit?: boolean | undefined;
2482
+ result?: JsonElement | undefined;
2483
+ data?: JsonElement | undefined;
2484
+ skipValidation?: boolean | undefined;
2485
+ } | undefined;
2486
+ link?: {
2487
+ url: string;
2488
+ } | undefined;
2489
+ }>;
2490
+ }, "strip", z.ZodTypeAny, {
2491
+ title: string;
2492
+ behavior: {
2493
+ action?: {
2494
+ url?: string | undefined;
2495
+ $id?: string | undefined;
2496
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2497
+ disabled?: boolean | undefined;
2498
+ title?: string | undefined;
2499
+ timeout?: number | undefined;
2500
+ id?: string | undefined;
2501
+ $ref?: string | undefined;
2502
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2503
+ exit?: boolean | undefined;
2504
+ result?: JsonElement | undefined;
2505
+ data?: JsonElement | undefined;
2506
+ skipValidation?: boolean | undefined;
2507
+ } | undefined;
2508
+ link?: {
2509
+ url: string;
2510
+ } | undefined;
2511
+ };
2512
+ accessibilityDescription?: string | undefined;
2513
+ }, {
2514
+ title: string;
2515
+ behavior: {
2516
+ action?: {
2517
+ url?: string | undefined;
2518
+ $id?: string | undefined;
2519
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2520
+ disabled?: boolean | undefined;
2521
+ title?: string | undefined;
2522
+ timeout?: number | undefined;
2523
+ id?: string | undefined;
2524
+ $ref?: string | undefined;
2525
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2526
+ exit?: boolean | undefined;
2527
+ result?: JsonElement | undefined;
2528
+ data?: JsonElement | undefined;
2529
+ skipValidation?: boolean | undefined;
2530
+ } | undefined;
2531
+ link?: {
2532
+ url: string;
2533
+ } | undefined;
2534
+ };
2535
+ accessibilityDescription?: string | undefined;
2536
+ }>>;
2537
+ }, "strip", z.ZodTypeAny, {
2538
+ icon: {
2539
+ name: string;
2540
+ } | {
2541
+ text: string;
2277
2542
  };
2278
- accessibilityDescription?: string | undefined;
2543
+ title: string;
2544
+ description?: string | undefined;
2545
+ status?: "done" | "not-done" | "pending" | undefined;
2546
+ callToAction?: {
2547
+ title: string;
2548
+ behavior: {
2549
+ action?: {
2550
+ url?: string | undefined;
2551
+ $id?: string | undefined;
2552
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2553
+ disabled?: boolean | undefined;
2554
+ title?: string | undefined;
2555
+ timeout?: number | undefined;
2556
+ id?: string | undefined;
2557
+ $ref?: string | undefined;
2558
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2559
+ exit?: boolean | undefined;
2560
+ result?: JsonElement | undefined;
2561
+ data?: JsonElement | undefined;
2562
+ skipValidation?: boolean | undefined;
2563
+ } | undefined;
2564
+ link?: {
2565
+ url: string;
2566
+ } | undefined;
2567
+ };
2568
+ accessibilityDescription?: string | undefined;
2569
+ } | undefined;
2570
+ }, {
2571
+ icon: {
2572
+ name: string;
2573
+ } | {
2574
+ text: string;
2575
+ };
2576
+ title: string;
2577
+ description?: string | undefined;
2578
+ status?: "done" | "not-done" | "pending" | undefined;
2579
+ callToAction?: {
2580
+ title: string;
2581
+ behavior: {
2582
+ action?: {
2583
+ url?: string | undefined;
2584
+ $id?: string | undefined;
2585
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
2586
+ disabled?: boolean | undefined;
2587
+ title?: string | undefined;
2588
+ timeout?: number | undefined;
2589
+ id?: string | undefined;
2590
+ $ref?: string | undefined;
2591
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
2592
+ exit?: boolean | undefined;
2593
+ result?: JsonElement | undefined;
2594
+ data?: JsonElement | undefined;
2595
+ skipValidation?: boolean | undefined;
2596
+ } | undefined;
2597
+ link?: {
2598
+ url: string;
2599
+ } | undefined;
2600
+ };
2601
+ accessibilityDescription?: string | undefined;
2602
+ } | undefined;
2279
2603
  }>;
2280
2604
  export declare const reviewLayoutSchema: z.ZodObject<{
2281
2605
  type: z.ZodLiteral<"review">;
@@ -2460,7 +2784,6 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2460
2784
  title?: string | undefined;
2461
2785
  control?: string | undefined;
2462
2786
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2463
- orientation?: string | undefined;
2464
2787
  callToAction?: {
2465
2788
  action: {
2466
2789
  url?: string | undefined;
@@ -2479,6 +2802,7 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2479
2802
  };
2480
2803
  title: string;
2481
2804
  } | undefined;
2805
+ orientation?: string | undefined;
2482
2806
  }, {
2483
2807
  type: "review";
2484
2808
  fields: {
@@ -2507,7 +2831,6 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2507
2831
  title?: string | undefined;
2508
2832
  control?: string | undefined;
2509
2833
  margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
2510
- orientation?: string | undefined;
2511
2834
  callToAction?: {
2512
2835
  action: {
2513
2836
  url?: string | undefined;
@@ -2526,6 +2849,7 @@ export declare const reviewLayoutSchema: z.ZodObject<{
2526
2849
  };
2527
2850
  title: string;
2528
2851
  } | undefined;
2852
+ orientation?: string | undefined;
2529
2853
  }>;
2530
2854
  export declare const searchResultSchema: z.ZodUnion<[z.ZodObject<{
2531
2855
  type: z.ZodLiteral<"action">;
@@ -3361,23 +3685,9 @@ export declare const alertLayoutSchema: z.ZodObject<{
3361
3685
  accessibilityDescription?: string | undefined;
3362
3686
  } | undefined;
3363
3687
  }>;
3364
- export declare const statusListLayoutItemSchema: z.ZodObject<{
3365
- title: z.ZodString;
3366
- description: z.ZodOptional<z.ZodString>;
3367
- icon: z.ZodUnion<[z.ZodObject<{
3368
- name: z.ZodString;
3369
- }, "strip", z.ZodTypeAny, {
3370
- name: string;
3371
- }, {
3372
- name: string;
3373
- }>, z.ZodObject<{
3374
- text: z.ZodString;
3375
- }, "strip", z.ZodTypeAny, {
3376
- text: string;
3377
- }, {
3378
- text: string;
3379
- }>]>;
3380
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
3688
+ export declare const listLayoutSchema: z.ZodObject<{
3689
+ type: z.ZodLiteral<"list">;
3690
+ title: z.ZodOptional<z.ZodString>;
3381
3691
  callToAction: z.ZodOptional<z.ZodObject<{
3382
3692
  title: z.ZodString;
3383
3693
  accessibilityDescription: z.ZodOptional<z.ZodString>;
@@ -3518,78 +3828,9 @@ export declare const statusListLayoutItemSchema: z.ZodObject<{
3518
3828
  };
3519
3829
  accessibilityDescription?: string | undefined;
3520
3830
  }>>;
3521
- }, "strip", z.ZodTypeAny, {
3522
- icon: {
3523
- name: string;
3524
- } | {
3525
- text: string;
3526
- };
3527
- title: string;
3528
- description?: string | undefined;
3529
- status?: "done" | "not-done" | "pending" | undefined;
3530
- callToAction?: {
3531
- title: string;
3532
- behavior: {
3533
- action?: {
3534
- url?: string | undefined;
3535
- $id?: string | undefined;
3536
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3537
- disabled?: boolean | undefined;
3538
- title?: string | undefined;
3539
- timeout?: number | undefined;
3540
- id?: string | undefined;
3541
- $ref?: string | undefined;
3542
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3543
- exit?: boolean | undefined;
3544
- result?: JsonElement | undefined;
3545
- data?: JsonElement | undefined;
3546
- skipValidation?: boolean | undefined;
3547
- } | undefined;
3548
- link?: {
3549
- url: string;
3550
- } | undefined;
3551
- };
3552
- accessibilityDescription?: string | undefined;
3553
- } | undefined;
3554
- }, {
3555
- icon: {
3556
- name: string;
3557
- } | {
3558
- text: string;
3559
- };
3560
- title: string;
3561
- description?: string | undefined;
3562
- status?: "done" | "not-done" | "pending" | undefined;
3563
- callToAction?: {
3564
- title: string;
3565
- behavior: {
3566
- action?: {
3567
- url?: string | undefined;
3568
- $id?: string | undefined;
3569
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3570
- disabled?: boolean | undefined;
3571
- title?: string | undefined;
3572
- timeout?: number | undefined;
3573
- id?: string | undefined;
3574
- $ref?: string | undefined;
3575
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3576
- exit?: boolean | undefined;
3577
- result?: JsonElement | undefined;
3578
- data?: JsonElement | undefined;
3579
- skipValidation?: boolean | undefined;
3580
- } | undefined;
3581
- link?: {
3582
- url: string;
3583
- } | undefined;
3584
- };
3585
- accessibilityDescription?: string | undefined;
3586
- } | undefined;
3587
- }>;
3588
- export declare const searchResponseBodySchema: z.ZodObject<{
3589
- results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
3590
- type: z.ZodLiteral<"action">;
3591
- title: z.ZodString;
3831
+ items: z.ZodArray<z.ZodObject<{
3592
3832
  description: z.ZodOptional<z.ZodString>;
3833
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>>;
3593
3834
  icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3594
3835
  name: z.ZodString;
3595
3836
  }, "strip", z.ZodTypeAny, {
@@ -3604,99 +3845,28 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3604
3845
  text: string;
3605
3846
  }>]>>;
3606
3847
  image: z.ZodOptional<z.ZodObject<{
3607
- type: z.ZodLiteral<"image">;
3608
3848
  text: z.ZodOptional<z.ZodString>;
3609
3849
  url: z.ZodString;
3610
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3611
3850
  accessibilityDescription: z.ZodOptional<z.ZodString>;
3612
- control: z.ZodOptional<z.ZodString>;
3613
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3614
3851
  }, "strip", z.ZodTypeAny, {
3615
3852
  url: string;
3616
- type: "image";
3617
- control?: string | undefined;
3618
3853
  text?: string | undefined;
3619
3854
  accessibilityDescription?: string | undefined;
3620
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3621
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3622
3855
  }, {
3623
3856
  url: string;
3624
- type: "image";
3625
- control?: string | undefined;
3626
3857
  text?: string | undefined;
3627
3858
  accessibilityDescription?: string | undefined;
3628
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3629
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3630
3859
  }>>;
3631
- value: z.ZodObject<{
3632
- title: z.ZodOptional<z.ZodString>;
3633
- type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
3634
- disabled: z.ZodOptional<z.ZodBoolean>;
3635
- $id: z.ZodOptional<z.ZodString>;
3636
- $ref: z.ZodOptional<z.ZodString>;
3637
- id: z.ZodOptional<z.ZodString>;
3638
- url: z.ZodOptional<z.ZodString>;
3639
- method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
3640
- exit: z.ZodOptional<z.ZodBoolean>;
3641
- result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3642
- data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
3643
- timeout: z.ZodOptional<z.ZodNumber>;
3644
- skipValidation: z.ZodOptional<z.ZodBoolean>;
3645
- }, "strip", z.ZodTypeAny, {
3646
- url?: string | undefined;
3647
- $id?: string | undefined;
3648
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3649
- disabled?: boolean | undefined;
3650
- title?: string | undefined;
3651
- timeout?: number | undefined;
3652
- id?: string | undefined;
3653
- $ref?: string | undefined;
3654
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3655
- exit?: boolean | undefined;
3656
- result?: JsonElement | undefined;
3657
- data?: JsonElement | undefined;
3658
- skipValidation?: boolean | undefined;
3659
- }, {
3660
- url?: string | undefined;
3661
- $id?: string | undefined;
3662
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3663
- disabled?: boolean | undefined;
3664
- title?: string | undefined;
3665
- timeout?: number | undefined;
3666
- id?: string | undefined;
3667
- $ref?: string | undefined;
3668
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3669
- exit?: boolean | undefined;
3670
- result?: JsonElement | undefined;
3671
- data?: JsonElement | undefined;
3672
- skipValidation?: boolean | undefined;
3673
- }>;
3860
+ title: z.ZodString;
3861
+ subtitle: z.ZodOptional<z.ZodString>;
3862
+ value: z.ZodOptional<z.ZodString>;
3863
+ subvalue: z.ZodOptional<z.ZodString>;
3674
3864
  }, "strip", z.ZodTypeAny, {
3675
- type: "action";
3676
3865
  title: string;
3677
- value: {
3678
- url?: string | undefined;
3679
- $id?: string | undefined;
3680
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3681
- disabled?: boolean | undefined;
3682
- title?: string | undefined;
3683
- timeout?: number | undefined;
3684
- id?: string | undefined;
3685
- $ref?: string | undefined;
3686
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3687
- exit?: boolean | undefined;
3688
- result?: JsonElement | undefined;
3689
- data?: JsonElement | undefined;
3690
- skipValidation?: boolean | undefined;
3691
- };
3692
3866
  image?: {
3693
3867
  url: string;
3694
- type: "image";
3695
- control?: string | undefined;
3696
3868
  text?: string | undefined;
3697
3869
  accessibilityDescription?: string | undefined;
3698
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3699
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3700
3870
  } | undefined;
3701
3871
  description?: string | undefined;
3702
3872
  icon?: {
@@ -3704,32 +3874,16 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3704
3874
  } | {
3705
3875
  text: string;
3706
3876
  } | undefined;
3877
+ value?: string | undefined;
3878
+ status?: "neutral" | "warning" | "positive" | undefined;
3879
+ subtitle?: string | undefined;
3880
+ subvalue?: string | undefined;
3707
3881
  }, {
3708
- type: "action";
3709
3882
  title: string;
3710
- value: {
3711
- url?: string | undefined;
3712
- $id?: string | undefined;
3713
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3714
- disabled?: boolean | undefined;
3715
- title?: string | undefined;
3716
- timeout?: number | undefined;
3717
- id?: string | undefined;
3718
- $ref?: string | undefined;
3719
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3720
- exit?: boolean | undefined;
3721
- result?: JsonElement | undefined;
3722
- data?: JsonElement | undefined;
3723
- skipValidation?: boolean | undefined;
3724
- };
3725
3883
  image?: {
3726
3884
  url: string;
3727
- type: "image";
3728
- control?: string | undefined;
3729
3885
  text?: string | undefined;
3730
3886
  accessibilityDescription?: string | undefined;
3731
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3732
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3733
3887
  } | undefined;
3734
3888
  description?: string | undefined;
3735
3889
  icon?: {
@@ -3737,81 +3891,21 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3737
3891
  } | {
3738
3892
  text: string;
3739
3893
  } | undefined;
3740
- }>, z.ZodObject<{
3741
- type: z.ZodLiteral<"search">;
3742
- title: z.ZodString;
3743
- description: z.ZodOptional<z.ZodString>;
3744
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3745
- name: z.ZodString;
3746
- }, "strip", z.ZodTypeAny, {
3747
- name: string;
3748
- }, {
3749
- name: string;
3750
- }>, z.ZodObject<{
3751
- text: z.ZodString;
3752
- }, "strip", z.ZodTypeAny, {
3753
- text: string;
3754
- }, {
3755
- text: string;
3756
- }>]>>;
3757
- image: z.ZodOptional<z.ZodObject<{
3758
- type: z.ZodLiteral<"image">;
3759
- text: z.ZodOptional<z.ZodString>;
3760
- url: z.ZodString;
3761
- size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3762
- accessibilityDescription: z.ZodOptional<z.ZodString>;
3763
- control: z.ZodOptional<z.ZodString>;
3764
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3765
- }, "strip", z.ZodTypeAny, {
3766
- url: string;
3767
- type: "image";
3768
- control?: string | undefined;
3769
- text?: string | undefined;
3770
- accessibilityDescription?: string | undefined;
3771
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3772
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3773
- }, {
3774
- url: string;
3775
- type: "image";
3776
- control?: string | undefined;
3777
- text?: string | undefined;
3778
- accessibilityDescription?: string | undefined;
3779
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3780
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3781
- }>>;
3782
- value: z.ZodObject<{
3783
- url: z.ZodString;
3784
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
3785
- param: z.ZodString;
3786
- query: z.ZodString;
3787
- }, "strip", z.ZodTypeAny, {
3788
- url: string;
3789
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3790
- param: string;
3791
- query: string;
3792
- }, {
3793
- url: string;
3794
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3795
- param: string;
3796
- query: string;
3797
- }>;
3798
- }, "strip", z.ZodTypeAny, {
3799
- type: "search";
3894
+ value?: string | undefined;
3895
+ status?: "neutral" | "warning" | "positive" | undefined;
3896
+ subtitle?: string | undefined;
3897
+ subvalue?: string | undefined;
3898
+ }>, "many">;
3899
+ control: z.ZodOptional<z.ZodString>;
3900
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
3901
+ }, "strip", z.ZodTypeAny, {
3902
+ type: "list";
3903
+ items: {
3800
3904
  title: string;
3801
- value: {
3802
- url: string;
3803
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3804
- param: string;
3805
- query: string;
3806
- };
3807
3905
  image?: {
3808
3906
  url: string;
3809
- type: "image";
3810
- control?: string | undefined;
3811
3907
  text?: string | undefined;
3812
3908
  accessibilityDescription?: string | undefined;
3813
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3814
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3815
3909
  } | undefined;
3816
3910
  description?: string | undefined;
3817
3911
  icon?: {
@@ -3819,108 +3913,46 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3819
3913
  } | {
3820
3914
  text: string;
3821
3915
  } | undefined;
3822
- }, {
3823
- type: "search";
3916
+ value?: string | undefined;
3917
+ status?: "neutral" | "warning" | "positive" | undefined;
3918
+ subtitle?: string | undefined;
3919
+ subvalue?: string | undefined;
3920
+ }[];
3921
+ title?: string | undefined;
3922
+ control?: string | undefined;
3923
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3924
+ callToAction?: {
3824
3925
  title: string;
3825
- value: {
3826
- url: string;
3827
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3828
- param: string;
3829
- query: string;
3830
- };
3831
- image?: {
3832
- url: string;
3833
- type: "image";
3834
- control?: string | undefined;
3835
- text?: string | undefined;
3836
- accessibilityDescription?: string | undefined;
3837
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3838
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3839
- } | undefined;
3840
- description?: string | undefined;
3841
- icon?: {
3842
- name: string;
3843
- } | {
3844
- text: string;
3845
- } | undefined;
3846
- }>]>, "many">;
3847
- }, "strip", z.ZodTypeAny, {
3848
- results: ({
3849
- type: "search";
3850
- title: string;
3851
- value: {
3852
- url: string;
3853
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3854
- param: string;
3855
- query: string;
3856
- };
3857
- image?: {
3858
- url: string;
3859
- type: "image";
3860
- control?: string | undefined;
3861
- text?: string | undefined;
3862
- accessibilityDescription?: string | undefined;
3863
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3864
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3865
- } | undefined;
3866
- description?: string | undefined;
3867
- icon?: {
3868
- name: string;
3869
- } | {
3870
- text: string;
3871
- } | undefined;
3872
- } | {
3873
- type: "action";
3874
- title: string;
3875
- value: {
3876
- url?: string | undefined;
3877
- $id?: string | undefined;
3878
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3879
- disabled?: boolean | undefined;
3880
- title?: string | undefined;
3881
- timeout?: number | undefined;
3882
- id?: string | undefined;
3883
- $ref?: string | undefined;
3884
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3885
- exit?: boolean | undefined;
3886
- result?: JsonElement | undefined;
3887
- data?: JsonElement | undefined;
3888
- skipValidation?: boolean | undefined;
3926
+ behavior: {
3927
+ action?: {
3928
+ url?: string | undefined;
3929
+ $id?: string | undefined;
3930
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3931
+ disabled?: boolean | undefined;
3932
+ title?: string | undefined;
3933
+ timeout?: number | undefined;
3934
+ id?: string | undefined;
3935
+ $ref?: string | undefined;
3936
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3937
+ exit?: boolean | undefined;
3938
+ result?: JsonElement | undefined;
3939
+ data?: JsonElement | undefined;
3940
+ skipValidation?: boolean | undefined;
3941
+ } | undefined;
3942
+ link?: {
3943
+ url: string;
3944
+ } | undefined;
3889
3945
  };
3890
- image?: {
3891
- url: string;
3892
- type: "image";
3893
- control?: string | undefined;
3894
- text?: string | undefined;
3895
- accessibilityDescription?: string | undefined;
3896
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3897
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3898
- } | undefined;
3899
- description?: string | undefined;
3900
- icon?: {
3901
- name: string;
3902
- } | {
3903
- text: string;
3904
- } | undefined;
3905
- })[];
3946
+ accessibilityDescription?: string | undefined;
3947
+ } | undefined;
3906
3948
  }, {
3907
- results: ({
3908
- type: "search";
3949
+ type: "list";
3950
+ items: {
3909
3951
  title: string;
3910
- value: {
3911
- url: string;
3912
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
3913
- param: string;
3914
- query: string;
3915
- };
3916
3952
  image?: {
3917
3953
  url: string;
3918
- type: "image";
3919
- control?: string | undefined;
3920
3954
  text?: string | undefined;
3921
3955
  accessibilityDescription?: string | undefined;
3922
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3923
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3924
3956
  } | undefined;
3925
3957
  description?: string | undefined;
3926
3958
  icon?: {
@@ -3928,113 +3960,58 @@ export declare const searchResponseBodySchema: z.ZodObject<{
3928
3960
  } | {
3929
3961
  text: string;
3930
3962
  } | undefined;
3931
- } | {
3932
- type: "action";
3963
+ value?: string | undefined;
3964
+ status?: "neutral" | "warning" | "positive" | undefined;
3965
+ subtitle?: string | undefined;
3966
+ subvalue?: string | undefined;
3967
+ }[];
3968
+ title?: string | undefined;
3969
+ control?: string | undefined;
3970
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3971
+ callToAction?: {
3933
3972
  title: string;
3934
- value: {
3935
- url?: string | undefined;
3936
- $id?: string | undefined;
3937
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3938
- disabled?: boolean | undefined;
3939
- title?: string | undefined;
3940
- timeout?: number | undefined;
3941
- id?: string | undefined;
3942
- $ref?: string | undefined;
3943
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3944
- exit?: boolean | undefined;
3945
- result?: JsonElement | undefined;
3946
- data?: JsonElement | undefined;
3947
- skipValidation?: boolean | undefined;
3973
+ behavior: {
3974
+ action?: {
3975
+ url?: string | undefined;
3976
+ $id?: string | undefined;
3977
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
3978
+ disabled?: boolean | undefined;
3979
+ title?: string | undefined;
3980
+ timeout?: number | undefined;
3981
+ id?: string | undefined;
3982
+ $ref?: string | undefined;
3983
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
3984
+ exit?: boolean | undefined;
3985
+ result?: JsonElement | undefined;
3986
+ data?: JsonElement | undefined;
3987
+ skipValidation?: boolean | undefined;
3988
+ } | undefined;
3989
+ link?: {
3990
+ url: string;
3991
+ } | undefined;
3948
3992
  };
3949
- image?: {
3950
- url: string;
3951
- type: "image";
3952
- control?: string | undefined;
3953
- text?: string | undefined;
3954
- accessibilityDescription?: string | undefined;
3955
- size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3956
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
3957
- } | undefined;
3958
- description?: string | undefined;
3959
- icon?: {
3993
+ accessibilityDescription?: string | undefined;
3994
+ } | undefined;
3995
+ }>;
3996
+ export declare const statusListLayoutSchema: z.ZodObject<{
3997
+ type: z.ZodLiteral<"status-list">;
3998
+ items: z.ZodArray<z.ZodObject<{
3999
+ title: z.ZodString;
4000
+ description: z.ZodOptional<z.ZodString>;
4001
+ icon: z.ZodUnion<[z.ZodObject<{
4002
+ name: z.ZodString;
4003
+ }, "strip", z.ZodTypeAny, {
3960
4004
  name: string;
3961
- } | {
4005
+ }, {
4006
+ name: string;
4007
+ }>, z.ZodObject<{
4008
+ text: z.ZodString;
4009
+ }, "strip", z.ZodTypeAny, {
3962
4010
  text: string;
3963
- } | undefined;
3964
- })[];
3965
- }>;
3966
- export declare const blobSchemaSchema: z.ZodObject<{
3967
- type: z.ZodLiteral<"blob">;
3968
- promoted: z.ZodOptional<z.ZodBoolean>;
3969
- $id: z.ZodOptional<z.ZodString>;
3970
- title: z.ZodOptional<z.ZodString>;
3971
- description: z.ZodOptional<z.ZodString>;
3972
- control: z.ZodOptional<z.ZodString>;
3973
- hidden: z.ZodOptional<z.ZodBoolean>;
3974
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
3975
- name: z.ZodString;
3976
- }, "strip", z.ZodTypeAny, {
3977
- name: string;
3978
- }, {
3979
- name: string;
3980
- }>, z.ZodObject<{
3981
- text: z.ZodString;
3982
- }, "strip", z.ZodTypeAny, {
3983
- text: string;
3984
- }, {
3985
- text: string;
3986
- }>]>>;
3987
- image: z.ZodOptional<z.ZodObject<{
3988
- text: z.ZodOptional<z.ZodString>;
3989
- url: z.ZodString;
3990
- accessibilityDescription: z.ZodOptional<z.ZodString>;
3991
- }, "strip", z.ZodTypeAny, {
3992
- url: string;
3993
- text?: string | undefined;
3994
- accessibilityDescription?: string | undefined;
3995
- }, {
3996
- url: string;
3997
- text?: string | undefined;
3998
- accessibilityDescription?: string | undefined;
3999
- }>>;
4000
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4001
- summary: z.ZodOptional<z.ZodObject<{
4002
- providesTitle: z.ZodOptional<z.ZodBoolean>;
4003
- providesDescription: z.ZodOptional<z.ZodBoolean>;
4004
- providesIcon: z.ZodOptional<z.ZodBoolean>;
4005
- providesImage: z.ZodOptional<z.ZodBoolean>;
4006
- }, "strip", z.ZodTypeAny, {
4007
- providesTitle?: boolean | undefined;
4008
- providesDescription?: boolean | undefined;
4009
- providesIcon?: boolean | undefined;
4010
- providesImage?: boolean | undefined;
4011
- }, {
4012
- providesTitle?: boolean | undefined;
4013
- providesDescription?: boolean | undefined;
4014
- providesIcon?: boolean | undefined;
4015
- providesImage?: boolean | undefined;
4016
- }>>;
4017
- analyticsId: z.ZodOptional<z.ZodString>;
4018
- validationAsync: z.ZodOptional<z.ZodObject<{
4019
- param: z.ZodString;
4020
- method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
4021
- url: z.ZodString;
4022
- }, "strip", z.ZodTypeAny, {
4023
- url: string;
4024
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4025
- param: string;
4026
- }, {
4027
- url: string;
4028
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4029
- param: string;
4030
- }>>;
4031
- validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4032
- alert: z.ZodOptional<z.ZodObject<{
4033
- type: z.ZodLiteral<"alert">;
4034
- markdown: z.ZodString;
4035
- context: z.ZodOptional<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">]>>;
4036
- control: z.ZodOptional<z.ZodString>;
4037
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4011
+ }, {
4012
+ text: string;
4013
+ }>]>;
4014
+ status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
4038
4015
  callToAction: z.ZodOptional<z.ZodObject<{
4039
4016
  title: z.ZodString;
4040
4017
  accessibilityDescription: z.ZodOptional<z.ZodString>;
@@ -4176,11 +4153,14 @@ export declare const blobSchemaSchema: z.ZodObject<{
4176
4153
  accessibilityDescription?: string | undefined;
4177
4154
  }>>;
4178
4155
  }, "strip", z.ZodTypeAny, {
4179
- type: "alert";
4180
- markdown: string;
4181
- control?: string | undefined;
4182
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4183
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4156
+ icon: {
4157
+ name: string;
4158
+ } | {
4159
+ text: string;
4160
+ };
4161
+ title: string;
4162
+ description?: string | undefined;
4163
+ status?: "done" | "not-done" | "pending" | undefined;
4184
4164
  callToAction?: {
4185
4165
  title: string;
4186
4166
  behavior: {
@@ -4206,11 +4186,14 @@ export declare const blobSchemaSchema: z.ZodObject<{
4206
4186
  accessibilityDescription?: string | undefined;
4207
4187
  } | undefined;
4208
4188
  }, {
4209
- type: "alert";
4210
- markdown: string;
4211
- control?: string | undefined;
4212
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4213
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4189
+ icon: {
4190
+ name: string;
4191
+ } | {
4192
+ text: string;
4193
+ };
4194
+ title: string;
4195
+ description?: string | undefined;
4196
+ status?: "done" | "not-done" | "pending" | undefined;
4214
4197
  callToAction?: {
4215
4198
  title: string;
4216
4199
  behavior: {
@@ -4235,25 +4218,60 @@ export declare const blobSchemaSchema: z.ZodObject<{
4235
4218
  };
4236
4219
  accessibilityDescription?: string | undefined;
4237
4220
  } | undefined;
4238
- }>>;
4239
- cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
4240
- accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4241
- maxSize: z.ZodOptional<z.ZodNumber>;
4242
- source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
4243
- disabled: z.ZodOptional<z.ZodBoolean>;
4221
+ }>, "many">;
4222
+ title: z.ZodOptional<z.ZodString>;
4223
+ control: z.ZodOptional<z.ZodString>;
4224
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4244
4225
  }, "strip", z.ZodTypeAny, {
4245
- type: "blob";
4246
- image?: {
4247
- url: string;
4248
- text?: string | undefined;
4249
- accessibilityDescription?: string | undefined;
4250
- } | undefined;
4251
- alert?: {
4252
- type: "alert";
4253
- markdown: string;
4254
- control?: string | undefined;
4255
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4256
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4226
+ type: "status-list";
4227
+ items: {
4228
+ icon: {
4229
+ name: string;
4230
+ } | {
4231
+ text: string;
4232
+ };
4233
+ title: string;
4234
+ description?: string | undefined;
4235
+ status?: "done" | "not-done" | "pending" | undefined;
4236
+ callToAction?: {
4237
+ title: string;
4238
+ behavior: {
4239
+ action?: {
4240
+ url?: string | undefined;
4241
+ $id?: string | undefined;
4242
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4243
+ disabled?: boolean | undefined;
4244
+ title?: string | undefined;
4245
+ timeout?: number | undefined;
4246
+ id?: string | undefined;
4247
+ $ref?: string | undefined;
4248
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4249
+ exit?: boolean | undefined;
4250
+ result?: JsonElement | undefined;
4251
+ data?: JsonElement | undefined;
4252
+ skipValidation?: boolean | undefined;
4253
+ } | undefined;
4254
+ link?: {
4255
+ url: string;
4256
+ } | undefined;
4257
+ };
4258
+ accessibilityDescription?: string | undefined;
4259
+ } | undefined;
4260
+ }[];
4261
+ title?: string | undefined;
4262
+ control?: string | undefined;
4263
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4264
+ }, {
4265
+ type: "status-list";
4266
+ items: {
4267
+ icon: {
4268
+ name: string;
4269
+ } | {
4270
+ text: string;
4271
+ };
4272
+ title: string;
4273
+ description?: string | undefined;
4274
+ status?: "done" | "not-done" | "pending" | undefined;
4257
4275
  callToAction?: {
4258
4276
  title: string;
4259
4277
  behavior: {
@@ -4278,108 +4296,455 @@ export declare const blobSchemaSchema: z.ZodObject<{
4278
4296
  };
4279
4297
  accessibilityDescription?: string | undefined;
4280
4298
  } | undefined;
4281
- } | undefined;
4282
- $id?: string | undefined;
4283
- analyticsId?: string | undefined;
4284
- description?: string | undefined;
4285
- disabled?: boolean | undefined;
4286
- hidden?: boolean | undefined;
4287
- icon?: {
4299
+ }[];
4300
+ title?: string | undefined;
4301
+ control?: string | undefined;
4302
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4303
+ }>;
4304
+ export declare const searchResponseBodySchema: z.ZodObject<{
4305
+ results: z.ZodArray<z.ZodUnion<[z.ZodObject<{
4306
+ type: z.ZodLiteral<"action">;
4307
+ title: z.ZodString;
4308
+ description: z.ZodOptional<z.ZodString>;
4309
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4310
+ name: z.ZodString;
4311
+ }, "strip", z.ZodTypeAny, {
4312
+ name: string;
4313
+ }, {
4314
+ name: string;
4315
+ }>, z.ZodObject<{
4316
+ text: z.ZodString;
4317
+ }, "strip", z.ZodTypeAny, {
4318
+ text: string;
4319
+ }, {
4320
+ text: string;
4321
+ }>]>>;
4322
+ image: z.ZodOptional<z.ZodObject<{
4323
+ type: z.ZodLiteral<"image">;
4324
+ text: z.ZodOptional<z.ZodString>;
4325
+ url: z.ZodString;
4326
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4327
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
4328
+ control: z.ZodOptional<z.ZodString>;
4329
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4330
+ }, "strip", z.ZodTypeAny, {
4331
+ url: string;
4332
+ type: "image";
4333
+ control?: string | undefined;
4334
+ text?: string | undefined;
4335
+ accessibilityDescription?: string | undefined;
4336
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4337
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4338
+ }, {
4339
+ url: string;
4340
+ type: "image";
4341
+ control?: string | undefined;
4342
+ text?: string | undefined;
4343
+ accessibilityDescription?: string | undefined;
4344
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4345
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4346
+ }>>;
4347
+ value: z.ZodObject<{
4348
+ title: z.ZodOptional<z.ZodString>;
4349
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"primary">, z.ZodLiteral<"secondary">, z.ZodLiteral<"link">, z.ZodLiteral<"positive">, z.ZodLiteral<"negative">]>>;
4350
+ disabled: z.ZodOptional<z.ZodBoolean>;
4351
+ $id: z.ZodOptional<z.ZodString>;
4352
+ $ref: z.ZodOptional<z.ZodString>;
4353
+ id: z.ZodOptional<z.ZodString>;
4354
+ url: z.ZodOptional<z.ZodString>;
4355
+ method: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>>;
4356
+ exit: z.ZodOptional<z.ZodBoolean>;
4357
+ result: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
4358
+ data: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
4359
+ timeout: z.ZodOptional<z.ZodNumber>;
4360
+ skipValidation: z.ZodOptional<z.ZodBoolean>;
4361
+ }, "strip", z.ZodTypeAny, {
4362
+ url?: string | undefined;
4363
+ $id?: string | undefined;
4364
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4365
+ disabled?: boolean | undefined;
4366
+ title?: string | undefined;
4367
+ timeout?: number | undefined;
4368
+ id?: string | undefined;
4369
+ $ref?: string | undefined;
4370
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4371
+ exit?: boolean | undefined;
4372
+ result?: JsonElement | undefined;
4373
+ data?: JsonElement | undefined;
4374
+ skipValidation?: boolean | undefined;
4375
+ }, {
4376
+ url?: string | undefined;
4377
+ $id?: string | undefined;
4378
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4379
+ disabled?: boolean | undefined;
4380
+ title?: string | undefined;
4381
+ timeout?: number | undefined;
4382
+ id?: string | undefined;
4383
+ $ref?: string | undefined;
4384
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4385
+ exit?: boolean | undefined;
4386
+ result?: JsonElement | undefined;
4387
+ data?: JsonElement | undefined;
4388
+ skipValidation?: boolean | undefined;
4389
+ }>;
4390
+ }, "strip", z.ZodTypeAny, {
4391
+ type: "action";
4392
+ title: string;
4393
+ value: {
4394
+ url?: string | undefined;
4395
+ $id?: string | undefined;
4396
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4397
+ disabled?: boolean | undefined;
4398
+ title?: string | undefined;
4399
+ timeout?: number | undefined;
4400
+ id?: string | undefined;
4401
+ $ref?: string | undefined;
4402
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4403
+ exit?: boolean | undefined;
4404
+ result?: JsonElement | undefined;
4405
+ data?: JsonElement | undefined;
4406
+ skipValidation?: boolean | undefined;
4407
+ };
4408
+ image?: {
4409
+ url: string;
4410
+ type: "image";
4411
+ control?: string | undefined;
4412
+ text?: string | undefined;
4413
+ accessibilityDescription?: string | undefined;
4414
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4415
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4416
+ } | undefined;
4417
+ description?: string | undefined;
4418
+ icon?: {
4419
+ name: string;
4420
+ } | {
4421
+ text: string;
4422
+ } | undefined;
4423
+ }, {
4424
+ type: "action";
4425
+ title: string;
4426
+ value: {
4427
+ url?: string | undefined;
4428
+ $id?: string | undefined;
4429
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4430
+ disabled?: boolean | undefined;
4431
+ title?: string | undefined;
4432
+ timeout?: number | undefined;
4433
+ id?: string | undefined;
4434
+ $ref?: string | undefined;
4435
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4436
+ exit?: boolean | undefined;
4437
+ result?: JsonElement | undefined;
4438
+ data?: JsonElement | undefined;
4439
+ skipValidation?: boolean | undefined;
4440
+ };
4441
+ image?: {
4442
+ url: string;
4443
+ type: "image";
4444
+ control?: string | undefined;
4445
+ text?: string | undefined;
4446
+ accessibilityDescription?: string | undefined;
4447
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4448
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4449
+ } | undefined;
4450
+ description?: string | undefined;
4451
+ icon?: {
4452
+ name: string;
4453
+ } | {
4454
+ text: string;
4455
+ } | undefined;
4456
+ }>, z.ZodObject<{
4457
+ type: z.ZodLiteral<"search">;
4458
+ title: z.ZodString;
4459
+ description: z.ZodOptional<z.ZodString>;
4460
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4461
+ name: z.ZodString;
4462
+ }, "strip", z.ZodTypeAny, {
4463
+ name: string;
4464
+ }, {
4465
+ name: string;
4466
+ }>, z.ZodObject<{
4467
+ text: z.ZodString;
4468
+ }, "strip", z.ZodTypeAny, {
4469
+ text: string;
4470
+ }, {
4471
+ text: string;
4472
+ }>]>>;
4473
+ image: z.ZodOptional<z.ZodObject<{
4474
+ type: z.ZodLiteral<"image">;
4475
+ text: z.ZodOptional<z.ZodString>;
4476
+ url: z.ZodString;
4477
+ size: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4478
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
4479
+ control: z.ZodOptional<z.ZodString>;
4480
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4481
+ }, "strip", z.ZodTypeAny, {
4482
+ url: string;
4483
+ type: "image";
4484
+ control?: string | undefined;
4485
+ text?: string | undefined;
4486
+ accessibilityDescription?: string | undefined;
4487
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4488
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4489
+ }, {
4490
+ url: string;
4491
+ type: "image";
4492
+ control?: string | undefined;
4493
+ text?: string | undefined;
4494
+ accessibilityDescription?: string | undefined;
4495
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4496
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4497
+ }>>;
4498
+ value: z.ZodObject<{
4499
+ url: z.ZodString;
4500
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
4501
+ param: z.ZodString;
4502
+ query: z.ZodString;
4503
+ }, "strip", z.ZodTypeAny, {
4504
+ url: string;
4505
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4506
+ param: string;
4507
+ query: string;
4508
+ }, {
4509
+ url: string;
4510
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4511
+ param: string;
4512
+ query: string;
4513
+ }>;
4514
+ }, "strip", z.ZodTypeAny, {
4515
+ type: "search";
4516
+ title: string;
4517
+ value: {
4518
+ url: string;
4519
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4520
+ param: string;
4521
+ query: string;
4522
+ };
4523
+ image?: {
4524
+ url: string;
4525
+ type: "image";
4526
+ control?: string | undefined;
4527
+ text?: string | undefined;
4528
+ accessibilityDescription?: string | undefined;
4529
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4530
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4531
+ } | undefined;
4532
+ description?: string | undefined;
4533
+ icon?: {
4534
+ name: string;
4535
+ } | {
4536
+ text: string;
4537
+ } | undefined;
4538
+ }, {
4539
+ type: "search";
4540
+ title: string;
4541
+ value: {
4542
+ url: string;
4543
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4544
+ param: string;
4545
+ query: string;
4546
+ };
4547
+ image?: {
4548
+ url: string;
4549
+ type: "image";
4550
+ control?: string | undefined;
4551
+ text?: string | undefined;
4552
+ accessibilityDescription?: string | undefined;
4553
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4554
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4555
+ } | undefined;
4556
+ description?: string | undefined;
4557
+ icon?: {
4558
+ name: string;
4559
+ } | {
4560
+ text: string;
4561
+ } | undefined;
4562
+ }>]>, "many">;
4563
+ }, "strip", z.ZodTypeAny, {
4564
+ results: ({
4565
+ type: "search";
4566
+ title: string;
4567
+ value: {
4568
+ url: string;
4569
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4570
+ param: string;
4571
+ query: string;
4572
+ };
4573
+ image?: {
4574
+ url: string;
4575
+ type: "image";
4576
+ control?: string | undefined;
4577
+ text?: string | undefined;
4578
+ accessibilityDescription?: string | undefined;
4579
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4580
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4581
+ } | undefined;
4582
+ description?: string | undefined;
4583
+ icon?: {
4584
+ name: string;
4585
+ } | {
4586
+ text: string;
4587
+ } | undefined;
4588
+ } | {
4589
+ type: "action";
4590
+ title: string;
4591
+ value: {
4592
+ url?: string | undefined;
4593
+ $id?: string | undefined;
4594
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4595
+ disabled?: boolean | undefined;
4596
+ title?: string | undefined;
4597
+ timeout?: number | undefined;
4598
+ id?: string | undefined;
4599
+ $ref?: string | undefined;
4600
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4601
+ exit?: boolean | undefined;
4602
+ result?: JsonElement | undefined;
4603
+ data?: JsonElement | undefined;
4604
+ skipValidation?: boolean | undefined;
4605
+ };
4606
+ image?: {
4607
+ url: string;
4608
+ type: "image";
4609
+ control?: string | undefined;
4610
+ text?: string | undefined;
4611
+ accessibilityDescription?: string | undefined;
4612
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4613
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4614
+ } | undefined;
4615
+ description?: string | undefined;
4616
+ icon?: {
4617
+ name: string;
4618
+ } | {
4619
+ text: string;
4620
+ } | undefined;
4621
+ })[];
4622
+ }, {
4623
+ results: ({
4624
+ type: "search";
4625
+ title: string;
4626
+ value: {
4627
+ url: string;
4628
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4629
+ param: string;
4630
+ query: string;
4631
+ };
4632
+ image?: {
4633
+ url: string;
4634
+ type: "image";
4635
+ control?: string | undefined;
4636
+ text?: string | undefined;
4637
+ accessibilityDescription?: string | undefined;
4638
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4639
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4640
+ } | undefined;
4641
+ description?: string | undefined;
4642
+ icon?: {
4643
+ name: string;
4644
+ } | {
4645
+ text: string;
4646
+ } | undefined;
4647
+ } | {
4648
+ type: "action";
4649
+ title: string;
4650
+ value: {
4651
+ url?: string | undefined;
4652
+ $id?: string | undefined;
4653
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4654
+ disabled?: boolean | undefined;
4655
+ title?: string | undefined;
4656
+ timeout?: number | undefined;
4657
+ id?: string | undefined;
4658
+ $ref?: string | undefined;
4659
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4660
+ exit?: boolean | undefined;
4661
+ result?: JsonElement | undefined;
4662
+ data?: JsonElement | undefined;
4663
+ skipValidation?: boolean | undefined;
4664
+ };
4665
+ image?: {
4666
+ url: string;
4667
+ type: "image";
4668
+ control?: string | undefined;
4669
+ text?: string | undefined;
4670
+ accessibilityDescription?: string | undefined;
4671
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4672
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4673
+ } | undefined;
4674
+ description?: string | undefined;
4675
+ icon?: {
4676
+ name: string;
4677
+ } | {
4678
+ text: string;
4679
+ } | undefined;
4680
+ })[];
4681
+ }>;
4682
+ export declare const blobSchemaSchema: z.ZodObject<{
4683
+ type: z.ZodLiteral<"blob">;
4684
+ promoted: z.ZodOptional<z.ZodBoolean>;
4685
+ $id: z.ZodOptional<z.ZodString>;
4686
+ title: z.ZodOptional<z.ZodString>;
4687
+ description: z.ZodOptional<z.ZodString>;
4688
+ control: z.ZodOptional<z.ZodString>;
4689
+ hidden: z.ZodOptional<z.ZodBoolean>;
4690
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4691
+ name: z.ZodString;
4692
+ }, "strip", z.ZodTypeAny, {
4288
4693
  name: string;
4289
- } | {
4694
+ }, {
4695
+ name: string;
4696
+ }>, z.ZodObject<{
4697
+ text: z.ZodString;
4698
+ }, "strip", z.ZodTypeAny, {
4290
4699
  text: string;
4291
- } | undefined;
4292
- promoted?: boolean | undefined;
4293
- summary?: {
4294
- providesTitle?: boolean | undefined;
4295
- providesDescription?: boolean | undefined;
4296
- providesIcon?: boolean | undefined;
4297
- providesImage?: boolean | undefined;
4298
- } | undefined;
4299
- title?: string | undefined;
4300
- validationAsync?: {
4700
+ }, {
4701
+ text: string;
4702
+ }>]>>;
4703
+ image: z.ZodOptional<z.ZodObject<{
4704
+ text: z.ZodOptional<z.ZodString>;
4705
+ url: z.ZodString;
4706
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
4707
+ }, "strip", z.ZodTypeAny, {
4301
4708
  url: string;
4302
- method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4303
- param: string;
4304
- } | undefined;
4305
- validationMessages?: Record<string, string> | undefined;
4306
- keywords?: string[] | undefined;
4307
- source?: "camera" | "file" | undefined;
4308
- cameraConfig?: JsonElement | undefined;
4309
- control?: string | undefined;
4310
- maxSize?: number | undefined;
4311
- accepts?: string[] | undefined;
4312
- }, {
4313
- type: "blob";
4314
- image?: {
4709
+ text?: string | undefined;
4710
+ accessibilityDescription?: string | undefined;
4711
+ }, {
4315
4712
  url: string;
4316
4713
  text?: string | undefined;
4317
4714
  accessibilityDescription?: string | undefined;
4318
- } | undefined;
4319
- alert?: {
4320
- type: "alert";
4321
- markdown: string;
4322
- control?: string | undefined;
4323
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4324
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4325
- callToAction?: {
4326
- title: string;
4327
- behavior: {
4328
- action?: {
4329
- url?: string | undefined;
4330
- $id?: string | undefined;
4331
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4332
- disabled?: boolean | undefined;
4333
- title?: string | undefined;
4334
- timeout?: number | undefined;
4335
- id?: string | undefined;
4336
- $ref?: string | undefined;
4337
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4338
- exit?: boolean | undefined;
4339
- result?: JsonElement | undefined;
4340
- data?: JsonElement | undefined;
4341
- skipValidation?: boolean | undefined;
4342
- } | undefined;
4343
- link?: {
4344
- url: string;
4345
- } | undefined;
4346
- };
4347
- accessibilityDescription?: string | undefined;
4348
- } | undefined;
4349
- } | undefined;
4350
- $id?: string | undefined;
4351
- analyticsId?: string | undefined;
4352
- description?: string | undefined;
4353
- disabled?: boolean | undefined;
4354
- hidden?: boolean | undefined;
4355
- icon?: {
4356
- name: string;
4357
- } | {
4358
- text: string;
4359
- } | undefined;
4360
- promoted?: boolean | undefined;
4361
- summary?: {
4715
+ }>>;
4716
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4717
+ summary: z.ZodOptional<z.ZodObject<{
4718
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
4719
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
4720
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
4721
+ providesImage: z.ZodOptional<z.ZodBoolean>;
4722
+ }, "strip", z.ZodTypeAny, {
4362
4723
  providesTitle?: boolean | undefined;
4363
4724
  providesDescription?: boolean | undefined;
4364
4725
  providesIcon?: boolean | undefined;
4365
4726
  providesImage?: boolean | undefined;
4366
- } | undefined;
4367
- title?: string | undefined;
4368
- validationAsync?: {
4727
+ }, {
4728
+ providesTitle?: boolean | undefined;
4729
+ providesDescription?: boolean | undefined;
4730
+ providesIcon?: boolean | undefined;
4731
+ providesImage?: boolean | undefined;
4732
+ }>>;
4733
+ analyticsId: z.ZodOptional<z.ZodString>;
4734
+ validationAsync: z.ZodOptional<z.ZodObject<{
4735
+ param: z.ZodString;
4736
+ method: z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"DELETE">]>;
4737
+ url: z.ZodString;
4738
+ }, "strip", z.ZodTypeAny, {
4369
4739
  url: string;
4370
4740
  method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4371
4741
  param: string;
4372
- } | undefined;
4373
- validationMessages?: Record<string, string> | undefined;
4374
- keywords?: string[] | undefined;
4375
- source?: "camera" | "file" | undefined;
4376
- cameraConfig?: JsonElement | undefined;
4377
- control?: string | undefined;
4378
- maxSize?: number | undefined;
4379
- accepts?: string[] | undefined;
4380
- }>;
4381
- export declare const constSchemaSchema: z.ZodObject<{
4382
- hidden: z.ZodOptional<z.ZodBoolean>;
4742
+ }, {
4743
+ url: string;
4744
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
4745
+ param: string;
4746
+ }>>;
4747
+ validationMessages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4383
4748
  alert: z.ZodOptional<z.ZodObject<{
4384
4749
  type: z.ZodLiteral<"alert">;
4385
4750
  markdown: z.ZodString;
@@ -4555,91 +4920,45 @@ export declare const constSchemaSchema: z.ZodObject<{
4555
4920
  } | undefined;
4556
4921
  };
4557
4922
  accessibilityDescription?: string | undefined;
4558
- } | undefined;
4559
- }, {
4560
- type: "alert";
4561
- markdown: string;
4562
- control?: string | undefined;
4563
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4564
- context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4565
- callToAction?: {
4566
- title: string;
4567
- behavior: {
4568
- action?: {
4569
- url?: string | undefined;
4570
- $id?: string | undefined;
4571
- type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4572
- disabled?: boolean | undefined;
4573
- title?: string | undefined;
4574
- timeout?: number | undefined;
4575
- id?: string | undefined;
4576
- $ref?: string | undefined;
4577
- method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4578
- exit?: boolean | undefined;
4579
- result?: JsonElement | undefined;
4580
- data?: JsonElement | undefined;
4581
- skipValidation?: boolean | undefined;
4582
- } | undefined;
4583
- link?: {
4584
- url: string;
4585
- } | undefined;
4586
- };
4587
- accessibilityDescription?: string | undefined;
4588
- } | undefined;
4589
- }>>;
4590
- control: z.ZodOptional<z.ZodString>;
4591
- promoted: z.ZodOptional<z.ZodBoolean>;
4592
- $id: z.ZodOptional<z.ZodString>;
4593
- const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
4594
- title: z.ZodOptional<z.ZodString>;
4595
- description: z.ZodOptional<z.ZodString>;
4596
- icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4597
- name: z.ZodString;
4598
- }, "strip", z.ZodTypeAny, {
4599
- name: string;
4600
- }, {
4601
- name: string;
4602
- }>, z.ZodObject<{
4603
- text: z.ZodString;
4604
- }, "strip", z.ZodTypeAny, {
4605
- text: string;
4606
- }, {
4607
- text: string;
4608
- }>]>>;
4609
- image: z.ZodOptional<z.ZodObject<{
4610
- text: z.ZodOptional<z.ZodString>;
4611
- url: z.ZodString;
4612
- accessibilityDescription: z.ZodOptional<z.ZodString>;
4613
- }, "strip", z.ZodTypeAny, {
4614
- url: string;
4615
- text?: string | undefined;
4616
- accessibilityDescription?: string | undefined;
4617
- }, {
4618
- url: string;
4619
- text?: string | undefined;
4620
- accessibilityDescription?: string | undefined;
4621
- }>>;
4622
- keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4623
- summary: z.ZodOptional<z.ZodObject<{
4624
- providesTitle: z.ZodOptional<z.ZodBoolean>;
4625
- providesDescription: z.ZodOptional<z.ZodBoolean>;
4626
- providesIcon: z.ZodOptional<z.ZodBoolean>;
4627
- providesImage: z.ZodOptional<z.ZodBoolean>;
4628
- }, "strip", z.ZodTypeAny, {
4629
- providesTitle?: boolean | undefined;
4630
- providesDescription?: boolean | undefined;
4631
- providesIcon?: boolean | undefined;
4632
- providesImage?: boolean | undefined;
4923
+ } | undefined;
4633
4924
  }, {
4634
- providesTitle?: boolean | undefined;
4635
- providesDescription?: boolean | undefined;
4636
- providesIcon?: boolean | undefined;
4637
- providesImage?: boolean | undefined;
4925
+ type: "alert";
4926
+ markdown: string;
4927
+ control?: string | undefined;
4928
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
4929
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4930
+ callToAction?: {
4931
+ title: string;
4932
+ behavior: {
4933
+ action?: {
4934
+ url?: string | undefined;
4935
+ $id?: string | undefined;
4936
+ type?: "positive" | "negative" | "primary" | "link" | "secondary" | undefined;
4937
+ disabled?: boolean | undefined;
4938
+ title?: string | undefined;
4939
+ timeout?: number | undefined;
4940
+ id?: string | undefined;
4941
+ $ref?: string | undefined;
4942
+ method?: "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | undefined;
4943
+ exit?: boolean | undefined;
4944
+ result?: JsonElement | undefined;
4945
+ data?: JsonElement | undefined;
4946
+ skipValidation?: boolean | undefined;
4947
+ } | undefined;
4948
+ link?: {
4949
+ url: string;
4950
+ } | undefined;
4951
+ };
4952
+ accessibilityDescription?: string | undefined;
4953
+ } | undefined;
4638
4954
  }>>;
4639
- analyticsId: z.ZodOptional<z.ZodString>;
4955
+ cameraConfig: z.ZodOptional<z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>>;
4956
+ accepts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4957
+ maxSize: z.ZodOptional<z.ZodNumber>;
4958
+ source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"camera">, z.ZodLiteral<"file">]>>;
4640
4959
  disabled: z.ZodOptional<z.ZodBoolean>;
4641
4960
  }, "strip", z.ZodTypeAny, {
4642
- const: JsonElement;
4961
+ type: "blob";
4643
4962
  image?: {
4644
4963
  url: string;
4645
4964
  text?: string | undefined;
@@ -4694,10 +5013,20 @@ export declare const constSchemaSchema: z.ZodObject<{
4694
5013
  providesImage?: boolean | undefined;
4695
5014
  } | undefined;
4696
5015
  title?: string | undefined;
5016
+ validationAsync?: {
5017
+ url: string;
5018
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
5019
+ param: string;
5020
+ } | undefined;
5021
+ validationMessages?: Record<string, string> | undefined;
4697
5022
  keywords?: string[] | undefined;
5023
+ source?: "camera" | "file" | undefined;
5024
+ cameraConfig?: JsonElement | undefined;
4698
5025
  control?: string | undefined;
5026
+ maxSize?: number | undefined;
5027
+ accepts?: string[] | undefined;
4699
5028
  }, {
4700
- const: JsonElement;
5029
+ type: "blob";
4701
5030
  image?: {
4702
5031
  url: string;
4703
5032
  text?: string | undefined;
@@ -4752,28 +5081,27 @@ export declare const constSchemaSchema: z.ZodObject<{
4752
5081
  providesImage?: boolean | undefined;
4753
5082
  } | undefined;
4754
5083
  title?: string | undefined;
5084
+ validationAsync?: {
5085
+ url: string;
5086
+ method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE";
5087
+ param: string;
5088
+ } | undefined;
5089
+ validationMessages?: Record<string, string> | undefined;
4755
5090
  keywords?: string[] | undefined;
5091
+ source?: "camera" | "file" | undefined;
5092
+ cameraConfig?: JsonElement | undefined;
4756
5093
  control?: string | undefined;
5094
+ maxSize?: number | undefined;
5095
+ accepts?: string[] | undefined;
4757
5096
  }>;
4758
- export declare const statusListLayoutSchema: z.ZodObject<{
4759
- type: z.ZodLiteral<"status-list">;
4760
- items: z.ZodArray<z.ZodObject<{
4761
- title: z.ZodString;
4762
- description: z.ZodOptional<z.ZodString>;
4763
- icon: z.ZodUnion<[z.ZodObject<{
4764
- name: z.ZodString;
4765
- }, "strip", z.ZodTypeAny, {
4766
- name: string;
4767
- }, {
4768
- name: string;
4769
- }>, z.ZodObject<{
4770
- text: z.ZodString;
4771
- }, "strip", z.ZodTypeAny, {
4772
- text: string;
4773
- }, {
4774
- text: string;
4775
- }>]>;
4776
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>>;
5097
+ export declare const constSchemaSchema: z.ZodObject<{
5098
+ hidden: z.ZodOptional<z.ZodBoolean>;
5099
+ alert: z.ZodOptional<z.ZodObject<{
5100
+ type: z.ZodLiteral<"alert">;
5101
+ markdown: z.ZodString;
5102
+ context: z.ZodOptional<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">]>>;
5103
+ control: z.ZodOptional<z.ZodString>;
5104
+ margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
4777
5105
  callToAction: z.ZodOptional<z.ZodObject<{
4778
5106
  title: z.ZodString;
4779
5107
  accessibilityDescription: z.ZodOptional<z.ZodString>;
@@ -4915,14 +5243,11 @@ export declare const statusListLayoutSchema: z.ZodObject<{
4915
5243
  accessibilityDescription?: string | undefined;
4916
5244
  }>>;
4917
5245
  }, "strip", z.ZodTypeAny, {
4918
- icon: {
4919
- name: string;
4920
- } | {
4921
- text: string;
4922
- };
4923
- title: string;
4924
- description?: string | undefined;
4925
- status?: "done" | "not-done" | "pending" | undefined;
5246
+ type: "alert";
5247
+ markdown: string;
5248
+ control?: string | undefined;
5249
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5250
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4926
5251
  callToAction?: {
4927
5252
  title: string;
4928
5253
  behavior: {
@@ -4948,14 +5273,11 @@ export declare const statusListLayoutSchema: z.ZodObject<{
4948
5273
  accessibilityDescription?: string | undefined;
4949
5274
  } | undefined;
4950
5275
  }, {
4951
- icon: {
4952
- name: string;
4953
- } | {
4954
- text: string;
4955
- };
4956
- title: string;
4957
- description?: string | undefined;
4958
- status?: "done" | "not-done" | "pending" | undefined;
5276
+ type: "alert";
5277
+ markdown: string;
5278
+ control?: string | undefined;
5279
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5280
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4959
5281
  callToAction?: {
4960
5282
  title: string;
4961
5283
  behavior: {
@@ -4980,21 +5302,71 @@ export declare const statusListLayoutSchema: z.ZodObject<{
4980
5302
  };
4981
5303
  accessibilityDescription?: string | undefined;
4982
5304
  } | undefined;
4983
- }>, "many">;
4984
- title: z.ZodOptional<z.ZodString>;
5305
+ }>>;
4985
5306
  control: z.ZodOptional<z.ZodString>;
4986
- margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
5307
+ promoted: z.ZodOptional<z.ZodBoolean>;
5308
+ $id: z.ZodOptional<z.ZodString>;
5309
+ const: z.ZodType<JsonElement, z.ZodTypeDef, JsonElement>;
5310
+ title: z.ZodOptional<z.ZodString>;
5311
+ description: z.ZodOptional<z.ZodString>;
5312
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
5313
+ name: z.ZodString;
5314
+ }, "strip", z.ZodTypeAny, {
5315
+ name: string;
5316
+ }, {
5317
+ name: string;
5318
+ }>, z.ZodObject<{
5319
+ text: z.ZodString;
5320
+ }, "strip", z.ZodTypeAny, {
5321
+ text: string;
5322
+ }, {
5323
+ text: string;
5324
+ }>]>>;
5325
+ image: z.ZodOptional<z.ZodObject<{
5326
+ text: z.ZodOptional<z.ZodString>;
5327
+ url: z.ZodString;
5328
+ accessibilityDescription: z.ZodOptional<z.ZodString>;
5329
+ }, "strip", z.ZodTypeAny, {
5330
+ url: string;
5331
+ text?: string | undefined;
5332
+ accessibilityDescription?: string | undefined;
5333
+ }, {
5334
+ url: string;
5335
+ text?: string | undefined;
5336
+ accessibilityDescription?: string | undefined;
5337
+ }>>;
5338
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5339
+ summary: z.ZodOptional<z.ZodObject<{
5340
+ providesTitle: z.ZodOptional<z.ZodBoolean>;
5341
+ providesDescription: z.ZodOptional<z.ZodBoolean>;
5342
+ providesIcon: z.ZodOptional<z.ZodBoolean>;
5343
+ providesImage: z.ZodOptional<z.ZodBoolean>;
5344
+ }, "strip", z.ZodTypeAny, {
5345
+ providesTitle?: boolean | undefined;
5346
+ providesDescription?: boolean | undefined;
5347
+ providesIcon?: boolean | undefined;
5348
+ providesImage?: boolean | undefined;
5349
+ }, {
5350
+ providesTitle?: boolean | undefined;
5351
+ providesDescription?: boolean | undefined;
5352
+ providesIcon?: boolean | undefined;
5353
+ providesImage?: boolean | undefined;
5354
+ }>>;
5355
+ analyticsId: z.ZodOptional<z.ZodString>;
5356
+ disabled: z.ZodOptional<z.ZodBoolean>;
4987
5357
  }, "strip", z.ZodTypeAny, {
4988
- type: "status-list";
4989
- items: {
4990
- icon: {
4991
- name: string;
4992
- } | {
4993
- text: string;
4994
- };
4995
- title: string;
4996
- description?: string | undefined;
4997
- status?: "done" | "not-done" | "pending" | undefined;
5358
+ const: JsonElement;
5359
+ image?: {
5360
+ url: string;
5361
+ text?: string | undefined;
5362
+ accessibilityDescription?: string | undefined;
5363
+ } | undefined;
5364
+ alert?: {
5365
+ type: "alert";
5366
+ markdown: string;
5367
+ control?: string | undefined;
5368
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5369
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
4998
5370
  callToAction?: {
4999
5371
  title: string;
5000
5372
  behavior: {
@@ -5019,21 +5391,40 @@ export declare const statusListLayoutSchema: z.ZodObject<{
5019
5391
  };
5020
5392
  accessibilityDescription?: string | undefined;
5021
5393
  } | undefined;
5022
- }[];
5394
+ } | undefined;
5395
+ $id?: string | undefined;
5396
+ analyticsId?: string | undefined;
5397
+ description?: string | undefined;
5398
+ disabled?: boolean | undefined;
5399
+ hidden?: boolean | undefined;
5400
+ icon?: {
5401
+ name: string;
5402
+ } | {
5403
+ text: string;
5404
+ } | undefined;
5405
+ promoted?: boolean | undefined;
5406
+ summary?: {
5407
+ providesTitle?: boolean | undefined;
5408
+ providesDescription?: boolean | undefined;
5409
+ providesIcon?: boolean | undefined;
5410
+ providesImage?: boolean | undefined;
5411
+ } | undefined;
5023
5412
  title?: string | undefined;
5413
+ keywords?: string[] | undefined;
5024
5414
  control?: string | undefined;
5025
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5026
5415
  }, {
5027
- type: "status-list";
5028
- items: {
5029
- icon: {
5030
- name: string;
5031
- } | {
5032
- text: string;
5033
- };
5034
- title: string;
5035
- description?: string | undefined;
5036
- status?: "done" | "not-done" | "pending" | undefined;
5416
+ const: JsonElement;
5417
+ image?: {
5418
+ url: string;
5419
+ text?: string | undefined;
5420
+ accessibilityDescription?: string | undefined;
5421
+ } | undefined;
5422
+ alert?: {
5423
+ type: "alert";
5424
+ markdown: string;
5425
+ control?: string | undefined;
5426
+ margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5427
+ context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
5037
5428
  callToAction?: {
5038
5429
  title: string;
5039
5430
  behavior: {
@@ -5058,10 +5449,27 @@ export declare const statusListLayoutSchema: z.ZodObject<{
5058
5449
  };
5059
5450
  accessibilityDescription?: string | undefined;
5060
5451
  } | undefined;
5061
- }[];
5452
+ } | undefined;
5453
+ $id?: string | undefined;
5454
+ analyticsId?: string | undefined;
5455
+ description?: string | undefined;
5456
+ disabled?: boolean | undefined;
5457
+ hidden?: boolean | undefined;
5458
+ icon?: {
5459
+ name: string;
5460
+ } | {
5461
+ text: string;
5462
+ } | undefined;
5463
+ promoted?: boolean | undefined;
5464
+ summary?: {
5465
+ providesTitle?: boolean | undefined;
5466
+ providesDescription?: boolean | undefined;
5467
+ providesIcon?: boolean | undefined;
5468
+ providesImage?: boolean | undefined;
5469
+ } | undefined;
5062
5470
  title?: string | undefined;
5471
+ keywords?: string[] | undefined;
5063
5472
  control?: string | undefined;
5064
- margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
5065
5473
  }>;
5066
5474
  export declare const layoutSchema: z.ZodSchema<Layout>;
5067
5475
  export declare const boxLayoutSchema: z.ZodSchema<BoxLayout>;