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

@adminide-stack/core

Package Overview
Dependencies
Maintainers
0
Versions
777
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adminide-stack/core - npm Package Compare versions

Comparing version 9.1.1-alpha.19 to 9.1.1-alpha.25

4

lib/interfaces/configuration/configuration.d.ts

@@ -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;

4

package.json
{
"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"
}
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