lightrun 1.55.2 → 1.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/build/src/agent/agent-logger.js +1 -1
  2. package/build/src/agent/blocklisting/blocklisting-patterns.js +1 -1
  3. package/build/src/agent/blocklisting/dummy-blocklist-manager.js +1 -1
  4. package/build/src/agent/blocklisting/patterns-blocklist-manager.js +1 -1
  5. package/build/src/agent/config.js +1 -1
  6. package/build/src/agent/configuration-provider.js +1 -1
  7. package/build/src/agent/controller.js +1 -1
  8. package/build/src/agent/debuglet-helpers/createDebuggee.js +1 -1
  9. package/build/src/agent/debuglet-helpers/createDebuggeeMetadata.js +1 -1
  10. package/build/src/agent/debuglet-helpers/createUniquifier.js +1 -1
  11. package/build/src/agent/debuglet-helpers/delimit.js +1 -1
  12. package/build/src/agent/debuglet-helpers/format.js +1 -1
  13. package/build/src/agent/debuglet-helpers/getAgentConfig.js +1 -1
  14. package/build/src/agent/debuglet-helpers/getPlatform.js +1 -1
  15. package/build/src/agent/debuglet-helpers/limitConfig.js +1 -0
  16. package/build/src/agent/debuglet-helpers/mapSubtract.js +1 -1
  17. package/build/src/agent/debuglet-helpers/normalizeConfig.js +1 -1
  18. package/build/src/agent/debuglet-helpers/tokenize.js +1 -1
  19. package/build/src/agent/debuglet.js +1 -1
  20. package/build/src/agent/environment-metadata.js +1 -1
  21. package/build/src/agent/io/file-index.js +1 -1
  22. package/build/src/agent/io/scan-results.js +1 -1
  23. package/build/src/agent/io/scanner.js +1 -1
  24. package/build/src/agent/io/sourcemapper.js +1 -1
  25. package/build/src/agent/leaky-bucket.js +1 -1
  26. package/build/src/agent/log-data.js +1 -1
  27. package/build/src/agent/piping-manager.js +1 -1
  28. package/build/src/agent/quota-manager.js +1 -1
  29. package/build/src/agent/reduction/redaction-manager-re2js.js +1 -1
  30. package/build/src/agent/reduction/redaction-manager.js +1 -1
  31. package/build/src/agent/state/inspector-state.js +1 -1
  32. package/build/src/agent/state/legacy-state.js +1 -1
  33. package/build/src/agent/util/debug-assert.js +1 -1
  34. package/build/src/agent/util/utils.js +1 -1
  35. package/build/src/agent/util/validator.js +1 -1
  36. package/build/src/agent/v8/debugapi.js +1 -1
  37. package/build/src/agent/v8/inspector-debugapi.js +1 -1
  38. package/build/src/agent/v8/legacy-debugapi.js +1 -1
  39. package/build/src/agent/v8/v8inspector.js +1 -1
  40. package/build/src/client/stackdriver/debug.js +1 -1
  41. package/build/src/client/stackdriver/status-message.js +1 -1
  42. package/build/src/debuggee.js +1 -1
  43. package/build/src/gcp.js +1 -1
  44. package/build/src/index.d.ts +75 -69
  45. package/build/src/index.js +1 -1
  46. package/build/src/lambda.js +1 -1
  47. package/build/src/resources/version.txt +1 -1
  48. package/build/src/types/lightrun.js +1 -1
  49. package/build/src/types/stackdriver.js +1 -1
  50. package/build/src/types/v8.js +1 -1
  51. package/package.json +1 -1
@@ -4,6 +4,76 @@ import { EventEmitter } from 'events';
4
4
  import { GoogleAuthOptions } from '@google-cloud/common';
5
5
  import { Service } from '@google-cloud/common';
6
6
 
7
+ declare interface AgentCaptureConfig {
8
+ /**
9
+ * Whether to include details about stack frames belonging to node-core.
10
+ */
11
+ includeNodeModules: boolean;
12
+ /**
13
+ * Maximum number of stack frames to capture data for. The limit is aimed to
14
+ * reduce overall capture time.
15
+ */
16
+ maxFrames: number;
17
+ /**
18
+ * We collect locals and arguments on a few top frames. For the rest only
19
+ * collect the source location
20
+ */
21
+ maxExpandFrames: number;
22
+ /**
23
+ * To reduce the overall capture time, limit the number of properties
24
+ * gathered on large objects. A value of 0 disables the limit.
25
+ */
26
+ maxProperties: number;
27
+ /**
28
+ * To reduce the overall capture time, limit the number of nested properties
29
+ * gathered on a deeply nested objects. For example a->b->c with a value of 2 will only take values of a and b
30
+ */
31
+ maxVariableDepth: number;
32
+ /**
33
+ * To reduce the overall capture time, limit the number of properties
34
+ * gathered on large objects.
35
+ * This is an extended limitation for under watch expressions
36
+ */
37
+ maxWatchProperties: number;
38
+ /**
39
+ * Total 'size' of data to gather. This is NOT the number of bytes of data
40
+ * that are sent over the wire, but instead a very very coarse approximation
41
+ * based on the length of names and values of the properties. This should be
42
+ * somewhat proportional to the amount of processing needed to capture the
43
+ * data and subsequently the network traffic. A value of 0 disables the
44
+ * limit.
45
+ * @deprecated since version 1.16.0, use maxSnapshotBufferSize instead
46
+ */
47
+ maxDataSize?: number;
48
+ /**
49
+ * To limit the size of the buffer, we truncate long strings. A value of 0
50
+ * disables truncation.
51
+ * @deprecated since version 1.16.0 use maxVariableSize instead
52
+ */
53
+ maxStringLength?: number;
54
+ /**
55
+ * To limit the size of the buffer, we truncate long string. A value of 0
56
+ * disables truncation.
57
+ */
58
+ maxVariableSize: number;
59
+ /**
60
+ * Maximum number of characters we allow for a watch list variable
61
+ * if a user wants to see a large variable (which is > than maxVariableSize) we can show him more characters for the variable
62
+ * with a watch variable (expression) to allow more characters for this variable.
63
+ * This configuration limits the maximum amount of characters we allow for watch variables.
64
+ */
65
+ maxWatchListVariableSize: number;
66
+ /**
67
+ * Total 'size' of data to gather. This is NOT the number of bytes of data
68
+ * that are sent over the wire, but instead a very very coarse approximation
69
+ * based on the length of names and values of the properties. This should be
70
+ * somewhat proportional to the amount of processing needed to capture the
71
+ * data and subsequently the network traffic. A value of 0 disables the
72
+ * limit.
73
+ */
74
+ maxSnapshotBufferSize: number;
75
+ }
76
+
7
77
  declare type AgentLogLevel = 'debug' | 'info' | 'warn' | 'error';
8
78
 
