@abtnode/blocklet-services 1.6.25 → 1.6.28

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 (81) hide show
  1. package/README.md +1 -5
  2. package/{lib → api}/cache.js +0 -0
  3. package/api/index.js +296 -0
  4. package/{services/auth → api}/libs/auth.js +24 -8
  5. package/api/libs/env.js +7 -0
  6. package/{services/auth → api}/libs/jwt.js +1 -0
  7. package/api/middlewares/check-admin-permission.js +15 -0
  8. package/api/middlewares/check-running.js +46 -0
  9. package/api/routes/blocklet.js +98 -0
  10. package/api/routes/env.js +27 -0
  11. package/{services/auth/routes → api/services/auth/connect}/invite.js +5 -4
  12. package/{services/auth/routes → api/services/auth/connect}/issue-passport.js +6 -2
  13. package/{services/auth/routes → api/services/auth/connect}/login.js +18 -10
  14. package/api/services/auth/connect/lost-passport-issue.js +10 -0
  15. package/{services/auth/routes → api/services/auth/connect}/lost-passport-list.js +1 -1
  16. package/api/services/auth/index.js +189 -0
  17. package/api/services/auth/passport.js +22 -0
  18. package/api/services/auth/session.js +31 -0
  19. package/{services/auth/routes/notification.js → api/services/notification/index.js} +25 -9
  20. package/api/services/static.js +76 -0
  21. package/{services/auth → api}/state/index.js +0 -0
  22. package/{services/auth → api}/state/message.js +0 -0
  23. package/api/util/attach-shared-utils.js +149 -0
  24. package/api/util/constants.js +10 -0
  25. package/api/util/format-context.js +24 -0
  26. package/{services/auth → api}/util/index.js +31 -1
  27. package/build/asset-manifest.json +32 -30
  28. package/build/index.html +1 -1
  29. package/build/precache-manifest.8fa5bc7546805566144fcf8af71f0904.js +154 -0
  30. package/build/service-worker.js +2 -2
  31. package/build/static/css/2.d49e994f.chunk.css +2 -0
  32. package/build/static/css/{2.cc9dc85c.chunk.css.map → 2.d49e994f.chunk.css.map} +1 -1
  33. package/build/static/js/2.1421337b.chunk.js +3 -0
  34. package/build/static/js/{2.90523f87.chunk.js.LICENSE.txt → 2.1421337b.chunk.js.LICENSE.txt} +0 -0
  35. package/build/static/js/2.1421337b.chunk.js.map +1 -0
  36. package/build/static/js/3.d701dfdf.chunk.js +3 -0
  37. package/build/static/js/{3.e6540184.chunk.js.LICENSE.txt → 3.d701dfdf.chunk.js.LICENSE.txt} +0 -0
  38. package/build/static/js/3.d701dfdf.chunk.js.map +1 -0
  39. package/build/static/js/4.22e700c7.chunk.js +2 -0
  40. package/build/static/js/4.22e700c7.chunk.js.map +1 -0
  41. package/build/static/js/5.10a35adf.chunk.js +2 -0
  42. package/build/static/js/5.10a35adf.chunk.js.map +1 -0
  43. package/build/static/js/6.2dcc3ced.chunk.js +2 -0
  44. package/build/static/js/6.2dcc3ced.chunk.js.map +1 -0
  45. package/build/static/js/7.e6b88c03.chunk.js +2 -0
  46. package/build/static/js/7.e6b88c03.chunk.js.map +1 -0
  47. package/build/static/js/8.2a01d8cd.chunk.js +2 -0
  48. package/build/static/js/8.2a01d8cd.chunk.js.map +1 -0
  49. package/build/static/js/main.ebd8fbea.chunk.js +2 -0
  50. package/build/static/js/main.ebd8fbea.chunk.js.map +1 -0
  51. package/build/static/js/runtime-main.b885fccc.js +2 -0
  52. package/build/static/js/runtime-main.b885fccc.js.map +1 -0
  53. package/{services/auth/meta.json → configs/auth.json} +2 -2
  54. package/package.json +22 -20
  55. package/build/precache-manifest.f3419eb785f255da7655fa425fc775a1.js +0 -150
  56. package/build/static/css/2.cc9dc85c.chunk.css +0 -2
  57. package/build/static/js/2.90523f87.chunk.js +0 -3
  58. package/build/static/js/2.90523f87.chunk.js.map +0 -1
  59. package/build/static/js/3.e6540184.chunk.js +0 -3
  60. package/build/static/js/3.e6540184.chunk.js.map +0 -1
  61. package/build/static/js/4.4410aa8a.chunk.js +0 -2
  62. package/build/static/js/4.4410aa8a.chunk.js.map +0 -1
  63. package/build/static/js/5.967448ae.chunk.js +0 -2
  64. package/build/static/js/5.967448ae.chunk.js.map +0 -1
  65. package/build/static/js/6.1de827ed.chunk.js +0 -2
  66. package/build/static/js/6.1de827ed.chunk.js.map +0 -1
  67. package/build/static/js/7.cb386b54.chunk.js +0 -2
  68. package/build/static/js/7.cb386b54.chunk.js.map +0 -1
  69. package/build/static/js/main.c51a8d5b.chunk.js +0 -2
  70. package/build/static/js/main.c51a8d5b.chunk.js.map +0 -1
  71. package/build/static/js/runtime-main.24dfe4a3.js +0 -2
  72. package/build/static/js/runtime-main.24dfe4a3.js.map +0 -1
  73. package/lib/index.js +0 -443
  74. package/lib/mount.js +0 -52
  75. package/lib/util.js +0 -17
  76. package/services/auth/index.js +0 -290
  77. package/services/auth/routes/blocklet-info.js +0 -33
  78. package/services/auth/routes/env.js +0 -33
  79. package/services/auth/routes/lost-passport-issue.js +0 -5
  80. package/services/auth/routes/passport.js +0 -18
  81. package/services/auth/routes/session.js +0 -27
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../webpack/bootstrap"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","prefetchChunks","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","deferredPrefetch","apply","shift","deferredModules","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","forEach","undefined","link","document","createElement","nc","setAttribute","rel","as","href","jsonpScriptSrc","head","appendChild","installedModules","1","p","exports","module","l","e","promises","installedChunkData","promise","Promise","resolve","reject","onScriptComplete","script","charset","timeout","src","error","Error","event","onerror","onload","clearTimeout","chunk","errorType","type","realSrc","target","message","name","request","setTimeout","all","m","c","d","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","oe","err","console","jsonpArray","this","oldJsonpFunction","slice"],"mappings":"aACE,SAASA,EAAqBC,GAQ7B,IAPA,IAMIC,EAAUC,EANVC,EAAWH,EAAK,GAChBI,EAAcJ,EAAK,GACnBK,EAAiBL,EAAK,GACtBM,EAAiBN,EAAK,IAAM,GAGTO,EAAI,EAAGC,EAAW,GACpCD,EAAIJ,EAASM,OAAQF,IACzBL,EAAUC,EAASI,GAChBG,OAAOC,UAAUC,eAAeC,KAAKC,EAAiBZ,IAAYY,EAAgBZ,IACpFM,EAASO,KAAKD,EAAgBZ,GAAS,IAExCY,EAAgBZ,GAAW,EAE5B,IAAID,KAAYG,EACZM,OAAOC,UAAUC,eAAeC,KAAKT,EAAaH,KACpDe,EAAQf,GAAYG,EAAYH,IAKlC,IAFGgB,GAAqBA,EAAoBjB,GAC5CkB,EAAiBH,KAAKI,MAAMD,EAAkBZ,GACxCE,EAASC,QACdD,EAASY,OAATZ,GAOD,OAHAa,EAAgBN,KAAKI,MAAME,EAAiBhB,GAAkB,IAGvDiB,IAER,SAASA,IAER,IADA,IAAIC,EACIhB,EAAI,EAAGA,EAAIc,EAAgBZ,OAAQF,IAAK,CAG/C,IAFA,IAAIiB,EAAiBH,EAAgBd,GACjCkB,GAAY,EACRC,EAAI,EAAGA,EAAIF,EAAef,OAAQiB,IAAK,CAC9C,IAAIC,EAAQH,EAAeE,GACG,IAA3BZ,EAAgBa,KAAcF,GAAY,GAE3CA,IACFJ,EAAgBO,OAAOrB,IAAK,GAC5BgB,EAASM,EAAoBA,EAAoBC,EAAIN,EAAe,KAqBtE,OAlB8B,IAA3BH,EAAgBZ,SAElBS,EAAiBa,SAAQ,SAAS7B,GACjC,QAAgC8B,IAA7BlB,EAAgBZ,GAAwB,CAC1CY,EAAgBZ,GAAW,KAC3B,IAAI+B,EAAOC,SAASC,cAAc,QAE9BN,EAAoBO,IACvBH,EAAKI,aAAa,QAASR,EAAoBO,IAEhDH,EAAKK,IAAM,WACXL,EAAKM,GAAK,SACVN,EAAKO,KAAOC,EAAevC,GAC3BgC,SAASQ,KAAKC,YAAYV,OAG5Bf,EAAiBT,OAAS,GAEpBc,EAIR,IAAIqB,EAAmB,GAKnB9B,EAAkB,CACrB+B,EAAG,GAGAxB,EAAkB,GAAIH,EAAmB,GAG7C,SAASuB,EAAevC,GACvB,OAAO2B,EAAoBiB,EAAI,cAAgB,GAAG5C,IAAUA,GAAW,IAAM,CAAC,EAAI,WAAW,EAAI,WAAW,EAAI,WAAW,EAAI,WAAW,EAAI,WAAW,EAAI,YAAYA,GAAW,YAIrL,SAAS2B,EAAoB5B,GAG5B,GAAG2C,EAAiB3C,GACnB,OAAO2C,EAAiB3C,GAAU8C,QAGnC,IAAIC,EAASJ,EAAiB3C,GAAY,CACzCM,EAAGN,EACHgD,GAAG,EACHF,QAAS,IAUV,OANA/B,EAAQf,GAAUY,KAAKmC,EAAOD,QAASC,EAAQA,EAAOD,QAASlB,GAG/DmB,EAAOC,GAAI,EAGJD,EAAOD,QAKflB,EAAoBqB,EAAI,SAAuBhD,GAC9C,IAAIiD,EAAW,GAKXC,EAAqBtC,EAAgBZ,GACzC,GAA0B,IAAvBkD,EAGF,GAAGA,EACFD,EAASpC,KAAKqC,EAAmB,QAC3B,CAEN,IAAIC,EAAU,IAAIC,SAAQ,SAASC,EAASC,GAC3CJ,EAAqBtC,EAAgBZ,GAAW,CAACqD,EAASC,MAE3DL,EAASpC,KAAKqC,EAAmB,GAAKC,GAGtC,IACII,EADAC,EAASxB,SAASC,cAAc,UAGpCuB,EAAOC,QAAU,QACjBD,EAAOE,QAAU,IACb/B,EAAoBO,IACvBsB,EAAOrB,aAAa,QAASR,EAAoBO,IAElDsB,EAAOG,IAAMpB,EAAevC,GAG5B,IAAI4D,EAAQ,IAAIC,MAChBN,EAAmB,SAAUO,GAE5BN,EAAOO,QAAUP,EAAOQ,OAAS,KACjCC,aAAaP,GACb,IAAIQ,EAAQtD,EAAgBZ,GAC5B,GAAa,IAAVkE,EAAa,CACf,GAAGA,EAAO,CACT,IAAIC,EAAYL,IAAyB,SAAfA,EAAMM,KAAkB,UAAYN,EAAMM,MAChEC,EAAUP,GAASA,EAAMQ,QAAUR,EAAMQ,OAAOX,IACpDC,EAAMW,QAAU,iBAAmBvE,EAAU,cAAgBmE,EAAY,KAAOE,EAAU,IAC1FT,EAAMY,KAAO,iBACbZ,EAAMQ,KAAOD,EACbP,EAAMa,QAAUJ,EAChBH,EAAM,GAAGN,GAEVhD,EAAgBZ,QAAW8B,IAG7B,IAAI4B,EAAUgB,YAAW,WACxBnB,EAAiB,CAAEa,KAAM,UAAWE,OAAQd,MAC1C,MACHA,EAAOO,QAAUP,EAAOQ,OAAST,EACjCvB,SAASQ,KAAKC,YAAYe,GAG5B,OAAOJ,QAAQuB,IAAI1B,IAIpBtB,EAAoBiD,EAAI9D,EAGxBa,EAAoBkD,EAAInC,EAGxBf,EAAoBmD,EAAI,SAASjC,EAAS2B,EAAMO,GAC3CpD,EAAoBqD,EAAEnC,EAAS2B,IAClChE,OAAOyE,eAAepC,EAAS2B,EAAM,CAAEU,YAAY,EAAMC,IAAKJ,KAKhEpD,EAAoByD,EAAI,SAASvC,GACX,qBAAXwC,QAA0BA,OAAOC,aAC1C9E,OAAOyE,eAAepC,EAASwC,OAAOC,YAAa,CAAEC,MAAO,WAE7D/E,OAAOyE,eAAepC,EAAS,aAAc,CAAE0C,OAAO,KAQvD5D,EAAoB6D,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQ5D,EAAoB4D,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,kBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKnF,OAAOoF,OAAO,MAGvB,GAFAjE,EAAoByD,EAAEO,GACtBnF,OAAOyE,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAO5D,EAAoBmD,EAAEa,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRhE,EAAoBoE,EAAI,SAASjD,GAChC,IAAIiC,EAASjC,GAAUA,EAAO4C,WAC7B,WAAwB,OAAO5C,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAnB,EAAoBmD,EAAEC,EAAQ,IAAKA,GAC5BA,GAIRpD,EAAoBqD,EAAI,SAASgB,EAAQC,GAAY,OAAOzF,OAAOC,UAAUC,eAAeC,KAAKqF,EAAQC,IAGzGtE,EAAoBiB,EAAI,qCAGxBjB,EAAoBuE,GAAK,SAASC,GAA2B,MAApBC,QAAQxC,MAAMuC,GAAYA,GAEnE,IAAIE,EAAaC,KAAK,0CAA4CA,KAAK,2CAA6C,GAChHC,EAAmBF,EAAWxF,KAAKiF,KAAKO,GAC5CA,EAAWxF,KAAOhB,EAClBwG,EAAaA,EAAWG,QACxB,IAAI,IAAInG,EAAI,EAAGA,EAAIgG,EAAW9F,OAAQF,IAAKR,EAAqBwG,EAAWhG,IAC3E,IAAIU,EAAsBwF,EAI1BnF,I","file":"static/js/runtime-main.b885fccc.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n \t\tvar prefetchChunks = data[3] || [];\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n \t\tdeferredPrefetch.push.apply(deferredPrefetch, prefetchChunks);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n \t\tif(deferredModules.length === 0) {\n \t\t\t// chunk prefetching for javascript\n \t\t\tdeferredPrefetch.forEach(function(chunkId) {\n \t\t\t\tif(installedChunks[chunkId] === undefined) {\n \t\t\t\t\tinstalledChunks[chunkId] = null;\n \t\t\t\t\tvar link = document.createElement('link');\n\n \t\t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\t\tlink.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t\t}\n \t\t\t\t\tlink.rel = \"prefetch\";\n \t\t\t\t\tlink.as = \"script\";\n \t\t\t\t\tlink.href = jsonpScriptSrc(chunkId);\n \t\t\t\t\tdocument.head.appendChild(link);\n \t\t\t\t}\n \t\t\t});\n \t\t\tdeferredPrefetch.length = 0;\n \t\t}\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t1: 0\n \t};\n\n \tvar deferredModules = [], deferredPrefetch = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"static/js/\" + ({}[chunkId]||chunkId) + \".\" + {\"3\":\"d701dfdf\",\"4\":\"22e700c7\",\"5\":\"10a35adf\",\"6\":\"2dcc3ced\",\"7\":\"e6b88c03\",\"8\":\"2a01d8cd\"}[chunkId] + \".chunk.js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/.blocklet/proxy/blocklet-service/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = this[\"webpackJsonp@abtnode/blocklet-services\"] = this[\"webpackJsonp@abtnode/blocklet-services\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""}
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "@abtnode/auth-service",
2
+ "name": "auth",
3
3
  "description": "Neat and easy to use user authentication and authorization service for blocklets",
