From d7532848a1e2e37c9611ab8a0e7885909b986d0a Mon Sep 17 00:00:00 2001 From: Niklas Fondberg Date: Mon, 11 Oct 2021 16:53:42 +0200 Subject: [PATCH] Add paypal transaction id (#66) --- src/schema.graphql | 3 ++- src/types/order-types.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/schema.graphql b/src/schema.graphql index c765090..59095c1 100644 --- a/src/schema.graphql +++ b/src/schema.graphql @@ -143,6 +143,8 @@ type ContactInformation { type Order { id: ID! + klarnaOrderId: String + paypalTransactionId: String inserted: DateTime! paid: Boolean! confirmed: Boolean! @@ -173,7 +175,6 @@ type Order { orderlogId: Int resellerStore: String orderSum: Float - klarnaOrderId: String pwintyId: Int email: String phone: String diff --git a/src/types/order-types.ts b/src/types/order-types.ts index 22a99e8..50af76e 100644 --- a/src/types/order-types.ts +++ b/src/types/order-types.ts @@ -58,6 +58,7 @@ export interface Order { resellerStore: string; orderSum: number; klarnaOrderId: string; + paypalTransactionId: string; pwintyId: number; email: string; phone: string;