lightrun 1.56.0 → 1.57.1

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_0x366639=a43_0x34be;(function(_0x40762b,_0x14542f){const _0xdebf56=a43_0x34be,_0x2f7314=_0x40762b();while(!![]){try{const _0x2de867=parseInt(_0xdebf56(0xd6))/0x1*(-parseInt(_0xdebf56(0xe2))/0x2)+parseInt(_0xdebf56(0xc0))/0x3+parseInt(_0xdebf56(0xd9))/0x4*(parseInt(_0xdebf56(0xcc))/0x5)+-parseInt(_0xdebf56(0xd5))/0x6*(parseInt(_0xdebf56(0xca))/0x7)+-parseInt(_0xdebf56(0xc1))/0x8*(-parseInt(_0xdebf56(0xde))/0x9)+parseInt(_0xdebf56(0xc5))/0xa+-parseInt(_0xdebf56(0xdc))/0xb*(parseInt(_0xdebf56(0xba))/0xc);if(_0x2de867===_0x14542f)break;else _0x2f7314['push'](_0x2f7314['shift']());}catch(_0x343697){_0x2f7314['push'](_0x2f7314['shift']());}}}(a43_0x241e,0xa8bb3));const a43_0x3e7f1d=(function(){let _0x2314bc=!![];return function(_0x4aa5fd,_0x38b877){const _0x5ce50b=_0x2314bc?function(){const _0x43e5d9=a43_0x34be;if(_0x38b877){const _0xf6589f=_0x38b877[_0x43e5d9(0xc9)](_0x4aa5fd,arguments);return _0x38b877=null,_0xf6589f;}}:function(){};return _0x2314bc=![],_0x5ce50b;};}()),a43_0xc2bc7c=a43_0x3e7f1d(this,function(){const _0x562aa7=a43_0x34be;return a43_0xc2bc7c[_0x562aa7(0xc8)]()[_0x562aa7(0xbf)](_0x562aa7(0xbb))[_0x562aa7(0xc8)]()[_0x562aa7(0xe1)](a43_0xc2bc7c)['search'](_0x562aa7(0xbb));});a43_0xc2bc7c();'use strict';Object[a43_0x366639(0xcf)](exports,'__esModule',{'value':!![]}),exports[a43_0x366639(0xbe)]=exports['asyncStart']=exports['stop']=exports[a43_0x366639(0xd0)]=void 0x0;const debuglet_1=require(a43_0x366639(0xc3)),debug_1=require(a43_0x366639(0xd7)),pjson=require(a43_0x366639(0xc7));let debuglet;function a43_0x34be(_0x391def,_0x32b5e2){const _0x51a35d=a43_0x241e();return a43_0x34be=function(_0xc2bc7c,_0x3e7f1d){_0xc2bc7c=_0xc2bc7c-0xba;let _0x241e7b=_0x51a35d[_0xc2bc7c];return _0x241e7b;},a43_0x34be(_0x391def,_0x32b5e2);}function start(_0x2d8d97){const _0x27dcc2=a43_0x366639,_0x5d5152=process[_0x27dcc2(0xd4)][_0x27dcc2(0xce)];if(_0x5d5152&&['1','true']['includes'](_0x5d5152[_0x27dcc2(0xd2)]())){console['log']('Env\x20variable\x20DISABLE_LIGHTRUN_AGENT\x20is\x20set\x20to\x20\x22'+_0x5d5152+_0x27dcc2(0xe0));return;}_0x2d8d97=_0x2d8d97||{};const _0x42adb5=mergeConfigs(_0x2d8d97);if(debuglet&&!_0x42adb5[_0x27dcc2(0xd3)])throw new Error(_0x27dcc2(0xd1));const _0x4ffd17=new debug_1[(_0x27dcc2(0xc4))](_0x42adb5,pjson);return debuglet=new debuglet_1[(_0x27dcc2(0xdb))](_0x4ffd17,_0x42adb5),debuglet['start'](),_0x42adb5[_0x27dcc2(0xe3)]?debuglet:debuglet[_0x27dcc2(0xbc)];}exports['start']=start;function stop(){const _0x2ca385=a43_0x366639;debuglet?.[_0x2ca385(0xcd)](),debuglet=null;}function a43_0x241e(){const _0x4b7607=['8906980Dkvxln','now','../../package.json','toString','apply','364CZRDmG','debug','58115XfkGZU','stop','DISABLE_LIGHTRUN_AGENT','defineProperty','start','Debug\x20Agent\x20has\x20already\x20been\x20started','toLowerCase','forceNewAgent_','env','42378sXuLSO','9skXalr','./client/stackdriver/debug','once','384ATTxnS','breakpoint_set','Debuglet','242143cnidBQ','lightrunInitWaitTimeMs','1556829eQaBEr','assign','\x22.\x20Lightrun\x20agent\x20is\x20disabled.','constructor','25006BCmDUg','testMode_','1524qvgaiZ','(((.+)+)+)+$','isReadyManager','breakpoints_fetched','get','search','2766555XJDXQk','48ybcmOk','lightrunWaitForInit','./agent/debuglet','Debug'];a43_0x241e=function(){return _0x4b7607;};return a43_0x241e();}exports['stop']=stop;async function asyncStart(_0x1870c9){const _0x390d0b=a43_0x366639;start(_0x1870c9);if(!debuglet)return;let _0x3d065d=![];const _0x162b40=()=>_0x3d065d=!![];debuglet[_0x390d0b(0xd8)](_0x390d0b(0xbd),_0xdd7dff=>{if(_0xdd7dff)return;_0x162b40();}),debuglet[_0x390d0b(0xd8)](_0x390d0b(0xda),_0x162b40);if(debuglet['config'][_0x390d0b(0xc2)]){const _0x5154d5=Date[_0x390d0b(0xc6)](),_0x2a1135=debuglet['config'][_0x390d0b(0xdd)];while(!_0x3d065d&&Date[_0x390d0b(0xc6)]()-_0x5154d5<_0x2a1135){await new Promise(_0x2ec5b6=>setTimeout(_0x2ec5b6,0x64));}}debuglet['listenerCount']('breakpoint_set')&&debuglet['removeListener'](_0x390d0b(0xda),_0x162b40);}exports['asyncStart']=asyncStart;function mergeConfigs(_0x37795a){const _0xbe089e=a43_0x366639;if(!_0x37795a['debug'])return _0x37795a;const _0x123413=Object[_0xbe089e(0xdf)]({},_0x37795a);return delete _0x123413[_0xbe089e(0xcb)],Object[_0xbe089e(0xdf)](_0x123413,_0x37795a['debug']);}function get(){return debuglet;}exports[a43_0x366639(0xbe)]=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_0x36781d=a44_0xc439;function a44_0x5806(){const _0x198fa7=['278592WQSNDa','run','stop','callbackWrapper','bind','tryStop','event','apiEndpoint','search','451BoRwmd','12105qNKYDQ','error','context','52740vCwVSA','tryStart','1288090WZglhg','13vBqUaY','109324KksnEq','app.lightrun.com','__esModule','2760RipWac','Failed\x20to\x20start\x20the\x20Lightrun\x20agent','constructor','lightrunSecret','(((.+)+)+)+$','isCallbackWrapperInvoked','toString','96904opsBRi','Failed\x20to\x20stop\x20the\x20Lightrun\x20agent','callback','1464KITpiA','response','27HWNKuJ','wrap','log','16009dggWkd'];a44_0x5806=function(){return _0x198fa7;};return a44_0x5806();}(function(_0x4c2687,_0x258896){const _0xf48923=a44_0xc439,_0x420365=_0x4c2687();while(!![]){try{const _0xe0429e=-parseInt(_0xf48923(0x120))/0x1*(parseInt(_0xf48923(0x12b))/0x2)+parseInt(_0xf48923(0x130))/0x3*(parseInt(_0xf48923(0x121))/0x4)+-parseInt(_0xf48923(0x11f))/0x5+-parseInt(_0xf48923(0x11d))/0x6+-parseInt(_0xf48923(0x133))/0x7*(-parseInt(_0xf48923(0x12e))/0x8)+parseInt(_0xf48923(0x11a))/0x9*(-parseInt(_0xf48923(0x124))/0xa)+-parseInt(_0xf48923(0x119))/0xb*(-parseInt(_0xf48923(0x134))/0xc);if(_0xe0429e===_0x258896)break;else _0x420365['push'](_0x420365['shift']());}catch(_0xdc2c95){_0x420365['push'](_0x420365['shift']());}}}(a44_0x5806,0x552b4));const a44_0x51ce3e=(function(){let _0x6d45bf=!![];return function(_0x5996c5,_0x590869){const _0x29a118=_0x6d45bf?function(){if(_0x590869){const _0x4ece1b=_0x590869['apply'](_0x5996c5,arguments);return _0x590869=null,_0x4ece1b;}}:function(){};return _0x6d45bf=![],_0x29a118;};}()),a44_0x4aefce=a44_0x51ce3e(this,function(){const _0x2b56b0=a44_0xc439;return a44_0x4aefce[_0x2b56b0(0x12a)]()[_0x2b56b0(0x118)](_0x2b56b0(0x128))[_0x2b56b0(0x12a)]()[_0x2b56b0(0x126)](a44_0x4aefce)[_0x2b56b0(0x118)]('(((.+)+)+)+$');});a44_0x4aefce();'use strict';Object['defineProperty'](exports,a44_0x36781d(0x123),{'value':!![]}),exports[a44_0x36781d(0x131)]=void 0x0;const lightrun=require('./index'),DEFAULT_API_ENDPOINT=a44_0x36781d(0x122),DEFAULT_WAIT_FOR_INIT_MS=0x1388;class LightrunLambdaWrapper{constructor(_0x215729,_0x204c38,_0x293909){const _0x5ec92c=a44_0x36781d;this[_0x5ec92c(0x116)]=_0x215729,this[_0x5ec92c(0x11c)]=_0x204c38,this['callback']=_0x293909,this[_0x5ec92c(0x129)]=![];}async[a44_0x36781d(0x135)](_0xb1f32,_0x2cf4c9={}){const _0x3497cf=a44_0x36781d;this[_0x3497cf(0x129)]=![],await this[_0x3497cf(0x11e)](_0x2cf4c9);let _0x10ebdc=undefined;try{_0x10ebdc=await _0xb1f32(this['event'],this['context'],this[_0x3497cf(0x113)][_0x3497cf(0x114)](this));}finally{await this[_0x3497cf(0x115)](),this['isCallbackWrapperInvoked']?this[_0x3497cf(0x12d)](this[_0x3497cf(0x11b)],this[_0x3497cf(0x12f)]):this[_0x3497cf(0x12d)](null,_0x10ebdc);}}async[a44_0x36781d(0x11e)](_0x5ca057={}){const _0x32febf=a44_0x36781d;try{const _0x5967a7=this['event'][_0x32febf(0x117)]||DEFAULT_API_ENDPOINT,_0x15f74b=this['event'][_0x32febf(0x127)];await lightrun['asyncStart']({'apiEndpoint':_0x5967a7,'lightrunSecret':_0x15f74b,'lightrunInitWaitTimeMs':DEFAULT_WAIT_FOR_INIT_MS,..._0x5ca057,'forceNewAgent_':!![],'lightrunWaitForInit':!![]});}catch(_0x239acf){console[_0x32febf(0x132)](_0x32febf(0x125));}}async[a44_0x36781d(0x115)](){const _0x4627fa=a44_0x36781d;try{await lightrun[_0x4627fa(0x136)]();}catch(_0x2231ac){console[_0x4627fa(0x132)](_0x4627fa(0x12c));}}['callbackWrapper'](_0x1dd134,_0x200620){const _0x398864=a44_0x36781d;this[_0x398864(0x11b)]=_0x1dd134,this[_0x398864(0x12f)]=_0x200620,this[_0x398864(0x129)]=!![];}}function wrap(_0x103d7d,_0x5ca2d6){return(_0x525800,_0x56e203,_0x1058b5)=>{const _0x4b6f75=new LightrunLambdaWrapper(_0x525800,_0x56e203,_0x1058b5);return _0x4b6f75['run'](_0x103d7d,_0x5ca2d6);};}function a44_0xc439(_0x49bcce,_0x39b062){const _0x31af10=a44_0x5806();return a44_0xc439=function(_0x4aefce,_0x51ce3e){_0x4aefce=_0x4aefce-0x113;let _0x580612=_0x31af10[_0x4aefce];return _0x580612;},a44_0xc439(_0x49bcce,_0x39b062);}exports[a44_0x36781d(0x131)]=wrap;
@@ -1 +1 @@
1
- 1.56.0-release.5d4aaaa7ee
1
+ 1.57.1-release.e5e0c8e7c4
@@ -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_0x448d2e=a45_0x5d6a;function a45_0xd5fe(){var _0xf659d5=['99288OyRTHF','54eqMhjv','apply','5607acIkfO','__esModule','BY_NAME','2070670QilwpT','constructor','toString','3548DXeeTG','11668ErtEpH','search','33070AITrPK','(((.+)+)+)+$','1818RvPqJR','229205MKVsID','PatternDTOTypeEnum','BY_VALUE','57vPvcic','defineProperty'];a45_0xd5fe=function(){return _0xf659d5;};return a45_0xd5fe();}(function(_0x41891,_0x1ab3fd){var _0x2d5ac7=a45_0x5d6a,_0x35081e=_0x41891();while(!![]){try{var _0x7563de=parseInt(_0x2d5ac7(0x8f))/0x1+-parseInt(_0x2d5ac7(0x8a))/0x2+parseInt(_0x2d5ac7(0x7e))/0x3*(parseInt(_0x2d5ac7(0x89))/0x4)+-parseInt(_0x2d5ac7(0x8c))/0x5+-parseInt(_0x2d5ac7(0x8e))/0x6*(parseInt(_0x2d5ac7(0x83))/0x7)+-parseInt(_0x2d5ac7(0x80))/0x8*(parseInt(_0x2d5ac7(0x81))/0x9)+parseInt(_0x2d5ac7(0x86))/0xa;if(_0x7563de===_0x1ab3fd)break;else _0x35081e['push'](_0x35081e['shift']());}catch(_0x3a5c35){_0x35081e['push'](_0x35081e['shift']());}}}(a45_0xd5fe,0x1e274));var a45_0x306728=(function(){var _0x4be423=!![];return function(_0x2d44c0,_0x4f0fdd){var _0x43d258=_0x4be423?function(){var _0x5a69a0=a45_0x5d6a;if(_0x4f0fdd){var _0xf98e96=_0x4f0fdd[_0x5a69a0(0x82)](_0x2d44c0,arguments);return _0x4f0fdd=null,_0xf98e96;}}:function(){};return _0x4be423=![],_0x43d258;};}()),a45_0x20c24b=a45_0x306728(this,function(){var _0x21f72e=a45_0x5d6a;return a45_0x20c24b[_0x21f72e(0x88)]()[_0x21f72e(0x8b)](_0x21f72e(0x8d))[_0x21f72e(0x88)]()[_0x21f72e(0x87)](a45_0x20c24b)[_0x21f72e(0x8b)](_0x21f72e(0x8d));});function a45_0x5d6a(_0x5675ef,_0x5b4416){var _0x8a1ccd=a45_0xd5fe();return a45_0x5d6a=function(_0x20c24b,_0x306728){_0x20c24b=_0x20c24b-0x7e;var _0xd5fe48=_0x8a1ccd[_0x20c24b];return _0xd5fe48;},a45_0x5d6a(_0x5675ef,_0x5b4416);}a45_0x20c24b();'use strict';Object[a45_0x448d2e(0x7f)](exports,a45_0x448d2e(0x84),{'value':!![]}),exports[a45_0x448d2e(0x90)]=void 0x0,exports['PatternDTOTypeEnum']={'Name':a45_0x448d2e(0x85),'Value':a45_0x448d2e(0x91)};
@@ -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
+ function a46_0x3372(_0x1aac38,_0x192d88){const _0x2f33e8=a46_0x4da7();return a46_0x3372=function(_0xf8f384,_0x9bfa9b){_0xf8f384=_0xf8f384-0x1eb;let _0x4da718=_0x2f33e8[_0xf8f384];return _0x4da718;},a46_0x3372(_0x1aac38,_0x192d88);}const a46_0x1d4fec=a46_0x3372;(function(_0x400f71,_0x29e745){const _0x5c99ac=a46_0x3372,_0x422e12=_0x400f71();while(!![]){try{const _0x4ce8df=-parseInt(_0x5c99ac(0x1f4))/0x1*(-parseInt(_0x5c99ac(0x1ef))/0x2)+parseInt(_0x5c99ac(0x1f8))/0x3+-parseInt(_0x5c99ac(0x1f7))/0x4+parseInt(_0x5c99ac(0x1f6))/0x5*(-parseInt(_0x5c99ac(0x1fa))/0x6)+parseInt(_0x5c99ac(0x1ec))/0x7*(-parseInt(_0x5c99ac(0x1f0))/0x8)+parseInt(_0x5c99ac(0x1fb))/0x9*(-parseInt(_0x5c99ac(0x1f3))/0xa)+parseInt(_0x5c99ac(0x1f5))/0xb;if(_0x4ce8df===_0x29e745)break;else _0x422e12['push'](_0x422e12['shift']());}catch(_0x20c842){_0x422e12['push'](_0x422e12['shift']());}}}(a46_0x4da7,0xa1b1a));const a46_0x9bfa9b=(function(){let _0x5e0a97=!![];return function(_0x3a6d6a,_0xdc6c4c){const _0x480eb8=_0x5e0a97?function(){const _0x70568f=a46_0x3372;if(_0xdc6c4c){const _0x1e6976=_0xdc6c4c[_0x70568f(0x1f1)](_0x3a6d6a,arguments);return _0xdc6c4c=null,_0x1e6976;}}:function(){};return _0x5e0a97=![],_0x480eb8;};}()),a46_0xf8f384=a46_0x9bfa9b(this,function(){const _0x340c37=a46_0x3372;return a46_0xf8f384[_0x340c37(0x1fc)]()[_0x340c37(0x1eb)](_0x340c37(0x1f9))['toString']()[_0x340c37(0x1f2)](a46_0xf8f384)[_0x340c37(0x1eb)](_0x340c37(0x1f9));});function a46_0x4da7(){const _0x144c8e=['435779WHOxrp','13267826ySNGWX','5DnHpXc','1286024levmEI','214323fAObiA','(((.+)+)+)+$','1099062Avvicg','3186sogKvk','toString','location','defineProperty','action','assign','search','35MOEJOB','Breakpoint','line','6XzJdMU','339016zAMUPb','apply','constructor','34070Zfhyaq'];a46_0x4da7=function(){return _0x144c8e;};return a46_0x4da7();}a46_0xf8f384();'use strict';Object[a46_0x1d4fec(0x1fe)](exports,'__esModule',{'value':!![]}),exports[a46_0x1d4fec(0x1ed)]=void 0x0;class Breakpoint{constructor(_0x208f05){const _0x345e26=a46_0x1d4fec;_0x208f05&&Object[_0x345e26(0x200)](this,_0x208f05);}[a46_0x1d4fec(0x1fc)](){const _0x22c244=a46_0x1d4fec,_0x39364f=this[_0x22c244(0x1fd)]?'\x20'+this[_0x22c244(0x1fd)]['path']+':'+this[_0x22c244(0x1fd)][_0x22c244(0x1ee)]:'';return'\x22'+this[_0x22c244(0x1ff)]+_0x39364f+',\x20id='+this['id']+'\x22';}}exports[a46_0x1d4fec(0x1ed)]=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
+ var a47_0x267234=a47_0x2051;(function(_0x386936,_0x730db5){var _0x5b69d4=a47_0x2051,_0x3126ff=_0x386936();while(!![]){try{var _0x4485f8=-parseInt(_0x5b69d4(0xe6))/0x1+-parseInt(_0x5b69d4(0xea))/0x2+-parseInt(_0x5b69d4(0xe7))/0x3*(parseInt(_0x5b69d4(0xe4))/0x4)+-parseInt(_0x5b69d4(0xe3))/0x5+parseInt(_0x5b69d4(0xec))/0x6*(parseInt(_0x5b69d4(0xeb))/0x7)+parseInt(_0x5b69d4(0xe1))/0x8+parseInt(_0x5b69d4(0xe9))/0x9;if(_0x4485f8===_0x730db5)break;else _0x3126ff['push'](_0x3126ff['shift']());}catch(_0x9d16a0){_0x3126ff['push'](_0x3126ff['shift']());}}}(a47_0x4d14,0xb7874));var a47_0x2d55f2=(function(){var _0x5a8689=!![];return function(_0x68a72b,_0x549805){var _0x1f6baf=_0x5a8689?function(){if(_0x549805){var _0x36371f=_0x549805['apply'](_0x68a72b,arguments);return _0x549805=null,_0x36371f;}}:function(){};return _0x5a8689=![],_0x1f6baf;};}()),a47_0x42a9b5=a47_0x2d55f2(this,function(){var _0x18280d=a47_0x2051;return a47_0x42a9b5[_0x18280d(0xe2)]()[_0x18280d(0xe8)]('(((.+)+)+)+$')[_0x18280d(0xe2)]()['constructor'](a47_0x42a9b5)[_0x18280d(0xe8)](_0x18280d(0xe0));});function a47_0x2051(_0xe7a73d,_0x503ff1){var _0xf0136d=a47_0x4d14();return a47_0x2051=function(_0x42a9b5,_0x2d55f2){_0x42a9b5=_0x42a9b5-0xdf;var _0x4d14bc=_0xf0136d[_0x42a9b5];return _0x4d14bc;},a47_0x2051(_0xe7a73d,_0x503ff1);}a47_0x42a9b5();'use strict';Object[a47_0x267234(0xdf)](exports,a47_0x267234(0xe5),{'value':!![]});function a47_0x4d14(){var _0x1f0115=['(((.+)+)+)+$','5450640eqPYmd','toString','4927750CxIIsH','36ldMLjU','__esModule','179031EirGId','371799bgpUHq','search','21484170atXNFe','459442GqarOl','1350797NZFceB','6rKmWRX','defineProperty'];a47_0x4d14=function(){return _0x1f0115;};return a47_0x4d14();}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightrun",
3
- "version": "1.56.0",
3
+ "version": "1.57.1",
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;