Add paypal transaction id (#66)

This commit is contained in:
Niklas Fondberg
2021-10-11 16:53:42 +02:00
committed by GitHub
parent 640849de45
commit d7532848a1
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -143,6 +143,8 @@ type ContactInformation {
type Order { type Order {
id: ID! id: ID!
klarnaOrderId: String
paypalTransactionId: String
inserted: DateTime! inserted: DateTime!
paid: Boolean! paid: Boolean!
confirmed: Boolean! confirmed: Boolean!
@@ -173,7 +175,6 @@ type Order {
orderlogId: Int orderlogId: Int
resellerStore: String resellerStore: String
orderSum: Float orderSum: Float
klarnaOrderId: String
pwintyId: Int pwintyId: Int
email: String email: String
phone: String phone: String
+1
View File
@@ -58,6 +58,7 @@ export interface Order {
resellerStore: string; resellerStore: string;
orderSum: number; orderSum: number;
klarnaOrderId: string; klarnaOrderId: string;
paypalTransactionId: string;
pwintyId: number; pwintyId: number;
email: string; email: string;
phone: string; phone: string;