File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
webview-ui/src/components/settings/providers/__tests__ Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ const bedrockSchema = apiModelIdProviderModelSchema.extend({
100100 awsProfile : z . string ( ) . optional ( ) ,
101101 awsUseProfile : z . boolean ( ) . optional ( ) ,
102102 awsCustomArn : z . string ( ) . optional ( ) ,
103+ awsBedrockEndpointEnabled : z . boolean ( ) . optional ( ) ,
104+ awsBedrockEndpoint : z . string ( ) . optional ( ) ,
103105} )
104106
105107const vertexSchema = apiModelIdProviderModelSchema . extend ( {
@@ -283,6 +285,8 @@ export const PROVIDER_SETTINGS_KEYS = keysOf<ProviderSettings>()([
283285 "awsProfile" ,
284286 "awsUseProfile" ,
285287 "awsCustomArn" ,
288+ "awsBedrockEndpointEnabled" ,
289+ "awsBedrockEndpoint" ,
286290 // Google Vertex
287291 "vertexKeyFile" ,
288292 "vertexJsonCredentials" ,
Original file line number Diff line number Diff line change 11import React from "react"
22import { render , screen , fireEvent } from "@testing-library/react"
33import { Bedrock } from "../Bedrock"
4- import { ProviderSettings } from "@roo/shared/api "
4+ import { ProviderSettings } from "@roo-code/types "
55
66// Mock the vscrui Checkbox component
77jest . mock ( "vscrui" , ( ) => ( {
You can’t perform that action at this time.
0 commit comments