Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(payment-service): adds payment-service feature #257

Merged
merged 22 commits into from
Sep 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1841dab
feat(payment-service): adds payment-service feature
sumit-tuteja Jul 13, 2021
8b006d9
feat(payment-service): Add Migartion Script in Payment Service
sumit-tuteja Jul 22, 2021
3eecd46
feat(payment-service): adds refund functionality in payment-service
sumit-tuteja Jul 29, 2021
eabb0e0
refactor(payment-service): refractor code to fix sonar issues
sumit-tuteja Jul 30, 2021
01b27ea
refactor(payment-service): refractor code to fix sonar smells
sumit-tuteja Aug 2, 2021
b7cf559
refactor(payment-service): fix sonar smells and add gateway conroller…
sumit-tuteja Aug 3, 2021
94f1c71
refactor(payment-service): fix migration script installation error
sumit-tuteja Aug 3, 2021
cf54087
refactor(payment-service): replace console statement with sourceloop …
sumit-tuteja Aug 4, 2021
34977f7
refactor(payment-service): fix sonar smell in razorpay provider
sumit-tuteja Aug 4, 2021
10d73aa
refactor(payment-service): fix leran bootstrap error
sumit-tuteja Aug 5, 2021
389191d
refactor(payment-service): Resolved Review Comments with improvements
sumit-tuteja Aug 16, 2021
e9483c1
refactor(payment-service): update package.json and migration with son…
sumit-tuteja Aug 25, 2021
3fcd46d
refactor(payment-service): payment-service name update with sourceloop
sumit-tuteja Aug 25, 2021
e4cf971
refactor(payment-service): refractor package.json and modify readmd
sumit-tuteja Aug 31, 2021
3c4d9ed
refactor(payment-service): reabase and sonar fixes with minor doc update
sumit-tuteja Sep 1, 2021
e9b9495
refactor(payment-service): fix lerna bootstrap error
sumit-tuteja Sep 2, 2021
040c67c
refactor(payment-service): fix lerna lint error in payment-service
sumit-tuteja Sep 2, 2021
6f07dea
refactor(payment-service): update package-lock.json in payment-servic…
sumit-tuteja Sep 2, 2021
3056eb4
refactor(payment-service): modify package-lock.json in payment-service
sumit-tuteja Sep 2, 2021
c3fed64
refactor(payment-service): lerna test fix for version issue
sumit-tuteja Sep 2, 2021
556e1a6
Merge branch 'master' into feature/payment-service
akshatdubeysf Sep 3, 2021
45ff341
Merge branch 'master' into feature/payment-service
akshatdubeysf Sep 3, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16,155 changes: 2,566 additions & 13,589 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@
"path": "cz-format-extension"
}
},
"dependencies": {}
"dependencies": {
"handlebars": "^4.7.7"
}
}
63 changes: 4 additions & 59 deletions packages/custom-sf-changelog/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

111 changes: 8 additions & 103 deletions services/audit-service/openapi.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Audit Service v1.0.0
language_tabs:
- javascript: JavaScript
- javascript--nodejs: Node.JS
- "'javascript": JavaScript
- "'javascript--nodejs": Node.JS'
language_clients:
- javascript: request
- javascript--nodejs: ""
- "'javascript": request'
- "'javascript--nodejs": ""
toc_footers: []
includes: []
search: false
Expand Down Expand Up @@ -38,28 +38,7 @@ Base URLs:

> Code samples

```javascript

const headers = {
'Accept':'application/json',
'Authorization':'Bearer {access-token}'
};

fetch('/audit-logs/count',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

```

```javascript--nodejs
```'javascript--nodejs
const fetch = require('node-fetch');

const headers = {
Expand Down Expand Up @@ -116,28 +95,7 @@ HTTPBearer

> Code samples

```javascript

const headers = {
'Accept':'application/json',
'Authorization':'Bearer {access-token}'
};

fetch('/audit-logs/{id}',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

```

```javascript--nodejs
```'javascript--nodejs
const fetch = require('node-fetch');

const headers = {
Expand Down Expand Up @@ -204,39 +162,7 @@ HTTPBearer

> Code samples

```javascript
const inputBody = '{
"action": "string",
"actedAt": "2019-08-24T14:15:22Z",
"actedOn": "string",
"actionKey": "string",
"entityId": "string",
"actor": "string",
"before": {},
"after": {},
"actionGroup": "string"
}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'Authorization':'Bearer {access-token}'
};

fetch('/audit-logs',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

```

```javascript--nodejs
```'javascript--nodejs
const fetch = require('node-fetch');
const inputBody = {
"action": "string",
Expand Down Expand Up @@ -329,28 +255,7 @@ HTTPBearer

> Code samples

```javascript

const headers = {
'Accept':'application/json',
'Authorization':'Bearer {access-token}'
};

fetch('/audit-logs',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

```

```javascript--nodejs
```'javascript--nodejs
const fetch = require('node-fetch');

const headers = {
Expand Down
Loading