@knowledge-stack/ksapi 1.64.0 → 1.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @knowledge-stack/ksapi@1.64.0
1
+ # @knowledge-stack/ksapi@1.65.0
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -380,7 +380,7 @@ and is automatically generated by the
380
380
  [OpenAPI Generator](https://openapi-generator.tech) project:
381
381
 
382
382
  - API version: `0.1.0`
383
- - Package version: `1.64.0`
383
+ - Package version: `1.65.0`
384
384
  - Generator version: `7.20.0`
385
385
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
386
386
 
@@ -64,7 +64,7 @@ export interface StepInput {
64
64
  * @type {Array<StepInput>}
65
65
  * @memberof StepInput
66
66
  */
67
- steps?: Array<StepInput>;
67
+ steps?: Array<StepInput> | null;
68
68
  }
69
69
  /**
70
70
  * Check if a given object implements the StepInput interface.
@@ -64,7 +64,7 @@ export interface StepOutput {
64
64
  * @type {Array<StepOutput>}
65
65
  * @memberof StepOutput
66
66
  */
67
- steps?: Array<StepOutput>;
67
+ steps?: Array<StepOutput> | null;
68
68
  }
69
69
  /**
70
70
  * Check if a given object implements the StepOutput interface.
@@ -64,7 +64,7 @@ export interface StepInput {
64
64
  * @type {Array<StepInput>}
65
65
  * @memberof StepInput
66
66
  */
67
- steps?: Array<StepInput>;
67
+ steps?: Array<StepInput> | null;
68
68
  }
69
69
  /**
70
70
  * Check if a given object implements the StepInput interface.
@@ -64,7 +64,7 @@ export interface StepOutput {
64
64
  * @type {Array<StepOutput>}
65
65
  * @memberof StepOutput
66
66
  */
67
- steps?: Array<StepOutput>;
67
+ steps?: Array<StepOutput> | null;
68
68
  }
69
69
  /**
70
70
  * Check if a given object implements the StepOutput interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledge-stack/ksapi",
3
- "version": "1.64.0",
3
+ "version": "1.65.0",
4
4
  "description": "OpenAPI client for @knowledge-stack/ksapi",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -81,7 +81,7 @@ export interface StepInput {
81
81
  * @type {Array<StepInput>}
82
82
  * @memberof StepInput
83
83
  */
84
- steps?: Array<StepInput>;
84
+ steps?: Array<StepInput> | null;
85
85
  }
86
86
 
87
87
 
@@ -81,7 +81,7 @@ export interface StepOutput {
81
81
  * @type {Array<StepOutput>}
82
82
  * @memberof StepOutput
83
83
  */
84
- steps?: Array<StepOutput>;
84
+ steps?: Array<StepOutput> | null;
85
85
  }
86
86
 
87
87