File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,4 +116,14 @@ Based on:
116116### Generated
117117- [ typescript v0.6.1] .
118118### Releases
119- - [ NPM v0.6.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/0.6.1 - .
119+ - [ NPM v0.6.1] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/0.6.1 - .
120+
121+ ## 2023-10-05 00:09:37
122+ ### Changes
123+ Based on:
124+ - OpenAPI Doc 1.0.0
125+ - Speakeasy CLI 1.94.0 (2.147.0) https://github.com/speakeasy-api/speakeasy
126+ ### Generated
127+ - [ typescript v0.6.2] .
128+ ### Releases
129+ - [ NPM v0.6.2] https://www.npmjs.com/package/@stackone/stackone-client-ts/v/0.6.2 - .
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ configVersion: 1.0.0
22management :
33 docChecksum : bd356a7a227aa29140d043b498b9caaa
44 docVersion : 1.0.0
5- speakeasyVersion : 1.92.3
6- generationVersion : 2.143.2
5+ speakeasyVersion : 1.94.0
6+ generationVersion : 2.147.0
77generation :
88 comments :
99 disableComments : false
@@ -14,11 +14,11 @@ generation:
1414 tagNamespacingDisabled : false
1515features :
1616 typescript :
17- core : 2.90.1
17+ core : 2.90.3
1818 globalSecurity : 2.81.1
1919 globalServerURLs : 2.82.0
2020typescript :
21- version : 0.6.1
21+ version : 0.6.2
2222 author : StackOne
2323 clientServerStatusCodesAsErrors : true
2424 maxMethodParams : 0
Original file line number Diff line number Diff line change 11{
22 "name" : " @stackone/stackone-client-ts" ,
3- "version" : " 0.6.1 " ,
3+ "version" : " 0.6.2 " ,
44 "author" : " StackOne" ,
55 "scripts" : {
66 "prepare" : " tsc --build"
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export class SpeakeasyBase {
8181 for ( const prop of props ) {
8282 if ( payload && payload . hasOwnProperty ( prop . key ) ) {
8383 const value = payload [ prop . key ] ;
84- if ( isSpeakeasyBase ( prop . type ) ) {
84+ if ( isSpeakeasyBase ( prop . type ) && value != null ) {
8585 ( this as any ) [ prop . key ] = new prop . type ( value ) ;
8686 } else if (
8787 prop . type . name == "Array" &&
Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ export class SDKConfiguration {
5050 serverDefaults : any ;
5151 language = "typescript" ;
5252 openapiDocVersion = "1.0.0" ;
53- sdkVersion = "0.6.1 " ;
54- genVersion = "2.143.2 " ;
55- userAgent = "speakeasy-sdk/typescript 0.6.1 2.143.2 1.0.0 @stackone/stackone-client-ts" ;
53+ sdkVersion = "0.6.2 " ;
54+ genVersion = "2.147.0 " ;
55+ userAgent = "speakeasy-sdk/typescript 0.6.2 2.147.0 1.0.0 @stackone/stackone-client-ts" ;
5656 retryConfig ?: utils . RetryConfig ;
5757 public constructor ( init ?: Partial < SDKConfiguration > ) {
5858 Object . assign ( this , init ) ;
You can’t perform that action at this time.
0 commit comments