9
79
  declare interface AgentMetadata {
@@ -46,6 +116,8 @@ declare interface CloudWorkspaceSourceContext {
46
116
 
47
117
  declare type ConfigErrors = Record<string, string>;
48
118
 
119
+ declare type CustomAgentLogLevel = 'NOT_SET' | 'DEBUG';
120
+
49
121
  declare class Debug extends Service {
50
122
  options: DebugOptions;
51
123
  packageInfo: PackageInfo;
@@ -131,6 +203,7 @@ declare class Debuglet extends EventEmitter {
131
203
  * pending operations.
132
204
  */
133
205
  stop(): void;
206
+ setCustomLogLevel(agentLogLevel: CustomAgentLogLevel | undefined): void;
134
207
  }
135
208
 
136
209
  declare interface DebugOptions extends GoogleAuthOptions {
@@ -348,78 +421,11 @@ declare interface ResolvedDebugAgentConfig extends GoogleAuthOptions {
348
421
  */
349
422
  expressionsEvalTimeoutMillis: number;
350
423
  errors?: ConfigErrors;
424
+ warnings?: string[];
351
425
  /**
352
426
  * configuration options on what is captured on a snapshot.
353
427
  */
354
- capture: {
355
- /**
356
- * Whether to include details about stack frames belonging to node-core.
357
- */
358
- includeNodeModules: boolean;
359
- /**
360
- * Maximum number of stack frames to capture data for. The limit is aimed to
361
- * reduce overall capture time.
362
- */
363
- maxFrames: number;
364
- /**
365
- * We collect locals and arguments on a few top frames. For the rest only
366
- * collect the source location
367
- */
368
- maxExpandFrames: number;
369
- /**
370
- * To reduce the overall capture time, limit the number of properties
371
- * gathered on large objects. A value of 0 disables the limit.
372
- */
373
- maxProperties: number;
374
- /**
375
- * To reduce the overall capture time, limit the number of nested properties
376
- * gathered on a deeply nested objects. For example a->b->c with a value of 2 will only take values of a and b
377
- */
378
- maxVariableDepth: number;
379
- /**
380
- * To reduce the overall capture time, limit the number of properties
381
- * gathered on large objects.
382
- * This is an extended limitation for under watch expressions
383
- */
384
- maxWatchProperties: number;
385
- /**
386
- * Total 'size' of data to gather. This is NOT the number of bytes of data
387
- * that are sent over the wire, but instead a very very coarse approximation
388
- * based on the length of names and values of the properties. This should be
389
- * somewhat proportional to the amount of processing needed to capture the
390
- * data and subsequently the network traffic. A value of 0 disables the
391
- * limit.
392
- * @deprecated since version 1.16.0, use maxSnapshotBufferSize instead
393
- */
394
- maxDataSize?: number;
395
- /**
396
- * To limit the size of the buffer, we truncate long strings. A value of 0
397
- * disables truncation.
398
- * @deprecated since version 1.16.0 use maxVariableSize instead
399
- */
400
- maxStringLength?: number;
401
- /**
402
- * To limit the size of the buffer, we truncate long string. A value of 0
403
- * disables truncation.
404
- */
405
- maxVariableSize: number;
406
- /**
407
- * Maximum number of characters we allow for a watch list variable
408
- * if a user wants to see a large variable (which is > than maxVariableSize) we can show him more characters for the variable
409
- * with a watch variable (expression) to allow more characters for this variable.
410
- * This configuration limits the maximum amount of characters we allow for watch variables.
411
- */
412
- maxWatchListVariableSize: number;
413
- /**
414
- * Total 'size' of data to gather. This is NOT the number of bytes of data
415
- * that are sent over the wire, but instead a very very coarse approximation
416
- * based on the length of names and values of the properties. This should be
417
- * somewhat proportional to the amount of processing needed to capture the
418
- * data and subsequently the network traffic. A value of 0 disables the
419
- * limit.
420
- */
421
- maxSnapshotBufferSize: number;
422
- };
428
+ capture: AgentCaptureConfig;
423
429
  /**
424
430
  * options affecting log points.
425
431
  */
@@ -1 +1 @@
1
- const a42_0x3e9352=a42_0x3327;(function(_0xb3cdea,_0x1acb49){const _0x4b71cf=a42_0x3327,_0x443d79=_0xb3cdea();while(!![]){try{const _0x2cad4c=-parseInt(_0x4b71cf(0x1ab))/0x1*(-parseInt(_0x4b71cf(0x1bb))/0x2)+parseInt(_0x4b71cf(0x1b1))/0x3*(-parseInt(_0x4b71cf(0x1b6))/0x4)+parseInt(_0x4b71cf(0x1c9))/0x5*(-parseInt(_0x4b71cf(0x1a6))/0x6)+parseInt(_0x4b71cf(0x1bc))/0x7+-parseInt(_0x4b71cf(0x1ae))/0x8+-parseInt(_0x4b71cf(0x1cb))/0x9*(-parseInt(_0x4b71cf(0x1cf))/0xa)+parseInt(_0x4b71cf(0x1bd))/0xb*(parseInt(_0x4b71cf(0x1c6))/0xc);if(_0x2cad4c===_0x1acb49)break;else _0x443d79['push'](_0x443d79['shift']());}catch(_0x956e57){_0x443d79['push'](_0x443d79['shift']());}}}(a42_0x1e82,0x8c903));const a42_0xf869ed=(function(){let _0x64a8b6=!![];return function(_0xbd5a61,_0x31260d){const _0x5e905f=_0x64a8b6?function(){const _0x5adc76=a42_0x3327;if(_0x31260d){const _0x226b48=_0x31260d[_0x5adc76(0x1b2)](_0xbd5a61,arguments);return _0x31260d=null,_0x226b48;}}:function(){};return _0x64a8b6=![],_0x5e905f;};}()),a42_0x3fcb0b=a42_0xf869ed(this,function(){const _0x3e53a7=a42_0x3327;return a42_0x3fcb0b[_0x3e53a7(0x1b8)]()[_0x3e53a7(0x1c4)](_0x3e53a7(0x1b4))[_0x3e53a7(0x1b8)]()[_0x3e53a7(0x1af)](a42_0x3fcb0b)[_0x3e53a7(0x1c4)](_0x3e53a7(0x1b4));});a42_0x3fcb0b();function a42_0x1e82(){const _0x4acd8b=['10UVSGOM','forceNewAgent_','asyncStart','Debug','2472eOQmtc','lightrunWaitForInit','Env\x20variable\x20DISABLE_LIGHTRUN_AGENT\x20is\x20set\x20to\x20\x22','debug','config','3IbFkNH','lightrunInitWaitTimeMs','assign','4455616sqkklp','constructor','now','3AhEKVu','apply','toLowerCase','(((.+)+)+)+$','Debug\x20Agent\x20has\x20already\x20been\x20started','1581576DiZnQd','once','toString','defineProperty','includes','600694wGFMIJ','3519236IFADcu','3201hlTLDh','./agent/debuglet','__esModule','Debuglet','stop','removeListener','env','search','\x22.\x20Lightrun\x20agent\x20is\x20disabled.','22332nKQSss','start','DISABLE_LIGHTRUN_AGENT','13605ztZkQn','log','6334245RJtedo','get','breakpoint_set','breakpoints_fetched'];a42_0x1e82=function(){return _0x4acd8b;};return a42_0x1e82();}'use strict';Object[a42_0x3e9352(0x1b9)](exports,a42_0x3e9352(0x1bf),{'value':!![]}),exports[a42_0x3e9352(0x1cc)]=exports[a42_0x3e9352(0x1d1)]=exports[a42_0x3e9352(0x1c1)]=exports[a42_0x3e9352(0x1c7)]=void 0x0;const debuglet_1=require(a42_0x3e9352(0x1be)),debug_1=require('./client/stackdriver/debug'),pjson=require('../../package.json');let debuglet;function start(_0x1ac9da){const _0x540fd7=a42_0x3e9352,_0xc84470=process[_0x540fd7(0x1c3)][_0x540fd7(0x1c8)];if(_0xc84470&&['1','true'][_0x540fd7(0x1ba)](_0xc84470[_0x540fd7(0x1b3)]())){console[_0x540fd7(0x1ca)](_0x540fd7(0x1a8)+_0xc84470+_0x540fd7(0x1c5));return;}_0x1ac9da=_0x1ac9da||{};const _0x2bccf4=mergeConfigs(_0x1ac9da);if(debuglet&&!_0x2bccf4[_0x540fd7(0x1d0)])throw new Error(_0x540fd7(0x1b5));const _0x4b429f=new debug_1[(_0x540fd7(0x1d2))](_0x2bccf4,pjson);return debuglet=new debuglet_1[(_0x540fd7(0x1c0))](_0x4b429f,_0x2bccf4),debuglet[_0x540fd7(0x1c7)](),_0x2bccf4['testMode_']?debuglet:debuglet['isReadyManager'];}exports[a42_0x3e9352(0x1c7)]=start;function stop(){const _0x3f3847=a42_0x3e9352;debuglet?.[_0x3f3847(0x1c1)](),debuglet=null;}exports[a42_0x3e9352(0x1c1)]=stop;async function asyncStart(_0x149646){const _0x309ea1=a42_0x3e9352;start(_0x149646);if(!debuglet)return;let _0x33ae5b=![];const _0x55184a=()=>_0x33ae5b=!![];debuglet[_0x309ea1(0x1b7)](_0x309ea1(0x1ce),_0x568cb2=>{if(_0x568cb2)return;_0x55184a();}),debuglet[_0x309ea1(0x1b7)](_0x309ea1(0x1cd),_0x55184a);if(debuglet[_0x309ea1(0x1aa)][_0x309ea1(0x1a7)]){const _0x117f8c=Date[_0x309ea1(0x1b0)](),_0x589361=debuglet[_0x309ea1(0x1aa)][_0x309ea1(0x1ac)];while(!_0x33ae5b&&Date[_0x309ea1(0x1b0)]()-_0x117f8c<_0x589361){await new Promise(_0x24d2d7=>setTimeout(_0x24d2d7,0x64));}}debuglet['listenerCount'](_0x309ea1(0x1cd))&&debuglet[_0x309ea1(0x1c2)](_0x309ea1(0x1cd),_0x55184a);}function a42_0x3327(_0x4380a5,_0x330375){const _0x1044dc=a42_0x1e82();return a42_0x3327=function(_0x3fcb0b,_0xf869ed){_0x3fcb0b=_0x3fcb0b-0x1a6;let _0x1e8264=_0x1044dc[_0x3fcb0b];return _0x1e8264;},a42_0x3327(_0x4380a5,_0x330375);}exports[a42_0x3e9352(0x1d1)]=asyncStart;function mergeConfigs(_0xa6fd1b){const _0x24fb1b=a42_0x3e9352;if(!_0xa6fd1b[_0x24fb1b(0x1a9)])return _0xa6fd1b;const _0x1897d6=Object[_0x24fb1b(0x1ad)]({},_0xa6fd1b);return delete _0x1897d6[_0x24fb1b(0x1a9)],Object[_0x24fb1b(0x1ad)](_0x1897d6,_0xa6fd1b[_0x24fb1b(0x1a9)]);}function get(){return debuglet;}exports[a42_0x3e9352(0x1cc)]=get;
1
+ const a43_0x265643=a43_0x3b8c;(function(_0x43ea8b,_0x44e007){const _0x1a5e29=a43_0x3b8c,_0x2240a9=_0x43ea8b();while(!![]){try{const _0x2c80c2=-parseInt(_0x1a5e29(0x18e))/0x1*(parseInt(_0x1a5e29(0x190))/0x2)+parseInt(_0x1a5e29(0x1a0))/0x3*(parseInt(_0x1a5e29(0x193))/0x4)+-parseInt(_0x1a5e29(0x198))/0x5+parseInt(_0x1a5e29(0x17e))/0x6*(-parseInt(_0x1a5e29(0x194))/0x7)+parseInt(_0x1a5e29(0x181))/0x8+-parseInt(_0x1a5e29(0x1a1))/0x9*(parseInt(_0x1a5e29(0x182))/0xa)+-parseInt(_0x1a5e29(0x17f))/0xb*(-parseInt(_0x1a5e29(0x19d))/0xc);if(_0x2c80c2===_0x44e007)break;else _0x2240a9['push'](_0x2240a9['shift']());}catch(_0x53a009){_0x2240a9['push'](_0x2240a9['shift']());}}}(a43_0x339b,0x8caa0));const a43_0x5707c4=(function(){let _0x47a963=!![];return function(_0x2c6880,_0x4cbb8b){const _0x52f10d=_0x47a963?function(){const _0x1bdbdc=a43_0x3b8c;if(_0x4cbb8b){const _0x462f15=_0x4cbb8b[_0x1bdbdc(0x1a9)](_0x2c6880,arguments);return _0x4cbb8b=null,_0x462f15;}}:function(){};return _0x47a963=![],_0x52f10d;};}()),a43_0x418832=a43_0x5707c4(this,function(){const _0x558e25=a43_0x3b8c;return a43_0x418832[_0x558e25(0x183)]()[_0x558e25(0x184)]('(((.+)+)+)+$')['toString']()[_0x558e25(0x1a8)](a43_0x418832)[_0x558e25(0x184)](_0x558e25(0x18d));});a43_0x418832();'use strict';Object[a43_0x265643(0x197)](exports,a43_0x265643(0x189),{'value':!![]}),exports[a43_0x265643(0x18b)]=exports[a43_0x265643(0x185)]=exports['stop']=exports['start']=void 0x0;const debuglet_1=require(a43_0x265643(0x18a)),debug_1=require('./client/stackdriver/debug'),pjson=require(a43_0x265643(0x180));let debuglet;function start(_0x4b33f5){const _0x297243=a43_0x265643,_0x1710e7=process[_0x297243(0x192)]['DISABLE_LIGHTRUN_AGENT'];if(_0x1710e7&&['1',_0x297243(0x1a7)][_0x297243(0x19f)](_0x1710e7['toLowerCase']())){console[_0x297243(0x199)](_0x297243(0x19e)+_0x1710e7+_0x297243(0x17d));return;}_0x4b33f5=_0x4b33f5||{};const _0x23ed83=mergeConfigs(_0x4b33f5);if(debuglet&&!_0x23ed83[_0x297243(0x18f)])throw new Error(_0x297243(0x187));const _0x4e8162=new debug_1[(_0x297243(0x191))](_0x23ed83,pjson);return debuglet=new debuglet_1[(_0x297243(0x1a2))](_0x4e8162,_0x23ed83),debuglet[_0x297243(0x196)](),_0x23ed83[_0x297243(0x19a)]?debuglet:debuglet[_0x297243(0x1a5)];}exports[a43_0x265643(0x196)]=start;function stop(){debuglet?.['stop'](),debuglet=null;}function a43_0x3b8c(_0x5bfa09,_0x2bfc87){const _0x1041e8=a43_0x339b();return a43_0x3b8c=function(_0x418832,_0x5707c4){_0x418832=_0x418832-0x17d;let _0x339bf5=_0x1041e8[_0x418832];return _0x339bf5;},a43_0x3b8c(_0x5bfa09,_0x2bfc87);}exports['stop']=stop;function a43_0x339b(){const _0x2c6505=['includes','1549200AKcNeu','58923gygzgP','Debuglet','removeListener','breakpoint_set','isReadyManager','lightrunInitWaitTimeMs','true','constructor','apply','\x22.\x20Lightrun\x20agent\x20is\x20disabled.','2154PKtDRz','11cKzZVS','../../package.json','3589336hmrBsC','280hGwEHw','toString','search','asyncStart','breakpoints_fetched','Debug\x20Agent\x20has\x20already\x20been\x20started','lightrunWaitForInit','__esModule','./agent/debuglet','get','once','(((.+)+)+)+$','2pNTEou','forceNewAgent_','481646wErJrP','Debug','env','4vWwYWP','8617pjBByH','debug','start','defineProperty','4016875KDzoGx','log','testMode_','config','now','18256308nDyhTp','Env\x20variable\x20DISABLE_LIGHTRUN_AGENT\x20is\x20set\x20to\x20\x22'];a43_0x339b=function(){return _0x2c6505;};return a43_0x339b();}async function asyncStart(_0x1320a0){const _0x2f2da5=a43_0x265643;start(_0x1320a0);if(!debuglet)return;let _0x1034ec=![];const _0x55852b=()=>_0x1034ec=!![];debuglet[_0x2f2da5(0x18c)](_0x2f2da5(0x186),_0x26cfbf=>{if(_0x26cfbf)return;_0x55852b();}),debuglet[_0x2f2da5(0x18c)](_0x2f2da5(0x1a4),_0x55852b);if(debuglet[_0x2f2da5(0x19b)][_0x2f2da5(0x188)]){const _0x36ce81=Date[_0x2f2da5(0x19c)](),_0x3c92b9=debuglet[_0x2f2da5(0x19b)][_0x2f2da5(0x1a6)];while(!_0x1034ec&&Date['now']()-_0x36ce81<_0x3c92b9){await new Promise(_0x388652=>setTimeout(_0x388652,0x64));}}debuglet['listenerCount'](_0x2f2da5(0x1a4))&&debuglet[_0x2f2da5(0x1a3)](_0x2f2da5(0x1a4),_0x55852b);}exports[a43_0x265643(0x185)]=asyncStart;function mergeConfigs(_0x4c8d71){const _0x169621=a43_0x265643;if(!_0x4c8d71['debug'])return _0x4c8d71;const _0x4ca16b=Object['assign']({},_0x4c8d71);return delete _0x4ca16b[_0x169621(0x195)],Object['assign'](_0x4ca16b,_0x4c8d71['debug']);}function get(){return debuglet;}exports[a43_0x265643(0x18b)]=get;
@@ -1 +1 @@
1
- function a43_0x2f97(){const _0x5e3018=['app.lightrun.com','isCallbackWrapperInvoked','stop','constructor','__esModule','306345bPkZhe','tryStop','424598KoylHd','event','376348VJbZGz','apiEndpoint','105540ghmWWz','search','Failed\x20to\x20start\x20the\x20Lightrun\x20agent','defineProperty','Failed\x20to\x20stop\x20the\x20Lightrun\x20agent','175554qHFcRh','response','callbackWrapper','log','./index','apply','run','wrap','asyncStart','toString','lightrunSecret','(((.+)+)+)+$','error','23797cemTgX','320253nwqTxx'];a43_0x2f97=function(){return _0x5e3018;};return a43_0x2f97();}const a43_0x3fdb81=a43_0x257b;(function(_0x50e099,_0x1c4055){const _0x235b9d=a43_0x257b,_0x20fcfa=_0x50e099();while(!![]){try{const _0x32d3e1=-parseInt(_0x235b9d(0x18f))/0x1+parseInt(_0x235b9d(0x198))/0x2+parseInt(_0x235b9d(0x190))/0x3+-parseInt(_0x235b9d(0x19c))/0x4+-parseInt(_0x235b9d(0x196))/0x5+-parseInt(_0x235b9d(0x1a1))/0x6+-parseInt(_0x235b9d(0x19a))/0x7;if(_0x32d3e1===_0x1c4055)break;else _0x20fcfa['push'](_0x20fcfa['shift']());}catch(_0x3560d7){_0x20fcfa['push'](_0x20fcfa['shift']());}}}(a43_0x2f97,0x1e6a0));const a43_0xc1e1ae=(function(){let _0x4760c5=!![];return function(_0x422621,_0x427ca3){const _0x4a1970=_0x4760c5?function(){const _0x5d093c=a43_0x257b;if(_0x427ca3){const _0x18fe98=_0x427ca3[_0x5d093c(0x1a6)](_0x422621,arguments);return _0x427ca3=null,_0x18fe98;}}:function(){};return _0x4760c5=![],_0x4a1970;};}()),a43_0xf3d6b4=a43_0xc1e1ae(this,function(){const _0x27dd0e=a43_0x257b;return a43_0xf3d6b4['toString']()[_0x27dd0e(0x19d)]('(((.+)+)+)+$')[_0x27dd0e(0x18b)]()[_0x27dd0e(0x194)](a43_0xf3d6b4)[_0x27dd0e(0x19d)](_0x27dd0e(0x18d));});a43_0xf3d6b4();'use strict';Object[a43_0x3fdb81(0x19f)](exports,a43_0x3fdb81(0x195),{'value':!![]}),exports['wrap']=void 0x0;const lightrun=require(a43_0x3fdb81(0x1a5)),DEFAULT_API_ENDPOINT=a43_0x3fdb81(0x191),DEFAULT_WAIT_FOR_INIT_MS=0x1388;function a43_0x257b(_0x3faa39,_0x14b3e7){const _0x145b7b=a43_0x2f97();return a43_0x257b=function(_0xf3d6b4,_0xc1e1ae){_0xf3d6b4=_0xf3d6b4-0x189;let _0x2f973a=_0x145b7b[_0xf3d6b4];return _0x2f973a;},a43_0x257b(_0x3faa39,_0x14b3e7);}class LightrunLambdaWrapper{constructor(_0x1b5340,_0x1c6300,_0x484cf1){const _0x12373d=a43_0x3fdb81;this[_0x12373d(0x199)]=_0x1b5340,this['context']=_0x1c6300,this['callback']=_0x484cf1,this['isCallbackWrapperInvoked']=![];}async[a43_0x3fdb81(0x1a7)](_0x594707,_0x3956da={}){const _0x90fe3a=a43_0x3fdb81;this[_0x90fe3a(0x192)]=![],await this['tryStart'](_0x3956da);let _0x89179a=undefined;try{_0x89179a=await _0x594707(this[_0x90fe3a(0x199)],this['context'],this['callbackWrapper']['bind'](this));}finally{await this[_0x90fe3a(0x197)](),this[_0x90fe3a(0x192)]?this['callback'](this[_0x90fe3a(0x18e)],this[_0x90fe3a(0x1a2)]):this['callback'](null,_0x89179a);}}async['tryStart'](_0x221f43={}){const _0x1707b8=a43_0x3fdb81;try{const _0xbe7d7e=this[_0x1707b8(0x199)][_0x1707b8(0x19b)]||DEFAULT_API_ENDPOINT,_0x9e9654=this[_0x1707b8(0x199)][_0x1707b8(0x18c)];await lightrun[_0x1707b8(0x18a)]({'apiEndpoint':_0xbe7d7e,'lightrunSecret':_0x9e9654,'lightrunInitWaitTimeMs':DEFAULT_WAIT_FOR_INIT_MS,..._0x221f43,'forceNewAgent_':!![],'lightrunWaitForInit':!![]});}catch(_0x257b72){console[_0x1707b8(0x1a4)](_0x1707b8(0x19e));}}async[a43_0x3fdb81(0x197)](){const _0x5562a4=a43_0x3fdb81;try{await lightrun[_0x5562a4(0x193)]();}catch(_0x5336fc){console[_0x5562a4(0x1a4)](_0x5562a4(0x1a0));}}[a43_0x3fdb81(0x1a3)](_0x3b13e2,_0x51c429){const _0x20f2dc=a43_0x3fdb81;this['error']=_0x3b13e2,this['response']=_0x51c429,this[_0x20f2dc(0x192)]=!![];}}function wrap(_0x4fd029,_0x59b201){return(_0x5eadf6,_0x446bf8,_0x3d9fe8)=>{const _0x58f1cd=a43_0x257b,_0x3d7d24=new LightrunLambdaWrapper(_0x5eadf6,_0x446bf8,_0x3d9fe8);return _0x3d7d24[_0x58f1cd(0x1a7)](_0x4fd029,_0x59b201);};}exports[a43_0x3fdb81(0x189)]=wrap;
1
+ const a44_0x23d5cc=a44_0x4080;(function(_0x54f6ea,_0x2986fe){const _0x235e3c=a44_0x4080,_0x52fc53=_0x54f6ea();while(!![]){try{const _0x115f17=parseInt(_0x235e3c(0x18d))/0x1+-parseInt(_0x235e3c(0x176))/0x2*(-parseInt(_0x235e3c(0x18a))/0x3)+parseInt(_0x235e3c(0x16b))/0x4+-parseInt(_0x235e3c(0x18c))/0x5*(-parseInt(_0x235e3c(0x180))/0x6)+-parseInt(_0x235e3c(0x181))/0x7+parseInt(_0x235e3c(0x178))/0x8+-parseInt(_0x235e3c(0x172))/0x9;if(_0x115f17===_0x2986fe)break;else _0x52fc53['push'](_0x52fc53['shift']());}catch(_0x10ae4f){_0x52fc53['push'](_0x52fc53['shift']());}}}(a44_0xa9d5,0x2e7de));function a44_0xa9d5(){const _0x5b9589=['(((.+)+)+)+$','lightrunSecret','Failed\x20to\x20start\x20the\x20Lightrun\x20agent','response','toString','114564KslRpG','624162HPQxNY','callbackWrapper','constructor','Failed\x20to\x20stop\x20the\x20Lightrun\x20agent','apiEndpoint','event','defineProperty','bind','log','487965kkCjod','search','85kydPAG','132860UZzzzf','759976QgElla','tryStart','app.lightrun.com','isCallbackWrapperInvoked','asyncStart','error','stop','8425656eDkbyI','run','context','callback','4bQYifc','tryStop','1944144vFyjXg','wrap','__esModule'];a44_0xa9d5=function(){return _0x5b9589;};return a44_0xa9d5();}const a44_0xeb157c=(function(){let _0x12e478=!![];return function(_0x2ec7df,_0x4d10c5){const _0x17f66a=_0x12e478?function(){if(_0x4d10c5){const _0x59f434=_0x4d10c5['apply'](_0x2ec7df,arguments);return _0x4d10c5=null,_0x59f434;}}:function(){};return _0x12e478=![],_0x17f66a;};}()),a44_0xd269ba=a44_0xeb157c(this,function(){const _0xb04646=a44_0x4080;return a44_0xd269ba[_0xb04646(0x17f)]()[_0xb04646(0x18b)](_0xb04646(0x17b))[_0xb04646(0x17f)]()[_0xb04646(0x183)](a44_0xd269ba)[_0xb04646(0x18b)](_0xb04646(0x17b));});a44_0xd269ba();'use strict';Object[a44_0x23d5cc(0x187)](exports,a44_0x23d5cc(0x17a),{'value':!![]}),exports[a44_0x23d5cc(0x179)]=void 0x0;const lightrun=require('./index'),DEFAULT_API_ENDPOINT=a44_0x23d5cc(0x16d),DEFAULT_WAIT_FOR_INIT_MS=0x1388;function a44_0x4080(_0x226dbd,_0x2fbe6d){const _0x496f6b=a44_0xa9d5();return a44_0x4080=function(_0xd269ba,_0xeb157c){_0xd269ba=_0xd269ba-0x16b;let _0xa9d584=_0x496f6b[_0xd269ba];return _0xa9d584;},a44_0x4080(_0x226dbd,_0x2fbe6d);}class LightrunLambdaWrapper{constructor(_0x20b690,_0x39e634,_0x1266b2){const _0x341218=a44_0x23d5cc;this['event']=_0x20b690,this[_0x341218(0x174)]=_0x39e634,this['callback']=_0x1266b2,this[_0x341218(0x16e)]=![];}async[a44_0x23d5cc(0x173)](_0x5e0bca,_0x45af43={}){const _0x521791=a44_0x23d5cc;this[_0x521791(0x16e)]=![],await this[_0x521791(0x16c)](_0x45af43);let _0x1313fe=undefined;try{_0x1313fe=await _0x5e0bca(this['event'],this['context'],this[_0x521791(0x182)][_0x521791(0x188)](this));}finally{await this[_0x521791(0x177)](),this[_0x521791(0x16e)]?this['callback'](this['error'],this[_0x521791(0x17e)]):this[_0x521791(0x175)](null,_0x1313fe);}}async[a44_0x23d5cc(0x16c)](_0x52a033={}){const _0x5bcdf9=a44_0x23d5cc;try{const _0x417bce=this[_0x5bcdf9(0x186)][_0x5bcdf9(0x185)]||DEFAULT_API_ENDPOINT,_0x1d0b2b=this[_0x5bcdf9(0x186)][_0x5bcdf9(0x17c)];await lightrun[_0x5bcdf9(0x16f)]({'apiEndpoint':_0x417bce,'lightrunSecret':_0x1d0b2b,'lightrunInitWaitTimeMs':DEFAULT_WAIT_FOR_INIT_MS,..._0x52a033,'forceNewAgent_':!![],'lightrunWaitForInit':!![]});}catch(_0xff72cf){console[_0x5bcdf9(0x189)](_0x5bcdf9(0x17d));}}async[a44_0x23d5cc(0x177)](){const _0x4fbf7b=a44_0x23d5cc;try{await lightrun[_0x4fbf7b(0x171)]();}catch(_0x2aa7b1){console['log'](_0x4fbf7b(0x184));}}['callbackWrapper'](_0x2f56c9,_0x3ae705){const _0x1aefe8=a44_0x23d5cc;this[_0x1aefe8(0x170)]=_0x2f56c9,this[_0x1aefe8(0x17e)]=_0x3ae705,this['isCallbackWrapperInvoked']=!![];}}function wrap(_0xb55624,_0x1b3bdc){return(_0x24b921,_0x1953cf,_0x44b966)=>{const _0x4fd0d5=a44_0x4080,_0x51233f=new LightrunLambdaWrapper(_0x24b921,_0x1953cf,_0x44b966);return _0x51233f[_0x4fd0d5(0x173)](_0xb55624,_0x1b3bdc);};}exports[a44_0x23d5cc(0x179)]=wrap;
@@ -1 +1 @@
1
- 1.55.2-release.95ea909cab
1
+ 1.57.0-release.43c69152d5
@@ -1 +1 @@
1
- function a44_0x25ba(_0x553710,_0x4ea0ef){var _0x18bd77=a44_0xf7f2();return a44_0x25ba=function(_0x33280f,_0x2243c6){_0x33280f=_0x33280f-0x7a;var _0xf7f248=_0x18bd77[_0x33280f];return _0xf7f248;},a44_0x25ba(_0x553710,_0x4ea0ef);}var a44_0x128cdb=a44_0x25ba;(function(_0xc91314,_0x4950ae){var _0x418e75=a44_0x25ba,_0x25cabd=_0xc91314();while(!![]){try{var _0x3c4332=parseInt(_0x418e75(0x85))/0x1+parseInt(_0x418e75(0x89))/0x2+parseInt(_0x418e75(0x81))/0x3+parseInt(_0x418e75(0x7f))/0x4*(parseInt(_0x418e75(0x86))/0x5)+parseInt(_0x418e75(0x7e))/0x6*(-parseInt(_0x418e75(0x7a))/0x7)+-parseInt(_0x418e75(0x7b))/0x8*(parseInt(_0x418e75(0x88))/0x9)+-parseInt(_0x418e75(0x80))/0xa;if(_0x3c4332===_0x4950ae)break;else _0x25cabd['push'](_0x25cabd['shift']());}catch(_0x23f615){_0x25cabd['push'](_0x25cabd['shift']());}}}(a44_0xf7f2,0xadd5f));var a44_0x2243c6=(function(){var _0x159951=!![];return function(_0x4a5c33,_0x2a28d5){var _0x403623=_0x159951?function(){var _0x4ffeff=a44_0x25ba;if(_0x2a28d5){var _0x350b93=_0x2a28d5[_0x4ffeff(0x8a)](_0x4a5c33,arguments);return _0x2a28d5=null,_0x350b93;}}:function(){};return _0x159951=![],_0x403623;};}()),a44_0x33280f=a44_0x2243c6(this,function(){var _0x29fe54=a44_0x25ba;return a44_0x33280f['toString']()[_0x29fe54(0x7d)](_0x29fe54(0x84))[_0x29fe54(0x87)]()['constructor'](a44_0x33280f)[_0x29fe54(0x7d)](_0x29fe54(0x84));});a44_0x33280f();'use strict';Object[a44_0x128cdb(0x83)](exports,'__esModule',{'value':!![]}),exports['PatternDTOTypeEnum']=void 0x0,exports['PatternDTOTypeEnum']={'Name':a44_0x128cdb(0x82),'Value':a44_0x128cdb(0x7c)};function a44_0xf7f2(){var _0xccff69=['12vJTwXa','2696288CgzmtV','19175550OixJBC','2840100spPaDS','BY_NAME','defineProperty','(((.+)+)+)+$','634453iSPitP','5VHABCQ','toString','9SdktjH','1675220QmNqgY','apply','1581818fdGGgm','90408WopDQI','BY_VALUE','search'];a44_0xf7f2=function(){return _0xccff69;};return a44_0xf7f2();}
1
+ var a45_0x129636=a45_0x193f;function a45_0x1af9(){var _0x6ab309=['1043728IRODfL','PatternDTOTypeEnum','11brONOo','apply','6ATZqBl','2627005GBPNxu','toString','(((.+)+)+)+$','2664776JDXZVd','7mOvwix','BY_NAME','3KsIyij','906435wmTdKl','1929736ixdfrX','5601444mByBQx','BY_VALUE','1194968qCXBME','search','__esModule','constructor','20ABtdXT'];a45_0x1af9=function(){return _0x6ab309;};return a45_0x1af9();}(function(_0x13107a,_0x16e586){var _0x3df467=a45_0x193f,_0x1cdab3=_0x13107a();while(!![]){try{var _0x4e14df=-parseInt(_0x3df467(0x93))/0x1+parseInt(_0x3df467(0x8b))/0x2+parseInt(_0x3df467(0x89))/0x3*(parseInt(_0x3df467(0x86))/0x4)+-parseInt(_0x3df467(0x98))/0x5*(-parseInt(_0x3df467(0x97))/0x6)+-parseInt(_0x3df467(0x87))/0x7*(-parseInt(_0x3df467(0x8e))/0x8)+parseInt(_0x3df467(0x8a))/0x9*(-parseInt(_0x3df467(0x92))/0xa)+parseInt(_0x3df467(0x95))/0xb*(-parseInt(_0x3df467(0x8c))/0xc);if(_0x4e14df===_0x16e586)break;else _0x1cdab3['push'](_0x1cdab3['shift']());}catch(_0xa7dc3){_0x1cdab3['push'](_0x1cdab3['shift']());}}}(a45_0x1af9,0x90fe1));var a45_0x37269b=(function(){var _0x21473f=!![];return function(_0x474261,_0x29d3a8){var _0x265f30=_0x21473f?function(){var _0x45edc5=a45_0x193f;if(_0x29d3a8){var _0x3307f5=_0x29d3a8[_0x45edc5(0x96)](_0x474261,arguments);return _0x29d3a8=null,_0x3307f5;}}:function(){};return _0x21473f=![],_0x265f30;};}()),a45_0x339737=a45_0x37269b(this,function(){var _0x53379e=a45_0x193f;return a45_0x339737[_0x53379e(0x84)]()[_0x53379e(0x8f)](_0x53379e(0x85))[_0x53379e(0x84)]()[_0x53379e(0x91)](a45_0x339737)[_0x53379e(0x8f)]('(((.+)+)+)+$');});a45_0x339737();function a45_0x193f(_0x135853,_0x12b652){var _0x50e7eb=a45_0x1af9();return a45_0x193f=function(_0x339737,_0x37269b){_0x339737=_0x339737-0x84;var _0x1af96=_0x50e7eb[_0x339737];return _0x1af96;},a45_0x193f(_0x135853,_0x12b652);}'use strict';Object['defineProperty'](exports,a45_0x129636(0x90),{'value':!![]}),exports[a45_0x129636(0x94)]=void 0x0,exports[a45_0x129636(0x94)]={'Name':a45_0x129636(0x88),'Value':a45_0x129636(0x8d)};
@@ -1 +1 @@
1
- const a45_0x9372fc=a45_0x38e4;function a45_0x15b5(){const _0x5911f9=['constructor','8mnOneE','1042735pxuMLE','path','56687YVXWZG','toString','12nweCbf','6223000taqCfV','29214760HhbHax','search',',\x20id=','2098740jGNgdu','2173060JrjPrL','2167677oMvjpq','defineProperty','assign','Breakpoint','location','__esModule','34slqfTa'];a45_0x15b5=function(){return _0x5911f9;};return a45_0x15b5();}(function(_0x5b09fd,_0x3bd37f){const _0x19f86e=a45_0x38e4,_0x42bfe5=_0x5b09fd();while(!![]){try{const _0x29dabd=-parseInt(_0x19f86e(0x199))/0x1*(parseInt(_0x19f86e(0x194))/0x2)+-parseInt(_0x19f86e(0x1a0))/0x3+-parseInt(_0x19f86e(0x1a1))/0x4+-parseInt(_0x19f86e(0x197))/0x5*(-parseInt(_0x19f86e(0x19b))/0x6)+-parseInt(_0x19f86e(0x19c))/0x7+parseInt(_0x19f86e(0x196))/0x8*(parseInt(_0x19f86e(0x1a2))/0x9)+parseInt(_0x19f86e(0x19d))/0xa;if(_0x29dabd===_0x3bd37f)break;else _0x42bfe5['push'](_0x42bfe5['shift']());}catch(_0x2fb3e0){_0x42bfe5['push'](_0x42bfe5['shift']());}}}(a45_0x15b5,0x7623b));const a45_0x30c63b=(function(){let _0x20032e=!![];return function(_0x556322,_0x524ff3){const _0x218726=_0x20032e?function(){if(_0x524ff3){const _0x128d67=_0x524ff3['apply'](_0x556322,arguments);return _0x524ff3=null,_0x128d67;}}:function(){};return _0x20032e=![],_0x218726;};}()),a45_0x27abb6=a45_0x30c63b(this,function(){const _0x22ca67=a45_0x38e4;return a45_0x27abb6[_0x22ca67(0x19a)]()[_0x22ca67(0x19e)]('(((.+)+)+)+$')[_0x22ca67(0x19a)]()[_0x22ca67(0x195)](a45_0x27abb6)[_0x22ca67(0x19e)]('(((.+)+)+)+$');});function a45_0x38e4(_0x4534b9,_0x571f4e){const _0x4ab876=a45_0x15b5();return a45_0x38e4=function(_0x27abb6,_0x30c63b){_0x27abb6=_0x27abb6-0x193;let _0x15b5bd=_0x4ab876[_0x27abb6];return _0x15b5bd;},a45_0x38e4(_0x4534b9,_0x571f4e);}a45_0x27abb6();'use strict';Object[a45_0x9372fc(0x1a3)](exports,a45_0x9372fc(0x193),{'value':!![]}),exports['Breakpoint']=void 0x0;class Breakpoint{constructor(_0x5a94dd){const _0x52bfe5=a45_0x9372fc;_0x5a94dd&&Object[_0x52bfe5(0x1a4)](this,_0x5a94dd);}['toString'](){const _0x4f4498=a45_0x9372fc,_0x25b1c1=this[_0x4f4498(0x1a6)]?'\x20'+this[_0x4f4498(0x1a6)][_0x4f4498(0x198)]+':'+this['location']['line']:'';return'\x22'+this['action']+_0x25b1c1+_0x4f4498(0x19f)+this['id']+'\x22';}}exports[a45_0x9372fc(0x1a5)]=Breakpoint;
1
+ const a46_0x3321a6=a46_0x51cf;function a46_0x51cf(_0x1d8b50,_0x2e2e7d){const _0x53322a=a46_0x1072();return a46_0x51cf=function(_0x2fa1ad,_0x4a5ff2){_0x2fa1ad=_0x2fa1ad-0x7b;let _0x107253=_0x53322a[_0x2fa1ad];return _0x107253;},a46_0x51cf(_0x1d8b50,_0x2e2e7d);}(function(_0x1b011b,_0x42bdef){const _0x111fa6=a46_0x51cf,_0x5c3cf1=_0x1b011b();while(!![]){try{const _0x315384=-parseInt(_0x111fa6(0x81))/0x1+-parseInt(_0x111fa6(0x8e))/0x2+parseInt(_0x111fa6(0x7e))/0x3*(-parseInt(_0x111fa6(0x87))/0x4)+parseInt(_0x111fa6(0x7b))/0x5+parseInt(_0x111fa6(0x8a))/0x6+parseInt(_0x111fa6(0x84))/0x7*(-parseInt(_0x111fa6(0x86))/0x8)+parseInt(_0x111fa6(0x88))/0x9;if(_0x315384===_0x42bdef)break;else _0x5c3cf1['push'](_0x5c3cf1['shift']());}catch(_0x62575e){_0x5c3cf1['push'](_0x5c3cf1['shift']());}}}(a46_0x1072,0x878df));const a46_0x4a5ff2=(function(){let _0xef542f=!![];return function(_0x3e9255,_0x181fb9){const _0x32a552=_0xef542f?function(){const _0x4de1ae=a46_0x51cf;if(_0x181fb9){const _0x5e7eb8=_0x181fb9[_0x4de1ae(0x7c)](_0x3e9255,arguments);return _0x181fb9=null,_0x5e7eb8;}}:function(){};return _0xef542f=![],_0x32a552;};}()),a46_0x2fa1ad=a46_0x4a5ff2(this,function(){const _0xeeff23=a46_0x51cf;return a46_0x2fa1ad[_0xeeff23(0x8b)]()[_0xeeff23(0x82)](_0xeeff23(0x83))['toString']()[_0xeeff23(0x7f)](a46_0x2fa1ad)[_0xeeff23(0x82)](_0xeeff23(0x83));});a46_0x2fa1ad();'use strict';Object['defineProperty'](exports,a46_0x3321a6(0x8c),{'value':!![]}),exports[a46_0x3321a6(0x8d)]=void 0x0;function a46_0x1072(){const _0x1f38fc=['__esModule','Breakpoint','2078346ymgTNb','location','assign','2242390JhbKOf','apply','path','222jQyXUY','constructor','line','567941ABQruz','search','(((.+)+)+)+$','5564181cilqUW','action','8scZkNA','36dYbCFk','13780089vxPuXt',',\x20id=','5869770PoNVrY','toString'];a46_0x1072=function(){return _0x1f38fc;};return a46_0x1072();}class Breakpoint{constructor(_0x5adf6d){const _0x1ac703=a46_0x3321a6;_0x5adf6d&&Object[_0x1ac703(0x90)](this,_0x5adf6d);}['toString'](){const _0x41e2fd=a46_0x3321a6,_0x264671=this[_0x41e2fd(0x8f)]?'\x20'+this['location'][_0x41e2fd(0x7d)]+':'+this['location'][_0x41e2fd(0x80)]:'';return'\x22'+this[_0x41e2fd(0x85)]+_0x264671+_0x41e2fd(0x89)+this['id']+'\x22';}}exports[a46_0x3321a6(0x8d)]=Breakpoint;
@@ -1 +1 @@
1
- function a46_0x1e71(_0x15da63,_0x204cc6){var _0x1c5cea=a46_0x107b();return a46_0x1e71=function(_0x565688,_0xa7557a){_0x565688=_0x565688-0x10a;var _0x107b5f=_0x1c5cea[_0x565688];return _0x107b5f;},a46_0x1e71(_0x15da63,_0x204cc6);}var a46_0xfabc5e=a46_0x1e71;function a46_0x107b(){var _0x5f4d41=['5285YHzkNx','defineProperty','apply','87mIujwB','5859990VXtsBx','50BiULws','340200FRtidl','toString','search','353658yzpXSC','(((.+)+)+)+$','__esModule','84988yheAMZ','constructor','7191280LgbnKn','1568RPEPII','854991MkQieu'];a46_0x107b=function(){return _0x5f4d41;};return a46_0x107b();}(function(_0x3566fe,_0x10063f){var _0x578bf3=a46_0x1e71,_0x47753a=_0x3566fe();while(!![]){try{var _0x38d389=parseInt(_0x578bf3(0x10d))/0x1+-parseInt(_0x578bf3(0x117))/0x2+parseInt(_0x578bf3(0x111))/0x3*(-parseInt(_0x578bf3(0x11a))/0x4)+parseInt(_0x578bf3(0x113))/0x5*(parseInt(_0x578bf3(0x114))/0x6)+parseInt(_0x578bf3(0x10e))/0x7*(parseInt(_0x578bf3(0x10c))/0x8)+parseInt(_0x578bf3(0x112))/0x9+-parseInt(_0x578bf3(0x10b))/0xa;if(_0x38d389===_0x10063f)break;else _0x47753a['push'](_0x47753a['shift']());}catch(_0xa1e97b){_0x47753a['push'](_0x47753a['shift']());}}}(a46_0x107b,0xad161));var a46_0xa7557a=(function(){var _0x3ff872=!![];return function(_0x49a783,_0x4fcd01){var _0x56ce26=_0x3ff872?function(){var _0x1c7891=a46_0x1e71;if(_0x4fcd01){var _0xe4a62=_0x4fcd01[_0x1c7891(0x110)](_0x49a783,arguments);return _0x4fcd01=null,_0xe4a62;}}:function(){};return _0x3ff872=![],_0x56ce26;};}()),a46_0x565688=a46_0xa7557a(this,function(){var _0x22cb96=a46_0x1e71;return a46_0x565688['toString']()[_0x22cb96(0x116)]('(((.+)+)+)+$')[_0x22cb96(0x115)]()[_0x22cb96(0x10a)](a46_0x565688)[_0x22cb96(0x116)](_0x22cb96(0x118));});a46_0x565688();'use strict';Object[a46_0xfabc5e(0x10f)](exports,a46_0xfabc5e(0x119),{'value':!![]});
1
+ function a47_0x55dc(_0x320459,_0x413fb7){var _0x1e8142=a47_0x56a1();return a47_0x55dc=function(_0x249f36,_0x8b45fb){_0x249f36=_0x249f36-0x1b1;var _0x56a12f=_0x1e8142[_0x249f36];return _0x56a12f;},a47_0x55dc(_0x320459,_0x413fb7);}var a47_0x278949=a47_0x55dc;(function(_0x26170e,_0x505eb3){var _0x272e38=a47_0x55dc,_0x501f94=_0x26170e();while(!![]){try{var _0x27fa94=-parseInt(_0x272e38(0x1bc))/0x1*(-parseInt(_0x272e38(0x1bf))/0x2)+-parseInt(_0x272e38(0x1b5))/0x3*(-parseInt(_0x272e38(0x1b4))/0x4)+-parseInt(_0x272e38(0x1b8))/0x5*(parseInt(_0x272e38(0x1ba))/0x6)+-parseInt(_0x272e38(0x1b7))/0x7+parseInt(_0x272e38(0x1b6))/0x8+parseInt(_0x272e38(0x1b1))/0x9*(parseInt(_0x272e38(0x1b9))/0xa)+-parseInt(_0x272e38(0x1b2))/0xb*(parseInt(_0x272e38(0x1c2))/0xc);if(_0x27fa94===_0x505eb3)break;else _0x501f94['push'](_0x501f94['shift']());}catch(_0x33f252){_0x501f94['push'](_0x501f94['shift']());}}}(a47_0x56a1,0xd6aa9));var a47_0x8b45fb=(function(){var _0x52579e=!![];return function(_0x318156,_0xd11798){var _0x433c8e=_0x52579e?function(){var _0x1fe876=a47_0x55dc;if(_0xd11798){var _0x162ca9=_0xd11798[_0x1fe876(0x1bd)](_0x318156,arguments);return _0xd11798=null,_0x162ca9;}}:function(){};return _0x52579e=![],_0x433c8e;};}()),a47_0x249f36=a47_0x8b45fb(this,function(){var _0x171feb=a47_0x55dc;return a47_0x249f36[_0x171feb(0x1c1)]()['search'](_0x171feb(0x1c0))[_0x171feb(0x1c1)]()[_0x171feb(0x1bb)](a47_0x249f36)['search'](_0x171feb(0x1c0));});a47_0x249f36();function a47_0x56a1(){var _0x67e0d=['228TJYwzE','26769cUeGZt','10046448TzDSft','6086052iOWjVI','10wSLbhx','2521330eNoCcV','2845602SLSbgb','constructor','247883UBqVOq','apply','__esModule','12XGqSlD','(((.+)+)+)+$','toString','12VvZxnZ','9brtpau','8872655CwTuul','defineProperty'];a47_0x56a1=function(){return _0x67e0d;};return a47_0x56a1();}'use strict';Object[a47_0x278949(0x1b3)](exports,a47_0x278949(0x1be),{'value':!![]});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightrun",
3
- "version": "1.55.2",
3
+ "version": "1.57.0",
4
4
  "author": "Lightrun platform Inc.",
5
5
  "description": "Lightrun Debug Agent for Node.js",
6
6
  "license": "SEE LICENSE IN LIGHTRUN",