recker 1.0.102 → 1.0.103
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/clients/index.d.ts +1 -1
- package/dist/clients/index.js +1 -1
- package/dist/clients/reddb-proto.d.ts +1 -0
- package/dist/clients/reddb-proto.js +195 -0
- package/dist/clients/reddb.d.ts +306 -71
- package/dist/clients/reddb.js +1410 -324
- package/dist/protocols/index.d.ts +1 -1
- package/dist/protocols/index.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { FTP, createFTP, ftp, type FTPConfig, type FTPListItem, type FTPTransferProgress, type FTPResponse } from './ftp.js';
|
|
2
2
|
export { SFTP, createSFTP, sftp, type SFTPConfig, type SFTPListItem, type SFTPResponse } from './sftp.js';
|
|
3
3
|
export { Telnet, createTelnet, telnet, type TelnetConfig, type TelnetResponse, type TelnetExecOptions } from './telnet.js';
|
|
4
|
-
export
|
|
4
|
+
export * from '../clients/reddb.js';
|
package/dist/protocols/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { FTP, createFTP, ftp } from './ftp.js';
|
|
2
2
|
export { SFTP, createSFTP, sftp } from './sftp.js';
|
|
3
3
|
export { Telnet, createTelnet, telnet } from './telnet.js';
|
|
4
|
-
export
|
|
4
|
+
export * from '../clients/reddb.js';
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "recker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.103",
|
|
4
4
|
"description": "Multi-Protocol SDK for the AI Era - HTTP, WebSocket, DNS, FTP, SFTP, Telnet, HLS unified with AI providers and MCP tools",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -233,10 +233,12 @@
|
|
|
233
233
|
"provenance": true
|
|
234
234
|
},
|
|
235
235
|
"dependencies": {
|
|
236
|
+
"@grpc/grpc-js": "^1.14.3",
|
|
236
237
|
"@maxmind/geoip2-node": "^6.3.4",
|
|
237
238
|
"cli-args-parser": "^1.0.6",
|
|
238
239
|
"css-select": "^6.0.0",
|
|
239
240
|
"he": "^1.2.0",
|
|
241
|
+
"protobufjs": "^8.0.1",
|
|
240
242
|
"tuiuiu.js": "^1.0.57",
|
|
241
243
|
"undici": "^7.24.3",
|
|
242
244
|
"zod": "^4.3.6"
|
|
@@ -296,6 +298,7 @@
|
|
|
296
298
|
"node-fetch": "^3.3.2",
|
|
297
299
|
"picocolors": "^1.1.1",
|
|
298
300
|
"popsicle": "^12.1.2",
|
|
301
|
+
"protobufjs-cli": "^2.0.1",
|
|
299
302
|
"raffel": "^1.0.18",
|
|
300
303
|
"serve": "^14.2.6",
|
|
301
304
|
"socks": "^2.8.7",
|