@nextclaw/server 0.16.7 → 0.17.1
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 +120 -88
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +195 -6
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
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, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, InboxDeliveryManager, NextclawKernel, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PreferenceJsonValue, PreferenceManager, ProjectRecord, ProjectTemplate, ProjectTemplateId, ServiceAction, ServiceActionGrant, ServiceActionInvokeResult, ServiceAppDeleteResult, ServiceAppList, ServiceAppManager, ServiceAppRecord, SessionTokenUsageSummary } from "@nextclaw/kernel";
|
|
4
|
+
import { AccessManager, AppDataDeleteResult, AppDataEntry, AppDataList, AppDataManager, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, InboxDeliveryManager, NextclawKernel, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PreferenceJsonValue, PreferenceManager, ProjectRecord, ProjectTemplate, ProjectTemplateId, ServiceAction, ServiceActionGrant, ServiceActionInvokeResult, ServiceAppDeleteResult, ServiceAppList, ServiceAppManager, ServiceAppRecord, SessionTokenUsageSummary } 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, ModelThinkingCapability, ThinkingLevel } from "@nextclaw/core";
|
|
8
|
+
import * as _$_nextclaw_ncp0 from "@nextclaw/ncp";
|
|
8
9
|
import { NcpMessage, NcpSessionApi, NcpSessionMessagePageInfo, NcpSessionStatus, NcpSessionSummary } from "@nextclaw/ncp";
|
|
9
10
|
import * as _$hono_utils_http_status0 from "hono/utils/http-status";
|
|
10
11
|
import * as _$hono_utils_types0 from "hono/utils/types";
|
|
11
12
|
import { IncomingMessage } from "node:http";
|
|
13
|
+
import * as _$_nextclaw_app_runtime0 from "@nextclaw/app-runtime";
|
|
12
14
|
|
|
13
15
|
//#region ../nextclaw-shared/src/types/typed-key.types.d.ts
|
|
14
16
|
type TypedKey<T = unknown> = {
|
|
@@ -485,6 +487,8 @@ declare class PanelAppsRoutesController {
|
|
|
485
487
|
updatedAt: string;
|
|
486
488
|
sizeBytes: number;
|
|
487
489
|
favorite: boolean;
|
|
490
|
+
mainSidebar: boolean;
|
|
491
|
+
mainSidebarOrder?: number | undefined;
|
|
488
492
|
clientDeclared: boolean;
|
|
489
493
|
clientGranted: boolean;
|
|
490
494
|
lastOpenedAt?: string | undefined;
|
|
@@ -510,6 +514,8 @@ declare class PanelAppsRoutesController {
|
|
|
510
514
|
updatedAt: string;
|
|
511
515
|
sizeBytes: number;
|
|
512
516
|
favorite: boolean;
|
|
517
|
+
mainSidebar: boolean;
|
|
518
|
+
mainSidebarOrder?: number | undefined;
|
|
513
519
|
clientDeclared: boolean;
|
|
514
520
|
clientGranted: boolean;
|
|
515
521
|
lastOpenedAt?: string | undefined;
|
|
@@ -543,6 +549,8 @@ declare class PanelAppsRoutesController {
|
|
|
543
549
|
updatedAt: string;
|
|
544
550
|
sizeBytes: number;
|
|
545
551
|
favorite: boolean;
|
|
552
|
+
mainSidebar: boolean;
|
|
553
|
+
mainSidebarOrder?: number | undefined;
|
|
546
554
|
clientDeclared: boolean;
|
|
547
555
|
clientGranted: boolean;
|
|
548
556
|
lastOpenedAt?: string | undefined;
|
|
@@ -655,6 +663,7 @@ declare class PanelAppsRoutesController {
|
|
|
655
663
|
assistantMessageId: string | null;
|
|
656
664
|
runId: string | null;
|
|
657
665
|
correlationId?: string | undefined;
|
|
666
|
+
delivery?: _$_nextclaw_ncp0.NcpResolvedInputDelivery | undefined;
|
|
658
667
|
};
|
|
659
668
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
660
669
|
readonly generateAgentObject: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -789,25 +798,6 @@ type PreferenceDeleteResult = {
|
|
|
789
798
|
deleted: boolean;
|
|
790
799
|
};
|
|
791
800
|
//#endregion
|
|
792
|
-
//#region ../nextclaw-app-runtime/dist/types/app-manifest.types.d.ts
|
|
793
|
-
//#region src/types/app-manifest.types.d.ts
|
|
794
|
-
type AppDocumentAccessMode = "read" | "read-write";
|
|
795
|
-
type AppRuntimeProfile = "panel-only" | "wasi" | "native-process";
|
|
796
|
-
type AppRuntimeIsolation = "sandboxed" | "host-mediated" | "full-user";
|
|
797
|
-
type AppArtifactArchitecture = "x64" | "arm64";
|
|
798
|
-
type AppComponentKind = "panel" | "service";
|
|
799
|
-
//#endregion
|
|
800
|
-
//#region ../nextclaw-app-runtime/dist/types/app-bundle.types.d.ts
|
|
801
|
-
//#region src/types/app-bundle.types.d.ts
|
|
802
|
-
type AppDistributionMode = "bundle" | "source";
|
|
803
|
-
//#endregion
|
|
804
|
-
//#region ../nextclaw-app-runtime/dist/types/app-storage.types.d.ts
|
|
805
|
-
type AppStorageLayout = "legacy" | "instance-v1";
|
|
806
|
-
//#endregion
|
|
807
|
-
//#region ../nextclaw-app-runtime/dist/types/app-registry.types.d.ts
|
|
808
|
-
//#region src/types/app-registry.types.d.ts
|
|
809
|
-
type AppInstallSourceKind = "bundle" | "directory" | "registry";
|
|
810
|
-
//#endregion
|
|
811
801
|
//#region src/features/service-apps/controllers/service-apps.controller.d.ts
|
|
812
802
|
declare class ServiceAppsRoutesController {
|
|
813
803
|
private readonly params;
|
|
@@ -843,7 +833,7 @@ declare class ServiceAppsRoutesController {
|
|
|
843
833
|
dataDirectory?: string | undefined;
|
|
844
834
|
instanceId?: string | undefined;
|
|
845
835
|
storage?: {
|
|
846
|
-
layout: AppStorageLayout;
|
|
836
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
847
837
|
layoutVersion: 1;
|
|
848
838
|
instanceId: string;
|
|
849
839
|
instanceDirectory: string;
|
|
@@ -854,7 +844,7 @@ declare class ServiceAppsRoutesController {
|
|
|
854
844
|
temporaryDirectory: string;
|
|
855
845
|
logsDirectory: string;
|
|
856
846
|
} | undefined;
|
|
857
|
-
isolation?: AppRuntimeIsolation | undefined;
|
|
847
|
+
isolation?: _$_nextclaw_app_runtime0.AppRuntimeIsolation | undefined;
|
|
858
848
|
}[];
|
|
859
849
|
diagnostics: {
|
|
860
850
|
appId: string;
|
|
@@ -888,7 +878,7 @@ declare class ServiceAppsRoutesController {
|
|
|
888
878
|
dataDirectory?: string | undefined;
|
|
889
879
|
instanceId?: string | undefined;
|
|
890
880
|
storage?: {
|
|
891
|
-
layout: AppStorageLayout;
|
|
881
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
892
882
|
layoutVersion: 1;
|
|
893
883
|
instanceId: string;
|
|
894
884
|
instanceDirectory: string;
|
|
@@ -899,7 +889,7 @@ declare class ServiceAppsRoutesController {
|
|
|
899
889
|
temporaryDirectory: string;
|
|
900
890
|
logsDirectory: string;
|
|
901
891
|
} | undefined;
|
|
902
|
-
isolation?: AppRuntimeIsolation | undefined;
|
|
892
|
+
isolation?: _$_nextclaw_app_runtime0.AppRuntimeIsolation | undefined;
|
|
903
893
|
};
|
|
904
894
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
905
895
|
ok: boolean;
|
|
@@ -910,7 +900,7 @@ declare class ServiceAppsRoutesController {
|
|
|
910
900
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
911
901
|
} | undefined;
|
|
912
902
|
};
|
|
913
|
-
}, 400 | 401 | 403 | 404, "json">)>;
|
|
903
|
+
}, 400 | 401 | 403 | 404 | 502, "json">)>;
|
|
914
904
|
readonly listServiceActions: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
915
905
|
ok: boolean;
|
|
916
906
|
error: {
|
|
@@ -920,7 +910,7 @@ declare class ServiceAppsRoutesController {
|
|
|
920
910
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
921
911
|
} | undefined;
|
|
922
912
|
};
|
|
923
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
913
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
924
914
|
ok: boolean;
|
|
925
915
|
data: {
|
|
926
916
|
actions: {
|
|
@@ -947,7 +937,7 @@ declare class ServiceAppsRoutesController {
|
|
|
947
937
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
948
938
|
} | undefined;
|
|
949
939
|
};
|
|
950
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
940
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
951
941
|
ok: boolean;
|
|
952
942
|
data: {
|
|
953
943
|
actions: {
|
|
@@ -974,7 +964,7 @@ declare class ServiceAppsRoutesController {
|
|
|
974
964
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
975
965
|
} | undefined;
|
|
976
966
|
};
|
|
977
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
967
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
978
968
|
ok: boolean;
|
|
979
969
|
data: {
|
|
980
970
|
actionId: string;
|
|
@@ -990,7 +980,7 @@ declare class ServiceAppsRoutesController {
|
|
|
990
980
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
991
981
|
} | undefined;
|
|
992
982
|
};
|
|
993
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
983
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
994
984
|
ok: boolean;
|
|
995
985
|
data: {
|
|
996
986
|
caller: {
|
|
@@ -1011,7 +1001,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1011
1001
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1012
1002
|
} | undefined;
|
|
1013
1003
|
};
|
|
1014
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
1004
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1015
1005
|
ok: boolean;
|
|
1016
1006
|
data: {
|
|
1017
1007
|
grants: {
|
|
@@ -1048,7 +1038,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1048
1038
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1049
1039
|
} | undefined;
|
|
1050
1040
|
};
|
|
1051
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
1041
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1052
1042
|
ok: boolean;
|
|
1053
1043
|
data: {
|
|
1054
1044
|
revoked: boolean;
|
|
@@ -1063,7 +1053,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1063
1053
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1064
1054
|
} | undefined;
|
|
1065
1055
|
};
|
|
1066
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
1056
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1067
1057
|
ok: boolean;
|
|
1068
1058
|
data: {
|
|
1069
1059
|
revoked: boolean;
|
|
@@ -1094,7 +1084,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1094
1084
|
dataDirectory?: string | undefined;
|
|
1095
1085
|
instanceId?: string | undefined;
|
|
1096
1086
|
storage?: {
|
|
1097
|
-
layout: AppStorageLayout;
|
|
1087
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
1098
1088
|
layoutVersion: 1;
|
|
1099
1089
|
instanceId: string;
|
|
1100
1090
|
instanceDirectory: string;
|
|
@@ -1105,7 +1095,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1105
1095
|
temporaryDirectory: string;
|
|
1106
1096
|
logsDirectory: string;
|
|
1107
1097
|
} | undefined;
|
|
1108
|
-
isolation?: AppRuntimeIsolation | undefined;
|
|
1098
|
+
isolation?: _$_nextclaw_app_runtime0.AppRuntimeIsolation | undefined;
|
|
1109
1099
|
};
|
|
1110
1100
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
1111
1101
|
ok: boolean;
|
|
@@ -1116,7 +1106,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1116
1106
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1117
1107
|
} | undefined;
|
|
1118
1108
|
};
|
|
1119
|
-
}, 400 | 401 | 403 | 404, "json">)>;
|
|
1109
|
+
}, 400 | 401 | 403 | 404 | 502, "json">)>;
|
|
1120
1110
|
readonly deleteServiceApp: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
1121
1111
|
ok: boolean;
|
|
1122
1112
|
error: {
|
|
@@ -1126,7 +1116,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1126
1116
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1127
1117
|
} | undefined;
|
|
1128
1118
|
};
|
|
1129
|
-
}, 400 | 401 | 403 | 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
1119
|
+
}, 400 | 401 | 403 | 404 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1130
1120
|
ok: boolean;
|
|
1131
1121
|
data: {
|
|
1132
1122
|
deleted: true;
|
|
@@ -1930,6 +1920,9 @@ type SecretsConfigUpdate = {
|
|
|
1930
1920
|
providers?: Record<string, SecretProviderView> | null;
|
|
1931
1921
|
refs?: Record<string, SecretRefView> | null;
|
|
1932
1922
|
};
|
|
1923
|
+
type ProductAnalyticsView = Config["productAnalytics"];
|
|
1924
|
+
type ProductAnalyticsAudience = ProductAnalyticsView["audience"];
|
|
1925
|
+
type ProductAnalyticsConfigUpdate = Partial<ProductAnalyticsView>;
|
|
1933
1926
|
type UiNcpSessionListView = {
|
|
1934
1927
|
sessions: NcpSessionSummary[];
|
|
1935
1928
|
total: number;
|
|
@@ -1945,10 +1938,21 @@ type UiNcpSessionQueuedInputView = {
|
|
|
1945
1938
|
message: NcpMessage;
|
|
1946
1939
|
metadata: Record<string, unknown>;
|
|
1947
1940
|
};
|
|
1941
|
+
type UiNcpSessionPendingInputsView = {
|
|
1942
|
+
sessionId: string;
|
|
1943
|
+
inputs: UiNcpSessionPendingInputView[];
|
|
1944
|
+
};
|
|
1945
|
+
type UiNcpSessionPendingInputView = UiNcpSessionQueuedInputView & {
|
|
1946
|
+
placement: "queued" | "steering";
|
|
1947
|
+
intendedRunId: string | null;
|
|
1948
|
+
};
|
|
1948
1949
|
type UiNcpSessionMessagesView = {
|
|
1949
1950
|
sessionId: string;
|
|
1950
1951
|
status: NcpSessionStatus;
|
|
1951
1952
|
messages: NcpMessage[];
|
|
1953
|
+
deferredToolPayloads?: Record<string, {
|
|
1954
|
+
cursor: string;
|
|
1955
|
+
}>;
|
|
1952
1956
|
contextWindow?: NcpSessionSummary["contextWindow"];
|
|
1953
1957
|
total: number;
|
|
1954
1958
|
pageInfo: NcpSessionMessagePageInfo;
|
|
@@ -1972,6 +1976,7 @@ type ConfigView = {
|
|
|
1972
1976
|
companion?: {
|
|
1973
1977
|
enabled?: boolean;
|
|
1974
1978
|
};
|
|
1979
|
+
productAnalytics: ProductAnalyticsView;
|
|
1975
1980
|
agents: {
|
|
1976
1981
|
defaults: {
|
|
1977
1982
|
model: string;
|
|
@@ -2506,6 +2511,10 @@ declare class ConfigRoutesController {
|
|
|
2506
2511
|
companion?: {
|
|
2507
2512
|
enabled?: boolean | undefined;
|
|
2508
2513
|
} | undefined;
|
|
2514
|
+
productAnalytics: {
|
|
2515
|
+
enabled: boolean;
|
|
2516
|
+
audience: "external" | "internal" | "qa";
|
|
2517
|
+
};
|
|
2509
2518
|
agents: {
|
|
2510
2519
|
defaults: {
|
|
2511
2520
|
model: string;
|
|
@@ -3422,6 +3431,22 @@ declare class ConfigRoutesController {
|
|
|
3422
3431
|
};
|
|
3423
3432
|
};
|
|
3424
3433
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3434
|
+
readonly updateProductAnalytics: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3435
|
+
ok: boolean;
|
|
3436
|
+
error: {
|
|
3437
|
+
code: string;
|
|
3438
|
+
message: string;
|
|
3439
|
+
details: {
|
|
3440
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3441
|
+
} | undefined;
|
|
3442
|
+
};
|
|
3443
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3444
|
+
ok: boolean;
|
|
3445
|
+
data: {
|
|
3446
|
+
enabled: boolean;
|
|
3447
|
+
audience: "external" | "internal" | "qa";
|
|
3448
|
+
};
|
|
3449
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3425
3450
|
readonly updateRuntime: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3426
3451
|
ok: boolean;
|
|
3427
3452
|
error: {
|
|
@@ -3600,6 +3625,7 @@ declare function deleteProvider(configPath: string, providerId: string): boolean
|
|
|
3600
3625
|
declare function updateChannel(configPath: string, channelName: string, patch: Record<string, unknown>, options?: ExtensionConfigProjectionOptions): Record<string, unknown> | null;
|
|
3601
3626
|
declare function updateRuntime(configPath: string, patch: RuntimeConfigUpdate): Pick<ConfigView, "companion" | "agents" | "bindings" | "session">;
|
|
3602
3627
|
declare function updateSecrets(configPath: string, patch: SecretsConfigUpdate): SecretsView;
|
|
3628
|
+
declare function updateProductAnalytics(configPath: string, patch: ProductAnalyticsConfigUpdate): ProductAnalyticsView;
|
|
3603
3629
|
//#endregion
|
|
3604
3630
|
//#region src/features/app-packages/controllers/app-packages.controller.d.ts
|
|
3605
3631
|
declare class AppPackagesRoutesController {
|
|
@@ -3634,7 +3660,7 @@ declare class AppPackagesRoutesController {
|
|
|
3634
3660
|
dataDirectory: string;
|
|
3635
3661
|
instanceId: string;
|
|
3636
3662
|
storage: {
|
|
3637
|
-
layout: AppStorageLayout;
|
|
3663
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3638
3664
|
layoutVersion: 1;
|
|
3639
3665
|
instanceId: string;
|
|
3640
3666
|
instanceDirectory: string;
|
|
@@ -3645,8 +3671,8 @@ declare class AppPackagesRoutesController {
|
|
|
3645
3671
|
temporaryDirectory: string;
|
|
3646
3672
|
logsDirectory: string;
|
|
3647
3673
|
};
|
|
3648
|
-
runtimeProfile: AppRuntimeProfile;
|
|
3649
|
-
isolation: AppRuntimeIsolation;
|
|
3674
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
3675
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
3650
3676
|
title?: string | undefined;
|
|
3651
3677
|
description?: string | undefined;
|
|
3652
3678
|
icon?: string | undefined;
|
|
@@ -3660,7 +3686,7 @@ declare class AppPackagesRoutesController {
|
|
|
3660
3686
|
dataDirectory: string;
|
|
3661
3687
|
instanceId: string;
|
|
3662
3688
|
storage: {
|
|
3663
|
-
layout: AppStorageLayout;
|
|
3689
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3664
3690
|
layoutVersion: 1;
|
|
3665
3691
|
instanceId: string;
|
|
3666
3692
|
instanceDirectory: string;
|
|
@@ -3680,9 +3706,15 @@ declare class AppPackagesRoutesController {
|
|
|
3680
3706
|
logsBytes: number;
|
|
3681
3707
|
totalBytes: number;
|
|
3682
3708
|
} | undefined;
|
|
3683
|
-
runtimeProfile: AppRuntimeProfile;
|
|
3684
|
-
isolation: AppRuntimeIsolation;
|
|
3709
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
3710
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
3685
3711
|
}[];
|
|
3712
|
+
hostTarget?: {
|
|
3713
|
+
key: string;
|
|
3714
|
+
operatingSystem: "darwin" | "linux" | "win32";
|
|
3715
|
+
architecture: "x64" | "arm64";
|
|
3716
|
+
abi?: "gnu" | "musl" | "msvc" | undefined;
|
|
3717
|
+
} | undefined;
|
|
3686
3718
|
};
|
|
3687
3719
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
3688
3720
|
readonly listOperations: (c: Context) => Promise<Response & _$hono.TypedResponse<{
|
|
@@ -3880,7 +3912,7 @@ declare class AppPackagesRoutesController {
|
|
|
3880
3912
|
dataDirectory: string;
|
|
3881
3913
|
instanceId: string;
|
|
3882
3914
|
storage: {
|
|
3883
|
-
layout: AppStorageLayout;
|
|
3915
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3884
3916
|
layoutVersion: 1;
|
|
3885
3917
|
instanceId: string;
|
|
3886
3918
|
instanceDirectory: string;
|
|
@@ -3891,8 +3923,8 @@ declare class AppPackagesRoutesController {
|
|
|
3891
3923
|
temporaryDirectory: string;
|
|
3892
3924
|
logsDirectory: string;
|
|
3893
3925
|
};
|
|
3894
|
-
runtimeProfile: AppRuntimeProfile;
|
|
3895
|
-
isolation: AppRuntimeIsolation;
|
|
3926
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
3927
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
3896
3928
|
title?: string | undefined;
|
|
3897
3929
|
description?: string | undefined;
|
|
3898
3930
|
icon?: string | undefined;
|
|
@@ -3906,7 +3938,7 @@ declare class AppPackagesRoutesController {
|
|
|
3906
3938
|
dataDirectory: string;
|
|
3907
3939
|
instanceId: string;
|
|
3908
3940
|
storage: {
|
|
3909
|
-
layout: AppStorageLayout;
|
|
3941
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3910
3942
|
layoutVersion: 1;
|
|
3911
3943
|
instanceId: string;
|
|
3912
3944
|
instanceDirectory: string;
|
|
@@ -3926,8 +3958,8 @@ declare class AppPackagesRoutesController {
|
|
|
3926
3958
|
logsBytes: number;
|
|
3927
3959
|
totalBytes: number;
|
|
3928
3960
|
} | undefined;
|
|
3929
|
-
runtimeProfile: AppRuntimeProfile;
|
|
3930
|
-
isolation: AppRuntimeIsolation;
|
|
3961
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
3962
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
3931
3963
|
};
|
|
3932
3964
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3933
3965
|
readonly install: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3967,7 +3999,7 @@ declare class AppPackagesRoutesController {
|
|
|
3967
3999
|
dataDirectory: string;
|
|
3968
4000
|
instanceId: string;
|
|
3969
4001
|
storage: {
|
|
3970
|
-
layout: AppStorageLayout;
|
|
4002
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3971
4003
|
layoutVersion: 1;
|
|
3972
4004
|
instanceId: string;
|
|
3973
4005
|
instanceDirectory: string;
|
|
@@ -3978,8 +4010,8 @@ declare class AppPackagesRoutesController {
|
|
|
3978
4010
|
temporaryDirectory: string;
|
|
3979
4011
|
logsDirectory: string;
|
|
3980
4012
|
};
|
|
3981
|
-
runtimeProfile: AppRuntimeProfile;
|
|
3982
|
-
isolation: AppRuntimeIsolation;
|
|
4013
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4014
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
3983
4015
|
title?: string | undefined;
|
|
3984
4016
|
description?: string | undefined;
|
|
3985
4017
|
icon?: string | undefined;
|
|
@@ -3993,7 +4025,7 @@ declare class AppPackagesRoutesController {
|
|
|
3993
4025
|
dataDirectory: string;
|
|
3994
4026
|
instanceId: string;
|
|
3995
4027
|
storage: {
|
|
3996
|
-
layout: AppStorageLayout;
|
|
4028
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
3997
4029
|
layoutVersion: 1;
|
|
3998
4030
|
instanceId: string;
|
|
3999
4031
|
instanceDirectory: string;
|
|
@@ -4013,8 +4045,8 @@ declare class AppPackagesRoutesController {
|
|
|
4013
4045
|
logsBytes: number;
|
|
4014
4046
|
totalBytes: number;
|
|
4015
4047
|
} | undefined;
|
|
4016
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4017
|
-
isolation: AppRuntimeIsolation;
|
|
4048
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4049
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4018
4050
|
};
|
|
4019
4051
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4020
4052
|
readonly enable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4054,7 +4086,7 @@ declare class AppPackagesRoutesController {
|
|
|
4054
4086
|
dataDirectory: string;
|
|
4055
4087
|
instanceId: string;
|
|
4056
4088
|
storage: {
|
|
4057
|
-
layout: AppStorageLayout;
|
|
4089
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4058
4090
|
layoutVersion: 1;
|
|
4059
4091
|
instanceId: string;
|
|
4060
4092
|
instanceDirectory: string;
|
|
@@ -4065,8 +4097,8 @@ declare class AppPackagesRoutesController {
|
|
|
4065
4097
|
temporaryDirectory: string;
|
|
4066
4098
|
logsDirectory: string;
|
|
4067
4099
|
};
|
|
4068
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4069
|
-
isolation: AppRuntimeIsolation;
|
|
4100
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4101
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4070
4102
|
title?: string | undefined;
|
|
4071
4103
|
description?: string | undefined;
|
|
4072
4104
|
icon?: string | undefined;
|
|
@@ -4080,7 +4112,7 @@ declare class AppPackagesRoutesController {
|
|
|
4080
4112
|
dataDirectory: string;
|
|
4081
4113
|
instanceId: string;
|
|
4082
4114
|
storage: {
|
|
4083
|
-
layout: AppStorageLayout;
|
|
4115
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4084
4116
|
layoutVersion: 1;
|
|
4085
4117
|
instanceId: string;
|
|
4086
4118
|
instanceDirectory: string;
|
|
@@ -4100,8 +4132,8 @@ declare class AppPackagesRoutesController {
|
|
|
4100
4132
|
logsBytes: number;
|
|
4101
4133
|
totalBytes: number;
|
|
4102
4134
|
} | undefined;
|
|
4103
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4104
|
-
isolation: AppRuntimeIsolation;
|
|
4135
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4136
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4105
4137
|
};
|
|
4106
4138
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4107
4139
|
readonly disable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4141,7 +4173,7 @@ declare class AppPackagesRoutesController {
|
|
|
4141
4173
|
dataDirectory: string;
|
|
4142
4174
|
instanceId: string;
|
|
4143
4175
|
storage: {
|
|
4144
|
-
layout: AppStorageLayout;
|
|
4176
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4145
4177
|
layoutVersion: 1;
|
|
4146
4178
|
instanceId: string;
|
|
4147
4179
|
instanceDirectory: string;
|
|
@@ -4152,8 +4184,8 @@ declare class AppPackagesRoutesController {
|
|
|
4152
4184
|
temporaryDirectory: string;
|
|
4153
4185
|
logsDirectory: string;
|
|
4154
4186
|
};
|
|
4155
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4156
|
-
isolation: AppRuntimeIsolation;
|
|
4187
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4188
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4157
4189
|
title?: string | undefined;
|
|
4158
4190
|
description?: string | undefined;
|
|
4159
4191
|
icon?: string | undefined;
|
|
@@ -4167,7 +4199,7 @@ declare class AppPackagesRoutesController {
|
|
|
4167
4199
|
dataDirectory: string;
|
|
4168
4200
|
instanceId: string;
|
|
4169
4201
|
storage: {
|
|
4170
|
-
layout: AppStorageLayout;
|
|
4202
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4171
4203
|
layoutVersion: 1;
|
|
4172
4204
|
instanceId: string;
|
|
4173
4205
|
instanceDirectory: string;
|
|
@@ -4187,8 +4219,8 @@ declare class AppPackagesRoutesController {
|
|
|
4187
4219
|
logsBytes: number;
|
|
4188
4220
|
totalBytes: number;
|
|
4189
4221
|
} | undefined;
|
|
4190
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4191
|
-
isolation: AppRuntimeIsolation;
|
|
4222
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4223
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4192
4224
|
};
|
|
4193
4225
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4194
4226
|
readonly update: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4229,7 +4261,7 @@ declare class AppPackagesRoutesController {
|
|
|
4229
4261
|
dataDirectory: string;
|
|
4230
4262
|
instanceId: string;
|
|
4231
4263
|
storage: {
|
|
4232
|
-
layout: AppStorageLayout;
|
|
4264
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4233
4265
|
layoutVersion: 1;
|
|
4234
4266
|
instanceId: string;
|
|
4235
4267
|
instanceDirectory: string;
|
|
@@ -4240,8 +4272,8 @@ declare class AppPackagesRoutesController {
|
|
|
4240
4272
|
temporaryDirectory: string;
|
|
4241
4273
|
logsDirectory: string;
|
|
4242
4274
|
};
|
|
4243
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4244
|
-
isolation: AppRuntimeIsolation;
|
|
4275
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4276
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4245
4277
|
title?: string | undefined;
|
|
4246
4278
|
description?: string | undefined;
|
|
4247
4279
|
icon?: string | undefined;
|
|
@@ -4255,7 +4287,7 @@ declare class AppPackagesRoutesController {
|
|
|
4255
4287
|
dataDirectory: string;
|
|
4256
4288
|
instanceId: string;
|
|
4257
4289
|
storage: {
|
|
4258
|
-
layout: AppStorageLayout;
|
|
4290
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4259
4291
|
layoutVersion: 1;
|
|
4260
4292
|
instanceId: string;
|
|
4261
4293
|
instanceDirectory: string;
|
|
@@ -4275,8 +4307,8 @@ declare class AppPackagesRoutesController {
|
|
|
4275
4307
|
logsBytes: number;
|
|
4276
4308
|
totalBytes: number;
|
|
4277
4309
|
} | undefined;
|
|
4278
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4279
|
-
isolation: AppRuntimeIsolation;
|
|
4310
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4311
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4280
4312
|
};
|
|
4281
4313
|
result: {
|
|
4282
4314
|
appId: string;
|
|
@@ -4288,7 +4320,7 @@ declare class AppPackagesRoutesController {
|
|
|
4288
4320
|
id: string;
|
|
4289
4321
|
publisherId?: string | undefined;
|
|
4290
4322
|
storage: {
|
|
4291
|
-
layout: AppStorageLayout;
|
|
4323
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4292
4324
|
layoutVersion: 1;
|
|
4293
4325
|
instanceId: string;
|
|
4294
4326
|
instanceDirectory: string;
|
|
@@ -4304,13 +4336,13 @@ declare class AppPackagesRoutesController {
|
|
|
4304
4336
|
migratedAt?: string | undefined;
|
|
4305
4337
|
legacyDataDirectory?: string | undefined;
|
|
4306
4338
|
};
|
|
4307
|
-
sourceKind: AppInstallSourceKind;
|
|
4308
|
-
distributionMode?: AppDistributionMode | undefined;
|
|
4339
|
+
sourceKind: _$_nextclaw_app_runtime0.AppInstallSourceKind;
|
|
4340
|
+
distributionMode?: _$_nextclaw_app_runtime0.AppDistributionMode | undefined;
|
|
4309
4341
|
sourceRef: string;
|
|
4310
4342
|
permissions: {
|
|
4311
4343
|
documentAccess?: {
|
|
4312
4344
|
id: string;
|
|
4313
|
-
mode: AppDocumentAccessMode;
|
|
4345
|
+
mode: _$_nextclaw_app_runtime0.AppDocumentAccessMode;
|
|
4314
4346
|
description?: string | undefined;
|
|
4315
4347
|
}[] | undefined;
|
|
4316
4348
|
allowedDomains?: string[] | undefined;
|
|
@@ -4330,16 +4362,16 @@ declare class AppPackagesRoutesController {
|
|
|
4330
4362
|
} | {
|
|
4331
4363
|
kind: "native";
|
|
4332
4364
|
os: "darwin";
|
|
4333
|
-
arch: AppArtifactArchitecture;
|
|
4365
|
+
arch: _$_nextclaw_app_runtime0.AppArtifactArchitecture;
|
|
4334
4366
|
} | {
|
|
4335
4367
|
kind: "native";
|
|
4336
4368
|
os: "linux";
|
|
4337
|
-
arch: AppArtifactArchitecture;
|
|
4369
|
+
arch: _$_nextclaw_app_runtime0.AppArtifactArchitecture;
|
|
4338
4370
|
abi: "gnu" | "musl";
|
|
4339
4371
|
} | {
|
|
4340
4372
|
kind: "native";
|
|
4341
4373
|
os: "win32";
|
|
4342
|
-
arch: AppArtifactArchitecture;
|
|
4374
|
+
arch: _$_nextclaw_app_runtime0.AppArtifactArchitecture;
|
|
4343
4375
|
abi: "msvc";
|
|
4344
4376
|
} | undefined;
|
|
4345
4377
|
publisher?: {
|
|
@@ -4350,7 +4382,7 @@ declare class AppPackagesRoutesController {
|
|
|
4350
4382
|
enabled: boolean;
|
|
4351
4383
|
manifestSchemaVersion: 1 | 2;
|
|
4352
4384
|
components?: {
|
|
4353
|
-
kind: AppComponentKind;
|
|
4385
|
+
kind: _$_nextclaw_app_runtime0.AppComponentKind;
|
|
4354
4386
|
path: string;
|
|
4355
4387
|
id: string;
|
|
4356
4388
|
componentDirectory: string;
|
|
@@ -4400,7 +4432,7 @@ declare class AppPackagesRoutesController {
|
|
|
4400
4432
|
dataDirectory: string;
|
|
4401
4433
|
instanceId: string;
|
|
4402
4434
|
storage: {
|
|
4403
|
-
layout: AppStorageLayout;
|
|
4435
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4404
4436
|
layoutVersion: 1;
|
|
4405
4437
|
instanceId: string;
|
|
4406
4438
|
instanceDirectory: string;
|
|
@@ -4411,8 +4443,8 @@ declare class AppPackagesRoutesController {
|
|
|
4411
4443
|
temporaryDirectory: string;
|
|
4412
4444
|
logsDirectory: string;
|
|
4413
4445
|
};
|
|
4414
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4415
|
-
isolation: AppRuntimeIsolation;
|
|
4446
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4447
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4416
4448
|
title?: string | undefined;
|
|
4417
4449
|
description?: string | undefined;
|
|
4418
4450
|
icon?: string | undefined;
|
|
@@ -4426,7 +4458,7 @@ declare class AppPackagesRoutesController {
|
|
|
4426
4458
|
dataDirectory: string;
|
|
4427
4459
|
instanceId: string;
|
|
4428
4460
|
storage: {
|
|
4429
|
-
layout: AppStorageLayout;
|
|
4461
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4430
4462
|
layoutVersion: 1;
|
|
4431
4463
|
instanceId: string;
|
|
4432
4464
|
instanceDirectory: string;
|
|
@@ -4446,8 +4478,8 @@ declare class AppPackagesRoutesController {
|
|
|
4446
4478
|
logsBytes: number;
|
|
4447
4479
|
totalBytes: number;
|
|
4448
4480
|
} | undefined;
|
|
4449
|
-
runtimeProfile: AppRuntimeProfile;
|
|
4450
|
-
isolation: AppRuntimeIsolation;
|
|
4481
|
+
runtimeProfile: _$_nextclaw_app_runtime0.AppRuntimeProfile;
|
|
4482
|
+
isolation: _$_nextclaw_app_runtime0.AppRuntimeIsolation;
|
|
4451
4483
|
};
|
|
4452
4484
|
result: {
|
|
4453
4485
|
appId: string;
|
|
@@ -4494,7 +4526,7 @@ declare class AppDataRoutesController {
|
|
|
4494
4526
|
source: _$_nextclaw_kernel0.AppDataSource;
|
|
4495
4527
|
lifecycle: _$_nextclaw_kernel0.AppDataLifecycle;
|
|
4496
4528
|
storage: {
|
|
4497
|
-
layout: AppStorageLayout;
|
|
4529
|
+
layout: _$_nextclaw_app_runtime0.AppStorageLayout;
|
|
4498
4530
|
layoutVersion: 1;
|
|
4499
4531
|
instanceId: string;
|
|
4500
4532
|
instanceDirectory: string;
|
|
@@ -4641,5 +4673,5 @@ declare class InboxDeliveriesRoutesController {
|
|
|
4641
4673
|
private handleManagerAction;
|
|
4642
4674
|
}
|
|
4643
4675
|
//#endregion
|
|
4644
|
-
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, AppMetaView, 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, 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, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectTemplateView, type ProjectView, 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, 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, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpSessionTokenUsageView, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer, updateChannel, updateModel, updateProvider, updateRuntime, updateSearch, updateSecrets };
|
|
4676
|
+
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, 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, 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, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, ProductAnalyticsAudience, ProductAnalyticsConfigUpdate, ProductAnalyticsView, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectTemplateView, type ProjectView, 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, 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, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionPendingInputView, UiNcpSessionPendingInputsView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpSessionTokenUsageView, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer, updateChannel, updateModel, updateProductAnalytics, updateProvider, updateRuntime, updateSearch, updateSecrets };
|
|
4645
4677
|
//# sourceMappingURL=index.d.ts.map
|