@modern-js/utils 2.65.5 → 2.67.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist/cjs/cli/constants.js +1 -0
  2. package/dist/cjs/cli/is/config.js +0 -6
  3. package/dist/esm/cli/constants.js +1 -0
  4. package/dist/esm/cli/is/config.js +0 -5
  5. package/dist/esm-node/cli/constants.js +1 -0
  6. package/dist/esm-node/cli/is/config.js +0 -5
  7. package/dist/types/cli/action.d.ts +1 -1
  8. package/dist/types/cli/alias.d.ts +2 -2
  9. package/dist/types/cli/get/config.d.ts +1 -1
  10. package/dist/types/cli/is/config.d.ts +0 -7
  11. package/dist/types/cli/monorepo.d.ts +0 -2
  12. package/dist/types/cli/port.d.ts +3 -3
  13. package/dist/types/cli/watch.d.ts +1 -1
  14. package/package.json +4 -4
  15. package/dist/compiled/ajv/codegen.js +0 -1
  16. package/dist/compiled/ajv/index.js +0 -9
  17. package/dist/compiled/ajv/license +0 -22
  18. package/dist/compiled/ajv/package.json +0 -1
  19. package/dist/compiled/ajv/types/ajv.d.ts +0 -16
  20. package/dist/compiled/ajv/types/compile/codegen/code.d.ts +0 -40
  21. package/dist/compiled/ajv/types/compile/codegen/index.d.ts +0 -79
  22. package/dist/compiled/ajv/types/compile/codegen/scope.d.ts +0 -79
  23. package/dist/compiled/ajv/types/compile/errors.d.ts +0 -13
  24. package/dist/compiled/ajv/types/compile/index.d.ts +0 -80
  25. package/dist/compiled/ajv/types/compile/ref_error.d.ts +0 -6
  26. package/dist/compiled/ajv/types/compile/resolve.d.ts +0 -12
  27. package/dist/compiled/ajv/types/compile/rules.d.ts +0 -28
  28. package/dist/compiled/ajv/types/compile/util.d.ts +0 -40
  29. package/dist/compiled/ajv/types/compile/validate/index.d.ts +0 -42
  30. package/dist/compiled/ajv/types/compile/validate/subschema.d.ts +0 -47
  31. package/dist/compiled/ajv/types/core.d.ts +0 -173
  32. package/dist/compiled/ajv/types/runtime/validation_error.d.ts +0 -7
  33. package/dist/compiled/ajv/types/types/index.d.ts +0 -183
  34. package/dist/compiled/ajv/types/types/json-schema.d.ts +0 -124
  35. package/dist/compiled/ajv/types/types/jtd-schema.d.ts +0 -169
  36. package/dist/compiled/ajv/types/vocabularies/errors.d.ts +0 -1
  37. package/dist/compiled/ajv/uri-js.d.ts +0 -59
  38. package/dist/compiled/ajv-keywords/index.d.ts +0 -1
  39. package/dist/compiled/ajv-keywords/index.js +0 -1
  40. package/dist/compiled/ajv-keywords/license +0 -21
  41. package/dist/compiled/ajv-keywords/package.json +0 -1
  42. package/dist/compiled/better-ajv-errors/index.d.ts +0 -1
  43. package/dist/compiled/better-ajv-errors/index.js +0 -1
  44. package/dist/compiled/better-ajv-errors/license +0 -13
  45. package/dist/compiled/better-ajv-errors/package.json +0 -1
  46. package/dist/compiled/recursive-readdir/index.d.ts +0 -21
  47. package/dist/compiled/recursive-readdir/index.js +0 -1
  48. package/dist/compiled/recursive-readdir/license +0 -21
  49. package/dist/compiled/recursive-readdir/package.json +0 -1
  50. package/dist/compiled/schema-utils3/index.d.ts +0 -1
  51. package/dist/compiled/schema-utils3/index.js +0 -3
  52. package/dist/compiled/schema-utils3/license +0 -20
  53. package/dist/compiled/schema-utils3/package.json +0 -1
  54. package/dist/compiled/webpack-dev-middleware/index.js +0 -7
  55. package/dist/compiled/webpack-dev-middleware/license +0 -20
  56. package/dist/compiled/webpack-dev-middleware/package.json +0 -1
  57. package/dist/compiled/webpack-dev-middleware/types/index.d.ts +0 -262
