@costrict/csc 4.2.32 → 4.2.33
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/cli.js +588 -184
- package/dist/services/rawDump/batchWorker.js +9 -9
- package/package.json +1 -1
|
@@ -736,8 +736,8 @@ function getClientVersion() {
|
|
|
736
736
|
if (cached)
|
|
737
737
|
return cached;
|
|
738
738
|
try {
|
|
739
|
-
if ("4.2.
|
|
740
|
-
cached = "4.2.
|
|
739
|
+
if ("4.2.33") {
|
|
740
|
+
cached = "4.2.33";
|
|
741
741
|
return cached;
|
|
742
742
|
}
|
|
743
743
|
} catch {}
|
|
@@ -89877,8 +89877,8 @@ var init_types2 = __esm(() => {
|
|
|
89877
89877
|
...{
|
|
89878
89878
|
defaultView: exports_external.enum(["chat", "transcript"]).optional().describe("Default transcript view: chat (SendUserMessage checkpoints only) or transcript (full)")
|
|
89879
89879
|
},
|
|
89880
|
-
askUserQuestionAutoSelectEnabled: exports_external.boolean().optional().describe("Whether AskUserQuestion auto-selects the first option after a timeout (default:
|
|
89881
|
-
askUserQuestionTimeoutSeconds: exports_external.number().int().nonnegative().optional().describe("Timeout in seconds before the first option is auto-selected in AskUserQuestion dialogs when askUserQuestionAutoSelectEnabled is
|
|
89880
|
+
askUserQuestionAutoSelectEnabled: exports_external.boolean().optional().describe("Whether AskUserQuestion auto-selects the first option after a timeout (default: disabled). When false or unset, AskUserQuestion never auto-selects first options and askUserQuestionTimeoutSeconds is ignored."),
|
|
89881
|
+
askUserQuestionTimeoutSeconds: exports_external.number().int().nonnegative().optional().describe("Timeout in seconds before the first option is auto-selected in AskUserQuestion dialogs (default: 600). Only takes effect when askUserQuestionAutoSelectEnabled is explicitly set to true. Set to 0 to immediately select the first option without showing the dialog."),
|
|
89882
89882
|
prefersReducedMotion: exports_external.boolean().optional().describe("Reduce or disable animations for accessibility (spinner shimmer, flash effects, etc.)"),
|
|
89883
89883
|
autoMemoryEnabled: exports_external.boolean().optional().describe("Enable auto-memory for this project. When false, Claude will not read from or write to the auto-memory directory."),
|
|
89884
89884
|
autoMemoryDirectory: exports_external.string().optional().describe("Custom directory path for auto-memory storage. Supports ~/ prefix for home directory expansion. Ignored if set in projectSettings (checked-in .costrict/settings.json) for security. When unset, defaults to ~/.costrict/projects/<sanitized-cwd>/memory/."),
|
|
@@ -139795,7 +139795,7 @@ var init_user = __esm(() => {
|
|
|
139795
139795
|
deviceId,
|
|
139796
139796
|
sessionId: getSessionId(),
|
|
139797
139797
|
email: getEmail(),
|
|
139798
|
-
appVersion: "4.2.
|
|
139798
|
+
appVersion: "4.2.33",
|
|
139799
139799
|
platform: getHostPlatformForAnalytics(),
|
|
139800
139800
|
organizationUuid,
|
|
139801
139801
|
accountUuid,
|
|
@@ -140082,7 +140082,7 @@ var init_metadata = __esm(() => {
|
|
|
140082
140082
|
"sed"
|
|
140083
140083
|
]);
|
|
140084
140084
|
getVersionBase = memoize_default(() => {
|
|
140085
|
-
const match = "4.2.
|
|
140085
|
+
const match = "4.2.33".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
140086
140086
|
return match ? match[0] : undefined;
|
|
140087
140087
|
});
|
|
140088
140088
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -140122,9 +140122,9 @@ var init_metadata = __esm(() => {
|
|
|
140122
140122
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
140123
140123
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
140124
140124
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
140125
|
-
version: "4.2.
|
|
140125
|
+
version: "4.2.33",
|
|
140126
140126
|
versionBase: getVersionBase(),
|
|
140127
|
-
buildTime: "2026-09-
|
|
140127
|
+
buildTime: "2026-09-02T08:06:36.221Z",
|
|
140128
140128
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
140129
140129
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
140130
140130
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -144478,5 +144478,5 @@ export {
|
|
|
144478
144478
|
isParentHeartbeatValid
|
|
144479
144479
|
};
|
|
144480
144480
|
|
|
144481
|
-
//# debugId=
|
|
144481
|
+
//# debugId=3CBA04A9D132423864756E2164756E21
|
|
144482
144482
|
|