@uipath/maestro-tool 1.199.0-preview.106 → 1.199.0-preview.108
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/packager-tool.js +2 -2
- package/dist/tool.js +228 -78
- package/package.json +2 -2
package/dist/packager-tool.js
CHANGED
|
@@ -176983,7 +176983,7 @@ init_dist6();
|
|
|
176983
176983
|
// ../packager/packager-tool-flow/package.json
|
|
176984
176984
|
var package_default = {
|
|
176985
176985
|
name: "@uipath/packager-tool-flow",
|
|
176986
|
-
version: "1.199.0-preview.
|
|
176986
|
+
version: "1.199.0-preview.108",
|
|
176987
176987
|
description: "UiPath Flow tool implementation",
|
|
176988
176988
|
type: "module",
|
|
176989
176989
|
exports: {
|
|
@@ -191748,4 +191748,4 @@ toolsFactoryRepository2.registerProjectToolFactory(new BpmnToolFactory);
|
|
|
191748
191748
|
toolsFactoryRepository2.registerProjectToolFactory(new FlowToolFactory);
|
|
191749
191749
|
toolsFactoryRepository2.registerProjectToolFactory(new CaseToolFactory);
|
|
191750
191750
|
|
|
191751
|
-
//# debugId=
|
|
191751
|
+
//# debugId=0791BC49A536074264756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -28721,14 +28721,42 @@ function normalizeSessionId(value) {
|
|
|
28721
28721
|
if (typeof value !== "string" && typeof value !== "number" && typeof value !== "boolean") {
|
|
28722
28722
|
return;
|
|
28723
28723
|
}
|
|
28724
|
-
const
|
|
28725
|
-
return
|
|
28724
|
+
const cleaned = String(value).replace(CONTROL_CHARACTERS, "").trim().slice(0, SESSION_ID_MAX_LENGTH);
|
|
28725
|
+
return cleaned || undefined;
|
|
28726
28726
|
}
|
|
28727
28727
|
function getConfiguredTelemetrySessionId() {
|
|
28728
28728
|
return normalizeSessionId(getProcessEnv2()?.[TELEMETRY_SESSION_ID_ENV]);
|
|
28729
28729
|
}
|
|
28730
|
-
function
|
|
28731
|
-
|
|
28730
|
+
function getInheritedSession(env) {
|
|
28731
|
+
for (const candidate of INHERITED_SESSION_SOURCES) {
|
|
28732
|
+
const handle = normalizeSessionId(env[candidate.envVar]);
|
|
28733
|
+
if (handle) {
|
|
28734
|
+
return { id: handle, source: candidate.source };
|
|
28735
|
+
}
|
|
28736
|
+
}
|
|
28737
|
+
return;
|
|
28738
|
+
}
|
|
28739
|
+
function generateRandomSession() {
|
|
28740
|
+
const bytes = new Uint8Array(RANDOM_SESSION_ID_LENGTH / 2);
|
|
28741
|
+
crypto.getRandomValues(bytes);
|
|
28742
|
+
let hex = "";
|
|
28743
|
+
for (const byte of bytes) {
|
|
28744
|
+
hex += byte.toString(16).padStart(2, "0");
|
|
28745
|
+
}
|
|
28746
|
+
return { id: hex, source: "random" };
|
|
28747
|
+
}
|
|
28748
|
+
function resolveTelemetrySession() {
|
|
28749
|
+
const existing = telemetrySessionSlot.get();
|
|
28750
|
+
if (existing) {
|
|
28751
|
+
return existing;
|
|
28752
|
+
}
|
|
28753
|
+
const declaredHandle = getConfiguredTelemetrySessionId();
|
|
28754
|
+
const resolved = declaredHandle ? { id: declaredHandle, source: "declared" } : getInheritedSession(getProcessEnv2() ?? {}) ?? generateRandomSession();
|
|
28755
|
+
telemetrySessionSlot.set(resolved);
|
|
28756
|
+
return resolved;
|
|
28757
|
+
}
|
|
28758
|
+
function getTelemetrySessionSource() {
|
|
28759
|
+
return resolveTelemetrySession().source;
|
|
28732
28760
|
}
|
|
28733
28761
|
function getTelemetryOperationId() {
|
|
28734
28762
|
const existing = telemetryOperationIdSlot.get();
|
|
@@ -28740,11 +28768,19 @@ function getTelemetryOperationId() {
|
|
|
28740
28768
|
telemetryOperationIdSlot.set(generated);
|
|
28741
28769
|
return generated;
|
|
28742
28770
|
}
|
|
28743
|
-
var TELEMETRY_SESSION_ID_ENV = "UIPATH_SESSION_ID",
|
|
28771
|
+
var TELEMETRY_SESSION_ID_ENV = "UIPATH_SESSION_ID", SESSION_ID_MAX_LENGTH = 64, RANDOM_SESSION_ID_LENGTH = 32, TELEMETRY_SESSION_SOURCE_PROPERTY = "session_id_source", CONTROL_CHARACTERS, INHERITED_SESSION_SOURCES, telemetrySessionSlot, telemetryOperationIdSlot;
|
|
28744
28772
|
var init_session_id = __esm(() => {
|
|
28745
28773
|
init_singleton();
|
|
28746
28774
|
init_trace_context();
|
|
28747
|
-
|
|
28775
|
+
CONTROL_CHARACTERS = /\p{Cc}/gu;
|
|
28776
|
+
INHERITED_SESSION_SOURCES = [
|
|
28777
|
+
{ envVar: "CLAUDE_CODE_SESSION_ID", source: "claude-code" },
|
|
28778
|
+
{ envVar: "CODEX_THREAD_ID", source: "codex" },
|
|
28779
|
+
{ envVar: "ANTIGRAVITY_TRAJECTORY_ID", source: "antigravity" },
|
|
28780
|
+
{ envVar: "TERM_SESSION_ID", source: "terminal" },
|
|
28781
|
+
{ envVar: "WT_SESSION", source: "terminal" }
|
|
28782
|
+
];
|
|
28783
|
+
telemetrySessionSlot = singleton("TelemetrySession");
|
|
28748
28784
|
telemetryOperationIdSlot = singleton("TelemetryOperationId");
|
|
28749
28785
|
});
|
|
28750
28786
|
|
|
@@ -29014,24 +29050,18 @@ class TelemetryService {
|
|
|
29014
29050
|
}
|
|
29015
29051
|
enrichPropertiesWithContext(properties, context) {
|
|
29016
29052
|
const globalProperties = getGlobalTelemetryProperties();
|
|
29017
|
-
const existingSessionId = properties?.[TELEMETRY_SESSION_ID_PROPERTY] ?? this.defaultProperties?.[TELEMETRY_SESSION_ID_PROPERTY] ?? globalProperties?.[TELEMETRY_SESSION_ID_PROPERTY];
|
|
29018
|
-
const sessionId = resolveTelemetrySessionId(existingSessionId);
|
|
29019
29053
|
const enriched = {
|
|
29020
29054
|
...getExecutionContextTelemetryProperties(),
|
|
29021
29055
|
...globalProperties,
|
|
29022
29056
|
...this.defaultProperties,
|
|
29023
29057
|
...redactProperties(properties ?? {}),
|
|
29058
|
+
[TELEMETRY_SESSION_SOURCE_PROPERTY]: getTelemetrySessionSource(),
|
|
29024
29059
|
...context ? {
|
|
29025
29060
|
[TELEMETRY_OPERATION_ID_PROPERTY]: context.operationId,
|
|
29026
29061
|
...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY]: context.parentId } : {},
|
|
29027
29062
|
[TELEMETRY_SPAN_ID_PROPERTY]: context.id
|
|
29028
29063
|
} : {}
|
|
29029
29064
|
};
|
|
29030
|
-
if (sessionId === undefined) {
|
|
29031
|
-
delete enriched[TELEMETRY_SESSION_ID_PROPERTY];
|
|
29032
|
-
} else {
|
|
29033
|
-
enriched[TELEMETRY_SESSION_ID_PROPERTY] = sessionId;
|
|
29034
|
-
}
|
|
29035
29065
|
return enriched;
|
|
29036
29066
|
}
|
|
29037
29067
|
generateId() {
|
|
@@ -134870,7 +134900,7 @@ var init_package = __esm(() => {
|
|
|
134870
134900
|
package_default2 = {
|
|
134871
134901
|
name: "@uipath/integrationservice-sdk",
|
|
134872
134902
|
license: "MIT",
|
|
134873
|
-
version: "1.199.0-preview.
|
|
134903
|
+
version: "1.199.0-preview.108",
|
|
134874
134904
|
repository: {
|
|
134875
134905
|
type: "git",
|
|
134876
134906
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -155764,7 +155794,7 @@ var init_package3 = __esm(() => {
|
|
|
155764
155794
|
package_default4 = {
|
|
155765
155795
|
name: "@uipath/solution-sdk",
|
|
155766
155796
|
license: "MIT",
|
|
155767
|
-
version: "1.199.0-preview.
|
|
155797
|
+
version: "1.199.0-preview.108",
|
|
155768
155798
|
repository: {
|
|
155769
155799
|
type: "git",
|
|
155770
155800
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -162921,14 +162951,42 @@ function normalizeSessionId2(value) {
|
|
|
162921
162951
|
if (typeof value !== "string" && typeof value !== "number" && typeof value !== "boolean") {
|
|
162922
162952
|
return;
|
|
162923
162953
|
}
|
|
162924
|
-
const
|
|
162925
|
-
return
|
|
162954
|
+
const cleaned = String(value).replace(CONTROL_CHARACTERS2, "").trim().slice(0, SESSION_ID_MAX_LENGTH2);
|
|
162955
|
+
return cleaned || undefined;
|
|
162926
162956
|
}
|
|
162927
162957
|
function getConfiguredTelemetrySessionId2() {
|
|
162928
162958
|
return normalizeSessionId2(getProcessEnv22()?.[TELEMETRY_SESSION_ID_ENV2]);
|
|
162929
162959
|
}
|
|
162930
|
-
function
|
|
162931
|
-
|
|
162960
|
+
function getInheritedSession2(env) {
|
|
162961
|
+
for (const candidate of INHERITED_SESSION_SOURCES2) {
|
|
162962
|
+
const handle = normalizeSessionId2(env[candidate.envVar]);
|
|
162963
|
+
if (handle) {
|
|
162964
|
+
return { id: handle, source: candidate.source };
|
|
162965
|
+
}
|
|
162966
|
+
}
|
|
162967
|
+
return;
|
|
162968
|
+
}
|
|
162969
|
+
function generateRandomSession2() {
|
|
162970
|
+
const bytes = new Uint8Array(RANDOM_SESSION_ID_LENGTH2 / 2);
|
|
162971
|
+
crypto.getRandomValues(bytes);
|
|
162972
|
+
let hex3 = "";
|
|
162973
|
+
for (const byte of bytes) {
|
|
162974
|
+
hex3 += byte.toString(16).padStart(2, "0");
|
|
162975
|
+
}
|
|
162976
|
+
return { id: hex3, source: "random" };
|
|
162977
|
+
}
|
|
162978
|
+
function resolveTelemetrySession2() {
|
|
162979
|
+
const existing = telemetrySessionSlot2.get();
|
|
162980
|
+
if (existing) {
|
|
162981
|
+
return existing;
|
|
162982
|
+
}
|
|
162983
|
+
const declaredHandle = getConfiguredTelemetrySessionId2();
|
|
162984
|
+
const resolved = declaredHandle ? { id: declaredHandle, source: "declared" } : getInheritedSession2(getProcessEnv22() ?? {}) ?? generateRandomSession2();
|
|
162985
|
+
telemetrySessionSlot2.set(resolved);
|
|
162986
|
+
return resolved;
|
|
162987
|
+
}
|
|
162988
|
+
function getTelemetrySessionSource2() {
|
|
162989
|
+
return resolveTelemetrySession2().source;
|
|
162932
162990
|
}
|
|
162933
162991
|
function getTelemetryOperationId2() {
|
|
162934
162992
|
const existing = telemetryOperationIdSlot2.get();
|
|
@@ -163151,24 +163209,18 @@ class TelemetryService2 {
|
|
|
163151
163209
|
}
|
|
163152
163210
|
enrichPropertiesWithContext(properties, context) {
|
|
163153
163211
|
const globalProperties = getGlobalTelemetryProperties2();
|
|
163154
|
-
const existingSessionId = properties?.[TELEMETRY_SESSION_ID_PROPERTY2] ?? this.defaultProperties?.[TELEMETRY_SESSION_ID_PROPERTY2] ?? globalProperties?.[TELEMETRY_SESSION_ID_PROPERTY2];
|
|
163155
|
-
const sessionId = resolveTelemetrySessionId2(existingSessionId);
|
|
163156
163212
|
const enriched = {
|
|
163157
163213
|
...getExecutionContextTelemetryProperties2(),
|
|
163158
163214
|
...globalProperties,
|
|
163159
163215
|
...this.defaultProperties,
|
|
163160
163216
|
...redactProperties2(properties ?? {}),
|
|
163217
|
+
[TELEMETRY_SESSION_SOURCE_PROPERTY2]: getTelemetrySessionSource2(),
|
|
163161
163218
|
...context ? {
|
|
163162
163219
|
[TELEMETRY_OPERATION_ID_PROPERTY2]: context.operationId,
|
|
163163
163220
|
...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY2]: context.parentId } : {},
|
|
163164
163221
|
[TELEMETRY_SPAN_ID_PROPERTY2]: context.id
|
|
163165
163222
|
} : {}
|
|
163166
163223
|
};
|
|
163167
|
-
if (sessionId === undefined) {
|
|
163168
|
-
delete enriched[TELEMETRY_SESSION_ID_PROPERTY2];
|
|
163169
|
-
} else {
|
|
163170
|
-
enriched[TELEMETRY_SESSION_ID_PROPERTY2] = sessionId;
|
|
163171
|
-
}
|
|
163172
163224
|
return enriched;
|
|
163173
163225
|
}
|
|
163174
163226
|
generateId() {
|
|
@@ -178026,7 +178078,7 @@ var __create2, __getProtoOf2, __defProp3, __getOwnPropNames2, __hasOwnProp2, __t
|
|
|
178026
178078
|
}
|
|
178027
178079
|
return result;
|
|
178028
178080
|
}
|
|
178029
|
-
}, TreeInterpreterInstance2, TreeInterpreter_default2, jsYaml2, loader2, common2, hasRequiredCommon2, exception2, hasRequiredException2, snippet2, hasRequiredSnippet2, type2, hasRequiredType2, schema85, hasRequiredSchema2, str2, hasRequiredStr2, seq2, hasRequiredSeq2, map4, hasRequiredMap2, failsafe2, hasRequiredFailsafe2, _null8, hasRequired_null2, bool2, hasRequiredBool2, int4, hasRequiredInt2, float2, hasRequiredFloat2, json4, hasRequiredJson2, core4, hasRequiredCore2, timestamp2, hasRequiredTimestamp2, merge4, hasRequiredMerge2, binary2, hasRequiredBinary2, omap2, hasRequiredOmap2, pairs2, hasRequiredPairs2, set4, hasRequiredSet2, _default6, hasRequired_default2, hasRequiredLoader2, dumper2, hasRequiredDumper2, hasRequiredJsYaml2, jsYamlExports2, yaml2, Type2, Schema2, FAILSAFE_SCHEMA2, JSON_SCHEMA2, CORE_SCHEMA2, DEFAULT_SCHEMA2, load2, loadAll2, dump2, YAMLException2, types2, safeLoad2, safeLoadAll2, safeDump2, logFilePathSlot2, DEFAULT_LOG_LEVEL2 = 3, SimpleLogger2, loggerSingleton2, logger3, formatSlot2, formatExplicitSlot2, helpRequestedSlot2, filterSlot2, recordedFailureSlot2, AUTH_ERROR_CODES2, VALIDATION_ERROR_CODES2, NETWORK_HTTP_ERROR_CODES2, TIMEOUT_ERROR_CODES2, NETWORK_OS_ERROR_CODES2, TIMEOUT_OS_ERROR_CODES2, TLS_ERROR_CODES22, MISSING_DEPENDENCY_CODES2, INTERNAL_ERROR_NAMES2, CommonTelemetryEvents2, KNOWN_AGENTS2, LOCAL_HOSTS2, authSignalSlot2, isTruthy2 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual2 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES2, TELEMETRY_TRACEPARENT_ENV2 = "TRACEPARENT", TRACEPARENT_PATTERN2, TELEMETRY_SESSION_ID_ENV2 = "UIPATH_SESSION_ID",
|
|
178081
|
+
}, TreeInterpreterInstance2, TreeInterpreter_default2, jsYaml2, loader2, common2, hasRequiredCommon2, exception2, hasRequiredException2, snippet2, hasRequiredSnippet2, type2, hasRequiredType2, schema85, hasRequiredSchema2, str2, hasRequiredStr2, seq2, hasRequiredSeq2, map4, hasRequiredMap2, failsafe2, hasRequiredFailsafe2, _null8, hasRequired_null2, bool2, hasRequiredBool2, int4, hasRequiredInt2, float2, hasRequiredFloat2, json4, hasRequiredJson2, core4, hasRequiredCore2, timestamp2, hasRequiredTimestamp2, merge4, hasRequiredMerge2, binary2, hasRequiredBinary2, omap2, hasRequiredOmap2, pairs2, hasRequiredPairs2, set4, hasRequiredSet2, _default6, hasRequired_default2, hasRequiredLoader2, dumper2, hasRequiredDumper2, hasRequiredJsYaml2, jsYamlExports2, yaml2, Type2, Schema2, FAILSAFE_SCHEMA2, JSON_SCHEMA2, CORE_SCHEMA2, DEFAULT_SCHEMA2, load2, loadAll2, dump2, YAMLException2, types2, safeLoad2, safeLoadAll2, safeDump2, logFilePathSlot2, DEFAULT_LOG_LEVEL2 = 3, SimpleLogger2, loggerSingleton2, logger3, formatSlot2, formatExplicitSlot2, helpRequestedSlot2, filterSlot2, recordedFailureSlot2, AUTH_ERROR_CODES2, VALIDATION_ERROR_CODES2, NETWORK_HTTP_ERROR_CODES2, TIMEOUT_ERROR_CODES2, NETWORK_OS_ERROR_CODES2, TIMEOUT_OS_ERROR_CODES2, TLS_ERROR_CODES22, MISSING_DEPENDENCY_CODES2, INTERNAL_ERROR_NAMES2, CommonTelemetryEvents2, KNOWN_AGENTS2, LOCAL_HOSTS2, authSignalSlot2, isTruthy2 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual2 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES2, TELEMETRY_TRACEPARENT_ENV2 = "TRACEPARENT", TRACEPARENT_PATTERN2, TELEMETRY_SESSION_ID_ENV2 = "UIPATH_SESSION_ID", SESSION_ID_MAX_LENGTH2 = 64, RANDOM_SESSION_ID_LENGTH2 = 32, TELEMETRY_SESSION_SOURCE_PROPERTY2 = "session_id_source", CONTROL_CHARACTERS2, INHERITED_SESSION_SOURCES2, telemetrySessionSlot2, telemetryOperationIdSlot2, telemetryPropsSlot2, REDACTED2 = "[REDACTED]", MAX_VALUE_LENGTH2 = 200, SENSITIVE_NAME_TOKENS2, SENSITIVE_KEY_PREFIXES2, UUID_PATTERN2, EMAIL_PATTERN2, JWT_PATTERN2, LONG_TOKEN_PATTERN2, USER_HOME_PATTERN2, URL_PATTERN2, URL_TRAILING_PUNCT2, TELEMETRY_OPERATION_ID_PROPERTY2 = "uip.trace.operation_id", TELEMETRY_PARENT_ID_PROPERTY2 = "uip.trace.parent_id", TELEMETRY_SPAN_ID_PROPERTY2 = "uip.trace.span_id", providerSlot2, telemetryInstanceSlot2, DEFAULT_AI_CONNECTION_STRING2, _localTelemetryInstance2, telemetry2, CLI_ERROR_CODES2, RETRY_HINTS2, RESULTS2, EXIT_CODES2, FilterEvaluationError2, OutputFormatter2, LEGACY_SKILL_NAMESPACE2 = "uipath:", MAX_SKILL_NAME_LENGTH2 = 80, SKILL_NAME_PATTERN2, SKILL_ATTRIBUTION2, KNOWN_SKILL_NAMES2, COMMAND_ATTRIBUTION2, pollSignalSlot2, cliErrorCodeValues2, retryHintValues2, TELEMETRY_COMMAND_ARG_PREFIX2 = "uip.cmd.arg.", guardInstalledSlot2, savedOriginalsSlot2, DEFAULT_AUTH_TIMEOUT_MS3, GUID_REGEX, modeSlot2, interactiveFlagSlot2, PollOutcome2, REASON_BY_OUTCOME2, TERMINAL_STATUSES2, FAILURE_STATUSES2, previewSlot2, ScreenLogger2, USER_AGENT_HEADER2 = "User-Agent", sdkUserAgentHostToken2, shippedKeysSlot2, factorySlot2, BASE_PATH6, DefaultConfig6, BaseAPI6, ResponseError6, FetchError6, package_default5, SDK_USER_AGENT4, STUDIO_WEB_PROJECT_TYPE_OVERRIDES2, DEFAULT_EXCLUDED_DIR_NAMES2, BASE_PATH22, DefaultConfig22, BaseAPI22, ResponseError22, FetchError22, I18nManager, de, en, es, es_MX, fr, ja, ko, pt, pt_BR, ro, ru, tr, zh_CN, zh_TW, zu, translate, REGISTRY_KEY, _global, toolsFactoryRepository, import_reflect_metadata, import_tsyringe, ServiceTokens, Tokens, service_tokens_ServiceLifetime, SolutionConstants, SolutionContextKeys, SolutionScope, ErrorCodes, BadRequestException, NotFoundException, DisconnectedException, OperationCancelledException, InvalidOperationException2, ArgumentException, JsonSerializerNames, CAMEL_CASE_ENUM_PROPERTIES, SHARED_CORE_ABSTRACTIONS_PASCAL_CASE_PROPERTIES, RESOURCE_BUILDER_PASCAL_CASE_PROPERTIES, PASCAL_CASE_ENUM_PROPERTIES, StronglyConnectedComponent, types_ResourceScope, types_ReplaceOption, REFERENCE_TYPE = "reference", FILE_REFERENCE_TYPE = "fileReference", SECRET_TYPE = "secret", ARRAY_TYPE = "array", FILE_KIND = "file", NAME_PROPERTY = "name", WellKnownProjectType, WellKnownPropertyNames, ExcludedKindsAndTypes, FailOnNameConflictKinds, PACKAGE_NAME_MAX_LENGTH = 100, PACKAGE_NAME_SEPARATION_CHARS = 2, processTypeToPackageTypeMap, REQUEST_HANDLER_TOKEN_PREFIX = "RequestHandler_", COMMAND_HANDLER_TOKEN_PREFIX = "CommandHandler_", RequestHandlerTokens, models_OverwriteType, DebugOverwritesConstants, solutionsSubtypesMap, GUID_REGEX2, ResourceDependencyNotFoundException, FileDependencyNotFoundException, DEFAULT_TIMEOUT_MS2 = 5000, EXCLUDED_RESOURCE_IDENTIFIERS, import_resource_helper_WellKnownPropertyNames, VISIBLE_DEPENDENCIES_TO_DELETE, internal_InternalPageDirection, models_ErrorSeverity, models_ErrorType, models_ResourceAdditionStatus, DEFAULT_PAGE_SIZE2 = 100, SECRET_VALUE_PLACEHOLDER, CaseInsensitiveSet, ArtefactResourceKinds, SpecProperties, models_BindingsResourceType, BindingsKnownKeys, DYNAMIC_BINDINGS_MIN_VERSION, SUPPORTED_TYPES_FOR_OVERRIDES, CUSTOM_BINDING_TO_RESOURCE_KIND_MAPPINGS, WellKnownKinds, TRIGGER_MAPPINGS, DUPLICATE_NAMES_SUPPORTED_KINDS, ResourceCatalogApi, RESOURCE_CATALOG_SCOPE = "RCS.FolderAuthorization", RESOURCE_CATALOG_SERVICE_NAME = "resourcecatalog", FOLDERS_SEARCH_PAGE_SIZE = 100, first_party_service_DeploymentAction, first_party_service_SolutionDeploymentAction, first_party_service_SolutionStatus, first_party_service_QueryOptions, first_party_service_DeploymentResourceValidationErrorLevel, first_party_service_DeploymentResourceValidationErrorKind, first_party_service_DeploymentResourceValidationAction, first_party_service_ContentType, FirstPartyServiceApi, FIRST_PARTY_SERVICE_SCOPE = "AutomationSolutions", FIRST_PARTY_SERVICE_NAME = "automationsolutions", AutomationSolutionsApi, AUTOMATION_SOLUTIONS_SCOPE = "AutomationSolutions", AUTOMATION_SOLUTIONS_SERVICE_NAME = "automationsolutions", WELL_KNOWN_SERVICE_SCOPES, DEFAULT_HTTP_READER_OPTIONS, ORCHESTRATOR_SCOPE = "OrchestratorApiUserAccess", ORCHESTRATOR_SERVICE_NAME = "orchestrator", GATEWAY_HEADERS, WELL_KNOWN_KIND_APP = "app", ResourceKind, metadata_reader_WellKnownPropertyNames, metadata_reader_WellKnownKinds, NON_EDITABLE_PROPERTIES, BINDINGS_RESOLUTION_BATCH_SIZE = 10, solution_builder_DEFAULT_PAGE_SIZE = 100, SolutionBuilder, TranslationConstants, ServiceTranslationsHelper, types_ProjectResourceProvisionType, types_WellKnownProjectType, projectsConfiguration_namespaceObject, data_projectsConfiguration, files_metadata_namespaceObject, translations_de_namespaceObject, translations_en_namespaceObject, translations_es_MX_namespaceObject, translations_es_namespaceObject, translations_fr_namespaceObject, translations_ja_namespaceObject, translations_ko_namespaceObject, translations_pt_BR_namespaceObject, translations_pt_namespaceObject, translations_ro_namespaceObject, translations_ru_namespaceObject, translations_tr_namespaceObject, translations_zh_Hans_namespaceObject, translations_zh_Hant_namespaceObject, embeddedMetadata, embeddedTranslations, EmbeddedFileConstants, AccessProviderErrorCodes, AccessTokenError, SERVICE_PATH_SEGMENTS_TO_SCOPES, logger_LogLevel, ENTRY_POINTS_FILE = "entry-points.json", DEFAULT_CLIENT_ID2 = "36dea5b8-e8bb-423d-8e7b-c808df8f1c00", AUTH_FILE_CONFIG_KEY2, globalSlot3, getAuthFileConfig2 = () => globalSlot3[AUTH_FILE_CONFIG_KEY2] ?? {}, InvalidBaseUrlError2, DEFAULT_SCOPES2, normalizeAndValidateBaseUrl2 = (rawUrl) => {
|
|
178030
178082
|
let baseUrl = rawUrl;
|
|
178031
178083
|
if (baseUrl.endsWith("/identity_/")) {
|
|
178032
178084
|
baseUrl = baseUrl.slice(0, -11);
|
|
@@ -201382,7 +201434,15 @@ ${e3.Data}`);
|
|
|
201382
201434
|
}
|
|
201383
201435
|
];
|
|
201384
201436
|
TRACEPARENT_PATTERN2 = /^00-([0-9a-f]{32})-([0-9a-f]{16})-[0-9a-f]{2}$/;
|
|
201385
|
-
|
|
201437
|
+
CONTROL_CHARACTERS2 = /\p{Cc}/gu;
|
|
201438
|
+
INHERITED_SESSION_SOURCES2 = [
|
|
201439
|
+
{ envVar: "CLAUDE_CODE_SESSION_ID", source: "claude-code" },
|
|
201440
|
+
{ envVar: "CODEX_THREAD_ID", source: "codex" },
|
|
201441
|
+
{ envVar: "ANTIGRAVITY_TRAJECTORY_ID", source: "antigravity" },
|
|
201442
|
+
{ envVar: "TERM_SESSION_ID", source: "terminal" },
|
|
201443
|
+
{ envVar: "WT_SESSION", source: "terminal" }
|
|
201444
|
+
];
|
|
201445
|
+
telemetrySessionSlot2 = singleton3("TelemetrySession");
|
|
201386
201446
|
telemetryOperationIdSlot2 = singleton3("TelemetryOperationId");
|
|
201387
201447
|
telemetryPropsSlot2 = singleton3("TelemetryDefaultProps");
|
|
201388
201448
|
SENSITIVE_NAME_TOKENS2 = new Set([
|
|
@@ -201928,7 +201988,7 @@ ${e3.Data}`);
|
|
|
201928
201988
|
package_default5 = {
|
|
201929
201989
|
name: "@uipath/solution-sdk",
|
|
201930
201990
|
license: "MIT",
|
|
201931
|
-
version: "1.199.0-preview.
|
|
201991
|
+
version: "1.199.0-preview.108",
|
|
201932
201992
|
repository: {
|
|
201933
201993
|
type: "git",
|
|
201934
201994
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -232115,7 +232175,7 @@ var init_package4 = __esm(() => {
|
|
|
232115
232175
|
package_default6 = {
|
|
232116
232176
|
name: "@uipath/flow-tool",
|
|
232117
232177
|
license: "MIT",
|
|
232118
|
-
version: "1.199.0-preview.
|
|
232178
|
+
version: "1.199.0-preview.108",
|
|
232119
232179
|
description: "Create, debug, and run UiPath Flow projects and jobs.",
|
|
232120
232180
|
private: false,
|
|
232121
232181
|
repository: {
|
|
@@ -328942,7 +329002,7 @@ var package_default7;
|
|
|
328942
329002
|
var init_package5 = __esm(() => {
|
|
328943
329003
|
package_default7 = {
|
|
328944
329004
|
name: "@uipath/packager-tool-flow",
|
|
328945
|
-
version: "1.199.0-preview.
|
|
329005
|
+
version: "1.199.0-preview.108",
|
|
328946
329006
|
description: "UiPath Flow tool implementation",
|
|
328947
329007
|
type: "module",
|
|
328948
329008
|
exports: {
|
|
@@ -355914,14 +355974,42 @@ function normalizeSessionId3(value) {
|
|
|
355914
355974
|
if (typeof value !== "string" && typeof value !== "number" && typeof value !== "boolean") {
|
|
355915
355975
|
return;
|
|
355916
355976
|
}
|
|
355917
|
-
const
|
|
355918
|
-
return
|
|
355977
|
+
const cleaned = String(value).replace(CONTROL_CHARACTERS3, "").trim().slice(0, SESSION_ID_MAX_LENGTH3);
|
|
355978
|
+
return cleaned || undefined;
|
|
355919
355979
|
}
|
|
355920
355980
|
function getConfiguredTelemetrySessionId3() {
|
|
355921
355981
|
return normalizeSessionId3(getProcessEnv23()?.[TELEMETRY_SESSION_ID_ENV3]);
|
|
355922
355982
|
}
|
|
355923
|
-
function
|
|
355924
|
-
|
|
355983
|
+
function getInheritedSession3(env) {
|
|
355984
|
+
for (const candidate of INHERITED_SESSION_SOURCES3) {
|
|
355985
|
+
const handle = normalizeSessionId3(env[candidate.envVar]);
|
|
355986
|
+
if (handle) {
|
|
355987
|
+
return { id: handle, source: candidate.source };
|
|
355988
|
+
}
|
|
355989
|
+
}
|
|
355990
|
+
return;
|
|
355991
|
+
}
|
|
355992
|
+
function generateRandomSession3() {
|
|
355993
|
+
const bytes = new Uint8Array(RANDOM_SESSION_ID_LENGTH3 / 2);
|
|
355994
|
+
crypto.getRandomValues(bytes);
|
|
355995
|
+
let hex4 = "";
|
|
355996
|
+
for (const byte of bytes) {
|
|
355997
|
+
hex4 += byte.toString(16).padStart(2, "0");
|
|
355998
|
+
}
|
|
355999
|
+
return { id: hex4, source: "random" };
|
|
356000
|
+
}
|
|
356001
|
+
function resolveTelemetrySession3() {
|
|
356002
|
+
const existing = telemetrySessionSlot3.get();
|
|
356003
|
+
if (existing) {
|
|
356004
|
+
return existing;
|
|
356005
|
+
}
|
|
356006
|
+
const declaredHandle = getConfiguredTelemetrySessionId3();
|
|
356007
|
+
const resolved = declaredHandle ? { id: declaredHandle, source: "declared" } : getInheritedSession3(getProcessEnv23() ?? {}) ?? generateRandomSession3();
|
|
356008
|
+
telemetrySessionSlot3.set(resolved);
|
|
356009
|
+
return resolved;
|
|
356010
|
+
}
|
|
356011
|
+
function getTelemetrySessionSource3() {
|
|
356012
|
+
return resolveTelemetrySession3().source;
|
|
355925
356013
|
}
|
|
355926
356014
|
function getTelemetryOperationId3() {
|
|
355927
356015
|
const existing = telemetryOperationIdSlot3.get();
|
|
@@ -356144,24 +356232,18 @@ class TelemetryService3 {
|
|
|
356144
356232
|
}
|
|
356145
356233
|
enrichPropertiesWithContext(properties, context) {
|
|
356146
356234
|
const globalProperties = getGlobalTelemetryProperties3();
|
|
356147
|
-
const existingSessionId = properties?.[TELEMETRY_SESSION_ID_PROPERTY3] ?? this.defaultProperties?.[TELEMETRY_SESSION_ID_PROPERTY3] ?? globalProperties?.[TELEMETRY_SESSION_ID_PROPERTY3];
|
|
356148
|
-
const sessionId = resolveTelemetrySessionId3(existingSessionId);
|
|
356149
356235
|
const enriched = {
|
|
356150
356236
|
...getExecutionContextTelemetryProperties3(),
|
|
356151
356237
|
...globalProperties,
|
|
356152
356238
|
...this.defaultProperties,
|
|
356153
356239
|
...redactProperties3(properties ?? {}),
|
|
356240
|
+
[TELEMETRY_SESSION_SOURCE_PROPERTY3]: getTelemetrySessionSource3(),
|
|
356154
356241
|
...context ? {
|
|
356155
356242
|
[TELEMETRY_OPERATION_ID_PROPERTY3]: context.operationId,
|
|
356156
356243
|
...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY3]: context.parentId } : {},
|
|
356157
356244
|
[TELEMETRY_SPAN_ID_PROPERTY3]: context.id
|
|
356158
356245
|
} : {}
|
|
356159
356246
|
};
|
|
356160
|
-
if (sessionId === undefined) {
|
|
356161
|
-
delete enriched[TELEMETRY_SESSION_ID_PROPERTY3];
|
|
356162
|
-
} else {
|
|
356163
|
-
enriched[TELEMETRY_SESSION_ID_PROPERTY3] = sessionId;
|
|
356164
|
-
}
|
|
356165
356247
|
return enriched;
|
|
356166
356248
|
}
|
|
356167
356249
|
generateId() {
|
|
@@ -360276,7 +360358,7 @@ var de_default10, en5, es_default10, es_MX_default6, fr_default10, ja_default10,
|
|
|
360276
360358
|
}
|
|
360277
360359
|
return result;
|
|
360278
360360
|
}
|
|
360279
|
-
}, TreeInterpreterInstance3, TreeInterpreter_default3, jsYaml3, loader3, common3, hasRequiredCommon3, exception3, hasRequiredException3, snippet3, hasRequiredSnippet3, type3, hasRequiredType3, schema88, hasRequiredSchema3, str3, hasRequiredStr3, seq3, hasRequiredSeq3, map8, hasRequiredMap3, failsafe3, hasRequiredFailsafe3, _null13, hasRequired_null3, bool3, hasRequiredBool3, int8, hasRequiredInt3, float3, hasRequiredFloat3, json7, hasRequiredJson3, core6, hasRequiredCore3, timestamp3, hasRequiredTimestamp3, merge7, hasRequiredMerge3, binary3, hasRequiredBinary3, omap3, hasRequiredOmap3, pairs3, hasRequiredPairs3, set9, hasRequiredSet3, _default10, hasRequired_default3, hasRequiredLoader3, dumper3, hasRequiredDumper3, hasRequiredJsYaml3, jsYamlExports3, yaml3, Type3, Schema3, FAILSAFE_SCHEMA3, JSON_SCHEMA3, CORE_SCHEMA3, DEFAULT_SCHEMA3, load3, loadAll3, dump3, YAMLException3, types6, safeLoad3, safeLoadAll3, safeDump3, logFilePathSlot3, LogLevel3, DEFAULT_LOG_LEVEL3 = 3, SimpleLogger3, loggerSingleton3, logger4, formatSlot3, formatExplicitSlot3, helpRequestedSlot3, filterSlot3, recordedFailureSlot3, AUTH_ERROR_CODES3, VALIDATION_ERROR_CODES3, NETWORK_HTTP_ERROR_CODES3, TIMEOUT_ERROR_CODES3, NETWORK_OS_ERROR_CODES3, TIMEOUT_OS_ERROR_CODES3, TLS_ERROR_CODES23, MISSING_DEPENDENCY_CODES3, INTERNAL_ERROR_NAMES3, CommonTelemetryEvents3, KNOWN_AGENTS3, LOCAL_HOSTS3, authSignalSlot3, isTruthy3 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual3 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES3, TELEMETRY_TRACEPARENT_ENV3 = "TRACEPARENT", TRACEPARENT_PATTERN3, TELEMETRY_SESSION_ID_ENV3 = "UIPATH_SESSION_ID",
|
|
360361
|
+
}, TreeInterpreterInstance3, TreeInterpreter_default3, jsYaml3, loader3, common3, hasRequiredCommon3, exception3, hasRequiredException3, snippet3, hasRequiredSnippet3, type3, hasRequiredType3, schema88, hasRequiredSchema3, str3, hasRequiredStr3, seq3, hasRequiredSeq3, map8, hasRequiredMap3, failsafe3, hasRequiredFailsafe3, _null13, hasRequired_null3, bool3, hasRequiredBool3, int8, hasRequiredInt3, float3, hasRequiredFloat3, json7, hasRequiredJson3, core6, hasRequiredCore3, timestamp3, hasRequiredTimestamp3, merge7, hasRequiredMerge3, binary3, hasRequiredBinary3, omap3, hasRequiredOmap3, pairs3, hasRequiredPairs3, set9, hasRequiredSet3, _default10, hasRequired_default3, hasRequiredLoader3, dumper3, hasRequiredDumper3, hasRequiredJsYaml3, jsYamlExports3, yaml3, Type3, Schema3, FAILSAFE_SCHEMA3, JSON_SCHEMA3, CORE_SCHEMA3, DEFAULT_SCHEMA3, load3, loadAll3, dump3, YAMLException3, types6, safeLoad3, safeLoadAll3, safeDump3, logFilePathSlot3, LogLevel3, DEFAULT_LOG_LEVEL3 = 3, SimpleLogger3, loggerSingleton3, logger4, formatSlot3, formatExplicitSlot3, helpRequestedSlot3, filterSlot3, recordedFailureSlot3, AUTH_ERROR_CODES3, VALIDATION_ERROR_CODES3, NETWORK_HTTP_ERROR_CODES3, TIMEOUT_ERROR_CODES3, NETWORK_OS_ERROR_CODES3, TIMEOUT_OS_ERROR_CODES3, TLS_ERROR_CODES23, MISSING_DEPENDENCY_CODES3, INTERNAL_ERROR_NAMES3, CommonTelemetryEvents3, KNOWN_AGENTS3, LOCAL_HOSTS3, authSignalSlot3, isTruthy3 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual3 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES3, TELEMETRY_TRACEPARENT_ENV3 = "TRACEPARENT", TRACEPARENT_PATTERN3, TELEMETRY_SESSION_ID_ENV3 = "UIPATH_SESSION_ID", SESSION_ID_MAX_LENGTH3 = 64, RANDOM_SESSION_ID_LENGTH3 = 32, TELEMETRY_SESSION_SOURCE_PROPERTY3 = "session_id_source", CONTROL_CHARACTERS3, INHERITED_SESSION_SOURCES3, telemetrySessionSlot3, telemetryOperationIdSlot3, telemetryPropsSlot3, REDACTED3 = "[REDACTED]", MAX_VALUE_LENGTH3 = 200, SENSITIVE_NAME_TOKENS3, SENSITIVE_KEY_PREFIXES3, UUID_PATTERN4, EMAIL_PATTERN3, JWT_PATTERN3, LONG_TOKEN_PATTERN3, USER_HOME_PATTERN3, URL_PATTERN3, URL_TRAILING_PUNCT3, TELEMETRY_OPERATION_ID_PROPERTY3 = "uip.trace.operation_id", TELEMETRY_PARENT_ID_PROPERTY3 = "uip.trace.parent_id", TELEMETRY_SPAN_ID_PROPERTY3 = "uip.trace.span_id", providerSlot3, telemetryInstanceSlot3, DEFAULT_AI_CONNECTION_STRING3, _localTelemetryInstance3, telemetry3, CLI_ERROR_CODES3, RETRY_HINTS3, RESULTS3, EXIT_CODES3, FilterEvaluationError3, OutputFormatter3, LEGACY_SKILL_NAMESPACE3 = "uipath:", MAX_SKILL_NAME_LENGTH3 = 80, SKILL_NAME_PATTERN3, SKILL_ATTRIBUTION3, KNOWN_SKILL_NAMES3, COMMAND_ATTRIBUTION3, pollSignalSlot3, cliErrorCodeValues3, retryHintValues3, TELEMETRY_COMMAND_ARG_PREFIX3 = "uip.cmd.arg.", guardInstalledSlot3, savedOriginalsSlot3, DEFAULT_AUTH_TIMEOUT_MS4, modeSlot3, interactiveFlagSlot3, PollOutcome3, REASON_BY_OUTCOME3, TERMINAL_STATUSES4, FAILURE_STATUSES3, previewSlot3, ScreenLogger3, sdkUserAgentHostToken3, shippedKeysSlot3, factorySlot3, globalLogHandler = (logMessage) => {
|
|
360280
360362
|
const formattedMessage = logMessage.toFormattedString();
|
|
360281
360363
|
switch (logMessage.logLevel) {
|
|
360282
360364
|
case LogLevel2.Debug:
|
|
@@ -364229,7 +364311,15 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
364229
364311
|
}
|
|
364230
364312
|
];
|
|
364231
364313
|
TRACEPARENT_PATTERN3 = /^00-([0-9a-f]{32})-([0-9a-f]{16})-[0-9a-f]{2}$/;
|
|
364232
|
-
|
|
364314
|
+
CONTROL_CHARACTERS3 = /\p{Cc}/gu;
|
|
364315
|
+
INHERITED_SESSION_SOURCES3 = [
|
|
364316
|
+
{ envVar: "CLAUDE_CODE_SESSION_ID", source: "claude-code" },
|
|
364317
|
+
{ envVar: "CODEX_THREAD_ID", source: "codex" },
|
|
364318
|
+
{ envVar: "ANTIGRAVITY_TRAJECTORY_ID", source: "antigravity" },
|
|
364319
|
+
{ envVar: "TERM_SESSION_ID", source: "terminal" },
|
|
364320
|
+
{ envVar: "WT_SESSION", source: "terminal" }
|
|
364321
|
+
];
|
|
364322
|
+
telemetrySessionSlot3 = singleton5("TelemetrySession");
|
|
364233
364323
|
telemetryOperationIdSlot3 = singleton5("TelemetryOperationId");
|
|
364234
364324
|
telemetryPropsSlot3 = singleton5("TelemetryDefaultProps");
|
|
364235
364325
|
SENSITIVE_NAME_TOKENS3 = new Set([
|
|
@@ -364753,7 +364843,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
364753
364843
|
package_default8 = {
|
|
364754
364844
|
name: "@uipath/project-packager",
|
|
364755
364845
|
license: "MIT",
|
|
364756
|
-
version: "1.199.0-preview.
|
|
364846
|
+
version: "1.199.0-preview.108",
|
|
364757
364847
|
description: "UiPath Project Packager - core library for packing individual UiPath projects",
|
|
364758
364848
|
type: "module",
|
|
364759
364849
|
main: "./dist/index.js",
|
|
@@ -460487,7 +460577,7 @@ var init_package6 = __esm(() => {
|
|
|
460487
460577
|
package_default9 = {
|
|
460488
460578
|
name: "@uipath/agent-sdk",
|
|
460489
460579
|
license: "MIT",
|
|
460490
|
-
version: "1.199.0-preview.
|
|
460580
|
+
version: "1.199.0-preview.108",
|
|
460491
460581
|
description: "SDK for the UiPath Agent Runtime API — evaluation execution and debug sessions.",
|
|
460492
460582
|
repository: {
|
|
460493
460583
|
type: "git",
|
|
@@ -465848,14 +465938,42 @@ function normalizeSessionId4(value) {
|
|
|
465848
465938
|
if (typeof value !== "string" && typeof value !== "number" && typeof value !== "boolean") {
|
|
465849
465939
|
return;
|
|
465850
465940
|
}
|
|
465851
|
-
const
|
|
465852
|
-
return
|
|
465941
|
+
const cleaned = String(value).replace(CONTROL_CHARACTERS4, "").trim().slice(0, SESSION_ID_MAX_LENGTH4);
|
|
465942
|
+
return cleaned || undefined;
|
|
465853
465943
|
}
|
|
465854
465944
|
function getConfiguredTelemetrySessionId4() {
|
|
465855
465945
|
return normalizeSessionId4(getProcessEnv24()?.[TELEMETRY_SESSION_ID_ENV4]);
|
|
465856
465946
|
}
|
|
465857
|
-
function
|
|
465858
|
-
|
|
465947
|
+
function getInheritedSession4(env) {
|
|
465948
|
+
for (const candidate of INHERITED_SESSION_SOURCES4) {
|
|
465949
|
+
const handle = normalizeSessionId4(env[candidate.envVar]);
|
|
465950
|
+
if (handle) {
|
|
465951
|
+
return { id: handle, source: candidate.source };
|
|
465952
|
+
}
|
|
465953
|
+
}
|
|
465954
|
+
return;
|
|
465955
|
+
}
|
|
465956
|
+
function generateRandomSession4() {
|
|
465957
|
+
const bytes = new Uint8Array(RANDOM_SESSION_ID_LENGTH4 / 2);
|
|
465958
|
+
crypto.getRandomValues(bytes);
|
|
465959
|
+
let hex4 = "";
|
|
465960
|
+
for (const byte of bytes) {
|
|
465961
|
+
hex4 += byte.toString(16).padStart(2, "0");
|
|
465962
|
+
}
|
|
465963
|
+
return { id: hex4, source: "random" };
|
|
465964
|
+
}
|
|
465965
|
+
function resolveTelemetrySession4() {
|
|
465966
|
+
const existing = telemetrySessionSlot4.get();
|
|
465967
|
+
if (existing) {
|
|
465968
|
+
return existing;
|
|
465969
|
+
}
|
|
465970
|
+
const declaredHandle = getConfiguredTelemetrySessionId4();
|
|
465971
|
+
const resolved = declaredHandle ? { id: declaredHandle, source: "declared" } : getInheritedSession4(getProcessEnv24() ?? {}) ?? generateRandomSession4();
|
|
465972
|
+
telemetrySessionSlot4.set(resolved);
|
|
465973
|
+
return resolved;
|
|
465974
|
+
}
|
|
465975
|
+
function getTelemetrySessionSource4() {
|
|
465976
|
+
return resolveTelemetrySession4().source;
|
|
465859
465977
|
}
|
|
465860
465978
|
function getTelemetryOperationId4() {
|
|
465861
465979
|
const existing = telemetryOperationIdSlot4.get();
|
|
@@ -466078,24 +466196,18 @@ class TelemetryService4 {
|
|
|
466078
466196
|
}
|
|
466079
466197
|
enrichPropertiesWithContext(properties, context) {
|
|
466080
466198
|
const globalProperties = getGlobalTelemetryProperties4();
|
|
466081
|
-
const existingSessionId = properties?.[TELEMETRY_SESSION_ID_PROPERTY4] ?? this.defaultProperties?.[TELEMETRY_SESSION_ID_PROPERTY4] ?? globalProperties?.[TELEMETRY_SESSION_ID_PROPERTY4];
|
|
466082
|
-
const sessionId = resolveTelemetrySessionId4(existingSessionId);
|
|
466083
466199
|
const enriched = {
|
|
466084
466200
|
...getExecutionContextTelemetryProperties4(),
|
|
466085
466201
|
...globalProperties,
|
|
466086
466202
|
...this.defaultProperties,
|
|
466087
466203
|
...redactProperties4(properties ?? {}),
|
|
466204
|
+
[TELEMETRY_SESSION_SOURCE_PROPERTY4]: getTelemetrySessionSource4(),
|
|
466088
466205
|
...context ? {
|
|
466089
466206
|
[TELEMETRY_OPERATION_ID_PROPERTY4]: context.operationId,
|
|
466090
466207
|
...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY4]: context.parentId } : {},
|
|
466091
466208
|
[TELEMETRY_SPAN_ID_PROPERTY4]: context.id
|
|
466092
466209
|
} : {}
|
|
466093
466210
|
};
|
|
466094
|
-
if (sessionId === undefined) {
|
|
466095
|
-
delete enriched[TELEMETRY_SESSION_ID_PROPERTY4];
|
|
466096
|
-
} else {
|
|
466097
|
-
enriched[TELEMETRY_SESSION_ID_PROPERTY4] = sessionId;
|
|
466098
|
-
}
|
|
466099
466211
|
return enriched;
|
|
466100
466212
|
}
|
|
466101
466213
|
generateId() {
|
|
@@ -492063,14 +492175,42 @@ function normalizeSessionId22(value) {
|
|
|
492063
492175
|
if (typeof value !== "string" && typeof value !== "number" && typeof value !== "boolean") {
|
|
492064
492176
|
return;
|
|
492065
492177
|
}
|
|
492066
|
-
const
|
|
492067
|
-
return
|
|
492178
|
+
const cleaned = String(value).replace(CONTROL_CHARACTERS22, "").trim().slice(0, SESSION_ID_MAX_LENGTH22);
|
|
492179
|
+
return cleaned || undefined;
|
|
492068
492180
|
}
|
|
492069
492181
|
function getConfiguredTelemetrySessionId22() {
|
|
492070
492182
|
return normalizeSessionId22(getProcessEnv222()?.[TELEMETRY_SESSION_ID_ENV22]);
|
|
492071
492183
|
}
|
|
492072
|
-
function
|
|
492073
|
-
|
|
492184
|
+
function getInheritedSession22(env) {
|
|
492185
|
+
for (const candidate of INHERITED_SESSION_SOURCES22) {
|
|
492186
|
+
const handle = normalizeSessionId22(env[candidate.envVar]);
|
|
492187
|
+
if (handle) {
|
|
492188
|
+
return { id: handle, source: candidate.source };
|
|
492189
|
+
}
|
|
492190
|
+
}
|
|
492191
|
+
return;
|
|
492192
|
+
}
|
|
492193
|
+
function generateRandomSession22() {
|
|
492194
|
+
const bytes = new Uint8Array(RANDOM_SESSION_ID_LENGTH22 / 2);
|
|
492195
|
+
crypto.getRandomValues(bytes);
|
|
492196
|
+
let hex33 = "";
|
|
492197
|
+
for (const byte of bytes) {
|
|
492198
|
+
hex33 += byte.toString(16).padStart(2, "0");
|
|
492199
|
+
}
|
|
492200
|
+
return { id: hex33, source: "random" };
|
|
492201
|
+
}
|
|
492202
|
+
function resolveTelemetrySession22() {
|
|
492203
|
+
const existing = telemetrySessionSlot22.get();
|
|
492204
|
+
if (existing) {
|
|
492205
|
+
return existing;
|
|
492206
|
+
}
|
|
492207
|
+
const declaredHandle = getConfiguredTelemetrySessionId22();
|
|
492208
|
+
const resolved = declaredHandle ? { id: declaredHandle, source: "declared" } : getInheritedSession22(getProcessEnv222() ?? {}) ?? generateRandomSession22();
|
|
492209
|
+
telemetrySessionSlot22.set(resolved);
|
|
492210
|
+
return resolved;
|
|
492211
|
+
}
|
|
492212
|
+
function getTelemetrySessionSource22() {
|
|
492213
|
+
return resolveTelemetrySession22().source;
|
|
492074
492214
|
}
|
|
492075
492215
|
function getTelemetryOperationId22() {
|
|
492076
492216
|
const existing = telemetryOperationIdSlot22.get();
|
|
@@ -492293,24 +492433,18 @@ class TelemetryService22 {
|
|
|
492293
492433
|
}
|
|
492294
492434
|
enrichPropertiesWithContext(properties, context) {
|
|
492295
492435
|
const globalProperties = getGlobalTelemetryProperties22();
|
|
492296
|
-
const existingSessionId = properties?.[TELEMETRY_SESSION_ID_PROPERTY22] ?? this.defaultProperties?.[TELEMETRY_SESSION_ID_PROPERTY22] ?? globalProperties?.[TELEMETRY_SESSION_ID_PROPERTY22];
|
|
492297
|
-
const sessionId = resolveTelemetrySessionId22(existingSessionId);
|
|
492298
492436
|
const enriched = {
|
|
492299
492437
|
...getExecutionContextTelemetryProperties22(),
|
|
492300
492438
|
...globalProperties,
|
|
492301
492439
|
...this.defaultProperties,
|
|
492302
492440
|
...redactProperties22(properties ?? {}),
|
|
492441
|
+
[TELEMETRY_SESSION_SOURCE_PROPERTY22]: getTelemetrySessionSource22(),
|
|
492303
492442
|
...context ? {
|
|
492304
492443
|
[TELEMETRY_OPERATION_ID_PROPERTY22]: context.operationId,
|
|
492305
492444
|
...context.parentId !== undefined ? { [TELEMETRY_PARENT_ID_PROPERTY22]: context.parentId } : {},
|
|
492306
492445
|
[TELEMETRY_SPAN_ID_PROPERTY22]: context.id
|
|
492307
492446
|
} : {}
|
|
492308
492447
|
};
|
|
492309
|
-
if (sessionId === undefined) {
|
|
492310
|
-
delete enriched[TELEMETRY_SESSION_ID_PROPERTY22];
|
|
492311
|
-
} else {
|
|
492312
|
-
enriched[TELEMETRY_SESSION_ID_PROPERTY22] = sessionId;
|
|
492313
|
-
}
|
|
492314
492448
|
return enriched;
|
|
492315
492449
|
}
|
|
492316
492450
|
generateId() {
|
|
@@ -513801,7 +513935,7 @@ return {
|
|
|
513801
513935
|
}
|
|
513802
513936
|
return result;
|
|
513803
513937
|
}
|
|
513804
|
-
}, TreeInterpreterInstance4, TreeInterpreter_default4, jsYaml4, loader4, common4, hasRequiredCommon4, exception4, hasRequiredException4, snippet4, hasRequiredSnippet4, type4, hasRequiredType4, schema89, hasRequiredSchema4, str4, hasRequiredStr4, seq4, hasRequiredSeq4, map9, hasRequiredMap4, failsafe4, hasRequiredFailsafe4, _null14, hasRequired_null4, bool4, hasRequiredBool4, int9, hasRequiredInt4, float4, hasRequiredFloat4, json8, hasRequiredJson4, core7, hasRequiredCore4, timestamp4, hasRequiredTimestamp4, merge8, hasRequiredMerge4, binary4, hasRequiredBinary4, omap4, hasRequiredOmap4, pairs4, hasRequiredPairs4, set10, hasRequiredSet4, _default11, hasRequired_default4, hasRequiredLoader4, dumper4, hasRequiredDumper4, hasRequiredJsYaml4, jsYamlExports4, yaml4, Type4, Schema4, FAILSAFE_SCHEMA4, JSON_SCHEMA4, CORE_SCHEMA4, DEFAULT_SCHEMA4, load4, loadAll4, dump4, YAMLException4, types7, safeLoad4, safeLoadAll4, safeDump4, logFilePathSlot4, DEFAULT_LOG_LEVEL4 = 3, SimpleLogger4, loggerSingleton4, logger5, formatSlot4, formatExplicitSlot4, helpRequestedSlot4, filterSlot4, recordedFailureSlot4, AUTH_ERROR_CODES4, VALIDATION_ERROR_CODES4, NETWORK_HTTP_ERROR_CODES4, TIMEOUT_ERROR_CODES4, NETWORK_OS_ERROR_CODES4, TIMEOUT_OS_ERROR_CODES4, TLS_ERROR_CODES24, MISSING_DEPENDENCY_CODES4, INTERNAL_ERROR_NAMES4, CommonTelemetryEvents4, KNOWN_AGENTS4, LOCAL_HOSTS4, authSignalSlot4, isTruthy4 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual4 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES4, TELEMETRY_TRACEPARENT_ENV4 = "TRACEPARENT", TRACEPARENT_PATTERN4, TELEMETRY_SESSION_ID_ENV4 = "UIPATH_SESSION_ID",
|
|
513938
|
+
}, TreeInterpreterInstance4, TreeInterpreter_default4, jsYaml4, loader4, common4, hasRequiredCommon4, exception4, hasRequiredException4, snippet4, hasRequiredSnippet4, type4, hasRequiredType4, schema89, hasRequiredSchema4, str4, hasRequiredStr4, seq4, hasRequiredSeq4, map9, hasRequiredMap4, failsafe4, hasRequiredFailsafe4, _null14, hasRequired_null4, bool4, hasRequiredBool4, int9, hasRequiredInt4, float4, hasRequiredFloat4, json8, hasRequiredJson4, core7, hasRequiredCore4, timestamp4, hasRequiredTimestamp4, merge8, hasRequiredMerge4, binary4, hasRequiredBinary4, omap4, hasRequiredOmap4, pairs4, hasRequiredPairs4, set10, hasRequiredSet4, _default11, hasRequired_default4, hasRequiredLoader4, dumper4, hasRequiredDumper4, hasRequiredJsYaml4, jsYamlExports4, yaml4, Type4, Schema4, FAILSAFE_SCHEMA4, JSON_SCHEMA4, CORE_SCHEMA4, DEFAULT_SCHEMA4, load4, loadAll4, dump4, YAMLException4, types7, safeLoad4, safeLoadAll4, safeDump4, logFilePathSlot4, DEFAULT_LOG_LEVEL4 = 3, SimpleLogger4, loggerSingleton4, logger5, formatSlot4, formatExplicitSlot4, helpRequestedSlot4, filterSlot4, recordedFailureSlot4, AUTH_ERROR_CODES4, VALIDATION_ERROR_CODES4, NETWORK_HTTP_ERROR_CODES4, TIMEOUT_ERROR_CODES4, NETWORK_OS_ERROR_CODES4, TIMEOUT_OS_ERROR_CODES4, TLS_ERROR_CODES24, MISSING_DEPENDENCY_CODES4, INTERNAL_ERROR_NAMES4, CommonTelemetryEvents4, KNOWN_AGENTS4, LOCAL_HOSTS4, authSignalSlot4, isTruthy4 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual4 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES4, TELEMETRY_TRACEPARENT_ENV4 = "TRACEPARENT", TRACEPARENT_PATTERN4, TELEMETRY_SESSION_ID_ENV4 = "UIPATH_SESSION_ID", SESSION_ID_MAX_LENGTH4 = 64, RANDOM_SESSION_ID_LENGTH4 = 32, TELEMETRY_SESSION_SOURCE_PROPERTY4 = "session_id_source", CONTROL_CHARACTERS4, INHERITED_SESSION_SOURCES4, telemetrySessionSlot4, telemetryOperationIdSlot4, telemetryPropsSlot4, REDACTED4 = "[REDACTED]", MAX_VALUE_LENGTH4 = 200, SENSITIVE_NAME_TOKENS4, SENSITIVE_KEY_PREFIXES4, UUID_PATTERN5, EMAIL_PATTERN4, JWT_PATTERN4, LONG_TOKEN_PATTERN4, USER_HOME_PATTERN4, URL_PATTERN4, URL_TRAILING_PUNCT4, TELEMETRY_OPERATION_ID_PROPERTY4 = "uip.trace.operation_id", TELEMETRY_PARENT_ID_PROPERTY4 = "uip.trace.parent_id", TELEMETRY_SPAN_ID_PROPERTY4 = "uip.trace.span_id", providerSlot4, telemetryInstanceSlot4, DEFAULT_AI_CONNECTION_STRING4, _localTelemetryInstance4, telemetry4, CLI_ERROR_CODES4, RETRY_HINTS4, RESULTS4, EXIT_CODES4, FilterEvaluationError4, OutputFormatter4, LEGACY_SKILL_NAMESPACE4 = "uipath:", MAX_SKILL_NAME_LENGTH4 = 80, SKILL_NAME_PATTERN4, SKILL_ATTRIBUTION4, KNOWN_SKILL_NAMES4, COMMAND_ATTRIBUTION4, pollSignalSlot4, cliErrorCodeValues4, retryHintValues4, TELEMETRY_COMMAND_ARG_PREFIX4 = "uip.cmd.arg.", processContext2, guardInstalledSlot4, savedOriginalsSlot4, DEFAULT_PAGE_SIZE3 = 50, DEFAULT_AUTH_TIMEOUT_MS5, GENERIC2 = "Check authentication and parameters", modeSlot4, interactiveFlagSlot4, TENANT_SWITCH_COMMAND2 = "uip login tenant set <tenant>", PollOutcome4, REASON_BY_OUTCOME4, TERMINAL_STATUSES6, FAILURE_STATUSES4, previewSlot4, ScreenLogger4, USER_AGENT_HEADER4 = "User-Agent", sdkUserAgentHostToken4, shippedKeysSlot4, factorySlot4, VALID_TASK_ENTRY_RULE_TYPES, VALID_STAGE_ENTRY_RULE_TYPES, VALID_STAGE_COMPLETION_RULE_TYPES, VALID_STAGE_EXIT_RULE_TYPES, VALID_CASE_COMPLETION_RULE_TYPES, VALID_CASE_EXIT_RULE_TYPES, DEFAULT_TRIGGER_ID = "trigger_1", DEFAULT_TRIGGER_LABEL = "Trigger 1", ALPHANUMERIC = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", getRandomBytes = (n2) => globalThis.crypto.getRandomValues(new Uint8Array(n2)), CASE_EXIT_CONDITIONS_ADD_EXAMPLES, CASE_EXIT_CONDITIONS_EDIT_EXAMPLES, CASE_EXIT_CONDITIONS_GET_EXAMPLES, CASE_EXIT_CONDITIONS_REMOVE_EXAMPLES, registerCaseExitConditionsCommand = (program22) => {
|
|
513805
513939
|
const caseExitConditions = program22.command("case-exit-conditions").description("Manage exit conditions on a case within a case management definition JSON file");
|
|
513806
513940
|
caseExitConditions.command("add").description("Add an exit condition to a case").argument("<file>", "Path to the case management JSON file").option("-d, --display-name <name>", "Display name for the condition").option("--marks-case-complete <bool>", "Whether this condition marks the case complete (true or false)").option("--rule-type <type>", `Initial rule type: For completion: ${VALID_CASE_COMPLETION_RULE_TYPES.join(", ")}, For exit: ${VALID_CASE_EXIT_RULE_TYPES.join(", ")}`).option("--condition-expression <expr>", "Condition expression for the initial rule").option("--selected-stage-id <id>", "Stage ID for selected-stage-* initial rules").examples(CASE_EXIT_CONDITIONS_ADD_EXAMPLES).trackedAction(processContext2, async (file5, options) => {
|
|
513807
513941
|
if (options.ruleType !== undefined && (options.marksCaseComplete === "false" || options.marksCaseComplete === undefined) && !VALID_CASE_EXIT_RULE_TYPES.includes(options.ruleType)) {
|
|
@@ -529416,7 +529550,7 @@ return {
|
|
|
529416
529550
|
}
|
|
529417
529551
|
return result;
|
|
529418
529552
|
}
|
|
529419
|
-
}, TreeInterpreterInstance22, TreeInterpreter_default22, jsYaml22, loader22, common22, hasRequiredCommon22, exception22, hasRequiredException22, snippet22, hasRequiredSnippet22, type22, hasRequiredType22, schema852, hasRequiredSchema22, str22, hasRequiredStr22, seq22, hasRequiredSeq22, map42, hasRequiredMap22, failsafe22, hasRequiredFailsafe22, _null82, hasRequired_null22, bool22, hasRequiredBool22, int42, hasRequiredInt22, float22, hasRequiredFloat22, json42, hasRequiredJson22, core42, hasRequiredCore22, timestamp22, hasRequiredTimestamp22, merge42, hasRequiredMerge22, binary22, hasRequiredBinary22, omap22, hasRequiredOmap22, pairs22, hasRequiredPairs22, set42, hasRequiredSet22, _default62, hasRequired_default22, hasRequiredLoader22, dumper22, hasRequiredDumper22, hasRequiredJsYaml22, jsYamlExports22, yaml22, Type22, Schema22, FAILSAFE_SCHEMA22, JSON_SCHEMA22, CORE_SCHEMA22, DEFAULT_SCHEMA22, load22, loadAll22, dump22, YAMLException22, types22, safeLoad22, safeLoadAll22, safeDump22, logFilePathSlot22, DEFAULT_LOG_LEVEL22 = 3, SimpleLogger22, loggerSingleton22, logger32, formatSlot22, formatExplicitSlot22, helpRequestedSlot22, filterSlot22, recordedFailureSlot22, AUTH_ERROR_CODES22, VALIDATION_ERROR_CODES22, NETWORK_HTTP_ERROR_CODES22, TIMEOUT_ERROR_CODES22, NETWORK_OS_ERROR_CODES22, TIMEOUT_OS_ERROR_CODES22, TLS_ERROR_CODES222, MISSING_DEPENDENCY_CODES22, INTERNAL_ERROR_NAMES22, CommonTelemetryEvents22, KNOWN_AGENTS22, LOCAL_HOSTS22, authSignalSlot22, isTruthy22 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual22 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES22, TELEMETRY_TRACEPARENT_ENV22 = "TRACEPARENT", TRACEPARENT_PATTERN22, TELEMETRY_SESSION_ID_ENV22 = "UIPATH_SESSION_ID",
|
|
529553
|
+
}, TreeInterpreterInstance22, TreeInterpreter_default22, jsYaml22, loader22, common22, hasRequiredCommon22, exception22, hasRequiredException22, snippet22, hasRequiredSnippet22, type22, hasRequiredType22, schema852, hasRequiredSchema22, str22, hasRequiredStr22, seq22, hasRequiredSeq22, map42, hasRequiredMap22, failsafe22, hasRequiredFailsafe22, _null82, hasRequired_null22, bool22, hasRequiredBool22, int42, hasRequiredInt22, float22, hasRequiredFloat22, json42, hasRequiredJson22, core42, hasRequiredCore22, timestamp22, hasRequiredTimestamp22, merge42, hasRequiredMerge22, binary22, hasRequiredBinary22, omap22, hasRequiredOmap22, pairs22, hasRequiredPairs22, set42, hasRequiredSet22, _default62, hasRequired_default22, hasRequiredLoader22, dumper22, hasRequiredDumper22, hasRequiredJsYaml22, jsYamlExports22, yaml22, Type22, Schema22, FAILSAFE_SCHEMA22, JSON_SCHEMA22, CORE_SCHEMA22, DEFAULT_SCHEMA22, load22, loadAll22, dump22, YAMLException22, types22, safeLoad22, safeLoadAll22, safeDump22, logFilePathSlot22, DEFAULT_LOG_LEVEL22 = 3, SimpleLogger22, loggerSingleton22, logger32, formatSlot22, formatExplicitSlot22, helpRequestedSlot22, filterSlot22, recordedFailureSlot22, AUTH_ERROR_CODES22, VALIDATION_ERROR_CODES22, NETWORK_HTTP_ERROR_CODES22, TIMEOUT_ERROR_CODES22, NETWORK_OS_ERROR_CODES22, TIMEOUT_OS_ERROR_CODES22, TLS_ERROR_CODES222, MISSING_DEPENDENCY_CODES22, INTERNAL_ERROR_NAMES22, CommonTelemetryEvents22, KNOWN_AGENTS22, LOCAL_HOSTS22, authSignalSlot22, isTruthy22 = (value) => value !== undefined && value !== "" && value !== "0" && value.toLowerCase() !== "false", isEqual22 = (value, expected) => value?.toLowerCase() === expected, CI_SIGNATURES22, TELEMETRY_TRACEPARENT_ENV22 = "TRACEPARENT", TRACEPARENT_PATTERN22, TELEMETRY_SESSION_ID_ENV22 = "UIPATH_SESSION_ID", SESSION_ID_MAX_LENGTH22 = 64, RANDOM_SESSION_ID_LENGTH22 = 32, TELEMETRY_SESSION_SOURCE_PROPERTY22 = "session_id_source", CONTROL_CHARACTERS22, INHERITED_SESSION_SOURCES22, telemetrySessionSlot22, telemetryOperationIdSlot22, telemetryPropsSlot23, REDACTED22 = "[REDACTED]", MAX_VALUE_LENGTH22 = 200, SENSITIVE_NAME_TOKENS22, SENSITIVE_KEY_PREFIXES22, UUID_PATTERN22, EMAIL_PATTERN22, JWT_PATTERN22, LONG_TOKEN_PATTERN22, USER_HOME_PATTERN22, URL_PATTERN22, URL_TRAILING_PUNCT22, TELEMETRY_OPERATION_ID_PROPERTY22 = "uip.trace.operation_id", TELEMETRY_PARENT_ID_PROPERTY22 = "uip.trace.parent_id", TELEMETRY_SPAN_ID_PROPERTY22 = "uip.trace.span_id", providerSlot22, telemetryInstanceSlot22, DEFAULT_AI_CONNECTION_STRING22, _localTelemetryInstance22, telemetry22, CLI_ERROR_CODES22, RETRY_HINTS22, RESULTS22, EXIT_CODES23, FilterEvaluationError22, OutputFormatter22, LEGACY_SKILL_NAMESPACE22 = "uipath:", MAX_SKILL_NAME_LENGTH22 = 80, SKILL_NAME_PATTERN22, SKILL_ATTRIBUTION22, KNOWN_SKILL_NAMES22, COMMAND_ATTRIBUTION22, pollSignalSlot22, cliErrorCodeValues22, retryHintValues22, TELEMETRY_COMMAND_ARG_PREFIX22 = "uip.cmd.arg.", guardInstalledSlot22, savedOriginalsSlot22, GUID_REGEX3, modeSlot22, interactiveFlagSlot22, PollOutcome22, REASON_BY_OUTCOME22, TERMINAL_STATUSES23, FAILURE_STATUSES22, previewSlot22, ScreenLogger22, USER_AGENT_HEADER22 = "User-Agent", sdkUserAgentHostToken23, shippedKeysSlot22, factorySlot22, BASE_PATH62, DefaultConfig62, BaseAPI62, ResponseError62, FetchError62, package_default52, SDK_USER_AGENT42, STUDIO_WEB_PROJECT_TYPE_OVERRIDES22, DEFAULT_EXCLUDED_DIR_NAMES22, BASE_PATH222, DefaultConfig222, BaseAPI222, ResponseError222, FetchError222, I18nManager4, de5, en6, es5, es_MX4, fr5, ja5, ko5, pt5, pt_BR4, ro5, ru5, tr5, zh_CN4, zh_TW4, zu5, translate4, REGISTRY_KEY4, _global4, toolsFactoryRepository4, import_reflect_metadata2, import_tsyringe2, ServiceTokens2, Tokens2, service_tokens_ServiceLifetime2, SolutionConstants2, SolutionContextKeys2, SolutionScope2, ErrorCodes2, BadRequestException2, NotFoundException2, DisconnectedException2, OperationCancelledException2, InvalidOperationException22, ArgumentException2, JsonSerializerNames2, CAMEL_CASE_ENUM_PROPERTIES2, SHARED_CORE_ABSTRACTIONS_PASCAL_CASE_PROPERTIES2, RESOURCE_BUILDER_PASCAL_CASE_PROPERTIES2, PASCAL_CASE_ENUM_PROPERTIES2, StronglyConnectedComponent2, types_ResourceScope2, types_ReplaceOption2, REFERENCE_TYPE2 = "reference", FILE_REFERENCE_TYPE2 = "fileReference", SECRET_TYPE2 = "secret", ARRAY_TYPE2 = "array", FILE_KIND2 = "file", NAME_PROPERTY2 = "name", WellKnownProjectType2, WellKnownPropertyNames2, ExcludedKindsAndTypes2, FailOnNameConflictKinds2, PACKAGE_NAME_MAX_LENGTH2 = 100, PACKAGE_NAME_SEPARATION_CHARS2 = 2, processTypeToPackageTypeMap2, REQUEST_HANDLER_TOKEN_PREFIX2 = "RequestHandler_", COMMAND_HANDLER_TOKEN_PREFIX2 = "CommandHandler_", RequestHandlerTokens2, models_OverwriteType2, DebugOverwritesConstants2, solutionsSubtypesMap2, GUID_REGEX22, ResourceDependencyNotFoundException2, FileDependencyNotFoundException2, DEFAULT_TIMEOUT_MS23 = 5000, EXCLUDED_RESOURCE_IDENTIFIERS2, import_resource_helper_WellKnownPropertyNames2, VISIBLE_DEPENDENCIES_TO_DELETE2, internal_InternalPageDirection2, models_ErrorSeverity2, models_ErrorType2, models_ResourceAdditionStatus2, DEFAULT_PAGE_SIZE22 = 100, SECRET_VALUE_PLACEHOLDER2, CaseInsensitiveSet2, ArtefactResourceKinds2, SpecProperties2, models_BindingsResourceType2, BindingsKnownKeys2, DYNAMIC_BINDINGS_MIN_VERSION2, SUPPORTED_TYPES_FOR_OVERRIDES2, CUSTOM_BINDING_TO_RESOURCE_KIND_MAPPINGS2, WellKnownKinds2, TRIGGER_MAPPINGS2, DUPLICATE_NAMES_SUPPORTED_KINDS2, ResourceCatalogApi2, RESOURCE_CATALOG_SCOPE2 = "RCS.FolderAuthorization", RESOURCE_CATALOG_SERVICE_NAME2 = "resourcecatalog", FOLDERS_SEARCH_PAGE_SIZE2 = 100, first_party_service_DeploymentAction2, first_party_service_SolutionDeploymentAction2, first_party_service_SolutionStatus2, first_party_service_QueryOptions2, first_party_service_DeploymentResourceValidationErrorLevel2, first_party_service_DeploymentResourceValidationErrorKind2, first_party_service_DeploymentResourceValidationAction2, first_party_service_ContentType2, FirstPartyServiceApi2, FIRST_PARTY_SERVICE_SCOPE2 = "AutomationSolutions", FIRST_PARTY_SERVICE_NAME2 = "automationsolutions", AutomationSolutionsApi2, AUTOMATION_SOLUTIONS_SCOPE2 = "AutomationSolutions", AUTOMATION_SOLUTIONS_SERVICE_NAME2 = "automationsolutions", WELL_KNOWN_SERVICE_SCOPES2, DEFAULT_HTTP_READER_OPTIONS2, ORCHESTRATOR_SCOPE2 = "OrchestratorApiUserAccess", ORCHESTRATOR_SERVICE_NAME2 = "orchestrator", GATEWAY_HEADERS2, WELL_KNOWN_KIND_APP2 = "app", ResourceKind2, metadata_reader_WellKnownPropertyNames2, metadata_reader_WellKnownKinds2, NON_EDITABLE_PROPERTIES2, BINDINGS_RESOLUTION_BATCH_SIZE2 = 10, solution_builder_DEFAULT_PAGE_SIZE2 = 100, SolutionBuilder2, TranslationConstants2, ServiceTranslationsHelper2, types_ProjectResourceProvisionType2, types_WellKnownProjectType2, projectsConfiguration_namespaceObject2, data_projectsConfiguration2, files_metadata_namespaceObject2, translations_de_namespaceObject2, translations_en_namespaceObject2, translations_es_MX_namespaceObject2, translations_es_namespaceObject2, translations_fr_namespaceObject2, translations_ja_namespaceObject2, translations_ko_namespaceObject2, translations_pt_BR_namespaceObject2, translations_pt_namespaceObject2, translations_ro_namespaceObject2, translations_ru_namespaceObject2, translations_tr_namespaceObject2, translations_zh_Hans_namespaceObject2, translations_zh_Hant_namespaceObject2, embeddedMetadata2, embeddedTranslations2, EmbeddedFileConstants2, AccessProviderErrorCodes2, AccessTokenError2, SERVICE_PATH_SEGMENTS_TO_SCOPES2, logger_LogLevel2, ENTRY_POINTS_FILE2 = "entry-points.json", DEFAULT_CLIENT_ID22 = "36dea5b8-e8bb-423d-8e7b-c808df8f1c00", AUTH_FILE_CONFIG_KEY22, globalSlot32, getAuthFileConfig22 = () => globalSlot32[AUTH_FILE_CONFIG_KEY22] ?? {}, InvalidBaseUrlError22, DEFAULT_SCOPES22, normalizeAndValidateBaseUrl22 = (rawUrl) => {
|
|
529420
529554
|
let baseUrl = rawUrl;
|
|
529421
529555
|
if (baseUrl.endsWith("/identity_/")) {
|
|
529422
529556
|
baseUrl = baseUrl.slice(0, -11);
|
|
@@ -814966,7 +815100,7 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
814966
815100
|
package_default10 = {
|
|
814967
815101
|
name: "@uipath/case-tool",
|
|
814968
815102
|
license: "MIT",
|
|
814969
|
-
version: "1.199.0-preview.
|
|
815103
|
+
version: "1.199.0-preview.108",
|
|
814970
815104
|
description: "Manage Case Management instances, processes, and incidents.",
|
|
814971
815105
|
private: false,
|
|
814972
815106
|
repository: {
|
|
@@ -815472,7 +815606,15 @@ return { upsertKeys: allEventsUpdatedKeys, deleteKeys: [...exitedStageKeysToDele
|
|
|
815472
815606
|
}
|
|
815473
815607
|
];
|
|
815474
815608
|
TRACEPARENT_PATTERN4 = /^00-([0-9a-f]{32})-([0-9a-f]{16})-[0-9a-f]{2}$/;
|
|
815475
|
-
|
|
815609
|
+
CONTROL_CHARACTERS4 = /\p{Cc}/gu;
|
|
815610
|
+
INHERITED_SESSION_SOURCES4 = [
|
|
815611
|
+
{ envVar: "CLAUDE_CODE_SESSION_ID", source: "claude-code" },
|
|
815612
|
+
{ envVar: "CODEX_THREAD_ID", source: "codex" },
|
|
815613
|
+
{ envVar: "ANTIGRAVITY_TRAJECTORY_ID", source: "antigravity" },
|
|
815614
|
+
{ envVar: "TERM_SESSION_ID", source: "terminal" },
|
|
815615
|
+
{ envVar: "WT_SESSION", source: "terminal" }
|
|
815616
|
+
];
|
|
815617
|
+
telemetrySessionSlot4 = singleton6("TelemetrySession");
|
|
815476
815618
|
telemetryOperationIdSlot4 = singleton6("TelemetryOperationId");
|
|
815477
815619
|
telemetryPropsSlot4 = singleton6("TelemetryDefaultProps");
|
|
815478
815620
|
SENSITIVE_NAME_TOKENS4 = new Set([
|
|
@@ -865980,7 +866122,7 @@ return {
|
|
|
865980
866122
|
package_default23 = {
|
|
865981
866123
|
name: "@uipath/integrationservice-sdk",
|
|
865982
866124
|
license: "MIT",
|
|
865983
|
-
version: "1.199.0-preview.
|
|
866125
|
+
version: "1.199.0-preview.108",
|
|
865984
866126
|
repository: {
|
|
865985
866127
|
type: "git",
|
|
865986
866128
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -871876,7 +872018,7 @@ return {
|
|
|
871876
872018
|
package_default42 = {
|
|
871877
872019
|
name: "@uipath/solution-sdk",
|
|
871878
872020
|
license: "MIT",
|
|
871879
|
-
version: "1.199.0-preview.
|
|
872021
|
+
version: "1.199.0-preview.108",
|
|
871880
872022
|
repository: {
|
|
871881
872023
|
type: "git",
|
|
871882
872024
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -895041,7 +895183,15 @@ ${e32.Data}`);
|
|
|
895041
895183
|
}
|
|
895042
895184
|
];
|
|
895043
895185
|
TRACEPARENT_PATTERN22 = /^00-([0-9a-f]{32})-([0-9a-f]{16})-[0-9a-f]{2}$/;
|
|
895044
|
-
|
|
895186
|
+
CONTROL_CHARACTERS22 = /\p{Cc}/gu;
|
|
895187
|
+
INHERITED_SESSION_SOURCES22 = [
|
|
895188
|
+
{ envVar: "CLAUDE_CODE_SESSION_ID", source: "claude-code" },
|
|
895189
|
+
{ envVar: "CODEX_THREAD_ID", source: "codex" },
|
|
895190
|
+
{ envVar: "ANTIGRAVITY_TRAJECTORY_ID", source: "antigravity" },
|
|
895191
|
+
{ envVar: "TERM_SESSION_ID", source: "terminal" },
|
|
895192
|
+
{ envVar: "WT_SESSION", source: "terminal" }
|
|
895193
|
+
];
|
|
895194
|
+
telemetrySessionSlot22 = singleton32("TelemetrySession");
|
|
895045
895195
|
telemetryOperationIdSlot22 = singleton32("TelemetryOperationId");
|
|
895046
895196
|
telemetryPropsSlot23 = singleton32("TelemetryDefaultProps");
|
|
895047
895197
|
SENSITIVE_NAME_TOKENS22 = new Set([
|
|
@@ -895586,7 +895736,7 @@ ${e32.Data}`);
|
|
|
895586
895736
|
package_default52 = {
|
|
895587
895737
|
name: "@uipath/solution-sdk",
|
|
895588
895738
|
license: "MIT",
|
|
895589
|
-
version: "1.199.0-preview.
|
|
895739
|
+
version: "1.199.0-preview.108",
|
|
895590
895740
|
repository: {
|
|
895591
895741
|
type: "git",
|
|
895592
895742
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -902711,7 +902861,7 @@ import"./packager-tool.js";
|
|
|
902711
902861
|
var package_default = {
|
|
902712
902862
|
name: "@uipath/maestro-tool",
|
|
902713
902863
|
license: "MIT",
|
|
902714
|
-
version: "1.199.0-preview.
|
|
902864
|
+
version: "1.199.0-preview.108",
|
|
902715
902865
|
description: "Create, debug, and run Maestro projects and jobs.",
|
|
902716
902866
|
private: false,
|
|
902717
902867
|
repository: {
|
|
@@ -905830,4 +905980,4 @@ export {
|
|
|
905830
905980
|
metadata3 as metadata
|
|
905831
905981
|
};
|
|
905832
905982
|
|
|
905833
|
-
//# debugId=
|
|
905983
|
+
//# debugId=96C40BE6C96FE19464756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.199.0-preview.
|
|
4
|
+
"version": "1.199.0-preview.108",
|
|
5
5
|
"description": "Create, debug, and run Maestro projects and jobs.",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "171f68daab68809916e8df10ea198c259f688ede"
|
|
30
30
|
}
|