PW-6940: Management API merchant endpoints (#953)

* PW-6940: Update CI workflows

Remove redundant reviewers and push event. Upgrade Node for coverage report.

* PW-6940: Upgrade CodeQL

* PW-6940: Update models

* PW-6940: Add merchant level endpoints

* Revert "PW-6940: Update models"

This reverts commit 1044f2ab1b2ab90fd980588ba35ba5fb6b55d93e.

* PW-6940: Linking services

* PW-6940: Add documentation

* PW-6940: Add unit tests

* PW-6940: Fix delete methods return value

Co-authored-by: Ángel Campos <angel.campos@adyen.com>
Co-authored-by: Alexandros Moraitis <amoraitis@outlook.com>
This commit is contained in:
Michael Paul
2022-08-18 13:24:37 +02:00
committed by GitHub
parent 371d910fb6
commit de7cd45027
21 changed files with 3116 additions and 60 deletions

View File

@@ -5,11 +5,4 @@ updates:
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10
reviewers:
- zaiddreakh
maassenbas
msilvagarcia
AlexandrosMor
peterojo
wboereboom
open-pull-requests-limit: 10

View File

@@ -18,10 +18,10 @@ jobs:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java
@@ -29,7 +29,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
@@ -43,4 +43,4 @@ jobs:
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2

View File

@@ -1,4 +1,4 @@
on: ["push", "pull_request"]
on: ["pull_request"]
name: Coveralls
@@ -11,10 +11,10 @@ jobs:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
- name: npm install, npm test:coverage
run: |

View File

@@ -1,6 +1,6 @@
name: Node.js CI
on: [push, pull_request]
on: [pull_request]
jobs:
build:

View File

@@ -1,6 +1,6 @@
name: "Sonarcloud Analysis"
on: ["push", "pull_request"]
on: ["pull_request"]
jobs:
sonarcloud-analysis: