@dereekb/dbx-cli 13.14.0 → 13.15.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.
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli-firebase-api-manifest",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "ts-morph": "^21.0.0"
8
8
  },
9
9
  "peerDependencies": {
10
- "@dereekb/dbx-cli": "13.14.0",
11
- "@dereekb/util": "13.14.0",
10
+ "@dereekb/dbx-cli": "13.15.0",
11
+ "@dereekb/util": "13.15.0",
12
12
  "prettier": "3.8.3"
13
13
  }
14
14
  }
@@ -5,14 +5,14 @@ const require = __createRequire(import.meta.url);
5
5
  // packages/dbx-cli/generate-firestore-indexes/package.json
6
6
  var package_default = {
7
7
  name: "@dereekb/dbx-cli-generate-firestore-indexes",
8
- version: "13.14.0",
8
+ version: "13.15.0",
9
9
  private: true,
10
10
  type: "module",
11
11
  devDependencies: {
12
12
  eslint: "10.4.0"
13
13
  },
14
14
  peerDependencies: {
15
- "@dereekb/dbx-cli": "13.14.0"
15
+ "@dereekb/dbx-cli": "13.15.0"
16
16
  }
17
17
  };
18
18
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli-generate-firestore-indexes",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "eslint": "10.4.0"
8
8
  },
9
9
  "peerDependencies": {
10
- "@dereekb/dbx-cli": "13.14.0"
10
+ "@dereekb/dbx-cli": "13.15.0"
11
11
  }
12
12
  }
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli-generate-mcp-manifest",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "peerDependencies": {
7
- "@dereekb/dbx-cli": "13.14.0",
8
- "@dereekb/model": "13.14.0",
7
+ "@dereekb/dbx-cli": "13.15.0",
8
+ "@dereekb/model": "13.15.0",
9
9
  "arktype": "^2.2.0",
10
10
  "jiti": "2.6.1"
11
11
  }
package/index.cjs.js CHANGED
@@ -351,11 +351,17 @@ function _ts_generator$1f(thisArg, body) {
351
351
  /client_secret[=:]\s*\S+/gi,
352
352
  /id_token[=:]\s*\S+/gi
353
353
  ];
354
+ /**
355
+ * Default per-request HTTP timeout in milliseconds, applied when no explicit `--timeout` is set.
356
+ *
357
+ * Without a default, the HTTP layer's `fetch` waits indefinitely on an unresponsive server, which
358
+ * surfaces as a CLI (or CI test) that hangs forever rather than failing with a clear error.
359
+ */ var DEFAULT_CLI_HTTP_TIMEOUT_MS = 60000;
354
360
  var _outputOptions = {};
355
361
  var _secretPatterns = _to_consumable_array$Z(DEFAULT_CLI_SECRET_PATTERNS);
356
362
  var _errorMapper;
357
363
  var _verbose = false;
