@palmares/schemas 0.1.2 → 0.1.4

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.
@@ -1,26 +1,24 @@
1
1
 
2
- > @palmares/schemas@0.0.1 build:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
2
+ > @palmares/schemas@0.1.3 build:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
3
3
  > pnpm run build:cjs:watch & pnpm run build:module:watch & pnpm run build:types:watch
4
4
 
5
5
 
6
- > @palmares/schemas@0.0.1 build:module:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
6
+ > @palmares/schemas@0.1.3 build:module:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
7
7
  > swc ./src -d ./dist/esm --config-file ../../build/.esm.swcrc --watch
8
8
 
9
9
 
10
- > @palmares/schemas@0.0.1 build:cjs:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
10
+ > @palmares/schemas@0.1.3 build:cjs:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
11
11
  > swc ./src -d ./dist/cjs --config-file ../../build/.commonjs.swcrc --watch
12
12
 
13
13
 
14
- > @palmares/schemas@0.0.1 build:types:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
14
+ > @palmares/schemas@0.1.3 build:types:watch /Users/nicolasmelo/workspace/palmares/packages/schemas
15
15
  > tsc --project tsconfig.types.json --watch --preserveWatchOutput
16
16
 
17
- [7:03:28 PM] Starting compilation in watch mode...
17
+ [9:38:16 AM] Starting compilation in watch mode...
18
18
 
19
- Successfully compiled: 42 files with swc (211.11ms)
20
- Successfully compiled: 42 files with swc (214.92ms)
19
+ Successfully compiled: 42 files with swc (462.53ms)
20
+ Successfully compiled: 42 files with swc (463.62ms)
21
21
  Watching for file changes.
22
22
  Watching for file changes.
23
- [7:03:34 PM] Found 0 errors. Watching for file changes.
23
+ [9:38:17 AM] Found 0 errors. Watching for file changes.
24
24
 
25
- Successfully compiled src/utils.ts with swc (5.43ms)
26
- Successfully compiled src/utils.ts with swc (6.41ms)
@@ -1,22 +1,22 @@
1
1
 
2
- > @palmares/schemas@0.1.1 build /Users/nicolasmelo/workspace/palmares/packages/schemas
2
+ > @palmares/schemas@0.1.3 build /Users/nicolasmelo/workspace/palmares/packages/schemas
3
3
  > pnpm run clear && pnpm run build:cjs && pnpm run build:module && pnpm run build:types
4
4
 
5
5
 
6
- > @palmares/schemas@0.1.1 clear /Users/nicolasmelo/workspace/palmares/packages/schemas
6
+ > @palmares/schemas@0.1.3 clear /Users/nicolasmelo/workspace/palmares/packages/schemas
7
7
  > rimraf ./dist
8
8
 
9
9
 
10
- > @palmares/schemas@0.1.1 build:cjs /Users/nicolasmelo/workspace/palmares/packages/schemas
10
+ > @palmares/schemas@0.1.3 build:cjs /Users/nicolasmelo/workspace/palmares/packages/schemas
11
11
  > swc ./src -d ./dist/cjs --config-file ../../build/.commonjs.swcrc
12
12
 
13
- Successfully compiled: 42 files with swc (80.9ms)
13
+ Successfully compiled: 42 files with swc (97.75ms)
14
14
 
15
- > @palmares/schemas@0.1.1 build:module /Users/nicolasmelo/workspace/palmares/packages/schemas
15
+ > @palmares/schemas@0.1.3 build:module /Users/nicolasmelo/workspace/palmares/packages/schemas
16
16
  > swc ./src -d ./dist/esm --config-file ../../build/.esm.swcrc
17
17
 
18
- Successfully compiled: 42 files with swc (71.9ms)
18
+ Successfully compiled: 42 files with swc (81.64ms)
19
19
 
20
- > @palmares/schemas@0.1.1 build:types /Users/nicolasmelo/workspace/palmares/packages/schemas
20
+ > @palmares/schemas@0.1.3 build:types /Users/nicolasmelo/workspace/palmares/packages/schemas
21
21
  > tsc --project tsconfig.types.json
22
22
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @palmares/schemas
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - d49968e: Better typescript support for most stuff, added handler to the schemas and modified a lot the server stuff to comply with the client
8
+ - Updated dependencies [d49968e]
9
+ - @palmares/databases@0.1.4
10
+ - @palmares/server@0.1.4
11
+ - @palmares/core@0.1.4
12
+
13
+ ## 0.1.3
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ - @palmares/core@0.1.3
19
+ - @palmares/databases@0.1.3
20
+
3
21
  ## 0.1.2
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,17 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6
+ esac
7
+
8
+ if [ -z "$NODE_PATH" ]; then
9
+ export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules"
10
+ else
11
+ export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node-gyp@8.4.1/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules:$NODE_PATH"
12
+ fi
13
+ if [ -x "$basedir/node" ]; then
14
+ exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node-gyp.js" "$@"
15
+ else
16
+ exec node "$basedir/../../../../../node_modules/.pnpm/node-gyp@8.4.1/node_modules/node-gyp/bin/node-gyp.js" "$@"
17
+ fi
@@ -21,15 +21,13 @@
21
21
  "@palmares/node-std": "workspace:*",
22
22
  "@palmares/schemas": "workspace:*",
23
23
  "@palmares/tests": "workspace:*",
24
+ "@palmares/zod-schema": "workspace:*",
24
25
  "better-sqlite3": "^11.1.2",
25
26
  "drizzle-kit": "^0.23.0",
26
27
  "drizzle-orm": "^0.32.0"
27
28
  },
28
29
  "devDependencies": {
29
- "@types/express": "4.17.21",
30
- "@types/express-serve-static-core": "4.19.5",
31
- "@types/multer": "^1.4.9",
32
- "@types/qs": "^6.9.15",
30
+ "@types/better-sqlite3": "^7.6.11",
33
31
  "tsx": "^4.16.2",
34
32
  "typescript": "^5.5.4"
35
33
  }
@@ -13,7 +13,7 @@ export default domain('testingZodSchemas', __dirname, {
13
13
  keywordArgs: undefined,
14
14
  positionalArgs: undefined,
15
15
  handler: () => {
16
- migrate(db, { migrationsFolder: './.drizzle/migrations' });
16
+ migrate(db as any, { migrationsFolder: './.drizzle/migrations' });
17
17
  }
18
18
  }
19
19
  },
@@ -195,4 +195,24 @@ describe<JestTestAdapter>('Object Tests', ({ test }) => {
195
195
  expect(errors?.[0]?.path?.[0]).toBe('nested');
196
196
  expect(errors?.[0]?.path?.[1]).toBe('age');
197
197
  });
198
+
199
+ test('nested issue error message', async ({ expect }) => {
200
+ const schema = p.object({
201
+ name: p.string(),
202
+ age: p.number(),
203
+ }).toInternal(async (data) => {
204
+ return {
205
+ name: 'Hello ' + data.name,
206
+ age: data.age,
207
+ };
208
+ }).toRepresentation(async (data) => {
209
+ return {
210
+ name: 'Hello from backend',
211
+ };
212
+ });
213
+
214
+ const data = await schema.data({ name: 'John', age: 20 });
215
+ expect(data.name).toBe('Hello from backend');
216
+ });
198
217
  });
218
+
@@ -13,8 +13,6 @@ import Database from 'better-sqlite3';
13
13
  import { dirname, resolve } from 'path';
14
14
 
15
15
  import CustomCoreDomain from './core';
16
- import { User } from '../.drizzle/schema';
17
- import { eq } from 'drizzle-orm';
18
16
  //import * as schema from '../.drizzle/schema';
19
17
 
20
18
  const database = new Database('sqlite.db');
