@nextclaw/server 0.22.0 → 0.22.2
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/index.d.ts +84 -49
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +54 -4
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _$hono from "hono";
|
|
2
2
|
import { Context, Hono } from "hono";
|
|
3
3
|
import * as _$_nextclaw_kernel0 from "@nextclaw/kernel";
|
|
4
|
-
import { AccessManager, AppDataDeleteResult, AppDataEntry, AppDataList, AppDataManager, AppDocumentGrantMutationResult, AppInstalledPermissionState, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, CreateProjectWorkItemInput, CreateProjectWorkStateInput, InboxDeliveryManager, NextclawKernel, ObservationRelationshipStatus, ObservedRequest, ObservedWorkItem, ObservedWorkflow, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptanceStatusView, PreferenceJsonValue, PreferenceManager, ProjectObservationSnapshot, ProjectRecord, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkItemDetail,
|
|
4
|
+
import { AccessManager, AppDataDeleteResult, AppDataEntry, AppDataList, AppDataManager, AppDocumentGrantMutationResult, AppInstalledPermissionState, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, CreateProjectWorkItemInput, CreateProjectWorkStateInput, InboxDeliveryManager, NextclawKernel, ObservationRelationshipStatus, ObservedRequest, ObservedWorkItem, ObservedWorkflow, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptanceStatusView, PreferenceJsonValue, PreferenceManager, ProjectObservationSnapshot, ProjectRecentArtifact, ProjectRecentArtifactPage, ProjectRecord, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkItemDetail, ProjectWorkItemListEntry, ProjectWorkItemPage, ProjectWorkListInput, ProjectWorkState, ProjectWorkStateCategory, ProjectWorkSummary, ServiceAction, ServiceActionGrant, ServiceActionInvokeResult, ServiceAppDeleteResult, ServiceAppJobList, ServiceAppJobView, ServiceAppJobWatch, ServiceAppList, ServiceAppManager, ServiceAppRecord, SessionTokenUsageSummary, UpdateProjectWorkItemInput, UpdateProjectWorkStateInput, VerificationRecordList } from "@nextclaw/kernel";
|
|
5
5
|
import { FSWatcher } from "node:fs";
|
|
6
6
|
import * as NextclawCore from "@nextclaw/core";
|
|
7
7
|
import { Config, ConfigActionExecuteRequest as ConfigActionExecuteRequest$1, ConfigActionExecuteResult as ConfigActionExecuteResult$1, ExtensionChannelBinding, ExtensionUiMetadata, McpServerDefinition, ModelThinkingCapability, ThinkingLevel } from "@nextclaw/core";
|
|
@@ -502,6 +502,41 @@ declare class PanelAppsRoutesController {
|
|
|
502
502
|
}[];
|
|
503
503
|
};
|
|
504
504
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
505
|
+
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
506
|
+
ok: boolean;
|
|
507
|
+
data: {
|
|
508
|
+
id: string;
|
|
509
|
+
appId: string;
|
|
510
|
+
fileName: string;
|
|
511
|
+
kind: "single-file" | "folder";
|
|
512
|
+
title: string;
|
|
513
|
+
description?: string | undefined;
|
|
514
|
+
icon?: string | undefined;
|
|
515
|
+
contentPath: string;
|
|
516
|
+
createdAt: string;
|
|
517
|
+
updatedAt: string;
|
|
518
|
+
sizeBytes: number;
|
|
519
|
+
favorite: boolean;
|
|
520
|
+
mainSidebar: boolean;
|
|
521
|
+
mainSidebarOrder?: number | undefined;
|
|
522
|
+
clientDeclared: boolean;
|
|
523
|
+
clientGranted: boolean;
|
|
524
|
+
lastOpenedAt?: string | undefined;
|
|
525
|
+
openCount: number;
|
|
526
|
+
sourceKind: "workspace" | "package";
|
|
527
|
+
packageId?: string | undefined;
|
|
528
|
+
packageVersion?: string | undefined;
|
|
529
|
+
};
|
|
530
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
531
|
+
ok: boolean;
|
|
532
|
+
error: {
|
|
533
|
+
code: string;
|
|
534
|
+
message: string;
|
|
535
|
+
details: {
|
|
536
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
537
|
+
} | undefined;
|
|
538
|
+
};
|
|
539
|
+
}, 400 | 401 | 403 | 404 | 408, "json">)>;
|
|
505
540
|
readonly updatePanelAppPreferences: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
506
541
|
ok: boolean;
|
|
507
542
|
data: {
|
|
@@ -1364,12 +1399,12 @@ declare class ServiceAppsRoutesController {
|
|
|
1364
1399
|
recovery?: string | undefined;
|
|
1365
1400
|
evidenceRefs: string[];
|
|
1366
1401
|
} | {
|
|
1402
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1403
|
+
appId: string;
|
|
1367
1404
|
error?: {
|
|
1368
1405
|
code?: string | undefined;
|
|
1369
1406
|
message: string;
|
|
1370
1407
|
} | undefined;
|
|
1371
|
-
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1372
|
-
appId: string;
|
|
1373
1408
|
instanceId?: string | undefined;
|
|
1374
1409
|
componentId: string;
|
|
1375
1410
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
@@ -1562,12 +1597,12 @@ declare class ServiceAppsRoutesController {
|
|
|
1562
1597
|
recovery?: string | undefined;
|
|
1563
1598
|
evidenceRefs: string[];
|
|
1564
1599
|
} | {
|
|
1600
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1601
|
+
appId: string;
|
|
1565
1602
|
error?: {
|
|
1566
1603
|
code?: string | undefined;
|
|
1567
1604
|
message: string;
|
|
1568
1605
|
} | undefined;
|
|
1569
|
-
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1570
|
-
appId: string;
|
|
1571
1606
|
instanceId?: string | undefined;
|
|
1572
1607
|
componentId: string;
|
|
1573
1608
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
@@ -1729,12 +1764,12 @@ declare class ServiceAppsRoutesController {
|
|
|
1729
1764
|
recovery?: string | undefined;
|
|
1730
1765
|
evidenceRefs: string[];
|
|
1731
1766
|
} | {
|
|
1767
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1768
|
+
appId: string;
|
|
1732
1769
|
error?: {
|
|
1733
1770
|
code?: string | undefined;
|
|
1734
1771
|
message: string;
|
|
1735
1772
|
} | undefined;
|
|
1736
|
-
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1737
|
-
appId: string;
|
|
1738
1773
|
instanceId?: string | undefined;
|
|
1739
1774
|
componentId: string;
|
|
1740
1775
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
@@ -4339,7 +4374,7 @@ declare class ConfigRoutesController {
|
|
|
4339
4374
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4340
4375
|
} | undefined;
|
|
4341
4376
|
};
|
|
4342
|
-
},
|
|
4377
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4343
4378
|
ok: boolean;
|
|
4344
4379
|
error: {
|
|
4345
4380
|
code: string;
|
|
@@ -4348,7 +4383,7 @@ declare class ConfigRoutesController {
|
|
|
4348
4383
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4349
4384
|
} | undefined;
|
|
4350
4385
|
};
|
|
4351
|
-
},
|
|
4386
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4352
4387
|
ok: boolean;
|
|
4353
4388
|
data: {
|
|
4354
4389
|
providerId: string;
|
|
@@ -4452,7 +4487,7 @@ declare class ConfigRoutesController {
|
|
|
4452
4487
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4453
4488
|
} | undefined;
|
|
4454
4489
|
};
|
|
4455
|
-
},
|
|
4490
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4456
4491
|
ok: boolean;
|
|
4457
4492
|
error: {
|
|
4458
4493
|
code: string;
|
|
@@ -4461,7 +4496,7 @@ declare class ConfigRoutesController {
|
|
|
4461
4496
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4462
4497
|
} | undefined;
|
|
4463
4498
|
};
|
|
4464
|
-
},
|
|
4499
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4465
4500
|
ok: boolean;
|
|
4466
4501
|
data: {
|
|
4467
4502
|
success: boolean;
|
|
@@ -4480,7 +4515,7 @@ declare class ConfigRoutesController {
|
|
|
4480
4515
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4481
4516
|
} | undefined;
|
|
4482
4517
|
};
|
|
4483
|
-
},
|
|
4518
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4484
4519
|
ok: boolean;
|
|
4485
4520
|
error: {
|
|
4486
4521
|
code: string;
|
|
@@ -4489,7 +4524,7 @@ declare class ConfigRoutesController {
|
|
|
4489
4524
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4490
4525
|
} | undefined;
|
|
4491
4526
|
};
|
|
4492
|
-
},
|
|
4527
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4493
4528
|
ok: boolean;
|
|
4494
4529
|
data: {
|
|
4495
4530
|
provider: string;
|
|
@@ -4516,7 +4551,7 @@ declare class ConfigRoutesController {
|
|
|
4516
4551
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4517
4552
|
} | undefined;
|
|
4518
4553
|
};
|
|
4519
|
-
},
|
|
4554
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4520
4555
|
ok: boolean;
|
|
4521
4556
|
error: {
|
|
4522
4557
|
code: string;
|
|
@@ -4525,7 +4560,7 @@ declare class ConfigRoutesController {
|
|
|
4525
4560
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4526
4561
|
} | undefined;
|
|
4527
4562
|
};
|
|
4528
|
-
},
|
|
4563
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4529
4564
|
ok: boolean;
|
|
4530
4565
|
data: {
|
|
4531
4566
|
provider: string;
|
|
@@ -4548,7 +4583,7 @@ declare class ConfigRoutesController {
|
|
|
4548
4583
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4549
4584
|
} | undefined;
|
|
4550
4585
|
};
|
|
4551
|
-
},
|
|
4586
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4552
4587
|
ok: boolean;
|
|
4553
4588
|
error: {
|
|
4554
4589
|
code: string;
|
|
@@ -4557,7 +4592,7 @@ declare class ConfigRoutesController {
|
|
|
4557
4592
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4558
4593
|
} | undefined;
|
|
4559
4594
|
};
|
|
4560
|
-
},
|
|
4595
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4561
4596
|
ok: boolean;
|
|
4562
4597
|
data: {
|
|
4563
4598
|
provider: string;
|
|
@@ -4575,7 +4610,7 @@ declare class ConfigRoutesController {
|
|
|
4575
4610
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4576
4611
|
} | undefined;
|
|
4577
4612
|
};
|
|
4578
|
-
},
|
|
4613
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4579
4614
|
ok: boolean;
|
|
4580
4615
|
error: {
|
|
4581
4616
|
code: string;
|
|
@@ -4584,7 +4619,7 @@ declare class ConfigRoutesController {
|
|
|
4584
4619
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4585
4620
|
} | undefined;
|
|
4586
4621
|
};
|
|
4587
|
-
},
|
|
4622
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4588
4623
|
ok: boolean;
|
|
4589
4624
|
data: {
|
|
4590
4625
|
provider: string;
|
|
@@ -4602,7 +4637,7 @@ declare class ConfigRoutesController {
|
|
|
4602
4637
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4603
4638
|
} | undefined;
|
|
4604
4639
|
};
|
|
4605
|
-
},
|
|
4640
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4606
4641
|
ok: boolean;
|
|
4607
4642
|
error: {
|
|
4608
4643
|
code: string;
|
|
@@ -4611,7 +4646,7 @@ declare class ConfigRoutesController {
|
|
|
4611
4646
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4612
4647
|
} | undefined;
|
|
4613
4648
|
};
|
|
4614
|
-
},
|
|
4649
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4615
4650
|
ok: boolean;
|
|
4616
4651
|
data: {
|
|
4617
4652
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -4626,7 +4661,7 @@ declare class ConfigRoutesController {
|
|
|
4626
4661
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4627
4662
|
} | undefined;
|
|
4628
4663
|
};
|
|
4629
|
-
},
|
|
4664
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4630
4665
|
ok: boolean;
|
|
4631
4666
|
error: {
|
|
4632
4667
|
code: string;
|
|
@@ -4635,7 +4670,7 @@ declare class ConfigRoutesController {
|
|
|
4635
4670
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4636
4671
|
} | undefined;
|
|
4637
4672
|
};
|
|
4638
|
-
},
|
|
4673
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4639
4674
|
ok: boolean;
|
|
4640
4675
|
data: {
|
|
4641
4676
|
channel: string;
|
|
@@ -4657,7 +4692,7 @@ declare class ConfigRoutesController {
|
|
|
4657
4692
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4658
4693
|
} | undefined;
|
|
4659
4694
|
};
|
|
4660
|
-
},
|
|
4695
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4661
4696
|
ok: boolean;
|
|
4662
4697
|
error: {
|
|
4663
4698
|
code: string;
|
|
@@ -4666,7 +4701,7 @@ declare class ConfigRoutesController {
|
|
|
4666
4701
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4667
4702
|
} | undefined;
|
|
4668
4703
|
};
|
|
4669
|
-
},
|
|
4704
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4670
4705
|
ok: boolean;
|
|
4671
4706
|
data: {
|
|
4672
4707
|
channel: string;
|
|
@@ -4686,7 +4721,7 @@ declare class ConfigRoutesController {
|
|
|
4686
4721
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4687
4722
|
} | undefined;
|
|
4688
4723
|
};
|
|
4689
|
-
},
|
|
4724
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
4690
4725
|
ok: boolean;
|
|
4691
4726
|
error: {
|
|
4692
4727
|
code: string;
|
|
@@ -4695,7 +4730,7 @@ declare class ConfigRoutesController {
|
|
|
4695
4730
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4696
4731
|
} | undefined;
|
|
4697
4732
|
};
|
|
4698
|
-
},
|
|
4733
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4699
4734
|
ok: boolean;
|
|
4700
4735
|
data: {
|
|
4701
4736
|
channel: string;
|
|
@@ -5080,8 +5115,8 @@ declare class AppPackagesRoutesController {
|
|
|
5080
5115
|
};
|
|
5081
5116
|
slots: {
|
|
5082
5117
|
id: string;
|
|
5083
|
-
title: string;
|
|
5084
5118
|
description: string;
|
|
5119
|
+
title: string;
|
|
5085
5120
|
required: boolean;
|
|
5086
5121
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
5087
5122
|
binding?: {
|
|
@@ -5473,8 +5508,8 @@ declare class AppPackagesRoutesController {
|
|
|
5473
5508
|
};
|
|
5474
5509
|
slots: {
|
|
5475
5510
|
id: string;
|
|
5476
|
-
title: string;
|
|
5477
5511
|
description: string;
|
|
5512
|
+
title: string;
|
|
5478
5513
|
required: boolean;
|
|
5479
5514
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
5480
5515
|
binding?: {
|
|
@@ -5965,8 +6000,8 @@ declare class AppPackagesRoutesController {
|
|
|
5965
6000
|
};
|
|
5966
6001
|
slots: {
|
|
5967
6002
|
id: string;
|
|
5968
|
-
title: string;
|
|
5969
6003
|
description: string;
|
|
6004
|
+
title: string;
|
|
5970
6005
|
required: boolean;
|
|
5971
6006
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
5972
6007
|
binding?: {
|
|
@@ -6081,8 +6116,8 @@ declare class AppPackagesRoutesController {
|
|
|
6081
6116
|
};
|
|
6082
6117
|
slots: {
|
|
6083
6118
|
id: string;
|
|
6084
|
-
title: string;
|
|
6085
6119
|
description: string;
|
|
6120
|
+
title: string;
|
|
6086
6121
|
required: boolean;
|
|
6087
6122
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6088
6123
|
binding?: {
|
|
@@ -6123,8 +6158,8 @@ declare class AppPackagesRoutesController {
|
|
|
6123
6158
|
};
|
|
6124
6159
|
slots: {
|
|
6125
6160
|
id: string;
|
|
6126
|
-
title: string;
|
|
6127
6161
|
description: string;
|
|
6162
|
+
title: string;
|
|
6128
6163
|
required: boolean;
|
|
6129
6164
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6130
6165
|
binding?: {
|
|
@@ -6165,8 +6200,8 @@ declare class AppPackagesRoutesController {
|
|
|
6165
6200
|
};
|
|
6166
6201
|
slots: {
|
|
6167
6202
|
id: string;
|
|
6168
|
-
title: string;
|
|
6169
6203
|
description: string;
|
|
6204
|
+
title: string;
|
|
6170
6205
|
required: boolean;
|
|
6171
6206
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6172
6207
|
binding?: {
|
|
@@ -6318,8 +6353,8 @@ declare class AppPackagesRoutesController {
|
|
|
6318
6353
|
};
|
|
6319
6354
|
slots: {
|
|
6320
6355
|
id: string;
|
|
6321
|
-
title: string;
|
|
6322
6356
|
description: string;
|
|
6357
|
+
title: string;
|
|
6323
6358
|
required: boolean;
|
|
6324
6359
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6325
6360
|
binding?: {
|
|
@@ -6546,8 +6581,8 @@ declare class AppPackagesRoutesController {
|
|
|
6546
6581
|
};
|
|
6547
6582
|
slots: {
|
|
6548
6583
|
id: string;
|
|
6549
|
-
title: string;
|
|
6550
6584
|
description: string;
|
|
6585
|
+
title: string;
|
|
6551
6586
|
required: boolean;
|
|
6552
6587
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6553
6588
|
binding?: {
|
|
@@ -6774,8 +6809,8 @@ declare class AppPackagesRoutesController {
|
|
|
6774
6809
|
};
|
|
6775
6810
|
slots: {
|
|
6776
6811
|
id: string;
|
|
6777
|
-
title: string;
|
|
6778
6812
|
description: string;
|
|
6813
|
+
title: string;
|
|
6779
6814
|
required: boolean;
|
|
6780
6815
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
6781
6816
|
binding?: {
|
|
@@ -7003,8 +7038,8 @@ declare class AppPackagesRoutesController {
|
|
|
7003
7038
|
};
|
|
7004
7039
|
slots: {
|
|
7005
7040
|
id: string;
|
|
7006
|
-
title: string;
|
|
7007
7041
|
description: string;
|
|
7042
|
+
title: string;
|
|
7008
7043
|
required: boolean;
|
|
7009
7044
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
7010
7045
|
binding?: {
|
|
@@ -7321,8 +7356,8 @@ declare class AppPackagesRoutesController {
|
|
|
7321
7356
|
};
|
|
7322
7357
|
slots: {
|
|
7323
7358
|
id: string;
|
|
7324
|
-
title: string;
|
|
7325
7359
|
description: string;
|
|
7360
|
+
title: string;
|
|
7326
7361
|
required: boolean;
|
|
7327
7362
|
status: _$_nextclaw_kernel0.AppPackageSecretStatus;
|
|
7328
7363
|
binding?: {
|
|
@@ -7538,6 +7573,15 @@ declare class InboxDeliveriesRoutesController {
|
|
|
7538
7573
|
};
|
|
7539
7574
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
7540
7575
|
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
7576
|
+
ok: boolean;
|
|
7577
|
+
error: {
|
|
7578
|
+
code: string;
|
|
7579
|
+
message: string;
|
|
7580
|
+
details: {
|
|
7581
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
7582
|
+
} | undefined;
|
|
7583
|
+
};
|
|
7584
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
7541
7585
|
ok: boolean;
|
|
7542
7586
|
data: {
|
|
7543
7587
|
id: string;
|
|
@@ -7558,16 +7602,7 @@ declare class InboxDeliveriesRoutesController {
|
|
|
7558
7602
|
readAt: string | null;
|
|
7559
7603
|
archivedAt: string | null;
|
|
7560
7604
|
};
|
|
7561
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)
|
|
7562
|
-
ok: boolean;
|
|
7563
|
-
error: {
|
|
7564
|
-
code: string;
|
|
7565
|
-
message: string;
|
|
7566
|
-
details: {
|
|
7567
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
7568
|
-
} | undefined;
|
|
7569
|
-
};
|
|
7570
|
-
}, 404, "json">)>;
|
|
7605
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
7571
7606
|
readonly updateState: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
7572
7607
|
ok: boolean;
|
|
7573
7608
|
data: _$hono_utils_types0.JSONValue;
|
|
@@ -7600,5 +7635,5 @@ declare class InboxDeliveriesRoutesController {
|
|
|
7600
7635
|
private handleManagerAction;
|
|
7601
7636
|
}
|
|
7602
7637
|
//#endregion
|
|
7603
|
-
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, type AppDocumentGrantMutationResult, type AppInstalledPermissionState, AppMetaView, type AppPackageHostTarget, type AppPackageList, type AppPackageOperationInput, type AppPackageOperationList, type AppPackageOperationStatus, type AppPackageOperationView, type AppPackageView, AppPackagesRoutesController, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, type CreateProjectWorkItemInput, type CreateProjectWorkStateInput, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, McpConnectionCreateResult, McpConnectionRequest, McpConnectionTestResult, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, type ObservedRequest, type ObservedWorkItem, type ObservedWorkflow, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PortableRuntimeAcceptanceContractApiView, PortableRuntimeAcceptanceExportApiView, PortableRuntimeAcceptanceStatusApiView, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, ProductAnalyticsAudience, ProductAnalyticsConfigUpdate, type ProductAnalyticsStatusView, ProductAnalyticsView, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectObservationSnapshot, type ProjectTemplateView, type ProjectView, type ProjectWorkActivity, type ProjectWorkActivityPage, type ProjectWorkArtifactLink, type ProjectWorkAttention, type ProjectWorkItemDetail, type
|
|
7638
|
+
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, type AppDocumentGrantMutationResult, type AppInstalledPermissionState, AppMetaView, type AppPackageHostTarget, type AppPackageList, type AppPackageOperationInput, type AppPackageOperationList, type AppPackageOperationStatus, type AppPackageOperationView, type AppPackageView, AppPackagesRoutesController, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, type CreateProjectWorkItemInput, type CreateProjectWorkStateInput, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, McpConnectionCreateResult, McpConnectionRequest, McpConnectionTestResult, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, type ObservedRequest, type ObservedWorkItem, type ObservedWorkflow, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PortableRuntimeAcceptanceContractApiView, PortableRuntimeAcceptanceExportApiView, PortableRuntimeAcceptanceStatusApiView, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, ProductAnalyticsAudience, ProductAnalyticsConfigUpdate, type ProductAnalyticsStatusView, ProductAnalyticsView, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectObservationSnapshot, type ProjectRecentArtifact, type ProjectRecentArtifactPage, type ProjectTemplateView, type ProjectView, type ProjectWorkActivity, type ProjectWorkActivityPage, type ProjectWorkArtifactLink, type ProjectWorkAttention, type ProjectWorkItemDetail, type ProjectWorkItemListEntry, type ProjectWorkItemPage, type ProjectWorkListInput, type ProjectWorkState, type ProjectWorkStateCategory, type ProjectWorkSummary, ProviderAuthImportResult, ProviderAuthPollRequest, ProviderAuthPollResult, ProviderAuthStartRequest, ProviderAuthStartResult, ProviderConfigUpdate, ProviderConfigView, ProviderConnectionTestRequest, ProviderConnectionTestResult, ProviderCreateRequest, ProviderCreateResult, ProviderDeleteResult, ProviderInstanceView, ProviderModelCatalogView, ProviderModelDiscoveryRequest, ProviderModelDiscoveryResult, ProviderTemplateView, ProviderTemplatesView, ProvidersView, RemoteAccessView, RemoteAccountProfileUpdateRequest, RemoteAccountView, RemoteBrowserAuthPollRequest, RemoteBrowserAuthPollResult, RemoteBrowserAuthStartRequest, RemoteBrowserAuthStartResult, RemoteConnectionDiagnosticsView, RemoteDisconnectView, RemoteDoctorCheckView, RemoteDoctorView, RemoteLoginRequest, RemoteRuntimeView, RemoteServiceAction, RemoteServiceActionResult, RemoteServiceView, RemoteSettingsUpdateRequest, RemoteSettingsView, RuntimeActionCapability, RuntimeActionImpact, RuntimeConfigUpdate, RuntimeControlAction, RuntimeControlActionResult, RuntimeControlEnvironment, RuntimeControlRoutesController, RuntimeControlView, RuntimeEntryView, RuntimeLifecycleState, RuntimePendingRestart, RuntimeServiceState, RuntimeVerificationRecordListView, SearchConfigUpdate, SearchConfigView, SearchProviderConfigView, SearchProviderName, SearchProviderSpecView, SecretProviderEnvView, SecretProviderExecView, SecretProviderFileView, SecretProviderView, SecretRefView, SecretSourceView, SecretsConfigUpdate, SecretsView, ServerPathBreadcrumbView, ServerPathBrowseView, ServerPathDirectoryCreateRequest, ServerPathDirectoryCreateView, ServerPathEntryDeleteView, ServerPathEntryRenameRequest, ServerPathEntryRenameView, ServerPathEntryView, ServerPathFileCreateRequest, ServerPathFileCreateView, ServerPathFilesUploadView, ServerPathLocationView, ServerPathReadView, ServerPathSearchEntryView, ServerPathSearchView, ServerPathWatchRequest, ServerPathWatchView, ServiceActionGrantBatchRequestView, ServiceActionGrantListView, ServiceActionGrantView, ServiceActionInvokeRequestView, ServiceActionInvokeResultView, ServiceActionListView, ServiceActionView, ServiceAppDeleteResultView, ServiceAppJobListView, ServiceAppJobViewResponse, ServiceAppJobWatchView, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionObservationKind, UiNcpSessionObservationView, UiNcpSessionObservationsView, UiNcpSessionPendingInputView, UiNcpSessionPendingInputsView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpSessionTokenUsageView, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, type UpdateProjectWorkItemInput, type UpdateProjectWorkStateInput, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer, updateChannel, updateModel, updateProductAnalytics, updateProvider, updateRuntime, updateSearch, updateSecrets };
|
|
7604
7639
|
//# sourceMappingURL=index.d.ts.map
|