358
- var _timeoutMs;
364
+ var _timeoutMs = DEFAULT_CLI_HTTP_TIMEOUT_MS;
359
365
  /**
360
366
  * Configures output options from parsed CLI arguments.
361
367
  *
@@ -410,7 +416,8 @@ var _timeoutMs;
410
416
  * @returns The fetch Response.
411
417
  */ function tracedFetch(fetcher, input, init) {
412
418
  return _async_to_generator$1f(function() {
413
- var _ref, fetchImpl, timeoutMs, method, url, controller, timeoutHandle, finalInit, localController, e;
419
+ var _ref, fetchImpl, timeoutMs, method, url, controller, timeoutHandle, finalInit, // Don't let the abort timer itself keep the Node event loop (or a test worker) alive.
420
+ _timeoutHandle_unref, localController, e;
414
421
  return _ts_generator$1f(this, function(_state) {
415
422
  switch(_state.label){
416
423
  case 0:
@@ -426,12 +433,13 @@ var _timeoutMs;
426
433
  }
427
434
  verboseLog("".concat(method, " ").concat(url));
428
435
  finalInit = init;
429
- if (timeoutMs != null && (init === null || init === void 0 ? void 0 : init.signal) == null) {
436
+ if (timeoutMs != null && timeoutMs > 0 && (init === null || init === void 0 ? void 0 : init.signal) == null) {
430
437
  localController = new AbortController();
431
438
  controller = localController;
432
439
  timeoutHandle = setTimeout(function() {
433
440
  return localController.abort();
434
441
  }, timeoutMs);
442
+ (_timeoutHandle_unref = timeoutHandle.unref) === null || _timeoutHandle_unref === void 0 ? void 0 : _timeoutHandle_unref.call(timeoutHandle);
435
443
  finalInit = _object_spread_props$t(_object_spread$L({}, init), {
436
444
  signal: localController.signal
437
445
  });
@@ -478,12 +486,13 @@ var _timeoutMs;
478
486
  /**
479
487
  * Sets the process-wide HTTP timeout (in milliseconds) honored by the HTTP layer.
480
488
  *
481
- * Pass `undefined` to clear. The HTTP helpers thread this into an `AbortController`
482
- * so individual `fetch` calls cancel after the configured duration.
489
+ * The HTTP helpers thread a positive value into an `AbortController` so individual `fetch` calls
490
+ * cancel after the configured duration. `undefined` falls back to {@link DEFAULT_CLI_HTTP_TIMEOUT_MS};
491
+ * `0` (or a negative value) disables the timeout entirely (the request waits indefinitely).
483
492
  *
484
- * @param ms - Timeout in ms, or `undefined` to clear.
493
+ * @param ms - Timeout in ms, `0`/negative to disable, or `undefined` to fall back to the default.
485
494
  */ function setCliTimeoutMs(ms) {
486
- _timeoutMs = ms;
495
+ _timeoutMs = ms === undefined ? DEFAULT_CLI_HTTP_TIMEOUT_MS : ms;
487
496
  }
488
497
  /**
489
498
  * @returns The current process-wide HTTP timeout in ms, or `undefined` when unset.
@@ -9286,7 +9295,8 @@ function _ts_generator$_(thisArg, body) {
9286
9295
  // Configure verbose/timeout as early as possible so HTTP calls made from this very
9287
9296
  // middleware (OIDC discovery + token refresh) honor the flags.
9288
9297
  setCliVerbose(Boolean(argv.verbose));
9289
- setCliTimeoutMs(typeof argv.timeout === 'number' && argv.timeout > 0 ? argv.timeout * 1000 : undefined);
9298
+ // No `--timeout` flag undefined the default timeout applies. `--timeout 0` disables it.
9299
+ setCliTimeoutMs(typeof argv.timeout === 'number' ? argv.timeout * 1000 : undefined);
9290
9300
  command = (_argv__ = argv._) === null || _argv__ === void 0 ? void 0 : _argv__[0];
9291
9301
  if (typeof command === 'string' && input.skipCommands.has(command)) {
9292
9302
  return [
@@ -9672,7 +9682,8 @@ function _ts_generator$Z(thisArg, body) {
9672
9682
  // (auth, env, doctor, output) — which bypass the auth middleware via skipCommands —
9673
9683
  // still respect `--verbose` and `--timeout`.
9674
9684
  setCliVerbose(Boolean(argv.verbose));
9675
- setCliTimeoutMs(typeof argv.timeout === 'number' && argv.timeout > 0 ? argv.timeout * 1000 : undefined);
9685
+ // No `--timeout` flag undefined the default timeout applies. `--timeout 0` disables it.
9686
+ setCliTimeoutMs(typeof argv.timeout === 'number' ? argv.timeout * 1000 : undefined);
9676
9687
  commandPath = argv._ ? argv._.map(String) : [];
9677
9688
  topCommand = commandPath[0];
9678
9689
  setDumpDir = argv.setDumpDir;
@@ -10450,7 +10461,7 @@ function _ts_generator$X(thisArg, body) {
10450
10461
  }).option('timeout', {
10451
10462
  type: 'number',
10452
10463
  global: true,
10453
- describe: 'Per-HTTP-request timeout in seconds (aborts via AbortController)'
10464
+ describe: 'Per-HTTP-request timeout in seconds (default 60; 0 disables; aborts via AbortController)'
10454
10465
  }).option('data-help', {
10455
10466
  type: 'string',
10456
10467
  choices: [
@@ -56934,6 +56945,7 @@ exports.DBX_DOCS_UI_EXAMPLES_SCAN_CONFIG_FILENAME = DBX_DOCS_UI_EXAMPLES_SCAN_CO
56934
56945
  exports.DBX_DOCS_UI_EXAMPLE_USE_KINDS = DBX_DOCS_UI_EXAMPLE_USE_KINDS;
56935
56946
  exports.DEFAULT_ACTIONS_SCAN_OUT_PATH = DEFAULT_ACTIONS_SCAN_OUT_PATH;
56936
56947
  exports.DEFAULT_ACTION_COMMAND_NAME = DEFAULT_ACTION_COMMAND_NAME;
56948
+ exports.DEFAULT_CLI_HTTP_TIMEOUT_MS = DEFAULT_CLI_HTTP_TIMEOUT_MS;
56937
56949
  exports.DEFAULT_CLI_OIDC_SCOPES = DEFAULT_CLI_OIDC_SCOPES;
56938
56950
  exports.DEFAULT_CLI_REDIRECT_URI = DEFAULT_CLI_REDIRECT_URI;
56939
56951
  exports.DEFAULT_CLI_SECRET_PATTERNS = DEFAULT_CLI_SECRET_PATTERNS;
package/index.esm.js CHANGED
@@ -349,11 +349,17 @@ function _ts_generator$1f(thisArg, body) {
349
349
  /client_secret[=:]\s*\S+/gi,
350
350
  /id_token[=:]\s*\S+/gi
351
351
  ];
352
+ /**
353
+ * Default per-request HTTP timeout in milliseconds, applied when no explicit `--timeout` is set.
354
+ *
355
+ * Without a default, the HTTP layer's `fetch` waits indefinitely on an unresponsive server, which
356
+ * surfaces as a CLI (or CI test) that hangs forever rather than failing with a clear error.
357
+ */ var DEFAULT_CLI_HTTP_TIMEOUT_MS = 60000;
352
358
  var _outputOptions = {};
353
359
  var _secretPatterns = _to_consumable_array$Z(DEFAULT_CLI_SECRET_PATTERNS);
354
360
  var _errorMapper;
355
361
  var _verbose = false;
356
- var _timeoutMs;
362
+ var _timeoutMs = DEFAULT_CLI_HTTP_TIMEOUT_MS;
357
363
  /**
358
364
  * Configures output options from parsed CLI arguments.
359
365
  *
@@ -408,7 +414,8 @@ var _timeoutMs;
408
414
  * @returns The fetch Response.
409
415
  */ function tracedFetch(fetcher, input, init) {
410
416
  return _async_to_generator$1f(function() {
411
- var _ref, fetchImpl, timeoutMs, method, url, controller, timeoutHandle, finalInit, localController, e;
417
+ var _ref, fetchImpl, timeoutMs, method, url, controller, timeoutHandle, finalInit, // Don't let the abort timer itself keep the Node event loop (or a test worker) alive.
418
+ _timeoutHandle_unref, localController, e;
412
419
  return _ts_generator$1f(this, function(_state) {
413
420
  switch(_state.label){
414
421
  case 0:
@@ -424,12 +431,13 @@ var _timeoutMs;
424
431
  }
425
432
  verboseLog("".concat(method, " ").concat(url));
426
433
  finalInit = init;
427
- if (timeoutMs != null && (init === null || init === void 0 ? void 0 : init.signal) == null) {
434
+ if (timeoutMs != null && timeoutMs > 0 && (init === null || init === void 0 ? void 0 : init.signal) == null) {
428
435
  localController = new AbortController();
429
436
  controller = localController;
430
437
  timeoutHandle = setTimeout(function() {
431
438
  return localController.abort();
432
439
  }, timeoutMs);
440
+ (_timeoutHandle_unref = timeoutHandle.unref) === null || _timeoutHandle_unref === void 0 ? void 0 : _timeoutHandle_unref.call(timeoutHandle);
433
441
  finalInit = _object_spread_props$t(_object_spread$L({}, init), {
434
442
  signal: localController.signal
435
443
  });
@@ -476,12 +484,13 @@ var _timeoutMs;
476
484
  /**
477
485
  * Sets the process-wide HTTP timeout (in milliseconds) honored by the HTTP layer.
478
486
  *
479
- * Pass `undefined` to clear. The HTTP helpers thread this into an `AbortController`
480
- * so individual `fetch` calls cancel after the configured duration.
487
+ * The HTTP helpers thread a positive value into an `AbortController` so individual `fetch` calls
488
+ * cancel after the configured duration. `undefined` falls back to {@link DEFAULT_CLI_HTTP_TIMEOUT_MS};
489
+ * `0` (or a negative value) disables the timeout entirely (the request waits indefinitely).
481
490
  *
482
- * @param ms - Timeout in ms, or `undefined` to clear.
491
+ * @param ms - Timeout in ms, `0`/negative to disable, or `undefined` to fall back to the default.
483
492
  */ function setCliTimeoutMs(ms) {
484
- _timeoutMs = ms;
493
+ _timeoutMs = ms === undefined ? DEFAULT_CLI_HTTP_TIMEOUT_MS : ms;
485
494
  }
486
495
  /**
487
496
  * @returns The current process-wide HTTP timeout in ms, or `undefined` when unset.
@@ -9284,7 +9293,8 @@ function _ts_generator$_(thisArg, body) {
9284
9293
  // Configure verbose/timeout as early as possible so HTTP calls made from this very
9285
9294
  // middleware (OIDC discovery + token refresh) honor the flags.
9286
9295
  setCliVerbose(Boolean(argv.verbose));
9287
- setCliTimeoutMs(typeof argv.timeout === 'number' && argv.timeout > 0 ? argv.timeout * 1000 : undefined);
9296
+ // No `--timeout` flag undefined the default timeout applies. `--timeout 0` disables it.
9297
+ setCliTimeoutMs(typeof argv.timeout === 'number' ? argv.timeout * 1000 : undefined);
9288
9298
  command = (_argv__ = argv._) === null || _argv__ === void 0 ? void 0 : _argv__[0];
9289
9299
  if (typeof command === 'string' && input.skipCommands.has(command)) {
9290
9300
  return [
@@ -9670,7 +9680,8 @@ function _ts_generator$Z(thisArg, body) {
9670
9680
  // (auth, env, doctor, output) — which bypass the auth middleware via skipCommands —
9671
9681
  // still respect `--verbose` and `--timeout`.
9672
9682
  setCliVerbose(Boolean(argv.verbose));
9673
- setCliTimeoutMs(typeof argv.timeout === 'number' && argv.timeout > 0 ? argv.timeout * 1000 : undefined);
9683
+ // No `--timeout` flag undefined the default timeout applies. `--timeout 0` disables it.
9684
+ setCliTimeoutMs(typeof argv.timeout === 'number' ? argv.timeout * 1000 : undefined);
9674
9685
  commandPath = argv._ ? argv._.map(String) : [];
9675
9686
  topCommand = commandPath[0];
9676
9687
  setDumpDir = argv.setDumpDir;
@@ -10448,7 +10459,7 @@ function _ts_generator$X(thisArg, body) {
10448
10459
  }).option('timeout', {
10449
10460
  type: 'number',
10450
10461
  global: true,
10451
- describe: 'Per-HTTP-request timeout in seconds (aborts via AbortController)'
10462
+ describe: 'Per-HTTP-request timeout in seconds (default 60; 0 disables; aborts via AbortController)'
10452
10463
  }).option('data-help', {
10453
10464
  type: 'string',
10454
10465
  choices: [
@@ -56891,4 +56902,4 @@ function printPaginatedOutput(input) {
56891
56902
  })();
56892
56903
  }
56893
56904
 
56894
- export { ACTIONS_SCAN_CONFIG_FILENAME, ACTION_ENTRY_ROLES, ACTION_ROLE_ORDER, ActionDirectiveEntry, ActionEntry, ActionInputEntry, ActionManifest, ActionOutputEntry, ActionStateEntry, ActionStoreEntry, ActionStoreMethodEntry, ActionStoreObservableEntry, ActionsScanConfig, ActionsScanSection, BUILTIN_AUTH_CLAIMS, BUILTIN_AUTH_ROLES, BUILTIN_AUTH_SCOPES, CALL_MODEL_API_PATH, CALL_PASSTHROUGH_COMMAND, CLI_EXIT_CODE_AUTH, CLI_EXIT_CODE_HANDLER, CORE_TOPICS, CORE_TOPICS_SET, CSS_UTILITIES_SCAN_CONFIG_FILENAME, CSS_UTILITY_ROLES, CSS_UTILITY_SCOPES, CliError, CssUtilitiesScanConfig, CssUtilitiesScanSection, CssUtilityDeclaration, CssUtilityEntry, CssUtilityManifest, DBX_ACTION_STATE_VALUES, DBX_DOCS_UI_EXAMPLES_SCAN_CONFIG_FILENAME, DBX_DOCS_UI_EXAMPLE_USE_KINDS, DEFAULT_ACTIONS_SCAN_OUT_PATH, DEFAULT_ACTION_COMMAND_NAME, DEFAULT_CLI_OIDC_SCOPES, DEFAULT_CLI_REDIRECT_URI, DEFAULT_CLI_SECRET_PATTERNS, DEFAULT_CSS_UTILITIES_SCAN_OUT_PATH, DEFAULT_DBX_DOCS_UI_EXAMPLES_SCAN_OUT_PATH, DEFAULT_FILTERS_SCAN_OUT_PATH, DEFAULT_FORGE_FIELDS_SCAN_OUT_PATH, DEFAULT_MANIFEST_HELP_DATA_FORMAT, DEFAULT_MANIFEST_HELP_MODE, DEFAULT_MANIFEST_MODEL_COMMAND_NAME, DEFAULT_MODEL_DECODE_COMMAND_NAME, DEFAULT_MODEL_INFO_COMMAND_NAME, DEFAULT_MODEL_SNAPSHOT_FIELDS_SCAN_OUT_PATH, DEFAULT_PIPES_SCAN_OUT_PATH, DEFAULT_SCAN_OUT_PATH, DEFAULT_SPECIFIER_KEY, DEFAULT_UI_COMPONENTS_SCAN_OUT_PATH, DEFAULT_UTILS_SCAN_OUT_PATH, DOWNSTREAM_CLUSTERS, DUMP_MERGE_MODES, DUMP_OUTPUT_MODES, DbxDocsUiExampleEntry, DbxDocsUiExampleManifest, DbxDocsUiExampleUseEntry, DbxDocsUiExamplesScanConfig, DbxDocsUiExamplesScanSection, DbxMcpConfig, EMPTY_ACTION_REGISTRY, EMPTY_AUTH_REGISTRY, EMPTY_CSS_UTILITY_REGISTRY, EMPTY_DBX_DOCS_UI_EXAMPLES_REGISTRY, EMPTY_FILTER_REGISTRY, EMPTY_FORGE_FIELD_REGISTRY, EMPTY_MODEL_SNAPSHOT_FIELD_REGISTRY, EMPTY_PIPE_REGISTRY, EMPTY_SEMANTIC_TYPE_REGISTRY, EMPTY_TOKEN_REGISTRY, EMPTY_UI_COMPONENT_REGISTRY, EMPTY_UTIL_REGISTRY, ExtractedDbxDocsUiExampleEntrySchema, ExtractedEntrySchema, ExtractedForgeFieldEntrySchema, ExtractedUiEntrySchema, FILTERS_SCAN_CONFIG_FILENAME, FILTER_KINDS, FILTER_KIND_ORDER, FIREBASE_MODELS, FIREBASE_MODEL_GROUPS, FORGE_FIELDS_SCAN_CONFIG_FILENAME, FORGE_FIELD_ARRAY_OUTPUTS, FORGE_FIELD_COMPOSITE_SUFFIXES, FORGE_FIELD_TIERS, FORGE_FIELD_WRAPPER_PATTERNS, FORM_FIELDS, FORM_TIER_ORDER, FilterDirectiveEntry, FilterEntry, FilterInputEntry, FilterManifest, FilterPatternEntry, FiltersScanConfig, FiltersScanSection, ForgeFieldEntry, ForgeFieldManifest, ForgeFieldPropertyEntry, ForgeFieldsScanConfig, ForgeFieldsScanSection, GET_COMMAND, GET_MANY_COMMAND, MAX_MODEL_ACCESS_MULTI_READ_KEYS, MCP_CALL_TYPE_ABBREVIATIONS, MCP_MANIFEST_VERSION, MCP_TOOL_NAME_MAX_LENGTH, MCP_TOOL_NAME_WARN_LENGTH, MODEL_ARCHETYPES, MODEL_ARCHETYPE_ADDON_SLUGS, MODEL_ARCHETYPE_SYNC_MODES, MODEL_SNAPSHOT_FIELDS_SCAN_CONFIG_FILENAME, MODEL_SNAPSHOT_FIELD_KINDS, MODEL_WRITE_OIDC_SCOPES, MULTIPLE_PAGES_OUTPUT_MODES, ModelSnapshotFieldEntry, ModelSnapshotFieldManifest, ModelSnapshotFieldParamEntry, ModelSnapshotFieldsScanConfig, ModelSnapshotFieldsScanSection, PIPES_SCAN_CONFIG_FILENAME, PIPE_CATEGORIES, PIPE_CATEGORY_ORDER, PIPE_PURITIES, PROMPT_CANCELLED_ERROR_CODE, PipeArgEntry, PipeEntry, PipeManifest, PipesScanConfig, PipesScanSection, RESERVED_MODEL_FOLDERS, SCAN_CONFIG_FILENAME$1 as SCAN_CONFIG_FILENAME, SERVICE_TOKEN_REQUIRED_OIDC_SCOPES, STANDARD_GLOBAL_OPTION_NAMES, SemanticTypeEntry, SemanticTypeManifest, SemanticTypeScanConfig, TOKEN_ROLES, TOKEN_SOURCES, TokenDefaults, TokenEntry, TokenManifest, UI_COMPONENTS_SCAN_CONFIG_FILENAME, UI_COMPONENT_CATEGORIES, UI_COMPONENT_KINDS, UTILS_SCAN_CONFIG_FILENAME, UTIL_KINDS, UiComponentEntry, UiComponentInputEntry, UiComponentManifest, UiComponentOutputEntry, UiComponentsScanConfig, UiComponentsScanSection, UtilEntry, UtilManifest, UtilParamEntry, UtilsScanConfig, UtilsScanSection, WORKSPACE_AUTH_APPS, WORKSPACE_AUTH_CLAIMS, WORKSPACE_FACTORY_SCAN_EXCLUDE, WORKSPACE_FACTORY_SCAN_INCLUDE, abbreviateMcpCallType, applyEnvVarOverrides, buildActionCommands, buildActionsManifest, buildAuthorizationUrl, buildCliPaths, buildCssUtilitiesManifest, buildDbxDocsUiExamplesManifest, buildDisambiguatedMcpToolName, buildDispatcherCreditByName, buildDumpFilePath, buildErrorOutput, buildFiltersManifest, buildForgeFieldsManifest, buildManifest, buildManifestCommands, buildMcpToolName, buildModelDecodeCommand, buildModelInfoCommand, buildModelSnapshotFieldsManifest, buildOidcDiscoveryCandidates, buildPipesManifest, buildScanProject, buildUiComponentsManifest, buildUtilsManifest, callModelOverHttp, clearDownstreamCatalogCache, collectClassPropertiesWithInheritance, configureCliErrorMapper, configureCliSecretPatterns, configureOutputOptions, createActionCommand, createActionRegistry, createActionRegistryFromEntries, createAuthCommand, createAuthMiddleware, createAuthRegistryFromEntries, createCallModelCommand, createCli, createCliContext, createCliTokenCacheStore, createContextSlot, createCssUtilityRegistry, createCssUtilityRegistryFromEntries, createDbxDocsUiExamplesRegistry, createDbxDocsUiExamplesRegistryFromEntries, createDoctorCommand, createEnvCommand, createFilterRegistry, createFilterRegistryFromEntries, createForgeFieldRegistry, createForgeFieldRegistryFromEntries, createModelSnapshotFieldRegistry, createModelSnapshotFieldRegistryFromEntries, createOutputCommand, createOutputMiddleware, createPassthroughAuthMiddleware, createPipeRegistry, createPipeRegistryFromEntries, createSemanticTypeRegistry, createSemanticTypeRegistryFromEntries, createTokenRegistry, createTokenRegistryFromEntries, createUiComponentRegistry, createUiComponentRegistryFromEntries, createUtilRegistry, createUtilRegistryFromEntries, decodeFirestoreModelKey, defaultDoctorChecks, defaultGlobber, defaultReadFile, deriveOptionalFromName, detectDataHelpFormat, detectHelpMode, discoverDownstreamFirebasePackages, discoverDownstreamPackages, discoverOidcMetadata, dumpTimestamp, exchangeAuthorizationCode, expandModelKeys, extractActionEntries, extractAngularInputs, extractAngularOutputs, extractAuthEntries, extractCssUtilityEntries, extractDbxDocsUiExampleEntries, extractEntries, extractFilterEntries, extractForgeFieldEntries, extractModelSnapshotFieldEntries, extractModels, extractPipeEntries, extractUiEntries, extractUtilEntries, fetchSessionInfo, fetchUserInfo, filterReadOnlyModelScopes, findAndLoadConfig, findCliEnvDefault, findCliModelManifestEntry, flattenList, generateOAuthState, generatePkceMaterial, getBundledManifestsDirectory, getCliContext, getCliEnvVarName, getCliTimeoutMs, getDefaultBundledActionManifestPaths, getDefaultBundledCssUtilityManifestPaths, getDefaultBundledDbxDocsUiExamplesManifestPaths, getDefaultBundledFilterManifestPaths, getDefaultBundledForgeFieldManifestPaths, getDefaultBundledManifestPaths, getDefaultBundledModelFirebaseIndexManifestPaths, getDefaultBundledModelSnapshotFieldManifestPaths, getDefaultBundledPipeManifestPaths, getDefaultBundledTokenManifestPaths, getDefaultBundledUiManifestPaths, getDefaultBundledUtilManifestPaths, getDownstreamCatalog, getFirebaseBucketKeyedByIdModels, getFirebaseDistrictKeyedByIdModels, getFirebaseExternalIdKeyedByIdModels, getFirebaseModel, getFirebaseModelByPrefix, getFirebaseModelGroup, getFirebaseModelGroups, getFirebaseModels, getFirebaseModelsByArchetype, getFirebasePrefixCatalog, getFirebaseRegionKeyedByIdModels, getFirebaseSubcollectionsOf, getFirebaseUserKeyedByIdModels, getFirebaseUserRelatedModels, getModelArchetypeBySlug, getModelArchetypesByAxisValue, getModelArchetypesByCollectionKind, getModelArchetypesBySyncMode, getModelOverHttp, getMultipleModelsOverHttp, getMultipleModelsOverHttpChunked, getOutputOptions, globToRegex, isCliEnvConfigComplete, isCliVerbose, isCoreTopic, isStdinSentinel, isTokenExpired, isVisibleProperty, iterateDbxCliCallModel, loadActionManifests, loadActionRegistry, loadAuthRegistry, loadCliConfig, loadCssUtilityRegistry, loadDbxDocsUiExamplesManifests, loadDbxDocsUiExamplesRegistry, loadFilterManifests, loadFilterRegistry, loadForgeFieldManifests, loadForgeFieldRegistry, loadModelFirebaseIndexManifests, loadModelFirebaseIndexRegistry, loadModelSnapshotFieldManifests, loadModelSnapshotFieldRegistry, loadPackageName, loadPipeManifests, loadPipeRegistry, loadScanSection, loadSemanticTypeManifests, loadSemanticTypeRegistry, loadTokenManifests, loadTokenRegistry, loadUiComponentManifests, loadUiComponentRegistry, loadUtilManifests, loadUtilRegistry, maskEnv, maskSecret, mcpManifestKey, mergeCliConfig, mergeCliEnvWithDefault, mergeOutputConfig, openStreamingDump, outputError, outputResult, packageNameToSlug, parseAnnotation, parseDeclarations$1 as parseDeclarations, parseGetArgs, parseGetManyArgs, parsePastedRedirect, parseScanArgs, pickFields, promptLine, readAllStdin, readDirectiveDecorator, readEnvTokenEntry, readPropertyDescription, readSelector, readStdinTokens, readStringProperty, refreshAccessToken, renderDecodedKey, renderModelManifestEntry, renderModelManifestFields, renderModelManifestList, requireCliContext, resolveActiveEnvName, resolveCliEnv, resolveCliEnvOrThrow, resolveCliModel, resolveDemoClaimsPath, resolveExplicitFirebasePackages, resolveModelArchetype, resolveOutputConfig, resolvePerModelGetKey, revokeToken, runActionsScanCli, runCli, runCssUtilitiesScanCli, runDbxDocsUiExamplesScanCli, runFiltersScanCli, runForgeFieldsScanCli, runModelFirebaseIndexScanCli, runModelSnapshotFieldsScanCli, runPaginatedList, runPipesScanCli, runScanCli, runScanCliBase, runUiComponentsScanCli, runUtilsScanCli, sanitizeString, saveCliConfig, scanFactoryReferences, serializeActionManifest, serializeCssUtilityManifest, serializeDbxDocsUiExamplesManifest, serializeFilterManifest, serializeForgeFieldManifest, serializeManifest, serializeModelSnapshotFieldsManifest, serializePipeManifest, serializeUiComponentManifest, serializeUtilManifest, setCliContext, setCliTimeoutMs, setCliVerbose, splitListTagText$1 as splitListTagText, toActionEntryInfo, toFilterEntryInfo, toFormFieldInfo, tracedFetch, unwrapFenced, validateMcpToolName, verboseLog, withCallModelArgs, withEnv, withMultiplePages, withOutput, withServiceTokenScopes, wrapCommandHandler, wrapSyncCommandHandler };
56905
+ export { ACTIONS_SCAN_CONFIG_FILENAME, ACTION_ENTRY_ROLES, ACTION_ROLE_ORDER, ActionDirectiveEntry, ActionEntry, ActionInputEntry, ActionManifest, ActionOutputEntry, ActionStateEntry, ActionStoreEntry, ActionStoreMethodEntry, ActionStoreObservableEntry, ActionsScanConfig, ActionsScanSection, BUILTIN_AUTH_CLAIMS, BUILTIN_AUTH_ROLES, BUILTIN_AUTH_SCOPES, CALL_MODEL_API_PATH, CALL_PASSTHROUGH_COMMAND, CLI_EXIT_CODE_AUTH, CLI_EXIT_CODE_HANDLER, CORE_TOPICS, CORE_TOPICS_SET, CSS_UTILITIES_SCAN_CONFIG_FILENAME, CSS_UTILITY_ROLES, CSS_UTILITY_SCOPES, CliError, CssUtilitiesScanConfig, CssUtilitiesScanSection, CssUtilityDeclaration, CssUtilityEntry, CssUtilityManifest, DBX_ACTION_STATE_VALUES, DBX_DOCS_UI_EXAMPLES_SCAN_CONFIG_FILENAME, DBX_DOCS_UI_EXAMPLE_USE_KINDS, DEFAULT_ACTIONS_SCAN_OUT_PATH, DEFAULT_ACTION_COMMAND_NAME, DEFAULT_CLI_HTTP_TIMEOUT_MS, DEFAULT_CLI_OIDC_SCOPES, DEFAULT_CLI_REDIRECT_URI, DEFAULT_CLI_SECRET_PATTERNS, DEFAULT_CSS_UTILITIES_SCAN_OUT_PATH, DEFAULT_DBX_DOCS_UI_EXAMPLES_SCAN_OUT_PATH, DEFAULT_FILTERS_SCAN_OUT_PATH, DEFAULT_FORGE_FIELDS_SCAN_OUT_PATH, DEFAULT_MANIFEST_HELP_DATA_FORMAT, DEFAULT_MANIFEST_HELP_MODE, DEFAULT_MANIFEST_MODEL_COMMAND_NAME, DEFAULT_MODEL_DECODE_COMMAND_NAME, DEFAULT_MODEL_INFO_COMMAND_NAME, DEFAULT_MODEL_SNAPSHOT_FIELDS_SCAN_OUT_PATH, DEFAULT_PIPES_SCAN_OUT_PATH, DEFAULT_SCAN_OUT_PATH, DEFAULT_SPECIFIER_KEY, DEFAULT_UI_COMPONENTS_SCAN_OUT_PATH, DEFAULT_UTILS_SCAN_OUT_PATH, DOWNSTREAM_CLUSTERS, DUMP_MERGE_MODES, DUMP_OUTPUT_MODES, DbxDocsUiExampleEntry, DbxDocsUiExampleManifest, DbxDocsUiExampleUseEntry, DbxDocsUiExamplesScanConfig, DbxDocsUiExamplesScanSection, DbxMcpConfig, EMPTY_ACTION_REGISTRY, EMPTY_AUTH_REGISTRY, EMPTY_CSS_UTILITY_REGISTRY, EMPTY_DBX_DOCS_UI_EXAMPLES_REGISTRY, EMPTY_FILTER_REGISTRY, EMPTY_FORGE_FIELD_REGISTRY, EMPTY_MODEL_SNAPSHOT_FIELD_REGISTRY, EMPTY_PIPE_REGISTRY, EMPTY_SEMANTIC_TYPE_REGISTRY, EMPTY_TOKEN_REGISTRY, EMPTY_UI_COMPONENT_REGISTRY, EMPTY_UTIL_REGISTRY, ExtractedDbxDocsUiExampleEntrySchema, ExtractedEntrySchema, ExtractedForgeFieldEntrySchema, ExtractedUiEntrySchema, FILTERS_SCAN_CONFIG_FILENAME, FILTER_KINDS, FILTER_KIND_ORDER, FIREBASE_MODELS, FIREBASE_MODEL_GROUPS, FORGE_FIELDS_SCAN_CONFIG_FILENAME, FORGE_FIELD_ARRAY_OUTPUTS, FORGE_FIELD_COMPOSITE_SUFFIXES, FORGE_FIELD_TIERS, FORGE_FIELD_WRAPPER_PATTERNS, FORM_FIELDS, FORM_TIER_ORDER, FilterDirectiveEntry, FilterEntry, FilterInputEntry, FilterManifest, FilterPatternEntry, FiltersScanConfig, FiltersScanSection, ForgeFieldEntry, ForgeFieldManifest, ForgeFieldPropertyEntry, ForgeFieldsScanConfig, ForgeFieldsScanSection, GET_COMMAND, GET_MANY_COMMAND, MAX_MODEL_ACCESS_MULTI_READ_KEYS, MCP_CALL_TYPE_ABBREVIATIONS, MCP_MANIFEST_VERSION, MCP_TOOL_NAME_MAX_LENGTH, MCP_TOOL_NAME_WARN_LENGTH, MODEL_ARCHETYPES, MODEL_ARCHETYPE_ADDON_SLUGS, MODEL_ARCHETYPE_SYNC_MODES, MODEL_SNAPSHOT_FIELDS_SCAN_CONFIG_FILENAME, MODEL_SNAPSHOT_FIELD_KINDS, MODEL_WRITE_OIDC_SCOPES, MULTIPLE_PAGES_OUTPUT_MODES, ModelSnapshotFieldEntry, ModelSnapshotFieldManifest, ModelSnapshotFieldParamEntry, ModelSnapshotFieldsScanConfig, ModelSnapshotFieldsScanSection, PIPES_SCAN_CONFIG_FILENAME, PIPE_CATEGORIES, PIPE_CATEGORY_ORDER, PIPE_PURITIES, PROMPT_CANCELLED_ERROR_CODE, PipeArgEntry, PipeEntry, PipeManifest, PipesScanConfig, PipesScanSection, RESERVED_MODEL_FOLDERS, SCAN_CONFIG_FILENAME$1 as SCAN_CONFIG_FILENAME, SERVICE_TOKEN_REQUIRED_OIDC_SCOPES, STANDARD_GLOBAL_OPTION_NAMES, SemanticTypeEntry, SemanticTypeManifest, SemanticTypeScanConfig, TOKEN_ROLES, TOKEN_SOURCES, TokenDefaults, TokenEntry, TokenManifest, UI_COMPONENTS_SCAN_CONFIG_FILENAME, UI_COMPONENT_CATEGORIES, UI_COMPONENT_KINDS, UTILS_SCAN_CONFIG_FILENAME, UTIL_KINDS, UiComponentEntry, UiComponentInputEntry, UiComponentManifest, UiComponentOutputEntry, UiComponentsScanConfig, UiComponentsScanSection, UtilEntry, UtilManifest, UtilParamEntry, UtilsScanConfig, UtilsScanSection, WORKSPACE_AUTH_APPS, WORKSPACE_AUTH_CLAIMS, WORKSPACE_FACTORY_SCAN_EXCLUDE, WORKSPACE_FACTORY_SCAN_INCLUDE, abbreviateMcpCallType, applyEnvVarOverrides, buildActionCommands, buildActionsManifest, buildAuthorizationUrl, buildCliPaths, buildCssUtilitiesManifest, buildDbxDocsUiExamplesManifest, buildDisambiguatedMcpToolName, buildDispatcherCreditByName, buildDumpFilePath, buildErrorOutput, buildFiltersManifest, buildForgeFieldsManifest, buildManifest, buildManifestCommands, buildMcpToolName, buildModelDecodeCommand, buildModelInfoCommand, buildModelSnapshotFieldsManifest, buildOidcDiscoveryCandidates, buildPipesManifest, buildScanProject, buildUiComponentsManifest, buildUtilsManifest, callModelOverHttp, clearDownstreamCatalogCache, collectClassPropertiesWithInheritance, configureCliErrorMapper, configureCliSecretPatterns, configureOutputOptions, createActionCommand, createActionRegistry, createActionRegistryFromEntries, createAuthCommand, createAuthMiddleware, createAuthRegistryFromEntries, createCallModelCommand, createCli, createCliContext, createCliTokenCacheStore, createContextSlot, createCssUtilityRegistry, createCssUtilityRegistryFromEntries, createDbxDocsUiExamplesRegistry, createDbxDocsUiExamplesRegistryFromEntries, createDoctorCommand, createEnvCommand, createFilterRegistry, createFilterRegistryFromEntries, createForgeFieldRegistry, createForgeFieldRegistryFromEntries, createModelSnapshotFieldRegistry, createModelSnapshotFieldRegistryFromEntries, createOutputCommand, createOutputMiddleware, createPassthroughAuthMiddleware, createPipeRegistry, createPipeRegistryFromEntries, createSemanticTypeRegistry, createSemanticTypeRegistryFromEntries, createTokenRegistry, createTokenRegistryFromEntries, createUiComponentRegistry, createUiComponentRegistryFromEntries, createUtilRegistry, createUtilRegistryFromEntries, decodeFirestoreModelKey, defaultDoctorChecks, defaultGlobber, defaultReadFile, deriveOptionalFromName, detectDataHelpFormat, detectHelpMode, discoverDownstreamFirebasePackages, discoverDownstreamPackages, discoverOidcMetadata, dumpTimestamp, exchangeAuthorizationCode, expandModelKeys, extractActionEntries, extractAngularInputs, extractAngularOutputs, extractAuthEntries, extractCssUtilityEntries, extractDbxDocsUiExampleEntries, extractEntries, extractFilterEntries, extractForgeFieldEntries, extractModelSnapshotFieldEntries, extractModels, extractPipeEntries, extractUiEntries, extractUtilEntries, fetchSessionInfo, fetchUserInfo, filterReadOnlyModelScopes, findAndLoadConfig, findCliEnvDefault, findCliModelManifestEntry, flattenList, generateOAuthState, generatePkceMaterial, getBundledManifestsDirectory, getCliContext, getCliEnvVarName, getCliTimeoutMs, getDefaultBundledActionManifestPaths, getDefaultBundledCssUtilityManifestPaths, getDefaultBundledDbxDocsUiExamplesManifestPaths, getDefaultBundledFilterManifestPaths, getDefaultBundledForgeFieldManifestPaths, getDefaultBundledManifestPaths, getDefaultBundledModelFirebaseIndexManifestPaths, getDefaultBundledModelSnapshotFieldManifestPaths, getDefaultBundledPipeManifestPaths, getDefaultBundledTokenManifestPaths, getDefaultBundledUiManifestPaths, getDefaultBundledUtilManifestPaths, getDownstreamCatalog, getFirebaseBucketKeyedByIdModels, getFirebaseDistrictKeyedByIdModels, getFirebaseExternalIdKeyedByIdModels, getFirebaseModel, getFirebaseModelByPrefix, getFirebaseModelGroup, getFirebaseModelGroups, getFirebaseModels, getFirebaseModelsByArchetype, getFirebasePrefixCatalog, getFirebaseRegionKeyedByIdModels, getFirebaseSubcollectionsOf, getFirebaseUserKeyedByIdModels, getFirebaseUserRelatedModels, getModelArchetypeBySlug, getModelArchetypesByAxisValue, getModelArchetypesByCollectionKind, getModelArchetypesBySyncMode, getModelOverHttp, getMultipleModelsOverHttp, getMultipleModelsOverHttpChunked, getOutputOptions, globToRegex, isCliEnvConfigComplete, isCliVerbose, isCoreTopic, isStdinSentinel, isTokenExpired, isVisibleProperty, iterateDbxCliCallModel, loadActionManifests, loadActionRegistry, loadAuthRegistry, loadCliConfig, loadCssUtilityRegistry, loadDbxDocsUiExamplesManifests, loadDbxDocsUiExamplesRegistry, loadFilterManifests, loadFilterRegistry, loadForgeFieldManifests, loadForgeFieldRegistry, loadModelFirebaseIndexManifests, loadModelFirebaseIndexRegistry, loadModelSnapshotFieldManifests, loadModelSnapshotFieldRegistry, loadPackageName, loadPipeManifests, loadPipeRegistry, loadScanSection, loadSemanticTypeManifests, loadSemanticTypeRegistry, loadTokenManifests, loadTokenRegistry, loadUiComponentManifests, loadUiComponentRegistry, loadUtilManifests, loadUtilRegistry, maskEnv, maskSecret, mcpManifestKey, mergeCliConfig, mergeCliEnvWithDefault, mergeOutputConfig, openStreamingDump, outputError, outputResult, packageNameToSlug, parseAnnotation, parseDeclarations$1 as parseDeclarations, parseGetArgs, parseGetManyArgs, parsePastedRedirect, parseScanArgs, pickFields, promptLine, readAllStdin, readDirectiveDecorator, readEnvTokenEntry, readPropertyDescription, readSelector, readStdinTokens, readStringProperty, refreshAccessToken, renderDecodedKey, renderModelManifestEntry, renderModelManifestFields, renderModelManifestList, requireCliContext, resolveActiveEnvName, resolveCliEnv, resolveCliEnvOrThrow, resolveCliModel, resolveDemoClaimsPath, resolveExplicitFirebasePackages, resolveModelArchetype, resolveOutputConfig, resolvePerModelGetKey, revokeToken, runActionsScanCli, runCli, runCssUtilitiesScanCli, runDbxDocsUiExamplesScanCli, runFiltersScanCli, runForgeFieldsScanCli, runModelFirebaseIndexScanCli, runModelSnapshotFieldsScanCli, runPaginatedList, runPipesScanCli, runScanCli, runScanCliBase, runUiComponentsScanCli, runUtilsScanCli, sanitizeString, saveCliConfig, scanFactoryReferences, serializeActionManifest, serializeCssUtilityManifest, serializeDbxDocsUiExamplesManifest, serializeFilterManifest, serializeForgeFieldManifest, serializeManifest, serializeModelSnapshotFieldsManifest, serializePipeManifest, serializeUiComponentManifest, serializeUtilManifest, setCliContext, setCliTimeoutMs, setCliVerbose, splitListTagText$1 as splitListTagText, toActionEntryInfo, toFilterEntryInfo, toFormFieldInfo, tracedFetch, unwrapFenced, validateMcpToolName, verboseLog, withCallModelArgs, withEnv, withMultiplePages, withOutput, withServiceTokenScopes, wrapCommandHandler, wrapSyncCommandHandler };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli-lint-cache",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "devDependencies": {
@@ -8,7 +8,7 @@
8
8
  "eslint": "10.4.0"
9
9
  },
10
10
  "peerDependencies": {
11
- "@dereekb/util": "13.14.0",
11
+ "@dereekb/util": "13.15.0",
12
12
  "yargs": "^18.0.0"
13
13
  }
14
14
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli/manifest-extract",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "ts-morph": "^21.0.0"
7
7
  },
8
8
  "devDependencies": {
9
- "@dereekb/firebase": "13.14.0"
9
+ "@dereekb/firebase": "13.15.0"
10
10
  },
11
11
  "exports": {
12
12
  "./package.json": "./package.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "bin": {
@@ -28,12 +28,21 @@
28
28
  "import": "./manifest-extract/index.cjs.mjs",
29
29
  "default": "./manifest-extract/index.cjs.js"
30
30
  },
31
+ "./model-test": {
32
+ "module": "./model-test/index.esm.js",
33
+ "types": "./model-test/index.d.ts",
34
+ "import": "./model-test/index.cjs.mjs",
35
+ "default": "./model-test/index.cjs.js"
36
+ },
31
37
  "./test": {
32
38
  "module": "./test/index.esm.js",
33
39
  "types": "./test/index.d.ts",
34
40
  "import": "./test/index.cjs.mjs",
35
41
  "default": "./test/index.cjs.js"
36
42
  },
43
+ "./validate": {
44
+ "default": "./validate/index.js"
45
+ },
37
46
  "./package.json": "./package.json",
38
47
  ".": {
39
48
  "import": "./index.esm.js",
@@ -41,11 +50,11 @@
41
50
  }
42
51
  },
43
52
  "peerDependencies": {
44
- "@dereekb/date": "13.14.0",
45
- "@dereekb/firebase": "13.14.0",
46
- "@dereekb/model": "13.14.0",
47
- "@dereekb/nestjs": "13.14.0",
48
- "@dereekb/util": "13.14.0",
53
+ "@dereekb/date": "13.15.0",
54
+ "@dereekb/firebase": "13.15.0",
55
+ "@dereekb/model": "13.15.0",
56
+ "@dereekb/nestjs": "13.15.0",
57
+ "@dereekb/util": "13.15.0",
49
58
  "@nestjs/common": "^11.1.19",
50
59
  "arktype": "^2.2.0",
51
60
  "jiti": "2.6.1",
@@ -55,6 +55,13 @@ export declare const DEFAULT_CLI_SECRET_PATTERNS: CliSecretPattern[];
55
55
  * back to the built-in `CliError` / `Error` / unknown branches. Returning `undefined` defers to the defaults.
56
56
  */
57
57
  export type CliErrorMapper = (error: unknown) => Maybe<CliErrorOutput>;
58
+ /**
59
+ * Default per-request HTTP timeout in milliseconds, applied when no explicit `--timeout` is set.
60
+ *
61
+ * Without a default, the HTTP layer's `fetch` waits indefinitely on an unresponsive server, which
62
+ * surfaces as a CLI (or CI test) that hangs forever rather than failing with a clear error.
63
+ */
64
+ export declare const DEFAULT_CLI_HTTP_TIMEOUT_MS = 60000;
58
65
  /**
59
66
  * Configures output options from parsed CLI arguments.
60
67
  *
@@ -105,10 +112,11 @@ export declare function tracedFetch(fetcher: typeof fetch | undefined, input: st
105
112
  /**
106
113
  * Sets the process-wide HTTP timeout (in milliseconds) honored by the HTTP layer.
107
114
  *
108
- * Pass `undefined` to clear. The HTTP helpers thread this into an `AbortController`
109
- * so individual `fetch` calls cancel after the configured duration.
115
+ * The HTTP helpers thread a positive value into an `AbortController` so individual `fetch` calls
116
+ * cancel after the configured duration. `undefined` falls back to {@link DEFAULT_CLI_HTTP_TIMEOUT_MS};
117
+ * `0` (or a negative value) disables the timeout entirely (the request waits indefinitely).
110
118
  *
111
- * @param ms - Timeout in ms, or `undefined` to clear.
119
+ * @param ms - Timeout in ms, `0`/negative to disable, or `undefined` to fall back to the default.
112
120
  */
113
121
  export declare function setCliTimeoutMs(ms: Maybe<number>): void;
114
122
  /**
package/test/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-cli/test",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "peerDependencies": {
5
- "@dereekb/date": "13.14.0",
6
- "@dereekb/dbx-cli": "13.14.0",
7
- "@dereekb/firebase": "13.14.0",
8
- "@dereekb/firebase-server/test": "13.14.0",
9
- "@dereekb/model": "13.14.0",
10
- "@dereekb/nestjs": "13.14.0",
11
- "@dereekb/rxjs": "13.14.0",
12
- "@dereekb/util": "13.14.0",
5
+ "@dereekb/date": "13.15.0",
6
+ "@dereekb/dbx-cli": "13.15.0",
7
+ "@dereekb/firebase": "13.15.0",
8
+ "@dereekb/firebase-server/test": "13.15.0",
9
+ "@dereekb/model": "13.15.0",
10
+ "@dereekb/nestjs": "13.15.0",
11
+ "@dereekb/rxjs": "13.15.0",
12
+ "@dereekb/util": "13.15.0",
13
13
  "@nestjs/common": "^11.1.19",
14
14
  "arktype": "^2.2.0",
15
15
  "vitest": "4.1.5",