New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@opensumi/ide-core-common

Package Overview
Dependencies
Maintainers
0
Versions
1584
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opensumi/ide-core-common - npm Package Compare versions

Comparing version 3.7.1-next-1736846464.0 to 3.7.1-next-1737364617.0

2

lib/const/application.d.ts

@@ -6,3 +6,3 @@ export declare const DEFAULT_APPLICATION_NAME = "OpenSumi";

export declare const DEFAULT_OPENVSX_REGISTRY = "https://open-vsx.org";
export declare const DEFAULT_VSCODE_ENGINE_VERSION = "1.94.2";
export declare const DEFAULT_VSCODE_ENGINE_VERSION = "1.96.2";
//# sourceMappingURL=application.d.ts.map

@@ -9,3 +9,3 @@ "use strict";

exports.DEFAULT_OPENVSX_REGISTRY = 'https://open-vsx.org'; // Official Registry
exports.DEFAULT_VSCODE_ENGINE_VERSION = '1.94.2';
exports.DEFAULT_VSCODE_ENGINE_VERSION = '1.96.2';
//# sourceMappingURL=application.js.map

@@ -21,3 +21,4 @@ export declare enum AINativeSettingSectionsId {

CodeEditsLintErrors = "ai.native.codeEdits.lintErrors",
CodeEditsLineChange = "ai.native.codeEdits.lineChange"
CodeEditsLineChange = "ai.native.codeEdits.lineChange",
CodeEditsTyping = "ai.native.codeEdits.typing"
}

@@ -24,0 +25,0 @@ export declare const AI_NATIVE_SETTING_GROUP_ID = "AI-Native";

@@ -26,2 +26,3 @@ "use strict";

AINativeSettingSectionsId["CodeEditsLineChange"] = "ai.native.codeEdits.lineChange";
AINativeSettingSectionsId["CodeEditsTyping"] = "ai.native.codeEdits.typing";
})(AINativeSettingSectionsId || (exports.AINativeSettingSectionsId = AINativeSettingSectionsId = {}));

@@ -28,0 +29,0 @@ exports.AI_NATIVE_SETTING_GROUP_ID = 'AI-Native';

@@ -282,4 +282,5 @@ import { CancellationToken, MaybePromise, Uri } from '@opensumi/ide-utils';

LinterErrors = "lint_errors",
LineChange = "line_change"
LineChange = "line_change",
Typing = "typing"
}
//# sourceMappingURL=index.d.ts.map

@@ -81,4 +81,5 @@ "use strict";

ECodeEditsSourceTyping["LineChange"] = "line_change";
ECodeEditsSourceTyping["Typing"] = "typing";
})(ECodeEditsSourceTyping || (exports.ECodeEditsSourceTyping = ECodeEditsSourceTyping = {}));
// ## Code Edits ends ##
//# sourceMappingURL=index.js.map

