@smartico/public-api 0.0.127 → 0.0.129

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.
@@ -1683,10 +1683,10 @@ class SmarticoAPI {
1683
1683
  async jackpotGet(user_ext_id, filter) {
1684
1684
  const message = this.buildMessage(user_ext_id, ClassId.JP_GET_JACKPOTS_REQUEST, filter);
1685
1685
  const response = await this.send(message, ClassId.JP_GET_JACKPOTS_RESPONSE);
1686
- return (response == null ? void 0 : response.jackpots) || [];
1686
+ return (response == null ? void 0 : response.items) || [];
1687
1687
  }
1688
1688
  async potGet(user_ext_id, filter) {
1689
- const message = this.buildMessage(user_ext_id, ClassId.JP_GET_JACKPOTS_REQUEST, filter);
1689
+ const message = this.buildMessage(user_ext_id, ClassId.JP_GET_LATEST_POTS_REQUEST, filter);
1690
1690
  const response = await this.send(message, ClassId.JP_GET_LATEST_POTS_RESPONSE);
1691
1691
  return (response == null ? void 0 : response.items) || [];
1692
1692
  }