Skip to content

Commit

Permalink
Update gh-pages to output generated at 13fc1f9
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalp committed Aug 29, 2024
1 parent 0a04886 commit d5ac0c4
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 73 deletions.
76 changes: 6 additions & 70 deletions data/schema-changes.json
Original file line number Diff line number Diff line change
@@ -1,77 +1,13 @@
[
{
"diff": "field_new",
"type": "Subscription",
"field": "draftOrderCreated"
"type": "Checkout",
"field": "customerNote"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "draftOrderDeleted"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "draftOrderUpdated"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderBulkCreated"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderCancelled"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderConfirmed"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderCreated"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderExpired"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderFulfilled"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderFullyPaid"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderFullyRefunded"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderMetadataUpdated"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderPaid"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderRefunded"
},
{
"diff": "field_new",
"type": "Subscription",
"field": "orderUpdated"
"diff": "field_deprecated",
"type": "Checkout",
"field": "note",
"version": "4.0"
}
]
11 changes: 9 additions & 2 deletions data/schema-previous.json
Original file line number Diff line number Diff line change
Expand Up @@ -9271,6 +9271,13 @@
"message": null,
"arguments": {}
},
"customerNote": {
"type": "String!",
"description": "The customer note for the checkout. \n\nAdded in Saleor 3.21.",
"deprecated": null,
"message": null,
"arguments": {}
},
"deliveryMethod": {
"type": "DeliveryMethod",
"description": "The delivery method selected for this checkout.\n\nAdded in Saleor 3.1.\n\nTriggers the following webhook events:\n- SHIPPING_LIST_METHODS_FOR_CHECKOUT (sync): Optionally triggered when cached external shipping methods are invalid.\n- CHECKOUT_FILTER_SHIPPING_METHODS (sync): Optionally triggered when cached filtered shipping methods are invalid.",
Expand Down Expand Up @@ -9388,8 +9395,8 @@
"note": {
"type": "String!",
"description": "The note for the checkout.",
"deprecated": null,
"message": null,
"deprecated": "4.0",
"message": "This field will be removed in Saleor 4.0. Use `customerNote` instead.",
"arguments": {}
},
"privateMetadata": {
Expand Down
34 changes: 33 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="container py-3">
<div class="border-bottom py-3 mb-3">
<h1>Saleor Deprecations Report</h1>
<p class="m-0">Generated on 2024-08-28 14:00:52</p>
<p class="m-0">Generated on 2024-08-29 14:01:05</p>
</div>
<div class="py-3 my-3">
<h2 class="fs-4 mb-3">Summary</h2>
Expand Down Expand Up @@ -1032,6 +1032,17 @@ <h2 class="fs-4 mb-3">Summary</h2>
<td>4.0</td>
</tr>

<tr>
<td>
<a href="#Checkout-note" class="btn btn-primary btn-sm py-0 px-2">...</a>
</td>

<td>Checkout</td>
<td colspan="2">note</td>

<td>4.0</td>
</tr>

<tr>
<td>
<a href="#Checkout-availableShippingMethods" class="btn btn-primary btn-sm py-0 px-2">...</a>
Expand Down Expand Up @@ -7407,6 +7418,27 @@ <h2 class="fs-4 mb-3">
</div>
</div>

<div id="Checkout-note" class="border-bottom py-3 my-3">
<div class="row">
<div class="col-12 col-md">
<h2 class="fs-4 mb-3">
<a href="#Checkout-note" class="text-reset">
Field <strong class="text-danger">note</strong> of type <strong class="text-danger">Checkout</strong>
</a>
</h2>
<p>Removed in <strong>Saleor 4.0</strong></p>
<p>This field will be removed in Saleor 4.0. Use <strong class="text-danger font-monospace">customerNote</strong> instead.</p>
</div>
<div class="col-12 col-md">
<div class="font-monospace"><span class="text-primary">type</span> <strong>Checkout</strong> {<br />
&nbsp;&nbsp;<span class="text-secondary">...</span><br />
&nbsp;&nbsp;<strong class="text-danger">note</strong>: String!<br />
&nbsp;&nbsp;<span class="text-secondary">...</span><br />
}</div>
</div>
</div>
</div>

<div id="Checkout-availableShippingMethods" class="border-bottom py-3 my-3">
<div class="row">
<div class="col-12 col-md">
Expand Down

0 comments on commit d5ac0c4

Please sign in to comment.