@petercatai/whisker-client 0.1.202505210952 → 0.1.202505220227-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 +47 -47
- package/package.json +3 -3
package/dist/api.d.ts
CHANGED
|
@@ -440,6 +440,16 @@ export interface IJSONSplitConfig {
|
|
|
440
440
|
}
|
|
441
441
|
/** Knowledge */
|
|
442
442
|
export interface IKnowledgeInput {
|
|
443
|
+
/**
|
|
444
|
+
* Gmt Create
|
|
445
|
+
* creation time
|
|
446
|
+
*/
|
|
447
|
+
gmt_create?: string | null;
|
|
448
|
+
/**
|
|
449
|
+
* Gmt Modified
|
|
450
|
+
* update time
|
|
451
|
+
*/
|
|
452
|
+
gmt_modified?: string | null;
|
|
443
453
|
/**
|
|
444
454
|
* Knowledge Id
|
|
445
455
|
* knowledge id
|
|
@@ -520,19 +530,19 @@ export interface IKnowledgeInput {
|
|
|
520
530
|
* @default true
|
|
521
531
|
*/
|
|
522
532
|
enabled?: boolean;
|
|
533
|
+
}
|
|
534
|
+
/** Knowledge */
|
|
535
|
+
export interface IKnowledgeOutput {
|
|
523
536
|
/**
|
|
524
537
|
* Gmt Create
|
|
525
538
|
* creation time
|
|
526
539
|
*/
|
|
527
|
-
gmt_create?: string
|
|
540
|
+
gmt_create?: string;
|
|
528
541
|
/**
|
|
529
542
|
* Gmt Modified
|
|
530
543
|
* update time
|
|
531
544
|
*/
|
|
532
|
-
gmt_modified?: string
|
|
533
|
-
}
|
|
534
|
-
/** Knowledge */
|
|
535
|
-
export interface IKnowledgeOutput {
|
|
545
|
+
gmt_modified?: string;
|
|
536
546
|
/**
|
|
537
547
|
* Knowledge Id
|
|
538
548
|
* knowledge id
|
|
@@ -605,16 +615,6 @@ export interface IKnowledgeOutput {
|
|
|
605
615
|
* @default true
|
|
606
616
|
*/
|
|
607
617
|
enabled?: boolean;
|
|
608
|
-
/**
|
|
609
|
-
* Gmt Create
|
|
610
|
-
* creation time
|
|
611
|
-
*/
|
|
612
|
-
gmt_create?: string;
|
|
613
|
-
/**
|
|
614
|
-
* Gmt Modified
|
|
615
|
-
* update time
|
|
616
|
-
*/
|
|
617
|
-
gmt_modified?: string;
|
|
618
618
|
}
|
|
619
619
|
/** MarkdownCreate */
|
|
620
620
|
export interface IMarkdownCreate {
|
|
@@ -1461,6 +1461,16 @@ export interface ISpaceCreate {
|
|
|
1461
1461
|
* knowledge_size Optional[int]: count of the knowledge in this space.
|
|
1462
1462
|
*/
|
|
1463
1463
|
export interface ISpaceResponse {
|
|
1464
|
+
/**
|
|
1465
|
+
* Gmt Create
|
|
1466
|
+
* creation time
|
|
1467
|
+
*/
|
|
1468
|
+
gmt_create?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* Gmt Modified
|
|
1471
|
+
* update time
|
|
1472
|
+
*/
|
|
1473
|
+
gmt_modified?: string;
|
|
1464
1474
|
/**
|
|
1465
1475
|
* Space Name
|
|
1466
1476
|
* name of the space resource
|
|
@@ -1484,16 +1494,6 @@ export interface ISpaceResponse {
|
|
|
1484
1494
|
* @default {}
|
|
1485
1495
|
*/
|
|
1486
1496
|
metadata?: Record<string, any>;
|
|
1487
|
-
/**
|
|
1488
|
-
* Gmt Create
|
|
1489
|
-
* creation time
|
|
1490
|
-
*/
|
|
1491
|
-
gmt_create?: string;
|
|
1492
|
-
/**
|
|
1493
|
-
* Gmt Modified
|
|
1494
|
-
* update time
|
|
1495
|
-
*/
|
|
1496
|
-
gmt_modified?: string;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* Tenant Id
|
|
1499
1499
|
* tenant id
|
|
@@ -1547,6 +1547,16 @@ export interface IStatusStatisticsPageResponseTask {
|
|
|
1547
1547
|
}
|
|
1548
1548
|
/** Task */
|
|
1549
1549
|
export interface ITask {
|
|
1550
|
+
/**
|
|
1551
|
+
* Gmt Create
|
|
1552
|
+
* creation time
|
|
1553
|
+
*/
|
|
1554
|
+
gmt_create?: string;
|
|
1555
|
+
/**
|
|
1556
|
+
* Gmt Modified
|
|
1557
|
+
* update time
|
|
1558
|
+
*/
|
|
1559
|
+
gmt_modified?: string;
|
|
1550
1560
|
/**
|
|
1551
1561
|
* Task Id
|
|
1552
1562
|
* Unique identifier for the task
|
|
@@ -1587,16 +1597,6 @@ export interface ITask {
|
|
|
1587
1597
|
* Identifier for the tenant
|
|
1588
1598
|
*/
|
|
1589
1599
|
tenant_id: string;
|
|
1590
|
-
/**
|
|
1591
|
-
* Gmt Create
|
|
1592
|
-
* Task creation time
|
|
1593
|
-
*/
|
|
1594
|
-
gmt_create?: string;
|
|
1595
|
-
/**
|
|
1596
|
-
* Gmt Modified
|
|
1597
|
-
* Last update time
|
|
1598
|
-
*/
|
|
1599
|
-
gmt_modified?: string;
|
|
1600
1600
|
}
|
|
1601
1601
|
/** TaskRestartRequest */
|
|
1602
1602
|
export interface ITaskRestartRequest {
|
|
@@ -1608,6 +1608,16 @@ export interface ITaskRestartRequest {
|
|
|
1608
1608
|
}
|
|
1609
1609
|
/** Tenant */
|
|
1610
1610
|
export interface ITenant {
|
|
1611
|
+
/**
|
|
1612
|
+
* Gmt Create
|
|
1613
|
+
* creation time
|
|
1614
|
+
*/
|
|
1615
|
+
gmt_create?: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* Gmt Modified
|
|
1618
|
+
* update time
|
|
1619
|
+
*/
|
|
1620
|
+
gmt_modified?: string;
|
|
1611
1621
|
/**
|
|
1612
1622
|
* Tenant Id
|
|
1613
1623
|
* tenant id
|
|
@@ -1641,16 +1651,6 @@ export interface ITenant {
|
|
|
1641
1651
|
* Metadata for the tenant
|
|
1642
1652
|
*/
|
|
1643
1653
|
metadata?: Record<string, any> | null;
|
|
1644
|
-
/**
|
|
1645
|
-
* Gmt Create
|
|
1646
|
-
* tenant created time
|
|
1647
|
-
*/
|
|
1648
|
-
gmt_create?: string;
|
|
1649
|
-
/**
|
|
1650
|
-
* Gmt Modified
|
|
1651
|
-
* tenant updated time
|
|
1652
|
-
*/
|
|
1653
|
-
gmt_modified?: string;
|
|
1654
1654
|
}
|
|
1655
1655
|
/** TenantCreate */
|
|
1656
1656
|
export interface ITenantCreate {
|
|
@@ -1732,9 +1732,9 @@ export interface ITextCreate {
|
|
|
1732
1732
|
export interface ITextSourceConfig {
|
|
1733
1733
|
/**
|
|
1734
1734
|
* Text
|
|
1735
|
-
* Text content, length range 1-
|
|
1735
|
+
* Text content, length range 1-30000 characters
|
|
1736
1736
|
* @minLength 1
|
|
1737
|
-
* @maxLength
|
|
1737
|
+
* @maxLength 30000
|
|
1738
1738
|
* @default ""
|
|
1739
1739
|
*/
|
|
1740
1740
|
text?: string;
|
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.202505220227-dev",
|
|
4
|
+
"description": "Generated API client (preview)",
|
|
5
5
|
"main": "dist/api.js",
|
|
6
6
|
"types": "dist/api.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public",
|
|
16
|
-
"tag": "
|
|
16
|
+
"tag": "dev"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "^22.15.21",
|