adonisjs-server-stats 1.10.0 → 1.10.3

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 (210) hide show
  1. package/README.md +23 -14
  2. package/dist/core/config-utils.d.ts +8 -0
  3. package/dist/core/constants.d.ts +4 -0
  4. package/dist/core/dashboard-data-controller.d.ts +16 -0
  5. package/dist/core/dashboard-data-helpers.d.ts +12 -0
  6. package/dist/core/debug-data-controller.d.ts +4 -0
  7. package/dist/core/define-config-helpers.d.ts +25 -0
  8. package/dist/core/feature-detect-helpers.d.ts +36 -0
  9. package/dist/core/formatters-helpers.d.ts +23 -0
  10. package/dist/core/index.js +594 -509
  11. package/dist/core/log-utils-helpers.d.ts +13 -0
  12. package/dist/core/metrics.d.ts +3 -28
  13. package/dist/core/pagination.d.ts +0 -9
  14. package/dist/core/server-stats-controller.d.ts +6 -0
  15. package/dist/core/transmit-helpers.d.ts +7 -0
  16. package/dist/core/types-dashboard.d.ts +178 -0
  17. package/dist/core/types-diagnostics.d.ts +85 -0
  18. package/dist/core/types.d.ts +10 -442
  19. package/dist/react/{CacheSection-UCMptWyn.js → CacheSection-baMZotSn.js} +2 -2
  20. package/dist/react/CacheTab-2cw_rMzj.js +117 -0
  21. package/dist/react/{ConfigSection-DfFd-WRq.js → ConfigSection-DGgqjAal.js} +1 -1
  22. package/dist/react/{ConfigTab-Bdg8YMer.js → ConfigTab-H3OnYqmK.js} +1 -1
  23. package/dist/react/CustomPaneTab-B6r7ha0u.js +98 -0
  24. package/dist/react/{EmailsSection-CM7stSyh.js → EmailsSection-C-UZISG-.js} +2 -2
  25. package/dist/react/EmailsTab-DbK4Eobn.js +139 -0
  26. package/dist/react/{EventsSection-ByQ-9blq.js → EventsSection-C7RQW_LY.js} +2 -2
  27. package/dist/react/EventsTab-CfVr7AiM.js +57 -0
  28. package/dist/react/{FilterBar-DQRXpWrb.js → FilterBar-CQ7bD669.js} +15 -15
  29. package/dist/react/{JobsSection-DF3qEv9O.js → JobsSection-CQHNK_Ls.js} +2 -2
  30. package/dist/react/{JobsTab-BbrBWIOb.js → JobsTab-znzf6jzk.js} +54 -42
  31. package/dist/react/{LogsSection-DcFTZY7b.js → LogsSection-Dmm3rE2B.js} +9 -3
  32. package/dist/react/LogsTab-D8unMV5P.js +108 -0
  33. package/dist/react/{OverviewSection-C4T1ur51.js → OverviewSection-ABP9ueBo.js} +1 -1
  34. package/dist/react/{QueriesSection-PswteoF9.js → QueriesSection-CnmSkznA.js} +2 -2
  35. package/dist/react/{QueriesTab-osLUWd4L.js → QueriesTab-BQzcxEiW.js} +37 -40
  36. package/dist/react/{RelatedLogs-DFDOyUMr.js → RelatedLogs-3A8RuGKH.js} +15 -3
  37. package/dist/react/{RequestsSection-Nag30rEA.js → RequestsSection-kW79_M7k.js} +3 -3
  38. package/dist/react/{RoutesSection-BUSkM6PY.js → RoutesSection-BRhxrtjZ.js} +2 -2
  39. package/dist/react/RoutesTab-CpYH5lUw.js +68 -0
  40. package/dist/react/{TimelineTab-Covg5weo.js → TimelineTab-DjLR35Ce.js} +47 -53
  41. package/dist/react/index-CsImORX6.js +1121 -0
  42. package/dist/react/index.js +1 -1
  43. package/dist/react/react/components/{Dashboard/shared → shared}/FilterBar.d.ts +4 -3
  44. package/dist/react/react/hooks/useDashboardData.d.ts +4 -8
  45. package/dist/react/style.css +1 -1
  46. package/dist/src/collectors/app_collector.d.ts +0 -8
  47. package/dist/src/collectors/app_collector.js +45 -52
  48. package/dist/src/collectors/auto_detect.d.ts +0 -23
  49. package/dist/src/collectors/auto_detect.js +33 -55
  50. package/dist/src/collectors/db_pool_collector.d.ts +14 -16
  51. package/dist/src/collectors/db_pool_collector.js +72 -57
  52. package/dist/src/collectors/log_collector.d.ts +0 -47
  53. package/dist/src/collectors/log_collector.js +36 -65
  54. package/dist/src/collectors/queue_collector.d.ts +0 -20
  55. package/dist/src/collectors/queue_collector.js +60 -76
  56. package/dist/src/collectors/redis_collector.d.ts +10 -10
  57. package/dist/src/collectors/redis_collector.js +69 -66
  58. package/dist/src/config/deprecation_migration.d.ts +7 -0
  59. package/dist/src/config/deprecation_migration.js +201 -0
  60. package/dist/src/controller/debug_controller.d.ts +1 -1
  61. package/dist/src/controller/debug_controller.js +87 -81
  62. package/dist/src/dashboard/cache_handlers.d.ts +14 -0
  63. package/dist/src/dashboard/cache_handlers.js +52 -0
  64. package/dist/src/dashboard/chart_aggregator.d.ts +0 -7
  65. package/dist/src/dashboard/chart_aggregator.js +68 -50
  66. package/dist/src/dashboard/coalesce_cache.d.ts +25 -0
  67. package/dist/src/dashboard/coalesce_cache.js +47 -0
  68. package/dist/src/dashboard/dashboard_controller.d.ts +11 -37
  69. package/dist/src/dashboard/dashboard_controller.js +51 -544
  70. package/dist/src/dashboard/dashboard_page_assets.d.ts +17 -0
  71. package/dist/src/dashboard/dashboard_page_assets.js +51 -0
  72. package/dist/src/dashboard/dashboard_store.d.ts +19 -218
  73. package/dist/src/dashboard/dashboard_store.js +115 -1116
  74. package/dist/src/dashboard/dashboard_types.d.ts +83 -0
  75. package/dist/src/dashboard/dashboard_types.js +4 -0
  76. package/dist/src/dashboard/detail_queries.d.ts +19 -0
  77. package/dist/src/dashboard/detail_queries.js +98 -0
  78. package/dist/src/dashboard/email_event_builder.d.ts +8 -0
  79. package/dist/src/dashboard/email_event_builder.js +65 -0
  80. package/dist/src/dashboard/explain_query.d.ts +8 -0
  81. package/dist/src/dashboard/explain_query.js +22 -0
  82. package/dist/src/dashboard/filter_handlers.d.ts +23 -0
  83. package/dist/src/dashboard/filter_handlers.js +56 -0
  84. package/dist/src/dashboard/filtered_queries.d.ts +15 -0
  85. package/dist/src/dashboard/filtered_queries.js +155 -0
  86. package/dist/src/dashboard/flush_manager.d.ts +25 -0
  87. package/dist/src/dashboard/flush_manager.js +107 -0
  88. package/dist/src/dashboard/format_helpers.d.ts +126 -0
  89. package/dist/src/dashboard/format_helpers.js +140 -0
  90. package/dist/src/dashboard/inspector_manager.d.ts +36 -0
  91. package/dist/src/dashboard/inspector_manager.js +102 -0
  92. package/dist/src/dashboard/integrations/config_inspector.js +11 -13
  93. package/dist/src/dashboard/integrations/queue_inspector.d.ts +3 -3
  94. package/dist/src/dashboard/integrations/queue_inspector.js +13 -10
  95. package/dist/src/dashboard/jobs_handlers.d.ts +14 -0
  96. package/dist/src/dashboard/jobs_handlers.js +61 -0
  97. package/dist/src/dashboard/knex_factory.d.ts +18 -0
  98. package/dist/src/dashboard/knex_factory.js +91 -0
  99. package/dist/src/dashboard/migrator.js +30 -159
  100. package/dist/src/dashboard/migrator_tables.d.ts +19 -0
  101. package/dist/src/dashboard/migrator_tables.js +153 -0
  102. package/dist/src/dashboard/overview_queries.d.ts +66 -0
  103. package/dist/src/dashboard/overview_queries.js +155 -0
  104. package/dist/src/dashboard/overview_query_runners.d.ts +25 -0
  105. package/dist/src/dashboard/overview_query_runners.js +84 -0
  106. package/dist/src/dashboard/overview_store_queries.d.ts +40 -0
  107. package/dist/src/dashboard/overview_store_queries.js +69 -0
  108. package/dist/src/dashboard/paginate_helper.d.ts +12 -0
  109. package/dist/src/dashboard/paginate_helper.js +33 -0
  110. package/dist/src/dashboard/query_explain_handler.d.ts +10 -0
  111. package/dist/src/dashboard/query_explain_handler.js +80 -0
  112. package/dist/src/dashboard/read_queries.d.ts +32 -0
  113. package/dist/src/dashboard/read_queries.js +107 -0
  114. package/dist/src/dashboard/saved_filter_queries.d.ts +10 -0
  115. package/dist/src/dashboard/saved_filter_queries.js +24 -0
  116. package/dist/src/dashboard/storage_stats.d.ts +41 -0
  117. package/dist/src/dashboard/storage_stats.js +81 -0
  118. package/dist/src/dashboard/write_queue.d.ts +106 -0
  119. package/dist/src/dashboard/write_queue.js +225 -0
  120. package/dist/src/data/data_access.d.ts +2 -39
  121. package/dist/src/data/data_access.js +17 -193
  122. package/dist/src/data/data_access_helpers.d.ts +130 -0
  123. package/dist/src/data/data_access_helpers.js +212 -0
  124. package/dist/src/debug/debug_store.js +37 -32
  125. package/dist/src/debug/email_collector.d.ts +1 -10
  126. package/dist/src/debug/email_collector.js +78 -81
  127. package/dist/src/debug/event_collector.d.ts +0 -9
  128. package/dist/src/debug/event_collector.js +79 -62
  129. package/dist/src/debug/query_collector.js +23 -19
  130. package/dist/src/debug/route_inspector.d.ts +1 -5
  131. package/dist/src/debug/route_inspector.js +50 -51
  132. package/dist/src/debug/trace_collector.d.ts +9 -1
  133. package/dist/src/debug/trace_collector.js +21 -15
  134. package/dist/src/debug/types.d.ts +1 -1
  135. package/dist/src/define_config.d.ts +0 -65
  136. package/dist/src/define_config.js +93 -333
  137. package/dist/src/edge/client/dashboard.js +2 -2
  138. package/dist/src/edge/client/debug-panel-deferred.js +1 -1
  139. package/dist/src/edge/client/stats-bar.js +1 -1
  140. package/dist/src/edge/client-vue/dashboard.js +5 -5
  141. package/dist/src/edge/client-vue/debug-panel-deferred.js +3 -3
  142. package/dist/src/edge/client-vue/stats-bar.js +3 -3
  143. package/dist/src/edge/plugin.d.ts +0 -16
  144. package/dist/src/edge/plugin.js +57 -64
  145. package/dist/src/engine/request_metrics.d.ts +1 -0
  146. package/dist/src/engine/request_metrics.js +32 -42
  147. package/dist/src/middleware/request_tracking_middleware.d.ts +2 -8
  148. package/dist/src/middleware/request_tracking_middleware.js +65 -93
  149. package/dist/src/provider/auth_middleware_detector.d.ts +16 -0
  150. package/dist/src/provider/auth_middleware_detector.js +97 -0
  151. package/dist/src/provider/boot_helpers.d.ts +20 -0
  152. package/dist/src/provider/boot_helpers.js +91 -0
  153. package/dist/src/provider/boot_initializer.d.ts +28 -0
  154. package/dist/src/provider/boot_initializer.js +35 -0
  155. package/dist/src/provider/dashboard_init.d.ts +30 -0
  156. package/dist/src/provider/dashboard_init.js +138 -0
  157. package/dist/src/provider/dashboard_setup.d.ts +25 -0
  158. package/dist/src/provider/dashboard_setup.js +78 -0
  159. package/dist/src/provider/diagnostics.d.ts +134 -0
  160. package/dist/src/provider/diagnostics.js +127 -0
  161. package/dist/src/provider/email_bridge.d.ts +43 -0
  162. package/dist/src/provider/email_bridge.js +80 -0
  163. package/dist/src/provider/email_helpers.d.ts +13 -0
  164. package/dist/src/provider/email_helpers.js +68 -0
  165. package/dist/src/provider/pino_hook.d.ts +17 -0
  166. package/dist/src/provider/pino_hook.js +35 -0
  167. package/dist/src/provider/provider_helpers_extra.d.ts +47 -0
  168. package/dist/src/provider/provider_helpers_extra.js +177 -0
  169. package/dist/src/provider/server_stats_provider.d.ts +39 -85
  170. package/dist/src/provider/server_stats_provider.js +132 -951
  171. package/dist/src/provider/shutdown_helpers.d.ts +43 -0
  172. package/dist/src/provider/shutdown_helpers.js +70 -0
  173. package/dist/src/provider/toolbar_setup.d.ts +57 -0
  174. package/dist/src/provider/toolbar_setup.js +141 -0
  175. package/dist/src/routes/dashboard_routes.d.ts +14 -0
  176. package/dist/src/routes/dashboard_routes.js +197 -0
  177. package/dist/src/routes/debug_routes.d.ts +14 -0
  178. package/dist/src/routes/debug_routes.js +101 -0
  179. package/dist/src/routes/register_routes.d.ts +0 -78
  180. package/dist/src/routes/register_routes.js +22 -352
  181. package/dist/src/routes/stats_routes.d.ts +5 -0
  182. package/dist/src/routes/stats_routes.js +14 -0
  183. package/dist/src/styles/components.css +96 -0
  184. package/dist/src/styles/dashboard.css +8 -90
  185. package/dist/src/styles/debug-panel.css +1 -31
  186. package/dist/src/types.d.ts +305 -14
  187. package/dist/vue/{CacheSection-oFAJL3mo.js → CacheSection-ITqvpfH5.js} +1 -1
  188. package/dist/vue/{ConfigSection-BhfJ4KqL.js → ConfigSection-DTn3GslE.js} +1 -1
  189. package/dist/vue/{EmailsSection-BcNyhyHs.js → EmailsSection-DtLJ4XoS.js} +1 -1
  190. package/dist/vue/{EventsSection-r60Q5Lmu.js → EventsSection-BOYYz0Ty.js} +1 -1
  191. package/dist/vue/{JobsSection-BHL-hkQw.js → JobsSection-BazTxcJL.js} +1 -1
  192. package/dist/vue/{LogsSection-DRMGzJmg.js → LogsSection-D55PjTKX.js} +9 -3
  193. package/dist/vue/{LogsTab-Bg3o0Mm6.js → LogsTab-47zEK7jL.js} +4 -1
  194. package/dist/vue/{OverviewSection-CXh6Ja1B.js → OverviewSection-1uBKo-Tu.js} +1 -1
  195. package/dist/vue/{QueriesSection-IodIsCJ-.js → QueriesSection-rpoZ4ogd.js} +1 -1
  196. package/dist/vue/{RequestsSection-BPuMdmMc.js → RequestsSection-x7LvT0MC.js} +1 -1
  197. package/dist/vue/{RoutesSection-NKo3Rbq3.js → RoutesSection-CCD0zZqQ.js} +1 -1
  198. package/dist/vue/composables/useDashboardData.d.ts +12 -23
  199. package/dist/vue/index-C8MxnS7Q.js +1232 -0
  200. package/dist/vue/index.js +1 -1
  201. package/dist/vue/style.css +1 -1
  202. package/package.json +1 -1
  203. package/dist/react/CacheTab-CA8LB1J5.js +0 -123
  204. package/dist/react/CustomPaneTab-Bxtv_8Rw.js +0 -104
  205. package/dist/react/EmailsTab-BDhEiomM.js +0 -153
  206. package/dist/react/EventsTab-CMfY98Rl.js +0 -63
  207. package/dist/react/LogsTab-CicucmVk.js +0 -103
  208. package/dist/react/RoutesTab-DgVzd2PZ.js +0 -74
  209. package/dist/react/index-Cflz9Ebj.js +0 -1069
  210. package/dist/vue/index-Dtgysd26.js +0 -1229
