From e5395d5dfcc2fb4501d25195095686f94d5785a9 Mon Sep 17 00:00:00 2001 From: Kate Kolmakova Date: Fri, 26 Jun 2026 14:48:46 +0400 Subject: [PATCH] ECOM-30713 Added new webhooks events for shared product content 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, + } }