Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lcem/meta-schemas

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lcem/meta-schemas - npm Package Compare versions

Comparing version 0.6.15 to 0.6.16

examples/meta/invalid-no-schema.meta.json

6

CHANGELOG.md

@@ -6,7 +6,7 @@ # Change Log

## [0.6.15](https://github.com/salesforce/low-code-experience-model/compare/v0.6.13...v0.6.15) (2021-06-23)
## [0.6.16](https://github.com/salesforce/low-code-experience-model/compare/v0.6.15...v0.6.16) (2021-06-24)
### Bug Fixes
### Features
* Update UEM with metaschemas for relevant json files ([#40](https://github.com/salesforce/low-code-experience-model/issues/40)) ([7eee741](https://github.com/salesforce/low-code-experience-model/commit/7eee74142561289a75f26fb6ccd8152bf09509e4))
* event metaschema @W-9423780 ([#53](https://github.com/salesforce/low-code-experience-model/issues/53)) ([faa2086](https://github.com/salesforce/low-code-experience-model/commit/faa2086a7b20b855444c05e50dad7003ec4d4078))
{
"name": "@lcem/meta-schemas",
"license": "MIT",
"version": "0.6.15",
"version": "0.6.16",
"types": "src/types/index.d.ts",

@@ -17,3 +17,4 @@ "publishConfig": {

"files": [
"src/"
"src/",
"examples/"
],

@@ -20,0 +21,0 @@ "devDependencies": {

@@ -22,2 +22,9 @@ {

}
},
"events": {
"patternProperties": {
"^[A-Za-z0-9]+$": {
"$ref": "vocab/event"
}
}
}

@@ -28,3 +35,3 @@ },

"events": {
"$ref": "vocab/event"
"$ref": "#/$defs/events"
},

@@ -37,7 +44,4 @@ "properties": {

},
"methods": {
"$ref": "vocab/method"
}
},
"required": ["properties"]
"methods": true
}
}

@@ -6,16 +6,39 @@ {

},
"title": "Event meta schema",
"type": "object",
"properties": {
"name": {
"type": "string"
"type": {
"type": "string",
"const": "object"
},
"properties": {
"type": "object",
"default": {}
}
"minProperties": 1,
"patternProperties": {
"^[A-Za-z0-9]+$": {
"type": "object",
"properties": {
"type": {
"type": "string",
"oneOf": [
{
"const": "boolean"
},
{
"const": "string"
},
{
"const": "integer"
}
]
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"required": ["name"]
"required": ["type", "properties"],
"additionalProperties": false
}

@@ -17,3 +17,3 @@ {

"contains": false,
"additionalProperties": false,
"additionalProperties": true,
"unevaluatedProperties": false,

@@ -20,0 +20,0 @@ "properties": {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc