@roo-code/types 1.23.0 → 1.24.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.cjs CHANGED
@@ -2310,7 +2310,9 @@ var bedrockSchema = apiModelIdProviderModelSchema.extend({
2310
2310
  awsUsePromptCache: import_zod5.z.boolean().optional(),
2311
2311
  awsProfile: import_zod5.z.string().optional(),
2312
2312
  awsUseProfile: import_zod5.z.boolean().optional(),
2313
- awsCustomArn: import_zod5.z.string().optional()
2313
+ awsCustomArn: import_zod5.z.string().optional(),
2314
+ awsBedrockEndpointEnabled: import_zod5.z.boolean().optional(),
2315
+ awsBedrockEndpoint: import_zod5.z.string().optional()
2314
2316
  });
2315
2317
  var vertexSchema = apiModelIdProviderModelSchema.extend({
2316
2318
  vertexKeyFile: import_zod5.z.string().optional(),
@@ -2470,6 +2472,8 @@ var PROVIDER_SETTINGS_KEYS = keysOf()([
2470
2472
  "awsProfile",
2471
2473
  "awsUseProfile",
2472
2474
  "awsCustomArn",
2475
+ "awsBedrockEndpointEnabled",
2476
+ "awsBedrockEndpoint",
2473
2477
  // Google Vertex
2474
2478
  "vertexKeyFile",
2475
2479
  "vertexJsonCredentials",
@@ -2714,6 +2718,7 @@ var rooCodeTelemetryEventSchema = import_zod8.z.discriminatedUnion("type", [
2714
2718
  import_zod8.z.object({
2715
2719
  type: import_zod8.z.literal("Task Message" /* TASK_MESSAGE */),
2716
2720
  properties: import_zod8.z.object({
2721
+ ...telemetryPropertiesSchema.shape,
2717
2722
  taskId: import_zod8.z.string(),
2718
2723
  message: clineMessageSchema
2719
2724
  })