lightrun 1.56.0 → 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 (52) 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
  52. package/build/src/agent/state/helpers.js +0 -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 a43_0x46f11d=a43_0x32b7;(function(_0x11c06b,_0x11e285){const _0x1ff3b6=a43_0x32b7,_0xb24124=_0x11c06b();while(!![]){try{const _0x21612f=-parseInt(_0x1ff3b6(0xfb))/0x1*(parseInt(_0x1ff3b6(0x109))/0x2)+parseInt(_0x1ff3b6(0x10e))/0x3+-parseInt(_0x1ff3b6(0xee))/0x4+parseInt(_0x1ff3b6(0xe9))/0x5*(parseInt(_0x1ff3b6(0x102))/0x6)+parseInt(_0x1ff3b6(0xeb))/0x7*(-parseInt(_0x1ff3b6(0xff))/0x8)+parseInt(_0x1ff3b6(0x107))/0x9+-parseInt(_0x1ff3b6(0xf5))/0xa;if(_0x21612f===_0x11e285)break;else _0xb24124['push'](_0xb24124['shift']());}catch(_0x52cab0){_0xb24124['push'](_0xb24124['shift']());}}}(a43_0x3146,0xc9a72));const a43_0x1cb2b2=(function(){let _0xc918b2=!![];return function(_0x3ba966,_0x51ecaf){const _0x300bee=_0xc918b2?function(){const _0x86d446=a43_0x32b7;if(_0x51ecaf){const _0x54ad1d=_0x51ecaf[_0x86d446(0x100)](_0x3ba966,arguments);return _0x51ecaf=null,_0x54ad1d;}}:function(){};return _0xc918b2=![],_0x300bee;};}()),a43_0x42c046=a43_0x1cb2b2(this,function(){const _0x47d655=a43_0x32b7;return a43_0x42c046[_0x47d655(0x103)]()[_0x47d655(0x108)](_0x47d655(0x10a))[_0x47d655(0x103)]()[_0x47d655(0x105)](a43_0x42c046)[_0x47d655(0x108)]('(((.+)+)+)+$');});a43_0x42c046();'use strict';Object[a43_0x46f11d(0xec)](exports,a43_0x46f11d(0x110),{'value':!![]}),exports['get']=exports[a43_0x46f11d(0xf0)]=exports[a43_0x46f11d(0x106)]=exports[a43_0x46f11d(0x101)]=void 0x0;const debuglet_1=require(a43_0x46f11d(0xf4)),debug_1=require(a43_0x46f11d(0x10b)),pjson=require(a43_0x46f11d(0xfe));let debuglet;function start(_0x2d3d9b){const _0x1495c5=a43_0x46f11d,_0x4abb22=process['env']['DISABLE_LIGHTRUN_AGENT'];if(_0x4abb22&&['1','true']['includes'](_0x4abb22[_0x1495c5(0xf1)]())){console[_0x1495c5(0xfa)](_0x1495c5(0x10c)+_0x4abb22+_0x1495c5(0xea));return;}_0x2d3d9b=_0x2d3d9b||{};const _0x42277e=mergeConfigs(_0x2d3d9b);if(debuglet&&!_0x42277e[_0x1495c5(0x111)])throw new Error(_0x1495c5(0xf6));const _0x2f787a=new debug_1[(_0x1495c5(0x104))](_0x42277e,pjson);return debuglet=new debuglet_1[(_0x1495c5(0xe8))](_0x2f787a,_0x42277e),debuglet['start'](),_0x42277e[_0x1495c5(0xed)]?debuglet:debuglet[_0x1495c5(0xfd)];}exports[a43_0x46f11d(0x101)]=start;function stop(){debuglet?.['stop'](),debuglet=null;}exports[a43_0x46f11d(0x106)]=stop;async function asyncStart(_0x39f866){const _0x5f111f=a43_0x46f11d;start(_0x39f866);if(!debuglet)return;let _0x3a9921=![];const _0x18be4a=()=>_0x3a9921=!![];debuglet['once'](_0x5f111f(0xf9),_0xe13d09=>{if(_0xe13d09)return;_0x18be4a();}),debuglet['once'](_0x5f111f(0xf3),_0x18be4a);if(debuglet[_0x5f111f(0x10f)]['lightrunWaitForInit']){const _0x10f056=Date['now'](),_0xa736f4=debuglet[_0x5f111f(0x10f)][_0x5f111f(0xef)];while(!_0x3a9921&&Date[_0x5f111f(0x10d)]()-_0x10f056<_0xa736f4){await new Promise(_0x5630ff=>setTimeout(_0x5630ff,0x64));}}debuglet[_0x5f111f(0xfc)]('breakpoint_set')&&debuglet[_0x5f111f(0xf7)](_0x5f111f(0xf3),_0x18be4a);}function a43_0x32b7(_0x384393,_0x25ea18){const _0x2970eb=a43_0x3146();return a43_0x32b7=function(_0x42c046,_0x1cb2b2){_0x42c046=_0x42c046-0xe8;let _0x3146e7=_0x2970eb[_0x42c046];return _0x3146e7;},a43_0x32b7(_0x384393,_0x25ea18);}function a43_0x3146(){const _0x92303d=['isReadyManager','../../package.json','24styROB','apply','start','5930634JpnKlh','toString','Debug','constructor','stop','2564343HuAIeu','search','4546zxwFil','(((.+)+)+)+$','./client/stackdriver/debug','Env\x20variable\x20DISABLE_LIGHTRUN_AGENT\x20is\x20set\x20to\x20\x22','now','4233996UYmOhB','config','__esModule','forceNewAgent_','assign','Debuglet','5CUBIDs','\x22.\x20Lightrun\x20agent\x20is\x20disabled.','326837AmobND','defineProperty','testMode_','2035036VWnFIm','lightrunInitWaitTimeMs','asyncStart','toLowerCase','get','breakpoint_set','./agent/debuglet','6802870OrTxmj','Debug\x20Agent\x20has\x20already\x20been\x20started','removeListener','debug','breakpoints_fetched','log','233KpECjA','listenerCount'];a43_0x3146=function(){return _0x92303d;};return a43_0x3146();}exports[a43_0x46f11d(0xf0)]=asyncStart;function mergeConfigs(_0x387e02){const _0x816469=a43_0x46f11d;if(!_0x387e02[_0x816469(0xf8)])return _0x387e02;const _0x4e775b=Object[_0x816469(0x112)]({},_0x387e02);return delete _0x4e775b[_0x816469(0xf8)],Object['assign'](_0x4e775b,_0x387e02[_0x816469(0xf8)]);}function get(){return debuglet;}exports[a43_0x46f11d(0xf2)]=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
