@halcyontech/vscode-ibmi-types 3.0.6 → 3.0.7
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.
package/api/IBMiContent.d.ts
CHANGED
|
@@ -3,14 +3,13 @@ import { ComponentState, IBMiComponent, SecureComponentState } from "./component
|
|
|
3
3
|
export declare class IBMiComponentRuntime {
|
|
4
4
|
protected readonly connection: IBMi;
|
|
5
5
|
readonly component: IBMiComponent;
|
|
6
|
-
static readonly InstallDirectory = "$HOME/.vscode/";
|
|
7
6
|
private state;
|
|
8
7
|
private cachedInstallDirectory;
|
|
9
8
|
constructor(connection: IBMi, component: IBMiComponent);
|
|
10
|
-
getInstallDirectory():
|
|
9
|
+
getInstallDirectory(): string;
|
|
11
10
|
getState(): SecureComponentState;
|
|
12
11
|
setState(newState: SecureComponentState): Promise<void>;
|
|
13
|
-
overrideState(newState: SecureComponentState):
|
|
12
|
+
overrideState(newState: SecureComponentState): void;
|
|
14
13
|
update(): Promise<void>;
|
|
15
14
|
startupCheck(): Promise<this>;
|
|
16
15
|
getCurrentState(): Promise<SecureComponentState>;
|
|
@@ -11,15 +11,14 @@ export declare class ExtendedIBMiContent {
|
|
|
11
11
|
downloadMemberContentWithDates(uri: vscode.Uri): Promise<string>;
|
|
12
12
|
/**
|
|
13
13
|
* Determine the member record length
|
|
14
|
-
* @param {string} aliasPath member sql alias path e.g. ILEDITOR.QGPL_QRPGLESC_MYRPGPGM
|
|
15
|
-
* @param {string} lib
|
|
16
|
-
* @param {string} spf
|
|
17
14
|
*/
|
|
18
|
-
private
|
|
15
|
+
private readRecordLength;
|
|
19
16
|
/**
|
|
20
17
|
* Upload to a member with source dates
|
|
21
18
|
* @param {vscode.Uri} uri
|
|
22
19
|
* @param {string} body
|
|
23
20
|
*/
|
|
24
21
|
uploadMemberContentWithDates(uri: vscode.Uri, body: string): Promise<void>;
|
|
22
|
+
private overDBFile;
|
|
23
|
+
private deleteOVRDBFile;
|
|
25
24
|
}
|