@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.
- package/CHANGELOG.md +22 -0
- package/LICENSE +0 -0
- package/generators/componentExtractor.d.mts +1 -0
- package/generators/componentReducer.d.mts +1 -0
- package/generators/node_modules/@isaacs/cliui/build/lib/index.js +211 -0
- package/generators/node_modules/@pkgjs/parseargs/examples/is-default-value.js +31 -0
- package/generators/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +33 -0
- package/generators/node_modules/@pkgjs/parseargs/examples/negate.js +48 -0
- package/generators/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +38 -0
- package/generators/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +36 -0
- package/generators/node_modules/@pkgjs/parseargs/index.js +263 -0
- package/generators/node_modules/@pkgjs/parseargs/internal/errors.js +55 -0
- package/generators/node_modules/@pkgjs/parseargs/internal/primordials.js +258 -0
- package/generators/node_modules/@pkgjs/parseargs/internal/util.js +24 -0
- package/generators/node_modules/@pkgjs/parseargs/internal/validators.js +61 -0
- package/generators/node_modules/@pkgjs/parseargs/utils.js +86 -0
- package/generators/node_modules/ansi-regex/index.js +5 -0
- package/generators/node_modules/ansi-styles/index.js +304 -0
- package/generators/node_modules/balanced-match/index.js +70 -0
- package/generators/node_modules/brace-expansion/index.js +153 -0
- package/generators/node_modules/change-case/dist/index.js +135 -0
- package/generators/node_modules/change-case/dist/keys.js +28 -0
- package/generators/node_modules/color-convert/conversions.js +840 -0
- package/generators/node_modules/color-convert/index.js +66 -0
- package/generators/node_modules/color-convert/route.js +81 -0
- package/generators/node_modules/color-name/index.js +757 -0
- package/generators/node_modules/cross-spawn/index.js +47 -0
- package/generators/node_modules/cross-spawn/lib/enoent.js +50 -0
- package/generators/node_modules/cross-spawn/lib/parse.js +91 -0
- package/generators/node_modules/cross-spawn/lib/util/escape.js +31 -0
- package/generators/node_modules/cross-spawn/lib/util/readShebang.js +37 -0
- package/generators/node_modules/cross-spawn/lib/util/resolveCommand.js +56 -0
- package/generators/node_modules/eastasianwidth/eastasianwidth.js +66 -0
- package/generators/node_modules/emoji-regex/RGI_Emoji.js +18 -0
- package/generators/node_modules/emoji-regex/es2015/RGI_Emoji.js +16 -0
- package/generators/node_modules/emoji-regex/es2015/index.js +16 -0
- package/generators/node_modules/emoji-regex/es2015/text.js +16 -0
- package/generators/node_modules/emoji-regex/index.js +18 -0
- package/generators/node_modules/emoji-regex/text.js +18 -0
- package/generators/node_modules/flat/cli.js +31 -0
- package/generators/node_modules/flat/index.js +83 -0
- package/generators/node_modules/foreground-child/dist/cjs/all-signals.js +30 -0
- package/generators/node_modules/foreground-child/dist/cjs/index.js +156 -0
- package/generators/node_modules/foreground-child/dist/cjs/watchdog.js +63 -0
- package/generators/node_modules/foreground-child/dist/mjs/all-signals.js +3 -0
- package/generators/node_modules/foreground-child/dist/mjs/index.js +111 -0
- package/generators/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/generators/node_modules/glob/dist/commonjs/glob.js +205 -0
- package/generators/node_modules/glob/dist/commonjs/has-magic.js +33 -0
- package/generators/node_modules/glob/dist/commonjs/ignore.js +87 -0
- package/generators/node_modules/glob/dist/commonjs/index.js +114 -0
- package/generators/node_modules/glob/dist/commonjs/pattern.js +154 -0
- package/generators/node_modules/glob/dist/commonjs/processor.js +214 -0
- package/generators/node_modules/glob/dist/commonjs/walker.js +271 -0
- package/generators/node_modules/glob/dist/esm/glob.js +165 -0
- package/generators/node_modules/glob/dist/esm/has-magic.js +9 -0
- package/generators/node_modules/glob/dist/esm/ignore.js +59 -0
- package/generators/node_modules/glob/dist/esm/index.js +52 -0
- package/generators/node_modules/glob/dist/esm/pattern.js +130 -0
- package/generators/node_modules/glob/dist/esm/processor.js +187 -0
- package/generators/node_modules/glob/dist/esm/walker.js +237 -0
- package/generators/node_modules/is-fullwidth-code-point/index.js +22 -0
- package/generators/node_modules/isexe/index.js +64 -0
- package/generators/node_modules/isexe/mode.js +46 -0
- package/generators/node_modules/isexe/test/basic.js +229 -0
- package/generators/node_modules/isexe/windows.js +45 -0
- package/generators/node_modules/jackspeak/dist/commonjs/index.js +683 -0
- package/generators/node_modules/jackspeak/dist/commonjs/parse-args.js +65 -0
- package/generators/node_modules/jackspeak/dist/esm/index.js +640 -0
- package/generators/node_modules/jackspeak/dist/esm/parse-args.js +127 -0
- package/generators/node_modules/lru-cache/dist/commonjs/index.js +889 -0
- package/generators/node_modules/lru-cache/dist/esm/index.js +881 -0
- package/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/generators/node_modules/minimatch/dist/cjs/ast.js +389 -0
- package/generators/node_modules/minimatch/dist/cjs/brace-expressions.js +169 -0
- package/generators/node_modules/minimatch/dist/cjs/escape.js +10 -0
- package/generators/node_modules/minimatch/dist/cjs/index.js +680 -0
- package/generators/node_modules/minimatch/dist/cjs/unescape.js +10 -0
- package/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +6 -0
- package/generators/node_modules/minimatch/dist/mjs/ast.js +361 -0
- package/generators/node_modules/minimatch/dist/mjs/brace-expressions.js +161 -0
- package/generators/node_modules/minimatch/dist/mjs/escape.js +2 -0
- package/generators/node_modules/minimatch/dist/mjs/index.js +612 -0
- package/generators/node_modules/minimatch/dist/mjs/unescape.js +2 -0
- package/generators/node_modules/minipass/dist/commonjs/index.js +623 -0
- package/generators/node_modules/minipass/dist/esm/index.js +584 -0
- package/generators/node_modules/path-key/index.js +23 -0
- package/generators/node_modules/path-scurry/dist/cjs/index.js +1161 -0
- package/generators/node_modules/path-scurry/dist/mjs/index.js +1078 -0
- package/generators/node_modules/shebang-command/index.js +28 -0
- package/generators/node_modules/shebang-regex/index.js +16 -0
- package/generators/node_modules/signal-exit/dist/cjs/browser.js +14 -0
- package/generators/node_modules/signal-exit/dist/cjs/index.js +176 -0
- package/generators/node_modules/signal-exit/dist/cjs/signals.js +14 -0
- package/generators/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/generators/node_modules/signal-exit/dist/mjs/index.js +146 -0
- package/generators/node_modules/signal-exit/dist/mjs/signals.js +5 -0
- package/generators/node_modules/string-width/index.js +34 -0
- package/generators/node_modules/string-width-cjs/index.js +49 -0
- package/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +19 -0
- package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +16 -0
- package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +16 -0
- package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +18 -0
- package/generators/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +18 -0
- package/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +21 -0
- package/generators/node_modules/strip-ansi/index.js +7 -0
- package/generators/node_modules/strip-ansi-cjs/index.js +21 -0
- package/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +19 -0
- package/generators/node_modules/which/which.js +108 -0
- package/generators/node_modules/wrap-ansi/index.js +134 -0
- package/generators/node_modules/wrap-ansi-cjs/index.js +158 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +19 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +281 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +16 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +16 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +18 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +18 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +49 -0
- package/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +21 -0
- package/generators/templateGenerator.d.mts +1 -0
- package/index.d.ts +2 -0
- package/index.js +7 -0
- package/package.json +6 -21
- package/schemas/action.d.ts +2366 -0
- package/schemas/action.js +196 -0
- package/schemas/application.d.ts +19 -0
- package/schemas/application.js +14 -0
- package/schemas/attributes.d.ts +16 -0
- package/schemas/attributes.js +14 -0
- package/schemas/common.d.ts +25 -0
- package/schemas/common.js +41 -0
- package/schemas/document.d.ts +395 -0
- package/schemas/document.js +79 -0
- package/schemas/edupass-healthstate.d.ts +77 -0
- package/schemas/edupass-healthstate.js +76 -0
- package/schemas/field/afm/index.d.ts +52 -0
- package/schemas/field/afm/index.js +20 -0
- package/schemas/field/amka/index.d.ts +60 -0
- package/schemas/field/amka/index.js +21 -0
- package/schemas/field/attachment/index.d.ts +68 -0
- package/schemas/field/attachment/index.js +38 -0
- package/schemas/field/captcha/index.d.ts +48 -0
- package/schemas/field/captcha/index.js +15 -0
- package/schemas/field/choice/index.d.ts +73 -0
- package/schemas/field/choice/index.js +32 -0
- package/schemas/field/common.d.ts +82 -0
- package/schemas/field/common.js +63 -0
- package/schemas/field/consent-content/index.d.ts +68 -0
- package/schemas/field/consent-content/index.js +19 -0
- package/schemas/field/date/index.d.ts +90 -0
- package/schemas/field/date/index.js +42 -0
- package/schemas/field/doc_subtitle/index.d.ts +51 -0
- package/schemas/field/doc_subtitle/index.js +14 -0
- package/schemas/field/doc_title/index.d.ts +60 -0
- package/schemas/field/doc_title/index.js +21 -0
- package/schemas/field/dynamically-filled-text/index.d.ts +85 -0
- package/schemas/field/dynamically-filled-text/index.js +36 -0
- package/schemas/field/email/index.d.ts +60 -0
- package/schemas/field/email/index.js +21 -0
- package/schemas/field/fillable-string/index.d.ts +64 -0
- package/schemas/field/fillable-string/index.js +25 -0
- package/schemas/field/five-block-date/index.d.ts +48 -0
- package/schemas/field/five-block-date/index.js +15 -0
- package/schemas/field/hidden/index.d.ts +59 -0
- package/schemas/field/hidden/index.js +25 -0
- package/schemas/field/hierarchical-selector/index.d.ts +89 -0
- package/schemas/field/hierarchical-selector/index.js +35 -0
- package/schemas/field/iban/index.d.ts +58 -0
- package/schemas/field/iban/index.js +19 -0
- package/schemas/field/image/index.d.ts +68 -0
- package/schemas/field/image/index.js +36 -0
- package/schemas/field/image-crop/index.d.ts +59 -0
- package/schemas/field/image-crop/index.js +19 -0
- package/schemas/field/index.d.ts +48 -0
- package/schemas/field/index.js +167 -0
- package/schemas/field/int/index.d.ts +60 -0
- package/schemas/field/int/index.js +21 -0
- package/schemas/field/intl_mobile_phone/index.d.ts +49 -0
- package/schemas/field/intl_mobile_phone/index.js +15 -0
- package/schemas/field/lab-results/index.d.ts +49 -0
- package/schemas/field/lab-results/index.js +12 -0
- package/schemas/field/landline_phone/index.d.ts +48 -0
- package/schemas/field/landline_phone/index.js +14 -0
- package/schemas/field/link/index.d.ts +50 -0
- package/schemas/field/link/index.js +16 -0
- package/schemas/field/mobile_phone/index.d.ts +51 -0
- package/schemas/field/mobile_phone/index.js +18 -0
- package/schemas/field/multiple-choice/index.d.ts +70 -0
- package/schemas/field/multiple-choice/index.js +31 -0
- package/schemas/field/password/index.d.ts +48 -0
- package/schemas/field/password/index.js +15 -0
- package/schemas/field/pdf-image/index.d.ts +66 -0
- package/schemas/field/pdf-image/index.js +27 -0
- package/schemas/field/phone/index.d.ts +48 -0
- package/schemas/field/phone/index.js +14 -0
- package/schemas/field/postal_code/index.d.ts +50 -0
- package/schemas/field/postal_code/index.js +17 -0
- package/schemas/field/preference-multiple-choice/index.d.ts +90 -0
- package/schemas/field/preference-multiple-choice/index.js +31 -0
- package/schemas/field/qrcode/index.d.ts +71 -0
- package/schemas/field/qrcode/index.js +30 -0
- package/schemas/field/quote/index.d.ts +63 -0
- package/schemas/field/quote/index.js +30 -0
- package/schemas/field/radio-choice/index.d.ts +67 -0
- package/schemas/field/radio-choice/index.js +31 -0
- package/schemas/field/rate/index.d.ts +60 -0
- package/schemas/field/rate/index.js +18 -0
- package/schemas/field/recipient/index.d.ts +51 -0
- package/schemas/field/recipient/index.js +20 -0
- package/schemas/field/redirect/index.d.ts +52 -0
- package/schemas/field/redirect/index.js +15 -0
- package/schemas/field/refcode/index.d.ts +68 -0
- package/schemas/field/refcode/index.js +29 -0
- package/schemas/field/string/index.d.ts +135 -0
- package/schemas/field/string/index.js +80 -0
- package/schemas/field/text/index.d.ts +85 -0
- package/schemas/field/text/index.js +45 -0
- package/schemas/field/three-block-date/index.d.ts +64 -0
- package/schemas/field/three-block-date/index.js +26 -0
- package/schemas/field/url-param/index.d.ts +57 -0
- package/schemas/field/url-param/index.js +14 -0
- package/schemas/fieldset/component-params.d.ts +102 -0
- package/schemas/fieldset/component-params.js +63 -0
- package/schemas/fieldset/display-components.d.ts +353 -0
- package/schemas/fieldset/display-components.js +36 -0
- package/schemas/fieldset/enums.d.ts +32 -0
- package/schemas/fieldset/enums.js +21 -0
- package/schemas/fieldset/index.d.ts +180 -0
- package/schemas/fieldset/index.js +11 -0
- package/schemas/index.d.ts +15 -0
- package/schemas/index.js +15 -0
- package/schemas/layout.d.ts +91 -0
- package/schemas/layout.js +43 -0
- package/schemas/outputs.d.ts +44 -0
- package/schemas/outputs.js +15 -0
- package/schemas/resolve.d.ts +5 -0
- package/schemas/resolve.js +13 -0
- package/schemas/resource/enums.d.ts +58 -0
- package/schemas/resource/enums.js +41 -0
- package/schemas/resource/field.d.ts +15 -0
- package/schemas/resource/field.js +12 -0
- package/schemas/resource/index.d.ts +5 -0
- package/schemas/resource/index.js +5 -0
- package/schemas/resource/object-action.d.ts +30 -0
- package/schemas/resource/object-action.js +24 -0
- package/schemas/resource/resource-action.d.ts +35 -0
- package/schemas/resource/resource-action.js +29 -0
- package/schemas/resource/resource.d.ts +133 -0
- package/schemas/resource/resource.js +31 -0
- package/schemas/step.d.ts +592 -0
- package/schemas/step.js +115 -0
- package/schemas/template/index.d.ts +2 -0
- package/schemas/template/index.js +2 -0
- package/schemas/template/template-base.d.ts +53 -0
- package/schemas/template/template-base.js +15 -0
- package/schemas/template/template-source.d.ts +50 -0
- package/schemas/template/template-source.js +14 -0
- package/schemas/template/template.d.ts +54 -0
- package/schemas/template/template.js +22 -0
- package/schemas/validation-context/enums.d.ts +10 -0
- package/schemas/validation-context/enums.js +7 -0
- package/schemas/validation-context/index.d.ts +2 -0
- package/schemas/validation-context/index.js +2 -0
- package/schemas/validation-context/validation-context.d.ts +131 -0
- package/schemas/validation-context/validation-context.js +55 -0
- package/src/generators/node_modules/.package-lock.json +458 -0
- package/src/generators/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/src/generators/node_modules/@isaacs/cliui/README.md +143 -0
- package/src/generators/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/src/generators/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/src/generators/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/src/generators/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/src/generators/node_modules/@isaacs/cliui/package.json +86 -0
- package/src/generators/node_modules/@pkgjs/parseargs/.editorconfig +14 -0
- package/src/generators/node_modules/@pkgjs/parseargs/CHANGELOG.md +147 -0
- package/src/generators/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/src/generators/node_modules/@pkgjs/parseargs/README.md +413 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/src/generators/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/src/generators/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/src/generators/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/src/generators/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/src/generators/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/src/generators/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/src/generators/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/src/generators/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/src/generators/node_modules/ansi-regex/index.d.ts +33 -0
- package/src/generators/node_modules/ansi-regex/index.js +8 -0
- package/src/generators/node_modules/ansi-regex/license +9 -0
- package/src/generators/node_modules/ansi-regex/package.json +58 -0
- package/src/generators/node_modules/ansi-regex/readme.md +72 -0
- package/src/generators/node_modules/ansi-styles/index.d.ts +236 -0
- package/src/generators/node_modules/ansi-styles/index.js +223 -0
- package/src/generators/node_modules/ansi-styles/license +9 -0
- package/src/generators/node_modules/ansi-styles/package.json +54 -0
- package/src/generators/node_modules/ansi-styles/readme.md +173 -0
- package/src/generators/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/src/generators/node_modules/balanced-match/LICENSE.md +21 -0
- package/src/generators/node_modules/balanced-match/README.md +97 -0
- package/src/generators/node_modules/balanced-match/index.js +62 -0
- package/src/generators/node_modules/balanced-match/package.json +48 -0
- package/src/generators/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/src/generators/node_modules/brace-expansion/LICENSE +21 -0
- package/src/generators/node_modules/brace-expansion/README.md +135 -0
- package/src/generators/node_modules/brace-expansion/index.js +203 -0
- package/src/generators/node_modules/brace-expansion/package.json +46 -0
- package/src/generators/node_modules/change-case/README.md +78 -0
- package/src/generators/node_modules/change-case/dist/index.d.ts +78 -0
- package/src/generators/node_modules/change-case/dist/index.js +206 -0
- package/src/generators/node_modules/change-case/dist/index.js.map +1 -0
- package/src/generators/node_modules/change-case/dist/keys.d.ts +11 -0
- package/src/generators/node_modules/change-case/dist/keys.js +31 -0
- package/src/generators/node_modules/change-case/dist/keys.js.map +1 -0
- package/src/generators/node_modules/change-case/package.json +56 -0
- package/src/generators/node_modules/color-convert/CHANGELOG.md +54 -0
- package/src/generators/node_modules/color-convert/LICENSE +21 -0
- package/src/generators/node_modules/color-convert/README.md +68 -0
- package/src/generators/node_modules/color-convert/conversions.js +839 -0
- package/src/generators/node_modules/color-convert/index.js +81 -0
- package/src/generators/node_modules/color-convert/package.json +48 -0
- package/src/generators/node_modules/color-convert/route.js +97 -0
- package/src/generators/node_modules/color-name/LICENSE +8 -0
- package/src/generators/node_modules/color-name/README.md +11 -0
- package/src/generators/node_modules/color-name/index.js +152 -0
- package/src/generators/node_modules/color-name/package.json +28 -0
- package/src/generators/node_modules/cross-spawn/CHANGELOG.md +130 -0
- package/src/generators/node_modules/cross-spawn/LICENSE +21 -0
- package/src/generators/node_modules/cross-spawn/README.md +96 -0
- package/src/generators/node_modules/cross-spawn/index.js +39 -0
- package/src/generators/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/src/generators/node_modules/cross-spawn/lib/parse.js +91 -0
- package/src/generators/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/src/generators/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/src/generators/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/src/generators/node_modules/cross-spawn/package.json +73 -0
- package/src/generators/node_modules/eastasianwidth/README.md +32 -0
- package/src/generators/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/src/generators/node_modules/eastasianwidth/package.json +18 -0
- package/src/generators/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/src/generators/node_modules/emoji-regex/README.md +137 -0
- package/src/generators/node_modules/emoji-regex/RGI_Emoji.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/src/generators/node_modules/emoji-regex/es2015/RGI_Emoji.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/src/generators/node_modules/emoji-regex/es2015/index.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/es2015/index.js +6 -0
- package/src/generators/node_modules/emoji-regex/es2015/text.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/es2015/text.js +6 -0
- package/src/generators/node_modules/emoji-regex/index.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/index.js +6 -0
- package/src/generators/node_modules/emoji-regex/package.json +52 -0
- package/src/generators/node_modules/emoji-regex/text.d.ts +5 -0
- package/src/generators/node_modules/emoji-regex/text.js +6 -0
- package/src/generators/node_modules/flat/LICENSE +12 -0
- package/src/generators/node_modules/flat/README.md +234 -0
- package/src/generators/node_modules/flat/cli.js +40 -0
- package/src/generators/node_modules/flat/index.d.ts +17 -0
- package/src/generators/node_modules/flat/index.js +157 -0
- package/src/generators/node_modules/flat/package.json +49 -0
- package/src/generators/node_modules/foreground-child/LICENSE +15 -0
- package/src/generators/node_modules/foreground-child/README.md +90 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.d.ts +3 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/all-signals.js.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/index.d.ts +54 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/index.js +154 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/index.js.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/package.json +3 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.d.ts +4 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- package/src/generators/node_modules/foreground-child/dist/cjs/watchdog.js.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.d.ts +3 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/all-signals.js.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/index.d.ts +54 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/index.js +146 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/index.js.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/package.json +3 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.d.ts +4 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.d.ts.map +1 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/src/generators/node_modules/foreground-child/dist/mjs/watchdog.js.map +1 -0
- package/src/generators/node_modules/foreground-child/package.json +83 -0
- package/src/generators/node_modules/glob/LICENSE +15 -0
- package/src/generators/node_modules/glob/README.md +1214 -0
- package/src/generators/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- package/src/generators/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/glob.js +243 -0
- package/src/generators/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/src/generators/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/src/generators/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- package/src/generators/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/ignore.js +108 -0
- package/src/generators/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- package/src/generators/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/index.js +68 -0
- package/src/generators/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/package.json +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- package/src/generators/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/src/generators/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/src/generators/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/processor.js +302 -0
- package/src/generators/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- package/src/generators/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/commonjs/walker.js +358 -0
- package/src/generators/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/src/generators/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/bin.mjs +275 -0
- package/src/generators/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/glob.d.ts +344 -0
- package/src/generators/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/glob.js +239 -0
- package/src/generators/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/src/generators/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/src/generators/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- package/src/generators/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/ignore.js +104 -0
- package/src/generators/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/index.d.ts +96 -0
- package/src/generators/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/index.js +56 -0
- package/src/generators/node_modules/glob/dist/esm/index.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/package.json +1 -0
- package/src/generators/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- package/src/generators/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/pattern.js +215 -0
- package/src/generators/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/src/generators/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/processor.js +295 -0
- package/src/generators/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/walker.d.ts +96 -0
- package/src/generators/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/src/generators/node_modules/glob/dist/esm/walker.js +352 -0
- package/src/generators/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/src/generators/node_modules/glob/package.json +97 -0
- package/src/generators/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/src/generators/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/src/generators/node_modules/is-fullwidth-code-point/license +9 -0
- package/src/generators/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/src/generators/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/src/generators/node_modules/isexe/LICENSE +15 -0
- package/src/generators/node_modules/isexe/README.md +51 -0
- package/src/generators/node_modules/isexe/index.js +57 -0
- package/src/generators/node_modules/isexe/mode.js +41 -0
- package/src/generators/node_modules/isexe/package.json +31 -0
- package/src/generators/node_modules/isexe/test/basic.js +221 -0
- package/src/generators/node_modules/isexe/windows.js +42 -0
- package/src/generators/node_modules/jackspeak/LICENSE.md +55 -0
- package/src/generators/node_modules/jackspeak/README.md +348 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/index.d.ts +292 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args-cjs.cjs.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args-cjs.d.cts.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.d.ts +4 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.d.ts.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/src/generators/node_modules/jackspeak/dist/commonjs/parse-args.js.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/esm/index.d.ts +292 -0
- package/src/generators/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/esm/index.js +840 -0
- package/src/generators/node_modules/jackspeak/dist/esm/index.js.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/esm/package.json +1 -0
- package/src/generators/node_modules/jackspeak/dist/esm/parse-args.d.ts +4 -0
- package/src/generators/node_modules/jackspeak/dist/esm/parse-args.d.ts.map +1 -0
- package/src/generators/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/src/generators/node_modules/jackspeak/dist/esm/parse-args.js.map +1 -0
- package/src/generators/node_modules/jackspeak/package.json +94 -0
- package/src/generators/node_modules/lru-cache/LICENSE +15 -0
- package/src/generators/node_modules/lru-cache/README.md +1204 -0
- package/src/generators/node_modules/lru-cache/dist/commonjs/index.d.ts +851 -0
- package/src/generators/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
- package/src/generators/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- package/src/generators/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/src/generators/node_modules/lru-cache/dist/esm/index.d.ts +851 -0
- package/src/generators/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- package/src/generators/node_modules/lru-cache/dist/esm/index.js +1437 -0
- package/src/generators/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- package/src/generators/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/src/generators/node_modules/lru-cache/package.json +118 -0
- package/src/generators/node_modules/minimatch/LICENSE +15 -0
- package/src/generators/node_modules/minimatch/README.md +454 -0
- package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
- package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/src/generators/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
- package/src/generators/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/ast.js +589 -0
- package/src/generators/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
- package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
- package/src/generators/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
- package/src/generators/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/escape.js +22 -0
- package/src/generators/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
- package/src/generators/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/index.js +1011 -0
- package/src/generators/node_modules/minimatch/dist/cjs/index.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/package.json +3 -0
- package/src/generators/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
- package/src/generators/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/cjs/unescape.js +24 -0
- package/src/generators/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
- package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
- package/src/generators/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
- package/src/generators/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/ast.js +585 -0
- package/src/generators/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
- package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
- package/src/generators/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
- package/src/generators/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/escape.js +18 -0
- package/src/generators/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
- package/src/generators/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/index.js +995 -0
- package/src/generators/node_modules/minimatch/dist/mjs/index.js.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/package.json +3 -0
- package/src/generators/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
- package/src/generators/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
- package/src/generators/node_modules/minimatch/dist/mjs/unescape.js +20 -0
- package/src/generators/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
- package/src/generators/node_modules/minimatch/package.json +86 -0
- package/src/generators/node_modules/minipass/LICENSE +15 -0
- package/src/generators/node_modules/minipass/README.md +825 -0
- package/src/generators/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
- package/src/generators/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/src/generators/node_modules/minipass/dist/commonjs/index.js.map +1 -0
- package/src/generators/node_modules/minipass/dist/commonjs/package.json +1 -0
- package/src/generators/node_modules/minipass/dist/esm/index.d.ts +549 -0
- package/src/generators/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
- package/src/generators/node_modules/minipass/dist/esm/index.js +1018 -0
- package/src/generators/node_modules/minipass/dist/esm/index.js.map +1 -0
- package/src/generators/node_modules/minipass/dist/esm/package.json +1 -0
- package/src/generators/node_modules/minipass/package.json +82 -0
- package/src/generators/node_modules/path-key/index.d.ts +40 -0
- package/src/generators/node_modules/path-key/index.js +16 -0
- package/src/generators/node_modules/path-key/license +9 -0
- package/src/generators/node_modules/path-key/package.json +39 -0
- package/src/generators/node_modules/path-key/readme.md +61 -0
- package/src/generators/node_modules/path-scurry/LICENSE.md +55 -0
- package/src/generators/node_modules/path-scurry/README.md +631 -0
- package/src/generators/node_modules/path-scurry/dist/cjs/index.d.ts +1107 -0
- package/src/generators/node_modules/path-scurry/dist/cjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/path-scurry/dist/cjs/index.js +2018 -0
- package/src/generators/node_modules/path-scurry/dist/cjs/index.js.map +1 -0
- package/src/generators/node_modules/path-scurry/dist/cjs/package.json +3 -0
- package/src/generators/node_modules/path-scurry/dist/mjs/index.d.ts +1107 -0
- package/src/generators/node_modules/path-scurry/dist/mjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/path-scurry/dist/mjs/index.js +1983 -0
- package/src/generators/node_modules/path-scurry/dist/mjs/index.js.map +1 -0
- package/src/generators/node_modules/path-scurry/dist/mjs/package.json +3 -0
- package/src/generators/node_modules/path-scurry/package.json +87 -0
- package/src/generators/node_modules/shebang-command/index.js +19 -0
- package/src/generators/node_modules/shebang-command/license +9 -0
- package/src/generators/node_modules/shebang-command/package.json +34 -0
- package/src/generators/node_modules/shebang-command/readme.md +34 -0
- package/src/generators/node_modules/shebang-regex/index.d.ts +22 -0
- package/src/generators/node_modules/shebang-regex/index.js +2 -0
- package/src/generators/node_modules/shebang-regex/license +9 -0
- package/src/generators/node_modules/shebang-regex/package.json +35 -0
- package/src/generators/node_modules/shebang-regex/readme.md +33 -0
- package/src/generators/node_modules/signal-exit/LICENSE.txt +16 -0
- package/src/generators/node_modules/signal-exit/README.md +74 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/src/generators/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/src/generators/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
- package/src/generators/node_modules/signal-exit/package.json +106 -0
- package/src/generators/node_modules/string-width/index.d.ts +29 -0
- package/src/generators/node_modules/string-width/index.js +54 -0
- package/src/generators/node_modules/string-width/license +9 -0
- package/src/generators/node_modules/string-width/package.json +59 -0
- package/src/generators/node_modules/string-width/readme.md +67 -0
- package/src/generators/node_modules/string-width-cjs/index.d.ts +29 -0
- package/src/generators/node_modules/string-width-cjs/index.js +47 -0
- package/src/generators/node_modules/string-width-cjs/license +9 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +73 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +6 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +50 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +6 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/src/generators/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/src/generators/node_modules/string-width-cjs/package.json +56 -0
- package/src/generators/node_modules/string-width-cjs/readme.md +50 -0
- package/src/generators/node_modules/strip-ansi/index.d.ts +15 -0
- package/src/generators/node_modules/strip-ansi/index.js +14 -0
- package/src/generators/node_modules/strip-ansi/license +9 -0
- package/src/generators/node_modules/strip-ansi/package.json +57 -0
- package/src/generators/node_modules/strip-ansi/readme.md +41 -0
- package/src/generators/node_modules/strip-ansi-cjs/index.d.ts +17 -0
- package/src/generators/node_modules/strip-ansi-cjs/index.js +4 -0
- package/src/generators/node_modules/strip-ansi-cjs/license +9 -0
- package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/src/generators/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/src/generators/node_modules/strip-ansi-cjs/package.json +54 -0
- package/src/generators/node_modules/strip-ansi-cjs/readme.md +46 -0
- package/src/generators/node_modules/which/CHANGELOG.md +166 -0
- package/src/generators/node_modules/which/LICENSE +15 -0
- package/src/generators/node_modules/which/README.md +54 -0
- package/src/generators/node_modules/which/bin/node-which +52 -0
- package/src/generators/node_modules/which/package.json +43 -0
- package/src/generators/node_modules/which/which.js +125 -0
- package/src/generators/node_modules/wrap-ansi/index.d.ts +41 -0
- package/src/generators/node_modules/wrap-ansi/index.js +214 -0
- package/src/generators/node_modules/wrap-ansi/license +9 -0
- package/src/generators/node_modules/wrap-ansi/package.json +69 -0
- package/src/generators/node_modules/wrap-ansi/readme.md +91 -0
- package/src/generators/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/src/generators/node_modules/wrap-ansi-cjs/license +9 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +73 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +6 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +50 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +6 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.d.ts +29 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +47 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/license +9 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/package.json +56 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md +50 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/src/generators/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/src/generators/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/src/generators/node_modules/wrap-ansi-cjs/readme.md +91 -0
- package/src/schemas/action.ts +15 -0
- package/src/schemas/common.ts +16 -0
- package/src/schemas/field/afm/index.ts +2 -18
- package/src/schemas/field/amka/index.ts +7 -2
- package/src/schemas/field/attachment/index.ts +12 -24
- package/src/schemas/field/choice/index.ts +2 -13
- package/src/schemas/field/common.ts +75 -51
- package/src/schemas/field/consent-content/index.ts +28 -0
- package/src/schemas/field/date/index.ts +5 -32
- package/src/schemas/field/doc_subtitle/index.ts +1 -0
- package/src/schemas/field/doc_title/index.ts +9 -16
- package/src/schemas/field/dynamically-filled-text/index.ts +4 -5
- package/src/schemas/field/email/index.ts +6 -9
- package/src/schemas/field/fillable-string/index.ts +1 -1
- package/src/schemas/field/hidden/index.ts +4 -43
- package/src/schemas/field/hierarchical-selector/index.ts +3 -9
- package/src/schemas/field/image/index.ts +5 -24
- package/src/schemas/field/image-crop/index.ts +25 -0
- package/src/schemas/field/index.spec.ts +0 -42
- package/src/schemas/field/index.ts +64 -12
- package/src/schemas/field/int/index.ts +2 -0
- package/src/schemas/field/intl_mobile_phone/index.ts +19 -0
- package/src/schemas/field/lab-results/index.ts +1 -2
- package/src/schemas/field/link/index.ts +20 -0
- package/src/schemas/field/mobile_phone/index.ts +1 -12
- package/src/schemas/field/multiple-choice/index.ts +4 -3
- package/src/schemas/field/password/index.ts +18 -0
- package/src/schemas/field/pdf-image/index.ts +3 -15
- package/src/schemas/field/phone/index.ts +18 -0
- package/src/schemas/field/postal_code/index.ts +1 -1
- package/src/schemas/field/preference-multiple-choice/index.ts +41 -0
- package/src/schemas/field/qrcode/index.ts +1 -0
- package/src/schemas/field/quote/index.ts +2 -19
- package/src/schemas/field/radio-choice/index.ts +1 -7
- package/src/schemas/field/rate/index.ts +1 -9
- package/src/schemas/field/recipient/index.ts +2 -2
- package/src/schemas/field/redirect/index.ts +4 -13
- package/src/schemas/field/refcode/index.ts +10 -15
- package/src/schemas/field/string/index.ts +13 -0
- package/src/schemas/field/text/index.ts +4 -18
- package/src/schemas/field/url-param/index.ts +23 -0
- package/src/schemas/resolve.ts +3 -0
- package/src/schemas/step.ts +2 -0
- package/src/schemas/template/index.ts +0 -1
- package/src/schemas/template/template-base.ts +0 -10
- package/src/schemas/template/template.ts +1 -2
- package/src/schemas/validation-context/enums.ts +0 -16
- package/src/schemas/validation-context/validation-context.ts +2 -4
- package/src/utils/index.ts +10 -1
- package/utils/index.d.ts +6 -0
- package/utils/index.js +55 -0
- package/.prettierrc.js +0 -1
- package/.rush/temp/chunked-rush-logs/stepwise.build.chunks.jsonl +0 -6
- package/.rush/temp/chunked-rush-logs/stepwise.lint.chunks.jsonl +0 -9
- package/.rush/temp/chunked-rush-logs/stepwise.publint.chunks.jsonl +0 -72
- package/.rush/temp/chunked-rush-logs/stepwise.test.chunks.jsonl +0 -16
- package/.rush/temp/package-deps_build.json +0 -185
- package/.rush/temp/package-deps_lint.json +0 -185
- package/.rush/temp/package-deps_publint.json +0 -949
- package/.rush/temp/package-deps_test.json +0 -185
- package/.rush/temp/shrinkwrap-deps.json +0 -303
- package/eslint.config.mjs +0 -3
- package/rush-logs/stepwise.build.log +0 -6
- package/rush-logs/stepwise.lint.log +0 -9
- package/rush-logs/stepwise.publint.log +0 -72
- package/rush-logs/stepwise.test.log +0 -16
- package/src/schemas/field/green-pass-qrcode/index.ts +0 -27
- package/src/schemas/template/enums.ts +0 -22
- 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>;
|