@rudderhq/cli 0.2.0 → 0.2.1-canary.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/index.js CHANGED
@@ -119,7 +119,6 @@ var init_constants = __esm({
119
119
  "message",
120
120
  "issue_proposal",
121
121
  "operation_proposal",
122
- "routing_suggestion",
123
122
  "system_event"
124
123
  ];
125
124
  CHAT_MESSAGE_STATUSES = ["streaming", "completed", "stopped", "failed", "interrupted"];
@@ -418,6 +417,7 @@ var init_instance = __esm({
418
417
  instanceLocaleSchema = z.enum(["en", "zh-CN"]);
419
418
  instanceGeneralSettingsSchema = z.object({
420
419
  censorUsernameInLogs: z.boolean().default(false),
420
+ showDeveloperDiagnostics: z.boolean().default(false),
421
421
  locale: instanceLocaleSchema.default("en")
422
422
  }).strict();
423
423
  patchInstanceGeneralSettingsSchema = instanceGeneralSettingsSchema.partial();
@@ -646,7 +646,8 @@ var init_chat = __esm({
646
646
  decisionNote: z5.string().trim().max(5e3).optional().nullable()
647
647
  });
648
648
  updateChatConversationUserStateSchema = z5.object({
649
- pinned: z5.boolean().optional()
649
+ pinned: z5.boolean().optional(),
650
+ unread: z5.boolean().optional()
650
651
  });
651
652
  }
652
653
  });
@@ -2472,6 +2473,13 @@ var init_messenger_preview = __esm({
2472
2473
  }
2473
2474
  });
2474
2475
 
2476
+ // ../packages/shared/src/token-usage.ts
2477
+ var init_token_usage = __esm({
2478
+ "../packages/shared/src/token-usage.ts"() {
2479
+ "use strict";
2480
+ }
2481
+ });
2482
+
2475
2483
  // ../packages/shared/src/organization-skill-reference.ts
2476
2484
  var RUDDER_BUNDLED_SKILL_SLUGS, RUDDER_BUNDLED_SKILL_KEYS;
2477
2485
  var init_organization_skill_reference = __esm({
@@ -2671,6 +2679,7 @@ var init_src = __esm({
2671
2679
  init_organization_url_key();
2672
2680
  init_project_url_key();
2673
2681
  init_messenger_preview();
2682
+ init_token_usage();
2674
2683
  init_organization_skill_reference();
2675
2684
  init_project_mentions();
2676
2685
  init_config_schema();