@smartico/public-api 0.0.349 → 0.0.351

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.
@@ -70,6 +70,12 @@ export declare enum ClassId {
70
70
  GET_RELATED_ACH_N_TOURNAMENTS_RESPONSE = 544,
71
71
  GET_POINT_HISTORY_REQUEST = 545,
72
72
  GET_POINT_HISTORY_RESPONSE = 546,
73
+ GET_AVATARS_LIST_REQUEST = 560,
74
+ GET_AVATARS_LIST_RESPONSE = 561,
75
+ GET_AVATARS_CUSTOMIZED_REQUEST = 562,
76
+ GET_AVATARS_CUSTOMIZED_RESPONSE = 563,
77
+ GET_AVATAR_PROMPTS_REQUEST = 564,
78
+ GET_AVATAR_PROMPTS_RESPONSE = 565,
73
79
  GET_BONUSES_REQUEST = 600,
74
80
  GET_BONUSES_RESPONSE = 601,
75
81
  CLAIM_BONUS_REQUEST = 602,
@@ -185,6 +185,10 @@ declare enum ClassId {
185
185
  ACHIEVEMENT_CLAIM_PRIZE_RESPONSE = 540,
186
186
  ACH_SHOP_ITEM_HISTORY_REQUEST = 541,
187
187
  ACH_SHOP_ITEM_HISTORY_RESPONSE = 542,
188
+ GET_AVATARS_LIST_REQUEST = 560,
189
+ GET_AVATARS_LIST_RESPONSE = 561,
190
+ GET_AVATAR_PROMPTS_REQUEST = 564,
191
+ GET_AVATAR_PROMPTS_RESPONSE = 565,
188
192
  GET_BONUSES_REQUEST = 600,
189
193
  GET_BONUSES_RESPONSE = 601,
190
194
  CLAIM_BONUS_REQUEST = 602,
@@ -17,12 +17,11 @@ export declare class WSAPI {
17
17
  /** @private */
18
18
  clearCaches(): void;
19
19
  /** Returns information about current user
20
- *
20
+ * Pay attention that this method is synchronous and returns the user profile object immediately, not a promise.
21
21
  * **Example**:
22
22
  * ```
23
- * _smartico.api.getUserProfile(result => {
24
- * console.log(result);
25
- * });
23
+ * var p = _smartico.api.getUserProfile);
24
+ * console.log(p);
26
25
  * ```
27
26
  * **Visitor mode: not supported**
28
27
  * */
package/dist/index.js CHANGED
@@ -86,6 +86,12 @@ exports.ClassId = void 0;
86
86
  ClassId[ClassId["GET_RELATED_ACH_N_TOURNAMENTS_RESPONSE"] = 544] = "GET_RELATED_ACH_N_TOURNAMENTS_RESPONSE";
87
87
  ClassId[ClassId["GET_POINT_HISTORY_REQUEST"] = 545] = "GET_POINT_HISTORY_REQUEST";
88
88
  ClassId[ClassId["GET_POINT_HISTORY_RESPONSE"] = 546] = "GET_POINT_HISTORY_RESPONSE";
89
+ ClassId[ClassId["GET_AVATARS_LIST_REQUEST"] = 560] = "GET_AVATARS_LIST_REQUEST";
90
+ ClassId[ClassId["GET_AVATARS_LIST_RESPONSE"] = 561] = "GET_AVATARS_LIST_RESPONSE";
91
+ ClassId[ClassId["GET_AVATARS_CUSTOMIZED_REQUEST"] = 562] = "GET_AVATARS_CUSTOMIZED_REQUEST";
92
+ ClassId[ClassId["GET_AVATARS_CUSTOMIZED_RESPONSE"] = 563] = "GET_AVATARS_CUSTOMIZED_RESPONSE";
93
+ ClassId[ClassId["GET_AVATAR_PROMPTS_REQUEST"] = 564] = "GET_AVATAR_PROMPTS_REQUEST";
94
+ ClassId[ClassId["GET_AVATAR_PROMPTS_RESPONSE"] = 565] = "GET_AVATAR_PROMPTS_RESPONSE";
89
95
  /*
90
96
  !Important, if adding new messages that are 'acting' on behalf of the client,
91
97
  you need to include them in the CLASS_ID_IGNORE_FOR_SIMULATION
@@ -2274,12 +2280,11 @@ var WSAPI = /*#__PURE__*/function () {
2274
2280
  OCache.clearAll();
2275
2281
  }
2276
2282
  /** Returns information about current user
2277
- *
2283
+ * Pay attention that this method is synchronous and returns the user profile object immediately, not a promise.
2278
2284
  * **Example**:
2279
2285
  * ```
2280
- * _smartico.api.getUserProfile(result => {
2281
- * console.log(result);
2282
- * });
2286
+ * var p = _smartico.api.getUserProfile);
2287
+ * console.log(p);
2283
2288
  * ```
2284
2289
  * **Visitor mode: not supported**
2285
2290
  * */;
@@ -3957,12 +3962,14 @@ var ActivityLogTransform = function ActivityLogTransform(items) {
3957
3962
  return [];
3958
3963
  }
3959
3964
  return items.map(function (item) {
3965
+ var _item$type;
3960
3966
  var itemTransformed = {
3961
3967
  create_date: item.create_date,
3962
3968
  user_ext_id: item.user_ext_id,
3963
3969
  crm_brand_id: item.crm_brand_id,
3964
3970
  source_type_id: item.source_type_id
3965
3971
  };
3972
+ item.type = (_item$type = item.type) != null ? _item$type : exports.UserBalanceType.Points;
3966
3973
  if (item.type === exports.UserBalanceType.Diamonds || item.type === exports.UserBalanceType.Gems) {
3967
3974
  itemTransformed.type = item.type;
3968
3975
  itemTransformed.amount = item.amount;