@relicx_/kernel 1.1.51 → 1.1.53
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/index.d.ts +3 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -224,6 +224,7 @@ interface ISQLInterface {
|
|
|
224
224
|
GetRecordset(): any;
|
|
225
225
|
}
|
|
226
226
|
declare class SQLConnection extends DBConnection implements ISQLInterface {
|
|
227
|
+
private m_cfg;
|
|
227
228
|
private m_conn;
|
|
228
229
|
private m_request;
|
|
229
230
|
private m_procedureresult;
|
|
@@ -233,6 +234,7 @@ declare class SQLConnection extends DBConnection implements ISQLInterface {
|
|
|
233
234
|
private m_command;
|
|
234
235
|
constructor(cfg: any);
|
|
235
236
|
CheckStatus(): Promise<boolean>;
|
|
237
|
+
private CreatePool;
|
|
236
238
|
ResetParameter(): void;
|
|
237
239
|
AddParameter(key: string, type: mssql.ISqlType, value: any): void;
|
|
238
240
|
AddParameterOutput(key: string, type: mssql.ISqlType): void;
|
|
@@ -934,4 +936,4 @@ declare class Validate {
|
|
|
934
936
|
static IsExpired(uSeconds: number): boolean;
|
|
935
937
|
}
|
|
936
938
|
|
|
937
|
-
export { AppsflyerAds, type AppsflyerAdsEvent, Base64Encode, BigMap, ConnId, ConnStatus, CreateAdWorker, CreateDatabase, CreateFileCache, CreateHTTPWorker, CreateNetworker, CreateResourceLoader, CreateScriptLoader, CreateTimer, DBConnection, Database, Decrypt, type DeserializeFunc, Deserialize_KernelHeartbeat, Encrypt, EncryptFile, FacebookAds, type FacebookAdsEvent, GAdWorker, GConfig, GDatabase, GFileCache, GGameApplication, GHttpWorker, GListHeadIterManager, GNetWorker, GPercentBase, GRandRatioBase, GResourceLoader, GScriptLoader, GTimer, GameApplication, GeoIP, type GetMessageSizeFunc, GetMessageSize_KernelHeartbeat, GoogleAds, type GoogleAdsEvent, HMACSHA1, HMACSHA1Base64, HMACSHA256, HTTPRequest, HitRate, type IPCache, type IRedisInterface, type ISQLInterface, type ITimerEvent, InitList, IsLocal, type JsonBody, type KernelHeartbeat, KernelMessageId, KwaiAds, List, ListAdd, ListAddHead, ListAddTail, ListDel, ListHead, ListInit, ListRemoveHead, ListRemoveTail, LoadGlobalConfig, Logger, MD5, MakeSocketId, type MessageDealerFunc, Module, type NetConfigure, NetConnection, Random, RedisConnection, ResTypes, RoundId, SHA256, SQLConnection, type SerializeFunc, Serialize_KernelHeartbeat, Thread, Timer, Utils, Validate, WSCloseReason };
|
|
939
|
+
export { AppsflyerAds, type AppsflyerAdsEvent, Base64Encode, BigMap, type Configure, ConnId, ConnStatus, CreateAdWorker, CreateDatabase, CreateFileCache, CreateHTTPWorker, CreateNetworker, CreateResourceLoader, CreateScriptLoader, CreateTimer, DBConnection, Database, Decrypt, type DeserializeFunc, Deserialize_KernelHeartbeat, Encrypt, EncryptFile, FacebookAds, type FacebookAdsEvent, GAdWorker, GConfig, GDatabase, GFileCache, GGameApplication, GHttpWorker, GListHeadIterManager, GNetWorker, GPercentBase, GRandRatioBase, GResourceLoader, GScriptLoader, GTimer, GameApplication, GeoIP, type GetMessageSizeFunc, GetMessageSize_KernelHeartbeat, GoogleAds, type GoogleAdsEvent, HMACSHA1, HMACSHA1Base64, HMACSHA256, HTTPRequest, HitRate, type IPCache, type IRedisInterface, type ISQLInterface, type ITimerEvent, InitList, IsLocal, type JsonBody, type KernelHeartbeat, KernelMessageId, KwaiAds, List, ListAdd, ListAddHead, ListAddTail, ListDel, ListHead, ListInit, ListRemoveHead, ListRemoveTail, LoadGlobalConfig, Logger, MD5, MakeSocketId, type MessageDealerFunc, Module, type NetConfigure, NetConnection, Random, RedisConnection, ResTypes, RoundId, SHA256, SQLConnection, type SerializeFunc, Serialize_KernelHeartbeat, Thread, Timer, Utils, Validate, WSCloseReason };
|