telegram-bot-api-nodejs 1.0.33 → 1.0.34

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 (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +3 -2
package/index.d.ts CHANGED
@@ -555,7 +555,7 @@ interface ChosenInlineResult {
555
555
  inline_message_id?: string;
556
556
  query: string;
557
557
  }
558
- interface Invoice {
558
+ export interface Invoice {
559
559
  title: string;
560
560
  description: string;
561
561
  start_parameter: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telegram-bot-api-nodejs",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Telegram Bot API client for nodejs",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -17,7 +17,8 @@
17
17
  "build": "tsc",
18
18
  "watch": "tsc --watch",
19
19
  "pretest": "npm run build",
20
- "test": "node --test"
20
+ "test": "node --test",
21
+ "spec": "node --test spec.js"
21
22
  },
22
23
  "author": "",
23
24
  "license": "ISC",