@uipath/packager-tool-bpmn 0.0.8 → 1.197.0-preview.64
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/dist/bpmn-tool.d.ts +2 -5
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3866 -36
- package/package.json +32 -57
- package/src/bpmn-tool-factory.ts +1 -0
- package/src/bpmn-tool.ts +55 -64
- package/src/index.ts +9 -1
package/dist/bpmn-tool.d.ts
CHANGED
|
@@ -5,9 +5,10 @@ import { type IFileSystem, type IToolLogger, ProjectTool, ToolResult } from "@ui
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class BpmnTool extends ProjectTool {
|
|
7
7
|
private readonly _temporaryStorage;
|
|
8
|
+
private readonly _validateService;
|
|
8
9
|
constructor(fileSystem: IFileSystem, logger: IToolLogger);
|
|
9
10
|
restoreAsync(_options: IProjectRestoreOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
10
|
-
validateAsync(
|
|
11
|
+
validateAsync(options: IProjectValidateOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
11
12
|
buildAsync(options: IProjectBuildOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
12
13
|
packAsync(options: IProjectPackOptions, cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
13
14
|
dispose(): Promise<void>;
|
|
@@ -19,10 +20,6 @@ export declare class BpmnTool extends ProjectTool {
|
|
|
19
20
|
* Create operate.json file if it doesn't already exist
|
|
20
21
|
*/
|
|
21
22
|
private createOperateFile;
|
|
22
|
-
/**
|
|
23
|
-
* Create the operate.json file with project configuration
|
|
24
|
-
*/
|
|
25
|
-
private createOperateJsonFile;
|
|
26
23
|
/**
|
|
27
24
|
* Create package-descriptor.json file.
|
|
28
25
|
* Lists standard packaging files and .bpmn files from content/.
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { BpmnToolFactory } from "./bpmn-tool-factory.js";
|
|
2
|
+
export { BpmnToolFactory };
|