Skip to content

Commit eaf6b0c

Browse files
authored
Merge pull request #20 from sourcefuse/feat/recurring-payment
feat(provider): implement a comprehensive subscription lifecycle
2 parents eb3800d + a39dc6a commit eaf6b0c

20 files changed

+3073
-2947
lines changed

.github/workflows/trivy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- uses: actions/checkout@v3
2323

2424
- name: Run Trivy vulnerability scanner in repo mode
25-
uses: aquasecurity/trivy-action@0.28.0
25+
uses: aquasecurity/trivy-action@0.35.0
2626
with:
27-
scan-type: "fs"
28-
scan-ref: "${{ github.workspace }}"
29-
trivy-config: "${{ github.workspace }}/trivy.yml"
27+
scan-type: 'fs'
28+
scan-ref: '${{ github.workspace }}'
29+
trivy-config: '${{ github.workspace }}/trivy.yml'

package-lock.json

Lines changed: 720 additions & 2771 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"eslint": "lb-eslint --report-unused-disable-directives .",
2525
"eslint:fix": "npm run eslint -- --fix",
2626
"pretest": "npm run build",
27-
"test": "echo No Tests",
27+
"test": "lb-mocha --allow-console-logs dist/__tests__/**/*.js",
2828
"posttest": "npm run lint",
2929
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
3030
"prepublishOnly": "npm run test",
@@ -78,6 +78,10 @@
7878
"semantic-release": "^24.2.9",
7979
"simple-git": "^3.15.1"
8080
},
81+
"overrides": {
82+
"undici": "^6.24.0",
83+
"lodash": "^4.18.0"
84+
},
8185
"publishConfig": {
8286
"registry": "https://registry.npmjs.org/"
8387
},
@@ -120,4 +124,4 @@
120124
],
121125
"repositoryUrl": "git@github.com:sourcefuse/loopback4-billing.git"
122126
}
123-
}
127+
}

0 commit comments

Comments
 (0)