Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(textract): Textract unexpected modular fields #3197

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,6 @@
"type" : "zeebe:taskDefinition"
},
"type" : "Hidden"
}, {
ev-codes marked this conversation as resolved.
Show resolved Hide resolved
"id" : "input.WRONG_OUTPUT_VALUES_MSG",
"label" : "WRONG_OUTPUT_VALUES_MSG",
"feel" : "optional",
"binding" : {
"name" : "input.WRONG_OUTPUT_VALUES_MSG",
"type" : "zeebe:input"
},
"type" : "String"
}, {
"id" : "input.WRONG_NOTIFICATION_VALUES_MSG",
"label" : "WRONG_NOTIFICATION_VALUES_MSG",
"feel" : "optional",
"binding" : {
"name" : "input.WRONG_NOTIFICATION_VALUES_MSG",
"type" : "zeebe:input"
},
"type" : "String"
}, {
"id" : "authentication.type",
"label" : "Authentication",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,6 @@
"type" : "zeebe:taskDefinition"
},
"type" : "String"
}, {
"id" : "input.WRONG_OUTPUT_VALUES_MSG",
"label" : "WRONG_OUTPUT_VALUES_MSG",
"feel" : "optional",
"binding" : {
"name" : "input.WRONG_OUTPUT_VALUES_MSG",
"type" : "zeebe:input"
},
"type" : "String"
}, {
"id" : "input.WRONG_NOTIFICATION_VALUES_MSG",
"label" : "WRONG_NOTIFICATION_VALUES_MSG",
"feel" : "optional",
"binding" : {
"name" : "input.WRONG_NOTIFICATION_VALUES_MSG",
"type" : "zeebe:input"
},
"type" : "String"
}, {
"id" : "authentication.type",
"label" : "Authentication",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,11 @@ public record TextractRequestData(
property = "input.executionType",
equals = "ASYNC"))
String outputConfigS3Prefix) {
@TemplateProperty(ignore = true)
public static final String WRONG_OUTPUT_VALUES_MSG =
"Output S3 bucket must be filled in if output S3 prefix is filled in";

@TemplateProperty(ignore = true)
public static final String WRONG_NOTIFICATION_VALUES_MSG =
"either both notification values role ARN and topic ARN must be filled in or none of them";

Expand Down