@swagger-api/apidom-core 0.99.0 → 0.99.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-core",
3
- "version": "0.99.0",
3
+ "version": "0.99.2",
4
4
  "description": "Tools for manipulating ApiDOM structures.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -42,12 +42,12 @@
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
44
44
  "@babel/runtime-corejs3": "^7.20.7",
45
- "@swagger-api/apidom-ast": "^0.99.0",
45
+ "@swagger-api/apidom-ast": "^0.99.2",
46
46
  "@swagger-api/apidom-error": "^0.99.0",
47
47
  "@types/ramda": "~0.29.6",
48
48
  "minim": "~0.23.8",
49
- "ramda": "~0.29.1",
50
- "ramda-adjunct": "^4.1.1",
49
+ "ramda": "~0.30.0",
50
+ "ramda-adjunct": "^5.0.0",
51
51
  "short-unique-id": "^5.0.2",
52
52
  "stampit": "^4.3.2"
53
53
  },
@@ -62,5 +62,5 @@
62
62
  "README.md",
63
63
  "CHANGELOG.md"
64
64
  ],
65
- "gitHead": "e3c5ac3e738d561a0eb6d9d0f729e0d6bf20b00f"
65
+ "gitHead": "6080f63b5e18283c10dcebc5ec6087552a3e1d4f"
66
66
  }
package/types/dist.d.ts CHANGED
@@ -319,7 +319,7 @@ declare const fromFn: (data: any, namespace?: Namespace$1) => Element;
319
319
 
320
320
  declare const serializer$2: <T extends unknown>(element: T) => any;
321
321
 
322
- declare const serializer$1: (element: Element, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number) => string;
322
+ declare const serializer$1: (element: Element, replacer?: (this: any, key: string, value: any) => any, space?: string | number) => string;
323
323
 
324
324
  declare const serializer: (element: Element, { directive }?: {
325
325
  directive?: boolean | undefined;