gant-core 0.1.43 → 0.1.45
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/lib/cli/index.js +24 -4
- package/lib/cli/index.js.map +1 -1
- package/lib/index.d.ts +11 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1728,6 +1728,7 @@ type LOGIN_CONFIG = {
|
|
|
1728
1728
|
ssoCheckTokenUrl?: string;
|
|
1729
1729
|
ssoLoginUrl?: string;
|
|
1730
1730
|
ssologinOutUrl?: string;
|
|
1731
|
+
loginOut?: boolean;
|
|
1731
1732
|
};
|
|
1732
1733
|
type MAIN_CONFIG_TYPE = {
|
|
1733
1734
|
requestTimeout?: number;
|
|
@@ -1745,7 +1746,16 @@ type MAIN_CONFIG_TYPE = {
|
|
|
1745
1746
|
locale?: boolean;
|
|
1746
1747
|
tools?: boolean;
|
|
1747
1748
|
transformTool?: boolean;
|
|
1748
|
-
|
|
1749
|
+
ocrTool?: boolean;
|
|
1750
|
+
hotKeyTool?: boolean;
|
|
1751
|
+
fullScreenTool?: boolean;
|
|
1752
|
+
networkSpeedTool?: boolean;
|
|
1753
|
+
recordModeTool?: boolean;
|
|
1754
|
+
debuggerTool?: boolean;
|
|
1755
|
+
compactMode?: boolean;
|
|
1756
|
+
drakMode?: boolean;
|
|
1757
|
+
meettingMode?: boolean;
|
|
1758
|
+
motionMode?: boolean;
|
|
1749
1759
|
menuCollection?: boolean;
|
|
1750
1760
|
version?: boolean;
|
|
1751
1761
|
autoDetectVersion?: boolean;
|