@lcem/canonical-ui-metadata-schema
Advanced tools
Comparing version 0.6.5 to 0.6.6
@@ -6,10 +6,13 @@ # Change Log | ||
## [0.6.5](https://github.com/salesforce/low-code-experience-model/compare/v0.6.4...v0.6.5) (2021-05-11) | ||
## [0.6.6](https://github.com/salesforce/low-code-experience-model/compare/v0.6.5...v0.6.6) (2021-05-19) | ||
**Note:** Version bump only for package @lcem/canonical-ui-metadata-schema | ||
### Bug Fixes | ||
* add back some scoped schema functionality and move types to schema package @W-9209075 ([#23](https://github.com/salesforce/low-code-experience-model/issues/23)) ([57b9245](https://github.com/salesforce/low-code-experience-model/commit/57b9245b5522c10fd1d1421f12a1dc2a65e7c11d)) | ||
# [0.6.0](https://git.soma.salesforce.com/BuilderFramework/canonical-ui-metadata/compare/v0.5.6...v0.6.0) (2021-03-29) | ||
@@ -16,0 +19,0 @@ |
@@ -91,3 +91,19 @@ export type ViewMetadataSchema = | ||
} | ||
export interface Json { | ||
[x: string]: string | number | boolean | Date | Json | JsonArray | null; | ||
} | ||
export interface JsonArray extends Array<string | number | boolean | Date | Json | JsonArray> {} | ||
export type AllDataTypes = Json | string | number | boolean | null | undefined; | ||
export interface EditorOverride { | ||
[key: string]: ViewMetadataSchema; | ||
} | ||
export interface DeclarativeType { | ||
view?: ViewMetadataSchema; | ||
schema: Json; | ||
overrides?: EditorOverride; | ||
} | ||
export interface DeclarativeTypeMap { | ||
[index: string]: DeclarativeType; | ||
} | ||
export {}; |
{ | ||
"name": "@lcem/canonical-ui-metadata-schema", | ||
"license": "MIT", | ||
"version": "0.6.5", | ||
"version": "0.6.6", | ||
"types": "dist/index.d.ts", | ||
@@ -12,3 +12,3 @@ "publishConfig": { | ||
"generate": "mkdir -p generated/ && json2ts -i schemas/view-metadata-schema.json -o generated/view-metadata-schema.d.ts", | ||
"build": "npx dts-bundle-generator --project ./tsconfig.json --no-banner -o dist/index.d.ts schemas/types/view-metadata-schema.d.ts", | ||
"build": "npx dts-bundle-generator --project ./tsconfig.json --no-banner -o dist/index.d.ts schemas/types/index.d.ts", | ||
"lint": "eslint 'schemas/**/*.{js,ts}'", | ||
@@ -15,0 +15,0 @@ "test": "jest", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10281
229