@halcyontech/vscode-ibmi-types 1.7.6 → 1.7.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,10 @@
1
1
  import vscode from 'vscode';
2
2
  import Instance from './Instance';
3
3
  import { CommandResult, RemoteCommand } from '../typings';
4
+ export interface ILELibrarySettings {
5
+ currentLibrary: string;
6
+ libraryList: string[];
7
+ }
4
8
  export declare namespace CompileTools {
5
9
  interface EvfEventInfo {
6
10
  asp?: string;
@@ -19,6 +23,6 @@ export declare namespace CompileTools {
19
23
  /**
20
24
  * Execute a command
21
25
  */
22
- export function runCommand(instance: Instance, options: RemoteCommand): Promise<CommandResult | null>;
26
+ export function runCommand(instance: Instance, options: RemoteCommand, title?: string): Promise<CommandResult | null>;
23
27
  export {};
24
28
  }
package/api/CustomUI.d.ts CHANGED
@@ -23,12 +23,13 @@ export interface ComplexTab {
23
23
  }
24
24
  export declare class Section {
25
25
  readonly fields: Field[];
26
+ addHeading(label: string, level?: 1 | 2 | 3 | 4 | 5 | 6): this;
26
27
  addHorizontalRule(): this;
27
28
  addCheckbox(id: string, label: string, description?: string, checked?: boolean): this;
28
29
  addInput(id: string, label: string, description?: string, options?: {
29
30
  default?: string;
30
31
  readonly?: boolean;
31
- multiline?: boolean;
32
+ rows?: number;
32
33
  }): this;
33
34
  addParagraph(label: string): this;
34
35
  addFile(id: string, label: string, description?: string): this;
@@ -50,7 +51,7 @@ export declare class CustomUI extends Section {
50
51
  loadPage<T>(title: string, callback?: (page: Page<T>) => void): Promise<Page<T>> | undefined;
51
52
  private getHTML;
52
53
  }
53
- export declare type FieldType = "input" | "password" | "submit" | "buttons" | "checkbox" | "file" | "complexTabs" | "tabs" | "tree" | "select" | "paragraph" | "hr";
54
+ export declare type FieldType = "input" | "password" | "submit" | "buttons" | "checkbox" | "file" | "complexTabs" | "tabs" | "tree" | "select" | "paragraph" | "hr" | "heading";
54
55
  export interface TreeListItemIcon {
55
56
  branch?: string;
56
57
  open?: string;
@@ -84,7 +85,7 @@ export declare class Field {
84
85
  complexTabItems?: ComplexTab[];
85
86
  default?: string;
86
87
  readonly?: boolean;
87
- multiline?: boolean;
88
+ rows?: number;
88
89
  constructor(type: FieldType, id: string, label: string, description?: string);
89
90
  getHTML(): string;
90
91
  private renderLabel;
package/api/Search.d.ts CHANGED
@@ -3,7 +3,7 @@ export declare namespace Search {
3
3
  interface Result {
4
4
  path: string;
5
5
  lines: Line[];
6
- filter?: string;
6
+ readonly?: boolean;
7
7
  label?: string;
8
8
  }
9
9
  interface Line {
package/api/Storage.d.ts CHANGED
@@ -39,5 +39,6 @@ export declare class ConnectionStorage extends Storage {
39
39
  setDeployment(existingPaths: DeploymentPath): Promise<void>;
40
40
  getDebugCommands(): DebugCommands;
41
41
  setDebugCommands(existingCommands: DebugCommands): Promise<void>;
42
+ getWorkspaceDeployPath(workspaceFolder: vscode.WorkspaceFolder): string;
42
43
  }
43
44
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halcyontech/vscode-ibmi-types",
3
- "version": "1.7.6",
3
+ "version": "1.7.10",
4
4
  "description": "Types for vscode-ibmi",
5
5
  "typings": "./typings.d.ts",
6
6
  "scripts": {
package/typings.d.ts CHANGED
@@ -107,7 +107,6 @@ export interface FileError {
107
107
  code: string;
108
108
  }
109
109
  export interface QsysFsOptions {
110
- filter?: string;
111
110
  readonly?: boolean;
112
111
  }
113
112
  export declare type IBMiEvent = "connected" | "disconnected" | "deployLocation";