@nocobase/plugin-flow-engine 2.1.0-alpha.10 → 2.1.0-alpha.11
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/dist/ai/ai-employees/nathan/index.d.ts +10 -0
- package/dist/ai/ai-employees/nathan/index.js +152 -0
- package/dist/ai/ai-employees/nathan/skills/frontend-developer/SKILLS.md +69 -0
- package/dist/client/index.js +1 -1
- package/dist/externalVersion.js +12 -10
- package/dist/node_modules/ajv/.runkit_example.js +23 -0
- package/dist/node_modules/ajv/LICENSE +22 -0
- package/dist/node_modules/ajv/dist/2019.d.ts +19 -0
- package/dist/node_modules/ajv/dist/2019.js +61 -0
- package/dist/node_modules/ajv/dist/2020.d.ts +19 -0
- package/dist/node_modules/ajv/dist/2020.js +55 -0
- package/dist/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/dist/node_modules/ajv/dist/ajv.js +7 -0
- package/dist/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/dist/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/dist/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/dist/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/dist/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/dist/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/dist/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/dist/node_modules/ajv/dist/compile/errors.js +123 -0
- package/dist/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/dist/node_modules/ajv/dist/compile/index.js +242 -0
- package/dist/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/dist/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/dist/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/dist/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/dist/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/dist/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/dist/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/dist/node_modules/ajv/dist/compile/names.js +28 -0
- package/dist/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/dist/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/dist/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/dist/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/dist/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/dist/node_modules/ajv/dist/compile/rules.js +26 -0
- package/dist/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/dist/node_modules/ajv/dist/compile/util.js +178 -0
- package/dist/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/dist/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/dist/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/dist/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/dist/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/dist/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/dist/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/dist/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/dist/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/dist/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/dist/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/dist/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/dist/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/dist/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/dist/node_modules/ajv/dist/core.d.ts +174 -0
- package/dist/node_modules/ajv/dist/core.js +618 -0
- package/dist/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/dist/node_modules/ajv/dist/jtd.js +72 -0
- package/dist/node_modules/ajv/dist/refs/data.json +13 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/dist/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/dist/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/dist/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/dist/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/dist/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/dist/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/dist/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/dist/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/dist/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/dist/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/dist/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/dist/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/dist/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/dist/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/dist/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/dist/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/dist/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/dist/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/dist/node_modules/ajv/dist/standalone/index.js +90 -0
- package/dist/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/dist/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/dist/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/dist/node_modules/ajv/dist/types/index.js +3 -0
- package/dist/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/dist/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/dist/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/dist/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/dist/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/dist/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/dist/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/dist/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/dist/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/dist/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/dist/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/dist/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/dist/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/dist/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/dist/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/dist/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/dist/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/dist/node_modules/ajv/lib/2019.ts +81 -0
- package/dist/node_modules/ajv/lib/2020.ts +75 -0
- package/dist/node_modules/ajv/lib/ajv.ts +70 -0
- package/dist/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/dist/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/dist/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/dist/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/dist/node_modules/ajv/lib/compile/index.ts +324 -0
- package/dist/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/dist/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/dist/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/dist/node_modules/ajv/lib/compile/names.ts +27 -0
- package/dist/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/dist/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/dist/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/dist/node_modules/ajv/lib/compile/util.ts +213 -0
- package/dist/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/dist/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/dist/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/dist/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/dist/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/dist/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/dist/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/dist/node_modules/ajv/lib/core.ts +892 -0
- package/dist/node_modules/ajv/lib/jtd.ts +132 -0
- package/dist/node_modules/ajv/lib/refs/data.json +13 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/dist/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/dist/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/dist/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/dist/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/dist/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/dist/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/dist/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/dist/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/dist/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/dist/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/dist/node_modules/ajv/lib/types/index.ts +244 -0
- package/dist/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/dist/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/dist/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/dist/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/dist/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/dist/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/dist/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/dist/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/dist/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/dist/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/dist/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/dist/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/dist/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/dist/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/dist/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/dist/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/dist/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/dist/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/dist/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/dist/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/dist/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/dist/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/dist/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/dist/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/dist/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/dist/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/dist/node_modules/ajv/package.json +1 -0
- package/dist/node_modules/ses/package.json +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/flow-models/action-handlers.d.ts +26 -0
- package/dist/server/flow-models/action-handlers.js +209 -0
- package/dist/server/flow-models/http-error-adapter.d.ts +10 -0
- package/dist/server/flow-models/http-error-adapter.js +58 -0
- package/dist/server/flow-models/mutate-executor.d.ts +17 -0
- package/dist/server/flow-models/mutate-executor.js +309 -0
- package/dist/server/flow-models/repository-internals/duplicate-helpers.d.ts +12 -0
- package/dist/server/flow-models/repository-internals/duplicate-helpers.js +121 -0
- package/dist/server/flow-models/repository-internals/ensure-lock.d.ts +15 -0
- package/dist/server/flow-models/repository-internals/ensure-lock.js +117 -0
- package/dist/server/flow-models/repository-internals/errors.d.ts +21 -0
- package/dist/server/flow-models/repository-internals/errors.js +78 -0
- package/dist/server/flow-models/schema-contribution-collector.d.ts +27 -0
- package/dist/server/flow-models/schema-contribution-collector.js +217 -0
- package/dist/server/flow-models/validation-facade.d.ts +29 -0
- package/dist/server/flow-models/validation-facade.js +181 -0
- package/dist/server/flow-schema-contributions/actions/aclCheck.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/aclCheck.js +46 -0
- package/dist/server/flow-schema-contributions/actions/aclCheckRefresh.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/aclCheckRefresh.js +46 -0
- package/dist/server/flow-schema-contributions/actions/actionLinkageRules.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/actionLinkageRules.js +48 -0
- package/dist/server/flow-schema-contributions/actions/confirm.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/confirm.js +73 -0
- package/dist/server/flow-schema-contributions/actions/customVariable.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/customVariable.js +76 -0
- package/dist/server/flow-schema-contributions/actions/dataScope.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/dataScope.js +79 -0
- package/dist/server/flow-schema-contributions/actions/detailsFieldLinkageRules.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/detailsFieldLinkageRules.js +62 -0
- package/dist/server/flow-schema-contributions/actions/fieldLinkageRules.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/fieldLinkageRules.js +62 -0
- package/dist/server/flow-schema-contributions/actions/filterFormDefaultValues.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/filterFormDefaultValues.js +80 -0
- package/dist/server/flow-schema-contributions/actions/formAssignRules.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/formAssignRules.js +62 -0
- package/dist/server/flow-schema-contributions/actions/index.d.ts +31 -0
- package/dist/server/flow-schema-contributions/actions/index.js +117 -0
- package/dist/server/flow-schema-contributions/actions/layout.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/layout.js +68 -0
- package/dist/server/flow-schema-contributions/actions/linkageRulesRefresh.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/linkageRulesRefresh.js +50 -0
- package/dist/server/flow-schema-contributions/actions/navigateToURL.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/navigateToURL.js +82 -0
- package/dist/server/flow-schema-contributions/actions/openView.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/openView.js +68 -0
- package/dist/server/flow-schema-contributions/actions/refreshTargetBlocks.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/refreshTargetBlocks.js +56 -0
- package/dist/server/flow-schema-contributions/actions/runjs.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/runjs.js +55 -0
- package/dist/server/flow-schema-contributions/actions/setTargetDataScope.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/setTargetDataScope.js +59 -0
- package/dist/server/flow-schema-contributions/actions/showMessage.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/showMessage.js +69 -0
- package/dist/server/flow-schema-contributions/actions/showNotification.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/showNotification.js +76 -0
- package/dist/server/flow-schema-contributions/actions/sortingRule.d.ts +10 -0
- package/dist/server/flow-schema-contributions/actions/sortingRule.js +67 -0
- package/dist/server/flow-schema-contributions/field-models.d.ts +12 -0
- package/dist/server/flow-schema-contributions/field-models.js +693 -0
- package/dist/server/flow-schema-contributions/index.d.ts +13 -0
- package/dist/server/flow-schema-contributions/index.js +64 -0
- package/dist/server/flow-schema-contributions/models/ActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/ActionModel.js +202 -0
- package/dist/server/flow-schema-contributions/models/AddChildActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/AddChildActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/AddNewActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/AddNewActionModel.js +93 -0
- package/dist/server/flow-schema-contributions/models/AssignFormGridModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/AssignFormGridModel.js +82 -0
- package/dist/server/flow-schema-contributions/models/AssignFormItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/AssignFormItemModel.js +80 -0
- package/dist/server/flow-schema-contributions/models/AssignFormModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/AssignFormModel.js +122 -0
- package/dist/server/flow-schema-contributions/models/BasePageTabModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/BasePageTabModel.js +71 -0
- package/dist/server/flow-schema-contributions/models/BlockGridModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/BlockGridModel.js +81 -0
- package/dist/server/flow-schema-contributions/models/BulkDeleteActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/BulkDeleteActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/ChildPageModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/ChildPageModel.js +106 -0
- package/dist/server/flow-schema-contributions/models/ChildPageTabModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/ChildPageTabModel.js +114 -0
- package/dist/server/flow-schema-contributions/models/CreateFormModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/CreateFormModel.js +54 -0
- package/dist/server/flow-schema-contributions/models/DeleteActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/DeleteActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/DetailsBlockModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/DetailsBlockModel.js +179 -0
- package/dist/server/flow-schema-contributions/models/DetailsGridModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/DetailsGridModel.js +82 -0
- package/dist/server/flow-schema-contributions/models/DetailsItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/DetailsItemModel.js +77 -0
- package/dist/server/flow-schema-contributions/models/EditActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/EditActionModel.js +93 -0
- package/dist/server/flow-schema-contributions/models/EditFormModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/EditFormModel.js +103 -0
- package/dist/server/flow-schema-contributions/models/ExpandCollapseActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/ExpandCollapseActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/FilterActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterActionModel.js +57 -0
- package/dist/server/flow-schema-contributions/models/FilterFormBlockModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormBlockModel.js +155 -0
- package/dist/server/flow-schema-contributions/models/FilterFormCollapseActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormCollapseActionModel.js +85 -0
- package/dist/server/flow-schema-contributions/models/FilterFormCustomFieldModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormCustomFieldModel.js +89 -0
- package/dist/server/flow-schema-contributions/models/FilterFormGridModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormGridModel.js +82 -0
- package/dist/server/flow-schema-contributions/models/FilterFormItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormItemModel.js +77 -0
- package/dist/server/flow-schema-contributions/models/FilterFormJSActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormJSActionModel.js +108 -0
- package/dist/server/flow-schema-contributions/models/FilterFormResetActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormResetActionModel.js +87 -0
- package/dist/server/flow-schema-contributions/models/FilterFormSubmitActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FilterFormSubmitActionModel.js +87 -0
- package/dist/server/flow-schema-contributions/models/FormAssociationItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FormAssociationItemModel.js +78 -0
- package/dist/server/flow-schema-contributions/models/FormBlockModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FormBlockModel.js +45 -0
- package/dist/server/flow-schema-contributions/models/FormGridModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FormGridModel.js +67 -0
- package/dist/server/flow-schema-contributions/models/FormItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FormItemModel.js +77 -0
- package/dist/server/flow-schema-contributions/models/FormSubmitActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/FormSubmitActionModel.js +87 -0
- package/dist/server/flow-schema-contributions/models/JSActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSActionModel.js +65 -0
- package/dist/server/flow-schema-contributions/models/JSBlockModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSBlockModel.js +90 -0
- package/dist/server/flow-schema-contributions/models/JSCollectionActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSCollectionActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/JSColumnModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSColumnModel.js +100 -0
- package/dist/server/flow-schema-contributions/models/JSFormActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSFormActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/JSItemModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSItemModel.js +87 -0
- package/dist/server/flow-schema-contributions/models/JSRecordActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/JSRecordActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/LinkActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/LinkActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/PageModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/PageModel.js +159 -0
- package/dist/server/flow-schema-contributions/models/PageTabModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/PageTabModel.js +69 -0
- package/dist/server/flow-schema-contributions/models/PopupActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/PopupActionModel.js +92 -0
- package/dist/server/flow-schema-contributions/models/PopupCollectionActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/PopupCollectionActionModel.js +119 -0
- package/dist/server/flow-schema-contributions/models/RefreshActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/RefreshActionModel.js +47 -0
- package/dist/server/flow-schema-contributions/models/RootPageModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/RootPageModel.js +124 -0
- package/dist/server/flow-schema-contributions/models/RootPageTabModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/RootPageTabModel.js +69 -0
- package/dist/server/flow-schema-contributions/models/RouteModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/RouteModel.js +121 -0
- package/dist/server/flow-schema-contributions/models/TableActionsColumnModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/TableActionsColumnModel.js +93 -0
- package/dist/server/flow-schema-contributions/models/TableBlockModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/TableBlockModel.js +254 -0
- package/dist/server/flow-schema-contributions/models/TableColumnModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/TableColumnModel.js +77 -0
- package/dist/server/flow-schema-contributions/models/TableCustomColumnModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/TableCustomColumnModel.js +66 -0
- package/dist/server/flow-schema-contributions/models/UpdateRecordActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/UpdateRecordActionModel.js +173 -0
- package/dist/server/flow-schema-contributions/models/ViewActionModel.d.ts +10 -0
- package/dist/server/flow-schema-contributions/models/ViewActionModel.js +123 -0
- package/dist/server/flow-schema-contributions/models/index.d.ts +66 -0
- package/dist/server/flow-schema-contributions/models/index.js +257 -0
- package/dist/server/flow-schema-contributions/shared.d.ts +501 -0
- package/dist/server/flow-schema-contributions/shared.js +1649 -0
- package/dist/server/flow-schema-service.d.ts +87 -0
- package/dist/server/flow-schema-service.js +963 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +4 -1
- package/dist/server/plugin.d.ts +2 -0
- package/dist/server/plugin.js +6 -2
- package/dist/server/repository.d.ts +67 -9
- package/dist/server/repository.js +417 -106
- package/dist/server/server.d.ts +7 -0
- package/dist/server/server.js +23 -53
- package/dist/swagger/index.d.ts +1164 -0
- package/dist/swagger/index.js +732 -0
- package/package.json +4 -2
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.js +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.js +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.js +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.js +0 -0
|
@@ -0,0 +1,1164 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
declare const _default: {
|
|
10
|
+
openapi: string;
|
|
11
|
+
info: {
|
|
12
|
+
title: string;
|
|
13
|
+
};
|
|
14
|
+
paths: {
|
|
15
|
+
'/flowModels:findOne': {
|
|
16
|
+
get: {
|
|
17
|
+
tags: string[];
|
|
18
|
+
description: string;
|
|
19
|
+
parameters: ({
|
|
20
|
+
name: string;
|
|
21
|
+
in: string;
|
|
22
|
+
required: boolean;
|
|
23
|
+
schema: {
|
|
24
|
+
type: string;
|
|
25
|
+
default?: undefined;
|
|
26
|
+
};
|
|
27
|
+
} | {
|
|
28
|
+
name: string;
|
|
29
|
+
in: string;
|
|
30
|
+
required: boolean;
|
|
31
|
+
schema: {
|
|
32
|
+
type: string;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
})[];
|
|
36
|
+
responses: {
|
|
37
|
+
200: {
|
|
38
|
+
description: string;
|
|
39
|
+
content: {
|
|
40
|
+
'application/json': {
|
|
41
|
+
schema: {
|
|
42
|
+
$ref: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
'/flowModels:schema': {
|
|
51
|
+
get: {
|
|
52
|
+
tags: string[];
|
|
53
|
+
description: string;
|
|
54
|
+
parameters: ({
|
|
55
|
+
name: string;
|
|
56
|
+
in: string;
|
|
57
|
+
required: boolean;
|
|
58
|
+
schema: {
|
|
59
|
+
type: string;
|
|
60
|
+
enum?: undefined;
|
|
61
|
+
default?: undefined;
|
|
62
|
+
};
|
|
63
|
+
} | {
|
|
64
|
+
name: string;
|
|
65
|
+
in: string;
|
|
66
|
+
required: boolean;
|
|
67
|
+
schema: {
|
|
68
|
+
type: string;
|
|
69
|
+
enum: string[];
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
})[];
|
|
73
|
+
responses: {
|
|
74
|
+
200: {
|
|
75
|
+
description: string;
|
|
76
|
+
content: {
|
|
77
|
+
'application/json': {
|
|
78
|
+
schema: {
|
|
79
|
+
$ref: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
404: {
|
|
85
|
+
description: string;
|
|
86
|
+
content: {
|
|
87
|
+
'application/json': {
|
|
88
|
+
schema: {
|
|
89
|
+
$ref: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
400: {
|
|
95
|
+
description: string;
|
|
96
|
+
content: {
|
|
97
|
+
'application/json': {
|
|
98
|
+
schema: {
|
|
99
|
+
$ref: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
'/flowModels:schemas': {
|
|
108
|
+
post: {
|
|
109
|
+
tags: string[];
|
|
110
|
+
description: string;
|
|
111
|
+
requestBody: {
|
|
112
|
+
required: boolean;
|
|
113
|
+
content: {
|
|
114
|
+
'application/json': {
|
|
115
|
+
schema: {
|
|
116
|
+
$ref: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
responses: {
|
|
122
|
+
200: {
|
|
123
|
+
description: string;
|
|
124
|
+
content: {
|
|
125
|
+
'application/json': {
|
|
126
|
+
schema: {
|
|
127
|
+
$ref: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
'/flowModels:schemaBundle': {
|
|
136
|
+
post: {
|
|
137
|
+
tags: string[];
|
|
138
|
+
description: string;
|
|
139
|
+
requestBody: {
|
|
140
|
+
required: boolean;
|
|
141
|
+
content: {
|
|
142
|
+
'application/json': {
|
|
143
|
+
schema: {
|
|
144
|
+
$ref: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
responses: {
|
|
150
|
+
200: {
|
|
151
|
+
description: string;
|
|
152
|
+
content: {
|
|
153
|
+
'application/json': {
|
|
154
|
+
schema: {
|
|
155
|
+
$ref: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
'/flowModels:save': {
|
|
164
|
+
post: {
|
|
165
|
+
tags: string[];
|
|
166
|
+
description: string;
|
|
167
|
+
parameters: ({
|
|
168
|
+
name: string;
|
|
169
|
+
in: string;
|
|
170
|
+
required: boolean;
|
|
171
|
+
schema: {
|
|
172
|
+
type: string;
|
|
173
|
+
enum: string[];
|
|
174
|
+
default: string;
|
|
175
|
+
};
|
|
176
|
+
} | {
|
|
177
|
+
name: string;
|
|
178
|
+
in: string;
|
|
179
|
+
required: boolean;
|
|
180
|
+
schema: {
|
|
181
|
+
type: string;
|
|
182
|
+
default: boolean;
|
|
183
|
+
enum?: undefined;
|
|
184
|
+
};
|
|
185
|
+
})[];
|
|
186
|
+
requestBody: {
|
|
187
|
+
required: boolean;
|
|
188
|
+
content: {
|
|
189
|
+
'application/json': {
|
|
190
|
+
schema: {
|
|
191
|
+
$ref: string;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
responses: {
|
|
197
|
+
200: {
|
|
198
|
+
description: string;
|
|
199
|
+
content: {
|
|
200
|
+
'application/json': {
|
|
201
|
+
schema: {
|
|
202
|
+
$ref: string;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
400: {
|
|
208
|
+
description: string;
|
|
209
|
+
content: {
|
|
210
|
+
'application/json': {
|
|
211
|
+
schema: {
|
|
212
|
+
$ref: string;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
'/flowModels:duplicate': {
|
|
221
|
+
post: {
|
|
222
|
+
tags: string[];
|
|
223
|
+
description: string;
|
|
224
|
+
parameters: {
|
|
225
|
+
name: string;
|
|
226
|
+
in: string;
|
|
227
|
+
required: boolean;
|
|
228
|
+
schema: {
|
|
229
|
+
type: string;
|
|
230
|
+
};
|
|
231
|
+
}[];
|
|
232
|
+
responses: {
|
|
233
|
+
200: {
|
|
234
|
+
description: string;
|
|
235
|
+
content: {
|
|
236
|
+
'application/json': {
|
|
237
|
+
schema: {
|
|
238
|
+
anyOf: ({
|
|
239
|
+
$ref: string;
|
|
240
|
+
type?: undefined;
|
|
241
|
+
} | {
|
|
242
|
+
type: string;
|
|
243
|
+
$ref?: undefined;
|
|
244
|
+
})[];
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
'/flowModels:attach': {
|
|
253
|
+
post: {
|
|
254
|
+
tags: string[];
|
|
255
|
+
description: string;
|
|
256
|
+
parameters: ({
|
|
257
|
+
name: string;
|
|
258
|
+
in: string;
|
|
259
|
+
required: boolean;
|
|
260
|
+
schema: {
|
|
261
|
+
type: string;
|
|
262
|
+
enum?: undefined;
|
|
263
|
+
description?: undefined;
|
|
264
|
+
};
|
|
265
|
+
} | {
|
|
266
|
+
name: string;
|
|
267
|
+
in: string;
|
|
268
|
+
required: boolean;
|
|
269
|
+
schema: {
|
|
270
|
+
type: string;
|
|
271
|
+
enum: string[];
|
|
272
|
+
description?: undefined;
|
|
273
|
+
};
|
|
274
|
+
} | {
|
|
275
|
+
name: string;
|
|
276
|
+
in: string;
|
|
277
|
+
required: boolean;
|
|
278
|
+
schema: {
|
|
279
|
+
type: string;
|
|
280
|
+
description: string;
|
|
281
|
+
enum?: undefined;
|
|
282
|
+
};
|
|
283
|
+
})[];
|
|
284
|
+
responses: {
|
|
285
|
+
200: {
|
|
286
|
+
description: string;
|
|
287
|
+
content: {
|
|
288
|
+
'application/json': {
|
|
289
|
+
schema: {
|
|
290
|
+
$ref: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
'/flowModels:move': {
|
|
299
|
+
post: {
|
|
300
|
+
tags: string[];
|
|
301
|
+
description: string;
|
|
302
|
+
parameters: ({
|
|
303
|
+
name: string;
|
|
304
|
+
in: string;
|
|
305
|
+
required: boolean;
|
|
306
|
+
schema: {
|
|
307
|
+
type: string;
|
|
308
|
+
enum?: undefined;
|
|
309
|
+
};
|
|
310
|
+
} | {
|
|
311
|
+
name: string;
|
|
312
|
+
in: string;
|
|
313
|
+
required: boolean;
|
|
314
|
+
schema: {
|
|
315
|
+
type: string;
|
|
316
|
+
enum: string[];
|
|
317
|
+
};
|
|
318
|
+
})[];
|
|
319
|
+
responses: {
|
|
320
|
+
200: {
|
|
321
|
+
description: string;
|
|
322
|
+
content: {
|
|
323
|
+
'application/json': {
|
|
324
|
+
schema: {
|
|
325
|
+
type: string;
|
|
326
|
+
example: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
'/flowModels:destroy': {
|
|
335
|
+
post: {
|
|
336
|
+
tags: string[];
|
|
337
|
+
description: string;
|
|
338
|
+
parameters: {
|
|
339
|
+
name: string;
|
|
340
|
+
in: string;
|
|
341
|
+
required: boolean;
|
|
342
|
+
schema: {
|
|
343
|
+
type: string;
|
|
344
|
+
};
|
|
345
|
+
}[];
|
|
346
|
+
responses: {
|
|
347
|
+
200: {
|
|
348
|
+
description: string;
|
|
349
|
+
content: {
|
|
350
|
+
'application/json': {
|
|
351
|
+
schema: {
|
|
352
|
+
type: string;
|
|
353
|
+
example: string;
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
'/flowModels:ensure': {
|
|
362
|
+
post: {
|
|
363
|
+
tags: string[];
|
|
364
|
+
description: string;
|
|
365
|
+
parameters: {
|
|
366
|
+
name: string;
|
|
367
|
+
in: string;
|
|
368
|
+
required: boolean;
|
|
369
|
+
schema: {
|
|
370
|
+
type: string;
|
|
371
|
+
default: boolean;
|
|
372
|
+
};
|
|
373
|
+
}[];
|
|
374
|
+
requestBody: {
|
|
375
|
+
required: boolean;
|
|
376
|
+
content: {
|
|
377
|
+
'application/json': {
|
|
378
|
+
schema: {
|
|
379
|
+
$ref: string;
|
|
380
|
+
};
|
|
381
|
+
examples: {
|
|
382
|
+
ensureByUid: {
|
|
383
|
+
summary: string;
|
|
384
|
+
value: {
|
|
385
|
+
uid: string;
|
|
386
|
+
use: string;
|
|
387
|
+
async: boolean;
|
|
388
|
+
};
|
|
389
|
+
};
|
|
390
|
+
ensureExistingByUid: {
|
|
391
|
+
summary: string;
|
|
392
|
+
value: {
|
|
393
|
+
uid: string;
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
ensureObjectChild: {
|
|
397
|
+
summary: string;
|
|
398
|
+
value: {
|
|
399
|
+
parentId: string;
|
|
400
|
+
subKey: string;
|
|
401
|
+
subType: string;
|
|
402
|
+
use: string;
|
|
403
|
+
async: boolean;
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
responses: {
|
|
411
|
+
200: {
|
|
412
|
+
description: string;
|
|
413
|
+
content: {
|
|
414
|
+
'application/json': {
|
|
415
|
+
schema: {
|
|
416
|
+
$ref: string;
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
400: {
|
|
422
|
+
description: string;
|
|
423
|
+
content: {
|
|
424
|
+
'application/json': {
|
|
425
|
+
schema: {
|
|
426
|
+
$ref: string;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
};
|
|
431
|
+
404: {
|
|
432
|
+
description: string;
|
|
433
|
+
content: {
|
|
434
|
+
'application/json': {
|
|
435
|
+
schema: {
|
|
436
|
+
$ref: string;
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
409: {
|
|
442
|
+
description: string;
|
|
443
|
+
content: {
|
|
444
|
+
'application/json': {
|
|
445
|
+
schema: {
|
|
446
|
+
$ref: string;
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
'/flowModels:mutate': {
|
|
455
|
+
post: {
|
|
456
|
+
tags: string[];
|
|
457
|
+
description: string;
|
|
458
|
+
parameters: {
|
|
459
|
+
name: string;
|
|
460
|
+
in: string;
|
|
461
|
+
required: boolean;
|
|
462
|
+
schema: {
|
|
463
|
+
type: string;
|
|
464
|
+
default: boolean;
|
|
465
|
+
};
|
|
466
|
+
}[];
|
|
467
|
+
requestBody: {
|
|
468
|
+
required: boolean;
|
|
469
|
+
content: {
|
|
470
|
+
'application/json': {
|
|
471
|
+
schema: {
|
|
472
|
+
$ref: string;
|
|
473
|
+
};
|
|
474
|
+
examples: {
|
|
475
|
+
duplicateAttachMoveUpsert: {
|
|
476
|
+
summary: string;
|
|
477
|
+
value: {
|
|
478
|
+
atomic: boolean;
|
|
479
|
+
ops: ({
|
|
480
|
+
opId: string;
|
|
481
|
+
type: string;
|
|
482
|
+
params: {
|
|
483
|
+
uid: string;
|
|
484
|
+
targetUid: string;
|
|
485
|
+
parentId?: undefined;
|
|
486
|
+
subKey?: undefined;
|
|
487
|
+
subType?: undefined;
|
|
488
|
+
position?: undefined;
|
|
489
|
+
sourceId?: undefined;
|
|
490
|
+
targetId?: undefined;
|
|
491
|
+
values?: undefined;
|
|
492
|
+
};
|
|
493
|
+
} | {
|
|
494
|
+
opId: string;
|
|
495
|
+
type: string;
|
|
496
|
+
params: {
|
|
497
|
+
uid: string;
|
|
498
|
+
parentId: string;
|
|
499
|
+
subKey: string;
|
|
500
|
+
subType: string;
|
|
501
|
+
position: string;
|
|
502
|
+
targetUid?: undefined;
|
|
503
|
+
sourceId?: undefined;
|
|
504
|
+
targetId?: undefined;
|
|
505
|
+
values?: undefined;
|
|
506
|
+
};
|
|
507
|
+
} | {
|
|
508
|
+
opId: string;
|
|
509
|
+
type: string;
|
|
510
|
+
params: {
|
|
511
|
+
sourceId: string;
|
|
512
|
+
targetId: string;
|
|
513
|
+
position: string;
|
|
514
|
+
uid?: undefined;
|
|
515
|
+
targetUid?: undefined;
|
|
516
|
+
parentId?: undefined;
|
|
517
|
+
subKey?: undefined;
|
|
518
|
+
subType?: undefined;
|
|
519
|
+
values?: undefined;
|
|
520
|
+
};
|
|
521
|
+
} | {
|
|
522
|
+
opId: string;
|
|
523
|
+
type: string;
|
|
524
|
+
params: {
|
|
525
|
+
values: {
|
|
526
|
+
uid: string;
|
|
527
|
+
use: string;
|
|
528
|
+
};
|
|
529
|
+
uid?: undefined;
|
|
530
|
+
targetUid?: undefined;
|
|
531
|
+
parentId?: undefined;
|
|
532
|
+
subKey?: undefined;
|
|
533
|
+
subType?: undefined;
|
|
534
|
+
position?: undefined;
|
|
535
|
+
sourceId?: undefined;
|
|
536
|
+
targetId?: undefined;
|
|
537
|
+
};
|
|
538
|
+
})[];
|
|
539
|
+
returnModels: string[];
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
};
|
|
546
|
+
responses: {
|
|
547
|
+
200: {
|
|
548
|
+
description: string;
|
|
549
|
+
content: {
|
|
550
|
+
'application/json': {
|
|
551
|
+
schema: {
|
|
552
|
+
$ref: string;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
400: {
|
|
558
|
+
description: string;
|
|
559
|
+
content: {
|
|
560
|
+
'application/json': {
|
|
561
|
+
schema: {
|
|
562
|
+
$ref: string;
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
404: {
|
|
568
|
+
description: string;
|
|
569
|
+
content: {
|
|
570
|
+
'application/json': {
|
|
571
|
+
schema: {
|
|
572
|
+
$ref: string;
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
409: {
|
|
578
|
+
description: string;
|
|
579
|
+
content: {
|
|
580
|
+
'application/json': {
|
|
581
|
+
schema: {
|
|
582
|
+
$ref: string;
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
};
|
|
586
|
+
};
|
|
587
|
+
500: {
|
|
588
|
+
description: string;
|
|
589
|
+
content: {
|
|
590
|
+
'application/json': {
|
|
591
|
+
schema: {
|
|
592
|
+
$ref: string;
|
|
593
|
+
};
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
components: {
|
|
602
|
+
schemas: {
|
|
603
|
+
ErrorItem: {
|
|
604
|
+
type: string;
|
|
605
|
+
required: string[];
|
|
606
|
+
properties: {
|
|
607
|
+
code: {
|
|
608
|
+
type: string;
|
|
609
|
+
};
|
|
610
|
+
message: {
|
|
611
|
+
type: string;
|
|
612
|
+
};
|
|
613
|
+
details: {
|
|
614
|
+
type: string;
|
|
615
|
+
additionalProperties: boolean;
|
|
616
|
+
};
|
|
617
|
+
opId: {
|
|
618
|
+
type: string;
|
|
619
|
+
};
|
|
620
|
+
opIndex: {
|
|
621
|
+
type: string;
|
|
622
|
+
};
|
|
623
|
+
jsonPointer: {
|
|
624
|
+
type: string;
|
|
625
|
+
};
|
|
626
|
+
modelUid: {
|
|
627
|
+
type: string;
|
|
628
|
+
};
|
|
629
|
+
modelUse: {
|
|
630
|
+
type: string;
|
|
631
|
+
};
|
|
632
|
+
section: {
|
|
633
|
+
type: string;
|
|
634
|
+
};
|
|
635
|
+
keyword: {
|
|
636
|
+
type: string;
|
|
637
|
+
};
|
|
638
|
+
expectedType: {
|
|
639
|
+
oneOf: ({
|
|
640
|
+
type: string;
|
|
641
|
+
items?: undefined;
|
|
642
|
+
} | {
|
|
643
|
+
type: string;
|
|
644
|
+
items: {
|
|
645
|
+
type: string;
|
|
646
|
+
};
|
|
647
|
+
})[];
|
|
648
|
+
};
|
|
649
|
+
allowedValues: {
|
|
650
|
+
type: string;
|
|
651
|
+
items: {};
|
|
652
|
+
};
|
|
653
|
+
suggestedUses: {
|
|
654
|
+
type: string;
|
|
655
|
+
items: {
|
|
656
|
+
type: string;
|
|
657
|
+
};
|
|
658
|
+
};
|
|
659
|
+
schemaHash: {
|
|
660
|
+
type: string;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
additionalProperties: boolean;
|
|
664
|
+
};
|
|
665
|
+
ErrorResponse: {
|
|
666
|
+
type: string;
|
|
667
|
+
required: string[];
|
|
668
|
+
properties: {
|
|
669
|
+
errors: {
|
|
670
|
+
type: string;
|
|
671
|
+
items: {
|
|
672
|
+
$ref: string;
|
|
673
|
+
};
|
|
674
|
+
};
|
|
675
|
+
};
|
|
676
|
+
additionalProperties: boolean;
|
|
677
|
+
};
|
|
678
|
+
DataWrappedNullableFlowModelSnapshotResponse: {
|
|
679
|
+
type: string;
|
|
680
|
+
properties: {
|
|
681
|
+
data: {
|
|
682
|
+
anyOf: ({
|
|
683
|
+
$ref: string;
|
|
684
|
+
type?: undefined;
|
|
685
|
+
} | {
|
|
686
|
+
type: string;
|
|
687
|
+
$ref?: undefined;
|
|
688
|
+
})[];
|
|
689
|
+
};
|
|
690
|
+
};
|
|
691
|
+
additionalProperties: boolean;
|
|
692
|
+
};
|
|
693
|
+
DataWrappedFlowModelSchemaDocumentResponse: {
|
|
694
|
+
type: string;
|
|
695
|
+
properties: {
|
|
696
|
+
data: {
|
|
697
|
+
$ref: string;
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
additionalProperties: boolean;
|
|
701
|
+
};
|
|
702
|
+
DataWrappedFlowModelSchemaDocumentListResponse: {
|
|
703
|
+
type: string;
|
|
704
|
+
properties: {
|
|
705
|
+
data: {
|
|
706
|
+
type: string;
|
|
707
|
+
items: {
|
|
708
|
+
$ref: string;
|
|
709
|
+
};
|
|
710
|
+
};
|
|
711
|
+
};
|
|
712
|
+
additionalProperties: boolean;
|
|
713
|
+
};
|
|
714
|
+
DataWrappedFlowModelSchemaBundleDocumentResponse: {
|
|
715
|
+
type: string;
|
|
716
|
+
properties: {
|
|
717
|
+
data: {
|
|
718
|
+
$ref: string;
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
additionalProperties: boolean;
|
|
722
|
+
};
|
|
723
|
+
DataWrappedFlowModelSnapshotOrUidResponse: {
|
|
724
|
+
type: string;
|
|
725
|
+
properties: {
|
|
726
|
+
data: {
|
|
727
|
+
oneOf: ({
|
|
728
|
+
$ref: string;
|
|
729
|
+
type?: undefined;
|
|
730
|
+
} | {
|
|
731
|
+
type: string;
|
|
732
|
+
$ref?: undefined;
|
|
733
|
+
})[];
|
|
734
|
+
};
|
|
735
|
+
};
|
|
736
|
+
additionalProperties: boolean;
|
|
737
|
+
};
|
|
738
|
+
DataWrappedFlowModelSnapshotResponse: {
|
|
739
|
+
type: string;
|
|
740
|
+
properties: {
|
|
741
|
+
data: {
|
|
742
|
+
$ref: string;
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
additionalProperties: boolean;
|
|
746
|
+
};
|
|
747
|
+
DataWrappedFlowModelsMutateResponse: {
|
|
748
|
+
type: string;
|
|
749
|
+
properties: {
|
|
750
|
+
data: {
|
|
751
|
+
$ref: string;
|
|
752
|
+
};
|
|
753
|
+
};
|
|
754
|
+
additionalProperties: boolean;
|
|
755
|
+
};
|
|
756
|
+
FlowModelEnsureRequest: {
|
|
757
|
+
oneOf: ({
|
|
758
|
+
type: string;
|
|
759
|
+
required: string[];
|
|
760
|
+
properties: {
|
|
761
|
+
uid: {
|
|
762
|
+
type: string;
|
|
763
|
+
};
|
|
764
|
+
use: {
|
|
765
|
+
type: string;
|
|
766
|
+
};
|
|
767
|
+
async: {
|
|
768
|
+
type: string;
|
|
769
|
+
};
|
|
770
|
+
stepParams: {
|
|
771
|
+
type: string;
|
|
772
|
+
additionalProperties: boolean;
|
|
773
|
+
};
|
|
774
|
+
flowRegistry: {
|
|
775
|
+
type: string;
|
|
776
|
+
additionalProperties: boolean;
|
|
777
|
+
};
|
|
778
|
+
subModels: {
|
|
779
|
+
type: string;
|
|
780
|
+
additionalProperties: boolean;
|
|
781
|
+
};
|
|
782
|
+
parentId?: undefined;
|
|
783
|
+
subKey?: undefined;
|
|
784
|
+
subType?: undefined;
|
|
785
|
+
};
|
|
786
|
+
additionalProperties: boolean;
|
|
787
|
+
} | {
|
|
788
|
+
type: string;
|
|
789
|
+
required: string[];
|
|
790
|
+
properties: {
|
|
791
|
+
parentId: {
|
|
792
|
+
type: string;
|
|
793
|
+
};
|
|
794
|
+
subKey: {
|
|
795
|
+
type: string;
|
|
796
|
+
};
|
|
797
|
+
subType: {
|
|
798
|
+
type: string;
|
|
799
|
+
enum: string[];
|
|
800
|
+
};
|
|
801
|
+
use: {
|
|
802
|
+
type: string;
|
|
803
|
+
};
|
|
804
|
+
async: {
|
|
805
|
+
type: string;
|
|
806
|
+
};
|
|
807
|
+
stepParams: {
|
|
808
|
+
type: string;
|
|
809
|
+
additionalProperties: boolean;
|
|
810
|
+
};
|
|
811
|
+
flowRegistry: {
|
|
812
|
+
type: string;
|
|
813
|
+
additionalProperties: boolean;
|
|
814
|
+
};
|
|
815
|
+
subModels: {
|
|
816
|
+
type: string;
|
|
817
|
+
additionalProperties: boolean;
|
|
818
|
+
};
|
|
819
|
+
uid?: undefined;
|
|
820
|
+
};
|
|
821
|
+
additionalProperties: boolean;
|
|
822
|
+
})[];
|
|
823
|
+
};
|
|
824
|
+
FlowDynamicHint: {
|
|
825
|
+
type: string;
|
|
826
|
+
required: string[];
|
|
827
|
+
properties: {
|
|
828
|
+
kind: {
|
|
829
|
+
type: string;
|
|
830
|
+
};
|
|
831
|
+
path: {
|
|
832
|
+
type: string;
|
|
833
|
+
};
|
|
834
|
+
message: {
|
|
835
|
+
type: string;
|
|
836
|
+
};
|
|
837
|
+
'x-flow': {
|
|
838
|
+
type: string;
|
|
839
|
+
properties: {
|
|
840
|
+
slotRules: {
|
|
841
|
+
type: string;
|
|
842
|
+
properties: {
|
|
843
|
+
slotKey: {
|
|
844
|
+
type: string;
|
|
845
|
+
};
|
|
846
|
+
type: {
|
|
847
|
+
type: string;
|
|
848
|
+
enum: string[];
|
|
849
|
+
};
|
|
850
|
+
allowedUses: {
|
|
851
|
+
type: string;
|
|
852
|
+
items: {
|
|
853
|
+
type: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
additionalProperties: boolean;
|
|
858
|
+
};
|
|
859
|
+
contextRequirements: {
|
|
860
|
+
type: string;
|
|
861
|
+
items: {
|
|
862
|
+
type: string;
|
|
863
|
+
};
|
|
864
|
+
};
|
|
865
|
+
unresolvedReason: {
|
|
866
|
+
type: string;
|
|
867
|
+
};
|
|
868
|
+
recommendedFallback: {};
|
|
869
|
+
};
|
|
870
|
+
additionalProperties: boolean;
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
additionalProperties: boolean;
|
|
874
|
+
};
|
|
875
|
+
FlowSchemaPattern: {
|
|
876
|
+
type: string;
|
|
877
|
+
required: string[];
|
|
878
|
+
properties: {
|
|
879
|
+
title: {
|
|
880
|
+
type: string;
|
|
881
|
+
};
|
|
882
|
+
description: {
|
|
883
|
+
type: string;
|
|
884
|
+
};
|
|
885
|
+
snippet: {};
|
|
886
|
+
};
|
|
887
|
+
additionalProperties: boolean;
|
|
888
|
+
};
|
|
889
|
+
FlowSchemaCoverage: {
|
|
890
|
+
type: string;
|
|
891
|
+
required: string[];
|
|
892
|
+
properties: {
|
|
893
|
+
status: {
|
|
894
|
+
type: string;
|
|
895
|
+
enum: string[];
|
|
896
|
+
};
|
|
897
|
+
source: {
|
|
898
|
+
type: string;
|
|
899
|
+
enum: string[];
|
|
900
|
+
};
|
|
901
|
+
strict: {
|
|
902
|
+
type: string;
|
|
903
|
+
};
|
|
904
|
+
issues: {
|
|
905
|
+
type: string;
|
|
906
|
+
items: {
|
|
907
|
+
type: string;
|
|
908
|
+
};
|
|
909
|
+
};
|
|
910
|
+
};
|
|
911
|
+
additionalProperties: boolean;
|
|
912
|
+
};
|
|
913
|
+
FlowModelSchemasRequest: {
|
|
914
|
+
type: string;
|
|
915
|
+
properties: {
|
|
916
|
+
uses: {
|
|
917
|
+
type: string;
|
|
918
|
+
items: {
|
|
919
|
+
type: string;
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
detail: {
|
|
923
|
+
type: string;
|
|
924
|
+
enum: string[];
|
|
925
|
+
default: string;
|
|
926
|
+
};
|
|
927
|
+
};
|
|
928
|
+
additionalProperties: boolean;
|
|
929
|
+
};
|
|
930
|
+
FlowModelSchemaDocument: {
|
|
931
|
+
type: string;
|
|
932
|
+
required: string[];
|
|
933
|
+
properties: {
|
|
934
|
+
use: {
|
|
935
|
+
type: string;
|
|
936
|
+
};
|
|
937
|
+
title: {
|
|
938
|
+
type: string;
|
|
939
|
+
};
|
|
940
|
+
jsonSchema: {
|
|
941
|
+
type: string;
|
|
942
|
+
additionalProperties: boolean;
|
|
943
|
+
};
|
|
944
|
+
dynamicHints: {
|
|
945
|
+
type: string;
|
|
946
|
+
items: {
|
|
947
|
+
$ref: string;
|
|
948
|
+
};
|
|
949
|
+
};
|
|
950
|
+
minimalExample: {};
|
|
951
|
+
commonPatterns: {
|
|
952
|
+
type: string;
|
|
953
|
+
items: {
|
|
954
|
+
$ref: string;
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
antiPatterns: {
|
|
958
|
+
type: string;
|
|
959
|
+
items: {
|
|
960
|
+
$ref: string;
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
hash: {
|
|
964
|
+
type: string;
|
|
965
|
+
};
|
|
966
|
+
source: {
|
|
967
|
+
type: string;
|
|
968
|
+
enum: string[];
|
|
969
|
+
};
|
|
970
|
+
};
|
|
971
|
+
additionalProperties: boolean;
|
|
972
|
+
};
|
|
973
|
+
FlowModelSchemaBundleItem: {
|
|
974
|
+
type: string;
|
|
975
|
+
required: string[];
|
|
976
|
+
properties: {
|
|
977
|
+
use: {
|
|
978
|
+
type: string;
|
|
979
|
+
};
|
|
980
|
+
title: {
|
|
981
|
+
type: string;
|
|
982
|
+
};
|
|
983
|
+
subModelCatalog: {
|
|
984
|
+
type: string;
|
|
985
|
+
additionalProperties: {
|
|
986
|
+
$ref: string;
|
|
987
|
+
};
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
additionalProperties: boolean;
|
|
991
|
+
};
|
|
992
|
+
FlowModelSchemaBundleSlotCatalog: {
|
|
993
|
+
type: string;
|
|
994
|
+
required: string[];
|
|
995
|
+
properties: {
|
|
996
|
+
type: {
|
|
997
|
+
type: string;
|
|
998
|
+
enum: string[];
|
|
999
|
+
};
|
|
1000
|
+
required: {
|
|
1001
|
+
type: string;
|
|
1002
|
+
};
|
|
1003
|
+
open: {
|
|
1004
|
+
type: string;
|
|
1005
|
+
};
|
|
1006
|
+
candidates: {
|
|
1007
|
+
type: string;
|
|
1008
|
+
items: {
|
|
1009
|
+
$ref: string;
|
|
1010
|
+
};
|
|
1011
|
+
};
|
|
1012
|
+
};
|
|
1013
|
+
additionalProperties: boolean;
|
|
1014
|
+
};
|
|
1015
|
+
FlowModelSchemaBundleDocument: {
|
|
1016
|
+
type: string;
|
|
1017
|
+
required: string[];
|
|
1018
|
+
properties: {
|
|
1019
|
+
items: {
|
|
1020
|
+
type: string;
|
|
1021
|
+
items: {
|
|
1022
|
+
$ref: string;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
additionalProperties: boolean;
|
|
1027
|
+
};
|
|
1028
|
+
FlowModelsMutateOp: {
|
|
1029
|
+
type: string;
|
|
1030
|
+
required: string[];
|
|
1031
|
+
properties: {
|
|
1032
|
+
opId: {
|
|
1033
|
+
type: string;
|
|
1034
|
+
};
|
|
1035
|
+
type: {
|
|
1036
|
+
type: string;
|
|
1037
|
+
enum: string[];
|
|
1038
|
+
};
|
|
1039
|
+
params: {
|
|
1040
|
+
type: string;
|
|
1041
|
+
additionalProperties: boolean;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
additionalProperties: boolean;
|
|
1045
|
+
};
|
|
1046
|
+
FlowModelsMutateRequest: {
|
|
1047
|
+
type: string;
|
|
1048
|
+
required: string[];
|
|
1049
|
+
properties: {
|
|
1050
|
+
atomic: {
|
|
1051
|
+
type: string;
|
|
1052
|
+
enum: boolean[];
|
|
1053
|
+
};
|
|
1054
|
+
ops: {
|
|
1055
|
+
type: string;
|
|
1056
|
+
items: {
|
|
1057
|
+
$ref: string;
|
|
1058
|
+
};
|
|
1059
|
+
};
|
|
1060
|
+
returnModels: {
|
|
1061
|
+
type: string;
|
|
1062
|
+
items: {
|
|
1063
|
+
type: string;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
additionalProperties: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
FlowModelsMutateOpResult: {
|
|
1070
|
+
type: string;
|
|
1071
|
+
required: string[];
|
|
1072
|
+
properties: {
|
|
1073
|
+
opId: {
|
|
1074
|
+
type: string;
|
|
1075
|
+
};
|
|
1076
|
+
ok: {
|
|
1077
|
+
type: string;
|
|
1078
|
+
};
|
|
1079
|
+
output: {
|
|
1080
|
+
type: string;
|
|
1081
|
+
additionalProperties: boolean;
|
|
1082
|
+
};
|
|
1083
|
+
};
|
|
1084
|
+
additionalProperties: boolean;
|
|
1085
|
+
};
|
|
1086
|
+
FlowModelsMutateResponse: {
|
|
1087
|
+
type: string;
|
|
1088
|
+
required: string[];
|
|
1089
|
+
properties: {
|
|
1090
|
+
results: {
|
|
1091
|
+
type: string;
|
|
1092
|
+
items: {
|
|
1093
|
+
$ref: string;
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
models: {
|
|
1097
|
+
type: string;
|
|
1098
|
+
additionalProperties: {
|
|
1099
|
+
$ref: string;
|
|
1100
|
+
};
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
additionalProperties: boolean;
|
|
1104
|
+
};
|
|
1105
|
+
FlowModelSnapshot: {
|
|
1106
|
+
type: string;
|
|
1107
|
+
required: string[];
|
|
1108
|
+
properties: {
|
|
1109
|
+
uid: {
|
|
1110
|
+
type: string;
|
|
1111
|
+
description: string;
|
|
1112
|
+
};
|
|
1113
|
+
use: {
|
|
1114
|
+
type: string;
|
|
1115
|
+
description: string;
|
|
1116
|
+
};
|
|
1117
|
+
async: {
|
|
1118
|
+
type: string;
|
|
1119
|
+
description: string;
|
|
1120
|
+
};
|
|
1121
|
+
parentId: {
|
|
1122
|
+
type: string;
|
|
1123
|
+
description: string;
|
|
1124
|
+
};
|
|
1125
|
+
subKey: {
|
|
1126
|
+
type: string;
|
|
1127
|
+
description: string;
|
|
1128
|
+
};
|
|
1129
|
+
subType: {
|
|
1130
|
+
type: string;
|
|
1131
|
+
enum: string[];
|
|
1132
|
+
description: string;
|
|
1133
|
+
};
|
|
1134
|
+
stepParams: {
|
|
1135
|
+
type: string;
|
|
1136
|
+
additionalProperties: boolean;
|
|
1137
|
+
};
|
|
1138
|
+
flowRegistry: {
|
|
1139
|
+
type: string;
|
|
1140
|
+
additionalProperties: boolean;
|
|
1141
|
+
};
|
|
1142
|
+
subModels: {
|
|
1143
|
+
type: string;
|
|
1144
|
+
additionalProperties: {
|
|
1145
|
+
oneOf: ({
|
|
1146
|
+
$ref: string;
|
|
1147
|
+
type?: undefined;
|
|
1148
|
+
items?: undefined;
|
|
1149
|
+
} | {
|
|
1150
|
+
type: string;
|
|
1151
|
+
items: {
|
|
1152
|
+
$ref: string;
|
|
1153
|
+
};
|
|
1154
|
+
$ref?: undefined;
|
|
1155
|
+
})[];
|
|
1156
|
+
};
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
additionalProperties: boolean;
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
export default _default;
|