@uides/stepwise 2.0.0-rc.32 → 2.0.2

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.
Files changed (782) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/LICENSE +0 -0
  3. package/generators/componentExtractor.d.mts +1 -0
  4. package/generators/componentReducer.d.mts +1 -0
  5. package/generators/node_modules/@isaacs/cliui/build/lib/index.js +211 -0
  6. package/generators/node_modules/@pkgjs/parseargs/examples/is-default-value.js +31 -0
  7. package/generators/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +33 -0
  8. package/generators/node_modules/@pkgjs/parseargs/examples/negate.js +48 -0
  9. package/generators/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +38 -0
  10. package/generators/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +36 -0
  11. package/generators/node_modules/@pkgjs/parseargs/index.js +263 -0
  12. package/generators/node_modules/@pkgjs/parseargs/internal/errors.js +55 -0
  13. package/generators/node_modules/@pkgjs/parseargs/internal/primordials.js +258 -0
  14. package/generators/node_modules/@pkgjs/parseargs/internal/util.js +24 -0
  15. package/generators/node_modules/@pkgjs/parseargs/internal/validators.js +61 -0
  16. package/generators/node_modules/@pkgjs/parseargs/utils.js +86 -0
  17. package/generators/node_modules/ansi-regex/index.js +5 -0
  18. package/generators/node_modules/ansi-styles/index.js +304 -0
  19. package/generators/node_modules/balanced-match/index.js +70 -0
  20. package/generators/node_modules/brace-expansion/index.js +153 -0
  21. package/generators/node_modules/change-case/dist/index.js +135 -0
  22. package/generators/node_modules/change-case/dist/keys.js +28 -0
  23. package/generators/node_modules/color-convert/conversions.js +840 -0
  24. package/generators/node_modules/color-convert/index.js +66 -0
  25. package/generators/node_modules/color-convert/route.js +81 -0
  26. package/generators/node_modules/color-name/index.js +757 -0
  27. package/generators/node_modules/cross-spawn/index.js +47 -0
  28. package/generators/node_modules/cross-spawn/lib/enoent.js +50 -0
  29. package/generators/node_modules/cross-spawn/lib/parse.js +91 -0
  30. package/generators/node_modules/cross-spawn/lib/util/escape.js +31 -0
  31. package/generators/node_modules/cross-spawn/lib/util/readShebang.js +37 -0
  32. package/generators/node_modules/cross-spawn/lib/util/resolveCommand.js +56 -0
  33. package/generators/node_modules/eastasianwidth/eastasianwidth.js +66 -0
  34. package/generators/node_modules/emoji-regex/RGI_Emoji.js +18 -0
  35. package/generators/node_modules/emoji-regex/es2015/RGI_Emoji.js +16 -0
  36. package/generators/node_modules/emoji-regex/es2015/index.js +16 -0
  37. package/generators/node_modules/emoji-regex/es2015/text.js +16 -0
  38. package/generators/node_modules/emoji-regex/index.js +18 -0
  39. package/generators/node_modules/emoji-regex/text.js +18 -0
  40. package/generators/node_modules/flat/cli.js +31 -0
  41. package/generators/node_modules/flat/index.js +83 -0
  42. package/generators/node_modules/foreground-child/dist/cjs/all-signals.js +30 -0
  43. package/generators/node_modules/foreground-child/dist/cjs/index.js +156 -0
  44. package/generators/node_modules/foreground-child/dist/cjs/watchdog.js +63 -0
  45. package/generators/node_modules/foreground-child/dist/mjs/all-signals.js +3 -0
  46. package/generators/node_modules/foreground-child/dist/mjs/index.js +111 -0
  47. package/generators/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
  48. package/generators/node_modules/glob/dist/commonjs/glob.js +205 -0
  49. package/generators/node_modules/glob/dist/commonjs/has-magic.js +33 -0
  50. package/generators/node_modules/glob/dist/commonjs/ignore.js +87 -0
  51. package/generators/node_modules/glob/dist/commonjs/index.js +114 -0
  52. package/generators/node_modules/glob/dist/commonjs/pattern.js +154 -0
  53. package/generators/node_modules/glob/dist/commonjs/processor.js +214 -0
  54. package/generators/node_modules/glob/dist/commonjs/walker.js +271 -0
  55. package/generators/node_modules/glob/dist/esm/glob.js +165 -0
  56. package/generators/node_modules/glob/dist/esm/has-magic.js +9 -0
  57. package/generators/node_modules/glob/dist/esm/ignore.js +59 -0
  58. package/generators/node_modules/glob/dist/esm/index.js +52 -0
  59. package/generators/node_modules/glob/dist/esm/pattern.js +130 -0
  60. package/generators/node_modules/glob/dist/esm/processor.js +187 -0
  61. package/generators/node_modules/glob/dist/esm/walker.js +237 -0
  62. package/generators/node_modules/is-fullwidth-code-point/index.js +22 -0
  63. package/generators/node_modules/isexe/index.js +64 -0
  64. package/generators/node_modules/isexe/mode.js +46 -0
  65. package/generators/node_modules/isexe/test/basic.js +229 -0
  66. package/generators/node_modules/isexe/windows.js +45 -0
  67. package/generators/node_modules/jackspeak/dist/commonjs/index.js +683 -0
  68. package/generators/node_modules/jackspeak/dist/commonjs/parse-args.js +65 -0
  69. package/generators/node_modules/jackspeak/dist/esm/index.js +640 -0
  70. package/generators/node_modules/jackspeak/dist/esm/parse-args.js +127 -0
  71. package/generators/node_modules/lru-cache/dist/commonjs/index.js +889 -0
  72. package/generators/node_modules/lru-cache/dist/esm/index.js +881 -0
  73. package/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  74. package/generators/node_modules/minimatch/dist/cjs/ast.js +389 -0
  75. package/generators/node_modules/minimatch/dist/cjs/brace-expressions.js +169 -0
  76. package/generators/node_modules/minimatch/dist/cjs/escape.js +10 -0
  77. package/generators/node_modules/minimatch/dist/cjs/index.js +680 -0
  78. package/generators/node_modules/minimatch/dist/cjs/unescape.js +10 -0
  79. package/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +6 -0
  80. package/generators/node_modules/minimatch/dist/mjs/ast.js +361 -0
  81. package/generators/node_modules/minimatch/dist/mjs/brace-expressions.js +161 -0
  82. package/generators/node_modules/minimatch/dist/mjs/escape.js +2 -0
  83. package/generators/node_modules/minimatch/dist/mjs/index.js +612 -0
  84. package/generators/node_modules/minimatch/dist/mjs/unescape.js +2 -0
  85. package/generators/node_modules/minipass/dist/commonjs/index.js +623 -0
  86. package/generators/node_modules/minipass/dist/esm/index.js +584 -0
  87. package/generators/node_modules/path-key/index.js +23 -0
  88. package/generators/node_modules/path-scurry/dist/cjs/index.js +1161 -0
  89. package/generators/node_modules/path-scurry/dist/mjs/index.js +1078 -0
  90. package/generators/node_modules/shebang-command/index.js +28 -0
  91. package/generators/node_modules/shebang-regex/index.js +16 -0
  92. package/generators/node_modules/signal-exit/dist/cjs/browser.js +14 -0
  93. package/generators/node_modules/signal-exit/dist/cjs/index.js +176 -0
  94. package/generators/node_modules/signal-exit/dist/cjs/signals.js +14 -0
  95. package/generators/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  96. package/generators/node_modules/signal-exit/dist/mjs/index.js +146 -0
  97. package/generators/node_modules/signal-exit/dist/mjs/signals.js +5 -0
  98. package/generators/node_modules/string-width/index.js +34 -0
  99. package/generators/node_modules/string-width-cjs/index.js +49 -0
  100. package/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +19 -0
  101. package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +16 -0
  102. package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +16 -0
  103. package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +18 -0
  104. package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +18 -0
  105. package/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +21 -0
  106. package/generators/node_modules/strip-ansi/index.js +7 -0
  107. package/generators/node_modules/strip-ansi-cjs/index.js +21 -0
  108. package/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +19 -0
  109. package/generators/node_modules/which/which.js +108 -0
  110. package/generators/node_modules/wrap-ansi/index.js +134 -0
  111. package/generators/node_modules/wrap-ansi-cjs/index.js +158 -0
  112. package/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +19 -0
  113. package/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +281 -0
  114. package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +16 -0
  115. package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +16 -0
  116. package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +18 -0
  117. package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +18 -0
  118. package/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +49 -0
  119. package/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +21 -0
  120. package/generators/templateGenerator.d.mts +1 -0
  121. package/index.d.ts +2 -0
  122. package/index.js +7 -0
  123. package/package.json +6 -21
  124. package/schemas/action.d.ts +2366 -0
  125. package/schemas/action.js +196 -0
  126. package/schemas/application.d.ts +19 -0
  127. package/schemas/application.js +14 -0
  128. package/schemas/attributes.d.ts +16 -0
  129. package/schemas/attributes.js +14 -0
  130. package/schemas/common.d.ts +25 -0
  131. package/schemas/common.js +41 -0
  132. package/schemas/document.d.ts +395 -0
  133. package/schemas/document.js +79 -0
  134. package/schemas/edupass-healthstate.d.ts +77 -0
  135. package/schemas/edupass-healthstate.js +76 -0
  136. package/schemas/field/afm/index.d.ts +52 -0
  137. package/schemas/field/afm/index.js +20 -0
  138. package/schemas/field/amka/index.d.ts +60 -0
  139. package/schemas/field/amka/index.js +21 -0
  140. package/schemas/field/attachment/index.d.ts +68 -0
  141. package/schemas/field/attachment/index.js +38 -0
  142. package/schemas/field/captcha/index.d.ts +48 -0
  143. package/schemas/field/captcha/index.js +15 -0
  144. package/schemas/field/choice/index.d.ts +73 -0
  145. package/schemas/field/choice/index.js +32 -0
  146. package/schemas/field/common.d.ts +82 -0
  147. package/schemas/field/common.js +63 -0
  148. package/schemas/field/consent-content/index.d.ts +68 -0
  149. package/schemas/field/consent-content/index.js +19 -0
  150. package/schemas/field/date/index.d.ts +90 -0
  151. package/schemas/field/date/index.js +42 -0
  152. package/schemas/field/doc_subtitle/index.d.ts +51 -0
  153. package/schemas/field/doc_subtitle/index.js +14 -0
  154. package/schemas/field/doc_title/index.d.ts +60 -0
  155. package/schemas/field/doc_title/index.js +21 -0
  156. package/schemas/field/dynamically-filled-text/index.d.ts +85 -0
  157. package/schemas/field/dynamically-filled-text/index.js +36 -0
  158. package/schemas/field/email/index.d.ts +60 -0
  159. package/schemas/field/email/index.js +21 -0
  160. package/schemas/field/fillable-string/index.d.ts +64 -0
  161. package/schemas/field/fillable-string/index.js +25 -0
  162. package/schemas/field/five-block-date/index.d.ts +48 -0
  163. package/schemas/field/five-block-date/index.js +15 -0
  164. package/schemas/field/hidden/index.d.ts +59 -0
  165. package/schemas/field/hidden/index.js +25 -0
  166. package/schemas/field/hierarchical-selector/index.d.ts +89 -0
  167. package/schemas/field/hierarchical-selector/index.js +35 -0
  168. package/schemas/field/iban/index.d.ts +58 -0
  169. package/schemas/field/iban/index.js +19 -0
  170. package/schemas/field/image/index.d.ts +68 -0
  171. package/schemas/field/image/index.js +36 -0
  172. package/schemas/field/image-crop/index.d.ts +59 -0
  173. package/schemas/field/image-crop/index.js +19 -0
  174. package/schemas/field/index.d.ts +48 -0
  175. package/schemas/field/index.js +167 -0
  176. package/schemas/field/int/index.d.ts +60 -0
  177. package/schemas/field/int/index.js +21 -0
  178. package/schemas/field/intl_mobile_phone/index.d.ts +49 -0
  179. package/schemas/field/intl_mobile_phone/index.js +15 -0
  180. package/schemas/field/lab-results/index.d.ts +49 -0
  181. package/schemas/field/lab-results/index.js +12 -0
  182. package/schemas/field/landline_phone/index.d.ts +48 -0
  183. package/schemas/field/landline_phone/index.js +14 -0
  184. package/schemas/field/link/index.d.ts +50 -0
  185. package/schemas/field/link/index.js +16 -0
  186. package/schemas/field/mobile_phone/index.d.ts +51 -0
  187. package/schemas/field/mobile_phone/index.js +18 -0
  188. package/schemas/field/multiple-choice/index.d.ts +70 -0
  189. package/schemas/field/multiple-choice/index.js +31 -0
  190. package/schemas/field/password/index.d.ts +48 -0
  191. package/schemas/field/password/index.js +15 -0
  192. package/schemas/field/pdf-image/index.d.ts +66 -0
  193. package/schemas/field/pdf-image/index.js +27 -0
  194. package/schemas/field/phone/index.d.ts +48 -0
  195. package/schemas/field/phone/index.js +14 -0
  196. package/schemas/field/postal_code/index.d.ts +50 -0
  197. package/schemas/field/postal_code/index.js +17 -0
  198. package/schemas/field/preference-multiple-choice/index.d.ts +90 -0
  199. package/schemas/field/preference-multiple-choice/index.js +31 -0
  200. package/schemas/field/qrcode/index.d.ts +71 -0
  201. package/schemas/field/qrcode/index.js +30 -0
  202. package/schemas/field/quote/index.d.ts +63 -0
  203. package/schemas/field/quote/index.js +30 -0
  204. package/schemas/field/radio-choice/index.d.ts +67 -0
  205. package/schemas/field/radio-choice/index.js +31 -0
  206. package/schemas/field/rate/index.d.ts +60 -0
  207. package/schemas/field/rate/index.js +18 -0
  208. package/schemas/field/recipient/index.d.ts +51 -0
  209. package/schemas/field/recipient/index.js +20 -0
  210. package/schemas/field/redirect/index.d.ts +52 -0
  211. package/schemas/field/redirect/index.js +15 -0
  212. package/schemas/field/refcode/index.d.ts +68 -0
  213. package/schemas/field/refcode/index.js +29 -0
  214. package/schemas/field/string/index.d.ts +135 -0
  215. package/schemas/field/string/index.js +80 -0
  216. package/schemas/field/text/index.d.ts +85 -0
  217. package/schemas/field/text/index.js +45 -0
  218. package/schemas/field/three-block-date/index.d.ts +64 -0
  219. package/schemas/field/three-block-date/index.js +26 -0
  220. package/schemas/field/url-param/index.d.ts +57 -0
  221. package/schemas/field/url-param/index.js +14 -0
  222. package/schemas/fieldset/component-params.d.ts +102 -0
  223. package/schemas/fieldset/component-params.js +63 -0
  224. package/schemas/fieldset/display-components.d.ts +353 -0
  225. package/schemas/fieldset/display-components.js +36 -0
  226. package/schemas/fieldset/enums.d.ts +32 -0
  227. package/schemas/fieldset/enums.js +21 -0
  228. package/schemas/fieldset/index.d.ts +180 -0
  229. package/schemas/fieldset/index.js +11 -0
  230. package/schemas/index.d.ts +15 -0
  231. package/schemas/index.js +15 -0
  232. package/schemas/layout.d.ts +91 -0
  233. package/schemas/layout.js +43 -0
  234. package/schemas/outputs.d.ts +44 -0
  235. package/schemas/outputs.js +15 -0
  236. package/schemas/resolve.d.ts +5 -0
  237. package/schemas/resolve.js +13 -0
  238. package/schemas/resource/enums.d.ts +58 -0
  239. package/schemas/resource/enums.js +41 -0
  240. package/schemas/resource/field.d.ts +15 -0
  241. package/schemas/resource/field.js +12 -0
  242. package/schemas/resource/index.d.ts +5 -0
  243. package/schemas/resource/index.js +5 -0
  244. package/schemas/resource/object-action.d.ts +30 -0
  245. package/schemas/resource/object-action.js +24 -0
  246. package/schemas/resource/resource-action.d.ts +35 -0
  247. package/schemas/resource/resource-action.js +29 -0
  248. package/schemas/resource/resource.d.ts +133 -0
  249. package/schemas/resource/resource.js +31 -0
  250. package/schemas/step.d.ts +592 -0
  251. package/schemas/step.js +115 -0
  252. package/schemas/template/index.d.ts +2 -0
  253. package/schemas/template/index.js +2 -0
  254. package/schemas/template/template-base.d.ts +53 -0
  255. package/schemas/template/template-base.js +15 -0
  256. package/schemas/template/template-source.d.ts +50 -0
  257. package/schemas/template/template-source.js +14 -0
  258. package/schemas/template/template.d.ts +54 -0
  259. package/schemas/template/template.js +22 -0
  260. package/schemas/validation-context/enums.d.ts +10 -0
  261. package/schemas/validation-context/enums.js +7 -0
  262. package/schemas/validation-context/index.d.ts +2 -0
  263. package/schemas/validation-context/index.js +2 -0
  264. package/schemas/validation-context/validation-context.d.ts +131 -0
  265. package/schemas/validation-context/validation-context.js +55 -0
  266. package/src/generators/node_modules/.package-lock.json +458 -0
  267. package/src/generators/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
  268. package/src/generators/node_modules/@isaacs/cliui/README.md +143 -0
  269. package/src/generators/node_modules/@isaacs/cliui/build/index.cjs +317 -0
  270. package/src/generators/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
  271. package/src/generators/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
  272. package/src/generators/node_modules/@isaacs/cliui/index.mjs +14 -0
  273. package/src/generators/node_modules/@isaacs/cliui/package.json +86 -0
  274. package/src/generators/node_modules/@pkgjs/parseargs/.editorconfig +14 -0
  275. package/src/generators/node_modules/@pkgjs/parseargs/CHANGELOG.md +147 -0
  276. package/src/generators/node_modules/@pkgjs/parseargs/LICENSE +201 -0
  277. package/src/generators/node_modules/@pkgjs/parseargs/README.md +413 -0
  278. package/src/generators/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
  279. package/src/generators/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
  280. package/src/generators/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
  281. package/src/generators/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
  282. package/src/generators/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
  283. package/src/generators/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
  284. package/src/generators/node_modules/@pkgjs/parseargs/index.js +396 -0
  285. package/src/generators/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
  286. package/src/generators/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
  287. package/src/generators/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
  288. package/src/generators/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
  289. package/src/generators/node_modules/@pkgjs/parseargs/package.json +36 -0
  290. package/src/generators/node_modules/@pkgjs/parseargs/utils.js +198 -0
  291. package/src/generators/node_modules/ansi-regex/index.d.ts +33 -0
  292. package/src/generators/node_modules/ansi-regex/index.js +8 -0
  293. package/src/generators/node_modules/ansi-regex/license +9 -0
  294. package/src/generators/node_modules/ansi-regex/package.json +58 -0
  295. package/src/generators/node_modules/ansi-regex/readme.md +72 -0
  296. package/src/generators/node_modules/ansi-styles/index.d.ts +236 -0
  297. package/src/generators/node_modules/ansi-styles/index.js +223 -0
  298. package/src/generators/node_modules/ansi-styles/license +9 -0
  299. package/src/generators/node_modules/ansi-styles/package.json +54 -0
  300. package/src/generators/node_modules/ansi-styles/readme.md +173 -0
  301. package/src/generators/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  302. package/src/generators/node_modules/balanced-match/LICENSE.md +21 -0
  303. package/src/generators/node_modules/balanced-match/README.md +97 -0
  304. package/src/generators/node_modules/balanced-match/index.js +62 -0
  305. package/src/generators/node_modules/balanced-match/package.json +48 -0
  306. package/src/generators/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  307. package/src/generators/node_modules/brace-expansion/LICENSE +21 -0
  308. package/src/generators/node_modules/brace-expansion/README.md +135 -0
  309. package/src/generators/node_modules/brace-expansion/index.js +203 -0
  310. package/src/generators/node_modules/brace-expansion/package.json +46 -0
  311. package/src/generators/node_modules/change-case/README.md +78 -0
  312. package/src/generators/node_modules/change-case/dist/index.d.ts +78 -0
  313. package/src/generators/node_modules/change-case/dist/index.js +206 -0
  314. package/src/generators/node_modules/change-case/dist/index.js.map +1 -0
  315. package/src/generators/node_modules/change-case/dist/keys.d.ts +11 -0
  316. package/src/generators/node_modules/change-case/dist/keys.js +31 -0
  317. package/src/generators/node_modules/change-case/dist/keys.js.map +1 -0
  318. package/src/generators/node_modules/change-case/package.json +56 -0
  319. package/src/generators/node_modules/color-convert/CHANGELOG.md +54 -0
  320. package/src/generators/node_modules/color-convert/LICENSE +21 -0
  321. package/src/generators/node_modules/color-convert/README.md +68 -0
  322. package/src/generators/node_modules/color-convert/conversions.js +839 -0
  323. package/src/generators/node_modules/color-convert/index.js +81 -0
  324. package/src/generators/node_modules/color-convert/package.json +48 -0
  325. package/src/generators/node_modules/color-convert/route.js +97 -0
  326. package/src/generators/node_modules/color-name/LICENSE +8 -0
  327. package/src/generators/node_modules/color-name/README.md +11 -0
  328. package/src/generators/node_modules/color-name/index.js +152 -0
  329. package/src/generators/node_modules/color-name/package.json +28 -0
  330. package/src/generators/node_modules/cross-spawn/CHANGELOG.md +130 -0
  331. package/src/generators/node_modules/cross-spawn/LICENSE +21 -0
  332. package/src/generators/node_modules/cross-spawn/README.md +96 -0
  333. package/src/generators/node_modules/cross-spawn/index.js +39 -0
  334. package/src/generators/node_modules/cross-spawn/lib/enoent.js +59 -0
  335. package/src/generators/node_modules/cross-spawn/lib/parse.js +91 -0
  336. package/src/generators/node_modules/cross-spawn/lib/util/escape.js +45 -0
  337. package/src/generators/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  338. package/src/generators/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  339. package/src/generators/node_modules/cross-spawn/package.json +73 -0
  340. package/src/generators/node_modules/eastasianwidth/README.md +32 -0
  341. package/src/generators/node_modules/eastasianwidth/eastasianwidth.js +311 -0
  342. package/src/generators/node_modules/eastasianwidth/package.json +18 -0
  343. package/src/generators/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  344. package/src/generators/node_modules/emoji-regex/README.md +137 -0
  345. package/src/generators/node_modules/emoji-regex/RGI_Emoji.d.ts +5 -0
  346. package/src/generators/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  347. package/src/generators/node_modules/emoji-regex/es2015/RGI_Emoji.d.ts +5 -0
  348. package/src/generators/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  349. package/src/generators/node_modules/emoji-regex/es2015/index.d.ts +5 -0
  350. package/src/generators/node_modules/emoji-regex/es2015/index.js +6 -0
  351. package/src/generators/node_modules/emoji-regex/es2015/text.d.ts +5 -0
  352. package/src/generators/node_modules/emoji-regex/es2015/text.js +6 -0
  353. package/src/generators/node_modules/emoji-regex/index.d.ts +5 -0
  354. package/src/generators/node_modules/emoji-regex/index.js +6 -0
  355. package/src/generators/node_modules/emoji-regex/package.json +52 -0
  356. package/src/generators/node_modules/emoji-regex/text.d.ts +5 -0
  357. package/src/generators/node_modules/emoji-regex/text.js +6 -0
  358. package/src/generators/node_modules/flat/LICENSE +12 -0
  359. package/src/generators/node_modules/flat/README.md +234 -0
  360. package/src/generators/node_modules/flat/cli.js +40 -0
  361. package/src/generators/node_modules/flat/index.d.ts +17 -0
  362. package/src/generators/node_modules/flat/index.js +157 -0
  363. package/src/generators/node_modules/flat/package.json +49 -0
  364. package/src/generators/node_modules/foreground-child/LICENSE +15 -0
  365. package/src/generators/node_modules/foreground-child/README.md +90 -0
  366. package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.d.ts +3 -0
  367. package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.d.ts.map +1 -0
  368. package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
  369. package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.js.map +1 -0
  370. package/src/generators/node_modules/foreground-child/dist/cjs/index.d.ts +54 -0
  371. package/src/generators/node_modules/foreground-child/dist/cjs/index.d.ts.map +1 -0
  372. package/src/generators/node_modules/foreground-child/dist/cjs/index.js +154 -0
  373. package/src/generators/node_modules/foreground-child/dist/cjs/index.js.map +1 -0
  374. package/src/generators/node_modules/foreground-child/dist/cjs/package.json +3 -0
  375. package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.d.ts +4 -0
  376. package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.d.ts.map +1 -0
  377. package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
  378. package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.js.map +1 -0
  379. package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.d.ts +3 -0
  380. package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.d.ts.map +1 -0
  381. package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
  382. package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.js.map +1 -0
  383. package/src/generators/node_modules/foreground-child/dist/mjs/index.d.ts +54 -0
  384. package/src/generators/node_modules/foreground-child/dist/mjs/index.d.ts.map +1 -0
  385. package/src/generators/node_modules/foreground-child/dist/mjs/index.js +146 -0
  386. package/src/generators/node_modules/foreground-child/dist/mjs/index.js.map +1 -0
  387. package/src/generators/node_modules/foreground-child/dist/mjs/package.json +3 -0
  388. package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.d.ts +4 -0
  389. package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.d.ts.map +1 -0
  390. package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
  391. package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.js.map +1 -0
  392. package/src/generators/node_modules/foreground-child/package.json +83 -0
  393. package/src/generators/node_modules/glob/LICENSE +15 -0
  394. package/src/generators/node_modules/glob/README.md +1214 -0
  395. package/src/generators/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
  396. package/src/generators/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  397. package/src/generators/node_modules/glob/dist/commonjs/glob.js +243 -0
  398. package/src/generators/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  399. package/src/generators/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  400. package/src/generators/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  401. package/src/generators/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  402. package/src/generators/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  403. package/src/generators/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
  404. package/src/generators/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  405. package/src/generators/node_modules/glob/dist/commonjs/ignore.js +108 -0
  406. package/src/generators/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  407. package/src/generators/node_modules/glob/dist/commonjs/index.d.ts +96 -0
  408. package/src/generators/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  409. package/src/generators/node_modules/glob/dist/commonjs/index.js +68 -0
  410. package/src/generators/node_modules/glob/dist/commonjs/index.js.map +1 -0
  411. package/src/generators/node_modules/glob/dist/commonjs/package.json +1 -0
  412. package/src/generators/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
  413. package/src/generators/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  414. package/src/generators/node_modules/glob/dist/commonjs/pattern.js +219 -0
  415. package/src/generators/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  416. package/src/generators/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  417. package/src/generators/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  418. package/src/generators/node_modules/glob/dist/commonjs/processor.js +302 -0
  419. package/src/generators/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  420. package/src/generators/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
  421. package/src/generators/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  422. package/src/generators/node_modules/glob/dist/commonjs/walker.js +358 -0
  423. package/src/generators/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  424. package/src/generators/node_modules/glob/dist/esm/bin.d.mts +3 -0
  425. package/src/generators/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
  426. package/src/generators/node_modules/glob/dist/esm/bin.mjs +275 -0
  427. package/src/generators/node_modules/glob/dist/esm/bin.mjs.map +1 -0
  428. package/src/generators/node_modules/glob/dist/esm/glob.d.ts +344 -0
  429. package/src/generators/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  430. package/src/generators/node_modules/glob/dist/esm/glob.js +239 -0
  431. package/src/generators/node_modules/glob/dist/esm/glob.js.map +1 -0
  432. package/src/generators/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  433. package/src/generators/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  434. package/src/generators/node_modules/glob/dist/esm/has-magic.js +23 -0
  435. package/src/generators/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  436. package/src/generators/node_modules/glob/dist/esm/ignore.d.ts +20 -0
  437. package/src/generators/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  438. package/src/generators/node_modules/glob/dist/esm/ignore.js +104 -0
  439. package/src/generators/node_modules/glob/dist/esm/ignore.js.map +1 -0
  440. package/src/generators/node_modules/glob/dist/esm/index.d.ts +96 -0
  441. package/src/generators/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  442. package/src/generators/node_modules/glob/dist/esm/index.js +56 -0
  443. package/src/generators/node_modules/glob/dist/esm/index.js.map +1 -0
  444. package/src/generators/node_modules/glob/dist/esm/package.json +1 -0
  445. package/src/generators/node_modules/glob/dist/esm/pattern.d.ts +77 -0
  446. package/src/generators/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  447. package/src/generators/node_modules/glob/dist/esm/pattern.js +215 -0
  448. package/src/generators/node_modules/glob/dist/esm/pattern.js.map +1 -0
  449. package/src/generators/node_modules/glob/dist/esm/processor.d.ts +59 -0
  450. package/src/generators/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  451. package/src/generators/node_modules/glob/dist/esm/processor.js +295 -0
  452. package/src/generators/node_modules/glob/dist/esm/processor.js.map +1 -0
  453. package/src/generators/node_modules/glob/dist/esm/walker.d.ts +96 -0
  454. package/src/generators/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  455. package/src/generators/node_modules/glob/dist/esm/walker.js +352 -0
  456. package/src/generators/node_modules/glob/dist/esm/walker.js.map +1 -0
  457. package/src/generators/node_modules/glob/package.json +97 -0
  458. package/src/generators/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  459. package/src/generators/node_modules/is-fullwidth-code-point/index.js +50 -0
  460. package/src/generators/node_modules/is-fullwidth-code-point/license +9 -0
  461. package/src/generators/node_modules/is-fullwidth-code-point/package.json +42 -0
  462. package/src/generators/node_modules/is-fullwidth-code-point/readme.md +39 -0
  463. package/src/generators/node_modules/isexe/LICENSE +15 -0
  464. package/src/generators/node_modules/isexe/README.md +51 -0
  465. package/src/generators/node_modules/isexe/index.js +57 -0
  466. package/src/generators/node_modules/isexe/mode.js +41 -0
  467. package/src/generators/node_modules/isexe/package.json +31 -0
  468. package/src/generators/node_modules/isexe/test/basic.js +221 -0
  469. package/src/generators/node_modules/isexe/windows.js +42 -0
  470. package/src/generators/node_modules/jackspeak/LICENSE.md +55 -0
  471. package/src/generators/node_modules/jackspeak/README.md +348 -0
  472. package/src/generators/node_modules/jackspeak/dist/commonjs/index.d.ts +292 -0
  473. package/src/generators/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
  474. package/src/generators/node_modules/jackspeak/dist/commonjs/index.js +850 -0
  475. package/src/generators/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
  476. package/src/generators/node_modules/jackspeak/dist/commonjs/package.json +1 -0
  477. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args-cjs.cjs.map +1 -0
  478. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args-cjs.d.cts.map +1 -0
  479. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.d.ts +4 -0
  480. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.d.ts.map +1 -0
  481. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
  482. package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.js.map +1 -0
  483. package/src/generators/node_modules/jackspeak/dist/esm/index.d.ts +292 -0
  484. package/src/generators/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
  485. package/src/generators/node_modules/jackspeak/dist/esm/index.js +840 -0
  486. package/src/generators/node_modules/jackspeak/dist/esm/index.js.map +1 -0
  487. package/src/generators/node_modules/jackspeak/dist/esm/package.json +1 -0
  488. package/src/generators/node_modules/jackspeak/dist/esm/parse-args.d.ts +4 -0
  489. package/src/generators/node_modules/jackspeak/dist/esm/parse-args.d.ts.map +1 -0
  490. package/src/generators/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
  491. package/src/generators/node_modules/jackspeak/dist/esm/parse-args.js.map +1 -0
  492. package/src/generators/node_modules/jackspeak/package.json +94 -0
  493. package/src/generators/node_modules/lru-cache/LICENSE +15 -0
  494. package/src/generators/node_modules/lru-cache/README.md +1204 -0
  495. package/src/generators/node_modules/lru-cache/dist/commonjs/index.d.ts +851 -0
  496. package/src/generators/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
  497. package/src/generators/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
  498. package/src/generators/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
  499. package/src/generators/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  500. package/src/generators/node_modules/lru-cache/dist/esm/index.d.ts +851 -0
  501. package/src/generators/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
  502. package/src/generators/node_modules/lru-cache/dist/esm/index.js +1437 -0
  503. package/src/generators/node_modules/lru-cache/dist/esm/index.js.map +1 -0
  504. package/src/generators/node_modules/lru-cache/dist/esm/package.json +3 -0
  505. package/src/generators/node_modules/lru-cache/package.json +118 -0
  506. package/src/generators/node_modules/minimatch/LICENSE +15 -0
  507. package/src/generators/node_modules/minimatch/README.md +454 -0
  508. package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
  509. package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
  510. package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  511. package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
  512. package/src/generators/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
  513. package/src/generators/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
  514. package/src/generators/node_modules/minimatch/dist/cjs/ast.js +589 -0
  515. package/src/generators/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
  516. package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
  517. package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
  518. package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  519. package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
  520. package/src/generators/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
  521. package/src/generators/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
  522. package/src/generators/node_modules/minimatch/dist/cjs/escape.js +22 -0
  523. package/src/generators/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
  524. package/src/generators/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
  525. package/src/generators/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
  526. package/src/generators/node_modules/minimatch/dist/cjs/index.js +1011 -0
  527. package/src/generators/node_modules/minimatch/dist/cjs/index.js.map +1 -0
  528. package/src/generators/node_modules/minimatch/dist/cjs/package.json +3 -0
  529. package/src/generators/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
  530. package/src/generators/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
  531. package/src/generators/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  532. package/src/generators/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
  533. package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
  534. package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
  535. package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  536. package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
  537. package/src/generators/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
  538. package/src/generators/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
  539. package/src/generators/node_modules/minimatch/dist/mjs/ast.js +585 -0
  540. package/src/generators/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
  541. package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
  542. package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
  543. package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  544. package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
  545. package/src/generators/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
  546. package/src/generators/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
  547. package/src/generators/node_modules/minimatch/dist/mjs/escape.js +18 -0
  548. package/src/generators/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
  549. package/src/generators/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
  550. package/src/generators/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
  551. package/src/generators/node_modules/minimatch/dist/mjs/index.js +995 -0
  552. package/src/generators/node_modules/minimatch/dist/mjs/index.js.map +1 -0
  553. package/src/generators/node_modules/minimatch/dist/mjs/package.json +3 -0
  554. package/src/generators/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
  555. package/src/generators/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
  556. package/src/generators/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  557. package/src/generators/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
  558. package/src/generators/node_modules/minimatch/package.json +86 -0
  559. package/src/generators/node_modules/minipass/LICENSE +15 -0
  560. package/src/generators/node_modules/minipass/README.md +825 -0
  561. package/src/generators/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
  562. package/src/generators/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
  563. package/src/generators/node_modules/minipass/dist/commonjs/index.js +1028 -0
  564. package/src/generators/node_modules/minipass/dist/commonjs/index.js.map +1 -0
  565. package/src/generators/node_modules/minipass/dist/commonjs/package.json +1 -0
  566. package/src/generators/node_modules/minipass/dist/esm/index.d.ts +549 -0
  567. package/src/generators/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
  568. package/src/generators/node_modules/minipass/dist/esm/index.js +1018 -0
  569. package/src/generators/node_modules/minipass/dist/esm/index.js.map +1 -0
  570. package/src/generators/node_modules/minipass/dist/esm/package.json +1 -0
  571. package/src/generators/node_modules/minipass/package.json +82 -0
  572. package/src/generators/node_modules/path-key/index.d.ts +40 -0
  573. package/src/generators/node_modules/path-key/index.js +16 -0
  574. package/src/generators/node_modules/path-key/license +9 -0
  575. package/src/generators/node_modules/path-key/package.json +39 -0
  576. package/src/generators/node_modules/path-key/readme.md +61 -0
  577. package/src/generators/node_modules/path-scurry/LICENSE.md +55 -0
  578. package/src/generators/node_modules/path-scurry/README.md +631 -0
  579. package/src/generators/node_modules/path-scurry/dist/cjs/index.d.ts +1107 -0
  580. package/src/generators/node_modules/path-scurry/dist/cjs/index.d.ts.map +1 -0
  581. package/src/generators/node_modules/path-scurry/dist/cjs/index.js +2018 -0
  582. package/src/generators/node_modules/path-scurry/dist/cjs/index.js.map +1 -0
  583. package/src/generators/node_modules/path-scurry/dist/cjs/package.json +3 -0
  584. package/src/generators/node_modules/path-scurry/dist/mjs/index.d.ts +1107 -0
  585. package/src/generators/node_modules/path-scurry/dist/mjs/index.d.ts.map +1 -0
  586. package/src/generators/node_modules/path-scurry/dist/mjs/index.js +1983 -0
  587. package/src/generators/node_modules/path-scurry/dist/mjs/index.js.map +1 -0
  588. package/src/generators/node_modules/path-scurry/dist/mjs/package.json +3 -0
  589. package/src/generators/node_modules/path-scurry/package.json +87 -0
  590. package/src/generators/node_modules/shebang-command/index.js +19 -0
  591. package/src/generators/node_modules/shebang-command/license +9 -0
  592. package/src/generators/node_modules/shebang-command/package.json +34 -0
  593. package/src/generators/node_modules/shebang-command/readme.md +34 -0
  594. package/src/generators/node_modules/shebang-regex/index.d.ts +22 -0
  595. package/src/generators/node_modules/shebang-regex/index.js +2 -0
  596. package/src/generators/node_modules/shebang-regex/license +9 -0
  597. package/src/generators/node_modules/shebang-regex/package.json +35 -0
  598. package/src/generators/node_modules/shebang-regex/readme.md +33 -0
  599. package/src/generators/node_modules/signal-exit/LICENSE.txt +16 -0
  600. package/src/generators/node_modules/signal-exit/README.md +74 -0
  601. package/src/generators/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
  602. package/src/generators/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
  603. package/src/generators/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  604. package/src/generators/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
  605. package/src/generators/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
  606. package/src/generators/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
  607. package/src/generators/node_modules/signal-exit/dist/cjs/index.js +279 -0
  608. package/src/generators/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
  609. package/src/generators/node_modules/signal-exit/dist/cjs/package.json +3 -0
  610. package/src/generators/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
  611. package/src/generators/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
  612. package/src/generators/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  613. package/src/generators/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
  614. package/src/generators/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
  615. package/src/generators/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
  616. package/src/generators/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  617. package/src/generators/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
  618. package/src/generators/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
  619. package/src/generators/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
  620. package/src/generators/node_modules/signal-exit/dist/mjs/index.js +275 -0
  621. package/src/generators/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
  622. package/src/generators/node_modules/signal-exit/dist/mjs/package.json +3 -0
  623. package/src/generators/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
  624. package/src/generators/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
  625. package/src/generators/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  626. package/src/generators/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
  627. package/src/generators/node_modules/signal-exit/package.json +106 -0
  628. package/src/generators/node_modules/string-width/index.d.ts +29 -0
  629. package/src/generators/node_modules/string-width/index.js +54 -0
  630. package/src/generators/node_modules/string-width/license +9 -0
  631. package/src/generators/node_modules/string-width/package.json +59 -0
  632. package/src/generators/node_modules/string-width/readme.md +67 -0
  633. package/src/generators/node_modules/string-width-cjs/index.d.ts +29 -0
  634. package/src/generators/node_modules/string-width-cjs/index.js +47 -0
  635. package/src/generators/node_modules/string-width-cjs/license +9 -0
  636. package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  637. package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
  638. package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
  639. package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
  640. package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md +78 -0
  641. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  642. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +73 -0
  643. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
  644. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
  645. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +23 -0
  646. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +6 -0
  647. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +50 -0
  648. package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +6 -0
  649. package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.d.ts +17 -0
  650. package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
  651. package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
  652. package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
  653. package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md +46 -0
  654. package/src/generators/node_modules/string-width-cjs/package.json +56 -0
  655. package/src/generators/node_modules/string-width-cjs/readme.md +50 -0
  656. package/src/generators/node_modules/strip-ansi/index.d.ts +15 -0
  657. package/src/generators/node_modules/strip-ansi/index.js +14 -0
  658. package/src/generators/node_modules/strip-ansi/license +9 -0
  659. package/src/generators/node_modules/strip-ansi/package.json +57 -0
  660. package/src/generators/node_modules/strip-ansi/readme.md +41 -0
  661. package/src/generators/node_modules/strip-ansi-cjs/index.d.ts +17 -0
  662. package/src/generators/node_modules/strip-ansi-cjs/index.js +4 -0
  663. package/src/generators/node_modules/strip-ansi-cjs/license +9 -0
  664. package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  665. package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  666. package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
  667. package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  668. package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
  669. package/src/generators/node_modules/strip-ansi-cjs/package.json +54 -0
  670. package/src/generators/node_modules/strip-ansi-cjs/readme.md +46 -0
  671. package/src/generators/node_modules/which/CHANGELOG.md +166 -0
  672. package/src/generators/node_modules/which/LICENSE +15 -0
  673. package/src/generators/node_modules/which/README.md +54 -0
  674. package/src/generators/node_modules/which/bin/node-which +52 -0
  675. package/src/generators/node_modules/which/package.json +43 -0
  676. package/src/generators/node_modules/which/which.js +125 -0
  677. package/src/generators/node_modules/wrap-ansi/index.d.ts +41 -0
  678. package/src/generators/node_modules/wrap-ansi/index.js +214 -0
  679. package/src/generators/node_modules/wrap-ansi/license +9 -0
  680. package/src/generators/node_modules/wrap-ansi/package.json +69 -0
  681. package/src/generators/node_modules/wrap-ansi/readme.md +91 -0
  682. package/src/generators/node_modules/wrap-ansi-cjs/index.js +216 -0
  683. package/src/generators/node_modules/wrap-ansi-cjs/license +9 -0
  684. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  685. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  686. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
  687. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  688. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
  689. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
  690. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  691. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  692. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  693. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
  694. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  695. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +73 -0
  696. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
  697. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
  698. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +23 -0
  699. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +6 -0
  700. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +50 -0
  701. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +6 -0
  702. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.d.ts +29 -0
  703. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +47 -0
  704. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/license +9 -0
  705. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/package.json +56 -0
  706. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md +50 -0
  707. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.d.ts +17 -0
  708. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
  709. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
  710. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
  711. package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md +46 -0
  712. package/src/generators/node_modules/wrap-ansi-cjs/package.json +62 -0
  713. package/src/generators/node_modules/wrap-ansi-cjs/readme.md +91 -0
  714. package/src/schemas/action.ts +15 -0
  715. package/src/schemas/common.ts +16 -0
  716. package/src/schemas/field/afm/index.ts +2 -18
  717. package/src/schemas/field/amka/index.ts +7 -2
  718. package/src/schemas/field/attachment/index.ts +12 -24
  719. package/src/schemas/field/choice/index.ts +2 -13
  720. package/src/schemas/field/common.ts +75 -51
  721. package/src/schemas/field/consent-content/index.ts +28 -0
  722. package/src/schemas/field/date/index.ts +5 -32
  723. package/src/schemas/field/doc_subtitle/index.ts +1 -0
  724. package/src/schemas/field/doc_title/index.ts +9 -16
  725. package/src/schemas/field/dynamically-filled-text/index.ts +4 -5
  726. package/src/schemas/field/email/index.ts +6 -9
  727. package/src/schemas/field/fillable-string/index.ts +1 -1
  728. package/src/schemas/field/hidden/index.ts +4 -43
  729. package/src/schemas/field/hierarchical-selector/index.ts +3 -9
  730. package/src/schemas/field/image/index.ts +5 -24
  731. package/src/schemas/field/image-crop/index.ts +25 -0
  732. package/src/schemas/field/index.spec.ts +0 -42
  733. package/src/schemas/field/index.ts +64 -12
  734. package/src/schemas/field/int/index.ts +2 -0
  735. package/src/schemas/field/intl_mobile_phone/index.ts +19 -0
  736. package/src/schemas/field/lab-results/index.ts +1 -2
  737. package/src/schemas/field/link/index.ts +20 -0
  738. package/src/schemas/field/mobile_phone/index.ts +1 -12
  739. package/src/schemas/field/multiple-choice/index.ts +4 -3
  740. package/src/schemas/field/password/index.ts +18 -0
  741. package/src/schemas/field/pdf-image/index.ts +3 -15
  742. package/src/schemas/field/phone/index.ts +18 -0
  743. package/src/schemas/field/postal_code/index.ts +1 -1
  744. package/src/schemas/field/preference-multiple-choice/index.ts +41 -0
  745. package/src/schemas/field/qrcode/index.ts +1 -0
  746. package/src/schemas/field/quote/index.ts +2 -19
  747. package/src/schemas/field/radio-choice/index.ts +1 -7
  748. package/src/schemas/field/rate/index.ts +1 -9
  749. package/src/schemas/field/recipient/index.ts +2 -2
  750. package/src/schemas/field/redirect/index.ts +4 -13
  751. package/src/schemas/field/refcode/index.ts +10 -15
  752. package/src/schemas/field/string/index.ts +13 -0
  753. package/src/schemas/field/text/index.ts +4 -18
  754. package/src/schemas/field/url-param/index.ts +23 -0
  755. package/src/schemas/resolve.ts +3 -0
  756. package/src/schemas/step.ts +2 -0
  757. package/src/schemas/template/index.ts +0 -1
  758. package/src/schemas/template/template-base.ts +0 -10
  759. package/src/schemas/template/template.ts +1 -2
  760. package/src/schemas/validation-context/enums.ts +0 -16
  761. package/src/schemas/validation-context/validation-context.ts +2 -4
  762. package/src/utils/index.ts +10 -1
  763. package/utils/index.d.ts +6 -0
  764. package/utils/index.js +55 -0
  765. package/.prettierrc.js +0 -1
  766. package/.rush/temp/chunked-rush-logs/stepwise.build.chunks.jsonl +0 -6
  767. package/.rush/temp/chunked-rush-logs/stepwise.lint.chunks.jsonl +0 -9
  768. package/.rush/temp/chunked-rush-logs/stepwise.publint.chunks.jsonl +0 -72
  769. package/.rush/temp/chunked-rush-logs/stepwise.test.chunks.jsonl +0 -16
  770. package/.rush/temp/package-deps_build.json +0 -185
  771. package/.rush/temp/package-deps_lint.json +0 -185
  772. package/.rush/temp/package-deps_publint.json +0 -949
  773. package/.rush/temp/package-deps_test.json +0 -185
  774. package/.rush/temp/shrinkwrap-deps.json +0 -303
  775. package/eslint.config.mjs +0 -3
  776. package/rush-logs/stepwise.build.log +0 -6
  777. package/rush-logs/stepwise.lint.log +0 -9
  778. package/rush-logs/stepwise.publint.log +0 -72
  779. package/rush-logs/stepwise.test.log +0 -16
  780. package/src/schemas/field/green-pass-qrcode/index.ts +0 -27
  781. package/src/schemas/template/enums.ts +0 -22
  782. package/tsconfig.json +0 -25
