@knowledge-stack/ksapi 1.137.1 → 1.138.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.137.1
1
+ # @knowledge-stack/ksapi@1.138.0
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -654,7 +654,7 @@ and is automatically generated by the
654
654
  [OpenAPI Generator](https://openapi-generator.tech) project:
655
655
 
656
656
  - API version: `0.1.0`
657
- - Package version: `1.137.1`
657
+ - Package version: `1.138.0`
658
658
  - Generator version: `7.21.0`
659
659
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
660
660
 
@@ -23,6 +23,7 @@ export declare const DocumentType: {
23
23
  readonly Pptx: "PPTX";
24
24
  readonly Json: "JSON";
25
25
  readonly Yaml: "YAML";
26
+ readonly Code: "CODE";
26
27
  readonly Unknown: "UNKNOWN";
27
28
  };
28
29
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -25,6 +25,7 @@ export const DocumentType = {
25
25
  Pptx: 'PPTX',
26
26
  Json: 'JSON',
27
27
  Yaml: 'YAML',
28
+ Code: 'CODE',
28
29
  Unknown: 'UNKNOWN'
29
30
  };
30
31
  export function instanceOfDocumentType(value) {
@@ -23,6 +23,7 @@ export declare const DocumentType: {
23
23
  readonly Pptx: "PPTX";
24
24
  readonly Json: "JSON";
25
25
  readonly Yaml: "YAML";
26
+ readonly Code: "CODE";
26
27
  readonly Unknown: "UNKNOWN";
27
28
  };
28
29
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -33,6 +33,7 @@ exports.DocumentType = {
33
33
  Pptx: 'PPTX',
34
34
  Json: 'JSON',
35
35
  Yaml: 'YAML',
36
+ Code: 'CODE',
36
37
  Unknown: 'UNKNOWN'
37
38
  };
38
39
  function instanceOfDocumentType(value) {
@@ -589,7 +589,7 @@ example().catch(console.error);
589
589
  | **sortOrder** | `PathOrder` | Sort order for results (default: LOGICAL) | [Optional] [Defaults to `undefined`] [Enum: LOGICAL, NAME, UPDATED_AT, CREATED_AT] |
590
590
  | **sortDir** | `SortDirection` | Sort direction; overrides the column\'s natural default | [Optional] [Defaults to `undefined`] [Enum: ASC, DESC] |
591
591
  | **ownerId** | `string` | Filter to documents owned by this user | [Optional] [Defaults to `undefined`] |
592
- | **documentType** | `DocumentType` | Filter to documents of this type | [Optional] [Defaults to `undefined`] [Enum: PDF, DOCX, PLAINTEXT, IMAGE, XLSX, CSV, PPTX, JSON, YAML, UNKNOWN] |
592
+ | **documentType** | `DocumentType` | Filter to documents of this type | [Optional] [Defaults to `undefined`] [Enum: PDF, DOCX, PLAINTEXT, IMAGE, XLSX, CSV, PPTX, JSON, YAML, CODE, UNKNOWN] |
593
593
  | **withTags** | `boolean` | Include tags in the response (default: false) | [Optional] [Defaults to `false`] |
594
594
  | **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
595
595
  | **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledge-stack/ksapi",
3
- "version": "1.137.1",
3
+ "version": "1.138.0",
4
4
  "description": "OpenAPI client for @knowledge-stack/ksapi",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -27,6 +27,7 @@ export const DocumentType = {
27
27
  Pptx: 'PPTX',
28
28
  Json: 'JSON',
29
29
  Yaml: 'YAML',
30
+ Code: 'CODE',
30
31
  Unknown: 'UNKNOWN'
31
32
  } as const;
32
33
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];