@ikonintegration/ikapi 5.0.14 → 5.1.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/.github/workflows/npmpublish.yml +3 -3
- package/.github/workflows/prs.yml +1 -1
- package/README.md +1 -2
- package/dist/package-lock.json +3629 -3011
- package/dist/package.json +48 -48
- package/dist/src/BaseEvent/Transaction.d.ts +3 -3
- package/dist/src/BaseEvent/Transaction.js +1 -1
- package/dist/src/BaseEvent/Transaction.js.map +1 -1
- package/dist/src/Cache/Redis.js +18 -9
- package/dist/src/Cache/Redis.js.map +1 -1
- package/dist/src/Mailer/Mailer.d.ts +10 -2
- package/dist/src/Mailer/Mailer.js +30 -9
- package/dist/src/Mailer/Mailer.js.map +1 -1
- package/eslint.config.cjs +97 -0
- package/package.json +48 -48
- package/src/Cache/Redis.ts +18 -9
- package/src/Config/Configuration.ts +1 -1
- package/src/Mailer/Mailer.ts +37 -7
- package/tsconfig.json +12 -7
- package/tsconfig.smoke.json +2 -6
- package/.eslintrc.cjs +0 -82
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
name: NPM Publish
|
|
2
2
|
on:
|
|
3
|
-
push:
|
|
4
|
-
branches: [
|
|
3
|
+
push:
|
|
4
|
+
branches: ['master']
|
|
5
5
|
|
|
6
6
|
jobs:
|
|
7
7
|
Publish:
|
|
8
8
|
uses: ikon-integration/tools-github-workflows/.github/workflows/npm-publish.yml@master
|
|
9
9
|
secrets: inherit
|
|
10
10
|
with:
|
|
11
|
-
NODE_VERSION:
|
|
11
|
+
NODE_VERSION: '20.x'
|
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# IKApi 
|
|
2
|
+
|
|
2
3
|
Ikon nodejs API foundation
|
|
3
4
|
|
|
4
5
|
[Docs](https://ikon-integration.github.io/ikapi/)
|
|
@@ -9,7 +10,6 @@ Ikon nodejs API foundation
|
|
|
9
10
|
- 
|
|
10
11
|
- 
|
|
11
12
|
|
|
12
|
-
|
|
13
13
|
#### Samples
|
|
14
14
|
|
|
15
15
|
- Router
|
|
@@ -60,7 +60,6 @@ export default class HealthCheck implements GetHealthRoute {
|
|
|
60
60
|
}
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
|
|
64
63
|
- Transaction
|
|
65
64
|
|
|
66
65
|
```
|