@sap-devx/guided-development-types
Advanced tools
Comparing version 0.0.13 to 0.0.14
@@ -1,2 +0,3 @@ | ||
import { IAction, ICommandAction, IExecuteAction, IFileAction, ISnippetAction, CommandActionParams, ExecuteActionParams, SnippetActionParams, FileActionParams } from "@sap-devx/app-studio-toolkit-types"; | ||
import { IAction, ICommandAction, IExecuteAction, IFileAction, ISnippetAction, IUriAction } from "@sap-devx/app-studio-toolkit-types"; | ||
import { Uri } from "vscode"; | ||
export interface ICollection { | ||
@@ -24,3 +25,3 @@ id: string; | ||
export interface IItemCommandContext extends IItemContext { | ||
params?: CommandActionParams; | ||
params?: any[]; | ||
} | ||
@@ -32,3 +33,3 @@ export interface IItemCommandAction extends IItemAction { | ||
export interface IItemExecuteContext extends IItemContext { | ||
params?: ExecuteActionParams; | ||
params?: any[]; | ||
} | ||
@@ -40,3 +41,3 @@ export interface IItemExecuteAction extends IItemAction { | ||
export interface IItemSnippetContext extends IItemContext { | ||
context?: SnippetActionParams; | ||
context?: any; | ||
} | ||
@@ -47,11 +48,15 @@ export interface IItemSnippetAction extends IItemAction { | ||
} | ||
export interface IItemFileContext extends IItemContext { | ||
uri?: FileActionParams; | ||
export interface IItemUriContext extends IItemContext { | ||
uri?: Uri; | ||
} | ||
export interface IItemFileAction extends IItemAction { | ||
action: IFileAction; | ||
contexts?: IItemFileContext[]; | ||
contexts?: IItemUriContext[]; | ||
} | ||
export declare type ItemAction = IItemCommandAction | IItemExecuteAction | IItemSnippetAction | IItemFileAction; | ||
export declare type ItemContext = IItemCommandContext | IItemExecuteContext | IItemSnippetContext | IItemFileContext; | ||
export interface IItemUriAction extends IItemAction { | ||
action: IUriAction; | ||
contexts?: IItemUriContext[]; | ||
} | ||
export declare type ItemAction = IItemCommandAction | IItemExecuteAction | IItemSnippetAction | IItemUriAction | IItemFileAction; | ||
export declare type ItemContext = IItemCommandContext | IItemExecuteContext | IItemSnippetContext | IItemUriContext; | ||
export interface IItem { | ||
@@ -58,0 +63,0 @@ id: string; |
{ | ||
"name": "@sap-devx/guided-development-types", | ||
"publisher": "SAPOSS", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"author": "", | ||
@@ -21,5 +21,5 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@sap-devx/app-studio-toolkit-types": "0.0.1", | ||
"@sap-devx/app-studio-toolkit-types": "1.2.0", | ||
"ncp": "^2.0.0" | ||
} | ||
} |
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
5052
5
86
2