Socket
Socket
Sign inDemoInstall

@swagger-api/apidom-core

Package Overview
Dependencies
15
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.96.0 to 0.97.0

7

CHANGELOG.md

@@ -6,2 +6,9 @@ # Change Log

# [0.97.0](https://github.com/swagger-api/apidom/compare/v0.96.0...v0.97.0) (2024-03-07)
### Features
- **core:** add support for RefElement and LinkElement ([#3884](https://github.com/swagger-api/apidom/issues/3884)) ([342ee3f](https://github.com/swagger-api/apidom/commit/342ee3f653f492d3b07ac9b467eba55f0d02b3f9)), closes [#3882](https://github.com/swagger-api/apidom/issues/3882)
- **core:** handle RefElement serialization in toValue serializer ([#3901](https://github.com/swagger-api/apidom/issues/3901)) ([f205211](https://github.com/swagger-api/apidom/commit/f205211722481004b9c81d6dbe8477adbdbbca2d)), closes [#3894](https://github.com/swagger-api/apidom/issues/3894)
# [0.96.0](https://github.com/swagger-api/apidom/compare/v0.95.0...v0.96.0) (2024-02-28)

@@ -8,0 +15,0 @@

8

package.json
{
"name": "@swagger-api/apidom-core",
"version": "0.96.0",
"version": "0.97.0",
"description": "Tools for manipulating ApiDOM structures.",

@@ -45,4 +45,4 @@ "publishConfig": {

"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.96.0",
"@swagger-api/apidom-error": "^0.96.0",
"@swagger-api/apidom-ast": "^0.97.0",
"@swagger-api/apidom-error": "^0.97.0",
"@types/ramda": "~0.29.6",

@@ -66,3 +66,3 @@ "minim": "~0.23.8",

],
"gitHead": "851320569f5a9bd24aff9deec3f5ba1e7f002917"
"gitHead": "b616e76738c48401d651a272daef174f6c1a6510"
}

@@ -48,2 +48,4 @@ /* eslint-disable spaced-comment, max-classes-per-file */

primitive(): string | undefined;
[key: string]: unknown;
}

@@ -173,19 +175,19 @@

export class LinkElement extends Element {
constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes);
constructor(content?: unknown, meta?: Meta, attributes?: Attributes);
get relation(): unknown;
get relation(): string;
set relation(relation: unknown);
set relation(relation: string);
get href(): unknown;
get href(): string;
set href(key: unknown);
set href(key: string);
}
export class RefElement extends Element {
constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes);
constructor(content?: unknown, meta?: Meta, attributes?: Attributes);
get path(): unknown;
get path(): string;
set path(path: unknown);
set path(path: string);
}

@@ -192,0 +194,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc