File tree Expand file tree Collapse file tree 6 files changed +22
-12
lines changed Expand file tree Collapse file tree 6 files changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -996,4 +996,14 @@ Based on:
996
996
### Generated
997
997
- [ typescript v1.61.0] .
998
998
### Releases
999
- - [ NPM v1.61.0] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.61.0 - .
999
+ - [ NPM v1.61.0] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.61.0 - .
1000
+
1001
+ ## 2023-10-25 00:10:51
1002
+ ### Changes
1003
+ Based on:
1004
+ - OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
1005
+ - Speakeasy CLI 1.107.0 (2.171.0) https://github.com/speakeasy-api/speakeasy
1006
+ ### Generated
1007
+ - [ typescript v1.62.0] .
1008
+ ### Releases
1009
+ - [ NPM v1.62.0] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.62.0 - .
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : ba638b2ad28966c596e28321a2003686
4
4
docVersion : 0.3.0
5
- speakeasyVersion : 1.104 .0
6
- generationVersion : 2.169 .0
5
+ speakeasyVersion : 1.107 .0
6
+ generationVersion : 2.171 .0
7
7
generation :
8
8
repoURL : https://github.com/speakeasy-api/speakeasy-client-sdk-typescript.git
9
9
sdkClassName : speakeasy
@@ -12,14 +12,14 @@ generation:
12
12
features :
13
13
typescript :
14
14
acceptHeaders : 2.81.1
15
- core : 2.93 .0
15
+ core : 2.94 .0
16
16
examples : 2.81.3
17
17
globalSecurity : 2.82.0
18
18
globalServerURLs : 2.82.0
19
19
inputOutputModels : 2.81.1
20
20
serverIDs : 2.81.1
21
21
typescript :
22
- version : 1.61 .0
22
+ version : 1.62 .0
23
23
author : Speakeasy
24
24
flattenGlobalSecurity : false
25
25
installationURL : https://github.com/speakeasy-api/speakeasy-client-sdk-typescript
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @speakeasy-api/speakeasy-client-sdk-typescript" ,
3
- "version" : " 1.61 .0" ,
3
+ "version" : " 1.62 .0" ,
4
4
"author" : " Speakeasy" ,
5
5
"scripts" : {
6
6
"prepare" : " tsc --build" ,
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ function parseSecuritySchemeValue(
179
179
properties . headers [ securityDecorator . Name ] = value ;
180
180
break ;
181
181
case "oauth2" :
182
- properties . headers [ securityDecorator . Name ] = value ;
182
+ properties . headers [ securityDecorator . Name ] = value . toLowerCase ( ) . startsWith ( "bearer " ) ? value : `Bearer ${ value } ` ;
183
183
break ;
184
184
case "http" :
185
185
switch ( schemeDecorator . SubType ) {
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ export class SDKConfiguration {
60
60
serverDefaults : any ;
61
61
language = "typescript" ;
62
62
openapiDocVersion = "0.3.0" ;
63
- sdkVersion = "1.61 .0" ;
64
- genVersion = "2.169 .0" ;
63
+ sdkVersion = "1.62 .0" ;
64
+ genVersion = "2.171 .0" ;
65
65
userAgent =
66
- "speakeasy-sdk/typescript 1.61 .0 2.169 .0 0.3.0 @speakeasy-api/speakeasy-client-sdk-typescript" ;
66
+ "speakeasy-sdk/typescript 1.62 .0 2.171 .0 0.3.0 @speakeasy-api/speakeasy-client-sdk-typescript" ;
67
67
retryConfig ?: utils . RetryConfig ;
68
68
public constructor ( init ?: Partial < SDKConfiguration > ) {
69
69
Object . assign ( this , init ) ;
You can’t perform that action at this time.
0 commit comments