@adminide-stack/core
Advanced tools
Comparing version 9.1.1-alpha.19 to 9.1.1-alpha.25
@@ -101,2 +101,6 @@ import { IStringDictionary } from '@vscode-alt/monaco-editor/esm/vs/base/common/collections'; | ||
export type IConfigurationsFlattenedKeys = FlattenWithFinite<IPreferences, 10, ''>; | ||
export type FlattenWithAll<T, Prefix extends string = '', Depth extends number = 3> = [Depth] extends [never] ? never : { | ||
[K in keyof T & (string | number)]: T[K] extends object ? `${Prefix}${K}` | FlattenWithFinite<T[K], 10, Depth extends 1 ? never : Depth extends 3 ? '2' : '1'> : `${Prefix}${K}`; | ||
}[keyof T & (string | number)]; | ||
export type IConfigurationKeys = FlattenWithAll<IPreferences, '', 10>; | ||
export interface IConfigurationNode { | ||
@@ -103,0 +107,0 @@ id?: string; |
{ | ||
"name": "@adminide-stack/core", | ||
"version": "9.1.1-alpha.19", | ||
"version": "9.1.1-alpha.25", | ||
"description": "AdminIDE core for higher packages to depend on", | ||
@@ -39,3 +39,3 @@ "license": "ISC", | ||
}, | ||
"gitHead": "55fb6efabcc1709cae151445bc98aabd8a1e9e00" | ||
"gitHead": "ff9b9fcca8ad721d074e2927afd20bd21e34c79c" | ||
} |
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
1680050
36098