@@ -1 +1 @@
1
- (function(){"use strict";var se,$,je,K,Fe,He,Ue,ze,ye,we,Ne,le={},ie=[],Yt=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,Y=Array.isArray;function z(e,n){for(var r in n)e[r]=n[r];return e}function xe(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function ae(e,n,r){var s,i,l,c={};for(l in n)l=="key"?s=n[l]:l=="ref"?i=n[l]:c[l]=n[l];if(arguments.length>2&&(c.children=arguments.length>3?se.call(arguments,2):r),typeof e=="function"&&e.defaultProps!=null)for(l in e.defaultProps)c[l]===void 0&&(c[l]=e.defaultProps[l]);return oe(e,c,s,i,null)}function oe(e,n,r,s,i){var l={type:e,props:n,key:r,ref:s,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:i??++je,__i:-1,__u:0};return i==null&&$.vnode!=null&&$.vnode(l),l}function R(e){return e.children}function V(e,n){this.props=e,this.context=n}function Q(e,n){if(n==null)return e.__?Q(e.__,e.__i+1):null;for(var r;n<e.__k.length;n++)if((r=e.__k[n])!=null&&r.__e!=null)return r.__e;return typeof e.type=="function"?Q(e):null}function Xt(e){if(e.__P&&e.__d){var n=e.__v,r=n.__e,s=[],i=[],l=z({},n);l.__v=n.__v+1,$.vnode&&$.vnode(l),$e(e.__P,l,n,e.__n,e.__P.namespaceURI,32&n.__u?[r]:null,s,r??Q(n),!!(32&n.__u),i),l.__v=n.__v,l.__.__k[l.__i]=l,Ge(s,l,i),n.__e=n.__=null,l.__e!=r&&Ve(l)}}function Ve(e){if((e=e.__)!=null&&e.__c!=null)return e.__e=e.__c.base=null,e.__k.some(function(n){if(n!=null&&n.__e!=null)return e.__e=e.__c.base=n.__e}),Ve(e)}function qe(e){(!e.__d&&(e.__d=!0)&&K.push(e)&&!ce.__r++||Fe!=$.debounceRendering)&&((Fe=$.debounceRendering)||He)(ce)}function ce(){for(var e,n=1;K.length;)K.length>n&&K.sort(Ue),e=K.shift(),n=K.length,Xt(e);ce.__r=0}function We(e,n,r,s,i,l,c,d,o,a,h){var u,f,g,p,_,b,y,m=s&&s.__k||ie,N=n.length;for(o=Zt(r,n,m,o,N),u=0;u<N;u++)(g=r.__k[u])!=null&&(f=g.__i!=-1&&m[g.__i]||le,g.__i=u,b=$e(e,g,f,i,l,c,d,o,a,h),p=g.__e,g.ref&&f.ref!=g.ref&&(f.ref&&ke(f.ref,null,g),h.push(g.ref,g.__c||p,g)),_==null&&p!=null&&(_=p),(y=!!(4&g.__u))||f.__k===g.__k?o=Je(g,o,e,y):typeof g.type=="function"&&b!==void 0?o=b:p&&(o=p.nextSibling),g.__u&=-7);return r.__e=_,o}function Zt(e,n,r,s,i){var l,c,d,o,a,h=r.length,u=h,f=0;for(e.__k=new Array(i),l=0;l<i;l++)(c=n[l])!=null&&typeof c!="boolean"&&typeof c!="function"?(typeof c=="string"||typeof c=="number"||typeof c=="bigint"||c.constructor==String?c=e.__k[l]=oe(null,c,null,null,null):Y(c)?c=e.__k[l]=oe(R,{children:c},null,null,null):c.constructor===void 0&&c.__b>0?c=e.__k[l]=oe(c.type,c.props,c.key,c.ref?c.ref:null,c.__v):e.__k[l]=c,o=l+f,c.__=e,c.__b=e.__b+1,d=null,(a=c.__i=en(c,r,o,u))!=-1&&(u--,(d=r[a])&&(d.__u|=2)),d==null||d.__v==null?(a==-1&&(i>h?f--:i<h&&f++),typeof c.type!="function"&&(c.__u|=4)):a!=o&&(a==o-1?f--:a==o+1?f++:(a>o?f--:f++,c.__u|=4))):e.__k[l]=null;if(u)for(l=0;l<h;l++)(d=r[l])!=null&&(2&d.__u)==0&&(d.__e==s&&(s=Q(d)),Xe(d,d));return s}function Je(e,n,r,s){var i,l;if(typeof e.type=="function"){for(i=e.__k,l=0;i&&l<i.length;l++)i[l]&&(i[l].__=e,n=Je(i[l],n,r,s));return n}e.__e!=n&&(s&&(n&&e.type&&!n.parentNode&&(n=Q(e)),r.insertBefore(e.__e,n||null)),n=e.__e);do n=n&&n.nextSibling;while(n!=null&&n.nodeType==8);return n}function de(e,n){return n=n||[],e==null||typeof e=="boolean"||(Y(e)?e.some(function(r){de(r,n)}):n.push(e)),n}function en(e,n,r,s){var i,l,c,d=e.key,o=e.type,a=n[r],h=a!=null&&(2&a.__u)==0;if(a===null&&d==null||h&&d==a.key&&o==a.type)return r;if(s>(h?1:0)){for(i=r-1,l=r+1;i>=0||l<n.length;)if((a=n[c=i>=0?i--:l++])!=null&&(2&a.__u)==0&&d==a.key&&o==a.type)return c}return-1}function Ke(e,n,r){n[0]=="-"?e.setProperty(n,r??""):e[n]=r==null?"":typeof r!="number"||Yt.test(n)?r:r+"px"}function ue(e,n,r,s,i){var l,c;e:if(n=="style")if(typeof r=="string")e.style.cssText=r;else{if(typeof s=="string"&&(e.style.cssText=s=""),s)for(n in s)r&&n in r||Ke(e.style,n,"");if(r)for(n in r)s&&r[n]==s[n]||Ke(e.style,n,r[n])}else if(n[0]=="o"&&n[1]=="n")l=n!=(n=n.replace(ze,"$1")),c=n.toLowerCase(),n=c in e||n=="onFocusOut"||n=="onFocusIn"?c.slice(2):n.slice(2),e.l||(e.l={}),e.l[n+l]=r,r?s?r.u=s.u:(r.u=ye,e.addEventListener(n,l?Ne:we,l)):e.removeEventListener(n,l?Ne:we,l);else{if(i=="http://www.w3.org/2000/svg")n=n.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(n!="width"&&n!="height"&&n!="href"&&n!="list"&&n!="form"&&n!="tabIndex"&&n!="download"&&n!="rowSpan"&&n!="colSpan"&&n!="role"&&n!="popover"&&n in e)try{e[n]=r??"";break e}catch{}typeof r=="function"||(r==null||r===!1&&n[4]!="-"?e.removeAttribute(n):e.setAttribute(n,n=="popover"&&r==1?"":r))}}function Qe(e){return function(n){if(this.l){var r=this.l[n.type+e];if(n.t==null)n.t=ye++;else if(n.t<r.u)return;return r($.event?$.event(n):n)}}}function $e(e,n,r,s,i,l,c,d,o,a){var h,u,f,g,p,_,b,y,m,N,C,v,w,A,M,D=n.type;if(n.constructor!==void 0)return null;128&r.__u&&(o=!!(32&r.__u),l=[d=n.__e=r.__e]),(h=$.__b)&&h(n);e:if(typeof D=="function")try{if(y=n.props,m="prototype"in D&&D.prototype.render,N=(h=D.contextType)&&s[h.__c],C=h?N?N.props.value:h.__:s,r.__c?b=(u=n.__c=r.__c).__=u.__E:(m?n.__c=u=new D(y,C):(n.__c=u=new V(y,C),u.constructor=D,u.render=nn),N&&N.sub(u),u.state||(u.state={}),u.__n=s,f=u.__d=!0,u.__h=[],u._sb=[]),m&&u.__s==null&&(u.__s=u.state),m&&D.getDerivedStateFromProps!=null&&(u.__s==u.state&&(u.__s=z({},u.__s)),z(u.__s,D.getDerivedStateFromProps(y,u.__s))),g=u.props,p=u.state,u.__v=n,f)m&&D.getDerivedStateFromProps==null&&u.componentWillMount!=null&&u.componentWillMount(),m&&u.componentDidMount!=null&&u.__h.push(u.componentDidMount);else{if(m&&D.getDerivedStateFromProps==null&&y!==g&&u.componentWillReceiveProps!=null&&u.componentWillReceiveProps(y,C),n.__v==r.__v||!u.__e&&u.shouldComponentUpdate!=null&&u.shouldComponentUpdate(y,u.__s,C)===!1){n.__v!=r.__v&&(u.props=y,u.state=u.__s,u.__d=!1),n.__e=r.__e,n.__k=r.__k,n.__k.some(function(W){W&&(W.__=n)}),ie.push.apply(u.__h,u._sb),u._sb=[],u.__h.length&&c.push(u);break e}u.componentWillUpdate!=null&&u.componentWillUpdate(y,u.__s,C),m&&u.componentDidUpdate!=null&&u.__h.push(function(){u.componentDidUpdate(g,p,_)})}if(u.context=C,u.props=y,u.__P=e,u.__e=!1,v=$.__r,w=0,m)u.state=u.__s,u.__d=!1,v&&v(n),h=u.render(u.props,u.state,u.context),ie.push.apply(u.__h,u._sb),u._sb=[];else do u.__d=!1,v&&v(n),h=u.render(u.props,u.state,u.context),u.state=u.__s;while(u.__d&&++w<25);u.state=u.__s,u.getChildContext!=null&&(s=z(z({},s),u.getChildContext())),m&&!f&&u.getSnapshotBeforeUpdate!=null&&(_=u.getSnapshotBeforeUpdate(g,p)),A=h!=null&&h.type===R&&h.key==null?Ye(h.props.children):h,d=We(e,Y(A)?A:[A],n,r,s,i,l,c,d,o,a),u.base=n.__e,n.__u&=-161,u.__h.length&&c.push(u),b&&(u.__E=u.__=null)}catch(W){if(n.__v=null,o||l!=null)if(W.then){for(n.__u|=o?160:128;d&&d.nodeType==8&&d.nextSibling;)d=d.nextSibling;l[l.indexOf(d)]=null,n.__e=d}else{for(M=l.length;M--;)xe(l[M]);Ce(n)}else n.__e=r.__e,n.__k=r.__k,W.then||Ce(n);$.__e(W,n,r)}else l==null&&n.__v==r.__v?(n.__k=r.__k,n.__e=r.__e):d=n.__e=tn(r.__e,n,r,s,i,l,c,o,a);return(h=$.diffed)&&h(n),128&n.__u?void 0:d}function Ce(e){e&&(e.__c&&(e.__c.__e=!0),e.__k&&e.__k.some(Ce))}function Ge(e,n,r){for(var s=0;s<r.length;s++)ke(r[s],r[++s],r[++s]);$.__c&&$.__c(n,e),e.some(function(i){try{e=i.__h,i.__h=[],e.some(function(l){l.call(i)})}catch(l){$.__e(l,i.__v)}})}function Ye(e){return typeof e!="object"||e==null||e.__b>0?e:Y(e)?e.map(Ye):z({},e)}function tn(e,n,r,s,i,l,c,d,o){var a,h,u,f,g,p,_,b=r.props||le,y=n.props,m=n.type;if(m=="svg"?i="http://www.w3.org/2000/svg":m=="math"?i="http://www.w3.org/1998/Math/MathML":i||(i="http://www.w3.org/1999/xhtml"),l!=null){for(a=0;a<l.length;a++)if((g=l[a])&&"setAttribute"in g==!!m&&(m?g.localName==m:g.nodeType==3)){e=g,l[a]=null;break}}if(e==null){if(m==null)return document.createTextNode(y);e=document.createElementNS(i,m,y.is&&y),d&&($.__m&&$.__m(n,l),d=!1),l=null}if(m==null)b===y||d&&e.data==y||(e.data=y);else{if(l=l&&se.call(e.childNodes),!d&&l!=null)for(b={},a=0;a<e.attributes.length;a++)b[(g=e.attributes[a]).name]=g.value;for(a in b)g=b[a],a=="dangerouslySetInnerHTML"?u=g:a=="children"||a in y||a=="value"&&"defaultValue"in y||a=="checked"&&"defaultChecked"in y||ue(e,a,null,g,i);for(a in y)g=y[a],a=="children"?f=g:a=="dangerouslySetInnerHTML"?h=g:a=="value"?p=g:a=="checked"?_=g:d&&typeof g!="function"||b[a]===g||ue(e,a,g,b[a],i);if(h)d||u&&(h.__html==u.__html||h.__html==e.innerHTML)||(e.innerHTML=h.__html),n.__k=[];else if(u&&(e.innerHTML=""),We(n.type=="template"?e.content:e,Y(f)?f:[f],n,r,s,m=="foreignObject"?"http://www.w3.org/1999/xhtml":i,l,c,l?l[0]:r.__k&&Q(r,0),d,o),l!=null)for(a=l.length;a--;)xe(l[a]);d||(a="value",m=="progress"&&p==null?e.removeAttribute("value"):p!=null&&(p!==e[a]||m=="progress"&&!p||m=="option"&&p!=b[a])&&ue(e,a,p,b[a],i),a="checked",_!=null&&_!=e[a]&&ue(e,a,_,b[a],i))}return e}function ke(e,n,r){try{if(typeof e=="function"){var s=typeof e.__u=="function";s&&e.__u(),s&&n==null||(e.__u=e(n))}else e.current=n}catch(i){$.__e(i,r)}}function Xe(e,n,r){var s,i;if($.unmount&&$.unmount(e),(s=e.ref)&&(s.current&&s.current!=e.__e||ke(s,null,n)),(s=e.__c)!=null){if(s.componentWillUnmount)try{s.componentWillUnmount()}catch(l){$.__e(l,n)}s.base=s.__P=null}if(s=e.__k)for(i=0;i<s.length;i++)s[i]&&Xe(s[i],n,r||typeof e.type!="function");r||xe(e.__e),e.__c=e.__=e.__e=void 0}function nn(e,n,r){return this.constructor(e,r)}function Ze(e,n,r){var s,i,l,c;n==document&&(n=document.documentElement),$.__&&$.__(e,n),i=(s=!1)?null:n.__k,l=[],c=[],$e(n,e=n.__k=ae(R,null,[e]),i||le,le,n.namespaceURI,i?null:n.firstChild?se.call(n.childNodes):null,l,i?i.__e:n.firstChild,s,c),Ge(l,e,c)}se=ie.slice,$={__e:function(e,n,r,s){for(var i,l,c;n=n.__;)if((i=n.__c)&&!i.__)try{if((l=i.constructor)&&l.getDerivedStateFromError!=null&&(i.setState(l.getDerivedStateFromError(e)),c=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,s||{}),c=i.__d),c)return i.__E=i}catch(d){e=d}throw e}},je=0,V.prototype.setState=function(e,n){var r;r=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=z({},this.state),typeof e=="function"&&(e=e(z({},r),this.props)),e&&z(r,e),e!=null&&this.__v&&(n&&this._sb.push(n),qe(this))},V.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),qe(this))},V.prototype.render=R,K=[],He=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Ue=function(e,n){return e.__v.__b-n.__v.__b},ce.__r=0,ze=/(PointerCapture)$|Capture$/i,ye=0,we=Qe(!1),Ne=Qe(!0);var rn=0;function t(e,n,r,s,i,l){n||(n={});var c,d,o=n;if("ref"in o)for(d in o={},n)d=="ref"?c=n[d]:o[d]=n[d];var a={type:e,props:o,key:r,ref:c,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--rn,__i:-1,__u:0,__source:i,__self:l};if(typeof e=="function"&&(c=e.defaultProps))for(d in c)o[d]===void 0&&(o[d]=c[d]);return $.vnode&&$.vnode(a),a}var X,T,Se,et,Z=0,tt=[],L=$,nt=L.__b,rt=L.__r,st=L.diffed,lt=L.__c,it=L.unmount,at=L.__;function Te(e,n){L.__h&&L.__h(T,e,Z||n),Z=0;var r=T.__H||(T.__H={__:[],__h:[]});return e>=r.__.length&&r.__.push({}),r.__[e]}function x(e){return Z=1,sn(dt,e)}function sn(e,n,r){var s=Te(X++,2);if(s.t=e,!s.__c&&(s.__=[r?r(n):dt(void 0,n),function(d){var o=s.__N?s.__N[0]:s.__[0],a=s.t(o,d);o!==a&&(s.__N=[a,s.__[1]],s.__c.setState({}))}],s.__c=T,!T.__f)){var i=function(d,o,a){if(!s.__c.__H)return!0;var h=s.__c.__H.__.filter(function(f){return f.__c});if(h.every(function(f){return!f.__N}))return!l||l.call(this,d,o,a);var u=s.__c.props!==d;return h.some(function(f){if(f.__N){var g=f.__[0];f.__=f.__N,f.__N=void 0,g!==f.__[0]&&(u=!0)}}),l&&l.call(this,d,o,a)||u};T.__f=!0;var l=T.shouldComponentUpdate,c=T.componentWillUpdate;T.componentWillUpdate=function(d,o,a){if(this.__e){var h=l;l=void 0,i(d,o,a),l=h}c&&c.call(this,d,o,a)},T.shouldComponentUpdate=i}return s.__N||s.__}function F(e,n){var r=Te(X++,3);!L.__s&&ct(r.__H,n)&&(r.__=e,r.u=n,T.__H.__h.push(r))}function O(e){return Z=5,S(function(){return{current:e}},[])}function S(e,n){var r=Te(X++,7);return ct(r.__H,n)&&(r.__=e(),r.__H=n,r.__h=e),r.__}function k(e,n){return Z=8,S(function(){return e},n)}function ln(){for(var e;e=tt.shift();){var n=e.__H;if(e.__P&&n)try{n.__h.some(he),n.__h.some(Le),n.__h=[]}catch(r){n.__h=[],L.__e(r,e.__v)}}}L.__b=function(e){T=null,nt&&nt(e)},L.__=function(e,n){e&&n.__k&&n.__k.__m&&(e.__m=n.__k.__m),at&&at(e,n)},L.__r=function(e){rt&&rt(e),X=0;var n=(T=e.__c).__H;n&&(Se===T?(n.__h=[],T.__h=[],n.__.some(function(r){r.__N&&(r.__=r.__N),r.u=r.__N=void 0})):(n.__h.some(he),n.__h.some(Le),n.__h=[],X=0)),Se=T},L.diffed=function(e){st&&st(e);var n=e.__c;n&&n.__H&&(n.__H.__h.length&&(tt.push(n)!==1&&et===L.requestAnimationFrame||((et=L.requestAnimationFrame)||an)(ln)),n.__H.__.some(function(r){r.u&&(r.__H=r.u),r.u=void 0})),Se=T=null},L.__c=function(e,n){n.some(function(r){try{r.__h.some(he),r.__h=r.__h.filter(function(s){return!s.__||Le(s)})}catch(s){n.some(function(i){i.__h&&(i.__h=[])}),n=[],L.__e(s,r.__v)}}),lt&&lt(e,n)},L.unmount=function(e){it&&it(e);var n,r=e.__c;r&&r.__H&&(r.__H.__.some(function(s){try{he(s)}catch(i){n=i}}),r.__H=void 0,n&&L.__e(n,r.__v))};var ot=typeof requestAnimationFrame=="function";function an(e){var n,r=function(){clearTimeout(s),ot&&cancelAnimationFrame(n),setTimeout(e)},s=setTimeout(r,35);ot&&(n=requestAnimationFrame(r))}function he(e){var n=T,r=e.__c;typeof r=="function"&&(e.__c=void 0,r()),T=n}function Le(e){var n=T;e.__c=e.__(),T=n}function ct(e,n){return!e||e.length!==n.length||n.some(function(r,s){return r!==e[s]})}function dt(e,n){return typeof n=="function"?n(e):n}function on(e,n){for(var r in n)e[r]=n[r];return e}function ut(e,n){for(var r in e)if(r!=="__source"&&!(r in n))return!0;for(var s in n)if(s!=="__source"&&e[s]!==n[s])return!0;return!1}function ht(e,n){this.props=e,this.context=n}(ht.prototype=new V).isPureReactComponent=!0,ht.prototype.shouldComponentUpdate=function(e,n){return ut(this.props,e)||ut(this.state,n)};var ft=$.__b;$.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),ft&&ft(e)};var cn=$.__e;$.__e=function(e,n,r,s){if(e.then){for(var i,l=n;l=l.__;)if((i=l.__c)&&i.__c)return n.__e==null&&(n.__e=r.__e,n.__k=r.__k),i.__c(e,n)}cn(e,n,r,s)};var pt=$.unmount;function gt(e,n,r){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(s){typeof s.__c=="function"&&s.__c()}),e.__c.__H=null),(e=on({},e)).__c!=null&&(e.__c.__P===r&&(e.__c.__P=n),e.__c.__e=!0,e.__c=null),e.__k=e.__k&&e.__k.map(function(s){return gt(s,n,r)})),e}function _t(e,n,r){return e&&r&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(s){return _t(s,n,r)}),e.__c&&e.__c.__P===n&&(e.__e&&r.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=r)),e}function ee(){this.__u=0,this.o=null,this.__b=null}function mt(e){if(!e.__)return null;var n=e.__.__c;return n&&n.__a&&n.__a(e)}function B(e){var n,r,s,i=null;function l(c){if(n||(n=e()).then(function(d){d&&(i=d.default||d),s=!0},function(d){r=d,s=!0}),r)throw r;if(!s)throw n;return i?ae(i,c):null}return l.displayName="Lazy",l.__f=!0,l}function fe(){this.i=null,this.l=null}$.unmount=function(e){var n=e.__c;n&&(n.__z=!0),n&&n.__R&&n.__R(),n&&32&e.__u&&(e.type=null),pt&&pt(e)},(ee.prototype=new V).__c=function(e,n){var r=n.__c,s=this;s.o==null&&(s.o=[]),s.o.push(r);var i=mt(s.__v),l=!1,c=function(){l||s.__z||(l=!0,r.__R=null,i?i(o):o())};r.__R=c;var d=r.__P;r.__P=null;var o=function(){if(!--s.__u){if(s.state.__a){var a=s.state.__a;s.__v.__k[0]=_t(a,a.__c.__P,a.__c.__O)}var h;for(s.setState({__a:s.__b=null});h=s.o.pop();)h.__P=d,h.forceUpdate()}};s.__u++||32&n.__u||s.setState({__a:s.__b=s.__v.__k[0]}),e.then(c,c)},ee.prototype.componentWillUnmount=function(){this.o=[]},ee.prototype.render=function(e,n){if(this.__b){if(this.__v.__k){var r=document.createElement("div"),s=this.__v.__k[0].__c;this.__v.__k[0]=gt(this.__b,r,s.__O=s.__P)}this.__b=null}var i=n.__a&&ae(R,null,e.fallback);return i&&(i.__u&=-33),[ae(R,null,n.__a?null:e.children),i]};var bt=function(e,n,r){if(++r[1]===r[0]&&e.l.delete(n),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(r=e.i;r;){for(;r.length>3;)r.pop()();if(r[1]<r[0])break;e.i=r=r[2]}};(fe.prototype=new V).__a=function(e){var n=this,r=mt(n.__v),s=n.l.get(e);return s[0]++,function(i){var l=function(){n.props.revealOrder?(s.push(i),bt(n,e,s)):i()};r?r(l):l()}},fe.prototype.render=function(e){this.i=null,this.l=new Map;var n=de(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&n.reverse();for(var r=n.length;r--;)this.l.set(n[r],this.i=[1,0,this.i]);return e.children},fe.prototype.componentDidUpdate=fe.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(n,r){bt(e,r,n)})};var dn=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,un=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,hn=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,fn=/[A-Z0-9]/g,pn=typeof document<"u",gn=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};V.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(V.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(n){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:n})}})});var vt=$.event;function _n(){}function mn(){return this.cancelBubble}function bn(){return this.defaultPrevented}$.event=function(e){return vt&&(e=vt(e)),e.persist=_n,e.isPropagationStopped=mn,e.isDefaultPrevented=bn,e.nativeEvent=e};var vn={enumerable:!1,configurable:!0,get:function(){return this.class}},yt=$.vnode;$.vnode=function(e){typeof e.type=="string"&&(function(n){var r=n.props,s=n.type,i={},l=s.indexOf("-")===-1;for(var c in r){var d=r[c];if(!(c==="value"&&"defaultValue"in r&&d==null||pn&&c==="children"&&s==="noscript"||c==="class"||c==="className")){var o=c.toLowerCase();c==="defaultValue"&&"value"in r&&r.value==null?c="value":c==="download"&&d===!0?d="":o==="translate"&&d==="no"?d=!1:o[0]==="o"&&o[1]==="n"?o==="ondoubleclick"?c="ondblclick":o!=="onchange"||s!=="input"&&s!=="textarea"||gn(r.type)?o==="onfocus"?c="onfocusin":o==="onblur"?c="onfocusout":hn.test(c)&&(c=o):o=c="oninput":l&&un.test(c)?c=c.replace(fn,"-$&").toLowerCase():d===null&&(d=void 0),o==="oninput"&&i[c=o]&&(c="oninputCapture"),i[c]=d}}s=="select"&&i.multiple&&Array.isArray(i.value)&&(i.value=de(r.children).forEach(function(a){a.props.selected=i.value.indexOf(a.props.value)!=-1})),s=="select"&&i.defaultValue!=null&&(i.value=de(r.children).forEach(function(a){a.props.selected=i.multiple?i.defaultValue.indexOf(a.props.value)!=-1:i.defaultValue==a.props.value})),r.class&&!r.className?(i.class=r.class,Object.defineProperty(i,"className",vn)):r.className&&(i.class=i.className=r.className),n.props=i})(e),e.$$typeof=dn,yt&&yt(e)};var wt=$.__r;$.__r=function(e){wt&&wt(e),e.__c};var Nt=$.diffed;$.diffed=function(e){Nt&&Nt(e);var n=e.props,r=e.__e;r!=null&&e.type==="textarea"&&"value"in n&&n.value!==r.value&&(r.value=n.value==null?"":n.value)};var xt={Fragment:R};const E={queries:{viewBox:"0 0 24 24",elements:['<ellipse cx="12" cy="5" rx="9" ry="3"/>','<path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/>','<path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/>']},events:{viewBox:"0 0 24 24",elements:['<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>']},emails:{viewBox:"0 0 24 24",elements:['<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>','<polyline points="22,6 12,13 2,6"/>']},routes:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="10"/>','<line x1="2" y1="12" x2="22" y2="12"/>','<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/>']},logs:{viewBox:"0 0 24 24",elements:['<line x1="8" y1="6" x2="21" y2="6"/>','<line x1="8" y1="12" x2="21" y2="12"/>','<line x1="8" y1="18" x2="21" y2="18"/>','<line x1="3" y1="6" x2="3.01" y2="6"/>','<line x1="3" y1="12" x2="3.01" y2="12"/>','<line x1="3" y1="18" x2="3.01" y2="18"/>']},timeline:{viewBox:"0 0 24 24",elements:['<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>']},cache:{viewBox:"0 0 24 24",elements:['<rect x="2" y="2" width="20" height="8" rx="2" ry="2"/>','<rect x="2" y="14" width="20" height="8" rx="2" ry="2"/>','<line x1="6" y1="6" x2="6.01" y2="6"/>','<line x1="6" y1="18" x2="6.01" y2="18"/>']},jobs:{viewBox:"0 0 24 24",elements:['<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>','<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>']},config:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="3"/>','<path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"/>']},internals:{viewBox:"0 0 24 24",elements:['<rect x="4" y="4" width="16" height="16" rx="2"/>','<rect x="9" y="9" width="6" height="6"/>','<line x1="9" y1="1" x2="9" y2="4"/>','<line x1="15" y1="1" x2="15" y2="4"/>','<line x1="9" y1="20" x2="9" y2="23"/>','<line x1="15" y1="20" x2="15" y2="23"/>','<line x1="20" y1="9" x2="23" y2="9"/>','<line x1="20" y1="14" x2="23" y2="14"/>','<line x1="1" y1="9" x2="4" y2="9"/>','<line x1="1" y1="14" x2="4" y2="14"/>']},overview:{viewBox:"0 0 24 24",elements:['<rect x="3" y="3" width="7" height="7"/>','<rect x="14" y="3" width="7" height="7"/>','<rect x="14" y="14" width="7" height="7"/>','<rect x="3" y="14" width="7" height="7"/>']},requests:{viewBox:"0 0 24 24",elements:['<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>']},"dashboard-timeline":{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="10"/>','<polyline points="12 6 12 12 16 14"/>']},"custom-pane":{viewBox:"0 0 24 24",elements:['<rect x="3" y="3" width="18" height="18" rx="2"/>','<path d="M9 3v18"/>']},wrench:{viewBox:"0 0 24 24",elements:['<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/>']},"external-link":{viewBox:"0 0 24 24",elements:['<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/>','<polyline points="15 3 21 3 21 9"/>','<line x1="10" y1="14" x2="21" y2="3"/>']},sun:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="5"/>','<line x1="12" y1="1" x2="12" y2="3"/>','<line x1="12" y1="21" x2="12" y2="23"/>','<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>','<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>','<line x1="1" y1="12" x2="3" y2="12"/>','<line x1="21" y1="12" x2="23" y2="12"/>','<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>','<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>']},moon:{viewBox:"0 0 24 24",elements:['<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>']},search:{viewBox:"0 0 24 24",elements:['<circle cx="11" cy="11" r="8"/>','<line x1="21" y1="21" x2="16.65" y2="16.65"/>']},eye:{viewBox:"0 0 24 24",elements:['<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/>','<circle cx="12" cy="12" r="3"/>']},"eye-off":{viewBox:"0 0 24 24",elements:['<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94"/>','<path d="M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19"/>','<line x1="1" y1="1" x2="23" y2="23"/>','<path d="M14.12 14.12a3 3 0 1 1-4.24-4.24"/>']},"chevron-right":{viewBox:"0 0 24 24",elements:['<path d="M9 18l6-6-6-6"/>']},"chevron-left":{viewBox:"0 0 24 24",elements:['<path d="M15 18l-6-6 6-6"/>']},"open-external":{viewBox:"0 0 16 16",elements:['<path d="M6 3H3v10h10v-3M9 1h6v6M7 9L15 1"/>']}};class pe extends Error{status;constructor(n=403){super(`Unauthorized (HTTP ${n})`),this.name="UnauthorizedError",this.status=n}}class yn extends Error{status;body;constructor(n,r){super(`API error (HTTP ${n})`),this.name="ApiError",this.status=n,this.body=r}}class Ee{baseUrl;authToken;constructor(n){this.baseUrl=n.baseUrl.replace(/\/+$/,""),this.authToken=n.authToken}async fetch(n,r){const i={...{Accept:"application/json",...this.authToken?{Authorization:`Bearer ${this.authToken}`}:{}},...r?.headers},l=await globalThis.fetch(`${this.baseUrl}${n}`,{...r,headers:i,credentials:this.authToken?"omit":"include"});if(r?.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");if(l.status===401||l.status===403)throw new pe(l.status);if(!l.ok){const c=await l.text().catch(()=>"");throw new yn(l.status,c)}return l.json()}async get(n,r){const s=r?`${n}?${r}`:n;return this.fetch(s)}async post(n,r){const s={method:"POST",...r!==void 0?{body:JSON.stringify(r),headers:{"Content-Type":"application/json"}}:{}};return this.fetch(n,s)}async delete(n){return this.fetch(n,{method:"DELETE"})}}const $t="/admin/api/debug",Ct={tracing:!1,process:!1,system:!1,http:!1,db:!1,redis:!1,queues:!1,cache:!1,app:!1,log:!1,emails:!1,dashboard:!1,customPanes:[]};function wn(e){return{tracing:e.features?.tracing??!1,process:e.features?.process??!1,system:e.features?.system??!1,http:e.features?.http??!1,db:e.features?.db??!1,redis:e.features?.redis??!1,queues:e.features?.queues??!1,cache:e.features?.cache??!1,app:e.features?.app??!1,log:e.features?.log??!1,emails:e.features?.emails??!1,dashboard:e.features?.dashboard??!1,customPanes:e.customPanes??[]}}async function Nn(e,n=$t){const r=`${n.replace(/\/+$/,"")}/config`;return e.fetch(r)}async function xn(e){const{baseUrl:n="",debugEndpoint:r=$t,authToken:s}=e,i=new Ee({baseUrl:n,authToken:s});try{const l=await Nn(i,r);return wn(l)}catch{return Ct}}function $n(e={}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e,[i,l]=x(Ct),[c,d]=x(!0),[o,a]=x(null),h=O(!1);return F(()=>{if(h.current)return;h.current=!0;let u=!1;return(async()=>{try{const g=await xn({baseUrl:n,debugEndpoint:r,authToken:s});u||(l(g),d(!1))}catch(g){u||(a(g instanceof Error?g:new Error(String(g))),d(!1))}})(),()=>{u=!0}},[n,r,s]),{features:i,isLoading:c,error:o}}const ge="ss-dash-theme",Ae="ss-theme-change";function Me(){if(typeof window>"u")return"light";const e=localStorage.getItem(ge);return e==="dark"||e==="light"?e:window.matchMedia?.("(prefers-color-scheme: dark)").matches?"dark":"light"}function Cn(e){typeof window>"u"||(localStorage.setItem(ge,e),window.dispatchEvent(new CustomEvent(Ae,{detail:e})))}function kn(){const n=Me()==="dark"?"light":"dark";return Cn(n),n}function Sn(e){if(typeof window>"u")return()=>{};const n=l=>{const c=l.detail;(c==="dark"||c==="light")&&e(c)},r=l=>{if(l.key===ge){const c=l.newValue;e(c==="dark"||c==="light"?c:Me())}},s=window.matchMedia("(prefers-color-scheme: dark)"),i=l=>{localStorage.getItem(ge)||e(l.matches?"dark":"light")};return window.addEventListener(Ae,n),window.addEventListener("storage",r),s.addEventListener("change",i),()=>{window.removeEventListener(Ae,n),window.removeEventListener("storage",r),s.removeEventListener("change",i)}}function Tn(){const[e,n]=x(()=>Me());F(()=>Sn(i=>{n(i)}),[]);const r=k(()=>{const s=kn();return n(s),s},[]);return{theme:e,toggleTheme:r}}function Ln({theme:e,onToggle:n,className:r="",classPrefix:s="ss-dash"}){const i=e==="dark";return t("button",{type:"button",className:`${s==="ss-dbg"?"ss-dbg-theme-toggle":"ss-dash-theme-btn"} ${r}`,onClick:n,title:i?"Switch to light theme":"Switch to dark theme","aria-label":i?"Switch to light theme":"Switch to dark theme",children:i?t("svg",{width:"16",height:"16",viewBox:E.sun.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E.sun.elements.join("")}}):t("svg",{width:"16",height:"16",viewBox:E.moon.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E.moon.elements.join("")}})})}const En=B(()=>Promise.resolve().then(()=>tr)),An=B(()=>Promise.resolve().then(()=>nr)),Mn=B(()=>Promise.resolve().then(()=>rr)),Pn=B(()=>Promise.resolve().then(()=>sr)),On=B(()=>Promise.resolve().then(()=>ar)),In=B(()=>Promise.resolve().then(()=>hr)),Dn=B(()=>Promise.resolve().then(()=>fr)),Rn=B(()=>Promise.resolve().then(()=>br)),Bn=B(()=>Promise.resolve().then(()=>kr)),jn=B(()=>Promise.resolve().then(()=>Fr)),Fn=B(()=>Promise.resolve().then(()=>Hr));function Hn(e){const{defaultOpen:n=!1,dashboardPath:r,isOpen:s,onOpenChange:i,isLive:l=!1,...c}=e,[d,o]=x(n),a=s!==void 0?s:d,h=v=>{i?i(v):o(v)},[u,f]=x("queries"),{features:g}=$n(c),{theme:p,toggleTheme:_}=Tn(),b=g.customPanes||[];F(()=>{const v=w=>{w.key==="Escape"&&a&&h(!1)};return document.addEventListener("keydown",v),()=>document.removeEventListener("keydown",v)},[a]);const y=S(()=>[{id:"queries",label:"Queries",visible:!0},{id:"events",label:"Events",visible:!0},{id:"emails",label:"Emails",visible:!0},{id:"routes",label:"Routes",visible:!0},{id:"logs",label:"Logs",visible:!0},{id:"timeline",label:"Requests",visible:g.tracing},{id:"cache",label:"Cache",visible:g.cache},{id:"jobs",label:"Jobs",visible:g.queues},{id:"config",label:"Config",visible:!0},{id:"internals",label:"Internals",visible:!0}],[g]),m=S(()=>y.filter(v=>v.visible),[y]);F(()=>{const v=[...m.map(w=>w.id),...b.map(w=>w.id)];!v.includes(u)&&v.length>0&&f(v[0])},[m,b,u]);const N=k(()=>{h(!a)},[a]),C=k(()=>{const v={options:c},w=b.find(M=>M.id===u);if(w)return t(ee,{fallback:t("div",{className:"ss-dbg-empty",children:"Loading..."}),children:t(Fn,{pane:w,options:c})});const A={queries:t(En,{...v}),events:t(An,{...v}),emails:t(Mn,{...v}),routes:t(Pn,{...v,currentPath:typeof window<"u"?window.location.pathname:""}),logs:t(On,{...v}),timeline:t(In,{...v}),cache:t(Dn,{...v,dashboardPath:r}),jobs:t(Rn,{...v,dashboardPath:r}),config:t(Bn,{...v,dashboardPath:r}),internals:t(jn,{...v})};return t(ee,{fallback:t("div",{className:"ss-dbg-empty",children:"Loading..."}),children:A[u]||t("div",{className:"ss-dbg-empty",children:"Unknown tab"})})},[u,c,b]);return t(R,{children:[s===void 0&&t("button",{type:"button",className:`ss-dbg-btn ${a?"ss-dbg-active":""}`,onClick:N,title:"Toggle debug panel",id:"ss-dbg-wrench",children:t("svg",{width:"14",height:"14",viewBox:E.wrench.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E.wrench.elements.join("")}})}),t("div",{className:`ss-dbg-panel ${a?"ss-dbg-open":""}`,"data-ss-theme":p,id:"ss-dbg-panel",children:[t("div",{className:"ss-dbg-tabs",children:[t("div",{className:"ss-dbg-tabs-scroll",children:[m.map(v=>t("button",{type:"button",className:`ss-dbg-tab ${u===v.id?"ss-dbg-active":""}`,onClick:()=>f(v.id),children:[E[v.id]?t("svg",{className:"ss-dbg-tab-icon",viewBox:E[v.id].viewBox,dangerouslySetInnerHTML:{__html:E[v.id].elements.join("")}}):null,v.label]},v.id)),b.map(v=>t("button",{type:"button",className:`ss-dbg-tab ${u===v.id?"ss-dbg-active":""}`,onClick:()=>f(v.id),children:v.label},v.id))]}),t("div",{className:"ss-dbg-tabs-right",children:[t("span",{className:`ss-dbg-conn-mode ${l?"ss-dbg-conn-live":"ss-dbg-conn-polling"}`,title:l?"Connected via Transmit (SSE) — real-time updates":"Polling every 3s",children:l?"live":"polling"}),t(Ln,{theme:p,onToggle:_,classPrefix:"ss-dbg"}),r&&t("a",{href:r,target:"_blank",rel:"noopener noreferrer",className:"ss-dbg-dashboard-link",title:"Open dashboard",children:t("svg",{width:"14",height:"14",viewBox:E["external-link"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E["external-link"].elements.join("")}})}),t("button",{type:"button",className:"ss-dbg-close",onClick:()=>h(!1),title:"Close panel",children:"×"})]})]}),t("div",{className:"ss-dbg-content",children:a&&C()})]})]})}window.__ssDebugPanel={mount(e,n,r){Ze(t(Hn,{debugEndpoint:n.debugEndpoint,authToken:n.authToken,dashboardPath:n.dashboardPath||void 0,isOpen:!0,isLive:r}),e)},unmount(e){Ze(null,e)}};const Un=3e3,zn=100,Vn=500;function qn(e){if(!e&&e!==0)return"-";const n=Math.floor(e),r=Math.floor(n/86400),s=Math.floor(n%86400/3600),i=Math.floor(n%3600/60);return r>0?`${r}d ${s}h`:s>0?`${s}h ${i}m`:i>0?`${i}m ${n%60}s`:`${n}s`}function H(e){return e>=1e3?`${(e/1e3).toFixed(2)}s`:e>=1?`${e.toFixed(0)}ms`:`${e.toFixed(2)}ms`}function kt(e){return/([+-]\d{2}:?\d{2}|Z)\s*$/.test(e)?e:e+"Z"}function q(e){if(!e)return"-";const n=typeof e=="string"?new Date(kt(e)):new Date(e);return Number.isNaN(n.getTime())?"-":n.toLocaleTimeString("en-US",{hour12:!1,hour:"2-digit",minute:"2-digit",second:"2-digit"})+"."+String(n.getMilliseconds()).padStart(3,"0")}function j(e){if(!e)return"-";const n=typeof e=="string"?new Date(kt(e)).getTime():e,r=Math.floor((Date.now()-n)/1e3);return r<0?"just now":r<60?`${r}s ago`:r<3600?`${Math.floor(r/60)}m ago`:r<86400?`${Math.floor(r/3600)}h ago`:`${Math.floor(r/86400)}d ago`}function G(e){return e>Vn?"very-slow":e>zn?"slow":"normal"}function _e(e,n=100){if(e===null)return"null";if(e===void 0)return"-";if(typeof e=="string")return'"'+(e.length>40?e.slice(0,40)+"...":e)+'"';if(typeof e=="number"||typeof e=="boolean")return String(e);if(Array.isArray(e)){if(e.length===0)return"[]";const s="["+e.slice(0,3).map(i=>_e(i,30)).join(", ")+(e.length>3?", ..."+e.length+" items":"")+"]";return s.length>n?"["+e.length+" items]":s}if(typeof e=="object"){const r=Object.keys(e);if(r.length===0)return"{}";const s=[];for(let l=0;l<Math.min(r.length,4);l++)s.push(r[l]+": "+_e(e[r[l]],30));const i="{ "+s.join(", ")+(r.length>4?", ...+"+(r.length-4):"")+" }";return i.length>n?"{ "+r.slice(0,6).join(", ")+(r.length>6?", ...":"")+" }":i}return String(e)}function Wn(e){return e<0?"no expiry":e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}function Jn(e){return e<1024?`${e}B`:e<1024*1024?`${(e/1024).toFixed(1)}KB`:`${(e/(1024*1024)).toFixed(1)}MB`}function Kn(e,n){if(!n)return e;const r=n.toLowerCase();return e.filter(s=>s.sql.toLowerCase().includes(r)||s.model&&s.model.toLowerCase().includes(r)||s.method.toLowerCase().includes(r))}function Qn(e){const n={};for(const r of e)n[r.sql]=(n[r.sql]||0)+1;return n}function Gn(e,n){const r=e.filter(l=>l.duration>100).length,s=Object.values(n).filter(l=>l>1).length,i=e.length>0?e.reduce((l,c)=>l+c.duration,0)/e.length:0;return{slowCount:r,dupCount:s,avgDuration:i,totalCount:e.length}}const Yn={queries:"/queries",events:"/events",emails:"/emails",routes:"/routes",logs:"/logs",timeline:"/traces",cache:"/cache",jobs:"/jobs",config:"/config",internals:"/diagnostics"};function Xn(e){return Yn[e]||`/${e}`}class Zn{client;endpoint;refreshInterval;callbacks;timer=null;currentTab=null;fetchOnceCache={};abortController=null;constructor(n){this.client=new Ee({baseUrl:n.baseUrl,authToken:n.authToken}),this.endpoint=n.endpoint??"/admin/api/debug",this.refreshInterval=n.refreshInterval??Un,this.callbacks={onData:n.onData,onLoading:n.onLoading,onError:n.onError,onUnauthorized:n.onUnauthorized}}start(n){this.stop(),this.currentTab=n,this.callbacks.onLoading(!0),this.callbacks.onError(null),this.fetchData(),this.timer=setInterval(()=>this.fetchData(),this.refreshInterval)}stop(){this.timer&&(clearInterval(this.timer),this.timer=null),this.abortController?.abort(),this.abortController=null}switchTab(n){this.start(n)}refresh(){this.currentTab&&this.fetchData()}async fetchCustomPane(n,r=!1){if(r&&this.fetchOnceCache[n]!==void 0){this.callbacks.onData(this.fetchOnceCache[n]),this.callbacks.onLoading(!1);return}this.callbacks.onLoading(!0);try{const s=await this.client.fetch(n);this.callbacks.onData(s),this.callbacks.onError(null),r&&(this.fetchOnceCache[n]=s)}catch(s){if(s instanceof pe){this.callbacks.onUnauthorized(s);return}this.callbacks.onError(s instanceof Error?s:new Error(String(s)))}finally{this.callbacks.onLoading(!1)}}cacheForTab(n,r){this.fetchOnceCache[n]=r}clearCache(){this.fetchOnceCache={}}async fetchData(){const n=this.currentTab;if(!n)return;if(this.fetchOnceCache[n]!==void 0){this.callbacks.onData(this.fetchOnceCache[n]),this.callbacks.onLoading(!1);return}this.abortController?.abort();const r=new AbortController;this.abortController=r;try{const s=`${this.endpoint}${Xn(n)}`,i=await this.client.fetch(s,{signal:r.signal});if(r.signal.aborted)return;this.callbacks.onData(i),this.callbacks.onError(null),this.callbacks.onLoading(!1)}catch(s){if(s instanceof DOMException&&s.name==="AbortError"||r.signal.aborted)return;if(s instanceof pe){this.callbacks.onError(s),this.callbacks.onLoading(!1),this.stop(),this.callbacks.onUnauthorized(s);return}this.callbacks.onError(s instanceof Error?s:new Error(String(s))),this.callbacks.onLoading(!1)}}}function U(e,n={}){const{baseUrl:r="",debugEndpoint:s="/admin/api/debug",authToken:i}=n,[l,c]=x(null),[d,o]=x(!0),[a,h]=x(null),u=O(null);u.current||(u.current=new Zn({baseUrl:r,endpoint:s,authToken:i,onData:_=>c(_),onLoading:_=>o(_),onError:_=>h(_),onUnauthorized:_=>h(_)})),F(()=>{const _=u.current;return _.start(e),()=>_.stop()},[e]);const f=k(()=>{u.current?.refresh()},[]),g=k(()=>{c(null)},[]),p=k((_,b)=>{u.current?.cacheForTab(_,b)},[]);return{data:l,isLoading:d,error:a,refresh:f,clearData:g,cacheForTab:p}}const er="ss-col-resize",St="ss-resizing";function Tt(e){const n=Array.from(e.querySelectorAll("thead th"));if(n.length===0)return()=>{};const r=[];let s=!1;function i(){if(!s){s=!0;for(const l of n)l.style.width=l.offsetWidth+"px";e.style.tableLayout="fixed"}}for(const l of n){let c=function(o){o.preventDefault(),o.stopPropagation(),i();const a=o.clientX,h=l.offsetWidth;d.classList.add(St),d.setPointerCapture(o.pointerId);function u(g){const p=g.clientX-a,_=Math.max(30,h+p);l.style.width=_+"px"}function f(){d.classList.remove(St),d.removeEventListener("pointermove",u),d.removeEventListener("pointerup",f)}d.addEventListener("pointermove",u),d.addEventListener("pointerup",f)};if(!l.textContent?.trim())continue;const d=document.createElement("div");d.className=er,l.appendChild(d),d.addEventListener("pointerdown",c),r.push(()=>{d.removeEventListener("pointerdown",c),d.remove()})}return()=>{for(const l of r)l()}}function J(e=[]){const n=O(null),r=O(null);return F(()=>(n.current&&(r.current?.(),r.current=Tt(n.current)),()=>{r.current?.(),r.current=null}),e),k(i=>{r.current?.(),r.current=null,n.current=i,i&&(r.current=Tt(i))},[])}function Lt({options:e}){const{data:n,isLoading:r,error:s}=U("queries",e),[i,l]=x(""),[c,d]=x(null),o=S(()=>n?.queries||[],[n]),a=S(()=>Kn(o,i),[o,i]),h=S(()=>Qn(o),[o]),u=S(()=>Gn(o,h),[o,h]),f=k(p=>{d(_=>_===p?null:p)},[]),g=J([a]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading queries..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter queries...",value:i,onChange:p=>l(p.target.value)}),t("span",{className:"ss-dbg-summary",children:[a.length," queries",u.slowCount>0&&` | ${u.slowCount} slow`,u.dupCount>0&&` | ${u.dupCount} dup`,a.length>0&&` | avg ${H(u.avgDuration)}`]})]}),a.length===0?t("div",{className:"ss-dbg-empty",children:"No queries captured"}):t("table",{ref:g,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"70px"}}),t("col",{style:{width:"100px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"SQL"}),t("th",{children:"Duration"}),t("th",{children:"Method"}),t("th",{children:"Model"}),t("th",{children:"Time"})]})}),t("tbody",{children:a.map(p=>t("tr",{children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:p.id}),t("td",{children:[t("span",{className:`ss-dbg-sql ${c===p.id?"ss-dbg-expanded":""}`,onClick:()=>f(p.id),role:"button",tabIndex:0,onKeyDown:_=>_.key==="Enter"&&f(p.id),children:p.sql}),h[p.sql]>1&&t("span",{className:"ss-dbg-dup",children:[" x",h[p.sql]]}),p.inTransaction&&t("span",{className:"ss-dbg-dup",children:" TXN"})]}),t("td",{className:`ss-dbg-duration ${G(p.duration)==="very-slow"?"ss-dbg-very-slow":G(p.duration)==="slow"?"ss-dbg-slow":""}`,children:H(p.duration)}),t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${p.method.toLowerCase()}`,children:p.method})}),t("td",{className:"ss-dbg-c-muted",children:p.model||"-"}),t("td",{className:"ss-dbg-event-time",title:q(p.timestamp),children:j(p.timestamp)})]},p.id))})]})]})}const tr=Object.freeze(Object.defineProperty({__proto__:null,QueriesTab:Lt,default:Lt},Symbol.toStringTag,{value:"Module"}));function te({data:e,maxPreviewLength:n=100,className:r="",classPrefix:s="ss-dash",defaultExpanded:i=!1}){const[l,c]=x(i),d=S(()=>{if(typeof e=="string")try{return JSON.parse(e)}catch{return e}return e},[e]),o=S(()=>typeof d=="object"&&d!==null?_e(d,n):String(d??"-"),[d,n]),a=S(()=>typeof d=="object"&&d!==null?JSON.stringify(d,null,2):String(d),[d]),h=k(()=>{c(f=>!f)},[]),u=k(async()=>{try{await navigator.clipboard.writeText(a)}catch{}},[a]);return!e&&e!==0&&e!==!1?t("span",{className:`ss-dim ${s}-c-dim`,children:"-"}):t("div",{className:`${s}-data-cell ${r}`,children:[!l&&t("span",{className:`${s}-data-preview`,onClick:h,role:"button",tabIndex:0,onKeyDown:f=>f.key==="Enter"&&h(),children:o}),l&&t("div",{className:`${s}-data-full`,onClick:h,children:[t("button",{className:`${s}-copy-btn`,onClick:f=>{f.stopPropagation(),u()},title:"Copy to clipboard",type:"button",children:"Copy"}),t("pre",{children:a})]})]})}function Et({options:e}){const{data:n,isLoading:r,error:s}=U("events",e),[i,l]=x(""),c=S(()=>{const o=n?.events||[];if(!i)return o;const a=i.toLowerCase();return o.filter(h=>(h.event||"").toLowerCase().includes(a)||(h.data||"").toLowerCase().includes(a))},[n,i]),d=J([c]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading events..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter events...",value:i,onChange:o=>l(o.target.value)}),t("span",{className:"ss-dbg-summary",children:[c.length," events"]})]}),c.length===0?t("div",{className:"ss-dbg-empty",children:"No events captured"}):t("table",{ref:d,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"20%"}}),t("col",{}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"Event"}),t("th",{children:"Data"}),t("th",{children:"Time"})]})}),t("tbody",{children:c.map(o=>{const a=o.timestamp||o.created_at||o.createdAt;return t("tr",{children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:o.id}),t("td",{className:"ss-dbg-event-name",children:o.event}),t("td",{className:"ss-dbg-event-data",children:t(te,{data:o.data,maxPreviewLength:80,classPrefix:"ss-dbg"})}),t("td",{className:"ss-dbg-event-time",title:q(a),children:j(a)})]},o.id)})})]})]})}const nr=Object.freeze(Object.defineProperty({__proto__:null,EventsTab:Et,default:Et},Symbol.toStringTag,{value:"Module"}));function At({options:e}){const{data:n,isLoading:r,error:s}=U("emails",e),[i,l]=x(""),[c,d]=x(null),[o,a]=x(null),[h,u]=x(!1),f=S(()=>{const m=n?.emails||[];if(!i)return m;const N=i.toLowerCase();return m.filter(C=>(C.subject||"").toLowerCase().includes(N)||(C.to||"").toLowerCase().includes(N)||(C.from||"").toLowerCase().includes(N)||(C.mailer||"").toLowerCase().includes(N))},[n,i]),g=S(()=>f.find(m=>m.id===c),[f,c]),p=k(async m=>{if(d(m.id),a(m.html||null),!m.html&&m.id){u(!0);try{const N=e?.debugEndpoint||"/admin/api/debug",C={};e?.authToken&&(C.Authorization=`Bearer ${e.authToken}`);const v=await fetch(`${N}/emails/${m.id}/preview`,{headers:C,credentials:e?.authToken?"omit":"include"});v.ok&&a(await v.text())}catch{}finally{u(!1)}}},[e]),_=k(()=>{d(null),a(null),u(!1)},[]),b={sent:"ss-dbg-email-status-sent",sending:"ss-dbg-email-status-sending",queueing:"ss-dbg-email-status-queued",queued:"ss-dbg-email-status-queued",failed:"ss-dbg-email-status-failed"},y=J([f]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading emails..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):g?t("div",{className:"ss-dbg-email-preview",children:[t("div",{className:"ss-dbg-email-preview-header",children:[t("div",{className:"ss-dbg-email-preview-meta",children:[t("div",{children:[t("strong",{children:"Subject:"})," ",g.subject]}),t("div",{children:[t("strong",{children:"From:"})," ",g.from]}),t("div",{children:[t("strong",{children:"To:"})," ",g.to]}),g.cc&&t("div",{children:[t("strong",{children:"CC:"})," ",g.cc]})]}),t("button",{className:"ss-dbg-btn-clear",onClick:_,type:"button",children:"×"})]}),h?t("div",{className:"ss-dbg-empty",children:"Loading preview..."}):o?t("iframe",{className:"ss-dbg-email-iframe",srcDoc:o,title:"Email preview",sandbox:""}):t("div",{style:{padding:"12px",whiteSpace:"pre-wrap"},children:g.text||"No content"})]}):t("div",{children:[t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter emails...",value:i,onChange:m=>l(m.target.value)}),t("span",{className:"ss-dbg-summary",children:[f.length," emails"]})]}),f.length===0?t("div",{className:"ss-dbg-empty",children:"No emails captured"}):t("table",{ref:y,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"140px"}}),t("col",{style:{width:"140px"}}),t("col",{}),t("col",{style:{width:"70px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"40px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"From"}),t("th",{children:"To"}),t("th",{children:"Subject"}),t("th",{children:"Status"}),t("th",{children:"Mailer"}),t("th",{title:"Attachments",children:"📎"}),t("th",{children:"Time"})]})}),t("tbody",{children:f.map(m=>t("tr",{className:"ss-dbg-email-row",onClick:()=>p(m),children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:m.id}),t("td",{className:"ss-dbg-c-secondary",title:m.from,children:m.from}),t("td",{className:"ss-dbg-c-secondary",title:m.to,children:m.to}),t("td",{className:"ss-dbg-c-sql",children:m.subject}),t("td",{children:t("span",{className:`ss-dbg-email-status ${b[m.status]||""}`,children:m.status})}),t("td",{className:"ss-dbg-c-muted",children:m.mailer}),t("td",{className:"ss-dbg-c-dim",style:{textAlign:"center"},children:m.attachmentCount>0?m.attachmentCount:"-"}),t("td",{className:"ss-dbg-event-time",title:q(m.timestamp||m.created_at||m.createdAt),children:j(m.timestamp||m.created_at||m.createdAt)})]},m.id))})]})]})}const rr=Object.freeze(Object.defineProperty({__proto__:null,EmailsTab:At,default:At},Symbol.toStringTag,{value:"Module"}));function Mt({options:e,currentPath:n}){const{data:r,isLoading:s,error:i}=U("routes",e),[l,c]=x(""),d=S(()=>{const a=r?.routes||[];if(!l)return a;const h=l.toLowerCase();return a.filter(u=>u.pattern.toLowerCase().includes(h)||u.handler.toLowerCase().includes(h)||u.method.toLowerCase().includes(h)||u.name&&u.name.toLowerCase().includes(h))},[r,l]),o=J([d]);return s&&!r?t("div",{className:"ss-dbg-empty",children:"Loading routes..."}):i?t("div",{className:"ss-dbg-empty",children:["Error: ",i.message]}):t("div",{children:[t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter routes...",value:l,onChange:a=>c(a.target.value)}),t("span",{className:"ss-dbg-summary",children:[d.length," routes"]})]}),d.length===0?t("div",{className:"ss-dbg-empty",children:"No routes found"}):t("table",{ref:o,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"70px"}}),t("col",{style:{width:"25%"}}),t("col",{style:{width:"15%"}}),t("col",{}),t("col",{style:{width:"20%"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"Method"}),t("th",{children:"Pattern"}),t("th",{children:"Name"}),t("th",{children:"Handler"}),t("th",{children:"Middleware"})]})}),t("tbody",{children:d.map((a,h)=>{const u=n&&(a.pattern===n||new RegExp("^"+a.pattern.replace(/:[^/]+/g,"[^/]+")+"$").test(n));return t("tr",{className:u?"ss-dbg-current-route":"",children:[t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${a.method.toLowerCase()}`,children:a.method})}),t("td",{className:"ss-dbg-c-text",children:a.pattern}),t("td",{className:"ss-dbg-c-muted",children:a.name||"-"}),t("td",{className:"ss-dbg-c-sql",children:a.handler}),t("td",{className:"ss-dbg-c-dim",style:{fontSize:"10px"},children:a.middleware.length>0?a.middleware.join(", "):"-"})]},`${a.method}-${a.pattern}-${h}`)})})]})]})}const sr=Object.freeze(Object.defineProperty({__proto__:null,RoutesTab:Mt,default:Mt},Symbol.toStringTag,{value:"Module"})),lr=["all","error","warn","info","debug"];function Pe(e){return(e.levelName||e.level_name||(typeof e.level=="string"?e.level:"")||"info").toLowerCase()}function Oe(e){return e.msg||e.message||JSON.stringify(e)}function Pt(e){return e.createdAt||e.created_at||e.time||e.timestamp||0}function Ie(e){const n=e.data||{};return e.requestId||e.request_id||e["x-request-id"]||n.requestId||n.request_id||n["x-request-id"]||""}function Ot(e,n="ss-dbg-log-level"){switch(e){case"error":case"fatal":return`${n}-error`;case"warn":return`${n}-warn`;case"info":return`${n}-info`;case"debug":return`${n}-debug`;case"trace":return`${n}-trace`;default:return`${n}-info`}}function ir(e,n){return n==="all"?e:e.filter(r=>{const s=Pe(r);return n==="error"?s==="error"||s==="fatal":s===n})}const It=new Set(["level","time","pid","hostname","msg","message","v","name","levelName","level_name","timestamp","createdAt","created_at","requestId","request_id","x-request-id","id","data"]);function Dt(e){if(e.data){let r=null;if(typeof e.data=="string")try{r=JSON.parse(e.data)}catch{}else typeof e.data=="object"&&!Array.isArray(e.data)&&(r=e.data);if(r){const s={};for(const[i,l]of Object.entries(r))It.has(i)||(s[i]=l);if(Object.keys(s).length>0)return s}}const n={};for(const[r,s]of Object.entries(e))It.has(r)||(n[r]=s);return Object.keys(n).length>0?n:null}function Rt({options:e}){const{data:n,isLoading:r,error:s}=U("logs",e),[i,l]=x("all"),[c,d]=x(""),[o,a]=x(""),[h,u]=x(null),f=S(()=>{let p=Array.isArray(n)?n:n?.logs||n?.entries||[];if(p=ir(p,i),o){const _=o.toLowerCase();p=p.filter(b=>Ie(b).toLowerCase().includes(_))}if(c){const _=c.toLowerCase();p=p.filter(b=>Oe(b).toLowerCase().includes(_))}return p},[n,i,c,o]),g=k(p=>{a(_=>_===p?"":p)},[]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading logs..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t("div",{className:"ss-dbg-log-filters",children:[lr.map(p=>t("button",{type:"button",className:`ss-dbg-log-filter ${i===p?"ss-dbg-active":""}`,onClick:()=>l(p),children:p},p)),o&&t("button",{type:"button",className:"ss-dbg-log-filter ss-dbg-active",onClick:()=>a(""),children:["req: ",o.slice(0,8)," x"]}),t("span",{className:"ss-dbg-summary",style:{marginLeft:"auto"},children:[f.length," entries"]})]}),t("div",{className:"ss-dbg-search-bar",children:t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter log messages...",value:c,onChange:p=>d(p.target.value)})}),t("div",{style:{overflow:"auto",flex:1},children:f.length===0?t("div",{className:"ss-dbg-empty",children:"No log entries"}):f.slice(0,200).map((p,_)=>{const b=Pe(p),y=Oe(p),m=Pt(p),N=Ie(p),C=Dt(p);return t(xt.Fragment,{children:[t("div",{className:`ss-dbg-log-entry${C?" ss-dbg-log-entry-expandable":""}`,onClick:()=>C&&u(h===_?null:_),children:[t("span",{className:`ss-dbg-log-level ${Ot(b)}`,children:b.toUpperCase()}),t("span",{className:"ss-dbg-log-time",title:m?q(m):"",children:m?j(m):"-"}),N?t("span",{className:"ss-dbg-log-reqid",onClick:v=>{v.stopPropagation(),g(N)},role:"button",tabIndex:0,title:N,onKeyDown:v=>{v.key==="Enter"&&(v.stopPropagation(),g(N))},children:N.slice(0,8)}):t("span",{className:"ss-dbg-log-reqid-empty",children:"-"}),C?t("span",{className:`ss-dbg-log-expand-icon${h===_?" ss-dbg-log-expand-icon-open":""}`,children:"▶"}):t("span",{style:{width:14}}),t("span",{className:"ss-dbg-log-msg",children:y})]}),h===_&&C&&t("div",{className:"ss-dbg-log-detail",children:t(te,{data:C,classPrefix:"ss-dbg",defaultExpanded:!0})})]},_)})})]})}const ar=Object.freeze(Object.defineProperty({__proto__:null,LogsTab:Rt,default:Rt},Symbol.toStringTag,{value:"Module"}));function or(e){const{container:n,handle:r,topPane:s,bottomPane:i,storageKey:l,minHeight:c=60}=e;if(l){const o=localStorage.getItem(l);if(o){const a=parseFloat(o);a>0&&a<1&&(s.style.flex=`${a}`,i.style.flex=`${1-a}`)}}function d(o){o.preventDefault(),r.setPointerCapture(o.pointerId);const h=n.getBoundingClientRect().height,u=o.clientY,f=s.getBoundingClientRect().height;function g(_){const b=_.clientY-u;let y=f+b;const m=h-c-r.offsetHeight;y=Math.max(c,Math.min(y,m));const N=y/(h-r.offsetHeight);s.style.flex=`${N}`,i.style.flex=`${1-N}`}function p(){if(r.removeEventListener("pointermove",g),r.removeEventListener("pointerup",p),l){const _=n.getBoundingClientRect().height-r.offsetHeight;if(_>0){const b=s.getBoundingClientRect().height/_;localStorage.setItem(l,String(b))}}}r.addEventListener("pointermove",g),r.addEventListener("pointerup",p)}return r.addEventListener("pointerdown",d),()=>{r.removeEventListener("pointerdown",d)}}function Bt(e="",n){const r=O(null);return k(()=>(r.current||(r.current=new Ee({baseUrl:e,authToken:n})),r.current),[e,n])}function cr({logs:e,classPrefix:n="ss-dash"}){const[r,s]=x(null);return e.length===0?null:t("div",{children:[t("div",{className:`${n}-related-logs-title`,children:["Related Logs",t("span",{className:`${n}-related-logs-count`,children:["(",e.length,")"]})]}),t("div",{className:`${n}-log-entries`,style:{overflow:"auto"},children:e.map((i,l)=>{const c=Pe(i),d=Oe(i),o=Ie(i),a=Pt(i),h=Dt(i);return t(xt.Fragment,{children:[t("div",{className:`${n}-log-entry${h?` ${n}-log-entry-expandable`:""}`,onClick:()=>h&&s(r===l?null:l),children:[t("span",{className:`${n}-log-level ${Ot(c,`${n}-log-level`)}`,children:c.toUpperCase()}),t("span",{className:`${n}-log-time`,title:a?q(a):"",children:a?j(a):"-"}),o?t("span",{className:`${n}-log-reqid`,title:o,children:o.slice(0,8)}):t("span",{className:`${n}-log-reqid-empty`,children:"--"}),h?t("span",{className:`${n}-log-expand-icon${r===l?` ${n}-log-expand-icon-open`:""}`,children:"▶"}):t("span",{style:{width:14}}),t("span",{className:`${n}-log-msg`,children:d})]}),r===l&&h&&t("div",{className:`${n}-log-detail`,children:t(te,{data:h,classPrefix:n,defaultExpanded:!0})})]},i.id||l)})})]})}function dr({children:e,classPrefix:n="ss-dbg",storageKey:r}){const s=O(null),i=O(null),l=O(null),c=O(null);return F(()=>{if(s.current&&i.current&&l.current&&c.current)return or({container:s.current,handle:i.current,topPane:l.current,bottomPane:c.current,storageKey:r})},[r]),t("div",{ref:s,className:`${n}-split-container`,children:[t("div",{ref:l,className:`${n}-split-top`,children:e[0]}),t("div",{ref:i,className:`${n}-split-handle`}),t("div",{ref:c,className:`${n}-split-bottom`,children:e[1]})]})}const jt={request:"#1e3a5f",middleware:"rgba(30, 58, 95, 0.7)",db:"#6d28d9",view:"#0e7490",mail:"#059669",event:"#b45309",custom:"#525252"},ur=[{label:"Request",color:"#1e3a5f"},{label:"Middleware",color:"rgba(30, 58, 95, 0.7)"},{label:"Database",color:"#6d28d9"},{label:"View",color:"#0e7490"},{label:"Mail",color:"#059669"},{label:"Event",color:"#b45309"}];function Ft({options:e}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e||{},{data:i,isLoading:l,error:c}=U("timeline",e),[d,o]=x(""),[a,h]=x(null),[u,f]=x(null),[g,p]=x(!1),[_,b]=x(null),y=S(()=>{const w=i?.traces||[];if(!d)return w;const A=d.toLowerCase();return w.filter(M=>M.url.toLowerCase().includes(A)||M.method.toLowerCase().includes(A)||String(M.statusCode).includes(A))},[i,d]),m=Bt(n,s);F(()=>{if(a===null){f(null),b(null);return}let w=!1;return p(!0),b(null),m().get(`${r}/traces/${a}`).then(M=>{w||(f(M),p(!1))}).catch(M=>{w||(b(M instanceof Error?M.message:"Failed to load trace"),p(!1))}),()=>{w=!0}},[a,r,m]);const N=k(w=>{h(A=>A===w?null:w)},[]),C=k(w=>w>=500?"ss-dbg-status-5xx":w>=400?"ss-dbg-status-4xx":w>=300?"ss-dbg-status-3xx":"ss-dbg-status-2xx",[]),v=J([y]);if(l&&!i)return t("div",{className:"ss-dbg-empty",children:"Loading traces..."});if(c)return t("div",{className:"ss-dbg-empty",children:["Error: ",c.message]});if(a!==null){if(g)return t("div",{className:"ss-dbg-empty",children:"Loading trace detail..."});if(_)return t("div",{children:[t("div",{className:"ss-dbg-tl-detail-header",children:t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:"← Back"})}),t("div",{className:"ss-dbg-empty",children:["Error: ",_]})]});if(!u)return t("div",{className:"ss-dbg-empty",children:"Loading trace detail..."});const w=u.spans||[],A=u.warnings||[],M=u.logs||[],D=M.length>0,W=t("div",{children:[t("div",{className:"ss-dbg-tl-legend",children:ur.map(P=>t("div",{className:"ss-dbg-tl-legend-item",children:[t("div",{className:"ss-dbg-tl-legend-dot",style:{background:P.color}}),t("span",{children:P.label})]},P.label))}),t("div",{style:{padding:"8px 12px",overflow:"auto"},children:w.length===0?t("div",{className:"ss-dbg-empty",children:"No spans captured for this request"}):w.map(P=>{const ve=u.totalDuration||1,Ur=P.startOffset/ve*100,zr=Math.max(P.duration/ve*100,.5);return t("div",{className:"ss-dbg-tl-row",children:[t("div",{className:"ss-dbg-tl-label",title:P.label,children:P.label}),t("div",{className:"ss-dbg-tl-track",children:t("div",{className:`ss-dbg-tl-bar ss-dbg-tl-bar-${P.category}`,style:{left:`${Ur}%`,width:`${zr}%`,background:jt[P.category]||jt.custom},title:`${P.label}: ${H(P.duration)}`})}),t("span",{className:"ss-dbg-tl-dur",children:H(P.duration)})]},P.id)})}),A.length>0&&t("div",{className:"ss-dbg-tl-warnings",children:[t("div",{className:"ss-dbg-tl-warnings-title",children:"Warnings"}),A.map((P,ve)=>t("div",{className:"ss-dbg-tl-warning",children:P},ve))]})]});return t("div",{className:"ss-dbg-tl-detail-wrapper",children:[t("div",{className:"ss-dbg-tl-detail-header",children:[t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:"← Back"}),t("span",{className:`ss-dbg-method ss-dbg-method-${u.method.toLowerCase()}`,children:u.method}),t("span",{className:"ss-dbg-tl-detail-url",children:u.url}),t("span",{className:`ss-dbg-status ${C(u.statusCode)}`,children:u.statusCode}),t("span",{className:"ss-dbg-tl-meta",children:[H(u.totalDuration)," · ",u.spanCount," spans"]})]}),D?t(dr,{classPrefix:"ss-dbg",storageKey:"ss-dbg-timeline-split",children:[W,t(cr,{logs:M,classPrefix:"ss-dbg"})]}):W]})}return t("div",{children:[t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter traces...",value:d,onChange:w=>o(w.target.value)}),t("span",{className:"ss-dbg-summary",children:[y.length," traces"]})]}),y.length===0?t("div",{className:"ss-dbg-empty",children:"No traces captured. Enable tracing in config."}):t("table",{ref:v,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"70px"}}),t("col",{}),t("col",{style:{width:"60px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"50px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"Method"}),t("th",{children:"URL"}),t("th",{children:"Status"}),t("th",{children:"Duration"}),t("th",{children:"Spans"}),t("th",{children:"Time"})]})}),t("tbody",{children:y.map(w=>t("tr",{className:"ss-dbg-email-row",onClick:()=>N(w.id),children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:w.id}),t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${w.method.toLowerCase()}`,children:w.method})}),t("td",{title:w.url,children:w.url}),t("td",{children:t("span",{className:`ss-dbg-status ${C(w.statusCode)}`,children:w.statusCode})}),t("td",{className:`ss-dbg-duration ${G(w.totalDuration)==="very-slow"?"ss-dbg-very-slow":G(w.totalDuration)==="slow"?"ss-dbg-slow":""}`,children:H(w.totalDuration)}),t("td",{className:"ss-dbg-c-muted",style:{textAlign:"center"},children:w.spanCount}),t("td",{className:"ss-dbg-event-time",title:q(w.timestamp),children:j(w.timestamp)})]},w.id))})]})]})}const hr=Object.freeze(Object.defineProperty({__proto__:null,TimelineTab:Ft,default:Ft},Symbol.toStringTag,{value:"Module"}));function De(e,n){const r=S(()=>e?e.replace(/\/+$/,"")+"/api":null,[e]),s=S(()=>r?{...n,debugEndpoint:r}:n,[r,n]);return{dashApiBase:r,resolvedOptions:s}}function Ht({options:e,dashboardPath:n}){const{dashApiBase:r,resolvedOptions:s}=De(n,e),{data:i,isLoading:l,error:c}=U("cache",s),[d,o]=x(""),[a,h]=x(null),[u,f]=x(null),g=S(()=>{const m=i?.keys||[];if(!d)return m;const N=d.toLowerCase();return m.filter(C=>C.key.toLowerCase().includes(N))},[i,d]),p=k(async m=>{if(a===m){h(null),f(null);return}h(m);try{const{baseUrl:N="",authToken:C}=e||{},v=r||e?.debugEndpoint||"/admin/api/debug",w=`${N}${v}/cache/${encodeURIComponent(m)}`,A={Accept:"application/json"};C&&(A.Authorization=`Bearer ${C}`);const D=await(await fetch(w,{headers:A,credentials:C?"omit":"same-origin"})).json();f(D)}catch{f({error:"Failed to fetch key value"})}},[a,e,r]),_=J([g]);if(l&&!i)return t("div",{className:"ss-dbg-empty",children:"Loading cache data..."});if(c)return t("div",{className:"ss-dbg-empty",children:["Error: ",c.message]});if(!i)return t("div",{className:"ss-dbg-empty",children:"Cache inspector not available"});const y=i.stats||i;return t("div",{children:[t("div",{className:"ss-dbg-cache-stats",children:[t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Hit Rate:"}),t("span",{className:"ss-dbg-cache-stat-value",children:[y.hitRate!==null&&y.hitRate!==void 0?y.hitRate.toFixed(1):"0","%"]})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Hits:"}),t("span",{className:"ss-dbg-cache-stat-value",children:y.totalHits??0})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Misses:"}),t("span",{className:"ss-dbg-cache-stat-value",children:y.totalMisses??0})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Keys:"}),t("span",{className:"ss-dbg-cache-stat-value",children:y.keyCount??"-"})]})]}),t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:"Filter keys...",value:d,onChange:m=>o(m.target.value)}),t("span",{className:"ss-dbg-summary",children:[g.length," keys"]})]}),a&&!!u&&t("div",{className:"ss-dbg-cache-detail",children:[t("strong",{children:a}),t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:["←"," Back"]}),t(te,{data:u,classPrefix:"ss-dbg"})]}),g.length===0?t("div",{className:"ss-dbg-empty",children:"No cache keys found"}):t("table",{ref:_,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"Key"}),t("th",{children:"Type"}),t("th",{children:"TTL"}),t("th",{children:"Size"})]})}),t("tbody",{children:g.map(m=>t("tr",{className:"ss-dbg-email-row",onClick:()=>p(m.key),children:[t("td",{className:"ss-dbg-c-sql",children:m.key}),t("td",{className:"ss-dbg-c-muted",children:m.type}),t("td",{className:"ss-dbg-c-muted",children:m.ttl>0?Wn(m.ttl):"-"}),t("td",{className:"ss-dbg-c-dim",children:m.size>0?Jn(m.size):"-"})]},m.key))})]})]})}const fr=Object.freeze(Object.defineProperty({__proto__:null,CacheTab:Ht,default:Ht},Symbol.toStringTag,{value:"Module"})),pr=["all","active","waiting","delayed","completed","failed"];function gr(e,n="ss-dbg-job-status"){switch(e){case"completed":case"failed":case"active":case"waiting":case"delayed":return`${n}-${e}`;default:return"ss-dbg-badge-muted"}}function _r(e){if(!e)return[];if(Array.isArray(e))return e;const n=e;return n.jobs||n.data||[]}function mr(e){if(!e||Array.isArray(e))return null;const n=e;return n.stats||n.overview||null}function Ut({options:e,dashboardPath:n}){const{dashApiBase:r,resolvedOptions:s}=De(n,e),{data:i,isLoading:l,error:c}=U("jobs",s),[d,o]=x("all"),[a,h]=x(null),u=S(()=>{const _=_r(i);return d==="all"?_:_.filter(b=>b.status===d)},[i,d]),f=k(async _=>{h(_);try{const{baseUrl:b="",authToken:y}=e||{},m=r||e?.debugEndpoint||"/admin/api/debug",N=`${b}${m}/jobs/${_}/retry`,C={Accept:"application/json"};y&&(C.Authorization=`Bearer ${y}`),await fetch(N,{method:"POST",headers:C,credentials:y?"omit":"same-origin"})}catch{}h(null)},[e,r]),g=J([u]);if(!r)return t("div",{className:"ss-dbg-empty",children:"Queue inspector not available (no dashboard configured)"});if(l&&!i)return t("div",{className:"ss-dbg-empty",children:"Loading jobs..."});if(c)return t("div",{className:"ss-dbg-empty",children:["Error: ",c.message]});if(!i)return t("div",{className:"ss-dbg-empty",children:"Queue inspector not available"});const p=mr(i);return t("div",{children:[t("div",{className:"ss-dbg-job-stats-area",children:[t("div",{className:"ss-dbg-job-stats",children:[t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Active:"}),t("span",{className:"ss-dbg-job-stat-value",children:p?.active??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Waiting:"}),t("span",{className:"ss-dbg-job-stat-value",children:p?.waiting??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Delayed:"}),t("span",{className:"ss-dbg-job-stat-value",children:p?.delayed??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Completed:"}),t("span",{className:"ss-dbg-job-stat-value",children:p?.completed??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Failed:"}),t("span",{className:"ss-dbg-job-stat-value ss-dbg-c-red",children:p?.failed??0})]})]}),t("div",{className:"ss-dbg-log-filters",children:pr.map(_=>t("button",{type:"button",className:`ss-dbg-job-filter ${d===_?"ss-dbg-active":""}`,onClick:()=>o(_),children:_},_))})]}),u.length===0?t("div",{className:"ss-dbg-empty",children:"No jobs found"}):t("table",{ref:g,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"15%"}}),t("col",{style:{width:"80px"}}),t("col",{}),t("col",{style:{width:"50px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"60px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"ID"}),t("th",{children:"Name"}),t("th",{children:"Status"}),t("th",{children:"Payload"}),t("th",{children:"Tries"}),t("th",{children:"Duration"}),t("th",{children:"Time"}),t("th",{})]})}),t("tbody",{children:u.map(_=>{const b=_;return t("tr",{children:[t("td",{className:"ss-dbg-c-dim",children:_.id}),t("td",{className:"ss-dbg-c-sql",title:_.name,children:_.name}),t("td",{children:t("span",{className:`ss-dbg-badge ${gr(_.status)}`,children:_.status})}),t("td",{children:t(te,{data:_.payload||_.data,maxPreviewLength:60,classPrefix:"ss-dbg"})}),t("td",{className:"ss-dbg-c-muted",style:{textAlign:"center"},children:_.attempts||b.attemptsMade||0}),t("td",{className:"ss-dbg-duration",children:_.duration!==null?H(_.duration):"-"}),t("td",{className:"ss-dbg-event-time",title:q(_.timestamp||_.createdAt||b.processedAt||b.created_at),children:j(_.timestamp||_.createdAt||b.processedAt||b.created_at)}),t("td",{children:_.status==="failed"&&t("button",{type:"button",className:"ss-dbg-retry-btn",onClick:()=>f(_.id),disabled:a===_.id,children:a===_.id?"...":"Retry"})})]},_.id)})})]})]})}const br=Object.freeze(Object.defineProperty({__proto__:null,JobsTab:Ut,default:Ut},Symbol.toStringTag,{value:"Module"}));function I(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)&&e.__redacted===!0}function Re(e,n=""){if(typeof e!="object"||e===null||e===void 0)return[{path:n,value:e}];if(Array.isArray(e)||I(e))return[{path:n,value:e}];const r=[];for(const s of Object.keys(e)){const i=n?`${n}.${s}`:s,l=e[s];typeof l=="object"&&l!==null&&!Array.isArray(l)&&!I(l)?r.push(...Re(l,i)):r.push({path:i,value:l})}return r}function Be(e){return e==null?{text:"null",color:"var(--ss-dim)"}:typeof e=="boolean"?{text:String(e),color:e?"var(--ss-green-fg)":"var(--ss-red-fg)"}:typeof e=="number"?{text:String(e),color:"var(--ss-amber-fg)"}:Array.isArray(e)?{text:`[${e.map(r=>r==null?"null":typeof r=="object"?JSON.stringify(r):String(r)).join(", ")}]`,color:"var(--ss-purple-fg)"}:typeof e=="object"?{text:JSON.stringify(e),color:"var(--ss-dim)"}:{text:String(e)}}function zt(e){if(e==null||typeof e!="object"||Array.isArray(e)||I(e))return 1;let n=0;for(const r of Object.keys(e))n+=zt(e[r]);return n}function vr(e){if(e==null||typeof e!="object"||Array.isArray(e)||I(e))return[];const n=[];for(const r of Object.keys(e)){const s=e[r];s!==null&&typeof s=="object"&&!Array.isArray(s)&&!I(s)&&n.push(r)}return n}function me(e,n,r){n&&navigator.clipboard.writeText(e).then(()=>{const s=n.textContent;n.textContent="✓",n.classList.add(`${r}-copy-row-ok`),setTimeout(()=>{n.textContent=s,n.classList.remove(`${r}-copy-row-ok`)},1200)}).catch(()=>{})}function be({redacted:e,p:n}){const[r,s]=x(!1);return t("span",{className:`${n}-config-redacted`,style:{display:"inline-flex",alignItems:"center",gap:"4px"},children:[t("span",{children:r?e.value:e.display}),t("button",{type:"button",className:`${n}-btn`,title:r?"Hide":"Reveal",style:{padding:"0 4px",fontSize:"0.85em",lineHeight:1,minWidth:"auto"},onClick:i=>{i.stopPropagation(),s(l=>!l)},children:r?t("svg",{width:"14",height:"14",viewBox:E["eye-off"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E["eye-off"].elements.join("")}}):t("svg",{width:"14",height:"14",viewBox:E.eye.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E.eye.elements.join("")}})})]})}function yr({env:e,search:n,p:r}){const s=O(new Map),i=n.toLowerCase(),l=Object.entries(e).filter(([c,d])=>{if(!i)return!0;const o=I(d)?d.display:d==null?"":String(d);return c.toLowerCase().includes(i)||o.toLowerCase().includes(i)});return t("div",{className:`${r}-config-table-wrap`,children:t("table",{className:`${r}-table ${r}-config-env-table`,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Variable"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:[l.map(([c,d])=>{const o=I(d),a=o?d.display:d==null?"null":String(d),h=`${c}=${a}`;return t("tr",{children:[t("td",{className:`${r}-env-key`,children:t("span",{className:`${r}-config-key`,children:c})}),t("td",{className:`${r}-env-val`,children:o?t(be,{redacted:d,p:r}):t("span",{className:`${r}-config-val`,children:a})}),t("td",{children:!o&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:u=>{s.current.set(c,u)},onClick:u=>{u.stopPropagation(),me(h,s.current.get(c)??null,r)},children:"⎘"})})]},c)}),l.length===0&&t("tr",{children:t("td",{colSpan:3,style:{textAlign:"center",color:"var(--ss-dim)"},children:"No matching variables"})})]})]})})}function wr({source:e,search:n,p:r}){const s=O(new Map),i=n.toLowerCase(),l=Re(e,""),c=l.filter(d=>{const o=I(d.value)?d.value.display:d.value===null||d.value===void 0?"":String(d.value);return d.path.toLowerCase().includes(i)||o.toLowerCase().includes(i)});return t("div",{className:`${r}-config-table-wrap`,children:[t("table",{className:`${r}-table`,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Path"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:[c.map(d=>{const o=I(d.value),a=o?null:Be(d.value),h=o?d.value.display:a.text,u=`${d.path}: ${h}`;return t("tr",{children:[t("td",{children:t("span",{className:`${r}-config-key`,style:{whiteSpace:"nowrap"},children:d.path})}),t("td",{children:o?t(be,{redacted:d.value,p:r}):t("span",{className:`${r}-config-val`,style:{wordBreak:"break-all",color:a.color},children:a.text})}),t("td",{children:!o&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:f=>{s.current.set(d.path,f)},onClick:f=>{f.stopPropagation(),me(u,s.current.get(d.path)??null,r)},children:"⎘"})})]},d.path)}),c.length===0&&t("tr",{children:t("td",{colSpan:3,style:{textAlign:"center",color:"var(--ss-dim)"},children:"No matching entries"})})]})]}),t("div",{style:{padding:"4px 16px",fontSize:"10px",color:"var(--ss-muted)"},children:[c.length," of ",l.length," entries"]})]})}function Nr({obj:e,prefix:n,p:r}){const s=O(new Map),i=Re(e,n);return t("table",{className:`${r}-table ${r}-config-inner-table`,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"35%"},children:"Key"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:i.map(l=>{const c=l.path.indexOf(n+".")===0?l.path.slice(n.length+1):l.path,d=I(l.value),o=d?null:Be(l.value),a=d?l.value.display:o.text,h=`${l.path}: ${a}`;return t("tr",{children:[t("td",{title:c,children:t("span",{className:`${r}-config-key`,children:c})}),t("td",{title:a,children:d?t(be,{redacted:l.value,p:r}):t("span",{className:`${r}-config-val`,style:{color:o.color},children:o.text})}),t("td",{children:!d&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:u=>{s.current.set(l.path,u)},onClick:u=>{u.stopPropagation(),me(h,s.current.get(l.path)??null,r)},children:"⎘"})})]},l.path)})})]})}function xr({value:e,p:n}){if(e==null)return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-dim)"},children:"null"});if(I(e))return t(be,{redacted:e,p:n});if(typeof e=="boolean")return t("span",{className:`${n}-config-val`,style:{color:e?"var(--ss-green-fg)":"var(--ss-red-fg)"},children:String(e)});if(typeof e=="number")return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-amber-fg)"},children:String(e)});if(Array.isArray(e)){const r=e.map(s=>s==null?"null":typeof s=="object"?JSON.stringify(s):String(s));return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-purple-fg)"},children:["[",r.join(", "),"]"]})}return typeof e=="object"?t("span",{className:`${n}-config-val`,style:{color:"var(--ss-dim)"},children:JSON.stringify(e)}):t("span",{className:`${n}-config-val`,children:String(e)})}function $r({obj:e,expandedPaths:n,onToggle:r,p:s}){if(e==null||typeof e!="object"||Array.isArray(e)||I(e))return null;const i=Object.keys(e),l=O(new Map);return t("div",{className:`${s}-config-sections`,children:i.map(c=>{const d=e[c],o=d!==null&&typeof d=="object"&&!Array.isArray(d)&&!I(d),a=n.has(c),h=I(d);return t("div",{className:`${s}-config-section`,children:[t("div",{className:`${s}-config-section-header${o?"":` ${s}-config-leaf`}`,onClick:o?()=>r(c):void 0,style:{cursor:o?"pointer":"default"},children:[o?t("span",{className:`${s}-config-toggle`,children:a?"▼":"▶"}):t("span",{className:`${s}-config-toggle`,style:{visibility:"hidden"},children:"•"}),t("span",{className:`${s}-config-key`,children:c}),o?t("span",{className:`${s}-config-count`,children:[zt(d)," entries"]}):t(R,{children:[t("span",{className:`${s}-config-val`,style:{marginLeft:"8px"},children:t(xr,{value:d,p:s})}),!h&&t("button",{type:"button",className:`${s}-copy-row-btn`,style:{marginLeft:"4px"},title:"Copy",ref:u=>{l.current.set(c,u)},onClick:u=>{u.stopPropagation();const f=Be(d);me(`${c}: ${f.text}`,l.current.get(c)??null,s)},children:"⎘"})]})]}),o&&a&&t("div",{className:`${s}-config-section-body`,children:t(Nr,{obj:d,prefix:c,p:s})})]},c)})})}function Cr({data:e,isLoading:n,classPrefix:r}){const s=r,[i,l]=x(""),[c,d]=x(""),[o,a]=x("app"),[h,u]=x(new Set),[f,g]=x("Copy JSON");F(()=>{const N=setTimeout(()=>d(i),200);return()=>clearTimeout(N)},[i]);const p=e,_=k(N=>{u(C=>{const v=new Set(C);return v.has(N)?v.delete(N):v.add(N),v})},[]),b=k(()=>{if(!p)return;const N=o==="app"?p.app:p.env;if(!N)return;const C=vr(N);u(new Set(C))},[p,o]),y=k(()=>{u(new Set)},[]),m=k(async()=>{if(p)try{const N=o==="app"?p.app:p.env;await navigator.clipboard.writeText(JSON.stringify(N,null,2)),g("Copied!"),setTimeout(()=>g("Copy JSON"),1500)}catch{}},[p,o]);return t("div",{children:[t("div",{className:`${s}-config-toolbar`,style:{display:"flex",alignItems:"center",gap:"8px",padding:"8px 12px"},children:[t("button",{type:"button",className:`${s}-config-tab${o==="app"?` ${s}-active`:""}`,onClick:()=>a("app"),children:"App Config"}),t("button",{type:"button",className:`${s}-config-tab${o==="env"?` ${s}-active`:""}`,onClick:()=>a("env"),children:"Env"}),t("div",{style:{position:"relative",flex:1},children:[t("input",{type:"text",className:`${s}-search`,placeholder:"Search keys and values...",value:i,onChange:N=>l(N.target.value),style:{width:"100%"}}),i&&t("button",{type:"button",onClick:()=>l(""),style:{position:"absolute",right:"6px",top:"50%",transform:"translateY(-50%)",background:"none",border:"none",cursor:"pointer",fontSize:"14px",color:"var(--ss-dim)",padding:"0 2px",lineHeight:1},children:"×"})]}),o==="app"&&!c&&t(R,{children:[t("button",{type:"button",className:`${s}-btn`,onClick:b,children:"Expand All"}),t("button",{type:"button",className:`${s}-btn`,onClick:y,children:"Collapse All"})]}),t("button",{type:"button",className:`${s}-btn`,onClick:m,children:f})]}),n&&!e?t("div",{className:`${s}-empty`,children:"Loading config..."}):p?o==="env"?t(yr,{env:p.env??{},search:c,p:s}):c?t(wr,{source:p.app??{},search:c,p:s}):t("div",{className:`${s}-config-table-wrap`,children:t($r,{obj:p.app,expandedPaths:h,onToggle:_,p:s})}):t("div",{className:`${s}-empty`,children:"Config not available"})]})}function Vt({options:e,dashboardPath:n}){const{resolvedOptions:r}=De(n,e),{data:s,isLoading:i,error:l}=U("config",r);return l?t("div",{className:"ss-dbg-empty",children:["Error: ",l.message]}):t(Cr,{data:s,isLoading:i,classPrefix:"ss-dbg"})}const kr=Object.freeze(Object.defineProperty({__proto__:null,ConfigTab:Vt,default:Vt},Symbol.toStringTag,{value:"Module"})),Sr=["password","secret","token","key","credential","auth"];function qt(e){const n=e.toLowerCase();return Sr.some(r=>n.includes(r))}function Wt(e){if(e==null)return"-";if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return String(e);if(Array.isArray(e))return e.join(", ")||"-";try{return JSON.stringify(e)}catch{return String(e)}}const Tr={collectionInterval:"Stats Collection",dashboardBroadcast:"Dashboard Broadcast",debugBroadcast:"Debug Broadcast",persistFlush:"Persist Flush",retentionCleanup:"Retention Cleanup"};function Lr(e){return Tr[e]||e}const Er={prometheus:"Prometheus",pinoHook:"Pino Log Hook",edgePlugin:"Edge Plugin",cacheInspector:"Cache Inspector",queueInspector:"Queue Inspector"};function Ar(e){return Er[e]||e}const Mr=["healthy","active","connected","available","ready"],Pr=["errored","unavailable"];function Or(e){return Mr.includes(e)?"ok":Pr.includes(e)?"err":""}function ne({status:e,prefix:n}){const r=Or(e);let s=`${n}-dot`;return r==="ok"?s+=` ${n}-dot-ok`:r==="err"&&(s+=` ${n}-dot-err`),t("span",{className:s})}const Jt=()=>t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:E.eye.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E.eye.elements.join("")}}),Kt=()=>t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:E["eye-off"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:E["eye-off"].elements.join("")}});function Ir({value:e}){const[n,r]=x(!1);return t("span",{children:[n?e:"••••••••"," ",t("button",{type:"button",onClick:()=>r(s=>!s),style:{background:"none",border:"1px solid var(--ss-border)",borderRadius:3,padding:"0 4px",fontSize:"10px",color:"var(--ss-dim)",cursor:"pointer",verticalAlign:"middle"},children:n?t(Kt,{}):t(Jt,{})})]})}function Dr({current:e,max:n,prefix:r}){const s=n>0?Math.min(100,Math.round(e/n*100)):0,i=s>=100;return t("div",{className:`${r}-bar`,children:[t("div",{className:`${r}-bar-track`,children:t("div",{className:`${r}-bar-fill${i?` ${r}-bar-fill-warn`:""}`,style:{width:`${s}%`}})}),t("span",{className:`${r}-bar-pct${i?` ${r}-bar-pct-warn`:""}`,children:[s,"%"]})]})}function Rr({config:e,prefix:n}){const r=Object.entries(e);return r.length===0?t("span",{className:`${n}-c-dim`,children:"-"}):t("span",{className:`${n}-c-muted`,children:r.map(([s,i],l)=>t("span",{children:[l>0&&", ",t("span",{className:`${n}-c-dim`,children:s}),"=",qt(s)&&typeof i=="string"?t(Ir,{value:i}):t("span",{children:Wt(i)})]},s))})}function re({label:e,value:n,prefix:r}){return t("div",{className:`${r}-info-card`,children:[t("span",{className:`${r}-info-card-label`,children:e}),t("span",{className:`${r}-info-card-value`,children:n})]})}function Br({data:e,tableClassName:n,classPrefix:r}){const s=r||"ss-dash",[i,l]=x(new Set),c=k(o=>{l(a=>{const h=new Set(a);return h.has(o)?h.delete(o):h.add(o),h})},[]),d=k((o,a)=>{if(a==null)return t("span",{className:`${s}-c-dim`,children:"null"});if(typeof a=="boolean")return t("span",{className:a?`${s}-c-green`:`${s}-c-red`,children:String(a)});if(Array.isArray(a))return t("span",{children:a.join(", ")||"-"});const h=Wt(a);if(qt(o)){const u=i.has(o);return t("span",{children:[u?h:"••••••••"," ",t("button",{type:"button",onClick:()=>c(o),style:{background:"none",border:"1px solid var(--ss-border)",borderRadius:3,padding:"0 4px",fontSize:"10px",color:"var(--ss-dim)",cursor:"pointer",verticalAlign:"middle"},children:u?t(Kt,{}):t(Jt,{})})]})}return t("span",{children:h})},[i,c,s]);return t("div",{children:[t("h3",{className:`${s}-internals-title`,children:"Package Info"}),t("div",{className:`${s}-info-cards`,children:[t(re,{label:"Version",value:e.package.version||"-",prefix:s}),t(re,{label:"Node.js",value:e.package.nodeVersion||"-",prefix:s}),t(re,{label:"AdonisJS",value:e.package.adonisVersion||"-",prefix:s}),t(re,{label:"Uptime",value:qn(e.package.uptime),prefix:s}),t(re,{label:"Renderer",value:e.devToolbar?.renderer||"preact",prefix:s})]}),e.collectors.length>0&&t(R,{children:[t("h3",{className:`${s}-internals-title`,children:"Collectors"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Collector"}),t("th",{children:"Status"}),t("th",{children:"Last Error"}),t("th",{children:"Config"})]})}),t("tbody",{children:e.collectors.map(o=>t("tr",{children:[t("td",{children:[t("code",{children:o.name}),o.label&&o.label!==o.name&&t("span",{className:`${s}-c-dim`,children:[" ",o.label]})]}),t("td",{children:[t(ne,{status:o.status,prefix:s}),o.status]}),t("td",{className:o.lastError?`${s}-c-red`:`${s}-c-dim`,children:o.lastError?t(R,{children:[o.lastError,o.lastErrorAt&&t("span",{className:`${s}-c-dim`,style:{fontSize:"10px"},children:j(o.lastErrorAt)})]}):"-"}),t("td",{children:t(Rr,{config:o.config,prefix:s})})]},o.name))})]})]}),t("h3",{className:`${s}-internals-title`,children:"Buffers"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Buffer"}),t("th",{children:"Usage"}),t("th",{children:"Fill %"})]})}),t("tbody",{children:Object.entries(e.buffers).map(([o,a])=>t("tr",{children:[t("td",{style:{textTransform:"capitalize"},children:o}),t("td",{children:[a.current.toLocaleString()," / ",a.max.toLocaleString()]}),t("td",{children:t(Dr,{current:a.current,max:a.max,prefix:s})})]},o))})]}),t("h3",{className:`${s}-internals-title`,children:"Timers"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Timer"}),t("th",{children:"Status"}),t("th",{children:"Interval"})]})}),t("tbody",{children:Object.entries(e.timers).map(([o,a])=>t("tr",{children:[t("td",{children:Lr(o)}),t("td",{children:[t(ne,{status:a.active?"active":"inactive",prefix:s}),t("span",{className:a.active?`${s}-c-green`:`${s}-c-dim`,children:a.active?"active":"inactive"})]}),t("td",{children:a.active?a.intervalMs?H(a.intervalMs):a.debounceMs?`${H(a.debounceMs)} (debounce)`:"-":t("span",{className:`${s}-c-dim`,children:"—"})})]},o))})]}),t("h3",{className:`${s}-internals-title`,children:"Integrations"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Integration"}),t("th",{children:"Status"}),t("th",{children:"Details"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"Transmit (SSE)"}),t("td",{children:[t(ne,{status:e.transmit.available?"connected":"inactive",prefix:s}),e.transmit.available?"connected":"unavailable"]}),t("td",{style:{fontSize:"11px"},children:e.transmit.channels.length>0?`Channels: ${e.transmit.channels.join(", ")}`:"-"})]}),Object.entries(e.integrations).map(([o,a])=>{const h=a.active??a.available??!1,u=a.active?"active":a.available?"available":"unavailable";let f=a.mode?`Mode: ${a.mode}`:"-";return o==="edgePlugin"&&a.active?f="@serverStats() tag registered":o==="cacheInspector"&&a.available?f="Redis dependency detected":o==="queueInspector"&&a.available&&(f="Queue dependency detected"),t("tr",{children:[t("td",{children:Ar(o)}),t("td",{children:[t(ne,{status:h?"active":"inactive",prefix:s}),u]}),t("td",{className:`${s}-c-dim`,style:{fontSize:"11px"},children:f})]},o)})]})]}),e.storage&&t(R,{children:[t("h3",{className:`${s}-internals-title`,children:"Storage (SQLite)"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Metric"}),t("th",{children:"Value"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"Status"}),t("td",{children:[t(ne,{status:e.storage.ready?"ready":"inactive",prefix:s}),e.storage.ready?"ready":"not ready"]})]}),t("tr",{children:[t("td",{children:"DB Path"}),t("td",{children:t("code",{children:e.storage.dbPath})})]}),t("tr",{children:[t("td",{children:"File Size"}),t("td",{children:[e.storage.fileSizeMb.toFixed(1)," MB"]})]}),t("tr",{children:[t("td",{children:"WAL Size"}),t("td",{children:[e.storage.walSizeMb.toFixed(1)," MB"]})]}),t("tr",{children:[t("td",{children:"Retention"}),t("td",{children:[e.storage.retentionDays," days"]})]}),t("tr",{children:[t("td",{children:"Last Cleanup"}),t("td",{children:e.storage.lastCleanupAt?j(e.storage.lastCleanupAt):"-"})]})]})]}),e.storage.tables.length>0&&t("table",{className:n,style:{marginTop:8},children:[t("thead",{children:t("tr",{children:[t("th",{children:"Table"}),t("th",{children:"Rows"})]})}),t("tbody",{children:e.storage.tables.map(o=>t("tr",{children:[t("td",{children:t("code",{children:o.name})}),t("td",{children:o.rowCount.toLocaleString()})]},o.name))})]})]}),t("h3",{className:`${s}-internals-title`,children:"Resolved Config"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Setting"}),t("th",{children:"Value"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"intervalMs"}),t("td",{children:e.config.intervalMs})]}),t("tr",{children:[t("td",{children:"transport"}),t("td",{children:e.config.transport})]}),t("tr",{children:[t("td",{children:"channelName"}),t("td",{children:e.config.channelName})]}),t("tr",{children:[t("td",{children:"endpoint"}),t("td",{children:e.config.endpoint===!1?"false":e.config.endpoint})]}),t("tr",{children:[t("td",{children:"skipInTest"}),t("td",{children:d("skipInTest",e.config.skipInTest)})]}),t("tr",{children:[t("td",{children:"onStats callback"}),t("td",{children:e.config.hasOnStatsCallback?"defined":"not defined"})]}),t("tr",{children:[t("td",{children:"shouldShow callback"}),t("td",{children:e.config.hasShouldShowCallback?"defined":"not defined"})]})]})]}),t("h4",{className:`${s}-internals-title`,children:"DevToolbar"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Setting"}),t("th",{children:"Value"})]})}),t("tbody",{children:Object.entries(e.devToolbar).map(([o,a])=>t("tr",{children:[t("td",{children:o==="customPaneCount"?"customPanes":o}),t("td",{children:o==="customPaneCount"?`${a} registered`:d(o,a)})]},o))})]})]})}const jr=3e3;function Qt({options:e}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e||{},[i,l]=x(null),[c,d]=x(!0),[o,a]=x(null),h=O(null),u=Bt(n,s),f=k(async()=>{try{const p=await u().get(`${r}/diagnostics`);l(p),a(null),d(!1)}catch(g){if(g instanceof pe){a(g),d(!1),h.current&&(clearInterval(h.current),h.current=null);return}a(g instanceof Error?g:new Error(String(g))),d(!1)}},[r,u]);return F(()=>(d(!0),a(null),f(),h.current=setInterval(f,jr),()=>{h.current&&(clearInterval(h.current),h.current=null)}),[f]),c&&!i?t("div",{className:"ss-dbg-empty",children:"Loading diagnostics..."}):o?t("div",{className:"ss-dbg-empty",children:["Error: ",o.message]}):i?t(Br,{data:i,tableClassName:"ss-dbg-table",classPrefix:"ss-dbg"}):t("div",{className:"ss-dbg-empty",children:"Diagnostics not available"})}const Fr=Object.freeze(Object.defineProperty({__proto__:null,InternalsTab:Qt,default:Qt},Symbol.toStringTag,{value:"Module"}));function Gt({pane:e,options:n}){({...n});const{data:r,isLoading:s,error:i,clearData:l}=U(e.endpoint.replace(/^\//,""),{...n,debugEndpoint:""}),[c,d]=x(""),o=S(()=>{if(!r)return[];const f=e.dataKey||e.id;let g=r;for(const p of f.split("."))g=g?.[p];return Array.isArray(g)?g:[]},[r,e.dataKey,e.id]),a=S(()=>{if(!c)return o;const f=c.toLowerCase(),g=e.columns.filter(p=>p.searchable).map(p=>p.key);return g.length===0?o:o.filter(p=>g.some(_=>{const b=p[_];return b!==null&&String(b).toLowerCase().includes(f)}))},[o,c,e.columns]),h=(f,g)=>{if(f==null)return t("span",{className:"ss-dbg-c-dim",children:"-"});switch(g.format||"text"){case"time":return t("span",{className:"ss-dbg-event-time",title:q(f),children:typeof f=="number"?j(f):String(f)});case"timeAgo":return t("span",{className:"ss-dbg-event-time",title:q(f),children:j(f)});case"duration":{const _=typeof f=="number"?f:parseFloat(String(f));return isNaN(_)?String(f):t("span",{className:`ss-dbg-duration ${G(_)==="very-slow"?"ss-dbg-very-slow":G(_)==="slow"?"ss-dbg-slow":""}`,children:H(_)})}case"method":return t("span",{className:`ss-dbg-method ss-dbg-method-${String(f).toLowerCase()}`,children:String(f)});case"json":{let _=f;if(typeof f=="string")try{_=JSON.parse(f)}catch{}return _e(_,80)}case"badge":{const _=String(f).toLowerCase(),y=(g.badgeColorMap||{})[_]||"muted";return t("span",{className:`ss-dbg-badge ss-dbg-badge-${y}`,children:String(f)})}default:return String(f)}},u=J([a]);return s&&!r?t("div",{className:"ss-dbg-empty",children:["Loading ",e.label,"..."]}):i?t("div",{className:"ss-dbg-empty",children:["Error: ",i.message]}):t("div",{children:[e.search&&t("div",{className:"ss-dbg-search-bar",children:[t("input",{type:"text",className:"ss-dbg-search",placeholder:e.search.placeholder,value:c,onChange:f=>d(f.target.value)}),t("span",{className:"ss-dbg-summary",children:[a.length," items"]}),e.clearable&&t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:l,children:"Clear"})]}),a.length===0?t("div",{className:"ss-dbg-empty",children:"No data"}):t("table",{ref:u,className:"ss-dbg-table",children:[t("thead",{children:t("tr",{children:e.columns.map(f=>t("th",{children:f.label},f.key))})}),t("tbody",{children:a.map((f,g)=>t("tr",{children:e.columns.map(p=>t("td",{children:h(f[p.key],p)},p.key))},f.id??g))})]})]})}const Hr=Object.freeze(Object.defineProperty({__proto__:null,CustomPaneTab:Gt,default:Gt},Symbol.toStringTag,{value:"Module"}))})();
1
+ (function(){"use strict";var le,C,He,Q,Ue,ze,Ve,qe,Ne,xe,$e,ie={},ae=[],Zt=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,X=Array.isArray;function z(e,n){for(var r in n)e[r]=n[r];return e}function Ce(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function oe(e,n,r){var s,l,i,o={};for(i in n)i=="key"?s=n[i]:i=="ref"?l=n[i]:o[i]=n[i];if(arguments.length>2&&(o.children=arguments.length>3?le.call(arguments,2):r),typeof e=="function"&&e.defaultProps!=null)for(i in e.defaultProps)o[i]===void 0&&(o[i]=e.defaultProps[i]);return ce(e,o,s,l,null)}function ce(e,n,r,s,l){var i={type:e,props:n,key:r,ref:s,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:l??++He,__i:-1,__u:0};return l==null&&C.vnode!=null&&C.vnode(i),i}function O(e){return e.children}function V(e,n){this.props=e,this.context=n}function G(e,n){if(n==null)return e.__?G(e.__,e.__i+1):null;for(var r;n<e.__k.length;n++)if((r=e.__k[n])!=null&&r.__e!=null)return r.__e;return typeof e.type=="function"?G(e):null}function en(e){if(e.__P&&e.__d){var n=e.__v,r=n.__e,s=[],l=[],i=z({},n);i.__v=n.__v+1,C.vnode&&C.vnode(i),ke(e.__P,i,n,e.__n,e.__P.namespaceURI,32&n.__u?[r]:null,s,r??G(n),!!(32&n.__u),l),i.__v=n.__v,i.__.__k[i.__i]=i,Xe(s,i,l),n.__e=n.__=null,i.__e!=r&&We(i)}}function We(e){if((e=e.__)!=null&&e.__c!=null)return e.__e=e.__c.base=null,e.__k.some(function(n){if(n!=null&&n.__e!=null)return e.__e=e.__c.base=n.__e}),We(e)}function Je(e){(!e.__d&&(e.__d=!0)&&Q.push(e)&&!de.__r++||Ue!=C.debounceRendering)&&((Ue=C.debounceRendering)||ze)(de)}function de(){for(var e,n=1;Q.length;)Q.length>n&&Q.sort(Ve),e=Q.shift(),n=Q.length,en(e);de.__r=0}function Ke(e,n,r,s,l,i,o,d,c,a,h){var u,f,p,_,b,y,m,g=s&&s.__k||ae,w=n.length;for(c=tn(r,n,g,c,w),u=0;u<w;u++)(p=r.__k[u])!=null&&(f=p.__i!=-1&&g[p.__i]||ie,p.__i=u,y=ke(e,p,f,l,i,o,d,c,a,h),_=p.__e,p.ref&&f.ref!=p.ref&&(f.ref&&Te(f.ref,null,p),h.push(p.ref,p.__c||_,p)),b==null&&_!=null&&(b=_),(m=!!(4&p.__u))||f.__k===p.__k?c=Qe(p,c,e,m):typeof p.type=="function"&&y!==void 0?c=y:_&&(c=_.nextSibling),p.__u&=-7);return r.__e=b,c}function tn(e,n,r,s,l){var i,o,d,c,a,h=r.length,u=h,f=0;for(e.__k=new Array(l),i=0;i<l;i++)(o=n[i])!=null&&typeof o!="boolean"&&typeof o!="function"?(typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?o=e.__k[i]=ce(null,o,null,null,null):X(o)?o=e.__k[i]=ce(O,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?o=e.__k[i]=ce(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):e.__k[i]=o,c=i+f,o.__=e,o.__b=e.__b+1,d=null,(a=o.__i=nn(o,r,c,u))!=-1&&(u--,(d=r[a])&&(d.__u|=2)),d==null||d.__v==null?(a==-1&&(l>h?f--:l<h&&f++),typeof o.type!="function"&&(o.__u|=4)):a!=c&&(a==c-1?f--:a==c+1?f++:(a>c?f--:f++,o.__u|=4))):e.__k[i]=null;if(u)for(i=0;i<h;i++)(d=r[i])!=null&&(2&d.__u)==0&&(d.__e==s&&(s=G(d)),et(d,d));return s}function Qe(e,n,r,s){var l,i;if(typeof e.type=="function"){for(l=e.__k,i=0;l&&i<l.length;i++)l[i]&&(l[i].__=e,n=Qe(l[i],n,r,s));return n}e.__e!=n&&(s&&(n&&e.type&&!n.parentNode&&(n=G(e)),r.insertBefore(e.__e,n||null)),n=e.__e);do n=n&&n.nextSibling;while(n!=null&&n.nodeType==8);return n}function ue(e,n){return n=n||[],e==null||typeof e=="boolean"||(X(e)?e.some(function(r){ue(r,n)}):n.push(e)),n}function nn(e,n,r,s){var l,i,o,d=e.key,c=e.type,a=n[r],h=a!=null&&(2&a.__u)==0;if(a===null&&d==null||h&&d==a.key&&c==a.type)return r;if(s>(h?1:0)){for(l=r-1,i=r+1;l>=0||i<n.length;)if((a=n[o=l>=0?l--:i++])!=null&&(2&a.__u)==0&&d==a.key&&c==a.type)return o}return-1}function Ge(e,n,r){n[0]=="-"?e.setProperty(n,r??""):e[n]=r==null?"":typeof r!="number"||Zt.test(n)?r:r+"px"}function he(e,n,r,s,l){var i,o;e:if(n=="style")if(typeof r=="string")e.style.cssText=r;else{if(typeof s=="string"&&(e.style.cssText=s=""),s)for(n in s)r&&n in r||Ge(e.style,n,"");if(r)for(n in r)s&&r[n]==s[n]||Ge(e.style,n,r[n])}else if(n[0]=="o"&&n[1]=="n")i=n!=(n=n.replace(qe,"$1")),o=n.toLowerCase(),n=o in e||n=="onFocusOut"||n=="onFocusIn"?o.slice(2):n.slice(2),e.l||(e.l={}),e.l[n+i]=r,r?s?r.u=s.u:(r.u=Ne,e.addEventListener(n,i?$e:xe,i)):e.removeEventListener(n,i?$e:xe,i);else{if(l=="http://www.w3.org/2000/svg")n=n.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(n!="width"&&n!="height"&&n!="href"&&n!="list"&&n!="form"&&n!="tabIndex"&&n!="download"&&n!="rowSpan"&&n!="colSpan"&&n!="role"&&n!="popover"&&n in e)try{e[n]=r??"";break e}catch{}typeof r=="function"||(r==null||r===!1&&n[4]!="-"?e.removeAttribute(n):e.setAttribute(n,n=="popover"&&r==1?"":r))}}function Ye(e){return function(n){if(this.l){var r=this.l[n.type+e];if(n.t==null)n.t=Ne++;else if(n.t<r.u)return;return r(C.event?C.event(n):n)}}}function ke(e,n,r,s,l,i,o,d,c,a){var h,u,f,p,_,b,y,m,g,w,$,v,N,A,M,D=n.type;if(n.constructor!==void 0)return null;128&r.__u&&(c=!!(32&r.__u),i=[d=n.__e=r.__e]),(h=C.__b)&&h(n);e:if(typeof D=="function")try{if(m=n.props,g="prototype"in D&&D.prototype.render,w=(h=D.contextType)&&s[h.__c],$=h?w?w.props.value:h.__:s,r.__c?y=(u=n.__c=r.__c).__=u.__E:(g?n.__c=u=new D(m,$):(n.__c=u=new V(m,$),u.constructor=D,u.render=sn),w&&w.sub(u),u.state||(u.state={}),u.__n=s,f=u.__d=!0,u.__h=[],u._sb=[]),g&&u.__s==null&&(u.__s=u.state),g&&D.getDerivedStateFromProps!=null&&(u.__s==u.state&&(u.__s=z({},u.__s)),z(u.__s,D.getDerivedStateFromProps(m,u.__s))),p=u.props,_=u.state,u.__v=n,f)g&&D.getDerivedStateFromProps==null&&u.componentWillMount!=null&&u.componentWillMount(),g&&u.componentDidMount!=null&&u.__h.push(u.componentDidMount);else{if(g&&D.getDerivedStateFromProps==null&&m!==p&&u.componentWillReceiveProps!=null&&u.componentWillReceiveProps(m,$),n.__v==r.__v||!u.__e&&u.shouldComponentUpdate!=null&&u.shouldComponentUpdate(m,u.__s,$)===!1){n.__v!=r.__v&&(u.props=m,u.state=u.__s,u.__d=!1),n.__e=r.__e,n.__k=r.__k,n.__k.some(function(J){J&&(J.__=n)}),ae.push.apply(u.__h,u._sb),u._sb=[],u.__h.length&&o.push(u);break e}u.componentWillUpdate!=null&&u.componentWillUpdate(m,u.__s,$),g&&u.componentDidUpdate!=null&&u.__h.push(function(){u.componentDidUpdate(p,_,b)})}if(u.context=$,u.props=m,u.__P=e,u.__e=!1,v=C.__r,N=0,g)u.state=u.__s,u.__d=!1,v&&v(n),h=u.render(u.props,u.state,u.context),ae.push.apply(u.__h,u._sb),u._sb=[];else do u.__d=!1,v&&v(n),h=u.render(u.props,u.state,u.context),u.state=u.__s;while(u.__d&&++N<25);u.state=u.__s,u.getChildContext!=null&&(s=z(z({},s),u.getChildContext())),g&&!f&&u.getSnapshotBeforeUpdate!=null&&(b=u.getSnapshotBeforeUpdate(p,_)),A=h!=null&&h.type===O&&h.key==null?Ze(h.props.children):h,d=Ke(e,X(A)?A:[A],n,r,s,l,i,o,d,c,a),u.base=n.__e,n.__u&=-161,u.__h.length&&o.push(u),y&&(u.__E=u.__=null)}catch(J){if(n.__v=null,c||i!=null)if(J.then){for(n.__u|=c?160:128;d&&d.nodeType==8&&d.nextSibling;)d=d.nextSibling;i[i.indexOf(d)]=null,n.__e=d}else{for(M=i.length;M--;)Ce(i[M]);Se(n)}else n.__e=r.__e,n.__k=r.__k,J.then||Se(n);C.__e(J,n,r)}else i==null&&n.__v==r.__v?(n.__k=r.__k,n.__e=r.__e):d=n.__e=rn(r.__e,n,r,s,l,i,o,c,a);return(h=C.diffed)&&h(n),128&n.__u?void 0:d}function Se(e){e&&(e.__c&&(e.__c.__e=!0),e.__k&&e.__k.some(Se))}function Xe(e,n,r){for(var s=0;s<r.length;s++)Te(r[s],r[++s],r[++s]);C.__c&&C.__c(n,e),e.some(function(l){try{e=l.__h,l.__h=[],e.some(function(i){i.call(l)})}catch(i){C.__e(i,l.__v)}})}function Ze(e){return typeof e!="object"||e==null||e.__b>0?e:X(e)?e.map(Ze):z({},e)}function rn(e,n,r,s,l,i,o,d,c){var a,h,u,f,p,_,b,y=r.props||ie,m=n.props,g=n.type;if(g=="svg"?l="http://www.w3.org/2000/svg":g=="math"?l="http://www.w3.org/1998/Math/MathML":l||(l="http://www.w3.org/1999/xhtml"),i!=null){for(a=0;a<i.length;a++)if((p=i[a])&&"setAttribute"in p==!!g&&(g?p.localName==g:p.nodeType==3)){e=p,i[a]=null;break}}if(e==null){if(g==null)return document.createTextNode(m);e=document.createElementNS(l,g,m.is&&m),d&&(C.__m&&C.__m(n,i),d=!1),i=null}if(g==null)y===m||d&&e.data==m||(e.data=m);else{if(i=i&&le.call(e.childNodes),!d&&i!=null)for(y={},a=0;a<e.attributes.length;a++)y[(p=e.attributes[a]).name]=p.value;for(a in y)p=y[a],a=="dangerouslySetInnerHTML"?u=p:a=="children"||a in m||a=="value"&&"defaultValue"in m||a=="checked"&&"defaultChecked"in m||he(e,a,null,p,l);for(a in m)p=m[a],a=="children"?f=p:a=="dangerouslySetInnerHTML"?h=p:a=="value"?_=p:a=="checked"?b=p:d&&typeof p!="function"||y[a]===p||he(e,a,p,y[a],l);if(h)d||u&&(h.__html==u.__html||h.__html==e.innerHTML)||(e.innerHTML=h.__html),n.__k=[];else if(u&&(e.innerHTML=""),Ke(n.type=="template"?e.content:e,X(f)?f:[f],n,r,s,g=="foreignObject"?"http://www.w3.org/1999/xhtml":l,i,o,i?i[0]:r.__k&&G(r,0),d,c),i!=null)for(a=i.length;a--;)Ce(i[a]);d||(a="value",g=="progress"&&_==null?e.removeAttribute("value"):_!=null&&(_!==e[a]||g=="progress"&&!_||g=="option"&&_!=y[a])&&he(e,a,_,y[a],l),a="checked",b!=null&&b!=e[a]&&he(e,a,b,y[a],l))}return e}function Te(e,n,r){try{if(typeof e=="function"){var s=typeof e.__u=="function";s&&e.__u(),s&&n==null||(e.__u=e(n))}else e.current=n}catch(l){C.__e(l,r)}}function et(e,n,r){var s,l;if(C.unmount&&C.unmount(e),(s=e.ref)&&(s.current&&s.current!=e.__e||Te(s,null,n)),(s=e.__c)!=null){if(s.componentWillUnmount)try{s.componentWillUnmount()}catch(i){C.__e(i,n)}s.base=s.__P=null}if(s=e.__k)for(l=0;l<s.length;l++)s[l]&&et(s[l],n,r||typeof e.type!="function");r||Ce(e.__e),e.__c=e.__=e.__e=void 0}function sn(e,n,r){return this.constructor(e,r)}function tt(e,n,r){var s,l,i,o;n==document&&(n=document.documentElement),C.__&&C.__(e,n),l=(s=!1)?null:n.__k,i=[],o=[],ke(n,e=n.__k=oe(O,null,[e]),l||ie,ie,n.namespaceURI,l?null:n.firstChild?le.call(n.childNodes):null,i,l?l.__e:n.firstChild,s,o),Xe(i,e,o)}le=ae.slice,C={__e:function(e,n,r,s){for(var l,i,o;n=n.__;)if((l=n.__c)&&!l.__)try{if((i=l.constructor)&&i.getDerivedStateFromError!=null&&(l.setState(i.getDerivedStateFromError(e)),o=l.__d),l.componentDidCatch!=null&&(l.componentDidCatch(e,s||{}),o=l.__d),o)return l.__E=l}catch(d){e=d}throw e}},He=0,V.prototype.setState=function(e,n){var r;r=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=z({},this.state),typeof e=="function"&&(e=e(z({},r),this.props)),e&&z(r,e),e!=null&&this.__v&&(n&&this._sb.push(n),Je(this))},V.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Je(this))},V.prototype.render=O,Q=[],ze=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Ve=function(e,n){return e.__v.__b-n.__v.__b},de.__r=0,qe=/(PointerCapture)$|Capture$/i,Ne=0,xe=Ye(!1),$e=Ye(!0);var ln=0;function t(e,n,r,s,l,i){n||(n={});var o,d,c=n;if("ref"in c)for(d in c={},n)d=="ref"?o=n[d]:c[d]=n[d];var a={type:e,props:c,key:r,ref:o,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--ln,__i:-1,__u:0,__source:l,__self:i};if(typeof e=="function"&&(o=e.defaultProps))for(d in o)c[d]===void 0&&(c[d]=o[d]);return C.vnode&&C.vnode(a),a}var Z,T,Le,nt,ee=0,rt=[],E=C,st=E.__b,lt=E.__r,it=E.diffed,at=E.__c,ot=E.unmount,ct=E.__;function Ee(e,n){E.__h&&E.__h(T,e,ee||n),ee=0;var r=T.__H||(T.__H={__:[],__h:[]});return e>=r.__.length&&r.__.push({}),r.__[e]}function x(e){return ee=1,an(ht,e)}function an(e,n,r){var s=Ee(Z++,2);if(s.t=e,!s.__c&&(s.__=[r?r(n):ht(void 0,n),function(d){var c=s.__N?s.__N[0]:s.__[0],a=s.t(c,d);c!==a&&(s.__N=[a,s.__[1]],s.__c.setState({}))}],s.__c=T,!T.__f)){var l=function(d,c,a){if(!s.__c.__H)return!0;var h=s.__c.__H.__.filter(function(f){return f.__c});if(h.every(function(f){return!f.__N}))return!i||i.call(this,d,c,a);var u=s.__c.props!==d;return h.some(function(f){if(f.__N){var p=f.__[0];f.__=f.__N,f.__N=void 0,p!==f.__[0]&&(u=!0)}}),i&&i.call(this,d,c,a)||u};T.__f=!0;var i=T.shouldComponentUpdate,o=T.componentWillUpdate;T.componentWillUpdate=function(d,c,a){if(this.__e){var h=i;i=void 0,l(d,c,a),i=h}o&&o.call(this,d,c,a)},T.shouldComponentUpdate=l}return s.__N||s.__}function F(e,n){var r=Ee(Z++,3);!E.__s&&ut(r.__H,n)&&(r.__=e,r.u=n,T.__H.__h.push(r))}function I(e){return ee=5,S(function(){return{current:e}},[])}function S(e,n){var r=Ee(Z++,7);return ut(r.__H,n)&&(r.__=e(),r.__H=n,r.__h=e),r.__}function k(e,n){return ee=8,S(function(){return e},n)}function on(){for(var e;e=rt.shift();){var n=e.__H;if(e.__P&&n)try{n.__h.some(fe),n.__h.some(Ae),n.__h=[]}catch(r){n.__h=[],E.__e(r,e.__v)}}}E.__b=function(e){T=null,st&&st(e)},E.__=function(e,n){e&&n.__k&&n.__k.__m&&(e.__m=n.__k.__m),ct&&ct(e,n)},E.__r=function(e){lt&&lt(e),Z=0;var n=(T=e.__c).__H;n&&(Le===T?(n.__h=[],T.__h=[],n.__.some(function(r){r.__N&&(r.__=r.__N),r.u=r.__N=void 0})):(n.__h.some(fe),n.__h.some(Ae),n.__h=[],Z=0)),Le=T},E.diffed=function(e){it&&it(e);var n=e.__c;n&&n.__H&&(n.__H.__h.length&&(rt.push(n)!==1&&nt===E.requestAnimationFrame||((nt=E.requestAnimationFrame)||cn)(on)),n.__H.__.some(function(r){r.u&&(r.__H=r.u),r.u=void 0})),Le=T=null},E.__c=function(e,n){n.some(function(r){try{r.__h.some(fe),r.__h=r.__h.filter(function(s){return!s.__||Ae(s)})}catch(s){n.some(function(l){l.__h&&(l.__h=[])}),n=[],E.__e(s,r.__v)}}),at&&at(e,n)},E.unmount=function(e){ot&&ot(e);var n,r=e.__c;r&&r.__H&&(r.__H.__.some(function(s){try{fe(s)}catch(l){n=l}}),r.__H=void 0,n&&E.__e(n,r.__v))};var dt=typeof requestAnimationFrame=="function";function cn(e){var n,r=function(){clearTimeout(s),dt&&cancelAnimationFrame(n),setTimeout(e)},s=setTimeout(r,35);dt&&(n=requestAnimationFrame(r))}function fe(e){var n=T,r=e.__c;typeof r=="function"&&(e.__c=void 0,r()),T=n}function Ae(e){var n=T;e.__c=e.__(),T=n}function ut(e,n){return!e||e.length!==n.length||n.some(function(r,s){return r!==e[s]})}function ht(e,n){return typeof n=="function"?n(e):n}function dn(e,n){for(var r in n)e[r]=n[r];return e}function ft(e,n){for(var r in e)if(r!=="__source"&&!(r in n))return!0;for(var s in n)if(s!=="__source"&&e[s]!==n[s])return!0;return!1}function pt(e,n){this.props=e,this.context=n}(pt.prototype=new V).isPureReactComponent=!0,pt.prototype.shouldComponentUpdate=function(e,n){return ft(this.props,e)||ft(this.state,n)};var _t=C.__b;C.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),_t&&_t(e)};var un=C.__e;C.__e=function(e,n,r,s){if(e.then){for(var l,i=n;i=i.__;)if((l=i.__c)&&l.__c)return n.__e==null&&(n.__e=r.__e,n.__k=r.__k),l.__c(e,n)}un(e,n,r,s)};var gt=C.unmount;function mt(e,n,r){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(s){typeof s.__c=="function"&&s.__c()}),e.__c.__H=null),(e=dn({},e)).__c!=null&&(e.__c.__P===r&&(e.__c.__P=n),e.__c.__e=!0,e.__c=null),e.__k=e.__k&&e.__k.map(function(s){return mt(s,n,r)})),e}function bt(e,n,r){return e&&r&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(s){return bt(s,n,r)}),e.__c&&e.__c.__P===n&&(e.__e&&r.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=r)),e}function te(){this.__u=0,this.o=null,this.__b=null}function vt(e){if(!e.__)return null;var n=e.__.__c;return n&&n.__a&&n.__a(e)}function R(e){var n,r,s,l=null;function i(o){if(n||(n=e()).then(function(d){d&&(l=d.default||d),s=!0},function(d){r=d,s=!0}),r)throw r;if(!s)throw n;return l?oe(l,o):null}return i.displayName="Lazy",i.__f=!0,i}function pe(){this.i=null,this.l=null}C.unmount=function(e){var n=e.__c;n&&(n.__z=!0),n&&n.__R&&n.__R(),n&&32&e.__u&&(e.type=null),gt&&gt(e)},(te.prototype=new V).__c=function(e,n){var r=n.__c,s=this;s.o==null&&(s.o=[]),s.o.push(r);var l=vt(s.__v),i=!1,o=function(){i||s.__z||(i=!0,r.__R=null,l?l(c):c())};r.__R=o;var d=r.__P;r.__P=null;var c=function(){if(!--s.__u){if(s.state.__a){var a=s.state.__a;s.__v.__k[0]=bt(a,a.__c.__P,a.__c.__O)}var h;for(s.setState({__a:s.__b=null});h=s.o.pop();)h.__P=d,h.forceUpdate()}};s.__u++||32&n.__u||s.setState({__a:s.__b=s.__v.__k[0]}),e.then(o,o)},te.prototype.componentWillUnmount=function(){this.o=[]},te.prototype.render=function(e,n){if(this.__b){if(this.__v.__k){var r=document.createElement("div"),s=this.__v.__k[0].__c;this.__v.__k[0]=mt(this.__b,r,s.__O=s.__P)}this.__b=null}var l=n.__a&&oe(O,null,e.fallback);return l&&(l.__u&=-33),[oe(O,null,n.__a?null:e.children),l]};var yt=function(e,n,r){if(++r[1]===r[0]&&e.l.delete(n),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(r=e.i;r;){for(;r.length>3;)r.pop()();if(r[1]<r[0])break;e.i=r=r[2]}};(pe.prototype=new V).__a=function(e){var n=this,r=vt(n.__v),s=n.l.get(e);return s[0]++,function(l){var i=function(){n.props.revealOrder?(s.push(l),yt(n,e,s)):l()};r?r(i):i()}},pe.prototype.render=function(e){this.i=null,this.l=new Map;var n=ue(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&n.reverse();for(var r=n.length;r--;)this.l.set(n[r],this.i=[1,0,this.i]);return e.children},pe.prototype.componentDidUpdate=pe.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(n,r){yt(e,r,n)})};var hn=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,fn=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,pn=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,_n=/[A-Z0-9]/g,gn=typeof document<"u",mn=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};V.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(V.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(n){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:n})}})});var wt=C.event;function bn(){}function vn(){return this.cancelBubble}function yn(){return this.defaultPrevented}C.event=function(e){return wt&&(e=wt(e)),e.persist=bn,e.isPropagationStopped=vn,e.isDefaultPrevented=yn,e.nativeEvent=e};var wn={enumerable:!1,configurable:!0,get:function(){return this.class}},Nt=C.vnode;C.vnode=function(e){typeof e.type=="string"&&(function(n){var r=n.props,s=n.type,l={},i=s.indexOf("-")===-1;for(var o in r){var d=r[o];if(!(o==="value"&&"defaultValue"in r&&d==null||gn&&o==="children"&&s==="noscript"||o==="class"||o==="className")){var c=o.toLowerCase();o==="defaultValue"&&"value"in r&&r.value==null?o="value":o==="download"&&d===!0?d="":c==="translate"&&d==="no"?d=!1:c[0]==="o"&&c[1]==="n"?c==="ondoubleclick"?o="ondblclick":c!=="onchange"||s!=="input"&&s!=="textarea"||mn(r.type)?c==="onfocus"?o="onfocusin":c==="onblur"?o="onfocusout":pn.test(o)&&(o=c):c=o="oninput":i&&fn.test(o)?o=o.replace(_n,"-$&").toLowerCase():d===null&&(d=void 0),c==="oninput"&&l[o=c]&&(o="oninputCapture"),l[o]=d}}s=="select"&&l.multiple&&Array.isArray(l.value)&&(l.value=ue(r.children).forEach(function(a){a.props.selected=l.value.indexOf(a.props.value)!=-1})),s=="select"&&l.defaultValue!=null&&(l.value=ue(r.children).forEach(function(a){a.props.selected=l.multiple?l.defaultValue.indexOf(a.props.value)!=-1:l.defaultValue==a.props.value})),r.class&&!r.className?(l.class=r.class,Object.defineProperty(l,"className",wn)):r.className&&(l.class=l.className=r.className),n.props=l})(e),e.$$typeof=hn,Nt&&Nt(e)};var xt=C.__r;C.__r=function(e){xt&&xt(e),e.__c};var $t=C.diffed;C.diffed=function(e){$t&&$t(e);var n=e.props,r=e.__e;r!=null&&e.type==="textarea"&&"value"in n&&n.value!==r.value&&(r.value=n.value==null?"":n.value)};var Ct={Fragment:O};const L={queries:{viewBox:"0 0 24 24",elements:['<ellipse cx="12" cy="5" rx="9" ry="3"/>','<path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/>','<path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/>']},events:{viewBox:"0 0 24 24",elements:['<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>']},emails:{viewBox:"0 0 24 24",elements:['<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>','<polyline points="22,6 12,13 2,6"/>']},routes:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="10"/>','<line x1="2" y1="12" x2="22" y2="12"/>','<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/>']},logs:{viewBox:"0 0 24 24",elements:['<line x1="8" y1="6" x2="21" y2="6"/>','<line x1="8" y1="12" x2="21" y2="12"/>','<line x1="8" y1="18" x2="21" y2="18"/>','<line x1="3" y1="6" x2="3.01" y2="6"/>','<line x1="3" y1="12" x2="3.01" y2="12"/>','<line x1="3" y1="18" x2="3.01" y2="18"/>']},timeline:{viewBox:"0 0 24 24",elements:['<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>']},cache:{viewBox:"0 0 24 24",elements:['<rect x="2" y="2" width="20" height="8" rx="2" ry="2"/>','<rect x="2" y="14" width="20" height="8" rx="2" ry="2"/>','<line x1="6" y1="6" x2="6.01" y2="6"/>','<line x1="6" y1="18" x2="6.01" y2="18"/>']},jobs:{viewBox:"0 0 24 24",elements:['<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>','<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>']},config:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="3"/>','<path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"/>']},internals:{viewBox:"0 0 24 24",elements:['<rect x="4" y="4" width="16" height="16" rx="2"/>','<rect x="9" y="9" width="6" height="6"/>','<line x1="9" y1="1" x2="9" y2="4"/>','<line x1="15" y1="1" x2="15" y2="4"/>','<line x1="9" y1="20" x2="9" y2="23"/>','<line x1="15" y1="20" x2="15" y2="23"/>','<line x1="20" y1="9" x2="23" y2="9"/>','<line x1="20" y1="14" x2="23" y2="14"/>','<line x1="1" y1="9" x2="4" y2="9"/>','<line x1="1" y1="14" x2="4" y2="14"/>']},overview:{viewBox:"0 0 24 24",elements:['<rect x="3" y="3" width="7" height="7"/>','<rect x="14" y="3" width="7" height="7"/>','<rect x="14" y="14" width="7" height="7"/>','<rect x="3" y="14" width="7" height="7"/>']},requests:{viewBox:"0 0 24 24",elements:['<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>']},"dashboard-timeline":{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="10"/>','<polyline points="12 6 12 12 16 14"/>']},"custom-pane":{viewBox:"0 0 24 24",elements:['<rect x="3" y="3" width="18" height="18" rx="2"/>','<path d="M9 3v18"/>']},wrench:{viewBox:"0 0 24 24",elements:['<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/>']},"external-link":{viewBox:"0 0 24 24",elements:['<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/>','<polyline points="15 3 21 3 21 9"/>','<line x1="10" y1="14" x2="21" y2="3"/>']},sun:{viewBox:"0 0 24 24",elements:['<circle cx="12" cy="12" r="5"/>','<line x1="12" y1="1" x2="12" y2="3"/>','<line x1="12" y1="21" x2="12" y2="23"/>','<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>','<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>','<line x1="1" y1="12" x2="3" y2="12"/>','<line x1="21" y1="12" x2="23" y2="12"/>','<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>','<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>']},moon:{viewBox:"0 0 24 24",elements:['<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>']},search:{viewBox:"0 0 24 24",elements:['<circle cx="11" cy="11" r="8"/>','<line x1="21" y1="21" x2="16.65" y2="16.65"/>']},eye:{viewBox:"0 0 24 24",elements:['<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/>','<circle cx="12" cy="12" r="3"/>']},"eye-off":{viewBox:"0 0 24 24",elements:['<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94"/>','<path d="M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19"/>','<line x1="1" y1="1" x2="23" y2="23"/>','<path d="M14.12 14.12a3 3 0 1 1-4.24-4.24"/>']},"chevron-right":{viewBox:"0 0 24 24",elements:['<path d="M9 18l6-6-6-6"/>']},"chevron-left":{viewBox:"0 0 24 24",elements:['<path d="M15 18l-6-6 6-6"/>']},"open-external":{viewBox:"0 0 16 16",elements:['<path d="M6 3H3v10h10v-3M9 1h6v6M7 9L15 1"/>']}};class _e extends Error{status;constructor(n=403){super(`Unauthorized (HTTP ${n})`),this.name="UnauthorizedError",this.status=n}}class Nn extends Error{status;body;constructor(n,r){super(`API error (HTTP ${n})`),this.name="ApiError",this.status=n,this.body=r}}class Me{baseUrl;authToken;constructor(n){this.baseUrl=n.baseUrl.replace(/\/+$/,""),this.authToken=n.authToken}async fetch(n,r){const l={...{Accept:"application/json",...this.authToken?{Authorization:`Bearer ${this.authToken}`}:{}},...r?.headers},i=await globalThis.fetch(`${this.baseUrl}${n}`,{...r,headers:l,credentials:this.authToken?"omit":"include"});if(r?.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");if(i.status===401||i.status===403)throw new _e(i.status);if(!i.ok){const o=await i.text().catch(()=>"");throw new Nn(i.status,o)}return i.json()}async get(n,r){const s=r?`${n}?${r}`:n;return this.fetch(s)}async post(n,r){const s={method:"POST",...r!==void 0?{body:JSON.stringify(r),headers:{"Content-Type":"application/json"}}:{}};return this.fetch(n,s)}async delete(n){return this.fetch(n,{method:"DELETE"})}}const xn=["tracing","process","system","http","db","redis","queues","cache","app","log","emails","dashboard"],kt="/admin/api/debug",St={tracing:!1,process:!1,system:!1,http:!1,db:!1,redis:!1,queues:!1,cache:!1,app:!1,log:!1,emails:!1,dashboard:!1,customPanes:[]};function $n(e){const n={customPanes:e.customPanes??[]},r=e.features;for(const s of xn)n[s]=r?.[s]??!1;return n}async function Cn(e,n=kt){const r=`${n.replace(/\/+$/,"")}/config`;return e.fetch(r)}async function kn(e){const{baseUrl:n="",debugEndpoint:r=kt,authToken:s}=e,l=new Me({baseUrl:n,authToken:s});try{const i=await Cn(l,r);return $n(i)}catch{return St}}function Sn(e={}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e,[l,i]=x(St),[o,d]=x(!0),[c,a]=x(null),h=I(!1);return F(()=>{if(h.current)return;h.current=!0;let u=!1;return(async()=>{try{const p=await kn({baseUrl:n,debugEndpoint:r,authToken:s});u||(i(p),d(!1))}catch(p){u||(a(p instanceof Error?p:new Error(String(p))),d(!1))}})(),()=>{u=!0}},[n,r,s]),{features:l,isLoading:o,error:c}}const ge="ss-dash-theme",Pe="ss-theme-change";function Oe(){if(typeof window>"u")return"light";const e=localStorage.getItem(ge);return e==="dark"||e==="light"?e:window.matchMedia?.("(prefers-color-scheme: dark)").matches?"dark":"light"}function Tn(e){typeof window>"u"||(localStorage.setItem(ge,e),window.dispatchEvent(new CustomEvent(Pe,{detail:e})))}function Ln(){const n=Oe()==="dark"?"light":"dark";return Tn(n),n}function En(e){if(typeof window>"u")return()=>{};const n=i=>{const o=i.detail;(o==="dark"||o==="light")&&e(o)},r=i=>{if(i.key===ge){const o=i.newValue;e(o==="dark"||o==="light"?o:Oe())}},s=window.matchMedia("(prefers-color-scheme: dark)"),l=i=>{localStorage.getItem(ge)||e(i.matches?"dark":"light")};return window.addEventListener(Pe,n),window.addEventListener("storage",r),s.addEventListener("change",l),()=>{window.removeEventListener(Pe,n),window.removeEventListener("storage",r),s.removeEventListener("change",l)}}function An(){const[e,n]=x(()=>Oe());F(()=>En(l=>{n(l)}),[]);const r=k(()=>{const s=Ln();return n(s),s},[]);return{theme:e,toggleTheme:r}}function Mn({theme:e,onToggle:n,className:r="",classPrefix:s="ss-dash"}){const l=e==="dark";return t("button",{type:"button",className:`${s==="ss-dbg"?"ss-dbg-theme-toggle":"ss-dash-theme-btn"} ${r}`,onClick:n,title:l?"Switch to light theme":"Switch to dark theme","aria-label":l?"Switch to light theme":"Switch to dark theme",children:l?t("svg",{width:"16",height:"16",viewBox:L.sun.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.sun.elements.join("")}}):t("svg",{width:"16",height:"16",viewBox:L.moon.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.moon.elements.join("")}})})}const Pn=R(()=>Promise.resolve().then(()=>ar)),On=R(()=>Promise.resolve().then(()=>or)),In=R(()=>Promise.resolve().then(()=>cr)),Dn=R(()=>Promise.resolve().then(()=>dr)),Rn=R(()=>Promise.resolve().then(()=>_r)),jn=R(()=>Promise.resolve().then(()=>yr)),Bn=R(()=>Promise.resolve().then(()=>wr)),Fn=R(()=>Promise.resolve().then(()=>kr)),Hn=R(()=>Promise.resolve().then(()=>Or)),Un=R(()=>Promise.resolve().then(()=>Kr)),zn=R(()=>Promise.resolve().then(()=>Qr));function Vn(e){const{defaultOpen:n=!1,dashboardPath:r,isOpen:s,onOpenChange:l,isLive:i=!1,...o}=e,[d,c]=x(n),a=s!==void 0?s:d,h=v=>{l?l(v):c(v)},[u,f]=x("queries"),{features:p}=Sn(o),{theme:_,toggleTheme:b}=An(),y=p.customPanes||[];F(()=>{const v=N=>{N.key==="Escape"&&a&&h(!1)};return document.addEventListener("keydown",v),()=>document.removeEventListener("keydown",v)},[a]);const m=S(()=>[{id:"queries",label:"Queries",visible:!0},{id:"events",label:"Events",visible:!0},{id:"emails",label:"Emails",visible:!0},{id:"routes",label:"Routes",visible:!0},{id:"logs",label:"Logs",visible:!0},{id:"timeline",label:"Requests",visible:p.tracing},{id:"cache",label:"Cache",visible:p.cache},{id:"jobs",label:"Jobs",visible:p.queues},{id:"config",label:"Config",visible:!0},{id:"internals",label:"Internals",visible:!0}],[p]),g=S(()=>m.filter(v=>v.visible),[m]);F(()=>{const v=[...g.map(N=>N.id),...y.map(N=>N.id)];!v.includes(u)&&v.length>0&&f(v[0])},[g,y,u]);const w=k(()=>{h(!a)},[a]),$=k(()=>{const v={options:o},N=y.find(M=>M.id===u);if(N)return t(te,{fallback:t("div",{className:"ss-dbg-empty",children:"Loading..."}),children:t(zn,{pane:N,options:o})});const A={queries:t(Pn,{...v}),events:t(On,{...v}),emails:t(In,{...v}),routes:t(Dn,{...v,currentPath:typeof window<"u"?window.location.pathname:""}),logs:t(Rn,{...v}),timeline:t(jn,{...v}),cache:t(Bn,{...v,dashboardPath:r}),jobs:t(Fn,{...v,dashboardPath:r}),config:t(Hn,{...v,dashboardPath:r}),internals:t(Un,{...v})};return t(te,{fallback:t("div",{className:"ss-dbg-empty",children:"Loading..."}),children:A[u]||t("div",{className:"ss-dbg-empty",children:"Unknown tab"})})},[u,o,y]);return t(O,{children:[s===void 0&&t("button",{type:"button",className:`ss-dbg-btn ${a?"ss-dbg-active":""}`,onClick:w,title:"Toggle debug panel",id:"ss-dbg-wrench",children:t("svg",{width:"14",height:"14",viewBox:L.wrench.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.wrench.elements.join("")}})}),t("div",{className:`ss-dbg-panel ${a?"ss-dbg-open":""}`,"data-ss-theme":_,id:"ss-dbg-panel",children:[t("div",{className:"ss-dbg-tabs",children:[t("div",{className:"ss-dbg-tabs-scroll",children:[g.map(v=>t("button",{type:"button",className:`ss-dbg-tab ${u===v.id?"ss-dbg-active":""}`,onClick:()=>f(v.id),children:[L[v.id]?t("svg",{className:"ss-dbg-tab-icon",viewBox:L[v.id].viewBox,dangerouslySetInnerHTML:{__html:L[v.id].elements.join("")}}):null,v.label]},v.id)),y.map(v=>t("button",{type:"button",className:`ss-dbg-tab ${u===v.id?"ss-dbg-active":""}`,onClick:()=>f(v.id),children:v.label},v.id))]}),t("div",{className:"ss-dbg-tabs-right",children:[t("span",{className:`ss-dbg-conn-mode ${i?"ss-dbg-conn-live":"ss-dbg-conn-polling"}`,title:i?"Connected via Transmit (SSE) — real-time updates":"Polling every 3s",children:i?"live":"polling"}),t(Mn,{theme:_,onToggle:b,classPrefix:"ss-dbg"}),r&&t("a",{href:r,target:"_blank",rel:"noopener noreferrer",className:"ss-dbg-dashboard-link",title:"Open dashboard",children:t("svg",{width:"14",height:"14",viewBox:L["external-link"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L["external-link"].elements.join("")}})}),t("button",{type:"button",className:"ss-dbg-close",onClick:()=>h(!1),title:"Close panel",children:"×"})]})]}),t("div",{className:"ss-dbg-content",children:a&&$()})]})]})}window.__ssDebugPanel={mount(e,n,r){tt(t(Vn,{debugEndpoint:n.debugEndpoint,authToken:n.authToken,dashboardPath:n.dashboardPath||void 0,defaultOpen:!0,isLive:r}),e)},unmount(e){tt(null,e)}};const qn=3e3,Wn=100,Jn=500;function Kn(e){return'"'+(e.length>40?e.slice(0,40)+"...":e)+'"'}function Qn(e,n,r){if(e.length===0)return"[]";const s=e.slice(0,3).map(o=>r(o,30)),l=e.length>3?", ..."+e.length+" items":"",i="["+s.join(", ")+l+"]";return i.length>n?"["+e.length+" items]":i}function Gn(e,n,r){const s=Object.keys(e);if(s.length===0)return"{}";const l=[];for(let c=0;c<Math.min(s.length,4);c++)l.push(s[c]+": "+r(e[s[c]],30));const i=s.length>4?", ...+"+(s.length-4):"",o="{ "+l.join(", ")+i+" }";return o.length<=n?o:"{ "+(s.slice(0,6).join(", ")+(s.length>6?", ...":""))+" }"}function Yn(e){if(!e&&e!==0)return"-";const n=Math.floor(e),r=Math.floor(n/86400),s=Math.floor(n%86400/3600),l=Math.floor(n%3600/60);return r>0?`${r}d ${s}h`:s>0?`${s}h ${l}m`:l>0?`${l}m ${n%60}s`:`${n}s`}function H(e){return e>=1e3?`${(e/1e3).toFixed(2)}s`:e>=1?`${e.toFixed(0)}ms`:`${e.toFixed(2)}ms`}function Tt(e){return/([+-]\d{2}:?\d{2}|Z)\s*$/.test(e)?e:e+"Z"}function q(e){if(!e)return"-";const n=typeof e=="string"?new Date(Tt(e)):new Date(e);return Number.isNaN(n.getTime())?"-":n.toLocaleTimeString("en-US",{hour12:!1,hour:"2-digit",minute:"2-digit",second:"2-digit"})+"."+String(n.getMilliseconds()).padStart(3,"0")}function j(e){if(!e)return"-";const n=typeof e=="string"?new Date(Tt(e)).getTime():e,r=Math.floor((Date.now()-n)/1e3);return r<0?"just now":r<60?`${r}s ago`:r<3600?`${Math.floor(r/60)}m ago`:r<86400?`${Math.floor(r/3600)}h ago`:`${Math.floor(r/86400)}d ago`}function Y(e){return e>Jn?"very-slow":e>Wn?"slow":"normal"}function me(e,n=100){return e===null?"null":e===void 0?"-":typeof e=="string"?Kn(e):typeof e=="number"||typeof e=="boolean"?String(e):Array.isArray(e)?Qn(e,n,me):typeof e=="object"?Gn(e,n,me):String(e)}function Xn(e){return e<0?"no expiry":e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}function Zn(e){return e<1024?`${e}B`:e<1024*1024?`${(e/1024).toFixed(1)}KB`:`${(e/(1024*1024)).toFixed(1)}MB`}function er(e,n){if(!n)return e;const r=n.toLowerCase();return e.filter(s=>s.sql.toLowerCase().includes(r)||s.model&&s.model.toLowerCase().includes(r)||s.method.toLowerCase().includes(r))}function tr(e){const n={};for(const r of e)n[r.sql]=(n[r.sql]||0)+1;return n}function nr(e,n){const r=e.filter(i=>i.duration>100).length,s=Object.values(n).filter(i=>i>1).length,l=e.length>0?e.reduce((i,o)=>i+o.duration,0)/e.length:0;return{slowCount:r,dupCount:s,avgDuration:l,totalCount:e.length}}const rr={queries:"/queries",events:"/events",emails:"/emails",routes:"/routes",logs:"/logs",timeline:"/traces",cache:"/cache",jobs:"/jobs",config:"/config",internals:"/diagnostics"};function sr(e){return rr[e]||`/${e}`}class lr{client;endpoint;refreshInterval;callbacks;timer=null;currentTab=null;fetchOnceCache={};abortController=null;constructor(n){this.client=new Me({baseUrl:n.baseUrl,authToken:n.authToken}),this.endpoint=n.endpoint??"/admin/api/debug",this.refreshInterval=n.refreshInterval??qn,this.callbacks={onData:n.onData,onLoading:n.onLoading,onError:n.onError,onUnauthorized:n.onUnauthorized}}start(n){this.stop(),this.currentTab=n,this.callbacks.onLoading(!0),this.callbacks.onError(null),this.fetchData(),this.timer=setInterval(()=>this.fetchData(),this.refreshInterval)}stop(){this.timer&&(clearInterval(this.timer),this.timer=null),this.abortController?.abort(),this.abortController=null}switchTab(n){this.start(n)}refresh(){this.currentTab&&this.fetchData()}async fetchCustomPane(n,r=!1){if(r&&this.fetchOnceCache[n]!==void 0){this.callbacks.onData(this.fetchOnceCache[n]),this.callbacks.onLoading(!1);return}this.callbacks.onLoading(!0);try{const s=await this.client.fetch(n);this.callbacks.onData(s),this.callbacks.onError(null),r&&(this.fetchOnceCache[n]=s)}catch(s){if(s instanceof _e){this.callbacks.onUnauthorized(s);return}this.callbacks.onError(s instanceof Error?s:new Error(String(s)))}finally{this.callbacks.onLoading(!1)}}cacheForTab(n,r){this.fetchOnceCache[n]=r}clearCache(){this.fetchOnceCache={}}async fetchData(){const n=this.currentTab;if(!n||this.serveFromCache(n))return;this.abortController?.abort();const r=new AbortController;this.abortController=r;try{const s=`${this.endpoint}${sr(n)}`,l=await this.client.fetch(s,{signal:r.signal});if(r.signal.aborted)return;this.callbacks.onData(l),this.callbacks.onError(null),this.callbacks.onLoading(!1)}catch(s){this.handleFetchError(s,r)}}serveFromCache(n){return this.fetchOnceCache[n]===void 0?!1:(this.callbacks.onData(this.fetchOnceCache[n]),this.callbacks.onLoading(!1),!0)}handleFetchError(n,r){if(!(n instanceof DOMException&&n.name==="AbortError")&&!r.signal.aborted){if(n instanceof _e){this.callbacks.onError(n),this.callbacks.onLoading(!1),this.stop(),this.callbacks.onUnauthorized(n);return}this.callbacks.onError(n instanceof Error?n:new Error(String(n))),this.callbacks.onLoading(!1)}}}function U(e,n={}){const{baseUrl:r="",debugEndpoint:s="/admin/api/debug",authToken:l}=n,[i,o]=x(null),[d,c]=x(!0),[a,h]=x(null),u=I(null);u.current||(u.current=new lr({baseUrl:r,endpoint:s,authToken:l,onData:b=>o(b),onLoading:b=>c(b),onError:b=>h(b),onUnauthorized:b=>h(b)})),F(()=>{const b=u.current;return b.start(e),()=>b.stop()},[e]);const f=k(()=>{u.current?.refresh()},[]),p=k(()=>{o(null)},[]),_=k((b,y)=>{u.current?.cacheForTab(b,y)},[]);return{data:i,isLoading:d,error:a,refresh:f,clearData:p,cacheForTab:_}}const ir="ss-col-resize",Lt="ss-resizing";function Et(e){const n=Array.from(e.querySelectorAll("thead th"));if(n.length===0)return()=>{};const r=[];let s=!1;function l(){if(!s){s=!0;for(const i of n)i.style.width=i.offsetWidth+"px";e.style.tableLayout="fixed"}}for(const i of n){let o=function(c){c.preventDefault(),c.stopPropagation(),l();const a=c.clientX,h=i.offsetWidth;d.classList.add(Lt),d.setPointerCapture(c.pointerId);function u(p){const _=p.clientX-a,b=Math.max(30,h+_);i.style.width=b+"px"}function f(){d.classList.remove(Lt),d.removeEventListener("pointermove",u),d.removeEventListener("pointerup",f)}d.addEventListener("pointermove",u),d.addEventListener("pointerup",f)};if(!i.textContent?.trim())continue;const d=document.createElement("div");d.className=ir,i.appendChild(d),d.addEventListener("pointerdown",o),r.push(()=>{d.removeEventListener("pointerdown",o),d.remove()})}return()=>{for(const i of r)i()}}function K(e=[]){const n=I(null),r=I(null);return F(()=>(n.current&&(r.current?.(),r.current=Et(n.current)),()=>{r.current?.(),r.current=null}),e),k(l=>{r.current?.(),r.current=null,n.current=l,l&&(r.current=Et(l))},[])}function W({search:e,onSearchChange:n,placeholder:r="Search...",summary:s,children:l,className:i=""}){const o=k(()=>{n("")},[n]);return t("div",{className:`ss-dbg-filter-bar ${i}`,children:[s!=null&&t("span",{className:"ss-dbg-summary",children:s}),t("div",{className:"ss-dbg-search-wrapper",children:[t("svg",{className:"ss-dbg-search-icon",width:"14",height:"14",viewBox:L.search.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.search.elements.join("")}}),t("input",{type:"text",className:"ss-dbg-search",placeholder:r,value:e,onChange:d=>n(d.target.value)}),e&&t("button",{type:"button",className:"ss-dbg-search-clear",onClick:o,children:"×"})]}),l&&t("div",{className:"ss-dbg-filter-controls",children:l})]})}function At({options:e}){const{data:n,isLoading:r,error:s}=U("queries",e),[l,i]=x(""),[o,d]=x(null),c=S(()=>n?.queries||[],[n]),a=S(()=>er(c,l),[c,l]),h=S(()=>tr(c),[c]),u=S(()=>nr(c,h),[c,h]),f=k(_=>{d(b=>b===_?null:_)},[]),p=K([a]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading queries..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t(W,{search:l,onSearchChange:i,placeholder:"Filter queries...",summary:t(O,{children:[a.length," queries",u.slowCount>0&&` | ${u.slowCount} slow`,u.dupCount>0&&` | ${u.dupCount} dup`,a.length>0&&` | avg ${H(u.avgDuration)}`]})}),a.length===0?t("div",{className:"ss-dbg-empty",children:"No queries captured"}):t("table",{ref:p,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"70px"}}),t("col",{style:{width:"100px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"SQL"}),t("th",{children:"Duration"}),t("th",{children:"Method"}),t("th",{children:"Model"}),t("th",{children:"Time"})]})}),t("tbody",{children:a.map(_=>t("tr",{children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:_.id}),t("td",{children:[t("span",{className:`ss-dbg-sql ${o===_.id?"ss-dbg-expanded":""}`,onClick:()=>f(_.id),role:"button",tabIndex:0,onKeyDown:b=>b.key==="Enter"&&f(_.id),children:_.sql}),h[_.sql]>1&&t("span",{className:"ss-dbg-dup",children:[" x",h[_.sql]]}),_.inTransaction&&t("span",{className:"ss-dbg-dup",children:" TXN"})]}),t("td",{className:`ss-dbg-duration ${Y(_.duration)==="very-slow"?"ss-dbg-very-slow":Y(_.duration)==="slow"?"ss-dbg-slow":""}`,children:H(_.duration)}),t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${_.method.toLowerCase()}`,children:_.method})}),t("td",{className:"ss-dbg-c-muted",children:_.model||"-"}),t("td",{className:"ss-dbg-event-time",title:q(_.timestamp),children:j(_.timestamp)})]},_.id))})]})]})}const ar=Object.freeze(Object.defineProperty({__proto__:null,QueriesTab:At,default:At},Symbol.toStringTag,{value:"Module"}));function ne({data:e,maxPreviewLength:n=100,className:r="",classPrefix:s="ss-dash",defaultExpanded:l=!1}){const[i,o]=x(l),d=S(()=>{if(typeof e=="string")try{return JSON.parse(e)}catch{return e}return e},[e]),c=S(()=>typeof d=="object"&&d!==null?me(d,n):String(d??"-"),[d,n]),a=S(()=>typeof d=="object"&&d!==null?JSON.stringify(d,null,2):String(d),[d]),h=k(()=>{o(f=>!f)},[]),u=k(async()=>{try{await navigator.clipboard.writeText(a)}catch{}},[a]);return!e&&e!==0&&e!==!1?t("span",{className:`ss-dim ${s}-c-dim`,children:"-"}):t("div",{className:`${s}-data-cell ${r}`,children:[!i&&t("span",{className:`${s}-data-preview`,onClick:h,role:"button",tabIndex:0,onKeyDown:f=>f.key==="Enter"&&h(),children:c}),i&&t("div",{className:`${s}-data-full`,onClick:h,children:[t("button",{className:`${s}-copy-btn`,onClick:f=>{f.stopPropagation(),u()},title:"Copy to clipboard",type:"button",children:"Copy"}),t("pre",{children:a})]})]})}function Mt({options:e}){const{data:n,isLoading:r,error:s}=U("events",e),[l,i]=x(""),o=S(()=>{const c=n?.events||[];if(!l)return c;const a=l.toLowerCase();return c.filter(h=>(h.event||"").toLowerCase().includes(a)||(h.data||"").toLowerCase().includes(a))},[n,l]),d=K([o]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading events..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t(W,{search:l,onSearchChange:i,placeholder:"Filter events...",summary:`${o.length} events`}),o.length===0?t("div",{className:"ss-dbg-empty",children:"No events captured"}):t("table",{ref:d,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"20%"}}),t("col",{}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"Event"}),t("th",{children:"Data"}),t("th",{children:"Time"})]})}),t("tbody",{children:o.map(c=>{const a=c.timestamp||c.created_at||c.createdAt;return t("tr",{children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:c.id}),t("td",{className:"ss-dbg-event-name",children:c.event}),t("td",{className:"ss-dbg-event-data",children:t(ne,{data:c.data,maxPreviewLength:80,classPrefix:"ss-dbg"})}),t("td",{className:"ss-dbg-event-time",title:q(a),children:j(a)})]},c.id)})})]})]})}const or=Object.freeze(Object.defineProperty({__proto__:null,EventsTab:Mt,default:Mt},Symbol.toStringTag,{value:"Module"}));function Pt({options:e}){const{data:n,isLoading:r,error:s}=U("emails",e),[l,i]=x(""),[o,d]=x(null),[c,a]=x(null),[h,u]=x(!1),f=S(()=>{const g=n?.emails||[];if(!l)return g;const w=l.toLowerCase();return g.filter($=>($.subject||"").toLowerCase().includes(w)||($.to||"").toLowerCase().includes(w)||($.from||"").toLowerCase().includes(w)||($.mailer||"").toLowerCase().includes(w))},[n,l]),p=S(()=>f.find(g=>g.id===o),[f,o]),_=k(async g=>{if(d(g.id),a(g.html||null),!g.html&&g.id){u(!0);try{const w=e?.debugEndpoint||"/admin/api/debug",$={};e?.authToken&&($.Authorization=`Bearer ${e.authToken}`);const v=await fetch(`${w}/emails/${g.id}/preview`,{headers:$,credentials:e?.authToken?"omit":"include"});v.ok&&a(await v.text())}catch{}finally{u(!1)}}},[e]),b=k(()=>{d(null),a(null),u(!1)},[]),y={sent:"ss-dbg-email-status-sent",sending:"ss-dbg-email-status-sending",queueing:"ss-dbg-email-status-queued",queued:"ss-dbg-email-status-queued",failed:"ss-dbg-email-status-failed"},m=K([f]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading emails..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):p?t("div",{className:"ss-dbg-email-preview",children:[t("div",{className:"ss-dbg-email-preview-header",children:[t("div",{className:"ss-dbg-email-preview-meta",children:[t("div",{children:[t("strong",{children:"Subject:"})," ",p.subject]}),t("div",{children:[t("strong",{children:"From:"})," ",p.from]}),t("div",{children:[t("strong",{children:"To:"})," ",p.to]}),p.cc&&t("div",{children:[t("strong",{children:"CC:"})," ",p.cc]})]}),t("button",{className:"ss-dbg-btn-clear",onClick:b,type:"button",children:"×"})]}),h?t("div",{className:"ss-dbg-empty",children:"Loading preview..."}):c?t("iframe",{className:"ss-dbg-email-iframe",srcDoc:c,title:"Email preview",sandbox:""}):t("div",{style:{padding:"12px",whiteSpace:"pre-wrap"},children:p.text||"No content"})]}):t("div",{children:[t(W,{search:l,onSearchChange:i,placeholder:"Filter emails...",summary:`${f.length} emails`}),f.length===0?t("div",{className:"ss-dbg-empty",children:"No emails captured"}):t("table",{ref:m,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"140px"}}),t("col",{style:{width:"140px"}}),t("col",{}),t("col",{style:{width:"70px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"40px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"From"}),t("th",{children:"To"}),t("th",{children:"Subject"}),t("th",{children:"Status"}),t("th",{children:"Mailer"}),t("th",{title:"Attachments",children:"📎"}),t("th",{children:"Time"})]})}),t("tbody",{children:f.map(g=>t("tr",{className:"ss-dbg-email-row",onClick:()=>_(g),children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:g.id}),t("td",{className:"ss-dbg-c-secondary",title:g.from,children:g.from}),t("td",{className:"ss-dbg-c-secondary",title:g.to,children:g.to}),t("td",{className:"ss-dbg-c-sql",children:g.subject}),t("td",{children:t("span",{className:`ss-dbg-email-status ${y[g.status]||""}`,children:g.status})}),t("td",{className:"ss-dbg-c-muted",children:g.mailer}),t("td",{className:"ss-dbg-c-dim",style:{textAlign:"center"},children:g.attachmentCount>0?g.attachmentCount:"-"}),t("td",{className:"ss-dbg-event-time",title:q(g.timestamp||g.created_at||g.createdAt),children:j(g.timestamp||g.created_at||g.createdAt)})]},g.id))})]})]})}const cr=Object.freeze(Object.defineProperty({__proto__:null,EmailsTab:Pt,default:Pt},Symbol.toStringTag,{value:"Module"}));function Ot({options:e,currentPath:n}){const{data:r,isLoading:s,error:l}=U("routes",e),[i,o]=x(""),d=S(()=>{const a=r?.routes||[];if(!i)return a;const h=i.toLowerCase();return a.filter(u=>u.pattern.toLowerCase().includes(h)||u.handler.toLowerCase().includes(h)||u.method.toLowerCase().includes(h)||u.name&&u.name.toLowerCase().includes(h))},[r,i]),c=K([d]);return s&&!r?t("div",{className:"ss-dbg-empty",children:"Loading routes..."}):l?t("div",{className:"ss-dbg-empty",children:["Error: ",l.message]}):t("div",{children:[t(W,{search:i,onSearchChange:o,placeholder:"Filter routes...",summary:`${d.length} routes`}),d.length===0?t("div",{className:"ss-dbg-empty",children:"No routes found"}):t("table",{ref:c,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"70px"}}),t("col",{style:{width:"25%"}}),t("col",{style:{width:"15%"}}),t("col",{}),t("col",{style:{width:"20%"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"Method"}),t("th",{children:"Pattern"}),t("th",{children:"Name"}),t("th",{children:"Handler"}),t("th",{children:"Middleware"})]})}),t("tbody",{children:d.map((a,h)=>{const u=n&&(a.pattern===n||new RegExp("^"+a.pattern.replace(/:[^/]+/g,"[^/]+")+"$").test(n));return t("tr",{className:u?"ss-dbg-current-route":"",children:[t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${a.method.toLowerCase()}`,children:a.method})}),t("td",{className:"ss-dbg-c-text",children:a.pattern}),t("td",{className:"ss-dbg-c-muted",children:a.name||"-"}),t("td",{className:"ss-dbg-c-sql",children:a.handler}),t("td",{className:"ss-dbg-c-dim",style:{fontSize:"10px"},children:a.middleware.length>0?a.middleware.join(", "):"-"})]},`${a.method}-${a.pattern}-${h}`)})})]})]})}const dr=Object.freeze(Object.defineProperty({__proto__:null,RoutesTab:Ot,default:Ot},Symbol.toStringTag,{value:"Module"}));function ur(e){if(typeof e=="string")try{return JSON.parse(e)}catch{return null}return typeof e=="object"&&e!==null&&!Array.isArray(e)?e:null}function It(e){const n={};for(const[r,s]of Object.entries(e))pr.has(r)||(n[r]=s);return Object.keys(n).length>0?n:null}const hr=["all","error","warn","info","debug"];function Ie(e){return(e.levelName||e.level_name||(typeof e.level=="string"?e.level:"")||"info").toLowerCase()}function De(e){return e.msg||e.message||JSON.stringify(e)}function Dt(e){return e.createdAt||e.created_at||e.time||e.timestamp||0}function Re(e){const n=e.data||{};return e.requestId||e.request_id||e["x-request-id"]||n.requestId||n.request_id||n["x-request-id"]||""}function Rt(e,n="ss-dbg-log-level"){switch(e){case"error":case"fatal":return`${n}-error`;case"warn":return`${n}-warn`;case"info":return`${n}-info`;case"debug":return`${n}-debug`;case"trace":return`${n}-trace`;default:return`${n}-info`}}function fr(e,n){return n==="all"?e:e.filter(r=>{const s=Ie(r);return n==="error"?s==="error"||s==="fatal":s===n})}const pr=new Set(["level","time","pid","hostname","msg","message","v","name","levelName","level_name","timestamp","createdAt","created_at","requestId","request_id","x-request-id","id","data"]);function jt(e){if(e.data){const n=ur(e.data);if(n){const r=It(n);if(r)return r}}return It(e)}function Bt({options:e}){const{data:n,isLoading:r,error:s}=U("logs",e),[l,i]=x("all"),[o,d]=x(""),[c,a]=x(""),[h,u]=x(null),f=S(()=>{let _=Array.isArray(n)?n:n?.logs||n?.entries||[];if(_=fr(_,l),c){const b=c.toLowerCase();_=_.filter(y=>Re(y).toLowerCase().includes(b))}if(o){const b=o.toLowerCase();_=_.filter(y=>De(y).toLowerCase().includes(b))}return _},[n,l,o,c]),p=k(_=>{a(b=>b===_?"":_)},[]);return r&&!n?t("div",{className:"ss-dbg-empty",children:"Loading logs..."}):s?t("div",{className:"ss-dbg-empty",children:["Error: ",s.message]}):t("div",{children:[t("div",{className:"ss-dbg-log-filters",children:[hr.map(_=>t("button",{type:"button",className:`ss-dbg-log-filter ${l===_?"ss-dbg-active":""}`,onClick:()=>i(_),children:_},_)),c&&t("button",{type:"button",className:"ss-dbg-log-filter ss-dbg-active",onClick:()=>a(""),children:["req: ",c.slice(0,8)," x"]}),t("span",{className:"ss-dbg-summary",style:{marginLeft:"auto"},children:[f.length," entries"]})]}),t(W,{search:o,onSearchChange:d,placeholder:"Filter log messages..."}),t("div",{style:{overflow:"auto",flex:1},children:f.length===0?t("div",{className:"ss-dbg-empty",children:"No log entries"}):f.slice(0,200).map((_,b)=>{const y=Ie(_),m=De(_),g=Dt(_),w=Re(_),$=jt(_);return t(Ct.Fragment,{children:[t("div",{className:`ss-dbg-log-entry${$?" ss-dbg-log-entry-expandable":""}`,onClick:()=>$&&u(h===b?null:b),children:[t("span",{className:`ss-dbg-log-level ${Rt(y)}`,children:y.toUpperCase()}),t("span",{className:"ss-dbg-log-time",title:g?q(g):"",children:g?j(g):"-"}),w?t("span",{className:"ss-dbg-log-reqid",onClick:v=>{v.stopPropagation(),p(w)},role:"button",tabIndex:0,title:w,onKeyDown:v=>{v.key==="Enter"&&(v.stopPropagation(),p(w))},children:w.slice(0,8)}):t("span",{className:"ss-dbg-log-reqid-empty",children:"-"}),$?t("span",{className:`ss-dbg-log-expand-icon${h===b?" ss-dbg-log-expand-icon-open":""}`,children:"▶"}):t("span",{style:{width:14}}),t("span",{className:"ss-dbg-log-msg",children:m})]}),h===b&&$&&t("div",{className:"ss-dbg-log-detail",children:t(ne,{data:$,classPrefix:"ss-dbg",defaultExpanded:!0})})]},b)})})]})}const _r=Object.freeze(Object.defineProperty({__proto__:null,LogsTab:Bt,default:Bt},Symbol.toStringTag,{value:"Module"}));function gr(e){const{container:n,handle:r,topPane:s,bottomPane:l,storageKey:i,minHeight:o=60}=e;if(i){const c=localStorage.getItem(i);if(c){const a=parseFloat(c);a>0&&a<1&&(s.style.flex=`${a}`,l.style.flex=`${1-a}`)}}function d(c){c.preventDefault(),r.setPointerCapture(c.pointerId);const h=n.getBoundingClientRect().height,u=c.clientY,f=s.getBoundingClientRect().height;function p(b){const y=b.clientY-u;let m=f+y;const g=h-o-r.offsetHeight;m=Math.max(o,Math.min(m,g));const w=m/(h-r.offsetHeight);s.style.flex=`${w}`,l.style.flex=`${1-w}`}function _(){if(r.removeEventListener("pointermove",p),r.removeEventListener("pointerup",_),i){const b=n.getBoundingClientRect().height-r.offsetHeight;if(b>0){const y=s.getBoundingClientRect().height/b;localStorage.setItem(i,String(y))}}}r.addEventListener("pointermove",p),r.addEventListener("pointerup",_)}return r.addEventListener("pointerdown",d),()=>{r.removeEventListener("pointerdown",d)}}function Ft(e="",n){const r=I(null);return k(()=>(r.current||(r.current=new Me({baseUrl:e,authToken:n})),r.current),[e,n])}function mr({logs:e,classPrefix:n="ss-dash"}){const[r,s]=x(null);return e.length===0?null:t("div",{children:[t("div",{className:`${n}-related-logs-title`,children:["Related Logs",t("span",{className:`${n}-related-logs-count`,children:["(",e.length,")"]})]}),t("div",{className:`${n}-log-entries`,style:{overflow:"auto"},children:e.map((l,i)=>{const o=Ie(l),d=De(l),c=Re(l),a=Dt(l),h=jt(l);return t(Ct.Fragment,{children:[t("div",{className:`${n}-log-entry${h?` ${n}-log-entry-expandable`:""}`,onClick:()=>h&&s(r===i?null:i),children:[t("span",{className:`${n}-log-level ${Rt(o,`${n}-log-level`)}`,children:o.toUpperCase()}),t("span",{className:`${n}-log-time`,title:a?q(a):"",children:a?j(a):"-"}),c?t("span",{className:`${n}-log-reqid`,title:c,children:c.slice(0,8)}):t("span",{className:`${n}-log-reqid-empty`,children:"--"}),h?t("span",{className:`${n}-log-expand-icon${r===i?` ${n}-log-expand-icon-open`:""}`,children:"▶"}):t("span",{style:{width:14}}),t("span",{className:`${n}-log-msg`,children:d})]}),r===i&&h&&t("div",{className:`${n}-log-detail`,children:t(ne,{data:h,classPrefix:n,defaultExpanded:!0})})]},l.id||i)})})]})}function br({children:e,classPrefix:n="ss-dbg",storageKey:r}){const s=I(null),l=I(null),i=I(null),o=I(null);return F(()=>{if(s.current&&l.current&&i.current&&o.current)return gr({container:s.current,handle:l.current,topPane:i.current,bottomPane:o.current,storageKey:r})},[r]),t("div",{ref:s,className:`${n}-split-container`,children:[t("div",{ref:i,className:`${n}-split-top`,children:e[0]}),t("div",{ref:l,className:`${n}-split-handle`}),t("div",{ref:o,className:`${n}-split-bottom`,children:e[1]})]})}const Ht={request:"#1e3a5f",middleware:"rgba(30, 58, 95, 0.7)",db:"#6d28d9",view:"#0e7490",mail:"#059669",event:"#b45309",custom:"#525252"},vr=[{label:"Request",color:"#1e3a5f"},{label:"Middleware",color:"rgba(30, 58, 95, 0.7)"},{label:"Database",color:"#6d28d9"},{label:"View",color:"#0e7490"},{label:"Mail",color:"#059669"},{label:"Event",color:"#b45309"}];function Ut({options:e}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e||{},{data:l,isLoading:i,error:o}=U("timeline",e),[d,c]=x(""),[a,h]=x(null),[u,f]=x(null),[p,_]=x(!1),[b,y]=x(null),m=S(()=>{const N=l?.traces||[];if(!d)return N;const A=d.toLowerCase();return N.filter(M=>M.url.toLowerCase().includes(A)||M.method.toLowerCase().includes(A)||String(M.statusCode).includes(A))},[l,d]),g=Ft(n,s);F(()=>{if(a===null){f(null),y(null);return}let N=!1;return _(!0),y(null),g().get(`${r}/traces/${a}`).then(M=>{N||(f(M),_(!1))}).catch(M=>{N||(y(M instanceof Error?M.message:"Failed to load trace"),_(!1))}),()=>{N=!0}},[a,r,g]);const w=k(N=>{h(A=>A===N?null:N)},[]),$=k(N=>N>=500?"ss-dbg-status-5xx":N>=400?"ss-dbg-status-4xx":N>=300?"ss-dbg-status-3xx":"ss-dbg-status-2xx",[]),v=K([m]);if(i&&!l)return t("div",{className:"ss-dbg-empty",children:"Loading traces..."});if(o)return t("div",{className:"ss-dbg-empty",children:["Error: ",o.message]});if(a!==null){if(p)return t("div",{className:"ss-dbg-empty",children:"Loading trace detail..."});if(b)return t("div",{children:[t("div",{className:"ss-dbg-tl-detail-header",children:t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:"← Back"})}),t("div",{className:"ss-dbg-empty",children:["Error: ",b]})]});if(!u)return t("div",{className:"ss-dbg-empty",children:"Loading trace detail..."});const N=u.spans||[],A=u.warnings||[],M=u.logs||[],D=M.length>0,J=t("div",{children:[t("div",{className:"ss-dbg-tl-legend",children:vr.map(P=>t("div",{className:"ss-dbg-tl-legend-item",children:[t("div",{className:"ss-dbg-tl-legend-dot",style:{background:P.color}}),t("span",{children:P.label})]},P.label))}),t("div",{style:{padding:"8px 12px",overflow:"auto"},children:N.length===0?t("div",{className:"ss-dbg-empty",children:"No spans captured for this request"}):N.map(P=>{const we=u.totalDuration||1,Gr=P.startOffset/we*100,Yr=Math.max(P.duration/we*100,.5);return t("div",{className:"ss-dbg-tl-row",children:[t("div",{className:"ss-dbg-tl-label",title:P.label,children:P.label}),t("div",{className:"ss-dbg-tl-track",children:t("div",{className:`ss-dbg-tl-bar ss-dbg-tl-bar-${P.category}`,style:{left:`${Gr}%`,width:`${Yr}%`,background:Ht[P.category]||Ht.custom},title:`${P.label}: ${H(P.duration)}`})}),t("span",{className:"ss-dbg-tl-dur",children:H(P.duration)})]},P.id)})}),A.length>0&&t("div",{className:"ss-dbg-tl-warnings",children:[t("div",{className:"ss-dbg-tl-warnings-title",children:"Warnings"}),A.map((P,we)=>t("div",{className:"ss-dbg-tl-warning",children:P},we))]})]});return t("div",{className:"ss-dbg-tl-detail-wrapper",children:[t("div",{className:"ss-dbg-tl-detail-header",children:[t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:"← Back"}),t("span",{className:`ss-dbg-method ss-dbg-method-${u.method.toLowerCase()}`,children:u.method}),t("span",{className:"ss-dbg-tl-detail-url",children:u.url}),t("span",{className:`ss-dbg-status ${$(u.statusCode)}`,children:u.statusCode}),t("span",{className:"ss-dbg-tl-meta",children:[H(u.totalDuration)," · ",u.spanCount," spans"]})]}),D?t(br,{classPrefix:"ss-dbg",storageKey:"ss-dbg-timeline-split",children:[J,t(mr,{logs:M,classPrefix:"ss-dbg"})]}):J]})}return t("div",{children:[t(W,{search:d,onSearchChange:c,placeholder:"Filter traces...",summary:`${m.length} traces`}),m.length===0?t("div",{className:"ss-dbg-empty",children:"No traces captured. Enable tracing in config."}):t("table",{ref:v,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"70px"}}),t("col",{}),t("col",{style:{width:"60px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"50px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"#"}),t("th",{children:"Method"}),t("th",{children:"URL"}),t("th",{children:"Status"}),t("th",{children:"Duration"}),t("th",{children:"Spans"}),t("th",{children:"Time"})]})}),t("tbody",{children:m.map(N=>t("tr",{className:"ss-dbg-email-row",onClick:()=>w(N.id),children:[t("td",{className:"ss-dbg-c-dim",style:{whiteSpace:"nowrap"},children:N.id}),t("td",{children:t("span",{className:`ss-dbg-method ss-dbg-method-${N.method.toLowerCase()}`,children:N.method})}),t("td",{title:N.url,children:N.url}),t("td",{children:t("span",{className:`ss-dbg-status ${$(N.statusCode)}`,children:N.statusCode})}),t("td",{className:`ss-dbg-duration ${Y(N.totalDuration)==="very-slow"?"ss-dbg-very-slow":Y(N.totalDuration)==="slow"?"ss-dbg-slow":""}`,children:H(N.totalDuration)}),t("td",{className:"ss-dbg-c-muted",style:{textAlign:"center"},children:N.spanCount}),t("td",{className:"ss-dbg-event-time",title:q(N.timestamp),children:j(N.timestamp)})]},N.id))})]})]})}const yr=Object.freeze(Object.defineProperty({__proto__:null,TimelineTab:Ut,default:Ut},Symbol.toStringTag,{value:"Module"}));function je(e,n){const r=S(()=>e?e.replace(/\/+$/,"")+"/api":null,[e]),s=S(()=>r?{...n,debugEndpoint:r}:n,[r,n]);return{dashApiBase:r,resolvedOptions:s}}function zt({options:e,dashboardPath:n}){const{dashApiBase:r,resolvedOptions:s}=je(n,e),{data:l,isLoading:i,error:o}=U("cache",s),[d,c]=x(""),[a,h]=x(null),[u,f]=x(null),p=S(()=>{const g=l?.keys||[];if(!d)return g;const w=d.toLowerCase();return g.filter($=>$.key.toLowerCase().includes(w))},[l,d]),_=k(async g=>{if(a===g){h(null),f(null);return}h(g);try{const{baseUrl:w="",authToken:$}=e||{},v=r||e?.debugEndpoint||"/admin/api/debug",N=`${w}${v}/cache/${encodeURIComponent(g)}`,A={Accept:"application/json"};$&&(A.Authorization=`Bearer ${$}`);const D=await(await fetch(N,{headers:A,credentials:$?"omit":"same-origin"})).json();f(D)}catch{f({error:"Failed to fetch key value"})}},[a,e,r]),b=K([p]);if(i&&!l)return t("div",{className:"ss-dbg-empty",children:"Loading cache data..."});if(o)return t("div",{className:"ss-dbg-empty",children:["Error: ",o.message]});if(!l)return t("div",{className:"ss-dbg-empty",children:"Cache inspector not available"});const m=l.stats||l;return t("div",{children:[t("div",{className:"ss-dbg-cache-stats",children:[t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Hit Rate:"}),t("span",{className:"ss-dbg-cache-stat-value",children:[m.hitRate!==null&&m.hitRate!==void 0?m.hitRate.toFixed(1):"0","%"]})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Hits:"}),t("span",{className:"ss-dbg-cache-stat-value",children:m.totalHits??0})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Misses:"}),t("span",{className:"ss-dbg-cache-stat-value",children:m.totalMisses??0})]}),t("div",{className:"ss-dbg-cache-stat",children:[t("span",{className:"ss-dbg-cache-stat-label",children:"Keys:"}),t("span",{className:"ss-dbg-cache-stat-value",children:m.keyCount??"-"})]})]}),t(W,{search:d,onSearchChange:c,placeholder:"Filter keys...",summary:`${p.length} keys`}),a&&!!u&&t("div",{className:"ss-dbg-cache-detail",children:[t("strong",{children:a}),t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:()=>h(null),children:["←"," Back"]}),t(ne,{data:u,classPrefix:"ss-dbg"})]}),p.length===0?t("div",{className:"ss-dbg-empty",children:"No cache keys found"}):t("table",{ref:b,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"Key"}),t("th",{children:"Type"}),t("th",{children:"TTL"}),t("th",{children:"Size"})]})}),t("tbody",{children:p.map(g=>t("tr",{className:"ss-dbg-email-row",onClick:()=>_(g.key),children:[t("td",{className:"ss-dbg-c-sql",children:g.key}),t("td",{className:"ss-dbg-c-muted",children:g.type}),t("td",{className:"ss-dbg-c-muted",children:g.ttl>0?Xn(g.ttl):"-"}),t("td",{className:"ss-dbg-c-dim",children:g.size>0?Zn(g.size):"-"})]},g.key))})]})]})}const wr=Object.freeze(Object.defineProperty({__proto__:null,CacheTab:zt,default:zt},Symbol.toStringTag,{value:"Module"})),Nr=["all","active","waiting","delayed","completed","failed"];function xr(e,n="ss-dbg-job-status"){switch(e){case"completed":case"failed":case"active":case"waiting":case"delayed":return`${n}-${e}`;default:return"ss-dbg-badge-muted"}}function $r(e){if(!e)return[];if(Array.isArray(e))return e;const n=e;return n.jobs||n.data||[]}function Cr(e){if(!e||Array.isArray(e))return null;const n=e;return n.stats||n.overview||null}function Vt({options:e,dashboardPath:n}){const{dashApiBase:r,resolvedOptions:s}=je(n,e),{data:l,isLoading:i,error:o}=U("jobs",s),[d,c]=x(""),[a,h]=x("all"),[u,f]=x(null),p=S(()=>{const m=$r(l),g=a==="all"?m:m.filter($=>$.status===a);if(!d)return g;const w=d.toLowerCase();return g.filter($=>$.name?.toLowerCase().includes(w)||$.id?.toString().includes(w))},[l,a,d]),_=k(async m=>{f(m);try{const{baseUrl:g="",authToken:w}=e||{},$=r||e?.debugEndpoint||"/admin/api/debug",v=`${g}${$}/jobs/${m}/retry`,N={Accept:"application/json"};w&&(N.Authorization=`Bearer ${w}`),await fetch(v,{method:"POST",headers:N,credentials:w?"omit":"same-origin"})}catch{}f(null)},[e,r]),b=K([p]);if(!r)return t("div",{className:"ss-dbg-empty",children:"Queue inspector not available (no dashboard configured)"});if(i&&!l)return t("div",{className:"ss-dbg-empty",children:"Loading jobs..."});if(o)return t("div",{className:"ss-dbg-empty",children:["Error: ",o.message]});if(!l)return t("div",{className:"ss-dbg-empty",children:"Queue inspector not available"});const y=Cr(l);return t("div",{children:[t(W,{search:d,onSearchChange:c,placeholder:"Filter jobs...",summary:`${p.length} jobs`}),t("div",{className:"ss-dbg-job-stats-area",children:[t("div",{className:"ss-dbg-job-stats",children:[t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Active:"}),t("span",{className:"ss-dbg-job-stat-value",children:y?.active??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Waiting:"}),t("span",{className:"ss-dbg-job-stat-value",children:y?.waiting??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Delayed:"}),t("span",{className:"ss-dbg-job-stat-value",children:y?.delayed??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Completed:"}),t("span",{className:"ss-dbg-job-stat-value",children:y?.completed??0})]}),t("div",{className:"ss-dbg-job-stat",children:[t("span",{className:"ss-dbg-job-stat-label",children:"Failed:"}),t("span",{className:"ss-dbg-job-stat-value ss-dbg-c-red",children:y?.failed??0})]})]}),t("div",{className:"ss-dbg-log-filters",children:Nr.map(m=>t("button",{type:"button",className:`ss-dbg-job-filter ${a===m?"ss-dbg-active":""}`,onClick:()=>h(m),children:m},m))})]}),p.length===0?t("div",{className:"ss-dbg-empty",children:"No jobs found"}):t("table",{ref:b,className:"ss-dbg-table",children:[t("colgroup",{children:[t("col",{style:{width:"50px"}}),t("col",{style:{width:"15%"}}),t("col",{style:{width:"80px"}}),t("col",{}),t("col",{style:{width:"50px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"80px"}}),t("col",{style:{width:"60px"}})]}),t("thead",{children:t("tr",{children:[t("th",{children:"ID"}),t("th",{children:"Name"}),t("th",{children:"Status"}),t("th",{children:"Payload"}),t("th",{children:"Tries"}),t("th",{children:"Duration"}),t("th",{children:"Time"}),t("th",{})]})}),t("tbody",{children:p.map(m=>{const g=m;return t("tr",{children:[t("td",{className:"ss-dbg-c-dim",children:m.id}),t("td",{className:"ss-dbg-c-sql",title:m.name,children:m.name}),t("td",{children:t("span",{className:`ss-dbg-badge ${xr(m.status)}`,children:m.status})}),t("td",{children:t(ne,{data:m.payload||m.data,maxPreviewLength:60,classPrefix:"ss-dbg"})}),t("td",{className:"ss-dbg-c-muted",style:{textAlign:"center"},children:m.attempts||g.attemptsMade||0}),t("td",{className:"ss-dbg-duration",children:m.duration!==null?H(m.duration):"-"}),t("td",{className:"ss-dbg-event-time",title:q(m.timestamp||m.createdAt||g.processedAt||g.created_at),children:j(m.timestamp||m.createdAt||g.processedAt||g.created_at)}),t("td",{children:m.status==="failed"&&t("button",{type:"button",className:"ss-dbg-retry-btn",onClick:()=>_(m.id),disabled:u===m.id,children:u===m.id?"...":"Retry"})})]},m.id)})})]})]})}const kr=Object.freeze(Object.defineProperty({__proto__:null,JobsTab:Vt,default:Vt},Symbol.toStringTag,{value:"Module"}));function B(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)&&e.__redacted===!0}function be(e){return e!=null&&typeof e=="object"&&!Array.isArray(e)&&!B(e)}function Be(e,n=""){if(!be(e))return[{path:n,value:e}];const r=[];for(const s of Object.keys(e)){const l=n?`${n}.${s}`:s,i=e[s];be(i)?r.push(...Be(i,l)):r.push({path:l,value:i})}return r}function Fe(e){return e==null?{text:"null",color:"var(--ss-dim)"}:typeof e=="boolean"?{text:String(e),color:e?"var(--ss-green-fg)":"var(--ss-red-fg)"}:typeof e=="number"?{text:String(e),color:"var(--ss-amber-fg)"}:Array.isArray(e)?{text:`[${e.map(r=>r==null?"null":typeof r=="object"?JSON.stringify(r):String(r)).join(", ")}]`,color:"var(--ss-purple-fg)"}:typeof e=="object"?{text:JSON.stringify(e),color:"var(--ss-dim)"}:{text:String(e)}}function qt(e){if(e==null||typeof e!="object"||Array.isArray(e)||B(e))return 1;let n=0;for(const r of Object.keys(e))n+=qt(e[r]);return n}function Sr(e){if(!be(e))return[];const n=[];for(const r of Object.keys(e))be(e[r])&&n.push(r);return n}function ve(e,n,r){n&&navigator.clipboard.writeText(e).then(()=>{const s=n.textContent;n.textContent="✓",n.classList.add(`${r}-copy-row-ok`),setTimeout(()=>{n.textContent=s,n.classList.remove(`${r}-copy-row-ok`)},1200)}).catch(()=>{})}function ye({redacted:e,p:n}){const[r,s]=x(!1);return t("span",{className:`${n}-config-redacted`,style:{display:"inline-flex",alignItems:"center",gap:"4px"},children:[t("span",{children:r?e.value:e.display}),t("button",{type:"button",className:`${n}-btn`,title:r?"Hide":"Reveal",style:{padding:"0 4px",fontSize:"0.85em",lineHeight:1,minWidth:"auto"},onClick:l=>{l.stopPropagation(),s(i=>!i)},children:r?t("svg",{width:"14",height:"14",viewBox:L["eye-off"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L["eye-off"].elements.join("")}}):t("svg",{width:"14",height:"14",viewBox:L.eye.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.eye.elements.join("")}})})]})}function Tr({env:e,search:n,p:r}){const s=I(new Map),l=n.toLowerCase(),i=Object.entries(e).filter(([o,d])=>{if(!l)return!0;const c=B(d)?d.display:d==null?"":String(d);return o.toLowerCase().includes(l)||c.toLowerCase().includes(l)});return t("div",{className:`${r}-config-table-wrap`,children:t("table",{className:`${r}-table ${r}-config-env-table`,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Variable"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:[i.map(([o,d])=>{const c=B(d),a=c?d.display:d==null?"null":String(d),h=`${o}=${a}`;return t("tr",{children:[t("td",{className:`${r}-env-key`,children:t("span",{className:`${r}-config-key`,children:o})}),t("td",{className:`${r}-env-val`,children:c?t(ye,{redacted:d,p:r}):t("span",{className:`${r}-config-val`,children:a})}),t("td",{children:!c&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:u=>{s.current.set(o,u)},onClick:u=>{u.stopPropagation(),ve(h,s.current.get(o)??null,r)},children:"⎘"})})]},o)}),i.length===0&&t("tr",{children:t("td",{colSpan:3,style:{textAlign:"center",color:"var(--ss-dim)"},children:"No matching variables"})})]})]})})}function Lr({source:e,search:n,p:r}){const s=I(new Map),l=n.toLowerCase(),i=Be(e,""),o=i.filter(d=>{const c=B(d.value)?d.value.display:d.value===null||d.value===void 0?"":String(d.value);return d.path.toLowerCase().includes(l)||c.toLowerCase().includes(l)});return t("div",{className:`${r}-config-table-wrap`,children:[t("table",{className:`${r}-table`,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Path"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:[o.map(d=>{const c=B(d.value),a=c?null:Fe(d.value),h=c?d.value.display:a.text,u=`${d.path}: ${h}`;return t("tr",{children:[t("td",{children:t("span",{className:`${r}-config-key`,style:{whiteSpace:"nowrap"},children:d.path})}),t("td",{children:c?t(ye,{redacted:d.value,p:r}):t("span",{className:`${r}-config-val`,style:{wordBreak:"break-all",color:a.color},children:a.text})}),t("td",{children:!c&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:f=>{s.current.set(d.path,f)},onClick:f=>{f.stopPropagation(),ve(u,s.current.get(d.path)??null,r)},children:"⎘"})})]},d.path)}),o.length===0&&t("tr",{children:t("td",{colSpan:3,style:{textAlign:"center",color:"var(--ss-dim)"},children:"No matching entries"})})]})]}),t("div",{style:{padding:"4px 16px",fontSize:"10px",color:"var(--ss-muted)"},children:[o.length," of ",i.length," entries"]})]})}function Er({obj:e,prefix:n,p:r}){const s=I(new Map),l=Be(e,n);return t("table",{className:`${r}-table ${r}-config-inner-table`,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"35%"},children:"Key"}),t("th",{children:"Value"}),t("th",{style:{width:36}})]})}),t("tbody",{children:l.map(i=>{const o=i.path.indexOf(n+".")===0?i.path.slice(n.length+1):i.path,d=B(i.value),c=d?null:Fe(i.value),a=d?i.value.display:c.text,h=`${i.path}: ${a}`;return t("tr",{children:[t("td",{title:o,children:t("span",{className:`${r}-config-key`,children:o})}),t("td",{title:a,children:d?t(ye,{redacted:i.value,p:r}):t("span",{className:`${r}-config-val`,style:{color:c.color},children:c.text})}),t("td",{children:!d&&t("button",{type:"button",className:`${r}-copy-row-btn`,title:"Copy",ref:u=>{s.current.set(i.path,u)},onClick:u=>{u.stopPropagation(),ve(h,s.current.get(i.path)??null,r)},children:"⎘"})})]},i.path)})})]})}function Ar({value:e,p:n}){if(e==null)return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-dim)"},children:"null"});if(B(e))return t(ye,{redacted:e,p:n});if(typeof e=="boolean")return t("span",{className:`${n}-config-val`,style:{color:e?"var(--ss-green-fg)":"var(--ss-red-fg)"},children:String(e)});if(typeof e=="number")return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-amber-fg)"},children:String(e)});if(Array.isArray(e)){const r=e.map(s=>s==null?"null":typeof s=="object"?JSON.stringify(s):String(s));return t("span",{className:`${n}-config-val`,style:{color:"var(--ss-purple-fg)"},children:["[",r.join(", "),"]"]})}return typeof e=="object"?t("span",{className:`${n}-config-val`,style:{color:"var(--ss-dim)"},children:JSON.stringify(e)}):t("span",{className:`${n}-config-val`,children:String(e)})}function Mr({obj:e,expandedPaths:n,onToggle:r,p:s}){if(e==null||typeof e!="object"||Array.isArray(e)||B(e))return null;const l=Object.keys(e),i=I(new Map);return t("div",{className:`${s}-config-sections`,children:l.map(o=>{const d=e[o],c=d!==null&&typeof d=="object"&&!Array.isArray(d)&&!B(d),a=n.has(o),h=B(d);return t("div",{className:`${s}-config-section`,children:[t("div",{className:`${s}-config-section-header${c?"":` ${s}-config-leaf`}`,onClick:c?()=>r(o):void 0,style:{cursor:c?"pointer":"default"},children:[c?t("span",{className:`${s}-config-toggle`,children:a?"▼":"▶"}):t("span",{className:`${s}-config-toggle`,style:{visibility:"hidden"},children:"•"}),t("span",{className:`${s}-config-key`,children:o}),c?t("span",{className:`${s}-config-count`,children:[qt(d)," entries"]}):t(O,{children:[t("span",{className:`${s}-config-val`,style:{marginLeft:"8px"},children:t(Ar,{value:d,p:s})}),!h&&t("button",{type:"button",className:`${s}-copy-row-btn`,style:{marginLeft:"4px"},title:"Copy",ref:u=>{i.current.set(o,u)},onClick:u=>{u.stopPropagation();const f=Fe(d);ve(`${o}: ${f.text}`,i.current.get(o)??null,s)},children:"⎘"})]})]}),c&&a&&t("div",{className:`${s}-config-section-body`,children:t(Er,{obj:d,prefix:o,p:s})})]},o)})})}function Pr({data:e,isLoading:n,classPrefix:r}){const s=r,[l,i]=x(""),[o,d]=x(""),[c,a]=x("app"),[h,u]=x(new Set),[f,p]=x("Copy JSON");F(()=>{const w=setTimeout(()=>d(l),200);return()=>clearTimeout(w)},[l]);const _=e,b=k(w=>{u($=>{const v=new Set($);return v.has(w)?v.delete(w):v.add(w),v})},[]),y=k(()=>{if(!_)return;const w=c==="app"?_.app:_.env;if(!w)return;const $=Sr(w);u(new Set($))},[_,c]),m=k(()=>{u(new Set)},[]),g=k(async()=>{if(_)try{const w=c==="app"?_.app:_.env;await navigator.clipboard.writeText(JSON.stringify(w,null,2)),p("Copied!"),setTimeout(()=>p("Copy JSON"),1500)}catch{}},[_,c]);return t("div",{children:[t("div",{className:`${s}-config-toolbar`,style:{display:"flex",alignItems:"center",gap:"8px",padding:"8px 12px"},children:[t("button",{type:"button",className:`${s}-config-tab${c==="app"?` ${s}-active`:""}`,onClick:()=>a("app"),children:"App Config"}),t("button",{type:"button",className:`${s}-config-tab${c==="env"?` ${s}-active`:""}`,onClick:()=>a("env"),children:"Env"}),t("div",{style:{position:"relative",flex:1},children:[t("input",{type:"text",className:`${s}-search`,placeholder:"Search keys and values...",value:l,onChange:w=>i(w.target.value),style:{width:"100%"}}),l&&t("button",{type:"button",onClick:()=>i(""),style:{position:"absolute",right:"6px",top:"50%",transform:"translateY(-50%)",background:"none",border:"none",cursor:"pointer",fontSize:"14px",color:"var(--ss-dim)",padding:"0 2px",lineHeight:1},children:"×"})]}),c==="app"&&!o&&t(O,{children:[t("button",{type:"button",className:`${s}-btn`,onClick:y,children:"Expand All"}),t("button",{type:"button",className:`${s}-btn`,onClick:m,children:"Collapse All"})]}),t("button",{type:"button",className:`${s}-btn`,onClick:g,children:f})]}),n&&!e?t("div",{className:`${s}-empty`,children:"Loading config..."}):_?c==="env"?t(Tr,{env:_.env??{},search:o,p:s}):o?t(Lr,{source:_.app??{},search:o,p:s}):t("div",{className:`${s}-config-table-wrap`,children:t(Mr,{obj:_.app,expandedPaths:h,onToggle:b,p:s})}):t("div",{className:`${s}-empty`,children:"Config not available"})]})}function Wt({options:e,dashboardPath:n}){const{resolvedOptions:r}=je(n,e),{data:s,isLoading:l,error:i}=U("config",r);return i?t("div",{className:"ss-dbg-empty",children:["Error: ",i.message]}):t(Pr,{data:s,isLoading:l,classPrefix:"ss-dbg"})}const Or=Object.freeze(Object.defineProperty({__proto__:null,ConfigTab:Wt,default:Wt},Symbol.toStringTag,{value:"Module"})),Ir=["password","secret","token","key","credential","auth"];function Jt(e){const n=e.toLowerCase();return Ir.some(r=>n.includes(r))}function Kt(e){if(e==null)return"-";if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return String(e);if(Array.isArray(e))return e.join(", ")||"-";try{return JSON.stringify(e)}catch{return String(e)}}const Dr={collectionInterval:"Stats Collection",dashboardBroadcast:"Dashboard Broadcast",debugBroadcast:"Debug Broadcast",persistFlush:"Persist Flush",retentionCleanup:"Retention Cleanup"};function Rr(e){return Dr[e]||e}const jr={prometheus:"Prometheus",pinoHook:"Pino Log Hook",edgePlugin:"Edge Plugin",cacheInspector:"Cache Inspector",queueInspector:"Queue Inspector"};function Br(e){return jr[e]||e}const Fr=["healthy","active","connected","available","ready"],Hr=["errored","unavailable"];function Ur(e){return Fr.includes(e)?"ok":Hr.includes(e)?"err":""}function re({status:e,prefix:n}){const r=Ur(e);let s=`${n}-dot`;return r==="ok"?s+=` ${n}-dot-ok`:r==="err"&&(s+=` ${n}-dot-err`),t("span",{className:s})}const Qt=()=>t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:L.eye.viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L.eye.elements.join("")}}),Gt=()=>t("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:L["eye-off"].viewBox,fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",dangerouslySetInnerHTML:{__html:L["eye-off"].elements.join("")}});function zr({value:e}){const[n,r]=x(!1);return t("span",{children:[n?e:"••••••••"," ",t("button",{type:"button",onClick:()=>r(s=>!s),style:{background:"none",border:"1px solid var(--ss-border)",borderRadius:3,padding:"0 4px",fontSize:"10px",color:"var(--ss-dim)",cursor:"pointer",verticalAlign:"middle"},children:n?t(Gt,{}):t(Qt,{})})]})}function Vr({current:e,max:n,prefix:r}){const s=n>0?Math.min(100,Math.round(e/n*100)):0,l=s>=100;return t("div",{className:`${r}-bar`,children:[t("div",{className:`${r}-bar-track`,children:t("div",{className:`${r}-bar-fill${l?` ${r}-bar-fill-warn`:""}`,style:{width:`${s}%`}})}),t("span",{className:`${r}-bar-pct${l?` ${r}-bar-pct-warn`:""}`,children:[s,"%"]})]})}function qr({config:e,prefix:n}){const r=Object.entries(e);return r.length===0?t("span",{className:`${n}-c-dim`,children:"-"}):t("span",{className:`${n}-c-muted`,children:r.map(([s,l],i)=>t("span",{children:[i>0&&", ",t("span",{className:`${n}-c-dim`,children:s}),"=",Jt(s)&&typeof l=="string"?t(zr,{value:l}):t("span",{children:Kt(l)})]},s))})}function se({label:e,value:n,prefix:r}){return t("div",{className:`${r}-info-card`,children:[t("span",{className:`${r}-info-card-label`,children:e}),t("span",{className:`${r}-info-card-value`,children:n})]})}function Wr({data:e,tableClassName:n,classPrefix:r}){const s=r||"ss-dash",[l,i]=x(new Set),o=k(c=>{i(a=>{const h=new Set(a);return h.has(c)?h.delete(c):h.add(c),h})},[]),d=k((c,a)=>{if(a==null)return t("span",{className:`${s}-c-dim`,children:"null"});if(typeof a=="boolean")return t("span",{className:a?`${s}-c-green`:`${s}-c-red`,children:String(a)});if(Array.isArray(a))return t("span",{children:a.join(", ")||"-"});const h=Kt(a);if(Jt(c)){const u=l.has(c);return t("span",{children:[u?h:"••••••••"," ",t("button",{type:"button",onClick:()=>o(c),style:{background:"none",border:"1px solid var(--ss-border)",borderRadius:3,padding:"0 4px",fontSize:"10px",color:"var(--ss-dim)",cursor:"pointer",verticalAlign:"middle"},children:u?t(Gt,{}):t(Qt,{})})]})}return t("span",{children:h})},[l,o,s]);return t("div",{children:[t("h3",{className:`${s}-internals-title`,children:"Package Info"}),t("div",{className:`${s}-info-cards`,children:[t(se,{label:"Version",value:e.package.version||"-",prefix:s}),t(se,{label:"Node.js",value:e.package.nodeVersion||"-",prefix:s}),t(se,{label:"AdonisJS",value:e.package.adonisVersion||"-",prefix:s}),t(se,{label:"Uptime",value:Yn(e.package.uptime),prefix:s}),t(se,{label:"Renderer",value:e.devToolbar?.renderer||"preact",prefix:s})]}),e.collectors.length>0&&t(O,{children:[t("h3",{className:`${s}-internals-title`,children:"Collectors"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Collector"}),t("th",{children:"Status"}),t("th",{children:"Last Error"}),t("th",{children:"Config"})]})}),t("tbody",{children:e.collectors.map(c=>t("tr",{children:[t("td",{children:[t("code",{children:c.name}),c.label&&c.label!==c.name&&t("span",{className:`${s}-c-dim`,children:[" ",c.label]})]}),t("td",{children:[t(re,{status:c.status,prefix:s}),c.status]}),t("td",{className:c.lastError?`${s}-c-red`:`${s}-c-dim`,children:c.lastError?t(O,{children:[c.lastError,c.lastErrorAt&&t("span",{className:`${s}-c-dim`,style:{fontSize:"10px"},children:j(c.lastErrorAt)})]}):"-"}),t("td",{children:t(qr,{config:c.config,prefix:s})})]},c.name))})]})]}),t("h3",{className:`${s}-internals-title`,children:"Buffers"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Buffer"}),t("th",{children:"Usage"}),t("th",{children:"Fill %"})]})}),t("tbody",{children:Object.entries(e.buffers).map(([c,a])=>t("tr",{children:[t("td",{style:{textTransform:"capitalize"},children:c}),t("td",{children:[a.current.toLocaleString()," / ",a.max.toLocaleString()]}),t("td",{children:t(Vr,{current:a.current,max:a.max,prefix:s})})]},c))})]}),t("h3",{className:`${s}-internals-title`,children:"Timers"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Timer"}),t("th",{children:"Status"}),t("th",{children:"Interval"})]})}),t("tbody",{children:Object.entries(e.timers).map(([c,a])=>t("tr",{children:[t("td",{children:Rr(c)}),t("td",{children:[t(re,{status:a.active?"active":"inactive",prefix:s}),t("span",{className:a.active?`${s}-c-green`:`${s}-c-dim`,children:a.active?"active":"inactive"})]}),t("td",{children:a.active?a.intervalMs?H(a.intervalMs):a.debounceMs?`${H(a.debounceMs)} (debounce)`:"-":t("span",{className:`${s}-c-dim`,children:"—"})})]},c))})]}),t("h3",{className:`${s}-internals-title`,children:"Integrations"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{children:"Integration"}),t("th",{children:"Status"}),t("th",{children:"Details"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"Transmit (SSE)"}),t("td",{children:[t(re,{status:e.transmit.available?"connected":"inactive",prefix:s}),e.transmit.available?"connected":"unavailable"]}),t("td",{style:{fontSize:"11px"},children:e.transmit.channels.length>0?`Channels: ${e.transmit.channels.join(", ")}`:"-"})]}),Object.entries(e.integrations).map(([c,a])=>{const h=a.active??a.available??!1,u=a.active?"active":a.available?"available":"unavailable";let f=a.mode?`Mode: ${a.mode}`:"-";return c==="edgePlugin"&&a.active?f="@serverStats() tag registered":c==="cacheInspector"&&a.available?f="Redis dependency detected":c==="queueInspector"&&a.available&&(f="Queue dependency detected"),t("tr",{children:[t("td",{children:Br(c)}),t("td",{children:[t(re,{status:h?"active":"inactive",prefix:s}),u]}),t("td",{className:`${s}-c-dim`,style:{fontSize:"11px"},children:f})]},c)})]})]}),e.storage&&t(O,{children:[t("h3",{className:`${s}-internals-title`,children:"Storage (SQLite)"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Metric"}),t("th",{children:"Value"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"Status"}),t("td",{children:[t(re,{status:e.storage.ready?"ready":"inactive",prefix:s}),e.storage.ready?"ready":"not ready"]})]}),t("tr",{children:[t("td",{children:"DB Path"}),t("td",{children:t("code",{children:e.storage.dbPath})})]}),t("tr",{children:[t("td",{children:"File Size"}),t("td",{children:[e.storage.fileSizeMb.toFixed(1)," MB"]})]}),t("tr",{children:[t("td",{children:"WAL Size"}),t("td",{children:[e.storage.walSizeMb.toFixed(1)," MB"]})]}),t("tr",{children:[t("td",{children:"Retention"}),t("td",{children:[e.storage.retentionDays," days"]})]}),t("tr",{children:[t("td",{children:"Last Cleanup"}),t("td",{children:e.storage.lastCleanupAt?j(e.storage.lastCleanupAt):"-"})]})]})]}),e.storage.tables.length>0&&t("table",{className:n,style:{marginTop:8},children:[t("thead",{children:t("tr",{children:[t("th",{children:"Table"}),t("th",{children:"Rows"})]})}),t("tbody",{children:e.storage.tables.map(c=>t("tr",{children:[t("td",{children:t("code",{children:c.name})}),t("td",{children:c.rowCount.toLocaleString()})]},c.name))})]})]}),t("h3",{className:`${s}-internals-title`,children:"Resolved Config"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Setting"}),t("th",{children:"Value"})]})}),t("tbody",{children:[t("tr",{children:[t("td",{children:"intervalMs"}),t("td",{children:e.config.intervalMs})]}),t("tr",{children:[t("td",{children:"transport"}),t("td",{children:e.config.transport})]}),t("tr",{children:[t("td",{children:"channelName"}),t("td",{children:e.config.channelName})]}),t("tr",{children:[t("td",{children:"endpoint"}),t("td",{children:e.config.endpoint===!1?"false":e.config.endpoint})]}),t("tr",{children:[t("td",{children:"skipInTest"}),t("td",{children:d("skipInTest",e.config.skipInTest)})]}),t("tr",{children:[t("td",{children:"onStats callback"}),t("td",{children:e.config.hasOnStatsCallback?"defined":"not defined"})]}),t("tr",{children:[t("td",{children:"shouldShow callback"}),t("td",{children:e.config.hasShouldShowCallback?"defined":"not defined"})]})]})]}),t("h4",{className:`${s}-internals-title`,children:"DevToolbar"}),t("table",{className:n,children:[t("thead",{children:t("tr",{children:[t("th",{style:{width:"200px"},children:"Setting"}),t("th",{children:"Value"})]})}),t("tbody",{children:Object.entries(e.devToolbar).map(([c,a])=>t("tr",{children:[t("td",{children:c==="customPaneCount"?"customPanes":c}),t("td",{children:c==="customPaneCount"?`${a} registered`:d(c,a)})]},c))})]})]})}const Jr=3e3;function Yt({options:e}){const{baseUrl:n="",debugEndpoint:r="/admin/api/debug",authToken:s}=e||{},[l,i]=x(null),[o,d]=x(!0),[c,a]=x(null),h=I(null),u=Ft(n,s),f=k(async()=>{try{const _=await u().get(`${r}/diagnostics`);i(_),a(null),d(!1)}catch(p){if(p instanceof _e){a(p),d(!1),h.current&&(clearInterval(h.current),h.current=null);return}a(p instanceof Error?p:new Error(String(p))),d(!1)}},[r,u]);return F(()=>(d(!0),a(null),f(),h.current=setInterval(f,Jr),()=>{h.current&&(clearInterval(h.current),h.current=null)}),[f]),o&&!l?t("div",{className:"ss-dbg-empty",children:"Loading diagnostics..."}):c?t("div",{className:"ss-dbg-empty",children:["Error: ",c.message]}):l?t(Wr,{data:l,tableClassName:"ss-dbg-table",classPrefix:"ss-dbg"}):t("div",{className:"ss-dbg-empty",children:"Diagnostics not available"})}const Kr=Object.freeze(Object.defineProperty({__proto__:null,InternalsTab:Yt,default:Yt},Symbol.toStringTag,{value:"Module"}));function Xt({pane:e,options:n}){({...n});const{data:r,isLoading:s,error:l,clearData:i}=U(e.endpoint.replace(/^\//,""),{...n,debugEndpoint:""}),[o,d]=x(""),c=S(()=>{if(!r)return[];const f=e.dataKey||e.id;let p=r;for(const _ of f.split("."))p=p?.[_];return Array.isArray(p)?p:[]},[r,e.dataKey,e.id]),a=S(()=>{if(!o)return c;const f=o.toLowerCase(),p=e.columns.filter(_=>_.searchable).map(_=>_.key);return p.length===0?c:c.filter(_=>p.some(b=>{const y=_[b];return y!==null&&String(y).toLowerCase().includes(f)}))},[c,o,e.columns]),h=(f,p)=>{if(f==null)return t("span",{className:"ss-dbg-c-dim",children:"-"});switch(p.format||"text"){case"time":return t("span",{className:"ss-dbg-event-time",title:q(f),children:typeof f=="number"?j(f):String(f)});case"timeAgo":return t("span",{className:"ss-dbg-event-time",title:q(f),children:j(f)});case"duration":{const b=typeof f=="number"?f:parseFloat(String(f));return isNaN(b)?String(f):t("span",{className:`ss-dbg-duration ${Y(b)==="very-slow"?"ss-dbg-very-slow":Y(b)==="slow"?"ss-dbg-slow":""}`,children:H(b)})}case"method":return t("span",{className:`ss-dbg-method ss-dbg-method-${String(f).toLowerCase()}`,children:String(f)});case"json":{let b=f;if(typeof f=="string")try{b=JSON.parse(f)}catch{}return me(b,80)}case"badge":{const b=String(f).toLowerCase(),m=(p.badgeColorMap||{})[b]||"muted";return t("span",{className:`ss-dbg-badge ss-dbg-badge-${m}`,children:String(f)})}default:return String(f)}},u=K([a]);return s&&!r?t("div",{className:"ss-dbg-empty",children:["Loading ",e.label,"..."]}):l?t("div",{className:"ss-dbg-empty",children:["Error: ",l.message]}):t("div",{children:[e.search&&t(W,{search:o,onSearchChange:d,placeholder:e.search.placeholder,summary:`${a.length} items`,children:e.clearable&&t("button",{type:"button",className:"ss-dbg-btn-clear",onClick:i,children:"Clear"})}),a.length===0?t("div",{className:"ss-dbg-empty",children:"No data"}):t("table",{ref:u,className:"ss-dbg-table",children:[t("thead",{children:t("tr",{children:e.columns.map(f=>t("th",{children:f.label},f.key))})}),t("tbody",{children:a.map((f,p)=>t("tr",{children:e.columns.map(_=>t("td",{children:h(f[_.key],_)},_.key))},f.id??p))})]})]})}const Qr=Object.freeze(Object.defineProperty({__proto__:null,CustomPaneTab:Xt,default:Xt},Symbol.toStringTag,{value:"Module"}))})();