@hotmeshio/hotmesh 0.3.29 → 0.3.31
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/build/index.d.ts +8 -2
- package/build/index.js +13 -7
- package/build/modules/enums.d.ts +65 -1
- package/build/modules/enums.js +79 -5
- package/build/modules/key.d.ts +52 -0
- package/build/modules/key.js +1 -1
- package/build/modules/utils.d.ts +73 -0
- package/build/modules/utils.js +1 -1
- package/build/package.json +6 -4
- package/build/services/activities/activity.d.ts +36 -0
- package/build/services/activities/activity.js +1 -1
- package/build/services/activities/await.js +1 -1
- package/build/services/activities/cycle.d.ts +7 -0
- package/build/services/activities/cycle.js +1 -1
- package/build/services/activities/hook.d.ts +6 -0
- package/build/services/activities/hook.js +1 -1
- package/build/services/activities/index.js +1 -1
- package/build/services/activities/interrupt.js +1 -1
- package/build/services/activities/signal.d.ts +6 -0
- package/build/services/activities/signal.js +1 -1
- package/build/services/activities/trigger.d.ts +7 -0
- package/build/services/activities/trigger.js +1 -1
- package/build/services/activities/worker.js +1 -1
- package/build/services/collator/index.d.ts +76 -0
- package/build/services/collator/index.js +1 -1
- package/build/services/compiler/deployer.js +1 -1
- package/build/services/compiler/index.d.ts +15 -0
- package/build/services/compiler/index.js +1 -1
- package/build/services/compiler/validator.d.ts +3 -0
- package/build/services/compiler/validator.js +1 -1
- package/build/services/connector/factory.d.ts +14 -0
- package/build/services/connector/factory.js +22 -2
- package/build/services/connector/index.d.ts +13 -1
- package/build/services/connector/index.js +13 -1
- package/build/services/connector/providers/postgres.js +7 -0
- package/build/services/engine/index.d.ts +162 -0
- package/build/services/engine/index.js +1 -1
- package/build/services/exporter/index.d.ts +27 -0
- package/build/services/exporter/index.js +1 -1
- package/build/services/hotmesh/index.d.ts +280 -0
- package/build/services/hotmesh/index.js +286 -0
- package/build/services/logger/index.js +1 -0
- package/build/services/mapper/index.d.ts +14 -0
- package/build/services/mapper/index.js +1 -1
- package/build/services/meshcall/index.d.ts +171 -0
- package/build/services/meshcall/index.js +190 -0
- package/build/services/meshcall/schemas/factory.d.ts +7 -0
- package/build/services/meshcall/schemas/factory.js +7 -0
- package/build/services/meshdata/index.d.ts +725 -3
- package/build/services/meshdata/index.js +689 -3
- package/build/services/meshflow/client.d.ts +89 -0
- package/build/services/meshflow/client.js +173 -4
- package/build/services/meshflow/connection.d.ts +17 -0
- package/build/services/meshflow/connection.js +17 -0
- package/build/services/meshflow/exporter.d.ts +22 -0
- package/build/services/meshflow/exporter.js +1 -1
- package/build/services/meshflow/handle.d.ts +68 -0
- package/build/services/meshflow/handle.js +75 -0
- package/build/services/meshflow/index.d.ts +92 -0
- package/build/services/meshflow/index.js +92 -0
- package/build/services/meshflow/schemas/factory.d.ts +25 -0
- package/build/services/meshflow/schemas/factory.js +26 -1
- package/build/services/meshflow/search.d.ts +120 -0
- package/build/services/meshflow/search.js +108 -0
- package/build/services/meshflow/worker.d.ts +97 -0
- package/build/services/meshflow/worker.js +116 -2
- package/build/services/meshflow/workflow/all.d.ts +6 -0
- package/build/services/meshflow/workflow/all.js +7 -0
- package/build/services/meshflow/workflow/context.d.ts +4 -0
- package/build/services/meshflow/workflow/context.js +4 -0
- package/build/services/meshflow/workflow/didRun.d.ts +6 -0
- package/build/services/meshflow/workflow/didRun.js +6 -0
- package/build/services/meshflow/workflow/emit.d.ts +7 -0
- package/build/services/meshflow/workflow/emit.js +7 -0
- package/build/services/meshflow/workflow/enrich.d.ts +7 -0
- package/build/services/meshflow/workflow/enrich.js +7 -0
- package/build/services/meshflow/workflow/execChild.d.ts +14 -0
- package/build/services/meshflow/workflow/execChild.js +18 -0
- package/build/services/meshflow/workflow/hook.d.ts +7 -0
- package/build/services/meshflow/workflow/hook.js +7 -0
- package/build/services/meshflow/workflow/index.d.ts +31 -0
- package/build/services/meshflow/workflow/index.js +31 -0
- package/build/services/meshflow/workflow/interrupt.d.ts +7 -0
- package/build/services/meshflow/workflow/interrupt.js +7 -0
- package/build/services/meshflow/workflow/isSideEffectAllowed.d.ts +8 -0
- package/build/services/meshflow/workflow/isSideEffectAllowed.js +8 -0
- package/build/services/meshflow/workflow/proxyActivities.d.ts +14 -0
- package/build/services/meshflow/workflow/proxyActivities.js +18 -3
- package/build/services/meshflow/workflow/random.d.ts +5 -0
- package/build/services/meshflow/workflow/random.js +5 -0
- package/build/services/meshflow/workflow/searchMethods.d.ts +4 -0
- package/build/services/meshflow/workflow/searchMethods.js +4 -0
- package/build/services/meshflow/workflow/signal.d.ts +6 -0
- package/build/services/meshflow/workflow/signal.js +6 -0
- package/build/services/meshflow/workflow/sleepFor.d.ts +7 -0
- package/build/services/meshflow/workflow/sleepFor.js +7 -0
- package/build/services/meshflow/workflow/trace.d.ts +10 -0
- package/build/services/meshflow/workflow/trace.js +10 -0
- package/build/services/meshflow/workflow/waitFor.d.ts +7 -0
- package/build/services/meshflow/workflow/waitFor.js +7 -0
- package/build/services/meshos/index.d.ts +213 -2
- package/build/services/meshos/index.js +221 -1
- package/build/services/pipe/functions/array.js +1 -1
- package/build/services/pipe/functions/bitwise.js +1 -1
- package/build/services/pipe/functions/conditional.js +1 -1
- package/build/services/pipe/functions/cron.d.ts +6 -0
- package/build/services/pipe/functions/cron.js +1 -1
- package/build/services/pipe/functions/date.d.ts +7 -0
- package/build/services/pipe/functions/date.js +1 -1
- package/build/services/pipe/functions/index.js +1 -1
- package/build/services/pipe/functions/json.js +1 -1
- package/build/services/pipe/functions/logical.js +1 -1
- package/build/services/pipe/functions/math.js +1 -1
- package/build/services/pipe/functions/number.js +1 -1
- package/build/services/pipe/functions/object.js +1 -1
- package/build/services/pipe/functions/string.js +1 -1
- package/build/services/pipe/functions/symbol.js +1 -1
- package/build/services/pipe/functions/unary.js +1 -1
- package/build/services/pipe/index.d.ts +15 -0
- package/build/services/pipe/index.js +1 -1
- package/build/services/quorum/index.d.ts +49 -0
- package/build/services/quorum/index.js +1 -1
- package/build/services/reporter/index.d.ts +5 -0
- package/build/services/reporter/index.js +1 -1
- package/build/services/router/index.d.ts +10 -0
- package/build/services/router/index.js +1 -1
- package/build/services/search/providers/postgres/postgres.d.ts +3 -0
- package/build/services/search/providers/postgres/postgres.js +1 -1
- package/build/services/search/providers/redis/ioredis.js +1 -1
- package/build/services/search/providers/redis/redis.js +1 -1
- package/build/services/serializer/index.js +1 -1
- package/build/services/store/cache.d.ts +19 -0
- package/build/services/store/cache.js +19 -0
- package/build/services/store/factory.js +1 -1
- package/build/services/store/providers/postgres/kvsql.d.ts +7 -0
- package/build/services/store/providers/postgres/kvsql.js +1 -1
- package/build/services/store/providers/postgres/kvtables.d.ts +4 -0
- package/build/services/store/providers/postgres/kvtables.js +1 -1
- package/build/services/store/providers/postgres/kvtransaction.js +1 -1
- package/build/services/store/providers/postgres/kvtypes/hash.d.ts +4 -0
- package/build/services/store/providers/postgres/kvtypes/hash.js +1 -1
- package/build/services/store/providers/postgres/kvtypes/list.js +1 -1
- package/build/services/store/providers/postgres/kvtypes/string.js +1 -1
- package/build/services/store/providers/postgres/kvtypes/zset.js +1 -1
- package/build/services/store/providers/postgres/postgres.d.ts +48 -1
- package/build/services/store/providers/postgres/postgres.js +1 -1
- package/build/services/store/providers/redis/_base.d.ts +42 -0
- package/build/services/store/providers/redis/_base.js +1 -1
- package/build/services/store/providers/redis/ioredis.d.ts +8 -0
- package/build/services/store/providers/redis/ioredis.js +1 -1
- package/build/services/store/providers/redis/redis.d.ts +6 -0
- package/build/services/store/providers/redis/redis.js +1 -1
- package/build/services/store/providers/store-initializable.js +1 -1
- package/build/services/stream/factory.js +2 -1
- package/build/services/stream/index.d.ts +4 -0
- package/build/services/stream/providers/nats/nats.js +1 -1
- package/build/services/stream/providers/postgres/kvtables.js +1 -1
- package/build/services/stream/providers/postgres/postgres.d.ts +21 -0
- package/build/services/stream/providers/postgres/postgres.js +1 -1
- package/build/services/stream/providers/redis/ioredis.js +1 -1
- package/build/services/stream/providers/redis/redis.js +1 -1
- package/build/services/stream/providers/stream-initializable.js +1 -1
- package/build/services/sub/providers/nats/nats.js +1 -1
- package/build/services/sub/providers/postgres/postgres.js +1 -1
- package/build/services/sub/providers/redis/ioredis.js +1 -1
- package/build/services/sub/providers/redis/redis.js +1 -1
- package/build/services/task/index.d.ts +9 -0
- package/build/services/task/index.js +1 -1
- package/build/services/telemetry/index.d.ts +7 -0
- package/build/services/telemetry/index.js +1 -1
- package/build/services/worker/index.d.ts +37 -0
- package/build/services/worker/index.js +1 -1
- package/build/types/activity.d.ts +81 -0
- package/build/types/exporter.d.ts +13 -0
- package/build/types/hotmesh.d.ts +144 -0
- package/build/types/hotmesh.js +3 -0
- package/build/types/job.d.ts +101 -0
- package/build/types/manifest.d.ts +8 -0
- package/build/types/meshcall.d.ts +148 -0
- package/build/types/meshdata.d.ts +193 -0
- package/build/types/meshflow.d.ts +297 -0
- package/build/types/nats.d.ts +55 -0
- package/build/types/pipe.d.ts +65 -0
- package/build/types/provider.d.ts +43 -0
- package/build/types/quorum.d.ts +12 -0
- package/build/types/redis.d.ts +6 -0
- package/build/types/stream.d.ts +65 -0
- package/build/types/stream.js +4 -0
- package/index.ts +8 -1
- package/package.json +6 -4
- package/types/manifest.ts +2 -2
- package/types/meshcall.ts +1 -2
- package/types/meshdata.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';function b(c,d){var e=a();return b=function(f,g){f=f-
|
|
1
|
+
'use strict';var i=b;function b(c,d){var e=a();return b=function(f,g){f=f-0xc9;var h=e[f];return h;},b(c,d);}(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(0xd1))/0x1+parseInt(h(0xd7))/0x2*(-parseInt(h(0xcc))/0x3)+parseInt(h(0xcb))/0x4+-parseInt(h(0xd0))/0x5+-parseInt(h(0xca))/0x6*(-parseInt(h(0xd6))/0x7)+-parseInt(h(0xd3))/0x8+parseInt(h(0xcd))/0x9;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x6d136));Object['defineProperty'](exports,i(0xd4),{'value':!0x0}),exports[i(0xd5)]=void 0x0;class BitwiseHandler{[i(0xd2)](c,d){return c&d;}['or'](c,d){return c|d;}[i(0xc9)](c,d){return c^d;}[i(0xce)](c,d){return c<<d;}['rightShift'](c,d){return c>>d;}[i(0xcf)](c,d){return c>>>d;}}exports[i(0xd5)]=BitwiseHandler;function a(){var j=['51278rbYmKU','xor','96174DoGNKS','191492wRZdur','69TXXPcx','9163350dNQlrD','leftShift','unsignedRightShift','3406475SENiTH','556551wjdBvI','and','4880672JhhJPa','__esModule','BitwiseHandler','308RveTgl'];a=function(){return j;};return a();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';function
|
|
1
|
+
'use strict';function b(c,d){var e=a();return b=function(f,g){f=f-0x1d9;var h=e[f];return h;},b(c,d);}var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=-parseInt(h(0x1e8))/0x1+parseInt(h(0x1e2))/0x2*(parseInt(h(0x1db))/0x3)+parseInt(h(0x1eb))/0x4*(parseInt(h(0x1e3))/0x5)+-parseInt(h(0x1e1))/0x6+parseInt(h(0x1e4))/0x7*(-parseInt(h(0x1e0))/0x8)+parseInt(h(0x1e9))/0x9+parseInt(h(0x1dc))/0xa;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xcdab9));Object[i(0x1dd)](exports,i(0x1d9),{'value':!0x0}),exports[i(0x1df)]=void 0x0;function a(){var j=['33416ocDGaB','5113254zjshYF','80108jPHrNt','74845QdmoYD','2170uqbmRV','greater_than_or_equal','inequality','strict_inequality','1414031bsRuAi','11357487peUOht','strict_equality','72mlPQkw','less_than','__esModule','nullish','60MYaplw','20710700iyzHDN','defineProperty','equality','ConditionalHandler'];a=function(){return j;};return a();}class ConditionalHandler{['ternary'](c,d,f){return c?d:f;}[i(0x1de)](c,d){return c==d;}[i(0x1ea)](c,d){return c===d;}[i(0x1e6)](c,d){return c!=d;}[i(0x1e7)](c,d){return c!==d;}['greater_than'](c,d){return c>d;}[i(0x1ec)](c,d){return c<d;}[i(0x1e5)](c,d){return c>=d;}['less_than_or_equal'](c,d){return c<=d;}[i(0x1da)](c,d){return c??d;}}exports[i(0x1df)]=ConditionalHandler;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { ILogger } from '../../../types/logger';
|
|
2
|
+
/**
|
|
3
|
+
* Safely calculates the delay in seconds until the next execution of a cron job.
|
|
4
|
+
* Fails silently and returns -1 if the cron expression is invalid.
|
|
5
|
+
* @param cronExpression The cron expression to parse (e.g. '0 0 * * *').
|
|
6
|
+
* @returns The delay in seconds until the next cron job execution (minimum 5 seconds).
|
|
7
|
+
*/
|
|
2
8
|
declare class CronHandler {
|
|
3
9
|
static logger: ILogger;
|
|
4
10
|
nextDelay(cronExpression: string): number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';function a(){const l=['cron-parser','meshos','Error\x20calculating\x20next\x20cron\x20job\x20execution\x20\x20delay:','9TBmpsL','HMSH_FIDELITY_SECONDS','next','2956935wSgHjP','890608ndQoKU','6izYWHW','logger','parseExpression','CronHandler','__esModule','2675790kKuayn','21139591pidOyt','LoggerService','10zyuQpB','214220SNaAvN','../../logger','round','../../../modules/enums','toDate','getTime','defineProperty','684217uxrbZj','7804601XLbmVC','60wqCZrU'];a=function(){return l;};return a();}const j=b;(function(c,d){const i=b,e=c();while(!![]){try{const f=-parseInt(i(0x1d6))/0x1+-parseInt(i(0x1e6))/0x2+-parseInt(i(0x1df))/0x3+-parseInt(i(0x1ea))/0x4*(-parseInt(i(0x1d8))/0x5)+-parseInt(i(0x1e1))/0x6*(-parseInt(i(0x1d7))/0x7)+parseInt(i(0x1e0))/0x8*(parseInt(i(0x1dc))/0x9)+parseInt(i(0x1e9))/0xa*(parseInt(i(0x1e7))/0xb);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xbf269));function b(c,d){const e=a();return b=function(f,g){f=f-0x1d4;let h=e[f];return h;},b(c,d);}Object[j(0x1d5)](exports,j(0x1e5),{'value':!0x0}),exports['CronHandler']=void 0x0;const cron_parser_1=require(j(0x1d9)),enums_1=require(j(0x1ed)),utils_1=require('../../../modules/utils'),logger_1=require(j(0x1eb));class CronHandler{['nextDelay'](c){const k=j;try{if(!(0x0,utils_1['isValidCron'])(c))return-0x1;const d=(0x0,cron_parser_1[k(0x1e3)])(c,{'utc':!0x0})[k(0x1de)]()[k(0x1ee)](),f=new Date(),g=(d[k(0x1d4)]()-f['getTime']())/0x3e8;if(g<=0x0)return-0x1;if(g<enums_1['HMSH_FIDELITY_SECONDS'])return enums_1[k(0x1dd)];return Math[k(0x1ec)](g);}catch(h){return CronHandler[k(0x1e2)]['error'](k(0x1db),{'error':h}),-0x1;}}}exports[j(0x1e4)]=CronHandler,CronHandler['logger']=new logger_1[(j(0x1e8))]('hotmesh',j(0x1da));
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
type DateInput = Date | string | number;
|
|
2
2
|
declare class DateHandler {
|
|
3
|
+
/**
|
|
4
|
+
* It is so common in mapping operations to use a string (ISO) date as input. This helper
|
|
5
|
+
* method allows for a more-concise mapping ruleset by avoiding date initialization boilerplate
|
|
6
|
+
* code and instead handles the ISO, Milliseconds, and ECMAScript Date input types.
|
|
7
|
+
* @param input
|
|
8
|
+
* @returns
|
|
9
|
+
*/
|
|
3
10
|
static getDateInstance(input: DateInput): Date;
|
|
4
11
|
fromISOString(isoString: string): Date;
|
|
5
12
|
now(): number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';const l=b;(function(c,d){const k=b,e=c();while(!![]){try{const f=-parseInt(k(0x1c2))/0x1*(-parseInt(k(0x1c4))/0x2)+-parseInt(k(0x1d1))/0x3*(parseInt(k(0x1a9))/0x4)+parseInt(k(0x1b1))/0x5+-parseInt(k(0x1a3))/0x6+parseInt(k(0x1bc))/0x7+parseInt(k(0x1a4))/0x8+-parseInt(k(0x1b6))/0x9;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x9566d));function b(c,d){const e=a();return b=function(f,g){f=f-0x19f;let h=e[f];return h;},b(c,d);}Object[l(0x1a0)](exports,l(0x1d7),{'value':!0x0}),exports[l(0x1a8)]=void 0x0;const utils_1=require(l(0x1c7));class DateHandler{static[l(0x1d6)](c){const m=l;if('string'==typeof c){if(/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d{3})?Z)?$/['test'](c))return new Date(c);const d=parseInt(c,0xa);if(!isNaN(d))return new Date(d);}else{if(c instanceof Date)return c;if(m(0x1c9)==typeof c)return new Date(c);}throw new Error(m(0x1b0));}[l(0x1a7)](c){return new Date(c);}[l(0x1d9)](){const n=l;return Date[n(0x1d9)]();}['parse'](c){const o=l;return Date[o(0x1aa)](c);}[l(0x1af)](c){const p=l;return DateHandler['getDateInstance'](c)[p(0x1af)]();}['getDay'](c){const q=l;return DateHandler[q(0x1d6)](c)[q(0x1c3)]();}['getFullYear'](c){const r=l;return DateHandler[r(0x1d6)](c)['getFullYear']();}[l(0x1b4)](c){const s=l;return DateHandler[s(0x1d6)](c)[s(0x1b4)]();}[l(0x1bb)](c){const t=l;return DateHandler[t(0x1d6)](c)[t(0x1bb)]();}[l(0x1bf)](c){const u=l;return DateHandler[u(0x1d6)](c)[u(0x1bf)]();}[l(0x1d4)](c){const v=l;return DateHandler[v(0x1d6)](c)[v(0x1d4)]();}[l(0x1a5)](c){return DateHandler['getDateInstance'](c)['getSeconds']();}[l(0x1b5)](c){const w=l;return DateHandler[w(0x1d6)](c)['getTime']();}['getTimezoneOffset'](c){return DateHandler['getDateInstance'](c)['getTimezoneOffset']();}['getUTCDate'](c){const x=l;return DateHandler[x(0x1d6)](c)[x(0x1cc)]();}[l(0x1ad)](c){const y=l;return DateHandler[y(0x1d6)](c)[y(0x1ad)]();}[l(0x1d3)](c){const z=l;return DateHandler['getDateInstance'](c)[z(0x1d3)]();}[l(0x1a1)](c){const A=l;return DateHandler[A(0x1d6)](c)['getUTCHours']();}['getUTCMilliseconds'](c){const B=l;return DateHandler[B(0x1d6)](c)[B(0x1cd)]();}['getUTCMinutes'](c){const C=l;return DateHandler['getDateInstance'](c)[C(0x1ba)]();}['getUTCMonth'](c){const D=l;return DateHandler[D(0x1d6)](c)['getUTCMonth']();}[l(0x1b3)](c){return DateHandler['getDateInstance'](c)['getUTCSeconds']();}['setMilliseconds'](c,d){const E=l;return DateHandler[E(0x1d6)](c)[E(0x1be)](d);}[l(0x1ab)](c,d,f,g){const F=l;return DateHandler[F(0x1d6)](c)[F(0x1ab)](d,f,g);}[l(0x1a6)](c,d,f){const G=l;return DateHandler[G(0x1d6)](c)[G(0x1a6)](d,f);}[l(0x1c6)](c,d,f){const H=l;return DateHandler[H(0x1d6)](c)['setSeconds'](d,f);}['setTime'](c,d){const I=l;return DateHandler[I(0x1d6)](c)[I(0x1d0)](d);}[l(0x1cb)](c,d){const J=l;return DateHandler[J(0x1d6)](c)[J(0x1cb)](d);}[l(0x1b8)](c,d,f,g){const K=l;return DateHandler[K(0x1d6)](c)[K(0x1b8)](d,f,g);}[l(0x1d8)](c,d,f,g,h){const L=l;return DateHandler[L(0x1d6)](c)[L(0x1d8)](d,f,g,h);}[l(0x1b7)](c,d){const M=l;return DateHandler[M(0x1d6)](c)['setUTCMilliseconds'](d);}[l(0x19f)](c,d,f,g){const N=l;return DateHandler[N(0x1d6)](c)['setUTCMinutes'](d,f,g);}[l(0x1cf)](c,d,f){const O=l;return DateHandler[O(0x1d6)](c)[O(0x1cf)](d,f);}['setUTCSeconds'](c,d,f){const P=l;return DateHandler[P(0x1d6)](c)[P(0x1b9)](d,f);}[l(0x1ae)](c,d){return DateHandler['getDateInstance'](c)['setDate'](d);}['setFullYear'](c,d,f,g){const Q=l;return DateHandler['getDateInstance'](c)[Q(0x1c8)](d,f,g);}[l(0x1a2)](c,d,f,g,h){const R=l;return DateHandler[R(0x1d6)](c)['setHours'](d,f,g,h);}[l(0x1c0)](c){const S=l;return DateHandler['getDateInstance'](c)[S(0x1c0)]();}['toISOString'](c){const T=l;return DateHandler[T(0x1d6)](c)[T(0x1ac)]();}['toISOXString'](c){const U=l;return(0x0,utils_1[U(0x1b2)])(c?DateHandler[U(0x1d6)](c):new Date());}[l(0x1d5)](c){const V=l;return DateHandler[V(0x1d6)](c)[V(0x1d5)]();}[l(0x1c5)](c,d,f){const W=l;return DateHandler[W(0x1d6)](c)[W(0x1c5)](d,f);}[l(0x1c1)](c,d,f){const X=l;return DateHandler[X(0x1d6)](c)[X(0x1c1)](d,f);}[l(0x1bd)](c,d,f){const Y=l;return DateHandler[Y(0x1d6)](c)[Y(0x1bd)](d,f);}[l(0x1ca)](c){const Z=l;return DateHandler[Z(0x1d6)](c)[Z(0x1ca)]();}[l(0x1ce)](c,d,f,g,h,i,j){const a0=l;return Date[a0(0x1ce)](c,d,f,g,h,i,j);}[l(0x1d2)](c){const a1=l;return DateHandler[a1(0x1d6)](c)[a1(0x1d2)]();}}exports[l(0x1a8)]=DateHandler;function a(){const a2=['getDay','6274ROeFTd','toLocaleDateString','setSeconds','../../../modules/utils','setFullYear','number','toString','setUTCDate','getUTCDate','getUTCMilliseconds','UTC','setUTCMonth','setTime','64587IDakXW','valueOf','getUTCFullYear','getMonth','toJSON','getDateInstance','__esModule','setUTCHours','now','setUTCMinutes','defineProperty','getUTCHours','setHours','6820290dClvio','7948944GOJvmi','getSeconds','setMonth','fromISOString','DateHandler','92ydmpoH','parse','setMinutes','toISOString','getUTCDay','setDate','getDate','Invalid\x20date\x20format','1663750SIzASL','formatISODate','getUTCSeconds','getHours','getTime','6616179hyLsHb','setUTCMilliseconds','setUTCFullYear','setUTCSeconds','getUTCMinutes','getMilliseconds','4607155HzVnMn','toLocaleTimeString','setMilliseconds','getMinutes','toDateString','toLocaleString','317vdjOKM'];a=function(){return a2;};return a();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';
|
|
1
|
+
'use strict';function b(c,d){const e=a();return b=function(f,g){f=f-0x140;let h=e[f];return h;},b(c,d);}const i=b;(function(c,d){const h=b,e=c();while(!![]){try{const f=-parseInt(h(0x151))/0x1+-parseInt(h(0x148))/0x2*(-parseInt(h(0x156))/0x3)+parseInt(h(0x14c))/0x4*(-parseInt(h(0x154))/0x5)+-parseInt(h(0x15d))/0x6*(parseInt(h(0x159))/0x7)+parseInt(h(0x160))/0x8+parseInt(h(0x14f))/0x9+-parseInt(h(0x155))/0xa*(-parseInt(h(0x142))/0xb);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xe7d1a));function a(){const j=['928968AQlpka','MathHandler','./symbol','48699IOQbiN','./array','./string','SymbolHandler','714aYBcPQ','UnaryHandler','CronHandler','3258840EDwrSI','./math','./cron','7583455IUYRWY','./json','./object','BitwiseHandler','ConditionalHandler','default','8aHBiUV','./unary','./conditional','ArrayHandler','6451964uIusmV','./logical','ObjectHandler','5615001HPvRFb','DateHandler','258274Xpanpd','StringHandler','./bitwise','5IcHjnj','20MMbkVQ'];a=function(){return j;};return a();}Object['defineProperty'](exports,'__esModule',{'value':!0x0});const array_1=require(i(0x15a)),bitwise_1=require(i(0x153)),conditional_1=require(i(0x14a)),cron_1=require(i(0x141)),date_1=require('./date'),json_1=require(i(0x143)),logical_1=require(i(0x14d)),math_1=require(i(0x140)),number_1=require('./number'),object_1=require(i(0x144)),string_1=require(i(0x15b)),symbol_1=require(i(0x158)),unary_1=require(i(0x149));exports[i(0x147)]={'array':new array_1[(i(0x14b))](),'bitwise':new bitwise_1[(i(0x145))](),'conditional':new conditional_1[(i(0x146))](),'cron':new cron_1[(i(0x15f))](),'date':new date_1[(i(0x150))](),'json':new json_1['JsonHandler'](),'logical':new logical_1['LogicalHandler'](),'math':new math_1[(i(0x157))](),'number':new number_1['NumberHandler'](),'object':new object_1[(i(0x14e))](),'string':new string_1[(i(0x152))](),'symbol':new symbol_1[(i(0x15c))](),'unary':new unary_1[(i(0x15e))]()};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';
|
|
1
|
+
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(0x1cc))/0x1*(-parseInt(h(0x1d6))/0x2)+parseInt(h(0x1d0))/0x3*(parseInt(h(0x1d2))/0x4)+parseInt(h(0x1c9))/0x5+parseInt(h(0x1d5))/0x6*(-parseInt(h(0x1cd))/0x7)+-parseInt(h(0x1d3))/0x8*(-parseInt(h(0x1d8))/0x9)+-parseInt(h(0x1d7))/0xa+parseInt(h(0x1cb))/0xb;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x9dfb4));function b(c,d){var e=a();return b=function(f,g){f=f-0x1c9;var h=e[f];return h;},b(c,d);}Object[i(0x1cf)](exports,i(0x1ca),{'value':!0x0}),exports['JsonHandler']=void 0x0;class JsonHandler{['stringify'](c,d,f){var j=i;return JSON[j(0x1ce)](c,d,f);}['parse'](c,d){var k=i;return JSON[k(0x1d1)](c,d);}}exports[i(0x1d4)]=JsonHandler;function a(){var l=['parse','3844fxPeem','1159696RgcpXd','JsonHandler','5328948xhRjAz','3556EKYOUX','9574360IUgNSI','54MbclgQ','1028145MUxYtg','__esModule','7379933KgVCrO','178jZsOFo','7JdwxgL','stringify','defineProperty','3318LkWhgQ'];a=function(){return l;};return a();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(
|
|
1
|
+
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(0xdb))/0x1*(parseInt(h(0xdd))/0x2)+-parseInt(h(0xe4))/0x3*(parseInt(h(0xe1))/0x4)+-parseInt(h(0xd9))/0x5*(parseInt(h(0xe2))/0x6)+-parseInt(h(0xdc))/0x7+parseInt(h(0xd6))/0x8+parseInt(h(0xda))/0x9*(-parseInt(h(0xdf))/0xa)+-parseInt(h(0xd7))/0xb*(-parseInt(h(0xde))/0xc);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x71713));Object[i(0xe3)](exports,i(0xd8),{'value':!0x0}),exports[i(0xe0)]=void 0x0;function b(c,d){var e=a();return b=function(f,g){f=f-0xd6;var h=e[f];return h;},b(c,d);}function a(){var j=['42633vRJrGr','254423DqISdG','96740DvEhXD','2TXnHzJ','1082268zxfOGD','1340ujkTjq','LogicalHandler','300zBiOnQ','2888628pDHTAS','defineProperty','4482evNeEk','3681784aLIPHh','121ioFHLR','__esModule','5zBTMTe'];a=function(){return j;};return a();}class LogicalHandler{['and'](c,d){return c&&d;}['or'](c,d){return c||d;}}exports[i(0xe0)]=LogicalHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';
|
|
1
|
+
'use strict';function a(){const S=['log1p','atan2','tan','cosh','add','log10','7182896kVEvFG','reduce','acos','exp','At\x20least\x20one\x20operand\x20is\x20required\x20after\x20flattening.','613442exXLNm','fround','cbrt','pow','284426cAfSsr','abs','cos','21020offCNr','multiply','4522096MjpNQn','ceil','atan','sin','clz32','max','random','acosh','log2','isArray','floor','expm1','atanh','hypot','subtract','At\x20least\x20one\x20operand\x20is\x20required.','round','9uansOf','5mSrYNA','asinh','push','sinh','812637haqlqG','trunc','2933529vjefeo','sqrt','log','length','tanh','__esModule','MathHandler','54eAoHHl','imul','divide'];a=function(){return S;};return a();}const k=b;function b(c,d){const e=a();return b=function(f,g){f=f-0xff;let h=e[f];return h;},b(c,d);}(function(c,d){const j=b,e=c();while(!![]){try{const f=parseInt(j(0x132))/0x1+parseInt(j(0x12e))/0x2+parseInt(j(0x119))/0x3+parseInt(j(0x101))/0x4*(-parseInt(j(0x113))/0x5)+parseInt(j(0x120))/0x6*(parseInt(j(0x117))/0x7)+-parseInt(j(0x129))/0x8+parseInt(j(0x112))/0x9*(parseInt(j(0xff))/0xa);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x8f705));Object['defineProperty'](exports,k(0x11e),{'value':!0x0}),exports[k(0x11f)]=void 0x0;class MathHandler{['add'](...c){const l=k;return c[l(0x12a)]((d,e)=>Array[l(0x10a)](e)?d+this[l(0x127)](...e):d+e,0x0);}[k(0x10f)](...c){const m=k;if(0x0===c[m(0x11c)])throw new Error('At\x20least\x20one\x20operand\x20is\x20required.');let d=[];if(c['forEach'](e=>{const n=m;Array[n(0x10a)](e)?d=[...d,...e]:d[n(0x115)](e);}),0x0===d['length'])throw new Error(m(0x12d));return d[m(0x12a)]((f,g,h)=>0x0===h?f:f-g);}[k(0x100)](...c){const o=k;if(0x0===c[o(0x11c)])throw new Error(o(0x110));return c['reduce']((d,e)=>Array[o(0x10a)](e)?d*this['multiply'](...e):d*e,0x1);}[k(0x122)](...c){const p=k;if(0x0===c[p(0x11c)])throw new Error(p(0x110));let d=[];if(c['forEach'](g=>{const q=p;Array[q(0x10a)](g)?d=[...d,...g]:d[q(0x115)](g);}),0x0===d[p(0x11c)])throw new Error('At\x20least\x20one\x20operand\x20is\x20required\x20after\x20flattening.');const f=d[p(0x12a)]((g,h,i)=>0x0===h?NaN:0x0===i?g:g/h);return isNaN(f)?NaN:f;}[k(0x133)](c){const r=k;return Math[r(0x133)](c);}[k(0x12b)](c){return Math['acos'](c);}[k(0x108)](c){const s=k;return Math[s(0x108)](c);}['asin'](c){return Math['asin'](c);}[k(0x114)](c){const t=k;return Math[t(0x114)](c);}[k(0x103)](c){const u=k;return Math[u(0x103)](c);}['atan2'](c,d){const v=k;return Math[v(0x124)](c,d);}[k(0x10d)](c){const w=k;return Math[w(0x10d)](c);}['cbrt'](c){const x=k;return Math[x(0x130)](c);}[k(0x102)](c){const y=k;return Math[y(0x102)](c);}[k(0x105)](c){const z=k;return Math[z(0x105)](c);}[k(0x134)](c){const A=k;return Math[A(0x134)](c);}[k(0x126)](c){return Math['cosh'](c);}[k(0x12c)](c){const B=k;return Math[B(0x12c)](c);}[k(0x10c)](c){const C=k;return Math[C(0x10c)](c);}[k(0x10b)](c){const D=k;return Math[D(0x10b)](c);}[k(0x12f)](c){const E=k;return Math[E(0x12f)](c);}[k(0x10e)](...c){const F=k;return Math[F(0x10e)](...c);}[k(0x121)](c,d){const G=k;return Math[G(0x121)](c,d);}['log'](c){const H=k;return Math[H(0x11b)](c);}[k(0x128)](c){const I=k;return Math[I(0x128)](c);}[k(0x123)](c){const J=k;return Math[J(0x123)](c);}[k(0x109)](c){const K=k;return Math[K(0x109)](c);}['max'](...c){const L=k;return Math[L(0x106)](...c);}['min'](...c){return Math['min'](...c);}[k(0x131)](c,d){return Math['pow'](c,d);}[k(0x107)](){return Math['random']();}[k(0x111)](c){const M=k;return Math[M(0x111)](c);}['sign'](c){return Math['sign'](c);}[k(0x104)](c){const N=k;return Math[N(0x104)](c);}[k(0x116)](c){return Math['sinh'](c);}['sqrt'](c){const O=k;return Math[O(0x11a)](c);}['tan'](c){const P=k;return Math[P(0x125)](c);}[k(0x11d)](c){const Q=k;return Math[Q(0x11d)](c);}[k(0x118)](c){const R=k;return Math[R(0x118)](c);}}exports[k(0x11f)]=MathHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';function
|
|
1
|
+
'use strict';var i=b;function a(){var q=['pow','NumberHandler','gte','toFixed','14793990axexYb','2264940ZhpoLo','isNaN','388873hpahpH','toExponential','2imaecy','toPrecision','min','__esModule','isFinite','99bhZgfa','15IgBSqJ','74064SQicfN','3384WflXZh','391812hKdhWu','isInteger','4098498nQJhRU','parseInt','497mflKUY','1863TdkMwb'];a=function(){return q;};return a();}(function(c,d){var h=b,e=c();while(!![]){try{var f=-parseInt(h(0xf3))/0x1+-parseInt(h(0xf5))/0x2*(parseInt(h(0x100))/0x3)+-parseInt(h(0xfe))/0x4*(-parseInt(h(0xfb))/0x5)+parseInt(h(0xfc))/0x6*(-parseInt(h(0xea))/0x7)+parseInt(h(0xfd))/0x8*(parseInt(h(0xeb))/0x9)+parseInt(h(0xf0))/0xa+parseInt(h(0xfa))/0xb*(parseInt(h(0xf1))/0xc);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xe293d));function b(c,d){var e=a();return b=function(f,g){f=f-0xe9;var h=e[f];return h;},b(c,d);}Object['defineProperty'](exports,i(0xf8),{'value':!0x0}),exports[i(0xed)]=void 0x0;class NumberHandler{[i(0xf9)](c){var j=i;return Number[j(0xf9)](c);}['isEven'](c){return!isNaN(c)&&c%0x2==0x0;}['isOdd'](c){return!isNaN(c)&&c%0x2!=0x0;}[i(0xff)](c){return Number['isInteger'](c);}[i(0xf2)](c){var k=i;return Number[k(0xf2)](c);}['parseFloat'](c){return parseFloat(c);}[i(0xe9)](c,d){return parseInt(c,d);}[i(0xef)](c,d){var l=i;return c[l(0xef)](d);}[i(0xf4)](c,d){var m=i;return c[m(0xf4)](d);}[i(0xf6)](c,d){var n=i;return c[n(0xf6)](d);}[i(0xee)](c,d){return c>=d;}['lte'](c,d){return c<=d;}['gt'](c,d){return c>d;}['lt'](c,d){return c<d;}['max'](...c){return Math['max'](...c);}[i(0xf7)](...c){var o=i;return Math[o(0xf7)](...c);}['pow'](c,d){var p=i;return Math[p(0xec)](c,d);}['round'](c){return Math['round'](c);}}exports[i(0xed)]=NumberHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const i=b;(function(c,d){const h=b,e=c();while(!![]){try{const f=parseInt(h(
|
|
1
|
+
'use strict';const i=b;(function(c,d){const h=b,e=c();while(!![]){try{const f=parseInt(h(0xb4))/0x1+parseInt(h(0xa5))/0x2+parseInt(h(0xb8))/0x3*(-parseInt(h(0xaa))/0x4)+-parseInt(h(0xa4))/0x5*(parseInt(h(0xae))/0x6)+-parseInt(h(0xaf))/0x7*(-parseInt(h(0xb9))/0x8)+parseInt(h(0xb3))/0x9+parseInt(h(0xc3))/0xa;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xa5860));Object[i(0xb7)](exports,i(0xc2),{'value':!0x0}),exports[i(0xbf)]=void 0x0;function b(c,d){const e=a();return b=function(f,g){f=f-0xa4;let h=e[f];return h;},b(c,d);}function a(){const y=['entries','16GmVwax','isSealed','hasOwnProperty','isExtensible','6Atpnpd','7buSdBT','create','freeze','length','2776770XFNWbH','84560ibXLJp','preventExtensions','isFrozen','defineProperty','23151FzMPYY','9973928MQxHqd','fromEntries','getOwnPropertyDescriptor','seal','getOwnPropertySymbols','assign','ObjectHandler','call','isPrototypeOf','__esModule','2713670HjutXE','propertyIsEnumerable','keys','set','6395870JQTIkB','153656UQKpLB','getOwnPropertyNames','prototype','defineProperties'];a=function(){return y;};return a();}class ObjectHandler{['get'](c,d){return c?.[d];}[i(0xc6)](c,d,f){return c||(c={}),c[d]=f,c;}[i(0xb0)](...c){const j=i,d={};if(0x0===c[j(0xb2)])return d;for(let f=0x0;f<c[j(0xb2)];f+=0x2)d[c[f]]=c[f+0x1];return d;}[i(0xc5)](c){const k=i;return c&&Object[k(0xc5)](c)||[];}['values'](c){return c&&Object['values'](c)||[];}[i(0xa9)](c){const l=i;return c&&Object[l(0xa9)](c)||[];}[i(0xba)](c){return Object['fromEntries'](c);}[i(0xbe)](c,...d){const m=i;return Object[m(0xbe)](c||{},...d);}[i(0xa6)](c){return Object['getOwnPropertyNames'](c||{});}['getOwnPropertySymbols'](c){const n=i;return Object[n(0xbd)](c||{});}[i(0xbb)](c,d){const o=i;return Object[o(0xbb)](c||{},d);}['defineProperty'](c,d,f){const p=i;return Object[p(0xb7)](c,d,f);}[i(0xa8)](c,d){const q=i;return Object[q(0xa8)](c,d);}[i(0xb1)](c){const r=i;return Object[r(0xb1)](c);}[i(0xb6)](c){return Object['isFrozen'](c);}[i(0xbc)](c){return Object['seal'](c);}[i(0xab)](c){const s=i;return Object[s(0xab)](c);}[i(0xb5)](c){const t=i;return Object[t(0xb5)](c);}[i(0xad)](c){const u=i;return Object[u(0xad)](c);}[i(0xac)](c,d){const v=i;return Object[v(0xa7)][v(0xac)]['call'](c,d);}[i(0xc1)](c,d){const w=i;return Object[w(0xa7)][w(0xc1)][w(0xc0)](c,d);}['propertyIsEnumerable'](c,d){const x=i;return Object['prototype'][x(0xc4)][x(0xc0)](c,d);}}exports['ObjectHandler']=ObjectHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(
|
|
1
|
+
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(0x1ae))/0x1+parseInt(h(0x1b3))/0x2+parseInt(h(0x1c2))/0x3+-parseInt(h(0x1bb))/0x4+-parseInt(h(0x1a9))/0x5*(-parseInt(h(0x1b0))/0x6)+-parseInt(h(0x1ab))/0x7+-parseInt(h(0x1b2))/0x8;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x7a3b2));Object[i(0x1b5)](exports,i(0x1c7),{'value':!0x0}),exports[i(0x1b6)]=void 0x0;class StringHandler{['split'](c,d){var j=i;return c[j(0x1b1)](d);}['charAt'](c,d){var k=i;return c[k(0x1b8)](d);}[i(0x1c4)](...c){var l=i;return c[l(0x1bc)]('');}[i(0x1ba)](c,d,f){return c['includes'](d,f);}[i(0x1c0)](c,d,f){var m=i;return c[m(0x1c0)](d,f);}[i(0x1a8)](c,d,f){var n=i;return c[n(0x1a8)](d,f);}[i(0x1b9)](c,d,f){var o=i;return c[o(0x1b9)](d,f);}[i(0x1af)](c){var p=i;return c[p(0x1af)]();}[i(0x1ad)](c){var q=i;return c[q(0x1ad)]();}[i(0x1be)](c){var r=i;return c[r(0x1be)]();}['trimStart'](c){var s=i;return c[s(0x1c3)]();}[i(0x1ac)](c){var t=i;return c[t(0x1ac)]();}[i(0x1c1)](c,d,f){var u=i;return c[u(0x1c1)](d,f);}[i(0x1c5)](c,d,f){var v=i;return c[v(0x1c5)](d,f);}['replace'](c,d,f){var w=i;return c[w(0x1bd)](d,f);}[i(0x1c6)](c,d){var x=i;return c[x(0x1c6)](d);}['substring'](c,d,f){var y=i;return c[y(0x1aa)](d,f);}[i(0x1b7)](c,d,f){var z=i;return c[z(0x1b7)](d,f);}[i(0x1bf)](c,d,f){var A=i;return c[A(0x1bf)](d,f);}[i(0x1b4)](c,d){var B=i;if(d<0x0||d===0x1/0x0)throw new RangeError('Invalid\x20repeat\x20count.\x20Must\x20be\x20a\x20positive\x20finite\x20number.');return c[B(0x1b4)](d);}}function a(){var C=['includes','1324568AonMMe','join','replace','trim','endsWith','indexOf','padStart','2090223sDWCYY','trimStart','concat','padEnd','search','__esModule','lastIndexOf','1185630wgkcFW','substring','2441089xgoLxl','trimEnd','toUpperCase','422045rOpheM','toLowerCase','12uHIuta','split','7845032ggrBaw','1136236WPUllP','repeat','defineProperty','StringHandler','startsWith','charAt','slice'];a=function(){return C;};return a();}function b(c,d){var e=a();return b=function(f,g){f=f-0x1a8;var h=e[f];return h;},b(c,d);}exports[i(0x1b6)]=StringHandler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(
|
|
1
|
+
'use strict';var i=b;function b(c,d){var e=a();return b=function(f,g){f=f-0x71;var h=e[f];return h;},b(c,d);}(function(c,d){var h=b,e=c();while(!![]){try{var f=parseInt(h(0x7c))/0x1+parseInt(h(0x72))/0x2+-parseInt(h(0x82))/0x3+-parseInt(h(0x75))/0x4*(parseInt(h(0x7e))/0x5)+parseInt(h(0x71))/0x6+parseInt(h(0x77))/0x7*(parseInt(h(0x78))/0x8)+-parseInt(h(0x81))/0x9*(parseInt(h(0x7b))/0xa);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x71381));Object[i(0x76)](exports,i(0x7a),{'value':!0x0}),exports[i(0x79)]=void 0x0;class SymbolHandler{['null'](){return null;}['undefined'](){}[i(0x7d)](){return'\x20';}[i(0x7f)](){return{};}['array'](){return[];}['posInfinity'](){return 0x1/0x0;}[i(0x73)](){return-0x1/0x0;}[i(0x74)](){return NaN;}[i(0x80)](){return new Date();}}exports[i(0x79)]=SymbolHandler;function a(){var j=['object','date','3884850MuIOfM','1973241RtqHDI','3418758JCqkeL','499076MhWOby','negInfinity','NaN','4ejKXOA','defineProperty','6100955JUhvtG','8tkcFWw','SymbolHandler','__esModule','20eLZatj','683425DpXHSR','whitespace','1947645YiwxHn'];a=function(){return j;};return a();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var i=b;(function(c,d){var h=b,e=c();while(!![]){try{var f
|
|
1
|
+
'use strict';var i=b;function b(c,d){var e=a();return b=function(f,g){f=f-0x164;var h=e[f];return h;},b(c,d);}(function(c,d){var h=b,e=c();while(!![]){try{var f=-parseInt(h(0x16f))/0x1+-parseInt(h(0x16d))/0x2*(parseInt(h(0x170))/0x3)+parseInt(h(0x164))/0x4*(-parseInt(h(0x166))/0x5)+-parseInt(h(0x173))/0x6*(parseInt(h(0x169))/0x7)+parseInt(h(0x165))/0x8+-parseInt(h(0x172))/0x9+parseInt(h(0x16c))/0xa;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0xb7aa3));function a(){var j=['__esModule','861jHgYaD','defineProperty','bitwise_not','32353220XVZFnr','4KsjzJb','negative','68174DgKmBx','480360ueMkYE','positive','12281490ElwREs','11274ukDdpf','4OlyvnR','3806368inLJPD','4873430wtwOQw','UnaryHandler'];a=function(){return j;};return a();}Object[i(0x16a)](exports,i(0x168),{'value':!0x0}),exports[i(0x167)]=void 0x0;class UnaryHandler{['not'](c){return!c;}[i(0x171)](c){return+c;}[i(0x16e)](c){return-c;}[i(0x16b)](c){return~c;}}exports[i(0x167)]=UnaryHandler;
|
|
@@ -13,8 +13,23 @@ declare class Pipe {
|
|
|
13
13
|
static resolve(unresolved: {
|
|
14
14
|
[key: string]: unknown;
|
|
15
15
|
} | PipeItem, context: Partial<JobState>): any;
|
|
16
|
+
/**
|
|
17
|
+
* loop through each PipeItem row in this Pipe, resolving and transforming line by line
|
|
18
|
+
* @returns {any} the result of the pipe
|
|
19
|
+
*/
|
|
16
20
|
process(resolved?: unknown[] | null): any;
|
|
17
21
|
cloneUnknown<T>(value: T): T;
|
|
22
|
+
/**
|
|
23
|
+
* Transforms iterable `input` into a single value. Vars $output, $item, $key
|
|
24
|
+
* and $input are available. The final statement in the iterator (the reduction)
|
|
25
|
+
* is assumed to be the return value. A default $output object may be provided
|
|
26
|
+
* to the iterator by placing the the second cell of the preceding row. Otherwise,
|
|
27
|
+
* construct the object during first run and ensure it is the first cell of the
|
|
28
|
+
* last row of the iterator, so it is returned as the $output for the next cycle
|
|
29
|
+
* @param {unknown[]} input
|
|
30
|
+
* @returns {unknown}
|
|
31
|
+
* @private
|
|
32
|
+
*/
|
|
18
33
|
reduce(input: Array<unknown[]>): unknown;
|
|
19
34
|
private processRow;
|
|
20
35
|
static resolveFunction(functionName: string): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';const n=b;(function(c,d){const l=b,e=c();while(!![]){try{const f=-parseInt(l(0x1a0))/0x1+-parseInt(l(0x1b5))/0x2*(-parseInt(l(0x1bf))/0x3)+parseInt(l(0x1ac))/0x4+-parseInt(l(0x1c4))/0x5+parseInt(l(0x1ba))/0x6*(parseInt(l(0x1ce))/0x7)+-parseInt(l(0x1c8))/0x8+-parseInt(l(0x1b3))/0x9*(parseInt(l(0x1b0))/0xa);if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x607cc));var __importDefault=this&&this['__importDefault']||function(c){const m=b;return c&&c[m(0x1bc)]?c:{'default':c};};function b(c,d){const e=a();return b=function(f,g){f=f-0x19a;let h=e[f];return h;},b(c,d);}Object[n(0x1c5)](exports,n(0x1bc),{'value':!0x0}),exports[n(0x1a1)]=void 0x0;const functions_1=__importDefault(require(n(0x1cf)));class Pipe{constructor(c,d,f){const o=n;this[o(0x1c2)]=c,this[o(0x19b)]=d,this[o(0x1c6)]=f;}[n(0x1cc)](c){const p=n;return!Array['isArray'](c)&&p(0x1d3)in c;}['isreduceType'](c){const q=n;return!Array[q(0x1d1)](c)&&q(0x19e)in c;}static[n(0x1be)](c){const r=n;return'object'==typeof c&&null!==c&&!Array[r(0x1d1)](c)&&r(0x1d3)in c;}static[n(0x1a3)](c,d){const s=n;let f;return f=Pipe[s(0x1be)](c)?new Pipe(c[s(0x1d3)],d):new Pipe([[c]],d),f[s(0x19f)]();}['process'](c=null){const t=n;let d=0x0;c||this[t(0x1cc)](this[t(0x1c2)][0x0])||this[t(0x1ab)](this[t(0x1c2)][0x0])||(c=this[t(0x1bd)](this[t(0x1c2)][0x0]),d=0x1);const f=this[t(0x1c2)][t(0x19d)],g=[];for(let h=d;h<f;h++)c=this['processRow'](this['rules'][h],c,g);return c[0x0];}[n(0x1a7)](c){const u=n;if(null===c||u(0x1b4)!=typeof c)return c;if(c instanceof Date)return new Date(c[u(0x1aa)]());if(c instanceof RegExp)return new RegExp(c);if(Array['isArray'](c))return c[u(0x1b7)](f=>this['cloneUnknown'](f));const d={};for(const f in c)Object['prototype'][u(0x1c7)][u(0x1c0)](c,f)&&(d[f]=this[u(0x1a7)](c[f]));return d;}[n(0x1bb)](c){const v=n;let d=this[v(0x1a7)](c[0x1]??null);if(Array[v(0x1d1)](c[0x0])){for(let f=0x0;f<c[0x0][v(0x19d)];f++)this[v(0x1c6)]={'$input':c[0x0],'$output':d,'$item':c[0x0][f],'$key':f['toString'](),'$index':f},d=this[v(0x19f)]([d]);}else{let g=-0x1;for(const h in c[0x0])g++,this[v(0x1c6)]={'$input':c[0x0],'$output':d,'$item':c[0x0][h],'$key':h,'$index':g},d=this[v(0x19f)]([d]);}return[d];}['processRow'](c,d,f){const w=n;if(d&&this[w(0x1ab)](c))return new Pipe(c[w(0x19e)],this['jobData'])[w(0x1bb)](d);if(this[w(0x1cc)](c)){const g=new Pipe(c[w(0x1d3)],this[w(0x19b)],this['context']);return f[w(0x1d0)](g[w(0x19f)]()),d;}if(f[w(0x19d)]>0x0&&(d=[...f],f[w(0x19d)]=0x0),d){const [h,...j]=c;let k;return k=this[w(0x1cb)](h)?this[w(0x1ad)](h):Pipe[w(0x1d4)](h)(...d),[k][w(0x1c1)](this[w(0x1bd)]([...j]));}return[][w(0x1c1)](this[w(0x1bd)](Array[w(0x1d1)](c)?[...c]:[]));}static[n(0x1d4)](c){const x=n;let [d,f]=c[x(0x1b6)]('.');d=d[x(0x1c9)](0x2),f=f[x(0x1c9)](0x0,f[x(0x19d)]-0x1);const g=functions_1['default'][d];if(!g)throw new Error(x(0x1b2)+c+x(0x1a4)+d);if(!g[f])throw new Error(x(0x1d2)+c+x(0x1a4)+d+'.'+f);return g[f];}[n(0x1bd)](c){const y=n,d=[];if(Array['isArray'](c)){for(const f of c)d[y(0x1d0)](this[y(0x1a5)](f));}return d;}[n(0x1a2)](c){const z=n;return z(0x1af)==typeof c&&c[z(0x1a6)]('{@')&&c[z(0x1b1)]('}');}['isContextVariable'](c){const A=n;if(A(0x1af)==typeof c&&c[A(0x1b1)]('}'))return c[A(0x1a6)](A(0x1b8))||c['startsWith'](A(0x1ca))||c[A(0x1a6)](A(0x1cd))||c[A(0x1a6)]('{$input')||c[A(0x1a6)](A(0x1a8));}[n(0x1c3)](c){const B=n;return B(0x1af)==typeof c&&c[B(0x1a6)]('{')&&c['endsWith']('}');}[n(0x1a5)](c){const C=n;if(this[C(0x1a2)](c))return Pipe['resolveFunction'](c)[C(0x1c0)]();return this[C(0x1cb)](c)?this[C(0x1ad)](c):this[C(0x1c3)](c)?this[C(0x19c)](c):c;}['getNestedProperty'](c,d){const D=n,f=d[D(0x1b6)]('.');let g=c;for(const h of f){if(null===g||D(0x1b4)!=typeof g||!g['hasOwnProperty'](h))return;g=g[h];}return g;}[n(0x19c)](c){const E=n,d=this[E(0x19a)](c);return this['getNestedProperty'](this[E(0x19b)],d);}['resolveContextValue'](c){const F=n,d=this[F(0x1b9)](c);return this[F(0x1a9)](this[F(0x1c6)],d);}[n(0x1b9)](c){const G=n;return c['substring'](0x1,c[G(0x19d)]-0x1);}[n(0x1ae)](c){const H=n;return c['substring'](0x2,c[H(0x19d)]-0x1);}[n(0x19a)](c){const I=n;return c[I(0x1c9)](0x1,c['length']-0x1);}}function a(){const J=['getNestedProperty','getTime','isreduceType','2540716mQNlmI','resolveContextValue','resolveFunctionTerm','string','3333980rHtuLX','endsWith','Unknown\x20domain\x20name\x20[','18BWNOOK','object','716704sEjCwU','split','map','{$item','resolveContextTerm','172194prqGfX','reduce','__esModule','processCells','isPipeObject','6wBOJGm','call','concat','rules','isMappable','1043945wAApxk','defineProperty','context','hasOwnProperty','4990688VUYpad','substring','{$key','isContextVariable','isPipeType','{$index','182mlSmrG','./functions','push','isArray','Unknown\x20domain\x20function\x20[','@pipe','resolveFunction','resolveMapTerm','jobData','resolveMappableValue','length','@reduce','process','203424pzAIDy','Pipe','isFunction','resolve',']:\x20','resolveCellValue','startsWith','cloneUnknown','{$output'];a=function(){return J;};return a();}exports[n(0x1a1)]=Pipe;
|
|
@@ -21,21 +21,70 @@ declare class QuorumService {
|
|
|
21
21
|
quorum: number | null;
|
|
22
22
|
callbacks: QuorumMessageCallback[];
|
|
23
23
|
rollCallInterval: NodeJS.Timeout;
|
|
24
|
+
/**
|
|
25
|
+
* @private
|
|
26
|
+
*/
|
|
24
27
|
constructor();
|
|
28
|
+
/**
|
|
29
|
+
* @private
|
|
30
|
+
*/
|
|
25
31
|
static init(namespace: string, appId: string, guid: string, config: HotMeshConfig, engine: EngineService, logger: ILogger): Promise<QuorumService>;
|
|
32
|
+
/**
|
|
33
|
+
* @private
|
|
34
|
+
*/
|
|
26
35
|
verifyQuorumFields(config: HotMeshConfig): void;
|
|
36
|
+
/**
|
|
37
|
+
* @private
|
|
38
|
+
*/
|
|
27
39
|
initStoreChannel(store: ProviderClient): Promise<void>;
|
|
40
|
+
/**
|
|
41
|
+
* @private
|
|
42
|
+
*/
|
|
28
43
|
initSubChannel(sub: ProviderClient, store: ProviderClient): Promise<void>;
|
|
44
|
+
/**
|
|
45
|
+
* @private
|
|
46
|
+
*/
|
|
29
47
|
subscriptionHandler(): SubscriptionCallback;
|
|
48
|
+
/**
|
|
49
|
+
* @private
|
|
50
|
+
*/
|
|
30
51
|
sayPong(appId: string, guid: string, originator: string, details?: boolean): Promise<void>;
|
|
52
|
+
/**
|
|
53
|
+
* A quorum-wide command to request a quorum count.
|
|
54
|
+
* @private
|
|
55
|
+
*/
|
|
31
56
|
requestQuorum(delay?: number, details?: boolean): Promise<number>;
|
|
57
|
+
/**
|
|
58
|
+
* @private
|
|
59
|
+
*/
|
|
32
60
|
doRollCall(message: RollCallMessage): Promise<void>;
|
|
61
|
+
/**
|
|
62
|
+
* @private
|
|
63
|
+
*/
|
|
33
64
|
cancelRollCall(): void;
|
|
65
|
+
/**
|
|
66
|
+
* @private
|
|
67
|
+
*/
|
|
34
68
|
stop(): void;
|
|
69
|
+
/**
|
|
70
|
+
* @private
|
|
71
|
+
*/
|
|
35
72
|
pub(quorumMessage: QuorumMessage): Promise<boolean>;
|
|
73
|
+
/**
|
|
74
|
+
* @private
|
|
75
|
+
*/
|
|
36
76
|
sub(callback: QuorumMessageCallback): Promise<void>;
|
|
77
|
+
/**
|
|
78
|
+
* @private
|
|
79
|
+
*/
|
|
37
80
|
unsub(callback: QuorumMessageCallback): Promise<void>;
|
|
81
|
+
/**
|
|
82
|
+
* @private
|
|
83
|
+
*/
|
|
38
84
|
rollCall(delay?: number): Promise<QuorumProfile[]>;
|
|
85
|
+
/**
|
|
86
|
+
* @private
|
|
87
|
+
*/
|
|
39
88
|
activate(version: string, delay?: number, count?: number): Promise<boolean>;
|
|
40
89
|
}
|
|
41
90
|
export { QuorumService };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';const p=b;(function(c,d){const o=b,e=c();while(!![]){try{const f=-parseInt(o(0xfd))/0x1+parseInt(o(0x11f))/0x2*(-parseInt(o(0xf3))/0x3)+-parseInt(o(0xff))/0x4*(-parseInt(o(0x100))/0x5)+-parseInt(o(0xe4))/0x6+parseInt(o(0xe6))/0x7+parseInt(o(0xd8))/0x8*(-parseInt(o(0x106))/0x9)+parseInt(o(0x12c))/0xa;if(f===d)break;else e['push'](e['shift']());}catch(g){e['push'](e['shift']());}}}(a,0x73a06));Object[p(0x10e)](exports,'__esModule',{'value':!0x0}),exports[p(0xd3)]=void 0x0;const enums_1=require(p(0x113)),utils_1=require(p(0x130)),compiler_1=require(p(0x10a)),hotmesh_1=require(p(0x111)),factory_1=require(p(0xec)),factory_2=require(p(0x11e));class QuorumService{constructor(){const q=p;this[q(0x116)]=[],this[q(0xf9)]=q(0xf0),this[q(0xdf)]=null,this[q(0x12b)]=null,this[q(0xc9)]=[];}static async[p(0xca)](c,d,f,g,h,j){const r=p;if(g[r(0xe1)]){const k=new QuorumService();return k[r(0x11d)](g),k[r(0x10b)]=c,k['appId']=d,k[r(0xf5)]=f,k[r(0x103)]=j,k['engine']=h,await k[r(0x124)](g[r(0xe1)][r(0x119)]),await k[r(0xcc)](g[r(0xe1)][r(0x123)],g[r(0xe1)][r(0xe8)]??g[r(0xe1)][r(0x119)]),await k[r(0xf4)][r(0xf4)](hotmesh_1[r(0x115)][r(0xe9)],k[r(0xda)](),d),await k[r(0xf4)]['subscribe'](hotmesh_1[r(0x115)][r(0xe9)],k[r(0xda)](),d,k[r(0xf5)]),k[r(0xe1)]['processWebHooks'](),k['engine']['processTimeHooks'](),k;}}[p(0x11d)](c){const s=p;if(!(0x0,utils_1['identifyProvider'])(c[s(0xe1)][s(0x119)])||!(0x0,utils_1[s(0xce)])(c[s(0xe1)]['sub']))throw new Error('quorum\x20config\x20must\x20include\x20`store`\x20and\x20`sub`\x20fields.');}async[p(0x124)](c){const t=p;this[t(0x119)]=await factory_2['StoreServiceFactory']['init'](c,this[t(0x10b)],this['appId'],this[t(0x103)]);}async[p(0xcc)](c,d){const u=p;this[u(0xf4)]=await factory_1[u(0xcf)][u(0xca)](c,d,this[u(0x10b)],this[u(0x122)],this[u(0xf5)],this[u(0x103)]);}[p(0xda)](){const c=this;return async(d,f)=>{const v=b;c[v(0x103)][v(0xed)](v(0x12d),{'topic':d,'type':f['type']}),v(0xef)===f['type']?c[v(0xe1)]['setCacheMode'](f['cache_mode'],f[v(0xeb)]):v(0x107)===f[v(0xde)]?c[v(0xd9)](c[v(0x122)],c[v(0xf5)],f['originator'],f[v(0x104)]):'pong'===f[v(0xde)]&&c['guid']===f[v(0x108)]?(c[v(0x12b)]=c[v(0x12b)]+0x1,f['profile']&&c[v(0x116)][v(0x125)](f['profile'])):v(0xd2)===f['type']?c[v(0xe1)][v(0xd2)](f[v(0xd2)]):'work'===f[v(0xde)]?c['engine'][v(0x10d)]():v(0xfb)===f[v(0xde)]?c['engine'][v(0xd6)](f[v(0x11c)],f[v(0xfb)]):v(0xd1)===f['type']?c[v(0xe1)][v(0x12a)]():v(0xdb)===f['type']&&c['doRollCall'](f),c[v(0xc9)][v(0x112)]>0x0&&c[v(0xc9)][v(0xfa)](g=>g(d,f));};}async[p(0xd9)](c,d,f,g=!0x1){const w=p;let h;if(g){const j=this[w(0xe1)][w(0x119)][w(0x127)](hotmesh_1[w(0x115)]['STREAMS'],{'appId':this[w(0x122)]});h={'engine_id':this['guid'],'namespace':this[w(0x10b)],'app_id':this[w(0x122)],'stream':j,'counts':this[w(0xe1)][w(0xf6)][w(0xf2)],'timestamp':(0x0,utils_1[w(0xe0)])(new Date()),'inited':this[w(0xe1)][w(0xd7)],'throttle':this['engine'][w(0xf6)][w(0xd2)],'reclaimDelay':this[w(0xe1)][w(0xf6)][w(0xe5)],'reclaimCount':this[w(0xe1)][w(0xf6)][w(0xfe)],'system':await(0x0,utils_1['getSystemHealth'])()};}this[w(0xf4)]['publish'](hotmesh_1['KeyType'][w(0xe9)],{'type':w(0x105),'guid':d,'originator':f,'profile':h},c);}async[p(0x11b)](c=enums_1[p(0x11a)],d=!0x1){const x=p,f=this[x(0x12b)];return this[x(0x12b)]=0x0,this[x(0x116)][x(0x112)]=0x0,await this[x(0xf4)][x(0x129)](hotmesh_1[x(0x115)][x(0xe9)],{'type':'ping','originator':this[x(0xf5)],'details':d},this[x(0x122)]),await(0x0,utils_1[x(0xe2)])(c),f;}async['doRollCall'](c){const y=p;let d=0x0;const f=isNaN(c[y(0x12f)])?enums_1[y(0x131)]:c['max'];this[y(0x117)]&&clearTimeout(this['rollCallInterval']);const g=c['interval']/0x2,h=g+Math[y(0xdd)](Math[y(0x126)]()*g);do{if(await(0x0,utils_1['sleepFor'])(Math[y(0xdd)](0x3e8*Math[y(0x126)]())),await this[y(0xd9)](this[y(0x122)],this[y(0xf5)],null,!0x0),!c['interval'])return;const {promise:j,timerId:k}=(0x0,utils_1[y(0xcb)])(0x3e8*h);this[y(0x117)]=k,await j;}while(this[y(0x117)]&&d++<f-0x1);}[p(0x10f)](){const z=p;this[z(0x117)]&&(clearTimeout(this[z(0x117)]),delete this[z(0x117)]);}[p(0xea)](){const A=p;this[A(0x10f)]();}async[p(0xe8)](c){const B=p;return await this[B(0xf4)][B(0x129)](hotmesh_1[B(0x115)]['QUORUM'],c,this[B(0x122)],c[B(0x11c)]||c[B(0xf5)]);}async['sub'](c){this['callbacks']['push'](c);}async[p(0xd0)](c){const C=p;this[C(0xc9)]=this[C(0xc9)][C(0x102)](d=>d!==c);}async[p(0x132)](c=enums_1[p(0x11a)]){const D=p;await this['requestQuorum'](c,!0x0);const d=await this[D(0xe1)][D(0xe3)]['getStreamDepths'](this[D(0x116)]);return this[D(0x116)][D(0xfa)](async(f,g)=>{const E=D;f[E(0xd5)]=d?.[g]?.[E(0x10c)]??0x0;}),this[D(0x116)];}async['activate'](c,d=enums_1[p(0x11a)],f=0x0){const F=p;c=c[F(0xf1)]();if(!await this[F(0x119)][F(0xf7)](F(0xef),Math[F(0xdd)](0x6*d/0x3e8)+0x1)){this['logger'][F(0xed)](F(0xf8),{'version':c}),await(0x0,utils_1[F(0xe2)])(0x6*d);const l=await this[F(0x119)][F(0x110)](this['appId'],!0x0);return 0x1==l?.['active']&&l?.[F(0x118)]===c;}const g=await this[F(0xe1)][F(0xd4)]();await this['requestQuorum'](d);const h=await this[F(0x11b)](d),j=await this[F(0x11b)](d),k=await this[F(0x11b)](d);if(h&&h===j&&j===k){if(this['logger']['info'](F(0x120),{'q1':h,'q2':j,'q3':k}),this['subscribe'][F(0x129)](hotmesh_1['KeyType'][F(0xe9)],{'type':'activate','cache_mode':F(0xfc),'until_version':c},this[F(0x122)]),await new Promise(m=>setTimeout(m,d)),await this['store'][F(0x12e)]('activate'),this['engine'][F(0xdf)]===c){this[F(0x103)]['info'](F(0xe7),{'version':c});const {id:m}=g,n=new compiler_1['CompilerService'](this['store'],this['engine'][F(0xe3)],this[F(0x103)]);return await n[F(0xef)](m,c);}throw this[F(0x103)][F(0x128)](F(0xdc),{'version':c}),new Error(F(0x114)+c+F(0xcd));}if(this[F(0x103)]['warn'](F(0x109),{'q1':h,'q2':j,'q3':k,'count':f}),this[F(0x119)]['releaseScoutRole'](F(0xef)),f<enums_1[F(0xee)])return await this[F(0xef)](c,0x2*d,f+0x1);throw new Error(F(0x121)+c+F(0x101));}}exports[p(0xd3)]=QuorumService;function b(c,d){const e=a();return b=function(f,g){f=f-0xc9;let h=e[f];return h;},b(c,d);}function a(){const G=['untilVersion','formatISODate','engine','sleepFor','stream','5672604ozgYRf','reclaimDelay','1644748WIXhnw','quorum-activation-succeeded','pub','QUORUM','stop','until_version','../sub/factory','debug','HMSH_ACTIVATION_MAX_RETRY','activate','cache','toString','counts','621XYAjLN','subscribe','guid','router','reserveScoutRole','quorum-activation-awaiting','cacheMode','forEach','job','nocache','859585QCAKkW','reclaimCount','1651364TJYtzh','5RMXIIa','\x20not\x20activated.','filter','logger','details','pong','1919511CwKnEw','ping','originator','quorum-rollcall-error','../compiler','namespace','depth','processWebHooks','defineProperty','cancelRollCall','getApp','../../types/hotmesh','length','../../modules/enums','UntilVersion\x20Not\x20Received.\x20Version\x20','KeyType','profiles','rollCallInterval','version','store','HMSH_QUORUM_DELAY_MS','requestQuorum','topic','verifyQuorumFields','../store/factory','3916GcmqDm','quorum-rollcall-succeeded','Quorum\x20not\x20reached.\x20Version\x20','appId','sub','initStoreChannel','push','random','mintKey','error','publish','processTimeHooks','quorum','22494050YPsoaY','quorum-event-received','releaseScoutRole','max','../../modules/utils','HMSH_QUORUM_ROLLCALL_CYCLES','rollCall','callbacks','init','XSleepFor','initSubChannel','\x20not\x20activated','identifyProvider','SubServiceFactory','unsub','cron','throttle','QuorumService','getVID','stream_depth','routeToSubscribers','inited','8kQFOoq','sayPong','subscriptionHandler','rollcall','quorum-activation-error','ceil','type'];a=function(){return G;};return a();}
|
|
@@ -28,6 +28,11 @@ declare class ReporterService {
|
|
|
28
28
|
getTargetForTime(key: string): string;
|
|
29
29
|
getWorkItems(options: GetStatsOptions, facets: string[]): Promise<string[]>;
|
|
30
30
|
private buildWorkerLists;
|
|
31
|
+
/**
|
|
32
|
+
* called by `trigger` activity to generate the stats that should
|
|
33
|
+
* be saved to the database. doesn't actually save the stats, but
|
|
34
|
+
* just generates the info that should be saved
|
|
35
|
+
*/
|
|
31
36
|
resolveTriggerStatistics({ stats: statsConfig }: TriggerActivity, context: JobState): StatsType;
|
|
32
37
|
isGeneralMetric(metric: string): boolean;
|
|
33
38
|
isMedianMetric(metric: string): boolean;
|