sfmc-sdk 3.0.1 → 3.0.2
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.
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Release details
|
|
2
|
+
|
|
3
|
+
## Checklist
|
|
4
|
+
|
|
5
|
+
### Before merge
|
|
6
|
+
|
|
7
|
+
- [ ] Wiki updated with info in ticket listed under **Documentation**
|
|
8
|
+
- [ ] ran `npm run prepare-release` (which runs `npm audit fix`, `npm run lint-ts`, `npm run lint:fix`, `git add`, `git commit`)
|
|
9
|
+
- [ ] ran `npm run version:major/minor/patch`
|
|
10
|
+
- [ ] pushed potential changes made by prepare-release and version-change commit
|
|
11
|
+
|
|
12
|
+
### After merge
|
|
13
|
+
|
|
14
|
+
- [ ] merged all dependabot PRs that target main branch
|
|
15
|
+
- [ ] merged main branch into develop branch
|
|
16
|
+
- [ ] closed GitHub milestone
|
|
17
|
+
- [ ] created [new GitHub Release](https://github.com/Accenture/sfmc-devtools/releases/new)
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
... insert updated documentation here ...
|
|
22
|
+
|
|
23
|
+
## Issues
|
|
24
|
+
|
|
25
|
+
- closes #1234567
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfmc-sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Libarary to simplify SFMC requests with updated dependencies and less overhead",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"prepare": "husky || true",
|
|
23
23
|
"prepare-release:audit-fix": "npm audit fix",
|
|
24
24
|
"prepare-release:git": "node prepare-release.js",
|
|
25
|
-
"prepare-release": "run-s prepare-release:audit-fix lint-ts-prep lint:fix prepare-release:git",
|
|
25
|
+
"prepare-release": "run-s --continue-on-error prepare-release:audit-fix lint-ts-prep lint:fix prepare-release:git",
|
|
26
26
|
"version:major": "npm version --no-commit-hooks major",
|
|
27
27
|
"version:minor": "npm version --no-commit-hooks minor",
|
|
28
28
|
"version:patch": "npm version --no-commit-hooks patch"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "BSD-3-Clause",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"axios": "^1.7.2",
|
|
38
|
-
"fast-xml-parser": "5.
|
|
38
|
+
"fast-xml-parser": "5.5.6",
|
|
39
39
|
"p-limit": "5.0.0"
|
|
40
40
|
},
|
|
41
41
|
"keywords": [
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@eslint/js": "10.0.1",
|
|
54
54
|
"@types/mocha": "10.0.10",
|
|
55
|
-
"@types/node": "25.
|
|
55
|
+
"@types/node": "25.5.0",
|
|
56
56
|
"assert": "2.1.0",
|
|
57
57
|
"axios-mock-adapter": "2.1.0",
|
|
58
58
|
"c8": "11.0.0",
|
|
59
59
|
"chai": "6.2.2",
|
|
60
60
|
"eslint": "10.0.3",
|
|
61
61
|
"eslint-config-prettier": "10.1.8",
|
|
62
|
-
"eslint-plugin-jsdoc": "62.
|
|
62
|
+
"eslint-plugin-jsdoc": "62.8.0",
|
|
63
63
|
"eslint-plugin-mocha": "11.2.0",
|
|
64
64
|
"eslint-plugin-prettier": "5.5.5",
|
|
65
65
|
"eslint-plugin-unicorn": "63.0.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"npm-run-all": "4.1.5",
|
|
69
69
|
"prettier": "3.8.1",
|
|
70
70
|
"prettier-eslint": "16.4.2",
|
|
71
|
-
"sinon": "21.0.
|
|
71
|
+
"sinon": "21.0.3",
|
|
72
72
|
"typescript": "5.9.3"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|