@uipath/case-tool 1.201.0-preview.132 → 1.201.0-preview.133
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/{case-pack-service-r80wqh23.js → case-pack-service-rvyqh3x3.js} +1 -1
- package/dist/index.js +2 -2
- package/dist/{packager-tool-39cnfvbx.js → packager-tool-8t401j6x.js} +2 -2
- package/dist/{packager-tool-azt9zfba.js → packager-tool-qtwqp3q5.js} +5 -5
- package/dist/tool.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import {
|
|
3
3
|
metadata,
|
|
4
4
|
registerCommands
|
|
5
|
-
} from "./packager-tool-
|
|
6
|
-
import"./packager-tool-
|
|
5
|
+
} from "./packager-tool-qtwqp3q5.js";
|
|
6
|
+
import"./packager-tool-8t401j6x.js";
|
|
7
7
|
import"./packager-tool-we1phz71.js";
|
|
8
8
|
import"./packager-tool-w3h8xrnv.js";
|
|
9
9
|
import"./packager-tool-zqa5k9f7.js";
|
|
@@ -92598,7 +92598,7 @@ class TextApiResponse {
|
|
|
92598
92598
|
var package_default = {
|
|
92599
92599
|
name: "@uipath/integrationservice-sdk",
|
|
92600
92600
|
license: "MIT",
|
|
92601
|
-
version: "1.201.0-preview.
|
|
92601
|
+
version: "1.201.0-preview.133",
|
|
92602
92602
|
repository: {
|
|
92603
92603
|
type: "git",
|
|
92604
92604
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -99950,4 +99950,4 @@ function loadCaseSchemaAsync() {
|
|
|
99950
99950
|
|
|
99951
99951
|
export { extractStartEventId, uploadAndDebugSolution, VALID_PROJECT_NAME_REGEX, VALID_PACKAGE_NAME_REGEX, formatTraceLine, parseJsonInputOrFile, ConnectionOperationsApi, ConnectorsApi, ElementsApi, createApiClient, getEventOperationObjects, buildActivityEssentialConfiguration, createConfiguredActivityClient, assertActivityMetadataResolved, extractMultipartParameters, buildInputMetadata, validateIntSvcNode, extractTriggerEventParameters, extractTriggerFilterFields, extractActivityFilterFields, fetchConnectorTriggerMetadata, fetchConnectionInfo, fetchConnectorMetadata, findSolutionFromCwd, registerSharedIncidentCommands, registerSharedInstanceCommands, registerSharedProcessCommands, registerSharedProcessesCommands, loadCaseSchemaAsync };
|
|
99952
99952
|
|
|
99953
|
-
//# debugId=
|
|
99953
|
+
//# debugId=F8322D7FD1411C9364756E2164756E21
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
registerSharedProcessesCommands,
|
|
28
28
|
uploadAndDebugSolution,
|
|
29
29
|
validateIntSvcNode
|
|
30
|
-
} from "./packager-tool-
|
|
30
|
+
} from "./packager-tool-8t401j6x.js";
|
|
31
31
|
import {
|
|
32
32
|
findSolutionFile,
|
|
33
33
|
prepareProjectLocation,
|
|
@@ -72,7 +72,7 @@ import {
|
|
|
72
72
|
var package_default = {
|
|
73
73
|
name: "@uipath/case-tool",
|
|
74
74
|
license: "MIT",
|
|
75
|
-
version: "1.201.0-preview.
|
|
75
|
+
version: "1.201.0-preview.133",
|
|
76
76
|
description: "Manage Case Management instances, processes, and incidents.",
|
|
77
77
|
private: false,
|
|
78
78
|
repository: {
|
|
@@ -1115,7 +1115,7 @@ function querystringSingleKey(key, value, keyPrefix = "") {
|
|
|
1115
1115
|
var package_default2 = {
|
|
1116
1116
|
name: "@uipath/solution-sdk",
|
|
1117
1117
|
license: "MIT",
|
|
1118
|
-
version: "1.201.0-preview.
|
|
1118
|
+
version: "1.201.0-preview.133",
|
|
1119
1119
|
repository: {
|
|
1120
1120
|
type: "git",
|
|
1121
1121
|
url: "https://github.com/UiPath/cli.git",
|
|
@@ -3160,7 +3160,7 @@ var CASE_PACK_EXAMPLES = [
|
|
|
3160
3160
|
var registerPackCommand = (program) => {
|
|
3161
3161
|
const command = program.command("pack").description("Pack a Case project into a .nupkg file").argument("<project-path>", "Path to the Case project directory").argument("<output-path>", "Output directory where the .nupkg will be saved").option("-n, --name <name>", "Package name (default: project folder name)").option("-v, --version <version>", "Package version (default: 1.0.0)", "1.0.0");
|
|
3162
3162
|
registerPackageMetadataOptions(command).examples(CASE_PACK_EXAMPLES).trackedAction(processContext, async (projectPath, outputPath, options) => {
|
|
3163
|
-
const { CasePackService } = await import("./case-pack-service-
|
|
3163
|
+
const { CasePackService } = await import("./case-pack-service-rvyqh3x3.js");
|
|
3164
3164
|
const service = new CasePackService;
|
|
3165
3165
|
const [error, result] = await catchError(service.execute(projectPath, {
|
|
3166
3166
|
output: outputPath,
|
|
@@ -13604,4 +13604,4 @@ var registerCommands = async (program) => {
|
|
|
13604
13604
|
|
|
13605
13605
|
export { metadata, registerCommands };
|
|
13606
13606
|
|
|
13607
|
-
//# debugId=
|
|
13607
|
+
//# debugId=D3B6525CBA4A673464756E2164756E21
|
package/dist/tool.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
metadata,
|
|
3
3
|
registerCommands
|
|
4
|
-
} from "./packager-tool-
|
|
5
|
-
import"./packager-tool-
|
|
4
|
+
} from "./packager-tool-qtwqp3q5.js";
|
|
5
|
+
import"./packager-tool-8t401j6x.js";
|
|
6
6
|
import"./packager-tool-we1phz71.js";
|
|
7
7
|
import"./packager-tool-w3h8xrnv.js";
|
|
8
8
|
import"./packager-tool-zqa5k9f7.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/case-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.201.0-preview.
|
|
4
|
+
"version": "1.201.0-preview.133",
|
|
5
5
|
"description": "Manage Case Management instances, processes, and incidents.",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"files": [
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "7933378ad5276ac369900293a1447474dcec6826"
|
|
31
31
|
}
|