@cyberstrike-io/sdk 1.1.16 → 1.1.17-beta.0
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/dist/v2/gen/types.gen.d.ts +41 -1
- package/package.json +1 -1
|
@@ -1149,6 +1149,46 @@ export type KeybindsConfig = {
|
|
|
1149
1149
|
* Unshare current session
|
|
1150
1150
|
*/
|
|
1151
1151
|
session_unshare?: string;
|
|
1152
|
+
/**
|
|
1153
|
+
* Pin/unpin session to quick switch slot
|
|
1154
|
+
*/
|
|
1155
|
+
session_pin_toggle?: string;
|
|
1156
|
+
/**
|
|
1157
|
+
* Quick switch to pinned session slot 1
|
|
1158
|
+
*/
|
|
1159
|
+
session_quick_switch_1?: string;
|
|
1160
|
+
/**
|
|
1161
|
+
* Quick switch to pinned session slot 2
|
|
1162
|
+
*/
|
|
1163
|
+
session_quick_switch_2?: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* Quick switch to pinned session slot 3
|
|
1166
|
+
*/
|
|
1167
|
+
session_quick_switch_3?: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* Quick switch to pinned session slot 4
|
|
1170
|
+
*/
|
|
1171
|
+
session_quick_switch_4?: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* Quick switch to pinned session slot 5
|
|
1174
|
+
*/
|
|
1175
|
+
session_quick_switch_5?: string;
|
|
1176
|
+
/**
|
|
1177
|
+
* Quick switch to pinned session slot 6
|
|
1178
|
+
*/
|
|
1179
|
+
session_quick_switch_6?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* Quick switch to pinned session slot 7
|
|
1182
|
+
*/
|
|
1183
|
+
session_quick_switch_7?: string;
|
|
1184
|
+
/**
|
|
1185
|
+
* Quick switch to pinned session slot 8
|
|
1186
|
+
*/
|
|
1187
|
+
session_quick_switch_8?: string;
|
|
1188
|
+
/**
|
|
1189
|
+
* Quick switch to pinned session slot 9
|
|
1190
|
+
*/
|
|
1191
|
+
session_quick_switch_9?: string;
|
|
1152
1192
|
/**
|
|
1153
1193
|
* Interrupt current session
|
|
1154
1194
|
*/
|
|
@@ -1813,7 +1853,7 @@ export type Config = {
|
|
|
1813
1853
|
plugin?: Array<string>;
|
|
1814
1854
|
snapshot?: boolean;
|
|
1815
1855
|
/**
|
|
1816
|
-
* Control sharing behavior:'manual' allows manual sharing via commands, 'auto' enables automatic sharing
|
|
1856
|
+
* Control sharing behavior: 'disabled' disables all sharing (default), 'manual' allows manual sharing via commands, 'auto' enables automatic sharing. Requires enterprise URL configuration.
|
|
1817
1857
|
*/
|
|
1818
1858
|
share?: "manual" | "auto" | "disabled";
|
|
1819
1859
|
/**
|