@knowledge-stack/ksapi 1.28.0 → 1.29.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.28.0
1
+ # @knowledge-stack/ksapi@1.29.0
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -262,7 +262,7 @@ and is automatically generated by the
262
262
  [OpenAPI Generator](https://openapi-generator.tech) project:
263
263
 
264
264
  - API version: `0.1.0`
265
- - Package version: `1.28.0`
265
+ - Package version: `1.29.0`
266
266
  - Generator version: `7.20.0`
267
267
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
268
268
 
@@ -16,6 +16,7 @@
16
16
  export declare const DocumentType: {
17
17
  readonly Pdf: "PDF";
18
18
  readonly Docx: "DOCX";
19
+ readonly Md: "MD";
19
20
  readonly Unknown: "UNKNOWN";
20
21
  };
21
22
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -18,6 +18,7 @@
18
18
  export const DocumentType = {
19
19
  Pdf: 'PDF',
20
20
  Docx: 'DOCX',
21
+ Md: 'MD',
21
22
  Unknown: 'UNKNOWN'
22
23
  };
23
24
  export function instanceOfDocumentType(value) {
@@ -16,6 +16,7 @@
16
16
  export declare const DocumentType: {
17
17
  readonly Pdf: "PDF";
18
18
  readonly Docx: "DOCX";
19
+ readonly Md: "MD";
19
20
  readonly Unknown: "UNKNOWN";
20
21
  };
21
22
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];
@@ -26,6 +26,7 @@ exports.DocumentTypeToJSONTyped = DocumentTypeToJSONTyped;
26
26
  exports.DocumentType = {
27
27
  Pdf: 'PDF',
28
28
  Docx: 'DOCX',
29
+ Md: 'MD',
29
30
  Unknown: 'UNKNOWN'
30
31
  };
31
32
  function instanceOfDocumentType(value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledge-stack/ksapi",
3
- "version": "1.28.0",
3
+ "version": "1.29.0",
4
4
  "description": "OpenAPI client for @knowledge-stack/ksapi",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -20,6 +20,7 @@
20
20
  export const DocumentType = {
21
21
  Pdf: 'PDF',
22
22
  Docx: 'DOCX',
23
+ Md: 'MD',
23
24
  Unknown: 'UNKNOWN'
24
25
  } as const;
25
26
  export type DocumentType = typeof DocumentType[keyof typeof DocumentType];