@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,12 @@
|
|
|
1
|
+
import type { AnySchema, AnySchemaObject, UriResolver } from "../types";
|
|
2
|
+
import type Ajv from "../ajv";
|
|
3
|
+
import type { URIComponent } from "fast-uri";
|
|
4
|
+
export type LocalRefs = {
|
|
5
|
+
[Ref in string]?: AnySchemaObject;
|
|
6
|
+
};
|
|
7
|
+
export declare function inlineRef(schema: AnySchema, limit?: boolean | number): boolean;
|
|
8
|
+
export declare function getFullPath(resolver: UriResolver, id?: string, normalize?: boolean): string;
|
|
9
|
+
export declare function _getFullPath(resolver: UriResolver, p: URIComponent): string;
|
|
10
|
+
export declare function normalizeId(id: string | undefined): string;
|
|
11
|
+
export declare function resolveUrl(resolver: UriResolver, baseId: string, id: string): string;
|
|
12
|
+
export declare function getSchemaRefs(this: Ajv, schema: AnySchema, baseId: string): LocalRefs;
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getSchemaRefs = exports.resolveUrl = exports.normalizeId = exports._getFullPath = exports.getFullPath = exports.inlineRef = void 0;
|
|
4
|
+
const util_1 = require("./util");
|
|
5
|
+
const equal = require("fast-deep-equal");
|
|
6
|
+
const traverse = require("json-schema-traverse");
|
|
7
|
+
// TODO refactor to use keyword definitions
|
|
8
|
+
const SIMPLE_INLINED = new Set([
|
|
9
|
+
"type",
|
|
10
|
+
"format",
|
|
11
|
+
"pattern",
|
|
12
|
+
"maxLength",
|
|
13
|
+
"minLength",
|
|
14
|
+
"maxProperties",
|
|
15
|
+
"minProperties",
|
|
16
|
+
"maxItems",
|
|
17
|
+
"minItems",
|
|
18
|
+
"maximum",
|
|
19
|
+
"minimum",
|
|
20
|
+
"uniqueItems",
|
|
21
|
+
"multipleOf",
|
|
22
|
+
"required",
|
|
23
|
+
"enum",
|
|
24
|
+
"const",
|
|
25
|
+
]);
|
|
26
|
+
function inlineRef(schema, limit = true) {
|
|
27
|
+
if (typeof schema == "boolean")
|
|
28
|
+
return true;
|
|
29
|
+
if (limit === true)
|
|
30
|
+
return !hasRef(schema);
|
|
31
|
+
if (!limit)
|
|
32
|
+
return false;
|
|
33
|
+
return countKeys(schema) <= limit;
|
|
34
|
+
}
|
|
35
|
+
exports.inlineRef = inlineRef;
|
|
36
|
+
const REF_KEYWORDS = new Set([
|
|
37
|
+
"$ref",
|
|
38
|
+
"$recursiveRef",
|
|
39
|
+
"$recursiveAnchor",
|
|
40
|
+
"$dynamicRef",
|
|
41
|
+
"$dynamicAnchor",
|
|
42
|
+
]);
|
|
43
|
+
function hasRef(schema) {
|
|
44
|
+
for (const key in schema) {
|
|
45
|
+
if (REF_KEYWORDS.has(key))
|
|
46
|
+
return true;
|
|
47
|
+
const sch = schema[key];
|
|
48
|
+
if (Array.isArray(sch) && sch.some(hasRef))
|
|
49
|
+
return true;
|
|
50
|
+
if (typeof sch == "object" && hasRef(sch))
|
|
51
|
+
return true;
|
|
52
|
+
}
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
function countKeys(schema) {
|
|
56
|
+
let count = 0;
|
|
57
|
+
for (const key in schema) {
|
|
58
|
+
if (key === "$ref")
|
|
59
|
+
return Infinity;
|
|
60
|
+
count++;
|
|
61
|
+
if (SIMPLE_INLINED.has(key))
|
|
62
|
+
continue;
|
|
63
|
+
if (typeof schema[key] == "object") {
|
|
64
|
+
(0, util_1.eachItem)(schema[key], (sch) => (count += countKeys(sch)));
|
|
65
|
+
}
|
|
66
|
+
if (count === Infinity)
|
|
67
|
+
return Infinity;
|
|
68
|
+
}
|
|
69
|
+
return count;
|
|
70
|
+
}
|
|
71
|
+
function getFullPath(resolver, id = "", normalize) {
|
|
72
|
+
if (normalize !== false)
|
|
73
|
+
id = normalizeId(id);
|
|
74
|
+
const p = resolver.parse(id);
|
|
75
|
+
return _getFullPath(resolver, p);
|
|
76
|
+
}
|
|
77
|
+
exports.getFullPath = getFullPath;
|
|
78
|
+
function _getFullPath(resolver, p) {
|
|
79
|
+
const serialized = resolver.serialize(p);
|
|
80
|
+
return serialized.split("#")[0] + "#";
|
|
81
|
+
}
|
|
82
|
+
exports._getFullPath = _getFullPath;
|
|
83
|
+
const TRAILING_SLASH_HASH = /#\/?$/;
|
|
84
|
+
function normalizeId(id) {
|
|
85
|
+
return id ? id.replace(TRAILING_SLASH_HASH, "") : "";
|
|
86
|
+
}
|
|
87
|
+
exports.normalizeId = normalizeId;
|
|
88
|
+
function resolveUrl(resolver, baseId, id) {
|
|
89
|
+
id = normalizeId(id);
|
|
90
|
+
return resolver.resolve(baseId, id);
|
|
91
|
+
}
|
|
92
|
+
exports.resolveUrl = resolveUrl;
|
|
93
|
+
const ANCHOR = /^[a-z_][-a-z0-9._]*$/i;
|
|
94
|
+
function getSchemaRefs(schema, baseId) {
|
|
95
|
+
if (typeof schema == "boolean")
|
|
96
|
+
return {};
|
|
97
|
+
const { schemaId, uriResolver } = this.opts;
|
|
98
|
+
const schId = normalizeId(schema[schemaId] || baseId);
|
|
99
|
+
const baseIds = { "": schId };
|
|
100
|
+
const pathPrefix = getFullPath(uriResolver, schId, false);
|
|
101
|
+
const localRefs = {};
|
|
102
|
+
const schemaRefs = new Set();
|
|
103
|
+
traverse(schema, { allKeys: true }, (sch, jsonPtr, _, parentJsonPtr) => {
|
|
104
|
+
if (parentJsonPtr === undefined)
|
|
105
|
+
return;
|
|
106
|
+
const fullPath = pathPrefix + jsonPtr;
|
|
107
|
+
let innerBaseId = baseIds[parentJsonPtr];
|
|
108
|
+
if (typeof sch[schemaId] == "string")
|
|
109
|
+
innerBaseId = addRef.call(this, sch[schemaId]);
|
|
110
|
+
addAnchor.call(this, sch.$anchor);
|
|
111
|
+
addAnchor.call(this, sch.$dynamicAnchor);
|
|
112
|
+
baseIds[jsonPtr] = innerBaseId;
|
|
113
|
+
function addRef(ref) {
|
|
114
|
+
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
115
|
+
const _resolve = this.opts.uriResolver.resolve;
|
|
116
|
+
ref = normalizeId(innerBaseId ? _resolve(innerBaseId, ref) : ref);
|
|
117
|
+
if (schemaRefs.has(ref))
|
|
118
|
+
throw ambiguos(ref);
|
|
119
|
+
schemaRefs.add(ref);
|
|
120
|
+
let schOrRef = this.refs[ref];
|
|
121
|
+
if (typeof schOrRef == "string")
|
|
122
|
+
schOrRef = this.refs[schOrRef];
|
|
123
|
+
if (typeof schOrRef == "object") {
|
|
124
|
+
checkAmbiguosRef(sch, schOrRef.schema, ref);
|
|
125
|
+
}
|
|
126
|
+
else if (ref !== normalizeId(fullPath)) {
|
|
127
|
+
if (ref[0] === "#") {
|
|
128
|
+
checkAmbiguosRef(sch, localRefs[ref], ref);
|
|
129
|
+
localRefs[ref] = sch;
|
|
130
|
+
}
|
|
131
|
+
else {
|
|
132
|
+
this.refs[ref] = fullPath;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return ref;
|
|
136
|
+
}
|
|
137
|
+
function addAnchor(anchor) {
|
|
138
|
+
if (typeof anchor == "string") {
|
|
139
|
+
if (!ANCHOR.test(anchor))
|
|
140
|
+
throw new Error(`invalid anchor "${anchor}"`);
|
|
141
|
+
addRef.call(this, `#${anchor}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
return localRefs;
|
|
146
|
+
function checkAmbiguosRef(sch1, sch2, ref) {
|
|
147
|
+
if (sch2 !== undefined && !equal(sch1, sch2))
|
|
148
|
+
throw ambiguos(ref);
|
|
149
|
+
}
|
|
150
|
+
function ambiguos(ref) {
|
|
151
|
+
return new Error(`reference "${ref}" resolves to more than one schema`);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
exports.getSchemaRefs = getSchemaRefs;
|
|
155
|
+
//# sourceMappingURL=resolve.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { AddedKeywordDefinition } from "../types";
|
|
2
|
+
declare const _jsonTypes: readonly ["string", "number", "integer", "boolean", "null", "object", "array"];
|
|
3
|
+
export type JSONType = (typeof _jsonTypes)[number];
|
|
4
|
+
export declare function isJSONType(x: unknown): x is JSONType;
|
|
5
|
+
type ValidationTypes = {
|
|
6
|
+
[K in JSONType]: boolean | RuleGroup | undefined;
|
|
7
|
+
};
|
|
8
|
+
export interface ValidationRules {
|
|
9
|
+
rules: RuleGroup[];
|
|
10
|
+
post: RuleGroup;
|
|
11
|
+
all: {
|
|
12
|
+
[Key in string]?: boolean | Rule;
|
|
13
|
+
};
|
|
14
|
+
keywords: {
|
|
15
|
+
[Key in string]?: boolean;
|
|
16
|
+
};
|
|
17
|
+
types: ValidationTypes;
|
|
18
|
+
}
|
|
19
|
+
export interface RuleGroup {
|
|
20
|
+
type?: JSONType;
|
|
21
|
+
rules: Rule[];
|
|
22
|
+
}
|
|
23
|
+
export interface Rule {
|
|
24
|
+
keyword: string;
|
|
25
|
+
definition: AddedKeywordDefinition;
|
|
26
|
+
}
|
|
27
|
+
export declare function getRules(): ValidationRules;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getRules = exports.isJSONType = void 0;
|
|
4
|
+
const _jsonTypes = ["string", "number", "integer", "boolean", "null", "object", "array"];
|
|
5
|
+
const jsonTypes = new Set(_jsonTypes);
|
|
6
|
+
function isJSONType(x) {
|
|
7
|
+
return typeof x == "string" && jsonTypes.has(x);
|
|
8
|
+
}
|
|
9
|
+
exports.isJSONType = isJSONType;
|
|
10
|
+
function getRules() {
|
|
11
|
+
const groups = {
|
|
12
|
+
number: { type: "number", rules: [] },
|
|
13
|
+
string: { type: "string", rules: [] },
|
|
14
|
+
array: { type: "array", rules: [] },
|
|
15
|
+
object: { type: "object", rules: [] },
|
|
16
|
+
};
|
|
17
|
+
return {
|
|
18
|
+
types: { ...groups, integer: true, boolean: true, null: true },
|
|
19
|
+
rules: [{ rules: [] }, groups.number, groups.string, groups.array, groups.object],
|
|
20
|
+
post: { rules: [] },
|
|
21
|
+
all: {},
|
|
22
|
+
keywords: {},
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
exports.getRules = getRules;
|
|
26
|
+
//# sourceMappingURL=rules.js.map
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { AnySchema, EvaluatedProperties, EvaluatedItems } from "../types";
|
|
2
|
+
import type { SchemaCxt, SchemaObjCxt } from ".";
|
|
3
|
+
import { Code, Name, CodeGen } from "./codegen";
|
|
4
|
+
import type { Rule, ValidationRules } from "./rules";
|
|
5
|
+
export declare function toHash<T extends string = string>(arr: T[]): {
|
|
6
|
+
[K in T]?: true;
|
|
7
|
+
};
|
|
8
|
+
export declare function alwaysValidSchema(it: SchemaCxt, schema: AnySchema): boolean | void;
|
|
9
|
+
export declare function checkUnknownRules(it: SchemaCxt, schema?: AnySchema): void;
|
|
10
|
+
export declare function schemaHasRules(schema: AnySchema, rules: {
|
|
11
|
+
[Key in string]?: boolean | Rule;
|
|
12
|
+
}): boolean;
|
|
13
|
+
export declare function schemaHasRulesButRef(schema: AnySchema, RULES: ValidationRules): boolean;
|
|
14
|
+
export declare function schemaRefOrVal({ topSchemaRef, schemaPath }: SchemaObjCxt, schema: unknown, keyword: string, $data?: string | false): Code | number | boolean;
|
|
15
|
+
export declare function unescapeFragment(str: string): string;
|
|
16
|
+
export declare function escapeFragment(str: string | number): string;
|
|
17
|
+
export declare function escapeJsonPointer(str: string | number): string;
|
|
18
|
+
export declare function unescapeJsonPointer(str: string): string;
|
|
19
|
+
export declare function eachItem<T>(xs: T | T[], f: (x: T) => void): void;
|
|
20
|
+
type SomeEvaluated = EvaluatedProperties | EvaluatedItems;
|
|
21
|
+
type MergeEvaluatedFunc<T extends SomeEvaluated> = (gen: CodeGen, from: Name | T, to: Name | Exclude<T, true> | undefined, toName?: typeof Name) => Name | T;
|
|
22
|
+
interface MergeEvaluated {
|
|
23
|
+
props: MergeEvaluatedFunc<EvaluatedProperties>;
|
|
24
|
+
items: MergeEvaluatedFunc<EvaluatedItems>;
|
|
25
|
+
}
|
|
26
|
+
export declare const mergeEvaluated: MergeEvaluated;
|
|
27
|
+
export declare function evaluatedPropsToName(gen: CodeGen, ps?: EvaluatedProperties): Name;
|
|
28
|
+
export declare function setEvaluated(gen: CodeGen, props: Name, ps: {
|
|
29
|
+
[K in string]?: true;
|
|
30
|
+
}): void;
|
|
31
|
+
export declare function useFunc(gen: CodeGen, f: {
|
|
32
|
+
code: string;
|
|
33
|
+
}): Name;
|
|
34
|
+
export declare enum Type {
|
|
35
|
+
Num = 0,
|
|
36
|
+
Str = 1
|
|
37
|
+
}
|
|
38
|
+
export declare function getErrorPath(dataProp: Name | string | number, dataPropType?: Type, jsPropertySyntax?: boolean): Code | string;
|
|
39
|
+
export declare function checkStrictMode(it: SchemaCxt, msg: string, mode?: boolean | "log"): void;
|
|
40
|
+
export {};
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.checkStrictMode = exports.getErrorPath = exports.Type = exports.useFunc = exports.setEvaluated = exports.evaluatedPropsToName = exports.mergeEvaluated = exports.eachItem = exports.unescapeJsonPointer = exports.escapeJsonPointer = exports.escapeFragment = exports.unescapeFragment = exports.schemaRefOrVal = exports.schemaHasRulesButRef = exports.schemaHasRules = exports.checkUnknownRules = exports.alwaysValidSchema = exports.toHash = void 0;
|
|
4
|
+
const codegen_1 = require("./codegen");
|
|
5
|
+
const code_1 = require("./codegen/code");
|
|
6
|
+
// TODO refactor to use Set
|
|
7
|
+
function toHash(arr) {
|
|
8
|
+
const hash = {};
|
|
9
|
+
for (const item of arr)
|
|
10
|
+
hash[item] = true;
|
|
11
|
+
return hash;
|
|
12
|
+
}
|
|
13
|
+
exports.toHash = toHash;
|
|
14
|
+
function alwaysValidSchema(it, schema) {
|
|
15
|
+
if (typeof schema == "boolean")
|
|
16
|
+
return schema;
|
|
17
|
+
if (Object.keys(schema).length === 0)
|
|
18
|
+
return true;
|
|
19
|
+
checkUnknownRules(it, schema);
|
|
20
|
+
return !schemaHasRules(schema, it.self.RULES.all);
|
|
21
|
+
}
|
|
22
|
+
exports.alwaysValidSchema = alwaysValidSchema;
|
|
23
|
+
function checkUnknownRules(it, schema = it.schema) {
|
|
24
|
+
const { opts, self } = it;
|
|
25
|
+
if (!opts.strictSchema)
|
|
26
|
+
return;
|
|
27
|
+
if (typeof schema === "boolean")
|
|
28
|
+
return;
|
|
29
|
+
const rules = self.RULES.keywords;
|
|
30
|
+
for (const key in schema) {
|
|
31
|
+
if (!rules[key])
|
|
32
|
+
checkStrictMode(it, `unknown keyword: "${key}"`);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.checkUnknownRules = checkUnknownRules;
|
|
36
|
+
function schemaHasRules(schema, rules) {
|
|
37
|
+
if (typeof schema == "boolean")
|
|
38
|
+
return !schema;
|
|
39
|
+
for (const key in schema)
|
|
40
|
+
if (rules[key])
|
|
41
|
+
return true;
|
|
42
|
+
return false;
|
|
43
|
+
}
|
|
44
|
+
exports.schemaHasRules = schemaHasRules;
|
|
45
|
+
function schemaHasRulesButRef(schema, RULES) {
|
|
46
|
+
if (typeof schema == "boolean")
|
|
47
|
+
return !schema;
|
|
48
|
+
for (const key in schema)
|
|
49
|
+
if (key !== "$ref" && RULES.all[key])
|
|
50
|
+
return true;
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
exports.schemaHasRulesButRef = schemaHasRulesButRef;
|
|
54
|
+
function schemaRefOrVal({ topSchemaRef, schemaPath }, schema, keyword, $data) {
|
|
55
|
+
if (!$data) {
|
|
56
|
+
if (typeof schema == "number" || typeof schema == "boolean")
|
|
57
|
+
return schema;
|
|
58
|
+
if (typeof schema == "string")
|
|
59
|
+
return (0, codegen_1._) `${schema}`;
|
|
60
|
+
}
|
|
61
|
+
return (0, codegen_1._) `${topSchemaRef}${schemaPath}${(0, codegen_1.getProperty)(keyword)}`;
|
|
62
|
+
}
|
|
63
|
+
exports.schemaRefOrVal = schemaRefOrVal;
|
|
64
|
+
function unescapeFragment(str) {
|
|
65
|
+
return unescapeJsonPointer(decodeURIComponent(str));
|
|
66
|
+
}
|
|
67
|
+
exports.unescapeFragment = unescapeFragment;
|
|
68
|
+
function escapeFragment(str) {
|
|
69
|
+
return encodeURIComponent(escapeJsonPointer(str));
|
|
70
|
+
}
|
|
71
|
+
exports.escapeFragment = escapeFragment;
|
|
72
|
+
function escapeJsonPointer(str) {
|
|
73
|
+
if (typeof str == "number")
|
|
74
|
+
return `${str}`;
|
|
75
|
+
return str.replace(/~/g, "~0").replace(/\//g, "~1");
|
|
76
|
+
}
|
|
77
|
+
exports.escapeJsonPointer = escapeJsonPointer;
|
|
78
|
+
function unescapeJsonPointer(str) {
|
|
79
|
+
return str.replace(/~1/g, "/").replace(/~0/g, "~");
|
|
80
|
+
}
|
|
81
|
+
exports.unescapeJsonPointer = unescapeJsonPointer;
|
|
82
|
+
function eachItem(xs, f) {
|
|
83
|
+
if (Array.isArray(xs)) {
|
|
84
|
+
for (const x of xs)
|
|
85
|
+
f(x);
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
f(xs);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.eachItem = eachItem;
|
|
92
|
+
function makeMergeEvaluated({ mergeNames, mergeToName, mergeValues, resultToName, }) {
|
|
93
|
+
return (gen, from, to, toName) => {
|
|
94
|
+
const res = to === undefined
|
|
95
|
+
? from
|
|
96
|
+
: to instanceof codegen_1.Name
|
|
97
|
+
? (from instanceof codegen_1.Name ? mergeNames(gen, from, to) : mergeToName(gen, from, to), to)
|
|
98
|
+
: from instanceof codegen_1.Name
|
|
99
|
+
? (mergeToName(gen, to, from), from)
|
|
100
|
+
: mergeValues(from, to);
|
|
101
|
+
return toName === codegen_1.Name && !(res instanceof codegen_1.Name) ? resultToName(gen, res) : res;
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
exports.mergeEvaluated = {
|
|
105
|
+
props: makeMergeEvaluated({
|
|
106
|
+
mergeNames: (gen, from, to) => gen.if((0, codegen_1._) `${to} !== true && ${from} !== undefined`, () => {
|
|
107
|
+
gen.if((0, codegen_1._) `${from} === true`, () => gen.assign(to, true), () => gen.assign(to, (0, codegen_1._) `${to} || {}`).code((0, codegen_1._) `Object.assign(${to}, ${from})`));
|
|
108
|
+
}),
|
|
109
|
+
mergeToName: (gen, from, to) => gen.if((0, codegen_1._) `${to} !== true`, () => {
|
|
110
|
+
if (from === true) {
|
|
111
|
+
gen.assign(to, true);
|
|
112
|
+
}
|
|
113
|
+
else {
|
|
114
|
+
gen.assign(to, (0, codegen_1._) `${to} || {}`);
|
|
115
|
+
setEvaluated(gen, to, from);
|
|
116
|
+
}
|
|
117
|
+
}),
|
|
118
|
+
mergeValues: (from, to) => (from === true ? true : { ...from, ...to }),
|
|
119
|
+
resultToName: evaluatedPropsToName,
|
|
120
|
+
}),
|
|
121
|
+
items: makeMergeEvaluated({
|
|
122
|
+
mergeNames: (gen, from, to) => gen.if((0, codegen_1._) `${to} !== true && ${from} !== undefined`, () => gen.assign(to, (0, codegen_1._) `${from} === true ? true : ${to} > ${from} ? ${to} : ${from}`)),
|
|
123
|
+
mergeToName: (gen, from, to) => gen.if((0, codegen_1._) `${to} !== true`, () => gen.assign(to, from === true ? true : (0, codegen_1._) `${to} > ${from} ? ${to} : ${from}`)),
|
|
124
|
+
mergeValues: (from, to) => (from === true ? true : Math.max(from, to)),
|
|
125
|
+
resultToName: (gen, items) => gen.var("items", items),
|
|
126
|
+
}),
|
|
127
|
+
};
|
|
128
|
+
function evaluatedPropsToName(gen, ps) {
|
|
129
|
+
if (ps === true)
|
|
130
|
+
return gen.var("props", true);
|
|
131
|
+
const props = gen.var("props", (0, codegen_1._) `{}`);
|
|
132
|
+
if (ps !== undefined)
|
|
133
|
+
setEvaluated(gen, props, ps);
|
|
134
|
+
return props;
|
|
135
|
+
}
|
|
136
|
+
exports.evaluatedPropsToName = evaluatedPropsToName;
|
|
137
|
+
function setEvaluated(gen, props, ps) {
|
|
138
|
+
Object.keys(ps).forEach((p) => gen.assign((0, codegen_1._) `${props}${(0, codegen_1.getProperty)(p)}`, true));
|
|
139
|
+
}
|
|
140
|
+
exports.setEvaluated = setEvaluated;
|
|
141
|
+
const snippets = {};
|
|
142
|
+
function useFunc(gen, f) {
|
|
143
|
+
return gen.scopeValue("func", {
|
|
144
|
+
ref: f,
|
|
145
|
+
code: snippets[f.code] || (snippets[f.code] = new code_1._Code(f.code)),
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
exports.useFunc = useFunc;
|
|
149
|
+
var Type;
|
|
150
|
+
(function (Type) {
|
|
151
|
+
Type[Type["Num"] = 0] = "Num";
|
|
152
|
+
Type[Type["Str"] = 1] = "Str";
|
|
153
|
+
})(Type || (exports.Type = Type = {}));
|
|
154
|
+
function getErrorPath(dataProp, dataPropType, jsPropertySyntax) {
|
|
155
|
+
// let path
|
|
156
|
+
if (dataProp instanceof codegen_1.Name) {
|
|
157
|
+
const isNumber = dataPropType === Type.Num;
|
|
158
|
+
return jsPropertySyntax
|
|
159
|
+
? isNumber
|
|
160
|
+
? (0, codegen_1._) `"[" + ${dataProp} + "]"`
|
|
161
|
+
: (0, codegen_1._) `"['" + ${dataProp} + "']"`
|
|
162
|
+
: isNumber
|
|
163
|
+
? (0, codegen_1._) `"/" + ${dataProp}`
|
|
164
|
+
: (0, codegen_1._) `"/" + ${dataProp}.replace(/~/g, "~0").replace(/\\//g, "~1")`; // TODO maybe use global escapePointer
|
|
165
|
+
}
|
|
166
|
+
return jsPropertySyntax ? (0, codegen_1.getProperty)(dataProp).toString() : "/" + escapeJsonPointer(dataProp);
|
|
167
|
+
}
|
|
168
|
+
exports.getErrorPath = getErrorPath;
|
|
169
|
+
function checkStrictMode(it, msg, mode = it.opts.strictSchema) {
|
|
170
|
+
if (!mode)
|
|
171
|
+
return;
|
|
172
|
+
msg = `strict mode: ${msg}`;
|
|
173
|
+
if (mode === true)
|
|
174
|
+
throw new Error(msg);
|
|
175
|
+
it.self.logger.warn(msg);
|
|
176
|
+
}
|
|
177
|
+
exports.checkStrictMode = checkStrictMode;
|
|
178
|
+
//# sourceMappingURL=util.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { AnySchemaObject } from "../../types";
|
|
2
|
+
import type { SchemaObjCxt } from "..";
|
|
3
|
+
import type { JSONType, RuleGroup, Rule } from "../rules";
|
|
4
|
+
export declare function schemaHasRulesForType({ schema, self }: SchemaObjCxt, type: JSONType): boolean | undefined;
|
|
5
|
+
export declare function shouldUseGroup(schema: AnySchemaObject, group: RuleGroup): boolean;
|
|
6
|
+
export declare function shouldUseRule(schema: AnySchemaObject, rule: Rule): boolean | undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.shouldUseRule = exports.shouldUseGroup = exports.schemaHasRulesForType = void 0;
|
|
4
|
+
function schemaHasRulesForType({ schema, self }, type) {
|
|
5
|
+
const group = self.RULES.types[type];
|
|
6
|
+
return group && group !== true && shouldUseGroup(schema, group);
|
|
7
|
+
}
|
|
8
|
+
exports.schemaHasRulesForType = schemaHasRulesForType;
|
|
9
|
+
function shouldUseGroup(schema, group) {
|
|
10
|
+
return group.rules.some((rule) => shouldUseRule(schema, rule));
|
|
11
|
+
}
|
|
12
|
+
exports.shouldUseGroup = shouldUseGroup;
|
|
13
|
+
function shouldUseRule(schema, rule) {
|
|
14
|
+
var _a;
|
|
15
|
+
return (schema[rule.keyword] !== undefined ||
|
|
16
|
+
((_a = rule.definition.implements) === null || _a === void 0 ? void 0 : _a.some((kwd) => schema[kwd] !== undefined)));
|
|
17
|
+
}
|
|
18
|
+
exports.shouldUseRule = shouldUseRule;
|
|
19
|
+
//# sourceMappingURL=applicability.js.map
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.boolOrEmptySchema = exports.topBoolOrEmptySchema = void 0;
|
|
4
|
+
const errors_1 = require("../errors");
|
|
5
|
+
const codegen_1 = require("../codegen");
|
|
6
|
+
const names_1 = require("../names");
|
|
7
|
+
const boolError = {
|
|
8
|
+
message: "boolean schema is false",
|
|
9
|
+
};
|
|
10
|
+
function topBoolOrEmptySchema(it) {
|
|
11
|
+
const { gen, schema, validateName } = it;
|
|
12
|
+
if (schema === false) {
|
|
13
|
+
falseSchemaError(it, false);
|
|
14
|
+
}
|
|
15
|
+
else if (typeof schema == "object" && schema.$async === true) {
|
|
16
|
+
gen.return(names_1.default.data);
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
gen.assign((0, codegen_1._) `${validateName}.errors`, null);
|
|
20
|
+
gen.return(true);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.topBoolOrEmptySchema = topBoolOrEmptySchema;
|
|
24
|
+
function boolOrEmptySchema(it, valid) {
|
|
25
|
+
const { gen, schema } = it;
|
|
26
|
+
if (schema === false) {
|
|
27
|
+
gen.var(valid, false); // TODO var
|
|
28
|
+
falseSchemaError(it);
|
|
29
|
+
}
|
|
30
|
+
else {
|
|
31
|
+
gen.var(valid, true); // TODO var
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.boolOrEmptySchema = boolOrEmptySchema;
|
|
35
|
+
function falseSchemaError(it, overrideAllErrors) {
|
|
36
|
+
const { gen, data } = it;
|
|
37
|
+
// TODO maybe some other interface should be used for non-keyword validation errors...
|
|
38
|
+
const cxt = {
|
|
39
|
+
gen,
|
|
40
|
+
keyword: "false schema",
|
|
41
|
+
data,
|
|
42
|
+
schema: false,
|
|
43
|
+
schemaCode: false,
|
|
44
|
+
schemaValue: false,
|
|
45
|
+
params: {},
|
|
46
|
+
it,
|
|
47
|
+
};
|
|
48
|
+
(0, errors_1.reportError)(cxt, boolError, undefined, overrideAllErrors);
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=boolSchema.js.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ErrorObject, AnySchemaObject } from "../../types";
|
|
2
|
+
import type { SchemaObjCxt } from "..";
|
|
3
|
+
import { JSONType } from "../rules";
|
|
4
|
+
import { Code, Name } from "../codegen";
|
|
5
|
+
export declare enum DataType {
|
|
6
|
+
Correct = 0,
|
|
7
|
+
Wrong = 1
|
|
8
|
+
}
|
|
9
|
+
export declare function getSchemaTypes(schema: AnySchemaObject): JSONType[];
|
|
10
|
+
export declare function getJSONTypes(ts: unknown | unknown[]): JSONType[];
|
|
11
|
+
export declare function coerceAndCheckDataType(it: SchemaObjCxt, types: JSONType[]): boolean;
|
|
12
|
+
export declare function checkDataType(dataType: JSONType, data: Name, strictNums?: boolean | "log", correct?: DataType): Code;
|
|
13
|
+
export declare function checkDataTypes(dataTypes: JSONType[], data: Name, strictNums?: boolean | "log", correct?: DataType): Code;
|
|
14
|
+
export type TypeError = ErrorObject<"type", {
|
|
15
|
+
type: string;
|
|
16
|
+
}>;
|
|
17
|
+
export declare function reportTypeError(it: SchemaObjCxt): void;
|