@costrict/csc 4.2.32 → 4.2.34

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.
@@ -736,8 +736,8 @@ function getClientVersion() {
736
736
  if (cached)
737
737
  return cached;
738
738
  try {
739
- if ("4.2.32") {
740
- cached = "4.2.32";
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: enabled). When false, 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 when askUserQuestionAutoSelectEnabled is not false (default: 600). Set to 0 to immediately select the first option without showing the dialog."),
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.32",
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.32".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
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.32",
140125
+ version: "4.2.33",
140126
140126
  versionBase: getVersionBase(),
140127
- buildTime: "2026-09-01T08:57:02.652Z",
140127
+ buildTime: "2026-09-03T05:24:42.303Z",
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=1CE3DB7F7D473C2264756E2164756E21
144481
+ //# debugId=BC49E06F7CE4841164756E2164756E21
144482
144482
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@costrict/csc",
3
- "version": "4.2.32",
3
+ "version": "4.2.34",
4
4
  "description": "costrict",
5
5
  "type": "module",
6
6
  "author": "costrict",