2
0

Add attachments option to text input (#1608)

Closes #854
This commit is contained in:
Baptiste Arnaud
2024-06-26 10:13:38 +02:00
committed by GitHub
parent 80da7af4f1
commit 6db0464fd7
88 changed files with 2959 additions and 735 deletions

View File

@@ -11157,6 +11157,12 @@
},
"content": {
"type": "string"
},
"attachedFileUrls": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
@@ -11452,6 +11458,12 @@
},
"content": {
"type": "string"
},
"attachedFileUrls": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
@@ -14664,6 +14676,9 @@
"properties": {
"id": {
"type": "string"
},
"caption": {
"type": "string"
}
},
"required": [
@@ -14698,6 +14713,9 @@
"properties": {
"id": {
"type": "string"
},
"caption": {
"type": "string"
}
},
"required": [
@@ -14766,6 +14784,9 @@
"properties": {
"id": {
"type": "string"
},
"caption": {
"type": "string"
}
},
"required": [
@@ -15605,6 +15626,25 @@
},
"isLong": {
"type": "boolean"
},
"attachments": {
"type": "object",
"properties": {
"isEnabled": {
"type": "boolean"
},
"saveVariableId": {
"type": "string"
},
"visibility": {
"type": "string",
"enum": [
"Auto",
"Public",
"Private"
]
}
}
}
}
}