@opencode-ai/sdk 1.1.23 → 1.1.25
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/v2/gen/client/client.gen.js +8 -1
- package/dist/v2/gen/core/serverSentEvents.gen.js +2 -0
- package/dist/v2/gen/sdk.gen.d.ts +173 -134
- package/dist/v2/gen/sdk.gen.js +298 -196
- package/dist/v2/gen/types.gen.d.ts +326 -302
- package/package.json +2 -2
package/dist/v2/gen/sdk.gen.js
CHANGED
|
@@ -331,36 +331,6 @@ export class Tool extends HeyApiClient {
|
|
|
331
331
|
});
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
|
-
export class Instance extends HeyApiClient {
|
|
335
|
-
/**
|
|
336
|
-
* Dispose instance
|
|
337
|
-
*
|
|
338
|
-
* Clean up and dispose the current OpenCode instance, releasing all resources.
|
|
339
|
-
*/
|
|
340
|
-
dispose(parameters, options) {
|
|
341
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
342
|
-
return (options?.client ?? this.client).post({
|
|
343
|
-
url: "/instance/dispose",
|
|
344
|
-
...options,
|
|
345
|
-
...params,
|
|
346
|
-
});
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
export class Path extends HeyApiClient {
|
|
350
|
-
/**
|
|
351
|
-
* Get paths
|
|
352
|
-
*
|
|
353
|
-
* Retrieve the current working directory and related path information for the OpenCode instance.
|
|
354
|
-
*/
|
|
355
|
-
get(parameters, options) {
|
|
356
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
357
|
-
return (options?.client ?? this.client).get({
|
|
358
|
-
url: "/path",
|
|
359
|
-
...options,
|
|
360
|
-
...params,
|
|
361
|
-
});
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
334
|
export class Worktree extends HeyApiClient {
|
|
365
335
|
/**
|
|
366
336
|
* List worktrees
|
|
@@ -401,21 +371,27 @@ export class Worktree extends HeyApiClient {
|
|
|
401
371
|
});
|
|
402
372
|
}
|
|
403
373
|
}
|
|
404
|
-
export class
|
|
374
|
+
export class Resource extends HeyApiClient {
|
|
405
375
|
/**
|
|
406
|
-
* Get
|
|
376
|
+
* Get MCP resources
|
|
407
377
|
*
|
|
408
|
-
*
|
|
378
|
+
* Get all available MCP resources from connected servers. Optionally filter by name.
|
|
409
379
|
*/
|
|
410
|
-
|
|
380
|
+
list(parameters, options) {
|
|
411
381
|
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
412
382
|
return (options?.client ?? this.client).get({
|
|
413
|
-
url: "/
|
|
383
|
+
url: "/experimental/resource",
|
|
414
384
|
...options,
|
|
415
385
|
...params,
|
|
416
386
|
});
|
|
417
387
|
}
|
|
418
388
|
}
|
|
389
|
+
export class Experimental extends HeyApiClient {
|
|
390
|
+
_resource;
|
|
391
|
+
get resource() {
|
|
392
|
+
return (this._resource ??= new Resource({ client: this.client }));
|
|
393
|
+
}
|
|
394
|
+
}
|
|
419
395
|
export class Session extends HeyApiClient {
|
|
420
396
|
/**
|
|
421
397
|
* List sessions
|
|
@@ -702,9 +678,9 @@ export class Session extends HeyApiClient {
|
|
|
702
678
|
});
|
|
703
679
|
}
|
|
704
680
|
/**
|
|
705
|
-
* Get
|
|
681
|
+
* Get message diff
|
|
706
682
|
*
|
|
707
|
-
* Get
|
|
683
|
+
* Get the file changes (diff) that resulted from a specific user message in the session.
|
|
708
684
|
*/
|
|
709
685
|
diff(parameters, options) {
|
|
710
686
|
const params = buildClientParams([parameters], [
|
|
@@ -1146,21 +1122,6 @@ export class Question extends HeyApiClient {
|
|
|
1146
1122
|
});
|
|
1147
1123
|
}
|
|
1148
1124
|
}
|
|
1149
|
-
export class Command extends HeyApiClient {
|
|
1150
|
-
/**
|
|
1151
|
-
* List commands
|
|
1152
|
-
*
|
|
1153
|
-
* Get a list of all available commands in the OpenCode system.
|
|
1154
|
-
*/
|
|
1155
|
-
list(parameters, options) {
|
|
1156
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1157
|
-
return (options?.client ?? this.client).get({
|
|
1158
|
-
url: "/command",
|
|
1159
|
-
...options,
|
|
1160
|
-
...params,
|
|
1161
|
-
});
|
|
1162
|
-
}
|
|
1163
|
-
}
|
|
1164
1125
|
export class Oauth extends HeyApiClient {
|
|
1165
1126
|
/**
|
|
1166
1127
|
* OAuth authorize
|
|
@@ -1243,7 +1204,10 @@ export class Provider extends HeyApiClient {
|
|
|
1243
1204
|
...params,
|
|
1244
1205
|
});
|
|
1245
1206
|
}
|
|
1246
|
-
|
|
1207
|
+
_oauth;
|
|
1208
|
+
get oauth() {
|
|
1209
|
+
return (this._oauth ??= new Oauth({ client: this.client }));
|
|
1210
|
+
}
|
|
1247
1211
|
}
|
|
1248
1212
|
export class Find extends HeyApiClient {
|
|
1249
1213
|
/**
|
|
@@ -1365,49 +1329,6 @@ export class File extends HeyApiClient {
|
|
|
1365
1329
|
});
|
|
1366
1330
|
}
|
|
1367
1331
|
}
|
|
1368
|
-
export class App extends HeyApiClient {
|
|
1369
|
-
/**
|
|
1370
|
-
* Write log
|
|
1371
|
-
*
|
|
1372
|
-
* Write a log entry to the server logs with specified level and metadata.
|
|
1373
|
-
*/
|
|
1374
|
-
log(parameters, options) {
|
|
1375
|
-
const params = buildClientParams([parameters], [
|
|
1376
|
-
{
|
|
1377
|
-
args: [
|
|
1378
|
-
{ in: "query", key: "directory" },
|
|
1379
|
-
{ in: "body", key: "service" },
|
|
1380
|
-
{ in: "body", key: "level" },
|
|
1381
|
-
{ in: "body", key: "message" },
|
|
1382
|
-
{ in: "body", key: "extra" },
|
|
1383
|
-
],
|
|
1384
|
-
},
|
|
1385
|
-
]);
|
|
1386
|
-
return (options?.client ?? this.client).post({
|
|
1387
|
-
url: "/log",
|
|
1388
|
-
...options,
|
|
1389
|
-
...params,
|
|
1390
|
-
headers: {
|
|
1391
|
-
"Content-Type": "application/json",
|
|
1392
|
-
...options?.headers,
|
|
1393
|
-
...params.headers,
|
|
1394
|
-
},
|
|
1395
|
-
});
|
|
1396
|
-
}
|
|
1397
|
-
/**
|
|
1398
|
-
* List agents
|
|
1399
|
-
*
|
|
1400
|
-
* Get a list of all available AI agents in the OpenCode system.
|
|
1401
|
-
*/
|
|
1402
|
-
agents(parameters, options) {
|
|
1403
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1404
|
-
return (options?.client ?? this.client).get({
|
|
1405
|
-
url: "/agent",
|
|
1406
|
-
...options,
|
|
1407
|
-
...params,
|
|
1408
|
-
});
|
|
1409
|
-
}
|
|
1410
|
-
}
|
|
1411
1332
|
export class Auth extends HeyApiClient {
|
|
1412
1333
|
/**
|
|
1413
1334
|
* Remove MCP OAuth
|
|
@@ -1495,32 +1416,6 @@ export class Auth extends HeyApiClient {
|
|
|
1495
1416
|
...params,
|
|
1496
1417
|
});
|
|
1497
1418
|
}
|
|
1498
|
-
/**
|
|
1499
|
-
* Set auth credentials
|
|
1500
|
-
*
|
|
1501
|
-
* Set authentication credentials
|
|
1502
|
-
*/
|
|
1503
|
-
set(parameters, options) {
|
|
1504
|
-
const params = buildClientParams([parameters], [
|
|
1505
|
-
{
|
|
1506
|
-
args: [
|
|
1507
|
-
{ in: "path", key: "providerID" },
|
|
1508
|
-
{ in: "query", key: "directory" },
|
|
1509
|
-
{ key: "auth", map: "body" },
|
|
1510
|
-
],
|
|
1511
|
-
},
|
|
1512
|
-
]);
|
|
1513
|
-
return (options?.client ?? this.client).put({
|
|
1514
|
-
url: "/auth/{providerID}",
|
|
1515
|
-
...options,
|
|
1516
|
-
...params,
|
|
1517
|
-
headers: {
|
|
1518
|
-
"Content-Type": "application/json",
|
|
1519
|
-
...options?.headers,
|
|
1520
|
-
...params.headers,
|
|
1521
|
-
},
|
|
1522
|
-
});
|
|
1523
|
-
}
|
|
1524
1419
|
}
|
|
1525
1420
|
export class Mcp extends HeyApiClient {
|
|
1526
1421
|
/**
|
|
@@ -1598,54 +1493,9 @@ export class Mcp extends HeyApiClient {
|
|
|
1598
1493
|
...params,
|
|
1599
1494
|
});
|
|
1600
1495
|
}
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
/**
|
|
1605
|
-
* Get MCP resources
|
|
1606
|
-
*
|
|
1607
|
-
* Get all available MCP resources from connected servers. Optionally filter by name.
|
|
1608
|
-
*/
|
|
1609
|
-
list(parameters, options) {
|
|
1610
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1611
|
-
return (options?.client ?? this.client).get({
|
|
1612
|
-
url: "/experimental/resource",
|
|
1613
|
-
...options,
|
|
1614
|
-
...params,
|
|
1615
|
-
});
|
|
1616
|
-
}
|
|
1617
|
-
}
|
|
1618
|
-
export class Experimental extends HeyApiClient {
|
|
1619
|
-
resource = new Resource({ client: this.client });
|
|
1620
|
-
}
|
|
1621
|
-
export class Lsp extends HeyApiClient {
|
|
1622
|
-
/**
|
|
1623
|
-
* Get LSP status
|
|
1624
|
-
*
|
|
1625
|
-
* Get LSP server status
|
|
1626
|
-
*/
|
|
1627
|
-
status(parameters, options) {
|
|
1628
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1629
|
-
return (options?.client ?? this.client).get({
|
|
1630
|
-
url: "/lsp",
|
|
1631
|
-
...options,
|
|
1632
|
-
...params,
|
|
1633
|
-
});
|
|
1634
|
-
}
|
|
1635
|
-
}
|
|
1636
|
-
export class Formatter extends HeyApiClient {
|
|
1637
|
-
/**
|
|
1638
|
-
* Get formatter status
|
|
1639
|
-
*
|
|
1640
|
-
* Get formatter status
|
|
1641
|
-
*/
|
|
1642
|
-
status(parameters, options) {
|
|
1643
|
-
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1644
|
-
return (options?.client ?? this.client).get({
|
|
1645
|
-
url: "/formatter",
|
|
1646
|
-
...options,
|
|
1647
|
-
...params,
|
|
1648
|
-
});
|
|
1496
|
+
_auth;
|
|
1497
|
+
get auth() {
|
|
1498
|
+
return (this._auth ??= new Auth({ client: this.client }));
|
|
1649
1499
|
}
|
|
1650
1500
|
}
|
|
1651
1501
|
export class Control extends HeyApiClient {
|
|
@@ -1881,7 +1731,184 @@ export class Tui extends HeyApiClient {
|
|
|
1881
1731
|
},
|
|
1882
1732
|
});
|
|
1883
1733
|
}
|
|
1884
|
-
|
|
1734
|
+
_control;
|
|
1735
|
+
get control() {
|
|
1736
|
+
return (this._control ??= new Control({ client: this.client }));
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
export class Instance extends HeyApiClient {
|
|
1740
|
+
/**
|
|
1741
|
+
* Dispose instance
|
|
1742
|
+
*
|
|
1743
|
+
* Clean up and dispose the current OpenCode instance, releasing all resources.
|
|
1744
|
+
*/
|
|
1745
|
+
dispose(parameters, options) {
|
|
1746
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1747
|
+
return (options?.client ?? this.client).post({
|
|
1748
|
+
url: "/instance/dispose",
|
|
1749
|
+
...options,
|
|
1750
|
+
...params,
|
|
1751
|
+
});
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
export class Path extends HeyApiClient {
|
|
1755
|
+
/**
|
|
1756
|
+
* Get paths
|
|
1757
|
+
*
|
|
1758
|
+
* Retrieve the current working directory and related path information for the OpenCode instance.
|
|
1759
|
+
*/
|
|
1760
|
+
get(parameters, options) {
|
|
1761
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1762
|
+
return (options?.client ?? this.client).get({
|
|
1763
|
+
url: "/path",
|
|
1764
|
+
...options,
|
|
1765
|
+
...params,
|
|
1766
|
+
});
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
export class Vcs extends HeyApiClient {
|
|
1770
|
+
/**
|
|
1771
|
+
* Get VCS info
|
|
1772
|
+
*
|
|
1773
|
+
* Retrieve version control system (VCS) information for the current project, such as git branch.
|
|
1774
|
+
*/
|
|
1775
|
+
get(parameters, options) {
|
|
1776
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1777
|
+
return (options?.client ?? this.client).get({
|
|
1778
|
+
url: "/vcs",
|
|
1779
|
+
...options,
|
|
1780
|
+
...params,
|
|
1781
|
+
});
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
export class Command extends HeyApiClient {
|
|
1785
|
+
/**
|
|
1786
|
+
* List commands
|
|
1787
|
+
*
|
|
1788
|
+
* Get a list of all available commands in the OpenCode system.
|
|
1789
|
+
*/
|
|
1790
|
+
list(parameters, options) {
|
|
1791
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1792
|
+
return (options?.client ?? this.client).get({
|
|
1793
|
+
url: "/command",
|
|
1794
|
+
...options,
|
|
1795
|
+
...params,
|
|
1796
|
+
});
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1799
|
+
export class App extends HeyApiClient {
|
|
1800
|
+
/**
|
|
1801
|
+
* Write log
|
|
1802
|
+
*
|
|
1803
|
+
* Write a log entry to the server logs with specified level and metadata.
|
|
1804
|
+
*/
|
|
1805
|
+
log(parameters, options) {
|
|
1806
|
+
const params = buildClientParams([parameters], [
|
|
1807
|
+
{
|
|
1808
|
+
args: [
|
|
1809
|
+
{ in: "query", key: "directory" },
|
|
1810
|
+
{ in: "body", key: "service" },
|
|
1811
|
+
{ in: "body", key: "level" },
|
|
1812
|
+
{ in: "body", key: "message" },
|
|
1813
|
+
{ in: "body", key: "extra" },
|
|
1814
|
+
],
|
|
1815
|
+
},
|
|
1816
|
+
]);
|
|
1817
|
+
return (options?.client ?? this.client).post({
|
|
1818
|
+
url: "/log",
|
|
1819
|
+
...options,
|
|
1820
|
+
...params,
|
|
1821
|
+
headers: {
|
|
1822
|
+
"Content-Type": "application/json",
|
|
1823
|
+
...options?.headers,
|
|
1824
|
+
...params.headers,
|
|
1825
|
+
},
|
|
1826
|
+
});
|
|
1827
|
+
}
|
|
1828
|
+
/**
|
|
1829
|
+
* List agents
|
|
1830
|
+
*
|
|
1831
|
+
* Get a list of all available AI agents in the OpenCode system.
|
|
1832
|
+
*/
|
|
1833
|
+
agents(parameters, options) {
|
|
1834
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1835
|
+
return (options?.client ?? this.client).get({
|
|
1836
|
+
url: "/agent",
|
|
1837
|
+
...options,
|
|
1838
|
+
...params,
|
|
1839
|
+
});
|
|
1840
|
+
}
|
|
1841
|
+
/**
|
|
1842
|
+
* List skills
|
|
1843
|
+
*
|
|
1844
|
+
* Get a list of all available skills in the OpenCode system.
|
|
1845
|
+
*/
|
|
1846
|
+
skills(parameters, options) {
|
|
1847
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1848
|
+
return (options?.client ?? this.client).get({
|
|
1849
|
+
url: "/skill",
|
|
1850
|
+
...options,
|
|
1851
|
+
...params,
|
|
1852
|
+
});
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
export class Lsp extends HeyApiClient {
|
|
1856
|
+
/**
|
|
1857
|
+
* Get LSP status
|
|
1858
|
+
*
|
|
1859
|
+
* Get LSP server status
|
|
1860
|
+
*/
|
|
1861
|
+
status(parameters, options) {
|
|
1862
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1863
|
+
return (options?.client ?? this.client).get({
|
|
1864
|
+
url: "/lsp",
|
|
1865
|
+
...options,
|
|
1866
|
+
...params,
|
|
1867
|
+
});
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
export class Formatter extends HeyApiClient {
|
|
1871
|
+
/**
|
|
1872
|
+
* Get formatter status
|
|
1873
|
+
*
|
|
1874
|
+
* Get formatter status
|
|
1875
|
+
*/
|
|
1876
|
+
status(parameters, options) {
|
|
1877
|
+
const params = buildClientParams([parameters], [{ args: [{ in: "query", key: "directory" }] }]);
|
|
1878
|
+
return (options?.client ?? this.client).get({
|
|
1879
|
+
url: "/formatter",
|
|
1880
|
+
...options,
|
|
1881
|
+
...params,
|
|
1882
|
+
});
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
export class Auth2 extends HeyApiClient {
|
|
1886
|
+
/**
|
|
1887
|
+
* Set auth credentials
|
|
1888
|
+
*
|
|
1889
|
+
* Set authentication credentials
|
|
1890
|
+
*/
|
|
1891
|
+
set(parameters, options) {
|
|
1892
|
+
const params = buildClientParams([parameters], [
|
|
1893
|
+
{
|
|
1894
|
+
args: [
|
|
1895
|
+
{ in: "path", key: "providerID" },
|
|
1896
|
+
{ in: "query", key: "directory" },
|
|
1897
|
+
{ key: "auth", map: "body" },
|
|
1898
|
+
],
|
|
1899
|
+
},
|
|
1900
|
+
]);
|
|
1901
|
+
return (options?.client ?? this.client).put({
|
|
1902
|
+
url: "/auth/{providerID}",
|
|
1903
|
+
...options,
|
|
1904
|
+
...params,
|
|
1905
|
+
headers: {
|
|
1906
|
+
"Content-Type": "application/json",
|
|
1907
|
+
...options?.headers,
|
|
1908
|
+
...params.headers,
|
|
1909
|
+
},
|
|
1910
|
+
});
|
|
1911
|
+
}
|
|
1885
1912
|
}
|
|
1886
1913
|
export class Event extends HeyApiClient {
|
|
1887
1914
|
/**
|
|
@@ -1904,29 +1931,104 @@ export class OpencodeClient extends HeyApiClient {
|
|
|
1904
1931
|
super(args);
|
|
1905
1932
|
OpencodeClient.__registry.set(this, args?.key);
|
|
1906
1933
|
}
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1934
|
+
_global;
|
|
1935
|
+
get global() {
|
|
1936
|
+
return (this._global ??= new Global({ client: this.client }));
|
|
1937
|
+
}
|
|
1938
|
+
_project;
|
|
1939
|
+
get project() {
|
|
1940
|
+
return (this._project ??= new Project({ client: this.client }));
|
|
1941
|
+
}
|
|
1942
|
+
_pty;
|
|
1943
|
+
get pty() {
|
|
1944
|
+
return (this._pty ??= new Pty({ client: this.client }));
|
|
1945
|
+
}
|
|
1946
|
+
_config;
|
|
1947
|
+
get config() {
|
|
1948
|
+
return (this._config ??= new Config({ client: this.client }));
|
|
1949
|
+
}
|
|
1950
|
+
_tool;
|
|
1951
|
+
get tool() {
|
|
1952
|
+
return (this._tool ??= new Tool({ client: this.client }));
|
|
1953
|
+
}
|
|
1954
|
+
_worktree;
|
|
1955
|
+
get worktree() {
|
|
1956
|
+
return (this._worktree ??= new Worktree({ client: this.client }));
|
|
1957
|
+
}
|
|
1958
|
+
_experimental;
|
|
1959
|
+
get experimental() {
|
|
1960
|
+
return (this._experimental ??= new Experimental({ client: this.client }));
|
|
1961
|
+
}
|
|
1962
|
+
_session;
|
|
1963
|
+
get session() {
|
|
1964
|
+
return (this._session ??= new Session({ client: this.client }));
|
|
1965
|
+
}
|
|
1966
|
+
_part;
|
|
1967
|
+
get part() {
|
|
1968
|
+
return (this._part ??= new Part({ client: this.client }));
|
|
1969
|
+
}
|
|
1970
|
+
_permission;
|
|
1971
|
+
get permission() {
|
|
1972
|
+
return (this._permission ??= new Permission({ client: this.client }));
|
|
1973
|
+
}
|
|
1974
|
+
_question;
|
|
1975
|
+
get question() {
|
|
1976
|
+
return (this._question ??= new Question({ client: this.client }));
|
|
1977
|
+
}
|
|
1978
|
+
_provider;
|
|
1979
|
+
get provider() {
|
|
1980
|
+
return (this._provider ??= new Provider({ client: this.client }));
|
|
1981
|
+
}
|
|
1982
|
+
_find;
|
|
1983
|
+
get find() {
|
|
1984
|
+
return (this._find ??= new Find({ client: this.client }));
|
|
1985
|
+
}
|
|
1986
|
+
_file;
|
|
1987
|
+
get file() {
|
|
1988
|
+
return (this._file ??= new File({ client: this.client }));
|
|
1989
|
+
}
|
|
1990
|
+
_mcp;
|
|
1991
|
+
get mcp() {
|
|
1992
|
+
return (this._mcp ??= new Mcp({ client: this.client }));
|
|
1993
|
+
}
|
|
1994
|
+
_tui;
|
|
1995
|
+
get tui() {
|
|
1996
|
+
return (this._tui ??= new Tui({ client: this.client }));
|
|
1997
|
+
}
|
|
1998
|
+
_instance;
|
|
1999
|
+
get instance() {
|
|
2000
|
+
return (this._instance ??= new Instance({ client: this.client }));
|
|
2001
|
+
}
|
|
2002
|
+
_path;
|
|
2003
|
+
get path() {
|
|
2004
|
+
return (this._path ??= new Path({ client: this.client }));
|
|
2005
|
+
}
|
|
2006
|
+
_vcs;
|
|
2007
|
+
get vcs() {
|
|
2008
|
+
return (this._vcs ??= new Vcs({ client: this.client }));
|
|
2009
|
+
}
|
|
2010
|
+
_command;
|
|
2011
|
+
get command() {
|
|
2012
|
+
return (this._command ??= new Command({ client: this.client }));
|
|
2013
|
+
}
|
|
2014
|
+
_app;
|
|
2015
|
+
get app() {
|
|
2016
|
+
return (this._app ??= new App({ client: this.client }));
|
|
2017
|
+
}
|
|
2018
|
+
_lsp;
|
|
2019
|
+
get lsp() {
|
|
2020
|
+
return (this._lsp ??= new Lsp({ client: this.client }));
|
|
2021
|
+
}
|
|
2022
|
+
_formatter;
|
|
2023
|
+
get formatter() {
|
|
2024
|
+
return (this._formatter ??= new Formatter({ client: this.client }));
|
|
2025
|
+
}
|
|
2026
|
+
_auth;
|
|
2027
|
+
get auth() {
|
|
2028
|
+
return (this._auth ??= new Auth2({ client: this.client }));
|
|
2029
|
+
}
|
|
2030
|
+
_event;
|
|
2031
|
+
get event() {
|
|
2032
|
+
return (this._event ??= new Event({ client: this.client }));
|
|
2033
|
+
}
|
|
1932
2034
|
}
|