Skip to content

Commit

Permalink
Update description for CheckoutFullyPaid subscription webhook (saleor…
Browse files Browse the repository at this point in the history
  • Loading branch information
IKarbowiak authored Oct 3, 2024
1 parent af16d48 commit c58ee73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion saleor/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -35120,7 +35120,7 @@ type CheckoutUpdated implements Event @doc(category: "Checkout") {
}

"""
Event sent when checkout is fully paid with transactions.
Event sent when checkout is fully paid with transactions. The checkout is considered as fully paid when the checkout `charge_status` is `FULL` or `OVERCHARGED`. The event is not sent when the checkout authorization flow strategy is used.

Added in Saleor 3.13.

Expand Down
6 changes: 4 additions & 2 deletions saleor/graphql/webhook/subscription_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1564,8 +1564,10 @@ class Meta:
interfaces = (Event,)
description = (
"Event sent when checkout is fully paid with transactions."
+ ADDED_IN_313
+ PREVIEW_FEATURE
" The checkout is considered as fully paid when the checkout "
"`charge_status` is `FULL` or `OVERCHARGED`. "
"The event is not sent when the checkout authorization flow strategy "
"is used." + ADDED_IN_313 + PREVIEW_FEATURE
)


Expand Down

0 comments on commit c58ee73

Please sign in to comment.