gofelix 1.0.0

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 (99) hide show
  1. package/LICENSE.md +38 -0
  2. package/README.md +17 -0
  3. package/dist/config.js +11 -0
  4. package/dist/constants.js +11 -0
  5. package/dist/index.js +11 -0
  6. package/dist/queries/addFriend.js +11 -0
  7. package/dist/queries/addPendingFeedBackForm.js +11 -0
  8. package/dist/queries/addUserExperience.js +11 -0
  9. package/dist/queries/addUserMails.js +11 -0
  10. package/dist/queries/generateDiscountTokenFromUserAmount.js +11 -0
  11. package/dist/queries/getAllQRCodeUrl.js +11 -0
  12. package/dist/queries/getBiStats.js +11 -0
  13. package/dist/queries/getUserBulkData.js +11 -0
  14. package/dist/queries/getUserMails.js +11 -0
  15. package/dist/queries/getUserProfiles.js +11 -0
  16. package/dist/queries/logError.js +11 -0
  17. package/dist/queries/redeemDiscountCode.js +11 -0
  18. package/dist/queries/removeFriend.js +11 -0
  19. package/dist/queries/removePendingFeedbackLink.js +11 -0
  20. package/dist/queries/removeUserMail.js +11 -0
  21. package/dist/queries/subscribeToCompany.js +11 -0
  22. package/dist/queries/unSubscribeToCompany.js +11 -0
  23. package/dist/queries/updateUserProfile.js +11 -0
  24. package/dist/queries/updateUserSettings.js +11 -0
  25. package/dist/services/BI/companyNewsStats.js +11 -0
  26. package/dist/services/BI/discountStats.js +11 -0
  27. package/dist/services/BI/feedbackStats.js +11 -0
  28. package/dist/services/BI/getAllCompanyStats.js +11 -0
  29. package/dist/services/BI/getCompanyOverallStats.js +11 -0
  30. package/dist/services/BI/userExperienceStats.js +11 -0
  31. package/dist/services/Online/qrCode.js +11 -0
  32. package/dist/services/User/discountToken.js +11 -0
  33. package/dist/services/User/feedbackService.js +11 -0
  34. package/dist/services/User/friendService.js +11 -0
  35. package/dist/services/User/mailService.js +11 -0
  36. package/dist/services/User/subscribe.js +11 -0
  37. package/dist/services/User/userExperiences.js +11 -0
  38. package/dist/services/User/userProfile.js +11 -0
  39. package/dist/types/UserExperience.js +11 -0
  40. package/dist/types/commonTypes.js +11 -0
  41. package/dist/types/companyNewsTypes.js +11 -0
  42. package/dist/types/config.d.ts +6 -0
  43. package/dist/types/constants.d.ts +36 -0
  44. package/dist/types/discountTypes.js +11 -0
  45. package/dist/types/feedbackTypes.js +11 -0
  46. package/dist/types/friendTypes.js +11 -0
  47. package/dist/types/index.d.ts +105 -0
  48. package/dist/types/mailTypes.js +11 -0
  49. package/dist/types/qrCodes.js +11 -0
  50. package/dist/types/queries/addFriend.d.ts +2 -0
  51. package/dist/types/queries/addPendingFeedBackForm.d.ts +2 -0
  52. package/dist/types/queries/addUserExperience.d.ts +2 -0
  53. package/dist/types/queries/addUserMails.d.ts +2 -0
  54. package/dist/types/queries/generateDiscountTokenFromUserAmount.d.ts +2 -0
  55. package/dist/types/queries/getAllQRCodeUrl.d.ts +2 -0
  56. package/dist/types/queries/getBiStats.d.ts +2 -0
  57. package/dist/types/queries/getUserBulkData.d.ts +2 -0
  58. package/dist/types/queries/getUserMails.d.ts +2 -0
  59. package/dist/types/queries/getUserProfiles.d.ts +2 -0
  60. package/dist/types/queries/logError.d.ts +2 -0
  61. package/dist/types/queries/redeemDiscountCode.d.ts +2 -0
  62. package/dist/types/queries/removeFriend.d.ts +2 -0
  63. package/dist/types/queries/removePendingFeedbackLink.d.ts +2 -0
  64. package/dist/types/queries/removeUserMail.d.ts +2 -0
  65. package/dist/types/queries/subscribeToCompany.d.ts +2 -0
  66. package/dist/types/queries/unSubscribeToCompany.d.ts +2 -0
  67. package/dist/types/queries/updateUserProfile.d.ts +2 -0
  68. package/dist/types/queries/updateUserSettings.d.ts +2 -0
  69. package/dist/types/services/BI/companyNewsStats.d.ts +7 -0
  70. package/dist/types/services/BI/discountStats.d.ts +7 -0
  71. package/dist/types/services/BI/feedbackStats.d.ts +7 -0
  72. package/dist/types/services/BI/getAllCompanyStats.d.ts +7 -0
  73. package/dist/types/services/BI/getCompanyOverallStats.d.ts +7 -0
  74. package/dist/types/services/BI/userExperienceStats.d.ts +7 -0
  75. package/dist/types/services/Online/qrCode.d.ts +8 -0
  76. package/dist/types/services/User/discountToken.d.ts +6 -0
  77. package/dist/types/services/User/feedbackService.d.ts +8 -0
  78. package/dist/types/services/User/friendService.d.ts +8 -0
  79. package/dist/types/services/User/mailService.d.ts +11 -0
  80. package/dist/types/services/User/subscribe.d.ts +8 -0
  81. package/dist/types/services/User/userExperiences.d.ts +6 -0
  82. package/dist/types/services/User/userProfile.d.ts +13 -0
  83. package/dist/types/subscribeTypes.js +11 -0
  84. package/dist/types/types/UserExperience.d.ts +16 -0
  85. package/dist/types/types/commonTypes.d.ts +68 -0
  86. package/dist/types/types/companyNewsTypes.d.ts +32 -0
  87. package/dist/types/types/discountTypes.d.ts +35 -0
  88. package/dist/types/types/feedbackTypes.d.ts +41 -0
  89. package/dist/types/types/friendTypes.d.ts +47 -0
  90. package/dist/types/types/mailTypes.d.ts +29 -0
  91. package/dist/types/types/qrCodes.d.ts +27 -0
  92. package/dist/types/types/subscribeTypes.d.ts +21 -0
  93. package/dist/types/types/userTypes.d.ts +259 -0
  94. package/dist/types/userTypes.js +11 -0
  95. package/dist/types/utilities/fetch.d.ts +2 -0
  96. package/dist/types/utilities/mapper.d.ts +5 -0
  97. package/dist/utilities/fetch.js +11 -0
  98. package/dist/utilities/mapper.js +11 -0
  99. package/package.json +47 -0
