fix(dashboard): campaign budget labels improvements (#13740)

* fix(dashboard): budget labels and remove promo code

* fix: sidebar label

* fix: update translation
This commit is contained in:
Frane Polić
2025-10-13 18:49:12 +02:00
committed by GitHub
parent 379d763e50
commit 723dc082f0
6 changed files with 97 additions and 20 deletions
@@ -8345,6 +8345,19 @@
"budget": {
"type": "object",
"properties": {
"attribute": {
"type": "object",
"properties": {
"customer_id": {
"type": "string"
},
"customer_email": {
"type": "string"
}
},
"required": ["customer_id", "customer_email"],
"additionalProperties": false
},
"create": {
"type": "object",
"properties": {
@@ -8384,6 +8397,12 @@
},
"totalUsedByAttribute": {
"type": "string"
},
"totalUsedByAttributeCustomerId": {
"type": "string"
},
"totalUsedByAttributeEmail": {
"type": "string"
}
},
"required": [
@@ -8393,7 +8412,9 @@
"used",
"budgetAttribute",
"budgetAttributeTooltip",
"totalUsedByAttribute"
"totalUsedByAttribute",
"totalUsedByAttributeCustomerId",
"totalUsedByAttributeEmail"
],
"additionalProperties": false
},
@@ -8432,11 +8453,22 @@
"title": {
"type": "string"
},
"titleCustomerId": {
"type": "string"
},
"titleEmail": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": ["title", "description"],
"required": [
"title",
"titleCustomerId",
"titleEmail",
"description"
],
"additionalProperties": false
}
},
@@ -8454,7 +8486,14 @@
"additionalProperties": false
}
},
"required": ["create", "details", "fields", "type", "edit"],
"required": [
"attribute",
"create",
"details",
"fields",
"type",
"edit"
],
"additionalProperties": false
},
"promotions": {