@nextclaw/server 0.16.1 → 0.16.3
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 +133 -115
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -0
- 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, 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 } 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";
|
|
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";
|
|
@@ -9,7 +9,6 @@ import { NcpMessage, NcpSessionApi, NcpSessionMessagePageInfo, NcpSessionStatus,
|
|
|
9
9
|
import * as _$hono_utils_http_status0 from "hono/utils/http-status";
|
|
10
10
|
import * as _$hono_utils_types0 from "hono/utils/types";
|
|
11
11
|
import { IncomingMessage } from "node:http";
|
|
12
|
-
import * as _$_nextclaw_app_runtime0 from "@nextclaw/app-runtime";
|
|
13
12
|
|
|
14
13
|
//#region ../nextclaw-shared/src/types/typed-key.types.d.ts
|
|
15
14
|
type TypedKey<T = unknown> = {
|
|
@@ -790,6 +789,24 @@ type PreferenceDeleteResult = {
|
|
|
790
789
|
deleted: boolean;
|
|
791
790
|
};
|
|
792
791
|
//#endregion
|
|
792
|
+
//#region ../nextclaw-app-runtime/dist/types/app-bundle.types.d.ts
|
|
793
|
+
//#region src/types/app-bundle.types.d.ts
|
|
794
|
+
type AppDistributionMode = "bundle" | "source";
|
|
795
|
+
//#endregion
|
|
796
|
+
//#region ../nextclaw-app-runtime/dist/types/app-manifest.types.d.ts
|
|
797
|
+
//#region src/types/app-manifest.types.d.ts
|
|
798
|
+
type AppDocumentAccessMode = "read" | "read-write";
|
|
799
|
+
type AppRuntimeProfile = "panel-only" | "wasi" | "native-process";
|
|
800
|
+
type AppRuntimeIsolation = "sandboxed" | "host-mediated" | "full-user";
|
|
801
|
+
type AppComponentKind = "panel" | "service";
|
|
802
|
+
//#endregion
|
|
803
|
+
//#region ../nextclaw-app-runtime/dist/types/app-storage.types.d.ts
|
|
804
|
+
type AppStorageLayout = "legacy" | "instance-v1";
|
|
805
|
+
//#endregion
|
|
806
|
+
//#region ../nextclaw-app-runtime/dist/types/app-registry.types.d.ts
|
|
807
|
+
//#region src/types/app-registry.types.d.ts
|
|
808
|
+
type AppInstallSourceKind = "bundle" | "directory" | "registry";
|
|
809
|
+
//#endregion
|
|
793
810
|
//#region src/features/service-apps/controllers/service-apps.controller.d.ts
|
|
794
811
|
declare class ServiceAppsRoutesController {
|
|
795
812
|
private readonly params;
|
|
@@ -825,7 +842,7 @@ declare class ServiceAppsRoutesController {
|
|
|
825
842
|
dataDirectory?: string | undefined;
|
|
826
843
|
instanceId?: string | undefined;
|
|
827
844
|
storage?: {
|
|
828
|
-
layout:
|
|
845
|
+
layout: AppStorageLayout;
|
|
829
846
|
layoutVersion: 1;
|
|
830
847
|
instanceId: string;
|
|
831
848
|
instanceDirectory: string;
|
|
@@ -836,7 +853,7 @@ declare class ServiceAppsRoutesController {
|
|
|
836
853
|
temporaryDirectory: string;
|
|
837
854
|
logsDirectory: string;
|
|
838
855
|
} | undefined;
|
|
839
|
-
isolation?:
|
|
856
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
840
857
|
}[];
|
|
841
858
|
diagnostics: {
|
|
842
859
|
appId: string;
|
|
@@ -870,7 +887,7 @@ declare class ServiceAppsRoutesController {
|
|
|
870
887
|
dataDirectory?: string | undefined;
|
|
871
888
|
instanceId?: string | undefined;
|
|
872
889
|
storage?: {
|
|
873
|
-
layout:
|
|
890
|
+
layout: AppStorageLayout;
|
|
874
891
|
layoutVersion: 1;
|
|
875
892
|
instanceId: string;
|
|
876
893
|
instanceDirectory: string;
|
|
@@ -881,7 +898,7 @@ declare class ServiceAppsRoutesController {
|
|
|
881
898
|
temporaryDirectory: string;
|
|
882
899
|
logsDirectory: string;
|
|
883
900
|
} | undefined;
|
|
884
|
-
isolation?:
|
|
901
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
885
902
|
};
|
|
886
903
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
887
904
|
ok: boolean;
|
|
@@ -1076,7 +1093,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1076
1093
|
dataDirectory?: string | undefined;
|
|
1077
1094
|
instanceId?: string | undefined;
|
|
1078
1095
|
storage?: {
|
|
1079
|
-
layout:
|
|
1096
|
+
layout: AppStorageLayout;
|
|
1080
1097
|
layoutVersion: 1;
|
|
1081
1098
|
instanceId: string;
|
|
1082
1099
|
instanceDirectory: string;
|
|
@@ -1087,7 +1104,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1087
1104
|
temporaryDirectory: string;
|
|
1088
1105
|
logsDirectory: string;
|
|
1089
1106
|
} | undefined;
|
|
1090
|
-
isolation?:
|
|
1107
|
+
isolation?: AppRuntimeIsolation | undefined;
|
|
1091
1108
|
};
|
|
1092
1109
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
1093
1110
|
ok: boolean;
|
|
@@ -1935,6 +1952,7 @@ type UiNcpSessionMessagesView = {
|
|
|
1935
1952
|
total: number;
|
|
1936
1953
|
pageInfo: NcpSessionMessagePageInfo;
|
|
1937
1954
|
};
|
|
1955
|
+
type UiNcpSessionTokenUsageView = SessionTokenUsageSummary;
|
|
1938
1956
|
type SessionTypeDescribeParams = {
|
|
1939
1957
|
describeMode?: "observation" | "probe";
|
|
1940
1958
|
};
|
|
@@ -2993,7 +3011,7 @@ declare class ConfigRoutesController {
|
|
|
2993
3011
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2994
3012
|
} | undefined;
|
|
2995
3013
|
};
|
|
2996
|
-
},
|
|
3014
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
2997
3015
|
ok: boolean;
|
|
2998
3016
|
error: {
|
|
2999
3017
|
code: string;
|
|
@@ -3002,7 +3020,7 @@ declare class ConfigRoutesController {
|
|
|
3002
3020
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3003
3021
|
} | undefined;
|
|
3004
3022
|
};
|
|
3005
|
-
},
|
|
3023
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3006
3024
|
ok: boolean;
|
|
3007
3025
|
data: {
|
|
3008
3026
|
providerId: string;
|
|
@@ -3106,7 +3124,7 @@ declare class ConfigRoutesController {
|
|
|
3106
3124
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3107
3125
|
} | undefined;
|
|
3108
3126
|
};
|
|
3109
|
-
},
|
|
3127
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3110
3128
|
ok: boolean;
|
|
3111
3129
|
error: {
|
|
3112
3130
|
code: string;
|
|
@@ -3115,7 +3133,7 @@ declare class ConfigRoutesController {
|
|
|
3115
3133
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3116
3134
|
} | undefined;
|
|
3117
3135
|
};
|
|
3118
|
-
},
|
|
3136
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3119
3137
|
ok: boolean;
|
|
3120
3138
|
data: {
|
|
3121
3139
|
success: boolean;
|
|
@@ -3134,7 +3152,7 @@ declare class ConfigRoutesController {
|
|
|
3134
3152
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3135
3153
|
} | undefined;
|
|
3136
3154
|
};
|
|
3137
|
-
},
|
|
3155
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3138
3156
|
ok: boolean;
|
|
3139
3157
|
error: {
|
|
3140
3158
|
code: string;
|
|
@@ -3143,7 +3161,7 @@ declare class ConfigRoutesController {
|
|
|
3143
3161
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3144
3162
|
} | undefined;
|
|
3145
3163
|
};
|
|
3146
|
-
},
|
|
3164
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3147
3165
|
ok: boolean;
|
|
3148
3166
|
data: {
|
|
3149
3167
|
provider: string;
|
|
@@ -3170,7 +3188,7 @@ declare class ConfigRoutesController {
|
|
|
3170
3188
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3171
3189
|
} | undefined;
|
|
3172
3190
|
};
|
|
3173
|
-
},
|
|
3191
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3174
3192
|
ok: boolean;
|
|
3175
3193
|
error: {
|
|
3176
3194
|
code: string;
|
|
@@ -3179,7 +3197,7 @@ declare class ConfigRoutesController {
|
|
|
3179
3197
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3180
3198
|
} | undefined;
|
|
3181
3199
|
};
|
|
3182
|
-
},
|
|
3200
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3183
3201
|
ok: boolean;
|
|
3184
3202
|
data: {
|
|
3185
3203
|
provider: string;
|
|
@@ -3202,7 +3220,7 @@ declare class ConfigRoutesController {
|
|
|
3202
3220
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3203
3221
|
} | undefined;
|
|
3204
3222
|
};
|
|
3205
|
-
},
|
|
3223
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3206
3224
|
ok: boolean;
|
|
3207
3225
|
error: {
|
|
3208
3226
|
code: string;
|
|
@@ -3211,7 +3229,7 @@ declare class ConfigRoutesController {
|
|
|
3211
3229
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3212
3230
|
} | undefined;
|
|
3213
3231
|
};
|
|
3214
|
-
},
|
|
3232
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3215
3233
|
ok: boolean;
|
|
3216
3234
|
data: {
|
|
3217
3235
|
provider: string;
|
|
@@ -3229,7 +3247,7 @@ declare class ConfigRoutesController {
|
|
|
3229
3247
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3230
3248
|
} | undefined;
|
|
3231
3249
|
};
|
|
3232
|
-
},
|
|
3250
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3233
3251
|
ok: boolean;
|
|
3234
3252
|
error: {
|
|
3235
3253
|
code: string;
|
|
@@ -3238,7 +3256,7 @@ declare class ConfigRoutesController {
|
|
|
3238
3256
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3239
3257
|
} | undefined;
|
|
3240
3258
|
};
|
|
3241
|
-
},
|
|
3259
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3242
3260
|
ok: boolean;
|
|
3243
3261
|
data: {
|
|
3244
3262
|
provider: string;
|
|
@@ -3256,7 +3274,7 @@ declare class ConfigRoutesController {
|
|
|
3256
3274
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3257
3275
|
} | undefined;
|
|
3258
3276
|
};
|
|
3259
|
-
},
|
|
3277
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3260
3278
|
ok: boolean;
|
|
3261
3279
|
error: {
|
|
3262
3280
|
code: string;
|
|
@@ -3265,7 +3283,7 @@ declare class ConfigRoutesController {
|
|
|
3265
3283
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3266
3284
|
} | undefined;
|
|
3267
3285
|
};
|
|
3268
|
-
},
|
|
3286
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3269
3287
|
ok: boolean;
|
|
3270
3288
|
data: {
|
|
3271
3289
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
@@ -3280,7 +3298,7 @@ declare class ConfigRoutesController {
|
|
|
3280
3298
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3281
3299
|
} | undefined;
|
|
3282
3300
|
};
|
|
3283
|
-
},
|
|
3301
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3284
3302
|
ok: boolean;
|
|
3285
3303
|
error: {
|
|
3286
3304
|
code: string;
|
|
@@ -3289,7 +3307,7 @@ declare class ConfigRoutesController {
|
|
|
3289
3307
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3290
3308
|
} | undefined;
|
|
3291
3309
|
};
|
|
3292
|
-
},
|
|
3310
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3293
3311
|
ok: boolean;
|
|
3294
3312
|
data: {
|
|
3295
3313
|
channel: string;
|
|
@@ -3311,7 +3329,7 @@ declare class ConfigRoutesController {
|
|
|
3311
3329
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3312
3330
|
} | undefined;
|
|
3313
3331
|
};
|
|
3314
|
-
},
|
|
3332
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3315
3333
|
ok: boolean;
|
|
3316
3334
|
error: {
|
|
3317
3335
|
code: string;
|
|
@@ -3320,7 +3338,7 @@ declare class ConfigRoutesController {
|
|
|
3320
3338
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3321
3339
|
} | undefined;
|
|
3322
3340
|
};
|
|
3323
|
-
},
|
|
3341
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3324
3342
|
ok: boolean;
|
|
3325
3343
|
data: {
|
|
3326
3344
|
channel: string;
|
|
@@ -3340,7 +3358,7 @@ declare class ConfigRoutesController {
|
|
|
3340
3358
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3341
3359
|
} | undefined;
|
|
3342
3360
|
};
|
|
3343
|
-
},
|
|
3361
|
+
}, 400, "json">) | (Response & _$hono.TypedResponse<{
|
|
3344
3362
|
ok: boolean;
|
|
3345
3363
|
error: {
|
|
3346
3364
|
code: string;
|
|
@@ -3349,7 +3367,7 @@ declare class ConfigRoutesController {
|
|
|
3349
3367
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3350
3368
|
} | undefined;
|
|
3351
3369
|
};
|
|
3352
|
-
},
|
|
3370
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
3353
3371
|
ok: boolean;
|
|
3354
3372
|
data: {
|
|
3355
3373
|
channel: string;
|
|
@@ -3615,7 +3633,7 @@ declare class AppPackagesRoutesController {
|
|
|
3615
3633
|
dataDirectory: string;
|
|
3616
3634
|
instanceId: string;
|
|
3617
3635
|
storage: {
|
|
3618
|
-
layout:
|
|
3636
|
+
layout: AppStorageLayout;
|
|
3619
3637
|
layoutVersion: 1;
|
|
3620
3638
|
instanceId: string;
|
|
3621
3639
|
instanceDirectory: string;
|
|
@@ -3626,8 +3644,8 @@ declare class AppPackagesRoutesController {
|
|
|
3626
3644
|
temporaryDirectory: string;
|
|
3627
3645
|
logsDirectory: string;
|
|
3628
3646
|
};
|
|
3629
|
-
runtimeProfile:
|
|
3630
|
-
isolation:
|
|
3647
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3648
|
+
isolation: AppRuntimeIsolation;
|
|
3631
3649
|
title?: string | undefined;
|
|
3632
3650
|
description?: string | undefined;
|
|
3633
3651
|
icon?: string | undefined;
|
|
@@ -3641,7 +3659,7 @@ declare class AppPackagesRoutesController {
|
|
|
3641
3659
|
dataDirectory: string;
|
|
3642
3660
|
instanceId: string;
|
|
3643
3661
|
storage: {
|
|
3644
|
-
layout:
|
|
3662
|
+
layout: AppStorageLayout;
|
|
3645
3663
|
layoutVersion: 1;
|
|
3646
3664
|
instanceId: string;
|
|
3647
3665
|
instanceDirectory: string;
|
|
@@ -3661,8 +3679,8 @@ declare class AppPackagesRoutesController {
|
|
|
3661
3679
|
logsBytes: number;
|
|
3662
3680
|
totalBytes: number;
|
|
3663
3681
|
} | undefined;
|
|
3664
|
-
runtimeProfile:
|
|
3665
|
-
isolation:
|
|
3682
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3683
|
+
isolation: AppRuntimeIsolation;
|
|
3666
3684
|
}[];
|
|
3667
3685
|
};
|
|
3668
3686
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
@@ -3693,15 +3711,6 @@ declare class AppPackagesRoutesController {
|
|
|
3693
3711
|
};
|
|
3694
3712
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
3695
3713
|
readonly startInstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3696
|
-
ok: boolean;
|
|
3697
|
-
error: {
|
|
3698
|
-
code: string;
|
|
3699
|
-
message: string;
|
|
3700
|
-
details: {
|
|
3701
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3702
|
-
} | undefined;
|
|
3703
|
-
};
|
|
3704
|
-
}, 400 | 404 | 409, "json">) | (Response & _$hono.TypedResponse<{
|
|
3705
3714
|
ok: boolean;
|
|
3706
3715
|
data: {
|
|
3707
3716
|
id: string;
|
|
@@ -3724,8 +3733,7 @@ declare class AppPackagesRoutesController {
|
|
|
3724
3733
|
dataRemoved?: boolean | undefined;
|
|
3725
3734
|
} | undefined;
|
|
3726
3735
|
};
|
|
3727
|
-
}, 202, "json">)
|
|
3728
|
-
readonly startUpdateOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3736
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
3729
3737
|
ok: boolean;
|
|
3730
3738
|
error: {
|
|
3731
3739
|
code: string;
|
|
@@ -3734,7 +3742,8 @@ declare class AppPackagesRoutesController {
|
|
|
3734
3742
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3735
3743
|
} | undefined;
|
|
3736
3744
|
};
|
|
3737
|
-
}, 400 | 404 | 409, "json">)
|
|
3745
|
+
}, 400 | 404 | 409, "json">)>;
|
|
3746
|
+
readonly startUpdateOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3738
3747
|
ok: boolean;
|
|
3739
3748
|
data: {
|
|
3740
3749
|
id: string;
|
|
@@ -3757,8 +3766,7 @@ declare class AppPackagesRoutesController {
|
|
|
3757
3766
|
dataRemoved?: boolean | undefined;
|
|
3758
3767
|
} | undefined;
|
|
3759
3768
|
};
|
|
3760
|
-
}, 202, "json">)
|
|
3761
|
-
readonly startRollbackOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3769
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
3762
3770
|
ok: boolean;
|
|
3763
3771
|
error: {
|
|
3764
3772
|
code: string;
|
|
@@ -3767,7 +3775,8 @@ declare class AppPackagesRoutesController {
|
|
|
3767
3775
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3768
3776
|
} | undefined;
|
|
3769
3777
|
};
|
|
3770
|
-
}, 400 | 404 | 409, "json">)
|
|
3778
|
+
}, 400 | 404 | 409, "json">)>;
|
|
3779
|
+
readonly startRollbackOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3771
3780
|
ok: boolean;
|
|
3772
3781
|
data: {
|
|
3773
3782
|
id: string;
|
|
@@ -3790,8 +3799,7 @@ declare class AppPackagesRoutesController {
|
|
|
3790
3799
|
dataRemoved?: boolean | undefined;
|
|
3791
3800
|
} | undefined;
|
|
3792
3801
|
};
|
|
3793
|
-
}, 202, "json">)
|
|
3794
|
-
readonly startUninstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3802
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
3795
3803
|
ok: boolean;
|
|
3796
3804
|
error: {
|
|
3797
3805
|
code: string;
|
|
@@ -3800,7 +3808,8 @@ declare class AppPackagesRoutesController {
|
|
|
3800
3808
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3801
3809
|
} | undefined;
|
|
3802
3810
|
};
|
|
3803
|
-
}, 400 | 404 | 409, "json">)
|
|
3811
|
+
}, 400 | 404 | 409, "json">)>;
|
|
3812
|
+
readonly startUninstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3804
3813
|
ok: boolean;
|
|
3805
3814
|
data: {
|
|
3806
3815
|
id: string;
|
|
@@ -3823,7 +3832,16 @@ declare class AppPackagesRoutesController {
|
|
|
3823
3832
|
dataRemoved?: boolean | undefined;
|
|
3824
3833
|
} | undefined;
|
|
3825
3834
|
};
|
|
3826
|
-
}, 202, "json">)
|
|
3835
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
3836
|
+
ok: boolean;
|
|
3837
|
+
error: {
|
|
3838
|
+
code: string;
|
|
3839
|
+
message: string;
|
|
3840
|
+
details: {
|
|
3841
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3842
|
+
} | undefined;
|
|
3843
|
+
};
|
|
3844
|
+
}, 400 | 404 | 409, "json">)>;
|
|
3827
3845
|
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3828
3846
|
ok: boolean;
|
|
3829
3847
|
error: {
|
|
@@ -3861,7 +3879,7 @@ declare class AppPackagesRoutesController {
|
|
|
3861
3879
|
dataDirectory: string;
|
|
3862
3880
|
instanceId: string;
|
|
3863
3881
|
storage: {
|
|
3864
|
-
layout:
|
|
3882
|
+
layout: AppStorageLayout;
|
|
3865
3883
|
layoutVersion: 1;
|
|
3866
3884
|
instanceId: string;
|
|
3867
3885
|
instanceDirectory: string;
|
|
@@ -3872,8 +3890,8 @@ declare class AppPackagesRoutesController {
|
|
|
3872
3890
|
temporaryDirectory: string;
|
|
3873
3891
|
logsDirectory: string;
|
|
3874
3892
|
};
|
|
3875
|
-
runtimeProfile:
|
|
3876
|
-
isolation:
|
|
3893
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3894
|
+
isolation: AppRuntimeIsolation;
|
|
3877
3895
|
title?: string | undefined;
|
|
3878
3896
|
description?: string | undefined;
|
|
3879
3897
|
icon?: string | undefined;
|
|
@@ -3887,7 +3905,7 @@ declare class AppPackagesRoutesController {
|
|
|
3887
3905
|
dataDirectory: string;
|
|
3888
3906
|
instanceId: string;
|
|
3889
3907
|
storage: {
|
|
3890
|
-
layout:
|
|
3908
|
+
layout: AppStorageLayout;
|
|
3891
3909
|
layoutVersion: 1;
|
|
3892
3910
|
instanceId: string;
|
|
3893
3911
|
instanceDirectory: string;
|
|
@@ -3907,8 +3925,8 @@ declare class AppPackagesRoutesController {
|
|
|
3907
3925
|
logsBytes: number;
|
|
3908
3926
|
totalBytes: number;
|
|
3909
3927
|
} | undefined;
|
|
3910
|
-
runtimeProfile:
|
|
3911
|
-
isolation:
|
|
3928
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3929
|
+
isolation: AppRuntimeIsolation;
|
|
3912
3930
|
};
|
|
3913
3931
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3914
3932
|
readonly install: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -3948,7 +3966,7 @@ declare class AppPackagesRoutesController {
|
|
|
3948
3966
|
dataDirectory: string;
|
|
3949
3967
|
instanceId: string;
|
|
3950
3968
|
storage: {
|
|
3951
|
-
layout:
|
|
3969
|
+
layout: AppStorageLayout;
|
|
3952
3970
|
layoutVersion: 1;
|
|
3953
3971
|
instanceId: string;
|
|
3954
3972
|
instanceDirectory: string;
|
|
@@ -3959,8 +3977,8 @@ declare class AppPackagesRoutesController {
|
|
|
3959
3977
|
temporaryDirectory: string;
|
|
3960
3978
|
logsDirectory: string;
|
|
3961
3979
|
};
|
|
3962
|
-
runtimeProfile:
|
|
3963
|
-
isolation:
|
|
3980
|
+
runtimeProfile: AppRuntimeProfile;
|
|
3981
|
+
isolation: AppRuntimeIsolation;
|
|
3964
3982
|
title?: string | undefined;
|
|
3965
3983
|
description?: string | undefined;
|
|
3966
3984
|
icon?: string | undefined;
|
|
@@ -3974,7 +3992,7 @@ declare class AppPackagesRoutesController {
|
|
|
3974
3992
|
dataDirectory: string;
|
|
3975
3993
|
instanceId: string;
|
|
3976
3994
|
storage: {
|
|
3977
|
-
layout:
|
|
3995
|
+
layout: AppStorageLayout;
|
|
3978
3996
|
layoutVersion: 1;
|
|
3979
3997
|
instanceId: string;
|
|
3980
3998
|
instanceDirectory: string;
|
|
@@ -3994,8 +4012,8 @@ declare class AppPackagesRoutesController {
|
|
|
3994
4012
|
logsBytes: number;
|
|
3995
4013
|
totalBytes: number;
|
|
3996
4014
|
} | undefined;
|
|
3997
|
-
runtimeProfile:
|
|
3998
|
-
isolation:
|
|
4015
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4016
|
+
isolation: AppRuntimeIsolation;
|
|
3999
4017
|
};
|
|
4000
4018
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4001
4019
|
readonly enable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4035,7 +4053,7 @@ declare class AppPackagesRoutesController {
|
|
|
4035
4053
|
dataDirectory: string;
|
|
4036
4054
|
instanceId: string;
|
|
4037
4055
|
storage: {
|
|
4038
|
-
layout:
|
|
4056
|
+
layout: AppStorageLayout;
|
|
4039
4057
|
layoutVersion: 1;
|
|
4040
4058
|
instanceId: string;
|
|
4041
4059
|
instanceDirectory: string;
|
|
@@ -4046,8 +4064,8 @@ declare class AppPackagesRoutesController {
|
|
|
4046
4064
|
temporaryDirectory: string;
|
|
4047
4065
|
logsDirectory: string;
|
|
4048
4066
|
};
|
|
4049
|
-
runtimeProfile:
|
|
4050
|
-
isolation:
|
|
4067
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4068
|
+
isolation: AppRuntimeIsolation;
|
|
4051
4069
|
title?: string | undefined;
|
|
4052
4070
|
description?: string | undefined;
|
|
4053
4071
|
icon?: string | undefined;
|
|
@@ -4061,7 +4079,7 @@ declare class AppPackagesRoutesController {
|
|
|
4061
4079
|
dataDirectory: string;
|
|
4062
4080
|
instanceId: string;
|
|
4063
4081
|
storage: {
|
|
4064
|
-
layout:
|
|
4082
|
+
layout: AppStorageLayout;
|
|
4065
4083
|
layoutVersion: 1;
|
|
4066
4084
|
instanceId: string;
|
|
4067
4085
|
instanceDirectory: string;
|
|
@@ -4081,8 +4099,8 @@ declare class AppPackagesRoutesController {
|
|
|
4081
4099
|
logsBytes: number;
|
|
4082
4100
|
totalBytes: number;
|
|
4083
4101
|
} | undefined;
|
|
4084
|
-
runtimeProfile:
|
|
4085
|
-
isolation:
|
|
4102
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4103
|
+
isolation: AppRuntimeIsolation;
|
|
4086
4104
|
};
|
|
4087
4105
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4088
4106
|
readonly disable: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4122,7 +4140,7 @@ declare class AppPackagesRoutesController {
|
|
|
4122
4140
|
dataDirectory: string;
|
|
4123
4141
|
instanceId: string;
|
|
4124
4142
|
storage: {
|
|
4125
|
-
layout:
|
|
4143
|
+
layout: AppStorageLayout;
|
|
4126
4144
|
layoutVersion: 1;
|
|
4127
4145
|
instanceId: string;
|
|
4128
4146
|
instanceDirectory: string;
|
|
@@ -4133,8 +4151,8 @@ declare class AppPackagesRoutesController {
|
|
|
4133
4151
|
temporaryDirectory: string;
|
|
4134
4152
|
logsDirectory: string;
|
|
4135
4153
|
};
|
|
4136
|
-
runtimeProfile:
|
|
4137
|
-
isolation:
|
|
4154
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4155
|
+
isolation: AppRuntimeIsolation;
|
|
4138
4156
|
title?: string | undefined;
|
|
4139
4157
|
description?: string | undefined;
|
|
4140
4158
|
icon?: string | undefined;
|
|
@@ -4148,7 +4166,7 @@ declare class AppPackagesRoutesController {
|
|
|
4148
4166
|
dataDirectory: string;
|
|
4149
4167
|
instanceId: string;
|
|
4150
4168
|
storage: {
|
|
4151
|
-
layout:
|
|
4169
|
+
layout: AppStorageLayout;
|
|
4152
4170
|
layoutVersion: 1;
|
|
4153
4171
|
instanceId: string;
|
|
4154
4172
|
instanceDirectory: string;
|
|
@@ -4168,8 +4186,8 @@ declare class AppPackagesRoutesController {
|
|
|
4168
4186
|
logsBytes: number;
|
|
4169
4187
|
totalBytes: number;
|
|
4170
4188
|
} | undefined;
|
|
4171
|
-
runtimeProfile:
|
|
4172
|
-
isolation:
|
|
4189
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4190
|
+
isolation: AppRuntimeIsolation;
|
|
4173
4191
|
};
|
|
4174
4192
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4175
4193
|
readonly update: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
@@ -4210,7 +4228,7 @@ declare class AppPackagesRoutesController {
|
|
|
4210
4228
|
dataDirectory: string;
|
|
4211
4229
|
instanceId: string;
|
|
4212
4230
|
storage: {
|
|
4213
|
-
layout:
|
|
4231
|
+
layout: AppStorageLayout;
|
|
4214
4232
|
layoutVersion: 1;
|
|
4215
4233
|
instanceId: string;
|
|
4216
4234
|
instanceDirectory: string;
|
|
@@ -4221,8 +4239,8 @@ declare class AppPackagesRoutesController {
|
|
|
4221
4239
|
temporaryDirectory: string;
|
|
4222
4240
|
logsDirectory: string;
|
|
4223
4241
|
};
|
|
4224
|
-
runtimeProfile:
|
|
4225
|
-
isolation:
|
|
4242
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4243
|
+
isolation: AppRuntimeIsolation;
|
|
4226
4244
|
title?: string | undefined;
|
|
4227
4245
|
description?: string | undefined;
|
|
4228
4246
|
icon?: string | undefined;
|
|
@@ -4236,7 +4254,7 @@ declare class AppPackagesRoutesController {
|
|
|
4236
4254
|
dataDirectory: string;
|
|
4237
4255
|
instanceId: string;
|
|
4238
4256
|
storage: {
|
|
4239
|
-
layout:
|
|
4257
|
+
layout: AppStorageLayout;
|
|
4240
4258
|
layoutVersion: 1;
|
|
4241
4259
|
instanceId: string;
|
|
4242
4260
|
instanceDirectory: string;
|
|
@@ -4256,8 +4274,8 @@ declare class AppPackagesRoutesController {
|
|
|
4256
4274
|
logsBytes: number;
|
|
4257
4275
|
totalBytes: number;
|
|
4258
4276
|
} | undefined;
|
|
4259
|
-
runtimeProfile:
|
|
4260
|
-
isolation:
|
|
4277
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4278
|
+
isolation: AppRuntimeIsolation;
|
|
4261
4279
|
};
|
|
4262
4280
|
result: {
|
|
4263
4281
|
appId: string;
|
|
@@ -4269,7 +4287,7 @@ declare class AppPackagesRoutesController {
|
|
|
4269
4287
|
id: string;
|
|
4270
4288
|
publisherId?: string | undefined;
|
|
4271
4289
|
storage: {
|
|
4272
|
-
layout:
|
|
4290
|
+
layout: AppStorageLayout;
|
|
4273
4291
|
layoutVersion: 1;
|
|
4274
4292
|
instanceId: string;
|
|
4275
4293
|
instanceDirectory: string;
|
|
@@ -4285,13 +4303,13 @@ declare class AppPackagesRoutesController {
|
|
|
4285
4303
|
migratedAt?: string | undefined;
|
|
4286
4304
|
legacyDataDirectory?: string | undefined;
|
|
4287
4305
|
};
|
|
4288
|
-
sourceKind:
|
|
4289
|
-
distributionMode?:
|
|
4306
|
+
sourceKind: AppInstallSourceKind;
|
|
4307
|
+
distributionMode?: AppDistributionMode | undefined;
|
|
4290
4308
|
sourceRef: string;
|
|
4291
4309
|
permissions: {
|
|
4292
4310
|
documentAccess?: {
|
|
4293
4311
|
id: string;
|
|
4294
|
-
mode:
|
|
4312
|
+
mode: AppDocumentAccessMode;
|
|
4295
4313
|
description?: string | undefined;
|
|
4296
4314
|
}[] | undefined;
|
|
4297
4315
|
allowedDomains?: string[] | undefined;
|
|
@@ -4314,7 +4332,7 @@ declare class AppPackagesRoutesController {
|
|
|
4314
4332
|
enabled: boolean;
|
|
4315
4333
|
manifestSchemaVersion: 1 | 2;
|
|
4316
4334
|
components?: {
|
|
4317
|
-
kind:
|
|
4335
|
+
kind: AppComponentKind;
|
|
4318
4336
|
path: string;
|
|
4319
4337
|
id: string;
|
|
4320
4338
|
componentDirectory: string;
|
|
@@ -4364,7 +4382,7 @@ declare class AppPackagesRoutesController {
|
|
|
4364
4382
|
dataDirectory: string;
|
|
4365
4383
|
instanceId: string;
|
|
4366
4384
|
storage: {
|
|
4367
|
-
layout:
|
|
4385
|
+
layout: AppStorageLayout;
|
|
4368
4386
|
layoutVersion: 1;
|
|
4369
4387
|
instanceId: string;
|
|
4370
4388
|
instanceDirectory: string;
|
|
@@ -4375,8 +4393,8 @@ declare class AppPackagesRoutesController {
|
|
|
4375
4393
|
temporaryDirectory: string;
|
|
4376
4394
|
logsDirectory: string;
|
|
4377
4395
|
};
|
|
4378
|
-
runtimeProfile:
|
|
4379
|
-
isolation:
|
|
4396
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4397
|
+
isolation: AppRuntimeIsolation;
|
|
4380
4398
|
title?: string | undefined;
|
|
4381
4399
|
description?: string | undefined;
|
|
4382
4400
|
icon?: string | undefined;
|
|
@@ -4390,7 +4408,7 @@ declare class AppPackagesRoutesController {
|
|
|
4390
4408
|
dataDirectory: string;
|
|
4391
4409
|
instanceId: string;
|
|
4392
4410
|
storage: {
|
|
4393
|
-
layout:
|
|
4411
|
+
layout: AppStorageLayout;
|
|
4394
4412
|
layoutVersion: 1;
|
|
4395
4413
|
instanceId: string;
|
|
4396
4414
|
instanceDirectory: string;
|
|
@@ -4410,8 +4428,8 @@ declare class AppPackagesRoutesController {
|
|
|
4410
4428
|
logsBytes: number;
|
|
4411
4429
|
totalBytes: number;
|
|
4412
4430
|
} | undefined;
|
|
4413
|
-
runtimeProfile:
|
|
4414
|
-
isolation:
|
|
4431
|
+
runtimeProfile: AppRuntimeProfile;
|
|
4432
|
+
isolation: AppRuntimeIsolation;
|
|
4415
4433
|
};
|
|
4416
4434
|
result: {
|
|
4417
4435
|
appId: string;
|
|
@@ -4458,7 +4476,7 @@ declare class AppDataRoutesController {
|
|
|
4458
4476
|
source: _$_nextclaw_kernel0.AppDataSource;
|
|
4459
4477
|
lifecycle: _$_nextclaw_kernel0.AppDataLifecycle;
|
|
4460
4478
|
storage: {
|
|
4461
|
-
layout:
|
|
4479
|
+
layout: AppStorageLayout;
|
|
4462
4480
|
layoutVersion: 1;
|
|
4463
4481
|
instanceId: string;
|
|
4464
4482
|
instanceDirectory: string;
|
|
@@ -4492,14 +4510,6 @@ declare class AppDataRoutesController {
|
|
|
4492
4510
|
};
|
|
4493
4511
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
4494
4512
|
readonly deleteRetained: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
4495
|
-
ok: boolean;
|
|
4496
|
-
data: {
|
|
4497
|
-
deleted: true;
|
|
4498
|
-
id: string;
|
|
4499
|
-
appId: string;
|
|
4500
|
-
instanceId: string;
|
|
4501
|
-
};
|
|
4502
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
4503
4513
|
ok: boolean;
|
|
4504
4514
|
error: {
|
|
4505
4515
|
code: string;
|
|
@@ -4508,7 +4518,15 @@ declare class AppDataRoutesController {
|
|
|
4508
4518
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4509
4519
|
} | undefined;
|
|
4510
4520
|
};
|
|
4511
|
-
}, 400 | 404 | 409, "json">)
|
|
4521
|
+
}, 400 | 404 | 409, "json">) | (Response & _$hono.TypedResponse<{
|
|
4522
|
+
ok: boolean;
|
|
4523
|
+
data: {
|
|
4524
|
+
deleted: true;
|
|
4525
|
+
id: string;
|
|
4526
|
+
appId: string;
|
|
4527
|
+
instanceId: string;
|
|
4528
|
+
};
|
|
4529
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4512
4530
|
}
|
|
4513
4531
|
//#endregion
|
|
4514
4532
|
//#region src/features/inbox-deliveries/controllers/inbox-deliveries.controller.d.ts
|
|
@@ -4543,6 +4561,15 @@ declare class InboxDeliveriesRoutesController {
|
|
|
4543
4561
|
};
|
|
4544
4562
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
4545
4563
|
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
4564
|
+
ok: boolean;
|
|
4565
|
+
error: {
|
|
4566
|
+
code: string;
|
|
4567
|
+
message: string;
|
|
4568
|
+
details: {
|
|
4569
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4570
|
+
} | undefined;
|
|
4571
|
+
};
|
|
4572
|
+
}, 404, "json">) | (Response & _$hono.TypedResponse<{
|
|
4546
4573
|
ok: boolean;
|
|
4547
4574
|
data: {
|
|
4548
4575
|
id: string;
|
|
@@ -4563,16 +4590,7 @@ declare class InboxDeliveriesRoutesController {
|
|
|
4563
4590
|
readAt: string | null;
|
|
4564
4591
|
archivedAt: string | null;
|
|
4565
4592
|
};
|
|
4566
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)
|
|
4567
|
-
ok: boolean;
|
|
4568
|
-
error: {
|
|
4569
|
-
code: string;
|
|
4570
|
-
message: string;
|
|
4571
|
-
details: {
|
|
4572
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
4573
|
-
} | undefined;
|
|
4574
|
-
};
|
|
4575
|
-
}, 404, "json">)>;
|
|
4593
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
4576
4594
|
readonly updateState: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
4577
4595
|
ok: boolean;
|
|
4578
4596
|
data: _$hono_utils_types0.JSONValue;
|
|
@@ -4605,5 +4623,5 @@ declare class InboxDeliveriesRoutesController {
|
|
|
4605
4623
|
private handleManagerAction;
|
|
4606
4624
|
}
|
|
4607
4625
|
//#endregion
|
|
4608
|
-
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, 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 };
|
|
4626
|
+
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 };
|
|
4609
4627
|
//# sourceMappingURL=index.d.ts.map
|