@@ -1,16 +0,0 @@
1
- import type { AnySchemaObject } from './types';
2
- import AjvCore from './core';
3
- declare class Ajv extends AjvCore {
4
- _addVocabularies(): void;
5
- _addDefaultMetaSchema(): void;
6
- defaultMeta(): string | AnySchemaObject | undefined;
7
- }
8
- export default Ajv;
9
- export { Format, FormatDefinition, AsyncFormatDefinition, KeywordDefinition, KeywordErrorDefinition, CodeKeywordDefinition, MacroKeywordDefinition, FuncKeywordDefinition, Vocabulary, Schema, SchemaObject, AnySchemaObject, AsyncSchema, AnySchema, ValidateFunction, AsyncValidateFunction, SchemaValidateFunction, ErrorObject, ErrorNoParams, } from "./types";
10
- export { Plugin, Options, CodeOptions, InstanceOptions, Logger, ErrorsTextOptions } from "./core";
11
- export { SchemaCxt, SchemaObjCxt } from "./compile";
12
- export { KeywordCxt } from "./compile/validate";
13
- export { DefinedError } from "./vocabularies/errors";
14
- export { JSONType } from "./compile/rules";
15
- export { JSONSchemaType } from "./types/json-schema";
16
- export { _, str, stringify, nil, Name, Code, CodeGen, CodeGenOptions } from "./compile/codegen";
@@ -1,40 +0,0 @@
1
- export declare abstract class _CodeOrName {
2
- abstract readonly str: string;
3
- abstract readonly names: UsedNames;
4
- abstract toString(): string;
5
- abstract emptyStr(): boolean;
6
- }
7
- export declare const IDENTIFIER: RegExp;
8
- export declare class Name extends _CodeOrName {
9
- readonly str: string;
10
- constructor(s: string);
11
- toString(): string;
12
- emptyStr(): boolean;
13
- get names(): UsedNames;
14
- }
15
- export declare class _Code extends _CodeOrName {
16
- readonly _items: readonly CodeItem[];
17
- private _str?;
18
- private _names?;
19
- constructor(code: string | readonly CodeItem[]);
20
- toString(): string;
21
- emptyStr(): boolean;
22
- get str(): string;
23
- get names(): UsedNames;
24
- }
25
- export declare type CodeItem = Name | string | number | boolean | null;
26
- export declare type UsedNames = Record<string, number | undefined>;
27
- export declare type Code = _Code | Name;
28
- export declare type SafeExpr = Code | number | boolean | null;
29
- export declare const nil: _Code;
30
- declare type CodeArg = SafeExpr | string | undefined;
31
- export declare function _(strs: TemplateStringsArray, ...args: CodeArg[]): _Code;
32
- export declare function str(strs: TemplateStringsArray, ...args: (CodeArg | string[])[]): _Code;
33
- export declare function addCodeArg(code: CodeItem[], arg: CodeArg | string[]): void;
34
- export declare function strConcat(c1: Code, c2: Code): Code;
35
- export declare function stringify(x: unknown): Code;
36
- export declare function safeStringify(x: unknown): string;
37
- export declare function getProperty(key: Code | string | number): Code;
38
- export declare function getEsmExportName(key: Code | string | number): Code;
39
- export declare function regexpCode(rx: RegExp): Code;
40
- export {};
@@ -1,79 +0,0 @@
1
- import type { ScopeValueSets, NameValue, ValueScope, ValueScopeName } from './scope';
2
- import { _Code, Code, Name } from './code';
3
- import { Scope } from './scope';
4
- export { _, str, strConcat, nil, getProperty, stringify, regexpCode, Name, Code } from "./code";
5
- export { Scope, ScopeStore, ValueScope, ValueScopeName, ScopeValueSets, varKinds } from "./scope";
6
- export declare type SafeExpr = Code | number | boolean | null;
7
- export declare type Block = Code | (() => void);
8
- export declare const operators: {
9
- GT: _Code;
10
- GTE: _Code;
11
- LT: _Code;
12
- LTE: _Code;
13
- EQ: _Code;
14
- NEQ: _Code;
15
- NOT: _Code;
16
- OR: _Code;
17
- AND: _Code;
18
- ADD: _Code;
19
- };
20
- export interface CodeGenOptions {
21
- es5?: boolean;
22
- lines?: boolean;
23
- ownProperties?: boolean;
24
- }
25
- export declare class CodeGen {
26
- readonly _scope: Scope;
27
- readonly _extScope: ValueScope;
28
- readonly _values: ScopeValueSets;
29
- private readonly _nodes;
30
- private readonly _blockStarts;
31
- private readonly _constants;
32
- private readonly opts;
33
- constructor(extScope: ValueScope, opts?: CodeGenOptions);
34
- toString(): string;
35
- name(prefix: string): Name;
36
- scopeName(prefix: string): ValueScopeName;
37
- scopeValue(prefixOrName: ValueScopeName | string, value: NameValue): Name;
38
- getScopeValue(prefix: string, keyOrRef: unknown): ValueScopeName | undefined;
39
- scopeRefs(scopeName: Name): Code;
40
- scopeCode(): Code;
41
- private _def;
42
- const(nameOrPrefix: Name | string, rhs: SafeExpr, _constant?: boolean): Name;
43
- let(nameOrPrefix: Name | string, rhs?: SafeExpr, _constant?: boolean): Name;
44
- var(nameOrPrefix: Name | string, rhs?: SafeExpr, _constant?: boolean): Name;
45
- assign(lhs: Code, rhs: SafeExpr, sideEffects?: boolean): CodeGen;
46
- add(lhs: Code, rhs: SafeExpr): CodeGen;
47
- code(c: Block | SafeExpr): CodeGen;
48
- object(...keyValues: [Name | string, SafeExpr | string][]): _Code;
49
- if(condition: Code | boolean, thenBody?: Block, elseBody?: Block): CodeGen;
50
- elseIf(condition: Code | boolean): CodeGen;
51
- else(): CodeGen;
52
- endIf(): CodeGen;
53
- private _for;
54
- for(iteration: Code, forBody?: Block): CodeGen;
55
- forRange(nameOrPrefix: Name | string, from: SafeExpr, to: SafeExpr, forBody: (index: Name) => void, varKind?: Code): CodeGen;
56
- forOf(nameOrPrefix: Name | string, iterable: Code, forBody: (item: Name) => void, varKind?: Code): CodeGen;
57
- forIn(nameOrPrefix: Name | string, obj: Code, forBody: (item: Name) => void, varKind?: Code): CodeGen;
58
- endFor(): CodeGen;
59
- label(label: Name): CodeGen;
60
- break(label?: Code): CodeGen;
61
- return(value: Block | SafeExpr): CodeGen;
62
- try(tryBody: Block, catchCode?: (e: Name) => void, finallyCode?: Block): CodeGen;
63
- throw(error: Code): CodeGen;
64
- block(body?: Block, nodeCount?: number): CodeGen;
65
- endBlock(nodeCount?: number): CodeGen;
66
- func(name: Name, args?: Code, async?: boolean, funcBody?: Block): CodeGen;
67
- endFunc(): CodeGen;
68
- optimize(n?: number): void;
69
- private _leafNode;
70
- private _blockNode;
71
- private _endBlockNode;
72
- private _elseNode;
73
- private get _root();
74
- private get _currNode();
75
- private set _currNode(value);
76
- }
77
- export declare function not<T extends Code | SafeExpr>(x: T): T;
78
- export declare function and(...args: Code[]): Code;
79
- export declare function or(...args: Code[]): Code;
@@ -1,79 +0,0 @@
1
- import { Code, Name } from './code';
2
- interface NameGroup {
3
- prefix: string;
4
- index: number;
5
- }
6
- export interface NameValue {
7
- ref: ValueReference;
8
- key?: unknown;
9
- code?: Code;
10
- }
11
- export declare type ValueReference = unknown;
12
- interface ScopeOptions {
13
- prefixes?: Set<string>;
14
- parent?: Scope;
15
- }
16
- interface ValueScopeOptions extends ScopeOptions {
17
- scope: ScopeStore;
18
- es5?: boolean;
19
- lines?: boolean;
20
- }
21
- export declare type ScopeStore = Record<string, ValueReference[] | undefined>;
22
- declare type ScopeValues = {
23
- [Prefix in string]?: Map<unknown, ValueScopeName>;
24
- };
25
- export declare type ScopeValueSets = {
26
- [Prefix in string]?: Set<ValueScopeName>;
27
- };
28
- export declare enum UsedValueState {
29
- Started = 0,
30
- Completed = 1
31
- }
32
- export declare type UsedScopeValues = {
33
- [Prefix in string]?: Map<ValueScopeName, UsedValueState | undefined>;
34
- };
35
- export declare const varKinds: {
36
- const: Name;
37
- let: Name;
38
- var: Name;
39
- };
40
- export declare class Scope {
41
- protected readonly _names: {
42
- [Prefix in string]?: NameGroup;
43
- };
44
- protected readonly _prefixes?: Set<string>;
45
- protected readonly _parent?: Scope;
46
- constructor({ prefixes, parent }?: ScopeOptions);
47
- toName(nameOrPrefix: Name | string): Name;
48
- name(prefix: string): Name;
49
- protected _newName(prefix: string): string;
50
- private _nameGroup;
51
- }
52
- interface ScopePath {
53
- property: string;
54
- itemIndex: number;
55
- }
56
- export declare class ValueScopeName extends Name {
57
- readonly prefix: string;
58
- value?: NameValue;
59
- scopePath?: Code;
60
- constructor(prefix: string, nameStr: string);
61
- setValue(value: NameValue, { property, itemIndex }: ScopePath): void;
62
- }
63
- interface VSOptions extends ValueScopeOptions {
64
- _n: Code;
65
- }
66
- export declare class ValueScope extends Scope {
67
- protected readonly _values: ScopeValues;
68
- protected readonly _scope: ScopeStore;
69
- readonly opts: VSOptions;
70
- constructor(opts: ValueScopeOptions);
71
- get(): ScopeStore;
72
- name(prefix: string): ValueScopeName;
73
- value(nameOrPrefix: ValueScopeName | string, value: NameValue): ValueScopeName;
74
- getValue(prefix: string, keyOrRef: unknown): ValueScopeName | undefined;
75
- scopeRefs(scopeName: Name, values?: ScopeValues | ScopeValueSets): Code;
76
- scopeCode(values?: ScopeValues | ScopeValueSets, usedValues?: UsedScopeValues, getCode?: (n: ValueScopeName) => Code | undefined): Code;
77
- private _reduceValues;
78
- }
79
- export {};
@@ -1,13 +0,0 @@
1
- import type { KeywordErrorCxt, KeywordErrorDefinition } from '../types';
2
- import { CodeGen, Code, Name } from './codegen';
3
- export declare const keywordError: KeywordErrorDefinition;
4
- export declare const keyword$DataError: KeywordErrorDefinition;
5
- export interface ErrorPaths {
6
- instancePath?: Code;
7
- schemaPath?: string;
8
- parentSchema?: boolean;
9
- }
10
- export declare function reportError(cxt: KeywordErrorCxt, error?: KeywordErrorDefinition, errorPaths?: ErrorPaths, overrideAllErrors?: boolean): void;
11
- export declare function reportExtraError(cxt: KeywordErrorCxt, error?: KeywordErrorDefinition, errorPaths?: ErrorPaths): void;
12
- export declare function resetErrorsCount(gen: CodeGen, errsCount: Name): void;
13
- export declare function extendErrors({ gen, keyword, schemaValue, data, errsCount, it, }: KeywordErrorCxt): void;
@@ -1,80 +0,0 @@
1
- import type { AnySchema, AnySchemaObject, AnyValidateFunction, EvaluatedProperties, EvaluatedItems } from '../types';
2
- import type Ajv from '../core';
3
- import type { InstanceOptions } from '../core';
4
- import { CodeGen, Name, Code, ValueScopeName } from './codegen';
5
- import { LocalRefs } from './resolve';
6
- import { JSONType } from './rules';
7
- export declare type SchemaRefs = {
8
- [Ref in string]?: SchemaEnv | AnySchema;
9
- };
10
- export interface SchemaCxt {
11
- readonly gen: CodeGen;
12
- readonly allErrors?: boolean;
13
- readonly data: Name;
14
- readonly parentData: Name;
15
- readonly parentDataProperty: Code | number;
16
- readonly dataNames: Name[];
17
- readonly dataPathArr: (Code | number)[];
18
- readonly dataLevel: number;
19
- dataTypes: JSONType[];
20
- definedProperties: Set<string>;
21
- readonly topSchemaRef: Code;
22
- readonly validateName: Name;
23
- evaluated?: Name;
24
- readonly ValidationError?: Name;
25
- readonly schema: AnySchema;
26
- readonly schemaEnv: SchemaEnv;
27
- readonly rootId: string;
28
- baseId: string;
29
- readonly schemaPath: Code;
30
- readonly errSchemaPath: string;
31
- readonly errorPath: Code;
32
- readonly propertyName?: Name;
33
- readonly compositeRule?: boolean;
34
- props?: EvaluatedProperties | Name;
35
- items?: EvaluatedItems | Name;
36
- jtdDiscriminator?: string;
37
- jtdMetadata?: boolean;
38
- readonly createErrors?: boolean;
39
- readonly opts: InstanceOptions;
40
- readonly self: Ajv;
41
- }
42
- export interface SchemaObjCxt extends SchemaCxt {
43
- readonly schema: AnySchemaObject;
44
- }
45
- interface SchemaEnvArgs {
46
- readonly schema: AnySchema;
47
- readonly schemaId?: "$id" | "id";
48
- readonly root?: SchemaEnv;
49
- readonly baseId?: string;
50
- readonly schemaPath?: string;
51
- readonly localRefs?: LocalRefs;
52
- readonly meta?: boolean;
53
- }
54
- export declare class SchemaEnv implements SchemaEnvArgs {
55
- readonly schema: AnySchema;
56
- readonly schemaId?: "$id" | "id";
57
- readonly root: SchemaEnv;
58
- baseId: string;
59
- schemaPath?: string;
60
- localRefs?: LocalRefs;
61
- readonly meta?: boolean;
62
- readonly $async?: boolean;
63
- readonly refs: SchemaRefs;
64
- readonly dynamicAnchors: {
65
- [Ref in string]?: true;
66
- };
67
- validate?: AnyValidateFunction;
68
- validateName?: ValueScopeName;
69
- serialize?: (data: unknown) => string;
70
- serializeName?: ValueScopeName;
71
- parse?: (data: string) => unknown;
72
- parseName?: ValueScopeName;
73
- constructor(env: SchemaEnvArgs);
74
- }
75
- export declare function compileSchema(this: Ajv, sch: SchemaEnv): SchemaEnv;
76
- export declare function resolveRef(this: Ajv, root: SchemaEnv, baseId: string, ref: string): AnySchema | SchemaEnv | undefined;
77
- export declare function getCompilingSchema(this: Ajv, schEnv: SchemaEnv): SchemaEnv | void;
78
- export declare function resolveSchema(this: Ajv, root: SchemaEnv, // root object with properties schema, refs TODO below SchemaEnv is assigned to it
79
- ref: string): SchemaEnv | undefined;
80
- export {};
@@ -1,6 +0,0 @@
1
- import type { UriResolver } from '../types';
2
- export default class MissingRefError extends Error {
3
- readonly missingRef: string;
4
- readonly missingSchema: string;
5
- constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string);
6
- }
@@ -1,12 +0,0 @@
1
- import type { AnySchema, AnySchemaObject, UriResolver } from '../types';
2
- import type Ajv from '../ajv';
3
- import type { URIComponents } from '../../uri-js';
4
- export declare 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: URIComponents): 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;
@@ -1,28 +0,0 @@
1
- import type { AddedKeywordDefinition } from '../types';
2
- declare const _jsonTypes: readonly ["string", "number", "integer", "boolean", "null", "object", "array"];
3
- export declare type JSONType = typeof _jsonTypes[number];
4
- export declare function isJSONType(x: unknown): x is JSONType;
5
- declare 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 {};
@@ -1,40 +0,0 @@
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
- declare type SomeEvaluated = EvaluatedProperties | EvaluatedItems;
21
- declare 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 {};
@@ -1,42 +0,0 @@
1
- import type { AddedKeywordDefinition, AnySchemaObject, KeywordErrorCxt, KeywordCxtParams } from '../../types';
2
- import type { SchemaCxt, SchemaObjCxt } from '..';
3
- import { SubschemaArgs } from './subschema';
4
- import { Code, Name, CodeGen } from '../codegen';
5
- import type { JSONType } from '../rules';
6
- import { ErrorPaths } from '../errors';
7
- export declare function validateFunctionCode(it: SchemaCxt): void;
8
- export declare class KeywordCxt implements KeywordErrorCxt {
9
- readonly gen: CodeGen;
10
- readonly allErrors?: boolean;
11
- readonly keyword: string;
12
- readonly data: Name;
13
- readonly $data?: string | false;
14
- schema: any;
15
- readonly schemaValue: Code | number | boolean;
16
- readonly schemaCode: Code | number | boolean;
17
- readonly schemaType: JSONType[];
18
- readonly parentSchema: AnySchemaObject;
19
- readonly errsCount?: Name;
20
- params: KeywordCxtParams;
21
- readonly it: SchemaObjCxt;
22
- readonly def: AddedKeywordDefinition;
23
- constructor(it: SchemaObjCxt, def: AddedKeywordDefinition, keyword: string);
24
- result(condition: Code, successAction?: () => void, failAction?: () => void): void;
25
- failResult(condition: Code, successAction?: () => void, failAction?: () => void): void;
26
- pass(condition: Code, failAction?: () => void): void;
27
- fail(condition?: Code): void;
28
- fail$data(condition: Code): void;
29
- error(append?: boolean, errorParams?: KeywordCxtParams, errorPaths?: ErrorPaths): void;
30
- private _error;
31
- $dataError(): void;
32
- reset(): void;
33
- ok(cond: Code | boolean): void;
34
- setParams(obj: KeywordCxtParams, assign?: true): void;
35
- block$data(valid: Name, codeBlock: () => void, $dataValid?: Code): void;
36
- check$data(valid?: Name, $dataValid?: Code): void;
37
- invalid$data(): Code;
38
- subschema(appl: SubschemaArgs, valid: Name): SchemaCxt;
39
- mergeEvaluated(schemaCxt: SchemaCxt, toName?: typeof Name): void;
40
- mergeValidEvaluated(schemaCxt: SchemaCxt, valid: Name): boolean | void;
41
- }
42
- export declare function getData($data: string, { dataLevel, dataNames, dataPathArr }: SchemaCxt): Code | number;
@@ -1,47 +0,0 @@
1
- import type { AnySchema } from '../../types';
2
- import type { SchemaObjCxt } from '..';
3
- import { Code, Name } from '../codegen';
4
- import { Type } from '../util';
5
- import type { JSONType } from '../rules';
6
- export interface SubschemaContext {
7
- schema: AnySchema;
8
- schemaPath: Code;
9
- errSchemaPath: string;
10
- topSchemaRef?: Code;
11
- errorPath?: Code;
12
- dataLevel?: number;
13
- dataTypes?: JSONType[];
14
- data?: Name;
15
- parentData?: Name;
16
- parentDataProperty?: Code | number;
17
- dataNames?: Name[];
18
- dataPathArr?: (Code | number)[];
19
- propertyName?: Name;
20
- jtdDiscriminator?: string;
21
- jtdMetadata?: boolean;
22
- compositeRule?: true;
23
- createErrors?: boolean;
24
- allErrors?: boolean;
25
- }
26
- export declare type SubschemaArgs = Partial<{
27
- keyword: string;
28
- schemaProp: string | number;
29
- schema: AnySchema;
30
- schemaPath: Code;
31
- errSchemaPath: string;
32
- topSchemaRef: Code;
33
- data: Name | Code;
34
- dataProp: Code | string | number;
35
- dataTypes: JSONType[];
36
- definedProperties: Set<string>;
37
- propertyName: Name;
38
- dataPropType: Type;
39
- jtdDiscriminator: string;
40
- jtdMetadata: boolean;
41
- compositeRule: true;
42
- createErrors: boolean;
43
- allErrors: boolean;
44
- }>;
45
- export declare function getSubschema(it: SchemaObjCxt, { keyword, schemaProp, schema, schemaPath, errSchemaPath, topSchemaRef }: SubschemaArgs): SubschemaContext;
46
- export declare function extendSubschemaData(subschema: SubschemaContext, it: SchemaObjCxt, { dataProp, dataPropType: dpType, data, dataTypes, propertyName }: SubschemaArgs): void;
47
- export declare function extendSubschemaMode(subschema: SubschemaContext, { jtdDiscriminator, jtdMetadata, compositeRule, createErrors, allErrors }: SubschemaArgs): void;
@@ -1,173 +0,0 @@
1
- export { Format, FormatDefinition, AsyncFormatDefinition, KeywordDefinition, KeywordErrorDefinition, CodeKeywordDefinition, MacroKeywordDefinition, FuncKeywordDefinition, Vocabulary, Schema, SchemaObject, AnySchemaObject, AsyncSchema, AnySchema, ValidateFunction, AsyncValidateFunction, AnyValidateFunction, ErrorObject, ErrorNoParams, } from "./types";
2
- export { SchemaCxt, SchemaObjCxt } from "./compile";
3
- export interface Plugin<Opts> {
4
- (ajv: Ajv, options?: Opts): Ajv;
5
- [prop: string]: any;
6
- }
7
- export { KeywordCxt } from "./compile/validate";
8
- export { DefinedError } from "./vocabularies/errors";
9
- export { JSONType } from "./compile/rules";
10
- export { JSONSchemaType } from "./types/json-schema";
11
- export { JTDSchemaType, SomeJTDSchemaType, JTDDataType } from "./types/jtd-schema";
12
- export { _, str, stringify, nil, Name, Code, CodeGen, CodeGenOptions } from "./compile/codegen";
13
- import type { Schema, AnySchema, AnySchemaObject, SchemaObject, AsyncSchema, Vocabulary, KeywordDefinition, AddedKeywordDefinition, AnyValidateFunction, ValidateFunction, AsyncValidateFunction, ErrorObject, Format, AddedFormat, RegExpEngine, UriResolver } from './types';
14
- import type { JSONSchemaType } from './types/json-schema';
15
- import type { JTDSchemaType, SomeJTDSchemaType, JTDDataType } from './types/jtd-schema';
16
- import ValidationError from './runtime/validation_error';
17
- import MissingRefError from './compile/ref_error';
18
- import { ValidationRules } from './compile/rules';
19
- import { SchemaEnv } from './compile';
20
- import { Code, ValueScope } from './compile/codegen';
21
- export declare type Options = CurrentOptions & DeprecatedOptions;
22
- export interface CurrentOptions {
23
- strict?: boolean | "log";
24
- strictSchema?: boolean | "log";
25
- strictNumbers?: boolean | "log";
26
- strictTypes?: boolean | "log";
27
- strictTuples?: boolean | "log";
28
- strictRequired?: boolean | "log";
29
- allowMatchingProperties?: boolean;
30
- allowUnionTypes?: boolean;
31
- validateFormats?: boolean;
32
- $data?: boolean;
33
- allErrors?: boolean;
34
- verbose?: boolean;
35
- discriminator?: boolean;
36
- unicodeRegExp?: boolean;
37
- timestamp?: "string" | "date";
38
- parseDate?: boolean;
39
- allowDate?: boolean;
40
- $comment?: true | ((comment: string, schemaPath?: string, rootSchema?: AnySchemaObject) => unknown);
41
- formats?: {
42
- [Name in string]?: Format;
43
- };
44
- keywords?: Vocabulary;
45
- schemas?: AnySchema[] | {
46
- [Key in string]?: AnySchema;
47
- };
48
- logger?: Logger | false;
49
- loadSchema?: (uri: string) => Promise<AnySchemaObject>;
50
- removeAdditional?: boolean | "all" | "failing";
51
- useDefaults?: boolean | "empty";
52
- coerceTypes?: boolean | "array";
53
- next?: boolean;
54
- unevaluated?: boolean;
55
- dynamicRef?: boolean;
56
- schemaId?: "id" | "$id";
57
- jtd?: boolean;
58
- meta?: SchemaObject | boolean;
59
- defaultMeta?: string | AnySchemaObject;
60
- validateSchema?: boolean | "log";
61
- addUsedSchema?: boolean;
62
- inlineRefs?: boolean | number;
63
- passContext?: boolean;
64
- loopRequired?: number;
65
- loopEnum?: number;
66
- ownProperties?: boolean;
67
- multipleOfPrecision?: number;
68
- int32range?: boolean;
69
- messages?: boolean;
70
- code?: CodeOptions;
71
- uriResolver?: UriResolver;
72
- }
73
- export interface CodeOptions {
74
- es5?: boolean;
75
- esm?: boolean;
76
- lines?: boolean;
77
- optimize?: boolean | number;
78
- formats?: Code;
79
- source?: boolean;
80
- process?: (code: string, schema?: SchemaEnv) => string;
81
- regExp?: RegExpEngine;
82
- }
83
- interface InstanceCodeOptions extends CodeOptions {
84
- regExp: RegExpEngine;
85
- optimize: number;
86
- }
87
- interface DeprecatedOptions {
88
- /** @deprecated */
89
- ignoreKeywordsWithRef?: boolean;
90
- /** @deprecated */
91
- jsPropertySyntax?: boolean;
92
- /** @deprecated */
93
- unicode?: boolean;
94
- }
95
- declare type RequiredInstanceOptions = {
96
- [K in "strictSchema" | "strictNumbers" | "strictTypes" | "strictTuples" | "strictRequired" | "inlineRefs" | "loopRequired" | "loopEnum" | "meta" | "messages" | "schemaId" | "addUsedSchema" | "validateSchema" | "validateFormats" | "int32range" | "unicodeRegExp" | "uriResolver"]: NonNullable<Options[K]>;
97
- } & {
98
- code: InstanceCodeOptions;
99
- };
100
- export declare type InstanceOptions = Options & RequiredInstanceOptions;
101
- export interface Logger {
102
- log(...args: unknown[]): unknown;
103
- warn(...args: unknown[]): unknown;
104
- error(...args: unknown[]): unknown;
105
- }
106
- export default class Ajv {
107
- opts: InstanceOptions;
108
- errors?: ErrorObject[] | null;
109
- logger: Logger;
110
- readonly scope: ValueScope;
111
- readonly schemas: {
112
- [Key in string]?: SchemaEnv;
113
- };
114
- readonly refs: {
115
- [Ref in string]?: SchemaEnv | string;
116
- };
117
- readonly formats: {
118
- [Name in string]?: AddedFormat;
119
- };
120
- readonly RULES: ValidationRules;
121
- readonly _compilations: Set<SchemaEnv>;
122
- private readonly _loading;
123
- private readonly _cache;
124
- private readonly _metaOpts;
125
- static ValidationError: typeof ValidationError;
126
- static MissingRefError: typeof MissingRefError;
127
- constructor(opts?: Options);
128
- _addVocabularies(): void;
129
- _addDefaultMetaSchema(): void;
130
- defaultMeta(): string | AnySchemaObject | undefined;
131
- validate(schema: Schema | string, data: unknown): boolean;
132
- validate(schemaKeyRef: AnySchema | string, data: unknown): boolean | Promise<unknown>;
133
- validate<T>(schema: Schema | JSONSchemaType<T> | string, data: unknown): data is T;
134
- validate<T>(schema: JTDSchemaType<T>, data: unknown): data is T;
135
- validate<N extends never, T extends SomeJTDSchemaType>(schema: T, data: unknown): data is JTDDataType<T>;
136
- validate<T>(schema: AsyncSchema, data: unknown | T): Promise<T>;
137
- validate<T>(schemaKeyRef: AnySchema | string, data: unknown): data is T | Promise<T>;
138
- compile<T = unknown>(schema: Schema | JSONSchemaType<T>, _meta?: boolean): ValidateFunction<T>;
139
- compile<T = unknown>(schema: JTDSchemaType<T>, _meta?: boolean): ValidateFunction<T>;
140
- compile<N extends never, T extends SomeJTDSchemaType>(schema: T, _meta?: boolean): ValidateFunction<JTDDataType<T>>;
141
- compile<T = unknown>(schema: AsyncSchema, _meta?: boolean): AsyncValidateFunction<T>;
142
- compile<T = unknown>(schema: AnySchema, _meta?: boolean): AnyValidateFunction<T>;
143
- compileAsync<T = unknown>(schema: SchemaObject | JSONSchemaType<T>, _meta?: boolean): Promise<ValidateFunction<T>>;
144
- compileAsync<T = unknown>(schema: JTDSchemaType<T>, _meta?: boolean): Promise<ValidateFunction<T>>;
145
- compileAsync<T = unknown>(schema: AsyncSchema, meta?: boolean): Promise<AsyncValidateFunction<T>>;
146
- compileAsync<T = unknown>(schema: AnySchemaObject, meta?: boolean): Promise<AnyValidateFunction<T>>;
147
- addSchema(schema: AnySchema | AnySchema[], // If array is passed, `key` will be ignored
148
- key?: string, // Optional schema key. Can be passed to `validate` method instead of schema object or id/ref. One schema per instance can have empty `id` and `key`.
149
- _meta?: boolean, // true if schema is a meta-schema. Used internally, addMetaSchema should be used instead.
150
- _validateSchema?: boolean | "log"): Ajv;
151
- addMetaSchema(schema: AnySchemaObject, key?: string, // schema key
152
- _validateSchema?: boolean | "log"): Ajv;
153
- validateSchema(schema: AnySchema, throwOrLogError?: boolean): boolean | Promise<unknown>;
154
- getSchema<T = unknown>(keyRef: string): AnyValidateFunction<T> | undefined;
155
- removeSchema(schemaKeyRef?: AnySchema | string | RegExp): Ajv;
156
- addVocabulary(definitions: Vocabulary): Ajv;
157
- addKeyword(kwdOrDef: string | KeywordDefinition, def?: KeywordDefinition): Ajv;
158
- getKeyword(keyword: string): AddedKeywordDefinition | boolean;
159
- removeKeyword(keyword: string): Ajv;
160
- addFormat(name: string, format: Format): Ajv;
161
- errorsText(errors?: ErrorObject[] | null | undefined, // optional array of validation errors
162
- { separator, dataVar }?: ErrorsTextOptions): string;
163
- $dataMetaSchema(metaSchema: AnySchemaObject, keywordsJsonPointers: string[]): AnySchemaObject;
164
- private _removeAllSchemas;
165
- _addSchema(schema: AnySchema, meta?: boolean, baseId?: string, validateSchema?: boolean | "log", addSchema?: boolean): SchemaEnv;
166
- private _checkUnique;
167
- private _compileSchemaEnv;
168
- private _compileMetaSchema;
169
- }
170
- export interface ErrorsTextOptions {
171
- separator?: string;
172
- dataVar?: string;
173
- }