@smartico/public-api 0.0.268 → 0.0.270

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 (67) hide show
  1. package/dist/Jackpots/JackPotWinner.d.ts +2 -0
  2. package/dist/Jackpots/JackpotDetails.d.ts +2 -0
  3. package/dist/Level/LevelPublicMeta.d.ts +1 -1
  4. package/dist/Quiz/MarketsAnswersType.d.ts +22 -0
  5. package/dist/Raffle/GetDrawResponse.d.ts +5 -0
  6. package/dist/Raffle/Raffle.d.ts +2 -0
  7. package/dist/SmarticoAPI.d.ts +2 -2
  8. package/dist/SmarticoPublicAPI.d.ts +23 -0
  9. package/dist/Store/BuyShopItemErrorCode.d.ts +10 -0
  10. package/dist/Store/BuyShopItemRequest.d.ts +4 -0
  11. package/dist/Store/BuyShopItemResponse.d.ts +4 -0
  12. package/dist/Store/GetCategoriesShopResponse.d.ts +5 -0
  13. package/dist/Store/GetShopItemsResponse.d.ts +5 -0
  14. package/dist/Store/ShopCategory.d.ts +5 -0
  15. package/dist/Store/ShopCategoryPublicMeta.d.ts +4 -0
  16. package/dist/Store/ShopItem.d.ts +9 -0
  17. package/dist/Store/ShopItemPublicMeta.d.ts +10 -0
  18. package/dist/Store/ShopItemType.d.ts +4 -0
  19. package/dist/Store/StorItemPruchased.d.ts +6 -0
  20. package/dist/index.js +6 -6
  21. package/dist/index.js.map +1 -1
  22. package/dist/index.modern.mjs +6 -6
  23. package/dist/index.modern.mjs.map +1 -1
  24. package/dist/service/index.d.ts +5 -0
  25. package/dist/service/types/ErrorCodes.d.ts +13 -0
  26. package/dist/service/types/GRequest.d.ts +16 -0
  27. package/dist/service/types/GResponse.d.ts +10 -0
  28. package/dist/service/types/Game/GameAttemptType.d.ts +6 -0
  29. package/dist/service/types/Game/GameCanPlayType.d.ts +10 -0
  30. package/dist/service/types/Game/GameExternalStatus.d.ts +6 -0
  31. package/dist/service/types/Game/GameInfo.d.ts +9 -0
  32. package/dist/service/types/Game/GamePick.d.ts +90 -0
  33. package/dist/service/types/Game/GameUtil.d.ts +7 -0
  34. package/dist/service/types/SmarticoProto/GetTranslationsRequest.d.ts +7 -0
  35. package/dist/service/types/SmarticoProto/GetTranslationsResponse.d.ts +7 -0
  36. package/dist/service/types/SmarticoProto/ProtocolMessage.d.ts +5 -0
  37. package/dist/service/types/SmarticoProto/ProtocolRequest.d.ts +6 -0
  38. package/dist/service/types/SmarticoProto/ProtocolResponse.d.ts +5 -0
  39. package/dist/service/types/SmarticoProto/PublicLabelInfo.d.ts +34 -0
  40. package/dist/service/types/SmarticoProto/PublicProperties.d.ts +11 -0
  41. package/dist/service/types/SmarticoProto/ResponseIdentify.d.ts +12 -0
  42. package/dist/service/types/SmarticoProto/SAW/SAWAcknowledgeType.d.ts +5 -0
  43. package/dist/service/types/SmarticoProto/SAW/SAWBuyInType.d.ts +5 -0
  44. package/dist/service/types/SmarticoProto/SAW/SAWDoSpinRequest.d.ts +5 -0
  45. package/dist/service/types/SmarticoProto/SAW/SAWDoSpinResponse.d.ts +15 -0
  46. package/dist/service/types/SmarticoProto/SAW/SAWGameType.d.ts +10 -0
  47. package/dist/service/types/SmarticoProto/SAW/SAWGetTemplatesRequest.d.ts +3 -0
  48. package/dist/service/types/SmarticoProto/SAW/SAWGetTemplatesResponse.d.ts +5 -0
  49. package/dist/service/types/SmarticoProto/SAW/SAWPrize.d.ts +11 -0
  50. package/dist/service/types/SmarticoProto/SAW/SAWPrizeType.d.ts +8 -0
  51. package/dist/service/types/SmarticoProto/SAW/SAWPrizeUI.d.ts +13 -0
  52. package/dist/service/types/SmarticoProto/SAW/SAWTemplate.d.ts +21 -0
  53. package/dist/service/types/SmarticoProto/SAW/SAWTemplateUI.d.ts +31 -0
  54. package/dist/service/types/SmarticoProto/SAW/SAWWinSoundType.d.ts +12 -0
  55. package/dist/service/types/SmarticoProto/TranslationArea.d.ts +9 -0
  56. package/dist/service/types/User/UserInfo.d.ts +10 -0
  57. package/dist/util/Util.d.ts +51 -0
  58. package/docs/interfaces/JackPotWinner.md +8 -0
  59. package/docs/interfaces/JackpotDetails.md +8 -0
  60. package/package.json +1 -1
  61. package/src/CustomSections/UICustomSection.ts +1 -1
  62. package/src/Jackpots/JackPotWinner.ts +2 -0
  63. package/src/Jackpots/JackpotDetails.ts +2 -1
  64. package/src/Level/LevelPublicMeta.ts +1 -1
  65. package/src/Raffle/Raffle.ts +2 -1
  66. package/src/SmarticoAPI.ts +4 -4
  67. package/src/WSAPI/WSAPI.ts +1 -1