package/LICENSE.md ADDED
@@ -0,0 +1,38 @@
1
+ # Proprietary License for GoFelix
2
+
3
+ © 2025-2026 GoFelix Limited (UK). All rights reserved.
4
+
5
+ This Package, including all its software code, text, images, logos, graphics, and other assets (the "Package" and "Code") is the proprietary property of GoFelix Limited (UK) and is protected under copyright law, intellectual property law, and international treaties.
6
+
7
+ ## Grant of License
8
+
9
+ You are granted a limited, non-exclusive, non-transferable, revocable license to **access and interact with the GoFelix Package, its code, and services**, including commercial use, subject to the restrictions below
10
+
11
+ ## Restrictions
12
+
13
+ You may **not**:
14
+
15
+ - Copy, reproduce, modify, distribute, transmit, or create derivative works of the Code or Package content.
16
+ - Reverse engineer, decompile, or disassemble any part of the Code.
17
+ - Use the Code or Package content for commercial purposes without prior written consent from Abdul-Tech Solutions Limited.
18
+ - Remove, obscure, or alter any copyright, trademark, or proprietary notices.
19
+
20
+ ## Ownership
21
+
22
+ All rights, title, and interest in and to the Code and Package content remain the exclusive property of Abdul-Tech Solutions Limited. This license does not convey any ownership rights.
23
+
24
+ ## Disclaimer
25
+
26
+ The Code and Package are provided "as is," without warranty of any kind. GoFelix Limited (UK) shall not be liable for any damages or losses resulting from the use of the Package or Code.
27
+
28
+ ## Termination
29
+
30
+ This license is effective until terminated. Unauthorized use of the Code or Package content will automatically terminate this license and may result in legal action.
31
+
32
+ ## Contact
33
+
34
+ For licensing inquiries, permissions, or other questions regarding this license, please contact:
35
+
36
+ GoFelix Limited (UK)
37
+ Email: legal@goFelix.co.uk
38
+ Package: https://www.gofelix.co.uk
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # GoFelix
2
+
3
+ The GoFelix API Library for NodeJS provides backend integration with the GoFelix Gateway. It includes 3 API groups — User, BI, and Online. Each API group requires its own authentication level, so ensure your package has the correct permissions.
4
+
5
+ ---
6
+
7
+ ## 🚀 Scripts
8
+
9
+ This project includes several npm scripts to build, obfuscate, and prepare the package for publishing.
10
+
11
+ ---
12
+
13
+ ### 🔧 Build production
14
+
15
+ ```bash
16
+
17
+ ```
package/dist/config.js ADDED
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a0_0x2fc4(){const _0x1708ba=['dev','295505ABoTaJ','test','yVmjM','1097916QMnYUu','default','1284DbxVOj','8595305JVwSYn','defineProperty','uat','3077667xEBlyq','85tQfzYd','production','2703032sHJlcO','10KAZOQd','16dlPcom','144NzaIUw','15003780LHbcxk','https://api.gofelix.org/prod/graphql'];a0_0x2fc4=function(){return _0x1708ba;};return a0_0x2fc4();}const a0_0x11aec1=a0_0x3fb5;(function(_0x42081e,_0x25305b){const _0x57eef7=a0_0x3fb5,_0x345912=_0x42081e();while(!![]){try{const _0x5abdf6=parseInt(_0x57eef7(0xba))/0x1*(parseInt(_0x57eef7(0xb5))/0x2)+parseInt(_0x57eef7(0xb3))/0x3*(parseInt(_0x57eef7(0xbe))/0x4)+parseInt(_0x57eef7(0xb6))/0x5+parseInt(_0x57eef7(0xac))/0x6*(-parseInt(_0x57eef7(0xb0))/0x7)+-parseInt(_0x57eef7(0xbc))/0x8+-parseInt(_0x57eef7(0xb9))/0x9*(-parseInt(_0x57eef7(0xbd))/0xa)+-parseInt(_0x57eef7(0xad))/0xb;if(_0x5abdf6===_0x25305b)break;else _0x345912['push'](_0x345912['shift']());}catch(_0xff7af6){_0x345912['push'](_0x345912['shift']());}}}(a0_0x2fc4,0xd30cf));Object[a0_0x11aec1(0xb7)](exports,'__esModule',{'value':!![]});const currentEnvironment='production',getEnvironmentSettings=()=>{const _0xcd1682=a0_0x11aec1,_0x17936c={'HpUGT':_0xcd1682(0xb8),'yVmjM':_0xcd1682(0xbb)};switch(currentEnvironment){case _0xcd1682(0xaf):return environment[_0xcd1682(0xaf)];case _0x17936c['HpUGT']:return environment[_0xcd1682(0xb8)];case _0x17936c[_0xcd1682(0xb2)]:return environment[_0xcd1682(0xbb)];case _0xcd1682(0xb1):return environment[_0xcd1682(0xb1)];default:return environment[_0xcd1682(0xaf)];}},environment={'dev':{'env':'dev','graphQLGoFelixGatewayServerUrl':'https://api.gofelix.org/prod/graphql'},'test':{'env':'test','graphQLGoFelixGatewayServerUrl':'https://api.gofelix.org/prod/graphql'},'uat':{'env':'uat','graphQLGoFelixGatewayServerUrl':a0_0x11aec1(0xae)},'production':{'env':a0_0x11aec1(0xbb),'graphQLGoFelixGatewayServerUrl':a0_0x11aec1(0xae)}};function a0_0x3fb5(_0x128101,_0x5cd4cd){_0x128101=_0x128101-0xac;const _0x2fc4e6=a0_0x2fc4();let _0x3fb5ff=_0x2fc4e6[_0x128101];return _0x3fb5ff;}exports[a0_0x11aec1(0xb4)]=getEnvironmentSettings();
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a1_0x5ca9(){var _0x41b389=['unSubscribeToCompany','logError','addFriend','removeFriend','updateUserSettings','removeUserMail','getAllQRCodeUrls','1137OcikjE','online_hdaisudh3648766&^&*^\x22^723783--=-idbf2324z//zz1','COMPANY_NEWS_STATS','getUserApiActivationCode','getUserBulkData','136PnumHl','6340MvTgyl','COMPANY_STATS_OVERALL','5881614ibWYMG','3232257qmiNwl','getBiStats','5BTPnyW','updateUserProfile','146kGsOUN','2262OTLTFC','31764Evjlmw','default','COMPANY_FEEDBACK_STATS','iuehfu832832a***/--++0+065dui$%^$%$%^\x22$^%\x22%eb8779r))((\x22)(+++!!\x22\x22\x22uiwhkwuehw)\x22))','__esModule','removePendingFeedbackLink','redeemDiscountCode','USER_EXPERIENCE_STATS','addPendingFeedBackForm','450405TbCNtJ','13046WTSNLo','defineProperty','1683010bNTTAv'];a1_0x5ca9=function(){return _0x41b389;};return a1_0x5ca9();}var a1_0x303b2a=a1_0x201e;(function(_0x2ad99d,_0xf1cd4f){var _0x321901=a1_0x201e,_0x13cc37=_0x2ad99d();while(!![]){try{var _0x1a8d15=-parseInt(_0x321901(0x137))/0x1*(-parseInt(_0x321901(0x136))/0x2)+parseInt(_0x321901(0x129))/0x3*(-parseInt(_0x321901(0x12f))/0x4)+parseInt(_0x321901(0x134))/0x5*(-parseInt(_0x321901(0x131))/0x6)+-parseInt(_0x321901(0x132))/0x7+-parseInt(_0x321901(0x12e))/0x8*(parseInt(_0x321901(0x141))/0x9)+parseInt(_0x321901(0x144))/0xa+-parseInt(_0x321901(0x142))/0xb*(-parseInt(_0x321901(0x138))/0xc);if(_0x1a8d15===_0xf1cd4f)break;else _0x13cc37['push'](_0x13cc37['shift']());}catch(_0x5bf71e){_0x13cc37['push'](_0x13cc37['shift']());}}}(a1_0x5ca9,0x8d6c5));function a1_0x201e(_0xa3d813,_0x5bccfa){_0xa3d813=_0xa3d813-0x127;var _0x5ca96d=a1_0x5ca9();var _0x201e0a=_0x5ca96d[_0xa3d813];return _0x201e0a;}Object[a1_0x303b2a(0x143)](exports,a1_0x303b2a(0x13c),{'value':!![]}),exports[a1_0x303b2a(0x139)]={'appCode':a1_0x303b2a(0x13b),'hashKey':a1_0x303b2a(0x12a),'graphQlCommandNames':{'getBiStats':a1_0x303b2a(0x133),'removeUserMail':a1_0x303b2a(0x127),'getAllQRCodeUrls':a1_0x303b2a(0x128),'redeemDiscountCode':a1_0x303b2a(0x13e),'getUserProfiles':'getUserProfiles','getUserBulkData':a1_0x303b2a(0x12d),'getUserMails':'getUserMails','addUserExperience':'addUserExperience','subscribeToCompany':'subscribeToCompany','unSubscribeToCompany':a1_0x303b2a(0x145),'updateUserProfile':a1_0x303b2a(0x135),'generateDiscountTokenFromUserAmount':'generateDiscountTokenFromUserAmount','removePendingFeedbackLink':a1_0x303b2a(0x13d),'addPendingFeedBackForm':a1_0x303b2a(0x140),'updateUserSettings':a1_0x303b2a(0x149),'addFriend':a1_0x303b2a(0x147),'removeFriend':a1_0x303b2a(0x148),'addUserMails':'addUserMails','getUserApiActivationCode':a1_0x303b2a(0x12c),'logError':a1_0x303b2a(0x146)},'getBiStatsCommands':{'companyDiscountStats':'COMPANY_DISCOUNT_STATS','companyFeedbackStats':a1_0x303b2a(0x13a),'companyNewsStats':a1_0x303b2a(0x12b),'companyUserExperienceStats':a1_0x303b2a(0x13f),'companyStats':a1_0x303b2a(0x130),'getAllCompanyStats':'COMPANY_ALL'},'app':'GoFelixApiLibrary'};
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a2_0xaa79(){const _0x2341ee=['./services/BI/userExperienceStats','mock','1649808kTtQOB','14520qICJGi','1883NurwQl','getAllQRCodeUrlsAsync','4812xGcxRU','redeemDiscountCodeAsync','removeFriendAsync','online','getAllCompanyStatsAsync','84juEpRn','./services/User/subscribe','generateDiscountTokenFromUserAmountAsync','./services/User/userProfile','accountEmail','getUserProfilesAsync','getCompanyUserExperienceStatsAsync','63012VRwSTu','addPendingFeedBackFormAsync','removeUserMailAsync','activateMockCalls','user','removePendingFeedbackLinkAsync','20090dLyBqk','./services/User/userExperiences','getUserBulkDataAsync','settings','getCompanyFeedbackStats','25527THKjlx','getCompanyOverallStatsAsync','addFriendAsync','./services/Online/qrCode','2009115aJIPhZ','getUserMailsAsync','addUserExperienceAsync','apiKey','subscribeToCompanyAsync','./services/User/mailService','./services/User/friendService','getCompanyDiscountStatsAsync','./services/BI/discountStats','config','addUserMailsAsync'];a2_0xaa79=function(){return _0x2341ee;};return a2_0xaa79();}function a2_0xdf02(_0x345712,_0x3bb5f1){_0x345712=_0x345712-0x1b1;const _0xaa79c1=a2_0xaa79();let _0xdf0291=_0xaa79c1[_0x345712];return _0xdf0291;}const a2_0x589161=a2_0xdf02;(function(_0x4e0308,_0x5cebfe){const _0x24dab8=a2_0xdf02,_0x1e5be7=_0x4e0308();while(!![]){try{const _0x2c767d=parseInt(_0x24dab8(0x1d3))/0x1+parseInt(_0x24dab8(0x1c4))/0x2+-parseInt(_0x24dab8(0x1b2))/0x3+-parseInt(_0x24dab8(0x1cc))/0x4*(parseInt(_0x24dab8(0x1d9))/0x5)+-parseInt(_0x24dab8(0x1c7))/0x6*(-parseInt(_0x24dab8(0x1c5))/0x7)+parseInt(_0x24dab8(0x1c3))/0x8+-parseInt(_0x24dab8(0x1b6))/0x9;if(_0x2c767d===_0x5cebfe)break;else _0x1e5be7['push'](_0x1e5be7['shift']());}catch(_0x31785b){_0x1e5be7['push'](_0x1e5be7['shift']());}}}(a2_0xaa79,0x2aff2));var _a,_b,_c;Object['defineProperty'](exports,'__esModule',{'value':!![]}),exports['online']=exports[a2_0x589161(0x1d7)]=exports['bi']=exports['config']=exports[a2_0x589161(0x1dc)]=void 0x0;const discountStats_1=require(a2_0x589161(0x1be)),feedbackStats_1=require('./services/BI/feedbackStats'),companyNewsStats_1=require('./services/BI/companyNewsStats'),userExperienceStats_1=require(a2_0x589161(0x1c1)),getAllCompanyStats_1=require('./services/BI/getAllCompanyStats'),getCompanyOverallStats_1=require('./services/BI/getCompanyOverallStats'),qrCode_1=require(a2_0x589161(0x1b5)),userProfile_1=require(a2_0x589161(0x1cf)),mailService_1=require(a2_0x589161(0x1bb)),userExperiences_1=require(a2_0x589161(0x1da)),subscribe_1=require(a2_0x589161(0x1cd)),discountToken_1=require('./services/User/discountToken'),feedbackService_1=require('./services/User/feedbackService'),friendService_1=require(a2_0x589161(0x1bc));exports[a2_0x589161(0x1dc)]={'env':'','activateMockCalls':![],'mock':{'bi':{'getCompanyDiscountStatsAsync':()=>{},'getCompanyFeedbackStatsAsync':()=>{},'getCompanyNewsStatsAsync':()=>{},'getCompanyOverallStatsAsync':()=>{},'companyUserExperienceStatsAsync':()=>{}},'user':{'getUserProfilesAsync':()=>{},'removeUserMailAsync':()=>{},'getUserBulkDataAsync':()=>{},'getUserMailsAsync':()=>{},'addUserExperienceAsync':()=>{},'subscribeToCompanyAsync':()=>{},'unSubscribeToCompanyAsync':()=>{},'updateUserProfileAsync':()=>{},'generateDiscountTokenFromUserAmountAsync':()=>{},'removePendingFeedbackLinkAsync':()=>{},'addPendingFeedBackFormAsync':()=>{},'updateUserSettingsAsync':()=>{},'addFriendAsync':()=>{},'removeFriendAsync':()=>{},'addUserMailsAsync':()=>{}},'online':{'redeemDiscountCodeAsync':()=>{},'getAllQRCodeUrlsAsync':()=>{}}}},exports[a2_0x589161(0x1bf)]={'bi':{'accountEmail':'','origin':'','apiKey':'','mockCalls':(_a=exports[a2_0x589161(0x1dc)][a2_0x589161(0x1c2)]['bi'])!==null&&_a!==void 0x0?_a:null,'activateMockCalls':exports[a2_0x589161(0x1dc)][a2_0x589161(0x1d6)]},'user':{'accountEmail':'','origin':'','mockCalls':(_b=exports[a2_0x589161(0x1dc)]['mock'][a2_0x589161(0x1d7)])!==null&&_b!==void 0x0?_b:null,'activateMockCalls':exports[a2_0x589161(0x1dc)][a2_0x589161(0x1d6)]},'online':{'apiKey':'','origin':'','accountEmail':'','mockCalls':(_c=exports['settings'][a2_0x589161(0x1c2)]['online'])!==null&&_c!==void 0x0?_c:null,'activateMockCalls':exports[a2_0x589161(0x1dc)][a2_0x589161(0x1d6)]}},exports['bi']={'getCompanyDiscountStatsAsync':()=>(0x0,discountStats_1[a2_0x589161(0x1bd)])(exports[a2_0x589161(0x1bf)]['bi']),'getCompanyFeedbackStatsAsync':()=>(0x0,feedbackStats_1[a2_0x589161(0x1b1)])(exports['config']['bi']),'getCompanyNewsStatsAsync':()=>(0x0,companyNewsStats_1['getCompanyNewsStatsAsync'])(exports[a2_0x589161(0x1bf)]['bi']),'getCompanyOverallStatsAsync':()=>(0x0,getCompanyOverallStats_1[a2_0x589161(0x1b3)])(exports['config']['bi']),'companyUserExperienceStatsAsync':()=>(0x0,userExperienceStats_1[a2_0x589161(0x1d2)])(exports[a2_0x589161(0x1bf)]['bi']),'getAllCompanyStatsAsync':()=>(0x0,getAllCompanyStats_1[a2_0x589161(0x1cb)])(exports[a2_0x589161(0x1bf)]['bi'])},exports[a2_0x589161(0x1d7)]={'getUserProfilesAsync':(_0x56be8b,_0x3e7808,_0xac51ce)=>(0x0,userProfile_1[a2_0x589161(0x1d1)])({'index':_0x56be8b,'value':_0x3e7808,'accessToken':_0xac51ce,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)]}),'removeUserMailAsync':(_0x2ff98f,_0xce3fa2)=>(0x0,mailService_1[a2_0x589161(0x1d5)])({'mailId':_0x2ff98f,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0xce3fa2}),'getUserBulkDataAsync':_0x572a2d=>(0x0,userProfile_1[a2_0x589161(0x1db)])(exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],_0x572a2d),'getUserMailsAsync':_0x71a2bb=>(0x0,mailService_1[a2_0x589161(0x1b7)])(exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],_0x71a2bb),'addUserExperienceAsync':(_0x550a18,_0x1fc765,_0x366f76,_0x30c1d3,_0x1f5e80,_0x14f69c,_0x503d23,_0x310f30)=>(0x0,userExperiences_1[a2_0x589161(0x1b8)])({'experience':_0x550a18,'experienceCategory':_0x1fc765,'rate':_0x366f76,'updateIntervalHours':_0x30c1d3,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0x1f5e80,'advertId':_0x14f69c,'branchName':_0x503d23,'companyName':_0x310f30}),'subscribeToCompanyAsync':(_0x534f57,_0x29d2b8,_0x3ab5eb)=>(0x0,subscribe_1[a2_0x589161(0x1ba)])({'companyName':_0x534f57,'userConfig':exports[a2_0x589161(0x1bf)]['user'],'accessToken':_0x29d2b8,'branchName':_0x3ab5eb}),'unSubscribeToCompanyAsync':(_0x5f3456,_0x47cc48,_0x4d53b2)=>(0x0,subscribe_1['unSubscribeToCompanyAsync'])({'companyName':_0x5f3456,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0x47cc48,'branchName':_0x4d53b2}),'updateUserProfileAsync':(_0x4d9b0a,_0x39b308)=>(0x0,userProfile_1['updateUserProfileAsync'])({'userProfile':_0x4d9b0a,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0x39b308}),'generateDiscountTokenFromUserAmountAsync':(_0x1af1ae,_0x34a54d,_0xf632e3,_0xb764bc)=>(0x0,discountToken_1[a2_0x589161(0x1ce)])({'adjustedAmount':_0x1af1ae,'companyName':_0x34a54d,'userConfig':exports[a2_0x589161(0x1bf)]['user'],'branchName':_0xf632e3,'accessToken':_0xb764bc}),'removePendingFeedbackLinkAsync':(_0x21105a,_0x7a3ef5)=>(0x0,feedbackService_1[a2_0x589161(0x1d8)])({'advertId':_0x21105a,'userConfig':exports['config'][a2_0x589161(0x1d7)],'accessToken':_0x7a3ef5}),'addPendingFeedBackFormAsync':(_0x4ec81e,_0x18eed9,_0x13a5dd)=>(0x0,feedbackService_1[a2_0x589161(0x1d4)])({'advertId':_0x4ec81e,'companyName':_0x18eed9,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0x13a5dd}),'updateUserSettingsAsync':(_0x2f16db,_0xe012e4)=>(0x0,userProfile_1['updateUserSettingsAsync'])({'settings':_0x2f16db,'userConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1d7)],'accessToken':_0xe012e4}),'addFriendAsync':(_0x3a00c0,_0x3149e9)=>(0x0,friendService_1[a2_0x589161(0x1b4)])({'friendUserName':_0x3a00c0,'userConfig':exports[a2_0x589161(0x1bf)]['user'],'accessToken':_0x3149e9}),'removeFriendAsync':(_0x46bfcc,_0x2a1301)=>(0x0,friendService_1[a2_0x589161(0x1c9)])({'friendUserName':_0x46bfcc,'userConfig':exports[a2_0x589161(0x1bf)]['user'],'accessToken':_0x2a1301}),'addUserMailsAsync':(_0x469730,_0x5a91a)=>(0x0,mailService_1[a2_0x589161(0x1c0)])({'mails':_0x469730,'userConfig':exports['config'][a2_0x589161(0x1d7)],'accessToken':_0x5a91a})},exports['online']={'getAllQRCodeUrlsAsync':_0x5bbd54=>(0x0,qrCode_1[a2_0x589161(0x1c6)])({'onlineConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1ca)],'hashVariables':_0x5bbd54,'apiKey':exports[a2_0x589161(0x1bf)]['online'][a2_0x589161(0x1b9)],'accountEmail':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1ca)][a2_0x589161(0x1d0)]}),'redeemDiscountCodeAsync':_0x270c7e=>(0x0,qrCode_1[a2_0x589161(0x1c8)])({'onlineConfig':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1ca)],'hashVariables':_0x270c7e,'apiKey':exports[a2_0x589161(0x1bf)][a2_0x589161(0x1ca)][a2_0x589161(0x1b9)],'accountEmail':exports['config'][a2_0x589161(0x1ca)][a2_0x589161(0x1d0)]})},exports['default']={'config':exports[a2_0x589161(0x1bf)],'bi':exports['bi'],'user':exports[a2_0x589161(0x1d7)],'online':exports[a2_0x589161(0x1ca)],'settings':exports[a2_0x589161(0x1dc)]};
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a3_0x321200=a3_0x4dfa;function a3_0x4dfa(_0x51648f,_0x5b8fa1){_0x51648f=_0x51648f-0x1bf;const _0xd354d2=a3_0xd354();let _0x4dfada=_0xd354d2[_0x51648f];return _0x4dfada;}(function(_0xa1c5e,_0x231834){const _0x58a49b=a3_0x4dfa,_0x1fea0b=_0xa1c5e();while(!![]){try{const _0x917a28=parseInt(_0x58a49b(0x1c3))/0x1+parseInt(_0x58a49b(0x1cc))/0x2*(parseInt(_0x58a49b(0x1c4))/0x3)+parseInt(_0x58a49b(0x1c2))/0x4*(-parseInt(_0x58a49b(0x1c8))/0x5)+parseInt(_0x58a49b(0x1c5))/0x6*(-parseInt(_0x58a49b(0x1c0))/0x7)+parseInt(_0x58a49b(0x1c6))/0x8+parseInt(_0x58a49b(0x1cb))/0x9*(parseInt(_0x58a49b(0x1c7))/0xa)+-parseInt(_0x58a49b(0x1c1))/0xb;if(_0x917a28===_0x231834)break;else _0x1fea0b['push'](_0x1fea0b['shift']());}catch(_0x209702){_0x1fea0b['push'](_0x1fea0b['shift']());}}}(a3_0xd354,0x1a988));Object[a3_0x321200(0x1bf)](exports,'__esModule',{'value':!![]});const addFriend=a3_0x321200(0x1ca);function a3_0xd354(){const _0x462d21=['1185904JwyDZo','118490SaDoIF','880FyVtou','default','\x0a\x20mutation\x20addFriend($friendUserName:\x20String!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20addFriend(friendUserName:\x20$friendUserName)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isAddFriendSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20friendProfile\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20profileImage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20age\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20location\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20country\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20countryCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20gender\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20aboutMe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperiences\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20categoryExperience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20times\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20lastUpdate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','63XudDiX','224SgBmCB','defineProperty','7CwSISA','3324618vtrKGX','1532yeEDbB','74792AFzuah','5100LUBZSp','106746OKtysT'];a3_0xd354=function(){return _0x462d21;};return a3_0xd354();}exports[a3_0x321200(0x1c9)]=addFriend;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a4_0x1bc381=a4_0x2a40;(function(_0x49e36b,_0x1d5840){const _0x8d853e=a4_0x2a40,_0x39e7c0=_0x49e36b();while(!![]){try{const _0x2d594c=-parseInt(_0x8d853e(0xb7))/0x1*(parseInt(_0x8d853e(0xb8))/0x2)+-parseInt(_0x8d853e(0xb4))/0x3*(-parseInt(_0x8d853e(0xb1))/0x4)+-parseInt(_0x8d853e(0xaf))/0x5+-parseInt(_0x8d853e(0xb2))/0x6*(-parseInt(_0x8d853e(0xb9))/0x7)+parseInt(_0x8d853e(0xab))/0x8+parseInt(_0x8d853e(0xb5))/0x9*(parseInt(_0x8d853e(0xb0))/0xa)+-parseInt(_0x8d853e(0xb3))/0xb*(parseInt(_0x8d853e(0xad))/0xc);if(_0x2d594c===_0x1d5840)break;else _0x39e7c0['push'](_0x39e7c0['shift']());}catch(_0x2b9905){_0x39e7c0['push'](_0x39e7c0['shift']());}}}(a4_0x5685,0x8c346));Object[a4_0x1bc381(0xb6)](exports,'__esModule',{'value':!![]});function a4_0x2a40(_0x154089,_0x5d24a8){_0x154089=_0x154089-0xab;const _0x5685c2=a4_0x5685();let _0x2a40c8=_0x5685c2[_0x154089];return _0x2a40c8;}const addPendingFeedBackForm=a4_0x1bc381(0xac);function a4_0x5685(){const _0x294dec=['270JliCSL','20036mchaNA','360WqiQqB','22gZqGVI','21yZqsBy','128529xrJmJz','defineProperty','214KUZHdK','4406QnFFFF','106239iiTNmm','7729552UXcsCP','\x0a\x20mutation\x20addPendingFeedBackForm(\x0a\x20\x20\x20\x20\x20\x20$advertId:\x20Int!\x0a\x20\x20\x20\x20\x20\x20$companyName:\x20String!\x0a\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20addPendingFeedBackForm(\x0a\x20\x20\x20\x20\x20\x20\x20\x20advertId:\x20$advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20companyName:\x20$companyName\x0a\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20pendingFeedbackAdded\x0a\x20\x20\x20\x20\x20\x20\x20\x20pendingFeedbackLink\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackFormOnlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20}\x0a','6461124XKkRIG','default','874450kzemGK'];a4_0x5685=function(){return _0x294dec;};return a4_0x5685();}exports[a4_0x1bc381(0xae)]=addPendingFeedBackForm;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a5_0x3c40(){const _0x53ed7b=['615QfLczz','5807711mtXXbn','__esModule','7308DJRdDm','1eYTeSW','\x0a\x20mutation\x20addUserExperience(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$experience:\x20String!\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$experienceCate:\x20String!\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$rate:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$updateIntervalHours:\x20Int\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$companyName:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$advertId:\x20Int\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$branchName:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20addUserExperience(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience:\x20$experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experienceCate:\x20$experienceCate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rate:\x20$rate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20updateIntervalHours:\x20$updateIntervalHours\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName:\x20$companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId:\x20$advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName:\x20$branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isUserExperienceAdded\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','18SyJiSH','default','6047810flheZU','847864eZyqSx','561978iJdXBk','10536tiWmFh','713160gwVUKd','9XUuvOr','7370uahMwT'];a5_0x3c40=function(){return _0x53ed7b;};return a5_0x3c40();}const a5_0x1cc87e=a5_0x4011;function a5_0x4011(_0x213063,_0x6c57fe){_0x213063=_0x213063-0x16b;const _0x3c40b0=a5_0x3c40();let _0x401137=_0x3c40b0[_0x213063];return _0x401137;}(function(_0x4f949c,_0x931f01){const _0x5cfb0a=a5_0x4011,_0x2ac535=_0x4f949c();while(!![]){try{const _0x42552f=-parseInt(_0x5cfb0a(0x175))/0x1*(parseInt(_0x5cfb0a(0x16c))/0x2)+-parseInt(_0x5cfb0a(0x177))/0x3*(-parseInt(_0x5cfb0a(0x16b))/0x4)+parseInt(_0x5cfb0a(0x171))/0x5*(-parseInt(_0x5cfb0a(0x16d))/0x6)+parseInt(_0x5cfb0a(0x172))/0x7+parseInt(_0x5cfb0a(0x16e))/0x8+parseInt(_0x5cfb0a(0x16f))/0x9*(-parseInt(_0x5cfb0a(0x179))/0xa)+parseInt(_0x5cfb0a(0x170))/0xb*(-parseInt(_0x5cfb0a(0x174))/0xc);if(_0x42552f===_0x931f01)break;else _0x2ac535['push'](_0x2ac535['shift']());}catch(_0x3bfee8){_0x2ac535['push'](_0x2ac535['shift']());}}}(a5_0x3c40,0xa637a));Object['defineProperty'](exports,a5_0x1cc87e(0x173),{'value':!![]});const addUserExperience=a5_0x1cc87e(0x176);exports[a5_0x1cc87e(0x178)]=addUserExperience;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a6_0x5eb2a5=a6_0x3c4e;function a6_0x1021(){const _0x553a2e=['5674053mkXBvr','4LmQKau','__esModule','4079530cIxPsf','111087vYuWqg','1731888nCzuPs','20998ZVtQhR','10661830TWSLbC','186gYyOjG','755041DJZaRq','144dBqRJG','\x0a\x20\x20\x20\x20\x20mutation\x20addUserMails($mails:\x20[mailInput]!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20addUserMails(mails:\x20$mails)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20hasUpdated\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','defineProperty'];a6_0x1021=function(){return _0x553a2e;};return a6_0x1021();}function a6_0x3c4e(_0x3dfef2,_0x265ca6){_0x3dfef2=_0x3dfef2-0x14e;const _0x102129=a6_0x1021();let _0x3c4e7f=_0x102129[_0x3dfef2];return _0x3c4e7f;}(function(_0x40c12b,_0x52cdb5){const _0x4735ca=a6_0x3c4e,_0x59188e=_0x40c12b();while(!![]){try{const _0x1fc8a3=-parseInt(_0x4735ca(0x14f))/0x1+parseInt(_0x4735ca(0x159))/0x2*(parseInt(_0x4735ca(0x14e))/0x3)+-parseInt(_0x4735ca(0x154))/0x4*(-parseInt(_0x4735ca(0x156))/0x5)+-parseInt(_0x4735ca(0x158))/0x6+-parseInt(_0x4735ca(0x153))/0x7+parseInt(_0x4735ca(0x150))/0x8*(-parseInt(_0x4735ca(0x157))/0x9)+parseInt(_0x4735ca(0x15a))/0xa;if(_0x1fc8a3===_0x52cdb5)break;else _0x59188e['push'](_0x59188e['shift']());}catch(_0x15bb66){_0x59188e['push'](_0x59188e['shift']());}}}(a6_0x1021,0x6f789));Object[a6_0x5eb2a5(0x152)](exports,a6_0x5eb2a5(0x155),{'value':!![]});const addUserMails=a6_0x5eb2a5(0x151);exports['default']=addUserMails;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a7_0x3eb599=a7_0x4785;function a7_0x4785(_0x39f329,_0x37d465){_0x39f329=_0x39f329-0xa8;const _0x12699d=a7_0x1269();let _0x47852b=_0x12699d[_0x39f329];return _0x47852b;}(function(_0x1ded89,_0x4b8d46){const _0x514613=a7_0x4785,_0x403760=_0x1ded89();while(!![]){try{const _0x32dac7=-parseInt(_0x514613(0xab))/0x1*(-parseInt(_0x514613(0xaf))/0x2)+-parseInt(_0x514613(0xa9))/0x3+-parseInt(_0x514613(0xb0))/0x4*(parseInt(_0x514613(0xa8))/0x5)+parseInt(_0x514613(0xad))/0x6+parseInt(_0x514613(0xb2))/0x7+-parseInt(_0x514613(0xb1))/0x8+parseInt(_0x514613(0xac))/0x9;if(_0x32dac7===_0x4b8d46)break;else _0x403760['push'](_0x403760['shift']());}catch(_0x3e65e7){_0x403760['push'](_0x403760['shift']());}}}(a7_0x1269,0xc827f));Object[a7_0x3eb599(0xae)](exports,'__esModule',{'value':!![]});const generateDiscountTokenFromUserAmount=a7_0x3eb599(0xb3);function a7_0x1269(){const _0x1c4a0f=['7917980bqXJtR','\x0a\x20mutation\x20generateDiscountTokenFromUserAmount(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$companyName:\x20String!\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$adjustedAmount:\x20Float\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$branchName:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20generateDiscountTokenFromUserAmount(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName:\x20$companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20adjustedAmount:\x20$adjustedAmount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName:\x20$branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discount\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20amount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20status\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20tagNo\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountToken\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20onlineDiscountCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20fullAmountConverted\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountGenerated\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','694570eLjgVa','3052308Qtbnqf','default','301VeVLKr','20511792JGkWiH','1634670yMeHwb','defineProperty','4174ZAQtrV','28UDmoId','12009496eSrMJD'];a7_0x1269=function(){return _0x1c4a0f;};return a7_0x1269();}exports[a7_0x3eb599(0xaa)]=generateDiscountTokenFromUserAmount;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a8_0xa2803=a8_0x9772;(function(_0x75d123,_0x546d2f){const _0x5cd0ff=a8_0x9772,_0x36b33c=_0x75d123();while(!![]){try{const _0x562055=-parseInt(_0x5cd0ff(0x1e3))/0x1+-parseInt(_0x5cd0ff(0x1e0))/0x2+-parseInt(_0x5cd0ff(0x1e7))/0x3+-parseInt(_0x5cd0ff(0x1e2))/0x4*(parseInt(_0x5cd0ff(0x1e1))/0x5)+parseInt(_0x5cd0ff(0x1e4))/0x6*(parseInt(_0x5cd0ff(0x1ea))/0x7)+parseInt(_0x5cd0ff(0x1df))/0x8+parseInt(_0x5cd0ff(0x1e9))/0x9*(parseInt(_0x5cd0ff(0x1e8))/0xa);if(_0x562055===_0x546d2f)break;else _0x36b33c['push'](_0x36b33c['shift']());}catch(_0x85093d){_0x36b33c['push'](_0x36b33c['shift']());}}}(a8_0x2500,0x4994b));function a8_0x2500(){const _0x1e7684=['27009YtFwfp','6YNoFze','\x0a\x20\x20query\x20getAllQrCodeUrls($hashVariables:\x20String)\x20{\x0a\x20\x20\x20\x20getAllQrCodeUrls(hashVariables:\x20$hashVariables)\x20{\x0a\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20qrUrls{\x0a\x20\x20\x20\x20\x20\x20\x20\x20url\x0a\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20advertType\x0a\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20}\x0a}\x0a\x20\x20','default','514932QvpTtz','5150350mHEDwB','9sahmZM','1961743qycTlf','defineProperty','3011288TsvQJN','281032NOoxwA','115uvEVWU','92372SGIaMK'];a8_0x2500=function(){return _0x1e7684;};return a8_0x2500();}Object[a8_0xa2803(0x1eb)](exports,'__esModule',{'value':!![]});const getAllQRCodeUrls=a8_0xa2803(0x1e5);function a8_0x9772(_0xc06adc,_0x5774cb){_0xc06adc=_0xc06adc-0x1df;const _0x2500ae=a8_0x2500();let _0x977238=_0x2500ae[_0xc06adc];return _0x977238;}exports[a8_0xa2803(0x1e6)]=getAllQRCodeUrls;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a9_0xd8d1ad=a9_0x3b93;(function(_0x17d2e5,_0x5e4138){const _0x33aba1=a9_0x3b93,_0xd124f4=_0x17d2e5();while(!![]){try{const _0x2471af=parseInt(_0x33aba1(0x13b))/0x1+-parseInt(_0x33aba1(0x139))/0x2*(-parseInt(_0x33aba1(0x132))/0x3)+-parseInt(_0x33aba1(0x137))/0x4*(-parseInt(_0x33aba1(0x135))/0x5)+parseInt(_0x33aba1(0x140))/0x6*(-parseInt(_0x33aba1(0x13e))/0x7)+parseInt(_0x33aba1(0x13f))/0x8+parseInt(_0x33aba1(0x13c))/0x9*(-parseInt(_0x33aba1(0x134))/0xa)+parseInt(_0x33aba1(0x13d))/0xb*(-parseInt(_0x33aba1(0x133))/0xc);if(_0x2471af===_0x5e4138)break;else _0xd124f4['push'](_0xd124f4['shift']());}catch(_0x1a1da4){_0xd124f4['push'](_0xd124f4['shift']());}}}(a9_0x151c,0xef7e4));Object[a9_0xd8d1ad(0x13a)](exports,a9_0xd8d1ad(0x136),{'value':!![]});const goFelixBiLogin=a9_0xd8d1ad(0x138);function a9_0x3b93(_0x1007fb,_0x5dff1e){_0x1007fb=_0x1007fb-0x132;const _0x151c56=a9_0x151c();let _0x3b93aa=_0x151c56[_0x1007fb];return _0x3b93aa;}function a9_0x151c(){const _0x3005c4=['4549720jZtjXG','20994pdkXvr','default','77829HnZMWu','12gVMeYg','245090DjgUPe','4618505ogChwr','__esModule','4xAJbwe','\x0aquery\x20getBiStats($email:\x20String,\x20$commandName:\x20CommandNameEnum!)\x0a\x20\x20\x20\x20\x20\x20\x20\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20getBiStats(email:\x20$email,\x20commandName:\x20$commandName){\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountStats{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitAdvertTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitVendorUrlTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackStats{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitVendorTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20viewedFeedbackFormTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20completedFeedbackFormTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitAdvertTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyNewsStats{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitAdvertTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20visitVendorUrlTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyStats{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountCompanyNameSearchTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackCompanyNameSearchTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyNewsCompanyNameSearchTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20totalDiscountsRedeemed\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20subscribeTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20unsubscribeTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20totalDiscountAmount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateStats\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experienceCategory\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperienceTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateCount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyUserExperienceStats{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experienceCategory\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperienceTotal\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20','146kIeeHo','defineProperty','228759uMyeyS','333tHmuVC','13149059Gcgxzc','1064EVHpzg'];a9_0x151c=function(){return _0x3005c4;};return a9_0x151c();}exports[a9_0xd8d1ad(0x141)]=goFelixBiLogin;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a10_0xb764(){const _0x341d8b=['26948NUUMUh','\x0a\x20\x20query\x20getUserBulkData\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20getUserBulkData\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20hasUserData\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userMailDiscountAdverts\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertImageUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyLogoUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20price\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20onlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20currency\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20keyword1\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20keyword2\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20keyword3\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20updateTimestamp\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userMailFeedbacksAdverts\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertImageUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackFormOnlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20completionType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20onlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20updateTimestamp\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyLogoUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20adminApproveApplicableToAllBranches\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20makeApplicableToAllBranches\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20reward\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userMailCompanyNewsAdverts\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertImageUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyLogoUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20updateTimestamp\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20onlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20description\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20refFeedbackFormTitle\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperiences\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20categoryExperience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20lastUpdate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20times\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userDiscountTokens\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountToken\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20amount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20onlineDiscountCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userDiscountAmountList\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20totalAmount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20pendingFeedbackLinks\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20expiry\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackFormOnlineUrl\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20surveyCompletion\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20completeDate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20surveyType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20mails\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20type\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20company\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20sentDate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20read\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companySubscribeList\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userProfile\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20profileImage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20age\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20location\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20gender\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20country\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20countryCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20aboutMe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20fontColor\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20backgroundColor\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperiences\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20categoryExperience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20lastUpdate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20times\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20friends\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20profileImage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20age\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20gender\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20country\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20countryCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20location\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20aboutMe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperiences\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20categoryExperience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20lastUpdate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20times\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userSettings\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20showBreakingAlerts\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyNewsNotifications\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20feedbackNotifications\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountsNotifications\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}','13GvBIhC','1832868WhEfFn','259671hAbTHS','4108000FRKaiP','8hAHuVz','124hWFOtY','__esModule','1140486RVvDRU','1352582yVkYAN','42955sZVUFT'];a10_0xb764=function(){return _0x341d8b;};return a10_0xb764();}const a10_0x5ecd07=a10_0x1014;function a10_0x1014(_0x4433f5,_0x27fd08){_0x4433f5=_0x4433f5-0x1a7;const _0xb764d6=a10_0xb764();let _0x1014ff=_0xb764d6[_0x4433f5];return _0x1014ff;}(function(_0xf327a,_0x592708){const _0x3661cd=a10_0x1014,_0x4fbe53=_0xf327a();while(!![]){try{const _0x2e2376=parseInt(_0x3661cd(0x1b1))/0x1*(parseInt(_0x3661cd(0x1af))/0x2)+-parseInt(_0x3661cd(0x1a7))/0x3+parseInt(_0x3661cd(0x1aa))/0x4*(parseInt(_0x3661cd(0x1ae))/0x5)+-parseInt(_0x3661cd(0x1ac))/0x6+parseInt(_0x3661cd(0x1ad))/0x7*(parseInt(_0x3661cd(0x1a9))/0x8)+parseInt(_0x3661cd(0x1b2))/0x9+-parseInt(_0x3661cd(0x1a8))/0xa;if(_0x2e2376===_0x592708)break;else _0x4fbe53['push'](_0x4fbe53['shift']());}catch(_0x6491a){_0x4fbe53['push'](_0x4fbe53['shift']());}}}(a10_0xb764,0x24d8b));Object['defineProperty'](exports,a10_0x5ecd07(0x1ab),{'value':!![]});const getUserBulkData=a10_0x5ecd07(0x1b0);exports['default']=getUserBulkData;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a11_0x4554e3=a11_0x1652;(function(_0x1ffc95,_0x5c13d1){const _0x77f9c2=a11_0x1652,_0xfe266a=_0x1ffc95();while(!![]){try{const _0x236287=-parseInt(_0x77f9c2(0x1ab))/0x1*(-parseInt(_0x77f9c2(0x1aa))/0x2)+parseInt(_0x77f9c2(0x1a9))/0x3*(-parseInt(_0x77f9c2(0x1a5))/0x4)+parseInt(_0x77f9c2(0x1a3))/0x5*(parseInt(_0x77f9c2(0x1a6))/0x6)+-parseInt(_0x77f9c2(0x1a0))/0x7+-parseInt(_0x77f9c2(0x1a1))/0x8+-parseInt(_0x77f9c2(0x1a2))/0x9+parseInt(_0x77f9c2(0x1a4))/0xa;if(_0x236287===_0x5c13d1)break;else _0xfe266a['push'](_0xfe266a['shift']());}catch(_0x16b1c5){_0xfe266a['push'](_0xfe266a['shift']());}}}(a11_0xee76,0x4fbb5));function a11_0xee76(){const _0x38eed3=['2361079IpJhwE','4005648nNJtnr','2340450zdaiBx','2570lINdZs','12663540ckbuhV','4TcntzF','876oYwdkW','default','defineProperty','453867ZGEYoz','318oikRWz','1475sgHypD','__esModule'];a11_0xee76=function(){return _0x38eed3;};return a11_0xee76();}Object[a11_0x4554e3(0x1a8)](exports,a11_0x4554e3(0x19f),{'value':!![]});const getUserMails='\x0a\x0aquery\x20getUserMails{\x0a\x20\x20\x20\x20getUserMails{\x0a\x20\x20\x20\x20\x20\x20mails{\x0a\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20title\x0a\x20\x20\x20\x20\x20\x20\x20\x20company\x0a\x20\x20\x20\x20\x20\x20\x20\x20type\x0a\x20\x20\x20\x20\x20\x20\x20\x20advertId\x0a\x20\x20\x20\x20\x20\x20\x20\x20read\x0a\x20\x20\x20\x20\x20\x20\x20\x20sentDate\x0a\x20\x20\x20\x20\x20\x20\x20\x20branchName\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20}\x0a\x20\x20}\x0a';function a11_0x1652(_0x5c5c78,_0x6bc282){_0x5c5c78=_0x5c5c78-0x19f;const _0xee765=a11_0xee76();let _0x165231=_0xee765[_0x5c5c78];return _0x165231;}exports[a11_0x4554e3(0x1a7)]=getUserMails;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a12_0x199cf9=a12_0x4d60;function a12_0x4d60(_0x2971ed,_0x4cb3a9){_0x2971ed=_0x2971ed-0x1dc;const _0x4b971f=a12_0x4b97();let _0x4d60ae=_0x4b971f[_0x2971ed];return _0x4d60ae;}function a12_0x4b97(){const _0x333449=['40XVrKcx','__esModule','217685xUSBTn','5040012caPIWw','default','352cZAGsn','2338764jLYPpF','\x0a\x20query\x20getUserProfiles($index:\x20Int!,\x20$value:\x20String!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20getUserProfiles(index:\x20$index,\x20value:\x20$value)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20hasUserProfiles\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userProfiles\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20profileImage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20name\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20age\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20location\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20gender\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20country\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20countryCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20backgroundColor\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20fontColor\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20aboutMe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userExperiences\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20experience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rateText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20categoryExperience\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20id\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20lastUpdate\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20times\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20}\x0a','673605lhLFrw','169452PSZzcD','835429KVoACt','945twIyeh'];a12_0x4b97=function(){return _0x333449;};return a12_0x4b97();}(function(_0x1fc8fb,_0x3eb8aa){const _0x127517=a12_0x4d60,_0x1f0030=_0x1fc8fb();while(!![]){try{const _0x2e97ef=parseInt(_0x127517(0x1dc))/0x1+-parseInt(_0x127517(0x1e0))/0x2+parseInt(_0x127517(0x1e5))/0x3*(-parseInt(_0x127517(0x1df))/0x4)+parseInt(_0x127517(0x1e2))/0x5+parseInt(_0x127517(0x1dd))/0x6+-parseInt(_0x127517(0x1e4))/0x7*(-parseInt(_0x127517(0x1e6))/0x8)+parseInt(_0x127517(0x1e3))/0x9;if(_0x2e97ef===_0x3eb8aa)break;else _0x1f0030['push'](_0x1f0030['shift']());}catch(_0x559761){_0x1f0030['push'](_0x1f0030['shift']());}}}(a12_0x4b97,0x95235));Object['defineProperty'](exports,a12_0x199cf9(0x1e7),{'value':!![]});const getUserProfiles=a12_0x199cf9(0x1e1);exports[a12_0x199cf9(0x1de)]=getUserProfiles;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a13_0x49815e=a13_0x1b4e;(function(_0x2db7f7,_0x35eac0){const _0x45fe1a=a13_0x1b4e,_0x106199=_0x2db7f7();while(!![]){try{const _0x56e677=parseInt(_0x45fe1a(0x1f5))/0x1+-parseInt(_0x45fe1a(0x1f4))/0x2*(-parseInt(_0x45fe1a(0x1f8))/0x3)+parseInt(_0x45fe1a(0x1f1))/0x4*(-parseInt(_0x45fe1a(0x1f2))/0x5)+-parseInt(_0x45fe1a(0x1f9))/0x6+-parseInt(_0x45fe1a(0x1ee))/0x7*(-parseInt(_0x45fe1a(0x1f0))/0x8)+parseInt(_0x45fe1a(0x1f3))/0x9+parseInt(_0x45fe1a(0x1f6))/0xa*(-parseInt(_0x45fe1a(0x1ef))/0xb);if(_0x56e677===_0x35eac0)break;else _0x106199['push'](_0x106199['shift']());}catch(_0x48197a){_0x106199['push'](_0x106199['shift']());}}}(a13_0x5894,0x6bcd3));Object['defineProperty'](exports,a13_0x49815e(0x1f7),{'value':!![]});function a13_0x1b4e(_0x5c8226,_0x56e29f){_0x5c8226=_0x5c8226-0x1ed;const _0x589413=a13_0x5894();let _0x1b4e56=_0x589413[_0x5c8226];return _0x1b4e56;}function a13_0x5894(){const _0xd73ad5=['789948ccIPdh','260dDdhSH','__esModule','1585155xjNFQi','1451214uGKfou','default','54761SOqyUN','529562boPjtL','584mtBkox','232ZWMPeQ','30420TWqxAn','3587184OPYEXB','2IYedyp'];a13_0x5894=function(){return _0xd73ad5;};return a13_0x5894();}const logError='\x0a\x20\x20mutation\x20logError($errorDetails:\x20ErrorDetailsInput!){\x0a\x20\x20\x20\x20\x20\x20logError(errorDetails:\x20$errorDetails){\x0a\x20\x20\x20\x20\x20\x20\x20\x20isLogged\x0a\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20}\x0a';exports[a13_0x49815e(0x1ed)]=logError;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a14_0x20bee6=a14_0x39ce;function a14_0x39ce(_0x16ba1a,_0x2ade0c){_0x16ba1a=_0x16ba1a-0x157;const _0x34f23d=a14_0x34f2();let _0x39ce33=_0x34f23d[_0x16ba1a];return _0x39ce33;}(function(_0x8f150c,_0x47058f){const _0x567cc7=a14_0x39ce,_0x244e61=_0x8f150c();while(!![]){try{const _0x32f6b0=parseInt(_0x567cc7(0x162))/0x1*(-parseInt(_0x567cc7(0x160))/0x2)+parseInt(_0x567cc7(0x15e))/0x3*(parseInt(_0x567cc7(0x15d))/0x4)+-parseInt(_0x567cc7(0x15a))/0x5*(-parseInt(_0x567cc7(0x15b))/0x6)+parseInt(_0x567cc7(0x15f))/0x7*(parseInt(_0x567cc7(0x161))/0x8)+-parseInt(_0x567cc7(0x15c))/0x9*(-parseInt(_0x567cc7(0x164))/0xa)+-parseInt(_0x567cc7(0x157))/0xb+-parseInt(_0x567cc7(0x158))/0xc;if(_0x32f6b0===_0x47058f)break;else _0x244e61['push'](_0x244e61['shift']());}catch(_0x3bcc11){_0x244e61['push'](_0x244e61['shift']());}}}(a14_0x34f2,0xc6f81));Object['defineProperty'](exports,'__esModule',{'value':!![]});const redeemDiscountCode=a14_0x20bee6(0x163);exports[a14_0x20bee6(0x159)]=redeemDiscountCode;function a14_0x34f2(){const _0x234f66=['2137672oDxSRF','3ydlTJo','87479bIPvxM','2HfhMWB','832oStHxw','1375576OsleEH','\x0a\x20\x20\x20query\x20redeemDiscountToken(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$discountToken:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$discountCode:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$userName:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$discountInputType:\x20DiscountInputType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$hashVariables:\x20String\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$discountedAmount:\x20Float\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20redeemDiscountToken(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountToken:\x20$discountToken\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountCode:\x20$discountCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20userName:\x20$userName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountInputType:\x20$discountInputType\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20hashVariables:\x20$hashVariables\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountedAmount:\x20$discountedAmount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20discountTokenHasBeenRedeemed\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20amount\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20rewardText\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20','1550moPgrS','118657praWZp','22083840XmEBZU','default','5VcJMhm','9159834WFZVUo','39537hxLBWV'];a14_0x34f2=function(){return _0x234f66;};return a14_0x34f2();}
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a15_0x302bae=a15_0x2490;(function(_0x5524ed,_0x37719d){const _0x1be8b5=a15_0x2490,_0x8e6c8b=_0x5524ed();while(!![]){try{const _0x4863b0=parseInt(_0x1be8b5(0x11e))/0x1*(parseInt(_0x1be8b5(0x121))/0x2)+-parseInt(_0x1be8b5(0x11f))/0x3+parseInt(_0x1be8b5(0x128))/0x4*(parseInt(_0x1be8b5(0x123))/0x5)+parseInt(_0x1be8b5(0x11d))/0x6*(parseInt(_0x1be8b5(0x129))/0x7)+parseInt(_0x1be8b5(0x122))/0x8*(-parseInt(_0x1be8b5(0x120))/0x9)+-parseInt(_0x1be8b5(0x124))/0xa+parseInt(_0x1be8b5(0x125))/0xb;if(_0x4863b0===_0x37719d)break;else _0x8e6c8b['push'](_0x8e6c8b['shift']());}catch(_0x14eed8){_0x8e6c8b['push'](_0x8e6c8b['shift']());}}}(a15_0x3ab8,0xd1833));Object[a15_0x302bae(0x126)](exports,a15_0x302bae(0x127),{'value':!![]});function a15_0x3ab8(){const _0x4a4d10=['2305164RjiYmA','13092093GRsvsu','132pTclwv','8zyrBrq','5QsNTjG','5059220BIXkpZ','3674759UaQwDA','defineProperty','__esModule','1419788eIHhXB','28DHYRDv','\x0a\x20\x20mutation\x20removeFriend($friendUserName:\x20String!)\x20{\x0a\x20\x20\x20\x20removeFriend(friendUserName:\x20$friendUserName)\x20{\x0a\x20\x20\x20\x20\x20\x20isRemoveFriendSuccess\x0a\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20}\x0a\x20\x20}\x0a','default','1936254RRiLeE','24353EyEJSA'];a15_0x3ab8=function(){return _0x4a4d10;};return a15_0x3ab8();}function a15_0x2490(_0x84b389,_0x1adfa9){_0x84b389=_0x84b389-0x11c;const _0x3ab8e5=a15_0x3ab8();let _0x249018=_0x3ab8e5[_0x84b389];return _0x249018;}const removeFriend=a15_0x302bae(0x12a);exports[a15_0x302bae(0x11c)]=removeFriend;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a16_0x45e205=a16_0x42f3;(function(_0x5ae889,_0x3c2d5d){const _0x41f8c0=a16_0x42f3,_0x5944d2=_0x5ae889();while(!![]){try{const _0x1f3c66=-parseInt(_0x41f8c0(0xac))/0x1+-parseInt(_0x41f8c0(0xa7))/0x2+-parseInt(_0x41f8c0(0xaa))/0x3+parseInt(_0x41f8c0(0xb0))/0x4+parseInt(_0x41f8c0(0xae))/0x5*(-parseInt(_0x41f8c0(0xb2))/0x6)+-parseInt(_0x41f8c0(0xb1))/0x7*(-parseInt(_0x41f8c0(0xaf))/0x8)+-parseInt(_0x41f8c0(0xab))/0x9*(-parseInt(_0x41f8c0(0xa8))/0xa);if(_0x1f3c66===_0x3c2d5d)break;else _0x5944d2['push'](_0x5944d2['shift']());}catch(_0x51387d){_0x5944d2['push'](_0x5944d2['shift']());}}}(a16_0x2562,0xad12d));function a16_0x2562(){const _0x4a5d02=['\x0a\x20\x20\x20\x20mutation\x20removePendingFeedbackLink($advertId:\x20Int!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20removePendingFeedbackLink(advertId:\x20$advertId)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20pendingFeedbackRemoved\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','169406QfMqCj','480GGCuPQ','defineProperty','245220XwKtgh','248904Tlyzsx','1335801CXfwAm','__esModule','560qAmvyb','6968bHLEae','5571388kusziA','2674EyQsoF','45102epjekd'];a16_0x2562=function(){return _0x4a5d02;};return a16_0x2562();}function a16_0x42f3(_0x2359f,_0x381272){_0x2359f=_0x2359f-0xa6;const _0x25622d=a16_0x2562();let _0x42f396=_0x25622d[_0x2359f];return _0x42f396;}Object[a16_0x45e205(0xa9)](exports,a16_0x45e205(0xad),{'value':!![]});const removePendingFeedbackLink=a16_0x45e205(0xa6);exports['default']=removePendingFeedbackLink;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a17_0x50c38c=a17_0x1b51;function a17_0x45c0(){const _0x2a3c14=['__esModule','1584988EVPFri','2959440YdEbuJ','216728HcLybe','defineProperty','991713NjOuTz','default','6009tecvDo','91cJMUyE','1849335HrEXvF','5252589CwmSaw','102dMvEVg','\x0aquery\x20removeUserMail($mailId:\x20Int!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20removeUserMail(mailId:\x20$mailId)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20mailRemoved\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a'];a17_0x45c0=function(){return _0x2a3c14;};return a17_0x45c0();}(function(_0x41ce58,_0x225a73){const _0x2ac487=a17_0x1b51,_0x53fd19=_0x41ce58();while(!![]){try{const _0x930af0=parseInt(_0x2ac487(0x15c))/0x1*(-parseInt(_0x2ac487(0x153))/0x2)+parseInt(_0x2ac487(0x15a))/0x3+parseInt(_0x2ac487(0x156))/0x4+-parseInt(_0x2ac487(0x15e))/0x5+parseInt(_0x2ac487(0x157))/0x6+-parseInt(_0x2ac487(0x15d))/0x7*(-parseInt(_0x2ac487(0x158))/0x8)+-parseInt(_0x2ac487(0x152))/0x9;if(_0x930af0===_0x225a73)break;else _0x53fd19['push'](_0x53fd19['shift']());}catch(_0x497781){_0x53fd19['push'](_0x53fd19['shift']());}}}(a17_0x45c0,0x4c3e6));Object[a17_0x50c38c(0x159)](exports,a17_0x50c38c(0x155),{'value':!![]});function a17_0x1b51(_0x245c51,_0x4d6e10){_0x245c51=_0x245c51-0x152;const _0x45c027=a17_0x45c0();let _0x1b5140=_0x45c027[_0x245c51];return _0x1b5140;}const removeUserMail=a17_0x50c38c(0x154);exports[a17_0x50c38c(0x15b)]=removeUserMail;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a18_0x3289c3=a18_0xfb3c;(function(_0xc035a8,_0xe01e50){const _0x529eaa=a18_0xfb3c,_0x4c9d77=_0xc035a8();while(!![]){try{const _0x1c9673=-parseInt(_0x529eaa(0x124))/0x1+-parseInt(_0x529eaa(0x121))/0x2*(-parseInt(_0x529eaa(0x122))/0x3)+parseInt(_0x529eaa(0x12c))/0x4+parseInt(_0x529eaa(0x12b))/0x5*(parseInt(_0x529eaa(0x126))/0x6)+-parseInt(_0x529eaa(0x12d))/0x7*(parseInt(_0x529eaa(0x123))/0x8)+-parseInt(_0x529eaa(0x12e))/0x9+-parseInt(_0x529eaa(0x125))/0xa*(parseInt(_0x529eaa(0x12a))/0xb);if(_0x1c9673===_0xe01e50)break;else _0x4c9d77['push'](_0x4c9d77['shift']());}catch(_0x26b352){_0x4c9d77['push'](_0x4c9d77['shift']());}}}(a18_0x3cd1,0xb3e77));Object['defineProperty'](exports,a18_0x3289c3(0x129),{'value':!![]});function a18_0xfb3c(_0x4e8c62,_0xc99f00){_0x4e8c62=_0x4e8c62-0x121;const _0x3cd17f=a18_0x3cd1();let _0xfb3c1d=_0x3cd17f[_0x4e8c62];return _0xfb3c1d;}const subscribeToCompany=a18_0x3289c3(0x128);function a18_0x3cd1(){const _0x54e291=['4822996QhsnOf','5467koepjl','1850967aQedmX','2QKISqe','2012334EJkrdV','488UKHjuZ','15287KMTjAt','221310NGphzk','241752NHnuMy','default','\x0a\x20\x20\x20\x20mutation\x20subscribeToCompany(\x0a\x20\x20\x20\x20\x20\x20\x20\x20$companyName:\x20String!\x0a\x20\x20\x20\x20\x20\x20\x20\x20$branchName:\x20String\x0a\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20subscribeToCompany(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName:\x20$companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName:\x20$branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSubscribe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20}\x0a','__esModule','473FRCnol','10bFryMc'];a18_0x3cd1=function(){return _0x54e291;};return a18_0x3cd1();}exports[a18_0x3289c3(0x127)]=subscribeToCompany;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';function a19_0x35b8(){const _0x4c53a9=['31015EBVohd','__esModule','702UluMHz','1542968CriMTW','6vmNbop','6UVccKg','90NQqssE','1270786uEZOdR','\x0a\x20\x20\x20\x20\x20mutation\x20unSubscribeToCompany(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$companyName:\x20String!\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20$branchName:\x20String\x0a\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20unSubscribeToCompany(\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20companyName:\x20$companyName\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20branchName:\x20$branchName\x0a\x20\x20\x20\x20\x20\x20\x20\x20)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isUnSubscribe\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20}\x0a','72wvlNMj','1685145CqyyGO','1346404VowXmp','2938572AGAUte','default','defineProperty'];a19_0x35b8=function(){return _0x4c53a9;};return a19_0x35b8();}const a19_0x3dfbbd=a19_0x1f15;(function(_0x1ef2e6,_0x20cd7f){const _0x229073=a19_0x1f15,_0x2f96ec=_0x1ef2e6();while(!![]){try{const _0x42e3e7=parseInt(_0x229073(0x117))/0x1*(-parseInt(_0x229073(0x110))/0x2)+parseInt(_0x229073(0x113))/0x3*(parseInt(_0x229073(0x119))/0x4)+-parseInt(_0x229073(0x11d))/0x5*(-parseInt(_0x229073(0x112))/0x6)+parseInt(_0x229073(0x118))/0x7+parseInt(_0x229073(0x111))/0x8+parseInt(_0x229073(0x11a))/0x9+parseInt(_0x229073(0x114))/0xa*(-parseInt(_0x229073(0x115))/0xb);if(_0x42e3e7===_0x20cd7f)break;else _0x2f96ec['push'](_0x2f96ec['shift']());}catch(_0x279a21){_0x2f96ec['push'](_0x2f96ec['shift']());}}}(a19_0x35b8,0x5b6f1));function a19_0x1f15(_0x1134b6,_0x4da262){_0x1134b6=_0x1134b6-0x110;const _0x35b81a=a19_0x35b8();let _0x1f15ac=_0x35b81a[_0x1134b6];return _0x1f15ac;}Object[a19_0x3dfbbd(0x11c)](exports,a19_0x3dfbbd(0x11e),{'value':!![]});const unSubscribeToCompany=a19_0x3dfbbd(0x116);exports[a19_0x3dfbbd(0x11b)]=unSubscribeToCompany;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a20_0x58438b=a20_0x1da9;function a20_0x16ee(){const _0x20a571=['\x0a\x20\x20mutation\x20updateUserProfile\x20($userProfileInput:\x20userProfileInput!){\x0a\x20\x20\x20\x20\x20updateUserProfile(userProfile:\x20$userProfileInput){\x0a\x20\x20\x20\x20\x20\x20\x20isUserProfileUpdated\x0a\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20}\x0a\x20\x20\x20}\x0a','1845cMlNbR','defineProperty','1596690yXCpxx','9160jtOEEV','__esModule','default','695533QLUsfi','8327432pXWYWh','39affuLG','7549670EGGkGp','222118vnpSdB','11lcysgi','21PVPLLK','606990NCHAJS'];a20_0x16ee=function(){return _0x20a571;};return a20_0x16ee();}(function(_0x4e1c38,_0x4e089f){const _0x18a02e=a20_0x1da9,_0x3fd058=_0x4e1c38();while(!![]){try{const _0x2cd313=parseInt(_0x18a02e(0x1b8))/0x1+parseInt(_0x18a02e(0x1ad))/0x2*(-parseInt(_0x18a02e(0x1ba))/0x3)+parseInt(_0x18a02e(0x1b5))/0x4*(parseInt(_0x18a02e(0x1b2))/0x5)+parseInt(_0x18a02e(0x1b0))/0x6*(parseInt(_0x18a02e(0x1af))/0x7)+parseInt(_0x18a02e(0x1b9))/0x8+parseInt(_0x18a02e(0x1b4))/0x9+parseInt(_0x18a02e(0x1ac))/0xa*(-parseInt(_0x18a02e(0x1ae))/0xb);if(_0x2cd313===_0x4e089f)break;else _0x3fd058['push'](_0x3fd058['shift']());}catch(_0x314787){_0x3fd058['push'](_0x3fd058['shift']());}}}(a20_0x16ee,0xd2d9b));Object[a20_0x58438b(0x1b3)](exports,a20_0x58438b(0x1b6),{'value':!![]});function a20_0x1da9(_0x315560,_0xaa8619){_0x315560=_0x315560-0x1ac;const _0x16ee90=a20_0x16ee();let _0x1da956=_0x16ee90[_0x315560];return _0x1da956;}const updateUserProfile=a20_0x58438b(0x1b1);exports[a20_0x58438b(0x1b7)]=updateUserProfile;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a21_0x5bde93=a21_0x2315;(function(_0x57d466,_0x21364){const _0x439ba9=a21_0x2315,_0x4e62cf=_0x57d466();while(!![]){try{const _0x321039=-parseInt(_0x439ba9(0x117))/0x1+parseInt(_0x439ba9(0x115))/0x2+-parseInt(_0x439ba9(0x114))/0x3*(-parseInt(_0x439ba9(0x113))/0x4)+-parseInt(_0x439ba9(0x110))/0x5+parseInt(_0x439ba9(0x10e))/0x6+-parseInt(_0x439ba9(0x111))/0x7*(-parseInt(_0x439ba9(0x116))/0x8)+-parseInt(_0x439ba9(0x10d))/0x9;if(_0x321039===_0x21364)break;else _0x4e62cf['push'](_0x4e62cf['shift']());}catch(_0x36bbdd){_0x4e62cf['push'](_0x4e62cf['shift']());}}}(a21_0x426a,0xa6c4f));function a21_0x426a(){const _0x5ca268=['1633712rfJyeW','210546HXZfuP','__esModule','1229535TBapRP','3223488JprmtJ','\x0a\x20\x20mutation\x20updateUserSettings($settings:\x20userSettingsInput!)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20updateUserSettings(settings:\x20$settings)\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20hasUpdatedSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20isSuccess\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorCode\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20errorMessage\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20}\x0a\x20\x20\x20\x20\x20\x20\x20\x20}\x0a','6768035pOBQZY','7QFdnmC','defineProperty','22472ZqVjTs','303GnzxmX','2149950dPmnrJ'];a21_0x426a=function(){return _0x5ca268;};return a21_0x426a();}Object[a21_0x5bde93(0x112)](exports,a21_0x5bde93(0x10c),{'value':!![]});const updateUserSettings=a21_0x5bde93(0x10f);function a21_0x2315(_0x3a049e,_0xa2e64e){_0x3a049e=_0x3a049e-0x10c;const _0x426ae0=a21_0x426a();let _0x2315cc=_0x426ae0[_0x3a049e];return _0x2315cc;}exports['default']=updateUserSettings;
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a22_0x45c6fd=a22_0x31b4;function a22_0x69ea(){const _0x295f63=['errorMessage','Request\x20Failed,\x20you\x20set\x20activateMockCalls\x20to\x20true,\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20but\x20you\x20have\x20not\x20added\x20a\x20mock\x20function\x20for\x20getCompanyNewsStats','graphQlCommandNames','10kEyjbm','getBiStats','4626240oDHWdM','accountEmail','135bwdBpu','YbueW','default','8239eOImEk','qPTCX','379153RkgVRV','3528012gxdvIQ','resolve','value','__importDefault','948dUxgRG','getBiStatsCommands','defineProperty','EEQtE','../../config','1108MHjHZA','origin','../../constants','logError','kKYMc','420mZRljb','../../queries/getBiStats','diZEn','mockCalls','../../utilities/fetch','throw','5483655EiXqnZ','Unable\x20to\x20process\x20this\x20request\x20at\x20this\x20time,\x20please\x20try\x20again\x20later','appCode','7WdoPXN','25448kYytqK','stringify','apply','apiKey','getCompanyNewsStatsAsync','go_felix_bi_api','app','companyNewsStats','data','Request\x20Failed,\x20Please\x20make\x20sure\x20you\x20have\x20enter\x20the\x20licenseKey','__esModule','MapToResponseObj','then','oFiCd','next'];a22_0x69ea=function(){return _0x295f63;};return a22_0x69ea();}(function(_0x2d8c84,_0x251a57){const _0x4faa4e=a22_0x31b4,_0x56a042=_0x2d8c84();while(!![]){try{const _0x141020=-parseInt(_0x4faa4e(0x1ee))/0x1+parseInt(_0x4faa4e(0x1f8))/0x2*(-parseInt(_0x4faa4e(0x1fd))/0x3)+-parseInt(_0x4faa4e(0x207))/0x4*(-parseInt(_0x4faa4e(0x1e9))/0x5)+-parseInt(_0x4faa4e(0x1ef))/0x6*(-parseInt(_0x4faa4e(0x206))/0x7)+parseInt(_0x4faa4e(0x1e7))/0x8+parseInt(_0x4faa4e(0x203))/0x9*(-parseInt(_0x4faa4e(0x1e5))/0xa)+parseInt(_0x4faa4e(0x1ec))/0xb*(parseInt(_0x4faa4e(0x1f3))/0xc);if(_0x141020===_0x251a57)break;else _0x56a042['push'](_0x56a042['shift']());}catch(_0x434f1f){_0x56a042['push'](_0x56a042['shift']());}}}(a22_0x69ea,0x50dd3));var __awaiter=this&&this['__awaiter']||function(_0x4d6e54,_0x3607bb,_0x4ee36c,_0x12ca22){const _0x482b3b=a22_0x31b4,_0x3193cc={'YbueW':function(_0x2cea67,_0x26ba05){return _0x2cea67(_0x26ba05);},'kKYMc':_0x482b3b(0x202)};function _0x522725(_0x29e294){const _0x15223e={'SXLMx':function(_0x26f128,_0x1d9d0d){const _0x5a1e3b=a22_0x31b4;return _0x3193cc[_0x5a1e3b(0x1ea)](_0x26f128,_0x1d9d0d);}};return _0x29e294 instanceof _0x4ee36c?_0x29e294:new _0x4ee36c(function(_0x4f6065){_0x15223e['SXLMx'](_0x4f6065,_0x29e294);});}return new(_0x4ee36c||(_0x4ee36c=Promise))(function(_0x208d24,_0x13c187){const _0x51f78a=_0x482b3b,_0x2bbe7c={'diZEn':function(_0xdddd79,_0x66bb27){const _0x1a6cdc=a22_0x31b4;return _0x3193cc[_0x1a6cdc(0x1ea)](_0xdddd79,_0x66bb27);},'EEQtE':_0x3193cc[_0x51f78a(0x1fc)]};function _0x3196c3(_0x59c28b){const _0x44bb9d=_0x51f78a;try{_0x3193cc['YbueW'](_0x307691,_0x12ca22[_0x44bb9d(0x1e1)](_0x59c28b));}catch(_0x1c48af){_0x3193cc[_0x44bb9d(0x1ea)](_0x13c187,_0x1c48af);}}function _0x2af0e1(_0x254c50){const _0x4b35b5=_0x51f78a;try{_0x2bbe7c[_0x4b35b5(0x1ff)](_0x307691,_0x12ca22[_0x2bbe7c[_0x4b35b5(0x1f6)]](_0x254c50));}catch(_0x156df9){_0x13c187(_0x156df9);}}function _0x307691(_0x570264){const _0x35c807=_0x51f78a;_0x570264['done']?_0x3193cc[_0x35c807(0x1ea)](_0x208d24,_0x570264[_0x35c807(0x1f1)]):_0x522725(_0x570264[_0x35c807(0x1f1)])[_0x35c807(0x213)](_0x3196c3,_0x2af0e1);}_0x3193cc['YbueW'](_0x307691,(_0x12ca22=_0x12ca22[_0x51f78a(0x209)](_0x4d6e54,_0x3607bb||[]))[_0x51f78a(0x1e1)]());});},__importDefault=this&&this[a22_0x45c6fd(0x1f2)]||function(_0x55f8c2){const _0x13c022=a22_0x45c6fd;return _0x55f8c2&&_0x55f8c2[_0x13c022(0x211)]?_0x55f8c2:{'default':_0x55f8c2};};Object[a22_0x45c6fd(0x1f5)](exports,a22_0x45c6fd(0x211),{'value':!![]}),exports['getCompanyNewsStatsAsync']=void 0x0;const mapper_1=require('../../utilities/mapper'),logError_1=__importDefault(require('../../queries/logError')),getBiStats_1=__importDefault(require(a22_0x45c6fd(0x1fe))),fetch_1=__importDefault(require(a22_0x45c6fd(0x201))),constants_1=__importDefault(require(a22_0x45c6fd(0x1fa))),config_1=__importDefault(require(a22_0x45c6fd(0x1f7))),getCompanyNewsStatsAsync=_0x4276b7=>__awaiter(void 0x0,void 0x0,void 0x0,function*(){const _0x3aa85d=a22_0x45c6fd,_0x148cfa={'oFiCd':_0x3aa85d(0x210),'qPTCX':_0x3aa85d(0x20c)},_0x5aa2ec={'isSuccess':![],'errorMessage':'','errorCode':'','companyNewsStats':null};let _0x146b14=null;try{if(!_0x4276b7[_0x3aa85d(0x20a)])return _0x5aa2ec[_0x3aa85d(0x1e2)]=_0x148cfa[_0x3aa85d(0x1e0)],Promise[_0x3aa85d(0x1f0)](_0x5aa2ec);return _0x4276b7['activateMockCalls']?_0x4276b7['mockCalls'][_0x3aa85d(0x20b)]?_0x146b14=_0x4276b7[_0x3aa85d(0x200)][_0x3aa85d(0x20b)]():_0x5aa2ec[_0x3aa85d(0x1e2)]=_0x3aa85d(0x1e3):_0x146b14=yield(0x0,fetch_1[_0x3aa85d(0x1eb)])(getBiStats_1[_0x3aa85d(0x1eb)],{'email':_0x4276b7[_0x3aa85d(0x1e8)],'commandName':constants_1[_0x3aa85d(0x1eb)][_0x3aa85d(0x1f4)][_0x3aa85d(0x20e)]},constants_1[_0x3aa85d(0x1eb)][_0x3aa85d(0x1e4)][_0x3aa85d(0x1e6)],{'accountEmail':_0x4276b7[_0x3aa85d(0x1e8)],'origin':_0x4276b7[_0x3aa85d(0x1f9)],'apiKey':_0x4276b7[_0x3aa85d(0x20a)]},_0x148cfa[_0x3aa85d(0x1ed)]),Object['keys'](_0x146b14[_0x3aa85d(0x20f)][_0x3aa85d(0x1e6)])['forEach'](_0x5d738b=>{const _0x2b4bee=_0x3aa85d;(0x0,mapper_1[_0x2b4bee(0x212)])(_0x5aa2ec,_0x146b14['data'][_0x2b4bee(0x1e6)],_0x5d738b);}),Promise[_0x3aa85d(0x1f0)](_0x5aa2ec);}catch(_0x37d97c){return(0x0,fetch_1[_0x3aa85d(0x1eb)])(logError_1[_0x3aa85d(0x1eb)],{'errorDetails':{'userName':'','email':_0x4276b7[_0x3aa85d(0x1e8)],'app':constants_1['default'][_0x3aa85d(0x20d)],'env':JSON[_0x3aa85d(0x208)](config_1[_0x3aa85d(0x1eb)]),'error':JSON['stringify'](_0x37d97c),'argumentsPassedIn':JSON[_0x3aa85d(0x208)](_0x4276b7),'codeLocation':_0x3aa85d(0x20b),'appCode':constants_1[_0x3aa85d(0x1eb)][_0x3aa85d(0x205)]}},constants_1['default'][_0x3aa85d(0x1e4)][_0x3aa85d(0x1fb)],{'accountEmail':_0x4276b7[_0x3aa85d(0x1e8)],'origin':_0x4276b7[_0x3aa85d(0x1f9)],'apiKey':_0x4276b7['apiKey']},_0x148cfa[_0x3aa85d(0x1ed)]),_0x5aa2ec[_0x3aa85d(0x1e2)]=_0x3aa85d(0x204),Promise[_0x3aa85d(0x1f0)](_0x5aa2ec);}});function a22_0x31b4(_0x2b3104,_0x1b1465){_0x2b3104=_0x2b3104-0x1e0;const _0x69ea88=a22_0x69ea();let _0x31b442=_0x69ea88[_0x2b3104];return _0x31b442;}exports[a22_0x45c6fd(0x20b)]=getCompanyNewsStatsAsync,exports[a22_0x45c6fd(0x1eb)]={'getCompanyNewsStatsAsync':exports[a22_0x45c6fd(0x20b)]};
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a23_0xd17be8=a23_0x5f0b;(function(_0x33b459,_0x53133c){const _0x42139d=a23_0x5f0b,_0x32749b=_0x33b459();while(!![]){try{const _0x15e3c8=parseInt(_0x42139d(0x188))/0x1*(parseInt(_0x42139d(0x17b))/0x2)+-parseInt(_0x42139d(0x19d))/0x3*(-parseInt(_0x42139d(0x1a8))/0x4)+-parseInt(_0x42139d(0x18e))/0x5*(-parseInt(_0x42139d(0x1a7))/0x6)+parseInt(_0x42139d(0x192))/0x7*(parseInt(_0x42139d(0x1ad))/0x8)+-parseInt(_0x42139d(0x17e))/0x9+-parseInt(_0x42139d(0x19e))/0xa*(-parseInt(_0x42139d(0x1ab))/0xb)+parseInt(_0x42139d(0x1ac))/0xc*(-parseInt(_0x42139d(0x1ae))/0xd);if(_0x15e3c8===_0x53133c)break;else _0x32749b['push'](_0x32749b['shift']());}catch(_0x5f99a1){_0x32749b['push'](_0x32749b['shift']());}}}(a23_0x2080,0xa1750));function a23_0x2080(){const _0x17c974=['5309871MjcJwy','PHZlM','appCode','apply','VnbRe','__esModule','mockCalls','../../constants','stringify','../../config','defineProperty','3355923MUpFIL','10SLwBhX','apiKey','next','getCompanyDiscountStatsAsync','activateMockCalls','data','QKrlQ','Request\x20Failed,\x20you\x20set\x20activateMockCalls\x20to\x20true,\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20but\x20you\x20have\x20not\x20added\x20a\x20mock\x20function\x20for\x20getCompanyDiscountStats','resolve','510YPSCwq','4qkPZAw','getBiStats','tHDHc','6959733DoQZPm','48eRvVEP','8jFqhSG','7468123DjFBaG','then','graphQlCommandNames','keys','18sZOmWN','logError','__awaiter','8132580yAYBkp','app','getBiStatsCommands','BIWai','default','value','__importDefault','accountEmail','../../queries/getBiStats','MapToResponseObj','81750GaCcXh','forEach','errorMessage','companyDiscountStats','../../utilities/mapper','throw','36305tFigMN','HnsTZ','../../queries/logError','done'];a23_0x2080=function(){return _0x17c974;};return a23_0x2080();}var __awaiter=this&&this[a23_0xd17be8(0x17d)]||function(_0x2749b9,_0x5b053d,_0x34b229,_0x2ecc5c){const _0x12ef89={'CYAcF':function(_0x42f6df,_0x31b9bb){return _0x42f6df instanceof _0x31b9bb;},'BIWai':function(_0x5399af,_0x424bf4){return _0x5399af(_0x424bf4);},'QKrlQ':function(_0x5a1f8d,_0x22aa8d){return _0x5a1f8d(_0x22aa8d);},'HnsTZ':function(_0xf74c3,_0x9d48da){return _0xf74c3(_0x9d48da);}};function _0x24d883(_0x5a2ed9){return _0x12ef89['CYAcF'](_0x5a2ed9,_0x34b229)?_0x5a2ed9:new _0x34b229(function(_0x381c53){_0x381c53(_0x5a2ed9);});}return new(_0x34b229||(_0x34b229=Promise))(function(_0x4ba8fa,_0x143908){const _0x25385b=a23_0x5f0b;function _0x1f1330(_0xd69c49){const _0x22a696=a23_0x5f0b;try{_0x12ef89[_0x22a696(0x181)](_0x1b50c2,_0x2ecc5c[_0x22a696(0x1a0)](_0xd69c49));}catch(_0x419304){_0x12ef89['QKrlQ'](_0x143908,_0x419304);}}function _0x5cb885(_0x4e3dde){const _0x3b1a55=a23_0x5f0b;try{_0x12ef89[_0x3b1a55(0x1a4)](_0x1b50c2,_0x2ecc5c[_0x3b1a55(0x18d)](_0x4e3dde));}catch(_0x5f3e7f){_0x12ef89[_0x3b1a55(0x181)](_0x143908,_0x5f3e7f);}}function _0x1b50c2(_0x119b1b){const _0x24c763=a23_0x5f0b;_0x119b1b[_0x24c763(0x191)]?_0x4ba8fa(_0x119b1b[_0x24c763(0x183)]):_0x12ef89[_0x24c763(0x18f)](_0x24d883,_0x119b1b[_0x24c763(0x183)])[_0x24c763(0x1af)](_0x1f1330,_0x5cb885);}_0x12ef89['QKrlQ'](_0x1b50c2,(_0x2ecc5c=_0x2ecc5c[_0x25385b(0x195)](_0x2749b9,_0x5b053d||[]))['next']());});},__importDefault=this&&this[a23_0xd17be8(0x184)]||function(_0x25782c){const _0x1a0345=a23_0xd17be8;return _0x25782c&&_0x25782c[_0x1a0345(0x197)]?_0x25782c:{'default':_0x25782c};};Object[a23_0xd17be8(0x19c)](exports,a23_0xd17be8(0x197),{'value':!![]}),exports[a23_0xd17be8(0x1a1)]=void 0x0;const mapper_1=require(a23_0xd17be8(0x18c)),logError_1=__importDefault(require(a23_0xd17be8(0x190))),getBiStats_1=__importDefault(require(a23_0xd17be8(0x186))),fetch_1=__importDefault(require('../../utilities/fetch')),constants_1=__importDefault(require(a23_0xd17be8(0x199))),config_1=__importDefault(require(a23_0xd17be8(0x19b))),getCompanyDiscountStatsAsync=_0x4059e6=>__awaiter(void 0x0,void 0x0,void 0x0,function*(){const _0x51bb8e=a23_0xd17be8,_0x178079={'tHDHc':'go_felix_bi_api','PHZlM':_0x51bb8e(0x1a1),'VnbRe':'Unable\x20to\x20process\x20this\x20request\x20at\x20this\x20time,\x20please\x20try\x20again\x20later'},_0x5934c5={'isSuccess':![],'errorMessage':'','errorCode':'','discountStats':null};let _0x3f6194=null;try{if(!_0x4059e6[_0x51bb8e(0x19f)])return _0x5934c5[_0x51bb8e(0x18a)]='Request\x20Failed,\x20Please\x20make\x20sure\x20you\x20have\x20enter\x20the\x20licenseKey',Promise[_0x51bb8e(0x1a6)](_0x5934c5);return _0x4059e6[_0x51bb8e(0x1a2)]?_0x4059e6['mockCalls'][_0x51bb8e(0x1a1)]?_0x3f6194=_0x4059e6[_0x51bb8e(0x198)][_0x51bb8e(0x1a1)]():_0x5934c5[_0x51bb8e(0x18a)]=_0x51bb8e(0x1a5):_0x3f6194=yield(0x0,fetch_1[_0x51bb8e(0x182)])(getBiStats_1[_0x51bb8e(0x182)],{'email':_0x4059e6[_0x51bb8e(0x185)],'commandName':constants_1[_0x51bb8e(0x182)][_0x51bb8e(0x180)][_0x51bb8e(0x18b)]},constants_1['default']['graphQlCommandNames']['getBiStats'],{'accountEmail':_0x4059e6[_0x51bb8e(0x185)],'origin':_0x4059e6['origin'],'apiKey':_0x4059e6[_0x51bb8e(0x19f)]},_0x178079[_0x51bb8e(0x1aa)]),Object[_0x51bb8e(0x17a)](_0x3f6194[_0x51bb8e(0x1a3)][_0x51bb8e(0x1a9)])[_0x51bb8e(0x189)](_0x22e75b=>{const _0x39283d=_0x51bb8e;(0x0,mapper_1[_0x39283d(0x187)])(_0x5934c5,_0x3f6194[_0x39283d(0x1a3)][_0x39283d(0x1a9)],_0x22e75b);}),Promise[_0x51bb8e(0x1a6)](_0x5934c5);}catch(_0x5e2897){return(0x0,fetch_1[_0x51bb8e(0x182)])(logError_1['default'],{'errorDetails':{'userName':'','email':_0x4059e6[_0x51bb8e(0x185)],'app':constants_1[_0x51bb8e(0x182)][_0x51bb8e(0x17f)],'env':JSON[_0x51bb8e(0x19a)](config_1[_0x51bb8e(0x182)]),'error':JSON['stringify'](_0x5e2897),'argumentsPassedIn':JSON[_0x51bb8e(0x19a)](_0x4059e6),'codeLocation':_0x178079[_0x51bb8e(0x193)],'appCode':constants_1[_0x51bb8e(0x182)][_0x51bb8e(0x194)]}},constants_1['default'][_0x51bb8e(0x1b0)][_0x51bb8e(0x17c)],{'accountEmail':_0x4059e6['accountEmail'],'origin':_0x4059e6['origin'],'apiKey':_0x4059e6[_0x51bb8e(0x19f)]},_0x178079[_0x51bb8e(0x1aa)]),_0x5934c5[_0x51bb8e(0x18a)]=_0x178079[_0x51bb8e(0x196)],Promise[_0x51bb8e(0x1a6)](_0x5934c5);}});function a23_0x5f0b(_0x14bfe6,_0xf088bb){_0x14bfe6=_0x14bfe6-0x17a;const _0x2080f9=a23_0x2080();let _0x5f0b83=_0x2080f9[_0x14bfe6];return _0x5f0b83;}exports['getCompanyDiscountStatsAsync']=getCompanyDiscountStatsAsync,exports[a23_0xd17be8(0x182)]={'getCompanyDiscountStatsAsync':exports[a23_0xd17be8(0x1a1)]};
@@ -0,0 +1,11 @@
1
+ /*
2
+ /**
3
+ * GoFelix Project — GoFelix Limited (UK)
4
+ *
5
+ * Copyright (c) GoFelix Limited (UK). All rights reserved.
6
+ *
7
+ * This source code is licensed under the GoFelix License.
8
+ * Unauthorized copying of this file, via any medium, is strictly prohibited.
9
+ * Proprietary and confidential.
10
+ */
11
+ 'use strict';const a24_0x2921ad=a24_0x3e67;function a24_0xb199(){const _0x51f4af=['getCompanyFeedbackStatsAsync','MapToResponseObj','appCode','../../config','companyFeedbackStats','lXkGu','activateMockCalls','241289qwaYXm','apply','stringify','apiKey','go_felix_bi_api','15tqMiZB','errorMessage','7248064aOqPeq','forEach','OQDVB','22475106ADMYcM','../../constants','mockCalls','default','1707232gIBdvd','OMfil','logError','getBiStats','Request\x20Failed,\x20Please\x20make\x20sure\x20you\x20have\x20enter\x20the\x20licenseKey','app','graphQlCommandNames','data','resolve','Unable\x20to\x20process\x20this\x20request\x20at\x20this\x20time,\x20please\x20try\x20again\x20later','BsYeV','77406CTxsUk','getCompanyFeedbackStats','__importDefault','iEHaB','Request\x20Failed,\x20you\x20set\x20activateMockCalls\x20to\x20true,\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20but\x20you\x20have\x20not\x20added\x20a\x20mock\x20function\x20for\x20getCompanyFeedbackStats','aPLYu','getBiStatsCommands','CxLVi','../../queries/logError','1106841RaaGCl','value','tUOtv','2388421eIoTcI','defineProperty','accountEmail','pRSkO','next','done','../../utilities/fetch','2QOGrkA'];a24_0xb199=function(){return _0x51f4af;};return a24_0xb199();}(function(_0x5c8b16,_0x5d3f47){const _0x400d10=a24_0x3e67,_0x4e70a9=_0x5c8b16();while(!![]){try{const _0x5d4228=parseInt(_0x400d10(0x17c))/0x1+parseInt(_0x400d10(0x174))/0x2*(-parseInt(_0x400d10(0x19e))/0x3)+-parseInt(_0x400d10(0x18a))/0x4+parseInt(_0x400d10(0x181))/0x5*(-parseInt(_0x400d10(0x195))/0x6)+-parseInt(_0x400d10(0x1a1))/0x7+-parseInt(_0x400d10(0x183))/0x8+parseInt(_0x400d10(0x186))/0x9;if(_0x5d4228===_0x5d3f47)break;else _0x4e70a9['push'](_0x4e70a9['shift']());}catch(_0x278dac){_0x4e70a9['push'](_0x4e70a9['shift']());}}}(a24_0xb199,0xa05d6));var __awaiter=this&&this['__awaiter']||function(_0x34d09d,_0x4c747f,_0xcf06e1,_0x41c50c){const _0x4b0e7b={'tUOtv':function(_0x326dae,_0x1a778b){return _0x326dae instanceof _0x1a778b;},'HuNkI':'throw','OQDVB':function(_0x2d3c5a,_0x22e166){return _0x2d3c5a(_0x22e166);},'pRSkO':function(_0x54dd1d,_0x5b4e1e){return _0x54dd1d(_0x5b4e1e);},'iEHaB':function(_0x2a402a,_0x3543ff){return _0x2a402a(_0x3543ff);},'CxLVi':function(_0x4733ff,_0x39be1a){return _0x4733ff(_0x39be1a);}};function _0x11c5d2(_0xb7ee9c){const _0x21b866=a24_0x3e67;return _0x4b0e7b[_0x21b866(0x1a0)](_0xb7ee9c,_0xcf06e1)?_0xb7ee9c:new _0xcf06e1(function(_0x2dd405){_0x2dd405(_0xb7ee9c);});}return new(_0xcf06e1||(_0xcf06e1=Promise))(function(_0x559864,_0x4f5c4d){const _0xc4a665=a24_0x3e67,_0x4d5324={'lXkGu':function(_0x5314cc,_0x15cf9c){const _0x3818ad=a24_0x3e67;return _0x4b0e7b[_0x3818ad(0x19c)](_0x5314cc,_0x15cf9c);}};function _0x4c55df(_0x3e2bd0){const _0x5b1a36=a24_0x3e67;try{_0x4d5324['lXkGu'](_0x10ee65,_0x41c50c[_0x5b1a36(0x1a5)](_0x3e2bd0));}catch(_0x19c14c){_0x4d5324[_0x5b1a36(0x17a)](_0x4f5c4d,_0x19c14c);}}function _0x4b2d69(_0x5e91f0){const _0x4f7452=a24_0x3e67;try{_0x10ee65(_0x41c50c[_0x4b0e7b['HuNkI']](_0x5e91f0));}catch(_0x33488b){_0x4b0e7b[_0x4f7452(0x185)](_0x4f5c4d,_0x33488b);}}function _0x10ee65(_0x4624c9){const _0x3d0dfd=a24_0x3e67;_0x4624c9[_0x3d0dfd(0x172)]?_0x4b0e7b[_0x3d0dfd(0x1a4)](_0x559864,_0x4624c9[_0x3d0dfd(0x19f)]):_0x4b0e7b[_0x3d0dfd(0x198)](_0x11c5d2,_0x4624c9[_0x3d0dfd(0x19f)])['then'](_0x4c55df,_0x4b2d69);}_0x10ee65((_0x41c50c=_0x41c50c[_0xc4a665(0x17d)](_0x34d09d,_0x4c747f||[]))['next']());});},__importDefault=this&&this[a24_0x2921ad(0x197)]||function(_0x5cafa5){return _0x5cafa5&&_0x5cafa5['__esModule']?_0x5cafa5:{'default':_0x5cafa5};};Object[a24_0x2921ad(0x1a2)](exports,'__esModule',{'value':!![]}),exports[a24_0x2921ad(0x196)]=void 0x0;const mapper_1=require('../../utilities/mapper'),logError_1=__importDefault(require(a24_0x2921ad(0x19d))),getBiStats_1=__importDefault(require('../../queries/getBiStats')),fetch_1=__importDefault(require(a24_0x2921ad(0x173))),constants_1=__importDefault(require(a24_0x2921ad(0x187))),config_1=__importDefault(require(a24_0x2921ad(0x178))),getCompanyFeedbackStats=_0x124de7=>__awaiter(void 0x0,void 0x0,void 0x0,function*(){const _0x48817b=a24_0x2921ad,_0x1b5c02={'BsYeV':_0x48817b(0x18e),'OMfil':_0x48817b(0x180),'aPLYu':_0x48817b(0x193)},_0x54f4f1={'isSuccess':![],'errorMessage':'','errorCode':'','feedbackStats':null};try{if(!_0x124de7[_0x48817b(0x17f)])return _0x54f4f1[_0x48817b(0x182)]=_0x1b5c02[_0x48817b(0x194)],Promise[_0x48817b(0x192)](_0x54f4f1);let _0x13abb1=null;return _0x124de7[_0x48817b(0x17b)]?_0x124de7[_0x48817b(0x188)][_0x48817b(0x175)]?_0x13abb1=_0x124de7[_0x48817b(0x188)]['getCompanyFeedbackStatsAsync']():_0x54f4f1[_0x48817b(0x182)]=_0x48817b(0x199):_0x13abb1=yield(0x0,fetch_1[_0x48817b(0x189)])(getBiStats_1[_0x48817b(0x189)],{'email':_0x124de7[_0x48817b(0x1a3)],'commandName':constants_1['default'][_0x48817b(0x19b)][_0x48817b(0x179)]},constants_1['default'][_0x48817b(0x190)][_0x48817b(0x18d)],{'accountEmail':_0x124de7[_0x48817b(0x1a3)],'origin':_0x124de7['origin'],'apiKey':_0x124de7[_0x48817b(0x17f)]},_0x1b5c02[_0x48817b(0x18b)]),Object['keys'](_0x13abb1[_0x48817b(0x191)][_0x48817b(0x18d)])[_0x48817b(0x184)](_0x34043e=>{const _0x1821a9=_0x48817b;(0x0,mapper_1[_0x1821a9(0x176)])(_0x54f4f1,_0x13abb1[_0x1821a9(0x191)][_0x1821a9(0x18d)],_0x34043e);}),Promise[_0x48817b(0x192)](_0x54f4f1);}catch(_0x14a94e){return(0x0,fetch_1[_0x48817b(0x189)])(logError_1[_0x48817b(0x189)],{'errorDetails':{'userName':'','email':_0x124de7['accountEmail'],'app':constants_1['default'][_0x48817b(0x18f)],'env':JSON[_0x48817b(0x17e)](config_1[_0x48817b(0x189)]),'error':JSON['stringify'](_0x14a94e),'argumentsPassedIn':JSON['stringify'](_0x124de7),'codeLocation':_0x48817b(0x175),'appCode':constants_1['default'][_0x48817b(0x177)]}},constants_1[_0x48817b(0x189)][_0x48817b(0x190)][_0x48817b(0x18c)],{'accountEmail':_0x124de7[_0x48817b(0x1a3)],'origin':_0x124de7['origin'],'apiKey':_0x124de7[_0x48817b(0x17f)]},_0x48817b(0x180)),_0x54f4f1[_0x48817b(0x182)]=_0x1b5c02[_0x48817b(0x19a)],Promise[_0x48817b(0x192)](_0x54f4f1);}});function a24_0x3e67(_0xc5741c,_0x5e6d13){_0xc5741c=_0xc5741c-0x172;const _0xb19971=a24_0xb199();let _0x3e672b=_0xb19971[_0xc5741c];return _0x3e672b;}exports[a24_0x2921ad(0x196)]=getCompanyFeedbackStats,exports[a24_0x2921ad(0x189)]={'getCompanyFeedbackStats':exports[a24_0x2921ad(0x196)]};