2
0

⬆️ Upgrade and improve plate editor

Closes #606
This commit is contained in:
Baptiste Arnaud
2024-02-27 10:03:55 +01:00
parent ce17ce5061
commit b9e54686d5
18 changed files with 704 additions and 1517 deletions

View File

@ -19460,6 +19460,37 @@
"type": "string"
}
}
},
"progressBar": {
"type": "object",
"properties": {
"isEnabled": {
"type": "boolean"
},
"color": {
"type": "string"
},
"backgroundColor": {
"type": "string"
},
"placement": {
"type": "string",
"enum": [
"Top",
"Bottom"
]
},
"thickness": {
"type": "number"
},
"position": {
"type": "string",
"enum": [
"fixed",
"absolute"
]
}
}
}
}
},

View File

@ -1380,6 +1380,10 @@
}
},
"description": "If the typebot contains dynamic avatars, dynamicTheme returns the new avatar URLs whenever their variables are updated."
},
"progress": {
"type": "number",
"description": "If progress bar is enabled, this field will return a number between 0 and 100 indicating the current progress based on the longest remaining path of the flow."
}
},
"required": [
@ -1709,6 +1713,10 @@
}
},
"description": "If the typebot contains dynamic avatars, dynamicTheme returns the new avatar URLs whenever their variables are updated."
},
"progress": {
"type": "number",
"description": "If progress bar is enabled, this field will return a number between 0 and 100 indicating the current progress based on the longest remaining path of the flow."
}
},
"required": [
@ -2127,6 +2135,10 @@
}
},
"description": "If the typebot contains dynamic avatars, dynamicTheme returns the new avatar URLs whenever their variables are updated."
},
"progress": {
"type": "number",
"description": "If progress bar is enabled, this field will return a number between 0 and 100 indicating the current progress based on the longest remaining path of the flow."
}
},
"required": [
@ -6759,6 +6771,37 @@
"type": "string"
}
}
},
"progressBar": {
"type": "object",
"properties": {
"isEnabled": {
"type": "boolean"
},
"color": {
"type": "string"
},
"backgroundColor": {
"type": "string"
},
"placement": {
"type": "string",
"enum": [
"Top",
"Bottom"
]
},
"thickness": {
"type": "number"
},
"position": {
"type": "string",
"enum": [
"fixed",
"absolute"
]
}
}
}
}
},