-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Introduce integrated terminal #3079
base: main
Are you sure you want to change the base?
Changes from 48 commits
0f14050
73f5814
ee95d66
48abeef
43d6863
beba0c4
d3b5975
4f7dd21
451c49b
978ff99
8b2d310
ee12695
859807c
6d49d02
65c8e24
04927a3
96a8d25
257254b
819e742
3898c54
ef41fcf
93b6c30
52eb208
062327f
20c313a
7f1375e
54c2f89
612473d
6df816c
b6170fa
75d1386
882db9a
1ba492a
7833f74
88e064b
33294c9
986fbaf
e181481
e618b14
75a6d03
7f18310
85696d1
931ed3f
3311857
133276e
ccc9f48
a18f7f6
230e933
172cfe5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -500,6 +500,16 @@ export namespace MainframeInteraction { | |
*/ | ||
issueTsoCommandWithParms?(command: string, parms?: zostso.IStartTsoParms): Promise<zostso.IIssueResponse>; | ||
|
||
/** | ||
* Issues a TSO Command without the need for account information | ||
* | ||
* @param {string} command | ||
* @param {zostso.IStartTsoParms} parms | ||
* @returns {Promise<zostso.IIssueResponse>} | ||
* @memberof ICommand | ||
*/ | ||
issueTsoCmdWithParms?(command: string, parms?: zostso.IStartTsoParms): Promise<zostso.IIssueResponse>; | ||
|
||
Comment on lines
+503
to
+512
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Question for my own edification: Was this added to prevent overwriting the behavior that's in place for existing |
||
/** | ||
* Issues a MVS Command and returns a Console Command API response. | ||
* | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,7 @@ export enum PersistenceSchemaEnum { | |
Dataset = "zowe.ds.history", | ||
USS = "zowe.uss.history", | ||
Job = "zowe.jobs.history", | ||
Commands = "zowe.commands.history", | ||
MvsCommands = "zowe.commands.mvs.history", | ||
TsoCommands = "zowe.commands.tso.history", | ||
UssCommands = "zowe.commands.uss.history", | ||
Comment on lines
+19
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can add these as readable/writable keys for local storage access in #3299 once they're available in |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing the outputs from CI in this PR and another recent PR, I think the update from
[email protected] -> [email protected]
is causing the issue described in #3298. I'm wondering if we should hold off on the TypeScript update until the cause is identified/resolved 🤔