@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.js CHANGED
@@ -2159,7 +2159,9 @@ var bedrockSchema = apiModelIdProviderModelSchema.extend({
2159
2159
  awsUsePromptCache: z5.boolean().optional(),
2160
2160
  awsProfile: z5.string().optional(),
2161
2161
  awsUseProfile: z5.boolean().optional(),
2162
- awsCustomArn: z5.string().optional()
2162
+ awsCustomArn: z5.string().optional(),
2163
+ awsBedrockEndpointEnabled: z5.boolean().optional(),
2164
+ awsBedrockEndpoint: z5.string().optional()
2163
2165
  });
2164
2166
  var vertexSchema = apiModelIdProviderModelSchema.extend({
2165
2167
  vertexKeyFile: z5.string().optional(),
@@ -2319,6 +2321,8 @@ var PROVIDER_SETTINGS_KEYS = keysOf()([
2319
2321
  "awsProfile",
2320
2322
  "awsUseProfile",
2321
2323
  "awsCustomArn",
2324
+ "awsBedrockEndpointEnabled",
2325
+ "awsBedrockEndpoint",
2322
2326
  // Google Vertex
2323
2327
  "vertexKeyFile",
2324
2328
  "vertexJsonCredentials",
@@ -2563,6 +2567,7 @@ var rooCodeTelemetryEventSchema = z8.discriminatedUnion("type", [
2563
2567
  z8.object({
2564
2568
  type: z8.literal("Task Message" /* TASK_MESSAGE */),
2565
2569
  properties: z8.object({
2570
+ ...telemetryPropertiesSchema.shape,
2566
2571
  taskId: z8.string(),
2567
2572
  message: clineMessageSchema
2568
2573
  })