@@ -538,19 +538,19 @@ var ObjectSchema = /*#__PURE__*/ function(Schema) {
538
538
  4,
539
539
  Promise.all(dataAsEntries.map(function() {
540
540
  var _ref = _async_to_generator(function(param) {
541
- var _param, key, valueToTransform, isValueToTransformASchemaAndNotUndefined, transformedValue;
541
+ var _param, key, valueToTransform, shouldRunData, transformedValue;
542
542
  return _ts_generator(this, function(_state) {
543
543
  switch(_state.label){
544
544
  case 0:
545
545
  _param = _sliced_to_array(param, 2), key = _param[0], valueToTransform = _param[1];
546
- isValueToTransformASchemaAndNotUndefined = _instanceof(valueToTransform, _schema.default) && (value[key] !== undefined || valueToTransform.__defaultFunction);
547
- if (!isValueToTransformASchemaAndNotUndefined) return [
546
+ shouldRunData = (0, _utils.shouldRunDataOnComplexSchemas)(valueToTransform);
547
+ if (!shouldRunData) return [
548
548
  3,
549
549
  2
550
550
  ];
551
551
  return [
552
552
  4,
553
- valueToTransform.data(value[key])
553
+ valueToTransform.data(parsedValue[key])
554
554
  ];
555
555
  case 1:
556
556
  transformedValue = _state.sent();
@@ -650,5 +650,5 @@ function _transformSchemaAndCheckIfShouldBeHandledByFallbackOnComplexSchemas() {
650
650
  return _transformSchemaAndCheckIfShouldBeHandledByFallbackOnComplexSchemas.apply(this, arguments);
651
651
  }
652
652
  function shouldRunDataOnComplexSchemas(schema) {
653
- return typeof schema['__parsersToTransformValue'] === 'function' || typeof schema['__runBeforeParseAndData'] === 'function' || typeof schema['__toRepresentation'] === 'function' || typeof schema['__defaultFunction'] === 'function';
653
+ return schema['__parsers'].high.size > 0 || schema['__parsers'].medium.size > 0 || schema['__parsers'].low.size > 0 || schema['__parsers']._fallbacks.size > 0 || typeof schema['__runBeforeParseAndData'] === 'function' || typeof schema['__toRepresentation'] === 'function' || typeof schema['__defaultFunction'] === 'function';
654
654
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/domain.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/function.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/asker.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/child-process.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/files.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/os.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/constants.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/imports.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/commands/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/utils.d.ts","../../node_modules/@palmares/core/dist/cjs/types/commands/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/utils.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/settings.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/config.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/exceptions.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/default.d.ts","../../node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../src/exceptions.ts","../../src/adapter/types.ts","../../src/parsers/convert-from-string.ts","../../src/validators/object.ts","../../src/validators/types.ts","../../src/validators/utils.ts","../../src/schema/object.ts","../../src/validators/string.ts","../../src/schema/string.ts","../../src/schema/types.ts","../../src/validators/boolean.ts","../../src/schema/boolean.ts","../../src/constants.ts","../../src/parsers/convert-from-number.ts","../../src/parsers/index.ts","../../src/validators/number.ts","../../src/schema/number.ts","../../src/validators/schema.ts","../../src/utils.ts","../../src/schema/schema.ts","../../src/types.ts","../../src/adapter/fields/index.ts","../../src/adapter/fields/array.ts","../../src/adapter/fields/boolean.ts","../../src/adapter/fields/datetime.ts","../../src/adapter/fields/number.ts","../../src/adapter/fields/object.ts","../../src/adapter/fields/string.ts","../../src/adapter/fields/union.ts","../../src/adapter/index.ts","../../src/conf.ts","../../src/compile.ts","../../src/domain.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/field.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/big-auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/big-integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/boolean.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/char.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/date.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/decimal.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/enum.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/foreign-key.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/text.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/uuid.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/interfaces.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/commands/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/conf/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/domain/domain.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/app/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/domain.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/emitter/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/events/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/events/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/server.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/state.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/operation.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/fields.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/models.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/misc.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/migrate/migration.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/migrations.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/model.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/get.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/ordering.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/remove.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/search.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/set.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/field.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/date.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/decimal.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/big-integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/text.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/char.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/uuid.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/foreign-key.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/big-auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/translatable.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/boolean.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/enum.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/types/queries.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/manager.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/model.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/domain.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/interfaces.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/databases.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/constants.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/hash.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/models.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/index.d.ts","../../src/schema/index.ts","../../src/validators/array.ts","../../src/schema/array.ts","../../src/validators/datetime.ts","../../src/schema/datetime.ts","../../src/validators/union.ts","../../src/schema/union.ts","../../src/model.ts","../../src/index.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3042b4a690d1fe9df69b9aa3c6225d8420f652bdefa4d902362b589be6536dc1","01a237720141e2055693c39254f652105d42ee16c38b9f1b449260e3618e2b20","a4db3219f825f0d748b702f937a3e4ebd12963e19413e85b9471aeb0f7aa7090","c7c5a677878096a9177d199a2b7ff438193e81d30fb1b151274403802205a141","f6529a9314e8e9d690ac0b3230f453229994982b7037b1bcbafb3e85aae157cf","0cd8e23a995611a2b04cc7b800e46781a48d7c37d310d6a6f1dcb8f5532344f2","f58fb6a26801a7e7f097fb4e59f1a165f76e7e60282be20aa56d89fb03ff05e5","d96895c19557798dc543fa4028ffd44c27a5e4e6878191a6c60c28883519096c","cfa835a03ddcc02530e1a3736f2e27cdcaf963e4d1fdf0d7fe707de7213281a3","075f65dfee3811e518d915ba59d27cb60313273dc18a1a6ef323249209034396","79f7ea11520f86586c7f2755e4e7774ca30b601d1e9684aa342cd25e37d4049b","4565c828334d7b202d3db48066e58fa8f32d2cbc436d92313821e81b2d322ebf","94f45f1ee8224283867edf447bedfa1a32f92db30e7912c36351efb66753e7f9","958d6e09001834f4b00217b049f4f1e10ac4712071dcb3fbaf35a0e56d4b0fe2","01c72b652b3eec24efa38916cc5b957691308759ac89c63813c3fbd18f8dded8","3ef66661f6cd58d2dcc1d6a0fde3ea5e0f1f8319d9717900549831a2cc9d5820","3322ba283c004e5c794071f0230669d10b95a4874d6286fa114dd5a7f4b7ca50","d40df9ff452c6646d700d8dd8d0b62ee25a23d86ee061aecb11fe33cc085a700","7cb9da1ca4883f63f180d47fa2212c78f229079453b673f2dc0e9187fdcd108d","12db8b596cb244dd7c857c32a1e21550367c31b3ed43d6ae2cb804c59c030e9b","82ae6708dbdc05e161b395cb044867126ba64a54c567c3511df913c77eed7850","6b8521d07e2707137a7d0c756faebf3c215cb4050a111c40331074047b6858a2","b0608d97be740460ad7dec9aa656131ae22463c4928df72975e906e5bda37361","c85c790f335825b729b782cdafee1d83c0d0ba331982016b73ed9d066b54f098","ce717f162d27de6052c9dc94b84807438a5db657ce91a7486b9fd8b010bc8672","69bb80e8656f22085f5fa9544b868836ab9bef7521eedcd1672a6b08ceda09be","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6",{"version":"050b55c2f8ccc237ca4e802b9a5d4d5ec83c42ee38e3f4d415dff639193ab72a","signature":"f08b0270aa05d714ae0431e0132c31b78c9bf906aba93cd4d935938f54271698"},{"version":"024e2beab55f1431c4b6abc82aecd01209dbdec5c6ec266bc8b19478f0ac5391","signature":"c24428f32a1c978fb3bd59bb686b704ebf59bbe9097f7caa23105ab3558d1051"},{"version":"cf872575395b1948fd20853282c4807b4ff6f1e3e4582789ecec36c4003ae115","signature":"071f815f6fb28282cc7a76f730454668d66a6ae978abbae608ae10059eb85255"},{"version":"cfb06636cc616e8c4914e2a105e28f0474a49a3c713b5a1d95e447b9ce70f2a0","signature":"de0fe07002fdb3d5f27c5bb606208f0170533a5a7d1e55ae1c85f4842aa8965e"},"5be9fc014291d9d54cd0fb8c91880a4f8161be91775c64be1382935d58b24cb7",{"version":"e0f2d8892b8d34226eb15d9dbf316209e08de2b6b9db76c89df10821ee020c36","signature":"d89aec8e7be6c094821b36ac78c954e8c28167646d4045d6f9748cb1f0161726"},{"version":"c47edc3fa8584238e95248c217afc3e696cf672ca08811c001c61877d32c77d3","signature":"007ee57ece217b805495b7eb7a041e49f7c6a1b3206e6af2cb4c6aa3e06d2218"},{"version":"3c17aef5ce3ebdfad3496929c34f4e382c4eb6ca683340438d43737fb91e2745","signature":"55a58d51534689b1f1b4397b4f1097c1a06dff7efba2aae24ffffdf18f64da97"},{"version":"a908b285fc737990051d9ff6cea093d4e3981e6608b02fc40bb085e67e990be6","signature":"55c417f29064552b6cea45344e0ea3ab5df3ab00f2fd0db0f61b5e4b6705de33"},{"version":"28a07b3c266499a3eea34f8c01981cd0c324e99b83518ca93a1bafd8039cfcb1","signature":"5e55d01ec6d5d02b94e61a72a300eb634f19040d91446ca25b55ef28fddf84ef"},{"version":"b53ffa109b5aca17c1d6282315cc2d20f8e1b843cde3c5b303a92471006e2154","signature":"3ff18d390249eab2b36c0f2b0ff433cf83338db71f533f438399d0d3a96031b5"},{"version":"53fa66f9889015574b065ef4f498b78979fa35acad9b83f9db1e21114d7b101b","signature":"24642bf8adc87fcce65695a011f056bb10d63eafa47c88a6c9e876e607019a18"},{"version":"d516e36e06b5ef1d041c86e1792954a51dc3a5d4dd08d779b1dfc4bfb39ad07a","signature":"7af14e18e7e0d66506d57e502bc939fc6f9c63cbe4c1c612f0c7349e1b110703"},{"version":"bff0636355321f5c879a40604bd371a749594d8f400b0b3b96d7d96dc8358360","signature":"04dab4a1bd1332cde1d3eedde236aa655efd5dbb43ffe80fb91464f206446eaa"},"0856f6e69a8c4fe688f299f4f37714e07ce7f4e785aa4a96382f871eda3a7bfb",{"version":"0ca856141d10532bc7a5a64116c5fc5ac66d58f9eb9a6ceee749ffeb63644bac","signature":"cf8d932417e599559d33a18662eb6fbafb9e637ba3838f2be7512e4f2956def8"},{"version":"6a7e8f5f4ccaf7ebbba2867e946aac988e17388dc955ee61b1427f76b3d3cc54","signature":"6fb94496efaa40575fbbbc0bf7b7a1afac534e9052507e46c13b9e844c003fb8"},{"version":"04d0e9fbf8ef7aa39e651cdf95064e52b19d86a63ebacc62923cd070c9b5639c","signature":"562d8c997c576e23a6964e4e426985bef5ce36c17a68e5c34d6ba7d5977c14af"},{"version":"18f6ddd005755c5dc02095ebfa5c54b98868efc1dba7f95d2e294e76f789217d","signature":"a8955318a1654b99b480efd9b20251d91160473ccb8f325a9bd1f5316e3c31fa"},{"version":"2371877ea0e9e3a1320cf333c5e262ca9ce8d0f085a0a8631d704c91745fecf1","signature":"3a03e4338cb43810b84e314d2333b9cb75a3f2656d494f13c7b4c6f62c1e8a7c"},{"version":"44d4890ce25c23b5153c1ba33e887c51a542634f10a7e461fe5dc57e6f75ca5c","signature":"7aa48ce1addeab8a76985a06d3beff9b49f3d318a319a673748eb8e3c3401531"},{"version":"f8a1953f56317638ec9dc5d08bc9ac27f07be00c5cdd28b2305c7409b012dbe9","signature":"2d54e1629a8f5acf6201dc7e042d88824ef92e7163c41b05be491ce48eb85efb"},{"version":"a101789c80eaa9f2996132cf50218bc9682e2f2699cd864c0b6c304670115987","signature":"198a700f44abec8ccb7f4f8b4118d7448e5541a06623efc396ec4d115d19635c"},{"version":"acf8b93b3de89c7c81ea9036fcfd2f49f6712286fdb39efaadd3aaf18f51d1c9","signature":"27dd0686afae9c2f5e223f2ebaa26e17378c9c8cbdbd647c7eb846b80fbecef6"},{"version":"2abb038e50b6acef1aa5b4df07aab742130bccf0f686931849fb27c0075f411a","signature":"12ce9a9103df980c32088821145c5db762a11a9393285e855888690346705083"},{"version":"8cbb1e621b18a87a8edb8b0a69afbf992ab39acfd8b57f1ee2ce457d31f50e58","signature":"77f33890218e744b7634cec0e1d72577297af5f780c01bf3f38b5036bf300a05"},{"version":"6cd8f150605193ec24000271af86a69ecfbb4568485aee9581ce644bcdfef789","signature":"f5045dd4828c27a899913f8d8eca48ef9f63d25abbe6e392322f54f92ba5b459"},{"version":"f568383468a9ac8e24801348aaeb8d0687bc2db98fe6ee7cfe577458d657e573","signature":"f42a55c7933da62ad0305b889a9af1c743aae89fbeb554fd185b0d8b74c20936"},{"version":"2e5527414a756f056cb53ed3b04af2719be756a44335d9940e458173712a1fe4","signature":"62d1e06e313f96c712e8fc12a8e3f7ce5d9b5cdc8d95f4d40c9d7b04660ffc55"},{"version":"c63644e7d34c4b4efff6a96b4d64fb38d4be752dc4e2d06bff319943b5c36d17","signature":"2d69cb7f28dca25f59189b40358c57e22521a00eee304531b393d0b1f45bc83f"},{"version":"03e7c5618739ce12c7c352f921761b811fa588be11863b25ed297045c3ca8e3e","signature":"21adaedc9fa59a19fa3a27811f20c0476c83ddc54a490a30486d68402a3f45fa"},{"version":"40c849d8d9d56adc15e988e6e11646f241adb7d57f681fd0977f9cc57a30b5e0","signature":"fec99d2a45f47a98884cdc0c4222cea08b13285684dde9fd876328d14d8f8e56"},{"version":"468a2be112dafc566b9dc19b8f6034cce29373931a6057722d734a55f4dc754a","signature":"d72472939328ae4341cd7564c6d673451a0ffb71394c0249f775eb8742d24dea"},"bde53908b17e5f7094f1d8e8b4ab77ebe2cc8b2c82c8a06881b96da651a4b9d9","c1d05ded5f3709f5c7d32823d4625b0d79c5d8883386db21074770848c9da597","a3813d8510bc6ceebc72343b51b3a039033388a5df57e89c242aef8043085e9f","74cdb4bc62de295a1a26c8ff60bd949e70debcb0ad899e0243512a81513081a8","7b6130338e8acd24fdd791f2a2abd78bdc87f273b6d4dbcd0db00389e0a65843","8ce8b17da9bda0ed172e6017b4401f1523990912c64f5a8da2a2f9cd217f24f4","47a330ccc9b0d000df1cb286e88253d57a012980ae72bc4d9e4052ba781e7aaa","96771194d1cc39ad40b9fc8a53c400c261103f5696a14b0c5e81d78ed05fadb4","fccd40d38f2daef393e938bdcc2cbbc39d44cc8d89dc7b5278bbf078dff45c9e","3d59865de73b7af6dd05f782b257cb8e48d88daaf59b5f181e2cebfa35bb2f89","3f4215f28c9aff3b08d61d018216c4f2420424260d1c1cb644148f8f88fde966","78494d49e819287df7d9348a172491ca011c3a5aae07a72cc1279774a2250569","08e4bc97cf8cb954145bfeb24f4ec5f6b40d74a04a173f48f9641ff5414122ff","a425f5129a5933bf1e8ea12d3a2c28412fda2b270e2809a94e662d67143dca0a","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6","32d15896a1619e16086d464679ef67cc31e86db805adb38392812ffaa55166e4","958d6e09001834f4b00217b049f4f1e10ac4712071dcb3fbaf35a0e56d4b0fe2","94f45f1ee8224283867edf447bedfa1a32f92db30e7912c36351efb66753e7f9","01a237720141e2055693c39254f652105d42ee16c38b9f1b449260e3618e2b20","01c72b652b3eec24efa38916cc5b957691308759ac89c63813c3fbd18f8dded8","99141b81692bf37cbfc53b470b625e65fca7ce443f1625aed0bfc1c402068cce","8a8897f18b7de2542b9e059b7505648084c418a95c5518acbeb21a77244b1012","6499284369d8f7276f33ac96476f2e3420a357ad14c15f332ae49a170bca39b4","2015f5f6d44f55422d301534c2056c2a1bf27689b15104c2ea9d0b0b31107308","d85642784e55799cf4af686f8e67d6100b229cfbb47b47c91981b18f41711d69","b4308547dc22bc5a3c5428157e64cd3c2e2e5325ba82cca7219bd7aa41487981","33c7b53b071b933a8bf0de7f6c53f3bffa4a67d52fc18ccc2f0d1f2f1f09c9dd","bb7965c2bfe055043b78e04e8396496ec2e2e58dc8f7ece608a67395675c1d6c","4e25acc58e225edd3a4f31e802bca31fb5040e4feea73f9e7999c62b7717e8c8","8e2c9cd27674190078619c19e26da79298d8bda0ff401d4ffa61757a5a248441","1f44bafd057986dcf564f6d531cd2b5a9ebf6aa2271c15ebbce7738fe833bfc8","b376de92e8e12be903c4925a315b02af70ea51d14f3d0c279611f78448492dfb","83fe968826873a7f7629798b449db1001fe6e2f58d783360ae1f238f61671bed","2ed1f2281fd0f1bee06e7142ad97283d47d7af7b32bb93489d5b25e5d518eb51","d81922c628cb0e469bbde8ad19a400a77b060b4c7f2d8eb2e53c4e92f518925a","d20290e49b073235690f1548974b5d03cfee298a789e2c6fcf8878a5ecf23c62","5681889d3cc2db6094f60b8da281a29a099c55e2dac78cd3c3f96b39d479f178","50bdc345addac139a25ac057bb1028607e53ef6443bfcaec72027d816d47204c","0a5da10e3b7cead3d1e637847a7fa189ca191ac721ea761f6f272be2eeae0267","62c772e685f8d06fab1ae86812db96321cd7f0a3b40ab15a3454c1f0a0735ba5","813e019903b62b7fa528e6a6d4321c3606d98dfb5e98352236059841c73880f8","d5db6dd3da865fc7cb043d881903ed9b15ff8534e19ebffc9de7a692c583848b","99c1dcd5e2fca09a5800ca4a2eb7e88e74f49375868c3c1e956076e7a7c75567","f5037c40d0c2d9da0c3d70b5b9cbf85167e0d2b17597a16bc4bb7d9b59ab4303","0cdbe50b15417f381dd8a4aeb84196448d2d9f3d383c2cdaf5ddbd372401be9a","da231bd4c57fbcfb71d55321b8bbfef422a988e0af94ecc3d41943aeeaf218c7","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6","a948cca22b7c8fc2e7e558b90789c57a8acfbe9a190baad3619a2e943bf48cd6","b610fd36cf6121e7607d9603dfa3f0ce9efcf5a342e7b17caea1e9eb7a167b40","b144f732a7a9cfc77a08cc9f19d2a06f20856ff4c83c79fa78c2cff7775157ab","ac681739eee260085e5d4d07963e6c24a276f1ce025a8d5878c432de0d833b39","e2044acc406facfce3927da047bd8046b211638c486de354f282bbe59f5b0dd7","a52685cb3de85964fba7955ae10f5261b54bc24c8af99775921b3ab800a4192b","8325c9cdcda5a6001b4e362c3760a2e1b0dc7e1feeef1cbf90bae532abc9b9f0","0ae65a92735aaa0ce12230a2e89e9b5f6f775376226f7fc1479b50f1df257eb6","feb2b8eacc8f291823b72166e91944bed3be884aef86e9475a511c8e01b9d2b6","eec143c39720db1dfcec2f623c9fcbb93ccf2829b7eb6907b3c6f3ef1fd34a91","7cc3ba3306a2fe3c603ad3663e301690d7ae4d47b654a558ed5f16ce93e51d4c","098654a8cd73f932616ba0e0d701ab294d99b7d1e70f869383ede5f74cf33689","0fcb7d63c64600b565d327c1cf184298df379dde61283ec11b0e0192a7710d09","c09969c2984a7cc68c54a7f25722b56eb9976e4a42b517790ee589e7c6e50f5e","c6e6dcc3f5f41b30466e70dfbbf99c89b80b15450c09b6038859db07dcd64ea8","62e44d05aae9b69bfb9782fa93b701663f2b8d911a8163ba359daec98e7d55da","00adf7f72a5fb0e386a298ffcb3981647fcb62053bc6dae7b3b19852b9e485d6","d2d3203c14f0198f38598a8cab270d12951b61c6786ac48a483792aea8e8aa58","a68650d5ed89525f103a9e5b8aa94d093d3053c551637723b867e0b1ac039421","3f41938b18cc1d510042b2f92c261e54a8a3c97460a11644603c7b16344edcf2","0a28c1d1ab6a3a976ca946277046760d555a466bcf6aadf115f826925e203b32","b0969a2e2b1a2825210e4dc56a607a5fc1cb64a0802ae67da268775903a08332","5ed3aa40e71b7bc7b9b6a59af640db985055792295c2e809fd444dff0db0b839","bc32a7175ebb4ba044f524face70f4a59d0f8ba862e4da2bf2cb04e001a0ab12","781c3cedf7ad9380f849875cd98b6028813d0e4bb22568a0da409f545ab4932e","84eb9858e06e943f5a6617b602c4c60e0258045cf64f31c1c47c40c2dbeef189","73ed178d16ad1a0cb9724465d976b4b9a652eee00d49867421c80863b3412cab","86ceb8f86cc4e5b43f470aedc68214aa3fea29a7065c822b1a1a3634986af03c","b46c487b1bee093b09005d08965ef940c248f53b77c9882e105a078a6428bf8b",{"version":"3b0a2745b5312c0e2f563f0ac1339c24804aa1933b8ec54563be1b7bb562b3e0","signature":"d3c8e9376e09edab61ae71c582f6b51e1fc77375dabe647a735518063621cb7a"},{"version":"e01179e6104485317205831067a33a065365b7570552426a2d63453fab951331","signature":"935e2c6b0ded454cbf283b0b0367eda919cdc421e0754cd9e34fab2ae8567e74"},{"version":"590aaba8b7f99f1d648ff12a446c216b73a6bbd62c04264d55a853b4631216f5","signature":"efd2bcf30075b36d065734e7c5349ddeafb55fd45e396f7332e3427e22b81afb"},{"version":"8f721928bc5bb37edcb2bf1f1a0391fe00febcfe12fe00d0b895857934247415","signature":"89b5253aa6b9421c708cefe1e9f42d8a4c391f3ce9c5964eec7ebe0f4f54fa06"},{"version":"6a2da7cf4dcc4c24fdaf808f11b7c1438d226a5ce1ec8d246d6e18304b1453ee","signature":"562c6f64bf9fbd48d78f4d28a24cde63c0ed7ccd6b8d003648acb43c69ec27c9"},{"version":"142aaf4e2f883a6e5d6d96096db315990a4c408c3ff19aecebf8b7d2eadf26e9","signature":"4c6ecc21a27bac9c0318ea981acf6968604e208701473148eab64d53e49c138f"},{"version":"c66ee7dc0073aeda2dcbd1fb85fdfcf19c7e5a04798a4e39616bc4fe1c89b018","signature":"111b1b6b43903ef876d20fc3519abeab77849e07aa8bb5bd7d644f8058d7dddd"},{"version":"cd38a64a5b25267c37720dbc27bd228e72161e83302868e3fee93ffb3581d552","signature":"903d54abe1abb36e22c80ceb6a37b96a9a46d73d180c5c585ffca372658d36d3"},{"version":"2ae470ed08c9df2582fe67f6e4ced64089058f4d1c9237338333dd8c556be69c","signature":"c99a8125e44a0a37f0a03fa1f778894e5557c0066d303187a0ee70dd107d0e98"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"9d8f6e55f5a038f4dca0cacd6566f9b82c576eee35c694b89230e9dec1895a77","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true},{"version":"d29c2ed9e4bada9599c5f1e02d53ef15e93dab1496bb44b5863d3a24ad0bd44f","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"a321f588d51d742955993766d2969ed19006110a080572bfd24054178a5be640","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"21fcdcb618236f0feaca7e511e2da10c19970f86e09c934cef2d45b340ad92b5","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"b33379077284c9e55d2410d814b71b15522c5f71f9e93e15a8c3c41d463b00f6",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc"],"root":[[99,131],[208,216]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./types","rootDir":"../../src","skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[217],[220],[221,226,255],[222,227,233,234,241,252,263],[222,223,233,241],[224,264],[225,226,234,242],[226,252,260],[227,229,233,241],[220,228],[229,230],[233],[231,233],[220,233],[233,234,235,252,263],[233,234,235,248,252,255],[221,268],[229,233,236,241,252,263],[233,234,236,237,241,252,260,263],[236,238,252,260,263],[217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270],[233,239],[240,263,268],[229,233,241,252],[242],[243],[220,244],[217,218,220,221,222,223,224,225,226,227,228,229,230,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269],[246],[247],[233,248,249],[248,250,264,266],[221,233,252,253,254,255],[221,252,254],[252,253],[255],[256],[217,252],[233,258,259],[258,259],[226,241,252,260],[261],[241,262],[221,236,247,263],[226,264],[252,265],[240,266],[267],[221,226,233,235,244,252,263,266,268],[252,269],[73,84,85],[86],[84,85,86,87],[79,84,85],[73,74,83,84,86],[73,74,84],[79,84],[72,73,74,79,83],[72,73,84,98],[72,85],[72,73,85],[73,74],[73,84,86],[73,79,84,85],[72,79,80,82,83,84,85,86,87,88,89,90,91,92,93,96,97],[75,76,77,78],[79],[81,94,95],[80,81,82],[158,177,198,201],[98,158,199,207],[207],[133,207],[132,133,134,135,136,137,138,139,140,141,142,143,144,177,194,199],[145,158,168,169,175,176,198],[158,167,177,194],[177,194,198,207],[177,196,198],[170,171,172,173,174],[177],[196],[145,177,199,207],[132,133,134,135,136,137,138,139,140,141,142,143,144,145,158,166,167,168,169,170,171,172,173,174,175,176,177,194,196,197,199,200,201,202,206],[98,159,199,207],[159,160,161,162,167,177,194],[162,163,164,165],[159,160,162,167,177],[159,160,161,162,167,177,196],[159,160,161,167,177],[159,162,167,177,179,194,196],[159,166,177],[158,159,177],[158,166,198,199],[158,179,180],[158,179,180,185],[98,158,179,180],[158,179,196,207],[158,177,179,180,198,207],[179,180,181,182,183,184,185,186,187,188,189,190,191,192,193],[180],[98,145,177,180,198],[194,197,198],[98,177,196,198],[158,177,179,194,196,197],[158,177,194,195,197,198],[194,198],[157,177,199],[179,203,204,205],[196,199],[98,147,151],[153,154],[155],[147,152,153,155,156],[98],[153,154,155],[100,117,120],[99,100,117,120,128],[99,100,117,119,128],[99,100,120,121,122,123,124,125,126,127],[117,118,119],[98,118,129],[99,128],[98,119,129],[98,100,105,107,108,110,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,207,208,210,212,214,215],[99,105,107,108,110,118,207,208,210,212,214],[118],[101,112],[104,108,116,117,118,209],[101,108,109,116,117,118],[108,116,117,118,211],[115],[108,111,113,114,116,117,118],[102,104,108,117,118,120],[100,104,108,117,120,128,129],[106,108,116,117,118],[100,103,104,105,107,110,118,120,128],[98,104,107,108,117,118,120,128,129,208,213],[103,118,128],[100,104,108,116,118,119,120,128,129],[108,118,210],[108,118],[108,118,212],[108,115,118],[100,107,108,110,115,118],[107,108,118],[100,103,108,118]],"referencedMap":[[217,1],[218,1],[220,2],[221,3],[222,4],[223,5],[224,6],[225,7],[226,8],[227,9],[228,10],[229,11],[230,11],[232,12],[231,13],[233,14],[234,15],[235,16],[219,17],[236,18],[237,19],[238,20],[271,21],[239,22],[240,23],[241,24],[242,25],[243,26],[244,27],[245,28],[246,29],[247,30],[248,31],[249,31],[250,32],[252,33],[254,34],[253,35],[255,36],[256,37],[257,38],[258,39],[259,40],[260,41],[261,42],[262,43],[263,44],[264,45],[265,46],[266,47],[267,48],[268,49],[269,50],[86,51],[93,52],[88,53],[89,54],[85,55],[91,56],[92,57],[84,58],[97,59],[73,60],[74,61],[87,62],[72,63],[90,64],[98,65],[79,66],[94,67],[96,68],[83,69],[202,70],[200,71],[132,72],[134,73],[135,72],[136,72],[137,72],[138,72],[139,72],[140,72],[133,72],[141,72],[145,74],[142,72],[143,72],[144,72],[177,75],[168,76],[169,77],[170,78],[175,79],[172,80],[173,81],[174,80],[176,82],[207,83],[201,84],[163,85],[166,86],[165,87],[164,88],[162,89],[160,90],[167,91],[161,92],[159,93],[189,94],[190,94],[184,94],[192,94],[186,95],[181,94],[182,94],[193,96],[180,97],[188,98],[194,99],[183,94],[185,94],[191,100],[179,101],[187,95],[199,102],[197,103],[198,104],[196,105],[195,106],[158,107],[206,108],[205,109],[178,65],[152,110],[155,111],[154,112],[157,113],[147,114],[156,115],[151,51],[148,55],[149,58],[150,60],[146,65],[121,116],[122,117],[123,117],[120,118],[124,117],[125,117],[126,117],[127,117],[128,119],[100,120],[130,121],[129,122],[131,123],[216,124],[215,125],[112,126],[101,126],[113,127],[210,128],[110,129],[212,130],[208,131],[115,132],[105,133],[118,134],[107,135],[108,136],[214,137],[119,138],[117,139],[209,140],[109,141],[211,142],[114,143],[102,141],[116,144],[106,145],[213,141],[104,146]]},"version":"5.5.4"}
1
+ {"program":{"fileNames":["../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.string.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.object.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/domain.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/function.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/asker.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/child-process.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/files.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/os.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std-adapter/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/constants.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/imports.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/utils/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/commands/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/utils.d.ts","../../node_modules/@palmares/core/dist/cjs/types/commands/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/utils.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/conf/settings.d.ts","../../node_modules/@palmares/core/dist/cjs/types/app/types.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/config.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/exceptions.d.ts","../../node_modules/@palmares/core/dist/cjs/types/std/index.d.ts","../../node_modules/@palmares/core/dist/cjs/types/domain/default.d.ts","../../node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../src/exceptions.ts","../../src/adapter/types.ts","../../src/parsers/convert-from-string.ts","../../src/validators/object.ts","../../src/validators/types.ts","../../src/validators/utils.ts","../../src/schema/object.ts","../../src/validators/string.ts","../../src/schema/string.ts","../../src/schema/types.ts","../../src/validators/boolean.ts","../../src/schema/boolean.ts","../../src/constants.ts","../../src/parsers/convert-from-number.ts","../../src/parsers/index.ts","../../src/validators/number.ts","../../src/schema/number.ts","../../src/validators/schema.ts","../../src/utils.ts","../../src/schema/schema.ts","../../src/types.ts","../../src/adapter/fields/index.ts","../../src/adapter/fields/array.ts","../../src/adapter/fields/boolean.ts","../../src/adapter/fields/datetime.ts","../../src/adapter/fields/number.ts","../../src/adapter/fields/object.ts","../../src/adapter/fields/string.ts","../../src/adapter/fields/union.ts","../../src/adapter/index.ts","../../src/conf.ts","../../src/compile.ts","../../src/domain.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/field.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/big-auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/big-integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/boolean.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/char.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/date.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/decimal.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/enum.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/foreign-key.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/text.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/uuid.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/fields/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/interfaces.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/commands/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/conf/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/domain/domain.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/node_modules/@palmares/core/dist/cjs/types/app/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/domain.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/emitter/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/events/types.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/events/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/server.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/events/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/state.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/operation.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/fields.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/models.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/misc.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/actions/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/migrations/migrate/migration.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/migrations.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/model.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/get.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/ordering.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/remove.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/search.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/set.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/query/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/engine/index.d.ts","../../node_modules/@palmares/databases/node_modules/@palmares/core/dist/cjs/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/types.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/field.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/date.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/decimal.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/big-integer.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/text.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/char.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/uuid.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/foreign-key.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/big-auto.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/translatable.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/boolean.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/enum.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/fields/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/types/queries.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/types/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/manager.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/model.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/models/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/domain.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/interfaces.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/databases.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/constants.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/hash.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/models.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/utils/index.d.ts","../../node_modules/@palmares/databases/dist/cjs/types/index.d.ts","../../src/schema/index.ts","../../src/validators/array.ts","../../src/schema/array.ts","../../src/validators/datetime.ts","../../src/schema/datetime.ts","../../src/validators/union.ts","../../src/schema/union.ts","../../src/model.ts","../../src/index.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"3042b4a690d1fe9df69b9aa3c6225d8420f652bdefa4d902362b589be6536dc1","01a237720141e2055693c39254f652105d42ee16c38b9f1b449260e3618e2b20","a4db3219f825f0d748b702f937a3e4ebd12963e19413e85b9471aeb0f7aa7090","c7c5a677878096a9177d199a2b7ff438193e81d30fb1b151274403802205a141","f6529a9314e8e9d690ac0b3230f453229994982b7037b1bcbafb3e85aae157cf","0cd8e23a995611a2b04cc7b800e46781a48d7c37d310d6a6f1dcb8f5532344f2","f58fb6a26801a7e7f097fb4e59f1a165f76e7e60282be20aa56d89fb03ff05e5","d96895c19557798dc543fa4028ffd44c27a5e4e6878191a6c60c28883519096c","cfa835a03ddcc02530e1a3736f2e27cdcaf963e4d1fdf0d7fe707de7213281a3","075f65dfee3811e518d915ba59d27cb60313273dc18a1a6ef323249209034396","79f7ea11520f86586c7f2755e4e7774ca30b601d1e9684aa342cd25e37d4049b","4565c828334d7b202d3db48066e58fa8f32d2cbc436d92313821e81b2d322ebf","94f45f1ee8224283867edf447bedfa1a32f92db30e7912c36351efb66753e7f9","958d6e09001834f4b00217b049f4f1e10ac4712071dcb3fbaf35a0e56d4b0fe2","01c72b652b3eec24efa38916cc5b957691308759ac89c63813c3fbd18f8dded8","3ef66661f6cd58d2dcc1d6a0fde3ea5e0f1f8319d9717900549831a2cc9d5820","3322ba283c004e5c794071f0230669d10b95a4874d6286fa114dd5a7f4b7ca50","d40df9ff452c6646d700d8dd8d0b62ee25a23d86ee061aecb11fe33cc085a700","7cb9da1ca4883f63f180d47fa2212c78f229079453b673f2dc0e9187fdcd108d","12db8b596cb244dd7c857c32a1e21550367c31b3ed43d6ae2cb804c59c030e9b","82ae6708dbdc05e161b395cb044867126ba64a54c567c3511df913c77eed7850","6b8521d07e2707137a7d0c756faebf3c215cb4050a111c40331074047b6858a2","b0608d97be740460ad7dec9aa656131ae22463c4928df72975e906e5bda37361","c85c790f335825b729b782cdafee1d83c0d0ba331982016b73ed9d066b54f098","ce717f162d27de6052c9dc94b84807438a5db657ce91a7486b9fd8b010bc8672","69bb80e8656f22085f5fa9544b868836ab9bef7521eedcd1672a6b08ceda09be","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6",{"version":"050b55c2f8ccc237ca4e802b9a5d4d5ec83c42ee38e3f4d415dff639193ab72a","signature":"f08b0270aa05d714ae0431e0132c31b78c9bf906aba93cd4d935938f54271698"},{"version":"024e2beab55f1431c4b6abc82aecd01209dbdec5c6ec266bc8b19478f0ac5391","signature":"c24428f32a1c978fb3bd59bb686b704ebf59bbe9097f7caa23105ab3558d1051"},{"version":"cf872575395b1948fd20853282c4807b4ff6f1e3e4582789ecec36c4003ae115","signature":"071f815f6fb28282cc7a76f730454668d66a6ae978abbae608ae10059eb85255"},{"version":"cfb06636cc616e8c4914e2a105e28f0474a49a3c713b5a1d95e447b9ce70f2a0","signature":"de0fe07002fdb3d5f27c5bb606208f0170533a5a7d1e55ae1c85f4842aa8965e"},"5be9fc014291d9d54cd0fb8c91880a4f8161be91775c64be1382935d58b24cb7",{"version":"e0f2d8892b8d34226eb15d9dbf316209e08de2b6b9db76c89df10821ee020c36","signature":"d89aec8e7be6c094821b36ac78c954e8c28167646d4045d6f9748cb1f0161726"},{"version":"a6d6ef6963551c28ccc97c08272c4e672b96d34b73e211d5399e6196405f90af","signature":"007ee57ece217b805495b7eb7a041e49f7c6a1b3206e6af2cb4c6aa3e06d2218"},{"version":"3c17aef5ce3ebdfad3496929c34f4e382c4eb6ca683340438d43737fb91e2745","signature":"55a58d51534689b1f1b4397b4f1097c1a06dff7efba2aae24ffffdf18f64da97"},{"version":"a908b285fc737990051d9ff6cea093d4e3981e6608b02fc40bb085e67e990be6","signature":"55c417f29064552b6cea45344e0ea3ab5df3ab00f2fd0db0f61b5e4b6705de33"},{"version":"28a07b3c266499a3eea34f8c01981cd0c324e99b83518ca93a1bafd8039cfcb1","signature":"5e55d01ec6d5d02b94e61a72a300eb634f19040d91446ca25b55ef28fddf84ef"},{"version":"b53ffa109b5aca17c1d6282315cc2d20f8e1b843cde3c5b303a92471006e2154","signature":"3ff18d390249eab2b36c0f2b0ff433cf83338db71f533f438399d0d3a96031b5"},{"version":"53fa66f9889015574b065ef4f498b78979fa35acad9b83f9db1e21114d7b101b","signature":"24642bf8adc87fcce65695a011f056bb10d63eafa47c88a6c9e876e607019a18"},{"version":"d516e36e06b5ef1d041c86e1792954a51dc3a5d4dd08d779b1dfc4bfb39ad07a","signature":"7af14e18e7e0d66506d57e502bc939fc6f9c63cbe4c1c612f0c7349e1b110703"},{"version":"bff0636355321f5c879a40604bd371a749594d8f400b0b3b96d7d96dc8358360","signature":"04dab4a1bd1332cde1d3eedde236aa655efd5dbb43ffe80fb91464f206446eaa"},"0856f6e69a8c4fe688f299f4f37714e07ce7f4e785aa4a96382f871eda3a7bfb",{"version":"0ca856141d10532bc7a5a64116c5fc5ac66d58f9eb9a6ceee749ffeb63644bac","signature":"cf8d932417e599559d33a18662eb6fbafb9e637ba3838f2be7512e4f2956def8"},{"version":"6a7e8f5f4ccaf7ebbba2867e946aac988e17388dc955ee61b1427f76b3d3cc54","signature":"6fb94496efaa40575fbbbc0bf7b7a1afac534e9052507e46c13b9e844c003fb8"},{"version":"04d0e9fbf8ef7aa39e651cdf95064e52b19d86a63ebacc62923cd070c9b5639c","signature":"562d8c997c576e23a6964e4e426985bef5ce36c17a68e5c34d6ba7d5977c14af"},{"version":"1543b52618d1688924203efcc9e91d4d84b0aa8890412cfa99c18e50c9dad6aa","signature":"a8955318a1654b99b480efd9b20251d91160473ccb8f325a9bd1f5316e3c31fa"},{"version":"2371877ea0e9e3a1320cf333c5e262ca9ce8d0f085a0a8631d704c91745fecf1","signature":"3a03e4338cb43810b84e314d2333b9cb75a3f2656d494f13c7b4c6f62c1e8a7c"},{"version":"44d4890ce25c23b5153c1ba33e887c51a542634f10a7e461fe5dc57e6f75ca5c","signature":"7aa48ce1addeab8a76985a06d3beff9b49f3d318a319a673748eb8e3c3401531"},{"version":"f8a1953f56317638ec9dc5d08bc9ac27f07be00c5cdd28b2305c7409b012dbe9","signature":"2d54e1629a8f5acf6201dc7e042d88824ef92e7163c41b05be491ce48eb85efb"},{"version":"a101789c80eaa9f2996132cf50218bc9682e2f2699cd864c0b6c304670115987","signature":"198a700f44abec8ccb7f4f8b4118d7448e5541a06623efc396ec4d115d19635c"},{"version":"acf8b93b3de89c7c81ea9036fcfd2f49f6712286fdb39efaadd3aaf18f51d1c9","signature":"27dd0686afae9c2f5e223f2ebaa26e17378c9c8cbdbd647c7eb846b80fbecef6"},{"version":"2abb038e50b6acef1aa5b4df07aab742130bccf0f686931849fb27c0075f411a","signature":"12ce9a9103df980c32088821145c5db762a11a9393285e855888690346705083"},{"version":"8cbb1e621b18a87a8edb8b0a69afbf992ab39acfd8b57f1ee2ce457d31f50e58","signature":"77f33890218e744b7634cec0e1d72577297af5f780c01bf3f38b5036bf300a05"},{"version":"6cd8f150605193ec24000271af86a69ecfbb4568485aee9581ce644bcdfef789","signature":"f5045dd4828c27a899913f8d8eca48ef9f63d25abbe6e392322f54f92ba5b459"},{"version":"f568383468a9ac8e24801348aaeb8d0687bc2db98fe6ee7cfe577458d657e573","signature":"f42a55c7933da62ad0305b889a9af1c743aae89fbeb554fd185b0d8b74c20936"},{"version":"2e5527414a756f056cb53ed3b04af2719be756a44335d9940e458173712a1fe4","signature":"62d1e06e313f96c712e8fc12a8e3f7ce5d9b5cdc8d95f4d40c9d7b04660ffc55"},{"version":"c63644e7d34c4b4efff6a96b4d64fb38d4be752dc4e2d06bff319943b5c36d17","signature":"2d69cb7f28dca25f59189b40358c57e22521a00eee304531b393d0b1f45bc83f"},{"version":"03e7c5618739ce12c7c352f921761b811fa588be11863b25ed297045c3ca8e3e","signature":"21adaedc9fa59a19fa3a27811f20c0476c83ddc54a490a30486d68402a3f45fa"},{"version":"40c849d8d9d56adc15e988e6e11646f241adb7d57f681fd0977f9cc57a30b5e0","signature":"fec99d2a45f47a98884cdc0c4222cea08b13285684dde9fd876328d14d8f8e56"},{"version":"468a2be112dafc566b9dc19b8f6034cce29373931a6057722d734a55f4dc754a","signature":"d72472939328ae4341cd7564c6d673451a0ffb71394c0249f775eb8742d24dea"},"bde53908b17e5f7094f1d8e8b4ab77ebe2cc8b2c82c8a06881b96da651a4b9d9","c1d05ded5f3709f5c7d32823d4625b0d79c5d8883386db21074770848c9da597","a3813d8510bc6ceebc72343b51b3a039033388a5df57e89c242aef8043085e9f","74cdb4bc62de295a1a26c8ff60bd949e70debcb0ad899e0243512a81513081a8","7b6130338e8acd24fdd791f2a2abd78bdc87f273b6d4dbcd0db00389e0a65843","8ce8b17da9bda0ed172e6017b4401f1523990912c64f5a8da2a2f9cd217f24f4","47a330ccc9b0d000df1cb286e88253d57a012980ae72bc4d9e4052ba781e7aaa","96771194d1cc39ad40b9fc8a53c400c261103f5696a14b0c5e81d78ed05fadb4","fccd40d38f2daef393e938bdcc2cbbc39d44cc8d89dc7b5278bbf078dff45c9e","3d59865de73b7af6dd05f782b257cb8e48d88daaf59b5f181e2cebfa35bb2f89","3f4215f28c9aff3b08d61d018216c4f2420424260d1c1cb644148f8f88fde966","78494d49e819287df7d9348a172491ca011c3a5aae07a72cc1279774a2250569","08e4bc97cf8cb954145bfeb24f4ec5f6b40d74a04a173f48f9641ff5414122ff","a425f5129a5933bf1e8ea12d3a2c28412fda2b270e2809a94e662d67143dca0a","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6","32d15896a1619e16086d464679ef67cc31e86db805adb38392812ffaa55166e4","958d6e09001834f4b00217b049f4f1e10ac4712071dcb3fbaf35a0e56d4b0fe2","94f45f1ee8224283867edf447bedfa1a32f92db30e7912c36351efb66753e7f9","01a237720141e2055693c39254f652105d42ee16c38b9f1b449260e3618e2b20","01c72b652b3eec24efa38916cc5b957691308759ac89c63813c3fbd18f8dded8","99141b81692bf37cbfc53b470b625e65fca7ce443f1625aed0bfc1c402068cce","8a8897f18b7de2542b9e059b7505648084c418a95c5518acbeb21a77244b1012","6499284369d8f7276f33ac96476f2e3420a357ad14c15f332ae49a170bca39b4","2015f5f6d44f55422d301534c2056c2a1bf27689b15104c2ea9d0b0b31107308","d85642784e55799cf4af686f8e67d6100b229cfbb47b47c91981b18f41711d69","b4308547dc22bc5a3c5428157e64cd3c2e2e5325ba82cca7219bd7aa41487981","33c7b53b071b933a8bf0de7f6c53f3bffa4a67d52fc18ccc2f0d1f2f1f09c9dd","bb7965c2bfe055043b78e04e8396496ec2e2e58dc8f7ece608a67395675c1d6c","4e25acc58e225edd3a4f31e802bca31fb5040e4feea73f9e7999c62b7717e8c8","8e2c9cd27674190078619c19e26da79298d8bda0ff401d4ffa61757a5a248441","1f44bafd057986dcf564f6d531cd2b5a9ebf6aa2271c15ebbce7738fe833bfc8","b376de92e8e12be903c4925a315b02af70ea51d14f3d0c279611f78448492dfb","83fe968826873a7f7629798b449db1001fe6e2f58d783360ae1f238f61671bed","2ed1f2281fd0f1bee06e7142ad97283d47d7af7b32bb93489d5b25e5d518eb51","d81922c628cb0e469bbde8ad19a400a77b060b4c7f2d8eb2e53c4e92f518925a","d20290e49b073235690f1548974b5d03cfee298a789e2c6fcf8878a5ecf23c62","5681889d3cc2db6094f60b8da281a29a099c55e2dac78cd3c3f96b39d479f178","50bdc345addac139a25ac057bb1028607e53ef6443bfcaec72027d816d47204c","0a5da10e3b7cead3d1e637847a7fa189ca191ac721ea761f6f272be2eeae0267","62c772e685f8d06fab1ae86812db96321cd7f0a3b40ab15a3454c1f0a0735ba5","813e019903b62b7fa528e6a6d4321c3606d98dfb5e98352236059841c73880f8","d5db6dd3da865fc7cb043d881903ed9b15ff8534e19ebffc9de7a692c583848b","99c1dcd5e2fca09a5800ca4a2eb7e88e74f49375868c3c1e956076e7a7c75567","f5037c40d0c2d9da0c3d70b5b9cbf85167e0d2b17597a16bc4bb7d9b59ab4303","0cdbe50b15417f381dd8a4aeb84196448d2d9f3d383c2cdaf5ddbd372401be9a","da231bd4c57fbcfb71d55321b8bbfef422a988e0af94ecc3d41943aeeaf218c7","34576bad4c655cec897276886ac6e26e757df4593f97cde31561ad0d71b916f6","a948cca22b7c8fc2e7e558b90789c57a8acfbe9a190baad3619a2e943bf48cd6","b610fd36cf6121e7607d9603dfa3f0ce9efcf5a342e7b17caea1e9eb7a167b40","b144f732a7a9cfc77a08cc9f19d2a06f20856ff4c83c79fa78c2cff7775157ab","ac681739eee260085e5d4d07963e6c24a276f1ce025a8d5878c432de0d833b39","e2044acc406facfce3927da047bd8046b211638c486de354f282bbe59f5b0dd7","a52685cb3de85964fba7955ae10f5261b54bc24c8af99775921b3ab800a4192b","8325c9cdcda5a6001b4e362c3760a2e1b0dc7e1feeef1cbf90bae532abc9b9f0","0ae65a92735aaa0ce12230a2e89e9b5f6f775376226f7fc1479b50f1df257eb6","feb2b8eacc8f291823b72166e91944bed3be884aef86e9475a511c8e01b9d2b6","eec143c39720db1dfcec2f623c9fcbb93ccf2829b7eb6907b3c6f3ef1fd34a91","7cc3ba3306a2fe3c603ad3663e301690d7ae4d47b654a558ed5f16ce93e51d4c","098654a8cd73f932616ba0e0d701ab294d99b7d1e70f869383ede5f74cf33689","0fcb7d63c64600b565d327c1cf184298df379dde61283ec11b0e0192a7710d09","c09969c2984a7cc68c54a7f25722b56eb9976e4a42b517790ee589e7c6e50f5e","c6e6dcc3f5f41b30466e70dfbbf99c89b80b15450c09b6038859db07dcd64ea8","62e44d05aae9b69bfb9782fa93b701663f2b8d911a8163ba359daec98e7d55da","00adf7f72a5fb0e386a298ffcb3981647fcb62053bc6dae7b3b19852b9e485d6","d2d3203c14f0198f38598a8cab270d12951b61c6786ac48a483792aea8e8aa58","a68650d5ed89525f103a9e5b8aa94d093d3053c551637723b867e0b1ac039421","3f41938b18cc1d510042b2f92c261e54a8a3c97460a11644603c7b16344edcf2","0a28c1d1ab6a3a976ca946277046760d555a466bcf6aadf115f826925e203b32","b0969a2e2b1a2825210e4dc56a607a5fc1cb64a0802ae67da268775903a08332","5ed3aa40e71b7bc7b9b6a59af640db985055792295c2e809fd444dff0db0b839","bc32a7175ebb4ba044f524face70f4a59d0f8ba862e4da2bf2cb04e001a0ab12","781c3cedf7ad9380f849875cd98b6028813d0e4bb22568a0da409f545ab4932e","84eb9858e06e943f5a6617b602c4c60e0258045cf64f31c1c47c40c2dbeef189","73ed178d16ad1a0cb9724465d976b4b9a652eee00d49867421c80863b3412cab","86ceb8f86cc4e5b43f470aedc68214aa3fea29a7065c822b1a1a3634986af03c","b46c487b1bee093b09005d08965ef940c248f53b77c9882e105a078a6428bf8b",{"version":"3b0a2745b5312c0e2f563f0ac1339c24804aa1933b8ec54563be1b7bb562b3e0","signature":"d3c8e9376e09edab61ae71c582f6b51e1fc77375dabe647a735518063621cb7a"},{"version":"e01179e6104485317205831067a33a065365b7570552426a2d63453fab951331","signature":"935e2c6b0ded454cbf283b0b0367eda919cdc421e0754cd9e34fab2ae8567e74"},{"version":"590aaba8b7f99f1d648ff12a446c216b73a6bbd62c04264d55a853b4631216f5","signature":"efd2bcf30075b36d065734e7c5349ddeafb55fd45e396f7332e3427e22b81afb"},{"version":"8f721928bc5bb37edcb2bf1f1a0391fe00febcfe12fe00d0b895857934247415","signature":"89b5253aa6b9421c708cefe1e9f42d8a4c391f3ce9c5964eec7ebe0f4f54fa06"},{"version":"6a2da7cf4dcc4c24fdaf808f11b7c1438d226a5ce1ec8d246d6e18304b1453ee","signature":"562c6f64bf9fbd48d78f4d28a24cde63c0ed7ccd6b8d003648acb43c69ec27c9"},{"version":"142aaf4e2f883a6e5d6d96096db315990a4c408c3ff19aecebf8b7d2eadf26e9","signature":"4c6ecc21a27bac9c0318ea981acf6968604e208701473148eab64d53e49c138f"},{"version":"c66ee7dc0073aeda2dcbd1fb85fdfcf19c7e5a04798a4e39616bc4fe1c89b018","signature":"111b1b6b43903ef876d20fc3519abeab77849e07aa8bb5bd7d644f8058d7dddd"},{"version":"cd38a64a5b25267c37720dbc27bd228e72161e83302868e3fee93ffb3581d552","signature":"903d54abe1abb36e22c80ceb6a37b96a9a46d73d180c5c585ffca372658d36d3"},{"version":"2ae470ed08c9df2582fe67f6e4ced64089058f4d1c9237338333dd8c556be69c","signature":"c99a8125e44a0a37f0a03fa1f778894e5557c0066d303187a0ee70dd107d0e98"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"9d8f6e55f5a038f4dca0cacd6566f9b82c576eee35c694b89230e9dec1895a77","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"f85c06e750743acf31f0cfd3be284a364d469761649e29547d0dd6be48875150","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9a30b7fefd7f8abbca4828d481c61c18e40fe5ff107e113b1c1fcd2c8dcf2743","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"452e8a437aa57fe832dece2a5d3ea8dd0ab1de03ca778d09798c56ece0a29e80","affectsGlobalScope":true},{"version":"d29c2ed9e4bada9599c5f1e02d53ef15e93dab1496bb44b5863d3a24ad0bd44f","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"a321f588d51d742955993766d2969ed19006110a080572bfd24054178a5be640","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"21fcdcb618236f0feaca7e511e2da10c19970f86e09c934cef2d45b340ad92b5","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"b33379077284c9e55d2410d814b71b15522c5f71f9e93e15a8c3c41d463b00f6",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc"],"root":[[99,131],[208,216]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./types","rootDir":"../../src","skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[217],[220],[221,226,255],[222,227,233,234,241,252,263],[222,223,233,241],[224,264],[225,226,234,242],[226,252,260],[227,229,233,241],[220,228],[229,230],[233],[231,233],[220,233],[233,234,235,252,263],[233,234,235,248,252,255],[221,268],[229,233,236,241,252,263],[233,234,236,237,241,252,260,263],[236,238,252,260,263],[217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270],[233,239],[240,263,268],[229,233,241,252],[242],[243],[220,244],[217,218,220,221,222,223,224,225,226,227,228,229,230,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269],[246],[247],[233,248,249],[248,250,264,266],[221,233,252,253,254,255],[221,252,254],[252,253],[255],[256],[217,252],[233,258,259],[258,259],[226,241,252,260],[261],[241,262],[221,236,247,263],[226,264],[252,265],[240,266],[267],[221,226,233,235,244,252,263,266,268],[252,269],[73,84,85],[86],[84,85,86,87],[79,84,85],[73,74,83,84,86],[73,74,84],[79,84],[72,73,74,79,83],[72,73,84,98],[72,85],[72,73,85],[73,74],[73,84,86],[73,79,84,85],[72,79,80,82,83,84,85,86,87,88,89,90,91,92,93,96,97],[75,76,77,78],[79],[81,94,95],[80,81,82],[158,177,198,201],[98,158,199,207],[207],[133,207],[132,133,134,135,136,137,138,139,140,141,142,143,144,177,194,199],[145,158,168,169,175,176,198],[158,167,177,194],[177,194,198,207],[177,196,198],[170,171,172,173,174],[177],[196],[145,177,199,207],[132,133,134,135,136,137,138,139,140,141,142,143,144,145,158,166,167,168,169,170,171,172,173,174,175,176,177,194,196,197,199,200,201,202,206],[98,159,199,207],[159,160,161,162,167,177,194],[162,163,164,165],[159,160,162,167,177],[159,160,161,162,167,177,196],[159,160,161,167,177],[159,162,167,177,179,194,196],[159,166,177],[158,159,177],[158,166,198,199],[158,179,180],[158,179,180,185],[98,158,179,180],[158,179,196,207],[158,177,179,180,198,207],[179,180,181,182,183,184,185,186,187,188,189,190,191,192,193],[180],[98,145,177,180,198],[194,197,198],[98,177,196,198],[158,177,179,194,196,197],[158,177,194,195,197,198],[194,198],[157,177,199],[179,203,204,205],[196,199],[98,147,151],[153,154],[155],[147,152,153,155,156],[98],[153,154,155],[100,117,120],[99,100,117,120,128],[99,100,117,119,128],[99,100,120,121,122,123,124,125,126,127],[117,118,119],[98,118,129],[99,128],[98,119,129],[98,100,105,107,108,110,115,118,119,120,121,122,123,124,125,126,127,128,129,130,131,207,208,210,212,214,215],[99,105,107,108,110,118,207,208,210,212,214],[118],[101,112],[104,108,116,117,118,209],[101,108,109,116,117,118],[108,116,117,118,211],[115],[108,111,113,114,116,117,118],[102,104,108,117,118,120],[100,104,108,117,120,128,129],[106,108,116,117,118],[100,103,104,105,107,110,118,120,128],[98,104,107,108,117,118,120,128,129,208,213],[103,118,128],[100,104,108,116,118,119,120,128,129],[108,118,210],[108,118],[108,118,212],[108,115,118],[100,107,108,110,115,118],[107,108,118],[100,103,108,118]],"referencedMap":[[217,1],[218,1],[220,2],[221,3],[222,4],[223,5],[224,6],[225,7],[226,8],[227,9],[228,10],[229,11],[230,11],[232,12],[231,13],[233,14],[234,15],[235,16],[219,17],[236,18],[237,19],[238,20],[271,21],[239,22],[240,23],[241,24],[242,25],[243,26],[244,27],[245,28],[246,29],[247,30],[248,31],[249,31],[250,32],[252,33],[254,34],[253,35],[255,36],[256,37],[257,38],[258,39],[259,40],[260,41],[261,42],[262,43],[263,44],[264,45],[265,46],[266,47],[267,48],[268,49],[269,50],[86,51],[93,52],[88,53],[89,54],[85,55],[91,56],[92,57],[84,58],[97,59],[73,60],[74,61],[87,62],[72,63],[90,64],[98,65],[79,66],[94,67],[96,68],[83,69],[202,70],[200,71],[132,72],[134,73],[135,72],[136,72],[137,72],[138,72],[139,72],[140,72],[133,72],[141,72],[145,74],[142,72],[143,72],[144,72],[177,75],[168,76],[169,77],[170,78],[175,79],[172,80],[173,81],[174,80],[176,82],[207,83],[201,84],[163,85],[166,86],[165,87],[164,88],[162,89],[160,90],[167,91],[161,92],[159,93],[189,94],[190,94],[184,94],[192,94],[186,95],[181,94],[182,94],[193,96],[180,97],[188,98],[194,99],[183,94],[185,94],[191,100],[179,101],[187,95],[199,102],[197,103],[198,104],[196,105],[195,106],[158,107],[206,108],[205,109],[178,65],[152,110],[155,111],[154,112],[157,113],[147,114],[156,115],[151,51],[148,55],[149,58],[150,60],[146,65],[121,116],[122,117],[123,117],[120,118],[124,117],[125,117],[126,117],[127,117],[128,119],[100,120],[130,121],[129,122],[131,123],[216,124],[215,125],[112,126],[101,126],[113,127],[210,128],[110,129],[212,130],[208,131],[115,132],[105,133],[118,134],[107,135],[108,136],[214,137],[119,138],[117,139],[209,140],[109,141],[211,142],[114,143],[102,141],[116,144],[106,145],[213,141],[104,146]]},"version":"5.5.4"}
@@ -1 +1 @@
1
- {"version":3,"file":"object.d.ts","sourceRoot":"","sources":["../../../../src/schema/object.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"object.d.ts","sourceRoot":"","sources":["../../../../src/schema/object.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/utils.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/utils.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import Schema from './schema';
2
- import { defaultTransform, defaultTransformToAdapter, transformSchemaAndCheckIfShouldBeHandledByFallbackOnComplexSchemas } from '../utils';
2
+ import { defaultTransform, defaultTransformToAdapter, shouldRunDataOnComplexSchemas, transformSchemaAndCheckIfShouldBeHandledByFallbackOnComplexSchemas } from '../utils';
3
3
  import { objectValidation } from '../validators/object';
4
4
  import Validator from '../validators/utils';
5
5
  export default class ObjectSchema extends Schema {
@@ -92,9 +92,9 @@ export default class ObjectSchema extends Schema {
92
92
  const isValueAnObject = typeof parsedValue === 'object' && parsedValue !== null;
93
93
  if (isValueAnObject) {
94
94
  await Promise.all(dataAsEntries.map(async ([key, valueToTransform])=>{
95
- const isValueToTransformASchemaAndNotUndefined = valueToTransform instanceof Schema && (value[key] !== undefined || valueToTransform.__defaultFunction);
96
- if (isValueToTransformASchemaAndNotUndefined) {
97
- const transformedValue = await valueToTransform.data(value[key]);
95
+ const shouldRunData = shouldRunDataOnComplexSchemas(valueToTransform);
96
+ if (shouldRunData) {
97
+ const transformedValue = await valueToTransform.data(parsedValue[key]);
98
98
  parsedValue[key] = transformedValue;
99
99
  }
100
100
  }));
@@ -200,5 +200,5 @@ export async function formatErrorFromParseMethod(adapter, fieldAdapter, error, r
200
200
  ];
201
201
  }
202
202
  export function shouldRunDataOnComplexSchemas(schema) {
203
- return typeof schema['__parsersToTransformValue'] === 'function' || typeof schema['__runBeforeParseAndData'] === 'function' || typeof schema['__toRepresentation'] === 'function' || typeof schema['__defaultFunction'] === 'function';
203
+ return schema['__parsers'].high.size > 0 || schema['__parsers'].medium.size > 0 || schema['__parsers'].low.size > 0 || schema['__parsers']._fallbacks.size > 0 || typeof schema['__runBeforeParseAndData'] === 'function' || typeof schema['__toRepresentation'] === 'function' || typeof schema['__defaultFunction'] === 'function';
204
204
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@palmares/schemas",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "This defines a default schema definition for validation of data, it abstract popular schema validation libraries like zod, yup, valibot and others\"",
5
5
  "main": "./dist/cjs/src/index.js",
6
6
  "module": "./dist/esm/src/index.js",
@@ -31,8 +31,9 @@
31
31
  },
32
32
  "homepage": "https://github.com/palmaresHQ/palmares#readme",
33
33
  "dependencies": {
34
- "@palmares/core": "0.1.2",
35
- "@palmares/databases": "0.1.2"
34
+ "@palmares/core": "0.1.4",
35
+ "@palmares/databases": "0.1.4",
36
+ "@palmares/server": "0.1.4"
36
37
  },
37
38
  "scripts": {
38
39
  "clear": "rimraf ./dist",
@@ -0,0 +1,52 @@
1
+ import { Response } from '@palmares/server';
2
+
3
+ import type Schema from './schema/schema';
4
+ import type { Infer } from './types';
5
+ import type { Request } from '@palmares/server';
6
+
7
+ /**
8
+ * Validates the request body and returns a response automatically, don't need to do anything else.
9
+ */
10
+ export default function schemaHandler<
11
+ TInput extends Schema<any, any>,
12
+ TOutput extends Schema<
13
+ { input: Infer<TInput, 'output'>; internal: any; output: any; representation: any; validate: any },
14
+ any
15
+ > = TInput
16
+ >(input: TInput, output?: TOutput) {
17
+ return async (
18
+ request: Request<
19
+ any,
20
+ {
21
+ body: Infer<TInput, 'input'>;
22
+ headers: unknown & {
23
+ 'content-type': 'application/json';
24
+ };
25
+ }
26
+ >
27
+ ) => {
28
+ const data = await request.json();
29
+ const validatedData = await input.validate(data, { request });
30
+ if (validatedData.isValid) {
31
+ const savedData = (await validatedData.save()) as Infer<TOutput, 'representation'>;
32
+ const status = request.method === 'POST' ? 201 : 200;
33
+ if (output) return Response.json(await output.data(savedData), { status: status });
34
+ return Response.json<
35
+ Infer<TOutput, 'representation'>,
36
+ {
37
+ status: 200 | 201;
38
+ headers: object & {
39
+ 'content-type': 'application/json';
40
+ };
41
+ }
42
+ >(savedData, {
43
+ status,
44
+ headers: {
45
+ 'content-type': 'application/json'
46
+ }
47
+ });
48
+ }
49
+
50
+ return Response.json({ errors: validatedData.errors }, { status: 400 });
51
+ };
52
+ }
@@ -434,7 +434,12 @@ export default class ArraySchema<
434
434
  *
435
435
  * @returns The schema.
436
436
  */
437
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
437
+ onSave(
438
+ callback: <TContext = any>(
439
+ value: TType['internal'],
440
+ context: TContext
441
+ ) => Promise<TType['output']> | TType['output']
442
+ ) {
438
443
  return super.onSave(callback) as unknown as ArraySchema<
439
444
  {
440
445
  input: TType['input'];
@@ -363,7 +363,12 @@ export default class BooleanSchema<
363
363
  *
364
364
  * @returns The schema.
365
365
  */
366
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
366
+ onSave(
367
+ callback: <TContext = any>(
368
+ value: TType['internal'],
369
+ context: TContext
370
+ ) => Promise<TType['output']> | TType['output']
371
+ ) {
367
372
  return super.onSave(callback) as unknown as BooleanSchema<
368
373
  {
369
374
  input: TType['input'];
@@ -364,7 +364,12 @@ export default class DatetimeSchema<
364
364
  *
365
365
  * @returns The schema.
366
366
  */
367
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
367
+ onSave(
368
+ callback: <TContext = any>(
369
+ value: TType['internal'],
370
+ context: TContext
371
+ ) => Promise<TType['output']> | TType['output']
372
+ ) {
368
373
  return super.onSave(callback) as unknown as DatetimeSchema<
369
374
  {
370
375
  input: TType['input'];
@@ -433,7 +433,12 @@ export default class NumberSchema<
433
433
  *
434
434
  * @returns The schema.
435
435
  */
436
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
436
+ onSave(
437
+ callback: <TContext = any>(
438
+ value: TType['internal'],
439
+ context: TContext
440
+ ) => Promise<TType['output']> | TType['output']
441
+ ) {
437
442
  return super.onSave(callback) as unknown as NumberSchema<
438
443
  {
439
444
  input: TType['input'];
@@ -2,6 +2,7 @@ import Schema from './schema';
2
2
  import {
3
3
  defaultTransform,
4
4
  defaultTransformToAdapter,
5
+ shouldRunDataOnComplexSchemas,
5
6
  transformSchemaAndCheckIfShouldBeHandledByFallbackOnComplexSchemas
6
7
  } from '../utils';
7
8
  import { objectValidation } from '../validators/object';
@@ -169,11 +170,9 @@ export default class ObjectSchema<
169
170
  if (isValueAnObject) {
170
171
  await Promise.all(
171
172
  dataAsEntries.map(async ([key, valueToTransform]) => {
172
- const isValueToTransformASchemaAndNotUndefined =
173
- valueToTransform instanceof Schema &&
174
- (value[key] !== undefined || (valueToTransform as any).__defaultFunction);
175
- if (isValueToTransformASchemaAndNotUndefined) {
176
- const transformedValue = await valueToTransform.data(value[key]);
173
+ const shouldRunData = shouldRunDataOnComplexSchemas(valueToTransform);
174
+ if (shouldRunData) {
175
+ const transformedValue = await valueToTransform.data(parsedValue[key]);
177
176
  (parsedValue as any)[key] = transformedValue;
178
177
  }
179
178
  })
@@ -491,7 +490,12 @@ export default class ObjectSchema<
491
490
  *
492
491
  * @returns The schema.
493
492
  */
494
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
493
+ onSave(
494
+ callback: <TContext = any>(
495
+ value: TType['internal'],
496
+ context: TContext
497
+ ) => Promise<TType['output']> | TType['output']
498
+ ) {
495
499
  return super.onSave(callback) as unknown as ObjectSchema<
496
500
  {
497
501
  input: TType['input'];
@@ -63,7 +63,7 @@ export default class Schema<
63
63
  protected __alreadyAppliedModel?: Promise<any>;
64
64
  protected __runBeforeParseAndData?: (self: any) => Promise<void>;
65
65
  protected __rootFallbacksValidator!: Validator;
66
- protected __saveCallback?: (value: any) => Promise<any | void> | any | void;
66
+ protected __saveCallback?: <TContext = any>(value: any, context: TContext) => Promise<any | void> | any | void;
67
67
  protected __modelOmitCallback?: () => void;
68
68
  protected __parsers: Record<
69
69
  'high' | 'medium' | 'low',
@@ -252,6 +252,7 @@ export default class Schema<
252
252
  schemaAdapter?: SchemaAdapter;
253
253
  errorsAsHashedSet?: Set<string>;
254
254
  shouldAddStringVersion?: boolean;
255
+ context?: any;
255
256
  appendFallbacksBeforeAdapterValidation?: (
256
257
  schema: Schema<any, any>,
257
258
  uniqueNameOfFallback: string,
@@ -733,7 +734,12 @@ export default class Schema<
733
734
  *
734
735
  * @returns The schema.
735
736
  */
736
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
737
+ onSave(
738
+ callback: <TContext = any>(
739
+ value: TType['internal'],
740
+ context: TContext
741
+ ) => Promise<TType['output']> | TType['output']
742
+ ) {
737
743
  this.__saveCallback = callback;
738
744
 
739
745
  return this as unknown as Schema<
@@ -797,12 +803,13 @@ export default class Schema<
797
803
  * If the value is invalid, the property errors will be present.
798
804
  */
799
805
  async validate(
800
- value: TType['input']
806
+ value: TType['input'],
807
+ context: any
801
808
  ): Promise<{ isValid: false; errors: any[] } | { isValid: true; save: () => Promise<TType['representation']> }> {
802
- const { errors, parsed } = await this.__parse(value, [], {} as any);
809
+ const { errors, parsed } = await this.__parse(value, [], { context } as any);
803
810
  // eslint-disable-next-line ts/no-unnecessary-condition
804
811
  if ((errors || []).length <= 0) return { isValid: false, errors: errors };
805
- return { isValid: true, save: async () => this._save.bind(this)(parsed) };
812
+ return { isValid: true, save: async () => this._save.bind(this)(parsed, context) };
806
813
  }
807
814
 
808
815
  /**
@@ -813,9 +820,9 @@ export default class Schema<
813
820
  *
814
821
  * @returns The value to representation.
815
822
  */
816
- protected async _save(value: TType['input']): Promise<TType['representation']> {
823
+ protected async _save(value: TType['input'], context: any): Promise<TType['representation']> {
817
824
  if (this.__saveCallback) {
818
- const result = await this.__saveCallback(value);
825
+ const result = await this.__saveCallback(value, context);
819
826
  return this.data(result) as Promise<
820
827
  true extends TDefinitions['hasSave'] ? TType['representation'] : { errors?: any[]; parsed: TType['internal'] }
821
828
  >;
@@ -408,7 +408,12 @@ export default class StringSchema<
408
408
  *
409
409
  * @returns The schema.
410
410
  */
411
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
411
+ onSave(
412
+ callback: <TContext = any>(
413
+ value: TType['internal'],
414
+ context: TContext
415
+ ) => Promise<TType['output']> | TType['output']
416
+ ) {
412
417
  return super.onSave(callback) as unknown as StringSchema<
413
418
  {
414
419
  input: TType['input'];
@@ -1,7 +1,4 @@
1
- import { number } from '.';
2
1
  import Schema from './schema';
3
- import { string } from './string';
4
- import { getDefaultAdapter } from '../conf';
5
2
  import {
6
3
  defaultTransform,
7
4
  defaultTransformToAdapter,
@@ -11,7 +8,6 @@ import { unionValidation } from '../validators/union';
11
8
  import Validator from '../validators/utils';
12
9
 
13
10
  import type { DefinitionsOfSchemaType, ExtractTypeFromUnionOfSchemas } from './types';
14
- import type SchemaAdapter from '../adapter';
15
11
  import type FieldAdapter from '../adapter/fields';
16
12
  import type { Narrow } from '@palmares/core';
17
13
 
@@ -435,7 +431,12 @@ export default class UnionSchema<
435
431
  *
436
432
  * @returns The schema.
437
433
  */
438
- onSave(callback: (value: TType['internal']) => Promise<TType['output']> | TType['output']) {
434
+ onSave(
435
+ callback: <TContext = any>(
436
+ value: TType['internal'],
437
+ context: TContext
438
+ ) => Promise<TType['output']> | TType['output']
439
+ ) {
439
440
  return super.onSave(callback) as unknown as UnionSchema<
440
441
  {
441
442
  input: TType['input'];
package/src/utils.ts CHANGED
@@ -372,7 +372,10 @@ export async function transformSchemaAndCheckIfShouldBeHandledByFallbackOnComple
372
372
 
373
373
  export function shouldRunDataOnComplexSchemas(schema: Schema<any, any>) {
374
374
  return (
375
- typeof schema['__parsersToTransformValue'] === 'function' ||
375
+ schema['__parsers'].high.size > 0 ||
376
+ schema['__parsers'].medium.size > 0 ||
377
+ schema['__parsers'].low.size > 0 ||
378
+ schema['__parsers']._fallbacks.size > 0 ||
376
379
  typeof schema['__runBeforeParseAndData'] === 'function' ||
377
380
  typeof schema['__toRepresentation'] === 'function' ||
378
381
  typeof schema['__defaultFunction'] === 'function'
@@ -1,14 +0,0 @@
1
- #!/bin/sh
2
- basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
-
4
- case `uname` in
5
- *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6
- esac
7
-
8
- if [ -z "$NODE_PATH" ]; then
9
- export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules/esbuild/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules/esbuild/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules"
10
- else
11
- export NODE_PATH="/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules/esbuild/bin/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules/esbuild/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/esbuild@0.19.12/node_modules:/Users/nicolasmelo/workspace/palmares/node_modules/.pnpm/node_modules:$NODE_PATH"
12
- fi
13
- "$basedir/../../../../../node_modules/.pnpm/esbuild@0.19.12/node_modules/esbuild/bin/esbuild" "$@"
14
- exit $?