@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/CHANGELOG.md +8 -0
- package/dist/apidom-core.browser.js +3022 -3436
- package/dist/apidom-core.browser.min.js +1 -1
- package/package.json +5 -5
- package/types/dist.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-core",
|
|
3
|
-
"version": "0.99.
|
|
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.
|
|
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.
|
|
50
|
-
"ramda-adjunct": "^
|
|
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": "
|
|
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?: (
|
|
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;
|