Stores
๐ Redis Keyโ
tenant_slug:stores:store_id
๐ Descriptionโ
This section contains the customizations for individual stores. These override the general ones defined in the Features section.
๐งพ Campiโ
| # | Campo | Tipo | Descrizione |
|---|---|---|---|
| 1 | needViberSelection | boolean | Indicates whether the store requires the selection of a viber for at least one delivery method. |
| 2 | viberRegex | string | Regex to be used for validating the viber code. (optional) |
| 3 | viberNumericOnly | boolean | Indicates whether the viber code must be numeric only, to prevent the input of other characters. |
| 4 | deliveryTypesRequiringVibers | string | Specifies the delivery methods for which the viber is required. If not set, it is required for all methods. |
๐พ JSON Exampleโ
{
"needViberSelection": true,
"viberRegex": "^\\d{2}$",
"viberNumericOnly": true,
"deliveryTypesRequiringVibers": [
"gate"
]
}