@knowledge-stack/ksapi 1.108.0 → 1.110.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.108.0
1
+ # @knowledge-stack/ksapi@1.110.0
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -577,7 +577,7 @@ and is automatically generated by the
577
577
  [OpenAPI Generator](https://openapi-generator.tech) project:
578
578
 
579
579
  - API version: `0.1.0`
580
- - Package version: `1.108.0`
580
+ - Package version: `1.110.0`
581
581
  - Generator version: `7.21.0`
582
582
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
583
583
 
@@ -16,6 +16,8 @@
16
16
  export declare const SearchablePartType: {
17
17
  readonly Folder: "FOLDER";
18
18
  readonly Document: "DOCUMENT";
19
+ readonly WorkflowDefinition: "WORKFLOW_DEFINITION";
20
+ readonly WorkflowRun: "WORKFLOW_RUN";
19
21
  readonly DataSource: "DATA_SOURCE";
20
22
  readonly ApiConnection: "API_CONNECTION";
21
23
  };
@@ -18,6 +18,8 @@
18
18
  export const SearchablePartType = {
19
19
  Folder: 'FOLDER',
20
20
  Document: 'DOCUMENT',
21
+ WorkflowDefinition: 'WORKFLOW_DEFINITION',
22
+ WorkflowRun: 'WORKFLOW_RUN',
21
23
  DataSource: 'DATA_SOURCE',
22
24
  ApiConnection: 'API_CONNECTION'
23
25
  };
@@ -16,6 +16,8 @@
16
16
  export declare const SearchablePartType: {
17
17
  readonly Folder: "FOLDER";
18
18
  readonly Document: "DOCUMENT";
19
+ readonly WorkflowDefinition: "WORKFLOW_DEFINITION";
20
+ readonly WorkflowRun: "WORKFLOW_RUN";
19
21
  readonly DataSource: "DATA_SOURCE";
20
22
  readonly ApiConnection: "API_CONNECTION";
21
23
  };
@@ -26,6 +26,8 @@ exports.SearchablePartTypeToJSONTyped = SearchablePartTypeToJSONTyped;
26
26
  exports.SearchablePartType = {
27
27
  Folder: 'FOLDER',
28
28
  Document: 'DOCUMENT',
29
+ WorkflowDefinition: 'WORKFLOW_DEFINITION',
30
+ WorkflowRun: 'WORKFLOW_RUN',
29
31
  DataSource: 'DATA_SOURCE',
30
32
  ApiConnection: 'API_CONNECTION'
31
33
  };
@@ -577,7 +577,7 @@ example().catch(console.error);
577
577
  |------------- | ------------- | ------------- | -------------|
578
578
  | **nameLike** | `string` | Case-insensitive partial name search | [Defaults to `undefined`] |
579
579
  | **sortOrder** | `SearchSortOrder` | Sort order for results (default: NAME) | [Optional] [Defaults to `undefined`] [Enum: NAME, UPDATED_AT, CREATED_AT] |
580
- | **partType** | `SearchablePartType` | Filter by item type (default: all searchable types) | [Optional] [Defaults to `undefined`] [Enum: FOLDER, DOCUMENT, DATA_SOURCE, API_CONNECTION] |
580
+ | **partType** | `SearchablePartType` | Filter by item type (default: all searchable types) | [Optional] [Defaults to `undefined`] [Enum: FOLDER, DOCUMENT, WORKFLOW_DEFINITION, WORKFLOW_RUN, DATA_SOURCE, API_CONNECTION] |
581
581
  | **withTags** | `boolean` | Include tags in the response (default: false) | [Optional] [Defaults to `false`] |
582
582
  | **parentPathPartId** | `string` | Scope search to descendants of this folder\'s path part | [Optional] [Defaults to `undefined`] |
583
583
  | **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledge-stack/ksapi",
3
- "version": "1.108.0",
3
+ "version": "1.110.0",
4
4
  "description": "OpenAPI client for @knowledge-stack/ksapi",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -20,6 +20,8 @@
20
20
  export const SearchablePartType = {
21
21
  Folder: 'FOLDER',
22
22
  Document: 'DOCUMENT',
23
+ WorkflowDefinition: 'WORKFLOW_DEFINITION',
24
+ WorkflowRun: 'WORKFLOW_RUN',
23
25
  DataSource: 'DATA_SOURCE',
24
26
  ApiConnection: 'API_CONNECTION'
25
27
  } as const;