@balancy/wasm 1.0.24 → 1.0.26

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/Balancy.wasm CHANGED
Binary file
package/dist/index.cjs.js CHANGED
@@ -388,7 +388,7 @@ var Balancy = function() {
388
388
  "__Z30jsbalancyDataObjectViewPreloadNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE",
389
389
  "_balancySetUnzipCallback",
390
390
  "__Z23jsbalancyUnzipCompletedNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES5_",
391
- "__Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE",
391
+ "__Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE",
392
392
  "_balancySetDataRequestedCallback",
393
393
  "_balancyViewAllowOptimization",
394
394
  "_balancyConfigLaunch",
@@ -417,6 +417,8 @@ var Balancy = function() {
417
417
  "__Z35jsbalancyDailyBonus_claimNextRewardPN7Balancy4Data8BaseDataE",
418
418
  "__Z38jsbalancyDailyBonus_canClaimNextRewardPN7Balancy4Data8BaseDataE",
419
419
  "__Z47jsbalancyDailyBonus_getSecondsTillTheNextRewardPN7Balancy4Data8BaseDataE",
420
+ "__Z31jsbalancyBattlePass_claimRewardPN7Balancy4Data8BaseDataEi",
421
+ "__Z35jsbalancyBattlePass_getRewardStatusPN7Balancy4Data8BaseDataEi",
420
422
  "__Z35jsbalancyOfferGroupInfo_CanPurchasePN7Balancy4Data8BaseDataEPNS_5Utils15JsonBasedObjectE",
421
423
  "__Z51jsbalancyOfferInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE",
422
424
  "__Z51jsbalancyEventInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE",
@@ -434,7 +436,10 @@ var Balancy = function() {
434
436
  "__Z18jsbalancyGetStatusv",
435
437
  "_balancyGetTimeOffset",
436
438
  "_balancySetTimeOffset",
437
- "__Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEb",
439
+ "__Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEib",
440
+ "_emscripten_websocket_on_connection_status",
441
+ "_emscripten_websocket_on_socketio_event",
442
+ "_emscripten_websocket_on_socketio_error",
438
443
  "_downloadSucceededBinary",
439
444
  "_fetchSucceededBinary",
440
445
  "_js_fetch",
@@ -511,13 +516,23 @@ var Balancy = function() {
511
516
  "_balancyDailyBonus_claimNextReward",
512
517
  "_balancyDailyBonus_canClaimNextReward",
513
518
  "_balancyDailyBonus_getSecondsTillTheNextReward",
519
+ "_balancyBattlePass_claimReward",
520
+ "_balancyBattlePass_getRewardStatus",
514
521
  "_balancySoftPurchaseStoreItem",
515
522
  "_balancySoftPurchaseShopSlot",
516
523
  "_balancySoftPurchaseGameOffer",
517
524
  "_balancySoftPurchaseGameOfferGroup",
525
+ "__Z22_balancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFvS5_EEE",
518
526
  "_balancyWebViewRequest",
519
527
  "_balancyGetProductsIdAndType",
520
528
  "_balancyGetParsedObject",
529
+ "_js_call_typescript_bridge_connect",
530
+ "_js_call_typescript_bridge_disconnect",
531
+ "_js_call_typescript_bridge_is_connected",
532
+ "_js_call_typescript_bridge_subscribe",
533
+ "_js_call_typescript_bridge_send_message",
534
+ "_js_call_typescript_bridge_send_ack",
535
+ "_js_initialize_typescript_bridge",
521
536
  "_main",
522
537
  "onRuntimeInitialized"
523
538
  ].forEach(function(prop) {
@@ -1320,6 +1335,276 @@ var Balancy = function() {
1320
1335
  invokeErrorCallback(-1, error.message, callbackPtr);
1321
1336
  });
1322
1337
  }
1338
+ function js_call_typescript_bridge_connect(connectionId, url, authData) {
1339
+ if (typeof Module !== "undefined" && Module.typescript_websocket_connect_request) {
1340
+ try {
1341
+ var urlStr = UTF8ToString(url);
1342
+ var authStr = UTF8ToString(authData);
1343
+ console.log("[C++ -> TS Bridge] Connect request", connectionId, urlStr);
1344
+ Module.typescript_websocket_connect_request(connectionId, urlStr, authStr);
1345
+ return true;
1346
+ } catch (error) {
1347
+ console.error("[ERROR] calling typescript_websocket_connect_request via Module:", error);
1348
+ }
1349
+ }
1350
+ if (typeof window !== "undefined" && window.Module && window.Module.typescript_websocket_connect_request) {
1351
+ try {
1352
+ var urlStr1 = UTF8ToString(url);
1353
+ var authStr1 = UTF8ToString(authData);
1354
+ console.log("[C++ -> TS Bridge] Connect request via window.Module", connectionId, urlStr1);
1355
+ window.Module.typescript_websocket_connect_request(connectionId, urlStr1, authStr1);
1356
+ return true;
1357
+ } catch (error) {
1358
+ console.error("[ERROR] calling typescript_websocket_connect_request via window.Module:", error);
1359
+ }
1360
+ }
1361
+ if (typeof globalThis !== "undefined" && globalThis.Module && globalThis.Module.typescript_websocket_connect_request) {
1362
+ try {
1363
+ var urlStr2 = UTF8ToString(url);
1364
+ var authStr2 = UTF8ToString(authData);
1365
+ console.log("[C++ -> TS Bridge] Connect request via globalThis.Module", connectionId, urlStr2);
1366
+ globalThis.Module.typescript_websocket_connect_request(connectionId, urlStr2, authStr2);
1367
+ return true;
1368
+ } catch (error) {
1369
+ console.error("[ERROR] calling typescript_websocket_connect_request via globalThis.Module:", error);
1370
+ }
1371
+ }
1372
+ console.error("[ERROR] TypeScript WebSocket Bridge connect method not found. Available contexts:", {
1373
+ Module: typeof Module !== "undefined" ? Object.keys(Module).filter(function(k) {
1374
+ return k.includes("websocket") || k.includes("typescript");
1375
+ }) : "undefined",
1376
+ windowModule: typeof window !== "undefined" && window.Module ? Object.keys(window.Module).filter(function(k) {
1377
+ return k.includes("websocket") || k.includes("typescript");
1378
+ }) : "undefined",
1379
+ globalThisModule: typeof globalThis !== "undefined" && globalThis.Module ? Object.keys(globalThis.Module).filter(function(k) {
1380
+ return k.includes("websocket") || k.includes("typescript");
1381
+ }) : "undefined"
1382
+ });
1383
+ return false;
1384
+ }
1385
+ function js_call_typescript_bridge_disconnect(connectionId) {
1386
+ var success = false;
1387
+ if (typeof Module !== "undefined" && Module.typescript_websocket_disconnect_request) {
1388
+ try {
1389
+ console.log("[C++ -> TS Bridge] Disconnect request", connectionId);
1390
+ Module.typescript_websocket_disconnect_request(connectionId);
1391
+ success = true;
1392
+ } catch (error) {
1393
+ console.error("[ERROR] calling typescript_websocket_disconnect_request via Module:", error);
1394
+ }
1395
+ }
1396
+ if (!success && typeof window !== "undefined" && window.Module && window.Module.typescript_websocket_disconnect_request) {
1397
+ try {
1398
+ console.log("[C++ -> TS Bridge] Disconnect request via window.Module", connectionId);
1399
+ window.Module.typescript_websocket_disconnect_request(connectionId);
1400
+ success = true;
1401
+ } catch (error) {
1402
+ console.error("[ERROR] calling typescript_websocket_disconnect_request via window.Module:", error);
1403
+ }
1404
+ }
1405
+ if (!success && typeof globalThis !== "undefined" && globalThis.Module && globalThis.Module.typescript_websocket_disconnect_request) {
1406
+ try {
1407
+ console.log("[C++ -> TS Bridge] Disconnect request via globalThis.Module", connectionId);
1408
+ globalThis.Module.typescript_websocket_disconnect_request(connectionId);
1409
+ success = true;
1410
+ } catch (error) {
1411
+ console.error("[ERROR] calling typescript_websocket_disconnect_request via globalThis.Module:", error);
1412
+ }
1413
+ }
1414
+ if (!success) {
1415
+ console.error("[ERROR] TypeScript WebSocket Bridge disconnect method not found");
1416
+ }
1417
+ }
1418
+ function js_call_typescript_bridge_subscribe(connectionId, eventName) {
1419
+ var success = false;
1420
+ if (typeof Module !== "undefined" && Module.typescript_websocket_subscribe_event) {
1421
+ try {
1422
+ var eventStr = UTF8ToString(eventName);
1423
+ console.log("[C++ -> TS Bridge] Subscribe event", connectionId, eventStr);
1424
+ Module.typescript_websocket_subscribe_event(connectionId, eventStr);
1425
+ success = true;
1426
+ } catch (error) {
1427
+ console.error("[ERROR] calling typescript_websocket_subscribe_event via Module:", error);
1428
+ }
1429
+ }
1430
+ if (!success && typeof window !== "undefined" && window.Module && window.Module.typescript_websocket_subscribe_event) {
1431
+ try {
1432
+ var eventStr1 = UTF8ToString(eventName);
1433
+ console.log("[C++ -> TS Bridge] Subscribe event via window.Module", connectionId, eventStr1);
1434
+ window.Module.typescript_websocket_subscribe_event(connectionId, eventStr1);
1435
+ success = true;
1436
+ } catch (error) {
1437
+ console.error("[ERROR] calling typescript_websocket_subscribe_event via window.Module:", error);
1438
+ }
1439
+ }
1440
+ if (!success && typeof globalThis !== "undefined" && globalThis.Module && globalThis.Module.typescript_websocket_subscribe_event) {
1441
+ try {
1442
+ var eventStr2 = UTF8ToString(eventName);
1443
+ console.log("[C++ -> TS Bridge] Subscribe event via globalThis.Module", connectionId, eventStr2);
1444
+ globalThis.Module.typescript_websocket_subscribe_event(connectionId, eventStr2);
1445
+ success = true;
1446
+ } catch (error) {
1447
+ console.error("[ERROR] calling typescript_websocket_subscribe_event via globalThis.Module:", error);
1448
+ }
1449
+ }
1450
+ if (!success) {
1451
+ console.error("[ERROR] TypeScript WebSocket Bridge subscribe method not found");
1452
+ }
1453
+ }
1454
+ function js_call_typescript_bridge_send_message(connectionId, eventName, data) {
1455
+ var success = false;
1456
+ if (typeof Module !== "undefined" && Module.typescript_websocket_send_message) {
1457
+ try {
1458
+ var eventStr = UTF8ToString(eventName);
1459
+ var dataStr = UTF8ToString(data);
1460
+ console.log("[C++ -> TS Bridge] Send message", connectionId, eventStr);
1461
+ Module.typescript_websocket_send_message(connectionId, eventStr, dataStr);
1462
+ success = true;
1463
+ } catch (error) {
1464
+ console.error("[ERROR] calling typescript_websocket_send_message via Module:", error);
1465
+ }
1466
+ }
1467
+ if (!success && typeof window !== "undefined" && window.Module && window.Module.typescript_websocket_send_message) {
1468
+ try {
1469
+ var eventStr1 = UTF8ToString(eventName);
1470
+ var dataStr1 = UTF8ToString(data);
1471
+ console.log("[C++ -> TS Bridge] Send message via window.Module", connectionId, eventStr1);
1472
+ window.Module.typescript_websocket_send_message(connectionId, eventStr1, dataStr1);
1473
+ success = true;
1474
+ } catch (error) {
1475
+ console.error("[ERROR] calling typescript_websocket_send_message via window.Module:", error);
1476
+ }
1477
+ }
1478
+ if (!success && typeof globalThis !== "undefined" && globalThis.Module && globalThis.Module.typescript_websocket_send_message) {
1479
+ try {
1480
+ var eventStr2 = UTF8ToString(eventName);
1481
+ var dataStr2 = UTF8ToString(data);
1482
+ console.log("[C++ -> TS Bridge] Send message via globalThis.Module", connectionId, eventStr2);
1483
+ globalThis.Module.typescript_websocket_send_message(connectionId, eventStr2, dataStr2);
1484
+ success = true;
1485
+ } catch (error) {
1486
+ console.error("[ERROR] calling typescript_websocket_send_message via globalThis.Module:", error);
1487
+ }
1488
+ }
1489
+ if (!success) {
1490
+ console.error("[ERROR] TypeScript WebSocket Bridge send message method not found");
1491
+ }
1492
+ }
1493
+ function js_call_typescript_bridge_send_ack(connectionId, ackId, responseData) {
1494
+ var success = false;
1495
+ if (typeof Module !== "undefined" && Module.typescript_websocket_send_ack) {
1496
+ try {
1497
+ var responseStr = UTF8ToString(responseData);
1498
+ console.log("[C++ -> TS Bridge] Send ack", connectionId, ackId);
1499
+ Module.typescript_websocket_send_ack(connectionId, ackId, responseStr);
1500
+ success = true;
1501
+ } catch (error) {
1502
+ console.error("[ERROR] calling typescript_websocket_send_ack via Module:", error);
1503
+ }
1504
+ }
1505
+ if (!success && typeof window !== "undefined" && window.Module && window.Module.typescript_websocket_send_ack) {
1506
+ try {
1507
+ var responseStr1 = UTF8ToString(responseData);
1508
+ console.log("[C++ -> TS Bridge] Send ack via window.Module", connectionId, ackId);
1509
+ window.Module.typescript_websocket_send_ack(connectionId, ackId, responseStr1);
1510
+ success = true;
1511
+ } catch (error) {
1512
+ console.error("[ERROR] calling typescript_websocket_send_ack via window.Module:", error);
1513
+ }
1514
+ }
1515
+ if (!success && typeof globalThis !== "undefined" && globalThis.Module && globalThis.Module.typescript_websocket_send_ack) {
1516
+ try {
1517
+ var responseStr2 = UTF8ToString(responseData);
1518
+ console.log("[C++ -> TS Bridge] Send ack via globalThis.Module", connectionId, ackId);
1519
+ globalThis.Module.typescript_websocket_send_ack(connectionId, ackId, responseStr2);
1520
+ success = true;
1521
+ } catch (error) {
1522
+ console.error("[ERROR] calling typescript_websocket_send_ack via globalThis.Module:", error);
1523
+ }
1524
+ }
1525
+ if (!success) {
1526
+ console.error("[ERROR] TypeScript WebSocket Bridge send ack method not found");
1527
+ }
1528
+ }
1529
+ function js_initialize_typescript_bridge() {
1530
+ console.log("[INIT] Initializing TypeScript WebSocket Bridge integration...");
1531
+ if (typeof window !== "undefined" && window.initializeTypeScriptWebSocketBridge) {
1532
+ try {
1533
+ window.initializeTypeScriptWebSocketBridge();
1534
+ console.log("[SUCCESS] TypeScript WebSocket Bridge initialized via window");
1535
+ } catch (error) {
1536
+ console.warn("[WARNING] Failed to initialize bridge via window:", error);
1537
+ }
1538
+ }
1539
+ if (typeof globalThis !== "undefined" && globalThis.initializeTypeScriptWebSocketBridge) {
1540
+ try {
1541
+ globalThis.initializeTypeScriptWebSocketBridge();
1542
+ console.log("[SUCCESS] TypeScript WebSocket Bridge initialized via globalThis");
1543
+ } catch (error) {
1544
+ console.warn("[WARNING] Failed to initialize bridge via globalThis:", error);
1545
+ }
1546
+ }
1547
+ var bridgeMethods = [
1548
+ "typescript_websocket_connect_request",
1549
+ "typescript_websocket_disconnect_request",
1550
+ "typescript_websocket_subscribe_event",
1551
+ "typescript_websocket_send_message",
1552
+ "typescript_websocket_send_ack"
1553
+ ];
1554
+ var bridgeFound = false;
1555
+ var contexts = [];
1556
+ if (typeof Module !== "undefined") {
1557
+ contexts.push({
1558
+ name: "Module",
1559
+ obj: Module
1560
+ });
1561
+ }
1562
+ if (typeof window !== "undefined" && window.Module) {
1563
+ contexts.push({
1564
+ name: "window.Module",
1565
+ obj: window.Module
1566
+ });
1567
+ }
1568
+ if (typeof globalThis !== "undefined" && globalThis.Module) {
1569
+ contexts.push({
1570
+ name: "globalThis.Module",
1571
+ obj: globalThis.Module
1572
+ });
1573
+ }
1574
+ var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
1575
+ try {
1576
+ var _loop = function() {
1577
+ var context = _step.value;
1578
+ var availableMethods = bridgeMethods.filter(function(method) {
1579
+ return typeof context.obj[method] === "function";
1580
+ });
1581
+ if (availableMethods.length > 0) {
1582
+ console.log("[SUCCESS] Bridge methods found in " + context.name + ": " + availableMethods.join(", "));
1583
+ bridgeFound = true;
1584
+ }
1585
+ };
1586
+ for(var _iterator = contexts[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true)_loop();
1587
+ } catch (err) {
1588
+ _didIteratorError = true;
1589
+ _iteratorError = err;
1590
+ } finally{
1591
+ try {
1592
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
1593
+ _iterator.return();
1594
+ }
1595
+ } finally{
1596
+ if (_didIteratorError) {
1597
+ throw _iteratorError;
1598
+ }
1599
+ }
1600
+ }
1601
+ if (!bridgeFound) {
1602
+ console.warn("[WARNING] No TypeScript WebSocket Bridge methods found in any context");
1603
+ console.log("Available in Module:", typeof Module !== "undefined" ? Object.keys(Module).filter(function(k) {
1604
+ return k.includes("websocket") || k.includes("typescript");
1605
+ }) : "undefined");
1606
+ }
1607
+ }
1323
1608
  var ExitStatus = function ExitStatus(status) {
1324
1609
  _class_call_check(this, ExitStatus);
1325
1610
  _define_property(this, "name", "ExitStatus");
@@ -7212,7 +7497,13 @@ var Balancy = function() {
7212
7497
  invoke_viiiiiiiiii: invoke_viiiiiiiiii,
7213
7498
  invoke_viiiiiiiiiiiiiii: invoke_viiiiiiiiiiiiiii,
7214
7499
  invoke_viijii: invoke_viijii,
7500
+ js_call_typescript_bridge_connect: js_call_typescript_bridge_connect,
7501
+ js_call_typescript_bridge_disconnect: js_call_typescript_bridge_disconnect,
7502
+ js_call_typescript_bridge_send_ack: js_call_typescript_bridge_send_ack,
7503
+ js_call_typescript_bridge_send_message: js_call_typescript_bridge_send_message,
7504
+ js_call_typescript_bridge_subscribe: js_call_typescript_bridge_subscribe,
7215
7505
  js_fetch: js_fetch,
7506
+ js_initialize_typescript_bridge: js_initialize_typescript_bridge,
7216
7507
  random_get: _random_get
7217
7508
  };
7218
7509
  var wasmExports;
@@ -7263,7 +7554,7 @@ var Balancy = function() {
7263
7554
  Module["__Z30jsbalancyDataObjectViewPreloadNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE"] = createExportWrapper("_Z30jsbalancyDataObjectViewPreloadNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE", 2);
7264
7555
  Module["_balancySetUnzipCallback"] = createExportWrapper("balancySetUnzipCallback", 1);
7265
7556
  Module["__Z23jsbalancyUnzipCompletedNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES5_"] = createExportWrapper("_Z23jsbalancyUnzipCompletedNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES5_", 2);
7266
- Module["__Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE"] = createExportWrapper("_Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE", 2);
7557
+ Module["__Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE"] = createExportWrapper("_Z23jsbalancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN10emscripten3valE", 2);
7267
7558
  Module["_balancySetDataRequestedCallback"] = createExportWrapper("balancySetDataRequestedCallback", 1);
7268
7559
  Module["_balancyViewAllowOptimization"] = createExportWrapper("balancyViewAllowOptimization", 1);
7269
7560
  Module["_balancyConfigLaunch"] = createExportWrapper("balancyConfigLaunch", 1);
@@ -7292,6 +7583,8 @@ var Balancy = function() {
7292
7583
  Module["__Z35jsbalancyDailyBonus_claimNextRewardPN7Balancy4Data8BaseDataE"] = createExportWrapper("_Z35jsbalancyDailyBonus_claimNextRewardPN7Balancy4Data8BaseDataE", 1);
7293
7584
  Module["__Z38jsbalancyDailyBonus_canClaimNextRewardPN7Balancy4Data8BaseDataE"] = createExportWrapper("_Z38jsbalancyDailyBonus_canClaimNextRewardPN7Balancy4Data8BaseDataE", 1);
7294
7585
  Module["__Z47jsbalancyDailyBonus_getSecondsTillTheNextRewardPN7Balancy4Data8BaseDataE"] = createExportWrapper("_Z47jsbalancyDailyBonus_getSecondsTillTheNextRewardPN7Balancy4Data8BaseDataE", 1);
7586
+ Module["__Z31jsbalancyBattlePass_claimRewardPN7Balancy4Data8BaseDataEi"] = createExportWrapper("_Z31jsbalancyBattlePass_claimRewardPN7Balancy4Data8BaseDataEi", 2);
7587
+ Module["__Z35jsbalancyBattlePass_getRewardStatusPN7Balancy4Data8BaseDataEi"] = createExportWrapper("_Z35jsbalancyBattlePass_getRewardStatusPN7Balancy4Data8BaseDataEi", 2);
7295
7588
  Module["__Z35jsbalancyOfferGroupInfo_CanPurchasePN7Balancy4Data8BaseDataEPNS_5Utils15JsonBasedObjectE"] = createExportWrapper("_Z35jsbalancyOfferGroupInfo_CanPurchasePN7Balancy4Data8BaseDataEPNS_5Utils15JsonBasedObjectE", 2);
7296
7589
  Module["__Z51jsbalancyOfferInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE"] = createExportWrapper("_Z51jsbalancyOfferInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE", 1);
7297
7590
  Module["__Z51jsbalancyEventInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE"] = createExportWrapper("_Z51jsbalancyEventInfo_GetSecondsLeftBeforeDeactivationPN7Balancy4Data8BaseDataE", 1);
@@ -7309,7 +7602,10 @@ var Balancy = function() {
7309
7602
  Module["__Z18jsbalancyGetStatusv"] = createExportWrapper("_Z18jsbalancyGetStatusv", 0);
7310
7603
  Module["_balancyGetTimeOffset"] = createExportWrapper("balancyGetTimeOffset", 0);
7311
7604
  Module["_balancySetTimeOffset"] = createExportWrapper("balancySetTimeOffset", 1);
7312
- Module["__Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEb"] = createExportWrapper("_Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEb", 3);
7605
+ Module["__Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEib"] = createExportWrapper("_Z24jsbalancyGetParsedObjectPN7Balancy5Utils15JsonBasedObjectEib", 4);
7606
+ Module["_emscripten_websocket_on_connection_status"] = createExportWrapper("emscripten_websocket_on_connection_status", 3);
7607
+ Module["_emscripten_websocket_on_socketio_event"] = createExportWrapper("emscripten_websocket_on_socketio_event", 5);
7608
+ Module["_emscripten_websocket_on_socketio_error"] = createExportWrapper("emscripten_websocket_on_socketio_error", 3);
7313
7609
  var _malloc = Module["_malloc"] = createExportWrapper("malloc", 1);
7314
7610
  var ___getTypeName = createExportWrapper("__getTypeName", 1);
7315
7611
  Module["_downloadSucceededBinary"] = createExportWrapper("downloadSucceededBinary", 3);
@@ -7388,13 +7684,16 @@ var Balancy = function() {
7388
7684
  Module["_balancyDailyBonus_claimNextReward"] = createExportWrapper("balancyDailyBonus_claimNextReward", 1);
7389
7685
  Module["_balancyDailyBonus_canClaimNextReward"] = createExportWrapper("balancyDailyBonus_canClaimNextReward", 1);
7390
7686
  Module["_balancyDailyBonus_getSecondsTillTheNextReward"] = createExportWrapper("balancyDailyBonus_getSecondsTillTheNextReward", 1);
7687
+ Module["_balancyBattlePass_claimReward"] = createExportWrapper("balancyBattlePass_claimReward", 2);
7688
+ Module["_balancyBattlePass_getRewardStatus"] = createExportWrapper("balancyBattlePass_getRewardStatus", 2);
7391
7689
  Module["_balancySoftPurchaseStoreItem"] = createExportWrapper("balancySoftPurchaseStoreItem", 1);
7392
7690
  Module["_balancySoftPurchaseShopSlot"] = createExportWrapper("balancySoftPurchaseShopSlot", 1);
7393
7691
  Module["_balancySoftPurchaseGameOffer"] = createExportWrapper("balancySoftPurchaseGameOffer", 1);
7394
7692
  Module["_balancySoftPurchaseGameOfferGroup"] = createExportWrapper("balancySoftPurchaseGameOfferGroup", 2);
7693
+ Module["__Z22_balancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFvS5_EEE"] = createExportWrapper("_Z22_balancyWebViewRequestNSt3__212basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_8functionIFvS5_EEE", 2);
7395
7694
  Module["_balancyWebViewRequest"] = createExportWrapper("balancyWebViewRequest", 1);
7396
7695
  Module["_balancyGetProductsIdAndType"] = createExportWrapper("balancyGetProductsIdAndType", 1);
7397
- Module["_balancyGetParsedObject"] = createExportWrapper("balancyGetParsedObject", 2);
7696
+ Module["_balancyGetParsedObject"] = createExportWrapper("balancyGetParsedObject", 3);
7398
7697
  var _fflush = createExportWrapper("fflush", 1);
7399
7698
  var _strerror = createExportWrapper("strerror", 1);
7400
7699
  var _setThrew = createExportWrapper("setThrew", 2);