From f5e6dbfef4a2166f225558a8bd082dea1adde92f Mon Sep 17 00:00:00 2001 From: Kate Kolmakova Date: Fri, 26 Jun 2026 14:48:46 +0400 Subject: [PATCH] ECOM-27475 Added new webhooks events for size charts changes --- .../kotlin/com/ecwid/apiclient/v3/dto/webhook/Webhook.kt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/webhook/Webhook.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/webhook/Webhook.kt index e864908b..643ed0ed 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/webhook/Webhook.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/webhook/Webhook.kt @@ -149,6 +149,15 @@ data class Webhook( @SerializedName("size_chart.updated") SIZE_CHART_UPDATED, + @SerializedName("shared_product_content.created") + SHARED_PRODUCT_CONTENT_CREATED, + + @SerializedName("shared_product_content.deleted") + SHARED_PRODUCT_CONTENT_DELETED, + + @SerializedName("shared_product_content.updated") + SHARED_PRODUCT_CONTENT_UPDATED, + } }