4
4
  "version": "1.0.0",
5
5
  "schema": {
@@ -43,7 +43,7 @@
43
43
  "blockUnauthenticated": {
44
44
  "type": "boolean",
45
45
  "title": "Do you want Auth Service block unauthenticated requests for you?",
46
- "default": true
46
+ "default": false
47
47
  },
48
48
  "blockUnauthorized": {
49
49
  "type": "boolean",
package/package.json CHANGED
@@ -3,27 +3,26 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.6.25",
6
+ "version": "1.6.28",
7
7
  "description": "Provide unified services for every blocklet",
8
- "main": "lib/index.js",
8
+ "main": "api/index.js",
9
9
  "files": [
10
10
  "build",
11
- "services",
12
- "lib",
11
+ "api",
12
+ "configs",
13
13
  "README.md"
14
14
  ],
15
15
  "scripts": {
16
- "lint": "eslint tests lib src services",
17
- "lint:fix": "eslint --fix tests lib src services",
16
+ "lint": "eslint tests api src",
17
+ "lint:fix": "eslint --fix tests api src",
18
18
  "test": "node tools/jest.js",
19
19
  "coverage": "npm run test -- --coverage",
20
20
  "prepublishOnly": "npm run build",
21
21
  "clean": "rm -rf build",
22
22
  "start": "npm-run-all --parallel start:*",
23
23
  "start:client": "NODE_ENV=development react-app-rewired start",
24
- "start:service": "NODE_ENV=development node dev/watcher.js",
25
24
  "build": "npm run clean && npm run build:client",
26
- "build:client": "NODE_ENV=production CI=1 PUBLIC_URL='/.blocklet/proxy/abtnode-auth-service' react-app-rewired build",
25
+ "build:client": "NODE_ENV=production CI=1 PUBLIC_URL='/.blocklet/proxy/blocklet-service' react-app-rewired build",
27
26
  "analyze:client": "npm run build:client && source-map-explorer 'build/static/js/*.js'"
28
27
  },
29
28
  "keywords": [
@@ -33,21 +32,22 @@
33
32
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
34
33
  "license": "MIT",
35
34
  "dependencies": {
36
- "@abtnode/auth": "1.6.25",
37
- "@abtnode/constant": "1.6.25",
38
- "@abtnode/core": "1.6.25",
39
- "@abtnode/cron": "1.6.25",
40
- "@abtnode/logger": "1.6.25",
41
- "@abtnode/router-adapter": "1.6.25",
42
- "@abtnode/router-templates": "1.6.25",
43
- "@abtnode/util": "1.6.25",
35
+ "@abtnode/auth": "1.6.28",
36
+ "@abtnode/constant": "1.6.28",
37
+ "@abtnode/core": "1.6.28",
38
+ "@abtnode/cron": "1.6.28",
39
+ "@abtnode/logger": "1.6.28",
40
+ "@abtnode/router-adapter": "1.6.28",
41
+ "@abtnode/router-templates": "1.6.28",
42
+ "@abtnode/util": "1.6.28",
44
43
  "@arcblock/did-auth": "^1.14.19",
45
44
  "@arcblock/did-auth-storage-nedb": "^1.6.3",
46
45
  "@arcblock/event-hub": "1.14.19",
46
+ "@arcblock/icons": "^1.16.40",
47
47
  "@arcblock/jwt": "^1.14.19",
48
48
  "@arcblock/ws": "^1.14.19",
49
- "@blocklet/meta": "1.6.25",
50
- "@blocklet/sdk": "1.6.25",
49
+ "@blocklet/meta": "1.6.28",
50
+ "@blocklet/sdk": "1.6.28",
51
51
  "body-parser": "^1.19.0",
52
52
  "compression": "^1.7.4",
53
53
  "cookie-parser": "^1.4.4",
@@ -70,10 +70,11 @@
70
70
  "url-join": "^4.0.1"
71
71
  },
72
72
  "devDependencies": {
73
- "@abtnode/ux": "1.6.25",
73
+ "@abtnode/ux": "1.6.28",
74
74
  "@arcblock/did-connect": "^1.16.40",
75
75
  "@arcblock/ux": "^1.16.40",
76
76
  "@material-ui/core": "^4.12.3",
77
+ "@material-ui/icons": "^4.11.2",
77
78
  "axios": "^0.25.0",
78
79
  "core-js": "2.5.7",
79
80
  "dotenv-flow": "^3.2.0",
@@ -93,6 +94,7 @@
93
94
  "react-scripts": "^3.4.3",
94
95
  "source-map-explorer": "^2.4.2",
95
96
  "styled-components": "^5.0.1",
97
+ "supertest": "^6.1.3",
96
98
  "uuid": "^8.3.2",
97
99
  "webpack-bundle-analyzer": "^4.1.0"
98
100
  },
@@ -116,5 +118,5 @@
116
118
  "url": "https://github.com/ArcBlock/blocklet-server/issues",
117
119
  "email": "shijun@arcblock.io"
118
120
  },
119
- "gitHead": "bd2ad7d90fbd1b3786702dfca1ab28dcec9a7bc7"
121
+ "gitHead": "acef8ea339bd8fc9c785312eb5a1a113ecbf0d4d"
120
122
  }
@@ -1,150 +0,0 @@
1
- self.__precacheManifest = (self.__precacheManifest || []).concat([
2
- {
3
- "revision": "88594e5a5c05304973236f2efaffbf18",
4
- "url": "/.blocklet/proxy/abtnode-auth-service/index.html"
5
- },
6
- {
7
- "revision": "c6786a3084adea63ed4f",
8
- "url": "/.blocklet/proxy/abtnode-auth-service/static/css/2.cc9dc85c.chunk.css"
9
- },
10
- {
11
- "revision": "c6786a3084adea63ed4f",
12
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/2.90523f87.chunk.js"
13
- },
14
- {
15
- "revision": "001cd1ced571d272e8edd36766b7e99b",
16
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/2.90523f87.chunk.js.LICENSE.txt"
17
- },
18
- {
19
- "revision": "ef328e9a832356ae7daa",
20
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/3.e6540184.chunk.js"
21
- },
22
- {
23
- "revision": "13c1ee756e3b5cd4765e29c46fdabd06",
24
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/3.e6540184.chunk.js.LICENSE.txt"
25
- },
26
- {
27
- "revision": "4171b16075536833db84",
28
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/4.4410aa8a.chunk.js"
29
- },
30
- {
31
- "revision": "44d25bf665656ee1841a",
32
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/5.967448ae.chunk.js"
33
- },
34
- {
35
- "revision": "84a6730ddaf802371567",
36
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/6.1de827ed.chunk.js"
37
- },
38
- {
39
- "revision": "2dfe64025ebca71f323c",
40
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/7.cb386b54.chunk.js"
41
- },
42
- {
43
- "revision": "0175b990746a5216a59f",
44
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/main.c51a8d5b.chunk.js"
45
- },
46
- {
47
- "revision": "cf7e1d230561901b17e5",
48
- "url": "/.blocklet/proxy/abtnode-auth-service/static/js/runtime-main.24dfe4a3.js"
49
- },
50
- {
51
- "revision": "c23241033e8c96b9636d9efc308d4476",
52
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff"
53
- },
54
- {
55
- "revision": "000c3408dcf682e542d6f4f294c4689d",
56
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff"
57
- },
58
- {
59
- "revision": "30df2fd057641a59c6aa03ffa82531ff",
60
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff"
61
- },
62
- {
63
- "revision": "aa383bbd5d0ba86f3a27ad595656adc7",
64
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-400-normal.aa383bbd.woff2"
65
- },
66
- {
67
- "revision": "27a1ebd4bf1cfc4c8a13bd7739b43213",
68
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-500-normal.27a1ebd4.woff2"
69
- },
70
- {
71
- "revision": "74d5cdbafd987cf971ea9b0e0fbcaad9",
72
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-600-normal.74d5cdba.woff2"
73
- },
74
- {
75
- "revision": "b8647475d1afee36578be903fe319912",
76
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-400-normal.b8647475.woff2"
77
- },
78
- {
79
- "revision": "860932d931985a269b9889df4d24181c",
80
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-500-normal.860932d9.woff2"
81
- },
82
- {
83
- "revision": "942f240fb236d606bd7bce4f93c9dd7e",
84
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-600-normal.942f240f.woff2"
85
- },
86
- {
87
- "revision": "2c9e3c2a30323dffdbe9fa9399841a7f",
88
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-400-normal.2c9e3c2a.woff2"
89
- },
90
- {
91
- "revision": "08d6e502b0802403890e622a96b2b27b",
92
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-500-normal.08d6e502.woff2"
93
- },
94
- {
95
- "revision": "bfa32e44e99446cedaf4a5b2db3d892e",
96
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-600-normal.bfa32e44.woff2"
97
- },
98
- {
99
- "revision": "b8fd53c58dc08126027abfd33797aede",
100
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-400-normal.b8fd53c5.woff2"
101
- },
102
- {
103
- "revision": "595f1a982cedd7f2184fde80422eca7d",
104
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-500-normal.595f1a98.woff2"
105
- },
106
- {
107
- "revision": "5f06934fc6868bfd9b2a83283f963d00",
108
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-600-normal.5f06934f.woff2"
109
- },
110
- {
111
- "revision": "3c5c378e63b3daab31719e37114bb159",
112
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-400-normal.3c5c378e.woff2"
113
- },
114
- {
115
- "revision": "5663c731a31802eb359cc7bed565b4a0",
116
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-500-normal.5663c731.woff2"
117
- },
118
- {
119
- "revision": "ff159cb8756417487b8ea048166d1ab5",
120
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2"
121
- },
122
- {
123
- "revision": "50636a553bb564fe4fe8dc664d85b298",
124
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff"
125
- },
126
- {
127
- "revision": "d8183030e0fe9f809fdf84cb488fca64",
128
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-400-normal.d8183030.woff2"
129
- },
130
- {
131
- "revision": "918b4f73b73f6a405af57abf5a9de9f2",
132
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-ext-400-normal.918b4f73.woff2"
133
- },
134
- {
135
- "revision": "5334a11ece16a5954e0635afa7668b08",
136
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-400-normal.5334a11e.woff2"
137
- },
138
- {
139
- "revision": "df389c9932278468b5b0bcdbc9864163",
140
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-ext-400-normal.df389c99.woff2"
141
- },
142
- {
143
- "revision": "8d1b929856b2ef150dc86f2f38a5dc5b",
144
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-400-normal.8d1b9298.woff2"
145
- },
146
- {
147
- "revision": "84fa8bc12ba88bbb2144273fa45b508b",
148
- "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-ext-400-normal.84fa8bc1.woff2"
149
- }
150
- ]);
@@ -1,2 +0,0 @@
1
- @font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-ext-400-normal.918b4f73.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-400-normal.d8183030.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-ext-400-normal.df389c99.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+1f??}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-400-normal.5334a11e.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+0370-03ff}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-ext-400-normal.84fa8bc1.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-400-normal.8d1b9298.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.50636a55.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-400-normal.b8647475.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-400-normal.aa383bbd.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-400-normal.2c9e3c2a.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-400-normal.3c5c378e.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-400-normal.b8fd53c5.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-500-normal.860932d9.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-500-normal.27a1ebd4.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-500-normal.08d6e502.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-500-normal.5663c731.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-500-normal.595f1a98.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-600-normal.942f240f.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-600-normal.74d5cdba.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-600-normal.bfa32e44.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-600-normal.5f06934f.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}
2
- /*# sourceMappingURL=2.cc9dc85c.chunk.css.map */