@achasoft/dsh-advanced-sidebar 0.1.0 → 0.3.0
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/README.md +279 -128
- package/cordis.patch.yml +31 -3
- package/lib/client.js +2803 -466
- package/lib/client.js.map +1 -1
- package/lib/host.js +2071 -418
- package/lib/index.js +6 -2
- package/lib/preview-content-BVUQ5oOR.js +465 -0
- package/lib/remote.js +330 -25
- package/lib/typert.host.js +330 -25
- package/lib/ui-preview.js +352 -0
- package/package.json +8 -2
- package/types/client/ActionMenu.d.ts +16 -1
- package/types/client/LogDownloadDialog.d.ts +24 -0
- package/types/client/contract.d.ts +57 -1
- package/types/client/index.d.ts +4 -2
- package/types/client/locales.d.ts +100 -0
- package/types/client/log-download.d.ts +179 -0
- package/types/client/panels/PreviewPanel.d.ts +20 -15
- package/types/client/panels/preview-file.d.ts +61 -0
- package/types/client/panels/preview-mode.d.ts +67 -0
- package/types/client/panels/preview-scratchpad.d.ts +53 -0
- package/types/client/panels/preview-url.d.ts +17 -0
- package/types/client/panels/shared.d.ts +15 -2
- package/types/client/preview-driver.d.ts +121 -0
- package/types/client/preview-storage.d.ts +43 -0
- package/types/client/preview-types.d.ts +21 -0
- package/types/client/preview-values.d.ts +43 -0
- package/types/host/deletion.d.ts +32 -23
- package/types/host/git.d.ts +94 -8
- package/types/host/index.d.ts +97 -5
- package/types/host/preview-content.d.ts +179 -0
- package/types/host/preview-serve.d.ts +242 -0
- package/types/host/settings-section.d.ts +49 -0
- package/types/host/types.d.ts +341 -0
- package/types/host/ui-bridge.d.ts +197 -0
- package/types/host/ui-preview-tool.d.ts +60 -0
- package/types/index.d.ts +6 -2
- package/types/ui-preview.d.ts +11 -0
package/lib/remote.js
CHANGED
|
@@ -39,7 +39,13 @@ const _achasoft_dsh_advanced_sidebar_advancedSidebar_describe_result$schema = z.
|
|
|
39
39
|
"available": z.boolean().readonly(),
|
|
40
40
|
"reason": z.string().readonly().optional(),
|
|
41
41
|
"detail": z.string().readonly().optional(),
|
|
42
|
-
"running": z.number().readonly()
|
|
42
|
+
"running": z.number().readonly(),
|
|
43
|
+
"surface": z.object({
|
|
44
|
+
"fileRoute": z.string().readonly(),
|
|
45
|
+
"proxyRoute": z.string().readonly(),
|
|
46
|
+
"available": z.boolean().readonly(),
|
|
47
|
+
"reason": z.string().readonly().optional()
|
|
48
|
+
}).readonly().optional()
|
|
43
49
|
}).readonly(),
|
|
44
50
|
"tasks": z.object({
|
|
45
51
|
"available": z.boolean().readonly(),
|
|
@@ -110,7 +116,11 @@ const _achasoft_dsh_advanced_sidebar_advancedSidebar_describe_result$schema = z.
|
|
|
110
116
|
"maxPreviews": z.number().readonly(),
|
|
111
117
|
"previewReadyTimeoutMs": z.number().readonly(),
|
|
112
118
|
"previewScrollback": z.number().readonly(),
|
|
113
|
-
"previewGraceMs": z.number().readonly()
|
|
119
|
+
"previewGraceMs": z.number().readonly(),
|
|
120
|
+
"previewMaxFileBytes": z.number().readonly(),
|
|
121
|
+
"previewProxyTimeoutMs": z.number().readonly(),
|
|
122
|
+
"previewCommandTimeoutMs": z.number().readonly(),
|
|
123
|
+
"previewBindTtlMs": z.number().readonly()
|
|
114
124
|
}).readonly(),
|
|
115
125
|
"readAt": z.number().readonly()
|
|
116
126
|
});
|
|
@@ -1192,6 +1202,192 @@ const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewStop_result$schema =
|
|
|
1192
1202
|
]).readonly(),
|
|
1193
1203
|
"message": z.string().readonly()
|
|
1194
1204
|
})]);
|
|
1205
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewFileInfo_parameter_0$schema = z.object({
|
|
1206
|
+
"workspacePath": z.string().readonly(),
|
|
1207
|
+
"path": z.string().readonly()
|
|
1208
|
+
});
|
|
1209
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewFileInfo_result$schema = z.union([z.object({
|
|
1210
|
+
"ok": z.literal(true).readonly(),
|
|
1211
|
+
"path": z.string().readonly(),
|
|
1212
|
+
"name": z.string().readonly(),
|
|
1213
|
+
"kind": z.union([
|
|
1214
|
+
z.literal("iframe"),
|
|
1215
|
+
z.literal("markdown"),
|
|
1216
|
+
z.literal("image"),
|
|
1217
|
+
z.literal("media"),
|
|
1218
|
+
z.literal("pdf"),
|
|
1219
|
+
z.literal("text"),
|
|
1220
|
+
z.literal("other")
|
|
1221
|
+
]).readonly(),
|
|
1222
|
+
"contentType": z.string().readonly(),
|
|
1223
|
+
"bytes": z.number().readonly(),
|
|
1224
|
+
"withinLimit": z.boolean().readonly(),
|
|
1225
|
+
"url": z.string().readonly().optional(),
|
|
1226
|
+
"token": z.string().readonly(),
|
|
1227
|
+
"regular": z.boolean().readonly()
|
|
1228
|
+
}), z.object({
|
|
1229
|
+
"ok": z.literal(false).readonly(),
|
|
1230
|
+
"code": z.union([
|
|
1231
|
+
z.literal("no-filesystem"),
|
|
1232
|
+
z.literal("path-denied"),
|
|
1233
|
+
z.literal("not-a-file"),
|
|
1234
|
+
z.literal("read-failed")
|
|
1235
|
+
]).readonly(),
|
|
1236
|
+
"message": z.string().readonly()
|
|
1237
|
+
})]);
|
|
1238
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewPoll_parameter_0$schema = z.object({
|
|
1239
|
+
"clientId": z.string().readonly(),
|
|
1240
|
+
"sessionId": z.string().readonly(),
|
|
1241
|
+
"mounted": z.boolean().readonly(),
|
|
1242
|
+
"bind": z.object({
|
|
1243
|
+
"clientId": z.string().readonly(),
|
|
1244
|
+
"sessionId": z.string().readonly(),
|
|
1245
|
+
"mode": z.union([
|
|
1246
|
+
z.literal("server"),
|
|
1247
|
+
z.literal("file"),
|
|
1248
|
+
z.literal("url"),
|
|
1249
|
+
z.literal("scratchpad")
|
|
1250
|
+
]).readonly(),
|
|
1251
|
+
"filePath": z.string().readonly().optional(),
|
|
1252
|
+
"workspacePath": z.string().readonly().optional(),
|
|
1253
|
+
"url": z.string().readonly().optional(),
|
|
1254
|
+
"inspectable": z.boolean().readonly(),
|
|
1255
|
+
"width": z.number().readonly(),
|
|
1256
|
+
"height": z.number().readonly()
|
|
1257
|
+
}).readonly()
|
|
1258
|
+
});
|
|
1259
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewPoll_result$schema = z.union([z.object({
|
|
1260
|
+
"ok": z.literal(true).readonly(),
|
|
1261
|
+
"message": z.object({
|
|
1262
|
+
"commands": z.array(z.object({
|
|
1263
|
+
"id": z.string().readonly(),
|
|
1264
|
+
"clientId": z.string().readonly(),
|
|
1265
|
+
"kind": z.union([
|
|
1266
|
+
z.literal("open"),
|
|
1267
|
+
z.literal("dom"),
|
|
1268
|
+
z.literal("eval"),
|
|
1269
|
+
z.literal("console"),
|
|
1270
|
+
z.literal("click"),
|
|
1271
|
+
z.literal("input"),
|
|
1272
|
+
z.literal("reload"),
|
|
1273
|
+
z.literal("resize"),
|
|
1274
|
+
z.literal("close")
|
|
1275
|
+
]).readonly(),
|
|
1276
|
+
"selector": z.string().readonly().optional(),
|
|
1277
|
+
"expression": z.string().readonly().optional(),
|
|
1278
|
+
"cursor": z.number().readonly().optional(),
|
|
1279
|
+
"text": z.string().readonly().optional(),
|
|
1280
|
+
"key": z.string().readonly().optional(),
|
|
1281
|
+
"width": z.number().readonly().optional(),
|
|
1282
|
+
"height": z.number().readonly().optional(),
|
|
1283
|
+
"timeoutMs": z.number().readonly()
|
|
1284
|
+
})).readonly(),
|
|
1285
|
+
"controls": z.array(z.object({
|
|
1286
|
+
"control": z.literal("open").readonly(),
|
|
1287
|
+
"open": z.object({
|
|
1288
|
+
"clientId": z.string().readonly(),
|
|
1289
|
+
"mode": z.union([
|
|
1290
|
+
z.literal("server"),
|
|
1291
|
+
z.literal("file"),
|
|
1292
|
+
z.literal("url"),
|
|
1293
|
+
z.literal("scratchpad")
|
|
1294
|
+
]).readonly(),
|
|
1295
|
+
"filePath": z.string().readonly().optional(),
|
|
1296
|
+
"url": z.string().readonly().optional(),
|
|
1297
|
+
"workspacePath": z.string().readonly().optional()
|
|
1298
|
+
}).readonly()
|
|
1299
|
+
})).readonly()
|
|
1300
|
+
}).readonly(),
|
|
1301
|
+
"bindTtlMs": z.number().readonly()
|
|
1302
|
+
}), z.object({
|
|
1303
|
+
"ok": z.literal(false).readonly(),
|
|
1304
|
+
"code": z.union([z.literal("no-subprocess"), z.literal("closed")]).readonly(),
|
|
1305
|
+
"message": z.string().readonly()
|
|
1306
|
+
})]);
|
|
1307
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewResult_parameter_0$schema = z.object({
|
|
1308
|
+
"clientId": z.string().readonly(),
|
|
1309
|
+
"id": z.string().readonly(),
|
|
1310
|
+
"ok": z.boolean().readonly(),
|
|
1311
|
+
"error": z.string().readonly().optional(),
|
|
1312
|
+
"result": z.union([
|
|
1313
|
+
z.object({
|
|
1314
|
+
"kind": z.literal("dom").readonly(),
|
|
1315
|
+
"selector": z.string().readonly(),
|
|
1316
|
+
"viewport": z.object({
|
|
1317
|
+
"width": z.number().readonly(),
|
|
1318
|
+
"height": z.number().readonly()
|
|
1319
|
+
}).readonly(),
|
|
1320
|
+
"nodes": z.array(z.object({
|
|
1321
|
+
"tag": z.string().readonly(),
|
|
1322
|
+
"selector": z.string().readonly(),
|
|
1323
|
+
"text": z.string().readonly(),
|
|
1324
|
+
"display": z.string().readonly(),
|
|
1325
|
+
"box": z.object({
|
|
1326
|
+
"x": z.number().readonly(),
|
|
1327
|
+
"y": z.number().readonly(),
|
|
1328
|
+
"width": z.number().readonly(),
|
|
1329
|
+
"height": z.number().readonly()
|
|
1330
|
+
}).readonly(),
|
|
1331
|
+
"depth": z.number().readonly()
|
|
1332
|
+
})).readonly(),
|
|
1333
|
+
"text": z.string().readonly(),
|
|
1334
|
+
"truncated": z.boolean().readonly(),
|
|
1335
|
+
"url": z.string().readonly()
|
|
1336
|
+
}),
|
|
1337
|
+
z.object({
|
|
1338
|
+
"kind": z.literal("eval").readonly(),
|
|
1339
|
+
"value": z.string().readonly(),
|
|
1340
|
+
"note": z.string().readonly().optional(),
|
|
1341
|
+
"truncated": z.boolean().readonly()
|
|
1342
|
+
}),
|
|
1343
|
+
z.object({
|
|
1344
|
+
"kind": z.literal("console").readonly(),
|
|
1345
|
+
"entries": z.array(z.object({
|
|
1346
|
+
"level": z.union([
|
|
1347
|
+
z.literal("log"),
|
|
1348
|
+
z.literal("info"),
|
|
1349
|
+
z.literal("warn"),
|
|
1350
|
+
z.literal("error"),
|
|
1351
|
+
z.literal("uncaught"),
|
|
1352
|
+
z.literal("rejection")
|
|
1353
|
+
]).readonly(),
|
|
1354
|
+
"text": z.string().readonly(),
|
|
1355
|
+
"at": z.number().readonly()
|
|
1356
|
+
})).readonly(),
|
|
1357
|
+
"cursor": z.number().readonly(),
|
|
1358
|
+
"lossy": z.boolean().readonly()
|
|
1359
|
+
}),
|
|
1360
|
+
z.object({
|
|
1361
|
+
"kind": z.literal("ack").readonly(),
|
|
1362
|
+
"detail": z.string().readonly(),
|
|
1363
|
+
"width": z.number().readonly().optional(),
|
|
1364
|
+
"height": z.number().readonly().optional()
|
|
1365
|
+
})
|
|
1366
|
+
]).readonly().optional(),
|
|
1367
|
+
"console": z.array(z.object({
|
|
1368
|
+
"level": z.union([
|
|
1369
|
+
z.literal("log"),
|
|
1370
|
+
z.literal("info"),
|
|
1371
|
+
z.literal("warn"),
|
|
1372
|
+
z.literal("error"),
|
|
1373
|
+
z.literal("uncaught"),
|
|
1374
|
+
z.literal("rejection")
|
|
1375
|
+
]).readonly(),
|
|
1376
|
+
"text": z.string().readonly(),
|
|
1377
|
+
"at": z.number().readonly()
|
|
1378
|
+
})).readonly().optional()
|
|
1379
|
+
});
|
|
1380
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewResult_result$schema = z.union([z.object({ "ok": z.literal(true).readonly() }), z.object({
|
|
1381
|
+
"ok": z.literal(false).readonly(),
|
|
1382
|
+
"code": z.union([z.literal("no-subprocess"), z.literal("closed")]).readonly(),
|
|
1383
|
+
"message": z.string().readonly()
|
|
1384
|
+
})]);
|
|
1385
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewRelease_parameter_0$schema = z.object({ "clientId": z.string().readonly() });
|
|
1386
|
+
const _achasoft_dsh_advanced_sidebar_advancedSidebar_previewRelease_result$schema = z.union([z.object({ "ok": z.literal(true).readonly() }), z.object({
|
|
1387
|
+
"ok": z.literal(false).readonly(),
|
|
1388
|
+
"code": z.union([z.literal("no-subprocess"), z.literal("closed")]).readonly(),
|
|
1389
|
+
"message": z.string().readonly()
|
|
1390
|
+
})]);
|
|
1195
1391
|
const _achasoft_dsh_advanced_sidebar_advancedSidebar_readFile_parameter_0$schema = z.object({
|
|
1196
1392
|
"path": z.string().readonly(),
|
|
1197
1393
|
"workspacePath": z.string().readonly()
|
|
@@ -1383,7 +1579,7 @@ const TYPERT_REMOTE = {
|
|
|
1383
1579
|
},
|
|
1384
1580
|
sourceLocation: {
|
|
1385
1581
|
"file": "src/host/index.ts",
|
|
1386
|
-
"line":
|
|
1582
|
+
"line": 590,
|
|
1387
1583
|
"column": 3
|
|
1388
1584
|
}
|
|
1389
1585
|
},
|
|
@@ -1402,7 +1598,7 @@ const TYPERT_REMOTE = {
|
|
|
1402
1598
|
},
|
|
1403
1599
|
sourceLocation: {
|
|
1404
1600
|
"file": "src/host/index.ts",
|
|
1405
|
-
"line":
|
|
1601
|
+
"line": 267,
|
|
1406
1602
|
"column": 3
|
|
1407
1603
|
}
|
|
1408
1604
|
},
|
|
@@ -1430,7 +1626,7 @@ const TYPERT_REMOTE = {
|
|
|
1430
1626
|
},
|
|
1431
1627
|
sourceLocation: {
|
|
1432
1628
|
"file": "src/host/index.ts",
|
|
1433
|
-
"line":
|
|
1629
|
+
"line": 307,
|
|
1434
1630
|
"column": 3
|
|
1435
1631
|
}
|
|
1436
1632
|
},
|
|
@@ -1458,7 +1654,7 @@ const TYPERT_REMOTE = {
|
|
|
1458
1654
|
},
|
|
1459
1655
|
sourceLocation: {
|
|
1460
1656
|
"file": "src/host/index.ts",
|
|
1461
|
-
"line":
|
|
1657
|
+
"line": 296,
|
|
1462
1658
|
"column": 3
|
|
1463
1659
|
}
|
|
1464
1660
|
},
|
|
@@ -1486,7 +1682,7 @@ const TYPERT_REMOTE = {
|
|
|
1486
1682
|
},
|
|
1487
1683
|
sourceLocation: {
|
|
1488
1684
|
"file": "src/host/index.ts",
|
|
1489
|
-
"line":
|
|
1685
|
+
"line": 318,
|
|
1490
1686
|
"column": 3
|
|
1491
1687
|
}
|
|
1492
1688
|
},
|
|
@@ -1514,7 +1710,7 @@ const TYPERT_REMOTE = {
|
|
|
1514
1710
|
},
|
|
1515
1711
|
sourceLocation: {
|
|
1516
1712
|
"file": "src/host/index.ts",
|
|
1517
|
-
"line":
|
|
1713
|
+
"line": 329,
|
|
1518
1714
|
"column": 3
|
|
1519
1715
|
}
|
|
1520
1716
|
},
|
|
@@ -1542,7 +1738,7 @@ const TYPERT_REMOTE = {
|
|
|
1542
1738
|
},
|
|
1543
1739
|
sourceLocation: {
|
|
1544
1740
|
"file": "src/host/index.ts",
|
|
1545
|
-
"line":
|
|
1741
|
+
"line": 340,
|
|
1546
1742
|
"column": 3
|
|
1547
1743
|
}
|
|
1548
1744
|
},
|
|
@@ -1570,7 +1766,7 @@ const TYPERT_REMOTE = {
|
|
|
1570
1766
|
},
|
|
1571
1767
|
sourceLocation: {
|
|
1572
1768
|
"file": "src/host/index.ts",
|
|
1573
|
-
"line":
|
|
1769
|
+
"line": 351,
|
|
1574
1770
|
"column": 3
|
|
1575
1771
|
}
|
|
1576
1772
|
},
|
|
@@ -1598,7 +1794,7 @@ const TYPERT_REMOTE = {
|
|
|
1598
1794
|
},
|
|
1599
1795
|
sourceLocation: {
|
|
1600
1796
|
"file": "src/host/index.ts",
|
|
1601
|
-
"line":
|
|
1797
|
+
"line": 362,
|
|
1602
1798
|
"column": 3
|
|
1603
1799
|
}
|
|
1604
1800
|
},
|
|
@@ -1626,7 +1822,7 @@ const TYPERT_REMOTE = {
|
|
|
1626
1822
|
},
|
|
1627
1823
|
sourceLocation: {
|
|
1628
1824
|
"file": "src/host/index.ts",
|
|
1629
|
-
"line":
|
|
1825
|
+
"line": 426,
|
|
1630
1826
|
"column": 3
|
|
1631
1827
|
}
|
|
1632
1828
|
},
|
|
@@ -1654,7 +1850,7 @@ const TYPERT_REMOTE = {
|
|
|
1654
1850
|
},
|
|
1655
1851
|
sourceLocation: {
|
|
1656
1852
|
"file": "src/host/index.ts",
|
|
1657
|
-
"line":
|
|
1853
|
+
"line": 560,
|
|
1658
1854
|
"column": 3
|
|
1659
1855
|
}
|
|
1660
1856
|
},
|
|
@@ -1682,7 +1878,7 @@ const TYPERT_REMOTE = {
|
|
|
1682
1878
|
},
|
|
1683
1879
|
sourceLocation: {
|
|
1684
1880
|
"file": "src/host/index.ts",
|
|
1685
|
-
"line":
|
|
1881
|
+
"line": 437,
|
|
1686
1882
|
"column": 3
|
|
1687
1883
|
}
|
|
1688
1884
|
},
|
|
@@ -1709,7 +1905,7 @@ const TYPERT_REMOTE = {
|
|
|
1709
1905
|
},
|
|
1710
1906
|
sourceLocation: {
|
|
1711
1907
|
"file": "src/host/index.ts",
|
|
1712
|
-
"line":
|
|
1908
|
+
"line": 468,
|
|
1713
1909
|
"column": 3
|
|
1714
1910
|
}
|
|
1715
1911
|
},
|
|
@@ -1737,7 +1933,7 @@ const TYPERT_REMOTE = {
|
|
|
1737
1933
|
},
|
|
1738
1934
|
sourceLocation: {
|
|
1739
1935
|
"file": "src/host/index.ts",
|
|
1740
|
-
"line":
|
|
1936
|
+
"line": 448,
|
|
1741
1937
|
"column": 3
|
|
1742
1938
|
}
|
|
1743
1939
|
},
|
|
@@ -1764,7 +1960,116 @@ const TYPERT_REMOTE = {
|
|
|
1764
1960
|
},
|
|
1765
1961
|
sourceLocation: {
|
|
1766
1962
|
"file": "src/host/index.ts",
|
|
1767
|
-
"line":
|
|
1963
|
+
"line": 458,
|
|
1964
|
+
"column": 3
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1967
|
+
{
|
|
1968
|
+
id: "@achasoft/dsh-advanced-sidebar#advancedSidebar/previewFileInfo",
|
|
1969
|
+
service: "advancedSidebar",
|
|
1970
|
+
namespace: "advancedSidebar",
|
|
1971
|
+
method: "previewFileInfo",
|
|
1972
|
+
invocation: { kind: "direct" },
|
|
1973
|
+
parameters: [{
|
|
1974
|
+
name: "request",
|
|
1975
|
+
wire: "request",
|
|
1976
|
+
source: "json",
|
|
1977
|
+
codec: {
|
|
1978
|
+
mode: "strict",
|
|
1979
|
+
typeSymbol: "../src/host/types.ts#PreviewFileInfoRequest",
|
|
1980
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewFileInfo_parameter_0$schema
|
|
1981
|
+
}
|
|
1982
|
+
}],
|
|
1983
|
+
cancellation: { parameter: "signal" },
|
|
1984
|
+
result: {
|
|
1985
|
+
mode: "strict",
|
|
1986
|
+
typeSymbol: "../src/host/types.ts#PreviewFileInfoResult",
|
|
1987
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewFileInfo_result$schema
|
|
1988
|
+
},
|
|
1989
|
+
sourceLocation: {
|
|
1990
|
+
"file": "src/host/index.ts",
|
|
1991
|
+
"line": 483,
|
|
1992
|
+
"column": 3
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
id: "@achasoft/dsh-advanced-sidebar#advancedSidebar/previewPoll",
|
|
1997
|
+
service: "advancedSidebar",
|
|
1998
|
+
namespace: "advancedSidebar",
|
|
1999
|
+
method: "previewPoll",
|
|
2000
|
+
invocation: { kind: "direct" },
|
|
2001
|
+
parameters: [{
|
|
2002
|
+
name: "request",
|
|
2003
|
+
wire: "request",
|
|
2004
|
+
source: "json",
|
|
2005
|
+
codec: {
|
|
2006
|
+
mode: "strict",
|
|
2007
|
+
typeSymbol: "../src/host/types.ts#PreviewPollRequest",
|
|
2008
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewPoll_parameter_0$schema
|
|
2009
|
+
}
|
|
2010
|
+
}],
|
|
2011
|
+
result: {
|
|
2012
|
+
mode: "strict",
|
|
2013
|
+
typeSymbol: "../src/host/types.ts#PreviewPollResult",
|
|
2014
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewPoll_result$schema
|
|
2015
|
+
},
|
|
2016
|
+
sourceLocation: {
|
|
2017
|
+
"file": "src/host/index.ts",
|
|
2018
|
+
"line": 498,
|
|
2019
|
+
"column": 3
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
{
|
|
2023
|
+
id: "@achasoft/dsh-advanced-sidebar#advancedSidebar/previewResult",
|
|
2024
|
+
service: "advancedSidebar",
|
|
2025
|
+
namespace: "advancedSidebar",
|
|
2026
|
+
method: "previewResult",
|
|
2027
|
+
invocation: { kind: "direct" },
|
|
2028
|
+
parameters: [{
|
|
2029
|
+
name: "request",
|
|
2030
|
+
wire: "request",
|
|
2031
|
+
source: "json",
|
|
2032
|
+
codec: {
|
|
2033
|
+
mode: "strict",
|
|
2034
|
+
typeSymbol: "../src/host/types.ts#PreviewResultRequest",
|
|
2035
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewResult_parameter_0$schema
|
|
2036
|
+
}
|
|
2037
|
+
}],
|
|
2038
|
+
result: {
|
|
2039
|
+
mode: "strict",
|
|
2040
|
+
typeSymbol: "../src/host/types.ts#PreviewResultAck",
|
|
2041
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewResult_result$schema
|
|
2042
|
+
},
|
|
2043
|
+
sourceLocation: {
|
|
2044
|
+
"file": "src/host/index.ts",
|
|
2045
|
+
"line": 516,
|
|
2046
|
+
"column": 3
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
id: "@achasoft/dsh-advanced-sidebar#advancedSidebar/previewRelease",
|
|
2051
|
+
service: "advancedSidebar",
|
|
2052
|
+
namespace: "advancedSidebar",
|
|
2053
|
+
method: "previewRelease",
|
|
2054
|
+
invocation: { kind: "direct" },
|
|
2055
|
+
parameters: [{
|
|
2056
|
+
name: "request",
|
|
2057
|
+
wire: "request",
|
|
2058
|
+
source: "json",
|
|
2059
|
+
codec: {
|
|
2060
|
+
mode: "strict",
|
|
2061
|
+
typeSymbol: "../src/host/types.ts#PreviewReleaseRequest",
|
|
2062
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewRelease_parameter_0$schema
|
|
2063
|
+
}
|
|
2064
|
+
}],
|
|
2065
|
+
result: {
|
|
2066
|
+
mode: "strict",
|
|
2067
|
+
typeSymbol: "../src/host/types.ts#PreviewReleaseResult",
|
|
2068
|
+
schema: _achasoft_dsh_advanced_sidebar_advancedSidebar_previewRelease_result$schema
|
|
2069
|
+
},
|
|
2070
|
+
sourceLocation: {
|
|
2071
|
+
"file": "src/host/index.ts",
|
|
2072
|
+
"line": 536,
|
|
1768
2073
|
"column": 3
|
|
1769
2074
|
}
|
|
1770
2075
|
},
|
|
@@ -1792,7 +2097,7 @@ const TYPERT_REMOTE = {
|
|
|
1792
2097
|
},
|
|
1793
2098
|
sourceLocation: {
|
|
1794
2099
|
"file": "src/host/index.ts",
|
|
1795
|
-
"line":
|
|
2100
|
+
"line": 549,
|
|
1796
2101
|
"column": 3
|
|
1797
2102
|
}
|
|
1798
2103
|
},
|
|
@@ -1819,7 +2124,7 @@ const TYPERT_REMOTE = {
|
|
|
1819
2124
|
},
|
|
1820
2125
|
sourceLocation: {
|
|
1821
2126
|
"file": "src/host/index.ts",
|
|
1822
|
-
"line":
|
|
2127
|
+
"line": 570,
|
|
1823
2128
|
"column": 3
|
|
1824
2129
|
}
|
|
1825
2130
|
},
|
|
@@ -1846,7 +2151,7 @@ const TYPERT_REMOTE = {
|
|
|
1846
2151
|
},
|
|
1847
2152
|
sourceLocation: {
|
|
1848
2153
|
"file": "src/host/index.ts",
|
|
1849
|
-
"line":
|
|
2154
|
+
"line": 580,
|
|
1850
2155
|
"column": 3
|
|
1851
2156
|
}
|
|
1852
2157
|
},
|
|
@@ -1873,7 +2178,7 @@ const TYPERT_REMOTE = {
|
|
|
1873
2178
|
},
|
|
1874
2179
|
sourceLocation: {
|
|
1875
2180
|
"file": "src/host/index.ts",
|
|
1876
|
-
"line":
|
|
2181
|
+
"line": 415,
|
|
1877
2182
|
"column": 3
|
|
1878
2183
|
}
|
|
1879
2184
|
},
|
|
@@ -1901,7 +2206,7 @@ const TYPERT_REMOTE = {
|
|
|
1901
2206
|
},
|
|
1902
2207
|
sourceLocation: {
|
|
1903
2208
|
"file": "src/host/index.ts",
|
|
1904
|
-
"line":
|
|
2209
|
+
"line": 375,
|
|
1905
2210
|
"column": 3
|
|
1906
2211
|
}
|
|
1907
2212
|
},
|
|
@@ -1928,7 +2233,7 @@ const TYPERT_REMOTE = {
|
|
|
1928
2233
|
},
|
|
1929
2234
|
sourceLocation: {
|
|
1930
2235
|
"file": "src/host/index.ts",
|
|
1931
|
-
"line":
|
|
2236
|
+
"line": 385,
|
|
1932
2237
|
"column": 3
|
|
1933
2238
|
}
|
|
1934
2239
|
},
|
|
@@ -1955,7 +2260,7 @@ const TYPERT_REMOTE = {
|
|
|
1955
2260
|
},
|
|
1956
2261
|
sourceLocation: {
|
|
1957
2262
|
"file": "src/host/index.ts",
|
|
1958
|
-
"line":
|
|
2263
|
+
"line": 405,
|
|
1959
2264
|
"column": 3
|
|
1960
2265
|
}
|
|
1961
2266
|
},
|
|
@@ -1982,7 +2287,7 @@ const TYPERT_REMOTE = {
|
|
|
1982
2287
|
},
|
|
1983
2288
|
sourceLocation: {
|
|
1984
2289
|
"file": "src/host/index.ts",
|
|
1985
|
-
"line":
|
|
2290
|
+
"line": 395,
|
|
1986
2291
|
"column": 3
|
|
1987
2292
|
}
|
|
1988
2293
|
}
|