-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: regenerate 8.6 zeebe api docs to accommodate updated plugin
- Loading branch information
1 parent
71733bd
commit 7e2a795
Showing
8 changed files
with
811 additions
and
218 deletions.
There are no files selected for viewing
183 changes: 155 additions & 28 deletions
183
...version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
Large diffs are not rendered by default.
Oops, something went wrong.
187 changes: 152 additions & 35 deletions
187
...rsion-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js
This file was deleted.
Oops, something went wrong.
54 changes: 54 additions & 0 deletions
54
versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; | ||
|
||
const sidebar: SidebarsConfig = { | ||
apisidebar: [ | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api", | ||
}, | ||
{ | ||
type: "category", | ||
label: "Cluster", | ||
items: [ | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology", | ||
label: "Get cluster topology", | ||
className: "api-method get", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "category", | ||
label: "User task", | ||
items: [ | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task", | ||
label: "Complete a user task", | ||
className: "api-method post", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task", | ||
label: "Assign a user task", | ||
className: "api-method post", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task", | ||
label: "Update a user task", | ||
className: "api-method patch", | ||
}, | ||
{ | ||
type: "doc", | ||
id: "version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task", | ||
label: "Unassign a user task", | ||
className: "api-method delete", | ||
}, | ||
], | ||
}, | ||
], | ||
}; | ||
|
||
export default sidebar.apisidebar; |
Oops, something went wrong.