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
+21
View File
@@ -0,0 +1,21 @@
import { RequestHeaders } from '../Types.js';
import { HttpClient, HttpClientResponse, HttpClientResponseInterface } from './HttpClient.js';
type EndpointFetchResponse = {
status: number;
body?: string | null;
};
export declare class EndpointFetchHttpClient extends HttpClient {
/** @override */
getClientName(): string;
makeRequest(host: string, port: string, path: string, method: string, headers: RequestHeaders, requestData: string, protocol: string, timeout: number): Promise<HttpClientResponseInterface>;
private _getHeaders;
private static _responseFromError;
}
export declare class EndpointFetchHttpClientResponse extends HttpClientResponse {
private _res;
constructor(res: EndpointFetchResponse);
getRawResponse(): EndpointFetchResponse;
toStream(streamCompleteCallback: () => void): never;
toJSON(): Promise<any>;
}
export {};