Skip to content
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-10 14:43:54.934240",
"spec_repo_commit": "408f0b84"
"regenerated": "2024-12-10 15:38:38.671728",
"spec_repo_commit": "aee36841"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-10 14:43:54.953306",
"spec_repo_commit": "408f0b84"
"regenerated": "2024-12-10 15:38:38.690912",
"spec_repo_commit": "aee36841"
}
}
}
5 changes: 5 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44215,6 +44215,11 @@ paths:
$ref: '#/components/responses/ForbiddenResponse'
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
- apiKeyAuth: []
appKeyAuth: []
- AuthZ:
- workflows_run
summary: Execute a workflow
tags:
- Workflow Automation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public ApiResponse<WorkflowInstanceCreateResponse> createWorkflowInstanceWithHtt
localVarHeaderParams,
new HashMap<String, String>(),
new String[] {"application/json"},
new String[] {"apiKeyAuth", "appKeyAuth"});
new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"});
return apiClient.invokeAPI(
"POST",
builder,
Expand Down Expand Up @@ -363,7 +363,7 @@ public ApiResponse<WorkflowInstanceCreateResponse> createWorkflowInstanceWithHtt
localVarHeaderParams,
new HashMap<String, String>(),
new String[] {"application/json"},
new String[] {"apiKeyAuth", "appKeyAuth"});
new String[] {"AuthZ", "apiKeyAuth", "appKeyAuth"});
} catch (ApiException ex) {
CompletableFuture<ApiResponse<WorkflowInstanceCreateResponse>> result =
new CompletableFuture<>();
Expand Down
Loading