EAVFW.Extensions.WorkflowEngine 5.0.0

dotnet add package EAVFW.Extensions.WorkflowEngine --version 5.0.0
                    
NuGet\Install-Package EAVFW.Extensions.WorkflowEngine -Version 5.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EAVFW.Extensions.WorkflowEngine" Version="5.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EAVFW.Extensions.WorkflowEngine" Version="5.0.0" />
                    
Directory.Packages.props
<PackageReference Include="EAVFW.Extensions.WorkflowEngine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EAVFW.Extensions.WorkflowEngine --version 5.0.0
                    
#r "nuget: EAVFW.Extensions.WorkflowEngine, 5.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=EAVFW.Extensions.WorkflowEngine&version=5.0.0
                    
Install EAVFW.Extensions.WorkflowEngine as a Cake Addin
#tool nuget:?package=EAVFW.Extensions.WorkflowEngine&version=5.0.0
                    
Install EAVFW.Extensions.WorkflowEngine as a Cake Tool

EAVFW.Extensions.WorkflowEngine

dotnet tool run eavfw-manifest install EAVFW.Extensions.WorkflowEngine

A Run workflow ribbon button

import { RegistereRibbonButton, useAppInfo, useModelDrivenApp, useRibbon } from "@eavfw/apps";


RegistereRibbonButton("RUN_REMOTE_WORKFLOW", ({ key, ...props }) => {
    const { registerButton, events } = useRibbon();
    const { currentEntityName, currentRecordId } = useAppInfo();


    const app = useModelDrivenApp();

    registerButton({
        key: key,
        text: props.text ?? "Run Workflow",
        iconProps: props.iconProps ?? { iconName: 'Send' },
        title: props.title ?? props.text ?? "Run Workflow",
        disabled: false,
        onClick: () => {

            //@ts-ignore
            let rsp = fetch(`${process.env.NEXT_PUBLIC_API_BASE_URL}/entities/${app.getEntity(currentEntityName).collectionSchemaName}/records/${currentRecordId}/workflows/${props.workflowName}/runs`, {
                method: "POST",
                body: JSON.stringify({}),
                credentials: "include"
            });
        }
        //workflow: props.workflow
        // onClick: onClick
    });

});

Changelog

(12/6/2022) - Bug on forloop payload fixed

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on EAVFW.Extensions.WorkflowEngine:

Package Downloads
EAVFW.Extensions.DynamicManifest

Dynamic Manifest Support for runtime models

EAVFW.Extensions.Docs.Extractor

Package Description

EAVFW.Extensions.DigitalSigning

Digital Signing Package for EAVFW Busines Application Framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0 130 12/18/2024
4.0.2 94 12/16/2024
4.0.1 220 12/9/2024
4.0.0 283 11/13/2024
3.2.10 174 11/12/2024
3.2.9 270 10/17/2024
3.2.8 401 9/13/2024
3.2.7 243 8/28/2024
3.2.6 187 8/25/2024
3.2.5 123 8/21/2024
3.2.4 246 8/21/2024
3.2.3 125 8/18/2024
3.2.2 581 8/8/2024
3.2.1 265 6/25/2024
3.2.0 130 6/25/2024
3.1.8 182 6/5/2024
3.1.7 664 4/25/2024
3.1.6 528 11/30/2023
3.1.5 168 11/27/2023
3.1.4 583 10/29/2023
3.1.3 134 10/29/2023
3.1.2 147 10/25/2023
3.1.1 177 10/24/2023
3.1.0 154 10/18/2023
3.0.2 160 9/29/2023
3.0.1 244 2/1/2023
3.0.1-dev.1 250 12/6/2022
3.0.0 165 11/21/2022
3.0.0-dev.5 130 12/6/2022
3.0.0-dev.4 138 11/21/2022
3.0.0-dev.3 255 11/17/2022
2.0.2-dev.3 166 11/15/2022
2.0.2-dev.2 140 11/9/2022
2.0.2-dev.1 154 11/9/2022
2.0.1 199 10/9/2022
2.0.0 437 10/5/2022
1.1.13 176 9/11/2022
1.1.12 159 9/11/2022
1.1.11 161 9/11/2022
1.1.10 167 8/29/2022
1.1.9 203 8/10/2022
1.1.8 178 8/8/2022
1.1.7 179 8/8/2022
1.1.6 172 8/8/2022
1.1.5 178 8/4/2022
1.1.4 176 8/4/2022
1.1.3 195 8/4/2022
1.1.2 182 8/3/2022
1.1.1 178 8/3/2022
1.1.0 169 8/3/2022
1.0.9 187 8/3/2022
1.0.8 175 7/30/2022
1.0.7 168 7/30/2022
1.0.6 167 7/30/2022
1.0.5 175 7/30/2022
1.0.4 167 7/30/2022
1.0.3 177 7/30/2022
1.0.2 184 7/30/2022
1.0.1 173 7/29/2022