@wildix/wim-knowledge-base-client 0.0.18 → 0.0.19

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.
@@ -62,6 +62,8 @@ declare const CreateDocumentCommand_base: {
62
62
  * // createdAt: "STRING_VALUE", // required
63
63
  * // updatedAt: "STRING_VALUE", // required
64
64
  * // status: "draft" || "pending" || "processing" || "completed" || "failed", // required
65
+ * // chunksCount: Number("int"),
66
+ * // processingDuration: Number("int"),
65
67
  * // errorMessage: "STRING_VALUE",
66
68
  * // },
67
69
  * // };
@@ -59,6 +59,8 @@ declare const GetDocumentCommand_base: {
59
59
  * // createdAt: "STRING_VALUE", // required
60
60
  * // updatedAt: "STRING_VALUE", // required
61
61
  * // status: "draft" || "pending" || "processing" || "completed" || "failed", // required
62
+ * // chunksCount: Number("int"),
63
+ * // processingDuration: Number("int"),
62
64
  * // errorMessage: "STRING_VALUE",
63
65
  * // },
64
66
  * // content: "STRING_VALUE",
@@ -57,6 +57,8 @@ declare const ListDocumentsCommand_base: {
57
57
  * // createdAt: "STRING_VALUE", // required
58
58
  * // updatedAt: "STRING_VALUE", // required
59
59
  * // status: "draft" || "pending" || "processing" || "completed" || "failed", // required
60
+ * // chunksCount: Number("int"),
61
+ * // processingDuration: Number("int"),
60
62
  * // errorMessage: "STRING_VALUE",
61
63
  * // },
62
64
  * // ],
@@ -63,6 +63,8 @@ declare const UpdateDocumentCommand_base: {
63
63
  * // createdAt: "STRING_VALUE", // required
64
64
  * // updatedAt: "STRING_VALUE", // required
65
65
  * // status: "draft" || "pending" || "processing" || "completed" || "failed", // required
66
+ * // chunksCount: Number("int"),
67
+ * // processingDuration: Number("int"),
66
68
  * // errorMessage: "STRING_VALUE",
67
69
  * // },
68
70
  * // };
@@ -552,6 +552,8 @@ export interface DocumentItem {
552
552
  createdAt: string;
553
553
  updatedAt: string;
554
554
  status: DocumentStatus;
555
+ chunksCount?: number | undefined;
556
+ processingDuration?: number | undefined;
555
557
  errorMessage?: string | undefined;
556
558
  }
557
559
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-knowledge-base-client",
3
3
  "description": "@wildix/wim-knowledge-base-client client",
4
- "version": "0.0.18",
4
+ "version": "0.0.19",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",