Add subscription support + license extension on renewal

This commit is contained in:
Krystie
2026-08-19 12:45:06 -07:00
parent 14d0eaa2b3
commit ff722aa4d8
2075 changed files with 357707 additions and 63 deletions
+24
View File
@@ -0,0 +1,24 @@
/// <reference types="node" />
/// <reference types="node" />
import * as http_ from 'http';
import * as https_ from 'https';
import { RequestHeaders } from '../Types.js';
import { HttpClient, HttpClientResponse, NodeHttpClientInterface, NodeHttpClientResponseInterface } from './HttpClient.js';
/**
* HTTP client which uses the Node `http` and `https` packages to issue
* requests.`
*/
export declare class NodeHttpClient extends HttpClient implements NodeHttpClientInterface {
_agent?: http_.Agent | https_.Agent | undefined;
constructor(agent?: http_.Agent | https_.Agent);
/** @override. */
getClientName(): string;
makeRequest(host: string, port: string, path: string, method: string, headers: RequestHeaders, requestData: string, protocol: string, timeout: number): Promise<NodeHttpClientResponseInterface>;
}
export declare class NodeHttpClientResponse extends HttpClientResponse implements NodeHttpClientResponseInterface {
_res: http_.IncomingMessage;
constructor(res: http_.IncomingMessage);
getRawResponse(): http_.IncomingMessage;
toStream(streamCompleteCallback: () => void): http_.IncomingMessage;
toJSON(): any;
}