@@ -2169,7 +2169,7 @@ class WSAPI {
2169
2169
  *
2170
2170
  * */
2171
2171
  async getCustomSections() {
2172
- return OCache.use(onUpdateContextKey.CustomSections, ECacheContext.WSAPI, () => this.api.getCustomSectionsT(null), CACHE_DATA_SEC);
2172
+ return OCache.use(onUpdateContextKey.CustomSections, ECacheContext.WSAPI, () => this.api.customSectionsGetT(null), CACHE_DATA_SEC);
2173
2173
  }
2174
2174
  /**
2175
2175
  * Returns the list of mini-games available for user
@@ -2841,7 +2841,7 @@ var AchOverviewMissionsFilter;
2841
2841
 
2842
2842
  const UICustomSectionTransform = response => {
2843
2843
  const items = [];
2844
- Object.keys(response.customSections).forEach(key => {
2844
+ Object.keys(response.customSections || []).forEach(key => {
2845
2845
  const r = response.customSections[key];
2846
2846
  const id = parseInt(key);
2847
2847
  if (r.section_type_id !== undefined && r.section_type_id >= 1) {
@@ -3498,12 +3498,12 @@ class SmarticoAPI {
3498
3498
  async levelsGetT(user_ext_id) {
3499
3499
  return GetLevelMapResponseTransform(await this.levelsGet(user_ext_id));
3500
3500
  }
3501
- async getCustomSections(user_ext_id) {
3501
+ async customSectionsGet(user_ext_id, force_language) {
3502
3502
  const message = this.buildMessage(user_ext_id, ClassId.GET_CUSTOM_SECTIONS_REQUEST);
3503
- return await this.send(message, ClassId.GET_CUSTOM_SECTIONS_RESPONSE);
3503
+ return await this.send(message, ClassId.GET_CUSTOM_SECTIONS_RESPONSE, force_language);
3504
3504
  }
3505
- async getCustomSectionsT(user_ext_id) {
3506
- return UICustomSectionTransform(await this.getCustomSections(user_ext_id));
3505
+ async customSectionsGetT(user_ext_id) {
3506
+ return UICustomSectionTransform(await this.customSectionsGet(user_ext_id));
3507
3507
  }
3508
3508
  async getTranslationsT(user_ext_id, lang_code, areas, cacheSec = 60) {
3509
3509
  return await this.coreGetTranslations(user_ext_id, lang_code, areas, 30);