telegram-bot-api-nodejs 1.0.34 → 1.0.35

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -1
  2. package/index.js +1 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { formatPrice } from "./currencies.js";
1
2
  export type ChatType = "private" | "group" | "supergroup" | "channel";
2
3
  export type ChatAction = "typing" | "upload_photo" | "record_video" | "upload_video" | "record_audio" | "upload_audio" | "upload_document" | "find_location" | "record_video_note" | "upload_video_note";
3
4
  export type ChatMemberStatus = "creator" | "administrator" | "member" | "restricted" | "left" | "kicked";
@@ -772,4 +773,3 @@ export declare function isUpgradeToSupergroupChatError(err: unknown): boolean;
772
773
  export declare function isTextMustBeNonEmptyError(err: unknown): boolean;
773
774
  export declare function isTooManyRequestsError(err: unknown): boolean;
774
775
  export declare function parseRetryAfterTime(err: unknown): number;
775
- export {};
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export { formatPrice } from "./currencies.js";
1
2
  /**
2
3
  * Methods
3
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telegram-bot-api-nodejs",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Telegram Bot API client for nodejs",
5
5
  "type": "module",
6
6
  "main": "index.js",