@loopstack/contracts 0.14.0 → 0.15.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/dist/enums/index.d.ts +1 -0
- package/dist/enums/index.js +1 -0
- package/dist/enums/registry.enum.d.ts +18 -0
- package/dist/enums/registry.enum.js +31 -0
- package/dist/schemas/main.schema.d.ts +21 -16
- package/dist/schemas/tool-call.schema.d.ts +17 -1
- package/dist/schemas/tool-call.schema.js +8 -2
- package/dist/schemas/workflow-transition.schema.d.ts +64 -11
- package/dist/schemas/workflow-transition.schema.js +16 -6
- package/dist/schemas/workflow.schema.d.ts +21 -16
- package/dist/schemas/workflow.schema.js +1 -1
- package/dist/types/interfaces/document-item.interface.d.ts +1 -1
- package/dist/types/interfaces/pipeline-config.interface.d.ts +1 -1
- package/dist/types/interfaces/transition-info.interface.d.ts +1 -1
- package/dist/types/interfaces/workflow.interface.d.ts +1 -1
- package/dist/types/types/tool-call.type.d.ts +2 -2
- package/dist/types/types/workflow-transition.type.d.ts +2 -2
- package/package.json +10 -4
- package/dist/enums/index.d.ts.map +0 -1
- package/dist/enums/pipeline-state.d.ts.map +0 -1
- package/dist/enums/user-type.enum.d.ts.map +0 -1
- package/dist/enums/workflow-state.enum.d.ts.map +0 -1
- package/dist/index.d.ts +0 -4
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -19
- package/dist/schemas/assignment.schema.d.ts.map +0 -1
- package/dist/schemas/block.schema.d.ts.map +0 -1
- package/dist/schemas/document.schema.d.ts.map +0 -1
- package/dist/schemas/index.d.ts.map +0 -1
- package/dist/schemas/json-schema.schema.d.ts.map +0 -1
- package/dist/schemas/main.schema.d.ts.map +0 -1
- package/dist/schemas/pipeline.schema.d.ts.map +0 -1
- package/dist/schemas/startup.schema.d.ts.map +0 -1
- package/dist/schemas/template-expression.schema.d.ts.map +0 -1
- package/dist/schemas/tool-call.schema.d.ts.map +0 -1
- package/dist/schemas/tool-config.schema.d.ts.map +0 -1
- package/dist/schemas/transition-payload.schema.d.ts.map +0 -1
- package/dist/schemas/ui-form-element.schema.d.ts.map +0 -1
- package/dist/schemas/ui-form.schema.d.ts.map +0 -1
- package/dist/schemas/ui-properties-schema.d.ts.map +0 -1
- package/dist/schemas/workflow-transition.schema.d.ts.map +0 -1
- package/dist/schemas/workflow.schema.d.ts.map +0 -1
- package/dist/schemas/workspace.schema.d.ts.map +0 -1
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/interfaces/client-message.interface.d.ts.map +0 -1
- package/dist/types/interfaces/document-item.interface.d.ts.map +0 -1
- package/dist/types/interfaces/history-transition.interface.d.ts.map +0 -1
- package/dist/types/interfaces/index.d.ts.map +0 -1
- package/dist/types/interfaces/namespace-create.interface.d.ts.map +0 -1
- package/dist/types/interfaces/pipeline-config.interface.d.ts.map +0 -1
- package/dist/types/interfaces/transition-info.interface.d.ts.map +0 -1
- package/dist/types/interfaces/transition-metadata.interface.d.ts.map +0 -1
- package/dist/types/interfaces/transition-payload.interface.d.ts.map +0 -1
- package/dist/types/interfaces/workflow.interface.d.ts.map +0 -1
- package/dist/types/types/assignment.type.d.ts.map +0 -1
- package/dist/types/types/document.type.d.ts.map +0 -1
- package/dist/types/types/index.d.ts.map +0 -1
- package/dist/types/types/json-schema-config.type.d.ts.map +0 -1
- package/dist/types/types/main.type.d.ts.map +0 -1
- package/dist/types/types/pipeline-state.type.d.ts.map +0 -1
- package/dist/types/types/pipeline.type.d.ts.map +0 -1
- package/dist/types/types/startup.type.d.ts.map +0 -1
- package/dist/types/types/tool-call.type.d.ts.map +0 -1
- package/dist/types/types/tool-config.type.d.ts.map +0 -1
- package/dist/types/types/transition-payload.type.d.ts.map +0 -1
- package/dist/types/types/ui-element.type.d.ts.map +0 -1
- package/dist/types/types/ui-form.type.d.ts.map +0 -1
- package/dist/types/types/ui-properties.type.d.ts.map +0 -1
- package/dist/types/types/workflow-state.type.d.ts.map +0 -1
- package/dist/types/types/workflow-transition.type.d.ts.map +0 -1
- package/dist/types/types/workflow.type.d.ts.map +0 -1
- package/dist/types/types/workspace.type.d.ts.map +0 -1
package/dist/enums/index.d.ts
CHANGED
package/dist/enums/index.js
CHANGED
|
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./pipeline-state.js"), exports);
|
|
18
18
|
__exportStar(require("./workflow-state.enum.js"), exports);
|
|
19
19
|
__exportStar(require("./user-type.enum.js"), exports);
|
|
20
|
+
__exportStar(require("./registry.enum.js"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum RegistryEntryStatus {
|
|
2
|
+
DRAFT = "draft",
|
|
3
|
+
PENDING = "pending",
|
|
4
|
+
ACTIVE = "active",
|
|
5
|
+
INACTIVE = "inactive"
|
|
6
|
+
}
|
|
7
|
+
export declare enum RegistryEntryCategory {
|
|
8
|
+
FULL_AUTOMATIONS = "full-automations",
|
|
9
|
+
TOOLS = "tools",
|
|
10
|
+
WORKFLOWS = "workflows",
|
|
11
|
+
DEMOS_AND_TESTS = "demos-and-tests",
|
|
12
|
+
EXPERIMENTAL = "experimental",
|
|
13
|
+
STARTER_TEMPLATES = "starter-templates",
|
|
14
|
+
INTEGRATIONS = "integrations",
|
|
15
|
+
AGENTS = "agents"
|
|
16
|
+
}
|
|
17
|
+
export type RegistryCategory = `${RegistryEntryCategory}`;
|
|
18
|
+
export declare const REGISTRY_CATEGORIES: RegistryCategory[];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.REGISTRY_CATEGORIES = exports.RegistryEntryCategory = exports.RegistryEntryStatus = void 0;
|
|
4
|
+
var RegistryEntryStatus;
|
|
5
|
+
(function (RegistryEntryStatus) {
|
|
6
|
+
RegistryEntryStatus["DRAFT"] = "draft";
|
|
7
|
+
RegistryEntryStatus["PENDING"] = "pending";
|
|
8
|
+
RegistryEntryStatus["ACTIVE"] = "active";
|
|
9
|
+
RegistryEntryStatus["INACTIVE"] = "inactive";
|
|
10
|
+
})(RegistryEntryStatus || (exports.RegistryEntryStatus = RegistryEntryStatus = {}));
|
|
11
|
+
var RegistryEntryCategory;
|
|
12
|
+
(function (RegistryEntryCategory) {
|
|
13
|
+
RegistryEntryCategory["FULL_AUTOMATIONS"] = "full-automations";
|
|
14
|
+
RegistryEntryCategory["TOOLS"] = "tools";
|
|
15
|
+
RegistryEntryCategory["WORKFLOWS"] = "workflows";
|
|
16
|
+
RegistryEntryCategory["DEMOS_AND_TESTS"] = "demos-and-tests";
|
|
17
|
+
RegistryEntryCategory["EXPERIMENTAL"] = "experimental";
|
|
18
|
+
RegistryEntryCategory["STARTER_TEMPLATES"] = "starter-templates";
|
|
19
|
+
RegistryEntryCategory["INTEGRATIONS"] = "integrations";
|
|
20
|
+
RegistryEntryCategory["AGENTS"] = "agents";
|
|
21
|
+
})(RegistryEntryCategory || (exports.RegistryEntryCategory = RegistryEntryCategory = {}));
|
|
22
|
+
exports.REGISTRY_CATEGORIES = [
|
|
23
|
+
RegistryEntryCategory.FULL_AUTOMATIONS,
|
|
24
|
+
RegistryEntryCategory.TOOLS,
|
|
25
|
+
RegistryEntryCategory.WORKFLOWS,
|
|
26
|
+
RegistryEntryCategory.DEMOS_AND_TESTS,
|
|
27
|
+
RegistryEntryCategory.EXPERIMENTAL,
|
|
28
|
+
RegistryEntryCategory.STARTER_TEMPLATES,
|
|
29
|
+
RegistryEntryCategory.INTEGRATIONS,
|
|
30
|
+
RegistryEntryCategory.AGENTS,
|
|
31
|
+
];
|
|
@@ -585,9 +585,10 @@ export declare const BlockConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
585
585
|
type: z.ZodDefault<z.ZodLiteral<"workflow">>;
|
|
586
586
|
transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
587
587
|
id: z.ZodString;
|
|
588
|
-
from: z.
|
|
589
|
-
to: z.
|
|
590
|
-
|
|
588
|
+
from: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
589
|
+
to: z.ZodString;
|
|
590
|
+
if: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
|
|
591
|
+
trigger: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["manual", "onEntry"]>, z.ZodString]>>;
|
|
591
592
|
call: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
592
593
|
id: z.ZodOptional<z.ZodString>;
|
|
593
594
|
tool: z.ZodString;
|
|
@@ -605,11 +606,12 @@ export declare const BlockConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
605
606
|
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
606
607
|
}>, "many">>;
|
|
607
608
|
onError: z.ZodOptional<z.ZodString>;
|
|
608
|
-
}, "
|
|
609
|
+
}, "strict", z.ZodTypeAny, {
|
|
609
610
|
id: string;
|
|
610
|
-
from
|
|
611
|
-
to
|
|
612
|
-
|
|
611
|
+
from: string | string[];
|
|
612
|
+
to: string;
|
|
613
|
+
if?: string | undefined;
|
|
614
|
+
trigger?: string | undefined;
|
|
613
615
|
call?: {
|
|
614
616
|
tool: string;
|
|
615
617
|
id?: string | undefined;
|
|
@@ -619,9 +621,10 @@ export declare const BlockConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
619
621
|
onError?: string | undefined;
|
|
620
622
|
}, {
|
|
621
623
|
id: string;
|
|
622
|
-
from
|
|
623
|
-
to
|
|
624
|
-
|
|
624
|
+
from: string | string[];
|
|
625
|
+
to: string;
|
|
626
|
+
if?: string | undefined;
|
|
627
|
+
trigger?: string | undefined;
|
|
625
628
|
call?: {
|
|
626
629
|
tool: string;
|
|
627
630
|
id?: string | undefined;
|
|
@@ -659,9 +662,10 @@ export declare const BlockConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
659
662
|
} | undefined;
|
|
660
663
|
transitions?: {
|
|
661
664
|
id: string;
|
|
662
|
-
from
|
|
663
|
-
to
|
|
664
|
-
|
|
665
|
+
from: string | string[];
|
|
666
|
+
to: string;
|
|
667
|
+
if?: string | undefined;
|
|
668
|
+
trigger?: string | undefined;
|
|
665
669
|
call?: {
|
|
666
670
|
tool: string;
|
|
667
671
|
id?: string | undefined;
|
|
@@ -699,9 +703,10 @@ export declare const BlockConfigSchema: z.ZodDiscriminatedUnion<"type", [z.ZodOb
|
|
|
699
703
|
} | undefined;
|
|
700
704
|
transitions?: {
|
|
701
705
|
id: string;
|
|
702
|
-
from
|
|
703
|
-
to
|
|
704
|
-
|
|
706
|
+
from: string | string[];
|
|
707
|
+
to: string;
|
|
708
|
+
if?: string | undefined;
|
|
709
|
+
trigger?: string | undefined;
|
|
705
710
|
call?: {
|
|
706
711
|
tool: string;
|
|
707
712
|
id?: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const ToolCallConfigSchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodOptional<z.ZodString>;
|
|
4
4
|
tool: z.ZodString;
|
|
5
5
|
args: z.ZodOptional<z.ZodAny>;
|
|
@@ -15,3 +15,19 @@ export declare const ToolCallSchema: z.ZodObject<{
|
|
|
15
15
|
args?: any;
|
|
16
16
|
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
17
17
|
}>;
|
|
18
|
+
export declare const ToolCallSchema: z.ZodObject<{
|
|
19
|
+
id: z.ZodOptional<z.ZodString>;
|
|
20
|
+
tool: z.ZodString;
|
|
21
|
+
args: z.ZodOptional<z.ZodAny>;
|
|
22
|
+
assign: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodRecord<z.ZodString, z.ZodAny>]>>>;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
tool: string;
|
|
25
|
+
id?: string | undefined;
|
|
26
|
+
args?: any;
|
|
27
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
28
|
+
}, {
|
|
29
|
+
tool: string;
|
|
30
|
+
id?: string | undefined;
|
|
31
|
+
args?: any;
|
|
32
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
33
|
+
}>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ToolCallSchema = void 0;
|
|
3
|
+
exports.ToolCallSchema = exports.ToolCallConfigSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const assignment_schema_1 = require("./assignment.schema");
|
|
6
|
-
exports.
|
|
6
|
+
exports.ToolCallConfigSchema = zod_1.z.object({
|
|
7
7
|
id: zod_1.z.string().optional(),
|
|
8
8
|
tool: zod_1.z.string(),
|
|
9
9
|
args: zod_1.z.any().optional(),
|
|
10
10
|
assign: assignment_schema_1.AssignmentConfigSchema.optional(),
|
|
11
11
|
});
|
|
12
|
+
exports.ToolCallSchema = zod_1.z.object({
|
|
13
|
+
id: zod_1.z.string().optional(),
|
|
14
|
+
tool: zod_1.z.string(),
|
|
15
|
+
args: zod_1.z.any().optional(),
|
|
16
|
+
assign: assignment_schema_1.AssignmentSchema.optional(),
|
|
17
|
+
});
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const WorkflowTransitionConfigSchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
|
-
from: z.
|
|
5
|
-
to: z.
|
|
6
|
-
|
|
4
|
+
from: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
5
|
+
to: z.ZodString;
|
|
6
|
+
if: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
|
|
7
|
+
trigger: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["manual", "onEntry"]>, z.ZodString]>>;
|
|
7
8
|
call: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8
9
|
id: z.ZodOptional<z.ZodString>;
|
|
9
10
|
tool: z.ZodString;
|
|
@@ -21,11 +22,62 @@ export declare const WorkflowTransitionSchema: z.ZodObject<{
|
|
|
21
22
|
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
22
23
|
}>, "many">>;
|
|
23
24
|
onError: z.ZodOptional<z.ZodString>;
|
|
24
|
-
}, "
|
|
25
|
+
}, "strict", z.ZodTypeAny, {
|
|
26
|
+
id: string;
|
|
27
|
+
from: string | string[];
|
|
28
|
+
to: string;
|
|
29
|
+
if?: string | undefined;
|
|
30
|
+
trigger?: string | undefined;
|
|
31
|
+
call?: {
|
|
32
|
+
tool: string;
|
|
33
|
+
id?: string | undefined;
|
|
34
|
+
args?: any;
|
|
35
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
36
|
+
}[] | undefined;
|
|
37
|
+
onError?: string | undefined;
|
|
38
|
+
}, {
|
|
39
|
+
id: string;
|
|
40
|
+
from: string | string[];
|
|
41
|
+
to: string;
|
|
42
|
+
if?: string | undefined;
|
|
43
|
+
trigger?: string | undefined;
|
|
44
|
+
call?: {
|
|
45
|
+
tool: string;
|
|
46
|
+
id?: string | undefined;
|
|
47
|
+
args?: any;
|
|
48
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
49
|
+
}[] | undefined;
|
|
50
|
+
onError?: string | undefined;
|
|
51
|
+
}>;
|
|
52
|
+
export declare const WorkflowTransitionSchema: z.ZodObject<{
|
|
53
|
+
id: z.ZodString;
|
|
54
|
+
from: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
55
|
+
to: z.ZodString;
|
|
56
|
+
if: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
|
|
57
|
+
trigger: z.ZodOptional<z.ZodEnum<["manual", "onEntry"]>>;
|
|
58
|
+
call: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
59
|
+
id: z.ZodOptional<z.ZodString>;
|
|
60
|
+
tool: z.ZodString;
|
|
61
|
+
args: z.ZodOptional<z.ZodAny>;
|
|
62
|
+
assign: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodRecord<z.ZodString, z.ZodAny>]>>>;
|
|
63
|
+
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
tool: string;
|
|
65
|
+
id?: string | undefined;
|
|
66
|
+
args?: any;
|
|
67
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
68
|
+
}, {
|
|
69
|
+
tool: string;
|
|
70
|
+
id?: string | undefined;
|
|
71
|
+
args?: any;
|
|
72
|
+
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
73
|
+
}>, "many">>;
|
|
74
|
+
onError: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, "strict", z.ZodTypeAny, {
|
|
25
76
|
id: string;
|
|
26
|
-
from
|
|
27
|
-
to
|
|
28
|
-
|
|
77
|
+
from: string | string[];
|
|
78
|
+
to: string;
|
|
79
|
+
if?: string | undefined;
|
|
80
|
+
trigger?: "manual" | "onEntry" | undefined;
|
|
29
81
|
call?: {
|
|
30
82
|
tool: string;
|
|
31
83
|
id?: string | undefined;
|
|
@@ -35,9 +87,10 @@ export declare const WorkflowTransitionSchema: z.ZodObject<{
|
|
|
35
87
|
onError?: string | undefined;
|
|
36
88
|
}, {
|
|
37
89
|
id: string;
|
|
38
|
-
from
|
|
39
|
-
to
|
|
40
|
-
|
|
90
|
+
from: string | string[];
|
|
91
|
+
to: string;
|
|
92
|
+
if?: string | undefined;
|
|
93
|
+
trigger?: "manual" | "onEntry" | undefined;
|
|
41
94
|
call?: {
|
|
42
95
|
tool: string;
|
|
43
96
|
id?: string | undefined;
|
|
@@ -1,17 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WorkflowTransitionSchema = void 0;
|
|
3
|
+
exports.WorkflowTransitionSchema = exports.WorkflowTransitionConfigSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const tool_call_schema_1 = require("./tool-call.schema");
|
|
6
6
|
const template_expression_schema_1 = require("./template-expression.schema");
|
|
7
|
-
exports.
|
|
7
|
+
exports.WorkflowTransitionConfigSchema = zod_1.z.object({
|
|
8
8
|
id: zod_1.z.string(),
|
|
9
|
-
from: zod_1.z.union([zod_1.z.string(), zod_1.z.array(zod_1.z.string())])
|
|
10
|
-
to: zod_1.z.
|
|
11
|
-
|
|
9
|
+
from: zod_1.z.union([zod_1.z.string(), zod_1.z.array(zod_1.z.string())]),
|
|
10
|
+
to: zod_1.z.string(),
|
|
11
|
+
if: zod_1.z.union([template_expression_schema_1.TemplateExpression, zod_1.z.string(), zod_1.z.literal('true'), zod_1.z.literal('false')]).optional(),
|
|
12
|
+
trigger: zod_1.z.union([
|
|
12
13
|
zod_1.z.enum(["manual", "onEntry"]),
|
|
13
14
|
template_expression_schema_1.TemplateExpression,
|
|
14
15
|
]).optional(),
|
|
16
|
+
call: zod_1.z.array(tool_call_schema_1.ToolCallConfigSchema).optional(),
|
|
17
|
+
onError: zod_1.z.string().optional(),
|
|
18
|
+
}).strict();
|
|
19
|
+
exports.WorkflowTransitionSchema = zod_1.z.object({
|
|
20
|
+
id: zod_1.z.string(),
|
|
21
|
+
from: zod_1.z.union([zod_1.z.string(), zod_1.z.array(zod_1.z.string())]),
|
|
22
|
+
to: zod_1.z.string(),
|
|
23
|
+
if: zod_1.z.union([zod_1.z.string(), zod_1.z.literal('true'), zod_1.z.literal('false')]).optional(),
|
|
24
|
+
trigger: zod_1.z.enum(["manual", "onEntry"]).optional(),
|
|
15
25
|
call: zod_1.z.array(tool_call_schema_1.ToolCallSchema).optional(),
|
|
16
26
|
onError: zod_1.z.string().optional(),
|
|
17
|
-
});
|
|
27
|
+
}).strict();
|
|
@@ -311,9 +311,10 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
311
311
|
type: z.ZodDefault<z.ZodLiteral<"workflow">>;
|
|
312
312
|
transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
313
313
|
id: z.ZodString;
|
|
314
|
-
from: z.
|
|
315
|
-
to: z.
|
|
316
|
-
|
|
314
|
+
from: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
315
|
+
to: z.ZodString;
|
|
316
|
+
if: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodLiteral<"true">, z.ZodLiteral<"false">]>>;
|
|
317
|
+
trigger: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["manual", "onEntry"]>, z.ZodString]>>;
|
|
317
318
|
call: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
318
319
|
id: z.ZodOptional<z.ZodString>;
|
|
319
320
|
tool: z.ZodString;
|
|
@@ -331,11 +332,12 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
331
332
|
assign?: Record<string, string | number | boolean | Record<string, any> | null> | undefined;
|
|
332
333
|
}>, "many">>;
|
|
333
334
|
onError: z.ZodOptional<z.ZodString>;
|
|
334
|
-
}, "
|
|
335
|
+
}, "strict", z.ZodTypeAny, {
|
|
335
336
|
id: string;
|
|
336
|
-
from
|
|
337
|
-
to
|
|
338
|
-
|
|
337
|
+
from: string | string[];
|
|
338
|
+
to: string;
|
|
339
|
+
if?: string | undefined;
|
|
340
|
+
trigger?: string | undefined;
|
|
339
341
|
call?: {
|
|
340
342
|
tool: string;
|
|
341
343
|
id?: string | undefined;
|
|
@@ -345,9 +347,10 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
345
347
|
onError?: string | undefined;
|
|
346
348
|
}, {
|
|
347
349
|
id: string;
|
|
348
|
-
from
|
|
349
|
-
to
|
|
350
|
-
|
|
350
|
+
from: string | string[];
|
|
351
|
+
to: string;
|
|
352
|
+
if?: string | undefined;
|
|
353
|
+
trigger?: string | undefined;
|
|
351
354
|
call?: {
|
|
352
355
|
tool: string;
|
|
353
356
|
id?: string | undefined;
|
|
@@ -385,9 +388,10 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
385
388
|
} | undefined;
|
|
386
389
|
transitions?: {
|
|
387
390
|
id: string;
|
|
388
|
-
from
|
|
389
|
-
to
|
|
390
|
-
|
|
391
|
+
from: string | string[];
|
|
392
|
+
to: string;
|
|
393
|
+
if?: string | undefined;
|
|
394
|
+
trigger?: string | undefined;
|
|
391
395
|
call?: {
|
|
392
396
|
tool: string;
|
|
393
397
|
id?: string | undefined;
|
|
@@ -425,9 +429,10 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
425
429
|
} | undefined;
|
|
426
430
|
transitions?: {
|
|
427
431
|
id: string;
|
|
428
|
-
from
|
|
429
|
-
to
|
|
430
|
-
|
|
432
|
+
from: string | string[];
|
|
433
|
+
to: string;
|
|
434
|
+
if?: string | undefined;
|
|
435
|
+
trigger?: string | undefined;
|
|
431
436
|
call?: {
|
|
432
437
|
tool: string;
|
|
433
438
|
id?: string | undefined;
|
|
@@ -15,5 +15,5 @@ exports.WorkflowBaseSchema = block_schema_1.BlockSchema.extend({
|
|
|
15
15
|
});
|
|
16
16
|
exports.WorkflowSchema = exports.WorkflowBaseSchema.extend({
|
|
17
17
|
type: zod_1.z.literal('workflow').default('workflow'),
|
|
18
|
-
transitions: zod_1.z.array(workflow_transition_schema_1.
|
|
18
|
+
transitions: zod_1.z.array(workflow_transition_schema_1.WorkflowTransitionConfigSchema).optional(),
|
|
19
19
|
});
|
|
@@ -5,7 +5,7 @@ import { UiFormType } from '../types/ui-form.type';
|
|
|
5
5
|
import { WorkflowTransitionType } from '../types/workflow-transition.type';
|
|
6
6
|
export interface WorkflowInterface {
|
|
7
7
|
id: string;
|
|
8
|
-
|
|
8
|
+
blockName: string;
|
|
9
9
|
title: string;
|
|
10
10
|
index: number;
|
|
11
11
|
labels: string[];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
export type ToolCallType = z.infer<typeof
|
|
2
|
+
import { ToolCallConfigSchema } from '../../schemas';
|
|
3
|
+
export type ToolCallType = z.infer<typeof ToolCallConfigSchema>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import {
|
|
3
|
-
export type WorkflowTransitionType = z.infer<typeof
|
|
2
|
+
import { WorkflowTransitionConfigSchema } from '../../schemas';
|
|
3
|
+
export type WorkflowTransitionType = z.infer<typeof WorkflowTransitionConfigSchema>;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@loopstack/contracts",
|
|
3
3
|
"displayName": "Loopstack Contracts",
|
|
4
4
|
"description": "A collection of types and schemas shared between projects",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.15.0",
|
|
6
6
|
"license": "BSL",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Jakob Klippel",
|
|
@@ -26,9 +26,15 @@
|
|
|
26
26
|
},
|
|
27
27
|
"typesVersions": {
|
|
28
28
|
"*": {
|
|
29
|
-
"types": [
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
"types": [
|
|
30
|
+
"./dist/types/index.d.ts"
|
|
31
|
+
],
|
|
32
|
+
"enums": [
|
|
33
|
+
"./dist/enums/index.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"schemas": [
|
|
36
|
+
"./dist/schemas/index.d.ts"
|
|
37
|
+
]
|
|
32
38
|
}
|
|
33
39
|
},
|
|
34
40
|
"scripts": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,qBAAqB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline-state.d.ts","sourceRoot":"","sources":["../../src/enums/pipeline-state.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"user-type.enum.d.ts","sourceRoot":"","sources":["../../src/enums/user-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IACtB,KAAK,UAAU;IACf,KAAK,UAAU;CAChB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-state.enum.d.ts","sourceRoot":"","sources":["../../src/enums/workflow-state.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB"}
|
package/dist/index.d.ts
DELETED
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA"}
|
package/dist/index.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./types"), exports);
|
|
18
|
-
__exportStar(require("./enums"), exports);
|
|
19
|
-
__exportStar(require("./schemas"), exports);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assignment.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/assignment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB,+HAS5B,CAAC;AAEF,eAAO,MAAM,sBAAsB,4IAUlC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"block.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/block.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,WAAW,gDAAe,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"document.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/document.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,cAAc,gMAWzB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiC/B,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBzB,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAavC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEhC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;AACpC,cAAc,yBAAyB,CAAA;AACvC,cAAc,kBAAkB,CAAA;AAChC,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,uBAAuB,CAAA;AACrC,cAAc,qBAAqB,CAAA;AACnC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,2BAA2B,CAAA;AACzC,cAAc,qBAAqB,CAAA;AACnC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,qBAAqB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"json-schema.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/json-schema.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAgEzC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"main.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/main.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAO5B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/pipeline.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK7B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAQnC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;EAO7B,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;EAK9C,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMtC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;EAExC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGjC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"startup.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/startup.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoBxB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGnB,CAAC;AAEb,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOhC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAiCH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAK5B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"template-expression.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/template-expression.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,kBAAkB,aAG9B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tool-call.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/tool-call.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;EAKzB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tool-config.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/tool-config.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI3B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transition-payload.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/transition-payload.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAKlC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-form-element.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/ui-form-element.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoC1B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-form.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/ui-form.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,CAAC,EAAE,MAAM,KAAK,CAAC;AAG5C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAKpC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO7B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGzB,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-properties-schema.d.ts","sourceRoot":"","sources":["../../src/schemas/ui-properties-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAK7C,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-transition.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/workflow-transition.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUnC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/workflow.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,oBAAoB;;;;;;EAE/B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGzB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/workspace.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe;;;;;;;;;;;;EAI1B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA;AACrC,cAAc,kBAAkB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client-message.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/client-message.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"document-item.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/document-item.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEnD,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,GAAG,CAAC;IACb,MAAM,EAAE,oBAAoB,CAAC;IAC7B,eAAe,EAAE,GAAG,CAAC;IACrB,EAAE,EAAE,UAAU,CAAC;IACf,IAAI,EAAE,GAAG,CAAC;IACV,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"history-transition.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/history-transition.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,EAAE,EAAE,MAAM,CAAC;CACZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAA;AAC9C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"namespace-create.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/namespace-create.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,GAAG,GAAG,IAAI,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline-config.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/pipeline-config.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE5D,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,EAAE,CAAC,EAAE,UAAU,CAAC;CACjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transition-info.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/transition-info.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,uBAAuB;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transition-metadata.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/transition-metadata.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAEtE,MAAM,WAAW,2BAA4B,SAAQ,uBAAuB;IAC1E,OAAO,CAAC,EAAE,GAAG,CAAC;CACf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transition-payload.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/transition-payload.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAErE,MAAM,MAAM,0BAA0B,GAAG,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.interface.d.ts","sourceRoot":"","sources":["../../../src/types/interfaces/workflow.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAE3E,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,aAAa,CAAC;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,oBAAoB,EAAE,sBAAsB,EAAE,GAAG,IAAI,CAAC;IACtD,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,CAAC;IACpC,MAAM,EAAE,oBAAoB,CAAC;IAC7B,EAAE,EAAE,UAAU,GAAG,IAAI,CAAC;IACtB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACrB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assignment.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/assignment.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEzE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"document.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/document.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE5G,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC1D,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,aAAa,CAAC;AAC5B,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"json-schema-config.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/json-schema-config.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,WAAW,oBAAqB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"main.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/main.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAElD,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,GAAG,CAAC;CACb;AAED,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline-state.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/pipeline-state.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GACzB,SAAS,GACT,SAAS,GACT,QAAQ,GACR,WAAW,GACX,QAAQ,GACR,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/pipeline.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,2BAA2B,EAC3B,mCAAmC,EACnC,6BAA6B,EAC7B,qBAAqB,EACrB,wBAAwB,EACxB,kBAAkB,EAClB,sBAAsB,EACvB,MAAM,eAAe,CAAC;AAEvB,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC9E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AACpG,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AACpF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AACxF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACxE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"startup.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/startup.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAE3E,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tool-call.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/tool-call.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tool-config.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/tool-config.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEjD,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transition-payload.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/transition-payload.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAExD,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-element.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/ui-element.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAEhD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-form.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/ui-form.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,yBAAyB,EAAE,kBAAkB,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE5G,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAChF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC1D,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-properties.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/ui-properties.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAEnD,MAAM,WAAW,gBAAiB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC;CAC3E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-state.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/workflow-state.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GACzB,SAAS,GACT,SAAS,GACT,SAAS,GACT,WAAW,GACX,QAAQ,GACR,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-transition.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/workflow-transition.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAEzD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/workflow.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAErE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"workspace.type.d.ts","sourceRoot":"","sources":["../../../src/types/types/workspace.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAEhD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|