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 @@ -946,4 +946,14 @@ Based on:
946
946
### Generated
947
947
- [ typescript v1.59.1] .
948
948
### Releases
949
- - [ NPM v1.59.1] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.59.1 - .
949
+ - [ NPM v1.59.1] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.59.1 - .
950
+
951
+ ## 2023-10-05 00:10:43
952
+ ### Changes
953
+ Based on:
954
+ - OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
955
+ - Speakeasy CLI 1.94.0 (2.147.0) https://github.com/speakeasy-api/speakeasy
956
+ ### Generated
957
+ - [ typescript v1.59.2] .
958
+ ### Releases
959
+ - [ NPM v1.59.2] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.59.2 - .
Original file line number Diff line number Diff line change @@ -2,23 +2,23 @@ configVersion: 1.0.0
2
2
management :
3
3
docChecksum : 8c4f3932e054e1b349a9a34f12cf7e8c
4
4
docVersion : 0.3.0
5
- speakeasyVersion : 1.92.3
6
- generationVersion : 2.143.2
5
+ speakeasyVersion : 1.94.0
6
+ generationVersion : 2.147.0
7
7
generation :
8
8
sdkClassName : speakeasy
9
9
singleTagPerOp : false
10
10
telemetryEnabled : true
11
11
features :
12
12
typescript :
13
13
acceptHeaders : 2.81.1
14
- core : 2.90.1
14
+ core : 2.90.3
15
15
examples : 2.81.2
16
16
globalSecurity : 2.81.1
17
17
globalServerURLs : 2.82.0
18
18
inputOutputModels : 2.81.1
19
19
serverIDs : 2.81.1
20
20
typescript :
21
- version : 1.59.1
21
+ version : 1.59.2
22
22
author : Speakeasy
23
23
maxMethodParams : 0
24
24
packageName : ' @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.59.1 " ,
3
+ "version" : " 1.59.2 " ,
4
4
"author" : " Speakeasy" ,
5
5
"scripts" : {
6
6
"prepare" : " tsc --build"
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export class SpeakeasyBase {
81
81
for ( const prop of props ) {
82
82
if ( payload && payload . hasOwnProperty ( prop . key ) ) {
83
83
const value = payload [ prop . key ] ;
84
- if ( isSpeakeasyBase ( prop . type ) ) {
84
+ if ( isSpeakeasyBase ( prop . type ) && value != null ) {
85
85
( this as any ) [ prop . key ] = new prop . type ( value ) ;
86
86
} else if (
87
87
prop . type . name == "Array" &&
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ export class SDKConfiguration {
59
59
serverDefaults : any ;
60
60
language = "typescript" ;
61
61
openapiDocVersion = "0.3.0" ;
62
- sdkVersion = "1.59.1 " ;
63
- genVersion = "2.143.2 " ;
62
+ sdkVersion = "1.59.2 " ;
63
+ genVersion = "2.147.0 " ;
64
64
userAgent =
65
- "speakeasy-sdk/typescript 1.59.1 2.143.2 0.3.0 @speakeasy-api/speakeasy-client-sdk-typescript" ;
65
+ "speakeasy-sdk/typescript 1.59.2 2.147.0 0.3.0 @speakeasy-api/speakeasy-client-sdk-typescript" ;
66
66
retryConfig ?: utils . RetryConfig ;
67
67
public constructor ( init ?: Partial < SDKConfiguration > ) {
68
68
Object . assign ( this , init ) ;
You can’t perform that action at this time.
0 commit comments