File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/auth/http Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 31
31
import software .amazon .smithy .typescript .codegen .auth .http .sections .DefaultHttpAuthSchemeProviderFunctionCodeSection ;
32
32
import software .amazon .smithy .typescript .codegen .auth .http .sections .HttpAuthOptionFunctionCodeSection ;
33
33
import software .amazon .smithy .typescript .codegen .auth .http .sections .HttpAuthOptionFunctionsCodeSection ;
34
+ import software .amazon .smithy .typescript .codegen .auth .http .sections .HttpAuthSchemeParametersInterfaceCodeSection ;
34
35
import software .amazon .smithy .typescript .codegen .auth .http .sections .HttpAuthSchemeParametersProviderInterfaceCodeSection ;
35
36
import software .amazon .smithy .typescript .codegen .auth .http .sections .HttpAuthSchemeProviderInterfaceCodeSection ;
36
37
import software .amazon .smithy .typescript .codegen .integration .TypeScriptIntegration ;
@@ -116,11 +117,12 @@ export interface WeatherHttpAuthSchemeParameters extends HttpAuthSchemeParameter
116
117
*/
117
118
private void generateHttpAuthSchemeParametersInterface () {
118
119
delegator .useFileWriter (AuthUtils .HTTP_AUTH_SCHEME_PROVIDER_PATH , w -> {
119
- w .pushState (HttpAuthSchemeProviderInterfaceCodeSection .builder ()
120
+ w .pushState (HttpAuthSchemeParametersInterfaceCodeSection .builder ()
120
121
.service (serviceShape )
121
122
.settings (settings )
122
123
.model (model )
123
124
.symbolProvider (symbolProvider )
125
+ .httpAuthSchemeParameters (httpAuthSchemeParameters )
124
126
.build ());
125
127
w .addDependency (TypeScriptDependency .SMITHY_TYPES );
126
128
w .addImport ("HttpAuthSchemeParameters" , null , TypeScriptDependency .SMITHY_TYPES );
You can’t perform that action at this time.
0 commit comments