sfdx-hardis 6.14.4 → 6.15.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/CHANGELOG.md +8 -0
- package/lib/common/ticketProvider/index.d.ts +6 -0
- package/lib/common/ticketProvider/jiraProvider.d.ts +3 -24
- package/lib/common/ticketProvider/jiraProvider.js +70 -17
- package/lib/common/ticketProvider/jiraProvider.js.map +1 -1
- package/oclif.lock +28 -292
- package/oclif.manifest.json +317 -317
- package/package.json +6 -5
- package/yarn.lock +13799 -0
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": "6.
|
|
6
|
+
"version": "6.15.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@actions/github": "^6.0.1",
|
|
9
9
|
"@cparra/apexdocs": "^3.15.1",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"he": "^1.2.0",
|
|
45
45
|
"inquirer": "^10.2.2",
|
|
46
46
|
"isomorphic-dompurify": "2.26.0",
|
|
47
|
-
"jira
|
|
47
|
+
"jira.js": "^5.2.2",
|
|
48
48
|
"js-yaml": "^4.1.1",
|
|
49
49
|
"jsdoc-to-markdown": "^9.1.3",
|
|
50
50
|
"langchain": "^0.3.36",
|
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"form-data": "4.0.5",
|
|
79
79
|
"tmp": "0.2.5",
|
|
80
80
|
"prebuild-install/tar-fs": "2.1.4",
|
|
81
|
-
"@puppeteer/browsers/tar-fs": "3.1.1"
|
|
81
|
+
"@puppeteer/browsers/tar-fs": "3.1.1",
|
|
82
|
+
"parse5": "6.0.1"
|
|
82
83
|
},
|
|
83
84
|
"devDependencies": {
|
|
84
85
|
"@oclif/plugin-command-snapshot": "^5.3.8",
|
|
@@ -94,7 +95,6 @@
|
|
|
94
95
|
"@types/fs-readdir-recursive": "^1.1.3",
|
|
95
96
|
"@types/glob": "^8.1.0",
|
|
96
97
|
"@types/inquirer": "^9.0.7",
|
|
97
|
-
"@types/jira-client": "^7.1.9",
|
|
98
98
|
"@types/js-yaml": "^4.0.9",
|
|
99
99
|
"@types/make-fetch-happen": "^10.0.4",
|
|
100
100
|
"@types/papaparse": "^5.5.0",
|
|
@@ -119,7 +119,8 @@
|
|
|
119
119
|
"/messages",
|
|
120
120
|
"/defaults",
|
|
121
121
|
"/oclif.manifest.json",
|
|
122
|
-
"/oclif.lock"
|
|
122
|
+
"/oclif.lock",
|
|
123
|
+
"/yarn.lock"
|
|
123
124
|
],
|
|
124
125
|
"homepage": "https://sfdx-hardis.cloudity.com",
|
|
125
126
|
"keywords": [
|