@uipath/solution-tool 1.199.0-preview.108 → 1.199.0-preview.111

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/deploy.js CHANGED
@@ -31453,7 +31453,7 @@ function requireOmap() {
31453
31453
  function resolveYamlOmap(data) {
31454
31454
  if (data === null)
31455
31455
  return true;
31456
- const objectKeys = [];
31456
+ const objectKeys = {};
31457
31457
  const object = data;
31458
31458
  for (let index = 0, length = object.length;index < length; index += 1) {
31459
31459
  const pair = object[index];
@@ -31471,10 +31471,9 @@ function requireOmap() {
31471
31471
  }
31472
31472
  if (!pairHasKey)
31473
31473
  return false;
31474
- if (objectKeys.indexOf(pairKey) === -1)
31475
- objectKeys.push(pairKey);
31476
- else
31474
+ if (_hasOwnProperty.call(objectKeys, pairKey))
31477
31475
  return false;
31476
+ Object.defineProperty(objectKeys, pairKey, { value: true });
31478
31477
  }
31479
31478
  return true;
31480
31479
  }
@@ -37773,7 +37772,7 @@ class JSONApiResponse2 {
37773
37772
  var package_default2 = {
37774
37773
  name: "@uipath/solution-sdk",
37775
37774
  license: "MIT",
37776
- version: "1.199.0-preview.108",
37775
+ version: "1.199.0-preview.111",
37777
37776
  repository: {
37778
37777
  type: "git",
37779
37778
  url: "https://github.com/UiPath/cli.git",
@@ -43453,4 +43452,4 @@ export {
43453
43452
  activateDeploymentAsync
43454
43453
  };
43455
43454
 
43456
- //# debugId=27DC365FD3297BCE64756E2164756E21
43455
+ //# debugId=8B17B5E653F07A2064756E2164756E21
package/dist/init.js CHANGED
@@ -26592,7 +26592,7 @@ function requireOmap() {
26592
26592
  function resolveYamlOmap(data) {
26593
26593
  if (data === null)
26594
26594
  return true;
26595
- const objectKeys = [];
26595
+ const objectKeys = {};
26596
26596
  const object = data;
26597
26597
  for (let index = 0, length = object.length;index < length; index += 1) {
26598
26598
  const pair = object[index];
@@ -26610,10 +26610,9 @@ function requireOmap() {
26610
26610
  }
26611
26611
  if (!pairHasKey)
26612
26612
  return false;
26613
- if (objectKeys.indexOf(pairKey) === -1)
26614
- objectKeys.push(pairKey);
26615
- else
26613
+ if (_hasOwnProperty.call(objectKeys, pairKey))
26616
26614
  return false;
26615
+ Object.defineProperty(objectKeys, pairKey, { value: true });
26617
26616
  }
26618
26617
  return true;
26619
26618
  }
@@ -31020,7 +31019,7 @@ function querystringSingleKey(key, value, keyPrefix = "") {
31020
31019
  var package_default = {
31021
31020
  name: "@uipath/solution-sdk",
31022
31021
  license: "MIT",
31023
- version: "1.199.0-preview.108",
31022
+ version: "1.199.0-preview.111",
31024
31023
  repository: {
31025
31024
  type: "git",
31026
31025
  url: "https://github.com/UiPath/cli.git",
@@ -48845,4 +48844,4 @@ export {
48845
48844
  SolutionInitError
48846
48845
  };
48847
48846
 
48848
- //# debugId=C873FC9DCC68ADE564756E2164756E21
48847
+ //# debugId=84A07F46B7BCF29264756E2164756E21
package/dist/pack.js CHANGED
@@ -28624,7 +28624,12 @@ var require_fast_uri = __commonJS((exports, module) => {
28624
28624
  }
28625
28625
  function resolve(baseURI, relativeURI, options) {
28626
28626
  const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
28627
- const resolved = resolveComponent(parse5(baseURI, schemelessOptions), parse5(relativeURI, schemelessOptions), schemelessOptions, true);
28627
+ const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
28628
+ const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
28629
+ if (baseMalformed || relativeMalformed) {
28630
+ throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
28631
+ }
28632
+ const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
28628
28633
  schemelessOptions.skipEscape = true;
28629
28634
  return serialize(resolved, schemelessOptions);
28630
28635
  }
@@ -28751,6 +28756,7 @@ var require_fast_uri = __commonJS((exports, module) => {
28751
28756
  }
28752
28757
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
28753
28758
  var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
28759
+ var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
28754
28760
  function getParseError(parsed, matches) {
28755
28761
  if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
28756
28762
  return 'URI path must start with "/" when authority is present.';
@@ -28785,6 +28791,20 @@ var require_fast_uri = __commonJS((exports, module) => {
28785
28791
  parsed.error = "URI authority must not contain a literal backslash.";
28786
28792
  malformedAuthorityOrPort = true;
28787
28793
  }
28794
+ const introducerMatch = uri2.match(AUTHORITY_INTRODUCER_REGION);
28795
+ if (introducerMatch !== null) {
28796
+ const region = introducerMatch[1];
28797
+ const normalizedRegion = region.replace(/[\t\n\r]/g, "");
28798
+ if (normalizedRegion.length >= 2) {
28799
+ if (normalizedRegion.slice(0, 2) !== "//") {
28800
+ parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
28801
+ malformedAuthorityOrPort = true;
28802
+ } else if (region.length !== normalizedRegion.length) {
28803
+ parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
28804
+ malformedAuthorityOrPort = true;
28805
+ }
28806
+ }
28807
+ }
28788
28808
  const matches = uri2.match(URI_PARSE);
28789
28809
  if (matches) {
28790
28810
  parsed.scheme = matches[1];
@@ -212009,8 +212029,8 @@ var bpmn_spec_default = {
212009
212029
  <bpmn:outgoing>{outgoingEdge}</bpmn:outgoing>
212010
212030
  </bpmn:Task>`,
212011
212031
  inputNotes: "Variable mappings use uipath:mapping with direct input/output elements, not a jsonBody pattern",
212012
- bpmnElementNotes: "Also used on bpmn:StartEvent and bpmn:EndEvent for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
212013
- extensionTagNotes: "Uses uipath:mapping (not uipath:activity). createExtensionTask checks for serviceType=BPMN.Variables on StartEvent/EndEvent/Task and routes to createModdleExtensionVariableMapping."
212032
+ bpmnElementNotes: "Also used on bpmn:StartEvent, bpmn:EndEvent, bpmn:ScriptTask, and bpmn:SubProcess for variable mappings. On bpmn:Task with no serviceType, defaults to BPMN.Variables.",
212033
+ extensionTagNotes: "Uses uipath:mapping (not uipath:activity). BPMN.Variables mappings are supported on StartEvent, EndEvent, Task, ScriptTask, and SubProcess owners."
212014
212034
  },
212015
212035
  "BPMN.ScriptTask": {
212016
212036
  extensionType: "BPMN.ScriptTask",
@@ -212753,6 +212773,7 @@ var SUPPORTED_UIPATH_EXTENSION_TAG_NAMES = Object.freeze([
212753
212773
  var SUPPORTED_UIPATH_EXTENSION_TAGS = Object.freeze(SUPPORTED_UIPATH_EXTENSION_TAG_NAMES.map((tag) => `uipath:${tag}`));
212754
212774
  var KNOWN_UIPATH_TAGS = new Set(SUPPORTED_UIPATH_EXTENSION_TAGS);
212755
212775
  var SEMANTIC_VALIDATION_ERROR = "BPMN_VALIDATION_ERROR";
212776
+ var BPMN_MODEL_NAMESPACE = "http://www.omg.org/spec/BPMN/20100524/MODEL";
212756
212777
 
212757
212778
  class BpmnValidateService {
212758
212779
  fileSystem;
@@ -212959,7 +212980,7 @@ class BpmnValidateService {
212959
212980
  });
212960
212981
  }
212961
212982
  const allowedOwners = getAllowedOwnerTypes(contract);
212962
- if (!allowedOwners.some((allowedOwner) => normalizeBpmnName(allowedOwner) === normalizeBpmnName(owner.name))) {
212983
+ if (!allowedOwners.some((allowedOwner) => getLocalName(allowedOwner) === getLocalName(owner.name) && resolveNamespace(owner) === BPMN_MODEL_NAMESPACE)) {
212963
212984
  diagnostics.push({
212964
212985
  file,
212965
212986
  element: describeElement(owner),
@@ -213428,10 +213449,23 @@ function findFirst(node, predicate) {
213428
213449
  return;
213429
213450
  }
213430
213451
  function hasLocalName(node, localName) {
213431
- return normalizeBpmnName(node.name).split(":").pop() === localName.toLowerCase();
213452
+ return getLocalName(node.name) === localName.toLowerCase();
213453
+ }
213454
+ function getLocalName(name) {
213455
+ return name.slice(name.lastIndexOf(":") + 1).toLowerCase();
213432
213456
  }
213433
- function normalizeBpmnName(name) {
213434
- return name.toLowerCase();
213457
+ function resolveNamespace(node) {
213458
+ const separator = node.name.indexOf(":");
213459
+ const prefix = separator === -1 ? "" : node.name.slice(0, separator);
213460
+ const declaration = prefix ? `xmlns:${prefix}` : "xmlns";
213461
+ let current = node;
213462
+ while (current) {
213463
+ if (Object.hasOwn(current.attributes, declaration)) {
213464
+ return current.attributes[declaration];
213465
+ }
213466
+ current = current.parent;
213467
+ }
213468
+ return;
213435
213469
  }
213436
213470
  function findBpmnOwner(payload) {
213437
213471
  const extensionElements = payload.parent;
@@ -213460,7 +213494,8 @@ function getAllowedOwnerTypes(contract) {
213460
213494
  "bpmn:StartEvent",
213461
213495
  "bpmn:EndEvent",
213462
213496
  "bpmn:Task",
213463
- "bpmn:ScriptTask"
213497
+ "bpmn:ScriptTask",
213498
+ "bpmn:SubProcess"
213464
213499
  ];
213465
213500
  }
213466
213501
  const placementTypes = Object.values(contract.placements).map((placement) => placement.type);
@@ -214074,7 +214109,7 @@ init_dist();
214074
214109
  // ../packager/packager-tool-flow/package.json
214075
214110
  var package_default = {
214076
214111
  name: "@uipath/packager-tool-flow",
214077
- version: "1.199.0-preview.108",
214112
+ version: "1.199.0-preview.111",
214078
214113
  description: "UiPath Flow tool implementation",
214079
214114
  type: "module",
214080
214115
  exports: {
@@ -223542,7 +223577,7 @@ function requireOmap() {
223542
223577
  function resolveYamlOmap(data) {
223543
223578
  if (data === null)
223544
223579
  return true;
223545
- const objectKeys = [];
223580
+ const objectKeys = {};
223546
223581
  const object5 = data;
223547
223582
  for (let index = 0, length = object5.length;index < length; index += 1) {
223548
223583
  const pair = object5[index];
@@ -223560,10 +223595,9 @@ function requireOmap() {
223560
223595
  }
223561
223596
  if (!pairHasKey)
223562
223597
  return false;
223563
- if (objectKeys.indexOf(pairKey) === -1)
223564
- objectKeys.push(pairKey);
223565
- else
223598
+ if (_hasOwnProperty.call(objectKeys, pairKey))
223566
223599
  return false;
223600
+ Object.defineProperty(objectKeys, pairKey, { value: true });
223567
223601
  }
223568
223602
  return true;
223569
223603
  }
@@ -250640,7 +250674,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
250640
250674
  var package_default3 = {
250641
250675
  name: "@uipath/project-packager",
250642
250676
  license: "MIT",
250643
- version: "1.199.0-preview.108",
250677
+ version: "1.199.0-preview.111",
250644
250678
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
250645
250679
  type: "module",
250646
250680
  main: "./dist/index.js",
@@ -250703,7 +250737,7 @@ var package_default3 = {
250703
250737
  "@uipath/packager-tool-webapp": "workspace:*",
250704
250738
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
250705
250739
  "@vitest/coverage-v8": "^4.1.6",
250706
- jsdom: "^29.0.0",
250740
+ jsdom: "^30.0.1",
250707
250741
  typescript: "^6.0.2",
250708
250742
  "vite-tsconfig-paths": "^6.1.1",
250709
250743
  vitest: "^4.1.6"
@@ -258283,7 +258317,7 @@ function requireOmap2() {
258283
258317
  function resolveYamlOmap(data) {
258284
258318
  if (data === null)
258285
258319
  return true;
258286
- const objectKeys = [];
258320
+ const objectKeys = {};
258287
258321
  const object5 = data;
258288
258322
  for (let index = 0, length = object5.length;index < length; index += 1) {
258289
258323
  const pair = object5[index];
@@ -258301,10 +258335,9 @@ function requireOmap2() {
258301
258335
  }
258302
258336
  if (!pairHasKey)
258303
258337
  return false;
258304
- if (objectKeys.indexOf(pairKey) === -1)
258305
- objectKeys.push(pairKey);
258306
- else
258338
+ if (_hasOwnProperty.call(objectKeys, pairKey))
258307
258339
  return false;
258340
+ Object.defineProperty(objectKeys, pairKey, { value: true });
258308
258341
  }
258309
258342
  return true;
258310
258343
  }
@@ -262806,7 +262839,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
262806
262839
  var package_default4 = {
262807
262840
  name: "@uipath/project-packager",
262808
262841
  license: "MIT",
262809
- version: "1.199.0-preview.108",
262842
+ version: "1.199.0-preview.111",
262810
262843
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
262811
262844
  type: "module",
262812
262845
  main: "./dist/index.js",
@@ -262869,7 +262902,7 @@ var package_default4 = {
262869
262902
  "@uipath/packager-tool-webapp": "workspace:*",
262870
262903
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
262871
262904
  "@vitest/coverage-v8": "^4.1.6",
262872
- jsdom: "^29.0.0",
262905
+ jsdom: "^30.0.1",
262873
262906
  typescript: "^6.0.2",
262874
262907
  "vite-tsconfig-paths": "^6.1.1",
262875
262908
  vitest: "^4.1.6"
@@ -281597,4 +281630,4 @@ export {
281597
281630
  packSolutionAsync
281598
281631
  };
281599
281632
 
281600
- //# debugId=ECD1A8033F9EB07B64756E2164756E21
281633
+ //# debugId=80FF8D55B7F27A8D64756E2164756E21
package/dist/publish.js CHANGED
@@ -24512,7 +24512,7 @@ function requireOmap() {
24512
24512
  function resolveYamlOmap(data) {
24513
24513
  if (data === null)
24514
24514
  return true;
24515
- const objectKeys = [];
24515
+ const objectKeys = {};
24516
24516
  const object = data;
24517
24517
  for (let index = 0, length = object.length;index < length; index += 1) {
24518
24518
  const pair = object[index];
@@ -24530,10 +24530,9 @@ function requireOmap() {
24530
24530
  }
24531
24531
  if (!pairHasKey)
24532
24532
  return false;
24533
- if (objectKeys.indexOf(pairKey) === -1)
24534
- objectKeys.push(pairKey);
24535
- else
24533
+ if (_hasOwnProperty.call(objectKeys, pairKey))
24536
24534
  return false;
24535
+ Object.defineProperty(objectKeys, pairKey, { value: true });
24537
24536
  }
24538
24537
  return true;
24539
24538
  }
@@ -30735,7 +30734,7 @@ class TextApiResponse2 {
30735
30734
  var package_default2 = {
30736
30735
  name: "@uipath/solution-sdk",
30737
30736
  license: "MIT",
30738
- version: "1.199.0-preview.108",
30737
+ version: "1.199.0-preview.111",
30739
30738
  repository: {
30740
30739
  type: "git",
30741
30740
  url: "https://github.com/UiPath/cli.git",
@@ -33510,4 +33509,4 @@ export {
33510
33509
  publishSolutionAsync
33511
33510
  };
33512
33511
 
33513
- //# debugId=50AFCC001F9C3DA164756E2164756E21
33512
+ //# debugId=2BBE8EC2C725495564756E2164756E21
package/dist/resource.js CHANGED
@@ -26878,7 +26878,7 @@ function requireOmap() {
26878
26878
  function resolveYamlOmap(data) {
26879
26879
  if (data === null)
26880
26880
  return true;
26881
- const objectKeys = [];
26881
+ const objectKeys = {};
26882
26882
  const object = data;
26883
26883
  for (let index = 0, length = object.length;index < length; index += 1) {
26884
26884
  const pair = object[index];
@@ -26896,10 +26896,9 @@ function requireOmap() {
26896
26896
  }
26897
26897
  if (!pairHasKey)
26898
26898
  return false;
26899
- if (objectKeys.indexOf(pairKey) === -1)
26900
- objectKeys.push(pairKey);
26901
- else
26899
+ if (_hasOwnProperty.call(objectKeys, pairKey))
26902
26900
  return false;
26901
+ Object.defineProperty(objectKeys, pairKey, { value: true });
26903
26902
  }
26904
26903
  return true;
26905
26904
  }
@@ -48023,4 +48022,4 @@ export {
48023
48022
  resourceRefreshAsync
48024
48023
  };
48025
48024
 
48026
- //# debugId=677D735FA1174A7C64756E2164756E21
48025
+ //# debugId=BFBFBE6E70B046DD64756E2164756E21
package/dist/tool.js CHANGED
@@ -30536,7 +30536,7 @@ import"./packager-tool.js";
30536
30536
  var package_default = {
30537
30537
  name: "@uipath/solution-tool",
30538
30538
  license: "MIT",
30539
- version: "1.199.0-preview.108",
30539
+ version: "1.199.0-preview.111",
30540
30540
  description: "Create, pack, publish, and deploy UiPath Automation Solutions.",
30541
30541
  repository: {
30542
30542
  type: "git",
@@ -33910,7 +33910,7 @@ function requireOmap() {
33910
33910
  function resolveYamlOmap(data) {
33911
33911
  if (data === null)
33912
33912
  return true;
33913
- const objectKeys = [];
33913
+ const objectKeys = {};
33914
33914
  const object = data;
33915
33915
  for (let index = 0, length = object.length;index < length; index += 1) {
33916
33916
  const pair = object[index];
@@ -33928,10 +33928,9 @@ function requireOmap() {
33928
33928
  }
33929
33929
  if (!pairHasKey)
33930
33930
  return false;
33931
- if (objectKeys.indexOf(pairKey) === -1)
33932
- objectKeys.push(pairKey);
33933
- else
33931
+ if (_hasOwnProperty.call(objectKeys, pairKey))
33934
33932
  return false;
33933
+ Object.defineProperty(objectKeys, pairKey, { value: true });
33935
33934
  }
33936
33935
  return true;
33937
33936
  }
@@ -64414,7 +64413,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
64414
64413
  var package_default2 = {
64415
64414
  name: "@uipath/project-packager",
64416
64415
  license: "MIT",
64417
- version: "1.199.0-preview.108",
64416
+ version: "1.199.0-preview.111",
64418
64417
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
64419
64418
  type: "module",
64420
64419
  main: "./dist/index.js",
@@ -64477,7 +64476,7 @@ var package_default2 = {
64477
64476
  "@uipath/packager-tool-webapp": "workspace:*",
64478
64477
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
64479
64478
  "@vitest/coverage-v8": "^4.1.6",
64480
- jsdom: "^29.0.0",
64479
+ jsdom: "^30.0.1",
64481
64480
  typescript: "^6.0.2",
64482
64481
  "vite-tsconfig-paths": "^6.1.1",
64483
64482
  vitest: "^4.1.6"
@@ -72038,7 +72037,7 @@ function requireOmap2() {
72038
72037
  function resolveYamlOmap(data) {
72039
72038
  if (data === null)
72040
72039
  return true;
72041
- const objectKeys = [];
72040
+ const objectKeys = {};
72042
72041
  const object = data;
72043
72042
  for (let index = 0, length = object.length;index < length; index += 1) {
72044
72043
  const pair = object[index];
@@ -72056,10 +72055,9 @@ function requireOmap2() {
72056
72055
  }
72057
72056
  if (!pairHasKey)
72058
72057
  return false;
72059
- if (objectKeys.indexOf(pairKey) === -1)
72060
- objectKeys.push(pairKey);
72061
- else
72058
+ if (_hasOwnProperty.call(objectKeys, pairKey))
72062
72059
  return false;
72060
+ Object.defineProperty(objectKeys, pairKey, { value: true });
72063
72061
  }
72064
72062
  return true;
72065
72063
  }
@@ -76561,7 +76559,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
76561
76559
  var package_default3 = {
76562
76560
  name: "@uipath/project-packager",
76563
76561
  license: "MIT",
76564
- version: "1.199.0-preview.108",
76562
+ version: "1.199.0-preview.111",
76565
76563
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
76566
76564
  type: "module",
76567
76565
  main: "./dist/index.js",
@@ -76624,7 +76622,7 @@ var package_default3 = {
76624
76622
  "@uipath/packager-tool-webapp": "workspace:*",
76625
76623
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
76626
76624
  "@vitest/coverage-v8": "^4.1.6",
76627
- jsdom: "^29.0.0",
76625
+ jsdom: "^30.0.1",
76628
76626
  typescript: "^6.0.2",
76629
76627
  "vite-tsconfig-paths": "^6.1.1",
76630
76628
  vitest: "^4.1.6"
@@ -82115,7 +82113,7 @@ class TextApiResponse2 {
82115
82113
  var package_default5 = {
82116
82114
  name: "@uipath/solution-sdk",
82117
82115
  license: "MIT",
82118
- version: "1.199.0-preview.108",
82116
+ version: "1.199.0-preview.111",
82119
82117
  repository: {
82120
82118
  type: "git",
82121
82119
  url: "https://github.com/UiPath/cli.git",
@@ -108780,4 +108778,4 @@ export {
108780
108778
  metadata
108781
108779
  };
108782
108780
 
108783
- //# debugId=12E6F9C97AA298E764756E2164756E21
108781
+ //# debugId=EC0848FA0FED428264756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-tool",
3
3
  "license": "MIT",
4
- "version": "1.199.0-preview.108",
4
+ "version": "1.199.0-preview.111",
5
5
  "description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -46,5 +46,5 @@
46
46
  "dist"
47
47
  ],
48
48
  "private": false,
49
- "gitHead": "171f68daab68809916e8df10ea198c259f688ede"
49
+ "gitHead": "1a86625f94b9abd4d02444b8c5deec7e9d08d210"
50
50
  }