@leyyo/query 1.3.3 → 1.3.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 +1 @@
1
- export declare const FQN = "leyyo.query";
1
+ export declare const NME: string, FQN: string, VER: string, CNF: import("@leyyo/common").LeyyoConfig;
package/dist/internal.js CHANGED
@@ -1 +1,2 @@
1
- export const FQN = 'leyyo.query';
1
+ import { sysAll } from '@leyyo/common';
2
+ export const { pck: { name: NME, fqn: FQN, version: VER }, config: CNF } = sysAll(import.meta.url);
@@ -1,6 +1,7 @@
1
- import { isEmpty, isFilledObj, isText } from "@leyyo/common";
1
+ import { isEmpty, isFilledObj, isText, setFqn } from "@leyyo/common";
2
2
  import { OperationTypeItems, OperationTypeMap } from "../operation/index.js";
3
3
  import { InvalidQueryValueError } from "../error/index.js";
4
+ import { FQN } from "../internal.js";
4
5
  class QueryParser {
5
6
  // region private
6
7
  _error(code, message, path) {
@@ -440,5 +441,6 @@ class QueryParser {
440
441
  };
441
442
  }
442
443
  }
444
+ setFqn(QueryParser, FQN);
443
445
  // noinspection JSUnusedGlobalSymbols
444
446
  export const queryParser = new QueryParser();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leyyo/query",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Query common component",
5
5
  "keywords": [
6
6
  "Query"
@@ -66,6 +66,6 @@
66
66
  }
67
67
  },
68
68
  "dependencies": {
69
- "@leyyo/common": "^1.3.10"
69
+ "@leyyo/common": "^1.3.12"
70
70
  }
71
71
  }