@serve.zone/dcrouter 9.1.1 → 9.1.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.
package/dist_serve/bundle.js
CHANGED
|
@@ -9959,7 +9959,7 @@ console.log(greeting);`}
|
|
|
9959
9959
|
</div>
|
|
9960
9960
|
</div>
|
|
9961
9961
|
</div>
|
|
9962
|
-
`}async firstUpdated(){}async updated(ke){super.updated(ke),this.determineColumnWidths(),this.searchable&&(this.dataActions.find(Ae=>Ae.type?.includes("header")&&Ae.name==="Search")||(this.dataActions.unshift({name:"Search",iconName:"
|
|
9962
|
+
`}async firstUpdated(){}async updated(ke){super.updated(ke),this.determineColumnWidths(),this.searchable&&(this.dataActions.find(Ae=>Ae.type?.includes("header")&&Ae.name==="Search")||(this.dataActions.unshift({name:"Search",iconName:"lucide:Search",type:["header"],actionFunc:async()=>{console.log("open search"),this.shadowRoot.querySelector(".searchGrid").classList.toggle("hidden")}}),console.log(this.dataActions),this.requestUpdate()),this.wireSearchInputs())}__debounceTimer;debounceRun(ke,ue=200){this.__debounceTimer&&clearTimeout(this.__debounceTimer),this.__debounceTimer=setTimeout(ke,ue)}wireSearchInputs(){let ke=this.shadowRoot?.querySelector(".searchGrid dees-input-text"),ue=this.shadowRoot?.querySelector(".searchGrid dees-input-multitoggle");ke&&!this.__searchTextSub&&(this.__searchTextSub=ke.changeSubject.subscribe(Ae=>{let B1=Ae?.value??"";this.debounceRun(()=>{this.searchMode==="server"?this.dispatchEvent(new CustomEvent("searchRequest",{detail:{query:B1,mode:"server"},bubbles:!0})):this.setFilterText(B1)})})),ue&&!this.__searchModeSub&&(this.__searchModeSub=ue.changeSubject.subscribe(Ae=>{let B1=Ae?.selectedOption||Ae?.value||"table";if(B1==="table"||B1==="data"||B1==="server"){this.searchMode=B1;let nt=ke?.value??"";this.debounceRun(()=>{this.searchMode==="server"?this.dispatchEvent(new CustomEvent("searchRequest",{detail:{query:nt,mode:"server"},bubbles:!0})):this.setFilterText(nt)})}}))}async determineColumnWidths(){await(await this.domtoolsPromise).convenience.smartdelay.delayFor(0);let ue=this.shadowRoot.querySelector("table");if(!ue)return;let Ae=ue.rows[0].cells,B1=async(nt,p1=!1)=>{let p2=Be.defer(),tt=Ae[nt],Y1=window.getComputedStyle(tt).width;if(tt.textContent.includes("Actions")){let u2=this.dataActions.filter(Fi=>Fi.type?.includes("inRow")).length*36;tt.style.width=`${Math.max(u2,68)}px`}else tt.style.width=Y1;p1&&(requestAnimationFrame(()=>{p2.resolve()}),await p2.promise)};Ae[Ae.length-1].textContent.includes("Actions")&&await B1(Ae.length-1,!0);for(let nt=0;nt<Ae.length;nt++)Ae[nt].textContent.includes("Actions")||await B1(nt);ue.style.tableLayout="fixed"}toggleSort(ke){let ue=String(ke.key);this.sortKey!==ue?(this.sortKey=ue,this.sortDir="asc"):this.sortDir==="asc"?this.sortDir="desc":this.sortDir==="desc"?(this.sortDir=null,this.sortKey=void 0):this.sortDir="asc",this.dispatchEvent(new CustomEvent("sortChange",{detail:{key:this.sortKey,dir:this.sortDir},bubbles:!0})),this.requestUpdate()}getAriaSort(ke){return String(ke.key)!==this.sortKey||!this.sortDir?"none":this.sortDir==="asc"?"ascending":"descending"}renderSortIndicator(ke){return String(ke.key)!==this.sortKey||!this.sortDir?w``:w`<span style="margin-left:6px; opacity:0.7;">${this.sortDir==="asc"?"\u25B2":"\u25BC"}</span>`}setFilterText(ke){let ue=this.filterText;this.filterText=ke??"",ue!==this.filterText&&(this.dispatchEvent(new CustomEvent("filterChange",{detail:{text:this.filterText,columns:{...this.columnFilters}},bubbles:!0})),this.requestUpdate())}setColumnFilter(ke,ue){this.columnFilters={...this.columnFilters,[ke]:ue},this.dispatchEvent(new CustomEvent("filterChange",{detail:{text:this.filterText,columns:{...this.columnFilters}},bubbles:!0})),this.requestUpdate()}getRowId(ke){if(this.rowKey)return typeof this.rowKey=="function"?this.rowKey(ke):String(ke[this.rowKey]);let ue=ke;return this._rowIdMap.has(ue)||this._rowIdMap.set(ue,String(++this._rowIdCounter)),this._rowIdMap.get(ue)}isRowSelected(ke){return this.selectedIds.has(this.getRowId(ke))}toggleRowSelected(ke){let ue=this.getRowId(ke);this.selectionMode==="single"?(this.selectedIds.clear(),this.selectedIds.add(ue)):this.selectionMode==="multi"&&(this.selectedIds.has(ue)?this.selectedIds.delete(ue):this.selectedIds.add(ue)),this.emitSelectionChange(),this.requestUpdate()}setRowSelected(ke,ue){let Ae=this.getRowId(ke);this.selectionMode==="single"?(this.selectedIds.clear(),ue&&this.selectedIds.add(Ae)):this.selectionMode==="multi"&&(ue?this.selectedIds.add(Ae):this.selectedIds.delete(Ae)),this.emitSelectionChange(),this.requestUpdate()}areAllVisibleSelected(){let ke=this._lastViewData||[];if(ke.length===0)return!1;for(let ue of ke)if(!this.selectedIds.has(this.getRowId(ue)))return!1;return!0}isVisibleSelectionIndeterminate(){let ke=this._lastViewData||[];if(ke.length===0)return!1;let ue=0;for(let Ae of ke)this.selectedIds.has(this.getRowId(Ae))&&ue++;return ue>0&&ue<ke.length}setSelectVisible(ke){let ue=this._lastViewData||[];if(ke)for(let Ae of ue)this.selectedIds.add(this.getRowId(Ae));else for(let Ae of ue)this.selectedIds.delete(this.getRowId(Ae));this.emitSelectionChange(),this.requestUpdate()}emitSelectionChange(){let ke=Array.from(this.selectedIds),ue=this.data.filter(Ae=>this.selectedIds.has(this.getRowId(Ae)));this.dispatchEvent(new CustomEvent("selectionChange",{detail:{selectedIds:ke,selectedRows:ue},bubbles:!0}))}getActionsForType(ke){let ue=[];for(let Ae of this.dataActions)Ae.type?.includes(ke)&&ue.push(Ae);return ue}async handleCellEditing(ke,ue,Ae){await this.domtoolsPromise;let B1=ke.target,nt=B1.style.color;B1.style.color="transparent";let p2=this.displayFunction(ue)[Ae]??ue[Ae]??"",tt=document.createElement("input");tt.type="text",tt.value=p2;let Y1=async(u2=!0,Fi=!1)=>{u2&&tt.blur(),Fi&&(ue[Ae]=tt.value,this.changeSubject.next(this)),tt.remove(),B1.style.color=nt,this.requestUpdate()};tt.addEventListener("blur",()=>{Y1(!1,!1)}),tt.addEventListener("keydown",u2=>{u2.key==="Enter"&&Y1(!0,!0)}),B1.appendChild(tt),tt.focus()}static{Ke(i,a)}};return P3=i})()});var lj=x(()=>{nj()});var Mmt,kmt=x(()=>{se();w1();Mmt=()=>w`
|
|
9963
9963
|
<style>
|
|
9964
9964
|
${Z`
|
|
9965
9965
|
.demo-container {
|
|
@@ -29133,7 +29133,7 @@ html\`<dees-button>Click me</dees-button>\`</code></pre>
|
|
|
29133
29133
|
<h1>Markdown Preview</h1>
|
|
29134
29134
|
<p>Content will appear here when markdown is parsed.</p>
|
|
29135
29135
|
</div>
|
|
29136
|
-
`}async firstUpdated(s){await super.firstUpdated(s),this.outlet=this.shadowRoot.querySelector(".outlet")}async updateHtmlText(s){await this.updateComplete,this.outlet||(this.outlet=this.shadowRoot.querySelector(".outlet")),this.outlet.innerHTML=s}static{vYt(i,a)}};return n=i})()});var dMt=x(()=>{cMt()});var pMt=x(()=>{NU()});var uMt=x(()=>{FU()});var hMt=x(()=>{Kwt();Qwt();Jwt();tMt();aMt();sMt();dMt();pMt();uMt()});var fMt=x(()=>{});var mMt=x(()=>{fMt()});var gMt=x(()=>{se()});var bMt=x(()=>{gMt()});var vMt=x(()=>{Ci();qe();egt();pgt();Cgt();Rgt();dbt();hbt();Mvt();pyt();Mxt();Dxt();wM();Twt();jwt();hMt();mMt();bMt()});var yMt,xMt=x(()=>{yMt={name:"@design.estate/dees-catalog",version:"3.43.
|
|
29136
|
+
`}async firstUpdated(s){await super.firstUpdated(s),this.outlet=this.shadowRoot.querySelector(".outlet")}async updateHtmlText(s){await this.updateComplete,this.outlet||(this.outlet=this.shadowRoot.querySelector(".outlet")),this.outlet.innerHTML=s}static{vYt(i,a)}};return n=i})()});var dMt=x(()=>{cMt()});var pMt=x(()=>{NU()});var uMt=x(()=>{FU()});var hMt=x(()=>{Kwt();Qwt();Jwt();tMt();aMt();sMt();dMt();pMt();uMt()});var fMt=x(()=>{});var mMt=x(()=>{fMt()});var gMt=x(()=>{se()});var bMt=x(()=>{gMt()});var vMt=x(()=>{Ci();qe();egt();pgt();Cgt();Rgt();dbt();hbt();Mvt();pyt();Mxt();Dxt();wM();Twt();jwt();hMt();mMt();bMt()});var yMt,xMt=x(()=>{yMt={name:"@design.estate/dees-catalog",version:"3.43.3",description:"A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."}});var Sa={};Ze(Sa,{CanvasPool:()=>h3,DeesActionbar:()=>Ogt,DeesAppui:()=>Vmt,DeesAppuiActivitylog:()=>Vft,DeesAppuiBar:()=>r9t,DeesAppuiBottombar:()=>l9t,DeesAppuiMaincontent:()=>qmt,DeesAppuiMainmenu:()=>Nmt,DeesAppuiProfileDropdown:()=>i9t,DeesAppuiSecondarymenu:()=>Rmt,DeesAppuiTabs:()=>Hmt,DeesAudioViewer:()=>vyt,DeesBadge:()=>jgt,DeesButton:()=>Lmt,DeesButtonExit:()=>igt,DeesButtonGroup:()=>lgt,DeesChartArea:()=>ygt,DeesChartLog:()=>kgt,DeesChips:()=>Svt,DeesContextmenu:()=>Wt,DeesDashboardgrid:()=>jvt,DeesDataviewCodebox:()=>Lgt,DeesDataviewStatusobject:()=>Pgt,DeesForm:()=>Cmt,DeesFormSubmit:()=>Iw,DeesFormattingMenu:()=>iM,DeesHeading:()=>Xvt,DeesHint:()=>Xgt,DeesIcon:()=>Fft,DeesImageViewer:()=>fyt,DeesInputBase:()=>Xe,DeesInputCheckbox:()=>Cw,DeesInputCode:()=>$w,DeesInputDatepicker:()=>Dw,DeesInputDropdown:()=>Fw,DeesInputFileupload:()=>Ow,DeesInputIban:()=>qw,DeesInputList:()=>wbt,DeesInputMultitoggle:()=>Vw,DeesInputPhone:()=>Uw,DeesInputProfilePicture:()=>wvt,DeesInputQuantitySelector:()=>Ew,DeesInputRadiogroup:()=>Pw,DeesInputRichtext:()=>Pbt,DeesInputTags:()=>Hbt,DeesInputText:()=>Aw,DeesInputToggle:()=>Ww,DeesInputTypelist:()=>Gw,DeesInputWysiwyg:()=>Rj,DeesLabel:()=>k9t,DeesMobilenavigation:()=>Kmt,DeesModal:()=>l1,DeesPagination:()=>ayt,DeesPanel:()=>h9t,DeesPdf:()=>Iyt,DeesPdfPreview:()=>Vyt,DeesPdfViewer:()=>_yt,DeesPreview:()=>Ayt,DeesProgressbar:()=>abt,DeesSearchbar:()=>Awt,DeesShoppingProductcard:()=>N9t,DeesSimpleAppDash:()=>vwt,DeesSimpleLogin:()=>zwt,DeesSlashMenu:()=>tM,DeesSpeechbubble:()=>Txt,DeesSpinner:()=>rbt,DeesStatsGrid:()=>$mt,DeesStepper:()=>lyt,DeesTable:()=>Zw,DeesTheme:()=>Fwt,DeesTileAudio:()=>ixt,DeesTileBase:()=>S2,DeesTileFolder:()=>yxt,DeesTileImage:()=>Qyt,DeesTileNote:()=>hxt,DeesTilePdf:()=>oM,DeesTileVideo:()=>lxt,DeesToast:()=>Bt,DeesUpdater:()=>MM,DeesVideoViewer:()=>Myt,DeesWindowControls:()=>a9t,DeesWindowLayer:()=>Ti,DeesWorkspace:()=>Zwt,DeesWorkspaceBottombar:()=>Gwt,DeesWorkspaceDiffEditor:()=>Ywt,DeesWorkspaceFiletree:()=>Uwt,DeesWorkspaceMarkdown:()=>iMt,DeesWorkspaceMarkdownoutlet:()=>lMt,DeesWorkspaceMonaco:()=>z9t,DeesWorkspaceTerminal:()=>CU,DeesWorkspaceTerminalPreview:()=>Wwt,DeesWysiwygBlock:()=>fvt,PROGRAMMING_LANGUAGES:()=>c8,PdfManager:()=>es,PerformanceMonitor:()=>f3,TerminalTabManager:()=>N8,TypeScriptIntelliSenseManager:()=>B8,ViewRegistry:()=>r8,WebContainerEnvironment:()=>Nl,WysiwygBlockOperations:()=>d8,WysiwygBlocks:()=>Oa,WysiwygConverters:()=>Ei,WysiwygDragDropHandler:()=>z8,WysiwygFormatting:()=>Js,WysiwygHistory:()=>S8,WysiwygInputHandler:()=>M8,WysiwygKeyboardHandler:()=>k8,WysiwygModalManager:()=>w8,WysiwygSelection:()=>Oe,WysiwygShortcuts:()=>G1,ZIndexRegistry:()=>gm,colors:()=>ul,commitinfo:()=>yMt,componentZIndex:()=>pVt,debounce:()=>NGt,formatFileSize:()=>FGt,getZIndex:()=>dVt,icons:()=>kw,isInViewport:()=>RGt,registerAllBlockHandlers:()=>cvt,themeDefaultStyles:()=>Ce,themeDefaults:()=>yo,throttle:()=>IGt,tileBaseStyles:()=>c2,wysiwygStyles:()=>$j,zIndexLayers:()=>da,zIndexRegistry:()=>h1});var Ca=x(()=>{vMt();Li();xMt()});var Mkt=pt(ta=>{"use strict";Object.defineProperty(ta,"__esModule",{value:!0}),ta.getFirstTrueOrFalse=ta.timeoutAndContinue=ta.timeoutWrap=ta.map=ta.rejectedPromise=ta.resolvedPromise=ta.defer=ta.Deferred=void 0;var $M=class{constructor(){this.promise=new Promise((e,a)=>{this.resolve=i=>{this.status="fulfilled",this.stoppedAt=Date.now(),e(i)},this.reject=i=>{this.status="rejected",this.stoppedAt=Date.now(),a(i)},this.startedAt=Date.now(),this.status="pending"})}get duration(){return this.stoppedAt?this.stoppedAt-this.startedAt:Date.now()-this.startedAt}};ta.Deferred=$M,ta.defer=()=>new $M,ta.resolvedPromise=t=>Promise.resolve(t),ta.rejectedPromise=t=>Promise.reject(t),ta.map=async(t,e)=>{let a=[],i=[];for(let r of t){let n=e(r);a.push(n),n.then(s=>{i.push(s)})}return await Promise.all(a),i},ta.timeoutWrap=async(t,e,a=!0)=>new Promise((i,r)=>{setTimeout(()=>{a?r(new Error("timeout")):i(null)},e),t.then(i,r)}),ta.timeoutAndContinue=async(t,e=6e4)=>ta.timeoutWrap(t,e,!1),ta.getFirstTrueOrFalse=async t=>{let e=ta.defer();for(let a of t)a.then(i=>{i===!0&&e.resolve(!0)});return Promise.all(t).then(()=>{e.resolve(!1)}),e.promise}});var nW={};Ze(nW,{SzCertificatesCard:()=>TMt,SzConfigOverview:()=>ckt,SzConfigSection:()=>lkt,SzDashboardView:()=>RMt,SzDemoAppShell:()=>wkt,SzDemoViewConfig:()=>xkt,SzDemoViewDashboard:()=>dkt,SzDemoViewMta:()=>bkt,SzDemoViewNetwork:()=>ukt,SzDemoViewRegistries:()=>fkt,SzDemoViewRoutes:()=>ykt,SzDemoViewServices:()=>pkt,SzDemoViewSettings:()=>gkt,SzDemoViewTokens:()=>mkt,SzDnsSslCard:()=>LMt,SzDomainDetailView:()=>tkt,SzLoginView:()=>QMt,SzMtaDetailView:()=>rkt,SzMtaListView:()=>akt,SzNetworkDnsView:()=>HMt,SzNetworkDomainsView:()=>qMt,SzNetworkProxyView:()=>OMt,SzPlatformServiceDetailView:()=>ekt,SzPlatformServicesCard:()=>CMt,SzQuickActionsCard:()=>DMt,SzRegistryAdvertisement:()=>VMt,SzRegistryExternalView:()=>UMt,SzResourceUsageCard:()=>MMt,SzReverseProxyCard:()=>_Mt,SzRouteCard:()=>nkt,SzRouteListView:()=>okt,SzServiceCreateView:()=>JMt,SzServiceDetailView:()=>ZMt,SzServicesBackupsView:()=>YMt,SzServicesListView:()=>GMt,SzSettingsView:()=>KMt,SzStatCard:()=>wMt,SzStatusGridCluster:()=>EMt,SzStatusGridInfra:()=>IMt,SzStatusGridNetwork:()=>NMt,SzStatusGridServices:()=>PMt,SzTokensView:()=>XMt,SzTrafficCard:()=>zMt,mainpage:()=>LYt,szDemoApp:()=>$Yt});se();var M3=function(t,e,a,i,r,n){function s(y){if(y!==void 0&&typeof y!="function")throw new TypeError("Function expected");return y}for(var o=i.kind,u=o==="getter"?"get":o==="setter"?"set":"value",c=!e&&t?i.static?t:t.prototype:null,p=e||(c?Object.getOwnPropertyDescriptor(c,i.name):{}),d,f=!1,g=a.length-1;g>=0;g--){var v={};for(var m in i)v[m]=m==="access"?{}:i[m];for(var m in i.access)v.access[m]=i.access[m];v.addInitializer=function(y){if(f)throw new TypeError("Cannot add initializers after decoration has completed");n.push(s(y||null))};var h=(0,a[g])(o==="accessor"?{get:p.get,set:p.set}:p[u],v);if(o==="accessor"){if(h===void 0)continue;if(h===null||typeof h!="object")throw new TypeError("Object expected");(d=s(h.get))&&(p.get=d),(d=s(h.set))&&(p.set=d),(d=s(h.init))&&r.unshift(d)}else(d=s(h))&&(o==="field"?r.unshift(d):p[u]=d)}c&&Object.defineProperty(c,i.name,p),f=!0},mr=function(t,e,a){for(var i=arguments.length>2,r=0;r<e.length;r++)a=i?e[r].call(t,a):e[r].call(t);return i?a:void 0},wMt=(()=>{let t=[K("sz-stat-card")],e,a=[],i,r=ie,n,s=[],o=[],u,c=[],p=[],d,f=[],g=[],v,m=[],h=[],y,M=[],k=[];var N=class extends r{static{i=this}static{let C=typeof Symbol=="function"&&Symbol.metadata?Object.create(r[Symbol.metadata]??null):void 0;n=[D({type:String})],u=[D({type:String})],d=[D({type:String})],v=[D({type:String})],y=[D({type:Boolean})],M3(this,null,n,{kind:"accessor",name:"label",static:!1,private:!1,access:{has:z=>"label"in z,get:z=>z.label,set:(z,I)=>{z.label=I}},metadata:C},s,o),M3(this,null,u,{kind:"accessor",name:"value",static:!1,private:!1,access:{has:z=>"value"in z,get:z=>z.value,set:(z,I)=>{z.value=I}},metadata:C},c,p),M3(this,null,d,{kind:"accessor",name:"icon",static:!1,private:!1,access:{has:z=>"icon"in z,get:z=>z.icon,set:(z,I)=>{z.icon=I}},metadata:C},f,g),M3(this,null,v,{kind:"accessor",name:"variant",static:!1,private:!1,access:{has:z=>"variant"in z,get:z=>z.variant,set:(z,I)=>{z.variant=I}},metadata:C},m,h),M3(this,null,y,{kind:"accessor",name:"valueBadge",static:!1,private:!1,access:{has:z=>"valueBadge"in z,get:z=>z.valueBadge,set:(z,I)=>{z.valueBadge=I}},metadata:C},M,k),M3(null,e={value:i},t,{kind:"class",name:i.name,metadata:C},null,a),N=i=e.value,C&&Object.defineProperty(i,Symbol.metadata,{enumerable:!0,configurable:!0,writable:!0,value:C})}static demo=()=>w`
|
|
29137
29137
|
<style>
|
|
29138
29138
|
.demo-grid {
|
|
29139
29139
|
display: grid;
|
|
@@ -39317,4 +39317,4 @@ ibantools/jsnext/ibantools.js:
|
|
|
39317
39317
|
* @preferred
|
|
39318
39318
|
*)
|
|
39319
39319
|
*/
|
|
39320
|
-
//# sourceMappingURL=bundle-
|
|
39320
|
+
//# sourceMappingURL=bundle-1771975785715.js.map
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/dcrouter',
|
|
6
|
-
version: '9.1.
|
|
6
|
+
version: '9.1.3',
|
|
7
7
|
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxzQkFBc0I7SUFDNUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLDBFQUEwRTtDQUN4RixDQUFBIn0=
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/dcrouter',
|
|
6
|
-
version: '9.1.
|
|
6
|
+
version: '9.1.3',
|
|
7
7
|
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHNfd2ViLzAwX2NvbW1pdGluZm9fZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixJQUFJLEVBQUUsc0JBQXNCO0lBQzVCLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLFdBQVcsRUFBRSwwRUFBMEU7Q0FDeEYsQ0FBQSJ9
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serve.zone/dcrouter",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "9.1.
|
|
4
|
+
"version": "9.1.3",
|
|
5
5
|
"description": "A multifaceted routing service handling mail and SMS delivery functions.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@git.zone/tsbuild": "^4.1.2",
|
|
23
|
-
"@git.zone/tsbundle": "^2.
|
|
23
|
+
"@git.zone/tsbundle": "^2.9.0",
|
|
24
24
|
"@git.zone/tsrun": "^2.0.1",
|
|
25
25
|
"@git.zone/tstest": "^3.1.8",
|
|
26
|
-
"@git.zone/tswatch": "^3.
|
|
26
|
+
"@git.zone/tswatch": "^3.2.0",
|
|
27
27
|
"@types/node": "^25.3.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@api.global/typedrequest": "^3.2.6",
|
|
31
31
|
"@api.global/typedrequest-interfaces": "^3.0.19",
|
|
32
|
-
"@api.global/typedserver": "^8.
|
|
32
|
+
"@api.global/typedserver": "^8.4.0",
|
|
33
33
|
"@api.global/typedsocket": "^4.1.0",
|
|
34
34
|
"@apiclient.xyz/cloudflare": "^7.1.0",
|
|
35
|
-
"@design.estate/dees-catalog": "^3.43.
|
|
35
|
+
"@design.estate/dees-catalog": "^3.43.3",
|
|
36
36
|
"@design.estate/dees-element": "^2.1.6",
|
|
37
37
|
"@push.rocks/projectinfo": "^5.0.2",
|
|
38
38
|
"@push.rocks/qenv": "^6.1.3",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@push.rocks/smartnetwork": "^4.4.0",
|
|
50
50
|
"@push.rocks/smartpath": "^6.0.0",
|
|
51
51
|
"@push.rocks/smartpromise": "^4.2.3",
|
|
52
|
-
"@push.rocks/smartproxy": "^25.
|
|
52
|
+
"@push.rocks/smartproxy": "^25.8.0",
|
|
53
53
|
"@push.rocks/smartradius": "^1.1.1",
|
|
54
54
|
"@push.rocks/smartrequest": "^5.0.1",
|
|
55
55
|
"@push.rocks/smartrx": "^3.0.10",
|
package/ts/00_commitinfo_data.ts
CHANGED