@uipath/maestro-sdk 1.202.0-preview.149 → 1.202.0-preview.152
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/debug-http-client.js +1 -1
- package/dist/debug-service.js +1 -1
- package/dist/index.js +7 -17
- package/dist/json-input.js +1 -1
- package/dist/registry/command.js +7 -17
- package/dist/registry/snapshot.js +1 -1
- package/dist/shared-commands/index.js +1 -1
- package/dist/shared-utils.js +1 -1
- package/dist/src/registry/node-storage.d.ts +5 -5
- package/dist/src/registry/node-sync-service.d.ts +0 -1
- package/dist/with-pims-call.js +1 -1
- package/package.json +2 -2
|
@@ -11749,4 +11749,4 @@ export {
|
|
|
11749
11749
|
studioWebPost
|
|
11750
11750
|
};
|
|
11751
11751
|
|
|
11752
|
-
//# debugId=
|
|
11752
|
+
//# debugId=7ACD552C044ACE3964756E2164756E21
|
package/dist/debug-service.js
CHANGED
|
@@ -12347,4 +12347,4 @@ export {
|
|
|
12347
12347
|
uploadAndDebugSolution
|
|
12348
12348
|
};
|
|
12349
12349
|
|
|
12350
|
-
//# debugId=
|
|
12350
|
+
//# debugId=072028DA44471EB264756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -125335,7 +125335,7 @@ var init_package = __esm(() => {
|
|
|
125335
125335
|
package_default = {
|
|
125336
125336
|
name: "@uipath/integrationservice-sdk",
|
|
125337
125337
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
125338
|
-
version: "1.202.0-preview.
|
|
125338
|
+
version: "1.202.0-preview.152",
|
|
125339
125339
|
repository: {
|
|
125340
125340
|
type: "git",
|
|
125341
125341
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -190882,7 +190882,7 @@ async function rederiveNodeIndexArtifacts() {
|
|
|
190882
190882
|
const nodes = await loadNodeIndex();
|
|
190883
190883
|
return saveNodeIndex(nodes);
|
|
190884
190884
|
}
|
|
190885
|
-
var CACHE_FORMAT_VERSION =
|
|
190885
|
+
var CACHE_FORMAT_VERSION = 5, INDEX_FILE = "index.json", METADATA_FILE = "index.meta.json", SEARCH_INDEX_FILE = "search-index.json", ESSENTIALS_INDEX_FILE = "get-essentials.json", WRITE_LOCK_FILE = ".index-write.lock";
|
|
190886
190886
|
var init_node_storage = __esm(() => {
|
|
190887
190887
|
init_src2();
|
|
190888
190888
|
init_src();
|
|
@@ -191109,7 +191109,6 @@ var exports_node_sync_service = {};
|
|
|
191109
191109
|
__export(exports_node_sync_service, {
|
|
191110
191110
|
getNode: () => getNode,
|
|
191111
191111
|
getNodeEnriched: () => getNodeEnriched,
|
|
191112
|
-
isExcludedNodeType: () => isExcludedNodeType,
|
|
191113
191112
|
listNodes: () => listNodes,
|
|
191114
191113
|
pullNodes: () => pullNodes,
|
|
191115
191114
|
pullRemoteNodes: () => pullRemoteNodes,
|
|
@@ -191117,9 +191116,6 @@ __export(exports_node_sync_service, {
|
|
|
191117
191116
|
searchNodes: () => searchNodes,
|
|
191118
191117
|
searchNodesWithFilters: () => searchNodesWithFilters
|
|
191119
191118
|
});
|
|
191120
|
-
function isExcludedNodeType(nodeType2) {
|
|
191121
|
-
return typeof nodeType2 === "string" && NODE_EXCLUSIONS.some((match2) => match2(nodeType2));
|
|
191122
|
-
}
|
|
191123
191119
|
function isMissingIndexError(error91) {
|
|
191124
191120
|
return error91.message.includes("No node index found") || error91.message.includes("Node index is outdated");
|
|
191125
191121
|
}
|
|
@@ -191227,7 +191223,7 @@ async function pullRemoteNodes() {
|
|
|
191227
191223
|
inlineAgentNodes: true
|
|
191228
191224
|
});
|
|
191229
191225
|
return {
|
|
191230
|
-
nodes:
|
|
191226
|
+
nodes: manifest2.nodes || [],
|
|
191231
191227
|
source: "ootb",
|
|
191232
191228
|
cacheable: false,
|
|
191233
191229
|
info: "Using OOTB nodes because you are not logged in. Cache was not updated."
|
|
@@ -191247,7 +191243,7 @@ async function pullRemoteNodes() {
|
|
|
191247
191243
|
}));
|
|
191248
191244
|
if (!manifestError) {
|
|
191249
191245
|
return {
|
|
191250
|
-
nodes:
|
|
191246
|
+
nodes: manifest.nodes || [],
|
|
191251
191247
|
source: "authenticated",
|
|
191252
191248
|
cacheable: true
|
|
191253
191249
|
};
|
|
@@ -191256,15 +191252,12 @@ async function pullRemoteNodes() {
|
|
|
191256
191252
|
inlineAgentNodes: true
|
|
191257
191253
|
});
|
|
191258
191254
|
return {
|
|
191259
|
-
nodes:
|
|
191255
|
+
nodes: fallbackManifest.nodes || [],
|
|
191260
191256
|
source: "ootb",
|
|
191261
191257
|
cacheable: false,
|
|
191262
191258
|
info: `Failed to refresh authenticated nodes with error: ${manifestError}. Using OOTB nodes without updating cache.`
|
|
191263
191259
|
};
|
|
191264
191260
|
}
|
|
191265
|
-
function applyExclusions(nodes) {
|
|
191266
|
-
return nodes.filter((n2) => !isExcludedNodeType(n2.nodeType));
|
|
191267
|
-
}
|
|
191268
191261
|
async function getNodesWithCacheFallback() {
|
|
191269
191262
|
const [error91, nodes] = await catchError(loadNodeIndex());
|
|
191270
191263
|
if (error91) {
|
|
@@ -191452,7 +191445,7 @@ async function searchNodesWithFilters(keyword, filters, options) {
|
|
|
191452
191445
|
}
|
|
191453
191446
|
return searchWithFilters(nodes, keyword, filters);
|
|
191454
191447
|
}
|
|
191455
|
-
var CACHE_EXPIRATION,
|
|
191448
|
+
var CACHE_EXPIRATION, ENABLED_MANIFEST_FLAGS;
|
|
191456
191449
|
var init_node_sync_service = __esm(() => {
|
|
191457
191450
|
init_src3();
|
|
191458
191451
|
init_src2();
|
|
@@ -191463,9 +191456,6 @@ var init_node_sync_service = __esm(() => {
|
|
|
191463
191456
|
init_node_storage();
|
|
191464
191457
|
init_solution_discovery();
|
|
191465
191458
|
CACHE_EXPIRATION = 30 * 60 * 1000;
|
|
191466
|
-
NODE_EXCLUSIONS = [
|
|
191467
|
-
(t14) => t14.includes("uipath-uipath-dataservice") && /-v3-?$/i.test(t14)
|
|
191468
|
-
];
|
|
191469
191459
|
ENABLED_MANIFEST_FLAGS = new Set([
|
|
191470
191460
|
MANIFEST_FEATURE_FLAGS.CONNECTOR_NODES,
|
|
191471
191461
|
MANIFEST_FEATURE_FLAGS.EXTRACT_DOCUMENT,
|
|
@@ -201592,4 +201582,4 @@ export {
|
|
|
201592
201582
|
withPimsCall
|
|
201593
201583
|
};
|
|
201594
201584
|
|
|
201595
|
-
//# debugId=
|
|
201585
|
+
//# debugId=7A61A3BCCFBB2CB864756E2164756E21
|
package/dist/json-input.js
CHANGED
|
@@ -11524,4 +11524,4 @@ export {
|
|
|
11524
11524
|
resolveJsonInput
|
|
11525
11525
|
};
|
|
11526
11526
|
|
|
11527
|
-
//# debugId=
|
|
11527
|
+
//# debugId=11A408BE95C66F1564756E2164756E21
|
package/dist/registry/command.js
CHANGED
|
@@ -125335,7 +125335,7 @@ var init_package = __esm(() => {
|
|
|
125335
125335
|
package_default = {
|
|
125336
125336
|
name: "@uipath/integrationservice-sdk",
|
|
125337
125337
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
125338
|
-
version: "1.202.0-preview.
|
|
125338
|
+
version: "1.202.0-preview.152",
|
|
125339
125339
|
repository: {
|
|
125340
125340
|
type: "git",
|
|
125341
125341
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -190882,7 +190882,7 @@ async function rederiveNodeIndexArtifacts() {
|
|
|
190882
190882
|
const nodes = await loadNodeIndex();
|
|
190883
190883
|
return saveNodeIndex(nodes);
|
|
190884
190884
|
}
|
|
190885
|
-
var CACHE_FORMAT_VERSION =
|
|
190885
|
+
var CACHE_FORMAT_VERSION = 5, INDEX_FILE = "index.json", METADATA_FILE = "index.meta.json", SEARCH_INDEX_FILE = "search-index.json", ESSENTIALS_INDEX_FILE = "get-essentials.json", WRITE_LOCK_FILE = ".index-write.lock";
|
|
190886
190886
|
var init_node_storage = __esm(() => {
|
|
190887
190887
|
init_src2();
|
|
190888
190888
|
init_src();
|
|
@@ -191109,7 +191109,6 @@ var exports_node_sync_service = {};
|
|
|
191109
191109
|
__export(exports_node_sync_service, {
|
|
191110
191110
|
getNode: () => getNode,
|
|
191111
191111
|
getNodeEnriched: () => getNodeEnriched,
|
|
191112
|
-
isExcludedNodeType: () => isExcludedNodeType,
|
|
191113
191112
|
listNodes: () => listNodes,
|
|
191114
191113
|
pullNodes: () => pullNodes,
|
|
191115
191114
|
pullRemoteNodes: () => pullRemoteNodes,
|
|
@@ -191117,9 +191116,6 @@ __export(exports_node_sync_service, {
|
|
|
191117
191116
|
searchNodes: () => searchNodes,
|
|
191118
191117
|
searchNodesWithFilters: () => searchNodesWithFilters
|
|
191119
191118
|
});
|
|
191120
|
-
function isExcludedNodeType(nodeType2) {
|
|
191121
|
-
return typeof nodeType2 === "string" && NODE_EXCLUSIONS.some((match2) => match2(nodeType2));
|
|
191122
|
-
}
|
|
191123
191119
|
function isMissingIndexError(error91) {
|
|
191124
191120
|
return error91.message.includes("No node index found") || error91.message.includes("Node index is outdated");
|
|
191125
191121
|
}
|
|
@@ -191227,7 +191223,7 @@ async function pullRemoteNodes() {
|
|
|
191227
191223
|
inlineAgentNodes: true
|
|
191228
191224
|
});
|
|
191229
191225
|
return {
|
|
191230
|
-
nodes:
|
|
191226
|
+
nodes: manifest2.nodes || [],
|
|
191231
191227
|
source: "ootb",
|
|
191232
191228
|
cacheable: false,
|
|
191233
191229
|
info: "Using OOTB nodes because you are not logged in. Cache was not updated."
|
|
@@ -191247,7 +191243,7 @@ async function pullRemoteNodes() {
|
|
|
191247
191243
|
}));
|
|
191248
191244
|
if (!manifestError) {
|
|
191249
191245
|
return {
|
|
191250
|
-
nodes:
|
|
191246
|
+
nodes: manifest.nodes || [],
|
|
191251
191247
|
source: "authenticated",
|
|
191252
191248
|
cacheable: true
|
|
191253
191249
|
};
|
|
@@ -191256,15 +191252,12 @@ async function pullRemoteNodes() {
|
|
|
191256
191252
|
inlineAgentNodes: true
|
|
191257
191253
|
});
|
|
191258
191254
|
return {
|
|
191259
|
-
nodes:
|
|
191255
|
+
nodes: fallbackManifest.nodes || [],
|
|
191260
191256
|
source: "ootb",
|
|
191261
191257
|
cacheable: false,
|
|
191262
191258
|
info: `Failed to refresh authenticated nodes with error: ${manifestError}. Using OOTB nodes without updating cache.`
|
|
191263
191259
|
};
|
|
191264
191260
|
}
|
|
191265
|
-
function applyExclusions(nodes) {
|
|
191266
|
-
return nodes.filter((n2) => !isExcludedNodeType(n2.nodeType));
|
|
191267
|
-
}
|
|
191268
191261
|
async function getNodesWithCacheFallback() {
|
|
191269
191262
|
const [error91, nodes] = await catchError(loadNodeIndex());
|
|
191270
191263
|
if (error91) {
|
|
@@ -191452,7 +191445,7 @@ async function searchNodesWithFilters(keyword, filters, options) {
|
|
|
191452
191445
|
}
|
|
191453
191446
|
return searchWithFilters(nodes, keyword, filters);
|
|
191454
191447
|
}
|
|
191455
|
-
var CACHE_EXPIRATION,
|
|
191448
|
+
var CACHE_EXPIRATION, ENABLED_MANIFEST_FLAGS;
|
|
191456
191449
|
var init_node_sync_service = __esm(() => {
|
|
191457
191450
|
init_src3();
|
|
191458
191451
|
init_src2();
|
|
@@ -191463,9 +191456,6 @@ var init_node_sync_service = __esm(() => {
|
|
|
191463
191456
|
init_node_storage();
|
|
191464
191457
|
init_solution_discovery();
|
|
191465
191458
|
CACHE_EXPIRATION = 30 * 60 * 1000;
|
|
191466
|
-
NODE_EXCLUSIONS = [
|
|
191467
|
-
(t14) => t14.includes("uipath-uipath-dataservice") && /-v3-?$/i.test(t14)
|
|
191468
|
-
];
|
|
191469
191459
|
ENABLED_MANIFEST_FLAGS = new Set([
|
|
191470
191460
|
MANIFEST_FEATURE_FLAGS.CONNECTOR_NODES,
|
|
191471
191461
|
MANIFEST_FEATURE_FLAGS.EXTRACT_DOCUMENT,
|
|
@@ -191961,4 +191951,4 @@ export {
|
|
|
191961
191951
|
registerRegistryCommand
|
|
191962
191952
|
};
|
|
191963
191953
|
|
|
191964
|
-
//# debugId=
|
|
191954
|
+
//# debugId=621B1185FB0B590464756E2164756E21
|
|
@@ -11525,4 +11525,4 @@ export {
|
|
|
11525
11525
|
resolveMaestroRegistry
|
|
11526
11526
|
};
|
|
11527
11527
|
|
|
11528
|
-
//# debugId=
|
|
11528
|
+
//# debugId=D8B4EC63E26B886A64756E2164756E21
|
|
@@ -15202,4 +15202,4 @@ export {
|
|
|
15202
15202
|
registerSharedProcessesCommands
|
|
15203
15203
|
};
|
|
15204
15204
|
|
|
15205
|
-
//# debugId=
|
|
15205
|
+
//# debugId=0171E42242A3D47F64756E2164756E21
|
package/dist/shared-utils.js
CHANGED
|
@@ -11481,4 +11481,4 @@ export {
|
|
|
11481
11481
|
readStdin
|
|
11482
11482
|
};
|
|
11483
11483
|
|
|
11484
|
-
//# debugId=
|
|
11484
|
+
//# debugId=535FBF950CBC3C6264756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { NodeManifest } from "@uipath/flow-core";
|
|
2
2
|
/**
|
|
3
|
-
* Bump whenever a change alters which nodes a pull produces — a new
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
3
|
+
* Bump whenever a change alters which nodes a pull produces — a new manifest
|
|
4
|
+
* flag the CLI starts asking for. Otherwise caches written before the change
|
|
5
|
+
* stay valid for their full 30 minutes, so the nodes a fix just unblocked
|
|
6
|
+
* keep reading as "not found".
|
|
7
7
|
*/
|
|
8
|
-
export declare const CACHE_FORMAT_VERSION =
|
|
8
|
+
export declare const CACHE_FORMAT_VERSION = 5;
|
|
9
9
|
export interface SearchableNode {
|
|
10
10
|
nodeType?: string;
|
|
11
11
|
category?: string;
|
package/dist/with-pims-call.js
CHANGED
|
@@ -13187,4 +13187,4 @@ export {
|
|
|
13187
13187
|
withPimsCall
|
|
13188
13188
|
};
|
|
13189
13189
|
|
|
13190
|
-
//# debugId=
|
|
13190
|
+
//# debugId=798608782CC238E264756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-sdk",
|
|
3
3
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4
|
-
"version": "1.202.0-preview.
|
|
4
|
+
"version": "1.202.0-preview.152",
|
|
5
5
|
"description": "SDK for the UiPath Maestro (PIMS) API — process instance management.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"files": [
|
|
88
88
|
"dist"
|
|
89
89
|
],
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "33545fee8460014aa77f1bb0f1678885c65a8632"
|
|
91
91
|
}
|