sfdx-hardis 5.10.2-beta202412280136.0 → 5.10.2-beta202412292224.0
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/defaults/mkdocs/mkdocs.yml +6 -0
- package/defaults/mkdocs-project-doc/mkdocs.yml +3 -0
- package/lib/commands/hardis/doc/flow2markdown.d.ts +1 -0
- package/lib/commands/hardis/doc/flow2markdown.js +13 -3
- package/lib/commands/hardis/doc/flow2markdown.js.map +1 -1
- package/lib/commands/hardis/doc/project2markdown.d.ts +1 -0
- package/lib/commands/hardis/doc/project2markdown.js +34 -3
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/project/generate/flow-git-diff.js +28 -16
- package/lib/commands/hardis/project/generate/flow-git-diff.js.map +1 -1
- package/lib/common/gitProvider/utilsMarkdown.js +5 -5
- package/lib/common/gitProvider/utilsMarkdown.js.map +1 -1
- package/lib/common/utils/flowVisualiser/nodeFormatUtils.js +4 -2
- package/lib/common/utils/flowVisualiser/nodeFormatUtils.js.map +1 -1
- package/lib/common/utils/index.d.ts +1 -0
- package/lib/common/utils/index.js +10 -0
- package/lib/common/utils/index.js.map +1 -1
- package/lib/common/utils/mermaidUtils.d.ts +2 -1
- package/lib/common/utils/mermaidUtils.js +157 -27
- package/lib/common/utils/mermaidUtils.js.map +1 -1
- package/lib/common/utils/projectUtils.js +1 -1
- package/lib/common/utils/projectUtils.js.map +1 -1
- package/oclif.lock +843 -1260
- package/oclif.manifest.json +9 -2
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
},
|
|
352
352
|
"with-history": {
|
|
353
353
|
"char": "d",
|
|
354
|
-
"description": "
|
|
354
|
+
"description": "Generate a markdown file with the history diff of the Flow",
|
|
355
355
|
"name": "with-history",
|
|
356
356
|
"allowNo": false,
|
|
357
357
|
"type": "boolean"
|
|
@@ -523,6 +523,13 @@
|
|
|
523
523
|
"allowNo": false,
|
|
524
524
|
"type": "boolean"
|
|
525
525
|
},
|
|
526
|
+
"with-history": {
|
|
527
|
+
"char": "d",
|
|
528
|
+
"description": "Generate a markdown file with the history diff of the Flow",
|
|
529
|
+
"name": "with-history",
|
|
530
|
+
"allowNo": false,
|
|
531
|
+
"type": "boolean"
|
|
532
|
+
},
|
|
526
533
|
"debug": {
|
|
527
534
|
"char": "d",
|
|
528
535
|
"description": "Activate debug mode (more logs)",
|
|
@@ -13878,5 +13885,5 @@
|
|
|
13878
13885
|
]
|
|
13879
13886
|
}
|
|
13880
13887
|
},
|
|
13881
|
-
"version": "5.10.2-
|
|
13888
|
+
"version": "5.10.2-beta202412292224.0"
|
|
13882
13889
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Swiss-army-knife Toolbox for Salesforce.\n Allows you to define a complete CD/CD Pipeline.\n Orchestrate base commands and assist users with interactive wizards",
|
|
4
4
|
"author": "NicolasVuillamy @nvuillam",
|
|
5
5
|
"bugs": "https://github.com/hardisgroupcom/sfdx-hardis/issues",
|
|
6
|
-
"version": "5.10.2-
|
|
6
|
+
"version": "5.10.2-beta202412292224.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@actions/github": "^6.0.0",
|
|
9
9
|
"@gitbeaker/node": "^35.8.1",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@slack/web-api": "^7.8.0",
|
|
15
15
|
"@supercharge/promise-pool": "^3.2.0",
|
|
16
16
|
"@xmldom/xmldom": "^0.8.10",
|
|
17
|
-
"axios": "^1.7.
|
|
17
|
+
"axios": "^1.7.9",
|
|
18
18
|
"azure-devops-node-api": "^14.1.0",
|
|
19
19
|
"bitbucket": "^2.12.0",
|
|
20
20
|
"chalk": "^5.3.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"mega-linter-runner": "^8.3.0",
|
|
45
45
|
"moment": "^2.30.1",
|
|
46
46
|
"open": "^10.1.0",
|
|
47
|
-
"openai": "^4.
|
|
47
|
+
"openai": "^4.77.0",
|
|
48
48
|
"ora": "^8.1.1",
|
|
49
49
|
"papaparse": "^5.4.1",
|
|
50
50
|
"pascalcase": "^2.0.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@oclif/plugin-command-snapshot": "^5.2.23",
|
|
68
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
68
|
+
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
69
69
|
"@salesforce/dev-config": "^4.3.1",
|
|
70
70
|
"@salesforce/dev-scripts": "^10",
|
|
71
71
|
"@types/columnify": "^1.5.4",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@types/ws": "^8.5.13",
|
|
90
90
|
"@types/xml2js": "^0.4.14",
|
|
91
91
|
"eslint-plugin-sf-plugin": "^1.20.9",
|
|
92
|
-
"oclif": "^4.
|
|
92
|
+
"oclif": "^4.17.4",
|
|
93
93
|
"ts-node": "^10.9.2",
|
|
94
94
|
"typescript": "^5.7.2"
|
|
95
95
|
},
|