@webiny/api-workflows 6.2.0 → 6.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/features/internal/GetUserTeams/feature.d.ts +4 -1
- package/features/notifications/ListNotificationTypes/feature.d.ts +4 -1
- package/features/notifications/NotificationTransport/feature.d.ts +4 -1
- package/features/workflow/CreateWorkflow/feature.d.ts +4 -1
- package/features/workflow/DeleteWorkflow/feature.d.ts +4 -1
- package/features/workflow/GetWorkflow/feature.d.ts +4 -1
- package/features/workflow/ListWorkflows/feature.d.ts +4 -1
- package/features/workflow/StoreWorkflow/feature.d.ts +4 -1
- package/features/workflow/UpdateWorkflow/feature.d.ts +4 -1
- package/features/workflowState/ApproveWorkflowStateStep/feature.d.ts +4 -1
- package/features/workflowState/CancelWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/CreateWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/DeleteTargetWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/DeleteWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/GetTargetWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/GetWorkflowState/feature.d.ts +4 -1
- package/features/workflowState/ListOwnWorkflowStates/feature.d.ts +4 -1
- package/features/workflowState/ListRequestedWorkflowStates/feature.d.ts +4 -1
- package/features/workflowState/ListWorkflowStates/feature.d.ts +4 -1
- package/features/workflowState/README.md +2 -2
- package/features/workflowState/RejectWorkflowStateStep/feature.d.ts +4 -1
- package/features/workflowState/StartWorkflowStateStep/feature.d.ts +4 -1
- package/features/workflowState/TakeOverWorkflowStateStep/feature.d.ts +4 -1
- package/features/workflowState/UpdateWorkflowState/feature.d.ts +4 -1
- package/package.json +16 -16
|
@@ -1 +1,4 @@
|
|
|
1
|
-
export declare const ListRequestedWorkflowStatesFeature:
|
|
1
|
+
export declare const ListRequestedWorkflowStatesFeature: {
|
|
2
|
+
name: string;
|
|
3
|
+
register(container: import("@webiny/di").Container): void;
|
|
4
|
+
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Method "Delete Target Workflow State" and "Delete Workflow State" basically does the same thing:
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
- Delete Target Workflow State: Deletes a workflow state based on the target ID (full id, with revision).
|
|
6
|
+
- Delete Workflow State: Deletes a workflow state by its ID.
|
|
7
7
|
|
|
8
8
|
Both methods trigger same event.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-workflows",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"description": "Workflows API",
|
|
@@ -14,28 +14,28 @@
|
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@webiny/api": "6.
|
|
18
|
-
"@webiny/api-core": "6.
|
|
19
|
-
"@webiny/api-headless-cms": "6.
|
|
20
|
-
"@webiny/api-mailer": "6.
|
|
21
|
-
"@webiny/feature": "6.
|
|
22
|
-
"@webiny/handler": "6.
|
|
23
|
-
"@webiny/handler-graphql": "6.
|
|
24
|
-
"@webiny/utils": "6.
|
|
17
|
+
"@webiny/api": "6.3.0-beta.0",
|
|
18
|
+
"@webiny/api-core": "6.3.0-beta.0",
|
|
19
|
+
"@webiny/api-headless-cms": "6.3.0-beta.0",
|
|
20
|
+
"@webiny/api-mailer": "6.3.0-beta.0",
|
|
21
|
+
"@webiny/feature": "6.3.0-beta.0",
|
|
22
|
+
"@webiny/handler": "6.3.0-beta.0",
|
|
23
|
+
"@webiny/handler-graphql": "6.3.0-beta.0",
|
|
24
|
+
"@webiny/utils": "6.3.0-beta.0",
|
|
25
25
|
"zod": "4.3.6"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@webiny/build-tools": "6.
|
|
29
|
-
"@webiny/plugins": "6.
|
|
30
|
-
"@webiny/project-utils": "6.
|
|
31
|
-
"@webiny/testing": "6.
|
|
32
|
-
"type-fest": "5.
|
|
33
|
-
"typescript": "
|
|
28
|
+
"@webiny/build-tools": "6.3.0-beta.0",
|
|
29
|
+
"@webiny/plugins": "6.3.0-beta.0",
|
|
30
|
+
"@webiny/project-utils": "6.3.0-beta.0",
|
|
31
|
+
"@webiny/testing": "6.3.0-beta.0",
|
|
32
|
+
"type-fest": "5.6.0",
|
|
33
|
+
"typescript": "6.0.3",
|
|
34
34
|
"vitest": "4.1.4"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public",
|
|
38
38
|
"directory": "dist"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
|
|
41
41
|
}
|