@mtkruto/node 0.0.950 → 0.0.951

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.
@@ -548,8 +548,9 @@ export class Client extends ClientAbstract {
548
548
  }
549
549
  const message = new Message_(getMessageId(), seqNo, function_);
550
550
  await this.transport.send(await encryptMessage(message, this.auth.key, this.auth.id, this.state.salt, this.sessionId));
551
- d("invoked %s", function_.constructor.name);
551
+ const d_ = () => d("invoked %s", function_.constructor.name);
552
552
  if (noWait) {
553
+ d_();
553
554
  return;
554
555
  }
555
556
  const result = await new Promise((resolve, reject) => {
@@ -559,6 +560,7 @@ export class Client extends ClientAbstract {
559
560
  return await this.invoke(function_);
560
561
  }
561
562
  else {
563
+ d_();
562
564
  return result;
563
565
  }
564
566
  }
@@ -4,7 +4,7 @@ export declare const publicKeys: Map<bigint, [bigint, bigint]>;
4
4
  export declare const VECTOR_CONSTRUCTOR = 481674261;
5
5
  export declare const DEFAULT_INITIAL_DC: DC;
6
6
  export declare const LAYER = 158;
7
- export declare const DEFAULT_APP_VERSION = "MTKruto 0.0.950";
7
+ export declare const DEFAULT_APP_VERSION = "MTKruto 0.0.951";
8
8
  export declare const DEFAULT_DEVICE_MODEL: string;
9
9
  export declare const DEFAULT_LANG_CODE: string;
10
10
  export declare const DEFAULT_LANG_PACK = "";
package/esm/constants.js CHANGED
@@ -62,7 +62,7 @@ export const publicKeys = new Map([
62
62
  export const VECTOR_CONSTRUCTOR = 0x1CB5C415;
63
63
  export const DEFAULT_INITIAL_DC = "2-test";
64
64
  export const LAYER = 158;
65
- export const DEFAULT_APP_VERSION = "MTKruto 0.0.950";
65
+ export const DEFAULT_APP_VERSION = "MTKruto 0.0.951";
66
66
  // @ts-ignore: lib
67
67
  export const DEFAULT_DEVICE_MODEL = typeof dntShim.Deno === "undefined" ? typeof navigator === "undefined" ? typeof process === "undefined" ? "Unknown" : process.platform + "-" + process.arch : navigator.userAgent.split(" ")[0] : dntShim.Deno.build.os + "-" + dntShim.Deno.build.arch;
68
68
  export const DEFAULT_LANG_CODE = typeof navigator === "undefined" ? "en" : navigator.language.split("-")[0];
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "module": "./esm/mod.js",
3
3
  "main": "./script/mod.js",
4
4
  "name": "@mtkruto/node",
5
- "version": "0.0.950",
5
+ "version": "0.0.951",
6
6
  "description": "MTKruto for Node.js",
7
7
  "author": "Roj <rojvv@icloud.com>",
8
8
  "license": "LGPL-3.0-or-later",
@@ -574,8 +574,9 @@ class Client extends _1_client_abstract_js_1.ClientAbstract {
574
574
  }
575
575
  const message = new _6_message_js_1.Message((0, _0_message_js_1.getMessageId)(), seqNo, function_);
576
576
  await this.transport.send(await (0, _0_message_js_1.encryptMessage)(message, this.auth.key, this.auth.id, this.state.salt, this.sessionId));
577
- d("invoked %s", function_.constructor.name);
577
+ const d_ = () => d("invoked %s", function_.constructor.name);
578
578
  if (noWait) {
579
+ d_();
579
580
  return;
580
581
  }
581
582
  const result = await new Promise((resolve, reject) => {
@@ -585,6 +586,7 @@ class Client extends _1_client_abstract_js_1.ClientAbstract {
585
586
  return await this.invoke(function_);
586
587
  }
587
588
  else {
589
+ d_();
588
590
  return result;
589
591
  }
590
592
  }
@@ -4,7 +4,7 @@ export declare const publicKeys: Map<bigint, [bigint, bigint]>;
4
4
  export declare const VECTOR_CONSTRUCTOR = 481674261;
5
5
  export declare const DEFAULT_INITIAL_DC: DC;
6
6
  export declare const LAYER = 158;
7
- export declare const DEFAULT_APP_VERSION = "MTKruto 0.0.950";
7
+ export declare const DEFAULT_APP_VERSION = "MTKruto 0.0.951";
8
8
  export declare const DEFAULT_DEVICE_MODEL: string;
9
9
  export declare const DEFAULT_LANG_CODE: string;
10
10
  export declare const DEFAULT_LANG_PACK = "";
@@ -88,7 +88,7 @@ exports.publicKeys = new Map([
88
88
  exports.VECTOR_CONSTRUCTOR = 0x1CB5C415;
89
89
  exports.DEFAULT_INITIAL_DC = "2-test";
90
90
  exports.LAYER = 158;
91
- exports.DEFAULT_APP_VERSION = "MTKruto 0.0.950";
91
+ exports.DEFAULT_APP_VERSION = "MTKruto 0.0.951";
92
92
  // @ts-ignore: lib
93
93
  exports.DEFAULT_DEVICE_MODEL = typeof dntShim.Deno === "undefined" ? typeof navigator === "undefined" ? typeof process === "undefined" ? "Unknown" : process.platform + "-" + process.arch : navigator.userAgent.split(" ")[0] : dntShim.Deno.build.os + "-" + dntShim.Deno.build.arch;
94
94
  exports.DEFAULT_LANG_CODE = typeof navigator === "undefined" ? "en" : navigator.language.split("-")[0];