From c46f77d2fea87c6b7f3cfffde5dcc38a2fa90711 Mon Sep 17 00:00:00 2001 From: Kate Kolmakova Date: Mon, 28 Jul 2025 16:00:43 +0400 Subject: [PATCH] ECWID-167421 Added new webhooks events for size charts changes --- .../com/ecwid/apiclient/v3/dto/webhook/Webhook.kt | 10 ++++++++++ 1 file changed, 10 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 414099e8f..e864908b9 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 @@ -139,6 +139,16 @@ data class Webhook( @SerializedName("promotion.updated") PROMOTION_UPDATED, + + @SerializedName("size_chart.created") + SIZE_CHART_CREATED, + + @SerializedName("size_chart.deleted") + SIZE_CHART_DELETED, + + @SerializedName("size_chart.updated") + SIZE_CHART_UPDATED, + } }