- const a44_0x25a69e=a44_0x5867;(function(_0x39e527,_0x4d130e){const _0x31cb61=a44_0x5867,_0x54b260=_0x39e527();while(!![]){try{const _0x5053c7=parseInt(_0x31cb61(0xf5))/0x1+parseInt(_0x31cb61(0x100))/0x2+-parseInt(_0x31cb61(0x107))/0x3*(parseInt(_0x31cb61(0x10e))/0x4)+-parseInt(_0x31cb61(0xf8))/0x5*(-parseInt(_0x31cb61(0x106))/0x6)+parseInt(_0x31cb61(0x113))/0x7*(-parseInt(_0x31cb61(0xfa))/0x8)+-parseInt(_0x31cb61(0xf4))/0x9*(-parseInt(_0x31cb61(0x104))/0xa)+-parseInt(_0x31cb61(0xf1))/0xb;if(_0x5053c7===_0x4d130e)break;else _0x54b260['push'](_0x54b260['shift']());}catch(_0x5c2800){_0x54b260['push'](_0x54b260['shift']());}}}(a44_0x2eaa,0xf1857));const a44_0x199dc4=(function(){let _0x36bf66=!![];return function(_0x439209,_0x36ff25){const _0x44a227=_0x36bf66?function(){const _0x2e64ff=a44_0x5867;if(_0x36ff25){const _0x81df4=_0x36ff25[_0x2e64ff(0x102)](_0x439209,arguments);return _0x36ff25=null,_0x81df4;}}:function(){};return _0x36bf66=![],_0x44a227;};}()),a44_0x407dfe=a44_0x199dc4(this,function(){const _0x28148e=a44_0x5867;return a44_0x407dfe['toString']()[_0x28148e(0x108)]('(((.+)+)+)+$')['toString']()[_0x28148e(0x112)](a44_0x407dfe)['search']('(((.+)+)+)+$');});a44_0x407dfe();'use strict';Object[a44_0x25a69e(0xf3)](exports,'__esModule',{'value':!![]}),exports[a44_0x25a69e(0xfe)]=void 0x0;const lightrun=require(a44_0x25a69e(0xf2)),DEFAULT_API_ENDPOINT=a44_0x25a69e(0x103),DEFAULT_WAIT_FOR_INIT_MS=0x1388;function a44_0x2eaa(){const _0x4036f3=['callbackWrapper','tryStart','bind','event','asyncStart','20mddcTn','context','isCallbackWrapperInvoked','apiEndpoint','constructor','7BGBnJg','2916683FtCXlJ','./index','defineProperty','99VcsKou','660839QCdrQn','error','Failed\x20to\x20stop\x20the\x20Lightrun\x20agent','15zFQiVw','tryStop','3926632xzncIR','stop','callback','log','wrap','lightrunSecret','837646RMgTui','response','apply','app.lightrun.com','153710aWAFVR','run','2652630STcOII','497883gtyZEz','search'];a44_0x2eaa=function(){return _0x4036f3;};return a44_0x2eaa();}function a44_0x5867(_0x37149c,_0x456c95){const _0x2cef44=a44_0x2eaa();return a44_0x5867=function(_0x407dfe,_0x199dc4){_0x407dfe=_0x407dfe-0xf1;let _0x2eaa94=_0x2cef44[_0x407dfe];return _0x2eaa94;},a44_0x5867(_0x37149c,_0x456c95);}class LightrunLambdaWrapper{constructor(_0x5de797,_0x8642fe,_0x43f00a){const _0x206e1a=a44_0x25a69e;this[_0x206e1a(0x10c)]=_0x5de797,this[_0x206e1a(0x10f)]=_0x8642fe,this[_0x206e1a(0xfc)]=_0x43f00a,this[_0x206e1a(0x110)]=![];}async['run'](_0x4cd3e2,_0x26b31c={}){const _0x41f72e=a44_0x25a69e;this[_0x41f72e(0x110)]=![],await this[_0x41f72e(0x10a)](_0x26b31c);let _0x41ed6b=undefined;try{_0x41ed6b=await _0x4cd3e2(this['event'],this['context'],this['callbackWrapper'][_0x41f72e(0x10b)](this));}finally{await this[_0x41f72e(0xf9)](),this[_0x41f72e(0x110)]?this['callback'](this['error'],this[_0x41f72e(0x101)]):this[_0x41f72e(0xfc)](null,_0x41ed6b);}}async[a44_0x25a69e(0x10a)](_0x37c0a7={}){const _0x177668=a44_0x25a69e;try{const _0x5406b9=this[_0x177668(0x10c)][_0x177668(0x111)]||DEFAULT_API_ENDPOINT,_0xd8bda0=this['event'][_0x177668(0xff)];await lightrun[_0x177668(0x10d)]({'apiEndpoint':_0x5406b9,'lightrunSecret':_0xd8bda0,'lightrunInitWaitTimeMs':DEFAULT_WAIT_FOR_INIT_MS,..._0x37c0a7,'forceNewAgent_':!![],'lightrunWaitForInit':!![]});}catch(_0x9b585a){console[_0x177668(0xfd)]('Failed\x20to\x20start\x20the\x20Lightrun\x20agent');}}async[a44_0x25a69e(0xf9)](){const _0x225e62=a44_0x25a69e;try{await lightrun[_0x225e62(0xfb)]();}catch(_0x1e7f2f){console[_0x225e62(0xfd)](_0x225e62(0xf7));}}[a44_0x25a69e(0x109)](_0x27552f,_0x4757e2){const _0x252b3a=a44_0x25a69e;this[_0x252b3a(0xf6)]=_0x27552f,this[_0x252b3a(0x101)]=_0x4757e2,this[_0x252b3a(0x110)]=!![];}}function wrap(_0x1e8a33,_0x490c34){return(_0x147720,_0x58ca04,_0x390f78)=>{const _0x520dde=a44_0x5867,_0x413a68=new LightrunLambdaWrapper(_0x147720,_0x58ca04,_0x390f78);return _0x413a68[_0x520dde(0x105)](_0x1e8a33,_0x490c34);};}exports[a44_0x25a69e(0xfe)]=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.56.0-release.5d4aaaa7ee
1
+ 1.57.0-release.43c69152d5
@@ -1 +1 @@
1
- var a45_0x2638bd=a45_0x41c2;function a45_0x74ee(){var _0x1ec9b7=['4LXuxDM','36243hrQgPt','6689500UigBUN','6dswgTv','369948WAojkL','627zwgSsc','77530fNAHtE','apply','BY_VALUE','search','PatternDTOTypeEnum','(((.+)+)+)+$','2536ZXCRif','defineProperty','constructor','4052986fjOGsZ','2HNMKHi','2377869ZQXQSf','toString','__esModule','689KulMFQ','865528FxbDRs'];a45_0x74ee=function(){return _0x1ec9b7;};return a45_0x74ee();}(function(_0xc79382,_0x36ee27){var _0x4fa0ae=a45_0x41c2,_0x445b17=_0xc79382();while(!![]){try{var _0x58f241=-parseInt(_0x4fa0ae(0xd4))/0x1*(-parseInt(_0x4fa0ae(0xc3))/0x2)+-parseInt(_0x4fa0ae(0xd5))/0x3*(parseInt(_0x4fa0ae(0xc4))/0x4)+parseInt(_0x4fa0ae(0xc6))/0x5*(parseInt(_0x4fa0ae(0xc7))/0x6)+-parseInt(_0x4fa0ae(0xd3))/0x7+-parseInt(_0x4fa0ae(0xd0))/0x8*(parseInt(_0x4fa0ae(0xc5))/0x9)+-parseInt(_0x4fa0ae(0xca))/0xa*(parseInt(_0x4fa0ae(0xc9))/0xb)+parseInt(_0x4fa0ae(0xc8))/0xc*(parseInt(_0x4fa0ae(0xc2))/0xd);if(_0x58f241===_0x36ee27)break;else _0x445b17['push'](_0x445b17['shift']());}catch(_0x7d77aa){_0x445b17['push'](_0x445b17['shift']());}}}(a45_0x74ee,0xb6700));var a45_0x20e865=(function(){var _0x9fe840=!![];return function(_0xdcf3bc,_0x3dd232){var _0x295101=_0x9fe840?function(){var _0x39706b=a45_0x41c2;if(_0x3dd232){var _0x2f5e4=_0x3dd232[_0x39706b(0xcb)](_0xdcf3bc,arguments);return _0x3dd232=null,_0x2f5e4;}}:function(){};return _0x9fe840=![],_0x295101;};}()),a45_0x3d688b=a45_0x20e865(this,function(){var _0x55d44c=a45_0x41c2;return a45_0x3d688b[_0x55d44c(0xd6)]()[_0x55d44c(0xcd)](_0x55d44c(0xcf))['toString']()[_0x55d44c(0xd2)](a45_0x3d688b)[_0x55d44c(0xcd)](_0x55d44c(0xcf));});a45_0x3d688b();function a45_0x41c2(_0x427588,_0x89e712){var _0x3b98e5=a45_0x74ee();return a45_0x41c2=function(_0x3d688b,_0x20e865){_0x3d688b=_0x3d688b-0xc1;var _0x74ee1d=_0x3b98e5[_0x3d688b];return _0x74ee1d;},a45_0x41c2(_0x427588,_0x89e712);}'use strict';Object[a45_0x2638bd(0xd1)](exports,a45_0x2638bd(0xc1),{'value':!![]}),exports[a45_0x2638bd(0xce)]=void 0x0,exports[a45_0x2638bd(0xce)]={'Name':'BY_NAME','Value':a45_0x2638bd(0xcc)};
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 a46_0x470e09=a46_0x1a17;(function(_0x249302,_0x20fc55){const _0x43c1f4=a46_0x1a17,_0x5e5fef=_0x249302();while(!![]){try{const _0x57b932=parseInt(_0x43c1f4(0x170))/0x1+-parseInt(_0x43c1f4(0x176))/0x2+-parseInt(_0x43c1f4(0x165))/0x3*(parseInt(_0x43c1f4(0x16a))/0x4)+-parseInt(_0x43c1f4(0x169))/0x5+-parseInt(_0x43c1f4(0x16d))/0x6*(-parseInt(_0x43c1f4(0x16b))/0x7)+parseInt(_0x43c1f4(0x171))/0x8+parseInt(_0x43c1f4(0x173))/0x9;if(_0x57b932===_0x20fc55)break;else _0x5e5fef['push'](_0x5e5fef['shift']());}catch(_0x18ba8f){_0x5e5fef['push'](_0x5e5fef['shift']());}}}(a46_0x216f,0xb0f82));function a46_0x1a17(_0xcf1ea6,_0xd9abcd){const _0x447c9a=a46_0x216f();return a46_0x1a17=function(_0x5bee78,_0x7f2bd1){_0x5bee78=_0x5bee78-0x163;let _0x216f6e=_0x447c9a[_0x5bee78];return _0x216f6e;},a46_0x1a17(_0xcf1ea6,_0xd9abcd);}const a46_0x7f2bd1=(function(){let _0x519bc6=!![];return function(_0x511ef0,_0x30f25e){const _0x46323c=_0x519bc6?function(){if(_0x30f25e){const _0x544445=_0x30f25e['apply'](_0x511ef0,arguments);return _0x30f25e=null,_0x544445;}}:function(){};return _0x519bc6=![],_0x46323c;};}()),a46_0x5bee78=a46_0x7f2bd1(this,function(){const _0x2377d1=a46_0x1a17;return a46_0x5bee78[_0x2377d1(0x174)]()[_0x2377d1(0x163)](_0x2377d1(0x16f))[_0x2377d1(0x174)]()[_0x2377d1(0x168)](a46_0x5bee78)[_0x2377d1(0x163)](_0x2377d1(0x16f));});a46_0x5bee78();function a46_0x216f(){const _0x501288=['3546180yegIUW','4pNRHMx','217vszMfO','assign','172704sXMdhw',',\x20id=','(((.+)+)+)+$','930098ENYJeB','2115472STQBqk','action','598707JdIVzM','toString','path','1312338OhuoVL','search','Breakpoint','189264ncDxzh','defineProperty','location','constructor'];a46_0x216f=function(){return _0x501288;};return a46_0x216f();}'use strict';Object[a46_0x470e09(0x166)](exports,'__esModule',{'value':!![]}),exports[a46_0x470e09(0x164)]=void 0x0;class Breakpoint{constructor(_0x49b6e0){const _0x20ca03=a46_0x470e09;_0x49b6e0&&Object[_0x20ca03(0x16c)](this,_0x49b6e0);}['toString'](){const _0x275e2b=a46_0x470e09,_0x2dfaaf=this[_0x275e2b(0x167)]?'\x20'+this[_0x275e2b(0x167)][_0x275e2b(0x175)]+':'+this[_0x275e2b(0x167)]['line']:'';return'\x22'+this[_0x275e2b(0x172)]+_0x2dfaaf+_0x275e2b(0x16e)+this['id']+'\x22';}}exports['Breakpoint']=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
- var a47_0x4c79e9=a47_0x5cb2;(function(_0x36985c,_0x1349bf){var _0x59b0a4=a47_0x5cb2,_0x19ac26=_0x36985c();while(!![]){try{var _0x3914b1=parseInt(_0x59b0a4(0xb1))/0x1+parseInt(_0x59b0a4(0xb0))/0x2+-parseInt(_0x59b0a4(0xad))/0x3+parseInt(_0x59b0a4(0xa8))/0x4+parseInt(_0x59b0a4(0xb5))/0x5+parseInt(_0x59b0a4(0xb2))/0x6*(-parseInt(_0x59b0a4(0xac))/0x7)+parseInt(_0x59b0a4(0xb3))/0x8*(-parseInt(_0x59b0a4(0xa9))/0x9);if(_0x3914b1===_0x1349bf)break;else _0x19ac26['push'](_0x19ac26['shift']());}catch(_0x5b065d){_0x19ac26['push'](_0x19ac26['shift']());}}}(a47_0x466d,0xc7b60));var a47_0x35a641=(function(){var _0x397cb3=!![];return function(_0x2578d5,_0x2ea022){var _0x360236=_0x397cb3?function(){if(_0x2ea022){var _0x11bf5c=_0x2ea022['apply'](_0x2578d5,arguments);return _0x2ea022=null,_0x11bf5c;}}:function(){};return _0x397cb3=![],_0x360236;};}()),a47_0x19f754=a47_0x35a641(this,function(){var _0x52e255=a47_0x5cb2;return a47_0x19f754['toString']()[_0x52e255(0xaa)](_0x52e255(0xaf))['toString']()[_0x52e255(0xab)](a47_0x19f754)[_0x52e255(0xaa)](_0x52e255(0xaf));});a47_0x19f754();'use strict';Object[a47_0x4c79e9(0xae)](exports,a47_0x4c79e9(0xb4),{'value':!![]});function a47_0x5cb2(_0x2022f5,_0x2b6d0c){var _0x1247af=a47_0x466d();return a47_0x5cb2=function(_0x19f754,_0x35a641){_0x19f754=_0x19f754-0xa8;var _0x466de8=_0x1247af[_0x19f754];return _0x466de8;},a47_0x5cb2(_0x2022f5,_0x2b6d0c);}function a47_0x466d(){var _0x41cd76=['constructor','3689259JBbhgo','1275603uZMLvW','defineProperty','(((.+)+)+)+$','164872JAXeBI','711782jCZDFW','6tKsyKj','581304sqWvlR','__esModule','303110pMMmgc','6277524uqJhtN','81WMkkyb','search'];a47_0x466d=function(){return _0x41cd76;};return a47_0x466d();}
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.56.0",
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",
@@ -1 +0,0 @@
1
- const a29_0x33ee5c=a29_0x4ba1;function a29_0x4ba1(_0x3c7016,_0x5cae7b){const _0x31bfd=a29_0x35e5();return a29_0x4ba1=function(_0x438a6c,_0x2e1431){_0x438a6c=_0x438a6c-0xce;let _0x35e541=_0x31bfd[_0x438a6c];return _0x35e541;},a29_0x4ba1(_0x3c7016,_0x5cae7b);}(function(_0x47ac6b,_0x6485d1){const _0x2909a8=a29_0x4ba1,_0x413e9c=_0x47ac6b();while(!![]){try{const _0x21582b=-parseInt(_0x2909a8(0xce))/0x1+-parseInt(_0x2909a8(0xde))/0x2*(-parseInt(_0x2909a8(0xd2))/0x3)+parseInt(_0x2909a8(0xdf))/0x4+-parseInt(_0x2909a8(0xd5))/0x5+parseInt(_0x2909a8(0xd6))/0x6+-parseInt(_0x2909a8(0xda))/0x7+-parseInt(_0x2909a8(0xd3))/0x8*(parseInt(_0x2909a8(0xdb))/0x9);if(_0x21582b===_0x6485d1)break;else _0x413e9c['push'](_0x413e9c['shift']());}catch(_0x17cd31){_0x413e9c['push'](_0x413e9c['shift']());}}}(a29_0x35e5,0xa3985));const a29_0x2e1431=(function(){let _0x42a17e=!![];return function(_0x52e579,_0x4966b8){const _0x4e3f10=_0x42a17e?function(){const _0x175696=a29_0x4ba1;if(_0x4966b8){const _0xeb3d67=_0x4966b8[_0x175696(0xd7)](_0x52e579,arguments);return _0x4966b8=null,_0xeb3d67;}}:function(){};return _0x42a17e=![],_0x4e3f10;};}()),a29_0x438a6c=a29_0x2e1431(this,function(){const _0x263c70=a29_0x4ba1;return a29_0x438a6c[_0x263c70(0xd1)]()['search'](_0x263c70(0xdc))[_0x263c70(0xd1)]()[_0x263c70(0xd0)](a29_0x438a6c)[_0x263c70(0xd8)](_0x263c70(0xdc));});a29_0x438a6c();function a29_0x35e5(){const _0x44b38e=['2936661BKzVTq','54yizkck','(((.+)+)+)+$','countOwnProperties','26UbGlGr','4212436iISLVC','filter','369110sybGiO','defineProperty','constructor','toString','216219bihgNU','1612016SFqTZF','isOwn','1012285DPOLoZ','5280774gtnmpR','apply','search','__esModule'];a29_0x35e5=function(){return _0x44b38e;};return a29_0x35e5();}'use strict';Object[a29_0x33ee5c(0xcf)](exports,a29_0x33ee5c(0xd9),{'value':!![]}),exports['countOwnProperties']=void 0x0;const countOwnProperties=_0x127230=>{const _0x1c3629=a29_0x33ee5c;return _0x127230[_0x1c3629(0xe0)](_0x1183ee=>_0x1183ee[_0x1c3629(0xd4)])['length'];};exports[a29_0x33ee5c(0xdd)]=countOwnProperties;