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.7.4 to 0.8.1

examples/meta/api-version-only.json

7

CHANGELOG.md

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

## [0.7.4](https://github.com/salesforce/low-code-experience-model/compare/v0.7.3...v0.7.4) (2021-10-06)
## [0.8.1](https://github.com/salesforce/uem-js/compare/v0.7.4...v0.8.1) (2021-12-14)
### Features
* makes component key available for components in a slot @W-9959728 ([#89](https://github.com/salesforce/low-code-experience-model/issues/89)) ([2b7b933](https://github.com/salesforce/low-code-experience-model/commit/2b7b93314f2279074cdd5a81af3d8f8836254942))
**Note:** Version bump only for package @lcem/meta-schemas
{
"label": "Person",
"apiVersion": 53.0,
"isExposed": true,
"masterLabel": "Person",
"description": "A card to display information of a person.",
"targets": {
"lightning__record": {
"category": "Unmanaged",
"schema": "./person.shape.json",
"view": "./person.view.json",
"renderers": "./person.renderer.json"
"config": "foo"
}
}
}
{
"name": "@lcem/meta-schemas",
"license": "MIT",
"version": "0.7.4",
"version": "0.8.1",
"types": "src/types/index.d.ts",

@@ -6,0 +6,0 @@ "publishConfig": {

{
"$id": "https://salesforce.com/54.0/schemas/meta",
"title": "Component Manifest file meta-schema",
"$defs": {
"target": {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"schema": {
"type": "string"
},
"renderers": {
"type": "string"
},
"view": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["schema"]
"$id": "https://salesforce.com/54.0/schemas/meta",
"title": "Component Manifest file schema",
"$defs": {
"target": {
"type": "object",
"properties": {
"config": {
"type": "string"
}
}
}
},
"type": "object",
"properties": {
"apiVersion": {
"type": "number"
},
"type": "object",
"properties": {
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"targets": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/target"
}
}
"isExposed": {
"type": "boolean"
},
"masterLabel": {
"type": "string"
},
"description": {
"type": "string"
},
"targets": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/target"
}
}
}
},
"additionalProperties": false,
"required": [
"apiVersion"
]
}
export interface Target {
category: string;
schema: string;
renderers: string;
view: string;
config: string;
}
export interface Meta {
target: Record<string, Target>;
apiVersion: number;
isExposed: boolean;
masterLabel: string;
description: string;
targets: Record<string, Target>;
}
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