chz-telegram-bot 0.1.4 → 0.1.5

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/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { botOrchestrator } from './main';
2
+ export { InlineQueryActionBuilder } from './helpers/builders/inlineQueryActionBuilder';
2
3
  export { CommandActionBuilder } from './helpers/builders/commandActionBuilder';
3
4
  export { CommandActionBuilderWithState } from './helpers/builders/commandActionBuilder';
4
5
  export { IStorageClient } from './types/storage';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AACzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qBAAqB,CAAC;AACpC,cAAc,mCAAmC,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAC;AACvF,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAC/E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qBAAqB,CAAC;AACpC,cAAc,mCAAmC,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
package/dist/index.js CHANGED
@@ -14,9 +14,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.MessageType = exports.CommandActionBuilderWithState = exports.CommandActionBuilder = exports.botOrchestrator = void 0;
17
+ exports.MessageType = exports.CommandActionBuilderWithState = exports.CommandActionBuilder = exports.InlineQueryActionBuilder = exports.botOrchestrator = void 0;
18
18
  var main_1 = require("./main");
19
19
  Object.defineProperty(exports, "botOrchestrator", { enumerable: true, get: function () { return main_1.botOrchestrator; } });
20
+ var inlineQueryActionBuilder_1 = require("./helpers/builders/inlineQueryActionBuilder");
21
+ Object.defineProperty(exports, "InlineQueryActionBuilder", { enumerable: true, get: function () { return inlineQueryActionBuilder_1.InlineQueryActionBuilder; } });
20
22
  var commandActionBuilder_1 = require("./helpers/builders/commandActionBuilder");
21
23
  Object.defineProperty(exports, "CommandActionBuilder", { enumerable: true, get: function () { return commandActionBuilder_1.CommandActionBuilder; } });
22
24
  var commandActionBuilder_2 = require("./helpers/builders/commandActionBuilder");
package/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { botOrchestrator } from './main';
2
+ export { InlineQueryActionBuilder } from './helpers/builders/inlineQueryActionBuilder';
2
3
  export { CommandActionBuilder } from './helpers/builders/commandActionBuilder';
3
4
  export { CommandActionBuilderWithState } from './helpers/builders/commandActionBuilder';
4
5
  export { IStorageClient } from './types/storage';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chz-telegram-bot",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "async-sema": "^3.1.1",