feat(medusa,brightpearl,segment,webshipper): claims (#163)

* chore: create tests

* chore: models

* fix: passing initial tests

* test: adds integration test

* test: clean up integration implementation

* fix: claims

* fix: brightpearl + webshipper

* tests: passing

* fix: update claim items

* fix: adds gitignore

* fix: pr comments

* fix: single migration

* fix(medusa-plugin-segment): adds item claimed event to segment
This commit is contained in:
Sebastian Rindom
2021-02-03 09:49:12 +01:00
committed by GitHub
parent 0e0dfea571
commit 690d339667
60 changed files with 9429 additions and 189 deletions

View File

@@ -0,0 +1,59 @@
import { PaymentService } from "medusa-interfaces";
class TestPayService extends PaymentService {
static identifier = "test-pay";
constructor() {
super();
}
async getStatus(paymentData) {
return "authorized";
}
async retrieveSavedMethods(customer) {
return Promise.resolve([]);
}
async createPayment() {
return {};
}
async retrievePayment(data) {
return {};
}
async getPaymentData(sessionData) {
return {};
}
async authorizePayment(sessionData, context = {}) {
return {};
}
async updatePaymentData(sessionData, update) {
return {};
}
async updatePayment(sessionData, cart) {
return {};
}
async deletePayment(payment) {
return {};
}
async capturePayment(payment) {
return {};
}
async refundPayment(payment, amountToRefund) {
return {};
}
async cancelPayment(payment) {
return {};
}
}
export default TestPayService;