@ygracs/xobj-lib-js 0.2.7-b → 0.2.8-b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,7 @@
3
3
  Release version.
4
4
 
5
5
  > - update `xObj.md`;
6
+ > - updated dependency on `@ygracs/bsfoc-lib-js` module to v0.3.3;
6
7
  > - add a new `EvalKeyNameError` class;
7
8
  > - some fixes.
8
9
 
package/index.d.ts CHANGED
@@ -41,10 +41,12 @@ declare const _exports: {
41
41
  genXObjENameDescr: typeof import("./lib/xObj-lib").genXObjENameDescr;
42
42
  insertXObjElements: typeof import("./lib/xObj-lib").insertXObjElements;
43
43
  insertXObjEChain: typeof import("./lib/xObj-lib").insertXObjEChain;
44
- TXmlContentParseOptions: typeof TXmlContentParseOptions;
44
+
45
+ TXmlContentParseOptions: typeof TXmlContentParseOptions; // [?] class declaration
45
46
  DEF_XML_PARSE_OPTIONS: typeof DEF_XML_PARSE_OPTIONS;
46
47
  XOBJ_DEF_TNAMES: typeof XOBJ_DEF_TNAMES;
47
- EvalKeyNameError: typeof EvalKeyNameError;
48
+
49
+ EvalKeyNameError: typeof EvalKeyNameError; // [?] class declaration
48
50
 
49
51
  xml2jsParseOptions: xml2jsParseOptions;
50
52
  js2xmlParseOptions: js2xmlParseOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ygracs/xobj-lib-js",
3
- "version": "0.2.7-b",
3
+ "version": "0.2.8-b",
4
4
  "description": "A helper library to work with xml-js module",
5
5
  "author": "ygracs <cs70th-om@rambler.ru>",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "#test-dir/*": "./__test__/*"
32
32
  },
33
33
  "dependencies": {
34
- "@ygracs/bsfoc-lib-js": "^0.3.2-b"
34
+ "@ygracs/bsfoc-lib-js": "^0.3.3"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@ygracs/test-helper": "~0.0.1-b",