@@ -0,0 +1,2366 @@
1
+ import * as v from 'valibot';
2
+ export declare const TemporarySaveSchema: v.StrictObjectSchema<{
3
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
4
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-temporary-save", undefined>, undefined>;
5
+ } & {
6
+ /** The text to display on the button */
7
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
8
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
9
+ /** The explanatory title of the action */
10
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ /** An explanatory subtitle for the action */
12
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
13
+ /**
14
+ * Whether it is considered a primary action
15
+ *
16
+ * This also determines the styling of the action button
17
+ */
18
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
19
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
20
+ /** @default false */
21
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
22
+ /**
23
+ * Confirmation dialog title
24
+ *
25
+ * Title of dialog to display when the user clicks on the action button
26
+ */
27
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
28
+ /**
29
+ * Confirmation dialog description
30
+ *
31
+ * Description of dialog to display when the user clicks on the action button
32
+ */
33
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
34
+ /**
35
+ * Confirmation dialog 'confirm' button label
36
+ *
37
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
38
+ */
39
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
40
+ /**
41
+ * Confirmation dialog 'cancel' button label
42
+ *
43
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
44
+ */
45
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
46
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
47
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
48
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
49
+ readonly retry_limit: v.NumberSchema<undefined>;
50
+ readonly retry_delay: v.NumberSchema<undefined>;
51
+ }, undefined>, undefined>;
52
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
53
+ readonly retry: v.StrictObjectSchema<{
54
+ readonly retry_limit: v.NumberSchema<undefined>;
55
+ readonly retry_delay: v.NumberSchema<undefined>;
56
+ }, undefined>;
57
+ readonly id_field: v.StringSchema<undefined>;
58
+ readonly endpoint: v.StringSchema<undefined>;
59
+ }, undefined>, undefined>;
60
+ }, undefined>, undefined>, undefined>;
61
+ }, undefined>;
62
+ export type TemporarySave = v.InferOutput<typeof TemporarySaveSchema>;
63
+ export declare const PdfSchema: v.StrictObjectSchema<{
64
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
65
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-download-pdf", undefined>, undefined>;
66
+ } & {
67
+ /** The text to display on the button */
68
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
69
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
70
+ /** The explanatory title of the action */
71
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
72
+ /** An explanatory subtitle for the action */
73
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
74
+ /**
75
+ * Whether it is considered a primary action
76
+ *
77
+ * This also determines the styling of the action button
78
+ */
79
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
80
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
81
+ /** @default false */
82
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
83
+ /**
84
+ * Confirmation dialog title
85
+ *
86
+ * Title of dialog to display when the user clicks on the action button
87
+ */
88
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
89
+ /**
90
+ * Confirmation dialog description
91
+ *
92
+ * Description of dialog to display when the user clicks on the action button
93
+ */
94
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
95
+ /**
96
+ * Confirmation dialog 'confirm' button label
97
+ *
98
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
99
+ */
100
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
101
+ /**
102
+ * Confirmation dialog 'cancel' button label
103
+ *
104
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
105
+ */
106
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
107
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
108
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
109
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
110
+ readonly retry_limit: v.NumberSchema<undefined>;
111
+ readonly retry_delay: v.NumberSchema<undefined>;
112
+ }, undefined>, undefined>;
113
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
114
+ readonly retry: v.StrictObjectSchema<{
115
+ readonly retry_limit: v.NumberSchema<undefined>;
116
+ readonly retry_delay: v.NumberSchema<undefined>;
117
+ }, undefined>;
118
+ readonly id_field: v.StringSchema<undefined>;
119
+ readonly endpoint: v.StringSchema<undefined>;
120
+ }, undefined>, undefined>;
121
+ }, undefined>, undefined>, undefined>;
122
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
123
+ readonly filename: v.StringSchema<undefined>;
124
+ readonly sign: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
125
+ }, undefined>, undefined>;
126
+ }, undefined>;
127
+ export type Pdf = v.InferOutput<typeof PdfSchema>;
128
+ export declare const ResendOtpSchema: v.StrictObjectSchema<{
129
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
130
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-resend-otp", undefined>, undefined>;
131
+ } & {
132
+ /** The text to display on the button */
133
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
134
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
135
+ /** The explanatory title of the action */
136
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
137
+ /** An explanatory subtitle for the action */
138
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
139
+ /**
140
+ * Whether it is considered a primary action
141
+ *
142
+ * This also determines the styling of the action button
143
+ */
144
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
145
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
146
+ /** @default false */
147
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
148
+ /**
149
+ * Confirmation dialog title
150
+ *
151
+ * Title of dialog to display when the user clicks on the action button
152
+ */
153
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
154
+ /**
155
+ * Confirmation dialog description
156
+ *
157
+ * Description of dialog to display when the user clicks on the action button
158
+ */
159
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
160
+ /**
161
+ * Confirmation dialog 'confirm' button label
162
+ *
163
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
164
+ */
165
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
166
+ /**
167
+ * Confirmation dialog 'cancel' button label
168
+ *
169
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
170
+ */
171
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
172
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
173
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
174
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
175
+ readonly retry_limit: v.NumberSchema<undefined>;
176
+ readonly retry_delay: v.NumberSchema<undefined>;
177
+ }, undefined>, undefined>;
178
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
179
+ readonly retry: v.StrictObjectSchema<{
180
+ readonly retry_limit: v.NumberSchema<undefined>;
181
+ readonly retry_delay: v.NumberSchema<undefined>;
182
+ }, undefined>;
183
+ readonly id_field: v.StringSchema<undefined>;
184
+ readonly endpoint: v.StringSchema<undefined>;
185
+ }, undefined>, undefined>;
186
+ }, undefined>, undefined>, undefined>;
187
+ }, undefined>;
188
+ export type ResendOtp = v.InferOutput<typeof ResendOtpSchema>;
189
+ export declare const ResendEmailOtpSchema: v.StrictObjectSchema<{
190
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
191
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-resend-email-otp", undefined>, undefined>;
192
+ } & {
193
+ /** The text to display on the button */
194
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
195
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
196
+ /** The explanatory title of the action */
197
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
198
+ /** An explanatory subtitle for the action */
199
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
200
+ /**
201
+ * Whether it is considered a primary action
202
+ *
203
+ * This also determines the styling of the action button
204
+ */
205
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
206
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
207
+ /** @default false */
208
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
209
+ /**
210
+ * Confirmation dialog title
211
+ *
212
+ * Title of dialog to display when the user clicks on the action button
213
+ */
214
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
215
+ /**
216
+ * Confirmation dialog description
217
+ *
218
+ * Description of dialog to display when the user clicks on the action button
219
+ */
220
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
221
+ /**
222
+ * Confirmation dialog 'confirm' button label
223
+ *
224
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
225
+ */
226
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
227
+ /**
228
+ * Confirmation dialog 'cancel' button label
229
+ *
230
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
231
+ */
232
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
233
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
234
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
235
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
236
+ readonly retry_limit: v.NumberSchema<undefined>;
237
+ readonly retry_delay: v.NumberSchema<undefined>;
238
+ }, undefined>, undefined>;
239
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
240
+ readonly retry: v.StrictObjectSchema<{
241
+ readonly retry_limit: v.NumberSchema<undefined>;
242
+ readonly retry_delay: v.NumberSchema<undefined>;
243
+ }, undefined>;
244
+ readonly id_field: v.StringSchema<undefined>;
245
+ readonly endpoint: v.StringSchema<undefined>;
246
+ }, undefined>, undefined>;
247
+ }, undefined>, undefined>, undefined>;
248
+ }, undefined>;
249
+ export type ResendEmailOtp = v.InferOutput<typeof ResendEmailOtpSchema>;
250
+ export declare const CancelSchema: v.StrictObjectSchema<{
251
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
252
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-dismiss", undefined>, undefined>;
253
+ } & {
254
+ /** The text to display on the button */
255
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
256
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
257
+ /** The explanatory title of the action */
258
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
259
+ /** An explanatory subtitle for the action */
260
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
261
+ /**
262
+ * Whether it is considered a primary action
263
+ *
264
+ * This also determines the styling of the action button
265
+ */
266
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
267
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
268
+ /** @default false */
269
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
270
+ /**
271
+ * Confirmation dialog title
272
+ *
273
+ * Title of dialog to display when the user clicks on the action button
274
+ */
275
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
276
+ /**
277
+ * Confirmation dialog description
278
+ *
279
+ * Description of dialog to display when the user clicks on the action button
280
+ */
281
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
282
+ /**
283
+ * Confirmation dialog 'confirm' button label
284
+ *
285
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
286
+ */
287
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
288
+ /**
289
+ * Confirmation dialog 'cancel' button label
290
+ *
291
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
292
+ */
293
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
294
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
295
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
296
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
297
+ readonly retry_limit: v.NumberSchema<undefined>;
298
+ readonly retry_delay: v.NumberSchema<undefined>;
299
+ }, undefined>, undefined>;
300
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
301
+ readonly retry: v.StrictObjectSchema<{
302
+ readonly retry_limit: v.NumberSchema<undefined>;
303
+ readonly retry_delay: v.NumberSchema<undefined>;
304
+ }, undefined>;
305
+ readonly id_field: v.StringSchema<undefined>;
306
+ readonly endpoint: v.StringSchema<undefined>;
307
+ }, undefined>, undefined>;
308
+ }, undefined>, undefined>, undefined>;
309
+ }, undefined>;
310
+ export type Cancel = v.InferOutput<typeof CancelSchema>;
311
+ export declare const UpdateSchema: v.StrictObjectSchema<{
312
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
313
+ readonly component: v.OptionalSchema<v.PicklistSchema<["document-update", "document-collect", "document-issue-collected"], undefined>, undefined>;
314
+ } & {
315
+ /** The text to display on the button */
316
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
317
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
318
+ /** The explanatory title of the action */
319
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
320
+ /** An explanatory subtitle for the action */
321
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
322
+ /**
323
+ * Whether it is considered a primary action
324
+ *
325
+ * This also determines the styling of the action button
326
+ */
327
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
328
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
329
+ /** @default false */
330
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
331
+ /**
332
+ * Confirmation dialog title
333
+ *
334
+ * Title of dialog to display when the user clicks on the action button
335
+ */
336
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
337
+ /**
338
+ * Confirmation dialog description
339
+ *
340
+ * Description of dialog to display when the user clicks on the action button
341
+ */
342
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
343
+ /**
344
+ * Confirmation dialog 'confirm' button label
345
+ *
346
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
347
+ */
348
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
349
+ /**
350
+ * Confirmation dialog 'cancel' button label
351
+ *
352
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
353
+ */
354
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
355
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
356
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
357
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
358
+ readonly retry_limit: v.NumberSchema<undefined>;
359
+ readonly retry_delay: v.NumberSchema<undefined>;
360
+ }, undefined>, undefined>;
361
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
362
+ readonly retry: v.StrictObjectSchema<{
363
+ readonly retry_limit: v.NumberSchema<undefined>;
364
+ readonly retry_delay: v.NumberSchema<undefined>;
365
+ }, undefined>;
366
+ readonly id_field: v.StringSchema<undefined>;
367
+ readonly endpoint: v.StringSchema<undefined>;
368
+ }, undefined>, undefined>;
369
+ }, undefined>, undefined>, undefined>;
370
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
371
+ readonly issue: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
372
+ readonly mark_submitting: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
373
+ readonly 'ensure-no-input': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
374
+ }, undefined>, undefined>;
375
+ }, undefined>;
376
+ export type Update = v.InferOutput<typeof UpdateSchema>;
377
+ export declare const CreateSchema: v.StrictObjectSchema<{
378
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
379
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-create", undefined>, undefined>;
380
+ } & {
381
+ /** The text to display on the button */
382
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
383
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
384
+ /** The explanatory title of the action */
385
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
386
+ /** An explanatory subtitle for the action */
387
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
388
+ /**
389
+ * Whether it is considered a primary action
390
+ *
391
+ * This also determines the styling of the action button
392
+ */
393
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
394
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
395
+ /** @default false */
396
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
397
+ /**
398
+ * Confirmation dialog title
399
+ *
400
+ * Title of dialog to display when the user clicks on the action button
401
+ */
402
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
403
+ /**
404
+ * Confirmation dialog description
405
+ *
406
+ * Description of dialog to display when the user clicks on the action button
407
+ */
408
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
409
+ /**
410
+ * Confirmation dialog 'confirm' button label
411
+ *
412
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
413
+ */
414
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
415
+ /**
416
+ * Confirmation dialog 'cancel' button label
417
+ *
418
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
419
+ */
420
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
421
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
422
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
423
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
424
+ readonly retry_limit: v.NumberSchema<undefined>;
425
+ readonly retry_delay: v.NumberSchema<undefined>;
426
+ }, undefined>, undefined>;
427
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
428
+ readonly retry: v.StrictObjectSchema<{
429
+ readonly retry_limit: v.NumberSchema<undefined>;
430
+ readonly retry_delay: v.NumberSchema<undefined>;
431
+ }, undefined>;
432
+ readonly id_field: v.StringSchema<undefined>;
433
+ readonly endpoint: v.StringSchema<undefined>;
434
+ }, undefined>, undefined>;
435
+ }, undefined>, undefined>, undefined>;
436
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
437
+ readonly interactive: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
438
+ }, undefined>, undefined>;
439
+ }, undefined>;
440
+ export type Create = v.InferOutput<typeof CreateSchema>;
441
+ export declare const AnonCreateSchema: v.StrictObjectSchema<{
442
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
443
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-anon-create", undefined>, undefined>;
444
+ } & {
445
+ /** The text to display on the button */
446
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
447
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
448
+ /** The explanatory title of the action */
449
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
450
+ /** An explanatory subtitle for the action */
451
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
452
+ /**
453
+ * Whether it is considered a primary action
454
+ *
455
+ * This also determines the styling of the action button
456
+ */
457
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
458
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
459
+ /** @default false */
460
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
461
+ /**
462
+ * Confirmation dialog title
463
+ *
464
+ * Title of dialog to display when the user clicks on the action button
465
+ */
466
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
467
+ /**
468
+ * Confirmation dialog description
469
+ *
470
+ * Description of dialog to display when the user clicks on the action button
471
+ */
472
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
473
+ /**
474
+ * Confirmation dialog 'confirm' button label
475
+ *
476
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
477
+ */
478
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
479
+ /**
480
+ * Confirmation dialog 'cancel' button label
481
+ *
482
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
483
+ */
484
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
485
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
486
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
487
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
488
+ readonly retry_limit: v.NumberSchema<undefined>;
489
+ readonly retry_delay: v.NumberSchema<undefined>;
490
+ }, undefined>, undefined>;
491
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
492
+ readonly retry: v.StrictObjectSchema<{
493
+ readonly retry_limit: v.NumberSchema<undefined>;
494
+ readonly retry_delay: v.NumberSchema<undefined>;
495
+ }, undefined>;
496
+ readonly id_field: v.StringSchema<undefined>;
497
+ readonly endpoint: v.StringSchema<undefined>;
498
+ }, undefined>, undefined>;
499
+ }, undefined>, undefined>, undefined>;
500
+ }, undefined>;
501
+ export type AnonCreate = v.InferOutput<typeof AnonCreateSchema>;
502
+ export declare const RevokeSchema: v.StrictObjectSchema<{
503
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
504
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-revoke", undefined>, undefined>;
505
+ } & {
506
+ /** The text to display on the button */
507
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
508
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
509
+ /** The explanatory title of the action */
510
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
511
+ /** An explanatory subtitle for the action */
512
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
513
+ /**
514
+ * Whether it is considered a primary action
515
+ *
516
+ * This also determines the styling of the action button
517
+ */
518
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
519
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
520
+ /** @default false */
521
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
522
+ /**
523
+ * Confirmation dialog title
524
+ *
525
+ * Title of dialog to display when the user clicks on the action button
526
+ */
527
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
528
+ /**
529
+ * Confirmation dialog description
530
+ *
531
+ * Description of dialog to display when the user clicks on the action button
532
+ */
533
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
534
+ /**
535
+ * Confirmation dialog 'confirm' button label
536
+ *
537
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
538
+ */
539
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
540
+ /**
541
+ * Confirmation dialog 'cancel' button label
542
+ *
543
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
544
+ */
545
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
546
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
547
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
548
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
549
+ readonly retry_limit: v.NumberSchema<undefined>;
550
+ readonly retry_delay: v.NumberSchema<undefined>;
551
+ }, undefined>, undefined>;
552
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
553
+ readonly retry: v.StrictObjectSchema<{
554
+ readonly retry_limit: v.NumberSchema<undefined>;
555
+ readonly retry_delay: v.NumberSchema<undefined>;
556
+ }, undefined>;
557
+ readonly id_field: v.StringSchema<undefined>;
558
+ readonly endpoint: v.StringSchema<undefined>;
559
+ }, undefined>, undefined>;
560
+ }, undefined>, undefined>, undefined>;
561
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
562
+ readonly next_step: v.StringSchema<undefined>;
563
+ }, undefined>, undefined>;
564
+ }, undefined>;
565
+ export type Revoke = v.InferOutput<typeof RevokeSchema>;
566
+ export declare const ShareSchema: v.StrictObjectSchema<{
567
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
568
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-share", undefined>, undefined>;
569
+ } & {
570
+ /** The text to display on the button */
571
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
572
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
573
+ /** The explanatory title of the action */
574
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
575
+ /** An explanatory subtitle for the action */
576
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
577
+ /**
578
+ * Whether it is considered a primary action
579
+ *
580
+ * This also determines the styling of the action button
581
+ */
582
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
583
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
584
+ /** @default false */
585
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
586
+ /**
587
+ * Confirmation dialog title
588
+ *
589
+ * Title of dialog to display when the user clicks on the action button
590
+ */
591
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
592
+ /**
593
+ * Confirmation dialog description
594
+ *
595
+ * Description of dialog to display when the user clicks on the action button
596
+ */
597
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
598
+ /**
599
+ * Confirmation dialog 'confirm' button label
600
+ *
601
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
602
+ */
603
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
604
+ /**
605
+ * Confirmation dialog 'cancel' button label
606
+ *
607
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
608
+ */
609
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
610
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
611
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
612
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
613
+ readonly retry_limit: v.NumberSchema<undefined>;
614
+ readonly retry_delay: v.NumberSchema<undefined>;
615
+ }, undefined>, undefined>;
616
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
617
+ readonly retry: v.StrictObjectSchema<{
618
+ readonly retry_limit: v.NumberSchema<undefined>;
619
+ readonly retry_delay: v.NumberSchema<undefined>;
620
+ }, undefined>;
621
+ readonly id_field: v.StringSchema<undefined>;
622
+ readonly endpoint: v.StringSchema<undefined>;
623
+ }, undefined>, undefined>;
624
+ }, undefined>, undefined>, undefined>;
625
+ }, undefined>;
626
+ export type Share = v.InferOutput<typeof ShareSchema>;
627
+ export declare const EmailSchema: v.StrictObjectSchema<{
628
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
629
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-email", undefined>, undefined>;
630
+ } & {
631
+ /** The text to display on the button */
632
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
633
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
634
+ /** The explanatory title of the action */
635
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
636
+ /** An explanatory subtitle for the action */
637
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
638
+ /**
639
+ * Whether it is considered a primary action
640
+ *
641
+ * This also determines the styling of the action button
642
+ */
643
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
644
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
645
+ /** @default false */
646
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
647
+ /**
648
+ * Confirmation dialog title
649
+ *
650
+ * Title of dialog to display when the user clicks on the action button
651
+ */
652
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
653
+ /**
654
+ * Confirmation dialog description
655
+ *
656
+ * Description of dialog to display when the user clicks on the action button
657
+ */
658
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
659
+ /**
660
+ * Confirmation dialog 'confirm' button label
661
+ *
662
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
663
+ */
664
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
665
+ /**
666
+ * Confirmation dialog 'cancel' button label
667
+ *
668
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
669
+ */
670
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
671
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
672
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
673
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
674
+ readonly retry_limit: v.NumberSchema<undefined>;
675
+ readonly retry_delay: v.NumberSchema<undefined>;
676
+ }, undefined>, undefined>;
677
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
678
+ readonly retry: v.StrictObjectSchema<{
679
+ readonly retry_limit: v.NumberSchema<undefined>;
680
+ readonly retry_delay: v.NumberSchema<undefined>;
681
+ }, undefined>;
682
+ readonly id_field: v.StringSchema<undefined>;
683
+ readonly endpoint: v.StringSchema<undefined>;
684
+ }, undefined>, undefined>;
685
+ }, undefined>, undefined>, undefined>;
686
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
687
+ readonly template: v.StringSchema<undefined>;
688
+ readonly email_field: v.StringSchema<undefined>;
689
+ readonly subject: v.StringSchema<undefined>;
690
+ }, undefined>, undefined>;
691
+ }, undefined>;
692
+ export type Email = v.InferOutput<typeof EmailSchema>;
693
+ export declare const SmsSchema: v.StrictObjectSchema<{
694
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
695
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-sms", undefined>, undefined>;
696
+ } & {
697
+ /** The text to display on the button */
698
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
699
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
700
+ /** The explanatory title of the action */
701
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
702
+ /** An explanatory subtitle for the action */
703
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
704
+ /**
705
+ * Whether it is considered a primary action
706
+ *
707
+ * This also determines the styling of the action button
708
+ */
709
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
710
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
711
+ /** @default false */
712
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
713
+ /**
714
+ * Confirmation dialog title
715
+ *
716
+ * Title of dialog to display when the user clicks on the action button
717
+ */
718
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
719
+ /**
720
+ * Confirmation dialog description
721
+ *
722
+ * Description of dialog to display when the user clicks on the action button
723
+ */
724
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
725
+ /**
726
+ * Confirmation dialog 'confirm' button label
727
+ *
728
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
729
+ */
730
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
731
+ /**
732
+ * Confirmation dialog 'cancel' button label
733
+ *
734
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
735
+ */
736
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
737
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
738
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
739
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
740
+ readonly retry_limit: v.NumberSchema<undefined>;
741
+ readonly retry_delay: v.NumberSchema<undefined>;
742
+ }, undefined>, undefined>;
743
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
744
+ readonly retry: v.StrictObjectSchema<{
745
+ readonly retry_limit: v.NumberSchema<undefined>;
746
+ readonly retry_delay: v.NumberSchema<undefined>;
747
+ }, undefined>;
748
+ readonly id_field: v.StringSchema<undefined>;
749
+ readonly endpoint: v.StringSchema<undefined>;
750
+ }, undefined>, undefined>;
751
+ }, undefined>, undefined>, undefined>;
752
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
753
+ readonly sms_field: v.StringSchema<undefined>;
754
+ readonly template: v.StringSchema<undefined>;
755
+ }, undefined>, undefined>;
756
+ }, undefined>;
757
+ export type Sms = v.InferOutput<typeof SmsSchema>;
758
+ export declare const CommunicationSchema: v.StrictObjectSchema<{
759
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
760
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-send-message", undefined>, undefined>;
761
+ } & {
762
+ /** The text to display on the button */
763
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
764
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
765
+ /** The explanatory title of the action */
766
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
767
+ /** An explanatory subtitle for the action */
768
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
769
+ /**
770
+ * Whether it is considered a primary action
771
+ *
772
+ * This also determines the styling of the action button
773
+ */
774
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
775
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
776
+ /** @default false */
777
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
778
+ /**
779
+ * Confirmation dialog title
780
+ *
781
+ * Title of dialog to display when the user clicks on the action button
782
+ */
783
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
784
+ /**
785
+ * Confirmation dialog description
786
+ *
787
+ * Description of dialog to display when the user clicks on the action button
788
+ */
789
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
790
+ /**
791
+ * Confirmation dialog 'confirm' button label
792
+ *
793
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
794
+ */
795
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
796
+ /**
797
+ * Confirmation dialog 'cancel' button label
798
+ *
799
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
800
+ */
801
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
802
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
803
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
804
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
805
+ readonly retry_limit: v.NumberSchema<undefined>;
806
+ readonly retry_delay: v.NumberSchema<undefined>;
807
+ }, undefined>, undefined>;
808
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
809
+ readonly retry: v.StrictObjectSchema<{
810
+ readonly retry_limit: v.NumberSchema<undefined>;
811
+ readonly retry_delay: v.NumberSchema<undefined>;
812
+ }, undefined>;
813
+ readonly id_field: v.StringSchema<undefined>;
814
+ readonly endpoint: v.StringSchema<undefined>;
815
+ }, undefined>, undefined>;
816
+ }, undefined>, undefined>, undefined>;
817
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
818
+ readonly 'contact-phone-field': v.StringSchema<undefined>;
819
+ readonly 'contact-email-field': v.StringSchema<undefined>;
820
+ readonly 'message-subject': v.NullishSchema<v.StringSchema<undefined>, undefined>;
821
+ }, undefined>, undefined>;
822
+ }, undefined>;
823
+ export type Communication = v.InferOutput<typeof CommunicationSchema>;
824
+ export declare const ForwardSchema: v.StrictObjectSchema<{
825
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
826
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-forward", undefined>, undefined>;
827
+ } & {
828
+ /** The text to display on the button */
829
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
830
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
831
+ /** The explanatory title of the action */
832
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
833
+ /** An explanatory subtitle for the action */
834
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
835
+ /**
836
+ * Whether it is considered a primary action
837
+ *
838
+ * This also determines the styling of the action button
839
+ */
840
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
841
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
842
+ /** @default false */
843
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
844
+ /**
845
+ * Confirmation dialog title
846
+ *
847
+ * Title of dialog to display when the user clicks on the action button
848
+ */
849
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
850
+ /**
851
+ * Confirmation dialog description
852
+ *
853
+ * Description of dialog to display when the user clicks on the action button
854
+ */
855
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
856
+ /**
857
+ * Confirmation dialog 'confirm' button label
858
+ *
859
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
860
+ */
861
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
862
+ /**
863
+ * Confirmation dialog 'cancel' button label
864
+ *
865
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
866
+ */
867
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
868
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
869
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
870
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
871
+ readonly retry_limit: v.NumberSchema<undefined>;
872
+ readonly retry_delay: v.NumberSchema<undefined>;
873
+ }, undefined>, undefined>;
874
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
875
+ readonly retry: v.StrictObjectSchema<{
876
+ readonly retry_limit: v.NumberSchema<undefined>;
877
+ readonly retry_delay: v.NumberSchema<undefined>;
878
+ }, undefined>;
879
+ readonly id_field: v.StringSchema<undefined>;
880
+ readonly endpoint: v.StringSchema<undefined>;
881
+ }, undefined>, undefined>;
882
+ }, undefined>, undefined>, undefined>;
883
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
884
+ readonly notify_user: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
885
+ readonly 'message-subject': v.NullishSchema<v.StringSchema<undefined>, undefined>;
886
+ readonly message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
887
+ }, undefined>, undefined>;
888
+ }, undefined>;
889
+ export type Forward = v.InferOutput<typeof ForwardSchema>;
890
+ export declare const AuthorizedPdfSchema: v.StrictObjectSchema<{
891
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
892
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-print-pdf", undefined>, undefined>;
893
+ } & {
894
+ /** The text to display on the button */
895
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
896
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
897
+ /** The explanatory title of the action */
898
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
899
+ /** An explanatory subtitle for the action */
900
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
901
+ /**
902
+ * Whether it is considered a primary action
903
+ *
904
+ * This also determines the styling of the action button
905
+ */
906
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
907
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
908
+ /** @default false */
909
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
910
+ /**
911
+ * Confirmation dialog title
912
+ *
913
+ * Title of dialog to display when the user clicks on the action button
914
+ */
915
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
916
+ /**
917
+ * Confirmation dialog description
918
+ *
919
+ * Description of dialog to display when the user clicks on the action button
920
+ */
921
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
922
+ /**
923
+ * Confirmation dialog 'confirm' button label
924
+ *
925
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
926
+ */
927
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
928
+ /**
929
+ * Confirmation dialog 'cancel' button label
930
+ *
931
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
932
+ */
933
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
934
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
935
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
936
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
937
+ readonly retry_limit: v.NumberSchema<undefined>;
938
+ readonly retry_delay: v.NumberSchema<undefined>;
939
+ }, undefined>, undefined>;
940
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
941
+ readonly retry: v.StrictObjectSchema<{
942
+ readonly retry_limit: v.NumberSchema<undefined>;
943
+ readonly retry_delay: v.NumberSchema<undefined>;
944
+ }, undefined>;
945
+ readonly id_field: v.StringSchema<undefined>;
946
+ readonly endpoint: v.StringSchema<undefined>;
947
+ }, undefined>, undefined>;
948
+ }, undefined>, undefined>, undefined>;
949
+ }, undefined>;
950
+ export type AuthorizedPdf = v.InferOutput<typeof AuthorizedPdfSchema>;
951
+ export declare const ReplySchema: v.StrictObjectSchema<{
952
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
953
+ readonly component: v.OptionalSchema<v.PicklistSchema<["entity-reply", "hidden"], undefined>, undefined>;
954
+ } & {
955
+ /** The text to display on the button */
956
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
957
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
958
+ /** The explanatory title of the action */
959
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
960
+ /** An explanatory subtitle for the action */
961
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
962
+ /**
963
+ * Whether it is considered a primary action
964
+ *
965
+ * This also determines the styling of the action button
966
+ */
967
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
968
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
969
+ /** @default false */
970
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
971
+ /**
972
+ * Confirmation dialog title
973
+ *
974
+ * Title of dialog to display when the user clicks on the action button
975
+ */
976
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
977
+ /**
978
+ * Confirmation dialog description
979
+ *
980
+ * Description of dialog to display when the user clicks on the action button
981
+ */
982
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
983
+ /**
984
+ * Confirmation dialog 'confirm' button label
985
+ *
986
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
987
+ */
988
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
989
+ /**
990
+ * Confirmation dialog 'cancel' button label
991
+ *
992
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
993
+ */
994
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
995
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
996
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
997
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
998
+ readonly retry_limit: v.NumberSchema<undefined>;
999
+ readonly retry_delay: v.NumberSchema<undefined>;
1000
+ }, undefined>, undefined>;
1001
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1002
+ readonly retry: v.StrictObjectSchema<{
1003
+ readonly retry_limit: v.NumberSchema<undefined>;
1004
+ readonly retry_delay: v.NumberSchema<undefined>;
1005
+ }, undefined>;
1006
+ readonly id_field: v.StringSchema<undefined>;
1007
+ readonly endpoint: v.StringSchema<undefined>;
1008
+ }, undefined>, undefined>;
1009
+ }, undefined>, undefined>, undefined>;
1010
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1011
+ readonly 'reply-templates': v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>;
1012
+ }, undefined>, undefined>;
1013
+ }, undefined>;
1014
+ export type Reply = v.InferOutput<typeof ReplySchema>;
1015
+ export declare const WebPrintSchema: v.StrictObjectSchema<{
1016
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1017
+ readonly component: v.OptionalSchema<v.LiteralSchema<"web-print", undefined>, undefined>;
1018
+ } & {
1019
+ /** The text to display on the button */
1020
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1021
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1022
+ /** The explanatory title of the action */
1023
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1024
+ /** An explanatory subtitle for the action */
1025
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1026
+ /**
1027
+ * Whether it is considered a primary action
1028
+ *
1029
+ * This also determines the styling of the action button
1030
+ */
1031
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1032
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1033
+ /** @default false */
1034
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1035
+ /**
1036
+ * Confirmation dialog title
1037
+ *
1038
+ * Title of dialog to display when the user clicks on the action button
1039
+ */
1040
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1041
+ /**
1042
+ * Confirmation dialog description
1043
+ *
1044
+ * Description of dialog to display when the user clicks on the action button
1045
+ */
1046
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1047
+ /**
1048
+ * Confirmation dialog 'confirm' button label
1049
+ *
1050
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1051
+ */
1052
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1053
+ /**
1054
+ * Confirmation dialog 'cancel' button label
1055
+ *
1056
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1057
+ */
1058
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1059
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1060
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1061
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1062
+ readonly retry_limit: v.NumberSchema<undefined>;
1063
+ readonly retry_delay: v.NumberSchema<undefined>;
1064
+ }, undefined>, undefined>;
1065
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1066
+ readonly retry: v.StrictObjectSchema<{
1067
+ readonly retry_limit: v.NumberSchema<undefined>;
1068
+ readonly retry_delay: v.NumberSchema<undefined>;
1069
+ }, undefined>;
1070
+ readonly id_field: v.StringSchema<undefined>;
1071
+ readonly endpoint: v.StringSchema<undefined>;
1072
+ }, undefined>, undefined>;
1073
+ }, undefined>, undefined>, undefined>;
1074
+ }, undefined>;
1075
+ export type WebPrint = v.InferOutput<typeof WebPrintSchema>;
1076
+ export declare const NewDeclOrTempSavePreviewSchema: v.StrictObjectSchema<{
1077
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1078
+ readonly component: v.OptionalSchema<v.LiteralSchema<"link", undefined>, undefined>;
1079
+ } & {
1080
+ /** The text to display on the button */
1081
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1082
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1083
+ /** The explanatory title of the action */
1084
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1085
+ /** An explanatory subtitle for the action */
1086
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1087
+ /**
1088
+ * Whether it is considered a primary action
1089
+ *
1090
+ * This also determines the styling of the action button
1091
+ */
1092
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1093
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1094
+ /** @default false */
1095
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1096
+ /**
1097
+ * Confirmation dialog title
1098
+ *
1099
+ * Title of dialog to display when the user clicks on the action button
1100
+ */
1101
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1102
+ /**
1103
+ * Confirmation dialog description
1104
+ *
1105
+ * Description of dialog to display when the user clicks on the action button
1106
+ */
1107
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1108
+ /**
1109
+ * Confirmation dialog 'confirm' button label
1110
+ *
1111
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1112
+ */
1113
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1114
+ /**
1115
+ * Confirmation dialog 'cancel' button label
1116
+ *
1117
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1118
+ */
1119
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1120
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1121
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1122
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1123
+ readonly retry_limit: v.NumberSchema<undefined>;
1124
+ readonly retry_delay: v.NumberSchema<undefined>;
1125
+ }, undefined>, undefined>;
1126
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1127
+ readonly retry: v.StrictObjectSchema<{
1128
+ readonly retry_limit: v.NumberSchema<undefined>;
1129
+ readonly retry_delay: v.NumberSchema<undefined>;
1130
+ }, undefined>;
1131
+ readonly id_field: v.StringSchema<undefined>;
1132
+ readonly endpoint: v.StringSchema<undefined>;
1133
+ }, undefined>, undefined>;
1134
+ }, undefined>, undefined>, undefined>;
1135
+ }, undefined>;
1136
+ export type NewDeclOrTempSavePreview = v.InferOutput<typeof NewDeclOrTempSavePreviewSchema>;
1137
+ export declare const BackstepSchema: v.StrictObjectSchema<{
1138
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1139
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-backstep", undefined>, undefined>;
1140
+ } & {
1141
+ /** The text to display on the button */
1142
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1143
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1144
+ /** The explanatory title of the action */
1145
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1146
+ /** An explanatory subtitle for the action */
1147
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1148
+ /**
1149
+ * Whether it is considered a primary action
1150
+ *
1151
+ * This also determines the styling of the action button
1152
+ */
1153
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1154
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1155
+ /** @default false */
1156
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1157
+ /**
1158
+ * Confirmation dialog title
1159
+ *
1160
+ * Title of dialog to display when the user clicks on the action button
1161
+ */
1162
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1163
+ /**
1164
+ * Confirmation dialog description
1165
+ *
1166
+ * Description of dialog to display when the user clicks on the action button
1167
+ */
1168
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1169
+ /**
1170
+ * Confirmation dialog 'confirm' button label
1171
+ *
1172
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1173
+ */
1174
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1175
+ /**
1176
+ * Confirmation dialog 'cancel' button label
1177
+ *
1178
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1179
+ */
1180
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1181
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1182
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1183
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1184
+ readonly retry_limit: v.NumberSchema<undefined>;
1185
+ readonly retry_delay: v.NumberSchema<undefined>;
1186
+ }, undefined>, undefined>;
1187
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1188
+ readonly retry: v.StrictObjectSchema<{
1189
+ readonly retry_limit: v.NumberSchema<undefined>;
1190
+ readonly retry_delay: v.NumberSchema<undefined>;
1191
+ }, undefined>;
1192
+ readonly id_field: v.StringSchema<undefined>;
1193
+ readonly endpoint: v.StringSchema<undefined>;
1194
+ }, undefined>, undefined>;
1195
+ }, undefined>, undefined>, undefined>;
1196
+ }, undefined>;
1197
+ export type Backstep = v.InferOutput<typeof BackstepSchema>;
1198
+ /**
1199
+ * Describes the action that can be performed on a step
1200
+ *
1201
+ * An action is usually translated as a button in the UI, which the user can click
1202
+ * to perform an action, like downloading a PDF or going to the next step.
1203
+ */
1204
+ export declare const ActionSchema: v.VariantSchema<"display", [v.StrictObjectSchema<{
1205
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1206
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-temporary-save", undefined>, undefined>;
1207
+ } & {
1208
+ /** The text to display on the button */
1209
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1210
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1211
+ /** The explanatory title of the action */
1212
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1213
+ /** An explanatory subtitle for the action */
1214
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1215
+ /**
1216
+ * Whether it is considered a primary action
1217
+ *
1218
+ * This also determines the styling of the action button
1219
+ */
1220
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1221
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1222
+ /** @default false */
1223
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1224
+ /**
1225
+ * Confirmation dialog title
1226
+ *
1227
+ * Title of dialog to display when the user clicks on the action button
1228
+ */
1229
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1230
+ /**
1231
+ * Confirmation dialog description
1232
+ *
1233
+ * Description of dialog to display when the user clicks on the action button
1234
+ */
1235
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1236
+ /**
1237
+ * Confirmation dialog 'confirm' button label
1238
+ *
1239
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1240
+ */
1241
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1242
+ /**
1243
+ * Confirmation dialog 'cancel' button label
1244
+ *
1245
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1246
+ */
1247
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1248
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1249
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1250
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1251
+ readonly retry_limit: v.NumberSchema<undefined>;
1252
+ readonly retry_delay: v.NumberSchema<undefined>;
1253
+ }, undefined>, undefined>;
1254
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1255
+ readonly retry: v.StrictObjectSchema<{
1256
+ readonly retry_limit: v.NumberSchema<undefined>;
1257
+ readonly retry_delay: v.NumberSchema<undefined>;
1258
+ }, undefined>;
1259
+ readonly id_field: v.StringSchema<undefined>;
1260
+ readonly endpoint: v.StringSchema<undefined>;
1261
+ }, undefined>, undefined>;
1262
+ }, undefined>, undefined>, undefined>;
1263
+ }, undefined>, v.StrictObjectSchema<{
1264
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1265
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-download-pdf", undefined>, undefined>;
1266
+ } & {
1267
+ /** The text to display on the button */
1268
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1269
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1270
+ /** The explanatory title of the action */
1271
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1272
+ /** An explanatory subtitle for the action */
1273
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1274
+ /**
1275
+ * Whether it is considered a primary action
1276
+ *
1277
+ * This also determines the styling of the action button
1278
+ */
1279
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1280
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1281
+ /** @default false */
1282
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1283
+ /**
1284
+ * Confirmation dialog title
1285
+ *
1286
+ * Title of dialog to display when the user clicks on the action button
1287
+ */
1288
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1289
+ /**
1290
+ * Confirmation dialog description
1291
+ *
1292
+ * Description of dialog to display when the user clicks on the action button
1293
+ */
1294
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1295
+ /**
1296
+ * Confirmation dialog 'confirm' button label
1297
+ *
1298
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1299
+ */
1300
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1301
+ /**
1302
+ * Confirmation dialog 'cancel' button label
1303
+ *
1304
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1305
+ */
1306
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1307
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1308
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1309
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1310
+ readonly retry_limit: v.NumberSchema<undefined>;
1311
+ readonly retry_delay: v.NumberSchema<undefined>;
1312
+ }, undefined>, undefined>;
1313
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1314
+ readonly retry: v.StrictObjectSchema<{
1315
+ readonly retry_limit: v.NumberSchema<undefined>;
1316
+ readonly retry_delay: v.NumberSchema<undefined>;
1317
+ }, undefined>;
1318
+ readonly id_field: v.StringSchema<undefined>;
1319
+ readonly endpoint: v.StringSchema<undefined>;
1320
+ }, undefined>, undefined>;
1321
+ }, undefined>, undefined>, undefined>;
1322
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1323
+ readonly filename: v.StringSchema<undefined>;
1324
+ readonly sign: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1325
+ }, undefined>, undefined>;
1326
+ }, undefined>, v.StrictObjectSchema<{
1327
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1328
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-resend-otp", undefined>, undefined>;
1329
+ } & {
1330
+ /** The text to display on the button */
1331
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1332
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1333
+ /** The explanatory title of the action */
1334
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1335
+ /** An explanatory subtitle for the action */
1336
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1337
+ /**
1338
+ * Whether it is considered a primary action
1339
+ *
1340
+ * This also determines the styling of the action button
1341
+ */
1342
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1343
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1344
+ /** @default false */
1345
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1346
+ /**
1347
+ * Confirmation dialog title
1348
+ *
1349
+ * Title of dialog to display when the user clicks on the action button
1350
+ */
1351
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1352
+ /**
1353
+ * Confirmation dialog description
1354
+ *
1355
+ * Description of dialog to display when the user clicks on the action button
1356
+ */
1357
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1358
+ /**
1359
+ * Confirmation dialog 'confirm' button label
1360
+ *
1361
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1362
+ */
1363
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1364
+ /**
1365
+ * Confirmation dialog 'cancel' button label
1366
+ *
1367
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1368
+ */
1369
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1370
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1371
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1372
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1373
+ readonly retry_limit: v.NumberSchema<undefined>;
1374
+ readonly retry_delay: v.NumberSchema<undefined>;
1375
+ }, undefined>, undefined>;
1376
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1377
+ readonly retry: v.StrictObjectSchema<{
1378
+ readonly retry_limit: v.NumberSchema<undefined>;
1379
+ readonly retry_delay: v.NumberSchema<undefined>;
1380
+ }, undefined>;
1381
+ readonly id_field: v.StringSchema<undefined>;
1382
+ readonly endpoint: v.StringSchema<undefined>;
1383
+ }, undefined>, undefined>;
1384
+ }, undefined>, undefined>, undefined>;
1385
+ }, undefined>, v.StrictObjectSchema<{
1386
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1387
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-resend-email-otp", undefined>, undefined>;
1388
+ } & {
1389
+ /** The text to display on the button */
1390
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1391
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1392
+ /** The explanatory title of the action */
1393
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1394
+ /** An explanatory subtitle for the action */
1395
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1396
+ /**
1397
+ * Whether it is considered a primary action
1398
+ *
1399
+ * This also determines the styling of the action button
1400
+ */
1401
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1402
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1403
+ /** @default false */
1404
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1405
+ /**
1406
+ * Confirmation dialog title
1407
+ *
1408
+ * Title of dialog to display when the user clicks on the action button
1409
+ */
1410
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1411
+ /**
1412
+ * Confirmation dialog description
1413
+ *
1414
+ * Description of dialog to display when the user clicks on the action button
1415
+ */
1416
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1417
+ /**
1418
+ * Confirmation dialog 'confirm' button label
1419
+ *
1420
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1421
+ */
1422
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1423
+ /**
1424
+ * Confirmation dialog 'cancel' button label
1425
+ *
1426
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1427
+ */
1428
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1429
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1430
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1431
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1432
+ readonly retry_limit: v.NumberSchema<undefined>;
1433
+ readonly retry_delay: v.NumberSchema<undefined>;
1434
+ }, undefined>, undefined>;
1435
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1436
+ readonly retry: v.StrictObjectSchema<{
1437
+ readonly retry_limit: v.NumberSchema<undefined>;
1438
+ readonly retry_delay: v.NumberSchema<undefined>;
1439
+ }, undefined>;
1440
+ readonly id_field: v.StringSchema<undefined>;
1441
+ readonly endpoint: v.StringSchema<undefined>;
1442
+ }, undefined>, undefined>;
1443
+ }, undefined>, undefined>, undefined>;
1444
+ }, undefined>, v.StrictObjectSchema<{
1445
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1446
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-dismiss", undefined>, undefined>;
1447
+ } & {
1448
+ /** The text to display on the button */
1449
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1450
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1451
+ /** The explanatory title of the action */
1452
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1453
+ /** An explanatory subtitle for the action */
1454
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1455
+ /**
1456
+ * Whether it is considered a primary action
1457
+ *
1458
+ * This also determines the styling of the action button
1459
+ */
1460
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1461
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1462
+ /** @default false */
1463
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1464
+ /**
1465
+ * Confirmation dialog title
1466
+ *
1467
+ * Title of dialog to display when the user clicks on the action button
1468
+ */
1469
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1470
+ /**
1471
+ * Confirmation dialog description
1472
+ *
1473
+ * Description of dialog to display when the user clicks on the action button
1474
+ */
1475
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1476
+ /**
1477
+ * Confirmation dialog 'confirm' button label
1478
+ *
1479
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1480
+ */
1481
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1482
+ /**
1483
+ * Confirmation dialog 'cancel' button label
1484
+ *
1485
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1486
+ */
1487
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1488
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1489
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1490
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1491
+ readonly retry_limit: v.NumberSchema<undefined>;
1492
+ readonly retry_delay: v.NumberSchema<undefined>;
1493
+ }, undefined>, undefined>;
1494
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1495
+ readonly retry: v.StrictObjectSchema<{
1496
+ readonly retry_limit: v.NumberSchema<undefined>;
1497
+ readonly retry_delay: v.NumberSchema<undefined>;
1498
+ }, undefined>;
1499
+ readonly id_field: v.StringSchema<undefined>;
1500
+ readonly endpoint: v.StringSchema<undefined>;
1501
+ }, undefined>, undefined>;
1502
+ }, undefined>, undefined>, undefined>;
1503
+ }, undefined>, v.StrictObjectSchema<{
1504
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1505
+ readonly component: v.OptionalSchema<v.PicklistSchema<["document-update", "document-collect", "document-issue-collected"], undefined>, undefined>;
1506
+ } & {
1507
+ /** The text to display on the button */
1508
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1509
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1510
+ /** The explanatory title of the action */
1511
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1512
+ /** An explanatory subtitle for the action */
1513
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1514
+ /**
1515
+ * Whether it is considered a primary action
1516
+ *
1517
+ * This also determines the styling of the action button
1518
+ */
1519
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1520
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1521
+ /** @default false */
1522
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1523
+ /**
1524
+ * Confirmation dialog title
1525
+ *
1526
+ * Title of dialog to display when the user clicks on the action button
1527
+ */
1528
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1529
+ /**
1530
+ * Confirmation dialog description
1531
+ *
1532
+ * Description of dialog to display when the user clicks on the action button
1533
+ */
1534
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1535
+ /**
1536
+ * Confirmation dialog 'confirm' button label
1537
+ *
1538
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1539
+ */
1540
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1541
+ /**
1542
+ * Confirmation dialog 'cancel' button label
1543
+ *
1544
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1545
+ */
1546
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1547
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1548
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1549
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1550
+ readonly retry_limit: v.NumberSchema<undefined>;
1551
+ readonly retry_delay: v.NumberSchema<undefined>;
1552
+ }, undefined>, undefined>;
1553
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1554
+ readonly retry: v.StrictObjectSchema<{
1555
+ readonly retry_limit: v.NumberSchema<undefined>;
1556
+ readonly retry_delay: v.NumberSchema<undefined>;
1557
+ }, undefined>;
1558
+ readonly id_field: v.StringSchema<undefined>;
1559
+ readonly endpoint: v.StringSchema<undefined>;
1560
+ }, undefined>, undefined>;
1561
+ }, undefined>, undefined>, undefined>;
1562
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1563
+ readonly issue: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1564
+ readonly mark_submitting: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1565
+ readonly 'ensure-no-input': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1566
+ }, undefined>, undefined>;
1567
+ }, undefined>, v.StrictObjectSchema<{
1568
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1569
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-create", undefined>, undefined>;
1570
+ } & {
1571
+ /** The text to display on the button */
1572
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1573
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1574
+ /** The explanatory title of the action */
1575
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1576
+ /** An explanatory subtitle for the action */
1577
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1578
+ /**
1579
+ * Whether it is considered a primary action
1580
+ *
1581
+ * This also determines the styling of the action button
1582
+ */
1583
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1584
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1585
+ /** @default false */
1586
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1587
+ /**
1588
+ * Confirmation dialog title
1589
+ *
1590
+ * Title of dialog to display when the user clicks on the action button
1591
+ */
1592
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1593
+ /**
1594
+ * Confirmation dialog description
1595
+ *
1596
+ * Description of dialog to display when the user clicks on the action button
1597
+ */
1598
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1599
+ /**
1600
+ * Confirmation dialog 'confirm' button label
1601
+ *
1602
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1603
+ */
1604
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1605
+ /**
1606
+ * Confirmation dialog 'cancel' button label
1607
+ *
1608
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1609
+ */
1610
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1611
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1612
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1613
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1614
+ readonly retry_limit: v.NumberSchema<undefined>;
1615
+ readonly retry_delay: v.NumberSchema<undefined>;
1616
+ }, undefined>, undefined>;
1617
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1618
+ readonly retry: v.StrictObjectSchema<{
1619
+ readonly retry_limit: v.NumberSchema<undefined>;
1620
+ readonly retry_delay: v.NumberSchema<undefined>;
1621
+ }, undefined>;
1622
+ readonly id_field: v.StringSchema<undefined>;
1623
+ readonly endpoint: v.StringSchema<undefined>;
1624
+ }, undefined>, undefined>;
1625
+ }, undefined>, undefined>, undefined>;
1626
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1627
+ readonly interactive: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1628
+ }, undefined>, undefined>;
1629
+ }, undefined>, v.StrictObjectSchema<{
1630
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1631
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-anon-create", undefined>, undefined>;
1632
+ } & {
1633
+ /** The text to display on the button */
1634
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1635
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1636
+ /** The explanatory title of the action */
1637
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1638
+ /** An explanatory subtitle for the action */
1639
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1640
+ /**
1641
+ * Whether it is considered a primary action
1642
+ *
1643
+ * This also determines the styling of the action button
1644
+ */
1645
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1646
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1647
+ /** @default false */
1648
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1649
+ /**
1650
+ * Confirmation dialog title
1651
+ *
1652
+ * Title of dialog to display when the user clicks on the action button
1653
+ */
1654
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1655
+ /**
1656
+ * Confirmation dialog description
1657
+ *
1658
+ * Description of dialog to display when the user clicks on the action button
1659
+ */
1660
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1661
+ /**
1662
+ * Confirmation dialog 'confirm' button label
1663
+ *
1664
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1665
+ */
1666
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1667
+ /**
1668
+ * Confirmation dialog 'cancel' button label
1669
+ *
1670
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1671
+ */
1672
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1673
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1674
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1675
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1676
+ readonly retry_limit: v.NumberSchema<undefined>;
1677
+ readonly retry_delay: v.NumberSchema<undefined>;
1678
+ }, undefined>, undefined>;
1679
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1680
+ readonly retry: v.StrictObjectSchema<{
1681
+ readonly retry_limit: v.NumberSchema<undefined>;
1682
+ readonly retry_delay: v.NumberSchema<undefined>;
1683
+ }, undefined>;
1684
+ readonly id_field: v.StringSchema<undefined>;
1685
+ readonly endpoint: v.StringSchema<undefined>;
1686
+ }, undefined>, undefined>;
1687
+ }, undefined>, undefined>, undefined>;
1688
+ }, undefined>, v.StrictObjectSchema<{
1689
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1690
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-revoke", undefined>, undefined>;
1691
+ } & {
1692
+ /** The text to display on the button */
1693
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1694
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1695
+ /** The explanatory title of the action */
1696
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1697
+ /** An explanatory subtitle for the action */
1698
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1699
+ /**
1700
+ * Whether it is considered a primary action
1701
+ *
1702
+ * This also determines the styling of the action button
1703
+ */
1704
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1705
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1706
+ /** @default false */
1707
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1708
+ /**
1709
+ * Confirmation dialog title
1710
+ *
1711
+ * Title of dialog to display when the user clicks on the action button
1712
+ */
1713
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1714
+ /**
1715
+ * Confirmation dialog description
1716
+ *
1717
+ * Description of dialog to display when the user clicks on the action button
1718
+ */
1719
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1720
+ /**
1721
+ * Confirmation dialog 'confirm' button label
1722
+ *
1723
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1724
+ */
1725
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1726
+ /**
1727
+ * Confirmation dialog 'cancel' button label
1728
+ *
1729
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1730
+ */
1731
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1732
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1733
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1734
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1735
+ readonly retry_limit: v.NumberSchema<undefined>;
1736
+ readonly retry_delay: v.NumberSchema<undefined>;
1737
+ }, undefined>, undefined>;
1738
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1739
+ readonly retry: v.StrictObjectSchema<{
1740
+ readonly retry_limit: v.NumberSchema<undefined>;
1741
+ readonly retry_delay: v.NumberSchema<undefined>;
1742
+ }, undefined>;
1743
+ readonly id_field: v.StringSchema<undefined>;
1744
+ readonly endpoint: v.StringSchema<undefined>;
1745
+ }, undefined>, undefined>;
1746
+ }, undefined>, undefined>, undefined>;
1747
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1748
+ readonly next_step: v.StringSchema<undefined>;
1749
+ }, undefined>, undefined>;
1750
+ }, undefined>, v.StrictObjectSchema<{
1751
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1752
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-share", undefined>, undefined>;
1753
+ } & {
1754
+ /** The text to display on the button */
1755
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1756
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1757
+ /** The explanatory title of the action */
1758
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1759
+ /** An explanatory subtitle for the action */
1760
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1761
+ /**
1762
+ * Whether it is considered a primary action
1763
+ *
1764
+ * This also determines the styling of the action button
1765
+ */
1766
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1767
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1768
+ /** @default false */
1769
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1770
+ /**
1771
+ * Confirmation dialog title
1772
+ *
1773
+ * Title of dialog to display when the user clicks on the action button
1774
+ */
1775
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1776
+ /**
1777
+ * Confirmation dialog description
1778
+ *
1779
+ * Description of dialog to display when the user clicks on the action button
1780
+ */
1781
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1782
+ /**
1783
+ * Confirmation dialog 'confirm' button label
1784
+ *
1785
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1786
+ */
1787
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1788
+ /**
1789
+ * Confirmation dialog 'cancel' button label
1790
+ *
1791
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1792
+ */
1793
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1794
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1795
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1796
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1797
+ readonly retry_limit: v.NumberSchema<undefined>;
1798
+ readonly retry_delay: v.NumberSchema<undefined>;
1799
+ }, undefined>, undefined>;
1800
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1801
+ readonly retry: v.StrictObjectSchema<{
1802
+ readonly retry_limit: v.NumberSchema<undefined>;
1803
+ readonly retry_delay: v.NumberSchema<undefined>;
1804
+ }, undefined>;
1805
+ readonly id_field: v.StringSchema<undefined>;
1806
+ readonly endpoint: v.StringSchema<undefined>;
1807
+ }, undefined>, undefined>;
1808
+ }, undefined>, undefined>, undefined>;
1809
+ }, undefined>, v.StrictObjectSchema<{
1810
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1811
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-email", undefined>, undefined>;
1812
+ } & {
1813
+ /** The text to display on the button */
1814
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1815
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1816
+ /** The explanatory title of the action */
1817
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1818
+ /** An explanatory subtitle for the action */
1819
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1820
+ /**
1821
+ * Whether it is considered a primary action
1822
+ *
1823
+ * This also determines the styling of the action button
1824
+ */
1825
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1826
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1827
+ /** @default false */
1828
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1829
+ /**
1830
+ * Confirmation dialog title
1831
+ *
1832
+ * Title of dialog to display when the user clicks on the action button
1833
+ */
1834
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1835
+ /**
1836
+ * Confirmation dialog description
1837
+ *
1838
+ * Description of dialog to display when the user clicks on the action button
1839
+ */
1840
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1841
+ /**
1842
+ * Confirmation dialog 'confirm' button label
1843
+ *
1844
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1845
+ */
1846
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1847
+ /**
1848
+ * Confirmation dialog 'cancel' button label
1849
+ *
1850
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1851
+ */
1852
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1853
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1854
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1855
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1856
+ readonly retry_limit: v.NumberSchema<undefined>;
1857
+ readonly retry_delay: v.NumberSchema<undefined>;
1858
+ }, undefined>, undefined>;
1859
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1860
+ readonly retry: v.StrictObjectSchema<{
1861
+ readonly retry_limit: v.NumberSchema<undefined>;
1862
+ readonly retry_delay: v.NumberSchema<undefined>;
1863
+ }, undefined>;
1864
+ readonly id_field: v.StringSchema<undefined>;
1865
+ readonly endpoint: v.StringSchema<undefined>;
1866
+ }, undefined>, undefined>;
1867
+ }, undefined>, undefined>, undefined>;
1868
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1869
+ readonly template: v.StringSchema<undefined>;
1870
+ readonly email_field: v.StringSchema<undefined>;
1871
+ readonly subject: v.StringSchema<undefined>;
1872
+ }, undefined>, undefined>;
1873
+ }, undefined>, v.StrictObjectSchema<{
1874
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1875
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-sms", undefined>, undefined>;
1876
+ } & {
1877
+ /** The text to display on the button */
1878
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1879
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1880
+ /** The explanatory title of the action */
1881
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1882
+ /** An explanatory subtitle for the action */
1883
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1884
+ /**
1885
+ * Whether it is considered a primary action
1886
+ *
1887
+ * This also determines the styling of the action button
1888
+ */
1889
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1890
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1891
+ /** @default false */
1892
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1893
+ /**
1894
+ * Confirmation dialog title
1895
+ *
1896
+ * Title of dialog to display when the user clicks on the action button
1897
+ */
1898
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1899
+ /**
1900
+ * Confirmation dialog description
1901
+ *
1902
+ * Description of dialog to display when the user clicks on the action button
1903
+ */
1904
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1905
+ /**
1906
+ * Confirmation dialog 'confirm' button label
1907
+ *
1908
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1909
+ */
1910
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1911
+ /**
1912
+ * Confirmation dialog 'cancel' button label
1913
+ *
1914
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1915
+ */
1916
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1917
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1918
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1919
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1920
+ readonly retry_limit: v.NumberSchema<undefined>;
1921
+ readonly retry_delay: v.NumberSchema<undefined>;
1922
+ }, undefined>, undefined>;
1923
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1924
+ readonly retry: v.StrictObjectSchema<{
1925
+ readonly retry_limit: v.NumberSchema<undefined>;
1926
+ readonly retry_delay: v.NumberSchema<undefined>;
1927
+ }, undefined>;
1928
+ readonly id_field: v.StringSchema<undefined>;
1929
+ readonly endpoint: v.StringSchema<undefined>;
1930
+ }, undefined>, undefined>;
1931
+ }, undefined>, undefined>, undefined>;
1932
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1933
+ readonly sms_field: v.StringSchema<undefined>;
1934
+ readonly template: v.StringSchema<undefined>;
1935
+ }, undefined>, undefined>;
1936
+ }, undefined>, v.StrictObjectSchema<{
1937
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
1938
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-send-message", undefined>, undefined>;
1939
+ } & {
1940
+ /** The text to display on the button */
1941
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1942
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1943
+ /** The explanatory title of the action */
1944
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1945
+ /** An explanatory subtitle for the action */
1946
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1947
+ /**
1948
+ * Whether it is considered a primary action
1949
+ *
1950
+ * This also determines the styling of the action button
1951
+ */
1952
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1953
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1954
+ /** @default false */
1955
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1956
+ /**
1957
+ * Confirmation dialog title
1958
+ *
1959
+ * Title of dialog to display when the user clicks on the action button
1960
+ */
1961
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1962
+ /**
1963
+ * Confirmation dialog description
1964
+ *
1965
+ * Description of dialog to display when the user clicks on the action button
1966
+ */
1967
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1968
+ /**
1969
+ * Confirmation dialog 'confirm' button label
1970
+ *
1971
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
1972
+ */
1973
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1974
+ /**
1975
+ * Confirmation dialog 'cancel' button label
1976
+ *
1977
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
1978
+ */
1979
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
1980
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1981
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
1982
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
1983
+ readonly retry_limit: v.NumberSchema<undefined>;
1984
+ readonly retry_delay: v.NumberSchema<undefined>;
1985
+ }, undefined>, undefined>;
1986
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
1987
+ readonly retry: v.StrictObjectSchema<{
1988
+ readonly retry_limit: v.NumberSchema<undefined>;
1989
+ readonly retry_delay: v.NumberSchema<undefined>;
1990
+ }, undefined>;
1991
+ readonly id_field: v.StringSchema<undefined>;
1992
+ readonly endpoint: v.StringSchema<undefined>;
1993
+ }, undefined>, undefined>;
1994
+ }, undefined>, undefined>, undefined>;
1995
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
1996
+ readonly 'contact-phone-field': v.StringSchema<undefined>;
1997
+ readonly 'contact-email-field': v.StringSchema<undefined>;
1998
+ readonly 'message-subject': v.NullishSchema<v.StringSchema<undefined>, undefined>;
1999
+ }, undefined>, undefined>;
2000
+ }, undefined>, v.StrictObjectSchema<{
2001
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2002
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-forward", undefined>, undefined>;
2003
+ } & {
2004
+ /** The text to display on the button */
2005
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2006
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2007
+ /** The explanatory title of the action */
2008
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2009
+ /** An explanatory subtitle for the action */
2010
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2011
+ /**
2012
+ * Whether it is considered a primary action
2013
+ *
2014
+ * This also determines the styling of the action button
2015
+ */
2016
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2017
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2018
+ /** @default false */
2019
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2020
+ /**
2021
+ * Confirmation dialog title
2022
+ *
2023
+ * Title of dialog to display when the user clicks on the action button
2024
+ */
2025
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2026
+ /**
2027
+ * Confirmation dialog description
2028
+ *
2029
+ * Description of dialog to display when the user clicks on the action button
2030
+ */
2031
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2032
+ /**
2033
+ * Confirmation dialog 'confirm' button label
2034
+ *
2035
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2036
+ */
2037
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2038
+ /**
2039
+ * Confirmation dialog 'cancel' button label
2040
+ *
2041
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2042
+ */
2043
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2044
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2045
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2046
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2047
+ readonly retry_limit: v.NumberSchema<undefined>;
2048
+ readonly retry_delay: v.NumberSchema<undefined>;
2049
+ }, undefined>, undefined>;
2050
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2051
+ readonly retry: v.StrictObjectSchema<{
2052
+ readonly retry_limit: v.NumberSchema<undefined>;
2053
+ readonly retry_delay: v.NumberSchema<undefined>;
2054
+ }, undefined>;
2055
+ readonly id_field: v.StringSchema<undefined>;
2056
+ readonly endpoint: v.StringSchema<undefined>;
2057
+ }, undefined>, undefined>;
2058
+ }, undefined>, undefined>, undefined>;
2059
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
2060
+ readonly notify_user: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2061
+ readonly 'message-subject': v.NullishSchema<v.StringSchema<undefined>, undefined>;
2062
+ readonly message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2063
+ }, undefined>, undefined>;
2064
+ }, undefined>, v.StrictObjectSchema<{
2065
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2066
+ readonly component: v.OptionalSchema<v.LiteralSchema<"entity-print-pdf", undefined>, undefined>;
2067
+ } & {
2068
+ /** The text to display on the button */
2069
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2070
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2071
+ /** The explanatory title of the action */
2072
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2073
+ /** An explanatory subtitle for the action */
2074
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2075
+ /**
2076
+ * Whether it is considered a primary action
2077
+ *
2078
+ * This also determines the styling of the action button
2079
+ */
2080
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2081
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2082
+ /** @default false */
2083
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2084
+ /**
2085
+ * Confirmation dialog title
2086
+ *
2087
+ * Title of dialog to display when the user clicks on the action button
2088
+ */
2089
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2090
+ /**
2091
+ * Confirmation dialog description
2092
+ *
2093
+ * Description of dialog to display when the user clicks on the action button
2094
+ */
2095
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2096
+ /**
2097
+ * Confirmation dialog 'confirm' button label
2098
+ *
2099
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2100
+ */
2101
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2102
+ /**
2103
+ * Confirmation dialog 'cancel' button label
2104
+ *
2105
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2106
+ */
2107
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2108
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2109
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2110
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2111
+ readonly retry_limit: v.NumberSchema<undefined>;
2112
+ readonly retry_delay: v.NumberSchema<undefined>;
2113
+ }, undefined>, undefined>;
2114
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2115
+ readonly retry: v.StrictObjectSchema<{
2116
+ readonly retry_limit: v.NumberSchema<undefined>;
2117
+ readonly retry_delay: v.NumberSchema<undefined>;
2118
+ }, undefined>;
2119
+ readonly id_field: v.StringSchema<undefined>;
2120
+ readonly endpoint: v.StringSchema<undefined>;
2121
+ }, undefined>, undefined>;
2122
+ }, undefined>, undefined>, undefined>;
2123
+ }, undefined>, v.StrictObjectSchema<{
2124
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2125
+ readonly component: v.OptionalSchema<v.PicklistSchema<["entity-reply", "hidden"], undefined>, undefined>;
2126
+ } & {
2127
+ /** The text to display on the button */
2128
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2129
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2130
+ /** The explanatory title of the action */
2131
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2132
+ /** An explanatory subtitle for the action */
2133
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2134
+ /**
2135
+ * Whether it is considered a primary action
2136
+ *
2137
+ * This also determines the styling of the action button
2138
+ */
2139
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2140
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2141
+ /** @default false */
2142
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2143
+ /**
2144
+ * Confirmation dialog title
2145
+ *
2146
+ * Title of dialog to display when the user clicks on the action button
2147
+ */
2148
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2149
+ /**
2150
+ * Confirmation dialog description
2151
+ *
2152
+ * Description of dialog to display when the user clicks on the action button
2153
+ */
2154
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2155
+ /**
2156
+ * Confirmation dialog 'confirm' button label
2157
+ *
2158
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2159
+ */
2160
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2161
+ /**
2162
+ * Confirmation dialog 'cancel' button label
2163
+ *
2164
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2165
+ */
2166
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2167
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2168
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2169
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2170
+ readonly retry_limit: v.NumberSchema<undefined>;
2171
+ readonly retry_delay: v.NumberSchema<undefined>;
2172
+ }, undefined>, undefined>;
2173
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2174
+ readonly retry: v.StrictObjectSchema<{
2175
+ readonly retry_limit: v.NumberSchema<undefined>;
2176
+ readonly retry_delay: v.NumberSchema<undefined>;
2177
+ }, undefined>;
2178
+ readonly id_field: v.StringSchema<undefined>;
2179
+ readonly endpoint: v.StringSchema<undefined>;
2180
+ }, undefined>, undefined>;
2181
+ }, undefined>, undefined>, undefined>;
2182
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
2183
+ readonly 'reply-templates': v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>;
2184
+ }, undefined>, undefined>;
2185
+ }, undefined>, v.StrictObjectSchema<{
2186
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2187
+ readonly component: v.OptionalSchema<v.LiteralSchema<"web-print", undefined>, undefined>;
2188
+ } & {
2189
+ /** The text to display on the button */
2190
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2191
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2192
+ /** The explanatory title of the action */
2193
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2194
+ /** An explanatory subtitle for the action */
2195
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2196
+ /**
2197
+ * Whether it is considered a primary action
2198
+ *
2199
+ * This also determines the styling of the action button
2200
+ */
2201
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2202
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2203
+ /** @default false */
2204
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2205
+ /**
2206
+ * Confirmation dialog title
2207
+ *
2208
+ * Title of dialog to display when the user clicks on the action button
2209
+ */
2210
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2211
+ /**
2212
+ * Confirmation dialog description
2213
+ *
2214
+ * Description of dialog to display when the user clicks on the action button
2215
+ */
2216
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2217
+ /**
2218
+ * Confirmation dialog 'confirm' button label
2219
+ *
2220
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2221
+ */
2222
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2223
+ /**
2224
+ * Confirmation dialog 'cancel' button label
2225
+ *
2226
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2227
+ */
2228
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2229
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2230
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2231
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2232
+ readonly retry_limit: v.NumberSchema<undefined>;
2233
+ readonly retry_delay: v.NumberSchema<undefined>;
2234
+ }, undefined>, undefined>;
2235
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2236
+ readonly retry: v.StrictObjectSchema<{
2237
+ readonly retry_limit: v.NumberSchema<undefined>;
2238
+ readonly retry_delay: v.NumberSchema<undefined>;
2239
+ }, undefined>;
2240
+ readonly id_field: v.StringSchema<undefined>;
2241
+ readonly endpoint: v.StringSchema<undefined>;
2242
+ }, undefined>, undefined>;
2243
+ }, undefined>, undefined>, undefined>;
2244
+ }, undefined>, v.StrictObjectSchema<{
2245
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2246
+ readonly component: v.OptionalSchema<v.LiteralSchema<"link", undefined>, undefined>;
2247
+ } & {
2248
+ /** The text to display on the button */
2249
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2250
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2251
+ /** The explanatory title of the action */
2252
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2253
+ /** An explanatory subtitle for the action */
2254
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2255
+ /**
2256
+ * Whether it is considered a primary action
2257
+ *
2258
+ * This also determines the styling of the action button
2259
+ */
2260
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2261
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2262
+ /** @default false */
2263
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2264
+ /**
2265
+ * Confirmation dialog title
2266
+ *
2267
+ * Title of dialog to display when the user clicks on the action button
2268
+ */
2269
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2270
+ /**
2271
+ * Confirmation dialog description
2272
+ *
2273
+ * Description of dialog to display when the user clicks on the action button
2274
+ */
2275
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2276
+ /**
2277
+ * Confirmation dialog 'confirm' button label
2278
+ *
2279
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2280
+ */
2281
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2282
+ /**
2283
+ * Confirmation dialog 'cancel' button label
2284
+ *
2285
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2286
+ */
2287
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2288
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2289
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2290
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2291
+ readonly retry_limit: v.NumberSchema<undefined>;
2292
+ readonly retry_delay: v.NumberSchema<undefined>;
2293
+ }, undefined>, undefined>;
2294
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2295
+ readonly retry: v.StrictObjectSchema<{
2296
+ readonly retry_limit: v.NumberSchema<undefined>;
2297
+ readonly retry_delay: v.NumberSchema<undefined>;
2298
+ }, undefined>;
2299
+ readonly id_field: v.StringSchema<undefined>;
2300
+ readonly endpoint: v.StringSchema<undefined>;
2301
+ }, undefined>, undefined>;
2302
+ }, undefined>, undefined>, undefined>;
2303
+ }, undefined>, v.StrictObjectSchema<{
2304
+ readonly display: v.RecordSchema<v.PicklistSchema<["default", "web", "pdf"], undefined>, v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.LooseObjectSchema<{
2305
+ readonly component: v.OptionalSchema<v.LiteralSchema<"document-backstep", undefined>, undefined>;
2306
+ } & {
2307
+ /** The text to display on the button */
2308
+ readonly label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2309
+ readonly icon: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2310
+ /** The explanatory title of the action */
2311
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2312
+ /** An explanatory subtitle for the action */
2313
+ readonly helptext: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2314
+ /**
2315
+ * Whether it is considered a primary action
2316
+ *
2317
+ * This also determines the styling of the action button
2318
+ */
2319
+ readonly primary: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2320
+ readonly url: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2321
+ /** @default false */
2322
+ readonly self: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2323
+ /**
2324
+ * Confirmation dialog title
2325
+ *
2326
+ * Title of dialog to display when the user clicks on the action button
2327
+ */
2328
+ readonly confirm_title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2329
+ /**
2330
+ * Confirmation dialog description
2331
+ *
2332
+ * Description of dialog to display when the user clicks on the action button
2333
+ */
2334
+ readonly confirm_message: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2335
+ /**
2336
+ * Confirmation dialog 'confirm' button label
2337
+ *
2338
+ * Label of 'confirm' button included in dialog displayed when the user clicks on the action button
2339
+ */
2340
+ readonly confirm_confirm_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2341
+ /**
2342
+ * Confirmation dialog 'cancel' button label
2343
+ *
2344
+ * Label of 'cancel' button included in dialog displayed when the user clicks on the action button
2345
+ */
2346
+ readonly confirm_cancel_label: v.NullishSchema<v.StringSchema<undefined>, undefined>;
2347
+ readonly warning: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2348
+ readonly autocall: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
2349
+ readonly retry: v.NullishSchema<v.StrictObjectSchema<{
2350
+ readonly retry_limit: v.NumberSchema<undefined>;
2351
+ readonly retry_delay: v.NumberSchema<undefined>;
2352
+ }, undefined>, undefined>;
2353
+ readonly poll: v.NullishSchema<v.StrictObjectSchema<{
2354
+ readonly retry: v.StrictObjectSchema<{
2355
+ readonly retry_limit: v.NumberSchema<undefined>;
2356
+ readonly retry_delay: v.NumberSchema<undefined>;
2357
+ }, undefined>;
2358
+ readonly id_field: v.StringSchema<undefined>;
2359
+ readonly endpoint: v.StringSchema<undefined>;
2360
+ }, undefined>, undefined>;
2361
+ }, undefined>, undefined>, undefined>;
2362
+ }, undefined>], undefined>;
2363
+ export type Action = v.InferOutput<typeof ActionSchema>;
2364
+ export default Action;
2365
+ export type Actions = Record<string, Action>;
2366
+ export declare const ActionsSchema: v.GenericSchema<Actions, Actions>;