@smartico/public-api 0.0.347 → 0.0.348

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.
@@ -144,6 +144,10 @@ var ClassId;
144
144
  RAF_GET_TICKETS_RESPONSE = 903,
145
145
  RAF_CLAIM_PRIZE_REQUEST = 906,
146
146
  */
147
+ ClassId[ClassId["BNR_GET_BANNER_PLACEMENTS_REQUEST"] = 950] = "BNR_GET_BANNER_PLACEMENTS_REQUEST";
148
+ ClassId[ClassId["BNR_GET_BANNER_PLACEMENTS_RESPONSE"] = 951] = "BNR_GET_BANNER_PLACEMENTS_RESPONSE";
149
+ ClassId[ClassId["BNR_GET_BANNER_CONTENT_REQUEST"] = 952] = "BNR_GET_BANNER_CONTENT_REQUEST";
150
+ ClassId[ClassId["BNR_GET_BANNER_CONTENT_RESPONSE"] = 953] = "BNR_GET_BANNER_CONTENT_RESPONSE";
147
151
  /*
148
152
  !Important, if adding new messages that are 'acting' on behalf of the client,
149
153
  you need to include them in the CLASS_ID_IGNORE_FOR_SIMULATION
@@ -2312,7 +2316,7 @@ class WSAPI {
2312
2316
  async getCurrentLevel() {
2313
2317
  return OCache.use(onUpdateContextKey.CurrentLevel, ECacheContext.WSAPI, () => this.api.getLevelCurrent(null), CACHE_DATA_SEC);
2314
2318
  }
2315
- /** Returns all the missions available the current user.
2319
+ /** Returns all the missions configured for the current user (server-side scoped, not filtered by Widget visibility).
2316
2320
  * The returned missions are cached for 30 seconds. But you can pass the onUpdate callback as a parameter.
2317
2321
  * Note that each time you call getMissions with a new onUpdate callback, the old one will be overwritten by the new one.
2318
2322
  * The onUpdate callback will be called on mission OptIn and the updated missions will be passed to it.
@@ -2537,7 +2541,7 @@ class WSAPI {
2537
2541
  return OCache.use(onUpdateContextKey.CustomSections, ECacheContext.WSAPI, () => this.api.customSectionsGetT(null), CACHE_DATA_SEC);
2538
2542
  }
2539
2543
  /**
2540
- * Returns the list of mini-games available for user
2544
+ * Returns the list of mini-games configured for the current user (not filtered by spin availability or Widget visibility).
2541
2545
  * The returned list of mini-games is cached for 30 seconds. But you can pass the onUpdate callback as a parameter. Note that each time you call getMiniGames with a new onUpdate callback, the old one will be overwritten by the new one.
2542
2546
  * The onUpdate callback will be called on available spin count change, if mini-game has increasing jackpot per spin or wined prize is spin/jackpot and if max count of the available user spin equal one, also if the spins were issued to the user manually in the BO. Updated templates will be passed to onUpdate callback.
2543
2547
  *