@knowledge-stack/ksapi 1.161.0 → 1.162.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.161.0
1
+ # @knowledge-stack/ksapi@1.162.0
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -710,7 +710,7 @@ and is automatically generated by the
710
710
  [OpenAPI Generator](https://openapi-generator.tech) project:
711
711
 
712
712
  - API version: `0.1.0`
713
- - Package version: `1.161.0`
713
+ - Package version: `1.162.0`
714
714
  - Generator version: `7.21.0`
715
715
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
716
716
 
@@ -26,6 +26,7 @@ export declare const DocumentType: {
26
26
  readonly Code: 'CODE';
27
27
  readonly Audio: 'AUDIO';
28
28
  readonly Video: 'VIDEO';
29
+ readonly Email: 'EMAIL';
29
30
  readonly Unknown: 'UNKNOWN';
30
31
  };
31
32
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -28,6 +28,7 @@ export const DocumentType = {
28
28
  Code: 'CODE',
29
29
  Audio: 'AUDIO',
30
30
  Video: 'VIDEO',
31
+ Email: 'EMAIL',
31
32
  Unknown: 'UNKNOWN'
32
33
  };
33
34
  export function instanceOfDocumentType(value) {
@@ -26,6 +26,7 @@ export declare const DocumentType: {
26
26
  readonly Code: 'CODE';
27
27
  readonly Audio: 'AUDIO';
28
28
  readonly Video: 'VIDEO';
29
+ readonly Email: 'EMAIL';
29
30
  readonly Unknown: 'UNKNOWN';
30
31
  };
31
32
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -36,6 +36,7 @@ exports.DocumentType = {
36
36
  Code: 'CODE',
37
37
  Audio: 'AUDIO',
38
38
  Video: 'VIDEO',
39
+ Email: 'EMAIL',
39
40
  Unknown: 'UNKNOWN'
40
41
  };
41
42
  function instanceOfDocumentType(value) {
@@ -985,7 +985,7 @@ example().catch(console.error);
985
985
  | **sortOrder** | `PathOrder` | Sort order for results (default: LOGICAL) | [Optional] [Defaults to `undefined`] [Enum: LOGICAL, NAME, UPDATED_AT, CREATED_AT] |
986
986
  | **sortDir** | `SortDirection` | Sort direction; overrides the column\'s natural default | [Optional] [Defaults to `undefined`] [Enum: ASC, DESC] |
987
987
  | **ownerId** | `string` | Filter to documents owned by this user | [Optional] [Defaults to `undefined`] |
988
- | **documentType** | `DocumentType` | Filter to documents of this type | [Optional] [Defaults to `undefined`] [Enum: PDF, DOCX, PLAINTEXT, IMAGE, XLSX, CSV, PPTX, JSON, YAML, CODE, AUDIO, VIDEO, UNKNOWN] |
988
+ | **documentType** | `DocumentType` | Filter to documents of this type | [Optional] [Defaults to `undefined`] [Enum: PDF, DOCX, PLAINTEXT, IMAGE, XLSX, CSV, PPTX, JSON, YAML, CODE, AUDIO, VIDEO, EMAIL, UNKNOWN] |
989
989
  | **withTags** | `boolean` | Include tags in the response (default: false) | [Optional] [Defaults to `false`] |
990
990
  | **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
991
991
  | **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.161.0",
3
+ "version": "1.162.0",
4
4
  "description": "OpenAPI client for @knowledge-stack/ksapi",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -30,6 +30,7 @@ export const DocumentType = {
30
30
  Code: 'CODE',
31
31
  Audio: 'AUDIO',
32
32
  Video: 'VIDEO',
33
+ Email: 'EMAIL',
33
34
  Unknown: 'UNKNOWN'
34
35
  } as const;
35
36
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];