@@ -25,23 +25,2 @@ import { URI } from '@opensumi/ide-utils';

}
export interface IWatcher {
/**
* 根据给定参数启动文件监听
* @param {string} uri
* @param {WatchOptions} [options]
* @memberof IFileSystemWatcherServer
*/
watchFileChanges(uri: string, options?: WatchOptions): Promise<void>;
/**
* 根据给定 uri 注销对应的文件监听
* @param {string} uri
* @returns {Promise<void>}
* @memberof FileSystemWatcherServer
*/
unwatchFileChanges(uri: string): Promise<void>;
/**
* Update watcher file excludes
* @param excludes
*/
updateWatcherFileExcludes?: (excludes: string[]) => Promise<void>;
}
export interface FileSystemWatcherClient {

@@ -55,3 +34,2 @@ /**

excludes: string[];
pollingWatch?: boolean;
}

@@ -99,6 +77,2 @@ export interface DidFilesChangedParams {

}
export declare enum RecursiveWatcherBackend {
NSFW = "nsfw",
PARCEL = "parcel"
}
//# sourceMappingURL=file-watch.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RecursiveWatcherBackend = exports.VSCFileChangeType = exports.FileChangeType = exports.FileChangeEvent = exports.FileChange = void 0;
exports.VSCFileChangeType = exports.FileChangeType = exports.FileChangeEvent = exports.FileChange = void 0;
const ide_utils_1 = require("@opensumi/ide-utils");

@@ -72,7 +72,2 @@ var FileChange;

})(VSCFileChangeType || (exports.VSCFileChangeType = VSCFileChangeType = {}));
var RecursiveWatcherBackend;
(function (RecursiveWatcherBackend) {
RecursiveWatcherBackend["NSFW"] = "nsfw";
RecursiveWatcherBackend["PARCEL"] = "parcel";
})(RecursiveWatcherBackend || (exports.RecursiveWatcherBackend = RecursiveWatcherBackend = {}));
//# sourceMappingURL=file-watch.js.map

@@ -127,3 +127,2 @@ import { Event, Uri } from '@opensumi/ide-utils';

recursive?: boolean;
pollingWatch?: boolean;
}): number | Promise<number>;

@@ -130,0 +129,0 @@ unwatch?(watcherId: number): void | Promise<void>;

{
"name": "@opensumi/ide-core-common",
"version": "3.7.1-next-1736846464.0",
"version": "3.7.1-next-1737364617.0",
"description": "@opensumi/ide-core-common",

@@ -23,8 +23,8 @@ "files": [

"@opensumi/events": "^1.0.0",
"@opensumi/ide-utils": "3.7.1-next-1736846464.0"
"@opensumi/ide-utils": "3.7.1-next-1737364617.0"
},
"devDependencies": {
"@opensumi/ide-dev-tool": "3.7.1-next-1736846464.0"
"@opensumi/ide-dev-tool": "3.7.1-next-1737364617.0"
},
"gitHead": "4b9a76cf2a118fc2b2bf49bf5b042a8d0f4cc0b6"
"gitHead": "54bc272ac04f5cf93da7f7f1794f79f510c39685"
}

@@ -7,2 +7,2 @@ export const DEFAULT_APPLICATION_NAME = 'OpenSumi';

export const DEFAULT_VSCODE_ENGINE_VERSION = '1.94.2';
export const DEFAULT_VSCODE_ENGINE_VERSION = '1.96.2';

@@ -25,4 +25,5 @@ export enum AINativeSettingSectionsId {

CodeEditsLineChange = 'ai.native.codeEdits.lineChange',
CodeEditsTyping = 'ai.native.codeEdits.typing',
}
export const AI_NATIVE_SETTING_GROUP_ID = 'AI-Native';
export const AI_NATIVE_SETTING_GROUP_TITLE = 'AI Native';

@@ -357,3 +357,4 @@ import { CancellationToken, MaybePromise, Uri } from '@opensumi/ide-utils';

LineChange = 'line_change',
Typing = 'typing',
}
// ## Code Edits ends ##

@@ -28,26 +28,2 @@ import { URI } from '@opensumi/ide-utils';

export interface IWatcher {
/**
* 根据给定参数启动文件监听
* @param {string} uri
* @param {WatchOptions} [options]
* @memberof IFileSystemWatcherServer
*/
watchFileChanges(uri: string, options?: WatchOptions): Promise<void>;
/**
* 根据给定 uri 注销对应的文件监听
* @param {string} uri
* @returns {Promise<void>}
* @memberof FileSystemWatcherServer
*/
unwatchFileChanges(uri: string): Promise<void>;
/**
* Update watcher file excludes
* @param excludes
*/
updateWatcherFileExcludes?: (excludes: string[]) => Promise<void>;
}
export interface FileSystemWatcherClient {

@@ -62,3 +38,2 @@ /**

excludes: string[];
pollingWatch?: boolean;
}

@@ -134,6 +109,1 @@

}
export enum RecursiveWatcherBackend {
NSFW = 'nsfw',
PARCEL = 'parcel',
}

@@ -160,6 +160,3 @@ import { Event, Uri } from '@opensumi/ide-utils';

*/
watch(
uri: Uri,
options: { excludes?: string[]; recursive?: boolean; pollingWatch?: boolean },
): number | Promise<number>;
watch(uri: Uri, options: { excludes?: string[]; recursive?: boolean }): number | Promise<number>;

@@ -166,0 +163,0 @@ unwatch?(watcherId: number): void | Promise<void>;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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