@nextclaw/server 0.22.1 → 0.22.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +154 -119
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +54 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _$hono from "hono";
|
|
2
2
|
import { Context, Hono } from "hono";
|
|
3
3
|
import * as _$_nextclaw_kernel0 from "@nextclaw/kernel";
|
|
4
|
-
import { AccessManager, AppDataDeleteResult, AppDataEntry, AppDataList, AppDataManager, AppDocumentGrantMutationResult, AppInstalledPermissionState, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, CreateProjectWorkItemInput, CreateProjectWorkStateInput, InboxDeliveryManager, NextclawKernel, ObservationRelationshipStatus, ObservedRequest, ObservedWorkItem, ObservedWorkflow, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptanceStatusView, PreferenceJsonValue, PreferenceManager, ProjectObservationSnapshot, ProjectRecord, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkItemDetail,
|
|
4
|
+
import { AccessManager, AppDataDeleteResult, AppDataEntry, AppDataList, AppDataManager, AppDocumentGrantMutationResult, AppInstalledPermissionState, AppPackageHostTarget, AppPackageList, AppPackageManager, AppPackageOperationInput, AppPackageOperationList, AppPackageOperationStatus, AppPackageOperationView, AppPackageView, CreateProjectWorkItemInput, CreateProjectWorkStateInput, InboxDeliveryManager, NextclawKernel, ObservationRelationshipStatus, ObservedRequest, ObservedWorkItem, ObservedWorkflow, PanelAppAgentCapability, PanelAppAgentGenerateObjectRequest, PanelAppAgentGenerateObjectResult, PanelAppAgentSendRequest, PanelAppAgentSendResult, PanelAppBridgeSession, PanelAppCapabilityGrant, PanelAppClientGrant, PanelAppEntry, PanelAppList, PanelAppManager, PanelAppPreferencesUpdate, PortableRuntimeAcceptanceContractView, PortableRuntimeAcceptanceManager, PortableRuntimeAcceptanceStatusView, PreferenceJsonValue, PreferenceManager, ProjectObservationSnapshot, ProjectRecentArtifact, ProjectRecentArtifactPage, ProjectRecord, ProjectTemplate, ProjectTemplateId, ProjectWorkActivity, ProjectWorkActivityPage, ProjectWorkArtifactLink, ProjectWorkAttention, ProjectWorkItemDetail, ProjectWorkItemListEntry, ProjectWorkItemPage, ProjectWorkListInput, ProjectWorkState, ProjectWorkStateCategory, ProjectWorkSummary, ServiceAction, ServiceActionGrant, ServiceActionInvokeResult, ServiceAppDeleteResult, ServiceAppJobList, ServiceAppJobView, ServiceAppJobWatch, ServiceAppList, ServiceAppManager, ServiceAppRecord, SessionTokenUsageSummary, UpdateProjectWorkItemInput, UpdateProjectWorkStateInput, VerificationRecordList } from "@nextclaw/kernel";
|
|
5
5
|
import { FSWatcher } from "node:fs";
|
|
6
6
|
import * as NextclawCore from "@nextclaw/core";
|
|
7
7
|
import { Config, ConfigActionExecuteRequest as ConfigActionExecuteRequest$1, ConfigActionExecuteResult as ConfigActionExecuteResult$1, ExtensionChannelBinding, ExtensionUiMetadata, McpServerDefinition, ModelThinkingCapability, ThinkingLevel } from "@nextclaw/core";
|
|
@@ -502,6 +502,41 @@ declare class PanelAppsRoutesController {
|
|
|
502
502
|
}[];
|
|
503
503
|
};
|
|
504
504
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
505
|
+
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
506
|
+
ok: boolean;
|
|
507
|
+
data: {
|
|
508
|
+
id: string;
|
|
509
|
+
appId: string;
|
|
510
|
+
fileName: string;
|
|
511
|
+
kind: "single-file" | "folder";
|
|
512
|
+
title: string;
|
|
513
|
+
description?: string | undefined;
|
|
514
|
+
icon?: string | undefined;
|
|
515
|
+
contentPath: string;
|
|
516
|
+
createdAt: string;
|
|
517
|
+
updatedAt: string;
|
|
518
|
+
sizeBytes: number;
|
|
519
|
+
favorite: boolean;
|
|
520
|
+
mainSidebar: boolean;
|
|
521
|
+
mainSidebarOrder?: number | undefined;
|
|
522
|
+
clientDeclared: boolean;
|
|
523
|
+
clientGranted: boolean;
|
|
524
|
+
lastOpenedAt?: string | undefined;
|
|
525
|
+
openCount: number;
|
|
526
|
+
sourceKind: "workspace" | "package";
|
|
527
|
+
packageId?: string | undefined;
|
|
528
|
+
packageVersion?: string | undefined;
|
|
529
|
+
};
|
|
530
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
531
|
+
ok: boolean;
|
|
532
|
+
error: {
|
|
533
|
+
code: string;
|
|
534
|
+
message: string;
|
|
535
|
+
details: {
|
|
536
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
537
|
+
} | undefined;
|
|
538
|
+
};
|
|
539
|
+
}, 400 | 401 | 403 | 404 | 408, "json">)>;
|
|
505
540
|
readonly updatePanelAppPreferences: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
506
541
|
ok: boolean;
|
|
507
542
|
data: {
|
|
@@ -908,15 +943,6 @@ declare class ServiceAppsRoutesController {
|
|
|
908
943
|
};
|
|
909
944
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
910
945
|
readonly getServiceApp: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
911
|
-
ok: boolean;
|
|
912
|
-
error: {
|
|
913
|
-
code: string;
|
|
914
|
-
message: string;
|
|
915
|
-
details: {
|
|
916
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
917
|
-
} | undefined;
|
|
918
|
-
};
|
|
919
|
-
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
920
946
|
ok: boolean;
|
|
921
947
|
data: {
|
|
922
948
|
id: string;
|
|
@@ -995,8 +1021,7 @@ declare class ServiceAppsRoutesController {
|
|
|
995
1021
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
996
1022
|
} | undefined;
|
|
997
1023
|
};
|
|
998
|
-
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">)
|
|
999
|
-
readonly inspectServiceAppAiCapabilities: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
1024
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1000
1025
|
ok: boolean;
|
|
1001
1026
|
error: {
|
|
1002
1027
|
code: string;
|
|
@@ -1005,7 +1030,8 @@ declare class ServiceAppsRoutesController {
|
|
|
1005
1030
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1006
1031
|
} | undefined;
|
|
1007
1032
|
};
|
|
1008
|
-
}, 500, "json">)
|
|
1033
|
+
}, 500, "json">)>;
|
|
1034
|
+
readonly inspectServiceAppAiCapabilities: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
1009
1035
|
ok: boolean;
|
|
1010
1036
|
error: {
|
|
1011
1037
|
code: string;
|
|
@@ -1015,6 +1041,15 @@ declare class ServiceAppsRoutesController {
|
|
|
1015
1041
|
} | undefined;
|
|
1016
1042
|
};
|
|
1017
1043
|
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1044
|
+
ok: boolean;
|
|
1045
|
+
error: {
|
|
1046
|
+
code: string;
|
|
1047
|
+
message: string;
|
|
1048
|
+
details: {
|
|
1049
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1050
|
+
} | undefined;
|
|
1051
|
+
};
|
|
1052
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1018
1053
|
ok: boolean;
|
|
1019
1054
|
data: {
|
|
1020
1055
|
ready: boolean;
|
|
@@ -1039,7 +1074,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1039
1074
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1040
1075
|
} | undefined;
|
|
1041
1076
|
};
|
|
1042
|
-
},
|
|
1077
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1043
1078
|
ok: boolean;
|
|
1044
1079
|
error: {
|
|
1045
1080
|
code: string;
|
|
@@ -1048,7 +1083,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1048
1083
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1049
1084
|
} | undefined;
|
|
1050
1085
|
};
|
|
1051
|
-
},
|
|
1086
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1052
1087
|
ok: boolean;
|
|
1053
1088
|
data: {
|
|
1054
1089
|
ready: boolean;
|
|
@@ -1073,7 +1108,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1073
1108
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1074
1109
|
} | undefined;
|
|
1075
1110
|
};
|
|
1076
|
-
},
|
|
1111
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1077
1112
|
ok: boolean;
|
|
1078
1113
|
error: {
|
|
1079
1114
|
code: string;
|
|
@@ -1082,7 +1117,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1082
1117
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1083
1118
|
} | undefined;
|
|
1084
1119
|
};
|
|
1085
|
-
},
|
|
1120
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1086
1121
|
ok: boolean;
|
|
1087
1122
|
data: {
|
|
1088
1123
|
ready: boolean;
|
|
@@ -1107,7 +1142,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1107
1142
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1108
1143
|
} | undefined;
|
|
1109
1144
|
};
|
|
1110
|
-
},
|
|
1145
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1111
1146
|
ok: boolean;
|
|
1112
1147
|
error: {
|
|
1113
1148
|
code: string;
|
|
@@ -1116,7 +1151,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1116
1151
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1117
1152
|
} | undefined;
|
|
1118
1153
|
};
|
|
1119
|
-
},
|
|
1154
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1120
1155
|
ok: boolean;
|
|
1121
1156
|
data: {
|
|
1122
1157
|
ready: boolean;
|
|
@@ -1141,7 +1176,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1141
1176
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1142
1177
|
} | undefined;
|
|
1143
1178
|
};
|
|
1144
|
-
},
|
|
1179
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1145
1180
|
ok: boolean;
|
|
1146
1181
|
error: {
|
|
1147
1182
|
code: string;
|
|
@@ -1150,7 +1185,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1150
1185
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1151
1186
|
} | undefined;
|
|
1152
1187
|
};
|
|
1153
|
-
},
|
|
1188
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1154
1189
|
ok: boolean;
|
|
1155
1190
|
data: {
|
|
1156
1191
|
actions: {
|
|
@@ -1177,7 +1212,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1177
1212
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1178
1213
|
} | undefined;
|
|
1179
1214
|
};
|
|
1180
|
-
},
|
|
1215
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1181
1216
|
ok: boolean;
|
|
1182
1217
|
error: {
|
|
1183
1218
|
code: string;
|
|
@@ -1186,7 +1221,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1186
1221
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1187
1222
|
} | undefined;
|
|
1188
1223
|
};
|
|
1189
|
-
},
|
|
1224
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1190
1225
|
ok: boolean;
|
|
1191
1226
|
data: {
|
|
1192
1227
|
actions: {
|
|
@@ -1213,7 +1248,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1213
1248
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1214
1249
|
} | undefined;
|
|
1215
1250
|
};
|
|
1216
|
-
},
|
|
1251
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1217
1252
|
ok: boolean;
|
|
1218
1253
|
error: {
|
|
1219
1254
|
code: string;
|
|
@@ -1222,7 +1257,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1222
1257
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1223
1258
|
} | undefined;
|
|
1224
1259
|
};
|
|
1225
|
-
},
|
|
1260
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1226
1261
|
ok: boolean;
|
|
1227
1262
|
data: {
|
|
1228
1263
|
actionId: string;
|
|
@@ -1244,7 +1279,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1244
1279
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1245
1280
|
} | undefined;
|
|
1246
1281
|
};
|
|
1247
|
-
},
|
|
1282
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1248
1283
|
ok: boolean;
|
|
1249
1284
|
error: {
|
|
1250
1285
|
code: string;
|
|
@@ -1253,7 +1288,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1253
1288
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1254
1289
|
} | undefined;
|
|
1255
1290
|
};
|
|
1256
|
-
},
|
|
1291
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1257
1292
|
ok: boolean;
|
|
1258
1293
|
data: {
|
|
1259
1294
|
actionId: string;
|
|
@@ -1281,7 +1316,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1281
1316
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1282
1317
|
} | undefined;
|
|
1283
1318
|
};
|
|
1284
|
-
},
|
|
1319
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1285
1320
|
ok: boolean;
|
|
1286
1321
|
error: {
|
|
1287
1322
|
code: string;
|
|
@@ -1290,7 +1325,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1290
1325
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1291
1326
|
} | undefined;
|
|
1292
1327
|
};
|
|
1293
|
-
},
|
|
1328
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1294
1329
|
ok: boolean;
|
|
1295
1330
|
data: {
|
|
1296
1331
|
actionId: string;
|
|
@@ -1312,7 +1347,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1312
1347
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1313
1348
|
} | undefined;
|
|
1314
1349
|
};
|
|
1315
|
-
},
|
|
1350
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1316
1351
|
ok: boolean;
|
|
1317
1352
|
error: {
|
|
1318
1353
|
code: string;
|
|
@@ -1321,7 +1356,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1321
1356
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1322
1357
|
} | undefined;
|
|
1323
1358
|
};
|
|
1324
|
-
},
|
|
1359
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1325
1360
|
ok: boolean;
|
|
1326
1361
|
data: {
|
|
1327
1362
|
entries: ({
|
|
@@ -1364,16 +1399,15 @@ declare class ServiceAppsRoutesController {
|
|
|
1364
1399
|
recovery?: string | undefined;
|
|
1365
1400
|
evidenceRefs: string[];
|
|
1366
1401
|
} | {
|
|
1402
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1367
1403
|
appId: string;
|
|
1368
|
-
instanceId?: string | undefined;
|
|
1369
1404
|
error?: {
|
|
1370
1405
|
code?: string | undefined;
|
|
1371
1406
|
message: string;
|
|
1372
1407
|
} | undefined;
|
|
1373
|
-
|
|
1408
|
+
instanceId?: string | undefined;
|
|
1374
1409
|
componentId: string;
|
|
1375
1410
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
1376
|
-
environment: string;
|
|
1377
1411
|
callId: string;
|
|
1378
1412
|
traceId: string;
|
|
1379
1413
|
dataVersion: string;
|
|
@@ -1382,6 +1416,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1382
1416
|
scenarioVersion: string;
|
|
1383
1417
|
startedAt: string;
|
|
1384
1418
|
finishedAt: string;
|
|
1419
|
+
environment: string;
|
|
1385
1420
|
entrySurface: _$_nextclaw_kernel0.VerificationRecordEntrySurface;
|
|
1386
1421
|
actionOrEvent: string;
|
|
1387
1422
|
capabilityDecisions: string[];
|
|
@@ -1411,7 +1446,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1411
1446
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1412
1447
|
} | undefined;
|
|
1413
1448
|
};
|
|
1414
|
-
},
|
|
1449
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1415
1450
|
ok: boolean;
|
|
1416
1451
|
error: {
|
|
1417
1452
|
code: string;
|
|
@@ -1420,7 +1455,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1420
1455
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1421
1456
|
} | undefined;
|
|
1422
1457
|
};
|
|
1423
|
-
},
|
|
1458
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1424
1459
|
ok: boolean;
|
|
1425
1460
|
data: {
|
|
1426
1461
|
contractFingerprint: string;
|
|
@@ -1451,7 +1486,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1451
1486
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1452
1487
|
} | undefined;
|
|
1453
1488
|
};
|
|
1454
|
-
},
|
|
1489
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1455
1490
|
ok: boolean;
|
|
1456
1491
|
error: {
|
|
1457
1492
|
code: string;
|
|
@@ -1460,7 +1495,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1460
1495
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1461
1496
|
} | undefined;
|
|
1462
1497
|
};
|
|
1463
|
-
},
|
|
1498
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1464
1499
|
ok: boolean;
|
|
1465
1500
|
data: {
|
|
1466
1501
|
schemaVersion: 1;
|
|
@@ -1562,16 +1597,15 @@ declare class ServiceAppsRoutesController {
|
|
|
1562
1597
|
recovery?: string | undefined;
|
|
1563
1598
|
evidenceRefs: string[];
|
|
1564
1599
|
} | {
|
|
1600
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1565
1601
|
appId: string;
|
|
1566
|
-
instanceId?: string | undefined;
|
|
1567
1602
|
error?: {
|
|
1568
1603
|
code?: string | undefined;
|
|
1569
1604
|
message: string;
|
|
1570
1605
|
} | undefined;
|
|
1571
|
-
|
|
1606
|
+
instanceId?: string | undefined;
|
|
1572
1607
|
componentId: string;
|
|
1573
1608
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
1574
|
-
environment: string;
|
|
1575
1609
|
callId: string;
|
|
1576
1610
|
traceId: string;
|
|
1577
1611
|
dataVersion: string;
|
|
@@ -1580,6 +1614,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1580
1614
|
scenarioVersion: string;
|
|
1581
1615
|
startedAt: string;
|
|
1582
1616
|
finishedAt: string;
|
|
1617
|
+
environment: string;
|
|
1583
1618
|
entrySurface: _$_nextclaw_kernel0.VerificationRecordEntrySurface;
|
|
1584
1619
|
actionOrEvent: string;
|
|
1585
1620
|
capabilityDecisions: string[];
|
|
@@ -1618,7 +1653,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1618
1653
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1619
1654
|
} | undefined;
|
|
1620
1655
|
};
|
|
1621
|
-
},
|
|
1656
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1622
1657
|
ok: boolean;
|
|
1623
1658
|
error: {
|
|
1624
1659
|
code: string;
|
|
@@ -1627,7 +1662,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1627
1662
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1628
1663
|
} | undefined;
|
|
1629
1664
|
};
|
|
1630
|
-
},
|
|
1665
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1631
1666
|
ok: boolean;
|
|
1632
1667
|
data: {
|
|
1633
1668
|
schemaVersion: 1;
|
|
@@ -1729,16 +1764,15 @@ declare class ServiceAppsRoutesController {
|
|
|
1729
1764
|
recovery?: string | undefined;
|
|
1730
1765
|
evidenceRefs: string[];
|
|
1731
1766
|
} | {
|
|
1767
|
+
status: _$_nextclaw_kernel0.VerificationRecordStatus;
|
|
1732
1768
|
appId: string;
|
|
1733
|
-
instanceId?: string | undefined;
|
|
1734
1769
|
error?: {
|
|
1735
1770
|
code?: string | undefined;
|
|
1736
1771
|
message: string;
|
|
1737
1772
|
} | undefined;
|
|
1738
|
-
|
|
1773
|
+
instanceId?: string | undefined;
|
|
1739
1774
|
componentId: string;
|
|
1740
1775
|
role: _$_nextclaw_kernel0.VerificationRecordRole;
|
|
1741
|
-
environment: string;
|
|
1742
1776
|
callId: string;
|
|
1743
1777
|
traceId: string;
|
|
1744
1778
|
dataVersion: string;
|
|
@@ -1747,6 +1781,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1747
1781
|
scenarioVersion: string;
|
|
1748
1782
|
startedAt: string;
|
|
1749
1783
|
finishedAt: string;
|
|
1784
|
+
environment: string;
|
|
1750
1785
|
entrySurface: _$_nextclaw_kernel0.VerificationRecordEntrySurface;
|
|
1751
1786
|
actionOrEvent: string;
|
|
1752
1787
|
capabilityDecisions: string[];
|
|
@@ -1785,7 +1820,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1785
1820
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1786
1821
|
} | undefined;
|
|
1787
1822
|
};
|
|
1788
|
-
},
|
|
1823
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1789
1824
|
ok: boolean;
|
|
1790
1825
|
error: {
|
|
1791
1826
|
code: string;
|
|
@@ -1794,7 +1829,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1794
1829
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1795
1830
|
} | undefined;
|
|
1796
1831
|
};
|
|
1797
|
-
},
|
|
1832
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1798
1833
|
ok: boolean;
|
|
1799
1834
|
data: {
|
|
1800
1835
|
entries: {
|
|
@@ -1832,7 +1867,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1832
1867
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1833
1868
|
} | undefined;
|
|
1834
1869
|
};
|
|
1835
|
-
},
|
|
1870
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1836
1871
|
ok: boolean;
|
|
1837
1872
|
error: {
|
|
1838
1873
|
code: string;
|
|
@@ -1841,7 +1876,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1841
1876
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1842
1877
|
} | undefined;
|
|
1843
1878
|
};
|
|
1844
|
-
},
|
|
1879
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1845
1880
|
ok: boolean;
|
|
1846
1881
|
data: {
|
|
1847
1882
|
id: string;
|
|
@@ -1878,7 +1913,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1878
1913
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1879
1914
|
} | undefined;
|
|
1880
1915
|
};
|
|
1881
|
-
},
|
|
1916
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1882
1917
|
ok: boolean;
|
|
1883
1918
|
error: {
|
|
1884
1919
|
code: string;
|
|
@@ -1887,7 +1922,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1887
1922
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1888
1923
|
} | undefined;
|
|
1889
1924
|
};
|
|
1890
|
-
},
|
|
1925
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1891
1926
|
ok: boolean;
|
|
1892
1927
|
data: {
|
|
1893
1928
|
job: {
|
|
@@ -1948,7 +1983,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1948
1983
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1949
1984
|
} | undefined;
|
|
1950
1985
|
};
|
|
1951
|
-
},
|
|
1986
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1952
1987
|
ok: boolean;
|
|
1953
1988
|
error: {
|
|
1954
1989
|
code: string;
|
|
@@ -1957,7 +1992,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1957
1992
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1958
1993
|
} | undefined;
|
|
1959
1994
|
};
|
|
1960
|
-
},
|
|
1995
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
1961
1996
|
ok: boolean;
|
|
1962
1997
|
data: {
|
|
1963
1998
|
id: string;
|
|
@@ -1994,7 +2029,7 @@ declare class ServiceAppsRoutesController {
|
|
|
1994
2029
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
1995
2030
|
} | undefined;
|
|
1996
2031
|
};
|
|
1997
|
-
},
|
|
2032
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
1998
2033
|
ok: boolean;
|
|
1999
2034
|
error: {
|
|
2000
2035
|
code: string;
|
|
@@ -2003,7 +2038,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2003
2038
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2004
2039
|
} | undefined;
|
|
2005
2040
|
};
|
|
2006
|
-
},
|
|
2041
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2007
2042
|
ok: boolean;
|
|
2008
2043
|
data: {
|
|
2009
2044
|
entries: {
|
|
@@ -2042,7 +2077,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2042
2077
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2043
2078
|
} | undefined;
|
|
2044
2079
|
};
|
|
2045
|
-
},
|
|
2080
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2046
2081
|
ok: boolean;
|
|
2047
2082
|
error: {
|
|
2048
2083
|
code: string;
|
|
@@ -2051,7 +2086,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2051
2086
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2052
2087
|
} | undefined;
|
|
2053
2088
|
};
|
|
2054
|
-
},
|
|
2089
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2055
2090
|
ok: boolean;
|
|
2056
2091
|
data: {
|
|
2057
2092
|
id: string;
|
|
@@ -2084,7 +2119,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2084
2119
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2085
2120
|
} | undefined;
|
|
2086
2121
|
};
|
|
2087
|
-
},
|
|
2122
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2088
2123
|
ok: boolean;
|
|
2089
2124
|
error: {
|
|
2090
2125
|
code: string;
|
|
@@ -2093,7 +2128,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2093
2128
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2094
2129
|
} | undefined;
|
|
2095
2130
|
};
|
|
2096
|
-
},
|
|
2131
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2097
2132
|
ok: boolean;
|
|
2098
2133
|
data: {
|
|
2099
2134
|
caller: {
|
|
@@ -2117,7 +2152,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2117
2152
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2118
2153
|
} | undefined;
|
|
2119
2154
|
};
|
|
2120
|
-
},
|
|
2155
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2121
2156
|
ok: boolean;
|
|
2122
2157
|
error: {
|
|
2123
2158
|
code: string;
|
|
@@ -2126,7 +2161,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2126
2161
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2127
2162
|
} | undefined;
|
|
2128
2163
|
};
|
|
2129
|
-
},
|
|
2164
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2130
2165
|
ok: boolean;
|
|
2131
2166
|
data: {
|
|
2132
2167
|
grants: {
|
|
@@ -2152,7 +2187,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2152
2187
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2153
2188
|
} | undefined;
|
|
2154
2189
|
};
|
|
2155
|
-
},
|
|
2190
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2156
2191
|
ok: boolean;
|
|
2157
2192
|
error: {
|
|
2158
2193
|
code: string;
|
|
@@ -2161,7 +2196,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2161
2196
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2162
2197
|
} | undefined;
|
|
2163
2198
|
};
|
|
2164
|
-
},
|
|
2199
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2165
2200
|
ok: boolean;
|
|
2166
2201
|
data: {
|
|
2167
2202
|
grants: {
|
|
@@ -2204,7 +2239,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2204
2239
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2205
2240
|
} | undefined;
|
|
2206
2241
|
};
|
|
2207
|
-
},
|
|
2242
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2208
2243
|
ok: boolean;
|
|
2209
2244
|
error: {
|
|
2210
2245
|
code: string;
|
|
@@ -2213,7 +2248,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2213
2248
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2214
2249
|
} | undefined;
|
|
2215
2250
|
};
|
|
2216
|
-
},
|
|
2251
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2217
2252
|
ok: boolean;
|
|
2218
2253
|
data: {
|
|
2219
2254
|
revoked: boolean;
|
|
@@ -2228,7 +2263,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2228
2263
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2229
2264
|
} | undefined;
|
|
2230
2265
|
};
|
|
2231
|
-
},
|
|
2266
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2232
2267
|
ok: boolean;
|
|
2233
2268
|
error: {
|
|
2234
2269
|
code: string;
|
|
@@ -2237,22 +2272,13 @@ declare class ServiceAppsRoutesController {
|
|
|
2237
2272
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2238
2273
|
} | undefined;
|
|
2239
2274
|
};
|
|
2240
|
-
},
|
|
2275
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2241
2276
|
ok: boolean;
|
|
2242
2277
|
data: {
|
|
2243
2278
|
revoked: boolean;
|
|
2244
2279
|
};
|
|
2245
2280
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
2246
2281
|
readonly restartServiceApp: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
2247
|
-
ok: boolean;
|
|
2248
|
-
error: {
|
|
2249
|
-
code: string;
|
|
2250
|
-
message: string;
|
|
2251
|
-
details: {
|
|
2252
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2253
|
-
} | undefined;
|
|
2254
|
-
};
|
|
2255
|
-
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2256
2282
|
ok: boolean;
|
|
2257
2283
|
data: {
|
|
2258
2284
|
id: string;
|
|
@@ -2331,8 +2357,7 @@ declare class ServiceAppsRoutesController {
|
|
|
2331
2357
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2332
2358
|
} | undefined;
|
|
2333
2359
|
};
|
|
2334
|
-
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">)
|
|
2335
|
-
readonly deleteServiceApp: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
2360
|
+
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2336
2361
|
ok: boolean;
|
|
2337
2362
|
error: {
|
|
2338
2363
|
code: string;
|
|
@@ -2341,7 +2366,8 @@ declare class ServiceAppsRoutesController {
|
|
|
2341
2366
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2342
2367
|
} | undefined;
|
|
2343
2368
|
};
|
|
2344
|
-
}, 500, "json">)
|
|
2369
|
+
}, 500, "json">)>;
|
|
2370
|
+
readonly deleteServiceApp: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
2345
2371
|
ok: boolean;
|
|
2346
2372
|
error: {
|
|
2347
2373
|
code: string;
|
|
@@ -2351,6 +2377,15 @@ declare class ServiceAppsRoutesController {
|
|
|
2351
2377
|
} | undefined;
|
|
2352
2378
|
};
|
|
2353
2379
|
}, 400 | 401 | 403 | 404 | 409 | 422 | 502, "json">) | (Response & _$hono.TypedResponse<{
|
|
2380
|
+
ok: boolean;
|
|
2381
|
+
error: {
|
|
2382
|
+
code: string;
|
|
2383
|
+
message: string;
|
|
2384
|
+
details: {
|
|
2385
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
2386
|
+
} | undefined;
|
|
2387
|
+
};
|
|
2388
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
2354
2389
|
ok: boolean;
|
|
2355
2390
|
data: {
|
|
2356
2391
|
deleted: true;
|
|
@@ -3510,6 +3545,15 @@ declare class RuntimeControlRoutesController {
|
|
|
3510
3545
|
private readonly host;
|
|
3511
3546
|
constructor(host: UiRuntimeControlHost);
|
|
3512
3547
|
readonly getControl: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3548
|
+
ok: boolean;
|
|
3549
|
+
error: {
|
|
3550
|
+
code: string;
|
|
3551
|
+
message: string;
|
|
3552
|
+
details: {
|
|
3553
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3554
|
+
} | undefined;
|
|
3555
|
+
};
|
|
3556
|
+
}, 500, "json">) | (Response & _$hono.TypedResponse<{
|
|
3513
3557
|
ok: boolean;
|
|
3514
3558
|
data: {
|
|
3515
3559
|
environment: RuntimeControlEnvironment;
|
|
@@ -3549,16 +3593,7 @@ declare class RuntimeControlRoutesController {
|
|
|
3549
3593
|
managementHint?: string | undefined;
|
|
3550
3594
|
message?: string | undefined;
|
|
3551
3595
|
};
|
|
3552
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)
|
|
3553
|
-
ok: boolean;
|
|
3554
|
-
error: {
|
|
3555
|
-
code: string;
|
|
3556
|
-
message: string;
|
|
3557
|
-
details: {
|
|
3558
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
3559
|
-
} | undefined;
|
|
3560
|
-
};
|
|
3561
|
-
}, 500, "json">)>;
|
|
3596
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
3562
3597
|
readonly restartService: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
3563
3598
|
ok: boolean;
|
|
3564
3599
|
error: {
|
|
@@ -5202,15 +5237,6 @@ declare class AppPackagesRoutesController {
|
|
|
5202
5237
|
};
|
|
5203
5238
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
5204
5239
|
readonly startInstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5205
|
-
ok: boolean;
|
|
5206
|
-
error: {
|
|
5207
|
-
code: string;
|
|
5208
|
-
message: string;
|
|
5209
|
-
details: {
|
|
5210
|
-
[x: string]: _$hono_utils_types0.JSONValue;
|
|
5211
|
-
} | undefined;
|
|
5212
|
-
};
|
|
5213
|
-
}, 400 | 404 | 409, "json">) | (Response & _$hono.TypedResponse<{
|
|
5214
5240
|
ok: boolean;
|
|
5215
5241
|
data: {
|
|
5216
5242
|
id: string;
|
|
@@ -5233,8 +5259,7 @@ declare class AppPackagesRoutesController {
|
|
|
5233
5259
|
dataRemoved?: boolean | undefined;
|
|
5234
5260
|
} | undefined;
|
|
5235
5261
|
};
|
|
5236
|
-
}, 202, "json">)
|
|
5237
|
-
readonly startUpdateOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5262
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
5238
5263
|
ok: boolean;
|
|
5239
5264
|
error: {
|
|
5240
5265
|
code: string;
|
|
@@ -5243,7 +5268,8 @@ declare class AppPackagesRoutesController {
|
|
|
5243
5268
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
5244
5269
|
} | undefined;
|
|
5245
5270
|
};
|
|
5246
|
-
}, 400 | 404 | 409, "json">)
|
|
5271
|
+
}, 400 | 404 | 409, "json">)>;
|
|
5272
|
+
readonly startUpdateOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5247
5273
|
ok: boolean;
|
|
5248
5274
|
data: {
|
|
5249
5275
|
id: string;
|
|
@@ -5266,8 +5292,7 @@ declare class AppPackagesRoutesController {
|
|
|
5266
5292
|
dataRemoved?: boolean | undefined;
|
|
5267
5293
|
} | undefined;
|
|
5268
5294
|
};
|
|
5269
|
-
}, 202, "json">)
|
|
5270
|
-
readonly startRollbackOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5295
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
5271
5296
|
ok: boolean;
|
|
5272
5297
|
error: {
|
|
5273
5298
|
code: string;
|
|
@@ -5276,7 +5301,8 @@ declare class AppPackagesRoutesController {
|
|
|
5276
5301
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
5277
5302
|
} | undefined;
|
|
5278
5303
|
};
|
|
5279
|
-
}, 400 | 404 | 409, "json">)
|
|
5304
|
+
}, 400 | 404 | 409, "json">)>;
|
|
5305
|
+
readonly startRollbackOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5280
5306
|
ok: boolean;
|
|
5281
5307
|
data: {
|
|
5282
5308
|
id: string;
|
|
@@ -5299,8 +5325,7 @@ declare class AppPackagesRoutesController {
|
|
|
5299
5325
|
dataRemoved?: boolean | undefined;
|
|
5300
5326
|
} | undefined;
|
|
5301
5327
|
};
|
|
5302
|
-
}, 202, "json">)
|
|
5303
|
-
readonly startUninstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5328
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
5304
5329
|
ok: boolean;
|
|
5305
5330
|
error: {
|
|
5306
5331
|
code: string;
|
|
@@ -5309,7 +5334,8 @@ declare class AppPackagesRoutesController {
|
|
|
5309
5334
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
5310
5335
|
} | undefined;
|
|
5311
5336
|
};
|
|
5312
|
-
}, 400 | 404 | 409, "json">)
|
|
5337
|
+
}, 400 | 404 | 409, "json">)>;
|
|
5338
|
+
readonly startUninstallOperation: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5313
5339
|
ok: boolean;
|
|
5314
5340
|
data: {
|
|
5315
5341
|
id: string;
|
|
@@ -5332,7 +5358,16 @@ declare class AppPackagesRoutesController {
|
|
|
5332
5358
|
dataRemoved?: boolean | undefined;
|
|
5333
5359
|
} | undefined;
|
|
5334
5360
|
};
|
|
5335
|
-
}, 202, "json">)
|
|
5361
|
+
}, 202, "json">) | (Response & _$hono.TypedResponse<{
|
|
5362
|
+
ok: boolean;
|
|
5363
|
+
error: {
|
|
5364
|
+
code: string;
|
|
5365
|
+
message: string;
|
|
5366
|
+
details: {
|
|
5367
|
+
[x: string]: _$hono_utils_types0.JSONValue;
|
|
5368
|
+
} | undefined;
|
|
5369
|
+
};
|
|
5370
|
+
}, 400 | 404 | 409, "json">)>;
|
|
5336
5371
|
readonly get: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
5337
5372
|
ok: boolean;
|
|
5338
5373
|
error: {
|
|
@@ -7487,14 +7522,6 @@ declare class AppDataRoutesController {
|
|
|
7487
7522
|
};
|
|
7488
7523
|
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">>;
|
|
7489
7524
|
readonly deleteRetained: (c: Context) => Promise<(Response & _$hono.TypedResponse<{
|
|
7490
|
-
ok: boolean;
|
|
7491
|
-
data: {
|
|
7492
|
-
deleted: true;
|
|
7493
|
-
id: string;
|
|
7494
|
-
appId: string;
|
|
7495
|
-
instanceId: string;
|
|
7496
|
-
};
|
|
7497
|
-
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">) | (Response & _$hono.TypedResponse<{
|
|
7498
7525
|
ok: boolean;
|
|
7499
7526
|
error: {
|
|
7500
7527
|
code: string;
|
|
@@ -7503,7 +7530,15 @@ declare class AppDataRoutesController {
|
|
|
7503
7530
|
[x: string]: _$hono_utils_types0.JSONValue;
|
|
7504
7531
|
} | undefined;
|
|
7505
7532
|
};
|
|
7506
|
-
}, 400 | 404 | 409, "json">)
|
|
7533
|
+
}, 400 | 404 | 409, "json">) | (Response & _$hono.TypedResponse<{
|
|
7534
|
+
ok: boolean;
|
|
7535
|
+
data: {
|
|
7536
|
+
deleted: true;
|
|
7537
|
+
id: string;
|
|
7538
|
+
appId: string;
|
|
7539
|
+
instanceId: string;
|
|
7540
|
+
};
|
|
7541
|
+
}, _$hono_utils_http_status0.ContentfulStatusCode, "json">)>;
|
|
7507
7542
|
}
|
|
7508
7543
|
//#endregion
|
|
7509
7544
|
//#region src/features/inbox-deliveries/controllers/inbox-deliveries.controller.d.ts
|
|
@@ -7600,5 +7635,5 @@ declare class InboxDeliveriesRoutesController {
|
|
|
7600
7635
|
private handleManagerAction;
|
|
7601
7636
|
}
|
|
7602
7637
|
//#endregion
|
|
7603
|
-
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, type AppDocumentGrantMutationResult, type AppInstalledPermissionState, AppMetaView, type AppPackageHostTarget, type AppPackageList, type AppPackageOperationInput, type AppPackageOperationList, type AppPackageOperationStatus, type AppPackageOperationView, type AppPackageView, AppPackagesRoutesController, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, type CreateProjectWorkItemInput, type CreateProjectWorkStateInput, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, McpConnectionCreateResult, McpConnectionRequest, McpConnectionTestResult, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, type ObservedRequest, type ObservedWorkItem, type ObservedWorkflow, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PortableRuntimeAcceptanceContractApiView, PortableRuntimeAcceptanceExportApiView, PortableRuntimeAcceptanceStatusApiView, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, ProductAnalyticsAudience, ProductAnalyticsConfigUpdate, type ProductAnalyticsStatusView, ProductAnalyticsView, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectObservationSnapshot, type ProjectTemplateView, type ProjectView, type ProjectWorkActivity, type ProjectWorkActivityPage, type ProjectWorkArtifactLink, type ProjectWorkAttention, type ProjectWorkItemDetail, type
|
|
7638
|
+
export { AgentBindingView, type AgentCreateRequest, type AgentDeleteResult, type AgentProfileView, type AgentUpdateRequest, ApiError, ApiResponse, type AppDataDeleteResult, type AppDataEntry, type AppDataList, AppDataRoutesController, type AppDocumentGrantMutationResult, type AppInstalledPermissionState, AppMetaView, type AppPackageHostTarget, type AppPackageList, type AppPackageOperationInput, type AppPackageOperationList, type AppPackageOperationStatus, type AppPackageOperationView, type AppPackageView, AppPackagesRoutesController, AuthEnabledUpdateRequest, AuthLoginRequest, AuthPasswordUpdateRequest, AuthSetupRequest, AuthStatusView, BindingPeerView, BochaFreshnessValue, BootstrapPhase, BootstrapRemoteState, BootstrapStageState, BootstrapStatusView, ChannelAuthConnectRequest, ChannelAuthConnectResult, ChannelAuthPollRequest, ChannelAuthPollResult, ChannelAuthStartRequest, ChannelAuthStartResult, ChannelSpecView, type ChatSessionTypeCtaView, type ChatSessionTypeOptionView, type ChatSessionTypesView, ConfigActionExecuteRequest, ConfigActionExecuteResult, ConfigActionManifest, ConfigActionType, ConfigMetaView, ConfigRoutesController, ConfigSchemaResponse, ConfigUiHint, ConfigUiHints, ConfigView, type CreateProjectWorkItemInput, type CreateProjectWorkStateInput, CronActionResult, CronCreateRequest, CronCreateResult, CronEnableRequest, CronJobStateView, CronJobView, CronListQuery, CronListStatus, CronListSummaryView, CronListView, CronPayloadView, CronRunRequest, CronScheduleView, InboxDeliveriesRoutesController, MarketplaceApiConfig, MarketplaceInstallKind, MarketplaceInstallRequest, MarketplaceInstallResult, MarketplaceInstallSkillParams, MarketplaceInstallSpec, MarketplaceInstalledRecord, MarketplaceInstalledView, MarketplaceInstaller, MarketplaceItemSummary, MarketplaceItemType, MarketplaceItemView, MarketplaceListView, MarketplaceLocalizedTextMap, MarketplaceManageAction, MarketplaceManageRequest, MarketplaceManageResult, MarketplaceMcpContentView, MarketplaceMcpDoctorResult, MarketplaceMcpInstallKind, MarketplaceMcpInstallRequest, MarketplaceMcpInstallResult, MarketplaceMcpInstallSpec, MarketplaceMcpManageAction, MarketplaceMcpManageRequest, MarketplaceMcpManageResult, MarketplaceMcpTemplateInput, MarketplaceRecommendationView, MarketplaceSceneView, MarketplaceScenesView, MarketplaceSkillContentView, MarketplaceSkillInstallKind, MarketplaceSkillInstallRequest, MarketplaceSkillInstallResult, MarketplaceSkillManageAction, MarketplaceSkillManageRequest, MarketplaceSkillManageResult, MarketplaceSort, McpConnectionCreateResult, McpConnectionRequest, McpConnectionTestResult, NcpAssetRoutesController, NcpSessionContextCompactionView, NcpSessionSkillsView, type ObservedRequest, type ObservedWorkItem, type ObservedWorkflow, PanelAppAgentCapabilityView, PanelAppAgentGenerateObjectRequestView, PanelAppAgentGenerateObjectResultView, PanelAppAgentSendRequestView, PanelAppAgentSendResultView, PanelAppBridgeSessionCreateRequest, PanelAppBridgeSessionView, PanelAppCapabilityGrantView, PanelAppClientGrantView, PanelAppDeleteResultView, PanelAppEntryView, PanelAppListView, PanelAppPreferencesUpdateView, PanelAppsRoutesController, PortableRuntimeAcceptanceContractApiView, PortableRuntimeAcceptanceExportApiView, PortableRuntimeAcceptanceStatusApiView, PreferenceDeleteResult, PreferenceEntryView, PreferenceUpdateRequest, PreferencesRoutesController, ProductAnalyticsAudience, ProductAnalyticsConfigUpdate, type ProductAnalyticsStatusView, ProductAnalyticsView, type ProjectAddExistingRequest, type ProjectCreateRequest, type ProjectListView, type ProjectObservationSnapshot, type ProjectRecentArtifact, type ProjectRecentArtifactPage, type ProjectTemplateView, type ProjectView, type ProjectWorkActivity, type ProjectWorkActivityPage, type ProjectWorkArtifactLink, type ProjectWorkAttention, type ProjectWorkItemDetail, type ProjectWorkItemListEntry, type ProjectWorkItemPage, type ProjectWorkListInput, type ProjectWorkState, type ProjectWorkStateCategory, type ProjectWorkSummary, ProviderAuthImportResult, ProviderAuthPollRequest, ProviderAuthPollResult, ProviderAuthStartRequest, ProviderAuthStartResult, ProviderConfigUpdate, ProviderConfigView, ProviderConnectionTestRequest, ProviderConnectionTestResult, ProviderCreateRequest, ProviderCreateResult, ProviderDeleteResult, ProviderInstanceView, ProviderModelCatalogView, ProviderModelDiscoveryRequest, ProviderModelDiscoveryResult, ProviderTemplateView, ProviderTemplatesView, ProvidersView, RemoteAccessView, RemoteAccountProfileUpdateRequest, RemoteAccountView, RemoteBrowserAuthPollRequest, RemoteBrowserAuthPollResult, RemoteBrowserAuthStartRequest, RemoteBrowserAuthStartResult, RemoteConnectionDiagnosticsView, RemoteDisconnectView, RemoteDoctorCheckView, RemoteDoctorView, RemoteLoginRequest, RemoteRuntimeView, RemoteServiceAction, RemoteServiceActionResult, RemoteServiceView, RemoteSettingsUpdateRequest, RemoteSettingsView, RuntimeActionCapability, RuntimeActionImpact, RuntimeConfigUpdate, RuntimeControlAction, RuntimeControlActionResult, RuntimeControlEnvironment, RuntimeControlRoutesController, RuntimeControlView, RuntimeEntryView, RuntimeLifecycleState, RuntimePendingRestart, RuntimeServiceState, RuntimeVerificationRecordListView, SearchConfigUpdate, SearchConfigView, SearchProviderConfigView, SearchProviderName, SearchProviderSpecView, SecretProviderEnvView, SecretProviderExecView, SecretProviderFileView, SecretProviderView, SecretRefView, SecretSourceView, SecretsConfigUpdate, SecretsView, ServerPathBreadcrumbView, ServerPathBrowseView, ServerPathDirectoryCreateRequest, ServerPathDirectoryCreateView, ServerPathEntryDeleteView, ServerPathEntryRenameRequest, ServerPathEntryRenameView, ServerPathEntryView, ServerPathFileCreateRequest, ServerPathFileCreateView, ServerPathFilesUploadView, ServerPathLocationView, ServerPathReadView, ServerPathSearchEntryView, ServerPathSearchView, ServerPathWatchRequest, ServerPathWatchView, ServiceActionGrantBatchRequestView, ServiceActionGrantListView, ServiceActionGrantView, ServiceActionInvokeRequestView, ServiceActionInvokeResultView, ServiceActionListView, ServiceActionView, ServiceAppDeleteResultView, ServiceAppJobListView, ServiceAppJobViewResponse, ServiceAppJobWatchView, ServiceAppListView, ServiceAppRecordView, ServiceAppsRoutesController, SessionConfigView, SessionEntryView, SessionEventView, SessionHistoryView, SessionMessageView, SessionPatchUpdate, SessionSkillEntryView, SessionTypeDescribeParams, SessionsListView, TavilySearchDepthValue, UiNcpAssetPutView, UiNcpAssetService, UiNcpAssetView, UiNcpSessionListView, UiNcpSessionMessagesView, UiNcpSessionObservationKind, UiNcpSessionObservationView, UiNcpSessionObservationsView, UiNcpSessionPendingInputView, UiNcpSessionPendingInputsView, UiNcpSessionQueuedInputView, UiNcpSessionQueuedInputsView, UiNcpSessionService, UiNcpSessionTokenUsageView, UiNcpStoredAssetRecord, type UiRemoteAccessHost, type UiRouterOptions, type UiRuntimeControlHost, type UiRuntimeUpdateHost, UiServerEvent, UiServerHandle, type UpdateProjectWorkItemInput, type UpdateProjectWorkStateInput, buildConfigMeta, buildConfigSchemaView, buildConfigView, buildProviderTemplatesView, buildProvidersView, createProvider, createUiRouter, deleteProvider, ensureUiBridgeSecret, executeConfigAction, getUiBridgeSecretPath, loadConfigOrDefault, readUiBridgeSecret, startUiServer, updateChannel, updateModel, updateProductAnalytics, updateProvider, updateRuntime, updateSearch, updateSecrets };
|
|
7604
7639
|
//# sourceMappingURL=index.d.ts.map
|