@uipath/orchestrator-tool 1.198.0-preview.95 → 1.198.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/tool.js +257 -150
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -21250,7 +21250,7 @@ var init_server = __esm(() => {
21250
21250
  var package_default = {
21251
21251
  name: "@uipath/orchestrator-tool",
21252
21252
  license: "MIT",
21253
- version: "1.198.0-preview.95",
21253
+ version: "1.198.0",
21254
21254
  description: "Manage Orchestrator folders, jobs, processes, and releases.",
21255
21255
  private: false,
21256
21256
  repository: {
@@ -27447,11 +27447,36 @@ class NodeContextStorage {
27447
27447
  return this.storage.getStore();
27448
27448
  }
27449
27449
  }
27450
+ // ../common/src/telemetry/trace-context.ts
27451
+ var TELEMETRY_TRACEPARENT_ENV = "TRACEPARENT";
27452
+ var TRACEPARENT_PATTERN = /^00-([0-9a-f]{32})-([0-9a-f]{16})-[0-9a-f]{2}$/;
27453
+ function getProcessEnv() {
27454
+ return globalThis.process?.env;
27455
+ }
27456
+ function parseInboundTraceparent(value) {
27457
+ if (!value) {
27458
+ return;
27459
+ }
27460
+ const match = TRACEPARENT_PATTERN.exec(value.trim().toLowerCase());
27461
+ if (!match) {
27462
+ return;
27463
+ }
27464
+ const [, traceId, parentSpanId] = match;
27465
+ if (/^0+$/.test(traceId) || /^0+$/.test(parentSpanId)) {
27466
+ return;
27467
+ }
27468
+ return { traceId, parentSpanId };
27469
+ }
27470
+ function getInboundTraceContext() {
27471
+ return parseInboundTraceparent(getProcessEnv()?.[TELEMETRY_TRACEPARENT_ENV]);
27472
+ }
27473
+
27450
27474
  // ../common/src/telemetry/session-id.ts
27451
27475
  var TELEMETRY_SESSION_ID_ENV = "UIPATH_SESSION_ID";
27452
27476
  var TELEMETRY_SESSION_ID_PROPERTY = "session_id";
27453
27477
  var telemetrySessionIdSlot = singleton("TelemetrySessionId");
27454
- function getProcessEnv() {
27478
+ var telemetryOperationIdSlot = singleton("TelemetryOperationId");
27479
+ function getProcessEnv2() {
27455
27480
  return globalThis.process?.env;
27456
27481
  }
27457
27482
  function normalizeSessionId(value) {
@@ -27462,18 +27487,165 @@ function normalizeSessionId(value) {
27462
27487
  return trimmed || undefined;
27463
27488
  }
27464
27489
  function getConfiguredTelemetrySessionId() {
27465
- return normalizeSessionId(getProcessEnv()?.[TELEMETRY_SESSION_ID_ENV]);
27490
+ return normalizeSessionId(getProcessEnv2()?.[TELEMETRY_SESSION_ID_ENV]);
27466
27491
  }
27467
27492
  function resolveTelemetrySessionId(existingSessionId) {
27468
27493
  return getConfiguredTelemetrySessionId() ?? normalizeSessionId(existingSessionId);
27469
27494
  }
27495
+ function getTelemetryOperationId() {
27496
+ const existing = telemetryOperationIdSlot.get();
27497
+ if (existing) {
27498
+ return existing;
27499
+ }
27500
+ const inboundTraceId = getInboundTraceContext()?.traceId;
27501
+ const generated = inboundTraceId ?? crypto.randomUUID().replaceAll("-", "");
27502
+ telemetryOperationIdSlot.set(generated);
27503
+ return generated;
27504
+ }
27470
27505
  // ../common/src/telemetry/global-telemetry-properties.ts
27471
27506
  var telemetryPropsSlot = singleton("TelemetryDefaultProps");
27472
27507
  function getGlobalTelemetryProperties() {
27473
27508
  return telemetryPropsSlot.get();
27474
27509
  }
27475
27510
 
27511
+ // ../common/src/telemetry/pii-redactor.ts
27512
+ var REDACTED = "[REDACTED]";
27513
+ var MAX_VALUE_LENGTH = 200;
27514
+ var SENSITIVE_NAME_TOKENS = new Set([
27515
+ "token",
27516
+ "tokens",
27517
+ "secret",
27518
+ "secrets",
27519
+ "password",
27520
+ "passwords",
27521
+ "pwd",
27522
+ "credential",
27523
+ "credentials",
27524
+ "auth",
27525
+ "authentication",
27526
+ "authorization",
27527
+ "authority",
27528
+ "cert",
27529
+ "certificate",
27530
+ "certificates"
27531
+ ]);
27532
+ var SENSITIVE_KEY_PREFIXES = new Set([
27533
+ "api",
27534
+ "access",
27535
+ "client",
27536
+ "private",
27537
+ "public",
27538
+ "signing",
27539
+ "encryption",
27540
+ "session",
27541
+ "master",
27542
+ "shared",
27543
+ "root",
27544
+ "ssh",
27545
+ "rsa",
27546
+ "aes",
27547
+ "hmac",
27548
+ "oauth"
27549
+ ]);
27550
+ var UUID_PATTERN = /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/gi;
27551
+ var EMAIL_PATTERN = /\b[^\s@]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b/g;
27552
+ var JWT_PATTERN = /\beyJ[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+/g;
27553
+ var LONG_TOKEN_PATTERN = /\b[A-Za-z0-9_-]{40,}\b/g;
27554
+ var USER_HOME_PATTERN = /([/\\])(Users|home)([/\\])([^/\\]+)/gi;
27555
+ var URL_PATTERN = /\bhttps?:\/\/[^\s,;]+/gi;
27556
+ var URL_TRAILING_PUNCT = /[.,;:!?)\]}>'"]+$/;
27557
+ function shortHash(input) {
27558
+ let hash = 2166136261;
27559
+ for (let i = 0;i < input.length; i++) {
27560
+ hash ^= input.charCodeAt(i);
27561
+ hash = Math.imul(hash, 16777619);
27562
+ }
27563
+ return (hash >>> 0).toString(16).padStart(8, "0");
27564
+ }
27565
+ function redactUrl(raw) {
27566
+ try {
27567
+ const url = new URL(raw);
27568
+ return `${url.protocol}//${url.host}`;
27569
+ } catch {
27570
+ return `url#${shortHash(raw)}`;
27571
+ }
27572
+ }
27573
+ function redactValueDetectors(value) {
27574
+ let out = value;
27575
+ out = out.replace(JWT_PATTERN, () => REDACTED);
27576
+ out = out.replace(URL_PATTERN, (match) => {
27577
+ const trailing = match.match(URL_TRAILING_PUNCT)?.[0] ?? "";
27578
+ const core2 = trailing ? match.slice(0, -trailing.length) : match;
27579
+ return `${redactUrl(core2)}${trailing}`;
27580
+ });
27581
+ out = out.replace(USER_HOME_PATTERN, (_match, sep1, folder, sep2) => `${sep1}${folder}${sep2}<user>`);
27582
+ out = out.replace(EMAIL_PATTERN, (match) => `email#${shortHash(match)}`);
27583
+ out = out.replace(UUID_PATTERN, (match) => `uuid#${shortHash(match)}`);
27584
+ out = out.replace(LONG_TOKEN_PATTERN, () => REDACTED);
27585
+ if (out.length > MAX_VALUE_LENGTH) {
27586
+ out = `${out.slice(0, MAX_VALUE_LENGTH)}…`;
27587
+ }
27588
+ return out;
27589
+ }
27590
+ function redactValue(value) {
27591
+ return redactValueDetectors(value);
27592
+ }
27593
+ function redactError(error) {
27594
+ const safe = new Error(redactValueDetectors(error.message ?? ""));
27595
+ safe.name = error.name;
27596
+ safe.stack = typeof error.stack === "string" ? redactValueDetectors(error.stack) : undefined;
27597
+ return safe;
27598
+ }
27599
+ function nameTokens(name) {
27600
+ return name.replace(/([a-z0-9])([A-Z])/g, "$1 $2").replace(/([A-Z]+)([A-Z][a-z])/g, "$1 $2").split(/[\s._-]+/).map((t) => t.toLowerCase()).filter(Boolean);
27601
+ }
27602
+ function isSensitiveName(name) {
27603
+ const tokens = nameTokens(name);
27604
+ for (let i = 0;i < tokens.length; i++) {
27605
+ const token = tokens[i];
27606
+ if (SENSITIVE_NAME_TOKENS.has(token)) {
27607
+ return true;
27608
+ }
27609
+ if (token === "key" || token === "keys") {
27610
+ const prev = tokens[i - 1];
27611
+ if (prev && SENSITIVE_KEY_PREFIXES.has(prev)) {
27612
+ return true;
27613
+ }
27614
+ }
27615
+ }
27616
+ return false;
27617
+ }
27618
+ function redactProperty(name, value) {
27619
+ if (value === undefined || value === null) {
27620
+ return;
27621
+ }
27622
+ if (isSensitiveName(name)) {
27623
+ return REDACTED;
27624
+ }
27625
+ if (typeof value === "boolean" || typeof value === "number") {
27626
+ return value;
27627
+ }
27628
+ if (typeof value !== "string") {
27629
+ return "[OBJECT]";
27630
+ }
27631
+ return redactValueDetectors(value);
27632
+ }
27633
+ function redactProperties(properties) {
27634
+ const out = {};
27635
+ for (const [name, value] of Object.entries(properties)) {
27636
+ const redacted = redactProperty(name, value);
27637
+ if (redacted !== undefined) {
27638
+ out[name] = redacted;
27639
+ }
27640
+ }
27641
+ return out;
27642
+ }
27643
+
27476
27644
  // ../common/src/telemetry/telemetry-service.ts
27645
+ var TELEMETRY_OPERATION_ID_PROPERTY = "uip.trace.operation_id";
27646
+ var TELEMETRY_PARENT_ID_PROPERTY = "uip.trace.parent_id";
27647
+ var TELEMETRY_SPAN_ID_PROPERTY = "uip.trace.span_id";
27648
+
27477
27649
  class TelemetryService {
27478
27650
  telemetryProvider;
27479
27651
  contextStorage;
@@ -27500,11 +27672,15 @@ class TelemetryService {
27500
27672
  trackException(error, properties) {
27501
27673
  const context = this.getCurrentContext();
27502
27674
  const enrichedProperties = this.enrichPropertiesWithContext(properties, context);
27503
- this.telemetryProvider.trackException(error, enrichedProperties);
27675
+ this.telemetryProvider.trackException(redactError(error), enrichedProperties);
27504
27676
  }
27505
27677
  async trackRequest(name, fn, properties) {
27678
+ const parentContext = this.getCurrentContext();
27679
+ const operationId = parentContext?.operationId ?? this.operationId ?? getTelemetryOperationId();
27680
+ const parentId = parentContext ? parentContext.id : this.inboundParentIdFor(operationId);
27506
27681
  const context = {
27507
- operationId: this.operationId ?? this.generateId(),
27682
+ operationId,
27683
+ ...parentId !== undefined ? { parentId } : {},
27508
27684
  id: this.generateId()
27509
27685
  };
27510
27686
  const startTime = performance.now();
@@ -27522,6 +27698,45 @@ class TelemetryService {
27522
27698
  throw error;
27523
27699
  }
27524
27700
  }
27701
+ trackRequestResult(name, durationMs, success, properties, context) {
27702
+ const requestContext = context ?? {
27703
+ operationId: this.operationId ?? getTelemetryOperationId(),
27704
+ id: this.generateId()
27705
+ };
27706
+ const enrichedProperties = this.enrichPropertiesWithContext(properties, requestContext);
27707
+ this.telemetryProvider.trackRequest(name, durationMs, success, enrichedProperties);
27708
+ }
27709
+ createRequestContext() {
27710
+ const operationId = this.operationId ?? getTelemetryOperationId();
27711
+ const parentId = this.inboundParentIdFor(operationId);
27712
+ return {
27713
+ operationId,
27714
+ ...parentId !== undefined ? { parentId } : {},
27715
+ id: this.generateId()
27716
+ };
27717
+ }
27718
+ inboundParentIdFor(operationId) {
27719
+ const inbound = getInboundTraceContext();
27720
+ return inbound && inbound.traceId === operationId ? inbound.parentSpanId : undefined;
27721
+ }
27722
+ runWithContext(context, fn) {
27723
+ return this.contextStorage.run(context, fn);
27724
+ }
27725
+ createDependencyContext() {
27726
+ const parentContext = this.getCurrentContext();
27727
+ if (!parentContext) {
27728
+ return;
27729
+ }
27730
+ return {
27731
+ operationId: parentContext.operationId,
27732
+ parentId: parentContext.id,
27733
+ id: this.generateId()
27734
+ };
27735
+ }
27736
+ trackDependencyResult(name, type2, durationMs, success, properties, context, resultCode) {
27737
+ const enrichedProperties = this.enrichPropertiesWithContext(properties, context);
27738
+ this.telemetryProvider.trackDependency(redactValue(name), type2, durationMs, success, enrichedProperties, resultCode);
27739
+ }
27525
27740
  async trackDependencyOperation(name, type2, fn, properties) {
27526
27741
  const parentContext = this.getCurrentContext();
27527
27742
  if (!parentContext) {
@@ -27558,8 +27773,12 @@ class TelemetryService {
27558
27773
  ...getExecutionContextTelemetryProperties(),
27559
27774
  ...globalProperties,
27560
27775
  ...this.defaultProperties,
27561
- ...properties,
27562
- ...context
27776
+ ...redactProperties(properties ?? {}),
27777
+ ...context ? {
27778
+ [TELEMETRY_OPERATION_ID_PROPERTY]: context.operationId,
27779
+ ...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY]: context.parentId } : {},
27780
+ [TELEMETRY_SPAN_ID_PROPERTY]: context.id
27781
+ } : {}
27563
27782
  };
27564
27783
  if (sessionId === undefined) {
27565
27784
  delete enriched[TELEMETRY_SESSION_ID_PROPERTY];
@@ -27569,7 +27788,16 @@ class TelemetryService {
27569
27788
  return enriched;
27570
27789
  }
27571
27790
  generateId() {
27572
- return crypto.randomUUID().replaceAll("-", "");
27791
+ const bytes = new Uint8Array(8);
27792
+ let hex = "";
27793
+ do {
27794
+ crypto.getRandomValues(bytes);
27795
+ hex = "";
27796
+ for (const byte of bytes) {
27797
+ hex += byte.toString(16).padStart(2, "0");
27798
+ }
27799
+ } while (/^0+$/.test(hex));
27800
+ return hex;
27573
27801
  }
27574
27802
  }
27575
27803
  // ../common/src/telemetry/node-appinsights-telemetry-provider.ts
@@ -28292,134 +28520,11 @@ function buildCommandTelemetryAttribution(commandPath, skillSource) {
28292
28520
  };
28293
28521
  }
28294
28522
 
28295
- // ../common/src/telemetry/pii-redactor.ts
28296
- var REDACTED = "[REDACTED]";
28297
- var MAX_VALUE_LENGTH = 200;
28298
- var SENSITIVE_NAME_TOKENS = new Set([
28299
- "token",
28300
- "tokens",
28301
- "secret",
28302
- "secrets",
28303
- "password",
28304
- "passwords",
28305
- "pwd",
28306
- "credential",
28307
- "credentials",
28308
- "auth",
28309
- "authentication",
28310
- "authorization",
28311
- "authority",
28312
- "cert",
28313
- "certificate",
28314
- "certificates"
28315
- ]);
28316
- var SENSITIVE_KEY_PREFIXES = new Set([
28317
- "api",
28318
- "access",
28319
- "client",
28320
- "private",
28321
- "public",
28322
- "signing",
28323
- "encryption",
28324
- "session",
28325
- "master",
28326
- "shared",
28327
- "root",
28328
- "ssh",
28329
- "rsa",
28330
- "aes",
28331
- "hmac",
28332
- "oauth"
28333
- ]);
28334
- var UUID_PATTERN = /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/gi;
28335
- var EMAIL_PATTERN = /\b[^\s@]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b/g;
28336
- var JWT_PATTERN = /\beyJ[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+/g;
28337
- var LONG_TOKEN_PATTERN = /\b[A-Za-z0-9_-]{40,}\b/g;
28338
- var USER_HOME_PATTERN = /([/\\])(Users|home)([/\\])([^/\\]+)/gi;
28339
- var URL_PATTERN = /\bhttps?:\/\/[^\s,;]+/gi;
28340
- var URL_TRAILING_PUNCT = /[.,;:!?)\]}>'"]+$/;
28341
- function shortHash(input) {
28342
- let hash = 2166136261;
28343
- for (let i = 0;i < input.length; i++) {
28344
- hash ^= input.charCodeAt(i);
28345
- hash = Math.imul(hash, 16777619);
28346
- }
28347
- return (hash >>> 0).toString(16).padStart(8, "0");
28348
- }
28349
- function redactUrl(raw) {
28350
- try {
28351
- const url = new URL(raw);
28352
- return `${url.protocol}//${url.host}`;
28353
- } catch {
28354
- return `url#${shortHash(raw)}`;
28355
- }
28356
- }
28357
- function redactValueDetectors(value) {
28358
- let out = value;
28359
- out = out.replace(JWT_PATTERN, () => REDACTED);
28360
- out = out.replace(URL_PATTERN, (match) => {
28361
- const trailing = match.match(URL_TRAILING_PUNCT)?.[0] ?? "";
28362
- const core2 = trailing ? match.slice(0, -trailing.length) : match;
28363
- return `${redactUrl(core2)}${trailing}`;
28364
- });
28365
- out = out.replace(USER_HOME_PATTERN, (_match, sep1, folder, sep2) => `${sep1}${folder}${sep2}<user>`);
28366
- out = out.replace(EMAIL_PATTERN, (match) => `email#${shortHash(match)}`);
28367
- out = out.replace(UUID_PATTERN, (match) => `uuid#${shortHash(match)}`);
28368
- out = out.replace(LONG_TOKEN_PATTERN, () => REDACTED);
28369
- if (out.length > MAX_VALUE_LENGTH) {
28370
- out = `${out.slice(0, MAX_VALUE_LENGTH)}…`;
28371
- }
28372
- return out;
28373
- }
28374
- function nameTokens(name) {
28375
- return name.replace(/([a-z0-9])([A-Z])/g, "$1 $2").replace(/([A-Z]+)([A-Z][a-z])/g, "$1 $2").split(/[\s_-]+/).map((t) => t.toLowerCase()).filter(Boolean);
28376
- }
28377
- function isSensitiveName(name) {
28378
- const tokens = nameTokens(name);
28379
- for (let i = 0;i < tokens.length; i++) {
28380
- const token = tokens[i];
28381
- if (SENSITIVE_NAME_TOKENS.has(token)) {
28382
- return true;
28383
- }
28384
- if (token === "key" || token === "keys") {
28385
- const prev = tokens[i - 1];
28386
- if (prev && SENSITIVE_KEY_PREFIXES.has(prev)) {
28387
- return true;
28388
- }
28389
- }
28390
- }
28391
- return false;
28392
- }
28393
- function redactProperty(name, value) {
28394
- if (value === undefined || value === null) {
28395
- return;
28396
- }
28397
- if (isSensitiveName(name)) {
28398
- return REDACTED;
28399
- }
28400
- if (typeof value === "boolean" || typeof value === "number") {
28401
- return value;
28402
- }
28403
- if (typeof value !== "string") {
28404
- return "[OBJECT]";
28405
- }
28406
- return redactValueDetectors(value);
28407
- }
28408
- function redactProperties(properties) {
28409
- const out = {};
28410
- for (const [name, value] of Object.entries(properties)) {
28411
- const redacted = redactProperty(name, value);
28412
- if (redacted !== undefined) {
28413
- out[name] = redacted;
28414
- }
28415
- }
28416
- return out;
28417
- }
28418
-
28419
28523
  // ../common/src/trackedAction.ts
28420
28524
  var pollSignalSlot = singleton("PollSignal");
28421
28525
  var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
28422
28526
  var retryHintValues = new Set(RETRY_HINTS);
28527
+ var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
28423
28528
  var processContext = {
28424
28529
  exit: (code) => {
28425
28530
  process.exitCode = code;
@@ -28430,22 +28535,18 @@ var processContext = {
28430
28535
  };
28431
28536
  function extractCommandParams(cmd) {
28432
28537
  const params = {};
28538
+ const add2 = (name, value) => {
28539
+ if (name && value !== undefined) {
28540
+ params[`${TELEMETRY_COMMAND_ARG_PREFIX}${name}`] = value;
28541
+ }
28542
+ };
28433
28543
  const registered = cmd.registeredArguments ?? [];
28434
28544
  const processed = cmd.processedArgs ?? [];
28435
28545
  for (let i = 0;i < registered.length; i++) {
28436
- const value = processed[i];
28437
- if (value === undefined) {
28438
- continue;
28439
- }
28440
- const name = registered[i].name();
28441
- if (name) {
28442
- params[name] = value;
28443
- }
28546
+ add2(registered[i].name(), processed[i]);
28444
28547
  }
28445
28548
  for (const [key, value] of Object.entries(cmd.opts())) {
28446
- if (value !== undefined) {
28447
- params[key] = value;
28448
- }
28549
+ add2(key, value);
28449
28550
  }
28450
28551
  return params;
28451
28552
  }
@@ -28488,11 +28589,12 @@ Command.prototype.trackedAction = function(context, fn, properties) {
28488
28589
  return this.action(async (...args) => {
28489
28590
  const telemetryName = deriveCommandPath(command);
28490
28591
  const props = typeof properties === "function" ? properties(...args) : properties;
28592
+ const requestContext = telemetry.createRequestContext();
28491
28593
  const startTime = performance.now();
28492
28594
  let errorMessage;
28493
28595
  let fallbackExitCode = EXIT_CODES.Success;
28494
28596
  clearRecordedCommandFailureTelemetry();
28495
- const [error] = await catchError(fn(...args));
28597
+ const [error] = await catchError(telemetry.runWithContext(requestContext, () => fn(...args)));
28496
28598
  if (error) {
28497
28599
  errorMessage = error instanceof Error ? error.message : String(error);
28498
28600
  logger.debug(`[trackedAction] ${telemetryName} failed: ${errorMessage}`);
@@ -28528,16 +28630,21 @@ Command.prototype.trackedAction = function(context, fn, properties) {
28528
28630
  recordedFailure,
28529
28631
  pollSignal: context.pollSignal
28530
28632
  });
28531
- telemetry.trackEvent(telemetryName, redactProperties({
28532
- ...extractCommandParams(command),
28633
+ const commandParams = extractCommandParams(command);
28634
+ if (props) {
28635
+ for (const key of Object.keys(props)) {
28636
+ delete commandParams[`${TELEMETRY_COMMAND_ARG_PREFIX}${key}`];
28637
+ }
28638
+ }
28639
+ const baseProperties = redactProperties({
28640
+ ...commandParams,
28533
28641
  ...props,
28534
28642
  ...buildCommandTelemetryAttribution(telemetryName, process.env.UIPATH_SKILL),
28535
28643
  command: "true",
28536
- duration: String(durationMs),
28537
- success: String(success),
28538
28644
  ...terminalTelemetry,
28539
28645
  ...errorMessage ? { errorMessage } : {}
28540
- }));
28646
+ });
28647
+ telemetry.trackRequestResult(telemetryName, durationMs, success, baseProperties, requestContext);
28541
28648
  });
28542
28649
  };
28543
28650
 
@@ -67724,4 +67831,4 @@ export {
67724
67831
  metadata
67725
67832
  };
67726
67833
 
67727
- //# debugId=E8A1536851101C7B64756E2164756E21
67834
+ //# debugId=AF15A195DEBAC6AE64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/orchestrator-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.95",
4
+ "version": "1.198.0",
5
5
  "description": "Manage Orchestrator folders, jobs, processes, and releases.",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "7f6f14e06688fe417ecaac94186ab795a9106caa"
29
+ "gitHead": "1fadf03d7a8dd102742571dff569fdac11808afb"
30
30
  }