@bernierllc/sender-identity-verification 1.0.0 → 1.0.1
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 +9 -0
- package/jest.config.cjs +1 -1
- package/package.json +19 -18
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @bernierllc/sender-identity-verification
|
|
2
|
+
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a65f28c`](https://github.com/bernierllc/tools/commit/a65f28c2a1d09da8e8c7c23dcebd8f6606d9783f), [`a65f28c`](https://github.com/bernierllc/tools/commit/a65f28c2a1d09da8e8c7c23dcebd8f6606d9783f)]:
|
|
8
|
+
- @bernierllc/crypto-utils@1.0.3
|
|
9
|
+
- @bernierllc/email-sender@3.0.4
|
package/jest.config.cjs
CHANGED
|
@@ -9,7 +9,7 @@ Redistribution or use in other products or commercial offerings is not permitted
|
|
|
9
9
|
module.exports = {
|
|
10
10
|
preset: 'ts-jest',
|
|
11
11
|
// Use fixed environment to handle Node.js v25+ localStorage issue
|
|
12
|
-
testEnvironment: '<rootDir
|
|
12
|
+
testEnvironment: '<rootDir>/../../../jest-environment-node-fixed.cjs',
|
|
13
13
|
roots: ['<rootDir>/__tests__'],
|
|
14
14
|
testMatch: ['**/__tests__/**/*.test.ts'],
|
|
15
15
|
moduleNameMapper: {
|
package/package.json
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/sender-identity-verification",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Individual sender email address verification service for email production compliance",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc",
|
|
9
|
-
"test": "jest --watch",
|
|
10
|
-
"test:run": "jest",
|
|
11
|
-
"test:coverage": "jest --coverage",
|
|
12
|
-
"test:integration": "jest --testPathPattern=integration --runInBand",
|
|
13
|
-
"test:unit": "jest --testPathIgnorePatterns=integration",
|
|
14
|
-
"lint": "eslint src --ext .ts",
|
|
15
|
-
"clean": "rm -rf dist"
|
|
16
|
-
},
|
|
17
7
|
"keywords": [
|
|
18
8
|
"email",
|
|
19
9
|
"sender",
|
|
@@ -29,12 +19,12 @@
|
|
|
29
19
|
"author": "Bernier LLC",
|
|
30
20
|
"license": "SEE LICENSE IN LICENSE",
|
|
31
21
|
"dependencies": {
|
|
32
|
-
"@bernierllc/crypto-utils": "
|
|
33
|
-
"@bernierllc/email-sender": "
|
|
34
|
-
"@bernierllc/logger": "
|
|
22
|
+
"@bernierllc/crypto-utils": "1.0.3",
|
|
23
|
+
"@bernierllc/email-sender": "3.0.4",
|
|
24
|
+
"@bernierllc/logger": "1.0.3",
|
|
35
25
|
"@bernierllc/neverhub-adapter": "0.1.2",
|
|
36
|
-
"@bernierllc/retry-policy": "0.1.
|
|
37
|
-
"@bernierllc/validators-email": "
|
|
26
|
+
"@bernierllc/retry-policy": "0.1.6",
|
|
27
|
+
"@bernierllc/validators-email": "0.1.2"
|
|
38
28
|
},
|
|
39
29
|
"devDependencies": {
|
|
40
30
|
"@types/jest": "^29.0.0",
|
|
@@ -48,7 +38,8 @@
|
|
|
48
38
|
"typescript": "^5.0.0"
|
|
49
39
|
},
|
|
50
40
|
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
41
|
+
"access": "public",
|
|
42
|
+
"registry": "https://registry.npmjs.org/"
|
|
52
43
|
},
|
|
53
44
|
"bernierllc": {
|
|
54
45
|
"integration": {
|
|
@@ -56,5 +47,15 @@
|
|
|
56
47
|
"neveradmin": "required",
|
|
57
48
|
"logger": "integrated"
|
|
58
49
|
}
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsc",
|
|
53
|
+
"test": "jest --watch",
|
|
54
|
+
"test:run": "jest",
|
|
55
|
+
"test:coverage": "jest --coverage",
|
|
56
|
+
"test:integration": "jest --testPathPattern=integration --runInBand",
|
|
57
|
+
"test:unit": "jest --testPathIgnorePatterns=integration",
|
|
58
|
+
"lint": "eslint src --ext .ts",
|
|
59
|
+
"clean": "rm -rf dist"
|
|
59
60
|
}
|
|
60
|
-
}
|
|
61
|
+
}
|