diff --git a/data/schema-changes.json b/data/schema-changes.json index 650ad6b..4df135d 100644 --- a/data/schema-changes.json +++ b/data/schema-changes.json @@ -1,8 +1,22 @@ [ { - "diff": "field_deprecated", - "type": "Invoice", - "field": "externalUrl", - "version": "4.0" + "diff": "field_new", + "type": "OrderLine", + "field": "saleId" + }, + { + "diff": "field_new", + "type": "OrderLine", + "field": "voucherCode" + }, + { + "diff": "field_new", + "type": "Payment", + "field": "partial" + }, + { + "diff": "field_new", + "type": "Payment", + "field": "pspReference" } ] \ No newline at end of file diff --git a/data/schema-previous.json b/data/schema-previous.json index 0b63aa6..e855576 100644 --- a/data/schema-previous.json +++ b/data/schema-previous.json @@ -39078,6 +39078,13 @@ "message": null, "arguments": {} }, + "saleId": { + "type": "ID", + "description": "Denormalized sale ID, set when order line is created for a product variant that is on sale.\n\nAdded in Saleor 3.14.", + "deprecated": null, + "message": null, + "arguments": {} + }, "taxClass": { "type": "TaxClass", "description": "Denormalized tax class of the product in this order line.\n\nAdded in Saleor 3.9.\n\nRequires one of the following permissions: AUTHENTICATED_STAFF_USER, AUTHENTICATED_APP.", @@ -39218,6 +39225,13 @@ "deprecated": null, "message": null, "arguments": {} + }, + "voucherCode": { + "type": "String", + "description": "Voucher code that was used for this order line.\n\nAdded in Saleor 3.14.", + "deprecated": null, + "message": null, + "arguments": {} } } }, @@ -42625,6 +42639,13 @@ "message": null, "arguments": {} }, + "partial": { + "type": "Boolean!", + "description": "Informs whether this is a partial payment.\n\nAdded in Saleor 3.14.", + "deprecated": null, + "message": null, + "arguments": {} + }, "paymentMethodType": { "type": "String!", "description": "Type of method used for payment.", @@ -42669,6 +42690,13 @@ } } }, + "pspReference": { + "type": "String", + "description": "PSP reference of the payment.\n\nAdded in Saleor 3.14.", + "deprecated": null, + "message": null, + "arguments": {} + }, "token": { "type": "String!", "description": "Unique token associated with a payment.", diff --git a/index.html b/index.html index 7c79bb8..2d9e12d 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@
Generated on 2023-10-09 14:01:07
+Generated on 2023-10-10 14:01:05