- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
24 lines
1011 B
TypeScript
24 lines
1011 B
TypeScript
import type { ExportResult } from '@opentelemetry/core';
|
|
import type { IExporterTransport } from './exporter-transport';
|
|
import type { IExportPromiseHandler } from './bounded-queue-export-promise-handler';
|
|
import type { ISerializer } from '@opentelemetry/otlp-transformer';
|
|
/**
|
|
* Internally shared export logic for OTLP.
|
|
*/
|
|
export interface IOtlpExportDelegate<Internal> {
|
|
export(internalRepresentation: Internal, resultCallback: (result: ExportResult) => void): void;
|
|
forceFlush(): Promise<void>;
|
|
shutdown(): Promise<void>;
|
|
}
|
|
/**
|
|
* Creates a generic delegate for OTLP exports which only contains parts of the OTLP export that are shared across all
|
|
* signals.
|
|
*/
|
|
export declare function createOtlpExportDelegate<Internal, Response>(components: {
|
|
transport: IExporterTransport;
|
|
serializer: ISerializer<Internal, Response>;
|
|
promiseHandler: IExportPromiseHandler;
|
|
}, settings: {
|
|
timeout: number;
|
|
}): IOtlpExportDelegate<Internal>;
|
|
//# sourceMappingURL=otlp-export-delegate.d.ts.map
|