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.
- package/build/src/agent/agent-logger.js +1 -1
- package/build/src/agent/blocklisting/blocklisting-patterns.js +1 -1
- package/build/src/agent/blocklisting/dummy-blocklist-manager.js +1 -1
- package/build/src/agent/blocklisting/patterns-blocklist-manager.js +1 -1
- package/build/src/agent/config.js +1 -1
- package/build/src/agent/configuration-provider.js +1 -1
- package/build/src/agent/controller.js +1 -1
- package/build/src/agent/debuglet-helpers/createDebuggee.js +1 -1
- package/build/src/agent/debuglet-helpers/createDebuggeeMetadata.js +1 -1
- package/build/src/agent/debuglet-helpers/createUniquifier.js +1 -1
- package/build/src/agent/debuglet-helpers/delimit.js +1 -1
- package/build/src/agent/debuglet-helpers/format.js +1 -1
- package/build/src/agent/debuglet-helpers/getAgentConfig.js +1 -1
- package/build/src/agent/debuglet-helpers/getPlatform.js +1 -1
- package/build/src/agent/debuglet-helpers/limitConfig.js +1 -0
- package/build/src/agent/debuglet-helpers/mapSubtract.js +1 -1
- package/build/src/agent/debuglet-helpers/normalizeConfig.js +1 -1
- package/build/src/agent/debuglet-helpers/tokenize.js +1 -1
- package/build/src/agent/debuglet.js +1 -1
- package/build/src/agent/environment-metadata.js +1 -1
- package/build/src/agent/io/file-index.js +1 -1
- package/build/src/agent/io/scan-results.js +1 -1
- package/build/src/agent/io/scanner.js +1 -1
- package/build/src/agent/io/sourcemapper.js +1 -1
- package/build/src/agent/leaky-bucket.js +1 -1
- package/build/src/agent/log-data.js +1 -1
- package/build/src/agent/piping-manager.js +1 -1
- package/build/src/agent/quota-manager.js +1 -1
- package/build/src/agent/reduction/redaction-manager-re2js.js +1 -1
- package/build/src/agent/reduction/redaction-manager.js +1 -1
- package/build/src/agent/state/inspector-state.js +1 -1
- package/build/src/agent/state/legacy-state.js +1 -1
- package/build/src/agent/util/debug-assert.js +1 -1
- package/build/src/agent/util/utils.js +1 -1
- package/build/src/agent/util/validator.js +1 -1
- package/build/src/agent/v8/debugapi.js +1 -1
- package/build/src/agent/v8/inspector-debugapi.js +1 -1
- package/build/src/agent/v8/legacy-debugapi.js +1 -1
- package/build/src/agent/v8/v8inspector.js +1 -1
- package/build/src/client/stackdriver/debug.js +1 -1
- package/build/src/client/stackdriver/status-message.js +1 -1
- package/build/src/debuggee.js +1 -1
- package/build/src/gcp.js +1 -1
- package/build/src/index.d.ts +75 -69
- package/build/src/index.js +1 -1
- package/build/src/lambda.js +1 -1
- package/build/src/resources/version.txt +1 -1
- package/build/src/types/lightrun.js +1 -1
- package/build/src/types/stackdriver.js +1 -1
- package/build/src/types/v8.js +1 -1
- package/package.json +1 -1
- package/build/src/agent/state/helpers.js +0 -1
package/build/src/index.d.ts
CHANGED
|
@@ -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
|
*/
|
package/build/src/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
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;
|
package/build/src/lambda.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
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.
|
|
1
|
+
1.57.1-release.e5e0c8e7c4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
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
|
|
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;
|
package/build/src/types/v8.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
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 +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;
|