feat(unifi): implement comprehensive UniFi API client with controllers, protect, access, account, managers, resources, HTTP client, interfaces, logging, plugins, and tests

This commit is contained in:
2026-02-02 15:46:41 +00:00
parent aaa9e67835
commit 740b70cd83
38 changed files with 6275 additions and 15 deletions

View File

@@ -4,6 +4,14 @@ import * as path from 'path';
export { path };
// @push.rocks scope
import * as smartlog from '@push.rocks/smartlog';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartstring from '@push.rocks/smartstring';
export { smartpath };
export { smartlog, smartpath, smartpromise, smartrequest, smartstring };
// Re-export smartrequest types
export type { IExtendedIncomingMessage } from '@push.rocks/smartrequest';
export { SmartRequestClient } from '@push.rocks/smartrequest';