@uipath/case-tool 1.0.0 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1005,7 +1005,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1005
1005
  this._exitCallback = (err) => {
1006
1006
  if (err.code !== "commander.executeSubCommandAsync") {
1007
1007
  throw err;
1008
- } else {}
1008
+ }
1009
1009
  };
1010
1010
  }
1011
1011
  return this;
package/dist/tool.js CHANGED
@@ -1018,7 +1018,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1018
1018
  this._exitCallback = (err) => {
1019
1019
  if (err.code !== "commander.executeSubCommandAsync") {
1020
1020
  throw err;
1021
- } else {}
1021
+ }
1022
1022
  };
1023
1023
  }
1024
1024
  return this;
@@ -2956,7 +2956,7 @@ function isBrowser() {
2956
2956
 
2957
2957
  // ../../node_modules/@uipath/coreipc/index.js
2958
2958
  var require_coreipc = __commonJS((exports, module) => {
2959
- var __dirname = "/home/runner/work/cli/cli/node_modules/@uipath/coreipc";
2959
+ var __dirname = "/Users/alexandru.oltean/github/cli/node_modules/@uipath/coreipc";
2960
2960
  /*! For license information please see index.js.LICENSE.txt */
2961
2961
  (function(e, t) {
2962
2962
  typeof exports == "object" && typeof module == "object" ? module.exports = t() : typeof define == "function" && define.amd ? define([], t) : typeof exports == "object" ? exports.ipc = t() : e.ipc = t();
@@ -54219,7 +54219,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
54219
54219
 
54220
54220
  ` + ("" + errorBoundaryMessage);
54221
54221
  console["error"](combinedMessage);
54222
- } else {}
54222
+ }
54223
54223
  } catch (e) {
54224
54224
  setTimeout(function() {
54225
54225
  throw e;
@@ -160805,7 +160805,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
160805
160805
  result.$schema = "http://json-schema.org/draft-07/schema#";
160806
160806
  } else if (ctx.target === "draft-04") {
160807
160807
  result.$schema = "http://json-schema.org/draft-04/schema#";
160808
- } else if (ctx.target === "openapi-3.0") {} else {}
160808
+ } else if (ctx.target === "openapi-3.0") {}
160809
160809
  if (ctx.external?.uri) {
160810
160810
  const id2 = ctx.external.registry.get(schema2)?.id;
160811
160811
  if (!id2)
@@ -161142,7 +161142,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
161142
161142
  if (val === undefined) {
161143
161143
  if (ctx.unrepresentable === "throw") {
161144
161144
  throw new Error("Literal `undefined` cannot be represented in JSON Schema");
161145
- } else {}
161145
+ }
161146
161146
  } else if (typeof val === "bigint") {
161147
161147
  if (ctx.unrepresentable === "throw") {
161148
161148
  throw new Error("BigInt literals cannot be represented in JSON Schema");
@@ -240449,7 +240449,7 @@ import"./packager-tool.js";
240449
240449
  // package.json
240450
240450
  var package_default = {
240451
240451
  name: "@uipath/case-tool",
240452
- version: "1.0.0",
240452
+ version: "1.0.4",
240453
240453
  description: "Manage Case Management instances, processes, and incidents.",
240454
240454
  private: false,
240455
240455
  repository: {
@@ -264212,7 +264212,7 @@ function finalize(ctx, schema2) {
264212
264212
  result.$schema = "http://json-schema.org/draft-07/schema#";
264213
264213
  } else if (ctx.target === "draft-04") {
264214
264214
  result.$schema = "http://json-schema.org/draft-04/schema#";
264215
- } else if (ctx.target === "openapi-3.0") {} else {}
264215
+ } else if (ctx.target === "openapi-3.0") {}
264216
264216
  if (ctx.external?.uri) {
264217
264217
  const id = ctx.external.registry.get(schema2)?.id;
264218
264218
  if (!id)
@@ -264454,7 +264454,7 @@ var literalProcessor = (schema2, ctx, json2, _params) => {
264454
264454
  if (val === undefined) {
264455
264455
  if (ctx.unrepresentable === "throw") {
264456
264456
  throw new Error("Literal `undefined` cannot be represented in JSON Schema");
264457
- } else {}
264457
+ }
264458
264458
  } else if (typeof val === "bigint") {
264459
264459
  if (ctx.unrepresentable === "throw") {
264460
264460
  throw new Error("BigInt literals cannot be represented in JSON Schema");
@@ -277229,7 +277229,7 @@ class JSONSchemaGenerator2 {
277229
277229
  if (val === undefined) {
277230
277230
  if (this.unrepresentable === "throw") {
277231
277231
  throw new Error("Literal `undefined` cannot be represented in JSON Schema");
277232
- } else {}
277232
+ }
277233
277233
  } else if (typeof val === "bigint") {
277234
277234
  if (this.unrepresentable === "throw") {
277235
277235
  throw new Error("BigInt literals cannot be represented in JSON Schema");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/case-tool",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "description": "Manage Case Management instances, processes, and incidents.",
5
5
  "private": false,
6
6
  "repository": {
@@ -35,12 +35,12 @@
35
35
  "test:coverage": "vitest run --coverage && vitest run --coverage -c vitest.isolated.config.ts && cat coverage-isolated/lcov.info >> coverage/lcov.info && rm -rf coverage-isolated"
36
36
  },
37
37
  "devDependencies": {
38
- "@uipath/auth": "1.0.0",
38
+ "@uipath/auth": "1.0.4",
39
39
  "@uipath/case-schema": "^0.806.0",
40
- "@uipath/common": "1.0.0",
41
- "@uipath/filesystem": "1.0.0",
40
+ "@uipath/common": "1.0.4",
41
+ "@uipath/filesystem": "1.0.4",
42
42
  "@uipath/integrationservice-sdk": "1.0.1",
43
- "@uipath/maestro-sdk": "1.0.0",
43
+ "@uipath/maestro-sdk": "1.0.4",
44
44
  "@uipath/orchestrator-sdk": "1.0.0",
45
45
  "@uipath/solution-sdk": "1.0.0",
46
46
  "@uipath/solutionpackager-tool-core": "0.0.33",
@@ -49,5 +49,5 @@
49
49
  "commander": "^14.0.3",
50
50
  "typescript": "^6.0.2"
51
51
  },
52
- "gitHead": "d982977e86057fd9d0846c955595c64865aeecab"
52
+ "gitHead": "e496ee5b65951c8047259ab50d7d6a284eea58a9"
53
53
  }