@uipath/audit-commands 1.202.0-preview.134 → 1.202.0-preview.136

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/dist/index.js CHANGED
@@ -2225,6 +2225,7 @@ var require_errors = __commonJS(function(exports) {
2225
2225
  DESCRIPTOR_FAULTY: "Descriptor data is malformed",
2226
2226
  NO_DATA: "Nothing to decompress",
2227
2227
  BAD_CRC: "CRC32 checksum failed {0}",
2228
+ MAX_OUTPUT_EXCEEDED: "Decompressed data exceeds the declared uncompressed size",
2228
2229
  FILE_IN_THE_WAY: "There is a file in the way: {0}",
2229
2230
  UNKNOWN_METHOD: "Invalid/unsupported compression method",
2230
2231
  AVAIL_DATA: "inflate::Available inflate data did not terminate",
@@ -2242,11 +2243,13 @@ var require_errors = __commonJS(function(exports) {
2242
2243
  DISK_ENTRY_TOO_LARGE: "Number of disk entries is too large",
2243
2244
  NO_ZIP: "No zip file was loaded",
2244
2245
  NO_ENTRY: "Entry doesn't exist",
2246
+ DUPLICATE_ENTRY: "Duplicate entry name {0}",
2245
2247
  DIRECTORY_CONTENT_ERROR: "A directory cannot have content",
2246
2248
  FILE_NOT_FOUND: 'File not found: "{0}"',
2247
2249
  NOT_IMPLEMENTED: "Not implemented",
2248
2250
  INVALID_FILENAME: "Invalid filename",
2249
2251
  INVALID_FORMAT: "Invalid or unsupported zip format. No END header found",
2252
+ ZIP64_VALUE_TOO_LARGE: "Zip64 value exceeds the maximum safe integer",
2250
2253
  INVALID_PASS_PARAM: "Incompatible password parameter",
2251
2254
  WRONG_PASSWORD: "Wrong Password",
2252
2255
  COMMENT_TOO_LONG: "Comment is too long",
@@ -2400,8 +2403,49 @@ var require_utils = __commonJS(function(exports, module) {
2400
2403
  });
2401
2404
  });
2402
2405
  };
2406
+ Utils.prototype.assertPathSafe = function(root, target) {
2407
+ const self = this;
2408
+ if (typeof self.fs.lstatSync !== "function")
2409
+ return;
2410
+ const resolvedRoot = pth.resolve(root);
2411
+ const resolvedTarget = pth.resolve(target);
2412
+ if (resolvedTarget === resolvedRoot)
2413
+ return;
2414
+ const rel = pth.relative(resolvedRoot, resolvedTarget);
2415
+ if (!rel || rel === ".." || rel.startsWith(".." + pth.sep) || pth.isAbsolute(rel))
2416
+ return;
2417
+ let cur = resolvedRoot;
2418
+ for (const part of rel.split(pth.sep)) {
2419
+ if (!part || part === ".")
2420
+ continue;
2421
+ cur = pth.join(cur, part);
2422
+ let stat2;
2423
+ try {
2424
+ stat2 = self.fs.lstatSync(cur);
2425
+ } catch (e) {
2426
+ break;
2427
+ }
2428
+ if (stat2.isSymbolicLink())
2429
+ throw Errors.FILE_IN_THE_WAY(`"${cur}"`);
2430
+ }
2431
+ };
2403
2432
  Utils.prototype.findFiles = function(path2) {
2404
2433
  const self = this;
2434
+ const canLstat = typeof self.fs.lstatSync === "function";
2435
+ const rootReal = self.fs.realpathSync(path2);
2436
+ function escapesRoot(p) {
2437
+ if (!canLstat)
2438
+ return false;
2439
+ if (!self.fs.lstatSync(p).isSymbolicLink())
2440
+ return false;
2441
+ let real;
2442
+ try {
2443
+ real = self.fs.realpathSync(p);
2444
+ } catch (e) {
2445
+ return true;
2446
+ }
2447
+ return !(real === rootReal || real.startsWith(rootReal + pth.sep));
2448
+ }
2405
2449
  function findSync(dir, pattern, recursive, visited) {
2406
2450
  if (typeof pattern === "boolean") {
2407
2451
  recursive = pattern;
@@ -2410,6 +2454,8 @@ var require_utils = __commonJS(function(exports, module) {
2410
2454
  let files = [];
2411
2455
  self.fs.readdirSync(dir).forEach(function(file) {
2412
2456
  const path3 = pth.join(dir, file);
2457
+ if (escapesRoot(path3))
2458
+ return;
2413
2459
  const stat2 = self.fs.statSync(path3);
2414
2460
  if (!pattern || pattern.test(path3)) {
2415
2461
  files.push(pth.normalize(path3) + (stat2.isDirectory() ? self.sep : ""));
@@ -2424,7 +2470,7 @@ var require_utils = __commonJS(function(exports, module) {
2424
2470
  });
2425
2471
  return files;
2426
2472
  }
2427
- return findSync(path2, undefined, true, new Set([self.fs.realpathSync(path2)]));
2473
+ return findSync(path2, undefined, true, new Set([rootReal]));
2428
2474
  };
2429
2475
  Utils.prototype.findFilesAsync = function(dir, cb) {
2430
2476
  const self = this;
@@ -2436,6 +2482,23 @@ var require_utils = __commonJS(function(exports, module) {
2436
2482
  finished = true;
2437
2483
  cb(err, err ? undefined : results);
2438
2484
  };
2485
+ const canLstat = typeof self.fs.lstat === "function";
2486
+ let rootReal = null;
2487
+ const escapesRoot = function(file, cb2) {
2488
+ if (!canLstat)
2489
+ return cb2(null, false);
2490
+ self.fs.lstat(file, function(err, lst) {
2491
+ if (err)
2492
+ return cb2(err);
2493
+ if (!lst || !lst.isSymbolicLink())
2494
+ return cb2(null, false);
2495
+ self.fs.realpath(file, function(err2, real) {
2496
+ if (err2)
2497
+ return cb2(null, true);
2498
+ cb2(null, !(real === rootReal || real.startsWith(rootReal + pth.sep)));
2499
+ });
2500
+ });
2501
+ };
2439
2502
  const walk = function(dir2, visited, done) {
2440
2503
  self.fs.readdir(dir2, function(err, list) {
2441
2504
  if (err)
@@ -2445,34 +2508,43 @@ var require_utils = __commonJS(function(exports, module) {
2445
2508
  return done();
2446
2509
  list.forEach(function(name) {
2447
2510
  const file = pth.join(dir2, name);
2448
- self.fs.stat(file, function(err2, stat2) {
2511
+ escapesRoot(file, function(err2, escapes) {
2449
2512
  if (err2)
2450
2513
  return done(err2);
2451
- if (!stat2) {
2514
+ if (escapes) {
2452
2515
  if (!--pending)
2453
2516
  done();
2454
2517
  return;
2455
2518
  }
2456
- results.push(pth.normalize(file) + (stat2.isDirectory() ? self.sep : ""));
2457
- if (!stat2.isDirectory()) {
2458
- if (!--pending)
2459
- done();
2460
- return;
2461
- }
2462
- self.fs.realpath(file, function(err3, realDir) {
2519
+ self.fs.stat(file, function(err3, stat2) {
2463
2520
  if (err3)
2464
2521
  return done(err3);
2465
- if (visited.has(realDir)) {
2522
+ if (!stat2) {
2466
2523
  if (!--pending)
2467
2524
  done();
2468
2525
  return;
2469
2526
  }
2470
- visited.add(realDir);
2471
- walk(file, visited, function(err4) {
2472
- if (err4)
2473
- return done(err4);
2527
+ results.push(pth.normalize(file) + (stat2.isDirectory() ? self.sep : ""));
2528
+ if (!stat2.isDirectory()) {
2474
2529
  if (!--pending)
2475
2530
  done();
2531
+ return;
2532
+ }
2533
+ self.fs.realpath(file, function(err4, realDir) {
2534
+ if (err4)
2535
+ return done(err4);
2536
+ if (visited.has(realDir)) {
2537
+ if (!--pending)
2538
+ done();
2539
+ return;
2540
+ }
2541
+ visited.add(realDir);
2542
+ walk(file, visited, function(err5) {
2543
+ if (err5)
2544
+ return done(err5);
2545
+ if (!--pending)
2546
+ done();
2547
+ });
2476
2548
  });
2477
2549
  });
2478
2550
  });
@@ -2482,6 +2554,7 @@ var require_utils = __commonJS(function(exports, module) {
2482
2554
  self.fs.realpath(dir, function(err, realDir) {
2483
2555
  if (err)
2484
2556
  return finish(err);
2557
+ rootReal = realDir;
2485
2558
  walk(dir, new Set([realDir]), finish);
2486
2559
  });
2487
2560
  };
@@ -2556,7 +2629,11 @@ var require_utils = __commonJS(function(exports, module) {
2556
2629
  Utils.readBigUInt64LE = function(buffer, index) {
2557
2630
  const lo = buffer.readUInt32LE(index);
2558
2631
  const hi = buffer.readUInt32LE(index + 4);
2559
- return hi * 4294967296 + lo;
2632
+ const value = hi * 4294967296 + lo;
2633
+ if (value > Number.MAX_SAFE_INTEGER) {
2634
+ throw Errors.ZIP64_VALUE_TOO_LARGE();
2635
+ }
2636
+ return value;
2560
2637
  };
2561
2638
  Utils.writeBigUInt64LE = function(buffer, value, index) {
2562
2639
  const lo = value >>> 0;
@@ -2808,7 +2885,7 @@ var require_entryHeader = __commonJS(function(exports, module) {
2808
2885
  _attr = uint32(val);
2809
2886
  },
2810
2887
  get fileAttr() {
2811
- return (_attr || 0) >> 16 & 4095;
2888
+ return (_attr || 0) >> 16 & 511;
2812
2889
  },
2813
2890
  get offset() {
2814
2891
  return _offset;
@@ -2829,6 +2906,9 @@ var require_entryHeader = __commonJS(function(exports, module) {
2829
2906
  return _localHeader;
2830
2907
  },
2831
2908
  loadLocalHeaderFromBinary: function(input) {
2909
+ if (_offset < 0 || _offset + Constants.LOCHDR > input.length) {
2910
+ throw Utils.Errors.INVALID_LOC();
2911
+ }
2832
2912
  var data = input.slice(_offset, _offset + Constants.LOCHDR);
2833
2913
  if (data.readUInt32LE(0) !== Constants.LOCSIG) {
2834
2914
  throw Utils.Errors.INVALID_LOC();
@@ -3094,20 +3174,40 @@ var require_deflater = __commonJS(function(exports, module) {
3094
3174
  // ../../../node_modules/adm-zip/methods/inflater.js
3095
3175
  var require_inflater = __commonJS(function(exports, module) {
3096
3176
  var version = +(process?.versions?.node ?? "").split(".")[0] || 0;
3177
+ var Errors = require_errors();
3097
3178
  module.exports = function(inbuf, expectedLength) {
3098
3179
  var zlib = __require("zlib");
3099
- const option = version >= 15 && expectedLength > 0 ? { maxOutputLength: expectedLength } : {};
3180
+ const maxOutputLength = expectedLength > 0 ? expectedLength : 1;
3181
+ const option = version >= 15 ? { maxOutputLength } : {};
3100
3182
  return {
3101
3183
  inflate: function() {
3102
3184
  return zlib.inflateRawSync(inbuf, option);
3103
3185
  },
3104
3186
  inflateAsync: function(callback) {
3105
- var tmp = zlib.createInflateRaw(option), parts = [], total = 0;
3187
+ var tmp = zlib.createInflateRaw(option), parts = [], total = 0, done = false;
3188
+ const fail = function(err) {
3189
+ if (done)
3190
+ return;
3191
+ done = true;
3192
+ tmp.destroy();
3193
+ callback && callback(Buffer.alloc(0), err);
3194
+ };
3195
+ tmp.on("error", function(err) {
3196
+ fail(err);
3197
+ });
3106
3198
  tmp.on("data", function(data) {
3107
- parts.push(data);
3199
+ if (done)
3200
+ return;
3108
3201
  total += data.length;
3202
+ if (total > maxOutputLength) {
3203
+ return fail(Errors.MAX_OUTPUT_EXCEEDED());
3204
+ }
3205
+ parts.push(data);
3109
3206
  });
3110
3207
  tmp.on("end", function() {
3208
+ if (done)
3209
+ return;
3210
+ done = true;
3111
3211
  var buf = Buffer.alloc(total), written = 0;
3112
3212
  buf.fill(0);
3113
3213
  for (var i = 0;i < parts.length; i++) {
@@ -3264,7 +3364,12 @@ var require_zipEntry = __commonJS(function(exports, module) {
3264
3364
  return Buffer.alloc(0);
3265
3365
  }
3266
3366
  _extralocal = _centralHeader.loadLocalHeaderFromBinary(input);
3267
- return input.slice(_centralHeader.realDataOffset, _centralHeader.realDataOffset + _centralHeader.compressedSize);
3367
+ const dataOffset = _centralHeader.realDataOffset;
3368
+ const dataEnd = dataOffset + _centralHeader.compressedSize;
3369
+ if (dataOffset < 0 || dataEnd < dataOffset || dataEnd > input.length) {
3370
+ throw Utils.Errors.INVALID_LOC();
3371
+ }
3372
+ return input.slice(dataOffset, dataEnd);
3268
3373
  }
3269
3374
  function crc32OK(data) {
3270
3375
  const expectedCrc = _centralHeader.flags_desc || _centralHeader.localHeader.flags_desc ? _centralHeader.crc : _centralHeader.localHeader.crc;
@@ -3281,17 +3386,26 @@ var require_zipEntry = __commonJS(function(exports, module) {
3281
3386
  }
3282
3387
  return Buffer.alloc(0);
3283
3388
  }
3284
- var compressedData = getCompressedDataFromZip();
3285
- if (compressedData.length === 0) {
3286
- if (async && callback)
3287
- callback(compressedData);
3288
- return compressedData;
3289
- }
3290
- if (_centralHeader.encrypted) {
3291
- if (typeof pass !== "string" && !Buffer.isBuffer(pass)) {
3292
- throw Utils.Errors.INVALID_PASS_PARAM();
3389
+ var compressedData;
3390
+ try {
3391
+ compressedData = getCompressedDataFromZip();
3392
+ if (compressedData.length === 0) {
3393
+ if (async && callback)
3394
+ callback(compressedData);
3395
+ return compressedData;
3293
3396
  }
3294
- compressedData = Methods.ZipCrypto.decrypt(compressedData, _centralHeader, pass);
3397
+ if (_centralHeader.encrypted) {
3398
+ if (typeof pass !== "string" && !Buffer.isBuffer(pass)) {
3399
+ throw Utils.Errors.INVALID_PASS_PARAM();
3400
+ }
3401
+ compressedData = Methods.ZipCrypto.decrypt(compressedData, _centralHeader, pass);
3402
+ }
3403
+ } catch (err) {
3404
+ if (async && callback) {
3405
+ callback(Buffer.alloc(0), err);
3406
+ return Buffer.alloc(0);
3407
+ }
3408
+ throw err;
3295
3409
  }
3296
3410
  var data;
3297
3411
  switch (_centralHeader.method) {
@@ -3316,13 +3430,15 @@ var require_zipEntry = __commonJS(function(exports, module) {
3316
3430
  }
3317
3431
  return data;
3318
3432
  } else {
3319
- inflater.inflateAsync(function(result) {
3320
- if (callback) {
3321
- if (!crc32OK(result)) {
3322
- callback(result, Utils.Errors.BAD_CRC());
3323
- } else {
3324
- callback(result);
3325
- }
3433
+ inflater.inflateAsync(function(result, err) {
3434
+ if (!callback)
3435
+ return;
3436
+ if (err) {
3437
+ callback(Buffer.alloc(0), err);
3438
+ } else if (!crc32OK(result)) {
3439
+ callback(result, Utils.Errors.BAD_CRC());
3440
+ } else {
3441
+ callback(result);
3326
3442
  }
3327
3443
  });
3328
3444
  }
@@ -3614,6 +3730,9 @@ var require_zipFile = __commonJS(function(exports, module) {
3614
3730
  if (entry.header.commentLength)
3615
3731
  entry.comment = inBuffer.slice(tmp, tmp + entry.header.commentLength);
3616
3732
  index += entry.header.centralHeaderSize;
3733
+ if (entry.entryName in entryTable) {
3734
+ throw Utils.Errors.DUPLICATE_ENTRY(`"${entry.entryName}"`);
3735
+ }
3617
3736
  entryList[i] = entry;
3618
3737
  entryTable[entry.entryName] = entry;
3619
3738
  }
@@ -4139,7 +4258,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4139
4258
  addLocalFolderAsync2: function(options2, callback) {
4140
4259
  const self = this;
4141
4260
  options2 = typeof options2 === "object" ? options2 : { localPath: options2 };
4142
- const localPath = pth.resolve(fixPath(options2.localPath));
4261
+ const localPath = pth.resolve(options2.localPath);
4143
4262
  let { zipPath, filter, namefix } = options2;
4144
4263
  if (filter instanceof RegExp) {
4145
4264
  filter = function(rx) {
@@ -4162,16 +4281,16 @@ var require_adm_zip = __commonJS(function(exports, module) {
4162
4281
  const fileNameFix = (entry) => pth.win32.basename(pth.win32.normalize(namefix(entry)));
4163
4282
  filetools.fs.open(localPath, "r", function(err) {
4164
4283
  if (err && err.code === "ENOENT") {
4165
- callback(undefined, Utils.Errors.FILE_NOT_FOUND(localPath));
4284
+ callback(Utils.Errors.FILE_NOT_FOUND(localPath), false);
4166
4285
  } else if (err) {
4167
- callback(undefined, err);
4286
+ callback(err, false);
4168
4287
  } else {
4169
4288
  filetools.findFilesAsync(localPath, function(err2, fileEntries) {
4170
4289
  if (err2)
4171
- return callback(err2);
4290
+ return callback(err2, false);
4172
4291
  fileEntries = fileEntries.filter((dir) => filter(relPathFix(dir)));
4173
4292
  if (!fileEntries.length)
4174
- callback(undefined, false);
4293
+ return callback(undefined, true);
4175
4294
  setImmediate(fileEntries.reverse().reduce(function(next, entry) {
4176
4295
  return function(err3, done) {
4177
4296
  if (err3 || done === false)
@@ -4191,7 +4310,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4191
4310
  return new Promise((resolve2, reject) => {
4192
4311
  this.addLocalFolderAsync2(Object.assign({ localPath }, props), (err, done) => {
4193
4312
  if (err)
4194
- reject(err);
4313
+ return reject(err);
4195
4314
  if (done)
4196
4315
  resolve2(this);
4197
4316
  });
@@ -4261,6 +4380,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4261
4380
  }
4262
4381
  var name = canonical(maintainEntryPath ? child.entryName : child.entryName.substring(item.entryName.length));
4263
4382
  var childName = sanitize(targetPath, name);
4383
+ filetools.assertPathSafe(targetPath, childName);
4264
4384
  const fileAttr2 = keepOriginalPermission ? child.header.fileAttr : undefined;
4265
4385
  filetools.writeFileTo(childName, content2, overwrite, fileAttr2);
4266
4386
  });
@@ -4269,6 +4389,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4269
4389
  var content = item.getData(_zip.password);
4270
4390
  if (!content)
4271
4391
  throw Utils.Errors.CANT_EXTRACT_FILE();
4392
+ filetools.assertPathSafe(targetPath, target);
4272
4393
  if (filetools.fs.existsSync(target) && !overwrite) {
4273
4394
  throw Utils.Errors.CANT_OVERRIDE();
4274
4395
  }
@@ -4304,6 +4425,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4304
4425
  const dirEntries = [];
4305
4426
  _zip.entries.forEach(function(entry) {
4306
4427
  var entryName = sanitize(targetPath, canonical(entry.entryName));
4428
+ filetools.assertPathSafe(targetPath, entryName);
4307
4429
  if (entry.isDirectory) {
4308
4430
  filetools.makeDir(entryName);
4309
4431
  if (keepOriginalPermission)
@@ -4358,6 +4480,7 @@ var require_adm_zip = __commonJS(function(exports, module) {
4358
4480
  const dirPath = getPath(entry);
4359
4481
  const dirAttr = keepOriginalPermission ? entry.header.fileAttr : undefined;
4360
4482
  try {
4483
+ filetools.assertPathSafe(targetPath, dirPath);
4361
4484
  filetools.makeDir(dirPath);
4362
4485
  } catch (er) {
4363
4486
  callback(getError("Unable to create folder", dirPath));
@@ -4386,6 +4509,11 @@ var require_adm_zip = __commonJS(function(exports, module) {
4386
4509
  } else {
4387
4510
  const entryName = pth.normalize(canonical(entry.entryName));
4388
4511
  const filePath = sanitize(targetPath, entryName);
4512
+ try {
4513
+ filetools.assertPathSafe(targetPath, filePath);
4514
+ } catch (er) {
4515
+ return next(er);
4516
+ }
4389
4517
  entry.getDataAsync(function(content, err_1) {
4390
4518
  if (err_1) {
4391
4519
  next(err_1);
@@ -7789,7 +7917,7 @@ var jmespathSlot = singleton("JmespathCodec");
7789
7917
  async function loadOutputCodecsAsync(needed) {
7790
7918
  const loads = [];
7791
7919
  if (needed.yaml && yamlSlot.get() === undefined) {
7792
- loads.push(import("./js-yaml-ac3y4ax7.js").then((mod) => {
7920
+ loads.push(import("./js-yaml-71wj4em9.js").then((mod) => {
7793
7921
  yamlSlot.set(mod);
7794
7922
  }));
7795
7923
  }
@@ -10615,4 +10743,4 @@ export {
10615
10743
  registerCommands
10616
10744
  };
10617
10745
 
10618
- //# debugId=22A07077BBF1F28C64756E2164756E21
10746
+ //# debugId=A233A76C0C48589C64756E2164756E21
@@ -1334,16 +1334,21 @@ function requireLoader() {
1334
1334
  state.result += _result;
1335
1335
  }
1336
1336
  }
1337
+ function chargeMergeWork(state) {
1338
+ state.totalMergeKeys++;
1339
+ if (state.maxTotalMergeKeys !== -1 && state.totalMergeKeys > state.maxTotalMergeKeys) {
1340
+ throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
1341
+ }
1342
+ }
1337
1343
  function mergeMappings(state, destination, source, overridableKeys) {
1338
1344
  if (!common2.isObject(source)) {
1339
1345
  throwError(state, "cannot merge mappings; the provided source object is unacceptable");
1340
1346
  }
1347
+ chargeMergeWork(state);
1341
1348
  const sourceKeys = Object.keys(source);
1342
1349
  for (let index = 0, quantity = sourceKeys.length;index < quantity; index += 1) {
1343
1350
  const key = sourceKeys[index];
1344
- if (state.maxTotalMergeKeys !== -1 && ++state.totalMergeKeys > state.maxTotalMergeKeys) {
1345
- throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
1346
- }
1351
+ chargeMergeWork(state);
1347
1352
  if (!_hasOwnProperty.call(destination, key)) {
1348
1353
  setProperty(destination, key, source[key]);
1349
1354
  overridableKeys[key] = true;
@@ -1371,6 +1376,9 @@ function requireLoader() {
1371
1376
  }
1372
1377
  if (keyTag === "tag:yaml.org,2002:merge") {
1373
1378
  if (Array.isArray(valueNode)) {
1379
+ if (valueNode.length > 100) {
1380
+ throwError(state, "abnormal merge sequence size");
1381
+ }
1374
1382
  for (let index = 0, quantity = valueNode.length;index < quantity; index += 1) {
1375
1383
  mergeMappings(state, _result, valueNode[index], overridableKeys);
1376
1384
  }
@@ -3142,4 +3150,4 @@ export {
3142
3150
  types
3143
3151
  };
3144
3152
 
3145
- //# debugId=013F44E69BAB139B64756E2164756E21
3153
+ //# debugId=87463FE309AE7C9C64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/audit-commands",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.134",
4
+ "version": "1.202.0-preview.136",
5
5
  "description": "Admin CLI commands for the UiPath Audit Service — query event sources, paginate events, and export ZIPs from the long-term store. Library composed by admin-tool, not a standalone CLI tool.",
6
6
  "private": false,
7
7
  "repository": {
@@ -25,14 +25,5 @@
25
25
  "files": [
26
26
  "dist"
27
27
  ],
28
- "devDependencies": {
29
- "@types/bun": "^1.3.11",
30
- "@uipath/audit-sdk": "1.202.0",
31
- "@uipath/common": "1.202.0",
32
- "@uipath/filesystem": "1.202.0",
33
- "adm-zip": "^0.6.0",
34
- "commander": "^14.0.3",
35
- "typescript": "^7.0.2"
36
- },
37
- "gitHead": "a335728adbdb02f28308e4f55d8936d0b150444b"
28
+ "gitHead": "f6270de2c7c04f4c43b2f5187b0c3d3c314c2610"
38
29
  }