lightrun 1.55.2 → 1.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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_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;
|
package/build/src/lambda.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
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.
|
|
1
|
+
1.57.0-release.43c69152d5
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
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
|
|
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;
|
package/build/src/types/v8.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
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':!![]});
|