@petercatai/whisker-client 0.1.202507100532 → 0.1.202507190444-dev
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/dist/api.d.ts +35 -20
- package/package.json +4 -4
package/dist/api.d.ts
CHANGED
|
@@ -407,6 +407,16 @@ export interface IChatCompletionUserMessageParam {
|
|
|
407
407
|
}
|
|
408
408
|
/** Chunk */
|
|
409
409
|
export interface IChunk {
|
|
410
|
+
/**
|
|
411
|
+
* Gmt Create
|
|
412
|
+
* creation time
|
|
413
|
+
*/
|
|
414
|
+
gmt_create?: string;
|
|
415
|
+
/**
|
|
416
|
+
* Gmt Modified
|
|
417
|
+
* update time
|
|
418
|
+
*/
|
|
419
|
+
gmt_modified?: string;
|
|
410
420
|
/**
|
|
411
421
|
* Chunk Id
|
|
412
422
|
* chunk id
|
|
@@ -483,16 +493,6 @@ export interface IChunk {
|
|
|
483
493
|
* Field 5 from knowledge.metadata._f5
|
|
484
494
|
*/
|
|
485
495
|
f5?: string | null;
|
|
486
|
-
/**
|
|
487
|
-
* Gmt Create
|
|
488
|
-
* creation time
|
|
489
|
-
*/
|
|
490
|
-
gmt_create?: string;
|
|
491
|
-
/**
|
|
492
|
-
* Gmt Modified
|
|
493
|
-
* update time
|
|
494
|
-
*/
|
|
495
|
-
gmt_modified?: string;
|
|
496
496
|
}
|
|
497
497
|
/** ChunkSave */
|
|
498
498
|
export interface IChunkSave {
|
|
@@ -1924,6 +1924,16 @@ export interface IRetrievalBySpaceRequest {
|
|
|
1924
1924
|
}
|
|
1925
1925
|
/** RetrievalChunk */
|
|
1926
1926
|
export interface IRetrievalChunk {
|
|
1927
|
+
/**
|
|
1928
|
+
* Gmt Create
|
|
1929
|
+
* creation time
|
|
1930
|
+
*/
|
|
1931
|
+
gmt_create?: string;
|
|
1932
|
+
/**
|
|
1933
|
+
* Gmt Modified
|
|
1934
|
+
* update time
|
|
1935
|
+
*/
|
|
1936
|
+
gmt_modified?: string;
|
|
1927
1937
|
/**
|
|
1928
1938
|
* Chunk Id
|
|
1929
1939
|
* chunk id
|
|
@@ -2000,16 +2010,6 @@ export interface IRetrievalChunk {
|
|
|
2000
2010
|
* Field 5 from knowledge.metadata._f5
|
|
2001
2011
|
*/
|
|
2002
2012
|
f5?: string | null;
|
|
2003
|
-
/**
|
|
2004
|
-
* Gmt Create
|
|
2005
|
-
* creation time
|
|
2006
|
-
*/
|
|
2007
|
-
gmt_create?: string;
|
|
2008
|
-
/**
|
|
2009
|
-
* Gmt Modified
|
|
2010
|
-
* update time
|
|
2011
|
-
*/
|
|
2012
|
-
gmt_modified?: string;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* Similarity
|
|
2015
2015
|
* The similarity of the chunk, ranging from 0.0 to 1.0.
|
|
@@ -2204,6 +2204,21 @@ export interface IStatusStatisticsPageResponseTask {
|
|
|
2204
2204
|
* @default 0
|
|
2205
2205
|
*/
|
|
2206
2206
|
pending?: number;
|
|
2207
|
+
/**
|
|
2208
|
+
* Running
|
|
2209
|
+
* @default 0
|
|
2210
|
+
*/
|
|
2211
|
+
running?: number;
|
|
2212
|
+
/**
|
|
2213
|
+
* Pending Retry
|
|
2214
|
+
* @default 0
|
|
2215
|
+
*/
|
|
2216
|
+
pending_retry?: number;
|
|
2217
|
+
/**
|
|
2218
|
+
* Deleted
|
|
2219
|
+
* @default 0
|
|
2220
|
+
*/
|
|
2221
|
+
deleted?: number;
|
|
2207
2222
|
}
|
|
2208
2223
|
/** Task */
|
|
2209
2224
|
export interface ITask {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@petercatai/whisker-client",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Generated API client (
|
|
3
|
+
"version": "0.1.202507190444-dev",
|
|
4
|
+
"description": "Generated API client (preview)",
|
|
5
5
|
"main": "dist/api.js",
|
|
6
6
|
"types": "dist/api.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public",
|
|
16
|
-
"tag": "
|
|
16
|
+
"tag": "dev"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/node": "^24.0.
|
|
19
|
+
"@types/node": "^24.0.15",
|
|
20
20
|
"axios": "^1.10.0",
|
|
21
21
|
"typescript": "^5.8.3"
|
|
22
22
|
}
|